rt-4.4.2/0000775000175000017500000000000013136155512012040 5ustar vagrantvagrantrt-4.4.2/t/0000775000175000017500000000000013131430353012275 5ustar vagrantvagrantrt-4.4.2/t/api/0000775000175000017500000000000013131430353013046 5ustar vagrantvagrantrt-4.4.2/t/api/txn_content.t0000664000175000017500000000153713131430353015604 0ustar vagrantvagrantuse warnings; use strict; use RT::Test tests => 4; use MIME::Entity; my $ticket = RT::Ticket->new(RT->SystemUser); my $mime = MIME::Entity->build( From => 'test@example.com', Type => 'text/html', Data => ["this is body\n"], ); $mime->attach( Data => ['this is attachment'] ); my $id = $ticket->Create( MIMEObj => $mime, Queue => 'General' ); ok( $id, "created ticket $id" ); my $txns = $ticket->Transactions; $txns->Limit( FIELD => 'Type', VALUE => 'Create' ); my $txn = $txns->First; ok( $txn, 'got Create txn' ); # ->Content converts from text/html to plain text if we don't explicitly ask # for html. Our html -> text converter seems to add an extra trailing newline like( $txn->Content, qr/^\s*this is body\s*$/, "txn's html content converted to plain text" ); is( $txn->Content(Type => 'text/html'), "this is body\n", "txn's html content" ); rt-4.4.2/t/api/report_tickets.t0000664000175000017500000000071113131430353016273 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 5; use RT::Report::Tickets; my $ticket = RT::Test->create_ticket( Queue => 'General', Subject => 'test' ); my $tickets = RT::Report::Tickets->new( RT->SystemUser ); $tickets->FromSQL('Updated <= "tomorrow"'); is( $tickets->Count, 1, "search with transaction join and positive results" ); $tickets->FromSQL('Updated < "yesterday"'); is( $tickets->Count, 0, "search with transaction join and 0 results" ); rt-4.4.2/t/api/template.t0000664000175000017500000001375013131430353015054 0ustar vagrantvagrant use warnings; use strict; use RT::Test tests => 37; use_ok('RT::Template'); my $queue = RT::Test->load_or_create_queue( Name => 'Templates' ); ok $queue && $queue->id, "loaded or created a queue"; my $alt_queue = RT::Test->load_or_create_queue( Name => 'Alternative' ); ok $alt_queue && $alt_queue->id, 'loaded or created queue'; { my $template = RT::Template->new(RT->SystemUser); isa_ok($template, 'RT::Template'); } { my $template = RT::Template->new( RT->SystemUser ); my ($val,$msg) = $template->Create( Queue => $queue->id, Name => 'Test', Content => 'This is template content' ); ok $val, "created a template" or diag "error: $msg"; ok my $id = $template->id, "id is defined"; is $template->Name, 'Test'; is $template->Content, 'This is template content', "We created the object right"; ($val, $msg) = $template->SetContent( 'This is new template content'); ok $val, "changed content" or diag "error: $msg"; is $template->Content, 'This is new template content', "We managed to _Set_ the content"; ($val, $msg) = $template->Delete; ok $val, "deleted template"; $template->Load($id); ok !$template->id, "can not load template after deletion"; } note "can not create template w/o Name"; { clean_templates( Queue => $queue->id ); my $template = RT::Template->new( RT->SystemUser ); my ($val,$msg) = $template->Create( Queue => $queue->id ); ok(!$val,$msg); } note "can not create template with duplicate name"; { clean_templates( Queue => $queue->id ); my $template = RT::Template->new( RT->SystemUser ); my ($val,$msg) = $template->Create( Queue => $queue->id, Name => 'Test' ); ok($val,$msg); ($val,$msg) = $template->Create( Queue => $queue->id, Name => 'Test' ); ok(!$val,$msg); } note "change template's name"; { clean_templates( Queue => $queue->id ); my $template = RT::Template->new( RT->SystemUser ); my ($val,$msg) = $template->Create( Queue => $queue->id, Name => 'Test' ); ok($val,$msg); ($val,$msg) = $template->SetName( 'Some' ); ok($val,$msg); is $template->Name, 'Some'; } note "can not change name to empty"; { clean_templates( Queue => $queue->id ); my $template = RT::Template->new( RT->SystemUser ); my ($val,$msg) = $template->Create( Queue => $queue->id, Name => 'Test' ); ok($val,$msg); ($val,$msg) = $template->Create( Queue => $queue->id, Name => '' ); ok(!$val,$msg); ($val,$msg) = $template->Create( Queue => $queue->id, Name => undef ); ok(!$val,$msg); } note "can not change name to duplicate"; { clean_templates( Queue => $queue->id ); my $template = RT::Template->new( RT->SystemUser ); my ($val,$msg) = $template->Create( Queue => $queue->id, Name => 'Test' ); ok($val,$msg); ($val,$msg) = $template->Create( Queue => $queue->id, Name => 'Some' ); ok($val,$msg); } note "changing queue of template is not implemented"; { clean_templates( Queue => $queue->id ); my $template = RT::Template->new( RT->SystemUser ); my ($val,$msg) = $template->Create( Queue => $queue->id, Name => 'Test' ); ok($val,$msg); ($val,$msg) = $template->SetQueue( $alt_queue->id ); ok(!$val,$msg); } note "make sure template can not be deleted if it has scrips"; { clean_templates( Queue => $queue->id ); my $template = RT::Template->new( RT->SystemUser ); my ($val,$msg) = $template->Create( Queue => $queue->id, Name => 'Test' ); ok($val,$msg); my $scrip = RT::Scrip->new( RT->SystemUser ); ($val,$msg) = $scrip->Create( Queue => $queue->id, ScripCondition => "On Create", ScripAction => 'Autoreply To Requestors', Template => $template->Name, ); ok($val, $msg); ($val, $msg) = $template->Delete; ok(!$val,$msg); } note "make sure template can be deleted if it's an override"; { clean_templates( Queue => $queue->id ); my $template = RT::Template->new( RT->SystemUser ); my ($val,$msg) = $template->Create( Queue => $queue->id, Name => 'Overrided' ); ok($val,$msg); $template = RT::Template->new( RT->SystemUser ); ($val,$msg) = $template->Create( Queue => 0, Name => 'Overrided' ); ok($val,$msg); my $scrip = RT::Scrip->new( RT->SystemUser ); ($val,$msg) = $scrip->Create( Queue => $queue->id, ScripCondition => "On Create", ScripAction => 'Autoreply To Requestors', Template => $template->Name, ); ok($val, $msg); ($val, $msg) = $template->Delete; ok($val,$msg); } note "make sure template can be deleted if it has an override"; { clean_templates( Queue => $queue->id ); my $template = RT::Template->new( RT->SystemUser ); my ($val,$msg) = $template->Create( Queue => 0, Name => 'Overrided' ); ok($val,$msg); $template = RT::Template->new( RT->SystemUser ); ($val,$msg) = $template->Create( Queue => $queue->id, Name => 'Overrided' ); ok($val,$msg); my $scrip = RT::Scrip->new( RT->SystemUser ); ($val,$msg) = $scrip->Create( Queue => $queue->id, ScripCondition => "On Create", ScripAction => 'Autoreply To Requestors', Template => $template->Name, ); ok($val, $msg); ($val, $msg) = $template->Delete; ok($val,$msg); } { my $t = RT::Template->new(RT->SystemUser); $t->Create(Name => "Foo", Queue => $queue->id); my $t2 = RT::Template->new(RT->Nobody); $t2->Load($t->Id); ok($t2->QueueObj->id, "Got the template's queue objet"); } sub clean_templates { my %args = (@_); my $templates = RT::Templates->new( RT->SystemUser ); $templates->Limit( FIELD => 'Queue', VALUE => $args{'Queue'} ) if defined $args{'Queue'}; $templates->Limit( FIELD => 'Name', VALUE => $_ ) foreach ref $args{'Name'}? @{$args{'Name'}} : ($args{'Name'}||()); while ( my $t = $templates->Next ) { my ($status) = $t->Delete; unless ( $status ) { $_->Delete foreach @{ $t->UsedBy->ItemsArrayRef }; $t->Delete; } } } rt-4.4.2/t/api/cf_rights.t0000664000175000017500000000231613131430353015205 0ustar vagrantvagrantuse warnings; use strict; use RT; use RT::Test tests => 12; my $q = RT::Queue->new($RT::SystemUser); my ($id,$msg) =$q->Create(Name => "CF-Rights-".$$); ok($id,$msg); my $cf = RT::CustomField->new($RT::SystemUser); ($id,$msg) = $cf->Create(Name => 'CF-'.$$, Type => 'Select', MaxValues => '1', Queue => $q->id); ok($id,$msg); ($id,$msg) =$cf->AddValue(Name => 'First'); ok($id,$msg); my $u = RT::User->new($RT::SystemUser); ($id,$msg) = $u->Create( Name => 'User1', Privileged => 1 ); ok ($id,$msg); ($id,$msg) = $u->PrincipalObj->GrantRight( Object => $cf, Right => 'SeeCustomField' ); ok ($id,$msg); my $ucf = RT::CustomField->new($u); ($id,$msg) = $ucf->Load( $cf->Id ); ok ($id,$msg); my $cfv = $ucf->Values->First; ($id,$msg) = $cfv->SetName( 'First1' ); ok (!$id,$msg); ($id,$msg) = $u->PrincipalObj->GrantRight( Object => $cf, Right => 'AdminCustomFieldValues' ); ok ($id,$msg); ($id,$msg) = $cfv->SetName( 'First2' ); ok ($id,$msg); ($id,$msg) = $u->PrincipalObj->RevokeRight( Object => $cf, Right => 'AdminCustomFieldValues' ); ok ($id,$msg); ($id,$msg) = $u->PrincipalObj->GrantRight( Object => $cf, Right => 'AdminCustomField' ); ok ($id,$msg); ($id,$msg) = $cfv->SetName( 'First3' ); ok ($id,$msg); 1; rt-4.4.2/t/api/queue.t0000664000175000017500000000565313131430353014370 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test nodata => 1, tests => undef, config => <<'CONFIG'; Set( %ServiceAgreements, ( Default => 'standard', Levels => { 'standard' => { Starts => { RealMinutes => 0 }, Resolve => { RealMinutes => 8*60 }, }, 'urgent' => { Starts => { RealMinutes => 0 }, Resolve => { RealMinutes => 2*60 }, }, }, )); CONFIG { use RT::Queue; } { my $q = RT::Queue->new(RT->SystemUser); is($q->IsValidStatus('new'), 1, 'New is a valid status'); is($q->IsValidStatus('f00'), 0, 'f00 is not a valid status'); } { my $q = RT::Queue->new(RT->SystemUser); is($q->IsActiveStatus('new'), 1, 'New is a Active status'); is($q->IsActiveStatus('rejected'), 0, 'Rejected is an inactive status'); is($q->IsActiveStatus('f00'), 0, 'f00 is not a Active status'); } { my $q = RT::Queue->new(RT->SystemUser); is($q->IsInactiveStatus('new'), 0, 'New is a Active status'); is($q->IsInactiveStatus('rejected'), 1, 'rejeected is an Inactive status'); is($q->IsInactiveStatus('f00'), 0, 'f00 is not a Active status'); } { my $queue = RT::Queue->new(RT->SystemUser); my ($id, $val) = $queue->Create( Name => 'Test1'); ok($id, $val); ($id, $val) = $queue->Create( Name => '66'); ok(!$id, $val); } { my $Queue = RT::Queue->new(RT->SystemUser); my ($id, $msg) = $Queue->Create(Name => "Foo"); ok ($id, "Foo $id was created"); ok(my $group = $Queue->RoleGroup('Requestor')); ok ($group->Id, "Found the requestors object for this Queue"); { my ($status, $msg) = $Queue->AddWatcher(Type => 'Cc', Email => 'bob@fsck.com'); ok ($status, "Added bob at fsck.com as a requestor") or diag "error: $msg"; } ok(my $bob = RT::User->new(RT->SystemUser), "Creating a bob rt::user"); $bob->LoadByEmail('bob@fsck.com'); ok($bob->Id, "Found the bob rt user"); ok ($Queue->IsWatcher(Type => 'Cc', PrincipalId => $bob->PrincipalId), "The Queue actually has bob at fsck.com as a requestor"); { my ($status, $msg) = $Queue->DeleteWatcher(Type =>'Cc', Email => 'bob@fsck.com'); ok ($status, "Deleted bob from Ccs") or diag "error: $msg"; ok (!$Queue->IsWatcher(Type => 'Cc', PrincipalId => $bob->PrincipalId), "The Queue no longer has bob at fsck.com as a requestor"); } $group = $Queue->RoleGroup('Cc'); ok ($group->Id, "Found the cc object for this Queue"); $group = $Queue->RoleGroup('AdminCc'); ok ($group->Id, "Found the AdminCc object for this Queue"); } { my $NoSLA = RT::Queue->new(RT->SystemUser); my ($id, $msg) = $NoSLA->Create(Name => "NoSLA"); ok($id, "created queue NoSLA"); is($NoSLA->SLA, undef, 'No SLA for NoSLA'); my $WithSLA = RT::Queue->new(RT->SystemUser); ($id, $msg) = $WithSLA->Create(Name => "WithSLA", SLA => 'urgent'); ok($id, "created queue WithSLA"); is($WithSLA->SLA, 'urgent', 'SLA is set'); $WithSLA->SetSLA('standard'); is($WithSLA->SLA, 'standard', 'SLA is updated'); } done_testing; rt-4.4.2/t/api/groups.t0000664000175000017500000001100713131430353014551 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodata => 1, tests => 27; RT::Group->AddRight( General => 'RTxGroupRight' => 'Just a right for testing rights', ); { my $g = RT::Group->new(RT->SystemUser); my ($id, $msg) = $g->CreateUserDefinedGroup(Name => 'GroupsNotEqualTest'); ok ($id, "created group #". $g->id) or diag("error: $msg"); my $groups = RT::Groups->new(RT->SystemUser); $groups->Limit( FIELD => 'id', OPERATOR => '!=', VALUE => $g->id ); $groups->LimitToUserDefinedGroups(); my $bug = grep $_->id == $g->id, @{$groups->ItemsArrayRef}; ok (!$bug, "didn't find group"); } { my $u = RT::User->new(RT->SystemUser); my ($id, $msg) = $u->Create( Name => 'Membertests'. $$ ); ok ($id, 'created user') or diag "error: $msg"; my $g = RT::Group->new(RT->SystemUser); ($id, $msg) = $g->CreateUserDefinedGroup(Name => 'Membertests'); ok ($id, $msg); my ($aid, $amsg) =$g->AddMember($u->id); ok ($aid, $amsg); ok($g->HasMember($u->PrincipalObj),"G has member u"); my $groups = RT::Groups->new(RT->SystemUser); $groups->LimitToUserDefinedGroups(); $groups->WithMember(PrincipalId => $u->id); is ($groups->Count , 1,"found the 1 group - " . $groups->Count); is ($groups->First->Id , $g->Id, "it's the right one"); } no warnings qw/redefine once/; my $q = RT::Queue->new(RT->SystemUser); my ($id, $msg) =$q->Create( Name => 'GlobalACLTest'); ok ($id, $msg); my $testuser = RT::User->new(RT->SystemUser); ($id,$msg) = $testuser->Create(Name => 'JustAnAdminCc'); ok ($id,$msg); my $global_admin_cc = RT->System->RoleGroup( 'AdminCc' ); ok($global_admin_cc->id, "Found the global admincc group"); my $groups = RT::Groups->new(RT->SystemUser); $groups->WithRight(Right => 'OwnTicket', Object => $q); is($groups->Count, 1); ($id, $msg) = $global_admin_cc->PrincipalObj->GrantRight(Right =>'OwnTicket', Object=> RT->System); ok ($id,$msg); ok (!$testuser->HasRight(Object => $q, Right => 'OwnTicket') , "The test user does not have the right to own tickets in the test queue"); ($id, $msg) = $q->AddWatcher(Type => 'AdminCc', PrincipalId => $testuser->id); ok($id,$msg); ok ($testuser->HasRight(Object => $q, Right => 'OwnTicket') , "The test user does have the right to own tickets now. thank god."); $groups = RT::Groups->new(RT->SystemUser); $groups->WithRight(Right => 'OwnTicket', Object => $q); ok ($id,$msg); is($groups->Count, 3); my $RTxGroup = RT::Group->new(RT->SystemUser); ($id, $msg) = $RTxGroup->CreateUserDefinedGroup( Name => 'RTxGroup', Description => "RTx extension group"); ok ($id,$msg); is ($RTxGroup->id, $id, "group loaded"); my $RTxSysObj = {}; bless $RTxSysObj, 'RTx::System'; *RTx::System::Id = sub { 1; }; *RTx::System::id = *RTx::System::Id; my $ace = RT::Record->new(RT->SystemUser); $ace->Table('ACL'); $ace->_BuildTableAttributes unless ($RT::Record::_TABLE_ATTR->{ref($ace)}); ($id, $msg) = $ace->Create( PrincipalId => $RTxGroup->id, PrincipalType => 'Group', RightName => 'RTxGroupRight', ObjectType => 'RTx::System', ObjectId => 1); ok ($id, "ACL for RTxSysObj created"); my $RTxObj = {}; bless $RTxObj, 'RTx::System::Record'; *RTx::System::Record::Id = sub { 4; }; *RTx::System::Record::id = *RTx::System::Record::Id; $groups = RT::Groups->new(RT->SystemUser); $groups->WithRight(Right => 'RTxGroupRight', Object => $RTxSysObj); is($groups->Count, 1, "RTxGroupRight found for RTxSysObj"); $groups = RT::Groups->new(RT->SystemUser); $groups->WithRight(Right => 'RTxGroupRight', Object => $RTxObj); is($groups->Count, 0, "RTxGroupRight not found for RTxObj"); $groups = RT::Groups->new(RT->SystemUser); $groups->WithRight(Right => 'RTxGroupRight', Object => $RTxObj, EquivObjects => [ $RTxSysObj ]); is($groups->Count, 1, "RTxGroupRight found for RTxObj using EquivObjects"); $ace = RT::Record->new(RT->SystemUser); $ace->Table('ACL'); $ace->_BuildTableAttributes unless ($RT::Record::_TABLE_ATTR->{ref($ace)}); ($id, $msg) = $ace->Create( PrincipalId => $RTxGroup->id, PrincipalType => 'Group', RightName => 'RTxGroupRight', ObjectType => 'RTx::System::Record', ObjectId => 5 ); ok ($id, "ACL for RTxObj created"); my $RTxObj2 = {}; bless $RTxObj2, 'RTx::System::Record'; *RTx::System::Record::Id = sub { 5; }; $groups = RT::Groups->new(RT->SystemUser); $groups->WithRight(Right => 'RTxGroupRight', Object => $RTxObj2); is($groups->Count, 1, "RTxGroupRight found for RTxObj2"); $groups = RT::Groups->new(RT->SystemUser); $groups->WithRight(Right => 'RTxGroupRight', Object => $RTxObj2, EquivObjects => [ $RTxSysObj ]); is($groups->Count, 1, "RTxGroupRight found for RTxObj2"); rt-4.4.2/t/api/uri-fsck_com_rt.t0000664000175000017500000000140413131430353016320 0ustar vagrantvagrantuse strict; use warnings; use RT; use RT::Test tests => 8; use_ok("RT::URI::fsck_com_rt"); my $uri = RT::URI::fsck_com_rt->new(RT->SystemUser); my $t1 = RT::Ticket->new(RT->SystemUser); my ($id,$trans,$msg) =$t1->Create (Queue => 'general', Subject => 'Requestor test one', ); ok ($id, $msg); ok(ref($uri)); ok (UNIVERSAL::isa($uri,"RT::URI::fsck_com_rt"), "It's an RT::URI::fsck_com_rt"); ok ($uri->isa('RT::URI::base'), "It's an RT::URI::base"); ok ($uri->isa('RT::Base'), "It's an RT::Base"); is ($uri->LocalURIPrefix , 'fsck.com-rt://'.RT->Config->Get('Organization')); my $ticket = RT::Ticket->new(RT->SystemUser); $ticket->Load(1); $uri = RT::URI::fsck_com_rt->new($ticket->CurrentUser); is($uri->LocalURIPrefix. "/ticket/1" , $uri->URIForObject($ticket)); rt-4.4.2/t/api/transaction.t0000664000175000017500000000315313131430353015562 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => undef; use Test::Warn; use_ok ('RT::Transaction'); { my $u = RT::User->new(RT->SystemUser); $u->Load("root"); ok ($u->Id, "Found the root user"); ok(my $t = RT::Ticket->new(RT->SystemUser)); my ($id, $msg) = $t->Create( Queue => 'General', Subject => 'Testing', Owner => $u->Id ); ok($id, "Create new ticket $id"); isnt($id , 0); my $txn = RT::Transaction->new(RT->SystemUser); my ($txn_id, $txn_msg) = $txn->Create( Type => 'AddLink', Field => 'RefersTo', Ticket => $id, NewValue => 'ticket 42', ); ok( $txn_id, "Created transaction $txn_id: $txn_msg"); my $brief; warning_like { $brief = $txn->BriefDescription } qr/Could not determine a URI scheme/, "Caught URI warning"; is( $brief, 'Reference to ticket 42 added', "Got string description: $brief"); $txn = RT::Transaction->new(RT->SystemUser); ($txn_id, $txn_msg) = $txn->Create( Type => 'DeleteLink', Field => 'RefersTo', Ticket => $id, OldValue => 'ticket 42', ); ok( $txn_id, "Created transaction $txn_id: $txn_msg"); warning_like { $brief = $txn->BriefDescription } qr/Could not determine a URI scheme/, "Caught URI warning"; is( $brief, 'Reference to ticket 42 deleted', "Got string description: $brief"); } done_testing; rt-4.4.2/t/api/db_indexes.t0000664000175000017500000001145013131430353015340 0ustar vagrantvagrantuse strict; use warnings; use Test::Warn; use RT::Test tests => undef; my $handle = $RT::Handle; my $db_type = RT->Config->Get('DatabaseType'); # Pg,Oracle needs DBA RT::Test::__reconnect_rt('as dba'); ok( $handle->dbh->do("ALTER SESSION SET CURRENT_SCHEMA=". RT->Config->Get('DatabaseUser') ) ) if $db_type eq 'Oracle'; note "test handle->Indexes method"; { my %indexes = $handle->Indexes; ok grep $_ eq 'tickets1', @{ $indexes{'tickets'} }; ok grep $_ eq 'tickets2', @{ $indexes{'tickets'} }; ok grep $_ eq 'users1', @{ $indexes{'users'} }; ok grep $_ eq 'users4', @{ $indexes{'users'} }; } note "test handle->DropIndex method"; { my ($status, $msg) = $handle->DropIndex( Table => 'Tickets', Name => 'Tickets1' ); ok $status, $msg; my %indexes = $handle->Indexes; ok !grep $_ eq 'tickets1', @{ $indexes{'tickets'} }; ($status, $msg) = $handle->DropIndex( Table => 'Tickets', Name => 'Tickets1' ); ok !$status, $msg; } note "test handle->DropIndexIfExists method"; { my ($status, $msg) = $handle->DropIndexIfExists( Table => 'Tickets', Name => 'Tickets2' ); ok $status, $msg; my %indexes = $handle->Indexes; ok !grep $_ eq 'tickets2', @{ $indexes{'tickets'} }; ($status, $msg) = $handle->DropIndexIfExists( Table => 'Tickets', Name => 'Tickets2' ); ok $status, $msg; } note "test handle->IndexInfo method"; { if ($db_type ne 'Oracle' && $db_type ne 'mysql') { my %res = $handle->IndexInfo( Table => 'Attachments', Name => 'Attachments1' ); is_deeply( \%res, { Table => 'attachments', Name => 'attachments1', Unique => 0, Functional => 0, Columns => ['parent'] } ); } else { my %res = $handle->IndexInfo( Table => 'Attachments', Name => 'Attachments2' ); is_deeply( \%res, { Table => 'attachments', Name => 'attachments2', Unique => 0, Functional => 0, Columns => ['transactionid'] } ); } my %res = $handle->IndexInfo( Table => 'GroupMembers', Name => 'GroupMembers1' ); is_deeply( \%res, { Table => 'groupmembers', Name => 'groupmembers1', Unique => 1, Functional => 0, Columns => ['groupid', 'memberid'] } ); if ( $db_type eq 'Pg' || $db_type eq 'Oracle' ) { %res = $handle->IndexInfo( Table => 'Queues', Name => 'Queues1' ); is_deeply( \%res, { Table => 'queues', Name => 'queues1', Unique => 1, Functional => 1, Columns => ['name'], CaseInsensitive => { name => 1 }, } ); } } note "test ->CreateIndex and ->IndexesThatBeginWith methods"; { { my ($name, $msg) = $handle->CreateIndex( Table => 'Users', Name => 'test_users1', Columns => ['Organization'], ); ok $name, $msg; } { my ($name, $msg) = $handle->CreateIndex( Table => 'Users', Name => 'test_users2', Columns => ['Organization', 'Name'], ); ok $name, $msg; } my @list = $handle->IndexesThatBeginWith( Table => 'Users', Columns => ['Organization'] ); is_deeply([sort map $_->{Name}, @list], [qw(test_users1 test_users2)]); my ($status, $msg) = $handle->DropIndex( Table => 'Users', Name => 'test_users1' ); ok $status, $msg; ($status, $msg) = $handle->DropIndex( Table => 'Users', Name => 'test_users2' ); ok $status, $msg; } note "Test some cases sensitivity aspects"; { { my %res = $handle->IndexInfo( Table => 'groupmembers', Name => 'groupmembers1' ); is_deeply( \%res, { Table => 'groupmembers', Name => 'groupmembers1', Unique => 1, Functional => 0, Columns => ['groupid', 'memberid'] } ); } { my ($status, $msg) = $handle->DropIndex( Table => 'groupmembers', Name => 'groupmembers1' ); ok $status, $msg; my %indexes = $handle->Indexes; ok !grep $_ eq 'groupmembers1', @{ $indexes{'groupmembers'} }; } { my ($name, $msg) = $handle->CreateIndex( Table => 'groupmembers', Name => 'groupmembers1', Unique => 1, Columns => ['groupid', 'memberid'] ); ok $name, $msg; my %indexes = $handle->Indexes; ok grep $_ eq 'groupmembers1', @{ $indexes{'groupmembers'} }; } { my ($status, $msg) = $handle->DropIndexIfExists( Table => 'groupmembers', Name => 'groupmembers1' ); ok $status, $msg; my %indexes = $handle->Indexes; ok !grep $_ eq 'groupmembers1', @{ $indexes{'groupmembers'} }; } } done_testing(); rt-4.4.2/t/api/system-available-rights.t0000664000175000017500000000322313131430353017773 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use Set::Tiny; my @warnings; local $SIG{__WARN__} = sub { push @warnings, "@_"; }; my $requestor = RT::Group->new( RT->SystemUser ); $requestor->LoadRoleGroup( Object => RT->System, Name => "Requestor", ); ok $requestor->id, "Loaded global requestor role group"; $requestor = $requestor->PrincipalObj; ok $requestor->id, "Loaded global requestor role group principal"; note "Try granting an article right to a system role group"; { my ($ok, $msg) = $requestor->GrantRight( Right => "ShowArticle", Object => RT->System, ); ok !$ok, "Couldn't grant nonsensical right to global Requestor role: $msg"; like shift @warnings, qr/Couldn't validate right name.*?ShowArticle/; ($ok, $msg) = $requestor->GrantRight( Right => "ShowTicket", Object => RT->System, ); ok $ok, "Granted queue right to global queue role: $msg"; ($ok, $msg) = RT->PrivilegedUsers->PrincipalObj->GrantRight( Right => "ShowArticle", Object => RT->System, ); ok $ok, "Granted article right to non-role global group: $msg"; reset_rights(); } note "AvailableRights"; { my @available = ( [ keys %{RT->System->AvailableRights} ], [ keys %{RT->System->AvailableRights( $requestor )} ], ); my $all = Set::Tiny->new( @{$available[0]} ); my $role = Set::Tiny->new( @{$available[1]} ); ok $role->is_proper_subset($all), "role rights are a proper subset of all"; } ok !@warnings, "No uncaught warnings" or diag explain \@warnings; # for clarity sub reset_rights { RT::Test->set_rights() } done_testing; rt-4.4.2/t/api/attribute.t0000664000175000017500000000156313131430353015243 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test nodata => 1, tests => 7; { my $user = RT->SystemUser; my ($id, $msg) = $user->AddAttribute(Name => 'SavedSearch', Content => { Query => 'Foo'} ); ok ($id, $msg); my $attr = RT::Attribute->new(RT->SystemUser); $attr->Load($id); is($attr->Name , 'SavedSearch'); $attr->SetSubValues( Format => 'baz'); my $format = $attr->SubValue('Format'); is ($format , 'baz'); $attr->SetSubValues( Format => 'bar'); $format = $attr->SubValue('Format'); is ($format , 'bar'); $attr->DeleteAllSubValues(); $format = $attr->SubValue('Format'); is ($format, undef); $attr->SetSubValues(Format => 'This is a format'); my $attr2 = RT::Attribute->new(RT->SystemUser); $attr2->Load($id); is ($attr2->SubValue('Format'), 'This is a format'); $attr2->Delete; my $attr3 = RT::Attribute->new(RT->SystemUser); ($id) = $attr3->Load($id); is ($id, 0); } rt-4.4.2/t/api/i18n_guess.t0000664000175000017500000000373613131430353015231 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 16; use constant HAS_ENCODE_GUESS => Encode::Guess->require; use constant HAS_ENCODE_DETECT => Encode::Detect::Detector->require; my $string = "\x{442}\x{435}\x{441}\x{442} \x{43f}\x{43e}\x{434}\x{434}\x{435}\x{440}\x{436}\x{43a}\x{430}"; sub guess { local $Test::Builder::Level = $Test::Builder::Level + 1; is( RT::I18N::_GuessCharset( Encode::encode($_[0], $_[1]) ), $_[2] || $_[0], "$_[0] guesses as @{[$_[2]||$_[0]]}" ); } RT->Config->Set(EmailInputEncodings => qw(*)); SKIP: { skip "No Encode::Detect", 3 unless HAS_ENCODE_DETECT; guess('utf-8', $string); guess('cp1251', $string); guess('koi8-r', $string); } RT->Config->Set(EmailInputEncodings => qw(UTF-8 cp1251 koi8-r)); SKIP: { skip "No Encode::Guess", 4 unless HAS_ENCODE_GUESS; guess('utf-8', $string); guess('cp1251', $string); guess('windows-1251', $string, 'cp1251'); { local $TODO = "Encode::Guess can't distinguish cp1251 from koi8-r"; guess('koi8-r', $string); } } RT->Config->Set(EmailInputEncodings => qw(UTF-8 koi8-r cp1251)); SKIP: { skip "No Encode::Guess", 3 unless HAS_ENCODE_GUESS; guess('utf-8', $string); guess('koi8-r', $string); { local $TODO = "Encode::Guess can't distinguish cp1251 from koi8-r"; guess('cp1251', $string); } } # windows-1251 is an alias for cp1251, post load check cleanups array for us RT->Config->Set(EmailInputEncodings => qw(UTF-8 windows-1251 koi8-r)); RT->Config->PostLoadCheck; SKIP: { skip "No Encode::Guess", 3 unless HAS_ENCODE_GUESS; guess('utf-8', $string); guess('cp1251', $string); { local $TODO = "Encode::Guess can't distinguish cp1251 from koi8-r"; guess('koi8-r', $string); } } RT->Config->Set(EmailInputEncodings => qw(* UTF-8 cp1251 koi8-r)); SKIP: { skip "No Encode::Detect", 3 unless HAS_ENCODE_DETECT; guess('utf-8', $string); guess('cp1251', $string); guess('koi8-r', $string); } rt-4.4.2/t/api/condition-ownerchange.t0000664000175000017500000000242313131430353017520 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => 11; { my $q = RT::Queue->new(RT->SystemUser); $q->Create(Name =>'ownerChangeTest'); ok($q->Id, "Created a scriptest queue"); my $s1 = RT::Scrip->new(RT->SystemUser); my ($val, $msg) =$s1->Create( Queue => $q->Id, ScripAction => 'User Defined', ScripCondition => 'On Owner Change', CustomIsApplicableCode => '', CustomPrepareCode => 'return 1', CustomCommitCode => ' $self->TicketObj->SetPriority($self->TicketObj->Priority+1); return(1); ', Template => 'Blank' ); ok($val,$msg); my $ticket = RT::Ticket->new(RT->SystemUser); my ($tv,$ttv,$tm) = $ticket->Create(Queue => $q->Id, Subject => "hair on fire", InitialPriority => '20' ); ok($tv, $tm); ok($ticket->SetOwner('root')); is ($ticket->Priority , '21', "Ticket priority is set right"); ok($ticket->Steal); is ($ticket->Priority , '22', "Ticket priority is set right"); ok($ticket->Untake); is ($ticket->Priority , '23', "Ticket priority is set right"); ok($ticket->Take); is ($ticket->Priority , '24', "Ticket priority is set right"); } rt-4.4.2/t/api/users.t0000664000175000017500000000517013131430353014377 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 10; RT::System->AddRight( General => 'RTxUserRight' => 'Just a right for testing rights', ); { no warnings qw(redefine once); ok(my $users = RT::Users->new(RT->SystemUser)); $users->WhoHaveRight(Object => RT->System, Right =>'SuperUser'); is($users->Count , 1, "There is one privileged superuser - Found ". $users->Count ); # TODO: this wants more testing my $RTxUser = RT::User->new(RT->SystemUser); my ($id, $msg) = $RTxUser->Create( Name => 'RTxUser', Comments => "RTx extension user", Privileged => 1); ok ($id,$msg); my $group = RT::Group->new(RT->SystemUser); $group->LoadACLEquivalenceGroup($RTxUser->PrincipalObj); my $RTxSysObj = {}; bless $RTxSysObj, 'RTx::System'; *RTx::System::Id = sub { 1; }; *RTx::System::id = *RTx::System::Id; my $ace = RT::Record->new(RT->SystemUser); $ace->Table('ACL'); $ace->_BuildTableAttributes unless ($RT::Record::_TABLE_ATTR->{ref($ace)}); ($id, $msg) = $ace->Create( PrincipalId => $group->id, PrincipalType => 'Group', RightName => 'RTxUserRight', ObjectType => 'RTx::System', ObjectId => 1 ); ok ($id, "ACL for RTxSysObj created"); my $RTxObj = {}; bless $RTxObj, 'RTx::System::Record'; *RTx::System::Record::Id = sub { 4; }; *RTx::System::Record::id = *RTx::System::Record::Id; $users = RT::Users->new(RT->SystemUser); $users->WhoHaveRight(Right => 'RTxUserRight', Object => $RTxSysObj); is($users->Count, 1, "RTxUserRight found for RTxSysObj"); $users = RT::Users->new(RT->SystemUser); $users->WhoHaveRight(Right => 'RTxUserRight', Object => $RTxObj); is($users->Count, 0, "RTxUserRight not found for RTxObj"); $users = RT::Users->new(RT->SystemUser); $users->WhoHaveRight(Right => 'RTxUserRight', Object => $RTxObj, EquivObjects => [ $RTxSysObj ]); is($users->Count, 1, "RTxUserRight found for RTxObj using EquivObjects"); $ace = RT::Record->new(RT->SystemUser); $ace->Table('ACL'); $ace->_BuildTableAttributes unless ($RT::Record::_TABLE_ATTR->{ref($ace)}); ($id, $msg) = $ace->Create( PrincipalId => $group->id, PrincipalType => 'Group', RightName => 'RTxUserRight', ObjectType => 'RTx::System::Record', ObjectId => 5 ); ok ($id, "ACL for RTxObj created"); my $RTxObj2 = {}; bless $RTxObj2, 'RTx::System::Record'; *RTx::System::Record::Id = sub { 5; }; *RTx::System::Record::id = sub { 5; }; $users = RT::Users->new(RT->SystemUser); $users->WhoHaveRight(Right => 'RTxUserRight', Object => $RTxObj2); is($users->Count, 1, "RTxUserRight found for RTxObj2"); $users = RT::Users->new(RT->SystemUser); $users->WhoHaveRight(Right => 'RTxUserRight', Object => $RTxObj2, EquivObjects => [ $RTxSysObj ]); is($users->Count, 1, "RTxUserRight found for RTxObj2"); } rt-4.4.2/t/api/i18n.t0000664000175000017500000000115013131430353014007 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test nodb => 1, tests => 9; { use_ok ('RT::I18N'); ok(RT::I18N->Init); } { ok(my $chinese = RT::I18N->get_handle('zh_tw')); ok(UNIVERSAL::can($chinese, 'maketext')); like($chinese->maketext('__Content-Type') , qr/utf-8/i, "Found the utf-8 charset for traditional chinese in the string ".$chinese->maketext('__Content-Type')); is($chinese->encoding , 'utf-8', "The encoding is 'utf-8' -".$chinese->encoding); ok(my $en = RT::I18N->get_handle('en')); ok(UNIVERSAL::can($en, 'maketext')); is($en->encoding , 'utf-8', "The encoding ".$en->encoding." is 'utf-8'"); } rt-4.4.2/t/api/scrip_execmodule.t0000664000175000017500000000232113131430353016563 0ustar vagrantvagrantuse strict; use warnings; use RT::Test plugins => [qw(RT::Extension::ScripExecModule)]; my $system_user = RT->SystemUser; my $queue = RT::Test->load_or_create_queue( Name => 'General' ); ok $queue && $queue->id, 'loaded or created queue'; { my $action = RT::ScripAction->new($system_user); my ( $val, $msg) = $action->Create( Name => 'TestExecModuleAction', Description => '', ExecModule => 'Foo::Bar', ); ok($val, $msg); my $condition = RT::ScripCondition->new($system_user); ( $val, $msg ) = $condition->Create( Name => 'TestExecModuleCondition', Description => '', ApplicableTransTypes => 'Create', ExecModule => 'Foo::Bar', ); ok($val, $msg); my $scrip = RT::Scrip->new($system_user); ($val, $msg) = $scrip->Create( Queue => $queue->Id, ScripAction => 'TestExecModuleAction', ScripCondition => 'TestExecModuleCondition', Template => 'Blank' ); ok($val,$msg); my $ticket = RT::Ticket->new($system_user); my ( $tid, $trans_id, $tmsg ) = $ticket->Create( Subject => 'Sample workflow test', Owner => 'root', Queue => $queue->Id ); ok($tid, $tmsg); } rt-4.4.2/t/api/uri-t.t0000664000175000017500000000112613131430353014273 0ustar vagrantvagrantuse strict; use warnings; use RT; use RT::Test tests => 6; my $t1 = RT::Ticket->new(RT->SystemUser); my ($id,$trans,$msg) =$t1->Create (Queue => 'general', Subject => 'Requestor test one', ); ok ($id, $msg); use_ok("RT::URI::t"); my $uri = RT::URI::t->new(RT->SystemUser); ok(ref($uri), "URI object exists"); my $uristr = "t:1"; $uri->ParseURI($uristr); is(ref($uri->Object), "RT::Ticket", "Object loaded is a ticket"); is($uri->Object->Id, 1, "Object loaded has correct ID"); is($uri->URI, 'fsck.com-rt://'.RT->Config->Get('Organization').'/ticket/1', "URI object has correct URI string"); rt-4.4.2/t/api/execute-code.t0000664000175000017500000000674713131430353015623 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 17; my $ticket = RT::Ticket->new(RT->SystemUser); ok( $ticket->Create( Subject => 'blue lines', Queue => 'General', ) ); my $attacker = RT::User->new(RT->SystemUser); ok( $attacker->Create( Name => 'attacker', Password => 'foobar', Privileged => 1, ) ); my $template_as_attacker = RT::Template->new($attacker); # can't create templates without ModifyTemplate my ($ok, $msg) = $template_as_attacker->Create( Name => 'Harmless, honest!', Content => "\nhello ;)", Type => 'Perl', ); ok(!$ok, 'permission to create denied'); # permit modifying templates but they must be simple $attacker->PrincipalObj->GrantRight(Right => 'ShowTemplate', Object => $RT::System); $attacker->PrincipalObj->GrantRight(Right => 'ModifyTemplate', Object => $RT::System); ($ok, $msg) = $template_as_attacker->Create( Name => 'Harmless, honest!', Content => "\nhello ;)", Type => 'Perl', ); ok(!$ok, 'permission to create denied'); ($ok, $msg) = $template_as_attacker->Create( Name => 'Harmless, honest!', Content => "\nhello ;)", Type => 'Simple', ); ok($ok, 'created template now that we have ModifyTemplate'); ($ok, $msg) = $template_as_attacker->SetType('Perl'); ok(!$ok, 'permission to update type to Perl denied'); my $template_as_root = RT::Template->new(RT->SystemUser); $template_as_root->Load('Harmless, honest!'); is($template_as_root->Content, "\nhello ;)"); is($template_as_root->Type, 'Simple'); $template_as_root->Parse(TicketObj => $ticket); is($template_as_root->MIMEObj->stringify_body, "hello ;)"); # update the content to include code (even though Simple won't parse it) ($ok, $msg) = $template_as_attacker->SetContent("\nYou are { (my \$message = 'bjarq') =~ tr/a-z/n-za-m/; \$message }!"); ok($ok, 'updating Content permitted since the template is Simple'); $template_as_root = RT::Template->new(RT->SystemUser); $template_as_root->Load('Harmless, honest!'); is($template_as_root->Content, "\nYou are { (my \$message = 'bjarq') =~ tr/a-z/n-za-m/; \$message }!"); is($template_as_root->Type, 'Simple'); $template_as_root->Parse(TicketObj => $ticket); is($template_as_root->MIMEObj->stringify_body, "You are { (my \$message = 'bjarq') =~ tr/a-z/n-za-m/; \$message }!"); # try again, why not ($ok, $msg) = $template_as_attacker->SetType('Perl'); ok(!$ok, 'permission to update type to Perl denied'); # now root will change the template to genuine code $template_as_root = RT::Template->new(RT->SystemUser); $template_as_root->Load('Harmless, honest!'); $template_as_root->SetType('Perl'); $template_as_root->SetContent("\n{ scalar reverse \$Ticket->Subject }"); $template_as_root->Parse(TicketObj => $ticket); is($template_as_root->MIMEObj->stringify_body, "senil eulb"); # see if we can update anything $template_as_attacker = RT::Template->new($attacker); $template_as_attacker->Load('Harmless, honest!'); ($ok, $msg) = $template_as_attacker->SetContent("\nYou are { (my \$message = 'bjarq') =~ tr/a-z/n-za-m/; \$message }!"); ok(!$ok, 'updating Content forbidden since the template is Perl'); # try again just to be absolutely sure it doesn't work $template_as_root = RT::Template->new(RT->SystemUser); $template_as_root->Load('Harmless, honest!'); $template_as_root->SetType('Perl'); $template_as_root->SetContent("\n{ scalar reverse \$Ticket->Subject }"); $template_as_root->Parse(TicketObj => $ticket); is($template_as_root->MIMEObj->stringify_body, "senil eulb"); rt-4.4.2/t/api/system.t0000664000175000017500000000356613131430353014571 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test nodata => 1, tests => 16; BEGIN{ use_ok('RT::System'); } # Skipping most of the methods added just to make RT::System # look like RT::Record. can_ok('RT::System', qw( AvailableRights RightCategories AddRight id Id SubjectTag Name QueueCacheNeedsUpdate AddUpgradeHistory UpgradeHistory )); { my $s = RT::System->new(RT->SystemUser); my $rights = $s->AvailableRights; ok ($rights, "Rights defined"); ok ($rights->{'AdminUsers'},"AdminUsers right found"); ok ($rights->{'CreateTicket'},"CreateTicket right found"); ok ($rights->{'AdminGroupMembership'},"ModifyGroupMembers right found"); ok (!$rights->{'CasdasdsreateTicket'},"bogus right not found"); } { my $sys = RT::System->new(); is( $sys->Id, 1, 'Id is 1'); is ($sys->id, 1, 'id is 1'); } { # Test upgrade history methods. my $sys = RT::System->new(RT->SystemUser); isa_ok($sys, 'RT::System'); my $file = 'test_file.txt'; my $content = 'Some file contents.'; my $upgrade_history = RT->System->UpgradeHistory(); is( keys %$upgrade_history, 0, 'No history in test DB'); RT->System->AddUpgradeHistory(RT =>{ action => 'insert', filename => $file, content => $content, stage => 'before', }); $upgrade_history = RT->System->UpgradeHistory(); ok( exists($upgrade_history->{'RT'}), 'History has an RT key.'); is( @{$upgrade_history->{'RT'}}, 1, '1 item in history array'); is($upgrade_history->{RT}[0]{stage}, 'before', 'stage is before for item 1'); RT->System->AddUpgradeHistory(RT =>{ action => 'insert', filename => $file, content => $content, stage => 'after', }); $upgrade_history = RT->System->UpgradeHistory(); is( @{$upgrade_history->{'RT'}}, 2, '2 item in history array'); is($upgrade_history->{RT}[1]{stage}, 'after', 'stage is after for item 2'); } rt-4.4.2/t/api/cf_render_type.t0000664000175000017500000000260013131430353016221 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 13; my $cf = RT::CustomField->new($RT::SystemUser); my ( $id, $ret, $msg ); diag "single select"; ( $id, $msg ) = $cf->Create( Name => 'single_select', Type => 'Select', MaxValues => '1', Queue => 0, ); ok( $id, $msg ); is( $cf->RenderType, 'Select box', 'default render type is Select box' ); ( $ret, $msg ) = $cf->SetRenderType('Dropdown'); ok( $ret, 'changed to Dropdown' ); is( $cf->RenderType, 'Dropdown', 'render type is indeed updated' ); ( $ret, $msg ) = $cf->SetRenderType('List'); ok( $ret, 'changed to List' ); is( $cf->RenderType, 'List', 'render type is indeed updated' ); ( $ret, $msg ) = $cf->SetRenderType('fakeone'); ok( !$ret, 'failed to set an invalid render type' ); is( $cf->RenderType, 'List', 'render type is still List' ); diag "multiple select"; ( $id, $msg ) = $cf->Create( Name => 'multiple_select', Type => 'Select', MaxValues => '0', Queue => 0, RenderType => 'List', ); is( $cf->RenderType, 'List', 'set render type to List' ); ( $ret, $msg ) = $cf->SetRenderType('Dropdown'); ok( !$ret, 'Dropdown is invalid for multiple select' ); is( $cf->RenderType, 'List', 'render type is still List' ); ( $ret, $msg ) = $cf->SetRenderType('Select box'); ok( $ret, 'changed to Select box' ); is( $cf->RenderType, 'Select box', 'render type is indeed updated' ); rt-4.4.2/t/api/emailparser.t0000664000175000017500000000266413131430353015547 0ustar vagrantvagrant use strict; use warnings; use RT::Test nodb => 1, tests => undef; ok(require RT::EmailParser); RT->Config->Set( RTAddressRegexp => undef ); is(RT::EmailParser::IsRTAddress("",""),undef, "Empty emails from users don't match queues without email addresses" ); RT->Config->Set( RTAddressRegexp => qr/^rt\@example.com$/i ); is(RT::EmailParser::IsRTAddress("","rt\@example.com"),1, "Regexp matched rt address" ); is(RT::EmailParser::IsRTAddress("","frt\@example.com"),undef, "Regexp didn't match non-rt address" ); my @before = ("rt\@example.com", "frt\@example.com"); my @after = ("frt\@example.com"); ok(eq_array(RT::EmailParser->CullRTAddresses(@before),@after), "CullRTAddresses only culls RT addresses"); { my ( $addr ) = RT::EmailParser->ParseEmailAddress('foo@example.com'); is( $addr->address, 'foo@example.com', 'addr for foo@example.com' ); is( $addr->phrase, undef, 'no name for foo@example.com' ); ( $addr ) = RT::EmailParser->ParseEmailAddress('Foo '); is( $addr->address, 'foo@example.com', 'addr for Foo ' ); is( $addr->phrase, 'Foo', 'name for Foo ' ); ( $addr ) = RT::EmailParser->ParseEmailAddress('foo@example.com (Comment)'); is( $addr->address, 'foo@example.com', 'addr for foo@example.com (Comment)' ); is( $addr->phrase, undef, 'no name for foo@example.com (Comment)' ); } done_testing; rt-4.4.2/t/api/link.t0000664000175000017500000001662213131430353014177 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodata => 1, tests => 83; use RT::Test::Web; use Test::Warn; use RT::Link; my $link = RT::Link->new(RT->SystemUser); ok (ref $link); isa_ok( $link, 'RT::Link'); isa_ok( $link, 'RT::Base'); isa_ok( $link, 'RT::Record'); isa_ok( $link, 'DBIx::SearchBuilder::Record'); my $queue = RT::Test->load_or_create_queue(Name => 'General'); ok($queue->Id, "loaded the General queue"); my $parent = RT::Ticket->new(RT->SystemUser); my ($pid, undef, $msg) = $parent->Create( Queue => $queue->id, Subject => 'parent', ); ok $pid, 'created a ticket #'. $pid or diag "error: $msg"; my $child = RT::Ticket->new(RT->SystemUser); ((my $cid), undef, $msg) = $child->Create( Queue => $queue->id, Subject => 'child', ); ok $cid, 'created a ticket #'. $cid or diag "error: $msg"; { my ($status, $msg); clean_links(); ($status, $msg) = $parent->AddLink; ok(!$status, "didn't create a link: $msg"); warning_like { ($status, $msg) = $parent->AddLink( Base => $parent->id ); } qr/Can't link a ticket to itself/, "warned about linking a ticket to itself"; ok(!$status, "didn't create a link: $msg"); warning_like { ($status, $msg) = $parent->AddLink( Base => $parent->id, Type => 'HasMember' ); } qr/Can't link a ticket to itself/, "warned about linking a ticket to itself"; ok(!$status, "didn't create a link: $msg"); } { clean_links(); my ($status, $msg) = $parent->AddLink( Type => 'MemberOf', Base => $child->id, ); ok($status, "created a link: $msg"); my $children = $parent->Members; $children->RedoSearch; $children->GotoFirstItem; is $children->Count, 1, 'link is there'; my $link = $children->First; ok $link->id, 'correct link'; is $link->Type, 'MemberOf', 'type'; is $link->LocalTarget, $parent->id, 'local target'; is $link->LocalBase, $child->id, 'local base'; is $link->Target, 'fsck.com-rt://example.com/ticket/'. $parent->id, 'local target'; is $link->Base, 'fsck.com-rt://example.com/ticket/'. $child->id, 'local base'; isa_ok $link->TargetObj, 'RT::Ticket'; is $link->TargetObj->id, $parent->id, 'correct ticket'; isa_ok $link->TargetURI, 'RT::URI'; is $link->TargetURI->Scheme, 'fsck.com-rt', 'correct scheme'; is $link->TargetURI->URI, 'fsck.com-rt://example.com/ticket/'. $parent->id, 'correct URI' ; ok $link->TargetURI->IsLocal, 'local object'; is $link->TargetURI->AsHREF, RT::Test::Web->rt_base_url .'Ticket/Display.html?id='. $parent->id, 'correct href' ; isa_ok $link->BaseObj, 'RT::Ticket'; is $link->BaseObj->id, $child->id, 'correct ticket'; isa_ok $link->BaseURI, 'RT::URI'; is $link->BaseURI->Scheme, 'fsck.com-rt', 'correct scheme'; is $link->BaseURI->URI, 'fsck.com-rt://example.com/ticket/'. $child->id, 'correct URI' ; ok $link->BaseURI->IsLocal, 'local object'; is $link->BaseURI->AsHREF, RT::Test::Web->rt_base_url .'Ticket/Display.html?id='. $child->id, 'correct href' ; } { clean_links(); my ($status, $msg) = $parent->AddLink( Type => 'MemberOf', Base => $child->URI, ); ok($status, "created a link: $msg"); my $children = $parent->Members; $children->RedoSearch; $children->GotoFirstItem; is $children->Count, 1, 'link is there'; my $link = $children->First; ok $link->id, 'correct link'; is $link->Type, 'MemberOf', 'type'; is $link->LocalTarget, $parent->id, 'local target'; is $link->LocalBase, $child->id, 'local base'; is $link->Target, 'fsck.com-rt://example.com/ticket/'. $parent->id, 'local target'; is $link->Base, 'fsck.com-rt://example.com/ticket/'. $child->id, 'local base'; isa_ok $link->TargetObj, 'RT::Ticket'; is $link->TargetObj->id, $parent->id, 'correct ticket'; isa_ok $link->TargetURI, 'RT::URI'; is $link->TargetURI->Scheme, 'fsck.com-rt', 'correct scheme'; is $link->TargetURI->URI, 'fsck.com-rt://example.com/ticket/'. $parent->id, 'correct URI' ; ok $link->TargetURI->IsLocal, 'local object'; is $link->TargetURI->AsHREF, RT::Test::Web->rt_base_url .'Ticket/Display.html?id='. $parent->id, 'correct href' ; isa_ok $link->BaseObj, 'RT::Ticket'; is $link->BaseObj->id, $child->id, 'correct ticket'; isa_ok $link->BaseURI, 'RT::URI'; is $link->BaseURI->Scheme, 'fsck.com-rt', 'correct scheme'; is $link->BaseURI->URI, 'fsck.com-rt://example.com/ticket/'. $child->id, 'correct URI' ; ok $link->BaseURI->IsLocal, 'local object'; is $link->BaseURI->AsHREF, RT::Test::Web->rt_base_url .'Ticket/Display.html?id='. $child->id, 'correct href' ; } { clean_links(); my ($status, $msg) = $parent->AddLink( Type => 'MemberOf', Base => 't:'. $child->id, ); ok($status, "created a link: $msg"); my $children = $parent->Members; $children->RedoSearch; $children->GotoFirstItem; is $children->Count, 1, 'link is there'; my $link = $children->First; ok $link->id, 'correct link'; is $link->Type, 'MemberOf', 'type'; is $link->LocalTarget, $parent->id, 'local target'; is $link->LocalBase, $child->id, 'local base'; is $link->Target, 'fsck.com-rt://example.com/ticket/'. $parent->id, 'local target'; is $link->Base, 'fsck.com-rt://example.com/ticket/'. $child->id, 'local base'; isa_ok $link->TargetObj, 'RT::Ticket'; is $link->TargetObj->id, $parent->id, 'correct ticket'; isa_ok $link->TargetURI, 'RT::URI'; is $link->TargetURI->Scheme, 'fsck.com-rt', 'correct scheme'; is $link->TargetURI->URI, 'fsck.com-rt://example.com/ticket/'. $parent->id, 'correct URI' ; ok $link->TargetURI->IsLocal, 'local object'; is $link->TargetURI->AsHREF, RT::Test::Web->rt_base_url .'Ticket/Display.html?id='. $parent->id, 'correct href' ; isa_ok $link->BaseObj, 'RT::Ticket'; is $link->BaseObj->id, $child->id, 'correct ticket'; isa_ok $link->BaseURI, 'RT::URI'; is $link->BaseURI->Scheme, 'fsck.com-rt', 'correct scheme'; is $link->BaseURI->URI, 'fsck.com-rt://example.com/ticket/'. $child->id, 'correct URI' ; ok $link->BaseURI->IsLocal, 'local object'; is $link->BaseURI->AsHREF, RT::Test::Web->rt_base_url .'Ticket/Display.html?id='. $child->id, 'correct href' ; } { clean_links(); $child->SetStatus('deleted'); my ($status, $msg) = $parent->AddLink( Type => 'MemberOf', Base => $child->id, ); ok(!$status, "can't link to deleted ticket: $msg"); $child->SetStatus('new'); ($status, $msg) = $parent->AddLink( Type => 'MemberOf', Base => $child->id, ); ok($status, "created a link: $msg"); $child->SetStatus('deleted'); my $children = $parent->Members; $children->RedoSearch; my $total = 0; $total++ while $children->Next; is( $total, 0, 'Next skips deleted tickets' ); is( @{ $children->ItemsArrayRef }, 0, 'ItemsArrayRef skips deleted tickets' ); # back to active status $child->SetStatus('new'); } sub clean_links { my $links = RT::Links->new( RT->SystemUser ); $links->UnLimit; while ( my $link = $links->Next ) { my ($status, $msg) = $link->Delete; $RT::Logger->error("Couldn't delete a link: $msg") unless $status; } } rt-4.4.2/t/api/canonical_charset.t0000664000175000017500000000137713131430353016703 0ustar vagrantvagrantuse warnings; use strict; use RT::Test nodata => 1, tests => 11; use RT::I18N; my %map = ( 'euc-cn' => 'gbk', 'gb-2312' => 'gbk', gb2312 => 'gbk', utf8 => 'utf-8', 'utf-8' => 'utf-8', ); for my $charset ( keys %map ) { is( RT::I18N::_CanonicalizeCharset($charset), $map{$charset}, "$charset => $map{$charset}" ); is( RT::I18N::_CanonicalizeCharset( uc $charset ), $map{$charset}, uc( $charset ) . " => $map{$charset}" ); } my $mime = MIME::Entity->build( Type => 'text/plain; charset=gb2312', Data => [Encode::encode("gbk", Encode::decode( "UTF-8", "法新社倫敦11日電"))], ); RT::I18N::SetMIMEEntityToUTF8($mime); is( $mime->stringify_body, '法新社倫敦11日電', 'gb2312 => gbk in mail' ); rt-4.4.2/t/api/rights_show_ticket.t0000664000175000017500000001646713131430353017154 0ustar vagrantvagrant use RT::Test nodata => 1, tests => 264; use strict; use warnings; my $queue_a = RT::Test->load_or_create_queue( Name => 'A' ); ok $queue_a && $queue_a->id, 'loaded or created queue_a'; my $qa_id = $queue_a->id; my $queue_b = RT::Test->load_or_create_queue( Name => 'B' ); ok $queue_b && $queue_b->id, 'loaded or created queue_b'; my $qb_id = $queue_b->id; my $user_a = RT::Test->load_or_create_user( Name => 'user_a', Password => 'password', ); ok $user_a && $user_a->id, 'loaded or created user'; my $user_b = RT::Test->load_or_create_user( Name => 'user_b', Password => 'password', ); ok $user_b && $user_b->id, 'loaded or created user'; foreach my $option (0 .. 1 ) { RT->Config->Set( 'UseSQLForACLChecks' => $option ); diag "Testing with UseSQLForACLChecks => $option"; # Global Cc has right, a User is nobody { cleanup(); RT::Test->set_rights( { Principal => 'Everyone', Right => [qw(SeeQueue)] }, { Principal => 'Cc', Right => [qw(ShowTicket)] }, ); create_tickets_set(); have_no_rights($user_a, $user_b); } # Global Cc has right, a User is Queue Cc { cleanup(); RT::Test->set_rights( { Principal => 'Everyone', Right => [qw(SeeQueue)] }, { Principal => 'Cc', Right => [qw(ShowTicket)] }, ); create_tickets_set(); have_no_rights($user_a, $user_b); my ($status, $msg) = $queue_a->AddWatcher( Type => 'Cc', PrincipalId => $user_a->id ); ok($status, "user A is now queue A watcher"); foreach my $q ( '', "Queue = $qa_id OR Queue = $qb_id", "Queue = $qb_id OR Queue = $qa_id", ) { my $tickets = RT::Tickets->new( RT::CurrentUser->new( $user_a ) ); $q? $tickets->FromSQL($q) : $tickets->UnLimit; my $found = 0; while ( my $t = $tickets->Next ) { $found++; is( $t->Queue, $queue_a->id, "user sees tickets only in queue A" ); } is($found, 2, "user sees tickets"); } have_no_rights( $user_b ); } # global Cc has right, a User is ticket Cc { cleanup(); RT::Test->set_rights( { Principal => 'Everyone', Right => [qw(SeeQueue)] }, { Principal => 'Cc', Right => [qw(ShowTicket)] }, ); my @tickets = create_tickets_set(); have_no_rights($user_a, $user_b); my ($status, $msg) = $tickets[1]->AddWatcher( Type => 'Cc', PrincipalId => $user_a->id ); ok($status, "user A is now queue A watcher"); foreach my $q ( '', "Queue = $qa_id OR Queue = $qb_id", "Queue = $qb_id OR Queue = $qa_id", ) { my $tickets = RT::Tickets->new( RT::CurrentUser->new( $user_a ) ); $q? $tickets->FromSQL($q) : $tickets->UnLimit; my $found = 0; while ( my $t = $tickets->Next ) { $found++; is( $t->Queue, $queue_a->id, "user sees tickets only in queue A" ); is( $t->id, $tickets[1]->id, "correct ticket"); } is($found, 1, "user sees tickets"); } have_no_rights($user_b); } # Queue Cc has right, a User is nobody { cleanup(); RT::Test->set_rights( { Principal => 'Everyone', Right => [qw(SeeQueue)] }, { Principal => 'Cc', Object => $queue_a, Right => [qw(ShowTicket)] }, ); create_tickets_set(); have_no_rights($user_a, $user_b); } # Queue Cc has right, Users are Queue Ccs { cleanup(); RT::Test->set_rights( { Principal => 'Everyone', Right => [qw(SeeQueue)] }, { Principal => 'Cc', Object => $queue_a, Right => [qw(ShowTicket)] }, ); create_tickets_set(); have_no_rights($user_a, $user_b); my ($status, $msg) = $queue_a->AddWatcher( Type => 'Cc', PrincipalId => $user_a->id ); ok($status, "user A is now queue A watcher"); ($status, $msg) = $queue_b->AddWatcher( Type => 'Cc', PrincipalId => $user_b->id ); ok($status, "user B is now queue B watcher"); foreach my $q ( '', "Queue = $qa_id OR Queue = $qb_id", "Queue = $qb_id OR Queue = $qa_id", ) { my $tickets = RT::Tickets->new( RT::CurrentUser->new( $user_a ) ); $q? $tickets->FromSQL($q) : $tickets->UnLimit; my $found = 0; while ( my $t = $tickets->Next ) { $found++; is( $t->Queue, $queue_a->id, "user sees tickets only in queue A" ); } is($found, 2, "user sees tickets"); } have_no_rights( $user_b ); } # Queue Cc has right, Users are ticket Ccs { cleanup(); RT::Test->set_rights( { Principal => 'Everyone', Right => [qw(SeeQueue)] }, { Principal => 'Cc', Object => $queue_a, Right => [qw(ShowTicket)] }, ); my @tickets = create_tickets_set(); have_no_rights($user_a, $user_b); my ($status, $msg) = $tickets[1]->AddWatcher( Type => 'Cc', PrincipalId => $user_a->id ); ok($status, "user A is now Cc on a ticket in queue A"); ($status, $msg) = $tickets[2]->AddWatcher( Type => 'Cc', PrincipalId => $user_b->id ); ok($status, "user B is now Cc on a ticket in queue B"); foreach my $q ( '', "Queue = $qa_id OR Queue = $qb_id", "Queue = $qb_id OR Queue = $qa_id", ) { my $tickets = RT::Tickets->new( RT::CurrentUser->new( $user_a ) ); $q? $tickets->FromSQL($q) : $tickets->UnLimit; my $found = 0; while ( my $t = $tickets->Next ) { $found++; is( $t->Queue, $queue_a->id, "user sees tickets only in queue A" ); is( $t->id, $tickets[1]->id, ) } is($found, 1, "user sees tickets"); } have_no_rights( $user_b ); } # Users has direct right on queue { cleanup(); RT::Test->set_rights( { Principal => 'Everyone', Right => [qw(SeeQueue)] }, { Principal => $user_a, Object => $queue_a, Right => [qw(ShowTicket)] }, ); my @tickets = create_tickets_set(); foreach my $q ( '', "Queue = $qa_id OR Queue = $qb_id", "Queue = $qb_id OR Queue = $qa_id", ) { my $tickets = RT::Tickets->new( RT::CurrentUser->new( $user_a ) ); $q? $tickets->FromSQL($q) : $tickets->UnLimit; my $found = 0; while ( my $t = $tickets->Next ) { $found++; is( $t->Queue, $queue_a->id, "user sees tickets only in queue A" ); } is($found, 2, "user sees tickets"); } have_no_rights( $user_b ); } } sub have_no_rights { local $Test::Builder::Level = $Test::Builder::Level + 1; foreach my $u ( @_ ) { foreach my $q ( '', "Queue = $qa_id OR Queue = $qb_id", "Queue = $qb_id OR Queue = $qa_id", ) { my $tickets = RT::Tickets->new( RT::CurrentUser->new( $u ) ); $q? $tickets->FromSQL($q) : $tickets->UnLimit; ok(!$tickets->First, "no tickets"); } } } sub create_tickets_set{ local $Test::Builder::Level = $Test::Builder::Level + 1; my @res; foreach my $q ($queue_a, $queue_b) { foreach my $n (1 .. 2) { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($tid) = $ticket->Create( Queue => $q->id, Subject => $q->Name .' - '. $n ); ok( $tid, "created ticket #$tid"); push @res, $ticket; } } return @res; } sub cleanup { RT::Test->delete_tickets( "Queue = $qa_id OR Queue = $qb_id" ); RT::Test->delete_queue_watchers( $queue_a, $queue_b ); }; rt-4.4.2/t/api/initialdata.t0000664000175000017500000000104513131430353015516 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 'no_declare'; # This test script processes the sample initialdata file in # ../data/initialdata/initialdata # To add initialdata tests, add the data to the initialdata file and it # will be processed by this script. my $initialdata = RT::Test::get_relocatable_file("initialdata" => "..", "data", "initialdata"); my ($rv, $msg) = RT->DatabaseHandle->InsertData( $initialdata, undef, disconnect_after => 0 ); ok($rv, "Inserted test data from $initialdata") or diag "Error: $msg"; done_testing();rt-4.4.2/t/api/has_rights.t0000664000175000017500000000225313131430353015370 0ustar vagrantvagrantuse RT::Test nodata => 1, tests => 9; use strict; use warnings; my $queue = RT::Test->load_or_create_queue( Name => 'A' ); ok $queue && $queue->id, 'loaded or created queue_a'; my $qid = $queue->id; my $user = RT::Test->load_or_create_user( Name => 'user', Password => 'password', EmailAddress => 'test@example.com', ); ok $user && $user->id, 'loaded or created user'; { cleanup(); RT::Test->set_rights( { Principal => 'Everyone', Right => [qw(SeeQueue)] }, { Principal => 'Cc', Right => [qw(ShowTicket)] }, ); my ($t) = RT::Test->create_tickets( { Queue => $queue->id }, { }, ); my $rights = $user->PrincipalObj->HasRights( Object => $t ); is_deeply( $rights, { SeeQueue => 1 }, 'got it' ); ($t) = RT::Test->create_tickets( { Queue => $queue->id }, { Cc => $user->EmailAddress }, ); ok($t->Cc->HasMember( $user->id ), 'user is cc'); $rights = $user->PrincipalObj->HasRights( Object => $t ); is_deeply( $rights, { SeeQueue => 1, ShowTicket => 1 }, 'got it' ) } sub cleanup { RT::Test->delete_tickets( "Queue = $qid" ); RT::Test->delete_queue_watchers( $queue ); }; rt-4.4.2/t/api/rt.t0000664000175000017500000000053713131430353013665 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test nodata => 1, tests => 4; { is (RT->Nobody->Name() , 'Nobody', "Nobody is nobody"); isnt (RT->Nobody->Name() , 'root', "Nobody isn't named root"); is (RT->SystemUser->Name() , 'RT_System', "The system user is RT_System"); isnt (RT->SystemUser->Name() , 'noname', "The system user isn't noname"); } rt-4.4.2/t/api/squish.t0000664000175000017500000000101513131430353014544 0ustar vagrantvagrantuse strict; use warnings; use RT; use RT::Test nodb => 1, tests => undef; use Test::Warn; use RT::Squish; my $squish; warning_like { $squish = RT::Squish->new(); } [qr/implement/], "warns this is only an abstract base class"; for my $method ( qw/Content ModifiedTime ModifiedTimeString Key/ ) { can_ok($squish, $method); } like( $squish->Key, qr/[a-f0-9]{32}/, 'Key is like md5' ); ok( (time()-$squish->ModifiedTime) <= 2, 'ModifiedTime' ); use RT::Squish::CSS; can_ok('RT::Squish::CSS', 'Style'); done_testing; rt-4.4.2/t/api/cfsearch.t0000664000175000017500000000521213131430353015011 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 18; my $suffix = '-'. $$; use_ok 'RT::Users'; use_ok 'RT::CustomField'; my $u1 = RT::User->new( RT->SystemUser ); isa_ok( $u1, 'RT::User' ); ok( $u1->Load('root'), "Loaded user 'root'" ); # create cf my $cfname = 'TestUserCF'. $suffix; my $cf = RT::CustomField->new( RT->SystemUser ); isa_ok( $cf, 'RT::CustomField' ); { my ($id, $msg) = $cf->Create( Name => $cfname, LookupType => 'RT::User', Type => 'Freeform', Description => 'Freeform CF for tests', ); ok( $id, "Created cf '$cfname' - " . $msg ); } { my ($status, $msg) = $cf->AddToObject( $u1 ); ok( $status, "Added CF to user object - " . $msg); } my $cfvalue1 = 'Foo'; { my ($id, $msg) = $u1->AddCustomFieldValue( Field => $cfname, Value => $cfvalue1, RecordTransaction => 0 ); ok( $id, "Adding CF value '$cfvalue1' - " . $msg ); } # Confirm value is returned. { my $cf_value_ref = QueryCFValue( $cfvalue1, $cf->id ); is( scalar(@$cf_value_ref), 1, 'Got one value.' ); is( $cf_value_ref->[0], 'Foo', 'Got Foo back for value.' ); } { my ($id, $msg) = $u1->DeleteCustomFieldValue( Field => $cfname, Value => $cfvalue1, RecordTransaction => 0 ); ok( $id, "Deleting CF value - " . $msg ); } my $cfvalue2 = 'Bar'; { my ($id, $msg) = $u1->AddCustomFieldValue( Field => $cfname, Value => $cfvalue2, RecordTransaction => 0 ); ok( $id, "Adding second CF value '$cfvalue2' - " . $msg ); } # Confirm no value is returned for Foo. { # Calling with $cfvalue1 on purpose to confirm # it has been disabled by the delete above. my $cf_value_ref = QueryCFValue( $cfvalue1, $cf->id ); is( scalar(@$cf_value_ref), 0, 'No values returned for Foo.' ); } # Confirm value is returned for Bar. { my $cf_value_ref = QueryCFValue( $cfvalue2, $cf->id ); is( scalar(@$cf_value_ref), 1, 'Got one value.' ); is( $cf_value_ref->[0], 'Bar', 'Got Bar back for value.' ); } sub QueryCFValue{ my $cf_value = shift; my $cf_id = shift; my @cf_value_strs; my $users = RT::Users->new(RT->SystemUser); isa_ok( $users, 'RT::Users' ); $users->LimitCustomField( CUSTOMFIELD => $cf_id, OPERATOR => "=", VALUE => $cf_value ); while ( my $filtered_user = $users->Next() ){ my $cf_values = $filtered_user->CustomFieldValues($cf->id); while (my $cf_value = $cf_values->Next() ){ push @cf_value_strs, $cf_value->Content; } } return \@cf_value_strs; } rt-4.4.2/t/api/attribute-tests.t0000664000175000017500000000462713131430353016407 0ustar vagrantvagrantuse strict; use warnings; use RT; use RT::Test nodata => 1, tests => 34; my $runid = rand(200); my $attribute = "squelch-$runid"; ok(require RT::Attributes); my $user = RT::User->new(RT->SystemUser); ok (UNIVERSAL::isa($user, 'RT::User')); my ($id,$msg) = $user->Create(Name => 'attrtest-'.$runid); ok ($id, $msg); ok($user->id, "Created a test user"); ok(1, $user->Attributes->BuildSelectQuery); my $attr = $user->Attributes; # XXX: Order by id as some tests depend on it $attr->OrderByCols({ FIELD => 'id' }); ok(1, $attr->BuildSelectQuery); ok (UNIVERSAL::isa($attr,'RT::Attributes'), 'got the attributes object'); ($id, $msg) = $user->AddAttribute(Name => 'TestAttr', Content => 'The attribute has content'); ok ($id, $msg); is ($attr->Count,1, " One attr after adding a first one"); my $first_attr = $user->FirstAttribute('TestAttr'); ok($first_attr, "got some sort of attribute"); isa_ok($first_attr, 'RT::Attribute'); is($first_attr->Content, 'The attribute has content', "got the right content back"); ($id, $msg) = $attr->DeleteEntry(Name => $runid); ok(!$id, "Deleted non-existant entry - $msg"); is ($attr->Count,1, "1 attr after deleting an empty attr"); my @names = $attr->Names; is ("@names", "TestAttr"); ($id, $msg) = $user->AddAttribute(Name => $runid, Content => "First"); ok($id, $msg); my $runid_attr = $user->FirstAttribute($runid); ok($runid_attr, "got some sort of attribute"); isa_ok($runid_attr, 'RT::Attribute'); is($runid_attr->Content, 'First', "got the right content back"); is ($attr->Count,2, " Two attrs after adding an attribute named $runid"); ($id, $msg) = $user->AddAttribute(Name => $runid, Content => "Second"); ok($id, $msg); $runid_attr = $user->FirstAttribute($runid); ok($runid_attr, "got some sort of attribute"); isa_ok($runid_attr, 'RT::Attribute'); is($runid_attr->Content, 'First', "got the first content back still"); is ($attr->Count,3, " Three attrs after adding a secondvalue to $runid"); ($id, $msg) = $attr->DeleteEntry(Name => $runid, Content => "First"); ok($id, $msg); is ($attr->Count,2); #$attr->_DoSearch(); ($id, $msg) = $attr->DeleteEntry(Name => $runid, Content => "Second"); ok($id, $msg); is ($attr->Count,1); #$attr->_DoSearch(); ok(1, $attr->BuildSelectQuery); ($id, $msg) = $attr->DeleteEntry(Name => "moose"); ok(!$id, "Deleted non-existant entry - $msg"); is ($attr->Count,1); ok(1, $attr->BuildSelectQuery); @names = $attr->Names; is("@names", "TestAttr"); rt-4.4.2/t/api/customfield.t0000664000175000017500000003713213131430353015557 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => undef; use Test::Warn; use_ok('RT::CustomField'); my $queue = RT::Queue->new( RT->SystemUser ); $queue->Load( "General" ); ok( $queue->id, "found the General queue" ); my $cf = RT::CustomField->new(RT->SystemUser); ok($cf, "Have a CustomField object"); # Use the old Queue field to set up a ticket CF my ($ok, $msg) = $cf->Create( Name => 'TestingCF', Queue => '0', Description => 'A Testing custom field', Type => 'SelectSingle' ); ok($ok, 'Global custom field correctly created'); is($cf->Type, 'Select', "Is a select CF"); ok($cf->SingleValue, "Also a single-value CF"); is($cf->MaxValues, 1, "...meaning only one value, max"); ($ok, $msg) = $cf->SetMaxValues('0'); ok($ok, "Set to infinite values: $msg"); is($cf->Type, 'Select', "Still a select CF"); ok( ! $cf->SingleValue, "No longer single-value" ); is($cf->MaxValues, 0, "...meaning no maximum values"); # Test our sanity checking of CF types ($ok, $msg) = $cf->SetType('BogusType'); ok( ! $ok, "Unable to set a custom field's type to a bogus type: $msg"); $cf = RT::CustomField->new(RT->SystemUser); ($ok, $msg) = $cf->Create( Name => 'TestingCF-bad', Queue => '0', SortOrder => '1', Description => 'A Testing custom field with a bogus Type', Type=> 'SelectSingleton' ); ok( ! $ok, "Correctly could not create with bogus type: $msg"); # Test adding and removing CFVs $cf->Load(2); ($ok, $msg) = $cf->AddValue(Name => 'foo' , Description => 'TestCFValue', SortOrder => '6'); ok($ok, "Added a new value to the select options"); ($ok, $msg) = $cf->DeleteValue($ok); ok($ok, "Deleting it again"); # Loading, and context objects $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName( Name => "TestingCF" ); ok($cf->id, "Load finds it, given just a name" ); ok( ! $cf->ContextObject, "Did not get a context object"); # Old Queue => form should find the global, gain no context object $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 0); ok($cf->id, "Load finds it, given a Name and Queue => 0" ); ok( ! $cf->ContextObject, 'Context object not set when queue is 0'); # We don't default to also searching global -- but do pick up a contextobject $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 1); ok( ! $cf->id, "Load does not finds it, given a Name and Queue => 1" ); ok($cf->ContextObject->id, 'Context object is now set'); # If we IncludeGlobal, we find it $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 1, IncludeGlobal => 1 ); ok($cf->id, "Load now finds it, given a Name and Queue => 1 and IncludeGlobal" ); ok($cf->ContextObject->id, 'Context object is also set'); # The explicit LookupType works $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::Ticket->CustomFieldLookupType ); ok($cf->id, "Load now finds it, given a Name and LookupType" ); ok( ! $cf->ContextObject, 'No context object gained'); # The explicit LookupType, ObjectId, and IncludeGlobal -- what most folks want $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::Ticket->CustomFieldLookupType, ObjectId => 1, IncludeGlobal => 1 ); ok($cf->id, "Load now finds it, given a Name, LookupType, ObjectId, IncludeGlobal" ); ok($cf->ContextObject->id, 'And gains a context obj'); # Look for a queue by name $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => "General" ); ok( ! $cf->id, "No IncludeGlobal, so queue by name fails" ); ok($cf->ContextObject->id, 'But gains a context object'); # Look for a queue by name, include global $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => "General", IncludeGlobal => 1 ); ok($cf->id, "By name, and queue name works with IncludeGlobal" ); ok($cf->ContextObject->id, 'And gains a context object'); # A bogus Queue gets you no results, but a warning $cf = RT::CustomField->new( RT->SystemUser ); warning_like { $cf->LoadByName(Name => 'TestingCF', Queue => "Bogus" ); ok( ! $cf->id, "With a bogus queue name gets no results" ); ok( ! $cf->ContextObject, 'And also no context object'); } qr/Failed to load RT::Queue 'Bogus'/, "Generates a warning"; # Ditto by number which is bogus $cf = RT::CustomField->new( RT->SystemUser ); warning_like { $cf->LoadByName(Name => 'TestingCF', Queue => "9000" ); ok( ! $cf->id, "With a bogus queue number gets no results" ); ok( ! $cf->ContextObject, 'And also no context object'); } qr/Failed to load RT::Queue '9000'/, "Generates a warning"; # But if they also wanted global results, we might have an answer $cf = RT::CustomField->new( RT->SystemUser ); warning_like { $cf->LoadByName(Name => 'TestingCF', Queue => "9000", IncludeGlobal => 1 ); ok($cf->id, "Bogus queue but IncludeGlobal founds it" ); ok( ! $cf->ContextObject, 'But no context object'); } qr/Failed to load RT::Queue '9000'/, "And generates a warning"; # Make it only apply to one queue $cf->Load(2); my $ocf = RT::ObjectCustomField->new( RT->SystemUser ); ( $ok, $msg ) = $ocf->LoadByCols( CustomField => $cf->id, ObjectId => 0 ); ok( $ok, "Found global application of CF" ); ( $ok, $msg ) = $ocf->Delete; ok( $ok, "...and deleted it"); ( $ok, $msg ) = $ocf->Add( CustomField => $cf->id, ObjectId => 1 ); ok($ok, "Applied to just queue 1" ); # Looking for it globally with Queue => 0 should fail, gain no context object $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 0); ok( ! $cf->id, "Load fails to find, given a Name and Queue => 0" ); ok( ! $cf->ContextObject, 'Context object not set when queue is 0'); # Looking it up by Queue => 1 works fine, and gets context object $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 1); ok($cf->id, "Load does finds it, given a Name and Queue => 1" ); ok($cf->ContextObject->id, 'Context object is now set'); # Also find it with IncludeGlobal $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 1, IncludeGlobal => 1 ); ok($cf->id, "Load also finds it, given a Name and Queue => 1 and IncludeGlobal" ); ok($cf->ContextObject->id, 'Context object is also set'); # The explicit LookupType works $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::Ticket->CustomFieldLookupType ); ok($cf->id, "Load also finds it, given a Name and LookupType" ); ok( ! $cf->ContextObject, 'But no context object gained'); # Explicit LookupType, ObjectId works $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::Ticket->CustomFieldLookupType, ObjectId => 1 ); ok($cf->id, "Load still finds it, given a Name, LookupType, ObjectId" ); ok($cf->ContextObject->id, 'And gains a context obj'); # Explicit LookupType, ObjectId works $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::Ticket->CustomFieldLookupType, ObjectId => 1, IncludeGlobal => 1 ); ok($cf->id, "Load also finds it, given a Name, LookupType, ObjectId, and IncludeGlobal" ); ok($cf->ContextObject->id, 'And gains a context obj'); # Look for a queue by name $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => "General" ); ok($cf->id, "Finds it by queue name" ); ok($cf->ContextObject->id, 'But gains a context object'); # Look for a queue by name, include global $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => "General", IncludeGlobal => 1 ); ok($cf->id, "By name, and queue name works with IncludeGlobal" ); ok($cf->ContextObject->id, 'And gains a context object'); # Change the lookup type to be a _queue_ CF ($ok, $msg) = $cf->SetLookupType( RT::Queue->CustomFieldLookupType ); ok($ok, "Changed CF type to be a CF on queues" ); $ocf = RT::ObjectCustomField->new( RT->SystemUser ); ( $ok, $msg ) = $ocf->Add( CustomField => $cf->id, ObjectId => 0 ); ok($ok, "Applied globally" ); # Just looking by name gets you CFs of any type $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF'); ok($cf->id, "Find the CF by name, with no queue" ); # Queue => 0 means "ticket CF", so doesn't find it $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 0); ok( ! $cf->id, "Wrong lookup type to find with Queue => 0" ); # Queue => 1 and IncludeGlobal also doesn't find it $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 0, IncludeGlobal => 1); ok( ! $cf->id, "Also doesn't find with Queue => 0 and IncludeGlobal" ); # Find it with the right LookupType $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::Queue->CustomFieldLookupType ); ok($cf->id, "Found for the right lookup type" ); # Found globally $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::Queue->CustomFieldLookupType, ObjectId => 0 ); ok($cf->id, "Found for the right lookup type and ObjectId 0" ); # Also works with Queue instead of ObjectId $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::Queue->CustomFieldLookupType, Queue => 0 ); ok($cf->id, "Found for the right lookup type and Queue 0" ); # Not found without IncludeGlobal $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::Queue->CustomFieldLookupType, ObjectId => 1 ); ok( ! $cf->id, "Not found for ObjectId 1 and no IncludeGlobal" ); # Found with IncludeGlobal $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::Queue->CustomFieldLookupType, ObjectId => 1, IncludeGlobal => 1 ); ok($cf->id, "Found for ObjectId 1 and IncludeGlobal" ); # Found with IncludeGlobal and Queue instead of ObjectId $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::Queue->CustomFieldLookupType, ObjectId => 1, IncludeGlobal => 1 ); ok($cf->id, "Found for Queue 1 and IncludeGlobal" ); # Change the lookup type to be a _transaction_ CF ($ok, $msg) = $cf->SetLookupType( RT::Transaction->CustomFieldLookupType ); ok($ok, "Changed CF type to be a CF on transactions" ); $ocf = RT::ObjectCustomField->new( RT->SystemUser ); ( $ok, $msg ) = $ocf->Add( CustomField => $cf->id, ObjectId => 0 ); ok($ok, "Applied globally" ); # Just looking by name gets you CFs of any type $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF'); ok($cf->id, "Find the CF by name, with no queue" ); # Queue => 0 means "ticket CF", so doesn't find it $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 0); ok( ! $cf->id, "Wrong lookup type to find with Queue => 0" ); # Queue => 1 and IncludeGlobal also doesn't find it $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 0, IncludeGlobal => 1); ok( ! $cf->id, "Also doesn't find with Queue => 0 and IncludeGlobal" ); # Change the lookup type to be a _user_ CF $cf->Load(2); ($ok, $msg) = $cf->SetLookupType( RT::User->CustomFieldLookupType ); ok($ok, "Changed CF type to be a CF on users" ); $ocf = RT::ObjectCustomField->new( RT->SystemUser ); ( $ok, $msg ) = $ocf->Add( CustomField => $cf->id, ObjectId => 0 ); ok($ok, "Applied globally" ); # Just looking by name gets you CFs of any type $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF'); ok($cf->id, "Find the CF by name, with no queue" ); # Queue => 0 means "ticket CF", so doesn't find it $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 0); ok( ! $cf->id, "Wrong lookup type to find with Queue => 0" ); # Queue => 1 and IncludeGlobal also doesn't find it $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 0, IncludeGlobal => 1); ok( ! $cf->id, "Also doesn't find with Queue => 0 and IncludeGlobal" ); # But RT::User->CustomFieldLookupType does $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::User->CustomFieldLookupType ); ok($cf->id, "User lookuptype does" ); # Also with an explicit global $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::User->CustomFieldLookupType, ObjectId => 0 ); ok($cf->id, "Also with user CF and explicit global" ); # Add a second, queue-specific CF to test load order $cf->Load(2); ($ok, $msg) = $cf->SetLookupType( RT::Ticket->CustomFieldLookupType ); ok($ok, "Changed CF type back to be a CF on tickets" ); $ocf = RT::ObjectCustomField->new( RT->SystemUser ); ( $ok, $msg ) = $ocf->Add( CustomField => $cf->id, ObjectId => 0 ); ok($ok, "Applied globally" ); ($ok, $msg) = $cf->SetDescription( "Global CF" ); ok($ok, "Changed CF type back to be a CF on tickets" ); ($ok, $msg) = $cf->Create( Name => 'TestingCF', Queue => '1', Description => 'Queue-specific CF', Type => 'SelectSingle' ); ok($ok, "Created second CF successfully"); # If passed just a name, you get the first by id $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF' ); like($cf->Description, qr/Global/, "Gets the first (global) one if just loading by name" ); # Ditto if also limited to lookuptype $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', LookupType => RT::Ticket->CustomFieldLookupType ); like($cf->Description, qr/Global/, "Same, if one adds a LookupType" ); # Gets the global with Queue => 0 $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 0 ); like($cf->Description, qr/Global/, "Specify Queue => 0 and get global" ); # Gets the queue with Queue => 1 $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 1 ); like($cf->Description, qr/Queue/, "Specify Queue => 1 and get the queue" ); # Gets the queue with Queue => 1 and IncludeGlobal $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 1, IncludeGlobal => 1 ); like($cf->Description, qr/Queue/, "Specify Queue => 1 and IncludeGlobal and get the queue" ); # Disable one of them ($ok, $msg) = $cf->SetDisabled(1); is($msg, "Disabled", "Disabling custom field gives correct message"); ok($ok, "Disabled the Queue-specific one"); ($ok, $msg) = $cf->SetDisabled(0); is($msg, "Enabled", "Enabling custom field gives correct message"); ok($ok, "Enabled the Queue-specific one"); ($ok, $msg) = $cf->SetDisabled(1); is($msg, "Disabled", "Disabling custom field again gives correct message"); ok($ok, "Disabled the Queue-specific one again"); # With just a name, prefers the non-disabled $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF' ); like($cf->Description, qr/Global/, "Prefers non-disabled CFs" ); # Still finds the queue one, if asked $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 1 ); like($cf->Description, qr/Queue/, "Still loads the disabled queue CF" ); # Prefers the global one if IncludeGlobal $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 1, IncludeGlobal => 1 ); like($cf->Description, qr/Global/, "Prefers the global one with IncludeGlobal" ); # IncludeDisabled allows filtering out the disabled one $cf = RT::CustomField->new( RT->SystemUser ); $cf->LoadByName(Name => 'TestingCF', Queue => 1, IncludeDisabled => 0 ); ok( ! $cf->id, "Doesn't find it if IncludeDisabled => 0" ); done_testing; rt-4.4.2/t/api/uri-canonicalize.t0000664000175000017500000000317013131430353016470 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my @warnings; local $SIG{__WARN__} = sub { push @warnings, "@_"; }; # Create ticket my $ticket = RT::Test->create_ticket( Queue => 1, Subject => 'test ticket' ); ok $ticket->id, 'created ticket'; # Create article class my $class = RT::Class->new( $RT::SystemUser ); $class->Create( Name => 'URItest - '. $$ ); ok $class->id, 'created a class'; # Create article my $article = RT::Article->new( $RT::SystemUser ); $article->Create( Name => 'Testing URI parsing - '. $$, Summary => 'In which this should load', Class => $class->Id ); ok $article->id, 'create article'; # Test permutations of URIs my $ORG = RT->Config->Get('Organization'); my $URI = RT::URI->new( RT->SystemUser ); my %expected = ( # tickets "1" => "fsck.com-rt://$ORG/ticket/1", "t:1" => "fsck.com-rt://$ORG/ticket/1", "fsck.com-rt://$ORG/ticket/1" => "fsck.com-rt://$ORG/ticket/1", # articles "a:1" => "fsck.com-article://$ORG/article/1", "fsck.com-article://$ORG/article/1" => "fsck.com-article://$ORG/article/1", # random stuff "http://$ORG" => "http://$ORG", "mailto:foo\@example.com" => "mailto:foo\@example.com", "invalid" => "invalid", # doesn't trigger die ); for my $uri (sort keys %expected) { is $URI->CanonicalizeURI($uri), $expected{$uri}, "canonicalized as expected"; } is_deeply \@warnings, [ "Could not determine a URI scheme for invalid\n", ], "expected warnings"; done_testing; rt-4.4.2/t/api/tickets.t0000664000175000017500000001022713131430353014703 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => undef; { ok (require RT::Tickets); ok( my $testtickets = RT::Tickets->new( RT->SystemUser ) ); ok( $testtickets->LimitStatus( VALUE => 'deleted' ) ); # Should be zero until 'allow_deleted_search' is( $testtickets->Count , 0 ); } { # Test to make sure that you can search for tickets by requestor address and # by requestor name. my ($id,$msg); my $u1 = RT::User->new(RT->SystemUser); ($id, $msg) = $u1->Create( Name => 'RequestorTestOne', EmailAddress => 'rqtest1@example.com'); ok ($id,$msg); my $u2 = RT::User->new(RT->SystemUser); ($id, $msg) = $u2->Create( Name => 'RequestorTestTwo', EmailAddress => 'rqtest2@example.com'); ok ($id,$msg); my $t1 = RT::Ticket->new(RT->SystemUser); my ($trans); ($id,$trans,$msg) =$t1->Create (Queue => 'general', Subject => 'Requestor test one', Requestor => [$u1->EmailAddress]); ok ($id, $msg); my $t2 = RT::Ticket->new(RT->SystemUser); ($id,$trans,$msg) =$t2->Create (Queue => 'general', Subject => 'Requestor test one', Requestor => [$u2->EmailAddress]); ok ($id, $msg); my $t3 = RT::Ticket->new(RT->SystemUser); ($id,$trans,$msg) =$t3->Create (Queue => 'general', Subject => 'Requestor test one', Requestor => [$u2->EmailAddress, $u1->EmailAddress]); ok ($id, $msg); my $tix1 = RT::Tickets->new(RT->SystemUser); $tix1->FromSQL('Requestor.EmailAddress LIKE "rqtest1" OR Requestor.EmailAddress LIKE "rqtest2"'); is ($tix1->Count, 3); my $tix2 = RT::Tickets->new(RT->SystemUser); $tix2->FromSQL('Requestor.Name LIKE "TestOne" OR Requestor.Name LIKE "TestTwo"'); is ($tix2->Count, 3); my $tix3 = RT::Tickets->new(RT->SystemUser); $tix3->FromSQL('Requestor.EmailAddress LIKE "rqtest1"'); is ($tix3->Count, 2); my $tix4 = RT::Tickets->new(RT->SystemUser); $tix4->FromSQL('Requestor.Name LIKE "TestOne" '); is ($tix4->Count, 2); # Searching for tickets that have two requestors isn't supported # There's no way to differentiate "one requestor name that matches foo and bar" # and "two requestors, one matching foo and one matching bar" # my $tix5 = RT::Tickets->new(RT->SystemUser); # $tix5->FromSQL('Requestor.Name LIKE "TestOne" AND Requestor.Name LIKE "TestTwo"'); # # is ($tix5->Count, 1); # # my $tix6 = RT::Tickets->new(RT->SystemUser); # $tix6->FromSQL('Requestor.EmailAddress LIKE "rqtest1" AND Requestor.EmailAddress LIKE "rqtest2"'); # # is ($tix6->Count, 1); } { my $t1 = RT::Ticket->new(RT->SystemUser); $t1->Create(Queue => 'general', Subject => "LimitWatchers test", Requestors => \['requestor1@example.com']); } { # We assume that we've got some tickets hanging around from before. ok( my $unlimittickets = RT::Tickets->new( RT->SystemUser ) ); ok( $unlimittickets->UnLimit ); ok( $unlimittickets->Count > 0, "UnLimited tickets object should return tickets" ); } { my $tickets = RT::Tickets->new( RT->SystemUser ); $tickets->Limit( FIELD => 'id', OPERATOR => '>', VALUE => 0 ); my $count = $tickets->Count(); ok $count > 1, "found more than one ticket"; undef $count; $tickets->Limit( FIELD => 'id', OPERATOR => '=', VALUE => 1, ENTRYAGGREGATOR => 'none' ); $count = $tickets->Count(); ok $count == 1, "found one ticket"; } { my $tickets = RT::Tickets->new( RT->SystemUser ); my ($ret, $msg) = $tickets->FromSQL("Resolved IS NULL"); ok $ret, "Ran query with IS NULL: $msg"; my $count = $tickets->Count(); ok $count > 1, "Found more than one ticket"; undef $count; } { my $ticket = RT::Ticket->new( RT->SystemUser ); ok $ticket->Load(1), "Loaded test ticket 1"; ok $ticket->SetStatus('resolved'), "Set to resolved"; my $tickets = RT::Tickets->new( RT->SystemUser ); my ($ret, $msg) = $tickets->FromSQL("Resolved IS NOT NULL"); ok $ret, "Ran query with IS NOT NULL: $msg"; my $count = $tickets->Count(); ok $count == 1, "Found one ticket"; undef $count; } { my $tickets = RT::Tickets->new( RT->SystemUser ); $tickets->LimitDate( FIELD => "Resolved", OPERATOR => "IS", VALUE => "NULL" ); $tickets->LimitDate( FIELD => "Resolved", OPERATOR => "IS NOT", VALUE => "NULL" ); my $count = $tickets->Count(); ok $count > 1, "Found more than one ticket"; undef $count; } done_testing; rt-4.4.2/t/api/attachment_filename.t0000664000175000017500000000206713131430353017230 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 5; use MIME::Entity; my $ticket = RT::Ticket->new(RT->SystemUser); my $mime = MIME::Entity->build( From => 'test@example.com', Type => 'text/html', Data => ["test attachment's filename\n"], ); $mime->attach( Path => 'share/static/images/bpslogo.png', Type => 'image/png', ); $mime->attach( Path => 'share/static/images/bpslogo.png', Type => 'image/png', Filename => 'bpslogo.png', ); $mime->attach( Path => 'share/static/images/bpslogo.png', Filename => 'images/bpslogo.png', Type => 'image/png', ); my $id = $ticket->Create( MIMEObj => $mime, Queue => 'General' ); ok( $id, "created ticket $id" ); my $atts = RT::Attachments->new( RT->SystemUser ); $atts->Limit( FIELD => 'ContentType', VALUE => 'image/png' ); is( $atts->Count, 3, 'got 3 png files' ); # no matter if mime's filename include path or not, # we should throw away the path all the time. while ( my $att = $atts->Next ) { is( $att->Filename, 'bpslogo.png', "attachment's filename" ); } rt-4.4.2/t/api/group.t0000664000175000017500000001026513131430353014373 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test nodata => 1, tests => undef; { ok (require RT::Group); ok (my $group = RT::Group->new(RT->SystemUser), "instantiated a group object"); ok (my ($id, $msg) = $group->CreateUserDefinedGroup( Name => 'TestGroup', Description => 'A test group', ), 'Created a new group'); isnt ($id , 0, "Group id is $id"); is ($group->Name , 'TestGroup', "The group's name is 'TestGroup'"); my $ng = RT::Group->new(RT->SystemUser); ok($ng->LoadUserDefinedGroup('TestGroup'), "Loaded testgroup"); is($ng->id , $group->id, "Loaded the right group"); my @users = (undef); for my $number (1..3) { my $user = RT::User->new(RT->SystemUser); $user->Create( Name => "User $number" ); push @users, $user->id; } ok (($id,$msg) = $ng->AddMember( $users[1] ), "Added a member to the group"); ok($id, $msg); ok (($id,$msg) = $ng->AddMember( $users[2] ), "Added a member to the group"); ok($id, $msg); ok (($id,$msg) = $ng->AddMember( $users[3] ), "Added a member to the group"); ok($id, $msg); # Group 1 now has members 1, 2 ,3 my $group_2 = RT::Group->new(RT->SystemUser); ok (my ($id_2, $msg_2) = $group_2->CreateUserDefinedGroup( Name => 'TestGroup2', Description => 'A second test group'), , 'Created a new group'); isnt ($id_2 , 0, "Created group 2 ok- $msg_2 "); ok (($id,$msg) = $group_2->AddMember($ng->PrincipalId), "Made TestGroup a member of testgroup2"); ok($id, $msg); ok (($id,$msg) = $group_2->AddMember( $users[1] ), "Added member User 1 to the group TestGroup2"); ok($id, $msg); # Group 2 how has 1, g1->{1, 2,3} my $group_3 = RT::Group->new(RT->SystemUser); ok (my ($id_3, $msg_3) = $group_3->CreateUserDefinedGroup( Name => 'TestGroup3', Description => 'A second test group'), 'Created a new group'); isnt ($id_3 , 0, "Created group 3 ok - $msg_3"); ok (($id,$msg) =$group_3->AddMember($group_2->PrincipalId), "Made TestGroup a member of testgroup2"); ok($id, $msg); # g3 now has g2->{1, g1->{1,2,3}} my $principal_1 = RT::Principal->new(RT->SystemUser); $principal_1->Load( $users[1] ); my $principal_2 = RT::Principal->new(RT->SystemUser); $principal_2->Load( $users[2] ); ok (($id,$msg) = $group_3->AddMember( $users[1] ), "Added member User 1 to the group TestGroup2"); ok($id, $msg); # g3 now has 1, g2->{1, g1->{1,2,3}} is($group_3->HasMember($principal_2), undef, "group 3 doesn't have member 2"); ok($group_3->HasMemberRecursively($principal_2), "group 3 has member 2 recursively"); ok($ng->HasMember($principal_2) , "group ".$ng->Id." has member 2"); my ($delid , $delmsg) =$ng->DeleteMember($principal_2->Id); isnt ($delid ,0, "Sucessfully deleted it-".$delid."-".$delmsg); #Gotta reload the group objects, since we've been messing with various internals. # we shouldn't need to do this. #$ng->LoadUserDefinedGroup('TestGroup'); #$group_2->LoadUserDefinedGroup('TestGroup2'); #$group_3->LoadUserDefinedGroup('TestGroup'); # G1 now has 1, 3 # Group 2 how has 1, g1->{1, 3} # g3 now has 1, g2->{1, g1->{1, 3}} ok(!$ng->HasMember($principal_2) , "group ".$ng->Id." no longer has member 2"); is($group_3->HasMemberRecursively($principal_2), undef, "group 3 doesn't have member 2"); is($group_2->HasMemberRecursively($principal_2), undef, "group 2 doesn't have member 2"); is($ng->HasMember($principal_2), undef, "group 1 doesn't have member 2"); is($group_3->HasMemberRecursively($principal_2), undef, "group 3 has member 2 recursively"); } { ok(my $u = RT::Group->new(RT->SystemUser)); ok($u->Load(4), "Loaded the first user"); is($u->PrincipalObj->id , 4, "user 4 is the fourth principal"); is($u->PrincipalObj->PrincipalType , 'Group' , "Principal 4 is a group"); } { my $u = RT::Group->new(RT->SystemUser); $u->LoadUserDefinedGroup('TestGroup'); ok( $u->id, 'loaded TestGroup' ); ok( $u->SetName('testgroup'), 'rename to lower cased version: testgroup' ); ok( $u->SetName('TestGroup'), 'rename back' ); my $u2 = RT::Group->new( RT->SystemUser ); my ( $id, $msg ) = $u2->CreateUserDefinedGroup( Name => 'TestGroup' ); ok( !$id, "can't create duplicated group: $msg" ); ( $id, $msg ) = $u2->CreateUserDefinedGroup( Name => 'testgroup' ); ok( !$id, "can't create duplicated group even case is different: $msg" ); } done_testing; rt-4.4.2/t/api/tickets_overlay_sql.t0000664000175000017500000000604213131430353017323 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 20, config => 'Set( %FullTextSearch, Enable => 1 );'; use Test::Warn; my $tix = RT::Tickets->new(RT->SystemUser); { my $query = "Status = 'open'"; my ($status, $msg) = $tix->FromSQL($query); ok ($status, "correct query") or diag("error: $msg"); } my (@created,%created); my $string = 'subject/content SQL test'; { my $t = RT::Ticket->new(RT->SystemUser); ok( $t->Create(Queue => 'General', Subject => $string), "Ticket Created"); $created{ $t->Id }++; push @created, $t->Id; } { my $Message = MIME::Entity->build( Subject => 'this is my subject', From => 'jesse@example.com', Data => [ $string ], ); my $t = RT::Ticket->new(RT->SystemUser); ok( $t->Create( Queue => 'General', Requestor => 'jesse@example.com', Subject => 'another ticket', MIMEObj => $Message, MemberOf => $created[0] ), "Ticket Created" ); $created{ $t->Id }++; push @created, $t->Id; } { my $query = ("Subject LIKE '$string' OR Content LIKE '$string'"); my ($status, $msg) = $tix->FromSQL($query); ok ($status, "correct query") or diag("error: $msg"); my $count = 0; while (my $tick = $tix->Next) { $count++ if $created{ $tick->id }; } is ($count, scalar @created, "number of returned tickets same as entered"); } { my $query = "id = $created[0] OR MemberOf = $created[0]"; my ($status, $msg) = $tix->FromSQL($query); ok ($status, "correct query") or diag("error: $msg"); my $count = 0; while (my $tick = $tix->Next) { $count++ if $created{ $tick->id }; } is ($count, scalar @created, "number of returned tickets same as entered"); } diag "Make sure we don't barf on invalid input for IS / IS NOT"; { my ($status, $msg) = $tix->FromSQL("Subject IS 'foobar'"); ok ($status, "valid query") or diag("error: $msg"); is $tix->Count, 0, "found no tickets"; unlike $tix->BuildSelectQuery, qr/foobar/, "didn't find foobar in the select"; like $tix->BuildSelectQuery, qr/Subject IS NULL/, "found right clause"; ($status, $msg) = $tix->FromSQL("Subject IS NOT 'foobar'"); ok ($status, "valid query") or diag("error: $msg"); is $tix->Count, 2, "found two tickets"; unlike $tix->BuildSelectQuery, qr/foobar/, "didn't find foobar in the select"; like $tix->BuildSelectQuery, qr/Subject IS NOT NULL/, "found right clause"; } { my ($status, $msg); warning_like { ($status, $msg) = $tix->FromSQL("Requestor.Signature LIKE 'foo'"); } qr/Invalid watcher subfield: 'Signature'/; ok(!$status, "invalid query - Signature not valid") or diag("error: $msg"); ($status, $msg) = $tix->FromSQL("Requestor.EmailAddress LIKE 'jesse'"); ok ($status, "valid query") or diag("error: $msg"); is $tix->Count, 1, "found one ticket"; like $tix->First->Subject, qr/another ticket/, "found the right ticket"; } rt-4.4.2/t/api/user-prefs.t0000664000175000017500000000377713131430353015344 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => undef; use_ok( 'RT::User' ); my $create_user = RT::User->new(RT->SystemUser); isa_ok($create_user, 'RT::User'); my ($ret, $msg) = $create_user->Create(Name => 'CreateTest1'.$$, EmailAddress => $$.'create-test-1@example.com'); ok ($ret, "Creating user CreateTest1 - " . $msg ); # Create object to operate as the test user my $user1 = RT::User->new($create_user); ($ret, $msg) = $user1->Load($create_user->Id); ok ($ret, "Loaded the new user $msg"); diag "Set a search preference"; my $prefs = { 'Order' => 'DESC|ASC|ASC|ASC', 'OrderBy' => 'Due', 'Format' => '\'__id__/TITLE:#\', \'__Subject__/TITLE:Subject\', \'__Priority__\', \'__QueueName__\', \'__ExtendedStatus__\', \'__Due__\'', 'RowsPerPage' => '50' }; ok (!$user1->HasRight( Right => 'ModifySelf', Object => $RT::System), "Can't ModifySelf"); ($ret, $msg) = $user1->SetPreferences("SearchDisplay", $prefs); ok( !$ret, "No permission to set preferences"); ok (($ret, $msg) = $create_user->PrincipalObj->GrantRight( Right => 'ModifySelf'), "Granted ModifySelf"); ($ret, $msg) = $user1->SetPreferences("SearchDisplay", $prefs); ok( $ret, "Search preference set"); diag "Fetch preference"; ok (my $saved_prefs = $user1->Preferences("SearchDisplay"), "Fetched prefs"); is ($prefs->{OrderBy}, 'Due', "Prefs look ok"); diag "Delete prefs"; ok (($ret, $msg) = $create_user->PrincipalObj->RevokeRight( Right => 'ModifySelf'), "Revoked ModifySelf"); ($ret, $msg) = $user1->DeletePreferences("SearchDisplay"); ok( !$ret, "No permission to delete preferences"); ok (($ret, $msg) = $create_user->PrincipalObj->GrantRight( Right => 'ModifySelf'), "Granted ModifySelf"); ($ret, $msg) = $user1->DeletePreferences("SearchDisplay"); ok( $ret, "Search preference deleted"); $saved_prefs = $user1->Preferences("SearchDisplay"); ok (!$saved_prefs, "No saved preferences returned"); done_testing; rt-4.4.2/t/api/total-time-worked.t0000664000175000017500000001302313131430353016602 0ustar vagrantvagrantuse strict; use warnings; use RT; use RT::Test tests => undef; my $scrip = RT::Scrip->new(RT->SystemUser); $scrip->LoadByCols(Description => 'On TimeWorked Change Update Parent TimeWorked'); $scrip->SetDisabled(1); diag("Test tickets total time worked"); { my $parent = RT::Ticket->new(RT->SystemUser); my ($ok1,$msg1) = $parent->Create( Queue => 'general', Subject => 'total time worked test parent', ); ok($ok1,"Created parent ticket $msg1"); my $child = RT::Ticket->new(RT->SystemUser); my ($ok2,$msg2) = $child->Create( Queue => 'general', Subject => 'total time worked test child', ); ok($ok2,"Created child ticket $msg2"); my $grandchild = RT::Ticket->new(RT->SystemUser); my ($ok3,$msg3) = $grandchild->Create( Queue => 'general', Subject => 'total time worked test child child', ); ok($ok3,"Created grandchild ticket $msg3"); my ($ok4,$msg4) = $parent->AddLink( Type => 'MemberOf', Base => $child->id, ); ok($ok4,"Created parent -> child link $msg4"); my ($ok5,$msg5) = $child->AddLink( Type => 'MemberOf', Base => $grandchild->id, ); ok($ok5,"Created child -> grandchild link $msg5"); my $grandchild2 = RT::Ticket->new(RT->SystemUser); my ($ok6,$msg6) = $grandchild2->Create( Queue => 'general', Subject => 'total time worked test other child child', ); ok($ok6,"Create second grandchild $msg6"); my ($ok7,$msg7) = $child->AddLink( Type => 'MemberOf', Base => $grandchild2->id, ); ok($ok7,"Create child -> second grandchild link $msg7"); $parent->SetTimeWorked(10); $child->SetTimeWorked(20); $grandchild->SetTimeWorked(40); $grandchild2->SetTimeWorked(50); is $grandchild2->TimeWorked, 50, 'check other child child time worked'; is $grandchild->TimeWorked, 40, 'check child child time worked'; is $child->TimeWorked, 20, 'check child time worked'; is $parent->TimeWorked, 10, 'check parent time worked'; is $parent->TotalTimeWorked, 120, 'check parent total time worked'; is $child->TotalTimeWorked, 110, 'check child total time worked'; is $grandchild->TotalTimeWorked, 40, 'check child child total time worked'; is $grandchild2->TotalTimeWorked, 50, 'check other child child total time worked'; is $parent->TotalTimeWorkedAsString, '2 hours (120 minutes)', 'check parent total time worked as string'; is $grandchild->TotalTimeWorkedAsString, '40 minutes', 'check child child total time workd as string'; } diag("Test multiple inheritance total time worked"); { my $parent = RT::Ticket->new(RT->SystemUser); my ($ok1,$msg1) = $parent->Create( Queue => 'general', Subject => 'total time worked test parent', ); ok $ok1, "created parent ticket $msg1"; my $child = RT::Ticket->new(RT->SystemUser); my ($ok2,$msg2) = $child->Create( Queue => 'general', Subject => 'total time worked test child', ); ok $ok2, "created child ticket $msg2"; my $grandchild = RT::Ticket->new(RT->SystemUser); my ($ok3,$msg3) = $grandchild->Create( Queue => 'general', Subject => 'total time worked test child child, and test child', ); ok $ok3, "created grandchild ticket $msg3"; $parent->SetTimeWorked(10); $child->SetTimeWorked(20); $grandchild->SetTimeWorked(40); my ($ok4,$msg4) = $parent->AddLink( Type => 'MemberOf', Base => $child->id, ); ok $ok4, "Create parent -> child link $msg4"; my ($ok5,$msg5) = $child->AddLink( Type => 'MemberOf', Base => $grandchild->id, ); ok $ok5, "Create child -> grandchild link $msg5"; my ($ok6,$msg6) = $parent->AddLink( Type => 'MemberOf', Base => $grandchild->id, ); ok $ok6, "Created parent -> grandchild link $msg6"; is $parent->TotalTimeWorked, 70, 'check parent total time worked'; is $child->TotalTimeWorked, 60, 'check child total time worked'; is $grandchild->TotalTimeWorked, 40, 'check child child total time worked'; } diag("Test inheritance total time worked"); { my @warnings; my $parent = RT::Ticket->new(RT->SystemUser); my ($ok1,$msg1) = $parent->Create( Queue => 'general', Subject => 'total time worked test parent', ); ok $ok1, "created parent ticket $msg1"; my $child = RT::Ticket->new(RT->SystemUser); my ($ok2,$msg2) = $child->Create( Queue => 'general', Subject => 'total time worked test child', ); ok $ok2, "created child ticket $msg2"; { local $SIG{__WARN__} = sub { push @warnings, @_; }; my ($ok3,$msg3) = $parent->AddLink( Type => 'MemberOf', Base => $child->id, ); ok $ok3, "Created parent -> child link $msg3"; my ($ok4,$msg4) = $parent->AddLink( Type => 'MemberOf', Base => 'http://bestpractical.com', ); ok $ok4, "Create parent -> url link $msg4"; my ($ok5,$msg5) = $child->AddLink( Type => 'MemberOf', Base => 'http://docs.bestpractical.com/', ); ok $ok5, "Created child -> url link $msg5"; } $parent->SetTimeWorked(10); $child->SetTimeWorked(20); is $parent->TotalTimeWorked, 30, 'check parent total time worked'; is $child->TotalTimeWorked, 20, 'check child total time worked'; TODO: { local $TODO = "this warns because of the unrelated I#31399"; is(@warnings, 0, "no warnings"); } } done_testing; rt-4.4.2/t/api/reminders.t0000664000175000017500000000505213131430353015225 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => 20; { # Create test queues use_ok ('RT::Queue'); ok(my $testqueue = RT::Queue->new(RT->SystemUser), 'Instantiate RT::Queue'); ok($testqueue->Create( Name => 'reminders tests'), 'Create new queue: reminders tests'); isnt($testqueue->Id , 0, 'Success creating queue'); ok($testqueue->Create( Name => 'reminders tests 2'), 'Create new queue: reminders tests 2'); isnt($testqueue->Id , 0, 'Success creating queue'); # Create test ticket use_ok('RT::Ticket'); my $u = RT::User->new(RT->SystemUser); $u->Load("root"); ok ($u->Id, "Found the root user"); ok(my $t = RT::Ticket->new(RT->SystemUser), 'Instantiate RT::Ticket'); ok(my ($id, $msg) = $t->Create( Queue => $testqueue->Id, Subject => 'Testing', Owner => $u->Id ), 'Create sample ticket'); isnt($id , 0, 'Success creating ticket'); # Add reminder my $due_obj = RT::Date->new( RT->SystemUser ); $due_obj->SetToNow; ok(my ( $add_id, $add_msg, $txnid ) = $t->Reminders->Add( Subject => 'TestReminder', Owner => 'root', Due => $due_obj->ISO ), 'Add reminder'); # Check that the new Reminder is here my $reminders = $t->Reminders->Collection; ok($reminders, 'Loading reminders for this ticket'); my $found = 0; while ( my $reminder = $reminders->Next ) { next unless $found == 0; $found = 1 if ( $reminder->Subject =~ m/TestReminder/ ); } is($found, 1, 'Reminder successfully added'); # Change queue ok (my ($move_val, $move_msg) = $t->SetQueue('reminders tests 2'), 'Moving ticket from queue "reminders tests" to "reminders tests 2"'); is ($t->QueueObj->Name, 'reminders tests 2', 'Ticket successfully moved'); # Check that the new reminder is still there and moved to the new queue $reminders = $t->Reminders->Collection; ok($reminders, 'Loading reminders for this ticket'); $found = 0; my $ok_queue = 0; while ( my $reminder = $reminders->Next ) { next unless $found == 0; if ( $reminder->Subject =~ m/TestReminder/ ) { $found = 1; $ok_queue = 1 if ( $reminder->QueueObj->Name eq 'reminders tests 2' ); } } is($found, 1, 'Reminder successfully added'); is($ok_queue, 1, 'Reminder automatically moved to new queue'); # Resolve reminder my $r_resolved = 0; while ( my $reminder = $reminders->Next ) { if ( $reminder->Subject =~ m/TestReminder/ ) { if ( $reminder->Status ne 'resolved' ) { $t->Reminders->Resolve($reminder); $r_resolved = 1 if ( $reminder->Status eq 'resolved' ); } } } is($r_resolved, 1, 'Reminder resolved'); } rt-4.4.2/t/api/group-rights.t0000664000175000017500000001271113131430353015667 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodata => 1, tests => 114; RT::Group->AddRight( General => 'RTxGroupRight' => 'Just a right for testing rights', ); # this company is split into two halves, the hackers and the non-hackers # herbert is a hacker but eric is not. my $herbert = RT::User->new(RT->SystemUser); my ($ok, $msg) = $herbert->Create(Name => 'herbert'); ok($ok, $msg); my $eric = RT::User->new(RT->SystemUser); ($ok, $msg) = $eric->Create(Name => 'eric'); ok($ok, $msg); my $hackers = RT::Group->new(RT->SystemUser); ($ok, $msg) = $hackers->CreateUserDefinedGroup(Name => 'Hackers'); ok($ok, $msg); my $employees = RT::Group->new(RT->SystemUser); ($ok, $msg) = $employees->CreateUserDefinedGroup(Name => 'Employees'); ok($ok, $msg); ($ok, $msg) = $employees->AddMember($hackers->PrincipalId); ok($ok, $msg); ($ok, $msg) = $hackers->AddMember($herbert->PrincipalId); ok($ok, $msg); ($ok, $msg) = $employees->AddMember($eric->PrincipalId); ok($ok, $msg); ok($employees->HasMemberRecursively($hackers->PrincipalId), 'employees has member hackers'); ok($employees->HasMemberRecursively($herbert->PrincipalId), 'employees has member herbert'); ok($employees->HasMemberRecursively($eric->PrincipalId), 'employees has member eric'); ok($hackers->HasMemberRecursively($herbert->PrincipalId), 'hackers has member herbert'); ok(!$hackers->HasMemberRecursively($eric->PrincipalId), 'hackers does not have member eric'); # There's also a separate group, "Other", which both are a member of. my $other = RT::Group->new(RT->SystemUser); ($ok, $msg) = $other->CreateUserDefinedGroup(Name => 'Other'); ok($ok, $msg); ($ok, $msg) = $other->AddMember($eric->PrincipalId); ok($ok, $msg); ($ok, $msg) = $other->AddMember($herbert->PrincipalId); ok($ok, $msg); # Everyone can SeeGroup on all three groups my $everyone = RT::Group->new( RT->SystemUser ); ($ok, $msg) = $everyone->LoadSystemInternalGroup( 'Everyone' ); ok($ok, $msg); $everyone->PrincipalObj->GrantRight(Right => 'SeeGroup', Object => $employees); $everyone->PrincipalObj->GrantRight(Right => 'SeeGroup', Object => $hackers); $everyone->PrincipalObj->GrantRight(Right => 'SeeGroup', Object => $other); sub CheckRights { my $cu = shift; my %groups = (Employees => 0, Hackers => 0, Other => 0, @_); my $name = $cu->Name; my $groups = RT::Groups->new(RT::CurrentUser->new($cu)); $groups->LimitToUserDefinedGroups; $groups->ForWhichCurrentUserHasRight(Right => 'RTxGroupRight'); my %has_right = map { ($_->Name => 1) } @{ $groups->ItemsArrayRef }; local $Test::Builder::Level = $Test::Builder::Level + 1; for my $groupname (sort keys %groups) { my $g = RT::Group->new(RT::CurrentUser->new($cu)); $g->LoadUserDefinedGroup($groupname); if ($groups{$groupname}) { ok( $g->CurrentUserHasRight("RTxGroupRight"), "$name has right on $groupname (direct query)" ); ok( delete $has_right{$groupname}, "..and also in ForWhichCurrentUserHasRight"); } else { ok( !$g->CurrentUserHasRight("RTxGroupRight"), "$name doesn't have right on $groupname (direct query)" ); ok( !delete $has_right{$groupname}, "..and also not in ForWhichCurrentUserHasRight"); } } ok(not(keys %has_right), "ForWhichCurrentUserHasRight has no extra groups"); } # Neither should have it on any group yet CheckRights($eric); CheckRights($herbert); # Grant it to employees, on employees. Both Herbert and Eric will have # it on employees, though Herbert gets it by way of hackers. Neither # will have it on hackers, because the target does not recurse. $employees->PrincipalObj->GrantRight( Right => 'RTxGroupRight', Object => $employees); CheckRights($eric, Employees => 1); CheckRights($herbert, Employees => 1); # Grant it to employees, on hackers. This means both Eric and Herbert # will have the right on hackers, but not on employees. $employees->PrincipalObj->RevokeRight(Right => 'RTxGroupRight', Object => $employees); $employees->PrincipalObj->GrantRight( Right => 'RTxGroupRight', Object => $hackers); CheckRights($eric, Hackers => 1); CheckRights($herbert, Hackers => 1); # Grant it to hackers, on employees. Eric will have it nowhere, and # Herbert will have it on employees. Note that the target of the right # itself does _not_ recurse down, so Herbert will not have it on # hackers. $employees->PrincipalObj->RevokeRight(Right => 'RTxGroupRight', Object => $hackers); $hackers->PrincipalObj->GrantRight( Right => 'RTxGroupRight', Object => $employees); CheckRights($eric); CheckRights($herbert, Employees => 1); # Grant it globally to hackers; herbert will see the right on all # employees, hackers, and other. $hackers->PrincipalObj->RevokeRight( Right => 'RTxGroupRight', Object => $employees); $hackers->PrincipalObj->GrantRight( Right => 'RTxGroupRight', Object => RT->System); CheckRights($eric); CheckRights($herbert, Employees => 1, Hackers => 1, Other => 1 ); # Grant it globally to employees; both eric and herbert will see the # right on all employees, hackers, and other. $hackers->PrincipalObj->RevokeRight( Right => 'RTxGroupRight', Object => RT->System); $employees->PrincipalObj->GrantRight( Right => 'RTxGroupRight', Object => RT->System); CheckRights($eric, Employees => 1, Hackers => 1, Other => 1 ); CheckRights($herbert, Employees => 1, Hackers => 1, Other => 1 ); # Disable the employees group. Neither eric nor herbert will see the # right anywhere. $employees->SetDisabled(1); CheckRights($eric); CheckRights($herbert); rt-4.4.2/t/api/record.t0000664000175000017500000000373213131430353014516 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => 22; { ok (require RT::Record); } { my $ticket = RT::Ticket->new(RT->SystemUser); my $group = RT::Group->new(RT->SystemUser); is($ticket->RecordType, 'Ticket', "Ticket returns correct typestring"); is($group->RecordType, 'Group', "Group returns correct typestring"); } { my $t1 = RT::Ticket->new(RT->SystemUser); my ($id, $trans, $msg) = $t1->Create(Subject => 'DepTest1', Queue => 'general'); ok($id, "Created dep test 1 - $msg"); my $t2 = RT::Ticket->new(RT->SystemUser); (my $id2, $trans, my $msg2) = $t2->Create(Subject => 'DepTest2', Queue => 'general'); ok($id2, "Created dep test 2 - $msg2"); my $t3 = RT::Ticket->new(RT->SystemUser); (my $id3, $trans, my $msg3) = $t3->Create(Subject => 'DepTest3', Queue => 'general', Type => 'approval'); ok($id3, "Created dep test 3 - $msg3"); my ($addid, $addmsg); ok (($addid, $addmsg) =$t1->AddLink( Type => 'DependsOn', Target => $t2->id)); ok ($addid, $addmsg); ok (($addid, $addmsg) =$t1->AddLink( Type => 'DependsOn', Target => $t3->id)); ok ($addid, $addmsg); my $link = RT::Link->new(RT->SystemUser); (my $rv, $msg) = $link->Load($addid); ok ($rv, $msg); is ($link->LocalTarget , $t3->id, "Link LocalTarget is correct"); is ($link->LocalBase , $t1->id, "Link LocalBase is correct"); ok ($t1->HasUnresolvedDependencies, "Ticket ".$t1->Id." has unresolved deps"); ok (!$t1->HasUnresolvedDependencies( Type => 'blah' ), "Ticket ".$t1->Id." has no unresolved blahs"); ok ($t1->HasUnresolvedDependencies( Type => 'approval' ), "Ticket ".$t1->Id." has unresolved approvals"); ok (!$t2->HasUnresolvedDependencies, "Ticket ".$t2->Id." has no unresolved deps"); ; my ($rid, $rmsg)= $t1->SetStatus('resolved'); ok(!$rid, $rmsg); my ($rid2, $rmsg2) = $t2->SetStatus('resolved'); ok ($rid2, $rmsg2); ($rid, $rmsg)= $t1->SetStatus('resolved'); ok(!$rid, $rmsg); my ($rid3,$rmsg3) = $t3->SetStatus('resolved'); ok ($rid3,$rmsg3); ($rid, $rmsg)= $t1->SetStatus('resolved'); ok($rid, $rmsg); } rt-4.4.2/t/api/rights.t0000664000175000017500000001320013131430353014527 0ustar vagrantvagrantuse RT::Test nodata => 1, tests => 38; use strict; use warnings; use Test::Warn; sub reset_rights { RT::Test->set_rights } # clear all global right reset_rights; my $queue = RT::Test->load_or_create_queue( Name => 'Regression' ); ok $queue && $queue->id, 'loaded or created queue'; my $qname = $queue->Name; my $user = RT::Test->load_or_create_user( Name => 'user', Password => 'password', ); ok $user && $user->id, 'loaded or created user'; { ok( !$user->HasRight( Right => 'OwnTicket', Object => $queue ), "user can't own ticket" ); ok( !$user->HasRight( Right => 'ReplyToTicket', Object => $queue ), "user can't reply to ticket" ); } { my $group = $queue->RoleGroup( 'Owner' ); ok( $group->Id, "load queue owners role group" ); my $ace = RT::ACE->new( RT->SystemUser ); my ($ace_id, $msg) = $group->PrincipalObj->GrantRight( Right => 'ReplyToTicket', Object => $queue ); ok( $ace_id, "Granted queue owners role group with ReplyToTicket right: $msg" ); ok( $group->PrincipalObj->HasRight( Right => 'ReplyToTicket', Object => $queue ), "role group can reply to ticket" ); ok( !$user->HasRight( Right => 'ReplyToTicket', Object => $queue ), "user can't reply to ticket" ); } my $ticket; { # new ticket $ticket = RT::Ticket->new(RT->SystemUser); my ($ticket_id) = $ticket->Create( Queue => $queue->id, Subject => 'test'); ok( $ticket_id, 'new ticket created' ); is( $ticket->Owner, RT->Nobody->Id, 'owner of the new ticket is nobody' ); ok( !$user->HasRight( Right => 'OwnTicket', Object => $ticket ), "user can't reply to ticket" ); my ($status, $msg) = $ticket->SetOwner( $user->id ); ok( !$status, "no permissions to be an owner" ); } { my ($status, $msg) = $user->PrincipalObj->GrantRight( Object => $queue, Right => 'OwnTicket' ); ok( $status, "successfuly granted right: $msg" ); ok( $user->HasRight( Right => 'OwnTicket', Object => $queue ), "user can own ticket" ); ok( $user->HasRight( Right => 'OwnTicket', Object => $ticket ), "user can own ticket" ); ($status, $msg) = $ticket->SetOwner( $user->id ); ok( $status, "successfuly set owner: $msg" ); is( $ticket->Owner, $user->id, "set correct owner" ); ok( $user->HasRight( Right => 'ReplyToTicket', Object => $ticket ), "user is owner and can reply to ticket" ); } { # Testing of EquivObjects my $group = $queue->RoleGroup( 'AdminCc' ); ok( $group->Id, "load queue AdminCc role group" ); my $ace = RT::ACE->new( RT->SystemUser ); my ($ace_id, $msg) = $group->PrincipalObj->GrantRight( Right => 'ModifyTicket', Object => $queue ); ok( $ace_id, "Granted queue AdminCc role group with ModifyTicket right: $msg" ); ok( $group->PrincipalObj->HasRight( Right => 'ModifyTicket', Object => $queue ), "role group can modify ticket" ); ok( !$user->HasRight( Right => 'ModifyTicket', Object => $ticket ), "user is not AdminCc and can't modify ticket" ); } { my ($status, $msg) = $ticket->AddWatcher( Type => 'AdminCc', PrincipalId => $user->PrincipalId ); ok( $status, "successfuly added user as AdminCc"); ok( $user->HasRight( Right => 'ModifyTicket', Object => $ticket ), "user is AdminCc and can modify ticket" ); } my $ticket2; { $ticket2 = RT::Ticket->new(RT->SystemUser); my ($id) = $ticket2->Create( Queue => $queue->id, Subject => 'test2'); ok( $id, 'new ticket created' ); ok( !$user->HasRight( Right => 'ModifyTicket', Object => $ticket2 ), "user is not AdminCc and can't modify ticket2" ); # now we can finally test EquivObjectsa my $has = $user->HasRight( Right => 'ModifyTicket', Object => $ticket2, EquivObjects => [$ticket], ); ok( $has, "user is not AdminCc but can modify ticket2 because of EquivObjects" ); } { # the first a third test below are the same, so they should both pass # make sure passed equive list is not changed my @list = (); ok( !$user->HasRight( Right => 'ModifyTicket', Object => $ticket2, EquivObjects => \@list ), "user is not AdminCc and can't modify ticket2" ); ok( $user->HasRight( Right => 'ModifyTicket', Object => $ticket, EquivObjects => \@list ), "user is AdminCc and can modify ticket" ); ok( !$user->HasRight( Right => 'ModifyTicket', Object => $ticket2, EquivObjects => \@list ), "user is not AdminCc and can't modify ticket2 (same question different answer)" ); } my $queue2 = RT::Test->load_or_create_queue( Name => 'Rights' ); ok $queue2 && $queue2->id, 'loaded or created queue'; my $user2 = RT::Test->load_or_create_user( Name => 'user2', Password => 'password', ); ok $user2 && $user2->id, 'Created user: ' . $user2->Name . ' with id ' . $user2->Id; warning_like { ok( !$user2->HasRight( Right => 'Foo', Object => $queue2 ), "HasRight false for invalid right Foo" ); } qr/Invalid right\. Couldn't canonicalize right 'Foo'/, 'Got warning on invalid right'; note "Right name canonicalization"; { reset_rights; my ($ok, $msg) = $user->PrincipalObj->GrantRight( Right => "showticket", Object => RT->System, ); ok $ok, "Granted showticket: $msg"; ok $user->HasRight( Right => "ShowTicket", Object => RT->System ), "HasRight ShowTicket"; reset_rights; ($ok, $msg) = $user->PrincipalObj->GrantRight( Right => "ShowTicket", Object => RT->System, ); ok $ok, "Granted ShowTicket: $msg"; ok $user->HasRight( Right => "showticket", Object => RT->System ), "HasRight showticket"; } rt-4.4.2/t/api/config.t0000664000175000017500000000301613131430353014500 0ustar vagrantvagrantuse strict; use warnings; use RT; use RT::Test nodb => 1, tests => undef; use Test::Warn; ok( RT::Config->AddOption( Name => 'foo', Section => 'bar', ), 'added option foo' ); my $meta = RT::Config->Meta('foo'); is( $meta->{Section}, 'bar', 'Section is bar' ); is( $meta->{Widget}, '/Widgets/Form/String', 'default Widget is string' ); is_deeply( $meta->{WidgetArguments}, {},, 'default WidgetArguments is empty hashref' ); ok( RT::Config->UpdateOption( Name => 'foo', Section => 'baz', Widget => '/Widgets/Form/Boolean', ), 'updated option foo to section baz' ); is( $meta->{Section}, 'baz', 'section is updated to baz' ); is( $meta->{Widget}, '/Widgets/Form/Boolean', 'widget is updated to boolean' ); ok( RT::Config->DeleteOption( Name => 'foo' ), 'removed option foo' ); is( RT::Config->Meta('foo'), undef, 'foo is indeed deleted' ); # Test EmailInputEncodings PostLoadCheck code RT::Config->Set('EmailInputEncodings', qw(utf-8 iso-8859-1 us-ascii foo)); my @encodings = qw(utf-8-strict iso-8859-1 ascii); warning_is {RT::Config->PostLoadCheck} "Unknown encoding 'foo' in \@EmailInputEncodings option", 'Correct warning for encoding foo'; RT::Config->Set( WebDefaultStylesheet => 'non-existent-skin-name' ); warning_like {RT::Config->PostLoadCheck} qr{rudder}, 'Correct warning for default stylesheet'; my @canonical_encodings = RT::Config->Get('EmailInputEncodings'); is_deeply(\@encodings, \@canonical_encodings, 'Got correct encoding list'); done_testing;rt-4.4.2/t/api/currentuser.t0000664000175000017500000000117013131430353015613 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test noinitialdata => 1, tests => 8; { ok (require RT::CurrentUser); } { ok (my $cu = RT::CurrentUser->new('root')); ok (my $lh = $cu->LanguageHandle('en-us')); isnt ($lh, undef, '$lh is defined'); ok ($lh->isa('Locale::Maketext')); is ($cu->loc('TEST_STRING'), "Concrete Mixer", "Localized TEST_STRING into English"); SKIP: { skip "French localization is not enabled", 2 unless grep $_ && $_ =~ /^(\*|fr)$/, RT->Config->Get('LexiconLanguages'); ok ($lh = $cu->LanguageHandle('fr')); is ($cu->loc('before'), "avant", "Localized TEST_STRING into French"); } } rt-4.4.2/t/api/transaction-quoting.t0000664000175000017500000002141713131430353017251 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => 19; use_ok('RT::Transaction'); diag "Test quoting on transaction content"; { my $mail = <<'.'; From: root@localhost Subject: Testing quoting on long lines Content-Type: text/plain > This is a short line. This is a short line. . my ( $status, $id ) = RT::Test->send_via_mailgate($mail); is( $status >> 8, 0, "The mail gateway exited normally" ); ok( $id, "Created ticket $id" ); my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load( $id ); my $txns = $ticket->Transactions; my $txn = $txns->Next; my $expected = <<'QUOTED'; > > This is a short line. > > This is a short line. QUOTED my ($content) = $txn->Content( Quote => 1 ); like( $content, qr/$expected/, 'Text quoted properly'); } diag "Test quoting on transaction content with lines > 70 chars"; { my $mail = <<'.'; From: root@localhost Subject: Testing quoting on long lines Content-Type: text/plain > This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. . my ( $status, $id ) = RT::Test->send_via_mailgate($mail); is( $status >> 8, 0, "The mail gateway exited normally" ); ok( $id, "Created ticket $id" ); my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load( $id ); my $txns = $ticket->Transactions; my $txn = $txns->Next; my $expected = <<'QUOTED'; > > This is a line that is longer than the 70 characters that will > > demonstrate quoting when text is wrapped to multiple lines. > > This is a line that is longer than the 70 characters that will > demonstrate quoting when text is wrapped to multiple lines. QUOTED my ($content) = $txn->Content( Quote => 1 ); like( $content, qr/$expected/, 'Text quoted properly'); } diag "More complex quoting"; { my $mail = <<'.'; From: root@localhost Subject: Testing quoting on long lines Content-Type: text/plain # # This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. # # This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. > This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. > This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. . my ( $status, $id ) = RT::Test->send_via_mailgate($mail); is( $status >> 8, 0, "The mail gateway exited normally" ); ok( $id, "Created ticket $id" ); my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load( $id ); my $txns = $ticket->Transactions; my $txn = $txns->Next; my $expected = < # # This is a line that is longer than the 70 characters that will > # # demonstrate quoting when text is wrapped to multiple lines. > # # This is a line that is longer than the 70 characters that will > # # demonstrate quoting when text is wrapped to multiple lines. > > This is a line that is longer than the 70 characters that will > > demonstrate quoting when text is wrapped to multiple lines. > > This is a line that is longer than the 70 characters that will > > demonstrate quoting when text is wrapped to multiple lines. > > This is a line that is longer than the 70 characters that will > demonstrate quoting when text is wrapped to multiple lines. > This is a line that is longer than the 70 characters that will > demonstrate quoting when text is wrapped to multiple lines. QUOTED my ($content) = $txn->Content( Quote => 1 ); like( $content, qr/$expected/, 'Text quoted properly'); } diag "Test different wrap value"; { my $mail = <<'.'; From: root@localhost Subject: Testing quoting on long lines Content-Type: text/plain > This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. . my ( $status, $id ) = RT::Test->send_via_mailgate($mail); is( $status >> 8, 0, "The mail gateway exited normally" ); ok( $id, "Created ticket $id" ); my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load( $id ); my $txns = $ticket->Transactions; my $txn = $txns->Next; my $expected = <<'QUOTED'; > > This is a line that is longer > > than the 70 characters that > > will demonstrate quoting when > > text is wrapped to multiple > > lines. > > This is a line that is longer > than the 70 characters that > will demonstrate quoting when > text is wrapped to multiple > lines. QUOTED my ($content) = $txn->Content( Quote => 1, Wrap => 30 ); like( $content, qr/$expected/, 'Text quoted properly'); } diag "Test no quoting on transaction content"; { my $mail = <<'.'; From: root@localhost Subject: Testing quoting on long lines Content-Type: text/plain > This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. . my ( $status, $id ) = RT::Test->send_via_mailgate($mail); is( $status >> 8, 0, "The mail gateway exited normally" ); ok( $id, "Created ticket $id" ); my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load( $id ); my $txns = $ticket->Transactions; my $txn = $txns->Next; my $expected = <<'QUOTED'; > This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. This is a line that is longer than the 70 characters that will demonstrate quoting when text is wrapped to multiple lines. QUOTED my ($content) = $txn->Content( ); # Quote defaults to 0 like( $content, qr/$expected/, 'Text quoted properly'); } diag "Test wrapping with no initial quoting"; { my $content =< This is a line that is longer than the 70 characters that will > demonstrate quoting when text is wrapped to multiple lines. It is not > already quoted > This is a line that is exactly 70 characters before it is wrapped here > This is a line that is exactly 76 characters before it is wrapped by > the code > This is a short line. > These should remain separate lines. > > Line after a line break. EXPECTED my $txn = RT::Transaction->new(RT->SystemUser); my $result = $txn->ApplyQuoteWrap( content => $content, cols => 70 ); is( $result, $expected, 'Text quoted properly after one quoting.'); $expected =< > This is a line that is longer than the 70 characters that will > > demonstrate quoting when text is wrapped to multiple lines. It is not > > already quoted > > This is a line that is exactly 70 characters before it is wrapped here > > This is a line that is exactly 76 characters before it is wrapped by > > the code > > This is a short line. > > These should remain separate lines. > > > > Line after a line break. EXPECTED $result = $txn->ApplyQuoteWrap( content => $result, cols => 70 ); is( $result, $expected, 'Text quoted properly after two quotings'); # Wrapping is only triggered over 76 chars, so quote until 76 is exceeded $result = $txn->ApplyQuoteWrap( content => $result, cols => 70 ); $result = $txn->ApplyQuoteWrap( content => $result, cols => 70 ); $result = $txn->ApplyQuoteWrap( content => $result, cols => 70 ); $expected =< > > > > This is a line that is longer than the 70 characters that will > > > > > demonstrate quoting when text is wrapped to multiple lines. It > > > > > is not > > > > > already quoted > > > > > This is a line that is exactly 70 characters before it is > > > > > wrapped here > > > > > This is a line that is exactly 76 characters before it is > > > > > wrapped by > > > > > the code > > > > > This is a short line. > > > > > These should remain separate lines. > > > > > > > > > > Line after a line break. EXPECTED is( $result, $expected, 'Text quoted properly after five quotings'); } rt-4.4.2/t/api/date.t0000664000175000017500000006142013131430353014153 0ustar vagrantvagrant use Test::MockTime qw(set_fixed_time restore_time); use DateTime; use warnings; use strict; use RT::Test tests => undef; use RT::User; use Test::Warn; use_ok('RT::Date'); { my $date = RT::Date->new(RT->SystemUser); isa_ok($date, 'RT::Date', "constructor returned RT::Date oject"); $date = $date->new(RT->SystemUser); isa_ok($date, 'RT::Date', "constructor returned RT::Date oject"); } { # set timezone in all places to UTC RT->SystemUser->UserObj->__Set(Field => 'Timezone', Value => 'UTC') if RT->SystemUser->UserObj->Timezone; RT->Config->Set( Timezone => 'UTC' ); } my $current_user; { my $user = RT::User->new(RT->SystemUser); my($uid, $msg) = $user->Create( Name => "date_api". rand(200), Lang => 'en', Privileged => 1, ); ok($uid, "user was created") or diag("error: $msg"); $current_user = RT::CurrentUser->new($user); } { my $date = RT::Date->new( $current_user ); is($date->Timezone('user'), 'UTC', "dropped all timzones to UTC"); is($date->Timezone('server'), 'UTC', "dropped all timzones to UTC"); is($date->Timezone('unknown'), 'UTC', "with wrong context returns UTC"); $current_user->UserObj->__Set( Field => 'Timezone', Value => 'Europe/Moscow'); is($current_user->UserObj->Timezone, 'Europe/Moscow', "successfuly changed user's timezone"); is($date->Timezone('user'), 'Europe/Moscow', "in user context returns user's timezone"); is($date->Timezone('server'), 'UTC', "wasn't changed"); RT->Config->Set( Timezone => 'Africa/Ouagadougou' ); is($date->Timezone('server'), 'Africa/Ouagadougou', "timezone of the RT server was changed"); is($date->Timezone('user'), 'Europe/Moscow', "in user context still returns user's timezone"); $current_user->UserObj->__Set( Field => 'Timezone', Value => ''); is_empty($current_user->UserObj->Timezone, "successfuly changed user's timezone"); is($date->Timezone('user'), 'Africa/Ouagadougou', "in user context returns timezone of the server if user's one is not defined"); RT->Config->Set( Timezone => 'GMT' ); is($date->Timezone('server'), 'UTC', "timezone is GMT which one is alias for UTC"); RT->Config->Set( Timezone => '' ); is($date->Timezone('user'), 'UTC', "user's and server's timzones are not defined, so UTC"); is($date->Timezone('server'), 'UTC', "timezone of the server is not defined so UTC"); RT->Config->Set( Timezone => 'UTC' ); } { my $date = RT::Date->new(RT->SystemUser); is($date->IsSet,0, "new date isn't set"); is($date->Unix, 0, "new date returns 0 in Unix format"); is($date->Get, '1970-01-01 00:00:00', "default is ISO format"); warning_like { is($date->Get(Format =>'SomeBadFormat'), '1970-01-01 00:00:00', "don't know format, return ISO format"); } qr/Invalid date formatter/; is($date->Get(Format =>'W3CDTF'), '1970-01-01T00:00:00Z', "W3CDTF format with defaults"); is($date->Get(Format =>'RFC2822'), 'Thu, 01 Jan 1970 00:00:00 +0000', "RFC2822 format with defaults"); is($date->Get(Format =>'LocalizedDateTime'), 'Thu, Jan 1, 1970 12:00:00 AM', "LocalizedDateTime format with defaults"); is($date->ISO(Time => 0), '1970-01-01', "ISO format without time part"); is($date->W3CDTF(Time => 0), '1970-01-01', "W3CDTF format without time part"); is($date->RFC2822(Time => 0), 'Thu, 01 Jan 1970', "RFC2822 format without time part"); is($date->LocalizedDateTime(Time => 0), 'Thu, Jan 1, 1970', "LocalizedDateTime format without time part"); is($date->ISO(Date => 0), '00:00:00', "ISO format without date part"); is($date->W3CDTF(Date => 0), '1970-01-01T00:00:00Z', "W3CDTF format is incorrect without date part"); is($date->RFC2822(Date => 0), '00:00:00 +0000', "RFC2822 format without date part"); is($date->LocalizedDateTime(Date => 0), '12:00:00 AM', "LocalizedDateTime format without date part"); is($date->ISO(Date => 0, Seconds => 0), '00:00', "ISO format without date part and seconds"); is($date->W3CDTF(Date => 0, Seconds => 0), '1970-01-01T00:00Z', "W3CDTF format without seconds, but we ship date part even if Date is false"); is($date->RFC2822(Date => 0, Seconds => 0), '00:00 +0000', "RFC2822 format without date part and seconds"); is($date->RFC2822(DayOfWeek => 0), '01 Jan 1970 00:00:00 +0000', "RFC2822 format without 'day of week' part"); is($date->RFC2822(DayOfWeek => 0, Date => 0), '00:00:00 +0000', "RFC2822 format without 'day of week' and date parts(corner case test)"); is($date->LocalizedDateTime(AbbrDay => 0), 'Thursday, Jan 1, 1970 12:00:00 AM', "LocalizedDateTime format without abbreviation of day"); is($date->LocalizedDateTime(AbbrMonth => 0), 'Thu, January 1, 1970 12:00:00 AM', "LocalizedDateTime format without abbreviation of month"); is($date->LocalizedDateTime(DateFormat => 'date_format_short'), '1/1/70 12:00:00 AM', "LocalizedDateTime format with non default DateFormat"); is($date->LocalizedDateTime(TimeFormat => 'time_format_short'), 'Thu, Jan 1, 1970 12:00 AM', "LocalizedDateTime format with non default TimeFormat"); is($date->Date, '1970-01-01', "the default format for the 'Date' method is ISO"); is($date->Date(Format => 'W3CDTF'), '1970-01-01', "'Date' method, W3CDTF format"); is($date->Date(Format => 'RFC2822'), 'Thu, 01 Jan 1970', "'Date' method, RFC2822 format"); is($date->Date(Time => 1), '1970-01-01', "'Date' method doesn't pass through 'Time' argument"); is($date->Date(Date => 0), '1970-01-01', "'Date' method overrides 'Date' argument"); is($date->Time, '00:00:00', "the default format for the 'Time' method is ISO"); is($date->Time(Format => 'W3CDTF'), '1970-01-01T00:00:00Z', "'Time' method, W3CDTF format, date part is required by w3c doc"); is($date->Time(Format => 'RFC2822'), '00:00:00 +0000', "'Time' method, RFC2822 format"); is($date->Time(Date => 1), '00:00:00', "'Time' method doesn't pass through 'Date' argument"); is($date->Time(Time => 0), '00:00:00', "'Time' method overrides 'Time' argument"); is($date->DateTime, '1970-01-01 00:00:00', "the default format for the 'DateTime' method is ISO"); is($date->DateTime(Format =>'W3CDTF'), '1970-01-01T00:00:00Z', "'DateTime' method, W3CDTF format"); is($date->DateTime(Format =>'RFC2822'), 'Thu, 01 Jan 1970 00:00:00 +0000', "'DateTime' method, RFC2822 format"); is($date->DateTime(Date => 0, Time => 0), '1970-01-01 00:00:00', "the 'DateTime' method overrides both 'Date' and 'Time' arguments"); } { # positive timezone $current_user->UserObj->__Set( Field => 'Timezone', Value => 'Europe/Moscow'); my $date = RT::Date->new( $current_user ); $date->Set( Format => 'ISO', Timezone => 'utc', Value => '2005-01-01 15:10:00' ); is($date->IsSet,1,"Date has been set"); is($date->ISO( Timezone => 'user' ), '2005-01-01 18:10:00', "ISO"); is($date->W3CDTF( Timezone => 'user' ), '2005-01-01T18:10:00+03:00', "W3C DTF"); is($date->RFC2822( Timezone => 'user' ), 'Sat, 01 Jan 2005 18:10:00 +0300', "RFC2822"); is($date->LocalizedDateTime( Timezone => 'user' ), 'Sat, Jan 1, 2005 6:10:00 PM', "LocalizedDateTime"); # DST $date = RT::Date->new( $current_user ); $date->Set( Format => 'ISO', Timezone => 'utc', Value => '2005-07-01 15:10:00' ); is($date->ISO( Timezone => 'user' ), '2005-07-01 19:10:00', "ISO"); is($date->W3CDTF( Timezone => 'user' ), '2005-07-01T19:10:00+04:00', "W3C DTF"); is($date->RFC2822( Timezone => 'user' ), 'Fri, 01 Jul 2005 19:10:00 +0400', "RFC2822"); is($date->LocalizedDateTime( Timezone => 'user' ), 'Fri, Jul 1, 2005 7:10:00 PM', "LocalizedDateTime"); } { # negative timezone $current_user->UserObj->__Set( Field => 'Timezone', Value => 'America/New_York'); my $date = RT::Date->new( $current_user ); $date->Set( Format => 'ISO', Timezone => 'utc', Value => '2005-01-01 15:10:00' ); is($date->ISO( Timezone => 'user' ), '2005-01-01 10:10:00', "ISO"); is($date->W3CDTF( Timezone => 'user' ), '2005-01-01T10:10:00-05:00', "W3C DTF"); is($date->RFC2822( Timezone => 'user' ), 'Sat, 01 Jan 2005 10:10:00 -0500', "RFC2822"); is($date->LocalizedDateTime( Timezone => 'user' ), 'Sat, Jan 1, 2005 10:10:00 AM', "LocalizedDateTime"); # DST $date = RT::Date->new( $current_user ); $date->Set( Format => 'ISO', Timezone => 'utc', Value => '2005-07-01 15:10:00' ); is($date->ISO( Timezone => 'user' ), '2005-07-01 11:10:00', "ISO"); is($date->W3CDTF( Timezone => 'user' ), '2005-07-01T11:10:00-04:00', "W3C DTF"); is($date->RFC2822( Timezone => 'user' ), 'Fri, 01 Jul 2005 11:10:00 -0400', "RFC2822"); is($date->LocalizedDateTime( Timezone => 'user' ), 'Fri, Jul 1, 2005 11:10:00 AM', "LocalizedDateTime"); } warning_like { # bad format my $date = RT::Date->new(RT->SystemUser); $date->Set( Format => 'bad' ); ok(!$date->IsSet, "bad format"); } qr{Unknown Date format: bad}; { # setting value via Unix method my $date = RT::Date->new(RT->SystemUser); $date->Unix(1); is($date->ISO, '1970-01-01 00:00:01', "correct value"); foreach (undef, 0, '', -5){ $date->Unix(1); is($date->ISO, '1970-01-01 00:00:01', "correct value"); is($date->IsSet,1,"Date has been set to a value"); $date->Set(Format => 'unix', Value => $_); is($date->ISO, '1970-01-01 00:00:00', "Set a date to midnight 1/1/1970 GMT due to wrong call"); is($date->Unix, 0, "unix is 0 => unset"); is($date->IsSet,0,"Date has been unset"); } foreach (undef, 0, '', -5){ $date->Unix(1); is($date->ISO, '1970-01-01 00:00:01', "correct value"); is($date->IsSet,1,"Date has been set to a value"); $date->Unix($_); is($date->ISO, '1970-01-01 00:00:00', "Set a date to midnight 1/1/1970 GMT due to wrong call"); is($date->Unix, 0, "unix is 0 => unset"); is($date->IsSet,0,"Date has been unset"); } } my $year = (localtime(time))[5] + 1900; { # set+ISO format my $date = RT::Date->new(RT->SystemUser); warning_like { $date->Set(Format => 'ISO', Value => 'weird date'); } qr/Couldn't parse date 'weird date' as a ISO format/; ok(!$date->IsSet, "date was wrong => unix == 0"); # XXX: ISO format has more feature than we suport # http://www.cl.cam.ac.uk/~mgk25/iso-time.html $date->Set(Format => 'ISO', Value => '2005-11-28 15:10:00'); is($date->ISO, '2005-11-28 15:10:00', "YYYY-DD-MM hh:mm:ss"); $date->Set(Format => 'ISO', Value => '2005-11-28 15:10:00+00'); is($date->ISO, '2005-11-28 15:10:00', "YYYY-DD-MM hh:mm:ss+00"); $date->Set(Format => 'ISO', Value => '11-28 15:10:00'); is($date->ISO, $year .'-11-28 15:10:00', "DD-MM hh:mm:ss"); $date->Set(Format => 'ISO', Value => '11-28 15:10:00+00'); is($date->ISO, $year .'-11-28 15:10:00', "DD-MM hh:mm:ss+00"); $date->Set(Format => 'ISO', Value => '20051128151000'); is($date->ISO, '2005-11-28 15:10:00', "YYYYDDMMhhmmss"); $date->Set(Format => 'ISO', Value => '1128151000'); is($date->ISO, $year .'-11-28 15:10:00', "DDMMhhmmss"); $date->Set(Format => 'ISO', Value => '2005112815:10:00'); is($date->ISO, '2005-11-28 15:10:00', "YYYYDDMMhh:mm:ss"); $date->Set(Format => 'ISO', Value => '112815:10:00'); is($date->ISO, $year .'-11-28 15:10:00', "DDMMhh:mm:ss"); warning_like { $date->Set(Format => 'ISO', Value => '2005-13-28 15:10:00'); } qr/Invalid date/; ok(!$date->IsSet, "wrong month value"); warning_like { $date->Set(Format => 'ISO', Value => '2005-00-28 15:10:00'); } qr/Invalid date/; ok(!$date->IsSet, "wrong month value"); $date->Set(Format => 'ISO', Value => '1960-01-28 15:10:00'); ok(!$date->IsSet, "too old, we don't support"); } { # set+datemanip format(Time::ParseDate) my $date = RT::Date->new(RT->SystemUser); RT->Config->Set( Timezone => 'Europe/Moscow' ); $date->Set(Format => 'datemanip', Value => '2005-11-28 15:10:00'); is($date->ISO, '2005-11-28 12:10:00', "YYYY-DD-MM hh:mm:ss"); RT->Config->Set( Timezone => 'UTC' ); $date->Set(Format => 'datemanip', Value => '2005-11-28 15:10:00'); is($date->ISO, '2005-11-28 15:10:00', "YYYY-DD-MM hh:mm:ss"); $current_user->UserObj->__Set( Field => 'Timezone', Value => 'Europe/Moscow'); $date = RT::Date->new( $current_user ); $date->Set(Format => 'datemanip', Value => '2005-11-28 15:10:00'); is($date->ISO, '2005-11-28 12:10:00', "YYYY-DD-MM hh:mm:ss"); } { # set+unknown format(Time::ParseDate) my $date = RT::Date->new(RT->SystemUser); warnings_like { $date->Set(Format => 'unknown', Value => 'weird date'); } [ qr{Couldn't parse date 'weird date' by Time::ParseDate}, qr{Couldn't parse date 'weird date' by DateTime::Format::Natural} ]; ok(!$date->IsSet, "date was wrong"); RT->Config->Set( Timezone => 'Europe/Moscow' ); $date->Set(Format => 'unknown', Value => '2005-11-28 15:10:00'); is($date->ISO, '2005-11-28 12:10:00', "YYYY-DD-MM hh:mm:ss"); $date->Set(Format => 'unknown', Value => '2005-11-28 15:10:00', Timezone => 'utc' ); is($date->ISO, '2005-11-28 15:10:00', "YYYY-DD-MM hh:mm:ss"); # test relative dates { set_fixed_time("2005-11-28T15:10:00Z"); $date->Set(Format => 'unknown', Value => 'now'); is($date->ISO, '2005-11-28 15:10:00', "YYYY-DD-MM hh:mm:ss"); $date->Set(Format => 'unknown', Value => '1 day ago'); is($date->ISO, '2005-11-27 15:10:00', "YYYY-DD-MM hh:mm:ss"); restore_time(); } RT->Config->Set( Timezone => 'UTC' ); $date->Set(Format => 'unknown', Value => '2005-11-28 15:10:00'); is($date->ISO, '2005-11-28 15:10:00', "YYYY-DD-MM hh:mm:ss"); $current_user->UserObj->__Set( Field => 'Timezone', Value => 'Europe/Moscow'); $date = RT::Date->new( $current_user ); $date->Set(Format => 'unknown', Value => '2005-11-28 15:10:00'); is($date->ISO, '2005-11-28 12:10:00', "YYYY-DD-MM hh:mm:ss"); $date->Set(Format => 'unknown', Value => '2005-11-28 15:10:00', Timezone => 'server' ); is($date->ISO, '2005-11-28 15:10:00', "YYYY-DD-MM hh:mm:ss"); $date->Set(Format => 'unknown', Value => '2005-11-28 15:10:00', Timezone => 'utc' ); is($date->ISO, '2005-11-28 15:10:00', "YYYY-DD-MM hh:mm:ss"); } { # 'tomorrow 10am' with TZ $current_user->UserObj->__Set( Field => 'Timezone', Value => 'Europe/Moscow'); set_fixed_time("2012-06-14T15:10:00Z"); # 14th in UTC and Moscow my $date = RT::Date->new( $current_user ); $date->Set(Format => 'unknown', Value => 'tomorrow 10am'); is($date->ISO, '2012-06-15 06:00:00', "YYYY-DD-MM hh:mm:ss"); set_fixed_time("2012-06-13T23:10:00Z"); # 13th in UTC and 14th in Moscow $date = RT::Date->new( $current_user ); $date->Set(Format => 'unknown', Value => 'tomorrow 10am'); is($date->ISO, '2012-06-15 06:00:00', "YYYY-DD-MM hh:mm:ss"); $current_user->UserObj->__Set( Field => 'Timezone', Value => 'US/Hawaii'); set_fixed_time("2012-06-14T20:10:00Z"); # 14th in UTC and Hawaii $date = RT::Date->new( $current_user ); $date->Set(Format => 'unknown', Value => 'tomorrow 10am'); is($date->ISO, '2012-06-15 20:00:00', "YYYY-DD-MM hh:mm:ss"); set_fixed_time("2012-06-15T05:10:00Z"); # 15th in UTC and 14th in Hawaii $date = RT::Date->new( $current_user ); $date->Set(Format => 'unknown', Value => 'tomorrow 10am'); is($date->ISO, '2012-06-15 20:00:00', "YYYY-DD-MM hh:mm:ss"); restore_time(); } { # SetToMidnight my $date = RT::Date->new(RT->SystemUser); RT->Config->Set( Timezone => 'Europe/Moscow' ); $date->Set(Format => 'ISO', Value => '2005-11-28 15:10:00'); $date->SetToMidnight; is($date->ISO, '2005-11-28 00:00:00', "default is utc"); $date->Set(Format => 'ISO', Value => '2005-11-28 15:10:00'); $date->SetToMidnight(Timezone => 'utc'); is($date->ISO, '2005-11-28 00:00:00', "utc context"); $date->Set(Format => 'ISO', Value => '2005-11-28 15:10:00'); $date->SetToMidnight(Timezone => 'user'); is($date->ISO, '2005-11-27 21:00:00', "user context, user has no preference, fallback to server"); $date->Set(Format => 'ISO', Value => '2005-11-28 15:10:00'); $date->SetToMidnight(Timezone => 'server'); is($date->ISO, '2005-11-27 21:00:00', "server context"); $current_user->UserObj->__Set( Field => 'Timezone', Value => 'Europe/Moscow'); $date = RT::Date->new( $current_user ); $date->Set(Format => 'ISO', Value => '2005-11-28 15:10:00'); $date->SetToMidnight; is($date->ISO, '2005-11-28 00:00:00', "default is utc"); $date->Set(Format => 'ISO', Value => '2005-11-28 15:10:00'); $date->SetToMidnight(Timezone => 'utc'); is($date->ISO, '2005-11-28 00:00:00', "utc context"); $date->Set(Format => 'ISO', Value => '2005-11-28 15:10:00'); $date->SetToMidnight(Timezone => 'user'); is($date->ISO, '2005-11-27 21:00:00', "user context"); $date->SetToMidnight(Timezone => 'server'); is($date->ISO, '2005-11-27 21:00:00', "server context"); RT->Config->Set( Timezone => 'UTC' ); } { # SetToNow my $date = RT::Date->new(RT->SystemUser); my $time = time; $date->SetToNow; ok($date->Unix >= $time, 'close enough'); ok($date->Unix < $time+5, 'difference is less than five seconds'); } { my $date = RT::Date->new(RT->SystemUser); $date->Unix(0); $date->AddSeconds; is($date->ISO, '1970-01-01 00:00:00', "nothing changed"); $date->AddSeconds(0); is($date->ISO, '1970-01-01 00:00:00', "nothing changed"); $date->Unix(0); $date->AddSeconds(5); is($date->ISO, '1970-01-01 00:00:05', "added five seconds"); $date->AddSeconds(-2); is($date->ISO, '1970-01-01 00:00:03', "substracted two seconds"); $date->Unix(0); $date->AddSeconds(3661); is($date->ISO, '1970-01-01 01:01:01', "added one hour, minute and a second"); # XXX: TODO, doesn't work with Test::Warn # TODO: { # local $TODO = "BUG or subject to change Date handling to support unix time <= 0"; # $date->Unix(0); # $date->AddSeconds(-2); # ok($date->Unix > 0); # } $date->Unix(0); $date->AddDay; is($date->ISO, '1970-01-02 00:00:00', "added one day"); $date->AddDays(2); is($date->ISO, '1970-01-04 00:00:00', "added two days"); $date->AddDays(-1); is($date->ISO, '1970-01-03 00:00:00', "substructed one day"); $date->Unix(0); $date->AddDays(31); is($date->ISO, '1970-02-01 00:00:00', "added one month"); $date->Unix(0); $date->AddDays(0); is($date->ISO, '1970-01-01 00:00:00', "added no days"); $date->Unix(0); $date->AddDays(); is($date->ISO, '1970-01-02 00:00:00', "added one day with no argument"); } { $current_user->UserObj->__Set( Field => 'Timezone', Value => ''); my $date = RT::Date->new( $current_user ); is($date->AsString, "Not set", "AsString returns 'Not set'"); RT->Config->Set( DateTimeFormat => ''); $date->Unix(1); is($date->AsString, 'Thu Jan 01 00:00:01 1970', "correct string"); is($date->AsString(Date => 0), '00:00:01', "correct string"); is($date->AsString(Time => 0), 'Thu Jan 01 1970', "correct string"); is($date->AsString(Date => 0, Time => 0), 'Thu Jan 01 00:00:01 1970', "invalid input"); RT->Config->Set( DateTimeFormat => 'RFC2822' ); $date->Unix(1); is($date->AsString, 'Thu, 01 Jan 1970 00:00:01 +0000', "correct string"); RT->Config->Set( DateTimeFormat => { Format => 'RFC2822', Seconds => 0 } ); $date->Unix(1); is($date->AsString, 'Thu, 01 Jan 1970 00:00 +0000', "correct string"); is($date->AsString(Seconds => 1), 'Thu, 01 Jan 1970 00:00:01 +0000', "correct string"); } { # DurationAsString my $date = RT::Date->new(RT->SystemUser); is($date->DurationAsString(1), '1 second', '1 sec'); is($date->DurationAsString(59), '59 seconds', '59 sec'); is($date->DurationAsString(60), '1 minute', '1 min'); is($date->DurationAsString(60*119), '119 minutes', '119 min'); is($date->DurationAsString(60*60*2-1), '120 minutes', '120 min'); is($date->DurationAsString(60*60*2), '2 hours', '2 hours'); is($date->DurationAsString(60*60*48-1), '48 hours', '48 hours'); is($date->DurationAsString(60*60*48), '2 days', '2 days'); is($date->DurationAsString(60*60*24*14-1), '14 days', '14 days'); is($date->DurationAsString(60*60*24*14), '2 weeks', '2 weeks'); is($date->DurationAsString(60*60*24*7*8-1), '8 weeks', '8 weeks'); is($date->DurationAsString(60*60*24*61), '2 months', '2 months'); is($date->DurationAsString(60*60*24*365-1), '12 months', '12 months'); is($date->DurationAsString(60*60*24*366), '1 year', '1 year'); is($date->DurationAsString(-1), '1 second ago', '1 sec ago'); } { # DiffAsString my $date = RT::Date->new(RT->SystemUser); is($date->DiffAsString(1), '', 'no diff, wrong input'); is($date->DiffAsString(-1), '', 'no diff, wrong input'); is($date->DiffAsString('qwe'), '', 'no diff, wrong input'); $date->Unix(2); is($date->DiffAsString(-1), '', 'no diff, wrong input'); is($date->DiffAsString(3), '1 second ago', 'diff: 1 sec ago'); is($date->DiffAsString(1), '1 second', 'diff: 1 sec'); my $ndate = RT::Date->new(RT->SystemUser); is($date->DiffAsString($ndate), '', 'no diff, wrong input'); $ndate->Unix(3); is($date->DiffAsString($ndate), '1 second ago', 'diff: 1 sec ago'); } { # Diff my $date = RT::Date->new(RT->SystemUser); $date->SetToNow; my $diff = $date->Diff; ok($diff <= 0, 'close enought'); ok($diff > -5, 'close enought'); } { # AgeAsString my $date = RT::Date->new(RT->SystemUser); $date->SetToNow; my $diff = $date->AgeAsString; like($diff, qr/^(0 seconds|(1 second|[2-5] seconds) ago)$/, 'close enought'); } { # GetWeekday my $date = RT::Date->new(RT->SystemUser); is($date->GetWeekday(7), '', '7 and greater are invalid'); is($date->GetWeekday(6), 'Sat', '6 is Saturday'); is($date->GetWeekday(0), 'Sun', '0 is Sunday'); is($date->GetWeekday(-1), 'Sat', '-1 is Saturday'); is($date->GetWeekday(-7), 'Sun', '-7 is Sunday'); is($date->GetWeekday(-8), '', '-8 and lesser are invalid'); } { # GetMonth my $date = RT::Date->new(RT->SystemUser); is($date->GetMonth(12), '', '12 and greater are invalid'); is($date->GetMonth(11), 'Dec', '11 is December'); is($date->GetMonth(0), 'Jan', '0 is January'); is($date->GetMonth(-1), 'Dec', '11 is December'); is($date->GetMonth(-12), 'Jan', '0 is January'); is($date->GetMonth(-13), '', '-13 and lesser are invalid'); } { # set unknown format: edge cases my $date = RT::Date->new(RT->SystemUser); $date->Set( Value => 0, Format => 'unknown' ); ok( !$date->IsSet, "unix is 0 with Value => 0, Format => 'unknown'" ); $date->Set( Value => '', Format => 'unknown' ); ok( !$date->IsSet, "unix is 0 with Value => '', Format => 'unknown'" ); $date->Set( Value => ' ', Format => 'unknown' ); ok( !$date->IsSet, "unix is 0 with Value => ' ', Format => 'unknown'" ); } { # set+unknown format(DateTime::Format::Natural) my $date = RT::Date->new(RT->SystemUser); warnings_like { $date->Set(Format => 'unknown', Value => 'another weird date'); } [ qr{Couldn't parse date 'another weird date' by Time::ParseDate}, qr{Couldn't parse date 'another weird date' by DateTime::Format::Natural} ], 'warning for "another weird date"'; ok(!$date->IsSet, "date was wrong"); RT->Config->Set( AmbiguousDayInPast => 0 ); RT->Config->Set( AmbiguousDayInFuture => 0 ); RT->Config->Set( Timezone => 'Asia/Shanghai' ); set_fixed_time("2015-11-28T15:10:00Z"); warnings_like { $date->Set(Format => 'unknown', Value => 'Apr'); } qr{Couldn't parse date 'Apr' by Time::ParseDate}, "warning by Time::ParseDate"; is($date->ISO, '2015-03-31 16:00:00', "April in the past"); warnings_like { $date->Set(Format => 'unknown', Value => 'Monday'); } qr{Couldn't parse date 'Monday' by Time::ParseDate}, "warning by Time::ParseDate"; is($date->ISO, '2015-11-22 16:00:00', "Monday in the past"); RT->Config->Set( AmbiguousDayInFuture => 1 ); warnings_like { $date->Set(Format => 'unknown', Value => 'Apr'); } qr{Couldn't parse date 'Apr' by Time::ParseDate}, "warning by Time::ParseDate"; is($date->ISO, '2016-03-31 16:00:00', "April in the future"); } #TODO: AsString #TODO: RFC2822, W3CDTF with Timezones done_testing; rt-4.4.2/t/api/versions_sorter.t0000664000175000017500000000073513131430353016506 0ustar vagrantvagrant use RT::Test nodata => 1, tests => 3; use strict; use warnings; sub is_right_sorting { my @order = @_; my @tmp = sort { int(rand(3)) - 1 } @order; is_deeply( [ sort RT::Handle::cmp_version @tmp ], \@order, 'test sorting of ('. join(' ', @tmp) .')' ); } is_right_sorting(qw(1 2 3)); is_right_sorting(qw(1.1 1.2 1.3 2.0 2.1)); is_right_sorting(qw(4.0.0a1 4.0.0alpha2 4.0.0b1 4.0.0beta2 4.0.0pre1 4.0.0pre2 4.0.0rc1 4.0.0rc2 4.0.0)); rt-4.4.2/t/api/reminder-permissions.t0000664000175000017500000000214513131430353017413 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 9; my $user_a = RT::Test->load_or_create_user( Name => 'user_a', Password => 'password', ); ok( $user_a && $user_a->id, 'created user_a' ); ok( RT::Test->add_rights( { Principal => $user_a, Right => [qw/SeeQueue CreateTicket ShowTicket OwnTicket/] }, ), 'add basic rights for user_a' ); my $ticket = RT::Test->create_ticket( Subject => 'test reminder permission', Queue => 'General', ); ok( $ticket->id, 'created a ticket' ); $ticket->CurrentUser($user_a); my ( $status, $msg ) = $ticket->Reminders->Add( Subject => 'user a reminder', Owner => $user_a->id, ); ok( !$status, "couldn't create reminders without ModifyTicket: $msg" ); ok( RT::Test->add_rights( { Principal => $user_a, Right => [qw/ModifyTicket/] }, ), 'add ModifyTicket right for user_a' ); ( $status, $msg ) = $ticket->Reminders->Add( Subject => 'user a reminder', Owner => $user_a->id, ); ok( $status, "created a reminder with ModifyTicket: $msg" ); rt-4.4.2/t/api/ticket.t0000664000175000017500000002763513131430353014533 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => undef; { use_ok ('RT::Queue'); ok(my $testqueue = RT::Queue->new(RT->SystemUser)); ok($testqueue->Create( Name => 'ticket tests')); isnt($testqueue->Id , 0); use_ok('RT::CustomField'); ok(my $testcf = RT::CustomField->new(RT->SystemUser)); my ($ret, $cmsg) = $testcf->Create( Name => 'selectmulti', Queue => $testqueue->id, Type => 'SelectMultiple'); ok($ret,"Created the custom field - ".$cmsg); ($ret,$cmsg) = $testcf->AddValue ( Name => 'Value1', SortOrder => '1', Description => 'A testing value'); ok($ret, "Added a value - ".$cmsg); ok($testcf->AddValue ( Name => 'Value2', SortOrder => '2', Description => 'Another testing value')); ok($testcf->AddValue ( Name => 'Value3', SortOrder => '3', Description => 'Yet Another testing value')); is($testcf->Values->Count , 3); use_ok('RT::Ticket'); my $u = RT::User->new(RT->SystemUser); $u->Load("root"); ok ($u->Id, "Found the root user"); ok(my $t = RT::Ticket->new(RT->SystemUser)); ok(my ($id, $msg) = $t->Create( Queue => $testqueue->Id, Subject => 'Testing', Owner => $u->Id )); isnt($id , 0); is ($t->OwnerObj->Id , $u->Id, "Root is the ticket owner"); ok(my ($cfv, $cfm) =$t->AddCustomFieldValue(Field => $testcf->Id, Value => 'Value1')); isnt($cfv , 0, "Custom field creation didn't return an error: $cfm"); is($t->CustomFieldValues($testcf->Id)->Count , 1); ok($t->CustomFieldValues($testcf->Id)->First && $t->CustomFieldValues($testcf->Id)->First->Content eq 'Value1'); ok(my ($cfdv, $cfdm) = $t->DeleteCustomFieldValue(Field => $testcf->Id, Value => 'Value1')); isnt ($cfdv , 0, "Deleted a custom field value: $cfdm"); is($t->CustomFieldValues($testcf->Id)->Count , 0); ok(my $t2 = RT::Ticket->new(RT->SystemUser)); ok($t2->Load($id)); is($t2->Subject, 'Testing'); is($t2->QueueObj->Id, $testqueue->id); is($t2->OwnerObj->Id, $u->Id); my $t3 = RT::Ticket->new(RT->SystemUser); my ($id3, $msg3) = $t3->Create( Queue => $testqueue->Id, Subject => 'Testing', Owner => $u->Id); my ($cfv1, $cfm1) = $t->AddCustomFieldValue(Field => $testcf->Id, Value => 'Value1'); isnt($cfv1 , 0, "Adding a custom field to ticket 1 is successful: $cfm"); my ($cfv2, $cfm2) = $t3->AddCustomFieldValue(Field => $testcf->Id, Value => 'Value2'); isnt($cfv2 , 0, "Adding a custom field to ticket 2 is successful: $cfm"); my ($cfv3, $cfm3) = $t->AddCustomFieldValue(Field => $testcf->Id, Value => 'Value3'); isnt($cfv3 , 0, "Adding a custom field to ticket 1 is successful: $cfm"); is($t->CustomFieldValues($testcf->Id)->Count , 2, "This ticket has 2 custom field values"); is($t3->CustomFieldValues($testcf->Id)->Count , 1, "This ticket has 1 custom field value"); } { ok(require RT::Ticket, "Loading the RT::Ticket library"); } { my $t = RT::Ticket->new(RT->SystemUser); ok( $t->Create(Queue => 'General', Due => '2002-05-21 00:00:00', ReferredToBy => 'http://www.cpan.org', RefersTo => 'http://fsck.com', Subject => 'This is a subject'), "Ticket Created"); ok ( my $id = $t->Id, "Got ticket id"); like ($t->RefersTo->First->Target , qr/fsck.com/, "Got refers to"); like ($t->ReferredToBy->First->Base , qr/cpan.org/, "Got referredtoby"); ok (!$t->ResolvedObj->IsSet, "It hasn't been resolved"); } { my $ticket = RT::Ticket->new(RT->SystemUser); my ($id, $msg) = $ticket->Create(Subject => "Foo", Owner => RT->SystemUser->Id, Status => 'open', Requestor => ['jesse@example.com'], Queue => '1' ); ok ($id, "Ticket $id was created"); ok(my $group = $ticket->RoleGroup('Requestor')); ok ($group->Id, "Found the requestors object for this ticket"); ok(my $jesse = RT::User->new(RT->SystemUser), "Creating a jesse rt::user"); $jesse->LoadByEmail('jesse@example.com'); ok($jesse->Id, "Found the jesse rt user"); ok ($ticket->IsWatcher(Type => 'Requestor', PrincipalId => $jesse->PrincipalId), "The ticket actually has jesse at fsck.com as a requestor"); ok (my ($add_id, $add_msg) = $ticket->AddWatcher(Type => 'Requestor', Email => 'bob@fsck.com'), "Added bob at fsck.com as a requestor"); ok ($add_id, "Add succeeded: ($add_msg)"); ok(my $bob = RT::User->new(RT->SystemUser), "Creating a bob rt::user"); $bob->LoadByEmail('bob@fsck.com'); ok($bob->Id, "Found the bob rt user"); ok ($ticket->IsWatcher(Type => 'Requestor', PrincipalId => $bob->PrincipalId), "The ticket actually has bob at fsck.com as a requestor"); ok ( ($add_id, $add_msg) = $ticket->DeleteWatcher(Type =>'Requestor', Email => 'bob@fsck.com'), "Added bob at fsck.com as a requestor"); ok (!$ticket->IsWatcher(Type => 'Requestor', PrincipalId => $bob->PrincipalId), "The ticket no longer has bob at fsck.com as a requestor"); $group = $ticket->RoleGroup('Cc'); ok ($group->Id, "Found the cc object for this ticket"); $group = $ticket->RoleGroup('AdminCc'); ok ($group->Id, "Found the AdminCc object for this ticket"); $group = $ticket->RoleGroup('Owner'); ok ($group->Id, "Found the Owner object for this ticket"); ok($group->HasMember(RT->SystemUser->UserObj->PrincipalObj), "the owner group has the member 'RT_System'"); } { my $t = RT::Ticket->new(RT->SystemUser); ok($t->Create(Queue => 'general', Subject => 'SquelchTest', SquelchMailTo => 'nobody@example.com')); my @returned = $t->SquelchMailTo(); is($#returned, 0, "The ticket has one squelched recipients"); my ($ret, $msg) = $t->UnsquelchMailTo('nobody@example.com'); ok($ret, "Removed nobody as a squelched recipient - ".$msg); @returned = $t->SquelchMailTo(); is($#returned, -1, "The ticket has no squelched recipients". join(',',@returned)); @returned = $t->SquelchMailTo('nobody@example.com'); is($#returned, 0, "The ticket has one squelched recipients"); my @names = $t->Attributes->Names; is(shift @names, 'SquelchMailTo', "The attribute we have is SquelchMailTo"); @returned = $t->SquelchMailTo('nobody@example.com'); is($#returned, 0, "The ticket has one squelched recipients"); @names = $t->Attributes->Names; is(shift @names, 'SquelchMailTo', "The attribute we have is SquelchMailTo"); ($ret, $msg) = $t->UnsquelchMailTo('nobody@example.com'); ok($ret, "Removed nobody as a squelched recipient - ".$msg); @returned = $t->SquelchMailTo(); is($#returned, -1, "The ticket has no squelched recipients". join(',',@returned)); @returned = $t->SquelchMailTo('somebody@example.com','nobody@example.com'); is($#returned, 1, "The ticket has two squelched recipients, multiple args"); @returned = $t->SquelchMailTo('third@example.com'); is($#returned, 2, "The ticket has three squelched recipients, additive calls"); my $t2 = RT::Ticket->new(RT->SystemUser); ok($t2->Create(Queue => 'general', Subject => 'SquelchTest', SquelchMailTo => [ 'nobody@example.com', 'test@example.com' ])); my @returned2 = $t2->SquelchMailTo(); is($#returned2,1, "The ticket has two squelched recipients"); $t2->SquelchMailTo('test@example.com'); my @returned3 = $t2->SquelchMailTo(); is($#returned2,1, "The ticket still has two squelched recipients, no duplicate squelchers"); } { my $t1 = RT::Ticket->new(RT->SystemUser); $t1->Create ( Subject => 'Merge test 1', Queue => 'general', Requestor => 'merge1@example.com'); my $t1id = $t1->id; my $t2 = RT::Ticket->new(RT->SystemUser); $t2->Create ( Subject => 'Merge test 2', Queue => 'general', Requestor => 'merge2@example.com'); my $t2id = $t2->id; my ($msg, $val) = $t1->MergeInto($t2->id); ok ($msg,$val); $t1 = RT::Ticket->new(RT->SystemUser); is ($t1->id, undef, "ok. we've got a blank ticket1"); $t1->Load($t1id); is ($t1->id, $t2->id); is ($t1->Requestors->MembersObj->Count, 2); } diag "Test owner changes"; { my $root = RT::User->new(RT->SystemUser); $root->Load('root'); ok ($root->Id, "Loaded the root user"); my $t = RT::Ticket->new(RT->SystemUser); my ($val, $msg) = $t->Create( Subject => 'Owner test 1', Queue => 'General'); ok( $t->Id, "Created a new ticket with id $val: $msg"); ($val, $msg) = $t->SetOwner('bogususer'); ok( !$val, "Can't set owner to bogus user"); is( $msg, "That user does not exist", "Got message: $msg"); ($val, $msg) = $t->SetOwner('root'); is ($t->OwnerObj->Name, 'root' , "Root owns the ticket"); ($val, $msg) = $t->SetOwner('root'); ok( !$val, "User already owns ticket"); is( $msg, "That user already owns that ticket", "Got message: $msg"); $t->Steal(); is ($t->OwnerObj->id, RT->SystemUser->id , "SystemUser owns the ticket"); my $txns = RT::Transactions->new(RT->SystemUser); $txns->OrderBy(FIELD => 'id', ORDER => 'DESC'); $txns->Limit(FIELD => 'ObjectId', VALUE => $t->Id); $txns->Limit(FIELD => 'ObjectType', VALUE => 'RT::Ticket'); $txns->Limit(FIELD => 'Type', OPERATOR => '!=', VALUE => 'EmailRecord'); my $steal = $txns->First; is($steal->OldValue , $root->Id , "Stolen from root"); is($steal->NewValue , RT->SystemUser->Id , "Stolen by the systemuser"); ok(my $user1 = RT::User->new(RT->SystemUser), "Creating a user1 rt::user"); ($val, $msg) = $user1->Create(Name => 'User1', EmailAddress => 'user1@example.com'); ok( $val, "Created new user with id: $val"); ok( $user1->Id, "Found the user1 rt user"); my $t1 = RT::Ticket->new($user1); ($val, $msg) = $t1->Load($t->Id); ok( $t1->Id, "Loaded ticket with id $val"); ($val, $msg) = $t1->SetOwner('root'); ok( !$val, "user1 can't set owner to root: $msg"); is ($t->OwnerObj->id, RT->SystemUser->id , "SystemUser still owns ticket " . $t1->Id); my $queue = RT::Queue->new(RT->SystemUser); $queue->Load("General"); ($val, $msg) = $user1->PrincipalObj->GrantRight( Object => $queue, Right => 'ModifyTicket' ); ($val, $msg) = $t1->SetOwner('root'); ok( !$val, "With ModifyTicket user1 can't set owner to root: $msg"); is ($t->OwnerObj->id, RT->SystemUser->id , "SystemUser still owns ticket " . $t1->Id); ($val, $msg) = $user1->PrincipalObj->GrantRight( Object => $queue, Right => 'ReassignTicket' ); ($val, $msg) = $t1->SetOwner('root'); ok( $val, "With ReassignTicket user1 reassigned ticket " . $t1->Id . " to root: $msg"); is ($t1->OwnerObj->Name, 'root' , "Root owns ticket " . $t1->Id); } { my $tt = RT::Ticket->new(RT->SystemUser); my ($id, $tid, $msg)= $tt->Create(Queue => 'general', Subject => 'test'); ok($id, $msg); is($tt->Status, 'new', "New ticket is created as new"); ($id, $msg) = $tt->SetStatus('open'); ok($id, $msg); like($msg, qr/open/i, "Status message is correct"); ($id, $msg) = $tt->SetStatus('resolved'); ok($id, $msg); like($msg, qr/resolved/i, "Status message is correct"); ($id, $msg) = $tt->SetStatus('resolved'); ok(!$id,$msg); my $dep = RT::Ticket->new( RT->SystemUser ); my ( $dep_id, undef, $dep_msg ) = $dep->Create( Queue => 'general', Subject => 'dep ticket', 'DependedOnBy' => $tt->id, ); ok( $dep->id, $dep_msg ); ($id, $msg) = $tt->SetStatus('rejected'); ok( $id, $msg ); } diag("Test ticket types with different cases"); { my $t = RT::Ticket->new(RT->SystemUser); my ($ok) = $t->Create( Queue => 'general', Subject => 'type test', Type => 'Ticket', ); ok($ok, "Ticket allows passing upper-case Ticket as type during Create"); is($t->Type, "ticket", "Ticket type is lowercased during create"); ($ok) = $t->SetType("REMINDER"); ok($ok, "Ticket allows passing upper-case REMINDER to SetType"); is($t->Type, "reminder", "Ticket type is lowercased during set"); ($ok) = $t->SetType("OTHER"); ok($ok, "Allows setting Type to non-RT types"); is($t->Type, "OTHER", "Non-RT types are case-insensitive"); ($ok) = $t->Create( Queue => 'general', Subject => 'type test', Type => 'Approval', ); ok($ok, "Tickets can be created with an upper-case Approval type"); is($t->Type, "approval", "Approvals, the third and final internal type, are also lc'd during Create"); } done_testing; rt-4.4.2/t/api/i18n_mime_encoding.t0000664000175000017500000000151713131430353016673 0ustar vagrantvagrantuse warnings; use strict; use RT::Test nodata => 1, tests => undef; use RT::I18N; use Test::Warn; diag "normal mime encoding conversion: utf8 => iso-8859-1"; { my $mime = MIME::Entity->build( Type => 'text/plain; charset=utf-8', Data => ['À中文'], ); warning_like { RT::I18N::SetMIMEEntityToEncoding( $mime, 'iso-8859-1', ); } [ qr/does not map to iso-8859-1/ ], 'got one "not map" error'; is( $mime->stringify_body, 'À中文', 'body is not changed' ); is( $mime->head->mime_attr('Content-Type'), 'application/octet-stream' ); } diag "mime encoding conversion: utf8 => iso-8859-1"; { my $mime = MIME::Entity->build( Type => 'text/plain; charset=utf-8', Data => ['À中文'], ); is( $mime->stringify_body, 'À中文', 'body is not changed' ); } done_testing; rt-4.4.2/t/api/searchbuilder.t0000664000175000017500000000343613131430353016055 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => 19; { ok (require RT::SearchBuilder); } { use_ok('RT::Queues'); ok(my $queues = RT::Queues->new(RT->SystemUser), 'Created a queues object'); ok( $queues->UnLimit(),'Unlimited the result set of the queues object'); my $items = $queues->ItemsArrayRef(); my @items = @{$items}; ok($queues->RecordClass->_Accessible('Name','read')); my @sorted = sort {lc($a->Name) cmp lc($b->Name)} @items; ok (@sorted, "We have an array of queues, sorted". join(',',map {$_->Name} @sorted)); ok (@items, "We have an array of queues, raw". join(',',map {$_->Name} @items)); my @sorted_ids = map {$_->id } @sorted; my @items_ids = map {$_->id } @items; is ($#sorted, $#items); is ($sorted[0]->Name, $items[0]->Name); is ($sorted[-1]->Name, $items[-1]->Name); is_deeply(\@items_ids, \@sorted_ids, "ItemsArrayRef sorts alphabetically by name"); } #20767: CleanSlate doesn't clear RT::SearchBuilder's flags for handling Disabled columns { my $items; ok(my $queues = RT::Queues->new(RT->SystemUser), 'Created a queues object'); ok( $queues->UnLimit(),'Unlimited the result set of the queues object'); # sanity check is( $queues->{'handled_disabled_column'} => undef, 'handled_disabled_column IS NOT set' ); is( $queues->{'find_disabled_rows'} => undef, 'find_disabled_rows IS NOT set ' ); $queues->LimitToDeleted; # sanity check ok( $queues->{'handled_disabled_column'}, 'handled_disabled_column IS set' ); ok( $queues->{'find_disabled_rows'}, 'find_disabled_rows IS set ' ); $queues->CleanSlate; # these fail without the overloaded CleanSlate method is( $queues->{'handled_disabled_column'} => undef, 'handled_disabled_column IS NOT set' ); is( $queues->{'find_disabled_rows'} => undef, 'find_disabled_rows IS NOT set ' ); } rt-4.4.2/t/api/attachment.t0000664000175000017500000000264613131430353015373 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => 7; { ok (require RT::Attachment); } { my $test1 = "From: jesse"; my @headers = RT::Attachment->_SplitHeaders($test1); is ($#headers, 0, $test1 ); my $test2 = qq{From: jesse To: bobby Subject: foo }; @headers = RT::Attachment->_SplitHeaders($test2); is ($#headers, 2, "testing a bunch of singline multiple headers" ); my $test3 = qq{From: jesse To: bobby, Suzie, Sally, Joey: bizzy, Subject: foo }; @headers = RT::Attachment->_SplitHeaders($test3); is ($#headers, 2, "testing a bunch of singline multiple headers" ); } { my $iso_8859_1_ticket_email = RT::Test::get_relocatable_file( 'new-ticket-from-iso-8859-1', ( File::Spec->updir(), 'data', 'emails' ) ); my $content = RT::Test->file_content($iso_8859_1_ticket_email); my $parser = RT::EmailParser->new; $parser->ParseMIMEEntityFromScalar($content); my $attachment = RT::Attachment->new( $RT::SystemUser ); my ( $id, $msg ) = $attachment->Create( TransactionId => 1, Attachment => $parser->Entity ); ok( $id, $msg ); my $mime = $attachment->ContentAsMIME; like( $mime->head->get('Content-Type'), qr/charset="iso-8859-1"/, 'content type of ContentAsMIME is original' ); is( Encode::decode( 'iso-8859-1', $mime->stringify_body ), Encode::decode( 'UTF-8', "HÃ¥vard\n" ), 'body of ContentAsMIME is original' ); } rt-4.4.2/t/api/user.t0000664000175000017500000004011313131430353014210 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => 122; { ok(require RT::User); } { # Make sure we can create a user my $u1 = RT::User->new(RT->SystemUser); is(ref($u1), 'RT::User'); my ($id, $msg) = $u1->Create(Name => 'CreateTest1'.$$, EmailAddress => $$.'create-test-1@example.com'); ok ($id, "Creating user CreateTest1 - " . $msg ); # Make sure we can't create a second user with the same name my $u2 = RT::User->new(RT->SystemUser); ($id, $msg) = $u2->Create(Name => 'CreateTest1'.$$, EmailAddress => $$.'create-test-2@example.com'); ok (!$id, $msg); # Make sure we can't create a second user with the same EmailAddress address my $u3 = RT::User->new(RT->SystemUser); ($id, $msg) = $u3->Create(Name => 'CreateTest2'.$$, EmailAddress => $$.'create-test-1@example.com'); ok (!$id, $msg); # Make sure we can create a user with no EmailAddress address my $u4 = RT::User->new(RT->SystemUser); ($id, $msg) = $u4->Create(Name => 'CreateTest3'.$$); ok ($id, $msg); # make sure we can create a second user with no EmailAddress address my $u5 = RT::User->new(RT->SystemUser); ($id, $msg) = $u5->Create(Name => 'CreateTest4'.$$); ok ($id, $msg); # make sure we can create a user with a blank EmailAddress address my $u6 = RT::User->new(RT->SystemUser); ($id, $msg) = $u6->Create(Name => 'CreateTest6'.$$, EmailAddress => ''); ok ($id, $msg); # make sure we can create a second user with a blankEmailAddress address my $u7 = RT::User->new(RT->SystemUser); ($id, $msg) = $u7->Create(Name => 'CreateTest7'.$$, EmailAddress => ''); ok ($id, $msg); # Can we change the email address away from from ""; ($id,$msg) = $u7->SetEmailAddress('foo@bar'.$$); ok ($id, $msg); # can we change the address back to ""; ($id,$msg) = $u7->SetEmailAddress(''); ok ($id, $msg); is_empty ($u7->EmailAddress); # back to something, so we can set undef next successfully ($id,$msg) = $u7->SetEmailAddress('foo@bar'.$$); ok ($id, $msg); ($id,$msg) = $u7->SetEmailAddress(undef); ok ($id, $msg); is_empty ($u7->EmailAddress); RT->Config->Set('ValidateUserEmailAddresses' => 1); # Make sur we can't create a user with multiple email adresses separated by comma my $u8 = RT::User->new(RT->SystemUser); ($id, $msg) = $u8->Create(Name => 'CreateTest8'.$$, EmailAddress => $$.'create-test-81@example.com, '.$$.'create-test-82@example.com'); ok (!$id, $msg); # Make sur we can't create a user with multiple email adresses separated by space my $u9 = RT::User->new(RT->SystemUser); ($id, $msg) = $u9->Create(Name => 'CreateTest9'.$$, EmailAddress => $$.'create-test-91@example.com '.$$.'create-test-92@example.com'); ok (!$id, $msg); # Make sur we can't create a user with invalid email address my $u10 = RT::User->new(RT->SystemUser); ($id, $msg) = $u10->Create(Name => 'CreateTest10'.$$, EmailAddress => $$.'create-test10}@[.com'); ok (!$id, $msg); RT->Config->Set('ValidateUserEmailAddresses' => undef); } { ok(my $user = RT::User->new(RT->SystemUser)); ok($user->Load('root'), "Loaded user 'root'"); ok($user->Privileged, "User 'root' is privileged"); ok(my ($v,$m) = $user->SetPrivileged(0)); is ($v ,1, "Set unprivileged suceeded ($m)"); ok(!$user->Privileged, "User 'root' is no longer privileged"); ok(my ($v2,$m2) = $user->SetPrivileged(1)); is ($v2 ,1, "Set privileged suceeded ($m2"); ok($user->Privileged, "User 'root' is privileged again"); } { ok(my $u = RT::User->new(RT->SystemUser)); ok($u->Load(1), "Loaded the first user"); is($u->PrincipalObj->id , 1, "user 1 is the first principal"); is($u->PrincipalObj->PrincipalType, 'User' , "Principal 1 is a user, not a group"); } { my $root = RT::User->new(RT->SystemUser); $root->Load('root'); ok($root->Id, "Found the root user"); my $rootq = RT::Queue->new($root); $rootq->Load(1); ok($rootq->Id, "Loaded the first queue"); ok ($rootq->CurrentUser->HasRight(Right=> 'CreateTicket', Object => $rootq), "Root can create tickets"); my $new_user = RT::User->new(RT->SystemUser); my ($id, $msg) = $new_user->Create(Name => 'ACLTest'.$$); ok ($id, "Created a new user for acl test $msg"); my $q = RT::Queue->new($new_user); $q->Load(1); ok($q->Id, "Loaded the first queue"); ok (!$q->CurrentUser->HasRight(Right => 'CreateTicket', Object => $q), "Some random user doesn't have the right to create tickets"); ok (my ($gval, $gmsg) = $new_user->PrincipalObj->GrantRight( Right => 'CreateTicket', Object => $q), "Granted the random user the right to create tickets"); ok ($gval, "Grant succeeded - $gmsg"); ok ($q->CurrentUser->HasRight(Right => 'CreateTicket', Object => $q), "The user can create tickets after we grant him the right"); ok ( ($gval, $gmsg) = $new_user->PrincipalObj->RevokeRight( Right => 'CreateTicket', Object => $q), "revoked the random user the right to create tickets"); ok ($gval, "Revocation succeeded - $gmsg"); ok (!$q->CurrentUser->HasRight(Right => 'CreateTicket', Object => $q), "The user can't create tickets anymore"); # Create a ticket in the queue my $new_tick = RT::Ticket->new(RT->SystemUser); my ($tickid, $tickmsg) = $new_tick->Create(Subject=> 'ACL Test', Queue => 'General'); ok($tickid, "Created ticket: $tickid"); # Make sure the user doesn't have the right to modify tickets in the queue ok (!$new_user->HasRight( Object => $new_tick, Right => 'ModifyTicket'), "User can't modify the ticket without group membership"); # Create a new group my $group = RT::Group->new(RT->SystemUser); $group->CreateUserDefinedGroup(Name => 'ACLTest'.$$); ok($group->Id, "Created a new group Ok"); # Grant a group the right to modify tickets in a queue ok(my ($gv,$gm) = $group->PrincipalObj->GrantRight( Object => $q, Right => 'ModifyTicket'),"Granted the group the right to modify tickets"); ok($gv,"Grant succeeed - $gm"); # Add the user to the group ok( my ($aid, $amsg) = $group->AddMember($new_user->PrincipalId), "Added the member to the group"); ok ($aid, "Member added to group: $amsg"); # Make sure the user does have the right to modify tickets in the queue ok ($new_user->HasRight( Object => $new_tick, Right => 'ModifyTicket'), "User can modify the ticket with group membership"); # Remove the user from the group ok( my ($did, $dmsg) = $group->DeleteMember($new_user->PrincipalId), "Deleted the member from the group"); ok ($did,"Deleted the group member: $dmsg"); # Make sure the user doesn't have the right to modify tickets in the queue ok (!$new_user->HasRight( Object => $new_tick, Right => 'ModifyTicket'), "User can't modify the ticket without group membership"); my $q_as_system = RT::Queue->new(RT->SystemUser); $q_as_system->Load(1); ok($q_as_system->Id, "Loaded the first queue"); # Create a ticket in the queue my $new_tick2 = RT::Ticket->new(RT->SystemUser); (my $tick2id, $tickmsg) = $new_tick2->Create(Subject=> 'ACL Test 2', Queue =>$q_as_system->Id); ok($tick2id, "Created ticket: $tick2id"); is($new_tick2->QueueObj->id, $q_as_system->Id, "Created a new ticket in queue 1"); # make sure that the user can't do this without subgroup membership ok (!$new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can't modify the ticket without group membership"); # Create a subgroup my $subgroup = RT::Group->new(RT->SystemUser); $subgroup->CreateUserDefinedGroup(Name => 'Subgrouptest'.$$); ok($subgroup->Id, "Created a new group ".$subgroup->Id."Ok"); #Add the subgroup as a subgroup of the group my ($said, $samsg) = $group->AddMember($subgroup->PrincipalId); ok ($said, "Added the subgroup as a member of the group"); # Add the user to a subgroup of the group my ($usaid, $usamsg) = $subgroup->AddMember($new_user->PrincipalId); ok($usaid,"Added the user ".$new_user->Id."to the subgroup"); # Make sure the user does have the right to modify tickets in the queue ok ($new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can modify the ticket with subgroup membership"); # {{{ Deal with making sure that members of subgroups of a disabled group don't have rights ($id, $msg) = $group->SetDisabled(1); ok ($id,$msg); ok (!$new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can't modify the ticket when the group ".$group->Id. " is disabled"); ($id, $msg) = $group->SetDisabled(0); ok($id,$msg); # Test what happens when we disable the group the user is a member of directly ($id, $msg) = $subgroup->SetDisabled(1); ok ($id,$msg); ok (!$new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can't modify the ticket when the group ".$subgroup->Id. " is disabled"); ($id, $msg) = $subgroup->SetDisabled(0); ok ($id,$msg); ok ($new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can modify the ticket without group membership"); my ($usrid, $usrmsg) = $subgroup->DeleteMember($new_user->PrincipalId); ok($usrid,"removed the user from the group - $usrmsg"); # Make sure the user doesn't have the right to modify tickets in the queue ok (!$new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can't modify the ticket without group membership"); #revoke the right to modify tickets in a queue ok(($gv,$gm) = $group->PrincipalObj->RevokeRight( Object => $q, Right => 'ModifyTicket'),"Granted the group the right to modify tickets"); ok($gv,"revoke succeeed - $gm"); # Grant queue admin cc the right to modify ticket in the queue ok(my ($qv,$qm) = $q_as_system->AdminCc->PrincipalObj->GrantRight( Object => $q_as_system, Right => 'ModifyTicket'),"Granted the queue adminccs the right to modify tickets"); ok($qv, "Granted the right successfully - $qm"); # Add the user as a queue admincc ok (my ($add_id, $add_msg) = $q_as_system->AddWatcher(Type => 'AdminCc', PrincipalId => $new_user->PrincipalId) , "Added the new user as a queue admincc"); ok ($add_id, "the user is now a queue admincc - $add_msg"); # Make sure the user does have the right to modify tickets in the queue ok ($new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can modify the ticket as an admincc"); # Remove the user from the role group ok (my ($del_id, $del_msg) = $q_as_system->DeleteWatcher(Type => 'AdminCc', PrincipalId => $new_user->PrincipalId) , "Deleted the new user as a queue admincc"); # Make sure the user doesn't have the right to modify tickets in the queue ok (!$new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can't modify the ticket without group membership"); # Add the user as a ticket admincc ok (my( $uadd_id, $uadd_msg) = $new_tick2->AddWatcher(Type => 'AdminCc', PrincipalId => $new_user->PrincipalId) , "Added the new user as a queue admincc"); ok ($add_id, "the user is now a queue admincc - $add_msg"); # Make sure the user does have the right to modify tickets in the queue ok ($new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can modify the ticket as an admincc"); # Remove the user from the role group ok (( $del_id, $del_msg) = $new_tick2->DeleteWatcher(Type => 'AdminCc', PrincipalId => $new_user->PrincipalId) , "Deleted the new user as a queue admincc"); # Make sure the user doesn't have the right to modify tickets in the queue ok (!$new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can't modify the ticket without group membership"); # Revoke the right to modify ticket in the queue ok(my ($rqv,$rqm) = $q_as_system->AdminCc->PrincipalObj->RevokeRight( Object => $q_as_system, Right => 'ModifyTicket'),"Revokeed the queue adminccs the right to modify tickets"); ok($rqv, "Revoked the right successfully - $rqm"); # Before we start Make sure the user does not have the right to modify tickets in the queue ok (!$new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can not modify the ticket without it being granted"); ok (!$new_user->HasRight( Object => $new_tick2->QueueObj, Right => 'ModifyTicket'), "User can not modify tickets in the queue without it being granted"); # Grant queue admin cc the right to modify ticket in the queue ok(($qv,$qm) = $q_as_system->AdminCc->PrincipalObj->GrantRight( Object => $RT::System, Right => 'ModifyTicket'),"Granted the queue adminccs the right to modify tickets"); ok($qv, "Granted the right successfully - $qm"); # Make sure the user can't modify the ticket before they're added as a watcher ok (!$new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can not modify the ticket without being an admincc"); ok (!$new_user->HasRight( Object => $new_tick2->QueueObj, Right => 'ModifyTicket'), "User can not modify tickets in the queue without being an admincc"); # Add the user as a queue admincc ok (($add_id, $add_msg) = $q_as_system->AddWatcher(Type => 'AdminCc', PrincipalId => $new_user->PrincipalId) , "Added the new user as a queue admincc"); ok ($add_id, "the user is now a queue admincc - $add_msg"); # Make sure the user does have the right to modify tickets in the queue ok ($new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can modify the ticket as an admincc"); ok ($new_user->HasRight( Object => $new_tick2->QueueObj, Right => 'ModifyTicket'), "User can modify tickets in the queue as an admincc"); # Remove the user from the role group ok (($del_id, $del_msg) = $q_as_system->DeleteWatcher(Type => 'AdminCc', PrincipalId => $new_user->PrincipalId) , "Deleted the new user as a queue admincc"); # Make sure the user doesn't have the right to modify tickets in the queue ok (!$new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can't modify the ticket without group membership"); ok (!$new_user->HasRight( Object => $new_tick2->QueueObj, Right => 'ModifyTicket'), "User can't modify tickets in the queue without group membership"); ok (!$new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can not modify the ticket without being an admincc"); ok (!$new_user->HasRight( Object => $new_tick2->QueueObj, Right => 'ModifyTicket'), "User can not modify tickets in the queue obj without being an admincc"); # Add the user as a ticket admincc ok ( ($uadd_id, $uadd_msg) = $new_tick2->AddWatcher(Type => 'AdminCc', PrincipalId => $new_user->PrincipalId) , "Added the new user as a queue admincc"); ok ($add_id, "the user is now a queue admincc - $add_msg"); # Make sure the user does have the right to modify tickets in the queue ok ($new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can modify the ticket as an admincc"); ok (!$new_user->HasRight( Object => $new_tick2->QueueObj, Right => 'ModifyTicket'), "User can not modify tickets in the queue obj being only a ticket admincc"); # Remove the user from the role group ok ( ($del_id, $del_msg) = $new_tick2->DeleteWatcher(Type => 'AdminCc', PrincipalId => $new_user->PrincipalId) , "Deleted the new user as a queue admincc"); # Make sure the user doesn't have the right to modify tickets in the queue ok (!$new_user->HasRight( Object => $new_tick2, Right => 'ModifyTicket'), "User can't modify the ticket without being an admincc"); ok (!$new_user->HasRight( Object => $new_tick2->QueueObj, Right => 'ModifyTicket'), "User can not modify tickets in the queue obj without being an admincc"); # Revoke the right to modify ticket in the queue ok(($rqv,$rqm) = $q_as_system->AdminCc->PrincipalObj->RevokeRight( Object => $RT::System, Right => 'ModifyTicket'),"Revokeed the queue adminccs the right to modify tickets"); ok($rqv, "Revoked the right successfully - $rqm"); # Grant "privileged users" the system right to create users # Create a privileged user. # have that user create another user # Revoke the right for privileged users to create users # have the privileged user try to create another user and fail the ACL check } { my $root = RT::Test->load_or_create_user( Name => 'root' ); ok $root && $root->id; my $queue = RT::Test->load_or_create_queue( Name => 'General' ); ok $queue && $queue->id; my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id) = $ticket->Create( Subject => 'test', Queue => $queue ); ok $id; my $b_ticket = RT::Ticket->new( RT->SystemUser ); ($id) = $b_ticket->Create( Subject => 'test', Queue => $queue ); ok $id; ok $root->ToggleBookmark($b_ticket); ok !$root->ToggleBookmark($b_ticket); ok $root->ToggleBookmark($b_ticket); ok $root->HasBookmark( $b_ticket ); ok !$root->HasBookmark( $ticket ); my @marks = $root->Bookmarks; is scalar @marks, 1; is $marks[0], $b_ticket->id; } rt-4.4.2/t/api/rtname.t0000664000175000017500000000306113131430353014521 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodata => 1, tests => 12; use RT::Interface::Email; # normal use case, regexp set to rtname RT->Config->Set( rtname => "site" ); RT->Config->Set( EmailSubjectTagRegex => qr/site/ ); RT->Config->Set( rtname => undef ); is(RT::Interface::Email::ParseTicketId("[site #123] test"), 123); is(RT::Interface::Email::ParseTicketId("[othersite #123] test"), undef); # oops usecase, where the regexp is scragged RT->Config->Set( rtname => "site" ); RT->Config->Set( EmailSubjectTagRegex => undef ); is(RT::Interface::Email::ParseTicketId("[site #123] test"), 123); is(RT::Interface::Email::ParseTicketId("[othersite #123] test"), undef); # set to a simple regexp. NOTE: we no longer match "site" RT->Config->Set( rtname => "site"); RT->Config->Set( EmailSubjectTagRegex => qr/newsite/); is(RT::Interface::Email::ParseTicketId("[site #123] test"), undef); is(RT::Interface::Email::ParseTicketId("[newsite #123] test"), 123); # set to a more complex regexp RT->Config->Set( rtname => "site" ); RT->Config->Set( EmailSubjectTagRegex => qr/newsite|site/ ); is(RT::Interface::Email::ParseTicketId("[site #123] test"), 123); is(RT::Interface::Email::ParseTicketId("[newsite #123] test"), 123); is(RT::Interface::Email::ParseTicketId("[othersite #123] test"), undef); # Parens work fine RT->Config->Set( EmailSubjectTagRegex => qr/(new|)(site)/ ); is(RT::Interface::Email::ParseTicketId("[site #123] test"), 123); is(RT::Interface::Email::ParseTicketId("[newsite #123] test"), 123); is(RT::Interface::Email::ParseTicketId("[othersite #123] test"), undef); rt-4.4.2/t/api/scrip_order.t0000664000175000017500000002106613131430353015553 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 204; my $queue = RT::Test->load_or_create_queue( Name => 'General' ); ok $queue && $queue->id, 'loaded or created queue'; note "check that execution order reflects sort order"; { my $ten = main->create_scrip_ok( Description => "Set priority to 10", Queue => $queue->id, CustomCommitCode => '$self->TicketObj->SetPriority(10);', ); my $five = main->create_scrip_ok( Description => "Set priority to 5", Queue => $queue->id, CustomCommitCode => '$self->TicketObj->SetPriority(5);', ); my $ticket = RT::Ticket->new(RT->SystemUser); my ($id, $msg) = $ticket->Create( Queue => $queue->id, Subject => "Scrip order test $$", ); ok($ticket->id, "Created ticket? id=$id"); is($ticket->Priority , 5, "By default newer scrip is last"); main->move_scrip_ok( $five, $queue->id, 'up' ); $ticket = RT::Ticket->new(RT->SystemUser); ($id, $msg) = $ticket->Create( Queue => $queue->id, Subject => "Scrip order test $$", ); ok($ticket->id, "Created ticket? id=$id"); is($ticket->Priority , 10, "Moved scrip and result is different"); } my $queue_B = RT::Test->load_or_create_queue( Name => 'Other' ); ok $queue_B && $queue_B->id, 'loaded or created queue'; note "move around two local scrips"; { main->delete_all_scrips(); my @scrips; push @scrips, main->create_scrip_ok( Queue => $queue->id ); push @scrips, main->create_scrip_ok( Queue => $queue->id ); main->check_scrips_order(\@scrips, [$queue]); main->move_scrip_ok( $scrips[0], $queue->id, 'down' ); @scrips = @scrips[1, 0]; main->check_scrips_order(\@scrips, [$queue]); main->move_scrip_ok( $scrips[0], $queue->id, 'down' ); @scrips = @scrips[1, 0]; main->check_scrips_order(\@scrips, [$queue]); main->move_scrip_ok( $scrips[1], $queue->id, 'up' ); @scrips = @scrips[1, 0]; main->check_scrips_order(\@scrips, [$queue]); main->move_scrip_ok( $scrips[1], $queue->id, 'up' ); @scrips = @scrips[1, 0]; main->check_scrips_order(\@scrips, [$queue]); } note "move around two global scrips"; { main->delete_all_scrips(); my @scrips; push @scrips, main->create_scrip_ok( Queue => 0 ); push @scrips, main->create_scrip_ok( Queue => 0 ); main->check_scrips_order(\@scrips, [$queue]); main->move_scrip_ok( $scrips[0], 0, 'down' ); @scrips = @scrips[1, 0]; main->check_scrips_order(\@scrips, [$queue]); main->move_scrip_ok( $scrips[0], 0, 'down' ); @scrips = @scrips[1, 0]; main->check_scrips_order(\@scrips, [$queue]); main->move_scrip_ok( $scrips[1], 0, 'up' ); @scrips = @scrips[1, 0]; main->check_scrips_order(\@scrips, [$queue]); main->move_scrip_ok( $scrips[1], 0, 'up' ); @scrips = @scrips[1, 0]; main->check_scrips_order(\@scrips, [$queue]); } note "move local scrip below global"; { main->delete_all_scrips(); my @scrips; push @scrips, main->create_scrip_ok( Queue => $queue->id ); push @scrips, main->create_scrip_ok( Queue => $queue_B->id ); push @scrips, main->create_scrip_ok( Queue => 0 ); push @scrips, main->create_scrip_ok( Queue => $queue->id ); main->check_scrips_order(\@scrips, [$queue, $queue_B]); main->move_scrip_ok( $scrips[0], $queue->id, 'down' ); @scrips = @scrips[1, 2, 0, 3]; main->check_scrips_order(\@scrips, [$queue, $queue_B]); } note "move local scrip above global"; { main->delete_all_scrips(); my @scrips; push @scrips, main->create_scrip_ok( Queue => $queue_B->id ); push @scrips, main->create_scrip_ok( Queue => 0 ); push @scrips, main->create_scrip_ok( Queue => $queue->id ); push @scrips, main->create_scrip_ok( Queue => $queue_B->id ); main->check_scrips_order(\@scrips, [$queue, $queue_B]); main->move_scrip_ok( $scrips[-1], $queue_B->id, 'up' ); @scrips = @scrips[0, 3, 1, 2]; main->check_scrips_order(\@scrips, [$queue, $queue_B]); } note "move global scrip down with local in between"; { main->delete_all_scrips(); my @scrips; push @scrips, main->create_scrip_ok( Queue => 0 ); push @scrips, main->create_scrip_ok( Queue => $queue_B->id ); push @scrips, main->create_scrip_ok( Queue => $queue->id ); push @scrips, main->create_scrip_ok( Queue => 0 ); push @scrips, main->create_scrip_ok( Queue => $queue->id ); main->check_scrips_order(\@scrips, [$queue, $queue_B]); main->move_scrip_ok( $scrips[0], 0, 'down' ); @scrips = @scrips[1, 2, 3, 0, 4]; main->check_scrips_order(\@scrips, [$queue, $queue_B]); } note "move global scrip up with local in between"; { main->delete_all_scrips(); my @scrips; push @scrips, main->create_scrip_ok( Queue => $queue->id ); push @scrips, main->create_scrip_ok( Queue => 0 ); push @scrips, main->create_scrip_ok( Queue => $queue_B->id ); push @scrips, main->create_scrip_ok( Queue => $queue->id ); push @scrips, main->create_scrip_ok( Queue => 0 ); main->check_scrips_order(\@scrips, [$queue, $queue_B]); main->move_scrip_ok( $scrips[-1], 0, 'up' ); @scrips = @scrips[0, 4, 1, 2, 3]; main->check_scrips_order(\@scrips, [$queue, $queue_B]); } note "delete scrips one by one"; { main->delete_all_scrips(); my @scrips; push @scrips, main->create_scrip_ok( Queue => $queue->id ); push @scrips, main->create_scrip_ok( Queue => $queue_B->id ); push @scrips, main->create_scrip_ok( Queue => 0 ); push @scrips, main->create_scrip_ok( Queue => $queue_B->id ); push @scrips, main->create_scrip_ok( Queue => $queue->id ); push @scrips, main->create_scrip_ok( Queue => 0 ); main->check_scrips_order(\@scrips, [$queue, $queue_B]); foreach my $idx (3, 2, 0 ) { $_->Delete foreach splice @scrips, $idx, 1; main->check_scrips_order(\@scrips, [$queue, $queue_B]); } } sub create_scrip_ok { local $Test::Builder::Level = $Test::Builder::Level + 1; my $self = shift; my %args = ( ScripCondition => 'On Create', ScripAction => 'User Defined', CustomPrepareCode => 'return 1', CustomCommitCode => 'return 1', Template => 'Blank', Stage => 'TransactionCreate', @_ ); my $scrip = RT::Scrip->new( RT->SystemUser ); my ($id, $msg) = $scrip->Create( %args ); ok($id, "Created scrip") or diag "error: $msg"; return $scrip; } sub delete_all_scrips { local $Test::Builder::Level = $Test::Builder::Level + 1; my $self = shift; my $scrips = RT::Scrips->new( RT->SystemUser ); $scrips->UnLimit; $_->Delete foreach @{ $scrips->ItemsArrayRef }; } sub move_scrip_ok { local $Test::Builder::Level = $Test::Builder::Level + 1; my $self = shift; my ($scrip, $queue, $dir) = @_; my $rec = RT::ObjectScrip->new( RT->SystemUser ); $rec->LoadByCols( Scrip => $scrip->id, ObjectId => $queue ); ok $rec->id, 'found application of the scrip'; my $method = 'Move'. ucfirst lc $dir; my ($status, $msg) = $rec->$method(); ok $status, "moved scrip $dir" or diag "error: $msg"; } sub check_scrips_order { local $Test::Builder::Level = $Test::Builder::Level + 1; my $self = shift; my $scrips = shift; my $queues = shift; foreach my $qid ( 0, map $_->id, @$queues ) { my $list = RT::Scrips->new( RT->SystemUser ); $list->LimitToGlobal; $list->LimitToQueue( $qid ) if $qid; $list->ApplySortOrder; is_deeply( [map $_->id, @{ $list->ItemsArrayRef } ], [map $_->id, grep $_->IsAdded( $qid ) || $_->IsGlobal, @$scrips], 'list of scrips match expected' ) } foreach my $qid ( map $_->id, @$queues ) { my $list = RT::ObjectScrips->new( RT->SystemUser ); $list->LimitToObjectId( 0 ); $list->LimitToObjectId( $qid ); my %so; $so{ $_->SortOrder }++ foreach @{ $list->ItemsArrayRef }; ok( !grep( {$_ != 1} values %so), 'no dublicate order' ); } { my $list = RT::ObjectScrips->new( RT->SystemUser ); $list->UnLimit; $list->OrderBy( FIELD => 'SortOrder', ORDER => 'ASC' ); my $prev; foreach my $rec ( @{ $list->ItemsArrayRef } ) { my $so = $rec->SortOrder; do { $prev = $so; next } unless defined $prev; ok $so == $prev || $so == $prev+1, "sequential order"; $prev = $so; } } } sub dump_sort_order { diag " id oid so"; diag join "\n", map { join "\t", @$_ } map @$_, $RT::Handle->dbh->selectall_arrayref( "select Scrip, ObjectId, SortOrder from ObjectScrips ORDER BY SortOrder" ); } rt-4.4.2/t/api/menu.t0000664000175000017500000000570213131430353014203 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use RT::Interface::Web::Menu; sub child_path_is($$$) { my ($menu, $child, $expected) = @_; my $c = $menu->child($child->[0], path => $child->[1]); is $c->path, $expected, "'$child->[1]' normalizes to '$expected'"; return $c; } { package FakeRequest; sub new { bless {}, shift } sub path_info { "" } package FakeInterp; require CGI; sub new { bless {}, shift } sub cgi_object { CGI->new } } local $HTML::Mason::Commands::r = FakeRequest->new; local $HTML::Mason::Commands::m = FakeInterp->new; my $menu = RT::Interface::Web::Menu->new; ok $menu, "Created top level menu"; child_path_is $menu, [search => "Search/Simple.html"], "/Search/Simple.html"; child_path_is $menu, [absolute => "/Prefs/Other.html"], "/Prefs/Other.html"; child_path_is $menu, [scheme => "http://example.com"], "http://example.com"; my $tools = child_path_is $menu, [tools => "/Tools/"], "/Tools/"; child_path_is $tools, [myday => "MyDay.html"], "/Tools/MyDay.html"; child_path_is $tools, [activity => "/Activity.html"], "/Activity.html"; my $ext = child_path_is $tools, [external => "http://example.com"], "http://example.com"; child_path_is $ext, [wiki => "wiki/"], "http://example.com/wiki/"; # Pathological case of multiplying slashes my $home = child_path_is $menu, [home => "/"], "/"; child_path_is $home, [slash => "/"], "/"; child_path_is $home, [empty => ""], "/"; sub order_ok($$;$) { my ($menu, $expected, $name) = @_; my @children = $menu->children; is scalar @children, scalar @$expected, "correct number of children"; is_deeply [map { $_->key } @children], $expected, $name; my $last_child = shift @children; # first child's sort doesn't matter for (@children) { ok $_->sort_order > $last_child->sort_order, sprintf "%s order higher than %s's", $_->key, $last_child->key; $last_child = $_; } } $menu = RT::Interface::Web::Menu->new; ok $menu->child("foo", title => "foo"), "added child foo"; order_ok $menu, [qw(foo)], "sorted"; ok $menu->child("foo")->add_after("bar", title => "bar"), "added child bar after foo"; order_ok $menu, [qw(foo bar)], "sorted after"; ok $menu->child("bar")->add_before("baz", title => "baz"), "added child baz before bar"; order_ok $menu, [qw(foo baz bar)], "sorted before (in between)"; ok $menu->child("bat", title => "bat", sort_order => 2.2), "added child bat between baz and bar"; order_ok $menu, [qw(foo baz bat bar)], "sorted between manually"; ok $menu->child("bat")->add_before("pre", title => "pre"), "added child pre before bat"; order_ok $menu, [qw(foo baz pre bat bar)], "sorted between (before)"; ok $menu->child("bat")->add_after("post", title => "post"), "added child post after bat"; order_ok $menu, [qw(foo baz pre bat post bar)], "sorted between (after)"; done_testing; rt-4.4.2/t/api/template-parsing.t0000664000175000017500000001737113131430353016520 0ustar vagrantvagrantuse strict; use warnings; use RT; use RT::Test tests => undef; use Test::Warn; my $queue = RT::Queue->new(RT->SystemUser); $queue->Load("General"); my $ticket_cf = RT::CustomField->new(RT->SystemUser); $ticket_cf->Create( Name => 'Department', Queue => '0', Type => 'FreeformSingle', ); my $txn_cf = RT::CustomField->new(RT->SystemUser); $txn_cf->Create( Name => 'Category', LookupType => RT::Transaction->CustomFieldLookupType, Type => 'FreeformSingle', ); $txn_cf->AddToObject($queue); my $ticket = RT::Ticket->new(RT->SystemUser); my ($id, $msg) = $ticket->Create( Subject => "template testing", Queue => "General", Owner => 'root@localhost', Requestor => ["dom\@example.com"], "CustomField-" . $txn_cf->id => "Special", ); ok($id, "Created ticket: $msg"); my $txn = $ticket->Transactions->First; $ticket->AddCustomFieldValue( Field => 'Department', Value => 'Coolio', ); TemplateTest( Content => "\ntest", PerlOutput => "test", SimpleOutput => "test", ); TemplateTest( Content => "\ntest { 5 * 5 }", PerlOutput => "test 25", SimpleOutput => "test { 5 * 5 }", ); TemplateTest( Content => "\ntest { \$Requestor }", PerlOutput => "test dom\@example.com", SimpleOutput => "test dom\@example.com", ); TemplateTest( Content => "\ntest { \$TicketSubject }", PerlOutput => "test ", SimpleOutput => "test template testing", ); SimpleTemplateTest( Content => "\ntest { \$TicketQueueId }", Output => "test 1", ); SimpleTemplateTest( Content => "\ntest { \$TicketQueueName }", Output => "test General", ); SimpleTemplateTest( Content => "\ntest { \$TicketOwnerId }", Output => "test 14", ); SimpleTemplateTest( Content => "\ntest { \$TicketOwnerName }", Output => "test root", ); SimpleTemplateTest( Content => "\ntest { \$TicketOwnerEmailAddress }", Output => "test root\@localhost", ); SimpleTemplateTest( Content => "\ntest { \$TicketStatus }", Output => "test new", ); SimpleTemplateTest( Content => "\ntest #{ \$TicketId }", Output => "test #" . $ticket->id, ); SimpleTemplateTest( Content => "\ntest { \$TicketCFDepartment }", Output => "test Coolio", ); SimpleTemplateTest( Content => "\ntest #{ \$TransactionId }", Output => "test #" . $txn->id, ); SimpleTemplateTest( Content => "\ntest { \$TransactionType }", Output => "test Create", ); SimpleTemplateTest( Content => "\ntest { \$TransactionCFCategory }", Output => "test Special", ); SimpleTemplateTest( Content => "\ntest { \$TicketDelete }", Output => "test { \$TicketDelete }", ); SimpleTemplateTest( Content => "\ntest { \$Nonexistent }", Output => "test { \$Nonexistent }", ); warning_like { TemplateTest( Content => "\ntest { \$Ticket->Nonexistent }", PerlOutput => undef, SimpleOutput => "test { \$Ticket->Nonexistent }", ); } qr/RT::Ticket::Nonexistent Unimplemented/; warning_like { TemplateTest( Content => "\ntest { \$Nonexistent->Nonexistent }", PerlOutput => undef, SimpleOutput => "test { \$Nonexistent->Nonexistent }", ); } qr/Can't call method "Nonexistent" on an undefined value/; TemplateTest( Content => "\ntest { \$Ticket->OwnerObj->Name }", PerlOutput => "test root", SimpleOutput => "test { \$Ticket->OwnerObj->Name }", ); warning_like { TemplateTest( Content => "\ntest { *!( }", SyntaxError => 1, PerlOutput => undef, SimpleOutput => "test { *!( }", ); } qr/Template parsing error: syntax error/; warning_like { TemplateTest( Content => "\ntest { \$rtname ", SyntaxError => 1, PerlOutput => undef, SimpleOutput => undef, ); } qr/Template parsing error in Test-\d+ \(#\d+\): End of data inside program text/; is($ticket->Status, 'new', "test setup"); SimpleTemplateTest( Content => "\ntest { \$Ticket->SetStatus('resolved') }", Output => "test { \$Ticket->SetStatus('resolved') }", ); is($ticket->Status, 'new', "simple templates can't call ->SetStatus"); note "test arguments passing"; { PerlTemplateTest( Content => "\ntest { \$Nonexistent }", Output => "test ", ); PerlTemplateTest( Content => "\ntest { \$Nonexistent }", Arguments => { Nonexistent => 'foo' }, Output => "test foo", ); PerlTemplateTest( Content => "\n".'array: { join ", ", @array }', Arguments => { array => [qw(foo bar)] }, Output => "array: foo, bar", ); PerlTemplateTest( Content => "\n".'hash: { join ", ", map "$_ => $hash{$_}", sort keys %hash }', Arguments => { hash => {1 => 2, a => 'b'} }, Output => "hash: 1 => 2, a => b", ); PerlTemplateTest( Content => "\n".'code: { code() }', Arguments => { code => sub { "baz" } }, Output => "code: baz", ); } # Make sure changing the template's type works { my $template = RT::Template->new(RT->SystemUser); $template->Create( Name => "type chameleon", Type => "Perl", Content => "\ntest { 10 * 7 }", ); ok($id = $template->id, "Created template"); $template->Parse; is($template->MIMEObj->stringify_body, "test 70", "Perl output"); $template = RT::Template->new(RT->SystemUser); $template->Load($id); is($template->Name, "type chameleon"); $template->SetType('Simple'); $template->Parse; is($template->MIMEObj->stringify_body, "test { 10 * 7 }", "Simple output"); $template = RT::Template->new(RT->SystemUser); $template->Load($id); is($template->Name, "type chameleon"); $template->SetType('Perl'); $template->Parse; is($template->MIMEObj->stringify_body, "test 70", "Perl output"); } undef $ticket; done_testing; my $counter = 0; sub IndividualTemplateTest { local $Test::Builder::Level = $Test::Builder::Level + 1; my %args = ( Name => "Test-" . ++$counter, Type => "Perl", @_, ); my $t = RT::Template->new(RT->SystemUser); $t->Create( Name => $args{Name}, Type => $args{Type}, Content => $args{Content}, ); ok($t->id, "Created $args{Type} template"); is($t->Name, $args{Name}, "$args{Type} template name"); is($t->Content, $args{Content}, "$args{Type} content"); is($t->Type, $args{Type}, "template type"); # this should never blow up! my ($ok, $msg) = $t->CompileCheck; # we don't need to syntax check simple templates since if you mess them up # it's safe to just use the input directly as the template's output if ($args{SyntaxError} && $args{Type} eq 'Perl') { ok(!$ok, "got a syntax error"); } else { ok($ok, $msg); } ($ok, $msg) = $t->Parse( $args{'Arguments'} ? ( %{ $args{'Arguments'} } ) : (TicketObj => $ticket, TransactionObj => $txn ) , ); if (defined $args{Output}) { ok($ok, $msg); is($t->MIMEObj->stringify_body, $args{Output}, "$args{Type} template's output"); } else { ok(!$ok, "expected a failure"); } } sub TemplateTest { local $Test::Builder::Level = $Test::Builder::Level + 1; my %args = @_; for my $type ('Perl', 'Simple') { IndividualTemplateTest( %args, Type => $type, Output => $args{$type . 'Output'}, ); } } sub SimpleTemplateTest { local $Test::Builder::Level = $Test::Builder::Level + 1; IndividualTemplateTest( @_, Type => 'Simple' ); } sub PerlTemplateTest { local $Test::Builder::Level = $Test::Builder::Level + 1; IndividualTemplateTest( @_, Type => 'Perl' ); } rt-4.4.2/t/api/savedsearch.t0000664000175000017500000001720613131430353015531 0ustar vagrantvagrantuse strict; use warnings; BEGIN { $ENV{'LANG'} = 'C' } use RT::Test tests => 27; use_ok('RT::SavedSearch'); use_ok('RT::SavedSearches'); use Test::Warn; # Set up some infrastructure. These calls are tested elsewhere. my $searchuser = RT::User->new(RT->SystemUser); my ($ret, $msg) = $searchuser->Create(Name => 'searchuser'.$$, Privileged => 1, EmailAddress => "searchuser\@p$$.example.com", RealName => 'Search user'); ok($ret, "created searchuser: $msg"); $searchuser->PrincipalObj->GrantRight(Right => 'LoadSavedSearch'); $searchuser->PrincipalObj->GrantRight(Right => 'CreateSavedSearch'); $searchuser->PrincipalObj->GrantRight(Right => 'ModifySelf'); # This is the group whose searches searchuser should be able to see. my $ingroup = RT::Group->new(RT->SystemUser); $ingroup->CreateUserDefinedGroup(Name => 'searchgroup1'.$$); $ingroup->AddMember($searchuser->Id); $searchuser->PrincipalObj->GrantRight(Right => 'EditSavedSearches', Object => $ingroup); $searchuser->PrincipalObj->GrantRight(Right => 'ShowSavedSearches', Object => $ingroup); # This is the group whose searches searchuser should not be able to see. my $outgroup = RT::Group->new(RT->SystemUser); $outgroup->CreateUserDefinedGroup(Name => 'searchgroup2'.$$); $outgroup->AddMember(RT->SystemUser->Id); my $queue = RT::Queue->new(RT->SystemUser); $queue->Create(Name => 'SearchQueue'.$$); $searchuser->PrincipalObj->GrantRight(Right => 'SeeQueue', Object => $queue); $searchuser->PrincipalObj->GrantRight(Right => 'ShowTicket', Object => $queue); $searchuser->PrincipalObj->GrantRight(Right => 'OwnTicket', Object => $queue); my $ticket = RT::Ticket->new(RT->SystemUser); $ticket->Create(Queue => $queue->Id, Requestor => [ $searchuser->Name ], Owner => $searchuser, Subject => 'saved search test'); # Now start the search madness. my $curruser = RT::CurrentUser->new($searchuser); my $format = '\' __id__/TITLE:#\', \'__Subject__/TITLE:Subject\', \'__Status__\', \'__QueueName__\', \'__OwnerName__\', \'__Priority__\', \'__NEWLINE__\', \'\', \'__Requestors__\', \'__CreatedRelative__\', \'__ToldRelative__\', \'__LastUpdatedRelative__\', \'__TimeLeft__\''; my $mysearch = RT::SavedSearch->new($curruser); ($ret, $msg) = $mysearch->Save(Privacy => 'RT::User-' . $searchuser->Id, Type => 'Ticket', Name => 'owned by me', SearchParams => {'Format' => $format, 'Query' => "Owner = '" . $searchuser->Name . "'"}); ok($ret, "mysearch was created"); my $groupsearch = RT::SavedSearch->new($curruser); ($ret, $msg) = $groupsearch->Save(Privacy => 'RT::Group-' . $ingroup->Id, Type => 'Ticket', Name => 'search queue', SearchParams => {'Format' => $format, 'Query' => "Queue = '" . $queue->Name . "'"}); ok($ret, "groupsearch was created"); my $othersearch = RT::SavedSearch->new($curruser); ($ret, $msg) = $othersearch->Save(Privacy => 'RT::Group-' . $outgroup->Id, Type => 'Ticket', Name => 'searchuser requested', SearchParams => {'Format' => $format, 'Query' => "Requestor.Name LIKE 'search'"}); ok(!$ret, "othersearch NOT created"); like($msg, qr/Failed to load object for/, "...for the right reason"); $othersearch = RT::SavedSearch->new(RT->SystemUser); ($ret, $msg) = $othersearch->Save(Privacy => 'RT::Group-' . $outgroup->Id, Type => 'Ticket', Name => 'searchuser requested', SearchParams => {'Format' => $format, 'Query' => "Requestor.Name LIKE 'search'"}); ok($ret, "othersearch created by systemuser"); # Now try to load some searches. # This should work. my $loadedsearch1 = RT::SavedSearch->new($curruser); $loadedsearch1->Load('RT::User-'.$curruser->Id, $mysearch->Id); is($loadedsearch1->Id, $mysearch->Id, "Loaded mysearch"); like($loadedsearch1->GetParameter('Query'), qr/Owner/, "Retrieved query of mysearch"); # Check through the other accessor methods. is($loadedsearch1->Privacy, 'RT::User-' . $curruser->Id, "Privacy of mysearch correct"); is($loadedsearch1->Name, 'owned by me', "Name of mysearch correct"); is($loadedsearch1->Type, 'Ticket', "Type of mysearch correct"); # See if it can be used to search for tickets. my $tickets = RT::Tickets->new($curruser); $tickets->FromSQL($loadedsearch1->GetParameter('Query')); is($tickets->Count, 1, "Found a ticket"); # This should fail -- wrong object. # my $loadedsearch2 = RT::SavedSearch->new($curruser); # $loadedsearch2->Load('RT::User-'.$curruser->Id, $groupsearch->Id); # isnt($loadedsearch2->Id, $othersearch->Id, "Didn't load groupsearch as mine"); # ...but this should succeed. my $loadedsearch3 = RT::SavedSearch->new($curruser); $loadedsearch3->Load('RT::Group-'.$ingroup->Id, $groupsearch->Id); is($loadedsearch3->Id, $groupsearch->Id, "Loaded groupsearch"); like($loadedsearch3->GetParameter('Query'), qr/Queue/, "Retrieved query of groupsearch"); # Can it get tickets? $tickets = RT::Tickets->new($curruser); $tickets->FromSQL($loadedsearch3->GetParameter('Query')); is($tickets->Count, 1, "Found a ticket"); # This should fail -- no permission. my $loadedsearch4 = RT::SavedSearch->new($curruser); warning_like { $loadedsearch4->Load($othersearch->Privacy, $othersearch->Id); } qr/Could not load object RT::Group-\d+ when loading search/; isnt($loadedsearch4->Id, $othersearch->Id, "Did not load othersearch"); # Try to update an existing search. $loadedsearch1->Update( SearchParams => {'Format' => $format, 'Query' => "Queue = '" . $queue->Name . "'" } ); like($loadedsearch1->GetParameter('Query'), qr/Queue/, "Updated mysearch parameter"); is($loadedsearch1->Type, 'Ticket', "mysearch is still for tickets"); is($loadedsearch1->Privacy, 'RT::User-'.$curruser->Id, "mysearch still belongs to searchuser"); like($mysearch->GetParameter('Query'), qr/Queue/, "other mysearch object updated"); ## Right ho. Test the pseudo-collection object. my $genericsearch = RT::SavedSearch->new($curruser); $genericsearch->Save(Name => 'generic search', Type => 'all', SearchParams => {'Query' => "Queue = 'General'"}); my $ticketsearches = RT::SavedSearches->new($curruser); $ticketsearches->LimitToPrivacy('RT::User-'.$curruser->Id, 'Ticket'); is($ticketsearches->Count, 1, "Found searchuser's ticket searches"); my $allsearches = RT::SavedSearches->new($curruser); $allsearches->LimitToPrivacy('RT::User-'.$curruser->Id); is($allsearches->Count, 2, "Found all searchuser's searches"); # Delete a search. ($ret, $msg) = $genericsearch->Delete; ok($ret, "Deleted genericsearch"); $allsearches->LimitToPrivacy('RT::User-'.$curruser->Id); is($allsearches->Count, 1, "Found all searchuser's searches after deletion"); rt-4.4.2/t/api/scrip.t0000664000175000017500000002203113131430353014351 0ustar vagrantvagrant use strict; use warnings; use RT::Test; my $queue = RT::Test->load_or_create_queue( Name => 'General' ); ok $queue && $queue->id, 'loaded or created queue'; note 'basic scrips functionality test: create+execute'; { my $s1 = RT::Scrip->new(RT->SystemUser); my ($val, $msg) = $s1->Create( Queue => $queue->Id, ScripAction => 'User Defined', ScripCondition => 'User Defined', CustomIsApplicableCode => '$self->TicketObj->Subject =~ /fire/? 1 : 0', CustomPrepareCode => 'return 1', CustomCommitCode => '$self->TicketObj->SetPriority("87");', Template => 'Blank' ); ok($val,$msg); my $ticket = RT::Ticket->new(RT->SystemUser); my ($tv,$ttv,$tm) = $ticket->Create( Queue => $queue->Id, Subject => "hair on fire", ); ok($tv, $tm); is ($ticket->Priority , '87', "Ticket priority is set right"); my $ticket2 = RT::Ticket->new(RT->SystemUser); my ($t2v,$t2tv,$t2m) = $ticket2->Create( Queue => $queue->Id, Subject => "hair in water", ); ok($t2v, $t2m); isnt ($ticket2->Priority , '87', "Ticket priority is set right"); } note 'modify properties of a scrip'; { my $scrip = RT::Scrip->new($RT::SystemUser); my ( $val, $msg ) = $scrip->Create( ScripCondition => 'On Comment', ScripAction => 'Notify Owner', ); ok( !$val, "missing template: $msg" ); ( $val, $msg ) = $scrip->Create( ScripCondition => 'On Comment', ScripAction => 'Notify Owner', Template => 'not exists', ); ok( !$val, "invalid template: $msg" ); ( $val, $msg ) = $scrip->Create( ScripAction => 'Notify Owner', Template => 'Blank', ); ok( !$val, "missing condition: $msg" ); ( $val, $msg ) = $scrip->Create( ScripCondition => 'not exists', ScripAction => 'Notify Owner', Template => 'Blank', ); ok( !$val, "invalid condition: $msg" ); ( $val, $msg ) = $scrip->Create( ScripCondition => 'On Comment', Template => 'Blank', ); ok( !$val, "missing action: $msg" ); ( $val, $msg ) = $scrip->Create( ScripCondition => 'On Comment', ScripAction => 'not exists', Template => 'Blank', ); ok( !$val, "invalid action: $msg" ); ( $val, $msg ) = $scrip->Create( ScripAction => 'Notify Owner', ScripCondition => 'On Comment', Template => 'Blank', ); ok( $val, "created scrip: $msg" ); $scrip->Load($val); ok( $scrip->id, 'loaded scrip ' . $scrip->id ); ( $val, $msg ) = $scrip->SetScripCondition(); ok( !$val, "missing condition: $msg" ); ( $val, $msg ) = $scrip->SetScripCondition('not exists'); ok( !$val, "invalid condition: $msg" ); ( $val, $msg ) = $scrip->SetScripCondition('On Correspond'); ok( $val, "updated condition to 'On Correspond': $msg" ); ( $val, $msg ) = $scrip->SetScripAction(); ok( !$val, "missing action: $msg" ); ( $val, $msg ) = $scrip->SetScripAction('not exists'); ok( !$val, "invalid action: $msg" ); ( $val, $msg ) = $scrip->SetScripAction('Notify AdminCcs'); ok( $val, "updated action to 'Notify AdminCcs': $msg" ); ( $val, $msg ) = $scrip->SetTemplate(); ok( !$val, "missing template $msg" ); ( $val, $msg ) = $scrip->SetTemplate('not exists'); ok( !$val, "invalid template $msg" ); ( $val, $msg ) = $scrip->SetTemplate('Forward'); ok( $val, "updated template to 'Forward': $msg" ); ok( $scrip->Delete, 'delete the scrip' ); } my $queue_B = RT::Test->load_or_create_queue( Name => 'B' ); ok $queue_B && $queue_B->id, 'loaded or created queue'; note 'check creation errors vs. templates'; { my $scrip = RT::Scrip->new(RT->SystemUser); my ($status, $msg) = $scrip->Create( Queue => $queue->id, ScripAction => 'User Defined', ScripCondition => 'User Defined', Template => 'not exist', ); ok(!$status, "couldn't create scrip, not existing template"); ($status, $msg) = $scrip->Create( ScripAction => 'User Defined', ScripCondition => 'User Defined', Template => 'not exist', ); ok(!$status, "couldn't create scrip, not existing template"); ($status, $msg) = $scrip->Create( Queue => $queue->id, ScripAction => 'User Defined', ScripCondition => 'User Defined', Template => 54321, ); ok(!$status, "couldn't create scrip, not existing template"); ($status, $msg) = $scrip->Create( ScripAction => 'User Defined', ScripCondition => 'User Defined', Template => 54321, ); ok(!$status, "couldn't create scrip, not existing template"); my $template = RT::Template->new( RT->SystemUser ); ($status, $msg) = $template->Create( Queue => $queue->id, Name => 'bar' ); ok $status, 'created a template'; ($status, $msg) = $scrip->Create( ScripAction => 'User Defined', ScripCondition => 'User Defined', Template => $template->id, ); ok(!$status, "couldn't create scrip, wrong template"); ($status, $msg) = $scrip->Create( Queue => $queue_B->id, ScripAction => 'User Defined', ScripCondition => 'User Defined', Template => $template->id, ); ok(!$status, "couldn't create scrip, wrong template"); } note 'check applications vs. templates'; { my $template = RT::Template->new( RT->SystemUser ); my ($status, $msg) = $template->Create( Queue => $queue->id, Name => 'foo' ); ok $status, 'created a template'; my $scrip = RT::Scrip->new(RT->SystemUser); ($status, $msg) = $scrip->Create( Queue => $queue->Id, ScripAction => 'User Defined', ScripCondition => 'User Defined', Template => 'foo', CustomIsApplicableCode => "1;", CustomPrepareCode => "1;", CustomCommitCode => "1;", ); ok($status, 'created a scrip') or diag "error: $msg"; RT::Test->object_scrips_are($scrip, [$queue], [0, $queue_B]); ($status, $msg) = $scrip->AddToObject( $queue_B->id ); ok(!$status, $msg); RT::Test->object_scrips_are($scrip, [$queue], [0, $queue_B]); my $obj_scrip = RT::ObjectScrip->new( RT->SystemUser ); ok($obj_scrip->LoadByCols( Scrip => $scrip->id, ObjectId => $queue->id )); is($obj_scrip->Stage, 'TransactionCreate'); is($obj_scrip->FriendlyStage, 'Normal'); $template = RT::Template->new( RT->SystemUser ); ($status, $msg) = $template->Create( Queue => $queue_B->id, Name => 'foo' ); ok $status, 'created a template'; ($status, $msg) = $scrip->AddToObject( $queue_B->id ); ok($status, 'added scrip to another queue'); RT::Test->object_scrips_are($scrip, [$queue, $queue_B], [0]); ($status, $msg) = $scrip->RemoveFromObject( $queue_B->id ); ok($status, 'removed scrip from queue'); ($status, $msg) = $template->Delete; ok $status, 'deleted template foo in queue B'; ($status, $msg) = $scrip->AddToObject( $queue_B->id ); ok(!$status, $msg); RT::Test->object_scrips_are($scrip, [$queue], [0, $queue_B]); ($status, $msg) = $template->Create( Queue => 0, Name => 'foo' ); ok $status, 'created a global template'; ($status, $msg) = $scrip->AddToObject( $queue_B->id ); ok($status, 'added scrip'); RT::Test->object_scrips_are($scrip, [$queue, $queue_B], [0]); } note 'basic check for disabling scrips'; { my $scrip = RT::Scrip->new(RT->SystemUser); my ($status, $msg) = $scrip->Create( Queue => $queue->id, ScripCondition => 'On Create', ScripAction => 'User Defined', CustomPrepareCode => 'return 1', CustomCommitCode => '$self->TicketObj->SetPriority("87"); return 1', Template => 'Blank' ); ok($status, "created scrip"); is($scrip->Disabled, 0, "not disabled"); { my $ticket = RT::Ticket->new(RT->SystemUser); my ($tid, undef, $msg) = $ticket->Create( Queue => $queue->id, Subject => "test", ); ok($tid, "created ticket") or diag "error: $msg"; is ($ticket->Priority , '87', "Ticket priority is set right"); } ($status,$msg) = $scrip->SetDisabled(1); is($scrip->Disabled, 1, "disabled"); { my $ticket = RT::Ticket->new(RT->SystemUser); my ($tid, undef, $msg) = $ticket->Create( Queue => $queue->id, Subject => "test", ); ok($tid, "created ticket") or diag "error: $msg"; isnt ($ticket->Priority , '87', "Ticket priority is set right"); } is($scrip->FriendlyStage('TransactionCreate'), 'Normal', 'Correct stage wording for TransactionCreate'); is($scrip->FriendlyStage('TransactionBatch'), 'Batch', 'Correct stage wording for TransactionBatch'); RT->Config->Set('UseTransactionBatch', 0); is($scrip->FriendlyStage('TransactionBatch'), 'Batch (disabled by config)', 'Correct stage wording for TransactionBatch with UseTransactionBatch disabled'); } rt-4.4.2/t/api/action-createtickets.t0000664000175000017500000001421313131430353017341 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => 54; { ok (require RT::Action::CreateTickets); use_ok('RT::Scrip'); use_ok('RT::Template'); use_ok('RT::ScripAction'); use_ok('RT::ScripCondition'); use_ok('RT::Ticket'); use_ok('RT::CustomField'); my $global_cf = RT::CustomField->new($RT::SystemUser); my ($id, $msg)= $global_cf->Create( Name => 'GlobalCF', Queue => '0', SortOrder => '1', Description => 'A Testing custom field', Type=> 'SelectSingle'); ok($id, 'Global custom field correctly created'); my $approvalsq = RT::Queue->new(RT->SystemUser); $approvalsq->Create(Name => 'Approvals'); ok ($approvalsq->Id, "Created Approvals test queue"); my $queue_cf = RT::CustomField->new($RT::SystemUser); ($id) = $queue_cf->Create( Name => 'QueueCF', Queue => $approvalsq->Id, SortOrder => 2, Description => 'A testing queue-specific custom field', Type => 'SelectSingle', ); ok($id, 'Queue-specific custom field correctly created'); my $approvals = '===Create-Ticket: approval Queue: Approvals Type: approval AdminCc: {join ("\nAdminCc: ",@admins) } Depended-On-By: {$Tickets{"TOP"}->Id} Refers-To: TOP CustomField-GlobalCF: A Value CustomField-QueueCF: Another Value Subject: Approval for ticket: {$Tickets{"TOP"}->Id} - {$Tickets{"TOP"}->Subject} Due: {time + 86400} Content-Type: text/plain Content: Your approval is requested for the ticket {$Tickets{"TOP"}->Id}: {$Tickets{"TOP"}->Subject} Blah Blah ENDOFCONTENT ===Create-Ticket: two Subject: Manager approval. Depended-On-By: approval Queue: Approvals Content-Type: text/plain Content: Your minion approved ticket {$Tickets{"TOP"}->Id}. you ok with that? ENDOFCONTENT '; like ($approvals , qr/Content/, "Read in the approvals template"); my $apptemp = RT::Template->new(RT->SystemUser); $apptemp->Create( Content => $approvals, Name => "Approvals", Queue => "0"); ok ($apptemp->Id); my $q = RT::Queue->new(RT->SystemUser); $q->Create(Name => 'WorkflowTest'); ok ($q->Id, "Created workflow test queue"); my $scrip = RT::Scrip->new(RT->SystemUser); my ($sval, $smsg) =$scrip->Create( ScripCondition => 'On Transaction', ScripAction => 'Create Tickets', Template => 'Approvals', Queue => $q->Id); ok ($sval, $smsg); ok ($scrip->Id, "Created the scrip"); ok ($scrip->TemplateObj->Id, "Created the scrip template"); ok ($scrip->ConditionObj->Id, "Created the scrip condition"); ok ($scrip->ActionObj->Id, "Created the scrip action"); my $t = RT::Ticket->new(RT->SystemUser); my($tid, $ttrans, $tmsg) = $t->Create(Subject => "Sample workflow test", Owner => "root", Queue => $q->Id); ok ($tid,$tmsg); my $deps = $t->DependsOn; is ($deps->Count, 1, "The ticket we created depends on one other ticket"); my $dependson= $deps->First->TargetObj; ok ($dependson->Id, "It depends on a real ticket"); is ($dependson->FirstCustomFieldValue('GlobalCF'), 'A Value', 'global custom field was set'); is ($dependson->FirstCustomFieldValue('QueueCF'), 'Another Value', 'queue custom field was set'); unlike ($dependson->Subject, qr/\{/, "The subject doesn't have braces in it. that means we're interpreting expressions"); is ($t->ReferredToBy->Count,1, "It's only referred to by one other ticket"); is ($t->ReferredToBy->First->BaseObj->Id,$t->DependsOn->First->TargetObj->Id, "The same ticket that depends on it refers to it."); use RT::Action::CreateTickets; my $action = RT::Action::CreateTickets->new( CurrentUser => RT->SystemUser); # comma-delimited templates my $commas = <<"EOF"; id,Queue,Subject,Owner,Content ticket1,General,"foo, bar",root,blah ticket2,General,foo bar,root,blah ticket3,General,foo' bar,root,blah'boo ticket4,General,foo' bar,,blah'boo EOF # Comma delimited templates with missing data my $sparse_commas = <<"EOF"; id,Queue,Subject,Owner,Requestor ticket14,General,,,bobby ticket15,General,,,tommy ticket16,General,,suzie,tommy ticket17,General,Foo "bar" baz,suzie,tommy ticket18,General,'Foo "bar" baz',suzie,tommy ticket19,General,'Foo bar' baz,suzie,tommy EOF # tab-delimited templates my $tabs = <<"EOF"; id\tQueue\tSubject\tOwner\tContent ticket10\tGeneral\t"foo' bar"\troot\tblah' ticket11\tGeneral\tfoo, bar\troot\tblah ticket12\tGeneral\tfoo' bar\troot\tblah'boo ticket13\tGeneral\tfoo' bar\t\tblah'boo EOF my %expected; $expected{ticket1} = <Parse(Content =>$commas); $action->Parse(Content =>$sparse_commas); $action->Parse(Content => $tabs); my %got; foreach (@{ $action->{'create_tickets'} }) { $got{$_} = $action->{'templates'}->{$_}; } foreach my $id ( sort keys %expected ) { ok(exists($got{"create-$id"}), "template exists for $id"); is($got{"create-$id"}, $expected{$id}, "template is correct for $id"); } } rt-4.4.2/t/api/safe-run-child-util.t0000664000175000017500000001161013131430353017006 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 35; use Test::Warn; use RT::Util qw(safe_run_child); use POSIX qw//; is_handle_ok(); { my $res = safe_run_child { return 1 }; is $res, 1, "correct return value"; is_handle_ok(); } # test context { my $context; my $sub = sub { if ( wantarray ) { $context = 'array'; return 1, 2, 3; } elsif ( defined wantarray ) { $context = 'scalar'; return 'foo'; } elsif ( !wantarray ) { $context = 'void'; return; } }; is_deeply [ safe_run_child { $sub->(@_) } ], [1, 2, 3]; is $context, 'array'; is_handle_ok(); is scalar safe_run_child {$sub->(@_)}, 'foo'; is $context, 'scalar'; is_handle_ok(); safe_run_child {$sub->(@_)}; is $context, 'void'; is_handle_ok(); } # fork+child returns { my $res = safe_run_child { if (fork) { wait; return 'parent' } open my $fh, '>', RT::Test->temp_directory .'/tttt'; print $fh "child"; close $fh; return 'child'; }; is $res, 'parent', "correct return value"; is( RT::Test->file_content([RT::Test->temp_directory, 'tttt'], unlink => 1 ), 'child', 'correct file content', ); is_handle_ok(); } # fork+child dies { warning_like { my $res = safe_run_child { if (fork) { wait; return 'parent' } open my $fh, '>', RT::Test->temp_directory .'/tttt'; print $fh "child"; close $fh; die 'child'; }; is $res, 'parent', "correct return value"; is( RT::Test->file_content([RT::Test->temp_directory, 'tttt'], unlink => 1 ), 'child', 'correct file content', ); } qr/System Error: child/; is_handle_ok(); } # fork+child exits { my $res = safe_run_child { if (fork) { wait; return 'parent' } open my $fh, '>', RT::Test->temp_directory .'/tttt'; print $fh "child"; close $fh; exit 0; }; is $res, 'parent', "correct return value"; is( RT::Test->file_content([RT::Test->temp_directory, 'tttt'], unlink => 1 ), 'child', 'correct file content', ); is_handle_ok(); } # parent dies { my $res = eval { safe_run_child { die 'parent'; } }; is $res, undef, "correct return value"; like $@, qr'System Error: parent', "correct error message value"; is_handle_ok(); } # fork+exec { my $script = RT::Test->temp_directory .'/true.pl'; open my $fh, '>', $script; print $fh <', '$script.res'; print \$fh "child"; close \$fh; exit 0; END close $fh; chmod 0777, $script; my $res = safe_run_child { if (fork) { wait; return 'parent' } exec $script; }; is $res, 'parent', "correct return value"; is( RT::Test->file_content([$script .'.res'], unlink => 1 ), 'child', 'correct file content', ); is_handle_ok(); } # fork+parent that doesn't wait() { require Time::HiRes; my $start = Time::HiRes::time(); my $pid; # Set up a poor man's semaphore my $all_set = 0; $SIG{USR1} = sub {$all_set++}; my $res = safe_run_child { if ($pid = fork) { return 'parent' } open my $fh, '>', RT::Test->temp_directory .'/first'; print $fh "child"; close $fh; # Signal that the first file is now all set; we need to do this # to avoid a race condition kill POSIX::SIGUSR1(), getppid(); sleep 5; open $fh, '>', RT::Test->temp_directory .'/second'; print $fh "child"; close $fh; exit 0; }; ok( Time::HiRes::time() - $start < 5, "Didn't wait until child finished" ); # Wait for up to 3 seconds to get signaled that the child has made # the file (the USR1 will break out of the sleep()). This _should_ # be immediate, but there's a race between the parent and child # here, since there's no wait()'ing. There's still a tiny race # where the signal could come in betwene the $all_set check and the # sleep, but that just means we sleep for 3 seconds uselessly. sleep 3 unless $all_set; is $res, 'parent', "correct return value"; is( RT::Test->file_content([RT::Test->temp_directory, 'first'], unlink => 1 ), 'child', 'correct file content', ); ok( not(-f RT::Test->temp_directory.'/second'), "Second file does not exist yet"); is_handle_ok(); ok(waitpid($pid,0), "Waited until child finished to reap"); is( RT::Test->file_content([RT::Test->temp_directory, 'second'], unlink => 1 ), 'child', 'correct file content', ); is_handle_ok(); } sub is_handle_ok { local $Test::Builder::Level = $Test::Builder::Level + 1; my $test = $RT::Handle->dbh->selectall_arrayref( "SELECT id FROM Users WHERE Name = 'Nobody'" ); ok $test && $test->[0][0], "selected, DB is there"; } rt-4.4.2/t/api/password-types.t0000664000175000017500000000521213131430353016237 0ustar vagrantvagrantuse strict; use warnings; use RT::Test; use Digest::MD5; my $default = "bcrypt"; my $root = RT::User->new(RT->SystemUser); $root->Load("root"); # bcrypt (default) my $old = $root->__Value("Password"); like($old, qr/^\!$default\!/, "Stored as salted $default"); ok($root->IsPassword("password")); is($root->__Value("Password"), $old, "Unchanged after password check"); # bcrypt (smaller number of rounds) my $rounds = RT->Config->Get("BcryptCost"); my $salt = Crypt::Eksblowfish::Bcrypt::en_base64("a"x16); $root->_Set( Field => "Password", Value => RT::User->_GeneratePassword_bcrypt("smaller", 6, $salt) ); like($root->__Value("Password"), qr/^\!$default\!06\!/, "Stored with a smaller number of rounds"); ok($root->IsPassword("smaller"), "Smaller number of bcrypt rounds works"); like($root->__Value("Password"), qr/^\!$default\!$rounds\!/, "And is now upgraded to $rounds rounds"); # Salted SHA-512, one round $root->_Set( Field => "Password", Value => RT::User->_GeneratePassword_sha512("other", "salt") ); ok($root->IsPassword("other"), "SHA-512 password works"); like($root->__Value("Password"), qr/^\!$default\!/, "And is now upgraded to salted $default"); # Crypt $root->_Set( Field => "Password", Value => crypt("something", "salt")); ok($root->IsPassword("something"), "crypt()ed password works"); like($root->__Value("Password"), qr/^\!$default\!/, "And is now upgraded to salted $default"); # MD5, hex $root->_Set( Field => "Password", Value => Digest::MD5::md5_hex("changed")); ok($root->IsPassword("changed"), "Unsalted MD5 hex works"); like($root->__Value("Password"), qr/^\!$default\!/, "And is now upgraded to salted $default"); # MD5, base64 $root->_Set( Field => "Password", Value => Digest::MD5::md5_base64("new")); ok($root->IsPassword("new"), "Unsalted MD5 base64 works"); like($root->__Value("Password"), qr/^\!$default\!/, "And is now upgraded to salted $default"); # Salted truncated SHA-256 my $trunc = MIME::Base64::encode_base64( "salt" . substr(Digest::SHA::sha256("salt".Digest::MD5::md5("secret")),0,26), "" ); $root->_Set( Field => "Password", Value => $trunc); ok($root->IsPassword("secret"), "Unsalted MD5 base64 works"); like($root->__Value("Password"), qr/^\!$default\!/, "And is now upgraded to salted $default"); # Non-ASCII salted truncated SHA-256 my $non_ascii_trunc = MIME::Base64::encode_base64( "salt" . substr(Digest::SHA::sha256("salt".Digest::MD5::md5("áěšý")),0,26), "" ); $root->_Set( Field => "Password", Value => $non_ascii_trunc); ok($root->IsPassword(Encode::decode("UTF-8", "áěšý")), "Unsalted MD5 base64 works"); like($root->__Value("Password"), qr/^\!$default\!/, "And is now upgraded to salted $default"); rt-4.4.2/t/api/web-config.t0000664000175000017500000001402213131430353015252 0ustar vagrantvagrantuse strict; use warnings; use RT; use RT::Test nodb => 1, tests => 89; sub no_warnings_ok { local $Test::Builder::Level = $Test::Builder::Level + 1; my $option = shift; my $value = shift; my $name = shift; is(warnings_from($option => $value), 0, $name); } sub one_warning_like { local $Test::Builder::Level = $Test::Builder::Level + 1; my $option = shift; my $value = shift; my $regex = shift; my $name = shift; my @w = warnings_from($option => $value); is(@w, 1); like($w[0], $regex, $name); } sub warnings_from { my $option = shift; my $value = shift; my @warnings; local $SIG{__WARN__} = sub { push @warnings, $_[0]; }; RT->Config->Set($option => $value); RT->Config->PostLoadCheck; return @warnings; } # WebPath no_warnings_ok(WebPath => ''); no_warnings_ok(WebPath => '/foo'); no_warnings_ok(WebPath => '/foo/bar'); one_warning_like(WebPath => '/foo/', qr/The WebPath config option requires no trailing slash/); one_warning_like(WebPath => 'foo', qr/The WebPath config option requires a leading slash/); my @w = warnings_from(WebPath => 'foo/'); is(@w, 2); like($w[0], qr/The WebPath config option requires no trailing slash/); like($w[1], qr/The WebPath config option requires a leading slash/); one_warning_like(WebPath => '/foo/bar/', qr/The WebPath config option requires no trailing slash/); one_warning_like(WebPath => 'foo/bar', qr/The WebPath config option requires a leading slash/); @w = warnings_from(WebPath => 'foo/bar/'); is(@w, 2); like($w[0], qr/The WebPath config option requires no trailing slash/); like($w[1], qr/The WebPath config option requires a leading slash/); one_warning_like(WebPath => '/', qr{For the WebPath config option, use the empty string instead of /}); # reinstate a valid WebPath for other tests no_warnings_ok(WebPath => '/rt'); # WebDomain no_warnings_ok(WebDomain => 'example.com'); no_warnings_ok(WebDomain => 'rt.example.com'); no_warnings_ok(WebDomain => 'localhost'); one_warning_like(WebDomain => '', qr{You must set the WebDomain config option}); one_warning_like(WebDomain => 'http://rt.example.com', qr{The WebDomain config option must not contain a scheme \(http://\)}); one_warning_like(WebDomain => 'https://rt.example.com', qr{The WebDomain config option must not contain a scheme \(https://\)}); one_warning_like(WebDomain => 'rt.example.com/path', qr{The WebDomain config option must not contain a path \(/path\)}); one_warning_like(WebDomain => 'rt.example.com/path/more', qr{The WebDomain config option must not contain a path \(/path/more\)}); one_warning_like(WebDomain => 'rt.example.com:80', qr{The WebDomain config option must not contain a port \(80\)}); # reinstate a valid WebDomain for other tests no_warnings_ok(WebDomain => 'rt.example.com'); # WebPort no_warnings_ok(WebDomain => 80); no_warnings_ok(WebDomain => 443); no_warnings_ok(WebDomain => 8888); one_warning_like(WebPort => '', qr{You must set the WebPort config option}); one_warning_like(WebPort => 3.14, qr{The WebPort config option must be an integer}); one_warning_like(WebPort => 'wha?', qr{The WebPort config option must be an integer}); # reinstate a valid WebDomain for other tests no_warnings_ok(WebPort => 443); # WebBaseURL no_warnings_ok(WebBaseURL => 'http://rt.example.com'); no_warnings_ok(WebBaseURL => 'HTTP://rt.example.com', 'uppercase scheme is okay'); no_warnings_ok(WebBaseURL => 'http://rt.example.com:8888', 'nonstandard port is okay'); no_warnings_ok(WebBaseURL => 'https://rt.example.com:8888', 'nonstandard port with https is okay'); one_warning_like(WebBaseURL => '', qr{You must set the WebBaseURL config option}); one_warning_like(WebBaseURL => 'rt.example.com', qr{The WebBaseURL config option must contain a scheme}); one_warning_like(WebBaseURL => 'xtp://rt.example.com', qr{The WebBaseURL config option must contain a scheme \(http or https\)}); one_warning_like(WebBaseURL => 'http://rt.example.com/', qr{The WebBaseURL config option requires no trailing slash}); one_warning_like(WebBaseURL => 'http://rt.example.com/rt', qr{The WebBaseURL config option must not contain a path \(/rt\)}); @w = warnings_from(WebBaseURL => 'http://rt.example.com/rt/'); is(@w, 2); like($w[0], qr{The WebBaseURL config option requires no trailing slash}); like($w[1], qr{The WebBaseURL config option must not contain a path \(/rt/\)}); one_warning_like(WebBaseURL => 'http://rt.example.com/rt/ir', qr{The WebBaseURL config option must not contain a path \(/rt/ir\)}); @w = warnings_from(WebBaseURL => 'http://rt.example.com/rt/ir/'); is(@w, 2); like($w[0], qr{The WebBaseURL config option requires no trailing slash}); like($w[1], qr{The WebBaseURL config option must not contain a path \(/rt/ir/\)}); # reinstate a valid WebBaseURL for other tests no_warnings_ok(WebBaseURL => 'http://rt.example.com'); # WebURL no_warnings_ok(WebURL => 'http://rt.example.com/'); no_warnings_ok(WebURL => 'HTTP://rt.example.com/', 'uppercase scheme is okay'); no_warnings_ok(WebURL => 'http://example.com/rt/'); no_warnings_ok(WebURL => 'http://example.com/rt/ir/'); no_warnings_ok(WebURL => 'http://rt.example.com:8888/', 'nonstandard port is okay'); no_warnings_ok(WebURL => 'https://rt.example.com:8888/', 'nonstandard port with https is okay'); one_warning_like(WebURL => '', qr{You must set the WebURL config option}); @w = warnings_from(WebURL => 'rt.example.com'); is(@w, 2); like($w[0], qr{The WebURL config option must contain a scheme}); like($w[1], qr{The WebURL config option requires a trailing slash}); one_warning_like(WebURL => 'http://rt.example.com', qr{The WebURL config option requires a trailing slash}); one_warning_like(WebURL => 'xtp://example.com/rt/', qr{The WebURL config option must contain a scheme \(http or https\)}); one_warning_like(WebURL => 'http://rt.example.com/rt', qr{The WebURL config option requires a trailing slash}); one_warning_like(WebURL => 'http://rt.example.com/rt/ir', qr{The WebURL config option requires a trailing slash}); # reinstate a valid WebURL for other tests no_warnings_ok(WebURL => 'http://rt.example.com/rt/'); rt-4.4.2/t/api/condition-reject.t0000664000175000017500000000236713131430353016503 0ustar vagrantvagrant# # Check that the "On Reject" scrip condition exists and is working # use strict; use warnings; use RT; use RT::Test tests => 7; { my $q = RT::Queue->new(RT->SystemUser); $q->Create(Name =>'rejectTest'); ok($q->Id, "Created a scriptest queue"); my $s1 = RT::Scrip->new(RT->SystemUser); my ($val, $msg) =$s1->Create( Queue => $q->Id, ScripAction => 'User Defined', ScripCondition => 'On reject', CustomIsApplicableCode => '', CustomPrepareCode => 'return 1', CustomCommitCode => ' $self->TicketObj->SetPriority($self->TicketObj->Priority+1); return(1); ', Template => 'Blank' ); ok($val,$msg); my $ticket = RT::Ticket->new(RT->SystemUser); my ($tv,$ttv,$tm) = $ticket->Create(Queue => $q->Id, Subject => "hair on fire", InitialPriority => '20' ); ok($tv, $tm); ok($ticket->SetStatus('rejected'), "Status set to \"rejected\""); is ($ticket->Priority , '21', "Condition is true, scrip triggered"); ok($ticket->SetStatus('open'), "Status set to \"open\""); is ($ticket->Priority , '21', "Condition is false, scrip skipped"); } rt-4.4.2/t/api/cron.t0000664000175000017500000000714313131430353014201 0ustar vagrantvagrantuse strict; use warnings; use RT; use RT::Test nodata => 1, tests => 18; ### Set up some testing data. Test the testing data because why not? # Create a user with rights, a queue, and some tickets. my $user_obj = RT::User->new(RT->SystemUser); my ($ret, $msg) = $user_obj->LoadOrCreateByEmail('tara@example.com'); ok($ret, 'record test user creation'); $user_obj->SetName('tara'); $user_obj->PrincipalObj->GrantRight(Right => 'SuperUser'); my $CurrentUser = RT::CurrentUser->new('tara'); # Create our template, which will be used for tests of RT::Action::Record*. my $template_content = 'RT-Send-Cc: tla@example.com RT-Send-Bcc: jesse@example.com This is a content string with no content.'; my $template_obj = RT::Template->new($CurrentUser); $template_obj->Create(Queue => '0', Name => 'recordtest', Description => 'testing Record actions', Content => $template_content, ); # Create a queue and some tickets. my $queue_obj = RT::Queue->new($CurrentUser); ($ret, $msg) = $queue_obj->Create(Name => 'recordtest', Description => 'queue for Action::Record testing'); ok($ret, 'record test queue creation'); my $ticket1 = RT::Ticket->new($CurrentUser); my ($id, $tobj, $msg2) = $ticket1->Create(Queue => $queue_obj, Requestor => ['tara@example.com'], Subject => 'bork bork bork', Priority => 22, ); ok($id, 'record test ticket creation 1'); my $ticket2 = RT::Ticket->new($CurrentUser); ($id, $tobj, $msg2) = $ticket2->Create(Queue => $queue_obj, Requestor => ['root@localhost'], Subject => 'hurdy gurdy' ); ok($id, 'record test ticket creation 2'); ### OK. Have data, will travel. # First test the search. ok(require RT::Search::FromSQL, "Search::FromSQL loaded"); my $ticketsqlstr = "Requestor.EmailAddress = '" . $CurrentUser->EmailAddress . "' AND Priority > '20'"; my $search = RT::Search::FromSQL->new(Argument => $ticketsqlstr, TicketsObj => RT::Tickets->new($CurrentUser), ); is(ref($search), 'RT::Search::FromSQL', "search created"); ok($search->Prepare(), "fromsql search run"); my $counter = 0; while(my $t = $search->TicketsObj->Next() ) { is($t->Id(), $ticket1->Id(), "fromsql search results 1"); $counter++; } is ($counter, 1, "fromsql search results 2"); # Right. Now test the actions. ok(require RT::Action::RecordComment); ok(require RT::Action::RecordCorrespondence); my ($comment_act, $correspond_act); ok($comment_act = RT::Action::RecordComment->new(TicketObj => $ticket1, TemplateObj => $template_obj, CurrentUser => $CurrentUser), "RecordComment created"); ok($correspond_act = RT::Action::RecordCorrespondence->new(TicketObj => $ticket2, TemplateObj => $template_obj, CurrentUser => $CurrentUser), "RecordCorrespondence created"); ok($comment_act->Prepare(), "Comment prepared"); ok($correspond_act->Prepare(), "Correspond prepared"); ok($comment_act->Commit(), "Comment committed"); ok($correspond_act->Commit(), "Correspondence committed"); # Now test for loop suppression. my ($trans, $desc, $transaction) = $ticket2->Comment(MIMEObj => $template_obj->MIMEObj); my $bogus_action = RT::Action::RecordComment->new(TicketObj => $ticket1, TemplateObj => $template_obj, TransactionObj => $transaction, CurrentUser => $CurrentUser); ok(!$bogus_action->Prepare(), "Comment aborted to prevent loop"); rt-4.4.2/t/api/interface_web.t0000664000175000017500000000207513131430353016034 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodb => 1, tests => 5; use Test::Warn; use RT::Interface::Web; # This gets us HTML::Mason::Commands { my $cf = 2; my %args = ( 'GroupingName' => { 'Value' => "bar", 'Value-Magic' => 1 }, ); my ($ret, $grouping) = HTML::Mason::Commands::_ValidateConsistentCustomFieldValues($cf, \%args); ok ( $ret, 'No duplicates found'); is ( $grouping, 'GroupingName', 'Grouping is GroupingName'); } { my $cf = 2; my %args = ( 'GroupingName' => { 'Value' => "foo", 'Value-Magic' => 1 }, 'AnotherGrouping' => { 'Value' => "bar", 'Value-Magic' => 1 }, ); my ($ret, $grouping); warning_like { ($ret, $grouping) = HTML::Mason::Commands::_ValidateConsistentCustomFieldValues($cf, \%args); } qr/^CF 2 submitted with multiple differing values/i; ok ( !$ret, 'Caught duplicate values'); is ( $grouping, 'AnotherGrouping', 'Defaulted to AnotherGrouping'); } rt-4.4.2/t/api/bookmarks.t0000664000175000017500000000162713131430353015231 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 36; my ( $url, $m ) = RT::Test->started_ok; my $root = RT::Test->load_or_create_user( Name => 'root' ); my @tickets = RT::Test->create_tickets( { }, map { { Subject => "Test $_" } } ( 1 .. 9 ) ); # 4.2 gives us $user->ToggleBookmark which is nicer $root->SetAttribute( Name => 'Bookmarks', Content => { map { $_ => 1 } (3,6,9) } ); my $cu = RT::CurrentUser->new($root); my $bookmarks = RT::Tickets->new($cu); for my $search ( "Queue = 'General' AND id = '__Bookmarked__'", "id = '__Bookmarked__' AND Queue = 'General'", "id > 0 AND id = '__Bookmarked__'", "id = '__Bookmarked__' AND id > 0", "id = 3 OR id = '__Bookmarked__'", "id = '__Bookmarked__' OR id = 3", ) { $bookmarks->FromSQL($search); is($bookmarks->Count,3,"Found my 3 bookmarks for [$search]"); } rt-4.4.2/t/99-policy.t0000664000175000017500000001221513131430353014221 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use File::Find; use IPC::Run3; my @files; find( { wanted => sub { push @files, $File::Find::name if -f; $File::Find::prune = 1 if $_ eq "t/tmp" or m{/\.git$}; }, no_chdir => 1 }, qw{etc lib share t bin sbin devel/tools docs devel/docs} ); if ( my $dir = `git rev-parse --git-dir 2>/dev/null` ) { # We're in a git repo, use the ignore list chomp $dir; my %ignores; $ignores{ $_ }++ for grep $_, split /\n/, `git ls-files -o -i --exclude-standard .`; @files = grep {not $ignores{$_}} @files; } sub check { my $file = shift; my %check = ( strict => 0, warnings => 0, no_tabs => 0, shebang => 0, exec => 0, bps_tag => 0, compile_perl => 0, @_, ); if ($check{strict} or $check{warnings} or $check{shebang} or $check{bps_tag} or $check{no_tabs}) { local $/; open my $fh, '<', $file or die $!; my $content = <$fh>; unless ($check{shebang} != -1 and $content =~ /^#!(?!.*perl)/i) { like( $content, qr/^use strict(?:;|\s+)/m, "$file has 'use strict'" ) if $check{strict}; like( $content, qr/^use warnings(?:;|\s+)/m, "$file has 'use warnings'" ) if $check{warnings}; } if ($check{shebang} == 1) { like( $content, qr/^#!/, "$file has shebang" ); } elsif ($check{shebang} == -1) { unlike( $content, qr/^#!/, "$file has no shebang" ); } my $other_copyright = 0; $other_copyright = 1 if $file =~ /\.(css|js)$/ and not $content =~ /Copyright\s+\(c\)\s+\d\d\d\d-\d\d\d\d Best Practical Solutions/i and $file =~ /(?:ckeditor|scriptaculous|superfish|tablesorter|farbtastic)/i; $other_copyright = 1 if $file =~ /\.(css|js)$/ and not $content =~ /Copyright\s+\(c\)\s+\d\d\d\d-\d\d\d\d Best Practical Solutions/i and ($content =~ /\b(copyright|GPL|Public Domain)\b/i or $content =~ /\(c\)\s+\d\d\d\d(?:-\d\d\d\d)?/i); $check{bps_tag} = -1 if $check{bps_tag} and $other_copyright; if ($check{bps_tag} == 1) { like( $content, qr/[B]EGIN BPS TAGGED BLOCK \{\{\{/, "$file has BPS license tag"); } elsif ($check{bps_tag} == -1) { unlike( $content, qr/[B]EGIN BPS TAGGED BLOCK \{\{\{/, "$file has no BPS license tag" . ($other_copyright ? " (other copyright)" : "")); } if (not $other_copyright and $check{no_tabs}) { unlike( $content, qr/\t/, "$file has no hard tabs" ); } } my $executable = ( stat $file )[2] & 0100; if ($check{exec} == 1) { if ( $file =~ /\.in$/ ) { ok( !$executable, "$file permission is u-x (.in will add +x)" ); } else { ok( $executable, "$file permission is u+x" ); } } elsif ($check{exec} == -1) { ok( !$executable, "$file permission is u-x" ); } if ($check{compile_perl}) { my ($input, $output, $error) = ('', '', ''); my $pre_check = 1; if ( $file =~ /\bmysql\b/ ) { eval { require DBD::mysql }; undef $pre_check if $@; } if ( $pre_check ) { run3( [ $^X, '-Ilib', '-Mstrict', '-Mwarnings', '-c', $file ], \$input, \$output, \$error, ); is $error, "$file syntax OK\n", "$file syntax is OK"; } } } check( $_, shebang => -1, exec => -1, warnings => 1, strict => 1, bps_tag => 1, no_tabs => 1 ) for grep {m{^lib/.*\.pm$}} @files; check( $_, shebang => -1, exec => -1, warnings => 1, strict => 1, bps_tag => -1, no_tabs => 1 ) for grep {m{^t/.*\.t$}} @files; check( $_, shebang => 1, exec => 1, warnings => 1, strict => 1, bps_tag => 1, no_tabs => 1 ) for grep {m{^s?bin/}} @files; check( $_, compile_perl => 1, exec => 1 ) for grep { -f $_ } map { s/\.in$//; $_ } grep {m{^s?bin/}} @files; check( $_, shebang => 1, exec => 1, warnings => 1, strict => 1, bps_tag => 1, no_tabs => 1 ) for grep {m{^devel/tools/} and not m{/(localhost\.(crt|key)|mime\.types)$}} @files; check( $_, exec => -1 ) for grep {m{^share/static/}} @files; check( $_, exec => -1, bps_tag => 1, no_tabs => 1 ) for grep {m{^share/html/}} @files; check( $_, exec => -1 ) for grep {m{^share/(po|fonts)/}} @files; check( $_, exec => -1 ) for grep {m{^t/data/}} @files; check( $_, exec => -1, bps_tag => -1 ) for grep {m{^etc/[^/]+$}} @files; check( $_, exec => -1, bps_tag => -1 ) for grep {m{^etc/upgrade/[^/]+/}} @files; check( $_, warnings => 1, strict => 1, compile_perl => 1, no_tabs => 1 ) for grep {m{^etc/upgrade/.*/content$}} @files; check( $_, shebang => 1, exec => 1, warnings => 1, strict => 1, bps_tag => 1, no_tabs => 1 ) for grep {m{^etc/upgrade/[^/]+$}} @files; check( $_, compile_perl => 1, exec => 1 ) for grep{ -f $_} map {s/\.in$//; $_} grep {m{^etc/upgrade/[^/]+$}} @files; check( $_, exec => -1 ) for grep {m{^(devel/)?docs/}} @files; done_testing; rt-4.4.2/t/sla/0000775000175000017500000000000013131430353013054 5ustar vagrantvagrantrt-4.4.2/t/sla/queue.t0000664000175000017500000000254113131430353014367 0ustar vagrantvagrantuse strict; use warnings; use Test::MockTime qw( :all ); use RT::Test tests => undef; my $queue = RT::Test->load_or_create_queue( Name => 'General', SLADisabled => 0 ); my $queue_sla = RT::Attribute->new($RT::SystemUser); diag 'check set of Due date with Queue default SLA' if $ENV{'TEST_VERBOSE'}; { # add default SLA for 'General'; my ($id) = $queue_sla->Create( Name => 'SLA', Description => 'Default Queue SLA', Content => '4', Object => $queue ); ok( $id, 'Created SLA Attribute for General' ); RT->Config->Set(ServiceAgreements => ( Default => '2', Levels => { '2' => { Resolve => { RealMinutes => 60 * 2 } }, '4' => { StartImmediately => 1, Resolve => { RealMinutes => 60 * 4 } }, }, )); set_fixed_time('2007-01-01T00:00:00Z'); my $time = time; my $ticket = RT::Ticket->new($RT::SystemUser); ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx' ); ok( $id, "created ticket #$id" ); is $ticket->SLA, '4', 'default sla'; my $start = $ticket->StartsObj->Unix; my $due = $ticket->DueObj->Unix; is( $start, $time, 'Start Date is right' ); is( $due, $time+3600*4, 'Due date is right'); my ( $status, $message ) = $queue->DeleteAttribute('SLA'); ok( $status, $message ); } done_testing; rt-4.4.2/t/sla/starts.t0000664000175000017500000000437013131430353014565 0ustar vagrantvagrantuse strict; use warnings; use Test::MockTime qw( :all ); use RT::Test tests => undef; RT::Test->load_or_create_queue( Name => 'General', SLADisabled => 0 ); # we assume the RT's Timezone is UTC now, need a smart way to get over that. $ENV{'TZ'} = 'GMT'; RT->Config->Set( Timezone => 'GMT' ); my $bhours = RT::SLA->BusinessHours; diag 'check Starts date' if $ENV{'TEST_VERBOSE'}; { RT->Config->Set(ServiceAgreements => ( Default => 'standard', Levels => { 'standard' => { Response => 2 * 60, Resolve => 7 * 60 * 24, }, }, )); RT->Config->Set(ServiceBusinessHours => ( Default => { 1 => { Name => 'Monday', Start => '09:00', End => '17:00' }, 2 => { Name => 'Tuesday', Start => '09:00', End => '17:00' }, } )); my %time = ( '2007-01-01T13:15:00Z' => 1167657300, # 2007-01-01T13:15:00Z '2007-01-01T19:15:00Z' => 1167728400, # 2007-01-02T09:00:00Z '2007-01-06T13:15:00Z' => 1168246800, # 2007-01-08T09:00:00Z ); for my $time ( keys %time ) { set_fixed_time($time); my $ticket = RT::Ticket->new($RT::SystemUser); my ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx' ); ok $id, "created ticket #$id"; is $ticket->StartsObj->Unix, $time{$time}, 'Starts date is right'; } restore_time(); } diag 'check Starts date with StartImmediately enabled' if $ENV{'TEST_VERBOSE'}; { RT->Config->Set(ServiceAgreements => ( Default => 'start immediately', Levels => { 'start immediately' => { StartImmediately => 1, Response => 2 * 60, Resolve => 7 * 60 * 24, }, }, )); my $time = time; my $ticket = RT::Ticket->new($RT::SystemUser); my ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx' ); ok $id, "created ticket #$id"; my $starts = $ticket->StartsObj->Unix; ok $starts > 0, 'Starts date is set'; is $starts, $ticket->CreatedObj->Unix, 'Starts is correct'; } done_testing; rt-4.4.2/t/sla/business_hours.t0000664000175000017500000000451213131430353016316 0ustar vagrantvagrantuse strict; use warnings; use Test::MockTime qw( :all ); use RT::Test tests => undef; # we assume the RT's Timezone is UTC now, need a smart way to get over that. $ENV{'TZ'} = 'GMT'; RT->Config->Set( Timezone => 'GMT' ); RT::Test->load_or_create_queue( Name => 'General', SLADisabled => 0 ); diag 'check business hours' if $ENV{'TEST_VERBOSE'}; { RT->Config->Set(ServiceAgreements => ( Default => 'Sunday', Levels => { Sunday => { Resolve => { BusinessMinutes => 60 }, BusinessHours => 'Sunday', }, Monday => { Resolve => { BusinessMinutes => 60 }, }, }, )); RT->Config->Set(ServiceBusinessHours => ( Sunday => { 0 => { Name => 'Sunday', Start => '9:00', End => '17:00' } }, Default => { 1 => { Name => 'Monday', Start => '9:00', End => '17:00' }, }, )); set_fixed_time('2007-01-01T00:00:00Z'); my $ticket = RT::Ticket->new($RT::SystemUser); my ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx' ); ok( $id, "created ticket #$id" ); is( $ticket->SLA, 'Sunday', 'default sla' ); my $start = $ticket->StartsObj->Unix; my $due = $ticket->DueObj->Unix; is( $start, 1168160400, 'Start date is 2007-01-07T09:00:00Z' ); is( $due, 1168164000, 'Due date is 2007-01-07T10:00:00Z' ); $ticket->SetSLA( 'Monday' ); is( $ticket->SLA, 'Monday', 'new sla' ); $due = $ticket->DueObj->Unix; is( $due, 1167645600, 'Due date is 2007-01-01T10:00:00Z' ); } diag 'check that RT warns about specifying Sunday as 7 rather than 0' if $ENV{'TEST_VERBOSE'}; { my @warnings; local $SIG{__WARN__} = sub { push @warnings, $_[0]; }; RT->Config->Set(ServiceBusinessHours => ( Invalid => { 7 => { Name => 'Domingo', Start => '9:00', End => '17:00' } }, )); RT->Config->PostLoadCheck; is(@warnings, 1); like($warnings[0], qr/Config option %ServiceBusinessHours 'Invalid' erroneously specifies 'Domingo' as day 7; Sunday should be specified as day 0\./); } done_testing(); rt-4.4.2/t/sla/timezone.t0000664000175000017500000000310413131430353015071 0ustar vagrantvagrantuse strict; use warnings; use Test::MockTime qw( :all ); use RT::Test tests => undef; my $ru_queue = RT::Test->load_or_create_queue( Name => 'RU', SLADisabled => 0 ); ok $ru_queue && $ru_queue->id, 'created RU queue'; my $us_queue = RT::Test->load_or_create_queue( Name => 'US', SLADisabled => 0 ); ok $us_queue && $ru_queue->id, 'created US queue'; RT->Config->Set(ServiceAgreements => ( Default => 2, QueueDefault => { RU => { Timezone => 'Europe/Moscow' }, US => { Timezone => 'America/New_York' }, }, Levels => { '2' => { Resolve => { BusinessMinutes => 60 * 2 } }, }, )); set_fixed_time('2007-01-01T22:00:00Z'); diag 'check dates in US queue' if $ENV{'TEST_VERBOSE'}; { my $ticket = RT::Ticket->new($RT::SystemUser); my ($id) = $ticket->Create( Queue => 'US', Subject => 'xxx' ); ok( $id, "created ticket #$id" ); my $start = $ticket->StartsObj->ISO( Timezone => 'utc' ); is( $start, '2007-01-01 22:00:00', 'Start date is right' ); my $due = $ticket->DueObj->ISO( Timezone => 'utc' ); is( $due, '2007-01-02 15:00:00', 'Due date is right' ); } diag 'check dates in RU queue' if $ENV{'TEST_VERBOSE'}; { my $ticket = RT::Ticket->new($RT::SystemUser); my ($id) = $ticket->Create( Queue => 'RU', Subject => 'xxx' ); ok( $id, "created ticket #$id" ); my $start = $ticket->StartsObj->ISO( Timezone => 'utc' ); is( $start, '2007-01-02 06:00:00', 'Start date is right' ); my $due = $ticket->DueObj->ISO( Timezone => 'utc' ); is( $due, '2007-01-02 08:00:00', 'Due date is right' ); } done_testing; rt-4.4.2/t/sla/due.t0000664000175000017500000002546513131430353014032 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; RT::Test->load_or_create_queue( Name => 'General', SLADisabled => 0 ); diag 'check change of Due date when SLA for a ticket is changed' if $ENV{'TEST_VERBOSE'}; { RT->Config->Set(ServiceAgreements => ( Default => '2', Levels => { '2' => { Resolve => { RealMinutes => 60*2 } }, '4' => { Resolve => { RealMinutes => 60*4 } }, }, )); my $time = time; my $ticket = RT::Ticket->new( $RT::SystemUser ); my ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx' ); ok $id, "created ticket #$id"; is $ticket->SLA, '2', 'default sla'; my $orig_due = $ticket->DueObj->Unix; ok $orig_due > 0, 'Due date is set'; ok $orig_due > $time, 'Due date is in the future'; $ticket->SetSLA('4'); is $ticket->SLA, '4', 'new sla'; my $new_due = $ticket->DueObj->Unix; ok $new_due > 0, 'Due date is set'; ok $new_due > $time, 'Due date is in the future'; is $new_due, $orig_due+2*60*60, 'difference is two hours'; } diag 'when not requestor creates a ticket, we dont set due date' if $ENV{'TEST_VERBOSE'}; { RT->Config->Set(ServiceAgreements => ( Default => '2', Levels => { '2' => { Response => { RealMinutes => 60*2 } }, }, )); my $ticket = RT::Ticket->new( $RT::SystemUser ); my ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx', Requestor => 'user@example.com', ); ok $id, "created ticket #$id"; is $ticket->SLA, '2', 'default sla'; my $due = $ticket->DueObj->Unix; ok $due <= 0, 'Due date is not set'; } diag 'check that reply to requestors unset due date' if $ENV{'TEST_VERBOSE'}; { RT->Config->Set(ServiceAgreements => ( Default => '2', Levels => { '2' => { Response => { RealMinutes => 60*2 } }, }, )); my $root = RT::User->new( $RT::SystemUser ); $root->LoadByEmail('root@localhost'); ok $root->id, 'loaded root user'; # requestor creates my $id; { my $ticket = RT::Ticket->new( $root ); ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx', Requestor => $root->id, ); ok $id, "created ticket #$id"; is $ticket->SLA, '2', 'default sla'; my $due = $ticket->DueObj->Unix; ok $due > 0, 'Due date is set'; } # non-requestor reply { my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'we are working on this.' ); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my $due = $ticket->DueObj->Unix; ok $due <= 0, 'Due date is not set'; } # non-requestor reply again { my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'we are still working on this.' ); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my $due = $ticket->DueObj->Unix; ok $due <= 0, 'Due date is not set'; } # requestor reply my $last_unreplied_due; { my $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'what\'s going on with my ticket?' ); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my $due = $ticket->DueObj->Unix; ok $due > 0, 'Due date is set again'; $last_unreplied_due = $due; } # sleep at least one second and requestor replies again sleep 1; { my $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'HEY! Were is my answer?' ); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my $due = $ticket->DueObj->Unix; ok $due > 0, 'Due date is still set'; is $due, $last_unreplied_due, 'due is unchanged'; } } diag 'check that reply to requestors dont unset due date with KeepInLoop' if $ENV{'TEST_VERBOSE'}; { RT->Config->Set(ServiceAgreements => ( Default => '2', Levels => { '2' => { Response => { RealMinutes => 60*2 }, KeepInLoop => { RealMinutes => 60*4 }, }, }, )); my $root = RT::User->new( $RT::SystemUser ); $root->LoadByEmail('root@localhost'); ok $root->id, 'loaded root user'; # requestor creates my $id; my $due; { my $ticket = RT::Ticket->new( $root ); ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx', Requestor => $root->id, ); ok $id, "created ticket #$id"; is $ticket->SLA, '2', 'default sla'; $due = $ticket->DueObj->Unix; ok $due > 0, 'Due date is set'; } # non-requestor reply { my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'we are working on this.' ); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my $tmp = $ticket->DueObj->Unix; ok $tmp > 0, 'Due date is set'; ok $tmp > $due, "keep in loop is 4hours when response is 2hours"; $due = $tmp; } # non-requestor reply again { sleep 1; my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'we are still working on this.' ); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my $tmp = $ticket->DueObj->Unix; ok $tmp > 0, 'Due date is set'; ok $tmp > $due, "keep in loop sligtly moved"; $due = $tmp; } # requestor reply my $last_unreplied_due; { my $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'what\'s going on with my ticket?' ); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my $tmp = $ticket->DueObj->Unix; ok $tmp > 0, 'Due date is set'; ok $tmp < $due, "response deadline is 2 hours earlier"; $due = $tmp; $last_unreplied_due = $due; } # sleep at least one second and requestor replies again sleep 1; { my $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'HEY! Were is my answer?' ); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my $tmp = $ticket->DueObj->Unix; ok $tmp > 0, 'Due date is set'; is $tmp, $last_unreplied_due, 'due is unchanged'; $due = $tmp; } } diag 'check that replies dont affect resolve deadlines' if $ENV{'TEST_VERBOSE'}; { RT->Config->Set(ServiceAgreements => ( Default => '2', Levels => { '2' => { Resolve => { RealMinutes => 60*2 } }, }, )); my $root = RT::User->new( $RT::SystemUser ); $root->LoadByEmail('root@localhost'); ok $root->id, 'loaded root user'; # requestor creates my ($id, $orig_due); { my $ticket = RT::Ticket->new( $root ); ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx', Requestor => $root->id, ); ok $id, "created ticket #$id"; is $ticket->SLA, '2', 'default sla'; $orig_due = $ticket->DueObj->Unix; ok $orig_due > 0, 'Due date is set'; } # non-requestor reply { my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'we are working on this.' ); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my $due = $ticket->DueObj->Unix; ok $due > 0, 'Due date is set'; is $due, $orig_due, 'due is not changed'; } # requestor reply { my $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'what\'s going on with my ticket?' ); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my $due = $ticket->DueObj->Unix; ok $due > 0, 'Due date is set'; is $due, $orig_due, 'due is not changed'; } } diag 'check that owner is not treated as requestor' if $ENV{'TEST_VERBOSE'}; { RT->Config->Set(ServiceAgreements => ( Default => '2', Levels => { '2' => { Response => { RealMinutes => 60*2 } }, }, )); my $root = RT::User->new( $RT::SystemUser ); $root->LoadByEmail('root@localhost'); ok $root->id, 'loaded root user'; # requestor creates and he is owner my $id; { my $ticket = RT::Ticket->new( $root ); ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx', Requestor => $root->id, Owner => $root->id, ); ok $id, "created ticket #$id"; is $ticket->SLA, '2', 'default sla'; is $ticket->Owner, $root->id, 'correct owner'; my $due = $ticket->DueObj->Unix; ok $due <= 0, 'Due date is not set'; } } diag 'check that response deadline is left alone when there is no requestor' if $ENV{'TEST_VERBOSE'}; { RT->Config->Set(ServiceAgreements => ( Default => '2', Levels => { '2' => { Response => { RealMinutes => 60*2 } }, }, )); my $root = RT::User->new( $RT::SystemUser ); $root->LoadByEmail('root@localhost'); ok $root->id, 'loaded root user'; # create a ticket without requestor my $id; { my $ticket = RT::Ticket->new( $root ); ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx', ); ok $id, "created ticket #$id"; is $ticket->SLA, '2', 'default sla'; my $due = $ticket->DueObj->Unix; ok $due <= 0, 'Due date is not set'; } } done_testing(); rt-4.4.2/t/sla/ignore-on-statuses.t0000664000175000017500000001745513131430353017023 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; RT::Test->load_or_create_queue( Name => 'General', SLADisabled => 0 ); diag 'check that reply to requestors dont unset due date with KeepInLoop' if $ENV{'TEST_VERBOSE'}; { RT->Config->Set(ServiceAgreements => ( Default => '2', Levels => { '2' => { KeepInLoop => { RealMinutes => 60*4, IgnoreOnStatuses => ['stalled'] }, }, }, )); my $root = RT::User->new( $RT::SystemUser ); $root->LoadByEmail('root@localhost'); ok $root->id, 'loaded root user'; # requestor creates my $id; my $due; { my $ticket = RT::Ticket->new( $root ); ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx', Requestor => $root->id, ); ok $id, "created ticket #$id"; is $ticket->SLA, '2', 'default sla'; ok !$ticket->DueObj->Unix, 'no response deadline'; $due = 0; } # non-requestor reply { my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'we are working on this.' ); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my $tmp = $ticket->DueObj->Unix; ok $tmp > 0, 'Due date is set'; ok $tmp > $due, "keep in loop due set"; $due = $tmp; } # stalling ticket { my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my ($status, $msg) = $ticket->SetStatus('stalled'); ok $status, 'stalled the ticket'; $ticket->Load( $id ); ok !$ticket->DueObj->Unix, 'keep in loop deadline ignored for stalled'; } # non-requestor reply again { sleep 1; my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'we are still working on this.' ); $ticket->SetStatus('open'); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; is $ticket->Status, 'open', 'ticket was opened'; my $tmp = $ticket->DueObj->Unix; ok $tmp > 0, 'Due date is set'; ok $tmp > $due, "keep in loop sligtly moved"; $due = $tmp; } } diag 'Check that failing to reply to the requestors is not ignored' if $ENV{'TEST_VERBOSE'}; { RT->Config->Set(ServiceAgreements => ( Default => '2', Levels => { '2' => { Response => { RealMinutes => 60*2 }, KeepInLoop => { RealMinutes => 60*4, IgnoreOnStatuses => ['stalled'] }, }, }, )); my $root = RT::User->new( $RT::SystemUser ); $root->LoadByEmail('root@localhost'); ok $root->id, 'loaded root user'; # requestor creates my $id; my $due; { my $ticket = RT::Ticket->new( $root ); ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx', Requestor => $root->id, ); ok $id, "created ticket #$id"; is $ticket->SLA, '2', 'default sla'; $due = $ticket->DueObj->Unix; ok $due > 0, 'response deadline'; } # stalling ticket { my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my ($status, $msg) = $ticket->SetStatus('stalled'); ok $status, 'stalled the ticket'; $ticket->Load( $id ); my $tmp = $ticket->DueObj->Unix; ok $tmp, 'response deadline not unset'; is $tmp, $due, 'due not changed'; } # non-requestor reply { sleep 1; my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'we are still working on this.' ); $ticket->SetStatus('open'); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; is $ticket->Status, 'open', 'ticket was opened'; my $tmp = $ticket->DueObj->Unix; ok $tmp > 0, 'Due date is set'; ok $tmp > $due, "keep in loop is greater than response"; $due = $tmp; } # stalling ticket again { my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my ($status, $msg) = $ticket->SetStatus('stalled'); ok $status, 'stalled the ticket'; $ticket->Load( $id ); ok !$ticket->DueObj->Unix, 'keep in loop deadline unset for stalled'; } } diag 'check the ExcludeTimeOnIgnoredStatuses option' if $ENV{'TEST_VERBOSE'}; { RT->Config->Set(ServiceAgreements => ( Default => '2', Levels => { '2' => { Response => { RealMinutes => 60*2, IgnoreOnStatuses => ['stalled'] }, }, }, )); my $root = RT::User->new( $RT::SystemUser ); $root->LoadByEmail('root@localhost'); ok $root->id, 'loaded root user'; my $bob = RT::Test->load_or_create_user( Name => 'bob', EmailAddress => 'bob@example.com', Password => 'password' ); ok( $bob->Id, "Created test user bob" ); ok( RT::Test->add_rights( { Principal => 'Privileged', Right => [ qw(CreateTicket ShowTicket ModifyTicket SeeQueue) ] } ), 'Granted ticket management rights' ); # requestor creates my $id; my $due; { my $ticket = RT::Ticket->new( $bob ); ($id) = $ticket->Create( Queue => 'General', Subject => 'xxx', Requestor => $bob->id, ); ok $id, "created ticket #$id"; is $ticket->SLA, '2', 'default sla'; $due = $ticket->DueObj->Unix; ok $due > 0, 'response deadline'; } # stalling ticket { my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; my ($status, $msg) = $ticket->SetStatus('stalled'); ok $status, 'stalled the ticket'; $ticket->Load( $id ); ok !$ticket->DueObj->Unix, 'deadline ignored for stalled'; } # requestor reply again { sleep 1; my $ticket = RT::Ticket->new( $bob ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; $ticket->Correspond( Content => 'please reopen this ticket, we are good to continue' ); $ticket->SetStatus('open'); $ticket = RT::Ticket->new( $root ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket #$id"; is $ticket->Status, 'open', 'ticket was opened'; my $tmp = $ticket->DueObj->Unix; ok $tmp > 0, 'Due date is set'; ok $tmp == $due, "deadline not changed"; } RT->Config->Set(ServiceAgreements => ( Default => '2', Levels => { '2' => { Response => { RealMinutes => 60*2, IgnoreOnStatuses => ['stalled'], ExcludeTimeOnIgnoredStatuses => 1 }, }, }, )); { my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Load( $id ); my ($status, $msg) = $ticket->SetStatus('stalled'); ok $status, 'stalled the ticket'; ok !$ticket->DueObj->Unix, 'deadline ignored for stalled'; sleep 1; $ticket->SetStatus('open'); is $ticket->Status, 'open', 'ticket was opened'; my $tmp = $ticket->DueObj->Unix; ok $tmp > 0, 'Due date is set'; ok $tmp >= $due+1, "deadline slighted moved"; ok $tmp <= $due+5, "deadline slighted moved but not much"; } } done_testing; rt-4.4.2/t/sla/web.t0000664000175000017500000000647013131430353014025 0ustar vagrantvagrantuse strict; use warnings; BEGIN { use Test::MockTime 'set_fixed_time'; use constant TIME => 1442455200; set_fixed_time(TIME); use RT::Test tests => undef, config => "use Test::MockTime 'set_fixed_time'; set_fixed_time(". TIME . q!); Set( %ServiceAgreements, ( Default => '2', Levels => { '2' => { StartImmediately => 1, Response => { RealMinutes => 60 * 2 }, }, '4' => { StartImmediately => 1, Response => { RealMinutes => 60 * 4 }, }, }, ));! ; } my $now = TIME; my $queue = RT::Test->load_or_create_queue( Name => 'General', SLADisabled => 0 ); my $user = RT::Test->load_or_create_user( Name => 'user', Password => 'password', EmailAddress => 'user@example.com', ); my ( $baseurl, $m ) = RT::Test->started_ok; ok( RT::Test->set_rights( { Principal => $user, Right => [ qw(SeeQueue CreateTicket ShowTicket ModifyTicket ShowConfigTab AdminQueue) ] }, ), 'set rights' ); ok $m->login( 'user', 'password' ), 'logged in as user'; { $m->goto_create_ticket( $queue->id ); my $form = $m->form_name( 'TicketCreate' ); my $sla = $form->find_input( 'SLA' ); is_deeply( [$sla->possible_values], [ 2, 4 ], 'possible sla' ); $m->submit_form( fields => { Subject => 'ticket foo with default sla' } ); my $ticket = RT::Test->last_ticket; ok( $ticket->id, 'ticket is created' ); my $id = $ticket->id; is( $ticket->SLA, 2, 'default SLA is 2' ); is( $ticket->StartsObj->Unix, $now, 'Starts' ); is( $ticket->DueObj->Unix, $now + 60 * 60 * 2, 'Due' ); } { $m->goto_create_ticket( $queue->id ); my $form = $m->form_name( 'TicketCreate' ); $m->submit_form( fields => { Subject => 'ticket foo with default sla', SLA => 4 } ); my $ticket = RT::Test->last_ticket; ok( $ticket->id, 'ticket is created' ); my $id = $ticket->id; is( $ticket->SLA, 4, 'SLA is set to 4' ); is( $ticket->StartsObj->Unix, $now, 'Starts' ); is( $ticket->DueObj->Unix, $now + 60 * 60 * 4, 'Due' ); $m->follow_link_ok( { text => 'Basics' }, 'Ticket -> Basics' ); $m->submit_form( form_name => 'TicketModify', fields => { SLA => 2 }, ); $ticket->Load( $id ); is( $ticket->SLA, 2, 'SLA is set to 2' ); is( $ticket->DueObj->Unix, $now + 60 * 60 * 2, 'Due is updated accordingly' ); } { $m->get_ok( $baseurl . '/Admin/Queues/Modify.html?id=' . $queue->id ); my $form = $m->form_name( 'ModifyQueue' ); $m->untick( 'SLAEnabled', 1 ); $m->submit; $m->text_contains( q{SLADisabled changed from (no value) to "1"} ); } { $m->goto_create_ticket( $queue->id ); my $form = $m->form_name( 'TicketCreate' ); ok( !$form->find_input( 'SLA' ), 'no SLA input' ); $m->submit_form( fields => { Subject => 'ticket foo without sla' } ); my $ticket = RT::Test->last_ticket; ok( $ticket->id, 'ticket is created' ); ok( !$ticket->SLA, 'no SLA' ); ok( !$ticket->StartsObj->Unix, 'no Starts' ); ok( !$ticket->DueObj->Unix, 'no Due' ); } undef $m; done_testing(); rt-4.4.2/t/ldapimport/0000775000175000017500000000000013131430353014450 5ustar vagrantvagrantrt-4.4.2/t/ldapimport/user-import.t0000664000175000017500000000510613131430353017125 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; eval { require RT::LDAPImport; require Net::LDAP::Server::Test; 1; } or do { plan skip_all => 'Unable to test without RT::LDAPImport and Net::LDAP::Server::Test'; }; my $importer = RT::LDAPImport->new; isa_ok($importer,'RT::LDAPImport'); my $ldap_port = 1024 + int rand(10000) + $$ % 1024; ok( my $server = Net::LDAP::Server::Test->new( $ldap_port, auto_schema => 1 ), "spawned test LDAP server on port $ldap_port"); my $ldap = Net::LDAP->new("localhost:$ldap_port"); $ldap->bind(); $ldap->add("ou=foo,dc=bestpractical,dc=com"); my @ldap_entries; for ( 1 .. 13 ) { my $username = "testuser$_"; my $dn = "uid=$username,ou=foo,dc=bestpractical,dc=com"; my $entry = { cn => "Test User $_ ".int rand(200), mail => "$username\@invalid.tld", uid => $username, objectClass => 'User', }; push @ldap_entries, $entry; $ldap->add( $dn, attr => [%$entry] ); } $ldap->add( "uid=9000,ou=foo,dc=bestpractical,dc=com", attr => [ cn => "Numeric user", mail => "numeric\@invalid.tld", uid => 9000, objectclass => 'User', ], ); RT->Config->Set('LDAPHost',"ldap://localhost:$ldap_port"); RT->Config->Set('LDAPMapping', {Name => 'uid', EmailAddress => 'mail', RealName => 'cn'}); RT->Config->Set('LDAPBase','ou=foo,dc=bestpractical,dc=com'); RT->Config->Set('LDAPFilter','(objectClass=User)'); # check that we don't import ok($importer->import_users()); { my $users = RT::Users->new($RT::SystemUser); for my $username (qw/RT_System root Nobody/) { $users->Limit( FIELD => 'Name', OPERATOR => '!=', VALUE => $username, ENTRYAGGREGATOR => 'AND' ); } is($users->Count,0); } # check that we do import ok($importer->import_users( import => 1 )); for my $entry (@ldap_entries) { my $user = RT::User->new($RT::SystemUser); $user->LoadByCols( EmailAddress => $entry->{mail}, Realname => $entry->{cn}, Name => $entry->{uid} ); ok($user->Id, "Found $entry->{cn} as ".$user->Id); ok(!$user->Privileged, "User created as Unprivileged"); } # Check that we skipped numeric usernames my $user = RT::User->new($RT::SystemUser); $user->LoadByCols( EmailAddress => "numeric\@invalid.tld" ); ok(!$user->Id); $user->LoadByCols( Name => 9000 ); ok(!$user->Id); $user->Load( 9000 ); ok(!$user->Id); # can't unbind earlier or the server will die $ldap->unbind; done_testing; rt-4.4.2/t/ldapimport/group-rename.t0000664000175000017500000001033713131430353017242 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; eval { require RT::LDAPImport; require Net::LDAP::Server::Test; 1; } or do { plan skip_all => 'Unable to test without RT::LDAPImport and Net::LDAP::Server::Test'; }; my $importer = RT::LDAPImport->new; isa_ok($importer,'RT::LDAPImport'); my $ldap_port = 1024 + int rand(10000) + $$ % 1024; ok( my $server = Net::LDAP::Server::Test->new( $ldap_port, auto_schema => 1 ), "spawned test LDAP server on port $ldap_port"); my $ldap = Net::LDAP->new("localhost:$ldap_port"); $ldap->bind(); $ldap->add("dc=bestpractical,dc=com"); my @ldap_user_entries; for ( 1 .. 12 ) { my $username = "testuser$_"; my $dn = "uid=$username,ou=foo,dc=bestpractical,dc=com"; my $entry = { dn => $dn, cn => "Test User $_", mail => "$username\@invalid.tld", uid => $username, objectClass => 'User', }; push @ldap_user_entries, $entry; $ldap->add( $dn, attr => [%$entry] ); } my @ldap_group_entries; for ( 1 .. 4 ) { my $groupname = "Test Group $_"; my $dn = "cn=$groupname,ou=groups,dc=bestpractical,dc=com"; my $entry = { cn => $groupname, gid => $_, members => [ map { $_->{dn} } @ldap_user_entries[($_-1),($_+3),($_+7)] ], objectClass => 'Group', }; $ldap->add( $dn, attr => [%$entry] ); push @ldap_group_entries, $entry; } RT->Config->Set('LDAPHost',"ldap://localhost:$ldap_port"); RT->Config->Set('LDAPMapping', {Name => 'uid', EmailAddress => 'mail', RealName => 'cn'}); RT->Config->Set('LDAPBase','dc=bestpractical,dc=com'); RT->Config->Set('LDAPFilter','(objectClass=User)'); RT->Config->Set('LDAPSkipAutogeneratedGroup',1); RT->Config->Set('LDAPGroupBase','dc=bestpractical,dc=com'); RT->Config->Set('LDAPGroupFilter','(objectClass=Group)'); RT->Config->Set('LDAPGroupMapping', { Name => 'cn', Member_Attr => 'members', }); ok( $importer->import_users( import => 1 ), 'imported users'); # no id mapping { ok( $importer->import_groups( import => 1 ), "imported groups" ); is_member_of('testuser1', 'Test Group 1'); ok !get_group('Test Group 1')->FirstAttribute('LDAPImport-gid-1'); } # map id { RT->Config->Get('LDAPGroupMapping')->{'id'} = 'gid'; ok( $importer->import_groups( import => 1 ), "imported groups" ); is_member_of('testuser1', 'Test Group 1'); ok get_group('Test Group 1')->FirstAttribute('LDAPImport-gid-1'); } # rename a group { $ldap->modify( "cn=Test Group 1,ou=groups,dc=bestpractical,dc=com", replace => { 'cn' => 'Test Group 1 Renamed' }, ); ok( $importer->import_groups( import => 1 ), "imported groups" ); ok !get_group('Test Group 1')->id; is_member_of('testuser1', 'Test Group 1 Renamed'); ok get_group('Test Group 1 Renamed')->FirstAttribute('LDAPImport-gid-1'); } # swap two groups { is_member_of('testuser2', 'Test Group 2'); is_member_of('testuser3', 'Test Group 3'); $ldap->modify( "cn=Test Group 2,ou=groups,dc=bestpractical,dc=com", replace => { 'cn' => 'Test Group 3' }, ); $ldap->modify( "cn=Test Group 3,ou=groups,dc=bestpractical,dc=com", replace => { 'cn' => 'Test Group 2' }, ); ok( $importer->import_groups( import => 1 ), "imported groups" ); is_member_of('testuser2', 'Test Group 3'); is_member_of('testuser3', 'Test Group 2'); ok get_group('Test Group 2')->FirstAttribute('LDAPImport-gid-3'); ok get_group('Test Group 3')->FirstAttribute('LDAPImport-gid-2'); } done_testing; sub is_member_of { my $uname = shift; my $gname = shift; my $group = get_group($gname); return ok(0, "found group $gname") unless $group->id; my $user = RT::User->new($RT::SystemUser); $user->Load( $uname ); return ok(0, "found user $uname") unless $user->id; return ok($group->HasMember($user->id), "$uname is member of $gname"); } sub get_group { my $gname = shift; my $group = RT::Group->new($RT::SystemUser); $group->LoadUserDefinedGroup( $gname ); return $group; } rt-4.4.2/t/ldapimport/group-member-import.t0000664000175000017500000001117713131430353020555 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; eval { require RT::LDAPImport; require Net::LDAP::Server::Test; 1; } or do { plan skip_all => 'Unable to test without RT::LDAPImport and Net::LDAP::Server::Test'; }; my $importer = RT::LDAPImport->new; isa_ok($importer,'RT::LDAPImport'); my $ldap_port = 1024 + int rand(10000) + $$ % 1024; ok( my $server = Net::LDAP::Server::Test->new( $ldap_port, auto_schema => 1 ), "spawned test LDAP server on port $ldap_port"); my $ldap = Net::LDAP->new("localhost:$ldap_port"); $ldap->bind(); $ldap->add("dc=bestpractical,dc=com"); my @ldap_user_entries; for ( 1 .. 12 ) { my $username = "testuser$_"; my $dn = "uid=$username,ou=foo,dc=bestpractical,dc=com"; my $entry = { dn => $dn, cn => "Test User $_ ".int rand(200), mail => "$username\@invalid.tld", uid => $username, objectClass => 'User', }; push @ldap_user_entries, $entry; $ldap->add( $dn, attr => [%$entry] ); } my @ldap_group_entries; for ( 1 .. 4 ) { my $groupname = "Test Group $_"; my $dn = "cn=$groupname,ou=groups,dc=bestpractical,dc=com"; my $entry = { cn => $groupname, members => [ map { $_->{dn} } @ldap_user_entries[($_-1),($_+3),($_+7)] ], memberUid => [ map { $_->{uid} } @ldap_user_entries[($_+1),($_+3),($_+5)] ], objectClass => 'Group', }; $ldap->add( $dn, attr => [%$entry] ); push @ldap_group_entries, $entry; } $ldap->add( "cn=42,ou=groups,dc=bestpractical,dc=com", attr => [ cn => "42", members => [ "uid=testuser1,ou=foo,dc=bestpractical,dc=com" ], objectClass => 'Group', ], ); RT->Config->Set('LDAPHost',"ldap://localhost:$ldap_port"); RT->Config->Set('LDAPMapping', {Name => 'uid', EmailAddress => 'mail', RealName => 'cn'}); RT->Config->Set('LDAPBase','dc=bestpractical,dc=com'); RT->Config->Set('LDAPFilter','(objectClass=User)'); RT->Config->Set('LDAPSkipAutogeneratedGroup',1); RT->Config->Set('LDAPGroupBase','dc=bestpractical,dc=com'); RT->Config->Set('LDAPGroupFilter','(objectClass=Group)'); RT->Config->Set('LDAPGroupMapping', {Name => 'cn', Member_Attr => 'members', }); RT->Config->Set('LDAPImportGroupMembers',1); # confirm that we skip the import ok( $importer->import_groups() ); { my $groups = RT::Groups->new($RT::SystemUser); $groups->LimitToUserDefinedGroups; is($groups->Count,0); } import_group_members_ok( members => 'dn' ); RT->Config->Set('LDAPGroupMapping', {Name => 'cn', Member_Attr => 'memberUid', Member_Attr_Value => 'uid', }); import_group_members_ok( memberUid => 'uid' ); sub import_group_members_ok { my $attr = shift; my $user_attr = shift; ok( $importer->import_groups( import => 1 ), "imported groups" ); for my $entry (@ldap_user_entries) { my $user = RT::User->new($RT::SystemUser); $user->LoadByCols( EmailAddress => $entry->{mail}, Realname => $entry->{cn}, Name => $entry->{uid} ); ok($user->Id, "Found $entry->{cn} as ".$user->Id); } for my $entry (@ldap_group_entries) { my $group = RT::Group->new($RT::SystemUser); $group->LoadUserDefinedGroup( $entry->{cn} ); ok($group->Id, "Found $entry->{cn} as ".$group->Id); my $idlist; my $members = $group->MembersObj; while (my $group_member = $members->Next) { my $member = $group_member->MemberObj; next unless $member->IsUser(); $idlist->{$member->Object->Id}++; } foreach my $member ( @{$entry->{$attr}} ) { my ($user) = grep { $_->{$user_attr} eq $member } @ldap_user_entries; my $rt_user = RT::User->new($RT::SystemUser); my ($res,$msg) = $rt_user->Load($user->{uid}); unless ($res) { diag("Couldn't load user $user->{uid}: $msg"); next; } ok($group->HasMember($rt_user->PrincipalObj->Id),"Correctly assigned $user->{uid} to $entry->{cn}"); delete $idlist->{$rt_user->Id}; } is(keys %$idlist,0,"No dangling users"); } my $group = RT::Group->new($RT::SystemUser); $group->LoadUserDefinedGroup( "42" ); ok( !$group->Id ); $group->LoadByCols( Domain => 'UserDefined', Name => "42", ); ok( !$group->Id ); } done_testing; rt-4.4.2/t/ldapimport/user-import-cfs.t0000664000175000017500000000700713131430353017700 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; eval { require RT::LDAPImport; require Net::LDAP::Server::Test; 1; } or do { plan skip_all => 'Unable to test without RT::LDAPImport and Net::LDAP::Server::Test'; }; { my $cf = RT::CustomField->new(RT->SystemUser); my ($ok, $msg) = $cf->Create( Name => 'Employee Number', LookupType => 'RT::User', Type => 'FreeformSingle', Disabled => 0, ); ok $cf->Id, $msg; my $ocf = RT::ObjectCustomField->new(RT->SystemUser); ($ok, $msg) = $ocf->Create( CustomField => $cf->Id ); ok $ocf->Id, $msg; } my $importer = RT::LDAPImport->new; isa_ok($importer,'RT::LDAPImport'); my $ldap_port = 1024 + int rand(10000) + $$ % 1024; ok( my $server = Net::LDAP::Server::Test->new( $ldap_port, auto_schema => 1 ), "spawned test LDAP server on port $ldap_port"); my $ldap = Net::LDAP->new("localhost:$ldap_port"); $ldap->bind(); $ldap->add("ou=foo,dc=bestpractical,dc=com"); my @ldap_entries; for ( 0 .. 12 ) { my $username = "testuser$_"; my $dn = "uid=$username,ou=foo,dc=bestpractical,dc=com"; my $entry = { cn => "Test User $_ ".int rand(200), mail => "$username\@invalid.tld", uid => $username, employeeId => $_, objectClass => 'User', }; push @ldap_entries, { dn => $dn, %$entry }; $ldap->add( $dn, attr => [%$entry] ); } RT->Config->Set('LDAPHost',"ldap://localhost:$ldap_port"); RT->Config->Set('LDAPMapping', {Name => 'uid', EmailAddress => 'mail', RealName => 'cn', 'UserCF.Employee Number' => 'employeeId',}); RT->Config->Set('LDAPBase','ou=foo,dc=bestpractical,dc=com'); RT->Config->Set('LDAPFilter','(objectClass=User)'); # check that we don't import ok($importer->import_users()); { my $users = RT::Users->new($RT::SystemUser); for my $username (qw/RT_System root Nobody/) { $users->Limit( FIELD => 'Name', OPERATOR => '!=', VALUE => $username, ENTRYAGGREGATOR => 'AND' ); } is($users->Count,0); } # check that we do import ok($importer->import_users( import => 1 )); for my $entry (@ldap_entries) { my $user = RT::User->new($RT::SystemUser); $user->LoadByCols( EmailAddress => $entry->{mail}, Realname => $entry->{cn}, Name => $entry->{uid} ); ok($user->Id, "Found $entry->{cn} as ".$user->Id); ok(!$user->Privileged, "User created as Unprivileged"); is($user->FirstCustomFieldValue('Employee Number'), $entry->{employeeId}, "cf is good: $entry->{employeeId}"); } # import again, check that it was cleared { my $delete = $ldap_entries[0]; $ldap->modify( $delete->{dn}, delete => ['employeeId'] ); delete $delete->{employeeId}; my $update = $ldap_entries[1]; $ldap->modify( $update->{dn}, replace => ['employeeId' => 42] ); $update->{employeeId} = 42; ok($importer->import_users( import => 1 )); for my $entry (@ldap_entries[0,1]) { my $user = RT::User->new($RT::SystemUser); $user->LoadByCols( EmailAddress => $entry->{mail}, Realname => $entry->{cn}, Name => $entry->{uid} ); ok($user->Id, "Found $entry->{cn} as ".$user->Id); is($user->FirstCustomFieldValue('Employee Number'), $entry->{employeeId}, "cf is updated"); } } # can't unbind earlier or the server will die $ldap->unbind; done_testing; rt-4.4.2/t/ldapimport/group-callbacks.t0000664000175000017500000000623213131430353017711 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; eval { require RT::LDAPImport; require Net::LDAP::Server::Test; 1; } or do { plan skip_all => 'Unable to test without RT::LDAPImport and Net::LDAP::Server::Test'; }; my $importer = RT::LDAPImport->new; isa_ok($importer,'RT::LDAPImport'); my $ldap_port = 1024 + int rand(10000) + $$ % 1024; ok( my $server = Net::LDAP::Server::Test->new( $ldap_port, auto_schema => 1 ), "spawned test LDAP server on port $ldap_port"); my $ldap = Net::LDAP->new("localhost:$ldap_port"); $ldap->bind(); $ldap->add("dc=bestpractical,dc=com"); my @ldap_user_entries; for ( 1 .. 12 ) { my $username = "testuser$_"; my $dn = "uid=$username,ou=foo,dc=bestpractical,dc=com"; my $entry = { dn => $dn, cn => "Test User $_", mail => "$username\@invalid.tld", uid => $username, objectClass => 'User', }; push @ldap_user_entries, $entry; $ldap->add( $dn, attr => [%$entry] ); } my @ldap_group_entries; for ( 1 .. 4 ) { my $groupname = "Test Group $_"; my $dn = "cn=$groupname,ou=groups,dc=bestpractical,dc=com"; my $entry = { cn => $groupname, gid => $_, members => [ map { 'mail="'. $_->{'mail'} .'"' } @ldap_user_entries[($_-1),($_+3),($_+7)] ], objectClass => 'Group', }; $ldap->add( $dn, attr => [%$entry] ); push @ldap_group_entries, $entry; } RT->Config->Set('LDAPHost',"ldap://localhost:$ldap_port"); RT->Config->Set('LDAPMapping', {Name => 'uid', EmailAddress => 'mail', RealName => 'cn'}); RT->Config->Set('LDAPBase','dc=bestpractical,dc=com'); RT->Config->Set('LDAPFilter','(objectClass=User)'); RT->Config->Set('LDAPSkipAutogeneratedGroup',1); RT->Config->Set('LDAPGroupBase','dc=bestpractical,dc=com'); RT->Config->Set('LDAPGroupFilter','(objectClass=Group)'); RT->Config->Set('LDAPGroupMapping', { Name => 'cn', Member_Attr => sub { my %args = @_; my $self = $args{'self'}; my $members = $args{ldap_entry}->get_value('members', asref => 1); foreach my $record ( @$members ) { my $user = RT::User->new( RT->SystemUser ); $user->LoadByEmail($record =~ /mail="(.*)"/); $self->_users->{ lc $record } = $user->Name; } return @$members; }, }); ok( $importer->import_users( import => 1 ), 'imported users'); # no id mapping { ok( $importer->import_groups( import => 1 ), "imported groups" ); is_member_of('testuser1', 'Test Group 1'); } done_testing; sub is_member_of { my $uname = shift; my $gname = shift; my $group = get_group($gname); return ok(0, "found group $gname") unless $group->id; my $user = RT::User->new($RT::SystemUser); $user->Load( $uname ); return ok(0, "found user $uname") unless $user->id; return ok($group->HasMember($user->id), "$uname is member of $gname"); } sub get_group { my $gname = shift; my $group = RT::Group->new($RT::SystemUser); $group->LoadUserDefinedGroup( $gname ); return $group; } rt-4.4.2/t/ldapimport/group-import.t0000664000175000017500000001170613131430353017306 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; eval { require RT::LDAPImport; require Net::LDAP::Server::Test; 1; } or do { plan skip_all => 'Unable to test without RT::LDAPImport and Net::LDAP::Server::Test'; }; my $importer = RT::LDAPImport->new; isa_ok($importer,'RT::LDAPImport'); my $ldap_port = 1024 + int rand(10000) + $$ % 1024; ok( my $server = Net::LDAP::Server::Test->new( $ldap_port, auto_schema => 1 ), "spawned test LDAP server on port $ldap_port"); my $ldap = Net::LDAP->new("localhost:$ldap_port"); $ldap->bind(); $ldap->add("dc=bestpractical,dc=com"); my @ldap_user_entries; for ( 1 .. 12 ) { my $username = "testuser$_"; my $dn = "uid=$username,ou=foo,dc=bestpractical,dc=com"; my $entry = { dn => $dn, cn => "Test User $_ ".int rand(200), mail => "$username\@invalid.tld", uid => $username, objectClass => 'User', }; push @ldap_user_entries, $entry; $ldap->add( $dn, attr => [%$entry] ); } my @ldap_group_entries; for ( 1 .. 4 ) { my $groupname = "Test Group $_"; my $dn = "cn=$groupname,ou=groups,dc=bestpractical,dc=com"; my $entry = { cn => $groupname, members => [ map { $_->{dn} } @ldap_user_entries[($_-1),($_+3),($_+7)] ], memberUid => [ map { $_->{uid} } @ldap_user_entries[($_+1),($_+3),($_+5)] ], objectClass => 'Group', }; $ldap->add( $dn, attr => [%$entry] ); push @ldap_group_entries, $entry; } $ldap->add( "cn=42,ou=groups,dc=bestpractical,dc=com", attr => [ cn => "42", members => [ "uid=testuser1,ou=foo,dc=bestpractical,dc=com" ], objectClass => 'Group', ], ); RT->Config->Set('LDAPHost',"ldap://localhost:$ldap_port"); RT->Config->Set('LDAPMapping', {Name => 'uid', EmailAddress => 'mail', RealName => 'cn'}); RT->Config->Set('LDAPBase','dc=bestpractical,dc=com'); RT->Config->Set('LDAPFilter','(objectClass=User)'); RT->Config->Set('LDAPSkipAutogeneratedGroup',1); ok($importer->import_users( import => 1 )); for my $entry (@ldap_user_entries) { my $user = RT::User->new($RT::SystemUser); $user->LoadByCols( EmailAddress => $entry->{mail}, Realname => $entry->{cn}, Name => $entry->{uid} ); ok($user->Id, "Found $entry->{cn} as ".$user->Id); } RT->Config->Set('LDAPGroupBase','dc=bestpractical,dc=com'); RT->Config->Set('LDAPGroupFilter','(objectClass=Group)'); RT->Config->Set('LDAPGroupMapping', {Name => 'cn', Member_Attr => 'members', }); # confirm that we skip the import ok( $importer->import_groups() ); { my $groups = RT::Groups->new($RT::SystemUser); $groups->LimitToUserDefinedGroups; is($groups->Count,0); } import_group_members_ok( members => 'dn' ); RT->Config->Set('LDAPGroupMapping', {Name => 'cn', Member_Attr => 'memberUid', Member_Attr_Value => 'uid', }); import_group_members_ok( memberUid => 'uid' ); { my $uid = $ldap_user_entries[2]->{uid}; # the first user used for memberUid my $user = RT::User->new($RT::SystemUser); my ($ok, $msg) = $user->Load($uid); ok $ok, "Loaded user #$uid" or diag $msg; ($ok, $msg) = $user->SetDisabled(1); ok $ok, "Disabled user #$uid" or diag $msg; } import_group_members_ok( memberUid => 'uid' ); sub import_group_members_ok { my $attr = shift; my $user_attr = shift; ok( $importer->import_groups( import => 1 ), "imported groups" ); for my $entry (@ldap_group_entries) { my $group = RT::Group->new($RT::SystemUser); $group->LoadUserDefinedGroup( $entry->{cn} ); ok($group->Id, "Found $entry->{cn} as ".$group->Id); my $idlist; my $members = $group->MembersObj; while (my $group_member = $members->Next) { my $member = $group_member->MemberObj; next unless $member->IsUser(); $idlist->{$member->Object->Id}++; } foreach my $member ( @{$entry->{$attr}} ) { my ($user) = grep { $_->{$user_attr} eq $member } @ldap_user_entries; my $rt_user = RT::User->new($RT::SystemUser); my ($res,$msg) = $rt_user->Load($user->{uid}); unless ($res) { diag("Couldn't load user $user->{uid}: $msg"); next; } ok($group->HasMember($rt_user->PrincipalObj->Id),"Correctly assigned $user->{uid} to $entry->{cn}"); delete $idlist->{$rt_user->Id}; } is(keys %$idlist,0,"No dangling users"); } my $group = RT::Group->new($RT::SystemUser); $group->LoadUserDefinedGroup( "42" ); ok( !$group->Id ); $group->LoadByCols( Domain => 'UserDefined', Name => "42", ); ok( !$group->Id ); } done_testing; rt-4.4.2/t/ldapimport/user-import-privileged.t0000664000175000017500000000424413131430353021257 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; eval { require RT::LDAPImport; require Net::LDAP::Server::Test; 1; } or do { plan skip_all => 'Unable to test without RT::LDAPImport and Net::LDAP::Server::Test'; }; my $importer = RT::LDAPImport->new; isa_ok($importer,'RT::LDAPImport'); my $ldap_port = 1024 + int rand(10000) + $$ % 1024; ok( my $server = Net::LDAP::Server::Test->new( $ldap_port, auto_schema => 1 ), "spawned test LDAP server on port $ldap_port"); my $ldap = Net::LDAP->new("localhost:$ldap_port"); $ldap->bind(); $ldap->add("ou=foo,dc=bestpractical,dc=com"); my @ldap_entries; for ( 1 .. 13 ) { my $username = "testuser$_"; my $dn = "uid=$username,ou=foo,dc=bestpractical,dc=com"; my $entry = { cn => "Test User $_ ".int rand(200), mail => "$username\@invalid.tld", uid => $username, objectClass => 'User', }; push @ldap_entries, $entry; $ldap->add( $dn, attr => [%$entry] ); } RT->Config->Set('LDAPHost',"ldap://localhost:$ldap_port"); RT->Config->Set('LDAPMapping', {Name => 'uid', EmailAddress => 'mail', RealName => 'cn'}); RT->Config->Set('LDAPBase','ou=foo,dc=bestpractical,dc=com'); RT->Config->Set('LDAPFilter','(objectClass=User)'); RT->Config->Set('LDAPCreatePrivileged', 1); # check that we don't import ok($importer->import_users()); { my $users = RT::Users->new($RT::SystemUser); for my $username (qw/RT_System root Nobody/) { $users->Limit( FIELD => 'Name', OPERATOR => '!=', VALUE => $username, ENTRYAGGREGATOR => 'AND' ); } is($users->Count,0); } # check that we do import ok($importer->import_users( import => 1 )); for my $entry (@ldap_entries) { my $user = RT::User->new($RT::SystemUser); $user->LoadByCols( EmailAddress => $entry->{mail}, Realname => $entry->{cn}, Name => $entry->{uid} ); ok($user->Id, "Found $entry->{cn} as ".$user->Id); ok($user->Privileged, "User created as Privileged"); } # can't unbind earlier or the server will die $ldap->unbind; done_testing; rt-4.4.2/t/validator/0000775000175000017500000000000013131430353014262 5ustar vagrantvagrantrt-4.4.2/t/validator/group_members.t0000664000175000017500000000723613131430353017325 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => undef; RT::Test->db_is_valid; { my $group = RT::Test->load_or_create_group('test', Members => [] ); ok $group, "loaded or created a group"; RT::Test->db_is_valid; } # G1 -> G2 { my $group1 = RT::Test->load_or_create_group( 'test1', Members => [] ); ok $group1, "loaded or created a group"; my $group2 = RT::Test->load_or_create_group( 'test2', Members => [ $group1 ]); ok $group2, "loaded or created a group"; ok $group2->HasMember( $group1->id ), "has member"; ok $group2->HasMemberRecursively( $group1->id ), "has member"; RT::Test->db_is_valid; $RT::Handle->dbh->do("DELETE FROM CachedGroupMembers"); DBIx::SearchBuilder::Record::Cachable->FlushCache; ok !$group2->HasMemberRecursively( $group1->id ), "has no member, broken DB"; my ($ecode, $res) = RT::Test->run_validator(resolve => 1); isnt($ecode, 0, 'non-zero exit code'); ok $group2->HasMember( $group1->id ), "has member"; ok $group2->HasMemberRecursively( $group1->id ), "has member"; RT::Test->db_is_valid; } # G1 <- G2 <- G3 <- G4 <- G5 { my @groups; for (1..5) { my $child = @groups? $groups[-1]: undef; my $group = RT::Test->load_or_create_group( 'test'. $_, Members => [ $child? ($child): () ] ); ok $group, "loaded or created a group"; ok $group->HasMember( $child->id ), "has member" if $child; ok $group->HasMemberRecursively( $_->id ), "has member" foreach @groups; push @groups, $group; } RT::Test->db_is_valid; $RT::Handle->dbh->do("DELETE FROM CachedGroupMembers"); DBIx::SearchBuilder::Record::Cachable->FlushCache; ok !$groups[1]->HasMemberRecursively( $groups[0]->id ), "has no member, broken DB"; my ($ecode, $res) = RT::Test->run_validator(resolve => 1); isnt($ecode, 0, 'non-zero exit code'); for ( my $i = 1; $i < @groups; $i++ ) { ok $groups[$i]->HasMember( $groups[$i-1]->id ), "has member"; ok $groups[$i]->HasMemberRecursively( $groups[$_]->id ), "has member" foreach 0..$i-1; } RT::Test->db_is_valid; } # G1 <- (G2, G3, G4, G5) { my @groups; for (2..5) { my $group = RT::Test->load_or_create_group( 'test'. $_, Members => [] ); ok $group, "loaded or created a group"; push @groups, $group; } my $parent = RT::Test->load_or_create_group( 'test1', Members => \@groups ); ok $parent, "loaded or created a group"; RT::Test->db_is_valid; } # G1 <- (G2, G3, G4) <- G5 { my $gchild = RT::Test->load_or_create_group( 'test5', Members => [] ); ok $gchild, "loaded or created a group"; my @groups; for (2..4) { my $group = RT::Test->load_or_create_group( 'test'. $_, Members => [ $gchild ] ); ok $group, "loaded or created a group"; push @groups, $group; } my $parent = RT::Test->load_or_create_group( 'test1', Members => \@groups ); ok $parent, "loaded or created a group"; RT::Test->db_is_valid; } # group without principal record and cgm records # was causing infinite loop as principal was not created { my $group = RT::Test->load_or_create_group('Test'); ok $group && $group->id, 'loaded or created group'; my $dbh = $group->_Handle->dbh; $dbh->do('DELETE FROM Principals WHERE id = ?', {RaiseError => 1}, $group->id); $dbh->do('DELETE FROM CachedGroupMembers WHERE GroupId = ?', {RaiseError => 1}, $group->id); DBIx::SearchBuilder::Record::Cachable->FlushCache; my ($ecode, $res) = RT::Test->run_validator(resolve => 1, timeout => 30); isnt($ecode, 0, 'non-zero exit code'); RT::Test->db_is_valid; } done_testing; rt-4.4.2/t/charts/0000775000175000017500000000000013131430353013561 5ustar vagrantvagrantrt-4.4.2/t/charts/basics.t0000664000175000017500000000516613131430353015222 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use RT::Ticket; my $q = RT::Test->load_or_create_queue( Name => 'General' ); ok $q && $q->id, 'loaded or created queue'; my $queue = $q->Name; my @tickets = add_tix_from_data( { Subject => 'n', Status => 'new' }, { Subject => 'o', Status => 'open' }, { Subject => 'o', Status => 'open' }, { Subject => 'r', Status => 'resolved' }, { Subject => 'r', Status => 'resolved' }, { Subject => 'r', Status => 'resolved' }, ); use_ok 'RT::Report::Tickets'; { my $report = RT::Report::Tickets->new( RT->SystemUser ); my %columns = $report->SetupGroupings( Query => 'Queue = '. $q->id, GroupBy => ['Status'], Function => ['COUNT'], ); $report->SortEntries; my @colors = RT->Config->Get("ChartColors"); my $expected = { 'thead' => [ { 'cells' => [ { 'value' => 'Status', 'type' => 'head' }, { 'rowspan' => 1, 'value' => 'Ticket count', 'type' => 'head', 'color' => $colors[0] }, ], } ], 'tfoot' => [ { 'cells' => [ { 'colspan' => 1, 'value' => 'Total', 'type' => 'label' }, { 'value' => 6, 'type' => 'value' }, ], 'even' => 0 } ], 'tbody' => [ { 'cells' => [ { 'value' => 'new', 'type' => 'label' }, { 'query' => '(Status = \'new\')', 'value' => '1', 'type' => 'value' }, ], 'even' => 1 }, { 'cells' => [ { 'value' => 'open', 'type' => 'label' }, { 'query' => '(Status = \'open\')', 'value' => '2', 'type' => 'value' } ], 'even' => 0 }, { 'cells' => [ { 'value' => 'resolved', 'type' => 'label' }, { 'query' => '(Status = \'resolved\')', 'value' => '3', 'type' => 'value' } ], 'even' => 1 }, ] }; my %table = $report->FormatTable( %columns ); is_deeply( \%table, $expected, "basic table" ); } done_testing; sub add_tix_from_data { my @data = @_; my @res = (); while (@data) { my %info = %{ shift(@data) }; my $t = RT::Ticket->new($RT::SystemUser); my ( $id, undef, $msg ) = $t->Create( Queue => $q->id, %info ); ok( $id, "ticket created" ) or diag("error: $msg"); is $t->Status, $info{'Status'}, 'correct status'; push @res, $t; } return @res; } rt-4.4.2/t/charts/group-by-cf.t0000664000175000017500000000414213131430353016101 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use RT::Ticket; my $q = RT::Test->load_or_create_queue( Name => 'General' ); ok $q && $q->id, 'loaded or created queue'; my $queue = $q->Name; my $cf = RT::CustomField->new(RT->SystemUser); my ($id,$msg) = $cf->Create(Name => 'Test', Type => 'Freeform', MaxValues => '1', Queue => $q->id); ok $id, $msg; my $cfid = $cf->id; my @tickets = RT::Test->create_tickets( {}, { Subject => 't1', Status => 'new', CustomFields => { Test => 'a' } }, { Subject => 't2', Status => 'open', CustomFields => { Test => 'b' } }, ); use_ok 'RT::Report::Tickets'; { my $report = RT::Report::Tickets->new( RT->SystemUser ); my %columns = $report->SetupGroupings( Query => 'Queue = '. $q->id, GroupBy => ["CF.{$cfid}"], # TODO: CF.{Name} is not supported at the moment Function => ['COUNT'], ); $report->SortEntries; my @colors = RT->Config->Get("ChartColors"); my $expected = { 'thead' => [ { 'cells' => [ { 'value' => 'Custom field Test', 'type' => 'head' }, { 'rowspan' => 1, 'value' => 'Ticket count', 'type' => 'head', 'color' => $colors[0] }, ], } ], 'tfoot' => [ { 'cells' => [ { 'colspan' => 1, 'value' => 'Total', 'type' => 'label' }, { 'value' => 2, 'type' => 'value' }, ], 'even' => 1 } ], 'tbody' => [ { 'cells' => [ { 'value' => 'a', 'type' => 'label' }, { 'query' => "(CF.{$cfid} = 'a')", 'value' => '1', 'type' => 'value' }, ], 'even' => 1 }, { 'cells' => [ { 'value' => 'b', 'type' => 'label' }, { 'query' => "(CF.{$cfid} = 'b')", 'value' => '1', 'type' => 'value' }, ], 'even' => 0 }, ] }; my %table = $report->FormatTable( %columns ); is_deeply( \%table, $expected, "basic table" ); } done_testing; rt-4.4.2/t/charts/compound-sql-function.t0000664000175000017500000001120113131430353020205 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 14; use RT::Ticket; my $q1 = RT::Test->load_or_create_queue( Name => 'One' ); ok $q1 && $q1->id, 'loaded or created queue'; my $q2 = RT::Test->load_or_create_queue( Name => 'Two' ); ok $q2 && $q2->id, 'loaded or created queue'; my @tickets = add_tix_from_data( { Queue => $q1->id, Resolved => 3*60 }, { Queue => $q1->id, Resolved => 3*60*60 }, { Queue => $q1->id, Resolved => 3*24*60*60 }, { Queue => $q1->id, Resolved => 3*30*24*60*60 }, { Queue => $q1->id, Resolved => 9*30*24*60*60 }, { Queue => $q2->id, Resolved => 7*60 }, { Queue => $q2->id, Resolved => 7*60*60 }, { Queue => $q2->id, Resolved => 7*24*60*60 }, { Queue => $q2->id, Resolved => 7*30*24*60*60 }, { Queue => $q2->id, Resolved => 24*30*24*60*60 }, ); use_ok 'RT::Report::Tickets'; { my $report = RT::Report::Tickets->new( RT->SystemUser ); my %columns = $report->SetupGroupings( Query => 'id > 0', GroupBy => ['Queue'], Function => ['ALL(Created-Resolved)'], ); $report->SortEntries; my @colors = RT->Config->Get("ChartColors"); my $expected = { 'thead' => [ { 'cells' => [ { 'rowspan' => 2, 'value' => 'Queue', 'type' => 'head' }, { 'colspan' => 4, 'value' => 'Summary of Created-Resolved', 'type' => 'head' } ] }, { 'cells' => [ { 'value' => 'Minimum', 'type' => 'head', 'color' => $colors[0] }, { 'value' => 'Average', 'type' => 'head', 'color' => $colors[1] }, { 'value' => 'Maximum', 'type' => 'head', 'color' => $colors[2] }, { 'value' => 'Total', 'type' => 'head', 'color' => $colors[3] } ] } ], 'tfoot' => [ { 'cells' => [ { 'colspan' => 1, 'value' => 'Total', 'type' => 'label' }, { 'value' => '10m', 'type' => 'value' }, { 'value' => '8M 2W 3d', 'type' => 'value' }, { 'value' => '2Y 8M 2W', 'type' => 'value' }, { 'value' => '3Y 6M 3W', 'type' => 'value' } ], 'even' => 1 } ], 'tbody' => [ { 'cells' => [ { 'value' => 'One', 'type' => 'label' }, { 'query' => '(Queue = 3)', 'value' => '3m', 'type' => 'value' }, { 'query' => '(Queue = 3)', 'value' => '2M 1W 5d', 'type' => 'value' }, { 'query' => '(Queue = 3)', 'value' => '8M 3W 6d', 'type' => 'value' }, { 'query' => '(Queue = 3)', 'value' => '11M 4W 8h', 'type' => 'value' } ], 'even' => 1 }, { 'cells' => [ { 'value' => 'Two', 'type' => 'label' }, { 'query' => '(Queue = 4)', 'value' => '7m', 'type' => 'value' }, { 'query' => '(Queue = 4)', 'value' => '6M 4d 20h', 'type' => 'value' }, { 'query' => '(Queue = 4)', 'value' => '1Y 11M 3W', 'type' => 'value' }, { 'query' => '(Queue = 4)', 'value' => '2Y 6M 3W', 'type' => 'value' } ], 'even' => 0 } ] }; my %table = $report->FormatTable( %columns ); is_deeply( \%table, $expected, "basic table" ); } sub add_tix_from_data { my @data = @_; my @res = (); my $created = RT::Date->new( $RT::SystemUser ); $created->SetToNow; my $resolved = RT::Date->new( $RT::SystemUser ); while (@data) { $resolved->Set( Value => $created->Unix ); $resolved->AddSeconds( $data[0]{'Resolved'} ); my $t = RT::Ticket->new($RT::SystemUser); my ( $id, undef $msg ) = $t->Create( %{ shift(@data) }, Created => $created->ISO, Resolved => $resolved->ISO, ); ok( $id, "ticket created" ) or diag("error: $msg"); push @res, $t; } return @res; } rt-4.4.2/t/charts/group-by-sla.t0000664000175000017500000000506213131430353016272 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef, config => < '2', Levels => { '2' => { StartImmediately => 1, Response => { RealMinutes => 60 * 2 }, }, '4' => { StartImmediately => 1, Response => { RealMinutes => 60 * 4 }, }, }, )); THERE use RT::Ticket; my $q = RT::Test->load_or_create_queue( Name => 'test', SLADisabled => 0 ); ok $q && $q->id, 'loaded or created queue'; my $queue = $q->Name; my $t1 = RT::Ticket->new( $RT::SystemUser ); my $t1_id = $t1->Create( Queue => $queue, Subject => 'test 1' ); ok $t1_id, "created ticket #$t1_id"; is $t1->SLA, '2', 'default sla'; my $t2 = RT::Ticket->new( $RT::SystemUser ); my $t2_id = $t2->Create( Queue => $queue, Subject => 'test 2' ); ok $t2_id, "created ticket #$t2_id"; is $t2->SLA, '2', 'default sla'; $t2->SetSLA('4'); is $t2->SLA, '4', 'new sla'; my $t3 = RT::Ticket->new($RT::SystemUser); my $t3_id = $t3->Create( Queue => $queue, Subject => 'test 3' ); ok $t3_id, "created ticket #$t3_id"; is $t3->SLA, '2', 'default sla'; use_ok 'RT::Report::Tickets'; { my $report = RT::Report::Tickets->new( RT->SystemUser ); my %columns = $report->SetupGroupings( Query => 'Queue = '. $q->id, GroupBy => ["SLA"], Function => ['COUNT'], ); $report->SortEntries; my @colors = RT->Config->Get("ChartColors"); my $expected = { 'thead' => [ { 'cells' => [ { 'value' => 'SLA', 'type' => 'head' }, { 'rowspan' => 1, 'value' => 'Ticket count', 'type' => 'head', 'color' => $colors[0] }, ], } ], 'tfoot' => [ { 'cells' => [ { 'colspan' => 1, 'value' => 'Total', 'type' => 'label' }, { 'value' => 3, 'type' => 'value' }, ], 'even' => 1 } ], 'tbody' => [ { 'cells' => [ { 'value' => '2', 'type' => 'label' }, { 'query' => "(SLA = 2)", 'value' => '2', 'type' => 'value' }, ], 'even' => 1 }, { 'cells' => [ { 'value' => '4', 'type' => 'label' }, { 'query' => "(SLA = 4)", 'value' => '1', 'type' => 'value' }, ], 'even' => 0 }, ] }; my %table = $report->FormatTable( %columns ); is_deeply( \%table, $expected, "basic table" ); } done_testing; rt-4.4.2/t/articles/0000775000175000017500000000000013131430353014103 5ustar vagrantvagrantrt-4.4.2/t/articles/set-subject.t0000664000175000017500000001005113131430353016515 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use RT::CustomField; use RT::EmailParser; use RT::Queue; use RT::Ticket; use_ok 'RT::Class'; use_ok 'RT::Topic'; use_ok 'RT::Article'; # Variables to test return values my ($ret, $msg); # Create a test class my $class = RT::Class->new($RT::SystemUser); ($ret, $msg) = $class->Create('Name' => 'TestClass-'.$$, 'Description' => 'A general-purpose test class'); ok($ret, "Test class created: $msg"); # because id 0 represents global, it uses an empty Queue object... ($ret, $msg) = $class->AddToObject(RT::Queue->new($RT::SystemUser)); ok($ret, "Applied Class globally: $msg"); # Create some article custom fields my $bodyCF = RT::CustomField->new($RT::SystemUser); my $subjectCF = RT::CustomField->new($RT::SystemUser); ($ret, $msg) = $subjectCF->Create('Name' => 'Subject-'.$$, 'Type' => 'Text', 'MaxValues' => 1, 'LookupType' => 'RT::Class-RT::Article', 'Description' => 'The subject to be answered', 'Disabled' => 0); ok($ret, "Question CF created: $msg"); ($ret, $msg) = $bodyCF->Create('Name' => 'Body-'.$$, 'Type' => 'Text', 'MaxValues' => 1, 'LookupType' => 'RT::Class-RT::Article', 'Description' => 'The body to the subject', 'Disabled' => 0); ok($ret, "Answer CF created: $msg"); my ($sid, $bid) = ($subjectCF->Id, $bodyCF->Id); # Attach the custom fields to our class ($ret, $msg) = $subjectCF->AddToObject($class); ok($ret, "Subject CF added to class: $msg"); ($ret, $msg) = $bodyCF->AddToObject($class); ok($ret, "Body CF added to class: $msg"); my $article = RT::Article->new($RT::SystemUser); ($ret, $msg) = $article->Create(Name => 'First article '.$$, Summary => 'blah blah 1', Class => $class->Id, "CustomField-$bid" => 'This goes in the body', "CustomField-$sid" => 'This clobbers your subject', ); ok($ret, "article 1 created: $msg"); # Create a ticket. my $parser = RT::EmailParser->new(); $parser->ParseMIMEEntityFromScalar('From: root@localhost To: rt@example.com Subject: test ticket for articles This is some form of new request. May as well say something about Africa.'); my $ticket = RT::Ticket->new($RT::SystemUser); my $obj; ($ret, $obj, $msg) = $ticket->Create(Queue => 'General', Subject => 'test ticket for articles '.$$, MIMEObj => $parser->Entity); ok($ret, "Test ticket for articles created: $msg"); #### Right. That's our data. Now begin the real testing. my ($url, $m) = RT::Test->started_ok; ok($m->login, 'logged in'); $m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket->id, 'ticket update page' ); is($m->form_number(3)->find_input('UpdateSubject')->value,$ticket->Subject,'Ticket Subject Found'); $m->submit_form( form_number => 3, fields => { 'Articles-Include-Article-Named' => $article->Id }, button => 'Go', ); is($m->form_number(3)->find_input('UpdateSubject')->value,$ticket->Subject,'Ticket Subject Not Clobbered'); $m->get_ok("$url/Admin/Articles/Classes/"); $m->follow_link_ok( { text => 'TestClass-'.$$ } ); $m->submit_form_ok({ form_number => 3, fields => { SubjectOverride => $sid }, }); $m->content_contains("Added Subject Override: Subject-$$"); $m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket->id, 'ticket update page' ); is($m->form_number(3)->find_input('UpdateSubject')->value,$ticket->Subject,'Ticket Subject Found'); $m->submit_form( form_number => 3, fields => { 'Articles-Include-Article-Named' => $article->Name }, button => 'Go', ); is($m->form_number(3)->find_input('UpdateSubject')->value,$article->FirstCustomFieldValue("Subject-$$"),'Ticket Subject Clobbered'); undef $m; done_testing; rt-4.4.2/t/articles/queue-specific-class.t0000664000175000017500000001572413131430353020313 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 56; my ( $url, $m ) = RT::Test->started_ok; $m->login; my %class = map { $_ => '' } qw/foo bar/; diag "create classes foo and bar" if $ENV{TEST_VERBOSE}; for my $name ( keys %class ) { $m->get_ok( '/Admin/Articles/Classes/Modify.html?Create=1', 'class create page' ); $m->submit_form( form_number => 3, fields => { Name => $name, HotList => 1 }, ); $m->content_contains( "Modify the Class $name", 'created class $name' ); my ($id) = ( $m->content =~ /name="id" value="(\d+)"/ ); ok( $id, "id of $name" ); $class{$name} = $id; } diag "create articles in foo and bar" if $ENV{TEST_VERBOSE}; for my $name ( keys %class ) { $m->get_ok( '/Articles/Article/Edit.html?Class=' . $class{$name}, 'article create page' ); $m->submit_form( form_number => 2, fields => { Name => "article $name" } ); $m->content_like( qr/Article \d+ created/, "created article $name" ); } diag "apply foo to queue General" if $ENV{TEST_VERBOSE}; { $m->get_ok( '/Admin/Articles/Classes/Objects.html?id=' . $class{foo}, 'apply page' ); $m->submit_form( form_number => 3, fields => { 'AddClass-' . $class{foo} => 1 }, button => 'UpdateObjs', ); $m->content_contains( 'Object created', 'applied foo to General' ); } my $ticket_id; diag "create ticket in General" if $ENV{TEST_VERBOSE}; { $m->get_ok( '/Ticket/Create.html?Queue=1', 'ticket create page' ); $m->submit_form( form_number => 3, fields => { 'Subject' => 'test article', Content => 'test article' }, ); ($ticket_id) = ( $m->content =~ /Ticket \d+ created/ ); ok( $ticket_id, "id of ticket: $ticket_id" ); } diag "update ticket to see if there is article foo" if $ENV{TEST_VERBOSE}; { $m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id, 'ticket update page' ); $m->content_contains( 'article foo:', 'got article foo in hotlist' ); $m->content_lacks( 'article bar:', 'no article bar in hotlist' ); $m->submit_form( form_number => 3, fields => { 'Articles_Content' => 'article' }, button => 'Go', ); $m->content_like( qr/article foo.*article foo/s, 'selected article foo' ); $m->content_lacks( 'article bar', 'no article bar' ); $m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id, 'ticket update page' ); $m->submit_form( form_number => 3, fields => { 'Articles-Include-Article-Named' => 'article foo' }, button => 'Go', ); $m->content_like( qr/article foo.*article foo/s, 'selected article foo' ); $m->content_lacks( 'article bar', 'no article bar' ); $m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id, 'ticket update page' ); $m->submit_form( form_number => 3, fields => { 'Articles-Include-Article-Named' => 'articlei bar' }, button => 'Go', ); $m->content_unlike( qr/article foo.*article foo/s, 'no article foo' ); $m->content_lacks( 'article bar', 'no article bar' ); } diag "apply bar to globally" if $ENV{TEST_VERBOSE}; { $m->get_ok( '/Admin/Articles/Classes/Objects.html?id=' . $class{bar}, 'apply page' ); $m->submit_form( form_number => 3, fields => { 'AddClass-' . $class{bar} => 0 }, button => 'UpdateObjs', ); $m->content_contains( 'Object created', 'applied bar globally' ); } diag "update ticket to see if there are both article foo and bar" if $ENV{TEST_VERBOSE}; { $m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id, 'ticket update page' ); $m->content_contains( 'article foo:', 'got article foo in hotlist' ); $m->content_contains( 'article bar:', 'got article bar in hotlist' ); $m->submit_form( form_number => 3, fields => { 'Articles_Content' => 'article' }, button => 'Go', ); $m->content_like( qr/article foo.*article foo/s, 'selected article foo' ); $m->content_like( qr/article bar.*article bar/s, 'selected article bar' ); $m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id, 'ticket update page' ); $m->submit_form( form_number => 3, fields => { 'Articles-Include-Article-Named' => 'article foo' }, button => 'Go', ); $m->content_like( qr/article foo.*article foo/s, 'selected article foo' ); $m->content_unlike( qr/article bar.*article bar/s, 'no article bar' ); $m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id, 'ticket update page' ); $m->submit_form( form_number => 3, fields => { 'Articles-Include-Article-Named' => 'article bar' }, button => 'Go', ); $m->content_like( qr/article bar.*article bar/s, 'selected article bar' ); $m->content_unlike( qr/article foo.*article foo/s, 'no article foo' ); } diag "remove both foo and bar" if $ENV{TEST_VERBOSE}; { $m->get_ok( '/Admin/Articles/Classes/Objects.html?id=' . $class{foo}, 'apply page' ); $m->submit_form( form_number => 3, fields => { 'RemoveClass-' . $class{foo} => 1 }, button => 'UpdateObjs', ); $m->content_contains( 'Object deleted', 'removed foo' ); $m->get_ok( '/Admin/Articles/Classes/Objects.html?id=' . $class{bar}, 'apply page' ); $m->submit_form( form_number => 3, fields => { 'RemoveClass-' . $class{bar} => 0 }, button => 'UpdateObjs', ); $m->content_contains( 'Object deleted', 'remoked bar' ); } diag "update ticket to see if there are both article foo and bar" if $ENV{TEST_VERBOSE}; { $m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id, 'ticket update page' ); $m->content_lacks( 'article foo:', 'no article foo in hotlist' ); $m->content_lacks( 'article bar:', 'no article bar in hotlist' ); $m->submit_form( form_number => 3, fields => { 'Articles_Content' => 'article' }, button => 'Go', ); $m->content_lacks( 'article foo', 'no article foo' ); $m->content_lacks( 'article bar', 'no article bar' ); $m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id, 'ticket update page' ); $m->submit_form( form_number => 3, fields => { 'Articles-Include-Article-Named' => 'article foo' }, button => 'Go', ); $m->content_lacks( 'article foo', 'no article foo' ); $m->content_lacks( 'article bar', 'no article bar' ); $m->get_ok( '/Ticket/Update.html?Action=Comment&id=' . $ticket_id, 'ticket update page' ); $m->submit_form( form_number => 3, fields => { 'Articles-Include-Article-Named' => 'article bar' }, button => 'Go', ); $m->content_lacks( 'article foo', 'no article foo' ); $m->content_lacks( 'article bar', 'no article bar' ); } rt-4.4.2/t/articles/interface.t0000664000175000017500000002315013131430353016231 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 53; use RT::CustomField; use RT::EmailParser; use RT::Queue; use RT::Ticket; use_ok 'RT::Class'; use_ok 'RT::Topic'; use_ok 'RT::Article'; my ($url, $m) = RT::Test->started_ok; # Variables to test return values my ($ret, $msg); # Create a test class my $class = RT::Class->new($RT::SystemUser); ($ret, $msg) = $class->Create('Name' => 'tlaTestClass-'.$$, 'Description' => 'A general-purpose test class'); ok($ret, "Test class created"); my $class2 = RT::Class->new($RT::SystemUser); ($ret, $msg) = $class2->Create('Name' => 'tlaTestClass2-'.$$, 'Description' => 'Another general-purpose test class'); ok($ret, "Test class 2 created"); # Create a hierarchy of test topics my $topic1 = RT::Topic->new($RT::SystemUser); my $topic11 = RT::Topic->new($RT::SystemUser); my $topic12 = RT::Topic->new($RT::SystemUser); my $topic2 = RT::Topic->new($RT::SystemUser); my $topic_class2= RT::Topic->new($RT::SystemUser); my $gtopic = RT::Topic->new($RT::SystemUser); ($ret, $msg) = $topic1->Create('Parent' => 0, 'Name' => 'tlaTestTopic1-'.$$, 'ObjectType' => 'RT::Class', 'ObjectId' => $class->Id); ok($ret, "Topic 1 created"); ($ret, $msg) = $topic11->Create('Parent' => $topic1->Id, 'Name' => 'tlaTestTopic1.1-'.$$, 'ObjectType' => 'RT::Class', 'ObjectId' => $class->Id); ok($ret, "Topic 1.1 created"); ($ret, $msg) = $topic12->Create('Parent' => $topic1->Id, 'Name' => 'tlaTestTopic1.2-'.$$, 'ObjectType' => 'RT::Class', 'ObjectId' => $class->Id); ok($ret, "Topic 1.2 created"); ($ret, $msg) = $topic2->Create('Parent' => 0, 'Name' => 'tlaTestTopic2-'.$$, 'ObjectType' => 'RT::Class', 'ObjectId' => $class->Id); ok($ret, "Topic 2 created"); ($ret, $msg) = $topic_class2->Create('Parent' => 0, 'Name' => 'tlaTestTopicClass2-'.$$, 'ObjectType' => 'RT::Class', 'ObjectId' => $class2->Id); ok($ret, "Topic Class2 created"); ($ret, $msg) = $gtopic->Create('Parent' => 0, 'Name' => 'tlaTestTopicGlobal-'.$$, 'ObjectType' => 'RT::System', 'ObjectId' => $RT::System->Id ); ok($ret, "Global Topic created"); # Create some article custom fields my $questionCF = RT::CustomField->new($RT::SystemUser); my $answerCF = RT::CustomField->new($RT::SystemUser); ($ret, $msg) = $questionCF->Create('Name' => 'Question-'.$$, 'Type' => 'Text', 'MaxValues' => 1, 'LookupType' => 'RT::Class-RT::Article', 'Description' => 'The question to be answered', 'Disabled' => 0); ok($ret, "Question CF created: $msg"); ($ret, $msg) = $answerCF->Create('Name' => 'Answer-'.$$, 'Type' => 'Text', 'MaxValues' => 1, 'LookupType' => 'RT::Class-RT::Article', 'Description' => 'The answer to the question', 'Disabled' => 0); ok($ret, "Answer CF created: $msg"); # Attach the custom fields to our class ($ret, $msg) = $questionCF->AddToObject($class); ok($ret, "Question CF added to class: $msg"); ($ret, $msg) = $answerCF->AddToObject($class); ok($ret, "Answer CF added to class: $msg"); my ($qid, $aid) = ($questionCF->Id, $answerCF->Id); my %cvals = ('article1q' => 'Some question about swallows', 'article1a' => 'Some answer about Europe and Africa', 'article2q' => 'Another question about Monty Python', 'article2a' => 'Romani ite domum', 'article3q' => 'Why should I eat my supper?', 'article3a' => 'There are starving children in Africa', 'article4q' => 'What did Brian originally write?', 'article4a' => 'Romanes eunt domus'); # Create an article or two with our custom field values. my $article1 = RT::Article->new($RT::SystemUser); my $article2 = RT::Article->new($RT::SystemUser); my $article3 = RT::Article->new($RT::SystemUser); my $article4 = RT::Article->new($RT::SystemUser); ($ret, $msg) = $article1->Create(Name => 'First article '.$$, Summary => 'blah blah 1', Class => $class->Id, Topics => [$topic1->Id], "CustomField-$qid" => $cvals{'article1q'}, "CustomField-$aid" => $cvals{'article1a'}, ); ok($ret, "article 1 created"); ($ret, $msg) = $article2->Create(Name => 'Second article '.$$, Summary => 'foo bar 2', Class => $class->Id, Topics => [$topic11->Id], "CustomField-$qid" => $cvals{'article2q'}, "CustomField-$aid" => $cvals{'article2a'}, ); ok($ret, "article 2 created"); ($ret, $msg) = $article3->Create(Name => 'Third article '.$$, Summary => 'ping pong 3', Class => $class->Id, Topics => [$topic12->Id], "CustomField-$qid" => $cvals{'article3q'}, "CustomField-$aid" => $cvals{'article3a'}, ); ok($ret, "article 3 created"); ($ret, $msg) = $article4->Create(Name => 'Fourth article '.$$, Summary => 'hoi polloi 4', Class => $class->Id, Topics => [$topic2->Id], "CustomField-$qid" => $cvals{'article4q'}, "CustomField-$aid" => $cvals{'article4a'}, ); ok($ret, "article 4 created"); # Create a ticket. my $parser = RT::EmailParser->new(); $parser->ParseMIMEEntityFromScalar('From: root@localhost To: rt@example.com Subject: test ticket for articles This is some form of new request. May as well say something about Africa.'); my $ticket = RT::Ticket->new($RT::SystemUser); my $obj; ($ret, $obj, $msg) = $ticket->Create(Queue => 'General', Subject => 'test ticket for articles '.$$, MIMEObj => $parser->Entity); ok($ret, "Test ticket for articles created: $msg"); #### Right. That's our data. Now begin the real testing. isa_ok($m, 'Test::WWW::Mechanize'); ok($m->login, 'logged in'); $m->follow_link_ok( { text => 'Articles', url_regex => qr!^/Articles/index.html! }, 'UI -> Articles' ); $m->content_contains($article3->Name); $m->follow_link_ok( {text => $article3->Name}, 'Articles -> '. $article3->Name ); $m->title_is("Article #" . $article3->Id . ": " . $article3->Name); $m->follow_link_ok( { text => 'Modify'}, 'Article -> Modify' ); { $m->content_like(qr/Refers to/, "found links edit box"); my $ticket_id = $ticket->Id; my $turi = "t:$ticket_id"; my $a1uri = 'a:'.$article1->Id; $m->submit_form(form_name => 'EditArticle', fields => { $article3->Id.'-RefersTo' => $turi, 'RefersTo-'.$article3->Id => $a1uri } ); $m->content_like(qr/Ticket.*$ticket_id/, "Ticket linkto was created"); $m->content_like(qr/URI.*$a1uri/, "Article linkfrom was created"); } # Now try to extract an article from a link. $m->get_ok($url."/Ticket/Display.html?id=".$ticket->Id, "Loaded ticket display"); $m->content_like(qr/Extract Article/, "Article extraction link shows up"); $m->follow_link_ok( { text => 'Extract Article' }, '-> Extract Article' ); $m->content_contains($class->Name); $m->follow_link_ok( { text => $class->Name }, 'Extract Article -> '. $class->Name ); $m->content_like(qr/Select topics for this article/i, 'selecting topic'); $m->form_number(2); $m->set_visible([option => $topic1->Name]); $m->submit; $m->form_number(2); $m->set_visible([option => $answerCF->Name]); $m->click(); $m->title_like(qr/Create a new article/, "got edit page from extraction"); $m->submit_form(form_name => 'EditArticle'); $m->title_like(qr/Modify article/); $m->follow_link_ok( { text => 'Display' }, '-> Display' ); $m->content_like(qr/Africa/, "Article content exist"); $m->content_contains($ticket->Subject, "Article references originating ticket"); diag("Test creating a ticket in Class2 and make sure we don't see Class1 Topics") if $ENV{TEST_VERBOSE}; { $m->follow_link_ok( { text => 'Articles', url_regex => qr!^/Articles/! }, 'UI -> Articles' ); $m->follow_link_ok( {text => 'New Article' }, 'Articles -> New Article' ); $m->follow_link_ok( {text => 'in class '.$class2->Name }, 'New Article -> in class '.$class2->Name ); $m->content_lacks( $topic1->Name, "Topic1 from Class1 isn't shown" ); $m->content_lacks( $topic11->Name, "Topic11 from Class1 isn't shown" ); $m->content_lacks( $topic12->Name, "Topic12 from Class1 isn't shown" ); $m->content_lacks( $topic2->Name, "Topic2 from Class1 isn't shown" ); $m->content_contains( $gtopic->Name, "Global Topic is shown" ); $m->content_contains( $topic_class2->Name, "Class2 topic is shown" ); } rt-4.4.2/t/articles/article.t0000664000175000017500000001467713131430353015732 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 67; use_ok 'RT::Articles'; use_ok 'RT::Classes'; use_ok 'RT::Class'; my $CLASS = 'ArticleTest-'.$$; my $user = RT::CurrentUser->new('root'); my $class = RT::Class->new($user); my ($id, $msg) = $class->Create(Name =>$CLASS); ok ($id, $msg); my $article = RT::Article->new($user); ok (UNIVERSAL::isa($article, 'RT::Article')); ok (UNIVERSAL::isa($article, 'RT::Record')); ok (UNIVERSAL::isa($article, 'RT::Record')); ok (UNIVERSAL::isa($article, 'DBIx::SearchBuilder::Record') , "It's a searchbuilder record!"); ($id, $msg) = $article->Create( Class => $CLASS, Summary => $CLASS); ok ($id, $msg); $article->Load($id); is ($article->Summary, $CLASS, "The summary is set correct"); my $at = RT::Article->new($RT::SystemUser); $at->Load($id); is ($at->id , $id); is ($at->Summary, $article->Summary); my $a1 = RT::Article->new($RT::SystemUser); ($id, $msg) = $a1->Create(Class => $class->id, Name => 'ValidateNameTest'.$$); ok ($id, $msg); my $a2 = RT::Article->new($RT::SystemUser); ($id, $msg) = $a2->Create(Class => $class->id, Name => 'ValidateNameTest'.$$); ok (!$id, $msg); my $a3 = RT::Article->new($RT::SystemUser); ($id, $msg) = $a3->Create(Class => $class->id, Name => 'ValidateNameTest2'.$$); ok ($id, $msg); ($id, $msg) =$a3->SetName('ValidateNameTest'.$$); ok (!$id, $msg); ($id, $msg) =$a3->SetName('ValidateNametest2'.$$); ok ($id, $msg); my $newart = RT::Article->new($RT::SystemUser); $newart->Create(Name => 'DeleteTest'.$$, Class => '1'); $id = $newart->Id; ok($id, "New article has an id"); $article = RT::Article->new($RT::SystemUser); $article->Load($id); ok ($article->Id, "Found the article"); my $val; ($val, $msg) = $article->Delete(); ok ($val, "Article Deleted: $msg"); $a2 = RT::Article->new($RT::SystemUser); $a2->Load($id); ok ($a2->Disabled, "the article is disabled"); # NOT OK #$RT::Handle->SimpleQuery("DELETE FROM Links"); my $article_a = RT::Article->new($RT::SystemUser); ($id, $msg) = $article_a->Create( Class => $CLASS, Summary => "ArticleTestlink1".$$); ok($id,$msg); my $article_b = RT::Article->new($RT::SystemUser); ($id, $msg) = $article_b->Create( Class => $CLASS, Summary => "ArticleTestlink2".$$); ok($id,$msg); # Create a link between two articles ($id, $msg) = $article_a->AddLink( Type => 'RefersTo', Target => $article_b->URI); ok($id,$msg); # Make sure that Article Bs "ReferredToBy" links object refers to to this article my $refers_to_b = $article_b->ReferredToBy; is($refers_to_b->Count, 1, "Found one thing referring to b"); my $first = $refers_to_b->First; ok ($first->isa('RT::Link'), "IT's an RT link - ref ".ref($first) ); is($first->TargetObj->Id, $article_b->Id, "Its target is B"); ok($refers_to_b->First->BaseObj->isa('RT::Article'), "Yep. its an article"); # Make sure that Article A's "RefersTo" links object refers to this article" my $referred_To_by_a = $article_a->RefersTo; is($referred_To_by_a->Count, 1, "Found one thing referring to b ".$referred_To_by_a->Count. "-".$referred_To_by_a->First->id . " - ".$referred_To_by_a->Last->id); $first = $referred_To_by_a->First; ok ($first->isa('RT::Link'), "IT's an RT link - ref ".ref($first) ); is ($first->TargetObj->Id, $article_b->Id, "Its target is B - " . $first->TargetObj->Id); is ($first->BaseObj->Id, $article_a->Id, "Its base is A"); ok($referred_To_by_a->First->BaseObj->isa('RT::Article'), "Yep. its an article"); # Delete the link ($id, $msg) = $article_a->DeleteLink(Type => 'RefersTo', Target => $article_b->URI); ok($id,$msg); # Create an Article A RefersTo Ticket 1 from the Articles side use RT::Ticket; my $tick = RT::Ticket->new($RT::SystemUser); $tick->Create(Subject => "Article link test ", Queue => 'General'); $tick->Load($tick->Id); ok ($tick->Id, "Found ticket ".$tick->id); ($id, $msg) = $article_a->AddLink(Type => 'RefersTo', Target => $tick->URI); ok($id,$msg); # Find all tickets whhich refer to Article A use RT::Tickets; use RT::Links; my $tix = RT::Tickets->new($RT::SystemUser); ok ($tix, "Got an RT::Tickets object"); ok ($tix->LimitReferredToBy($article_a->URI)); is ($tix->Count, 1, "Found one ticket linked to that article"); is ($tix->First->Id, $tick->id, "It's even the right one"); # Find all articles which refer to Ticket 1 use RT::Articles; my $articles = RT::Articles->new($RT::SystemUser); ok($articles->isa('RT::Articles'), "Created an article collection"); ok($articles->isa('RT::SearchBuilder'), "Created an article collection"); ok($articles->isa('DBIx::SearchBuilder'), "Created an article collection"); ok($tick->URI, "The ticket does still have a URI"); $articles->LimitRefersTo($tick->URI); is($articles->Count(), 1); is ($articles->First->Id, $article_a->Id); is ($articles->First->URI, $article_a->URI); # Find all things which refer to ticket 1 using the RT API. my $tix2 = RT::Links->new($RT::SystemUser); ok ($tix2->isa('RT::Links')); ok($tix2->LimitRefersTo($tick->URI)); is ($tix2->Count, 1); is ($tix2->First->BaseObj->URI ,$article_a->URI); # Delete the link from the RT side. my $t2 = RT::Ticket->new($RT::SystemUser); $t2->Load($tick->Id); ($id, $msg)= $t2->DeleteLink( Base => $article_a->URI, Type => 'RefersTo'); ok ($id, $msg . " - $id - $msg"); # it is actually deleted my $tix3 = RT::Links->new($RT::SystemUser); $tix3->LimitReferredToBy($tick->URI); is ($tix3->Count, 0); # Recreate the link from teh RT site ($id, $msg) = $t2->AddLink( Base => $article_a->URI, Type => 'RefersTo'); ok ($id, $msg); # Find all tickets whhich refer to Article A # Find all articles which refer to Ticket 1 my $art = RT::Article->new($RT::SystemUser); ($id, $msg) = $art->Create (Class => $CLASS); ok ($id,$msg); ok($art->URI); ok($art->__Value('URI') eq $art->URI, "The uri in the db is set correctly"); $art = RT::Article->new($RT::SystemUser); ($id, $msg) = $art->Create (Class => $CLASS); ok ($id,$msg); ok($art->URIObj); ok($art->__Value('URI') eq $art->URIObj->URI, "The uri in the db is set correctly"); my $art_id = $art->id; $art = RT::Article->new($RT::SystemUser); $art->Load($art_id); is ($art->Id, $art_id, "Loaded article 1"); my $s =$art->Summary; ($val, $msg) = $art->SetSummary("testFoo"); ok ($val, $msg); ok ($art->Summary eq 'testFoo', "The Summary was set to foo"); my $t = $art->Transactions(); my $trans = $t->Last; ok ($trans->Type eq 'Set', "It's a Set transaction"); ok ($trans->Field eq 'Summary', "it is about setting the Summary"); is ($trans->NewValue , 'testFoo', "The new content is 'foo'"); is ($trans->OldValue,$s, "the old value was preserved"); rt-4.4.2/t/articles/cfsearch.t0000664000175000017500000000544113131430353016052 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 11; my $suffix = '-'. $$; use_ok 'RT::Class'; use_ok 'RT::Article'; use_ok 'RT::CustomField'; my $classname = 'TestClass'; my $class = RT::Class->new( $RT::SystemUser ); { $class->Load( $classname ); unless ( $class->Id ) { my ($id, $msg) = $class->Create( Name => $classname, Description => 'class for cf tests', ); ok $id, "created class '$classname' #$id" or diag "error: $msg"; } else { ok 1, "class '$classname' exists"; } } # create cf my $cfname = 'TestCF'. $suffix; my $cf = RT::CustomField->new( $RT::SystemUser ); { my ($id, $msg) = $cf->Create( Name => $cfname, LookupType => 'RT::Class-RT::Article', Type => 'Select', MaxValues => 1, Description => 'singleselect cf for tests', ); ok $id, "created cf '$cfname' #$id" or diag "error: $msg"; } # attach cf to class { my ($status, $msg) = $cf->AddToObject( $class ); ok $status, "attached the cf to the class" or diag "error: $msg"; } # create two cf-values { my ($status, $msg) = $cf->AddValue( Name => 'Value1' ); ok $status, "added a value to the cf" or diag "error: $msg"; ($status, $msg) = $cf->AddValue( Name => 'Value2' ); ok $status, "added a value to the cf" or diag "error: $msg"; } my $article1name = 'TestArticle1'.$suffix; my $article1 = RT::Article->new($RT::SystemUser); $article1->Create( Name => $article1name, Summary => 'Test', Class => $class->Id); $article1->AddCustomFieldValue(Field => $cf->Id, Value => 'Value1'); my $article2name = 'TestArticle2'.$suffix; my $article2 = RT::Article->new($RT::SystemUser); $article2->Create( Name => $article2name, Summary => 'Test', Class => $class->Id); $article2->AddCustomFieldValue(Field => $cf->Id, Value => 'Value2'); # search for articles containing 1st value { my $articles = RT::Articles->new( $RT::SystemUser ); $articles->UnLimit; $articles->Limit( FIELD => "Class", SUBCLAUSE => 'ClassMatch', VALUE => $class->Id); $articles->LimitCustomField( FIELD => $cf->Id, VALUE => 'Value1' ); is $articles->Count, 1, 'found correct number of articles'; } { my $articles = RT::Articles->new($RT::SystemUser); $articles->UnLimit; $articles->Limit( FIELD => "Class", SUBCLAUSE => 'ClassMatch', VALUE => $class->Id); $articles->LimitCustomField( FIELD => $cf, VALUE => 'Value1' ); is $articles->Count, 1, 'found correct number of articles'; } { my $articles = RT::Articles->new($RT::SystemUser); $articles->UnLimit( ); $articles->Limit( FIELD => "Class", SUBCLAUSE => 'ClassMatch', VALUE => $class->Id); $articles->LimitCustomField( FIELD => $cf->Name, VALUE => 'Value1' ); is $articles->Count, 1, 'found correct number of articles'; } rt-4.4.2/t/articles/uri-articles.t0000664000175000017500000000236213131430353016676 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => undef; use Test::Warn; use_ok "RT::URI::fsck_com_article"; my $uri = RT::URI::fsck_com_article->new( $RT::SystemUser ); ok $uri; isa_ok $uri, 'RT::URI::fsck_com_article'; isa_ok $uri, 'RT::URI::base'; isa_ok $uri, 'RT::Base'; is $uri->LocalURIPrefix, 'fsck.com-article://example.com'; my $class = RT::Class->new( $RT::SystemUser ); $class->Create( Name => 'URItest - '. $$ ); ok $class->id, 'created a class'; my $article = RT::Article->new( $RT::SystemUser ); my ($id, $msg) = $article->Create( Name => 'Testing URI parsing - '. $$, Summary => 'In which this should load', Class => $class->Id ); ok($id,$msg); $uri = RT::URI::fsck_com_article->new( $article->CurrentUser ); is $uri->URIForObject( $article ), 'fsck.com-article://example.com/article/' . $article->id, 'Got correct URIForObject'; my $article_id = $article->Id; ok ($uri->ParseURI("fsck.com-article://example.com/article/$article_id"), 'Parsed URI'); ok ($article->Delete(), 'Deleted article'); ok($article->Disabled, 'deleted article is actually just disabled'); ok (!$uri->ParseURI("fsck.com-article://foo.com/article/$article_id"), 'ParseURI returned false with incorrect Organization'); done_testing(); rt-4.4.2/t/articles/upload-customfields.t0000664000175000017500000000532113131430353020254 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 20; use RT; my $logo; BEGIN { $logo = -e $RT::StaticPath . '/images/bpslogo.png' ? 'bpslogo.png' : 'bplogo.gif'; } use constant ImageFile => $RT::StaticPath . "/images/$logo"; use constant ImageFileContent => do { local $/; open my $fh, '<', ImageFile or die ImageFile.$!; binmode($fh); scalar <$fh>; }; use RT::Class; my $class = RT::Class->new($RT::SystemUser); my ($ret, $msg) = $class->Create('Name' => 'tlaTestClass-'.$$, 'Description' => 'A general-purpose test class'); ok($ret, "Test class created"); my ($url, $m) = RT::Test->started_ok; isa_ok($m, 'Test::WWW::Mechanize'); ok($m->login, 'logged in'); $m->follow_link_ok( { text => 'Admin' } ); $m->title_is(q/RT Administration/, 'admin screen'); $m->follow_link_ok( { text => 'Custom Fields' } ); $m->title_is(q/Select a Custom Field/, 'admin-cf screen'); $m->follow_link_ok( { text => 'Create', url_regex => qr{^/Admin/CustomFields/} } ); $m->submit_form( form_name => "ModifyCustomField", fields => { TypeComposite => 'Image-0', LookupType => 'RT::Class-RT::Article', Name => 'img'.$$, Description => 'img', EntryHint => 'Upload multiple images', }, ); $m->title_is(qq/Editing CustomField img$$/, 'admin-cf created'); $m->follow_link( text => 'Applies to' ); $m->title_is(qq/Modify associated objects for img$$/, 'pick cf screenadmin screen'); $m->form_number(3); my $tcf = (grep { /AddCustomField-/ } map { $_->name } $m->current_form->inputs )[0]; $m->tick( $tcf, 0 ); # Associate the new CF with this queue $m->click('UpdateObjs'); $m->content_contains("Globally added custom field img$$", 'TCF added to the queue' ); $m->follow_link_ok( { text => 'Articles', url_regex => qr!^/Articles/! }, 'UI -> Articles' ); $m->follow_link( text => 'New Article'); $m->follow_link( url_regex => qr/Edit.html\?Class=1/ ); $m->title_is(qq/Create a new article/); $m->content_like(qr/Upload multiple images/, 'has a upload image field'); $tcf =~ /(\d+)$/ or die "Hey this is impossible dude"; my $upload_field = "Object-RT::Article--CustomField-$1-Upload"; diag("Uploading an image to $upload_field") if $ENV{TEST_VERBOSE}; $m->submit_form( form_name => "EditArticle", fields => { $upload_field => ImageFile, Name => 'Image Test '.$$, Summary => 'testing img cf creation', }, ); $m->content_like(qr/Article \d+ created/, "an article was created succesfully"); my $id = $1 if $m->content =~ /Article (\d+) created/; $m->title_like(qr/Modify article #$id/, "Editing article $id"); $m->follow_link( text => $logo ); $m->content_is(ImageFileContent, "it links to the uploaded image"); rt-4.4.2/t/articles/class.t0000664000175000017500000000472613131430353015406 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => undef; use_ok 'RT::Articles'; use_ok 'RT::Classes'; use_ok 'RT::Class'; my $root = RT::CurrentUser->new('root'); ok ($root->Id, "Loaded root"); my $cl = RT::Class->new($root); ok (UNIVERSAL::isa($cl, 'RT::Class'), "the new class is a class"); my ($id, $msg) = $cl->Create(Name => 'Test-'.$$, Description => 'A test class'); ok ($id, $msg); ok( $cl->SetName( 'test-' . $$ ), 'rename to lower cased version' ); ok( $cl->SetName( 'Test-' . $$ ), 'rename back' ); # no duplicate class names should be allowed ($id, $msg) = RT::Class->new($root)->Create(Name => 'Test-'.$$, Description => 'A test class'); ok (!$id, $msg); ($id, $msg) = RT::Class->new($root)->Create(Name => 'test-'.$$, Description => 'A test class'); ok (!$id, $msg); #class name should be required ($id, $msg) = RT::Class->new($root)->Create(Name => '', Description => 'A test class'); ok (!$id, $msg); $cl->Load('Test-'.$$); ok($cl->id, "Loaded the class we want"); # Create a new user. make sure they can't create a class my $u= RT::User->new(RT->SystemUser); $u->Create(Name => "ArticlesTest".time, Privileged => 1); ok ($u->Id, "Created a new user"); # Make sure you can't create a group with no acls $cl = RT::Class->new($u); ok (UNIVERSAL::isa($cl, 'RT::Class'), "the new class is a class"); ($id, $msg) = $cl->Create(Name => 'Test-nobody'.$$, Description => 'A test class'); ok (!$id, $msg. "- Can not create classes as a random new user - " .$u->Id); $u->PrincipalObj->GrantRight(Right =>'AdminClass', Object => RT->System); ($id, $msg) = $cl->Create(Name => 'Test-nobody-'.$$, Description => 'A test class'); ok ($id, $msg. "- Can create classes as a random new user after ACL grant"); # now check the Web UI my ($url, $m) = RT::Test->started_ok; ok($m->login); $m->get_ok("$url/Admin/Articles/Classes/Modify.html?Create=1"); $m->content_contains('Create a Class', 'found title'); $m->submit_form_ok({ form_number => 3, fields => { Name => 'Test Redirect' }, }); $m->content_contains('Object created', 'found results'); $m->content_contains('Modify the Class Test Redirect', 'found title'); $m->form_number(3); $m->untick( 'Include-Name', 1 ); $m->field( 'Description', 'Test Description' ); $m->submit(); $m->content_like(qr/Description changed from.*no value.*to .*Test Description/,'description changed'); $m->form_number(3); is($m->current_form->find_input('Include-Name')->value,undef,'Disabled Including Names for this Class'); undef $m; done_testing(); rt-4.4.2/t/articles/articles.t0000664000175000017500000001053413131430353016101 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 29; use_ok 'RT::Articles'; use_ok 'RT::Classes'; use_ok 'RT::Class'; my $class = RT::Class->new($RT::SystemUser); my ( $id, $msg ) = $class->Create( Name => 'CollectionTest-' . $$ ); ok( $id, $msg ); # Add a custom field to our class use_ok('RT::CustomField'); my $cf = RT::CustomField->new($RT::SystemUser); isa_ok($cf, 'RT::CustomField'); ($id,$msg) = $cf->Create( Name => 'Articles::Sample-'.$$, Description => 'Test text cf', LookupType => RT::Article->CustomFieldLookupType, Type => 'Freeform' ); ok($id,$msg); ($id,$msg) = $cf->AddToObject($class); ok ($id,$msg); my $art = RT::Article->new($RT::SystemUser); ( $id, $msg ) = $art->Create( Class => $class->id, Name => 'Collection-1-' . $$, Summary => 'Coll-1-' . $$, 'CustomField-'.$cf->Name => 'Test-'.$$ ); ok( $id, $msg ); my $arts = RT::Articles->new($RT::SystemUser); $arts->LimitName( VALUE => 'Collection-1-' . $$ . 'fake' ); is( $arts->Count, 0, "Found no artlcles with names matching something that is not there" ); my $arts2 = RT::Articles->new($RT::SystemUser); $arts2->LimitName( VALUE => 'Collection-1-' . $$ ); is( $arts2->Count, 1, 'Found one with names matching the word "test"' ); $arts = RT::Articles->new($RT::SystemUser); $arts->LimitSummary( VALUE => 'Coll-1-' . $$ . 'fake' ); is( $arts->Count, 0, 'Found no artlcles with summarys matching something that is not there' ); $arts2 = RT::Articles->new($RT::SystemUser); $arts2->LimitSummary( VALUE => 'Coll-1-' . $$ ); is( $arts2->Count, 1, 'Found one with summarys matching the word "Coll-1"' ); my $new_art = RT::Article->new($RT::SystemUser); ( $id, $msg ) = $new_art->Create( Class => $class->id, Name => 'CFSearchTest1' . $$, 'CustomField-'.$cf->Name => 'testing' . $$ ); ok( $id, $msg . " Created a second testable article" ); $arts = RT::Articles->new($RT::SystemUser); $arts->LimitCustomField( OPERATOR => 'LIKE', VALUE => "esting".$$ ); is( $arts->Count, 1, "Found 1 cf values matching 'esting" . $$ . "' for an unspecified field"); $arts = RT::Articles->new($RT::SystemUser); $arts->LimitCustomField( OPERATOR => '=', VALUE => "esting".$$ ); is( $arts->Count, 0, "Found 0 cf values EXACTLY matching 'esting" . $$ . "' for an unspecified field"); $arts = RT::Articles->new($RT::SystemUser); $arts->LimitCustomField( OPERATOR => '=', VALUE => "testing".$$ ); is( $arts->Count, 1, "Found 0 cf values EXACTLY matching 'testing" . $$ . "' for an unspecified field"); $arts = RT::Articles->new($RT::SystemUser); $arts->LimitCustomField( OPERATOR => 'LIKE', VALUE => $$ ); is( $arts->Count, 2, "Found 1 cf values matching '" . $$ . "' for an unspecified field"); # Test searching on named custom fields $arts = RT::Articles->new($RT::SystemUser); $arts->LimitCustomField( OPERATOR => 'LIKE', VALUE => $$, FIELD => $cf->Name ); is( $arts->Count, 2, "Found 1 Article with cf values matching '".$$."' for CF named " .$cf->Name); $arts = RT::Articles->new($RT::SystemUser); $arts->LimitCustomField( OPERATOR => 'LIKE', VALUE => $$, FIELD => 'NO-SUCH-CF' ); is( $arts->Count,0, "Found no cf values matching '".$$."' for CF 'NO-SUCH-CF' " ); $arts = RT::Articles->new($RT::SystemUser); $arts->Limit(FIELD =>'Class', VALUE => $class->id); $arts->LimitCustomField( OPERATOR => 'NOT LIKE', VALUE => 'blah', FIELD => $cf->id ); is( $arts->Count ,2, "Found 1 articles with custom field values not matching blah"); $arts = RT::Articles->new($RT::SystemUser); $arts->Limit(FIELD =>'Class', VALUE => $class->id); $arts->LimitCustomField( OPERATOR => 'NOT LIKE', VALUE => 'est', FIELD => $cf->id ); is( $arts->Count , 0, "Found 0 cf values not matching 'est' for CF ".$cf->id. " " . join(',', map {$_->id} @{$arts->ItemsArrayRef})); $arts = RT::Articles->new($RT::SystemUser); $arts->Limit(FIELD =>'Class', VALUE => $class->id); $arts->LimitCustomField( OPERATOR => 'NOT LIKE', VALUE => 'BOGUS', FIELD => $cf->id ); is( $arts->Count , 2, "Found 2 articles not matching 'BOGUS' for CF ".$cf->id); my $ac = RT::Articles->new($RT::SystemUser); ok( $ac->isa('RT::Articles') ); ok( $ac->isa('DBIx::SearchBuilder') ); ok( $ac->LimitRefersTo('http://dead.link') ); is( $ac->Count, 0 ); $ac = RT::Articles->new($RT::SystemUser); ok( $ac->LimitReferredToBy('http://dead.link') ); is( $ac->Count, 0 ); rt-4.4.2/t/articles/uri-a.t0000664000175000017500000000373413131430353015314 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 15; use_ok("RT::URI::a"); my $uri = RT::URI::a->new($RT::SystemUser); ok(ref($uri), "URI object exists"); my $class = RT::Class->new( $RT::SystemUser ); $class->Create( Name => 'URItest - '. $$ ); ok $class->id, 'created a class'; my $article = RT::Article->new( $RT::SystemUser ); my ($id, $msg) = $article->Create( Name => 'Testing URI parsing - '. $$, Summary => 'In which this should load', Class => $class->Id ); ok($id,$msg); my $uristr = "a:" . $article->Id; $uri->ParseURI($uristr); is(ref($uri->Object), "RT::Article", "Object loaded is an article"); is($uri->Object->Id, $article->Id, "Object loaded has correct ID"); is($article->URI, 'fsck.com-article://example.com/article/'.$article->Id, "URI object has correct URI string"); { my $aid = $article->id; my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => 1, Subject => 'test ticket', ); ok $id, "Created a test ticket"; # Try searching my $tickets = RT::Tickets->new( RT->SystemUser ); $tickets->FromSQL(" RefersTo = 'a:$aid' "); is $tickets->Count, 0, "No results yet"; # try with the full uri $tickets->FromSQL(" RefersTo = '@{[ $article->URI ]}' "); is $tickets->Count, 0, "Still no results"; # add the link $ticket->AddLink( Type => 'RefersTo', Target => "a:$aid" ); # verify the ticket has it my @links = @{$ticket->RefersTo->ItemsArrayRef}; is scalar @links, 1, "Has one RefersTo link"; is ref $links[0]->TargetObj, "RT::Article", "Link points to an article"; is $links[0]->TargetObj->id, $aid, "Link points to the article we specified"; # search again $tickets->FromSQL(" RefersTo = 'a:$aid' "); is $tickets->Count, 1, "Found one ticket with short URI"; # search with the full uri $tickets->FromSQL(" RefersTo = '@{[ $article->URI ]}' "); is $tickets->Count, 1, "Found one ticket with full URI"; } rt-4.4.2/t/articles/search-interface.t0000664000175000017500000001515113131430353017476 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => undef; use RT::CustomField; use RT::Queue; use RT::Ticket; use_ok 'RT::Class'; use_ok 'RT::Topic'; use_ok 'RT::Article'; my ($url, $m) = RT::Test->started_ok; # Variables to test return values my ($ret, $msg); # Create two classes my $class = RT::Class->new($RT::SystemUser); ($ret, $msg) = $class->Create('Name' => 'First-class', 'Description' => 'A general-purpose test class'); ok($ret, "Test class created"); ($ret, $msg) = $class->Create('Name' => 'Second-class', 'Description' => 'Another class'); ok($ret, "Test class created"); my $questionCF = RT::CustomField->new($RT::SystemUser); my $answerCF = RT::CustomField->new($RT::SystemUser); my $ticketCF = RT::CustomField->new($RT::SystemUser); ($ret, $msg) = $questionCF->Create('Name' => 'Question-'.$$, 'Type' => 'Text', 'MaxValues' => 1, 'LookupType' => 'RT::Class-RT::Article', 'Description' => 'The question to be answered', 'Disabled' => 0); ok($ret, "Question CF created: $msg"); ($ret, $msg) = $answerCF->Create('Name' => 'Answer-'.$$, 'Type' => 'Text', 'MaxValues' => 1, 'LookupType' => 'RT::Class-RT::Article', 'Description' => 'The answer to the question', 'Disabled' => 0); ok($ret, "Answer CF created: $msg"); ($ret, $msg) = $ticketCF->Create('Name' => 'Class', 'Type' => 'Text', 'MaxValues' => 1, 'LookupType' => 'RT::Queue-RT::Ticket', 'Disabled' => 0); ok($ret, "Ticket CF 'Class' created: $msg"); # Attach the custom fields to our class ($ret, $msg) = $questionCF->AddToObject($class); ok($ret, "Question CF added to class: $msg"); ($ret, $msg) = $answerCF->AddToObject($class); ok($ret, "Answer CF added to class: $msg"); my ($qid, $aid) = ($questionCF->Id, $answerCF->Id); my $global_queue = RT::Queue->new($RT::SystemUser); ($ret, $msg) = $ticketCF->AddToObject($global_queue); ok($ret, "Ticket CF added globally: $msg"); my %cvals = ('article1q' => 'Some question about swallows', 'article1a' => 'Some answer about Europe and Africa', 'article2q' => 'Another question about Monty Python', 'article2a' => 'Romani ite domum', 'article3q' => 'Why should I eat my supper?', 'article3a' => 'There are starving children in Africa', 'article4q' => 'What did Brian originally write?', 'article4a' => 'This is an answer that is longer than 255 ' . 'characters so these tests will be sure to use the LargeContent ' . 'SQL as well as the normal SQL that would be generated if this ' . 'was an answer that was shorter than 255 characters. This second ' . 'sentence has a few extra characters to get this string to go ' . 'over the 255 character boundary. Lorem ipsum.'); # Create an article or two with our custom field values. my $article1 = RT::Article->new($RT::SystemUser); my $article2 = RT::Article->new($RT::SystemUser); my $article3 = RT::Article->new($RT::SystemUser); my $article4 = RT::Article->new($RT::SystemUser); ($ret, $msg) = $article1->Create(Name => 'First article '.$$, Summary => 'blah blah 1', Class => $class->Id, "CustomField-$qid" => $cvals{'article1q'}, "CustomField-$aid" => $cvals{'article1a'}, ); ok($ret, "article 1 created"); ($ret, $msg) = $article2->Create(Name => 'Second article '.$$, Summary => 'foo bar 2', Class => $class->Id, "CustomField-$qid" => $cvals{'article2q'}, "CustomField-$aid" => $cvals{'article2a'}, ); ok($ret, "article 2 created"); ($ret, $msg) = $article3->Create(Name => 'Third article '.$$, Summary => 'ping pong 3', Class => $class->Id, "CustomField-$qid" => $cvals{'article3q'}, "CustomField-$aid" => $cvals{'article3a'}, ); ok($ret, "article 3 created"); ($ret, $msg) = $article4->Create(Name => 'Fourth article '.$$, Summary => 'hoi polloi 4', Class => $class->Id, "CustomField-$qid" => $cvals{'article4q'}, "CustomField-$aid" => $cvals{'article4a'}, ); ok($ret, "article 4 created"); isa_ok($m, 'Test::WWW::Mechanize'); ok($m->login, 'logged in'); $m->follow_link_ok( { text => 'Articles', url_regex => qr!^/Articles/! }, 'UI -> Articles' ); # In all of the search results below, the results page should # have the summary text of the article it occurs in. # Case sensitive search on small field. DoArticleSearch($m, $class->Name, 'Africa'); $m->text_contains('Search results'); # Did we do a search? $m->text_contains('blah blah 1'); # Case insensitive search on small field. DoArticleSearch($m, $class->Name, 'africa'); $m->text_contains('Search results'); # Did we do a search? $m->text_contains('blah blah 1'); # Case sensitive search on large field. DoArticleSearch($m, $class->Name, 'ipsum'); $m->text_contains('Search results'); # Did we do a search? $m->text_contains('hoi polloi 4'); # Case insensitive search on large field. DoArticleSearch($m, $class->Name, 'lorem'); $m->text_contains('Search results'); # Did we do a search? TODO:{ local $TODO = 'Case insensitive search on LONGBLOB not available in MySQL' if RT->Config->Get('DatabaseType') eq 'mysql'; $m->text_contains('hoi polloi 4'); } undef $m; done_testing; # When you send $m to this sub, it must be on a page with # a Search link. sub DoArticleSearch{ my $m = shift; my $class_name = shift; my $search_text = shift; $m->follow_link_ok( {text => 'Articles'}, 'Articles Search'); $m->follow_link_ok( {text => 'in class '. $class_name}, 'Articles in class '. $class_name); $m->text_contains('First article'); $m->submit_form_ok( { form_number => 2, fields => { 'Article~' => $search_text }, }, "Search for $search_text" ); return; } rt-4.4.2/t/articles/basic-api.t0000664000175000017500000000560713131430353016130 0ustar vagrantvagrant use warnings; use strict; use RT::Test tests => 37; use_ok('RT::Class'); my $class = RT::Class->new($RT::SystemUser); isa_ok($class, 'RT::Class'); isa_ok($class, 'RT::Record'); isa_ok($class, 'RT::Record'); my $name = 'test-'.$$; my ($id,$msg) = $class->Create( Name =>$name, Description => 'Test class'); ok($id,$msg); is ($class->Name, $name); is ($class->Description, 'Test class'); # Test custom fields. can_ok($class, 'CustomFields'); can_ok($class, 'AddCustomFieldValue'); can_ok($class, 'DeleteCustomFieldValue'); can_ok($class, 'FirstCustomFieldValue'); can_ok($class, 'CustomFieldValues'); can_ok($class, 'CurrentUserHasRight'); # Add a custom field to our class my $cf = RT::CustomField->new($RT::SystemUser); isa_ok($cf, 'RT::CustomField'); # the following tests don't expect to see the new pre-defined "Content" cf. # disabling the pre-defined one so we can test if old behavior still works $cf->Load(1); $cf->SetDisabled(1); $cf = RT::CustomField->new($RT::SystemUser); ($id,$msg) = $cf->Create( Name => 'Articles::Sample-'.$$, Description => 'Test text cf', LookupType => RT::Article->CustomFieldLookupType, Type => 'Text' ); ok($id,$msg); ($id,$msg) = $cf->AddToObject($class); ok ($id,$msg); # Does our class have a custom field? my $cfs = $class->ArticleCustomFields; isa_ok($cfs, 'RT::CustomFields'); is($cfs->Count, 1, "We only have one custom field"); my $found_cf = $cfs->First; is ($cf->id, $found_cf->id, "it's the right one"); ($id,$msg) = $cf->RemoveFromObject($class); is($class->ArticleCustomFields->Count, 0, "All gone!"); # Put it back. we want to go forward. ($id,$msg) = $cf->AddToObject($class); ok ($id,$msg); use_ok('RT::Article'); my $art = RT::Article->new($RT::SystemUser); ($id,$msg) =$art->Create(Class => $class->id, Name => 'Sample'.$$, Description => 'A sample article'); ok($id,"Created article ".$id." - " .$msg); # make sure there is one transaction. my $txns = $art->Transactions; is($txns->Count, 1, "One txn"); my $txn = $txns->First; is ($txn->ObjectType, 'RT::Article'); is ($txn->ObjectId , $id , "It's the right article"); is ($txn->Type, 'Create', "It's a create!"); my $art_cfs = $art->CustomFields(); is ($art_cfs->Count, 1, "It has a custom field"); my $values = $art->CustomFieldValues($art_cfs->First); is ($values->Count, 0); $art->AddCustomFieldValue(Field => $cf->id, Value => 'Testing'); $values = $art->CustomFieldValues($art_cfs->First->id); # We added the custom field is ($values->Count, 1); is ($values->First->Content, 'Testing', "We added the CF"); is ($art->Transactions->Count,2, "We added a second transaction for the custom field addition"); my $txn2 = $art->Transactions->Last; is ($txn2->ObjectId, $art->id); is ($txn2->id, ($txn->id +1)); is ($txn2->Type, 'CustomField'); is($txn2->NewValue, 'Testing'); ok (!$txn2->OldValue, "It had no old value"); 1; rt-4.4.2/t/pod.t0000664000175000017500000000027713131430353013252 0ustar vagrantvagrantuse strict; use warnings; use Test::More; use Test::Pod; all_pod_files_ok( all_pod_files("lib","devel","docs","etc","bin","sbin"), , , ); rt-4.4.2/t/assets/0000775000175000017500000000000013131430353013577 5ustar vagrantvagrantrt-4.4.2/t/assets/roles.t0000664000175000017500000000155613131430353015117 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::Assets tests => undef; my $catalog = create_catalog( Name => "A catalog" ); my $asset = create_asset( Name => "Test asset", Catalog => $catalog->id ); ok $asset && $asset->id, "Created asset"; for my $object ($asset, $catalog, RT->System) { for my $role (RT::Asset->Roles) { my $group = $object->RoleGroup($role); ok $group->id, "Loaded role group $role for " . ref($object); my $principal = $group->PrincipalObj; ok $principal && $principal->id, "Found PrincipalObj for role group" or next; if ($object->DOES("RT::Record::Role::Rights")) { my ($ok, $msg) = $principal->GrantRight( Object => $object, Right => "ShowAsset", ); ok $ok, "Granted right" or diag "Error: $msg"; } } } done_testing; rt-4.4.2/t/assets/api.t0000664000175000017500000001425113131430353014540 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::Assets tests => undef; use Test::Warn; my $catalog; diag "Create a catalog"; { $catalog = create_catalog( Name => 'Test Catalog', Disabled => 1 ); ok $catalog && $catalog->id, "Created catalog"; is $catalog->Name, "Test Catalog", "Name is correct"; ok $catalog->Disabled, "Disabled"; my $asset; warning_like { $asset = create_asset( Name => "Test", Catalog => $catalog->id ); } qr/^Failed to create asset .* Invalid catalog/i; ok !$asset, "Couldn't create asset in disabled catalog"; my ($ok, $msg) = $catalog->SetDisabled(0); ok $ok, "Enabled catalog: $msg"; ok !$catalog->Disabled, "Enabled"; } diag "Create basic asset (no CFs)"; { my $asset = RT::Asset->new( RT->SystemUser ); my ($id, $msg) = $asset->Create( Name => 'Thinkpad T420s', Description => 'Laptop', Catalog => $catalog->Name, ); ok $id, "Created: $msg"; is $asset->id, $id, "id matches"; is $asset->Name, "Thinkpad T420s", "Name matches"; is $asset->Description, "Laptop", "Description matches"; # Create txn my @txns = @{$asset->Transactions->ItemsArrayRef}; is scalar @txns, 1, "One transaction"; is $txns[0]->Type, "Create", "... of type Create"; # Update my ($txnid, $txnmsg) = $asset->SetName("Lenovo Thinkpad T420s"); ok $txnid, "Updated Name: $txnmsg"; is $asset->Name, "Lenovo Thinkpad T420s", "New Name matches"; # Set txn @txns = @{$asset->Transactions->ItemsArrayRef}; is scalar @txns, 2, "Two transactions"; is $txns[1]->Type, "Set", "... the second of which is Set"; is $txns[1]->Field, "Name", "... Field is Name"; is $txns[1]->OldValue, "Thinkpad T420s", "... OldValue is correct"; # Delete my ($ok, $err) = $asset->Delete; ok !$ok, "Deletes are prevented: $err"; $asset->Load($id); ok $asset->id, "Asset not deleted"; } diag "Create with CFs"; { my $height = create_cf( Name => 'Height' ); ok $height->id, "Created CF"; my $material = create_cf( Name => 'Material' ); ok $material->id, "Created CF"; ok apply_cfs($height, $material), "Applied CFs"; my $asset = RT::Asset->new( RT->SystemUser ); my ($id, $msg) = $asset->Create( Name => 'Standing desk', "CustomField-".$height->id => '46"', "CustomField-Material" => 'pine', Catalog => $catalog->Name, ); ok $id, "Created: $msg"; is $asset->FirstCustomFieldValue('Height'), '46"', "Found height"; is $asset->FirstCustomFieldValue('Material'), 'pine', "Found material"; is $asset->Transactions->Count, 1, "Only a single txn"; } note "Create/update with Roles"; { my $root = RT::User->new( RT->SystemUser ); $root->Load("root"); ok $root->id, "Found root"; my $bps = RT::Test->load_or_create_user( Name => "BPS" ); ok $bps->id, "Created BPS user"; my $asset = RT::Asset->new( RT->SystemUser ); my ($id, $msg) = $asset->Create( Name => 'RT server', HeldBy => $root->PrincipalId, Owner => $bps->PrincipalId, Contact => $bps->PrincipalId, Catalog => $catalog->id, ); ok $id, "Created: $msg"; is $asset->HeldBy->UserMembersObj->First->Name, "root", "root is Holder"; is $asset->Owner->Name, "BPS", "BPS is Owner"; is $asset->Contacts->UserMembersObj->First->Name, "BPS", "BPS is Contact"; my $sysadmins = RT::Group->new( RT->SystemUser ); $sysadmins->CreateUserDefinedGroup( Name => 'Sysadmins' ); ok $sysadmins->id, "Created group"; is $sysadmins->Name, "Sysadmins", "Got group name"; (my $ok, $msg) = $asset->AddRoleMember( Type => 'Contact', Group => 'Sysadmins', ); ok $ok, "Added Sysadmins as Contact: $msg"; is $asset->Contacts->MembersObj->Count, 2, "Found two members"; my @txn = grep { $_->Type eq 'AddWatcher' } @{$asset->Transactions->ItemsArrayRef}; ok @txn == 1, "Found one AddWatcher txn"; is $txn[0]->Field, "Contact", "... of a Contact"; is $txn[0]->NewValue, $sysadmins->PrincipalId, "... for the right principal"; ($ok, $msg) = $asset->DeleteRoleMember( Type => 'Contact', PrincipalId => $bps->PrincipalId, ); ok $ok, "Removed BPS user as Contact: $msg"; is $asset->Contacts->MembersObj->Count, 1, "Now just one member"; is $asset->Contacts->GroupMembersObj(Recursively => 0)->First->Name, "Sysadmins", "... it's Sysadmins"; @txn = grep { $_->Type eq 'DelWatcher' } @{$asset->Transactions->ItemsArrayRef}; ok @txn == 1, "Found one DelWatcher txn"; is $txn[0]->Field, "Contact", "... of a Contact"; is $txn[0]->OldValue, $bps->PrincipalId, "... for the right principal"; } diag "Custom Field handling"; { diag "Make sure we don't load queue CFs"; my $queue_cf = RT::CustomField->new( RT->SystemUser ); my ($ok, $msg) = $queue_cf->Create( Name => "Queue CF", Type => "Text", LookupType => RT::Queue->CustomFieldLookupType, ); ok( $queue_cf->Id, "Created test CF: " . $queue_cf->Id); my $cf1 = RT::CustomField->new( RT->SystemUser ); $cf1->LoadByNameAndCatalog ( Name => "Queue CF" ); ok( (not $cf1->Id), "Queue CF not loaded with LoadByNameAndCatalog"); my $cf2 = RT::CustomField->new( RT->SystemUser ); $cf2->LoadByNameAndCatalog ( Name => "Height" ); ok( $cf2->Id, "Loaded CF id: " . $cf2->Id . " with name"); ok( $cf2->Name, "Loaded CF name: " . $cf2->Name . " with name"); my $cf3 = RT::CustomField->new( RT->SystemUser ); ($ok, $msg) = $cf3->LoadByNameAndCatalog ( Name => "Height", Catalog => $catalog->Name ); ok( (not $cf3->Id), "CF 'Height'" . " not added to catalog: " . $catalog->Name); my $color = create_cf( Name => 'Color' ); ok $color->Id, "Created CF " . $color->Name; ($ok, $msg) = $color->AddToObject( $catalog ); ($ok, $msg) = $color->LoadByNameAndCatalog ( Name => "Color", Catalog => $catalog->Name ); ok( $color->Id, "Loaded CF id: " . $color->Id . " for catalog: " . $catalog->Name); ok( $color->Name, "Loaded CF name: " . $color->Name . " for catalog: " . $catalog->Name); } done_testing; rt-4.4.2/t/assets/links.t0000664000175000017500000001005313131430353015103 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::Assets tests => undef; use Test::Warn; my $catalog = create_catalog( Name => "BPS" ); ok $catalog && $catalog->id, "Created Catalog"; ok( create_assets( { Name => "Thinkpad T420s", Catalog => $catalog->id }, { Name => "Standing desk", Catalog => $catalog->id }, { Name => "Chair", Catalog => $catalog->id }, ), "Created assets" ); my $ticket = RT::Test->create_ticket( Queue => 1, Subject => 'a test ticket', ); ok $ticket->id, "Created ticket"; diag "RT::URI::asset"; { my %uris = ( # URI => Asset Name "asset:1" => { id => 1, Name => "Thinkpad T420s" }, "asset://example.com/2" => { id => 2, Name => "Standing desk" }, "asset:13" => undef, ); while (my ($url, $expected) = each %uris) { my $uri = RT::URI->new( RT->SystemUser ); if ($expected) { my $parsed = $uri->FromURI($url); ok $parsed, "Parsed $url"; my $asset = $uri->Object; ok $asset, "Got object"; is ref($asset), "RT::Asset", "... it's a RT::Asset"; while (my ($field, $value) = each %$expected) { is $asset->$field, $value, "... $field is $value"; } } else { my $parsed; warnings_like { $parsed = $uri->FromURI($url); } [qr/\Q$url\E/, qr/\Q$url\E/], "Caught warnings about unknown URI"; ok !$parsed, "Failed to parse $url, as expected"; } } } diag "RT::Asset link support"; { my $chair = RT::Asset->new( RT->SystemUser ); $chair->LoadByCols( Name => "Chair" ); ok $chair->id, "Loaded asset"; is $chair->URI, "asset://example.com/".$chair->id, "->URI works"; my ($link_id, $msg) = $chair->AddLink( Type => 'MemberOf', Target => 'asset:2' ); ok $link_id, "Added link: $msg"; my $parents = $chair->MemberOf; my $desk = $parents->First->TargetObj; is $parents->Count, 1, "1 parent"; is $desk->Name, "Standing desk", "Correct parent asset"; for my $asset ($chair, $desk) { my $txns = $asset->Transactions; $txns->Limit( FIELD => 'Type', VALUE => 'AddLink' ); is $txns->Count, 1, "1 AddLink txn on asset ".$asset->Name; } my ($ok, $err) = $chair->DeleteLink( Type => 'MemberOf', Target => 'asset:1' ); ok !$ok, "Delete link failed on non-existent: $err"; my ($deleted, $delete_msg) = $chair->DeleteLink( Type => 'MemberOf', Target => $parents->First->Target ); ok $deleted, "Deleted link: $delete_msg"; for my $asset ($chair, $desk) { my $txns = $asset->Transactions; $txns->Limit( FIELD => 'Type', VALUE => 'DeleteLink' ); is $txns->Count, 1, "1 DeleteLink txn on asset ".$asset->Name; } }; diag "Linking to tickets"; { my $laptop = RT::Asset->new( RT->SystemUser ); $laptop->LoadByCols( Name => "Thinkpad T420s" ); my ($ok, $msg) = $ticket->AddLink( Type => 'RefersTo', Target => $laptop->URI ); ok $ok, "Ticket refers to asset: $msg"; my $links = $laptop->ReferredToBy; is $links->Count, 1, "Found a ReferredToBy link via asset"; ($ok, $msg) = $laptop->DeleteLink( Type => 'RefersTo', Base => $ticket->URI ); ok $ok, "Deleted link from opposite side: $msg"; } diag "Links on ->Create"; { my $desk = RT::Asset->new( RT->SystemUser ); $desk->LoadByCols( Name => "Standing desk" ); ok $desk->id, "Loaded standing desk asset"; my $asset = create_asset( Name => "Anti-fatigue mat", Catalog => $catalog->id, Parent => $desk->URI, ReferredToBy => [$ticket->id], ); ok $asset->id, "Created asset with Parent link"; my $parents = $asset->MemberOf; is $parents->Count, 1, "Found one Parent"; is $parents->First->Target, $desk->URI, "... it's a desk!"; my $referrals = $asset->ReferredToBy; is $referrals->Count, 1, "Found one ReferredToBy"; is $referrals->First->Base, $ticket->URI, "... it's the ticket!"; } done_testing; rt-4.4.2/t/assets/compile.t0000664000175000017500000000024213131430353015412 0ustar vagrantvagrantuse strict; use warnings; use Test::More; use_ok('RT::Test::Assets'); use_ok('RT::Asset'); use_ok('RT::Assets'); use_ok('RT::Catalog'); use_ok('RT::Catalogs'); rt-4.4.2/t/assets/collection.t0000664000175000017500000000421013131430353016114 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::Assets tests => undef; my $user = RT::Test->load_or_create_user( Name => 'testuser' ); ok $user->id, "Created user"; my $catalog = create_catalog( Name => "BPS" ); ok $catalog && $catalog->id, "Created catalog"; my $location = create_cf( Name => 'Location' ); ok $location->id, "Created CF"; ok apply_cfs($location), "Applied CF"; ok( create_assets( { Name => "Thinkpad T420s", Catalog => $catalog->id, "CustomField-Location" => "Home" }, { Name => "Standing desk", Catalog => $catalog->id, "CustomField-Location" => "Office" }, { Name => "Chair", Catalog => $catalog->id, "CustomField-Location" => "Office" }, ), "Created assets" ); diag "Mark chair as deleted"; { my $asset = RT::Asset->new( RT->SystemUser ); $asset->LoadByCols( Name => "Chair" ); my ($ok, $msg) = $asset->SetStatus( "deleted" ); ok($ok, "Deleted the chair: $msg"); } diag "Basic types of limits"; { my $assets = RT::Assets->new( RT->SystemUser ); $assets->Limit( FIELD => 'Name', OPERATOR => 'LIKE', VALUE => 'thinkpad' ); is $assets->Count, 1, "Found 1 like thinkpad"; is $assets->First->Name, "Thinkpad T420s"; $assets = RT::Assets->new( RT->SystemUser ); $assets->UnLimit; is $assets->Count, 2, "Found 2 total"; ok((!grep { $_->Name eq "Chair" } @{$assets->ItemsArrayRef}), "No chair (disabled)"); $assets = RT::Assets->new( RT->SystemUser ); $assets->Limit( FIELD => 'Status', VALUE => 'deleted' ); $assets->{allow_deleted_search} = 1; is $assets->Count, 1, "Found 1 deleted"; is $assets->First->Name, "Chair", "Found chair"; $assets = RT::Assets->new( RT->SystemUser ); $assets->UnLimit; $assets->LimitCustomField( CUSTOMFIELD => $location->id, VALUE => "Office", ); is $assets->Count, 1, "Found 1 in Office"; ok $assets->First, "Got record"; is $assets->First->Name, "Standing desk", "Found standing desk"; } diag "Test ACLs"; { my $assets = RT::Assets->new( RT::CurrentUser->new($user) ); $assets->UnLimit; is scalar @{$assets->ItemsArrayRef}, 0, "Found none"; } done_testing; rt-4.4.2/t/assets/rights.t0000664000175000017500000000740313131430353015270 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::Assets tests => undef; my $user = RT::Test->load_or_create_user( Name => 'testuser' ); ok $user->id, "Created user"; my $ticket = RT::Test->create_ticket( Queue => 1, Subject => 'a test ticket', ); ok $ticket->id, "Created ticket"; my $catalog_one = create_catalog( Name => "One" ); ok $catalog_one && $catalog_one->id, "Created catalog one"; my $catalog_two = create_catalog( Name => "Two" ); ok $catalog_two && $catalog_two->id, "Created catalog two"; ok(RT::Test->add_rights({ Principal => 'Privileged', Right => 'ShowCatalog', Object => $catalog_one, }), "Granted ShowCatalog"); my $asset = RT::Asset->new( RT::CurrentUser->new($user) ); diag "CreateAsset"; { my %create = ( Name => 'Thinkpad T420s', Contact => 'trs@example.com', Catalog => $catalog_one->id, ); my ($id, $msg) = $asset->Create(%create); ok !$id, "Create denied: $msg"; ok(RT::Test->add_rights({ Principal => 'Privileged', Right => 'CreateAsset', Object => $catalog_one, }), "Granted CreateAsset"); ($id, $msg) = $asset->Create(%create); ok $id, "Created: $msg"; is $asset->id, $id, "id matches"; is $asset->CatalogObj->Name, $catalog_one->Name, "Catalog matches"; }; diag "ShowAsset"; { is $asset->Name, undef, "Can't see Name without ShowAsset"; ok !$asset->Contacts->id, "Can't see Contacts role group"; ok(RT::Test->add_rights({ Principal => 'Privileged', Right => 'ShowAsset', Object => $catalog_one, }), "Granted ShowAsset"); is $asset->Name, "Thinkpad T420s", "Got Name"; is $asset->Contacts->UserMembersObj->First->EmailAddress, 'trs@example.com', "Got Contact"; } diag "ModifyAsset"; { my ($txnid, $txnmsg) = $asset->SetName("Lenovo Thinkpad T420s"); ok !$txnid, "Update failed: $txnmsg"; is $asset->Name, "Thinkpad T420s", "Name didn't change"; my ($ok, $msg) = $asset->AddLink( Type => 'RefersTo', Target => 't:1' ); ok !$ok, "No rights to AddLink: $msg"; ($ok, $msg) = $asset->DeleteLink( Type => 'RefersTo', Target => 't:1' ); ok !$ok, "No rights to DeleteLink: $msg"; ok(RT::Test->add_rights({ Principal => 'Privileged', Right => 'ModifyAsset', Object => $catalog_one, }), "Granted ModifyAsset"); ($txnid, $txnmsg) = $asset->SetName("Lenovo Thinkpad T420s"); ok $txnid, "Updated Name: $txnmsg"; is $asset->Name, "Lenovo Thinkpad T420s", "Name changed"; } diag "Catalogs"; { my ($txnid, $txnmsg) = $asset->SetCatalog($catalog_two->id); ok !$txnid, "Failed to update Catalog: $txnmsg"; is $asset->CatalogObj->Name, $catalog_one->Name, "Catalog unchanged"; ok(RT::Test->add_rights({ Principal => 'Privileged', Right => 'CreateAsset', Object => $catalog_two, }), "Granted CreateAsset in second catalog"); ($txnid, $txnmsg) = $asset->SetCatalog($catalog_two->id); ok $txnid, "Updated Catalog: $txnmsg"; unlike $txnmsg, qr/Permission Denied/i, "Transaction message isn't Permission Denied"; ok !$asset->CurrentUserCanSee, "Can no longer see the asset"; ok(RT::Test->add_rights({ Principal => 'Privileged', Right => 'ShowAsset', Object => $catalog_two, }), "Granted ShowAsset"); ok $asset->CurrentUserCanSee, "Can see the asset now"; is $asset->CatalogObj->Name, undef, "Can't see the catalog name still"; ok(RT::Test->add_rights({ Principal => 'Privileged', Right => 'ShowCatalog', Object => $catalog_two, }), "Granted ShowCatalog"); is $asset->CatalogObj->Name, $catalog_two->Name, "Now we can see the catalog name"; } done_testing; rt-4.4.2/t/assets/web.t0000664000175000017500000000715013131430353014544 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::Assets tests => undef; RT->Config->Set("CustomFieldGroupings", "RT::Asset" => { Dates => [qw(Purchased)], }, ); my $catalog = create_catalog( Name => "Office" ); ok $catalog->id, "Created Catalog"; my $purchased = create_cf( Name => 'Purchased', Pattern => '(?#Year)^(?:19|20)\d{2}$' ); ok $purchased->id, "Created CF"; my $height = create_cf( Name => 'Height', Pattern => '(?#Inches)^\d+"?$' ); ok $height->id, "Created CF"; my $material = create_cf( Name => 'Material' ); ok $material->id, "Created CF"; my %CF = ( Height => ".CF-" . $height->id . "-Edit", Material => ".CF-" . $material->id . "-Edit", Purchased => ".CF-" . $purchased->id . "-Edit", ); my ($base, $m) = RT::Test::Assets->started_ok; ok $m->login, "Logged in agent"; diag "Create basic asset (no CFs)"; { $m->follow_link_ok({ id => "assets-create" }, "Asset create link"); $m->submit_form_ok({ with_fields => { Catalog => $catalog->id } }, "Picked a catalog"); $m->submit_form_ok({ with_fields => { id => 'new', Name => 'Thinkpad T420s', Description => 'A laptop', }, }, "submited create form"); $m->content_like(qr/Asset .* created/, "Found created message"); my ($id) = $m->uri =~ /id=(\d+)/; my $asset = RT::Asset->new( RT->SystemUser ); $asset->Load($id); is $asset->id, $id, "id matches"; is $asset->Name, "Thinkpad T420s", "Name matches"; is $asset->Description, "A laptop", "Description matches"; } diag "Create with CFs"; { ok apply_cfs($height, $material), "Applied CFs"; $m->follow_link_ok({ id => "assets-create" }, "Asset create link"); $m->submit_form_ok({ with_fields => { Catalog => $catalog->id } }, "Picked a catalog"); ok $m->form_with_fields(qw(id Name Description)), "Found form"; $m->submit_form_ok({ fields => { id => 'new', Name => 'Standing desk', $CF{Height} => 'forty-six inches', $CF{Material} => 'pine', }, }, "submited create form"); $m->content_unlike(qr/Asset .* created/, "Lacks created message"); $m->content_like(qr/must match .*?Inches/, "Found validation error"); # Intentionally fix only the invalid CF to test the other fields are # preserved across errors ok $m->form_with_fields(qw(id Name Description)), "Found form again"; $m->set_fields( $CF{Height} => '46"' ); $m->submit_form_ok({}, "resubmitted form"); $m->content_like(qr/Asset .* created/, "Found created message"); my ($id) = $m->uri =~ /id=(\d+)/; my $asset = RT::Asset->new( RT->SystemUser ); $asset->Load($id); is $asset->id, $id, "id matches"; is $asset->FirstCustomFieldValue('Height'), '46"', "Found height"; is $asset->FirstCustomFieldValue('Material'), 'pine', "Found material"; } diag "Create with CFs in other groups"; { ok apply_cfs($purchased), "Applied CF"; $m->follow_link_ok({ id => "assets-create" }, "Asset create link"); $m->submit_form_ok({ with_fields => { Catalog => $catalog->id } }, "Picked a catalog"); ok $m->form_with_fields(qw(id Name Description)), "Found form"; $m->submit_form_ok({ fields => { id => 'new', Name => 'Chair', $CF{Height} => '23', }, }, "submited create form"); $m->content_like(qr/Asset .* created/, "Found created message"); $m->content_unlike(qr/Purchased.*?must match .*?Year/, "Lacks validation error for Purchased"); } # XXX TODO: test other modify pages undef $m; done_testing; rt-4.4.2/t/00-mason-syntax.t0000664000175000017500000000146713131430353015350 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodb => 1; use File::Find; find( { no_chdir => 1, wanted => sub { return if /(?:\.(?:jpe?g|png|gif|rej)|\~)$/i; return if m{/\.[^/]+\.sw[op]$}; # vim swap files return unless -f $_; local ($@); ok( eval { compile_file($_) }, "Compiled $File::Find::name ok: $@"); }, }, RT::Test::get_relocatable_dir('../share/html')); use HTML::Mason; use HTML::Mason::Compiler; use HTML::Mason::Compiler::ToObject; BEGIN { require RT::Test; } sub compile_file { my $file = shift; my $text = Encode::decode( "UTF-8", RT::Test->file_content($file)); my $compiler = new HTML::Mason::Compiler::ToObject; $compiler->compile( comp_source => $text, name => 'my', comp_path => 'my', ); return 1; } rt-4.4.2/t/lifecycles/0000775000175000017500000000000013131430353014417 5ustar vagrantvagrantrt-4.4.2/t/lifecycles/basics.t0000664000175000017500000001651213131430353016055 0ustar vagrantvagrantuse strict; use warnings; BEGIN {require './t/lifecycles/utils.pl'}; my $general = RT::Test->load_or_create_queue( Name => 'General', ); ok $general && $general->id, 'loaded or created a queue'; my $tstatus = sub { DBIx::SearchBuilder::Record::Cachable->FlushCache; my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load( $_[0] ); return $ticket->Status; }; diag "check basic API"; { my $schema = $general->LifecycleObj; isa_ok($schema, 'RT::Lifecycle'); is $schema->Name, 'default', "it's a default schema"; is_deeply [$schema->Valid], [qw(new open stalled resolved rejected deleted)], 'this is the default set from our config file'; foreach my $s ( qw(new open stalled resolved rejected deleted) ) { ok $schema->IsValid($s), "valid"; } ok !$schema->IsValid(), 'invalid'; ok !$schema->IsValid(''), 'invalid'; ok !$schema->IsValid(undef), 'invalid'; ok !$schema->IsValid('foo'), 'invalid'; is_deeply [$schema->Initial], ['new'], 'initial set'; ok $schema->IsInitial('new'), "initial"; ok !$schema->IsInitial('open'), "not initial"; ok !$schema->IsInitial, "not initial"; ok !$schema->IsInitial(''), "not initial"; ok !$schema->IsInitial(undef), "not initial"; ok !$schema->IsInitial('foo'), "not initial"; is_deeply [$schema->Active], [qw(open stalled)], 'active set'; ok( $schema->IsActive($_), "active" ) foreach qw(open stalled); ok !$schema->IsActive('new'), "not active"; ok !$schema->IsActive, "not active"; ok !$schema->IsActive(''), "not active"; ok !$schema->IsActive(undef), "not active"; ok !$schema->IsActive('foo'), "not active"; is_deeply [$schema->Inactive], [qw(resolved rejected deleted)], 'inactive set'; ok( $schema->IsInactive($_), "inactive" ) foreach qw(resolved rejected deleted); ok !$schema->IsInactive('new'), "not inactive"; ok !$schema->IsInactive, "not inactive"; ok !$schema->IsInactive(''), "not inactive"; ok !$schema->IsInactive(undef), "not inactive"; ok !$schema->IsInactive('foo'), "not inactive"; is_deeply [$schema->Transitions('')], [qw(new open resolved)], 'on create transitions'; ok $schema->IsTransition('' => $_), 'good transition' foreach qw(new open resolved); } my ($baseurl, $m) = RT::Test->started_ok; ok $m->login, 'logged in'; diag "check status input on create"; { $m->goto_create_ticket( $general ); my $form = $m->form_name('TicketCreate'); ok my $input = $form->find_input('Status'), 'found status selector'; my @form_values = $input->possible_values; ok scalar @form_values, 'some options in the UI'; my $valid = 1; foreach ( @form_values ) { next if $general->LifecycleObj->IsValid($_); $valid = 0; diag("$_ doesn't appear to be a valid status, but it was in the form"); } ok $valid, 'all statuses in the form are valid'; } diag "create a ticket"; my $tid; { my $ticket = RT::Ticket->new( RT->SystemUser ); ($tid) = $ticket->Create( Queue => $general->id, Subject => 'test' ); ok $tid, "created a ticket #$tid"; is $ticket->Status, 'new', 'correct status'; } diag "new ->(open it)-> open"; { ok $m->goto_ticket( $tid ), 'opened a ticket'; $m->check_links( has => ['Open It', 'Resolve', 'Reject', 'Delete'], has_no => ['Stall', 'Re-open', 'Undelete'], ); $m->follow_link_ok({text => 'Open It'}); $m->form_name('TicketUpdate'); $m->click('SubmitTicket'); is $tstatus->($tid), 'open', 'changed status'; } diag "open ->(stall)-> stalled"; { is $tstatus->($tid), 'open', 'ticket is open'; ok $m->goto_ticket( $tid ), 'opened a ticket'; $m->check_links( has => ['Stall', 'Resolve', 'Reject'], has_no => ['Open It', 'Delete', 'Re-open', 'Undelete'], ); $m->follow_link_ok({text => 'Stall'}); $m->form_name('TicketUpdate'); $m->click('SubmitTicket'); is $tstatus->($tid), 'stalled', 'changed status'; } diag "stall ->(open it)-> open"; { is $tstatus->($tid), 'stalled', 'ticket is stalled'; ok $m->goto_ticket( $tid ), 'opened a ticket'; $m->check_links( has => ['Open It'], has_no => ['Delete', 'Re-open', 'Undelete', 'Stall', 'Resolve', 'Reject'], ); $m->follow_link_ok({text => 'Open It'}); is $tstatus->($tid), 'open', 'changed status'; } diag "open -> deleted, only via modify"; { is $tstatus->($tid), 'open', 'ticket is open'; $m->get_ok( '/Ticket/Modify.html?id='. $tid ); my $form = $m->form_name('TicketModify'); ok my $input = $form->find_input('Status'), 'found status selector'; my @form_values = $input->possible_values; ok scalar @form_values, 'some options in the UI'; ok grep($_ eq 'deleted', @form_values), "has deleted"; $m->select( Status => 'deleted' ); $m->submit; is $tstatus->($tid), 'deleted', 'deleted ticket'; } diag "deleted -> X via modify, only open is available"; { is $tstatus->($tid), 'deleted', 'ticket is deleted'; $m->get_ok( '/Ticket/Modify.html?id='. $tid ); my $form = $m->form_name('TicketModify'); ok my $input = $form->find_input('Status'), 'found status selector'; my @form_values = $input->possible_values; ok scalar @form_values, 'some options in the UI'; is join('-', @form_values), '-deleted-open', 'only default, current and open available'; } diag "check illegal values and transitions"; { { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'illegal', ); ok !$id, 'have not created a ticket'; } { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'new', ); ok $id, 'created a ticket'; } { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'new', ); ok $id, 'created a ticket'; (my $status, $msg) = $ticket->SetStatus( 'illeagal' ); ok !$status, "couldn't set illeagal status"; is $ticket->Status, 'new', 'status is steal the same'; ($status, $msg) = $ticket->SetStatus( 'stalled' ); ok !$status, "couldn't set status, transition is illeagal"; is $ticket->Status, 'new', 'status is steal the same'; } } diag "'!inactive -> inactive' actions are shown even if ticket has unresolved dependencies"; { my $child_ticket = RT::Test->create_ticket( Queue => $general->id, Subject => 'child', ); my $cid = $child_ticket->id; my $parent_ticket = RT::Test->create_ticket( Queue => $general->id, Subject => 'parent', DependsOn => $child_ticket->id, ); my $pid = $parent_ticket->id; ok $m->goto_ticket( $pid ), 'opened a ticket'; $m->check_links( has => ['Open It', 'Resolve', 'Reject', 'Delete' ], has_no => ['Stall', 'Re-open', 'Undelete', ], ); ok $m->goto_ticket( $cid ), 'opened a ticket'; $m->check_links( has => ['Open It', 'Resolve', 'Reject', 'Delete'], has_no => ['Stall', 'Re-open', 'Undelete'], ); } undef $m; done_testing; rt-4.4.2/t/lifecycles/dates.t0000664000175000017500000002470413131430353015713 0ustar vagrantvagrantuse strict; use warnings; BEGIN {require './t/lifecycles/utils.pl'}; my $general = RT::Test->load_or_create_queue( Name => 'General', ); ok $general && $general->id, 'loaded or created a queue'; my $delivery = RT::Test->load_or_create_queue( Name => 'delivery', Lifecycle => 'delivery', ); ok $delivery && $delivery->id, 'loaded or created a queue'; my $tstatus = sub { DBIx::SearchBuilder::Record::Cachable->FlushCache; my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load( $_[0] ); return $ticket->Status; }; diag "check basic API"; { my $schema = $general->LifecycleObj; isa_ok($schema, 'RT::Lifecycle'); is $schema->Name, 'default', "it's a default schema"; $schema = $delivery->LifecycleObj; isa_ok($schema, 'RT::Lifecycle'); is $schema->Name, 'delivery', "it's a delivery schema"; } diag "dates on create for default schema"; { { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'new', ); ok $id, 'created a ticket'; ok !$ticket->StartedObj->IsSet, 'started is not set'; ok !$ticket->ResolvedObj->IsSet, 'resolved is not set'; } { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'open', ); ok $id, 'created a ticket'; ok $ticket->StartedObj->IsSet, 'started is set'; ok !$ticket->ResolvedObj->IsSet, 'resolved is not set'; } { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'resolved', ); ok $id, 'created a ticket'; ok $ticket->StartedObj->IsSet, 'started is set'; ok $ticket->ResolvedObj->IsSet, 'resolved is set'; } my $test_date = '2008-11-28 12:00:00'; { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'new', Started => $test_date, Resolved => $test_date, ); ok $id, 'created a ticket'; is $ticket->StartedObj->ISO, $test_date, 'started is set'; is $ticket->ResolvedObj->ISO, $test_date, 'resolved is set'; } { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'open', Started => $test_date, Resolved => $test_date, ); ok $id, 'created a ticket'; is $ticket->StartedObj->ISO, $test_date, 'started is set'; is $ticket->ResolvedObj->ISO, $test_date, 'resolved is set'; } { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'resolved', Started => $test_date, Resolved => $test_date, ); ok $id, 'created a ticket'; is $ticket->StartedObj->ISO, $test_date, 'started is set'; is $ticket->ResolvedObj->ISO, $test_date, 'resolved is set'; } } diag "dates on create for delivery schema"; { { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $delivery->id, Subject => 'test', Status => 'ordered', ); ok $id, 'created a ticket'; is $ticket->StartedObj->Unix , 0, 'started is not set'; is $ticket->ResolvedObj->Unix, 0, 'resolved is not set'; } { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $txn, $msg) = $ticket->Create( Queue => $delivery->id, Subject => 'test', ); ok $id, 'created a ticket'; diag($msg); is $ticket->Status, 'ordered', "Status is ordered"; my ($statusval,$statusmsg) = $ticket->SetStatus('on way'); ok($statusval,$statusmsg); ok $ticket->StartedObj->IsSet, 'started is set to ' .$ticket->StartedObj->AsString ; is $ticket->ResolvedObj->Unix, 0, 'resolved is not set'; } { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $delivery->id, Subject => 'test', ); ok $id, 'created a ticket'; my ($statusval,$statusmsg) = $ticket->SetStatus('on way'); ok($statusval,$statusmsg); ($statusval,$statusmsg) = $ticket->SetStatus('delivered'); ok($statusval,$statusmsg); ok $ticket->StartedObj->IsSet, 'started is set'; ok $ticket->ResolvedObj->IsSet, 'resolved is set'; } my $test_date = '2008-11-28 12:00:00'; { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $statusmsg) = $ticket->Create( Queue => $delivery->id, Subject => 'test', Status => 'ordered', Started => $test_date, Resolved => $test_date, ); ok $id, 'created a ticket'; is $ticket->StartedObj->ISO, $test_date, 'started is set'; is $ticket->ResolvedObj->ISO, $test_date, 'resolved is set'; } { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $delivery->id, Subject => 'test', Status => 'ordered', Started => $test_date, Resolved => $test_date, ); ok $id, 'created a ticket'; my ($statusval,$statusmsg) = $ticket->SetStatus('on way'); ok($statusval,$statusmsg); is $ticket->StartedObj->ISO, $test_date, 'started is set'; is $ticket->ResolvedObj->ISO, $test_date, 'resolved is set'; } { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $delivery->id, Subject => 'test', Started => $test_date, Resolved => $test_date, ); ok $id, 'created a ticket'; my ($statusval,$statusmsg) = $ticket->SetStatus('on way'); ok($statusval,$statusmsg); ($statusval,$statusmsg) = $ticket->SetStatus('delivered'); ok($statusval,$statusmsg); is $ticket->StartedObj->ISO, $test_date, 'started is set'; TODO: { local $TODO = "we should decide if we set resolved repeatedly"; is $ticket->ResolvedObj->ISO, $test_date, 'resolved is set'; }; } } diag "dates on status change for default schema"; { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'new', ); ok $id, 'created a ticket'; ok !$ticket->StartedObj->IsSet, 'started is not set'; ok !$ticket->ResolvedObj->IsSet, 'resolved is not set'; (my $status, $msg) = $ticket->SetStatus('open'); ok $status, 'changed status' or diag "error: $msg"; ok $ticket->StartedObj->IsSet, 'started is set'; ok !$ticket->ResolvedObj->IsSet, 'resolved is not set'; my $started = $ticket->StartedObj->Unix; ($status, $msg) = $ticket->SetStatus('stalled'); ok $status, 'changed status' or diag "error: $msg"; is $ticket->StartedObj->Unix, $started, 'started is set and the same'; ok !$ticket->ResolvedObj->IsSet, 'resolved is not set'; ($status, $msg) = $ticket->SetStatus('open'); ok $status, 'changed status' or diag "error: $msg"; is $ticket->StartedObj->Unix, $started, 'started is set and the same'; ok !$ticket->ResolvedObj->IsSet, 'resolved is not set'; ($status, $msg) = $ticket->SetStatus('resolved'); ok $status, 'changed status' or diag "error: $msg"; is $ticket->StartedObj->Unix, $started, 'started is set and the same'; ok $ticket->ResolvedObj->IsSet, 'resolved is set'; } diag "dates on status change for delivery schema"; { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $delivery->id, Subject => 'test', Status => 'ordered', ); ok $id, 'created a ticket'; ok !$ticket->StartedObj->IsSet, 'started is not set'; ok !$ticket->ResolvedObj->IsSet, 'resolved is not set'; (my $status, $msg) = $ticket->SetStatus('delayed'); ok $status, 'changed status' or diag "error: $msg"; ok $ticket->StartedObj->IsSet, 'started is set'; ok !$ticket->ResolvedObj->IsSet, 'resolved is not set'; my $started = $ticket->StartedObj->Unix; ($status, $msg) = $ticket->SetStatus('on way'); ok $status, 'changed status' or diag "error: $msg"; is $ticket->StartedObj->Unix, $started, 'started is set and the same'; ok !$ticket->ResolvedObj->IsSet, 'resolved is not set'; ($status, $msg) = $ticket->SetStatus('delivered'); ok $status, 'changed status' or diag "error: $msg"; is $ticket->StartedObj->Unix, $started, 'started is set and the same'; ok $ticket->ResolvedObj->IsSet, 'resolved is set'; } diag "add partial map between general->delivery"; { my $schemas = RT->Config->Get('Lifecycles'); $schemas->{'__maps__'} = { 'default -> delivery' => { new => 'on way', }, 'delivery -> default' => { 'on way' => 'resolved', }, }; RT::Lifecycle->FillCache; } diag "check date changes on moving a ticket"; { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'new', ); ok $id, 'created a ticket'; ok !$ticket->StartedObj->IsSet, 'started is not set'; ok !$ticket->ResolvedObj->IsSet, 'resolved is not set'; (my $status, $msg) = $ticket->SetQueue( $delivery->id ); ok $status, "moved ticket between queues with different schemas"; is $ticket->Status, 'on way', 'status has been changed'; ok $ticket->StartedObj->IsSet, 'started is set'; ok !$ticket->ResolvedObj->IsSet, 'resolved is not set'; ($status, $msg) = $ticket->SetQueue( $general->id ); ok $status, "moved ticket between queues with different schemas"; is $ticket->Status, 'resolved', 'status has been changed'; ok $ticket->StartedObj->IsSet, 'started is set'; ok $ticket->ResolvedObj->IsSet, 'resolved is set'; } done_testing; rt-4.4.2/t/lifecycles/types.t0000664000175000017500000000301513131430353015747 0ustar vagrantvagrantuse strict; use warnings; BEGIN {require './t/lifecycles/utils.pl'}; is_deeply( [ RT::Lifecycle->ListAll ], [qw/ approvals default delivery /], "Get the list of all lifecycles (implicitly for for tickets)"); is_deeply( [ RT::Lifecycle->ListAll('ticket') ], [qw/ approvals default delivery /], "Get the list of all lifecycles for tickets"); is_deeply( [ RT::Lifecycle->List], [qw/ default delivery /], "Get the list of lifecycles without approvals (implicitly for for tickets)"); is_deeply( [ RT::Lifecycle->List('ticket') ], [qw/ default delivery /], "Get the list of lifecycles without approvals for tickets"); is_deeply( [ RT::Lifecycle->List('racecar') ], [qw/ racing /], "Get the list of lifecycles for other types"); my $tickets = RT::Lifecycle->Load( Name => '', Type => 'ticket' ); ok($tickets, "Got a generalized lifecycle for tickets"); isa_ok( $tickets, "RT::Lifecycle::Ticket", "Is the right subclass" ); is_deeply( [ sort $tickets->Valid ], [ sort qw(new open stalled resolved rejected deleted ordered), 'on way', 'delayed', 'delivered' ], "Only gets ticket statuses" ); my $racecars = RT::Lifecycle->Load( Name => '', Type => 'racecar' ); ok($racecars, "Got a generalized lifecycle for racecars"); isa_ok( $racecars, "RT::Lifecycle", "Is the generalized subclass" ); is_deeply( [ sort $racecars->Valid ], [ sort ('on-your-mark', 'get-set', 'go', 'first', 'second', 'third', 'no-place') ], "Only gets racecar statuses" ); done_testing; rt-4.4.2/t/lifecycles/unresolved-deps.t0000664000175000017500000000213413131430353017723 0ustar vagrantvagrantuse strict; use warnings; BEGIN {require './t/lifecycles/utils.pl'}; my $general = RT::Test->load_or_create_queue( Name => 'General', ); ok $general && $general->id, 'loaded or created a queue'; # different value tested in basics RT->Config->Set('HideResolveActionsWithDependencies' => 1); my ($baseurl, $m) = RT::Test->started_ok; ok $m->login, 'logged in'; { my $child_ticket = RT::Test->create_ticket( Queue => $general->id, Subject => 'child', ); my $cid = $child_ticket->id; my $parent_ticket = RT::Test->create_ticket( Queue => $general->id, Subject => 'parent', DependsOn => $child_ticket->id, ); my $pid = $parent_ticket->id; ok $m->goto_ticket( $pid ), 'opened a ticket'; $m->check_links( has => ['Open It'], has_no => ['Stall', 'Re-open', 'Undelete', 'Resolve', 'Reject', 'Delete'], ); ok $m->goto_ticket( $cid ), 'opened a ticket'; $m->check_links( has => ['Open It', 'Resolve', 'Reject', 'Delete'], has_no => ['Stall', 'Re-open', 'Undelete'], ); } undef $m; done_testing; rt-4.4.2/t/lifecycles/moving.t0000664000175000017500000000562313131430353016111 0ustar vagrantvagrantuse strict; use warnings; BEGIN {require './t/lifecycles/utils.pl'}; my $general = RT::Test->load_or_create_queue( Name => 'General', ); ok $general && $general->id, 'loaded or created a queue'; my $delivery = RT::Test->load_or_create_queue( Name => 'delivery', Lifecycle => 'delivery', ); ok $delivery && $delivery->id, 'loaded or created a queue'; my $tstatus = sub { DBIx::SearchBuilder::Record::Cachable->FlushCache; my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load( $_[0] ); return $ticket->Status; }; diag "check moving without a map"; { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'new', ); ok $id, 'created a ticket'; (my $status, $msg) = $ticket->SetQueue( $delivery->id ); ok !$status, "couldn't change queue when there is no maps between schemas"; is $ticket->Queue, $general->id, 'queue is steal the same'; is $ticket->Status, 'new', 'status is steal the same'; } diag "add partial map"; { my $schemas = RT->Config->Get('Lifecycles'); $schemas->{'__maps__'} = { 'default -> delivery' => { new => 'ordered', }, }; RT::Lifecycle->FillCache; } diag "check moving with a partial map"; { { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'new', ); ok $id, 'created a ticket'; (my $status, $msg) = $ticket->SetQueue( $delivery->id ); ok $status, "moved ticket between queues with different schemas"; is $ticket->Queue, $delivery->id, 'queue has been changed' or diag "error: $msg"; is $ticket->Status, 'ordered', 'status has been changed'; } { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $general->id, Subject => 'test', Status => 'open', ); ok $id, 'created a ticket'; (my $status, $msg) = $ticket->SetQueue( $delivery->id ); ok !$status, "couldn't change queue when map is not complete"; is $ticket->Queue, $general->id, 'queue is steal the same'; is $ticket->Status, 'open', 'status is steal the same'; } } diag "one way map doesn't work backwards"; { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id, $msg) = $ticket->Create( Queue => $delivery->id, Subject => 'test', Status => 'ordered', ); ok $id, 'created a ticket'; (my $status, $msg) = $ticket->SetQueue( $general->id ); ok !$status, "couldn't change queue when there is no maps between schemas"; is $ticket->Queue, $delivery->id, 'queue is steal the same'; is $ticket->Status, 'ordered', 'status is steal the same'; } done_testing; rt-4.4.2/t/lifecycles/utils.pl0000664000175000017500000000475213131430353016124 0ustar vagrantvagrant use strict; use warnings; my $config; BEGIN { $config = < { initial => [qw(new)], active => [qw(open stalled)], inactive => [qw(resolved rejected deleted)], defaults => { on_create => 'new', }, transitions => { '' => [qw(new open resolved)], new => [qw(open resolved rejected deleted)], open => [qw(stalled resolved rejected deleted)], stalled => [qw(open)], resolved => [qw(open)], rejected => [qw(open)], deleted => [qw(open)], }, actions => { 'new -> open' => {label => 'Open It', update => 'Respond'}, 'new -> resolved' => {label => 'Resolve', update => 'Comment'}, 'new -> rejected' => {label => 'Reject', update => 'Respond'}, 'new -> deleted' => {label => 'Delete', update => ''}, 'open -> stalled' => {label => 'Stall', update => 'Comment'}, 'open -> resolved' => {label => 'Resolve', update => 'Comment'}, 'open -> rejected' => {label => 'Reject', update => 'Respond'}, 'stalled -> open' => {label => 'Open It', update => ''}, 'resolved -> open' => {label => 'Re-open', update => 'Comment'}, 'rejected -> open' => {label => 'Re-open', update => 'Comment'}, 'deleted -> open' => {label => 'Undelete', update => ''}, }, }, delivery => { initial => ['ordered'], active => ['on way', 'delayed'], inactive => ['delivered'], defaults => { on_create => 'ordered', }, transitions => { '' => ['ordered'], ordered => ['on way', 'delayed'], 'on way' => ['delivered'], delayed => ['on way'], delivered => [], }, actions => { 'ordered -> on way' => {label => 'Put On Way', update => 'Respond'}, 'ordered -> delayed' => {label => 'Delay', update => 'Respond'}, 'on way -> delivered' => {label => 'Done', update => 'Respond'}, 'delayed -> on way' => {label => 'Put On Way', update => 'Respond'}, }, }, racing => { type => 'racecar', active => ['on-your-mark', 'get-set', 'go'], inactive => ['first', 'second', 'third', 'no-place'], }, ); END } use RT::Test config => $config, tests => undef; 1; rt-4.4.2/t/customroles/0000775000175000017500000000000013131430353014654 5ustar vagrantvagrantrt-4.4.2/t/customroles/notify.t0000664000175000017500000002144513131430353016357 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use RT::Test::Email; my $specs = RT::Test->load_or_create_queue( Name => 'Specs' ); my $engineer = RT::CustomRole->new(RT->SystemUser); my $sales = RT::CustomRole->new(RT->SystemUser); my $unapplied = RT::CustomRole->new(RT->SystemUser); my $linus = RT::Test->load_or_create_user( EmailAddress => 'linus@example.com' ); my $blake = RT::Test->load_or_create_user( EmailAddress => 'blake@example.com' ); my $williamson = RT::Test->load_or_create_user( EmailAddress => 'williamson@example.com' ); my $moss = RT::Test->load_or_create_user( EmailAddress => 'moss@example.com' ); my $ricky = RT::Test->load_or_create_user( EmailAddress => 'ricky.roma@example.com' ); diag 'setup' if $ENV{'TEST_VERBOSE'}; { ok( RT::Test->add_rights( { Principal => 'Privileged', Right => [ qw(CreateTicket ShowTicket ModifyTicket OwnTicket SeeQueue) ] } )); my ($ok, $msg) = $engineer->Create( Name => 'Engineer', MaxValues => 1, ); ok($ok, "created Engineer role: $msg"); ($ok, $msg) = $sales->Create( Name => 'Sales', MaxValues => 0, ); ok($ok, "created Sales role: $msg"); ($ok, $msg) = $unapplied->Create( Name => 'Unapplied', MaxValues => 0, ); ok($ok, "created Unapplied role: $msg"); ($ok, $msg) = $sales->AddToObject($specs->id); ok($ok, "added Sales to Specs: $msg"); ($ok, $msg) = $engineer->AddToObject($specs->id); ok($ok, "added Engineer to Specs: $msg"); } diag 'create tickets in Specs without scrips' if $ENV{'TEST_VERBOSE'}; { mail_ok { RT::Test->create_ticket( Queue => $specs, Subject => 'a ticket', Owner => $williamson, Requestor => [$blake->EmailAddress], ); } { To => $blake->EmailAddress, Cc => '', Bcc => '' }, { To => $williamson->EmailAddress, Cc => '', Bcc => '' }; mail_ok { RT::Test->create_ticket( Queue => $specs, Subject => 'another ticket', Owner => $linus, Requestor => [$moss->EmailAddress, $williamson->EmailAddress], Cc => [$ricky->EmailAddress], AdminCc => [$blake->EmailAddress], ); } { To => (join ', ', $moss->EmailAddress, $williamson->EmailAddress), Cc => '', Bcc => '' }, { To => $linus->EmailAddress, Cc => '', Bcc => $blake->EmailAddress }, { To => '', Cc => $ricky->EmailAddress, Bcc => '' }; mail_ok { RT::Test->create_ticket( Queue => $specs, Subject => 'oops', Owner => $ricky, $engineer->GroupType => $linus, ); } { To => $ricky->EmailAddress, Cc => '', Bcc => '' }; mail_ok { RT::Test->create_ticket( Queue => $specs, Subject => 'oops', Owner => $ricky, $engineer->GroupType => $linus, $sales->GroupType => [$blake->EmailAddress], ); } { To => $ricky->EmailAddress, Cc => '', Bcc => '' }; mail_ok { RT::Test->create_ticket( Queue => $specs, Subject => 'more', Owner => $ricky, Requestor => [$williamson->EmailAddress], Cc => [$moss->EmailAddress], AdminCc => [$blake->EmailAddress], $engineer->GroupType => $linus, $sales->GroupType => [$blake->EmailAddress, $williamson->EmailAddress], ); } { To => $williamson->EmailAddress, Cc => '', Bcc => '' }, { To => $ricky->EmailAddress, Cc => '', Bcc => $blake->EmailAddress }, { To => '', Cc => $moss->EmailAddress, Bcc => '' }; mail_ok { RT::Test->create_ticket( Queue => $specs, Subject => 'more', Owner => $ricky, $sales->GroupType => [$blake->EmailAddress, $williamson->EmailAddress], ); } { To => $ricky->EmailAddress, Cc => '', Bcc => '' }; } diag 'create scrips' if $ENV{'TEST_VERBOSE'}; { my $a1 = RT::ScripAction->new(RT->SystemUser); my ($val, $msg) = $a1->Create( Name => 'Notify Engineer as Cc', ExecModule => 'Notify', Argument => 'Engineer', ); ok($val, $msg); my $s1 = RT::Scrip->new(RT->SystemUser); ($val, $msg) = $s1->Create( Queue => 'Specs', ScripCondition => 'On Create', ScripAction => 'Notify Engineer as Cc', Template => 'Correspondence', ); ok($val, $msg); my $a2 = RT::ScripAction->new(RT->SystemUser); ($val, $msg) = $a2->Create( Name => 'Notify Sales as To', ExecModule => 'Notify', Argument => 'RT::CustomRole-2/To', ); ok($val, $msg); my $s2 = RT::Scrip->new(RT->SystemUser); ($val, $msg) = $s2->Create( Queue => 'Specs', ScripCondition => 'On Create', ScripAction => 'Notify Sales as To', Template => 'Admin Correspondence', ); ok($val, $msg); my $a3 = RT::ScripAction->new(RT->SystemUser); ($val, $msg) = $a2->Create( Name => 'Notify Unapplied as Bcc', ExecModule => 'Notify', Argument => 'Unapplied/Bcc', ); ok($val, $msg); my $s3 = RT::Scrip->new(RT->SystemUser); ($val, $msg) = $s2->Create( Queue => 'Specs', ScripCondition => 'On Create', ScripAction => 'Notify Unapplied as Bcc', Template => 'Admin Correspondence', ); ok($val, $msg); } diag 'create tickets in Specs with scrips' if $ENV{'TEST_VERBOSE'}; { mail_ok { RT::Test->create_ticket( Queue => $specs, Subject => 'a ticket', Owner => $williamson, Requestor => [$blake->EmailAddress], ); } { To => $blake->EmailAddress, Cc => '', Bcc => '' }, { To => $williamson->EmailAddress, Cc => '', Bcc => '' }; mail_ok { RT::Test->create_ticket( Queue => $specs, Subject => 'another ticket', Owner => $linus, Requestor => [$moss->EmailAddress, $williamson->EmailAddress], Cc => [$ricky->EmailAddress], AdminCc => [$blake->EmailAddress], ); } { To => (join ', ', $moss->EmailAddress, $williamson->EmailAddress), Cc => '', Bcc => '' }, { To => $linus->EmailAddress, Cc => '', Bcc => $blake->EmailAddress }, { To => '', Cc => $ricky->EmailAddress, Bcc => '' }; mail_ok { RT::Test->create_ticket( Queue => $specs, Subject => 'oops', Owner => $ricky, $engineer->GroupType => $linus, ); } { To => $ricky->EmailAddress, Cc => '', Bcc => '' }, { To => '', Cc => $linus->EmailAddress, Bcc => '' }; mail_ok { RT::Test->create_ticket( Queue => $specs, Subject => 'oops', Owner => $ricky, $engineer->GroupType => $linus, $sales->GroupType => [$blake->EmailAddress], ); } { To => $ricky->EmailAddress, Cc => '', Bcc => '' }, { To => '', Cc => $linus->EmailAddress, Bcc => '' }, { To => $blake->EmailAddress, Cc => '', Bcc => '' }; mail_ok { RT::Test->create_ticket( Queue => $specs, Subject => 'more', Owner => $ricky, Requestor => [$williamson->EmailAddress], Cc => [$moss->EmailAddress], AdminCc => [$blake->EmailAddress], $engineer->GroupType => $linus, $sales->GroupType => [$blake->EmailAddress, $williamson->EmailAddress], ); } { To => $williamson->EmailAddress, Cc => '', Bcc => '' }, { To => $ricky->EmailAddress, Cc => '', Bcc => $blake->EmailAddress }, { To => '', Cc => $moss->EmailAddress, Bcc => '' }, { To => '', Cc => $linus->EmailAddress, Bcc => '' }, { To => (join ', ', $blake->EmailAddress, $williamson->EmailAddress), Cc => '', Bcc => '' }; mail_ok { RT::Test->create_ticket( Queue => $specs, Subject => 'more', Owner => $ricky, $sales->GroupType => [$blake->EmailAddress, $williamson->EmailAddress], ); } { To => $ricky->EmailAddress, Cc => '', Bcc => '' }, { To => (join ', ', $blake->EmailAddress, $williamson->EmailAddress), Cc => '', Bcc => '' }; } done_testing; rt-4.4.2/t/customroles/basic.t0000664000175000017500000003302313131430353016123 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $general = RT::Test->load_or_create_queue( Name => 'General' ); my $inbox = RT::Test->load_or_create_queue( Name => 'Inbox' ); my $specs = RT::Test->load_or_create_queue( Name => 'Specs' ); my $development = RT::Test->load_or_create_queue( Name => 'Development' ); diag 'testing no roles yet' if $ENV{'TEST_VERBOSE'}; { my $roles = RT::CustomRoles->new(RT->SystemUser); $roles->UnLimit; is($roles->Count, 0, 'no roles created yet'); is_deeply([sort RT::System->Roles], ['AdminCc', 'Cc', 'Contact', 'HeldBy', 'Owner', 'Requestor'], 'System->Roles'); is_deeply([sort RT::Queue->Roles], ['AdminCc', 'Cc', 'Owner', 'Requestor'], 'Queue->Roles'); is_deeply([sort $general->Roles], ['AdminCc', 'Cc', 'Owner', 'Requestor'], 'General->Roles'); is_deeply([sort RT::Ticket->Roles], ['AdminCc', 'Cc', 'Owner', 'Requestor'], 'Ticket->Roles'); is_deeply([sort RT::Queue->ManageableRoleGroupTypes], ['AdminCc', 'Cc'], 'Queue->ManageableRoleTypes'); is_deeply([sort $general->ManageableRoleGroupTypes], ['AdminCc', 'Cc'], 'General->ManageableRoleTypes'); } diag 'create a single-member role' if $ENV{'TEST_VERBOSE'}; my $engineer; { $engineer = RT::CustomRole->new(RT->SystemUser); my ($ok, $msg) = $engineer->Create( Name => 'Engineer-' . $$, MaxValues => 1, ); ok($ok, "created role: $msg"); is($engineer->Name, 'Engineer-' . $$, 'role name'); is($engineer->MaxValues, 1, 'role is single member'); ok($engineer->SingleValue, 'role is single member'); ok(!$engineer->UnlimitedValues, 'role is single member'); ok(!$engineer->IsAddedToAny, 'role is not applied to any queues yet'); ok(RT::Queue->Role('RT::CustomRole-1')->{Single}, 'role is single member'); is_deeply([sort RT::System->Roles], ['AdminCc', 'Cc', 'Contact', 'HeldBy', 'Owner', 'RT::CustomRole-1', 'Requestor'], 'System->Roles'); is_deeply([sort RT::Queue->Roles], ['AdminCc', 'Cc', 'Owner', 'RT::CustomRole-1', 'Requestor'], 'Queue->Roles'); is_deeply([sort $general->Roles], ['AdminCc', 'Cc', 'Owner', 'Requestor'], 'General->Roles'); is_deeply([sort RT::Ticket->Roles], ['AdminCc', 'Cc', 'Owner', 'RT::CustomRole-1', 'Requestor'], 'Ticket->Roles'); is_deeply([sort RT::Queue->ManageableRoleGroupTypes], ['AdminCc', 'Cc'], 'Queue->ManageableRoleTypes'); is_deeply([sort $general->ManageableRoleGroupTypes], ['AdminCc', 'Cc'], 'General->ManageableRoleTypes'); } diag 'create a multi-member role' if $ENV{'TEST_VERBOSE'}; my $sales; { $sales = RT::CustomRole->new(RT->SystemUser); my ($ok, $msg) = $sales->Create( Name => 'Sales-' . $$, MaxValues => 0, ); ok($ok, "created role: $msg"); is($sales->Name, 'Sales-' . $$, 'role name'); is($sales->MaxValues, 0, 'role is multi member'); ok(!$sales->SingleValue, 'role is multi member'); ok($sales->UnlimitedValues, 'role is multi member'); ok(!$sales->IsAddedToAny, 'role is not applied to any queues yet'); ok(!RT::Queue->Role('RT::CustomRole-2')->{Single}, 'role is multi member'); is_deeply([sort RT::System->Roles], ['AdminCc', 'Cc', 'Contact', 'HeldBy', 'Owner', 'RT::CustomRole-1', 'RT::CustomRole-2', 'Requestor'], 'System->Roles'); is_deeply([sort RT::Queue->Roles], ['AdminCc', 'Cc', 'Owner', 'RT::CustomRole-1', 'RT::CustomRole-2', 'Requestor'], 'Queue->Roles'); is_deeply([sort $general->Roles], ['AdminCc', 'Cc', 'Owner', 'Requestor'], 'General->Roles'); is_deeply([sort RT::Ticket->Roles], ['AdminCc', 'Cc', 'Owner', 'RT::CustomRole-1', 'RT::CustomRole-2', 'Requestor'], 'Ticket->Roles'); is_deeply([sort RT::Queue->ManageableRoleGroupTypes], ['AdminCc', 'Cc', 'RT::CustomRole-2'], 'Queue->ManageableRoleTypes'); is_deeply([sort $general->ManageableRoleGroupTypes], ['AdminCc', 'Cc'], 'General->ManageableRoleTypes'); } diag 'collection methods' if $ENV{'TEST_VERBOSE'}; { my $roles = RT::CustomRoles->new(RT->SystemUser); $roles->UnLimit; $roles->OrderBy( FIELD => 'id', ORDER => 'Asc', ); is($roles->Count, 2, 'two roles'); is($roles->Next->Name, 'Engineer-' . $$, 'first role'); is($roles->Next->Name, 'Sales-' . $$, 'second role'); my $single = RT::CustomRoles->new(RT->SystemUser); $single->LimitToSingleValue; is($single->Count, 1, 'one single-value role'); is($single->Next->Name, 'Engineer-' . $$, 'single role'); my $multi = RT::CustomRoles->new(RT->SystemUser); $multi->LimitToMultipleValue; is($multi->Count, 1, 'one multi-value role'); is($multi->Next->Name, 'Sales-' . $$, 'single role'); } diag 'roles not added to any queues yet' if $ENV{'TEST_VERBOSE'}; { for my $queue ($general, $inbox, $specs, $development) { my $roles = RT::CustomRoles->new(RT->SystemUser); $roles->LimitToObjectId($queue->Id); is($roles->Count, 0, 'no roles yet for ' . $queue->Name); my $qroles = $queue->CustomRoles; is($qroles->Count, 0, 'no roles yet from ' . $queue->Name); ok(!$sales->IsAdded($queue->Id), 'Sales is not added to ' . $queue->Name); ok(!$engineer->IsAdded($queue->Id), 'Engineer is not added to ' . $queue->Name); } } diag 'add roles to queues' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $sales->AddToObject($inbox->id); ok($ok, "added Sales to Inbox: $msg"); ($ok, $msg) = $sales->AddToObject($specs->id); ok($ok, "added Sales to Specs: $msg"); ($ok, $msg) = $engineer->AddToObject($specs->id); ok($ok, "added Engineer to Specs: $msg"); ($ok, $msg) = $engineer->AddToObject($development->id); ok($ok, "added Engineer to Development: $msg"); } diag 'roles now added to queues' if $ENV{'TEST_VERBOSE'}; { is_deeply([sort RT::System->Roles], ['AdminCc', 'Cc', 'Contact', 'HeldBy', 'Owner', 'RT::CustomRole-1', 'RT::CustomRole-2', 'Requestor'], 'System->Roles'); is_deeply([sort RT::Queue->Roles], ['AdminCc', 'Cc', 'Owner', 'RT::CustomRole-1', 'RT::CustomRole-2', 'Requestor'], 'Queue->Roles'); is_deeply([sort RT::Ticket->Roles], ['AdminCc', 'Cc', 'Owner', 'RT::CustomRole-1', 'RT::CustomRole-2', 'Requestor'], 'Ticket->Roles'); is_deeply([sort RT::Queue->ManageableRoleGroupTypes], ['AdminCc', 'Cc', 'RT::CustomRole-2'], 'Queue->ManageableRoleTypes'); # General { my $roles = RT::CustomRoles->new(RT->SystemUser); $roles->LimitToObjectId($general->Id); is($roles->Count, 0, 'no roles for General'); my $qroles = $general->CustomRoles; is($qroles->Count, 0, 'no roles from General'); ok(!$sales->IsAdded($general->Id), 'Sales is not added to General'); ok(!$engineer->IsAdded($general->Id), 'Engineer is not added to General'); is_deeply([sort $general->Roles], ['AdminCc', 'Cc', 'Owner', 'Requestor'], 'General->Roles'); is_deeply([sort $general->ManageableRoleGroupTypes], ['AdminCc', 'Cc'], 'General->ManageableRoleTypes'); is_deeply([grep { $general->IsManageableRoleGroupType($_) } 'AdminCc', 'Cc', 'Owner', 'RT::CustomRole-1', 'RT::CustomRole-2', 'Requestor', 'Nonexistent'], ['AdminCc', 'Cc'], 'General IsManageableRoleGroupType'); } # Inbox { my $roles = RT::CustomRoles->new(RT->SystemUser); $roles->LimitToObjectId($inbox->Id); is($roles->Count, 1, 'one role for Inbox'); is($roles->Next->Name, 'Sales-' . $$, 'and the one role is Sales'); my $qroles = $inbox->CustomRoles; is($qroles->Count, 1, 'one role from Inbox'); is($qroles->Next->Name, 'Sales-' . $$, 'and the one role is Sales'); ok($sales->IsAdded($inbox->Id), 'Sales is added to Inbox'); ok(!$engineer->IsAdded($inbox->Id), 'Engineer is not added to Inbox'); is_deeply([sort $inbox->Roles], ['AdminCc', 'Cc', 'Owner', $sales->GroupType, 'Requestor'], 'Inbox->Roles'); is_deeply([sort $inbox->ManageableRoleGroupTypes], ['AdminCc', 'Cc', $sales->GroupType], 'Inbox->ManageableRoleTypes'); is_deeply([grep { $inbox->IsManageableRoleGroupType($_) } 'AdminCc', 'Cc', 'Owner', 'RT::CustomRole-1', 'RT::CustomRole-2', 'Requestor', 'Nonexistent'], ['AdminCc', 'Cc', 'RT::CustomRole-2'], 'Inbox IsManageableRoleGroupType'); } # Specs { my $roles = RT::CustomRoles->new(RT->SystemUser); $roles->LimitToObjectId($specs->Id); $roles->OrderBy( FIELD => 'id', ORDER => 'Asc', ); is($roles->Count, 2, 'two roles for Specs'); is($roles->Next->Name, 'Engineer-' . $$, 'and the first role is Engineer'); is($roles->Next->Name, 'Sales-' . $$, 'and the second role is Sales'); my $qroles = $specs->CustomRoles; $qroles->OrderBy( FIELD => 'id', ORDER => 'Asc', ); is($qroles->Count, 2, 'two roles from Specs'); is($qroles->Next->Name, 'Engineer-' . $$, 'and the first role is Engineer'); is($qroles->Next->Name, 'Sales-' . $$, 'and the second role is Sales'); ok($sales->IsAdded($specs->Id), 'Sales is added to Specs'); ok($engineer->IsAdded($specs->Id), 'Engineer is added to Specs'); is_deeply([sort $specs->Roles], ['AdminCc', 'Cc', 'Owner', $engineer->GroupType, $sales->GroupType, 'Requestor'], 'Specs->Roles'); is_deeply([sort $specs->ManageableRoleGroupTypes], ['AdminCc', 'Cc', $sales->GroupType], 'Specs->ManageableRoleTypes'); is_deeply([grep { $specs->IsManageableRoleGroupType($_) } 'AdminCc', 'Cc', 'Owner', 'RT::CustomRole-1', 'RT::CustomRole-2', 'Requestor', 'Nonexistent'], ['AdminCc', 'Cc', 'RT::CustomRole-2'], 'Specs IsManageableRoleGroupType'); } # Development { my $roles = RT::CustomRoles->new(RT->SystemUser); $roles->LimitToObjectId($development->Id); is($roles->Count, 1, 'one role for Development'); is($roles->Next->Name, 'Engineer-' . $$, 'and the one role is sales'); my $qroles = $development->CustomRoles; is($qroles->Count, 1, 'one role from Development'); is($qroles->Next->Name, 'Engineer-' . $$, 'and the one role is sales'); ok(!$sales->IsAdded($development->Id), 'Sales is not added to Development'); ok($engineer->IsAdded($development->Id), 'Engineer is added to Development'); is_deeply([sort $development->Roles], ['AdminCc', 'Cc', 'Owner', $engineer->GroupType, 'Requestor'], 'Development->Roles'); is_deeply([sort $development->ManageableRoleGroupTypes], ['AdminCc', 'Cc'], 'Development->ManageableRoleTypes'); is_deeply([grep { $development->IsManageableRoleGroupType($_) } 'AdminCc', 'Cc', 'Owner', 'RT::CustomRole-1', 'RT::CustomRole-2', 'Requestor', 'Nonexistent'], ['AdminCc', 'Cc'], 'Development IsManageableRoleGroupType'); } } diag 'role names' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $engineer->SetName('Programmer-' . $$); ok($ok, "SetName: $msg"); is($engineer->Name, 'Programmer-' . $$, 'new name'); # should be okay ($ok, $msg) = $engineer->SetName('Programmer-' . $$); ok($ok || $msg =~ /already the current value/ , "SetName: $msg"); is($engineer->Name, 'Programmer-' . $$, 'new name'); my $playground = RT::CustomRole->new(RT->SystemUser); ($ok, $msg) = $playground->Create(Name => 'Playground-' . $$, MaxValues => 1); ok($ok, "playground role: $msg"); for my $name ( 'Programmer-' . $$, 'proGRAMMER-' . $$, 'Cc', 'CC', 'AdminCc', 'ADMIN CC', 'Requestor', 'requestors', 'Owner', 'OWNer', ) { # creating a role with that name should fail my $new = RT::CustomRole->new(RT->SystemUser); ($ok, $msg) = $new->Create(Name => $name, MaxValues => 1); ok(!$ok, "creating a role with duplicate name $name should fail: $msg"); # updating an existing role with the dupe name should fail too ($ok, $msg) = $playground->SetName($name); ok(!$ok, "updating an existing role with duplicate name $name should fail: $msg"); is($playground->Name, 'Playground-' . $$, 'name stayed the same'); } # make sure we didn't create any new roles my $roles = RT::CustomRoles->new(RT->SystemUser); $roles->UnLimit; is($roles->Count, 3, 'three roles (original two plus playground)'); is_deeply([sort RT::System->Roles], ['AdminCc', 'Cc', 'Contact', 'HeldBy', 'Owner', 'RT::CustomRole-1', 'RT::CustomRole-2', 'RT::CustomRole-3', 'Requestor'], 'No new System->Roles'); is_deeply([sort RT::Queue->Roles], ['AdminCc', 'Cc', 'Owner', 'RT::CustomRole-1', 'RT::CustomRole-2', 'RT::CustomRole-3', 'Requestor'], 'No new Queue->Roles'); is_deeply([sort RT::Ticket->Roles], ['AdminCc', 'Cc', 'Owner', 'RT::CustomRole-1', 'RT::CustomRole-2', 'RT::CustomRole-3', 'Requestor'], 'No new Ticket->Roles'); is_deeply([sort RT::Queue->ManageableRoleGroupTypes], ['AdminCc', 'Cc', 'RT::CustomRole-2'], 'No new Queue->ManageableRoleGroupTypes'); } diag 'load by name and id' if $ENV{'TEST_VERBOSE'}; { my $role = RT::CustomRole->new(RT->SystemUser); $role->Load($engineer->id); is($role->Name, 'Programmer-' . $$, 'load by id'); $role = RT::CustomRole->new(RT->SystemUser); $role->Load('Sales-' . $$); is($role->id, $sales->id, 'load by name'); } diag 'LabelForRole' if $ENV{'TEST_VERBOSE'}; { is($inbox->LabelForRole($sales->GroupType), 'Sales-' . $$, 'Inbox label for Sales'); is($specs->LabelForRole($sales->GroupType), 'Sales-' . $$, 'Specs label for Sales'); is($specs->LabelForRole($engineer->GroupType), 'Programmer-' . $$, 'Specs label for Engineer'); is($development->LabelForRole($engineer->GroupType), 'Programmer-' . $$, 'Development label for Engineer'); } done_testing; rt-4.4.2/t/customroles/tickets.t0000664000175000017500000003644413131430353016522 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $general = RT::Test->load_or_create_queue( Name => 'General' ); my $inbox = RT::Test->load_or_create_queue( Name => 'Inbox' ); my $specs = RT::Test->load_or_create_queue( Name => 'Specs' ); my $development = RT::Test->load_or_create_queue( Name => 'Development' ); my $engineer = RT::CustomRole->new(RT->SystemUser); my $sales = RT::CustomRole->new(RT->SystemUser); my $unapplied = RT::CustomRole->new(RT->SystemUser); my $linus = RT::Test->load_or_create_user( EmailAddress => 'linus@example.com' ); my $blake = RT::Test->load_or_create_user( EmailAddress => 'blake@example.com' ); my $williamson = RT::Test->load_or_create_user( EmailAddress => 'williamson@example.com' ); my $moss = RT::Test->load_or_create_user( EmailAddress => 'moss@example.com' ); my $ricky = RT::Test->load_or_create_user( EmailAddress => 'ricky.roma@example.com' ); my $team = RT::Test->load_or_create_group( 'Team', Members => [$blake, $williamson, $moss, $ricky], ); sub txn_messages_like { local $Test::Builder::Level = $Test::Builder::Level + 1; my $t = shift; my $re = shift; my $txns = $t->Transactions; $txns->Limit(FIELD => 'Type', VALUE => 'SetWatcher'); $txns->Limit(FIELD => 'Type', VALUE => 'AddWatcher'); $txns->Limit(FIELD => 'Type', VALUE => 'DelWatcher'); is($txns->Count, scalar(@$re), 'expected number of transactions'); while (my $txn = $txns->Next) { like($txn->BriefDescription, (shift(@$re) || qr/(?!)/)); } } diag 'setup' if $ENV{'TEST_VERBOSE'}; { ok( RT::Test->add_rights( { Principal => 'Privileged', Right => [ qw(CreateTicket ShowTicket ModifyTicket OwnTicket SeeQueue) ] } )); my ($ok, $msg) = $engineer->Create( Name => 'Engineer-' . $$, MaxValues => 1, ); ok($ok, "created Engineer role: $msg"); ($ok, $msg) = $sales->Create( Name => 'Sales-' . $$, MaxValues => 0, ); ok($ok, "created Sales role: $msg"); ($ok, $msg) = $unapplied->Create( Name => 'Unapplied-' . $$, MaxValues => 0, ); ok($ok, "created Unapplied role: $msg"); ($ok, $msg) = $sales->AddToObject($inbox->id); ok($ok, "added Sales to Inbox: $msg"); ($ok, $msg) = $sales->AddToObject($specs->id); ok($ok, "added Sales to Specs: $msg"); ($ok, $msg) = $engineer->AddToObject($specs->id); ok($ok, "added Engineer to Specs: $msg"); ($ok, $msg) = $engineer->AddToObject($development->id); ok($ok, "added Engineer to Development: $msg"); } diag 'create tickets in General (no custom roles)' if $ENV{'TEST_VERBOSE'}; { my $general1 = RT::Test->create_ticket( Queue => $general, Subject => 'a ticket', Owner => $williamson, Requestor => [$blake->EmailAddress], ); is($general1->OwnerObj->id, $williamson->id, 'owner is correct'); is($general1->RequestorAddresses, $blake->EmailAddress, 'requestors correct'); is($general1->CcAddresses, '', 'no ccs'); is($general1->AdminCcAddresses, '', 'no adminccs'); is($general1->RoleAddresses($engineer->GroupType), '', 'no engineer (role not applied to queue)'); is($general1->RoleAddresses($sales->GroupType), '', 'no sales (role not applied to queue)'); my $general2 = RT::Test->create_ticket( Queue => $general, Subject => 'another ticket', Owner => $linus, Requestor => [$moss->EmailAddress, $williamson->EmailAddress], Cc => [$ricky->EmailAddress], AdminCc => [$blake->EmailAddress], ); is($general2->OwnerObj->id, $linus->id, 'owner is correct'); is($general2->RequestorAddresses, (join ', ', sort $moss->EmailAddress, $williamson->EmailAddress), 'requestors correct'); is($general2->CcAddresses, $ricky->EmailAddress, 'cc correct'); is($general2->AdminCcAddresses, $blake->EmailAddress, 'admincc correct'); is($general2->RoleAddresses($engineer->GroupType), '', 'no engineer (role not applied to queue)'); is($general2->RoleAddresses($sales->GroupType), '', 'no sales (role not applied to queue)'); my $general3 = RT::Test->create_ticket( Queue => $general, Subject => 'oops', Owner => $ricky, $engineer->GroupType => $linus, $sales->GroupType => [$blake->EmailAddress], ); is($general3->OwnerObj->id, $ricky->id, 'owner is correct'); is($general3->RequestorAddresses, '', 'no requestors'); is($general3->CcAddresses, '', 'no cc'); is($general3->AdminCcAddresses, '', 'no admincc'); is($general3->RoleAddresses($engineer->GroupType), '', 'no engineer (role not applied to queue)'); is($general3->RoleAddresses($sales->GroupType), '', 'no sales (role not applied to queue)'); } diag 'create tickets in Inbox (sales role)' if $ENV{'TEST_VERBOSE'}; { my $inbox1 = RT::Test->create_ticket( Queue => $inbox, Subject => 'a ticket', Owner => $williamson, Requestor => [$blake->EmailAddress], ); is($inbox1->OwnerObj->id, $williamson->id, 'owner is correct'); is($inbox1->RequestorAddresses, $blake->EmailAddress, 'requestors correct'); is($inbox1->CcAddresses, '', 'no ccs'); is($inbox1->AdminCcAddresses, '', 'no adminccs'); is($inbox1->RoleAddresses($engineer->GroupType), '', 'no engineer (role not applied to queue)'); is($inbox1->RoleAddresses($sales->GroupType), '', 'no sales (role not applied to queue)'); my $inbox2 = RT::Test->create_ticket( Queue => $inbox, Subject => 'another ticket', Owner => $linus, Requestor => [$moss->EmailAddress, $williamson->EmailAddress], Cc => [$ricky->EmailAddress], AdminCc => [$blake->EmailAddress], ); is($inbox2->OwnerObj->id, $linus->id, 'owner is correct'); is($inbox2->RequestorAddresses, (join ', ', sort $moss->EmailAddress, $williamson->EmailAddress), 'requestors correct'); is($inbox2->CcAddresses, $ricky->EmailAddress, 'cc correct'); is($inbox2->AdminCcAddresses, $blake->EmailAddress, 'admincc correct'); is($inbox2->RoleAddresses($engineer->GroupType), '', 'no engineer (role not applied to queue)'); is($inbox2->RoleAddresses($sales->GroupType), '', 'no sales (role not applied to queue)'); my $inbox3 = RT::Test->create_ticket( Queue => $inbox, Subject => 'oops', Owner => $ricky, $engineer->GroupType => $linus, $sales->GroupType => [$blake->EmailAddress], ); is($inbox3->OwnerObj->id, $ricky->id, 'owner is correct'); is($inbox3->RequestorAddresses, '', 'no requestors'); is($inbox3->CcAddresses, '', 'no cc'); is($inbox3->AdminCcAddresses, '', 'no admincc'); is($inbox3->RoleAddresses($engineer->GroupType), '', 'no engineer (role not applied to queue)'); is($inbox3->RoleAddresses($sales->GroupType), $blake->EmailAddress, 'got sales'); my $inbox4 = RT::Test->create_ticket( Queue => $inbox, Subject => 'more', Owner => $ricky, $engineer->GroupType => $linus, $sales->GroupType => [$blake->EmailAddress, $williamson->EmailAddress], ); is($inbox4->OwnerObj->id, $ricky->id, 'owner is correct'); is($inbox4->RequestorAddresses, '', 'no requestors'); is($inbox4->CcAddresses, '', 'no cc'); is($inbox4->AdminCcAddresses, '', 'no admincc'); is($inbox4->RoleAddresses($engineer->GroupType), '', 'no engineer (role not applied to queue)'); is($inbox4->RoleAddresses($sales->GroupType), (join ', ', sort $blake->EmailAddress, $williamson->EmailAddress), 'got sales'); } diag 'create tickets in Specs (both roles)' if $ENV{'TEST_VERBOSE'}; { my $specs1 = RT::Test->create_ticket( Queue => $specs, Subject => 'a ticket', Owner => $williamson, Requestor => [$blake->EmailAddress], ); is($specs1->OwnerObj->id, $williamson->id, 'owner is correct'); is($specs1->RequestorAddresses, $blake->EmailAddress, 'requestors correct'); is($specs1->CcAddresses, '', 'no ccs'); is($specs1->AdminCcAddresses, '', 'no adminccs'); is($specs1->RoleAddresses($engineer->GroupType), '', 'no engineer (role not applied to queue)'); is($specs1->RoleAddresses($sales->GroupType), '', 'no sales (role not applied to queue)'); my $specs2 = RT::Test->create_ticket( Queue => $specs, Subject => 'another ticket', Owner => $linus, Requestor => [$moss->EmailAddress, $williamson->EmailAddress], Cc => [$ricky->EmailAddress], AdminCc => [$blake->EmailAddress], ); is($specs2->OwnerObj->id, $linus->id, 'owner is correct'); is($specs2->RequestorAddresses, (join ', ', sort $moss->EmailAddress, $williamson->EmailAddress), 'requestors correct'); is($specs2->CcAddresses, $ricky->EmailAddress, 'cc correct'); is($specs2->AdminCcAddresses, $blake->EmailAddress, 'admincc correct'); is($specs2->RoleAddresses($engineer->GroupType), '', 'no engineer (role not applied to queue)'); is($specs2->RoleAddresses($sales->GroupType), '', 'no sales (role not applied to queue)'); my $specs3 = RT::Test->create_ticket( Queue => $specs, Subject => 'oops', Owner => $ricky, $engineer->GroupType => $linus, $sales->GroupType => [$blake->EmailAddress], ); is($specs3->OwnerObj->id, $ricky->id, 'owner is correct'); is($specs3->RequestorAddresses, '', 'no requestors'); is($specs3->CcAddresses, '', 'no cc'); is($specs3->AdminCcAddresses, '', 'no admincc'); is($specs3->RoleAddresses($engineer->GroupType), $linus->EmailAddress, 'got engineer'); is($specs3->RoleAddresses($sales->GroupType), $blake->EmailAddress, 'got sales'); my $specs4 = RT::Test->create_ticket( Queue => $specs, Subject => 'more', Owner => $ricky, $engineer->GroupType => $linus, $sales->GroupType => [$blake->EmailAddress, $williamson->EmailAddress], ); is($specs4->OwnerObj->id, $ricky->id, 'owner is correct'); is($specs4->RequestorAddresses, '', 'no requestors'); is($specs4->CcAddresses, '', 'no cc'); is($specs4->AdminCcAddresses, '', 'no admincc'); is($specs4->RoleAddresses($engineer->GroupType), $linus->EmailAddress, 'got engineer'); is($specs4->RoleAddresses($sales->GroupType), (join ', ', sort $blake->EmailAddress, $williamson->EmailAddress), 'got sales'); } diag 'update ticket in Specs' if $ENV{'TEST_VERBOSE'}; { my $t = RT::Test->create_ticket( Queue => $specs, Subject => 'updates', ); is($t->OwnerObj->id, RT->Nobody->id, 'owner nobody'); is($t->RequestorAddresses, '', 'no requestors'); is($t->CcAddresses, '', 'no cc'); is($t->AdminCcAddresses, '', 'no admincc'); is($t->RoleAddresses($engineer->GroupType), '', 'no engineer'); is($t->RoleAddresses($sales->GroupType), '', 'no sales'); is($t->RoleAddresses($unapplied->GroupType), '', 'no unapplied'); my ($ok, $msg) = $t->SetOwner($linus); ok($ok, "set owner: $msg"); is($t->OwnerObj->id, $linus->id, 'owner linus'); ($ok, $msg) = $t->AddWatcher(Type => 'Requestor', Principal => $ricky->PrincipalObj); ok($ok, "add requestor: $msg"); is($t->RequestorAddresses, $ricky->EmailAddress, 'requestor ricky'); ($ok, $msg) = $t->AddWatcher(Type => 'AdminCc', Principal => $blake->PrincipalObj); ok($ok, "add admincc: $msg"); is($t->AdminCcAddresses, $blake->EmailAddress, 'admincc blake'); ($ok, $msg) = $t->AddWatcher(Type => 'Cc', Principal => $moss->PrincipalObj); ok($ok, "add cc: $msg"); is($t->CcAddresses, $moss->EmailAddress, 'cc moss'); ($ok, $msg) = $t->AddWatcher(Type => $sales->GroupType, Principal => $ricky->PrincipalObj); ok($ok, "add sales: $msg"); is($t->RoleAddresses($sales->GroupType), $ricky->EmailAddress, 'sales ricky'); ($ok, $msg) = $t->AddWatcher(Type => $sales->GroupType, Principal => $moss->PrincipalObj); ok($ok, "add sales: $msg"); is($t->RoleAddresses($sales->GroupType), (join ', ', sort $ricky->EmailAddress, $moss->EmailAddress), 'sales ricky and moss'); ($ok, $msg) = $t->AddWatcher(Type => $sales->GroupType, Principal => RT->Nobody->PrincipalObj); ok($ok, "add sales: $msg"); is($t->RoleAddresses($sales->GroupType), (join ', ', sort $ricky->EmailAddress, $moss->EmailAddress), 'sales ricky and moss'); ($ok, $msg) = $t->DeleteWatcher(Type => $sales->GroupType, PrincipalId => $moss->PrincipalId); ok($ok, "remove sales: $msg"); is($t->RoleAddresses($sales->GroupType), $ricky->EmailAddress, 'sales ricky'); ($ok, $msg) = $t->DeleteWatcher(Type => $sales->GroupType, PrincipalId => $ricky->PrincipalId); ok($ok, "remove sales: $msg"); is($t->RoleAddresses($sales->GroupType), '', 'sales empty'); ($ok, $msg) = $t->AddWatcher(Type => $engineer->GroupType, Principal => $linus->PrincipalObj); ok($ok, "add engineer: $msg"); is($t->RoleAddresses($engineer->GroupType), $linus->EmailAddress, 'engineer linus'); ($ok, $msg) = $t->AddWatcher(Type => $engineer->GroupType, Principal => $blake->PrincipalObj); ok($ok, "add engineer: $msg"); is($t->RoleAddresses($engineer->GroupType), $blake->EmailAddress, 'engineer blake (single-member role so linus gets displaced)'); ($ok, $msg) = $t->AddWatcher(Type => $engineer->GroupType, Principal => RT->Nobody->PrincipalObj); ok($ok, "add engineer: $msg"); is($t->RoleAddresses($engineer->GroupType), '', 'engineer nobody (single-member role so blake gets displaced)'); ($ok, $msg) = $t->AddWatcher(Type => $unapplied->GroupType, Principal => $linus->PrincipalObj); ok(!$ok, "did not add unapplied role member: $msg"); like($msg, qr/That role is invalid for this object/); is($t->RoleAddresses($unapplied->GroupType), '', 'no unapplied members'); txn_messages_like($t, [ qr/Owner set to linus\@example\.com/, qr/Requestor ricky\.roma\@example\.com added/, qr/AdminCc blake\@example\.com added/, qr/Cc moss\@example\.com added/, qr/Sales-$$ ricky\.roma\@example\.com added/, qr/Sales-$$ moss\@example\.com added/, qr/Sales-$$ Nobody in particular added/, qr/Sales-$$ moss\@example\.com deleted/, qr/Sales-$$ ricky\.roma\@example\.com deleted/, qr/Engineer-$$ set to linus\@example\.com/, qr/Engineer-$$ set to blake\@example\.com/, qr/Engineer-$$ set to Nobody in particular/, ]); } diag 'groups can be role members' if $ENV{'TEST_VERBOSE'}; { my $t = RT::Test->create_ticket( Queue => $specs, Subject => 'groups', ); my ($ok, $msg) = $t->AddWatcher(Type => $sales->GroupType, Principal => $team->PrincipalObj); ok($ok, "add team: $msg"); is($t->RoleAddresses($sales->GroupType), (join ', ', sort $blake->EmailAddress, $ricky->EmailAddress, $moss->EmailAddress, $williamson->EmailAddress), 'sales is all the team members'); ($ok, $msg) = $t->AddWatcher(Type => $engineer->GroupType, Principal => $team->PrincipalObj); ok(!$ok, "could not add team: $msg"); like($msg, qr/cannot be a group/); is($t->RoleAddresses($engineer->GroupType), '', 'engineer is still nobody'); txn_messages_like($t, [ qr/Sales-$$ group Team added/, ]); } done_testing; rt-4.4.2/t/customroles/rights.t0000664000175000017500000005100413131430353016341 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $general = RT::Test->load_or_create_queue( Name => 'General' ); my $inbox = RT::Test->load_or_create_queue( Name => 'Inbox' ); my $specs = RT::Test->load_or_create_queue( Name => 'Specs' ); my $development = RT::Test->load_or_create_queue( Name => 'Development' ); my $engineer = RT::CustomRole->new(RT->SystemUser); my $sales = RT::CustomRole->new(RT->SystemUser); my $unapplied = RT::CustomRole->new(RT->SystemUser); my $linus = RT::Test->load_or_create_user( EmailAddress => 'linus@example.com' ); my $john = RT::Test->load_or_create_user( EmailAddress => 'john@example.com' ); my $blake = RT::Test->load_or_create_user( EmailAddress => 'blake@example.com' ); my $williamson = RT::Test->load_or_create_user( EmailAddress => 'williamson@example.com' ); my $moss = RT::Test->load_or_create_user( EmailAddress => 'moss@example.com' ); my $ricky = RT::Test->load_or_create_user( EmailAddress => 'ricky.roma@example.com' ); my $team = RT::Test->load_or_create_group( 'Team', Members => [$blake, $williamson, $moss, $ricky], ); diag 'setup' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $engineer->Create( Name => 'Engineer-' . $$, MaxValues => 1, ); ok($ok, "created Engineer role: $msg"); ($ok, $msg) = $sales->Create( Name => 'Sales-' . $$, MaxValues => 0, ); ok($ok, "created Sales role: $msg"); ($ok, $msg) = $unapplied->Create( Name => 'Unapplied-' . $$, MaxValues => 0, ); ok($ok, "created Unapplied role: $msg"); ($ok, $msg) = $sales->AddToObject($inbox->id); ok($ok, "added Sales to Inbox: $msg"); ($ok, $msg) = $sales->AddToObject($specs->id); ok($ok, "added Sales to Specs: $msg"); ($ok, $msg) = $engineer->AddToObject($specs->id); ok($ok, "added Engineer to Specs: $msg"); ($ok, $msg) = $engineer->AddToObject($development->id); ok($ok, "added Engineer to Development: $msg"); } # the rights are set up as such: # globally: sales can ShowTicket, engineers can ModifyTicket # spec queue: sales can CommentOnTicket, engineers can ReplyToTicket # blake is set up as sales person on inbox queue but not specs diag 'assign rights and queue watcher' if $ENV{'TEST_VERBOSE'}; { ok( RT::Test->add_rights( { Principal => $engineer->GroupType, Right => [ qw(ModifyTicket) ] } )); ok( RT::Test->add_rights( { Principal => $sales->GroupType, Right => [ qw(ShowTicket) ] } )); ok( RT::Test->add_rights( { Principal => $engineer->GroupType, Right => [ qw(ReplyToTicket) ], Object => $specs } )); ok( RT::Test->add_rights( { Principal => $sales->GroupType, Right => [ qw(CommentOnTicket) ], Object => $specs } )); ok($inbox->AddWatcher(User => $blake, Type => $sales->GroupType)); } my ($inbox_individual, $inbox_group, $specs_individual); sub sales_has_rights_for_inbox_individual { my $has_right = shift; my $rationale = shift || ''; my $t = $inbox_individual; if ($has_right) { is($t->RoleAddresses($sales->GroupType), (join ', ', sort $moss->EmailAddress, $ricky->EmailAddress), 'got salespeople'); } else { is($t->RoleAddresses($sales->GroupType), '', "got no salespeople $rationale"); } if ($has_right) { ok($blake->HasRight(Right => 'ShowTicket', Object => $t), 'blake (queue sales) has right to see the ticket'); ok($moss->HasRight(Right => 'ShowTicket', Object => $t), 'moss (ticket sales) has right to see the ticket'); ok($ricky->HasRight(Right => 'ShowTicket', Object => $t), 'ricky (ticket sales) has right to see the ticket'); } else { ok(!$blake->HasRight(Right => 'ShowTicket', Object => $t), "blake (queue sales) has no right to see the ticket $rationale"); ok(!$moss->HasRight(Right => 'ShowTicket', Object => $t), "moss (ticket sales) has no right to see the ticket $rationale"); ok(!$ricky->HasRight(Right => 'ShowTicket', Object => $t), "ricky (ticket sales) has no right to see the ticket $rationale"); } ok(!$blake->HasRight(Right => 'ModifyTicket', Object => $t), 'blake has no right to modify the ticket'); ok(!$blake->HasRight(Right => 'ReplyToTicket', Object => $t), 'blake has no right to reply to the ticket'); ok(!$blake->HasRight(Right => 'CommentOnTicket', Object => $t), 'blake has no right to comment on the ticket'); ok(!$moss->HasRight(Right => 'ModifyTicket', Object => $t), 'moss has no right to modify the ticket'); ok(!$moss->HasRight(Right => 'ReplyToTicket', Object => $t), 'moss has no right to reply to the ticket'); ok(!$moss->HasRight(Right => 'CommentOnTicket', Object => $t), 'moss has no right to comment on the ticket'); ok(!$ricky->HasRight(Right => 'ModifyTicket', Object => $t), 'ricky has no right to modify the ticket'); ok(!$ricky->HasRight(Right => 'ReplyToTicket', Object => $t), 'ricky has no right to reply to the ticket'); ok(!$ricky->HasRight(Right => 'CommentOnTicket', Object => $t), 'ricky has no right to comment on the ticket'); ok(!$williamson->HasRight(Right => 'ShowTicket', Object => $t), 'williamson has no right to see the ticket'); ok(!$williamson->HasRight(Right => 'ModifyTicket', Object => $t), 'williamson has no right to modify the ticket'); ok(!$williamson->HasRight(Right => 'ReplyToTicket', Object => $t), 'williamson has no right to reply to the ticket'); ok(!$williamson->HasRight(Right => 'CommentOnTicket', Object => $t), 'williamson has no right to comment on the ticket'); } sub engineer_has_no_rights_for_inbox_individual { my $user = shift; my $t = $inbox_individual; ok(!$user->HasRight(Right => 'ShowTicket', Object => $t), $user->EmailAddress . ' has no right to see the ticket'); ok(!$user->HasRight(Right => 'ModifyTicket', Object => $t), $user->EmailAddress . ' has no right to modify the ticket'); ok(!$user->HasRight(Right => 'ReplyToTicket', Object => $t), $user->EmailAddress . ' has no right to reply to the ticket'); ok(!$user->HasRight(Right => 'CommentOnTicket', Object => $t), $user->EmailAddress . ' has no right to comment on the ticket'); } sub sales_has_rights_for_inbox_group { my $has_right = shift; my $rationale = shift || ''; my $t = $inbox_group; if ($has_right) { is($t->RoleAddresses($sales->GroupType), (join ', ', sort $moss->EmailAddress, $ricky->EmailAddress, $blake->EmailAddress, $williamson->EmailAddress), 'got all salespeople'); } else { is($t->RoleAddresses($sales->GroupType), '', "got no salespeople $rationale"); } for my $user ($blake, $moss, $ricky, $williamson) { if ($has_right) { ok($user->HasRight(Right => 'ShowTicket', Object => $t), $user->Name . " (member of ticket sales group team) has right to see the ticket"); } else { ok(!$user->HasRight(Right => 'ShowTicket', Object => $t), $user->Name . " (member of ticket sales group team) has no right to see the ticket $rationale"); } ok(!$user->HasRight(Right => 'ModifyTicket', Object => $t), $user->Name . " (member of ticket sales group team) has no right to modify the ticket"); ok(!$user->HasRight(Right => 'ReplyToTicket', Object => $t), $user->Name . " (member of ticket sales group team) has no right to reply to the ticket"); ok(!$user->HasRight(Right => 'CommentOnTicket', Object => $t), $user->Name . " (member of ticket sales group team) has no right to comment on the ticket"); } ok(!$linus->HasRight(Right => 'ShowTicket', Object => $t), "linus has no ShowTicket on inbox"); ok(!$linus->HasRight(Right => 'ModifyTicket', Object => $t), "linus has no ModifyTicket on inbox"); ok(!$linus->HasRight(Right => 'ReplyToTicket', Object => $t), "linus has no ReplyToTicket on inbox"); ok(!$linus->HasRight(Right => 'CommentOnTicket', Object => $t), "linus has no CommentOnTicket on inbox"); } sub sales_has_rights_for_specs_individual { my $has_right = shift; my $rationale = shift || ''; my $t = $specs_individual; if (!$has_right || $has_right == 2) { is($t->RoleAddresses($sales->GroupType), '', "got no salespeople $rationale"); } else { is($t->RoleAddresses($sales->GroupType), (join ', ', sort $moss->EmailAddress, $ricky->EmailAddress), 'got salespeople'); } if (!$has_right) { ok(!$moss->HasRight(Right => 'ShowTicket', Object => $t), "moss (ticket sales) has no right to see the ticket $rationale"); ok(!$moss->HasRight(Right => 'CommentOnTicket', Object => $t), "moss (ticket sales) has no right to comment on the ticket $rationale"); ok(!$ricky->HasRight(Right => 'ShowTicket', Object => $t), "ricky (ticket sales) has no right to see the ticket $rationale"); ok(!$ricky->HasRight(Right => 'CommentOnTicket', Object => $t), "ricky (ticket sales) has no right to comment on the ticket $rationale"); } elsif ($has_right == 2) { ok($moss->HasRight(Right => 'ShowTicket', Object => $t), 'moss (ticket sales) has right to see the ticket thru global sales right'); ok(!$moss->HasRight(Right => 'CommentOnTicket', Object => $t), "moss (ticket sales) has no right to comment on the ticket $rationale"); ok($ricky->HasRight(Right => 'ShowTicket', Object => $t), 'ricky (ticket sales) has right to see the ticket thru global sales right'); ok(!$ricky->HasRight(Right => 'CommentOnTicket', Object => $t), "ricky (ticket sales) has no right to comment on the ticket $rationale"); } else { ok($moss->HasRight(Right => 'ShowTicket', Object => $t), 'moss (ticket sales) has right to see the ticket'); ok($moss->HasRight(Right => 'CommentOnTicket', Object => $t), 'moss (ticket sales) has right to comment on the ticket'); ok($ricky->HasRight(Right => 'ShowTicket', Object => $t), 'ricky (ticket sales) has right to see the ticket'); ok($ricky->HasRight(Right => 'CommentOnTicket', Object => $t), 'ricky (ticket sales) has right to comment on the ticket'); } ok(!$blake->HasRight(Right => 'ShowTicket', Object => $t), 'blake has no right to see the ticket'); ok(!$blake->HasRight(Right => 'ModifyTicket', Object => $t), 'blake has no right to modify the ticket'); ok(!$blake->HasRight(Right => 'ReplyToTicket', Object => $t), 'blake has no right to reply to the ticket'); ok(!$blake->HasRight(Right => 'CommentOnTicket', Object => $t), 'blake has no right to comment on the ticket'); ok(!$moss->HasRight(Right => 'ModifyTicket', Object => $t), 'moss has no right to modify the ticket'); ok(!$moss->HasRight(Right => 'ReplyToTicket', Object => $t), 'moss has no right to reply to the ticket'); ok(!$ricky->HasRight(Right => 'ModifyTicket', Object => $t), 'ricky has no right to modify the ticket'); ok(!$ricky->HasRight(Right => 'ReplyToTicket', Object => $t), 'ricky has no right to reply to the ticket'); ok(!$williamson->HasRight(Right => 'ShowTicket', Object => $t), 'williamson has no right to see the ticket'); ok(!$williamson->HasRight(Right => 'ModifyTicket', Object => $t), 'williamson has no right to modify the ticket'); ok(!$williamson->HasRight(Right => 'ReplyToTicket', Object => $t), 'williamson has no right to reply to the ticket'); ok(!$williamson->HasRight(Right => 'CommentOnTicket', Object => $t), 'williamson has no right to comment on the ticket'); } sub engineer_has_rights_for_specs_individual { my $user = shift; my $has_right = shift; my $t = $specs_individual; ok(!$user->HasRight(Right => 'ShowTicket', Object => $t), $user->EmailAddress . ' has no right to see the ticket'); ok(!$user->HasRight(Right => 'CommentOnTicket', Object => $t), $user->EmailAddress . ' has no right to comment on the ticket'); if ($has_right) { ok($user->HasRight(Right => 'ModifyTicket', Object => $t), $user->EmailAddress . ' (ticket engineer) has right to modify the ticket'); ok($user->HasRight(Right => 'ReplyToTicket', Object => $t), $user->EmailAddress . ' (ticket engineer) has right to reply to the ticket'); } } diag 'check individual rights on Inbox' if $ENV{'TEST_VERBOSE'}; { my $t = $inbox_individual = RT::Test->create_ticket( Queue => $inbox, Subject => 'wrongs', $sales->GroupType => [$moss->EmailAddress, $ricky->EmailAddress], ); ok($t->id, 'created ticket'); sales_has_rights_for_inbox_individual(1); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; } diag 'check group rights on Inbox' if $ENV{'TEST_VERBOSE'}; { my $t = $inbox_group = RT::Test->create_ticket( Queue => $inbox, Subject => 'wrongs', $sales->GroupType => $team->PrincipalId, ); ok($t->id, 'created ticket'); sales_has_rights_for_inbox_group(1); } diag 'check individual rights on Specs' if $ENV{'TEST_VERBOSE'}; { my $t = $specs_individual = RT::Test->create_ticket( Queue => $specs, Subject => 'wrongs', $engineer->GroupType => $linus->PrincipalId, $sales->GroupType => [$moss->EmailAddress, $ricky->EmailAddress], ); ok($t->id, 'created ticket'); sales_has_rights_for_specs_individual(1); engineer_has_rights_for_specs_individual($linus => 1); engineer_has_rights_for_specs_individual($john => 0); } diag 'disable Sales custom role to see how it shakes out permissions' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $sales->SetDisabled(1); ok($ok, $msg); sales_has_rights_for_inbox_individual(0, 'because sales role is disabled'); sales_has_rights_for_inbox_group(0, 'because sales role is disabled'); sales_has_rights_for_specs_individual(0, 'because sales role is disabled'); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; engineer_has_rights_for_specs_individual($linus => 1); engineer_has_rights_for_specs_individual($john => 0); } diag 're-enable Sales custom role to make sure all old group rights and memberships come back' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $sales->SetDisabled(0); ok($ok, $msg); sales_has_rights_for_inbox_individual(1); sales_has_rights_for_inbox_group(1); sales_has_rights_for_specs_individual(1); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; engineer_has_rights_for_specs_individual($linus => 1); engineer_has_rights_for_specs_individual($john => 0); } diag 'remove Sales custom role from Inbox queue' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $sales->RemoveFromObject($inbox->id); ok($ok, "removed Sales from Inbox: $msg"); sales_has_rights_for_inbox_individual(0, 'because sales role was removed from Inbox'); sales_has_rights_for_inbox_group(0, 'because sales role was removed from Inbox'); sales_has_rights_for_specs_individual(1); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; engineer_has_rights_for_specs_individual($linus => 1); engineer_has_rights_for_specs_individual($john => 0); } diag 're-add Sales custom role to Inbox queue' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $sales->AddToObject($inbox->id); ok($ok, "re-added Sales to Specs: $msg"); sales_has_rights_for_inbox_individual(1); sales_has_rights_for_inbox_group(1); sales_has_rights_for_specs_individual(1); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; engineer_has_rights_for_specs_individual($linus => 1); engineer_has_rights_for_specs_individual($john => 0); } diag 'remove Sales custom role from Inbox queue...' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $sales->RemoveFromObject($inbox->id); ok($ok, "removed Sales from Inbox: $msg"); sales_has_rights_for_inbox_individual(0, 'because sales role was removed from Inbox'); sales_has_rights_for_inbox_group(0, 'because sales role was removed from Inbox'); sales_has_rights_for_specs_individual(1); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; engineer_has_rights_for_specs_individual($linus => 1); engineer_has_rights_for_specs_individual($john => 0); } diag 'disable Sales custom role to see how it shakes out permissions' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $sales->SetDisabled(1); ok($ok, $msg); sales_has_rights_for_inbox_individual(0, 'because sales role is disabled and was removed from Inbox'); sales_has_rights_for_inbox_group(0, 'because sales role is disabled and was removed from Inbox'); sales_has_rights_for_specs_individual(0, 'because sales role is disabled'); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; engineer_has_rights_for_specs_individual($linus => 1); engineer_has_rights_for_specs_individual($john => 0); } diag 're-enable Sales custom role to make sure specs regains rights and members but inbox does not because it was removed' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $sales->SetDisabled(0); ok($ok, $msg); sales_has_rights_for_inbox_individual(0, 'because sales role is still removed from Inbox'); sales_has_rights_for_inbox_group(0, 'because sales role is still removed from Inbox'); sales_has_rights_for_specs_individual(1); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; engineer_has_rights_for_specs_individual($linus => 1); engineer_has_rights_for_specs_individual($john => 0); } diag 're-add Sales custom role to Inbox queue' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $sales->AddToObject($inbox->id); ok($ok, "re-added Sales to Specs: $msg"); sales_has_rights_for_inbox_individual(1); sales_has_rights_for_inbox_group(1); sales_has_rights_for_specs_individual(1); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; engineer_has_rights_for_specs_individual($linus => 1); engineer_has_rights_for_specs_individual($john => 0); } diag 'change engineer from linus to john' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $specs_individual->AddWatcher(Type => $engineer->GroupType, Principal => $john->PrincipalObj); ok($ok, "set John as engineer: $msg"); is($specs_individual->RoleAddresses($engineer->GroupType), $john->EmailAddress, 'engineer set to John'); sales_has_rights_for_inbox_individual(1); sales_has_rights_for_inbox_group(1); sales_has_rights_for_specs_individual(1); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; engineer_has_rights_for_specs_individual($linus => 0); engineer_has_rights_for_specs_individual($john => 1); } diag 'change engineer from john to nobody' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $specs_individual->AddWatcher(Type => $engineer->GroupType, Principal => RT->Nobody->PrincipalObj); ok($ok, "set Nobody as engineer: $msg"); is($specs_individual->RoleAddresses($engineer->GroupType), '', 'engineer set to Nobody'); sales_has_rights_for_inbox_individual(1); sales_has_rights_for_inbox_group(1); sales_has_rights_for_specs_individual(1); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; engineer_has_rights_for_specs_individual($linus => 0); engineer_has_rights_for_specs_individual($john => 0); } diag 'change engineer from nobody to linus' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $specs_individual->AddWatcher(Type => $engineer->GroupType, Principal => $linus->PrincipalObj); ok($ok, "set Linus as engineer: $msg"); is($specs_individual->RoleAddresses($engineer->GroupType), $linus->EmailAddress, 'engineer set to Linus'); sales_has_rights_for_inbox_individual(1); sales_has_rights_for_inbox_group(1); sales_has_rights_for_specs_individual(1); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; engineer_has_rights_for_specs_individual($linus => 1); engineer_has_rights_for_specs_individual($john => 0); } diag 'change queue from Specs to General' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $specs_individual->SetQueue($general->Id); ok($ok, "set queue to General: $msg"); sales_has_rights_for_inbox_individual(1); sales_has_rights_for_inbox_group(1); sales_has_rights_for_specs_individual(2, 'queue changed to General'); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; engineer_has_rights_for_specs_individual($linus => 0); engineer_has_rights_for_specs_individual($john => 0); } diag 'change queue from General to Specs' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $specs_individual->SetQueue($specs->Id); ok($ok, "set queue to Specs: $msg"); sales_has_rights_for_inbox_individual(1); sales_has_rights_for_inbox_group(1); sales_has_rights_for_specs_individual(1); engineer_has_no_rights_for_inbox_individual($_) for $linus, $john; engineer_has_rights_for_specs_individual($linus => 1); engineer_has_rights_for_specs_individual($john => 0); } done_testing; rt-4.4.2/t/customroles/merge.t0000664000175000017500000000506513131430353016146 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $general = RT::Test->load_or_create_queue( Name => 'General' ); my $linus = RT::Test->load_or_create_user( EmailAddress => 'linus@example.com' ); my $blake = RT::Test->load_or_create_user( EmailAddress => 'blake@example.com' ); my $williamson = RT::Test->load_or_create_user( EmailAddress => 'williamson@example.com' ); diag 'create tickets' if $ENV{'TEST_VERBOSE'}; my ($t1, $t2); { $t1 = RT::Test->create_ticket( Queue => 'General', Subject => 'alpha' ); ok($t1->Id); $t2 = RT::Test->create_ticket( Queue => 'General', Subject => 'beta' ); ok($t2->Id); } diag 'create a multi-member role' if $ENV{'TEST_VERBOSE'}; my $multi; { $multi = RT::CustomRole->new(RT->SystemUser); my ($ok, $msg) = $multi->Create( Name => 'Multi-' . $$, MaxValues => 0, ); ok($ok, "created role: $msg"); ($ok, $msg) = $multi->AddToObject($general->id); ok($ok, "added role to General: $msg"); } diag 'create a single-member role' if $ENV{'TEST_VERBOSE'}; my $single; { $single = RT::CustomRole->new(RT->SystemUser); my ($ok, $msg) = $single->Create( Name => 'Single-' . $$, MaxValues => 1, ); ok($ok, "created role: $msg"); ($ok, $msg) = $single->AddToObject($general->id); ok($ok, "added role to General: $msg"); } diag 'merge tickets [issues.bestpractical.com #32490]' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $t2->MergeInto($t1->Id); ok($ok, $msg); is($t1->RoleAddresses($multi->GroupType), '', 'no multi members'); is($t1->RoleAddresses($single->GroupType), '', 'no single members'); } diag 'create tickets specifying roles' if $ENV{'TEST_VERBOSE'}; my ($t3, $t4); { $t3 = RT::Test->create_ticket( Queue => 'General', Subject => 'gamma', $multi->GroupType => [$linus->EmailAddress], $single->GroupType => $linus, ); ok($t3->Id); $t4 = RT::Test->create_ticket( Queue => 'General', Subject => 'gamma', $multi->GroupType => [$blake->EmailAddress, $williamson->EmailAddress], $single->GroupType => $blake, ); ok($t4->Id); } diag 'merge tickets' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $t4->MergeInto($t3->Id); ok($ok, $msg); is($t3->RoleAddresses($multi->GroupType), (join ', ', sort $blake->EmailAddress, $linus->EmailAddress, $williamson->EmailAddress), 'merged all multi-member addresses'); is($t3->RoleAddresses($single->GroupType), $linus->EmailAddress, 'took single-member address from merged-into ticket') } done_testing; rt-4.4.2/t/customroles/role_roles.t0000664000175000017500000000234313131430353017210 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use_ok('RT::Record::Role::Roles'); diag 'Test merging with RT email address as Cc'; # This confirms we catch errors when trying to assign an email RT # owns as a Cc during merge. my $user_a = RT::Test->load_or_create_user( Name => 'user_a', Password => 'password', EmailAddress => 'user_a@example.com', ); ok( $user_a && $user_a->id, 'loaded or created user' ); my ($ticket1) = RT::Test->create_ticket( Queue => 'General', Subject => 'test subject', Requestor => 'user_a@example.com', ); ok($ticket1->Id, 'Got a new ticket'); my ($ticket2) = RT::Test->create_ticket( Queue => 'General', Subject => 'test subject', Requestor => 'user_a@example.com', ); ok($ticket2->Id, 'Got another new ticket'); $ticket2->AddWatcher( Type => 'Cc', Email => 'rt@example.com' ); ok(RT::Config->Set('RTAddressRegexp', 'rt@example.com'), 'Set RTAddressRegexp'); is(RT::Config->Get('RTAddressRegexp'), 'rt@example.com', 'Got back RTAddressRegexp'); ok(RT::EmailParser->IsRTAddress( 'rt@example.com' ), 'rt@exmaple.com is an RT address'); my ($status,$msg) = $ticket2->MergeInto($ticket1->Id); ok( $status, 'Ticket merge ok'); done_testing(); rt-4.4.2/t/customroles/existing-tickets.t0000664000175000017500000001232713131430353020344 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $specs = RT::Test->load_or_create_queue( Name => 'Specs' ); my $engineer = RT::CustomRole->new(RT->SystemUser); my $sales = RT::CustomRole->new(RT->SystemUser); my $unapplied = RT::CustomRole->new(RT->SystemUser); my $linus = RT::Test->load_or_create_user( EmailAddress => 'linus@example.com' ); my $blake = RT::Test->load_or_create_user( EmailAddress => 'blake@example.com' ); my $williamson = RT::Test->load_or_create_user( EmailAddress => 'williamson@example.com' ); my $moss = RT::Test->load_or_create_user( EmailAddress => 'moss@example.com' ); my $ricky = RT::Test->load_or_create_user( EmailAddress => 'ricky.roma@example.com' ); ok( RT::Test->add_rights( { Principal => 'Privileged', Right => [ qw(CreateTicket ShowTicket ModifyTicket OwnTicket SeeQueue) ] } )); my $t1 = RT::Test->create_ticket( Queue => $specs, Subject => 'updates with a first test pass', ); my $t2 = RT::Test->create_ticket( Queue => $specs, Subject => 'updates without a test pass', ); my $sales_grouptype = 'RT::CustomRole-1'; my $engineer_grouptype = 'RT::CustomRole-2'; my $unapplied_grouptype = 'RT::CustomRole-3'; diag 'try first pass test' if $ENV{'TEST_VERBOSE'}; { is($t1->RoleAddresses($engineer_grouptype), '', 'no engineer'); is($t1->RoleAddresses($sales_grouptype), '', 'no sales'); is($t1->RoleAddresses($unapplied_grouptype), '', 'no unapplied'); ok($t1->RoleGroup($engineer_grouptype), 'has a role group object'); ok(!$t1->RoleGroup($engineer_grouptype)->id, 'has a role group object with no id'); my ($ok, $msg) = $t1->AddWatcher(Type => $sales_grouptype, Principal => $ricky->PrincipalObj); ok(!$ok, "couldn't add sales: $msg"); is($t1->RoleAddresses($sales_grouptype), '', 'sales still empty'); ($ok, $msg) = $t1->AddWatcher(Type => $engineer_grouptype, Principal => $linus->PrincipalObj); ok(!$ok, "couldn't add engineer: $msg"); is($t1->RoleAddresses($engineer_grouptype), '', 'engineer still empty'); ($ok, $msg) = $t1->AddWatcher(Type => $unapplied_grouptype, Principal => $linus->PrincipalObj); ok(!$ok, "couldn't add unapplied: $msg"); is($t1->RoleAddresses($unapplied_grouptype), '', 'no unapplied members'); } diag 'create roles and add them to the queue' if $ENV{'TEST_VERBOSE'}; { my ($ok, $msg) = $engineer->Create( Name => 'Engineer-' . $$, MaxValues => 1, ); ok($ok, "created Engineer role: $msg"); ($ok, $msg) = $sales->Create( Name => 'Sales-' . $$, MaxValues => 0, ); ok($ok, "created Sales role: $msg"); ($ok, $msg) = $unapplied->Create( Name => 'Unapplied-' . $$, MaxValues => 0, ); ok($ok, "created Unapplied role: $msg"); ($ok, $msg) = $sales->AddToObject($specs->id); ok($ok, "added Sales to Specs: $msg"); ($ok, $msg) = $engineer->AddToObject($specs->id); ok($ok, "added Engineer to Specs: $msg"); } for my $t ($t1, $t2) { diag 'test managing watchers of new roles on #' . $t->id if $ENV{'TEST_VERBOSE'}; my ($ok, $msg) = $t->AddWatcher(Type => $sales->GroupType, Principal => $ricky->PrincipalObj); ok($ok, "add sales: $msg"); is($t->RoleAddresses($sales->GroupType), $ricky->EmailAddress, 'sales ricky'); ($ok, $msg) = $t->AddWatcher(Type => $sales->GroupType, Principal => $moss->PrincipalObj); ok($ok, "add sales: $msg"); is($t->RoleAddresses($sales->GroupType), (join ', ', sort $ricky->EmailAddress, $moss->EmailAddress), 'sales ricky and moss'); ($ok, $msg) = $t->AddWatcher(Type => $sales->GroupType, Principal => RT->Nobody->PrincipalObj); ok($ok, "add sales: $msg"); is($t->RoleAddresses($sales->GroupType), (join ', ', sort $ricky->EmailAddress, $moss->EmailAddress), 'sales ricky and moss'); ($ok, $msg) = $t->AddWatcher(Type => $engineer->GroupType, Principal => $linus->PrincipalObj); ok($ok, "add engineer: $msg"); is($t->RoleAddresses($engineer->GroupType), $linus->EmailAddress, 'engineer linus'); ($ok, $msg) = $t->AddWatcher(Type => $engineer->GroupType, Principal => $blake->PrincipalObj); ok($ok, "add engineer: $msg"); is($t->RoleAddresses($engineer->GroupType), $blake->EmailAddress, 'engineer blake (single-member role so linus gets displaced)'); ($ok, $msg) = $t->AddWatcher(Type => $engineer->GroupType, Principal => RT->Nobody->PrincipalObj); ok($ok, "add engineer: $msg"); is($t->RoleAddresses($engineer->GroupType), '', 'engineer nobody (single-member role so blake gets displaced)'); ($ok, $msg) = $t->AddWatcher(Type => $unapplied->GroupType, Principal => $linus->PrincipalObj); ok(!$ok, "did not add unapplied role member: $msg"); is($t->RoleAddresses($unapplied->GroupType), '', 'no unapplied members'); ok($t->RoleGroup($sales->GroupType), 'has a Sales group object'); ok($t->RoleGroup($sales->GroupType)->id, 'has a Sales group object with an id'); ok($t->RoleGroup($engineer->GroupType), 'has an Engineer group object'); ok($t->RoleGroup($engineer->GroupType)->id, 'has an Engineer group object with an id'); ok($t->RoleGroup($unapplied->GroupType), 'has an Unapplied group object'); ok(!$t->RoleGroup($unapplied->GroupType)->id, 'has an Unapplied group object with no id'); } done_testing; rt-4.4.2/t/data/0000775000175000017500000000000013131430353013206 5ustar vagrantvagrantrt-4.4.2/t/data/owls.jpg0000664000175000017500000014002313131430353014674 0ustar vagrantvagrantÿØÿàJFIF}}ÿÛC     ÿÛC   ÿÀUÉ"ÿÄ ÿĵ}!1AQa"q2‘¡#B±ÁRÑð$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ ÿĵw!1AQaq"2B‘¡±Á #3RðbrÑ $4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ ?ít~Öò+ýà\[´þkÁg8e#«oNÞŸ0¯dð¥­ßŠ5‹-.òŠ< –bþ-ÝúüªÕÊxgÀú^›æÊ.!ºžWóL­òŸ»'O³Ýÿ^©ÿÄÔߨzË2ÃwýzÇÿÄÕäkr6ÓøÇ?*ýâÍýÚ—2­”^ÒÛq:fžª½Y­"ÿâjœÚN–Ë¥éíÏÞûJÍÿŽÕÉo¾Ðª‰òÄ:µþÕG#$+—;qPäÍT›&§|ÄiZü Ò?þ&£‡IÓ&lE£éîäk(¶ÿÀ~Z¸lþÜß½ÊÀ¿òËûßïñ5¢°ˆ×qÓýš‡6U—c-|;¤*ó¤i­ÏüùGÿÄÓ—AÑÙ—þ$Úg?ôãÿWÝwœ·û5,1ùŽÌ>oý³æcQ]Œ¿øFôv ?°ôµôÿ@‹ÿ‰§¯…ô)âŸÒ›pþ+øšÙÚsóQ÷ÙZM¾æŠ+±‡ÿž„ßBÒ•Ù±…öZËÕ|+¤ÝMµ¦‹¥Ûí;¦•4ø~UôݶºK¹Žì&o÷ñUXG·Ì“|«ÉÛ¹¿ô*Ã÷5P[دmàßù[äÐ4¦_½¹¬aû¿÷ÍA…ü8×ÑÙWø¾Áßý¶ãéÕ6H©ÿ|ÔŸÙñ+ç—UBç壚]ÅËÆKø?ÂÌ> 謧þ¡Ðÿñ5Vû¾†-ñø[F‘û/öt[[ÿ®”G8ùvôjÆ×}öÞ?Ýë·íPç>ãŒ!Øæ¬þè’\Éw>…§E+ÿË·F„|ß»V®\|?ÑnÏi[sÊ¥Œ\ÿãµ}.#}¿X7¬ãrDv¿ì¨æ¨/Æ !µvÒ.ÚÞ|ØXíeò›ííÀ?ÅYóLÓ‘\Ý‹ÀþT¿‡4µ_îµ’m?øíM„ü&»‡ö&Œ¯ÏÝ´‰[o÷~í_‹Äüó ÊØÜµJâÞÃV}òÆñÛ·ÿ¯KÚO¸ýšêŒëÿ ø;O áÒ"ôe´DW?ïU(|3¥\mò<5¥{îµU_ö‡šÞÓt½¡V7d;•¥;¾oïVå´ÖßÀWn‡µϸù"º•·€ô…ÜeÑô½¸û©j›V¬¿ô )5‚ÿÛ]7gp8ä½v?Ì´æ†Ùvàü«ü4sO£${«x'Ãò.‡d»[ïy óSá ÐY¾MMo÷`U®Š-!¹’â9äl…]Œ~QVÖÜLÌ £þú£š}Ö=Ž=ü#áûv]úš§÷š•rßÁ~™X¾‡bÛ¿‰c®†M7ÌFØà-YÓi²[®äÊãûµ>Ò¢ê?gN] ‰¾ès,ïmak?Ì7&åCþÊÕÍ+áβ‹ý Lž_ùéÏüu[Kë–܉+/Í»ïmÿ€Öí­óÌ©æŒÛkEU¾¤:Q]Œß|,ÈØÐ¬ÞÃ|¿øõ ð÷Ã*ê?Ბ٠ÿÅWHaF|¡ØØÝþÍW¼º†ÍâŽæXâgùSÌ}»¿ÝÍ_µ}ÈT¡Ñ ðçÂÛ?äf¿ír¿û5A7Ã? c)£[.…wÿñUÓiú…¾¤¬c‘%ÛÏÊjTdY¶àíqà ÿ³Tª>äºK±ç¶>ðÔsKo.nÒƒ¸owÝ·ýŸ›‘Váð/…ãdó4Keó=ßiÿÇ«µ›KŽe䌻«6÷EC·Ê?#|ßúuÌ)õFÇÃÿ FT ÏsüÃvÿº;ýÿ÷j[?‡þºVŒørÚ+„ëù9_oC « Ç!ÜË»;“ïS.­ÞdP’½»¡VIcûËþ÷³}Ú|ÓzÜ^ΞÖ1¤øcá†VLJí—þ'ÿU›á¿…ןì+uÿgÌ“ÿ‹®ÆËPKï6.¡Ûæ"†ÛÈʲ·qüºSîmB®~îðÖŠ£}LÝ4ž¨á¥øsáßò·ÛþÌÒ®ßü~²´¿†º5¬·P]é^D¯¾ ÚIöŸàl6>_ájô#aз5_Éù×?ÃÓoùÿvŸ;î/gÇÿ|6£?Øðÿwåš_ûëïÒ‡¾‘ÿcD¬>÷ïæÿâ묚ßÌ^>e/SQ"íù;s·­ÒîÎŽ+Pø¢}Ÿ÷ZZ#(ã÷Ò|¿øýwßþxź\K *^FÆ+…[¹øqÿªsZùqãqmÝà-eü-ã„ýƒRÚ‡û©'c]æÔ”ÞÆ¦¥¢Œ¯?ô? xyu½ N·Š Âö ›‰Š28 ümm¿ƒJòÿ Ûèþ"ÔÞÂÿ@“M•%ÝÜ )t9nOÞã­}¡aoªØÜYÝD“ÚÜFÑKŒ«¡ ×çÄ¿ˆþ#øañÕôÍsOŒiºnØD¶p&„üÈã?ű—wüSÇR¨—µ¦Íðœ¿u4u·ð?…¼æHâÿ—ö©v…ü?÷Õ7þ]+þ€ïÿ3ñuÂh?4ï\5å´RŤ®äG–6Üä}à¸ÿÙ«¡ÿ…aÿ<5ûôÕãûZ½Ùê<=>Ëð)øvêÒâòÃL³M÷ÿº+¯*—¯ü ¾ºÐt˜ôÒÆ.RÂgÔ÷5óïìéàM0ëï«Eq%óY¡UóÐ~äýÐÿßUô&½|,4É¥ÏÌÖ¾¢ B-£æêIÎV<ßÆÚŸÛõI9Š/”W7{{|ÏW.7Ü;÷™©»xãïW,ŠÜ…!ÜÝ)ï…UÄÃÿ©Ñ|½ÏŽj-¦FÏðš’‘G¹ªt_›ýšsC"ÄÞX ý·T²°…rNÚ†Z‡Ì²u;‚ÉåÛ eþ÷ÝÝïWîî7/”‡ýöÿÙjœ±îà|«YH´R‰’Þ.IÚƒhlT© ™”È0OO÷©ðÂLlܨ~í^L»AdqÇòò)Ò°VÇ,Íü+÷¨ÝØãÔD¾^à>÷vjųDˆ–ÜÍË«ýÕ«I…L ÀE …ëÿ|Ô qó1çh5&„¯ WP_ýª©q}å§îÁóXœ*ûT¼2± ¹Ú¬}b;=RdŠq-ÆÇÛ±OËÏ÷±ÿ¨“.(ŠÙ`º•q:Ë*>ÒÛ÷`þ©ö[‰R;–çËwÏüü´iº|m¾ËxÎâª>÷ûÕ{wbEfÛ#†Ö;~¯$­Ý¤zÏÖ5ë43Ï(ÜNæ'ýÚ]Rk%¼Ù6ÄŸwÊ?àMXºuœ—×pC¿Íå·ßfçsûê“wØÒ «,Zêך¢)¶‰øŸå¦]hrÝ+yúœˆ[þYÄvóVîn¨H#ŽIç~‹ÿǿ٧}¡,Ñã%×øV ½LHüi ï7·LÝü·Ù¿æÏoý–³d±´±•çC$’±ÿ–Ÿ:±{o½vPj_'ï uÿbAÒ©ßÙé÷–ÍÄe‹wrŸøõMÊŽÞ9ƒâ'·‘…ÌŠ©ÁP|Ã5Xµñ–•5«…óÏÊŒ¨Û¿ÞÛV&ðÎˆÒ®Ë ®Ÿ)Ü>l¼kKBðÇþ…aoNÑ÷”}ÝÞ´$»š¶»rýŽêŽ-ìÄû£î¬Û ´—)Ÿ­/#9'¸^jZŒ7q%’JÙ;dFCòUÿwÒº¸“gïÓæ?søk>ý®l¶Wa×?2¸ù¾”é›íƒÈ¸Ÿc1W_ÈöbÜ׊8ÙÁ»3ºÞ©Òò• ¤Sã…oâÿv šÑæ96úí•w§ÛêžQrö÷VϹÏF­Ì¬tÈÂFáþ^ÜVwˆtÔÖ-ÎFEY ãÞûËE¼&7ól’ÝÇ;_ø¿Š§—O7‹ìŒ?‡Ò„ȱÿ,ö2%Þv‘6¼ù_ûß÷ÕhÛCv·pNÑùìh¤äí(>ïýóÿÅUØf¹µ¶çºu_»š¹ôWЬ˜toºU‡Ì¿ïQ ï"iÕeÙóö–§Yâèw³ýÚ˜/9wm?uªE·FVp?xG>õvd;]B®>êÕWÉáó·vßö«@e†vmqÕj¼ÊU?º¹ûßÝ­nEŠöw\˼Š~÷¥jeêµ[SEó¢aùVV«bf·mŸ+Åó£u…jÂÆ9vrÔé! » ~íR`ûžàíkû{@µºa¶B›d_Få?´'-.æÓ¼JºrÜ\Çþ‰tì¨SÊÎàÏžËós×¥t_ õ#g©ßéLCûØë®ñ÷„`ñσµ] áåŽ+ØL{à“c©ê0~ W«íðîŸ]Ž4ýu.‡ÂZöTŸ¯Å…½×†®-“í:¸x^¿4±'¦:Òÿ„ÞÃþŠl?÷î:ô;?øoÂ2ù² è5´û*_\§ÚTY6ôÇû?ìÖ‘á?[OüÇÿÄ×Í·wªü£»éùžµû_™ú-dÍR Ž%?ô*YðËßÞ§™¶!¦¼{¸Œ÷ªn4†3 Ûj9¤xÛ朗Y£„uÝŽ­X÷R\3`ìLýïïVSf©¼àÏ€w5JÌqû«Y-pöñb1³ý¦1¦4rLªnÕþY-g} ,X’ê[‰Y ;Sîš „Z†9§ný×—mUéBlUÞÿ="ÂËPžed{qäìV}ß/«Sæ›và\üß(Ú:R=çÉÀªw7·~ô§ñnÅK¤ÍëáâÆÓæT‰%¼,±G±xác« mbdÃÈqÂÕ+¿ѧwcŽ+3KZÝ"¿æï¸S&Ô*¯ýî»k̯/µJK'­•Ú²mn~žÕF=$Gû[É;H+•ëýÖÝéÅ]‹QG§ÿoG$Þ\oUumµBïÄÖQ»$—îÆâªw|µÈèz}¶ø-÷ÊîÒ—nÁ?üOݬ¹µˆìoܦuq;ɽçdÿÍéüª cÙèŸÛ’*ï?+ç ™¿½OÿFº‹ ÅyC.Úä£Ö®ÙHíÕ¿éœR&½¨«¦mÕSûÛ÷5Hùlj¶“w¬ðklcþ©Ð7áWášæÅTãeÿ¾[us7(¼†&»½ýÚmŸŒ­¤ MÄ//ÝjtEò¶u¿Ú’G `Þü7ËüUVOiÍþµ«giÞ:sX/ã 5b2Á¿2+üÕKZÔ­Ù¥’"Ľß_÷}½»ÑmtK©Ý@ÖKÚDe#w™ýå«–ßg‘7 ùˆÜkÎt/$ȈetÙòX~]¿í7ÿ]]Ÿ‹#WPéò·µ3’±y4y-îíç’%ù~_á?çó­VT“bH›yÝýàßîÖzx’9ýXfÏðÕi5iî.WìΛTíxäø÷Ö‹vÍë_´ÆždI&Ü•x¥Xb¤¸Õ£·¸Š „{w–6ÇÊà_ð¡µs .ÿ-Ô†­ÿlEt‹ÄA²x¨HÉšzn´Vâ{k„Ù埑›v×_÷«yÛrda³üXë\n£ Z…»FFØÊíÚµGC¾¹ð½’ZK$·pŸÝ³ååUô«Ø‹#¼eI†OáÍDúx_ž"U¿Ùû­Yë­G2!RŸ0Ü”lIç¢Ç¯ÍU¡š‘Èñ¯ï>\ü»½jÄ2<}\7ñjÃkéf‹z~*ÔÅÔ¥]ÁËýÚ/b¬tÏ™±Ÿ›¿Ú¨%Qµð¾¾õ‘­:ļSå¾y¡ò߸ûËUs;¼i±“†F;½Xšn’–·wÄo¹·üóQ.©<~l$ï•-ýïâÍ=õéÙYÄAÝ gýê.RGA¥jW]yF¾V ¾ß½¿×þZ’©ù±\m¦°n¡óâ%C´«‡ü+rÏZ7–ˆê>l|êßy[ѪâÈ’,ÍÍ‚{U8¡ò]“ûý?Þ§M¨>Ì‘úU9¯·7#îþ•«25¾Öb(‰|ÈTÿ5µO3æ ÿªiªynÈRŸºKL–Öc¤x‚ÏP\±ÿÝÍ{TR 2œ‚2+çíPòí¥,>Vø÷ð×°|?Ö¶ü/gp~ø]Ÿjô0³å»œ•áîó:ütéÞ8ÔtýNûMËD·‘Ëu7•#ä—ÏC‡6×–i|@ÿ µ—þÿöUôOí=¯é>°Ð¼S«é2ê–¢wÓäX™¸ó²nPpGÈßïWΟð¸þÿÑ<´ÿ?ð*óñt• ­¥£Ôö0•äé+;Ÿ~É ‚пd\þ•æþ•pò[.ßz½Ä7gѧnåq\E’í8è+Ûªõ>v$BÒq«SKÔTÇZu²î~›¨•„’··JålÙ!«Âçÿ¨¬íö£—'t®ÏûÎõZo—îî©adµo1¾eDÝÓï7ðΤµr¦¢»QmÓ·Í'×Ò¨MŒ/÷˜íïUƒ#mi$ùþ=Täù¦W)»oÊ?Ù¬[7Hª¶æi¾oÞ"ßSRH£,~öôšnQ°ûY‡Êß{^Ú1(.Ñ÷ä;™«_1¾^ÖÿëÔNû]±þíòXÂòIüÃPÁ ’“wÔ®]ˆ.-|ÍÙû¿Ýª®¨­òÛz7¥X¹¸ÜxùV²å¼ýç—ÜØûÕ›f‰»u|ÿ÷ÖÚ§åÉ%Ä®IÛ÷EZÜŸïwj¥.©»ùñýÑPXù¾þ Û½¹¬»½Z }ÅŸlKómÏËYz¾©+šç+;„ ó3·õ¬;›ícµã }YÙXvª·Ú)-¿ˆä›"ù•z¶>QÿצÞ_Fæþ*Á]A#Eò—û£nk#QÖ&’MˆûûÌ)¥ÌU[™#‘·y»¿‡å¨dºE??ÍŽŸì×:ÚЇvÿâÿ¾Gû5Ÿw­,ÿ/þ…V 3«mR=ËÆßö±L}Pvzò}wÆ—\©ÍŠK|Éó-Mgã¨î­Ieò¥QÎàÛEW²*ç¦Ï¬;nòòµVmBIýiUÍy.³ñA!‰’ÉÌìÇoš£åZ§¦|@žòfBœü»¤4{¸*Šç¸&¡˜×tƒýìÔo¬G’Büq·æ¯=·ñ þÿ7÷½V!ñuœ!„g§^;Òöhw;™¯ [°µˆÛó Ì›GÓî6I·¯ÉüUÆÏñÚKÄ´‹{;mbßÂ*Ëø#ååI\¦à»öZN‘¢™ÐÁ¥éÑËû¢"•:2ÈÛ–¯Éª]ۮÞ¸âLÕÊÁâHc³ŠI@‰]§v*¼¾*³¾Ü‰&å ´µC¦_1ÐK¬D²´’ qýÔÛÿ}UøüQl°©wÆß­qÐ^:†Ùzg‰ŽæŽìR\ÉnË´Gþòü´*`Ú;ÄñÇØöù°HÐ7IæU­Xîvüµ‹“B$•$ãwÝ5XC»ž¾ëñòš³›—'¿ýõQÝ,±—’ 3c;øªÉ°‰nc\Ç÷{Çü&›¥Ü}—ZkyaÆïâoóµïš– ’H›‘òõþuͺLÈùÇF_¼µ@jqøS ŠOÞ4y…UA;¿»þÕUšbÛ³ò¢ÿãÕ,´GqoÂl#äÏðÕ+‰‹~ï…\ E&¥ö†tO‘U¹“ýš¡}u"¦"ùe~›¾êV¬[5HuÌÞ[ùc ÿÝþèª2©„¨*Äîvj¹ "4åÏÌwo¼O÷ª–¡}œrÎè>A»æ©‘¢*ßÂú”¨¯#¤wm_âÿz²|Q«\i6É™göËéNß¿µbÞf©lõIï¡Iò3|åj„Ó$ÓOvNæ`Ü>î>õ •c:á^ÎÐ ]¦½lçnÅÿvªÄ±ZÁËïm¼³ý ª-発â‘Ù~ëº? åõ_[Û¦ÙüÖcò6ömõºW¬oꚷɈßgû_{ms:ޏWøÆìñº¹íKÅÑG;˹”íÜÇmy¦¯ñ0–œ#†”œFØÚª¿ÃÖº)ÓobÔ~#ÑõoP ›[<µq÷¾>‹OW6ãͺøkËu/^j‘î /Þùб¿´$·¸WeÝÕX×|p¿Ìr¼T÷NßVñV¯¬y'D]Ü* µ—q¬j~J•üµéº™6¤Ûù`m)¸Ó-¤¥Ë}ª¸¡Z+cV¹¢õ"»Öµ³q¹ûÕ¡¤øÒKXV®z²ŽµSW…6`˜ Ö˜mÙ¸ Ÿâ­%E±Ë5RŒ÷=fÇ^܈î\ kÛk0àíÏ÷¿½^Y¤ëBR;„*Ž~G®¢ßRHzßíz×éÙ°—::׳¶šo5÷¹çŸ½Z¶Ël„nãýºãíµŒ´¢Õƒ 麱f«C§xÃ}ÉÝ7á¬ÇÓd… œ&çß¿5T]IøöÒ½ânnwzî¨apMRçOR ß÷£ Õ øÁ¸!eÛÕpU¾íÚ2̈‹XúÞ­ÄÂᘎ~öÚqÔ»šrøª;¤ÿF“kwY~ZÆŸÆFd‘ÌLÒÛÎÝÀ}ãÍcXXÉ©Cxðo¶Ю74ŸÞOû嫵†Ýös™Tï |ìʵÕi½ e+nmÜø™ã»iyJß~7ïþ½[VŸ¤ÓU¹ßýÖíÿ¯<¹¾¶ižD'áoºŸìíèE&©©YÝN©mŠ-Чws¹«§Ù&qºÖ¾§½xwâ’\2£åîÅy®Â=xê×v·–Ò£yoÌJ~ú}ÖZùJ©,fWIn7Æß—øk¿ð¯%³š"eû§óÉV‡.¨è¥WŸF}Ÿ ÛÙÍuøUàM¯"¾jÿµ]µÖߘüʽ^àŸGq[ç/Jõm7XûUº¦~oöMyN éhê®-âYДÝòþëï.~óS´=s̉í/ý"Ýü§o»Ÿî·ü å¬kmY#*.pŒ$ÏJÒ–ÆßPY§æ)Ý#,gæÚ>eÿЪ&‹Lº^¡Hè©p[cgø©ú•œ÷HÏe(Šé>`²ýÇÿ÷«ñ šŠèÍ‘›Ë¤ ðËÚÛÇm¿í|Øoö«ªÑµEÕ´«[ÔB›Ç)'Þ ÷X7ã@ Ò5'¸uŽæ -ocÿYlíó÷}GûB¶Õ·6 ßÞ5NîÖ-R8÷å]>hå_¾‡ýš,ÚOš;€<Øß_ºÃÕhZ¹*Zí¸~›qÿÄÔ–Ì|½Ž¿wåZyP»‡÷¾j‰ÛÉš2çå?/ü žÄnZÓdÿLh³÷ÿô!W †è?à5œêwy£åt;†ÚÖÜ,ŸÂãwÿW$f\®ÕéX²[ù—+"e\ ¥¿Ù­û¿—wë!ùÍÓkÔV„ ²‘2à—éT|/¿LÕ,¤w,`œcwÞØ_åû/ü¥šo²Ý«“µ[øš¡·oôœýíŒÛ½W?-W¹zŸH©Ü¥ÝTtkµiv“~$oҮ§ïE3׺ìpž$“uâãï UÞ?Ý þ”ýW÷š‡Óæ]Ê ƒ¸W:žä·™[dLmÝÖ¨²•eÇÝ^µ¡¨ÇûÅøj™…5”PÝI„zc§ÝyßÊO÷GÌÕ‘p¥må1ü¯Ž7 jk+ºîÖÔÇÏûÇ–¬ÛÖÓò¯zÆF±)¦!…co,mÚ´ÅoÞs˜p¾¢¥Ý÷ïó˹™áŠ{ K¨µ¿÷Ižó̸hÓæØ9ªš„ŽÛ"ŒÇæ<üÛj[8^Ö×y;¥q¸îîj!òï.76ˆVLÖ%9£Ž¼¤?Å÷}j»Ç*Äþ?íRܱó÷j…ÔÛ– ²Yn8ÆOZå¼Eqý¡tºtGsü²ÎßËU­GR{tÊ!–Sò¤wæÿ Ëó“M…òûås¾IøÍš¥mHµ­Q4û)Z 8Sšâõ_EŠÒ{ƒD>uÏßoëXž5øˆö·in›¥PX³ƒøö«Í.üE:—Lïv¼òìÿwÐVЦØ]#gRñeî½zÀɲ"[Ÿ+‘«k‰£Û4Žè›zm%·{ûÕ[{èô»gD”K/vQòý+Ï<]¬I}rÑœ²§Ìº©Ã™Ø‡.UÌʾ ñEÞ°òÈdÙ©úW35ᑹJ‚[ÇfaŸök±ø{á{}hj2^È©j–§27ðáeÏ|íü7W©¥Ýž=牑ÊÛZÉtøOá‹zT°èï#eåŠ$þôÿ²ÕûÉ ŽÝ-")åÂìÞlcnÿ÷ª‚ÜF³.c2ñ·j»šŽvöJœ>")­gYX$‰.ß”2žµbÞFÞE>C¶>m«Q%Ñ…äqò°è­ó:¿e«K®ðelm+’¿Ê†ÝЧ_v;yòÅÝäÝ(;Jµd¼i'ɃþóSãìîòF‡cüÁ}?¼¾õ}fŽÞ?5#IW;wcüâ¹þ A8Ô÷YV) måN›ân•«gªYªTWo÷Z±¯/ ‘ÕÑ6±÷ûµKU†5 àá˜r¿íU(süDJnš¼u±ØGâ(—‡­jX^jqÌ©Ã*Ÿùèü*þ5„°Öêm ZŸØ=]ÖžÎÍŒgço”n®Qu-É<÷ù²Åºk;Ä‘’áÈ'dA–_»ÿ­K? Ýêž ŸQˆÄª×v|Þk&=»eñÚp‚„o"çQÊMC¡—a⫸a–?1¾wÞ?*7ûµ¥5Ä‚Þ;í0Ù<Ü åB¹þéæ°ôèßOh®ü½Ê“ù¾ëcæ­-O\ó-µC. ×­}0–8›vèÎíÛ›=>_–¶’\Ë‘±N_}™×–·V7/osÅ*uV¨Z=©÷þfý+ÑôÝbËÅÚ}”ä£íPBÌsº¾ùþ/Ö³õ¿ø{A’ÖYïe9HÎí¸_•U«5‰×’kSG„Ó=CÉ•aŠG“´yùŠÿ»Wl.¾Ç,AЪž»½*žÛÕ{«»7H<”Þ`I7:EþZ«\ë—ˆ±Èûöž¾öß÷«mfb¥zžáŸI¦Þ ŠPöåùfÜ»*ú3Á^0žPóþd®wþÕ|s£êIl¿uÖ½OÀÚÓÛîO5›nï&_îÿ²ß5yÕéXô)TçW>¸·Ô ÄÉæËýßZÚ´Ô¤ÒdÞO›`z·ñCþ×Ò¼§Â^&:•ŒFO•þãóüUßéZ—îUîS÷¿Ú¯>Hè;+­÷Ö›­äNFälîSG…5c5¼°]âgÎߺ½XÚ‰¦¿Ùâqö';¡?4müKôþíkKn’/È6±}á½*@Þ·šE9#äsÿ|Ö‚âH”ãÕ›c2MÎFõëE¶ ÿìÒåY†äþë³Pgbý›3E‰¬ŸíSfpÙü]—û¸§3|½÷~õ5Ô´«ÑŠ„ ž9ƒC¸ŽµwN“u³ÇüQ_á5ÀûL‘“ó!ݵ½ëRÁ¶Þ ?vA³ÿ‰ÿÇ«X³9Ü®íÃýšÊUÛ³8àúV¼Ëó7ñmëY_)lïø [ Æñ oö7•w‰Õöÿ{§þ…U¼7ï ÙFùù#Ùµ¾òà‘·þ÷kbó÷ѱõ T4Åòm–=å¶;¯þ<Õ{{‡€¤2xGJ-÷„ ¿ÅtuÍxÅ+d=þuÒ×»‡þ{–;™Ío zÝŠ!î’[„1´_Ç$§ï·ðýk%ìRÜy÷>ì—?/ýóÿë­[ö‰c@?ÕD6¢ÿ Àk†×õç’o"¹žºâ›ÑG«"¯H»/þÍ^}©_I$ÒàŸœúö®×ÎußË1¬tm{Ê?2£줔.Îz÷©hG©‘§Ç%â}£;;×g®}OÓlÄ:Å¢9UU¿Úé\ÞšÛo§àE+eƒUÜNº—+?îÆÕV¥$êTZ“NJ…&ìtO¡¾¼%kO+th_vvï¬GÐõ;oµ=´©vïÇñUmÖÚþîG™ÖΖ8-¤ØÌÅ”g=‚î®ËÁóZ]_ý›TÛNÕl¼è$ö´R¡*Ëéü-õùk7RT¯ÇËN»Rz3€·_ô¤sÏ̹ûßìÓ¯f}­˜?ïãÕßë n4»×žÊནmû=Ê£2¹Ú§æ=‡Í×¥cj¿ |E§ÛKwqg¶þw‘fO‘͆ÿwrî­cZœîLèÔJÖ8øÚFÄgð­ ‚«Fè]ðçï´’Øéíb’›Ùà¿ú¥ríõݺ›öXíß"D•¶|ÑçærjHŠq”ÌëÉ®ªóPßÈX'_”RÊ¡ŸÌw/ÏÝ_½QM!ê>ïðÕ£ ê™T·5:á†jÿÇ©É'¥nq"Ô4¨3Þº; ]P°ˆe‡¥/y»q¯DÐmþÇyû§03¨ÙïþÕyøš¼‹Ý=¼ SÞ{‡ˆtû}?ND(~Üç–cü?î×Kð2hµ-zã@»#ìúŠ}æ}¼¦í¿ú`ø²Æ[­Ggš%”¡¾êšæmî®t]IeŠCÕ¼œûʳj)åïyï Ùû¨:×|Aðøð®«>ë+gÞû|Ø7*«mþéfÿ>•ÐiŸ´%ûE¸p²°Ù$ŠNïMßþÍeø“ÇøŠÉ Ô“ý#ïfܯŸö½~ípBiÏTzr•:ÐÑ¡|%fu 6½{`ÞNæèË•ˆ7]µÆjVï©K*[É縙›jŸø þ5ÙhZäz/„/nã¸ÖišÒ8%˜|™gÛÿ|ÿß5ÌøOG³Õµ6IgX¿Ýgٹٮµ.[ϱÆâê5æT×’F×IöCou8Û<»s¿*öÝYM•›çùÙ¯eÖ|u«fŽ)U­mÓ÷2çs'vVn¸¯%ÕÚ [‡´¶"||¦\}ï÷}+Z•M‘ÍŠ éjÙŸæ5ˆ®·ÂºÃÛÊ‘‰ Æçžv²Ÿök“L|ÛÁ«–,a|òýáþÍtUJjÇ6R„î})à¯}ÚG;Uð²sòîþ^É¢kD\¿Þþ,×ɾñ7–SŸ™~S¹«×<3ãhã¹·ä)¼í ÇïgîüÕáÔ‡)ô ó{ÈúÆãÌ݆ùØr¿Þ­Ÿk†ù§¶¹CÄTnû®¸ûËÿ}W›Øø‚+xRI\ªçieþílØj ‘J'DÜðü»Y¿ÙoP¸Ú+sÕ,¦1º6²þ«Wõ _í-=ÄO²v£‘~ò°û¦°tÛáql“âwýªÚÓu¦™£ÀÜê¿Â++‘aÚ& ×Aâ¸lñ§Ÿ—îæµö‰8ü¿Ù¬·µòïRT¹l㵨ò翺¹ªHLÅÖÚKÄ¿ˆnýÛ#®~ö9ÿâ«speY:î Uï#ÎŽ>^›Z–ÍJÙ¤Dîuw5_RzW˜ÞÅ~ëá‚Ö1[눜|¿+/÷y_þƵ­¦ó´Ûw)ó(d+醪wñídp>oºk_ïeÛâKEÇðîO›ÙŠÑ ~[8/;ºÔ¶±…ûPo¹ÚÍB¯Îܘ.j£¹“={áúíðͯãü륮wÀ‹·Ã–¹÷þuÑW»‡þ÷÷ªÛIòd›ûµ‘© Ä›‹ýÑ´V5ÅÖæÈÆÑüY«·—/û5ƒ=ÁÛ—Îá÷j bRÔ.ŸÍþò(ÜÌßÞ®ÅúâZÚÜ;HwchÝü?íWE¬êB’™ ¬XûßŶ¼oUÕ¤ñåăä‰>`Íó Ú¿Z¨G˜Ýæ£$š•ÊÇõ•¾üì>èûÛWÖ–îêÿtŸq?¼zÓ.d6v«-9 ½~à®sXÕÞ6 ÷ŸÞºÒf?h¥­êÆgxÓåEùkŽÔ/„r±•gR¾÷Ú‹Õ³\–©|n‚eQñêì¥NæUjªh[½b]ØþlýêÑÐak]÷¤ßt*ýêæ‘¼¹T‘»šîõ+7†ÚÃÊŒªWÚêÿz·­h%ç>õœºüÒIg]I!k‡$î¿Þ®æ_ ÁñC°k:dÁüKä¾³Œ7Ì£åGü—øïšâ/>Ñ$W ¿{w_E­¯ƒž:À¾+YnÝ–ÂäySòv¯÷NÑ÷¿û&¬eÉÏ Ðs%QB{2Xþø‡KŽ)Ë¥•ê ÑÄÒ”§÷¶õªÙë7ÚÜW ‘]néþ_”}ÕÛÿ²×ÔúÆ—¢xâÂÚþ[}÷/¶¹áeaÝ~ƒú x?|©è:»½¥Ã½šÛ#mÛún¯>‡7iÚç¥,4"¹£{#Ñ´ Jxü9gqù¸JÆCn@¿(?*ñþÍyŽ|Xui­îB[ÚÜ8–o WluÛ¹¿‹æÛþõvzÄÖú_€mI,óÉ (\m;OÓšåü?á™|dÌÍ¢¼¬£ÍO2M™Ùü;½1E8B›s9V‡$YÄ^Ü}ŸGk6¼7­çy¡ðv nÕÎÓóì«YTŸ¾sæ"|›¿y÷[ýšö'ø6½ÏhN–¸Üö²’íÿnâ¼ûâ.eáÝv 2Îu¸û4³4i·÷¿Å¹·7?•z4jÓŸº·g™Z•J~ü¶FUº…|ì Îâ¿ç¥UÔÖ5uxÈßÂßzºÝ#I–Ìù ?—¹wrz˜åtqó)檜“™¥jn®g¼‡­>%,»¸¨·7J—vÑŠë<¤Íé-õ(*žk¿KÄ’x¤Œ•Ü8V¯1‡|Ž_›ûÕÚ‰£±Óà//Îã„A¹«ƒNíÖ¯*i–¼@±Û»Hçó»5Ä]*\\;’[wÍÖ´u=`Ý7–#Úª6üϺ²VÜêº4ܦ8ºª£ÐŽ[9!e!~Vû´Æi!}„–¢iw E¸Ú‹×w÷«³SÉÒúS½h,T“ýª®÷“ûªcqæJ®±†`zz 9GÎh·‰µÓ–Â;™ÝNí¨vîªpÛÉ$»É,ÍóQe i—»ÿ²µ½›w#ñnQO˺AX7luÓ„ëk's6C;Èãj¯ZTïf/5èzG‡aµ³sv#d?ÅŠÉ×,í#ûˆ»2ÿr,Jç±éýB\œ÷1mn%³e•+°Óud¼RC¹ðÿjçÇ[Èÿd­Aóéòy‘Ù÷ªej†ƒ£è}àŸniO§ÜÊ|õwgæoö«ºðUÁÓv[JDSÚ¾èÙ~Uu+ùùwÃÞ2}&þÞäåS;]”ôô‡õH5‹4 ‰QÇÈÊ~õyÓ‡&ŒêÑëÚt‹¯Ü¯;QÎï”×Q¥ì[¿5G#iãïW˜øBo´hñÛJÿ4ghoâÝ®ûJºùSæÜØå³\ÝflëŸ ™ÏZ‘&Ú¨ƒ;ñU“tj¤íô©!´*ÿvOýš¬Ìµ ‰ùx¨­¦òîÕÝo—ñ¦Äß¾ãï›­8ǺçÍ6Ãýꛫaû5Ê |²+~kÿØÔ7hb|Ì)tÛ¤këÛbÿ;B% øÑyú‚å ùpÕ¹‘GpóX9á·ÿŠ¥\*)á;ià ,¯üX‹ºÿj¨îK=‹Á±ù~±`ì­ÊÍðü^Fg÷bZÑǹ¯~е4x“w›9Íayhã¼{k:)>uÏÝU­}Y XZ?÷xý+1mGöæ¹ênmÌlw·÷ŽÚ¯ª–i`}ØÎ?SÆ¡Ÿ¡ÕŸ|ñŸH€®g𛣒»Änù!w=c^0RÄü­ŠÚÕmÃ4Rü¿0®g^o.Ù¤n:W4âP´¸òl^@ 1,Û‰˜ýi¾sª°þ$«åÀ»þVWæªw…Žw²Õ™±Jþm˳šÁÔî<¸Ôœí_âþíi^Éò±=–¸Ýrø4¾Xûßz•µ.=â«£pK±æ‘¿½þÍy½ÍÆØüÄù7ÁWûßþÍu~(˜y+lŽÊÌKgµy·Šu†µV ÷¾èZê„ÙCRÖÎýÎÇjW­_ ’FÜT½ÔŸlg.Yñ÷sò­sš® do(ʧ–þõvÓ¥sÔPE-Fùî€sågîÿz©2žŸÃRÈ¿5G÷Wæ®ô¹V‡“6ÛæeW]Ï÷Å{Ô­›ÁÚZÃ$Éåsµƒÿâ«Çæ=*ôZõÌv d\µº¾ð¾XW£*Ö·C£ ]PmË©ÛèzLV:“ÜçÅ(eÚÜ·5ÌxÃsØÞK,¿“¿†þëUÏøºK}¶Æ=¶ÿtíûÍÿ¯X›M·Ô4«),‘%ˆ&ÙNææ¼Ú•'…çÔöaN–.Ÿ$9ðÏÆMgÃpÊ“Ë%ë$gµ‚š$Ë|ÌÞ¼VžñjîúúPb‚)n7å™7)Ïðíôª&ð\¬ï-µ»¼Kýáÿ³W5g¥«]Á”S?ûÕvÃ×4Q¸šPnèõ¸|uá;}6ÎG¸Åh0ß.Oâ ¿^7VÆ•ñÓÃz}œñâTYAbé̼nUÿ¾–¼óC•] ;Ã0fþ,S&ðÝÌ6É)!‘ÎѶ«ê”ž®f/Z*g£x§ãåî©¥KÓ§¹%d’3¹•‹nWø½k†ð—„ïðLºµÔAX›«0û«œf½ª-./èñAAÔÞ.vî÷ZµzxXrQÝšÑÃÕÅMN¾Ë¡ço ÄbMöñÚù'k2žµÃx’Ííæc#gù¾ZôÿjÈÐù¿úñwñ¯ »‘î.˹³÷kL4ýù0”cB‚çsqº­%™m¹ùsRîâuXÓ,ÞòùK’Éù¥W¸é¹[SçJí.çKqáX4T³2ÈïæÆÒùŠŸ.~îßâÏÝþíg\Â/-”Z[ϵO-!ÝÓ²ü«ZšO‰5xdò-ä‰Þy6BÌ>d$ûôþ¹m®GϽ[Û+yÕnãX6nRØÞžÕæóÔÅ©írÒ~êѼz{î]ƒ÷¬xéS]iogþèJ–Îï›Ò½¦o†¾Ö4W¼ðþ¢f}ñK±€Þ™ ò{½øí¬‰¾ ëw–íp.-"³”üÁFß»Y¬\[å½^ËcÄnaù˜sŸöª&·’k?öP³zê5(拾–ò%ºG*Uwmún¬K‹›}Á²ŽªµéFªg“RƒŽ¦+Ç·žjÞ™¤Üj ˜²çijK˜þLŒ×¨|1·Ž5~Òè°>ç ß. *Õ:w‰ž ªÔ´/|9K8§‘÷O,{‘[ïbº´x,íYäÙ¹_›åþš«ë_4û8íâ³yqT>WÜÞù«”ÔU?ÂCUËeÝy’FÜmÝýæù¨ˆ6EhÞOŒàÿ§›P¼Œõ­™—ŽŸv²¼³ÿ ’ÿwç•:ú§ÿcZ³)òXó¶ºQƒ2׿óþnÿ-Ko-¼yýi±üÞnGñúV¾…§ý£[Ó×ïm#?úêL™ëpGåAz*zAÐRn¯¤ŠåŠG†ÝÌ˨Œº7O˜ ?•dC ÷8®ŽX"†0¿¥aË…r‡ršæª ÅE+¸ûU]Nô2Õ›ð­Wrçû¡ÕaÄàçþY½\ht'﮵ú"à|Ãæé\n±»|C¿-wºÄe­”cïWª/™$”¸Þ¸ÝòŠå‘Ó6ýŽvqµk:鼸°àU­4a™É;vç \þµpcyûÇúV} £¹‹ª^nGú´<ÿµ\³xñ“x]±ïÛŸ›ÿÕò×U!ŽÑP›y¾¹'™ró“û×QÿÝÜx­`µ/ds¾!Ô6£¹o—ïnjò›û§¾¸yçûª~MÕØx²ðÈZ4!xü«Ï5äŽ%ÝŽ7}ã]ÔàfÚ05[ã½ÿ‰ßø¿»XS}î¹q!šF”ü­š¯*îlcpÏêB6<º•9ÙUþ÷ûµŸyªÃ.æbTmﺢXÌÒà}êfL¦Ùdÿv‘á}ŠxäíÛZ‚jŸ! ßÄßüMSf2KÉùñSLN6Üdk,n¡1»«Ò~j÷ŸjD>RBF[øk†Ðc{j(ñ3ü»¥;QÞ«šGˆ$ðíýÄK.ø7îÜ¿t‘üUʼn§í áÔïÂÔöS¾‡Ñ+ \B†@7¸Ú}Ö¹)üws ºó¸FýQÑþ&Eu‰%2mËf¢Ô¾)ZFÌ™U[æÛé_2°Õé»@ú¬Ò’æl³}áXäØoË·æÛ¿j¯ËMÒ|/¦]^J—² «þ¥WåeZᵿŠ^2‹h¼¦îÍÞ¹™¼]¨ÈêDì¬?‰kѧ‚ÄI{ÎÇ LÇÜúšÏGXÐn|>>è®sÆ^6`ò2ü[£=¿ÚZòk¿j—Í}¤¦Ñ³åûƨy“Ý;rë÷7f<ºÏš£2žb¥ü4\×¼Msª>ÞV!ò…¬˜a,Û‹o­KKW[˜W”ü¡X~µ=íŸØfh¤Yzµ^œZ‡¹Ë9Õ|óe;M>Kë”·‰ ;¨«]³áø´ù´í*Í>Õ¨ÈY•{/áþÎꯣÞypÏöp‹tpˆÌ~UÏÞmÕØ|ó[ã4ί+$°,¬~óÚÛ~÷þ<¸®Z’ïØî…8B+»9 øWTÔ®eŠÊÞW¿†@ñù_y0~VôÆïâ©u«RÍï,äÑ¢Ò甫ÝíVW”›o=~m«Šúqüoà[»ÍbõÚ-9ÁYžÚ6f'ûÉòñ»v{³þ×Î_>$\\kwÖr {_bE?0þó7RÚ¬)Ty^(ª°§F>ó;Ç{¥é²ÇOÝÆ¬bÙµåÈ ÍýÖÝü5ËüCñÆ »ü‰ÚÊ|µ¼žCîݳøY¿ÙmÕìŸõ/ ÿ™ñ?ˆoí•VÏ6÷Λ¶dºÞ­¹}ëç‡ñ¦­²õÚêÕÎã$#Ï­E:w¨äÕìTªóC•;_c";YäšÀÇh—Vs {‹™>n¿sÚ͆òXC”Ÿåû£wñ ôÍgà̶ú<·šUÏÛR(þÐñ(?4'æGUÛÏö^7yŽ£g-¿ü³*ª>ö>Zï¥(TêpÕU)ô"yžŽÓþÕtÚ<× c›ÊënéÚ3÷WÒ¹Ko5ƒ”MÌ¿6ê±ÒI&oñµkRŸ2±Ö•Ùê^Ðô¯k:»—k hÄÏsmµ[v6û½ÿ|ÖWÄM}/R[ˆäŠ{'ùaž¹Jÿ zìùâK]Gtº†g†á>Uo)ö²ûü®»¿ï¯ïV¼š§Ã…×#€¬RÈÓBÍ÷’"ÿu¿à-šò½o-nþÖ™à^snWÜ>S÷[ï}kZÏÄWvòÅpÇç žbÆ–£K¸Þ°\íûÕ^áDhøAµ[ýßûæ»ß,´8ÒšW:7¸“û>¸ž–]¿4HU_Á—þù«znŠúä/*i××’¼›c•Ÿj9ÛÕŸø­s/Ú¶™$‰w £aû¿/|/á[z^¡öO³¼ñ¼¹Ý³qUû»~†¹ÜyV†éÜ˼ԒÏP¸¶Žá.’'(O_÷sRÝj2¬nÿ)ΛâÈЮ¡P$BO+ÌŠMÍ!Ûó|»¿=«š¹™®<évK)Ú+¡SŒÕу¯*o–g¥ü)Ô“Mº–ܾ՗÷©#âÃ_P|4ñ$Z‚Ïm;“ÔíüëÎ|C¨vî:ê¼CyºX£Üv‚Ì óoß4jÛÎæÏ«²œ6qzýáß9.If®[¸ÜU3ó˜×A¬\»`OÊ£šã/î Ó<Ÿy¥z” qV©Ê¹Hß sÎÚ×nãÎÖ÷§ùˆÉŸájNØg¥t •¦UTRMH‘É䳦6cnÜüÆ£h亹Dæg;QqRÏR‰†GQ´íù·T³T¾ÑCË,ËŸºOðÕ¯ì÷ÞÆ0YWø±SÙY¼ÓÅË þëJûUOû[U±ZpFë¼ÈŒÛ\&ÆVl⢤ùMiRçܱàýÞ[jÒ}šYÞS2mWhå¾j˹_ø“Å·p\1tkt‹æx—æÜ­éü?-zï„<+.Ÿ ß˜¢“mÌaü¹æÆÖoþÇmqWÞ“Gºk“ms’é…Ø~fÆåÙŽ¿ðà…e9¹v= Ðq‚©‰¥xöò&ùe˜ì†Ûî»6Öoý–¹›«;»;ém.RH.£;]meoö«Ù<;­iú^›£}æ4ùóL™ýì?‹°_âUÁ?Þ¯4ñ¨ž(ñmþ ò t’Faµ6®ÝU_–º)U”Û¹…z1„!c—–²¯Ö¥{Qœn\ß5«obf•\!h·íÛZZÆ‹>›fסhœð¬:-nëE5šY4ærÑ.çÙÏËüU¥»ìûáj%Äl§Ÿîµ£ y*¦UØØáY:ÔÔaJ(µ¦ÝGg:}¦¸‚AµÕOÏá­gÓàñ±e·Òã}­.ÍÎÇû«ïþÍb[Èqtܹ۹~õkX_%ºE(»0K6óµ¿Ù® ‰üKsÖ¤Ó÷e±½¤ø_N·´–æÑ×Ïš7DG?72ö9®^Ëíþñ•í¤W¶u¸ ß"íÏÞfùqþõlø~â95¥–äºÀ$ÝûÁ÷Ûø›mkêYÕ­Âà¼Pyßêãù—ÑNÑÔöËt®%QÒŸ½­Î×ET§îicé øÛJøµá[Í*Iá·×¯­ Y<ç™G̲´HÌP/÷Ÿþ_ øÛº†uë«MF"“¬‡æþù¾òµ{…u¨|ñL·:\OÒy&\y¨Ñ•›qÛþòU_î×¥xžãÂß´ûA¥Û -ѳFÒ̲‡%w1çç]ÝÙú hUT%u³8«áÝug£>X‹ÅÚŸ€î<1q&›sz—ÒI³÷¥Â2(Ýéó}ßïW?m$Šë´üÕí¶?ubMZ'HôÛ=:C÷—‡dQàüÛ›§üzü¢ºoþÎ6\qkú¥ãjZL(n6DÑ2ß2îÊîÛò«u®×ˆ¥M;œsÀÖŒ¢Ž·ÂÞ Õ5o†ºt¢8íÞÿE’"|Їïwýªò?Œ´ð>œ¶ÒÜIöÉŸwØØ#*¶­»8¯¡þ!ü^ѾèŸgIlˤ{m--‘w—rõýêøçÆ~(¿ø‰â¿ ;üˆ‹Ø®<=')óËc·_–‘Ý™:&›.¬î‰"EެÇî×§|*øWÿ †‰â;û»‰,­­¤K}ë²³ýîì¿wåÿ¾«Î¬4ÛŸ¶%Œ;ÝHvùk_X| ñ¶oðýt@ñYÞÃ3´ÑÊ¥Rv'ûÛ[ÿBþÛUÅ{¬Ã Gš×Z£ç_h:¯Ãÿ8"Ü ÐË+ÑŸâ_fô'‰¯o¾.‰«ÅZ¨1œ|Š¥·*·~ÿ—ÝöÄ—GÕ|QãöÑ­l û!g†æÒ1±ð¬Ãåãwðõù»-v*·¹ø3ªý!Úh×6²Éó²áãpó«NUà—S¾ŒcJo]Õ>ø‚ÇO³’{yK·žƒb²çï.[§ùÿ{#[øOâ=ÃϹÓÿp£–ù[gûØæº?ülÖ,õ¶ƒO¿’Ý3³c|¨¬q»éÊîÿW¡èz¶¡¨¿Ô|B)B·Ð„·Í÷˜+øê|؈%)XÒÔ¦ùn|ãijñÍæJ ª‘cªÚ|ÇÌíq×uz¦±gfÚ–£;ÛFÐ^n{³dö[ÄjzYŽýŒl@nur¿ïšºx…6[ à‘‡¯ÌÿØð#Áë –Ý€®ªÚþ'5ÆÜXÊß¿Ts¸WGâ %·Ù:™Ü»qµ¶Õk xäÓ¿ÌÌ[åoî×£N\¹æV¤«T±•ap¿hÙ!ÚÝš½wÁ«­Ö‘ªãʼµ›ioïÿþÍ^Y©Xý†d–ßçoö…uÞÖ5 ëG¶¹(ˆÜ’F•sb×ßø?öjÒš2Û©¨t¨÷j/'ð¥¹ù¾¬µ~Ú2î,ýÕùºV«á"[—m­wHçÑB×k¦Ûý–Î8ÿº¼×?¤Ûy÷ªNãþЮ©zW¥„†¼ÇŸ‰—Ùô®SþŸüù^ߺ¿ã_Xx'ÂÚ–»ª\-­…ŒFYea£·ëŠù«þwÃÿóô)k¶¥WNÉ+™Ñ¤ª]¶{‡Ã à¾m±o–D¿Q÷«ÐˆÜ+Å<ª}žÛMÔù@ û»÷[ÿf¯iG  ô«Zèr&Te 6?O»ù¡Þ–àm+'§QN|4'™®;jât_faê »H×âÛSæ¤ÿÜù ïu8rØÿ¾«—ñ%ŸÚ-åÃ$wAž] …IdÎíÒ?Í\‡‰ï…½œó’<´Fs]“Âmã•þzW•xÒðGàû‚ó<°¨ÄtDó¹µaqd²¹›õ¯?ñ5Öé°æNþÕt tZÛíÝýã\^»6îqòœ×§˜¹\ãuɶ£só9®Zy m”>ÛkW[Írüüª6Ò>Ÿ0.ü³°ü«Ñ‡¸6¥êKCتy‘ýÁü>•™¹ÉÚÄýÚYTÃ3'»Ll¹µhæOQÖqÉÊKÉó|¿ykBþèÉ5ĈQ^c½¿‡oñ6Úf—²9§¶Åeå¿öZcÆ÷Mù]¹ù«šZÈô¢­n¥»8ÞÞîæu[v!¤_æük·¼ñ4M-ävÞÓ],ãó|‰äd›`ûÌÈ:ÿ»^cr³Âè%%Wø?¼+rrçZÁ޼¸EŠIâlÓ»µ¾l}v­rV¢çi=MéVTýÈ«àŸ‰ñª˜Ù¯ÌÃc^Gº-»~Tãùö¯øuû@iíz·úÌvºt³Ï,Qß@7$Œ»Õ¾ï÷kÆ!ø[=¿›¢iÅ%òmÅÅåä[›æº‹ØŸ—ò¯:øƒ¢ÛøSûp~õ£ ˆ|±ûßû/ýõ^c:ïÙÄô¯*qö“ù÷í)¢Ùø7Ç3ÝÚÙù:v¯ÚíZ'ó¡›,èYxù™²;ðí-^Ý28¥m­rÇ»ÍçøXñ[ŸÚ×þ&Òìì'¿»º²¶,Ém;ü¹?6ÎÃpUôæ„ðû늖èÒ¥¸ØŸ"£2e¾fÇö«Ð¤¾¯O–läëÍNt7<+ ÎÖ $¦ŸçYæ+[šÖ“ÖšÑâ6Âm>ZÛð÷ؤÓ`yßÊ•>p®~SÇÝnÕ?‰d·Ðí^Hö}ÒßÄ?Ƽ9Vs­îžò¦¡K”ð&EÔšßz#!ošOº¸­›)%¼¹ŠIP2ƒÆÚ¥5×ö–¥p\ïÞü6>cýÚÙ³ÓÎÔdÚ±Ë7Þ5ô3Ÿº¹ž£OÞ|»–´Ë‡?ÝÝš&µ‹øÂ"÷lnÿ-][WWÀÜí†ýßðí¦\ÚËn°$¯ iÍò¢?2b¸®z<¦u„Ò\;O¹·Z½ÁúÂG2Ç;þõ±Ç·Já XíÙ‰ÄK¿0ÿÙªòÈc_”ŸÏøk ôÕEcj ÀôÉô½FãM”¥´w¶ÂÕ‘i§ê>ñ—¬[ÈíoÌrÍÞfQ·r/o»¸ß5sá¾±¨ÞC=²K"[ùmo/Ý6q·½vzÇ…ïüD–è±q¶Dþþ×µx®¬èTäg¦©Æ¢¹‘ñ÷ã¿5¸ôÏ[ÜYøj"»#xöKy>2ϳÓwÊ¿÷Õyôúo‰-mžÒÊöçk&Ù7­ÓvÏOâÛ·ýžÕèšoÃ{ÿíFgÄq'Ý•OÍÿ}W¯é‚×G%°RÅÍñnû¿Þ÷+[Km‘‚Á¯´Ï¦ø{qw^™Ÿ µ¾÷÷TW¯øWá>q¦:El-ø•‰Þ[7ÍÚ»«ÿéÍ©ÅqäI,×w͵ÿ»]âÁ¥Ú0Ÿ#'þƒù-cWR¤5fÔð4£-óLJ¾¤~)¸¹œHÖ¶Ço™•Øÿêçcµÿ„GÆKfŽQ6mßêQ ƒŽ~__ö—åùkèY¥ôóÉçï|ÛsòóÛmy×ů Ç#²D ìÝûµ'w®íßû-U [©.Yìô"¶AsC¡î^ø‰oà_¯‰. 2ê7ÿ¹²Š0Ìò„Îçúgø«À¾…£XE©Þjw)æC4ëÆw³r~oœD1þÕ|Mÿ Çâ7ý zýý_þ*¾ÍøÛñÝÕ?³µTW;a¹ù×øOùþõwÓ—2º<º‘äŸ)è² eÁéPÚ#Øz¡ÅXê&]²nõàÒœlù„»o#ýËc­sZ¬#És‚Ù@Ý+®š=ưõ+‘«Ï©;tÏñ=¯Ùå¸AŸï-xÄy……¬NvÁör§ôÿì«é_Zù{gÏÈé³ò¯–¾9³Ç¦¤ •g$.=V²¦½ûÉésÌšco¥4Žw4¥Ÿ¯ðÿ þUÅëw^\lN8WY¬L#¶XÇÊ¿wmp>#˜y>Y}»ÎÚõ髳–nÈæ"a$êqæ¶wl¥¿¼+¹*Øû¸¨ŸPû(@~õEºMJ_¼wËI]ÖÖç6–ŽåV‘ä@›6íêÔ·0•·Š^0x©îcHÛÇû[©ŽÇìÞ^w*Õ-“k¦V[[6rÏÚ¤{¯:e$|*•þµ]®É‚µwN†9&O57'}§kTÊÈÖÏÝE™¬Ã" }£w÷j]X³ðÝüɧ´ï›¾i>R´ß°Üý¥!´Vs°Gš½Gý›üI¯2&"Šy ª,§gÍèÞ•ÅR¥8«Tz’§Q»ÓZ—dý§ :-Õž…onòǶ6Ë2£•¾Voîÿwšò«ÛGÇZÅäîMÕë!¸Ý,¿b ²®[£ÿA¯EŸömñ%œ÷I=¡u€²»Dá—p›æªÚW‚N›jÏqi, αnhÏÞÿãUpôStw7ö8ŠÞímŒOxNçÄše¥ºJ®|Ù%‹w›³ø¾]Øm¿z½Dð-ž‡tözd†òõ£+4rª1þ×ùûµ[À‚ãMIl¹*$dù‡ÉóWAàÍJKëÝJüA½šÝ¥vÞU]†¼ŒF&u/mr†QŠ+ê:§c¦ÜOsoqn–iºO4}U»ðÊÕä~?×>Õ¥)ˆy¼ì“o÷±†jû'áݯÄOM¡Gòêºle—a<¦s×—¿Ýjø;År™lŠyN“:¼_ÜÇ®šOCŸVÔÌM*Åãu”FZ'M…˜ÿãÕÖ[ÆñÃæû®ïƒòÕ#|ÐEAµŽÝ«÷UkR(dkl ªgæUû§Å^•Y]œ”i¨CB¼ÌwðÂàU«©‡S·2Ÿ!¤MåŸ;¶žð­=Wå‹ÄÏ.öhö¨þõPÒ¼6·Î÷:…çî›û¿Ý•»RVKŽroÜH«-×¾=Ýþê/͹kR×÷÷Qo»‘lâ?ßš¥›^³Òeû6•i›ýöûßð&¨¥[Cý"[¶f²«ò­fäûXÒ =ÝÍ}T³Ñoíàˆ•NÒÊ~f¯¡<9¬@ÖË.ÀÛ>WÚ7cýšùRƒìðn ËóqþÕw >&]è¯=µÿ˜ñ\ío3ïm=+‹„s::)b”gÈϪt¨wA,ò¦ä|û~U­+û©,áO³\ùR´;Gñ#·÷wïW˜é,õ#ž5žDMìÏòñ»·£ ¶Þ<Óï4û‹9ïþË,#äe“ï¨^œõ¯ÙJü§¢çxã|G«^h>$ûeâCœ®s:þ;wg©÷ÛVuG}¥=Á”,[7nQµWÝ®;Å߬µÈ¿² üÎxIFÝõã^ ¸ŸM—ìð^4¶d|‹¿vßökÒ§öé)hrTÅû{t{ßìõâ‹¿xûT°µ“Á»¦/þ<¬Õô>½ð¯HšÁ–1ä>Ͼ£vÕì×Îß²©m¦ÝÞÊmö\1 $ò}çä¶Õþà]«õ-þÍ}TúÒMc*¹6Õù‡ÍšåÆS:®0/V¥ZjLù£Ä? îUa•ôljí]¶¼®÷Fþ˜{wùÅygˆo´ÿ ë¢æ9'—jÄw”Æ‹ëžýªÊ•Z‰Øè«N<Ò>t›á½Þ¥yÿøË!¾_™»»w¦åþ*ÑÑ>ë—Ú’[Ü„³]žnù?»_Ohž ³ðýËE$fÞ ¨ø‘~÷Çéü_øítºg‡b“N|IçÞ«•<®ÙX6ÝÊÝáÊ×t³*±÷VÇ ¶ŒýæŸtÏ€°Fò“ì&ÓÃú¯¶ïý ·4ïƒz]ª\% ºmüyïóqü¿àUí[™ ‚O<$±>›ål8¬{ë€Öjc—;]WånZ°–*¤º0ÃÓÂŽZçám…ÅÔ‰«¢+ÕZEþëV¾•á›hàû0DF`ØVTžªÞ§MY!ºq#ùY@Á›ÿÚ´&©Åd‘Ã:ü¿ìî‹”äh¢£¡“©x^%…üˆÌûµçºåœ–32Û©Gs¿r¾ÖôjõF¾ó—d®Ê[?5pºû=­Ëù’Tù‘Z”[L§cÕgXÌ~fv.ù۹ͷq¯s¶Ô¾œ’œ²—TFîIÛ^ðoø§¥=ö§ükÛ­#?f³ˆóΟ*ÿ½¹¿ôê§³<Êÿ½sÿV©ýçû«ü_çm_ÑìÞãXº\nó ”zíªB÷­¸OàFo˜ýÚë|bZú{—á ŒÊ¾È¡?š×DUçc‚rå1ÔË«yJ~X ü*ÞX¶8*¾ÒíêMkA† ¢½j4ùçäyUgËRLtª÷—Igk,ï‘¡s޼TìsÅrÞ:Ô¦³³Ž xã‘¥9“|›6 ÿ?λªÕöpsìaJŸ´šó'ÄêVw7Zž§>›=ÛÍ;˜>û“»*¿6F~]¿p_ð®ôŸúÜÿßñëüy†|3u¹¸½i§T¬ÓÍ—v3Ÿ1?ݯágjßÞñoþ $ÿâ«ç#:•5GÓ¨Â*Ìêgø©yãMn RËOyôÝ 6KVÁbÈGúC¿a¹W¸ë_Fx3ÄVž,ðÝž¡g!t–?ùiòº?÷Y{¯œôêwZ=éLcXC$Ë»îmí»«åí^—ð‹R»Ónå°“Oxt»žÍŠžl£†mƒ*®¾Úöã8Eò#À«MÉsŸRø_W]gKI ýô$Ÿ__ƶw òÿ ëGEÖœŸ³ÍòH¾ŸÝ5êƒ ŽEv­UŽ!ÊäÖuü!ƒ/µimÏQ¹^9ì1\U—.¦ôž§âË?;HœcsEóŠùã–¿çî‚Ó#}1¶¾ØÕ­AGR>Vm¯Ž~9iÿgÔ<<ioóþíqÃãG¥ ™àšÝÆÖQþ÷zóízëÌÔöª&ãüUØj“nvÉ®òf›TŸ`{m{tŽ*»–Ü\3\N~Bx_â5V}öîV?™W«f»7Ãñ[Å·‚$E„M»{Ö΋á}!‚‹‹H¶\&✳²ÿ³–àµ)âa%„œÑä›K#Iï»u_°¸HÎ$·f½wQøO¡ÜXKxòI£DFäe“zÿßô®Äÿ ïô8RæÂåu»'ÿ––ÈÞj¾GÝ©Xšu4)ájÐ÷ís”»š9®YÐS[žÑgÕ.Ò(†ïâ>Ãø«Ùc›÷{6;ŸJöï…ÞÙ-Ëlº”áž&?.ÃXbë*TΜ ^§1£ðª<;®$ŸgI[?#lù‘þí{‚B¢\Iqþ‘rí7›ü[ù[þÿ³W:~º§À¨ûJ+ü¼×Q¯x¢O: †‰Óç‹;mV¯”«9U|Ç×Ó§hzÇŽ#¾[«håH€¢_½½GÞf¯?×dGçÎÓ'Þfÿyª[›‰u 0÷%ômû—ýš”-½¾šØ!-Ôm-ŠË¶³–;\·ÛX O,[¸ù¤’ƒ1µU¸’WÞÛåŠùªzÕÍ Ã÷šô±GFwr¸EûÍWáµK«•BÞW«c£WÔ¿ 4» ÀSê–еàO;Ÿ•¶gœnÝYâq>Âé ¶©yly‡qðîþ±óD;^]¬ÿ0ùYà5ë¶Ÿ´ËÆ··‚çv£²Z°Ý°¹Ÿßåí×å¬;oÜÞMqxg£Û’óß7¶6×›ü4Òì®>LÕå&©?Æi›H»¿¹7'›k¹Ñ¶7ñmgçýœnæ©~Òv¦oŠzÚ[-½£­¹xòʬ>_½þöêí?cÿƒwž,Öï×Â0·þÒÐQÊZêò£ù°Fãî¿Þ;2ß)\ãæûÊ»W³ñˆ¯<y"ìk«´s§Íãïtè[ò®óXºðG‡õ2Mf-Fuuóüùk6ÕT;rÿuq¹¿ô,טè ѯ¼VºeÞ£q>›x]--®Ûc&~f!·dŽß3o½^Mzww±ëЩËvF\~>]YufâŸwÍò¶í¿-d‰ÖvwÑAqÉ*ìû»på›wËü5‘ñ×À·þÕþПìé¾_>8úáWÇ_â÷¯7 Üÿf˨ÞO5¼NwÙ_[~úÊVùY¿÷vlšº)á#(s·¡“Å8»[SвüGyfîM} ®æßÇËœ5xOÁ»S…§'ñ(þ•ï6#þîÔÝþïšó¬\ß36´Èüë™Èù¶ü¿Ù óèUè>±kM<“Õðû uýs\¿„ôÖ6°3§ïdþúÕß uÊBŸuF+ª„:ž~"v÷I,¡çyü*ñ¦¢ˆÔQÌÄ£ñ¯nöP<¦ùØ£-Ø×„|Lñ}½ö»™íaŽFIµ\ÂåY¿¸×æ®—ö‡ñG‰¼7ðîé|§É¨ø†å•"Æè¡Ïï¤û~Uÿi×Ò¼xOÆ´ø§¸h´m.ôìžÖð:j-_•å]¼ín‰þ×5çã&¬©·êzx(Zóêaêž.ñ ‘6¯ iÖ7Zv©}ö[8!UiU7mÛ÷þVn[¥]ÿ„‚/ú|iÿ×ÿ‹®¯áÏ‚ôÏ„°¥¦¸ng{hD°Ëy0}ã•×åPK|¼eeÂ}cÿA+Ÿü¯%%&Þßê94••ÌÂñøò%·{òÚu¦s¶g·—qÅŽÍüE¾j¾ðøëÃz|Wo¥éI-¸[{;HË~ûŸºŽW÷Ÿ(ûÉúVÿÁM-?ÁÑm¢ûEä>o”Øv V´æðg47šXK‹<%­ÓÈ­òîùB±á>jî•NWcŽ+š7:½RmsE·¹’k;§ï s¹¢â]Ýþjôßëÿm´û íþ‘ùsüiÿÖ¯+Ò¼+ƒâžX"‘ês-µÁ•wîç§û«ZÑ\ËauĤ‘œ‚+Ò¥W]EZ^ÍØöÚ§w9þÁªÚ¹ˆ4ô¹‹å=$NèÕ¤ë¹q]5#ÏùYÎjP–R>ës_+~Óz?ÙmçÔîÌOÔgÿejúâþÑçÓŠðOÚ/C:‡ÃÍmðí¡7ßO½úW“ðÍ3Ö¤ù‘ùíyp$Ÿ…á¾ZÙм7ok]Ék©¶±UÜ»Wý¯›®îÕ—nVÉ/峉·|¨².æ ¼¿ìÿõëu.>Ñ»¹yÖ3þ®1±bv³{×]ZhšR¦¾)M.y™$ùSò_»°íáW¦?øšì¼3à{«mR÷ËžvÓí~Ѳ2kgû¿7 ÿ²ÕÏYØx‚ú+)fk²SlsnAýÝ蟪״Ûü)·ð_‡µB×1j6·VÞSÆÇìë0º7•åU­ÉîËsÔ„SÔð¤ðlž Õn¤¼×}rÂÑ5aá©mÆÑiü%_¦ÿï&Ñ÷©‰gol—^ý—í)û¹`%%vÎÝŒ¡ºîÝò×`—Þ'ÓáÔm†Ÿáë ‹¨VÊëÄ@±^Í]ªÎá¾}¡vçoðüÕë ¾iÞ*5Ïök6§ÆÞMåÌ;æ]ß3ª/O=þ•›œ¿Ëúþ™œ_'3™òÇÄO‚:¯‡|;Œa±ký8šy³ÆOñ·Ê¹MßÅVü!$’CZ~žSR‹ïéìY:ýÒ¹ìÛ·|Õõ‡í‘â!áo…Rév¡!KÅ0é3­ä$R¢‘…aón¨|yðÿTð.¢ÖZœB(ä,ÐKÆ×_èÙ­_êRÙ¬WvR}µÈÿU!•…z¥ÏOÜÙ‘O–ÞÜõ¯xŠ}?FkInþÏqÿ,eX[å>œ/¥|¿ñÅ×úµãÄo%UÞÙEOâ¯Cñ·ÄëÝaÞݤóÚN|ØNø¿½óé^E§Ü__Î#€Ëƒò?÷›ÓñíZàhò¾yœ¸Ú¾å fhÌó^En˜m‡qóS^€ºµ–i‡Â3uÿ9¯9±·¼·¼œÇ‰÷¶åqòÿ»]M†3?™çnû<·ûÕñãÌ7ìmí·î×Ù³¾“<~·žól+û¦=Aù•¶ýXÿÀ}«ÆÌ†™êऽ£,xsAºÔ4”°·¸yw&ɤޫü-µ¹ÛÆJæ¼ðÏTÓüA¨ëf—¶ëÎ_&òñ¡µ?Ç6ó¸¹Âü¿6;·¡ë|sö-a.æÂå…•„mî—'j»É¯ñ¯¼ck+YiÞ§k§[# ±ŠFH”ueTè×›‚•çcÑÅécÐn4=?Áo“SûÿkMѶÏ9‹¹[Õ½øªùïâ'Å/ÿlK§Ûê7vú\!R6A*uûÚ®ÿáνâ\ϧj¯s²(ÕöÜŸpíUùs÷Zµ4¯Ù6ãÆš¯Ú.uˆ­ü×/$VÑü‘§ðáÕîBtiTr¨õ<ÌeIâé(Ñ1ø{}oâHu(õ7_>(LÑÉ!Ú¼ïó÷±÷«’ñНçöW°ðž©¶ñT’é· åM$Vªî‡«6íÊ1ÿªZ쟥jš­ÃÛx®k8ˆÛÚí73?àÊ«Ž#í¹çÔÃâ4­±cáwĨ¾+h+¢k¿ü$1DzÞEÚís°g{)ïü>õÌüEð>¡¦ÜNæ)­të±²utQHãîîÇþís^%øo¯üñ5†«§ÞGtÉ MÚ£2ÅÔ6õí»rÿß[~m¹¯S‹ãvñD–À"A¨ÜǸÙÜüÊ®?…Xõ­e%ì¥í(üð5§/h¹+|kñ<ÛJÓt«¯ 6Ÿ­¤Oul]£ßwåK³øJ¬›Aî1ÿv¼³Z† åò¾{W£e™_#vÞÝ>•ÖüGºûE½œwKn6<ŸßÇõ^•Á±Í.É_b7ñãÿB®ì5>TçÜáÅÔæ’§mŠ.ÃÌbS]ƒ!7ýºãjüµ{YpqýàË÷XWgð—O7Þ)·nÁV®º¯÷mžuÕT™÷‡Âk]ºDª~Z÷ O3:Çšgû¿ìóW–|:Ò;›j¹ÚÎwŸ¦ï–½çÁÚq3I&Ï•BÄŸÍ«æß½+#Þ”¹N·E±[dó1òÆ6­nZÅå¦OÞ5µ¨{/êjѯoG—Þg…V|ìlŽ#BMAÝi€:“P¼†æ`Ü+—øâÙ<;¬Gn"—s]Ïs8‰!ú–<~usªµ›Ù NMAnÏŸ>9üE¹¿ñä ¥XÛIH¶ëª´Ó>È󹇓Þ;¾`ÜzUã&¹¤§‘âuYä-¯g?•ÏáÜ¥r‡ýæ«ñõž¹âÙìg‰tÕw™íí¤Û²eNæÏ3nÚÊßÅ[7z=”2^i‘‰ ûTåYŸæù+µGffû­ÿ}WÍW©Ï'̵>ž•>D¢¶!ñ?‹V÷²E`mµ++Kß³JoÝ6z¼«+kþÍþ€—?ø ÿüUtQü3Õ<+ª>§¢Ak¨ÄÑùW6x… üÛGGú›íÚ§ý Z?ýôøšÂ3’Vc’…ô<«FÖµ_ ßÛÞiV2ËÃtÏsEþ×ÌAÿuy¯FOhž>Ó'Ñ/î-^âdØ-¼ÿ5ƒ¹±ÀÚvüµÃØxºïÇ’ÛÛYhcWµ‡æ#tX˜m]²å”>ãócÑkÐl|7a£é‘Z}’Ö)Øï2Åj©óónã’økÓªûœpK윭ÏÃÿ‰‹e‡ü,ÿ>ÊPÊ%û}£aûß?Ì~•é>iôý:ßMÔ'šêêÕ ÝÈUkŒ/ßâa¬E¦Â±\ɵî%¼W%æ>‰ûê³uZMòê;”ŽÞêY?sY·6>UúUSÄ8O]½…L:šÓS³Ðµ™|1©ý¡I{wÀ–/Qþ+^»iy ý´wò anV^õáºmçöÅž÷ŒÁ:ü²A'ÞñÑ« ð‡ŠÏ‡.¾ÏrÙÓå<ÿÓ#ëô¯jœÏQ±ê’ÂMp~3ÑÆ©¦^Z öˆ^-¿U®ù$Y2Êà Žõ›¬iÆæ-ñýõç–"2扵 œ’?/^êïó_Ç-¼oxòwŠB6ðÛ›¯û[EeÀÖúxK‹Ä‘’Ü. ‰öoN[o_š½wã'„í¼+ño\{‹q;IßY«Ÿ—s‘Uvóó«WxŠkØu[;K´’òÎÎéf¾Š7*ªÛ½Êü¼³\ NO”÷%ecм'ñÓBðKÅ4Ôó ‚òíeÏEa¿;¼Ø¯Z´øÝ¡kZÇ•­ö ¯Ù%`è…Æß™™vÿï—ýšù¿Sðî•càëø"ñyñ½íýÒ5”PDûm×ý­ý·t^ËZ÷ÞÔõ++ #C³–õí6¸»”¬P¡6Ä«µrаä¤ß=¾ÿÏP‹¨ÓOúûyø¥ðý5¯[Ühš…Ì:^Ï*4ŠOÝr۲ͻŸîío­z¾#èþðͦ£7úBBŒmEfFÚ¿.ÝÝsÒ¾]Ѿ$k bHõ[>›s¹'Ó.Jìuyxéÿ¯>×~%A®xž]VÞ9–/0EÝ܈?ºÝK·MÛqµŸ²œ´†ÈÕrÿËÓ׿j?Œ·u*ÍÞÛK´Ú<Œ.é_ø˜¿Í¿-q? äÓæ’Å®ì&ÕµŽÔžy$TµTo—o÷øùv«+ËÞòï\¹óà¶wŽ'fDÎç•Éû¾ÿʽWñ¶›ö;› ¥¤w|¿hI‰ÜÊÿøî>_ᮊ‘öt­ÔªiJ¤yv=£]ø•q¡Ü¿‘içÊØMÌ>]¸ö®ÇáÅ®§u¦Ax¶› ¹vù˜îþ/ᯟ­mî$e¹7ry²? Ķõ?3 ¾¿7Þ¯£üâ Á–þRôaòo}¸?î×ÏT‚G²ÛKÝ1¾3xÃÅÞžÛSŠ?µ,ea¹dùâcþ×ûÕñoÃ߆úæµâ±Îò£˜Äó¯Ý 7}ìtÿWÖÿþ&Iq ®ž’C=ÅÎÐì¨Ê²ô_YÛéWéQZÅoj?},¨Îö»’Þµ×B´©Siu9%C§-Ðxࡦ5iEû7úå‘77+ò”n ýíÛkªñµðóá]£Àúe¢´Ðí0-ª»6åÜ=jµçŠ.a†ÊæS`–¦qkevb¿ÅþëWœk·Ú.g߬¹Úï$(ÿÝÚ7:ÿwîÔGžoR½œNOÅÿ4 ÿ»ðÕ­”ûÒ'W—-ó|£îzªi<=ªLéw¢En’'”Z/™JmUÃ)ÛýÕù¿Ù­Ë¿ø?Ä×6ñj’Üéۆ϶XÆ(Fï›rÿìÕBÿáá=cìž)ÏÑ/fòl5í*à2¦X2³ãÂç¿Ú¯J¤ÖÚœ“” ÷ÐëtOƒ~ñ†œ—z\ó5ÔroIâ}­ îÜ»Tpvÿvº7ðŸŠôÛˈžHuK?¼9¦ñ·îËò±Çû­ÍrS~Îþ%ð=²kž ñ(×4ÒK¤I!…¶r¹çÛo5Üü9ø˜ž$[j7†[Ä)â.ðÃæeõ;Ý®j¼Û§tkOÞò8;?Ë©k𾙬W#Í´f]â3•ÜûxûÍé÷«Ò#Ò³|=z~ÕzŸ?žÈÉû«ÜãîûÔÞ>øý›4Ze¤iÕÊ2™v|À/š¼îþèè¦ÔÎé{·vÏ1Õ—våÚÌ¿ð*ã¼›;c .n=1´ç–÷Q¸kË—Ýæ\‘3VÉ®JÇÆÚuŽ«qÛ"‘Êù¹9ûÛ½*‡‰µÝWÇþ%s0‡ÈÙ³j H­/ʨƒþÜwj§âÛ點[4h‘;OÌÍüE½?Ý£•_S^go_xˆxÛ|VRÜÛª Í,[Yݳµ•—¯ü µ¡ŽÛû&+ŠYåDÛ%Õͺ«1ûß•yf…co¦ßÅ=œðÀîë-ÉpÎ?ØÇü ïWy¦x˜i²´2íç}Ë£.ßî…ïü_y«¥û«Ü9¤ýã2ãÀ~ñtH—úoöuêˆ+e¾o¿éóv¸Ï~Í7‘ù·z2B–IÖWŸåÿf½W[ð¸¼y~ÅýŽHUQb*ª[wßç·Ê¿‚ÖwÄl|(}#JI¢×-NË¿+rü¨Ÿ3{ŠÞzšE3’­|V>g¸ð^¡k¯Yé~dSÝLûCAʯÍ_ ? ¼"øsN†æVß në÷|ÕùYýõ_ |cŽ`}@G;`¨Šóæù¿½´÷¯Ñ‡S´‹WÞ™G–Ù]«þÏ©fzA™áRåsZÚ¶¤ØÙÏ+ÃýŸ:É÷G?y«æOŒ4-Qû™§ÛNð†UÂò8þïLW¬|yñ´>ð¤¾T¡gØ_æÜûÅ}ûWÃ?gÔþ#xÎËN²Ž[«‹Ë±¬I¹†OÌÛzà EKßžÇUIòFËs¯·ø™yqy*æYo'Ã$xÝ›¾fË|ÇojÑ}KÅ–ƒå¦£6—+ùjû¥“bnÙ´p>îìõ¯A×>Çà­Kû6-­n6ª&¡½—yØåßýYÏ̓òüß/Þ­-ÁñxžOÛ=–†û"’yʘŒ©÷w¶î¾Ý½»V®µ7w·ÞKR‚WêržøN—R¸ií.Ó«õóæÿ{ëN·¼Žßç<Ÿt«Êë]/‰¼7-ÓÇ%»C8;ÞvƒþÍs3Y•í_K Âq>Z¥:”å©ZYŒƒü½«Ø?fýï¼Bóãr£*î¯òNq_YþÊ‘m–ì§Þ;Çõ†*\”ËÂ'*œÒè}‰à=rÀë·-èÞ5îžÓ>Ëk¸Ž¬Oã\WÃß ºÚ@H*¯†,ÝtüIÿÐkÕ!‰bŒ"Œ(í^~‹›ç{ªÖ\‘ÐU É÷)ûßáN¾¼òj¬?¥S·ˆ¹wþõz5'öÅNi’µÄZUœ·3¨£¯­|£âŸ‹ú ŸŒ¦ÒµÛØõMvId³dâ|˸ ·ïWÐÚæ¿oz¬«"½€Är¤÷ Ÿéɨé°ïÕ-©‰[buüO·½|'k¨'„ežÒW1j‹3»ùð‡Ë óßÿeÿf¿UQÒxÕ‘ƒ£ †SÁ¯ž?iÙFÃâÔM¬h¥4ß',@Ú—Cý¯Gÿkóõ®Z¸u~e±éa±|«’gÇ šç^×m³4ˆçºË+Ë"îMÁ~f\×Ó­áÝÀ?>Ùâ8Ò)m£k©çŽvW2ÌË´/¾eùz×Ë6^=×¾ \\i1øtéú½£åšéŽr?‹a^­\ŸŒ~'x·â„+©x"åÎÑó;wé\2ÂÔ©+ËcÑU¡ #¹Ïøÿ\Ô~%x‹QÔ~ÆlíÞ}Éu€ûÝ>ïÍPhþžà"\Ÿ+ï†ge7Ý­;m4Âÿé4 ƒg”¡› üMþÍwþðý͈Šâ}í,€¹ûNæUS÷vÿÀk¢¥hч$ ¥CÚKžz±¾𠦽á ¶ýê$gÊ•‰ãè?ÝÛ]T^ {‹”»…{s¸>UX÷¶Ö§‡áŠÍOÞ*Ê»DŠwa¿‡üÿµO:¤ê™ F®ví‘~óW‡R¬æ÷=ÚtTQ8[;[V”ÛÄŠSïÀw±ÿy{è|)âƒghö‘ܤ:Ý"\~ë’ÑXµ¶¤á¢Td\Äè7«gøéüUVÇ6soÿtÃvæûßþºäqG^êĺgƒïþ!kw’\[Ë-•›»Ra (þ-í×îÖ·‡­í!ÚbÓÊý–Ó{:¢ÚÒ7Ëœµgxzòæ?êÚ,EÖ+Ɇÿß~~÷N¿Ã÷ºÕSÕÃ÷2ÙÝÉ$Jû—t{ñ¶º”U´9.îî\½¸‚é%¸‘<»BïÚËŠãüAn’#Oou,òù?î6Y›ý•[×-ÍŽµcμKâ+=sA²Ö<¡o{än}ß+&>ò²žœ×á?[ñuú,PÛënÔ_éQxŸãÖ§ñróû:ÒÚÎÖÊg #I3ÿ½¸¯ðv×y¦ê០D|;{­¬;~Ý©Oò+ËÊ‘g’mrÔ¤é¾Cº•^xs³"ÃGñ„_m’+vdÜZY>Föã»ý ½JÖKMzÇÊDyw4Ì÷Rò%A¸(Eïóû5ç—qØßMk*/"ý©"l²;¹ûë¤üÛ¸ä÷omÛíFêUŽ[5·’(ü™2ÞLˆÿÞR¼ÿb¥ÓKqûG=…ÖþézLö·¦ò{…·92,<í˜/§®{S-ü/áo²Dñë²Ï{^ÆÅ #æVsÇÿZ™6›,0¥”w_%÷&évôù°½þ^ÕjM<ê:– '…˜e#‘ÿ† ®Ý¼íÛVž–%§Üäü1ãǵÔ%ðôSÂñÞLìw«?÷»Šä¯õ)ôŸÞÝïx ¹ùUwòFåôù›þù®ûHð^™ªi¶÷š^ÙZÅ<§VvH?ºÝÇñæ¸ÿY¿Ú ½·¼[{¥AæG¹[ªŸ§ûÕ•ýûµî\Áø%cg‹ïg“ý"𧔌ñïàÿç»WÚv‹áëw’#j„mÛ'ÞûµàŸ ¬lÿá!{»kh ³Š5qs{w<Ÿ3|Þ¿Ò½Ç:ÄPé¶öâPˆSi’Gm¿÷ÖÚËS™P§±óÿí9âéº{ˆícQqMæùrŸ™€ÇÈfþït®º2^Æ+¡Ï‹ƒæ|¦ŸÇmKðU„w×2iv±»:óP”íAü;UNKŸáúWÈÚ¯ío¨j2éðèI Ç;bå!•“kü»öü¸ ýí¼ òÚ‹Åž!øãýKQ¼¹š{ i¶ClÍò[ägvÛ»¿-y¯€ml¦ñž›mâ]fãÚ3÷WÞK»ˆÂîÂ*«¾Ý«Û,§îשOM'7ýÁ<ç‹+S’ùŸvøÀgXH¯t}iÉË<";D¤Qt?7?68_Zöû ŸG‡NÕÖ)n‘wù¬èƒ?óÑï¡_/^þØšMƃq¡øKº²²· K8ÚòŒY‡û¿Zàõ¿x³K¼·Ó’G½ÔoaØ'YÞVeæURØù—iùqÿþ2¥ôžŒíNeÍÓÈí~0i÷±ýŸxûÑÚÛ¹6Êmùx ¹ErVwƒOû›Íÿ>ph‘t3µU›¦[ø½ª}SÆ#º·°³××F—I@,’=Šý¶ ÃzôaÅjKà˜4EßQ\2œ@É Ì›Íµ˜7’jÚ»ú«ÉžoñAŠ=I/ãy÷Ãʸh¤èûwn¯XÒ1äɽ޾_ûæ¾£ñÜ6­¡ÎòA%½º|ï$£r£nþÝŸâoZùsVŒjK$oæ¡vdãoË^¶nq±åㆥ[m=æ¾æÞêkô{öYøg5æ‘gÂc·^gÇv¾bý˜g}[ãOŠme¶­ô;'ß}©ÊŸ"7÷ûÏíÿ}Wê·…<+§x3E·ÒôÈ6°.Ð?‰½ÉîkiBX‰Û¢<þu‡†Ÿ4ì¬ã±"‰v¢ŠKëÕ´OW=›}~¶QäüÎz-aniæ2ÈrMuJJšäÅ9¾iźi 6I=X׌þÑ_b:­à}&âxõ«ÛOßM †.m¬¸êÜçnkÔµXYÿ£B ÜH>ìg”_]Ý¥yö½§Ù¯ÙÓV̺mºþîùsæÁê]»×“Wì´[ž­,?´÷žÇ†þÍ_F™mkð×UÑ®—V±§™#³,È9ó2Gñn^?Ú®ÓÇ~Öá0—XÓîê1 Åý˜Î­Á´«ïRÙÏÌܯ÷ksÄŸ oVßFÕ´]KûbßM˜]Ƭ#ó¦Œðê²íÆNÇ®Ñ[÷úJkQi·p\Iò¾øRê/»ýá^\¥fäz‘JÈòý7XÐôÛ *ÁæM] ."Ó­äÞ"%¹enÊÜ ÜÖäÞ ³ÕRY>Ñq1M÷,Ìò›,Ãî¿Ä¸¬Ûߨxc÷ZŒVö—·W{ü»k¦·Ê¼Ÿ}æÈ?ïZ©jMý›©6¦úíÆ“´d†¼ŸÎ´v:ʉÐû³íÎê\­ì_2Zgü*_jCí:UÍ„WöÅ¡šv|ÛˆåY÷nÈõÍsÿð£µúu/ûöÿüUnØx¹5-6ßX²½¶—Ï ÞF<¥™GÞëþïË]/ü%·Ÿóï'ýüOþ"³æ¶Å%3Îm/-¤‚ÂÏN–9g¹Fd“c2ö×ýÚÜð÷†ïmlb³3Ú}•4Ð(ef÷ßÓýªðÏ x›Xð·e¥Gy'ˆ`¸“÷–ÍóKcÞމݺÃì~"µ»’ÚÞÿ—ï< ïžÚ)Ùdþ$lt&½Z”ù=æÓ•þF¡ðýƃ|ϤK+­ÉÜËw#:}Ý¹ÝØmü÷UßøDu;ëû9m/—om—Ú°lI²»YU7gþXÞø¤|a çØ­Æ“qi2Å5òoxðªýÜýÚô½#\°×-’ââxå–2ÑnTÛå?ÝeÝY4׺5#…ñG†^ù®¯?³âÕî¶ö3ɲ)‡æ]¸Ÿö«‰ð—Ž<5á]!¬5].O Ü[²ùö7a‘?ÅÞÏ?ݯu½ºÓìL^t1WÀÞ~ç÷Híšñ{ÂzV­ãIuË{ø®Íu'˜¬‘oÛò§|íþïMÕ’Œ¬Í¾$nø âV‰âļUÛÏoi1GYã18ÂûO;ûÕÙL¡—)ó+v¾gø‰ñSHð?ŠÖM Á<øö¤×1²á¸ÏÔŠöÏøÚËÄÚ5¾§a&û)¾üm÷­ßøƒW½Mº¹àÖ‡³C𿌮<57Ùæ 6žy)Ÿ™=×ÿ‰¯X°Ô-õ;T¹µ•fÆU–¼1£"º|ÊGÕ­_¾ðÅÖûS¹þòÙþãÿ«Œœ}Ó'/Æ€žøÅ`¥´Õa·ÔíÔy©ì¾¿ìŸÃðÏÄ?€ºßÃ{Ø-u}.=ˆÎ«k#º^ îSóp¾„pô*ýðçŠl¼EoºÙ2Þ@ççOñõkYÑ,hÏùþ¯›­ ‘Ÿ¾}~­)Âôµ4/õ+8á_/*ŠŒmóo_â®RþøÝ\1L¬Jv¤÷]÷½+¯¼Ò^Öɤ–ÏÍD¢fU?ΠÑü#{¬irÜIo"Zð:'˳?®ÞµËuÎÕvkCàÛ=?Á‹,¤}±ÎäÜÿ0ãîæ¼ÞâK»‹ ¨<‰ÙØ­‹nFõ¯CñŽŸsk4ði’‹: ªSóáÎÚáƒo‹“k›w tº‹4ÿ\ÁçÆQ ›aƒ.ÄÛ÷º“»oþZÆÑî'Õ¼'â9Ö9õk‰•Íôc|¦1ü+è?Ýë\æá±¨i„“ïžÞaµ’eW)÷²ËÔ¼=¿ïšôâùï~‡–ãc£Ò¯'¾ÔTÅŸ²÷U+¹ÜüÛY{šÙ¸Ö.­YàÙµ—sL¬‹¹?Ù_JÈð{j·lú}‘¼òœ`Tܪÿuw|½~eþ/ᮦãG×-áSyQ[&å™W#ržw|Û–¹ÝCXƒRø¨Ú•¤_eÓvZ[¤x•d`¿4Œ½Ã6ïüv¯|jÕ´…Ó`Ò-ü©or&šHþuLòɸîÁÝ»oþ=^‚¥mO5»Æm½ oƒž ºñåà¶ín£Œ<,›í÷nÚÛÛø ›æ¯¤¯4™.¼0š\VV×—çí, ÛBíû©»·ËŸ—Œ¯Ý¯'øe!›Ãqi–úsZÅuy$_ùbûñ½~_ŸïnÛÛþù¯H™­-Êéž·$Xt—V:M†Ý…n 3+}ìà·ûUω—¾o†… ‘~ÓÃúŽŸkaqw¯ñÉ>ådávË»×ÙºnZ–‰o,oç¹¶g¼]¹¹wܲ!oá^§i­HuOíë¸$¹»¾µ‚XZ[E–ßÎLäíM½J|­÷›‚­YÚ­ÆŸusÙ.ùG•q·ï+ ^9*ÿãÕÅêv£;ûsNk&‚O2ßy°Ê 6ÿï}ïûëï KhÁl+ËÁf—&7MØ_´Cænû½‡ü ¹É5‹MCíyrZ¤ÈYàc¹‘°ˆßUKT¼·“Nk9d›|(ˆv¾ý˜ÂasþÎïj¤³[Âþ ´ðߎü[áÍâ+i¦o"%?9ùq•öý~lýÚá9hé†<3â 1Û¢²H®.Ô*<ÛåÝógîþ›Ep>)ñZ–‘§l÷ÂFî`ÿ ¯_½»ïQì¹­4©¼Ú|&ñeüz}¥°Ÿmº—T‰AÞÉ»3?ÙV_î×·x²ÞëRÐl®?³îï6ád‡nì}ïý 俱„ì¼M®kz¥Á–d‚o*=ÈŒyfgñ…Ç—uo¢ažÑs+¶P2>ï÷þÕÙxSö—àÖ“Yéé«J‰y!k›Û·ªÊ¨­0nþç8ùš¼ûÇ–¨º?Š­.~Ky–µiX³¾1ÖöhÙ[þßÝ®LUu^¥žÛ}úØj·»º8¯‹“xKKÐõ-+ÂZ^£ký¥z5 F}Jtdø–(T3_÷¾ítÿüyªÜxm§óc¹ºµÛj œ34ˆ7*ºçºýÖÿukÂeׯíîâ´B`P6%´²o‰~_›ïûüد\øKáû5ðÂÙ oî/n¤ù"µ·ÞÈä}ÄîwzQRŒhÒäZúê*õ9™½ã(ï5­è[„³–h]æŠyÒl•—{r[æ¬ÿÙ×ö4Õþ4êVÚή·:/‚ãÛºéÓdׄ}ä„w=äv’jWì-4ø繓•WÛåÉn´u­rÏúd÷—“ˆ „oyøÄú/zñ]_BÖ~(xªóT‡U›G¶Ò¿Ð ‚8Õܪ<­»øOÌ«ÿ®*’Tàê3²”}¤Ô<gcâÍYuGš=fHÖâ{–¿u¸~ñdG€~UŠ¢º­OL¼ݺ½ô–Vw!ŒîI©'§Ë_7øÿÅžðïÄøí|c{o«éþÆpYf]ÊΊá_½òäW¹YßiÞ8ðյ櫵ԱÚùOåȪó ?s~x=9¯›ªê;Ê{ŸEÅ[‘èt>ºÕ´Hîtøì®fdº´Ž†6MÜÈ0ß_”VÍ¿Žô¹õ»2ç_ÛìÞ»q÷ë…Ð|[∼Cý‰8¶ÒþE»±kÄYšòÄ©ò²üÈÌ¿2õ ¿-mkº™ÕõItËÛuÐõ]Šl5U;–gs§û-þÕ5ªÑ™5®¨Âñ׃ïüa©7ö¬&6Úo6Ê[7>toÿ|ã{ïU«‡¶š…¥ÓÞ[¥þ`ùÞxWʹR|ËÐñÔUÝ+R»þÌõY.­õ$M­nñ¾Ä˜pOÝùƒcrš‹X¹Ô5o ê/mauoy ;ˆ˜Ã3Œ€ã¿µo ]êKVG‰ ÇáÙ¯í¼'w§X[ù³\hÑßÂÕá_ð”|AÿŸýwÿ"ñ5õƒuf[ÞG§G:„T\Áå+*6ß–^ÿì×w¿Pÿ jßôÿâ+e^1Ñ«‹ÙË£±åÞ†/iÐj¶IåA,-Ëk´Á|èÌy?¥wv2骖zqû’¹–Aµ¦Só(eõÿj¹Ý7À¦H­õP>¿1«‘7CsòÿËTeÇýóÍuÚ7‰.þÒú~¢mì(ü׉eM¿ßFë±¾o½Òº]žÇ [êyÏÄíK]ð^«ý´–·öé-Âìû<¿ÞܬwgnÖ®@ñ¦‡ö­GHžÔHU'ŠIÄ(%þgù†ÝþíhüBðM‡<1{§½¼HÓ"²K#üÙÈ|Õç‘iú?ƒb·²}>[+XáKqb²2£6²Óñ}îjn¥ u5¶¼ÝßPñi­÷Ëv·ŽC}–Íí=Ów÷»®OÇ~4³øcá‹«›m" &{ÏK8{‡s÷“¨Îïîçï}Ú¬þ.´Òtf³Ñï-<‘nòÖÄ%Ì·ü'jr¿ð, |õñOÄZç‰5e¸¼=¯Gæº5ÄÄ »Ü…þ/ʪyûÛêòBç ¬kz‡Ùãhe³I¸|«ŸáZô?…ÿ5‡~ im’Iô²ª·vkòùŸí/º×¤]\Bðo·†V¹…¼µ_õ¨²üËÛîÕ),nuDžt’6ºC¶;h²ß'­{¯Ýg‘nuÜý ðŸ‹,5í2-SH¸[Í:a»lg£ÐÿxWFÔ[â;—î×Âþ j™žÑÞ÷N•ÿÒ,Øýÿï:ÿtר>ñ%Ÿˆ¬"Õ4«µ–'ý?¼Ž½ŠÖrV1³êtbIlçImåx'N’!ù«½ð¿Å[y±m­‘k(éu÷Q¿ÞôþUÁAyöèÈò§_½ñõê)ìþF›—îýk;¸jŠ÷g£>…Id„:0È äà¼yðc@ñ¹’æH–¦ÈÉöËuÃ6¾?‹ùû× áÿj¾tRyö ÷ì¥[{ùáÑšIV=²í*~NWåoáæ¼ØP”_,ÏzXŠs\Ôä{'ìéá½"MFâ-B¦ŒÄ©öpw*“ÛÞ¼çãÃK?„< ¯w¤_$’¡]¡Ó9ùûß7þËU¾k×¾¼²óoB¢¾çUÝ–ÿ€Ž¿ì⾊þ0¹[Ë»³? XÕOú”ù¾ë}Y¸©æä–¤{.}QÃh’%æ‚’X^}žtw{‹gÜ»—vä(ǃ÷¶ã¯Ë[0é·ºziÎéqÆ÷‚æ1+u߯kÎ/­ïü?t¥ ÞT2nóâù>aßÿÙ«v¿5–[yç… ”íÃnóò×K‹—½4ù}Ùˆ¸’I¥yÚFá@n ?Ùÿ•p?¼A…lt˜4yåMFá%šîMß.ÒWjíïük]›âˆ®]º"Ë’›WkoÇ÷½ëF?ø{ÅZl·ܬº‹£yq ]±õeëó-:5=KÍV>Ò›„^§ÏZWˆ¯ô›Eû“~õg|nþ/•k°ðÇ€õO:ÞêH4ÓóÜ3mÇð¯®Ý­^±á/ ÙX¦¥ZDz¶›$>S¤§jðêݺmþ.µjmòÕ"¶‚àA€ªèȲ¤K»®ÍØ#oðÿ½]µ±ȬÎJ8I}·tZ¼“Hð<]„–BÿË^˜î¼›‹`~mÿw”û¹GR?¥û³ÜY,÷vRO¹Oï6Õ[¿ñ}Þ>jòOŠÚ=ÝŽ ·7wÿÚ—åt!b Ÿ. ~÷ Ç5Òx3ƇO°H%v·ƒËmñNY¾pßÃóp~Zå«ïEM4ââÚgi©-ݬ-=¸‘?†Ès'?u—o÷»Õu·Õ&…n­Ñü«¹.qû§q‘Ûý¯»óUm7R¶Ô5-ö×Jì7H¨§æMÁyÿÐݯH¶ñUžf—$S ÈJO§Ü¢¼,øÎæ^á·tn{VhÞÇ’èšƒÙø‡N’XÊB—HÆ5Ú­Ãco=yUÛ«òêæÔ9Ô³¸tIB·Ý‘_k)F™‹ÿÕ^®i¶Ói³ÙËgl÷ómºŽO´ èÛw}Ï”ƒýåV?ï|¤/ͤÜÿhYG%íä·*Ý*Cò§-·cmÁù™y­c8³ &Pøc¡ÛüN׭쵋©mìþÄÖñ³G÷˜mÚ¾èþ÷÷«Åïô;7ÅPxrí&¸Ho¥‡ìÏ&Çò„¥~o— µ¶¾–? þ[êéwuguj&¸†E@ë.S”}=ù"¼‹À&½kq®ÞÁ ·—2ÜÁ½'ËneÞ~îÕfÿ¾j£W÷nkoøs>_ÞrŸOüÐ`ð΄–¶VÑZÀèZÛm¤¯ñ±äŸöš½£M“̇ç\ ¥WµxßÃÛ°Û[°•™Z1ó$‡Ž>UÝ÷ïšõý;kD¾^ â¼gtΪº•u›F™$ ¶áÓ·?Ò¾wø«à”ñ$×ÜÛ_¸!÷3»šújöÜIÖíü?Þ>õÀx‡Ã73[IĪ\¿—šæ—4%Íl<£(òÈøSÆ|Gá÷[Ë9Uu«[Œ‰·æoýwRÕ×ü3ý¯|Cá8ìµ?2òÖ/"ßÍ“ætØâÞ¼gÿ¯\ñ~‹ªé{ËŽùs+/ÍœýÕÿ€µx~±ð÷Nñ‡Š¯ncItëY6K ¸^/ïFïMßÃ^Þ ŠÕ‘ɈÃ4ïIžáiûzxa-E½Ý„³Eµá_¾9i^.Ô‘<%a=•Ŭm?ÛçŠP›Uz}ÝÁºýÕ+]ûø»ÅþEÆ‹}§ÝØ>"óç/"{ø¿ñÜ×Ô¿aOxC¨xŒ/Šõ„ù‚ÏÛHû1ü?JõiS£;:jç‡V´è¹FR·¡òÀOÙ·Æÿ.F¢ÖCMÑK®ý^ú6Ep?çë!ß/ËËWèoÂøA¦,ze§Ÿ~ê<ýFàfY°èƒÙZô¨m£·cHÕFT`éTµ=rßNù3æMýÅþµÚ°ð‹ç¨yóÄTª¹"_–T·žF‹É$ô®rûÄFñJZ±ço›Üÿ»Y•Äú̪glÄ/ ÿõ©"…Tvœª¹i… J>ô‰b„74ËíB >ÞWi#E䕾ì`wj«{ªCgm,¯ï6çgÝyW°,Ë´ß_ìô~Öµ]/K‚=ð}±ÿÒ¤ó_äši>r›„|د-Ô´OZÐn/4+8§¸×ošhlüÍŠÖvÏüY^#që¶µôŸi6h¯-œÄ`ŠÊ8û«ê[ò¯/0¨ãC«×ü¿SÔÁÓŒœçÓdt:¯|ñ¯V¾ÖeÒ-m¼f-ZÆê w'œ1×?.O`õÃxcà§ÃX^Yø¢m.ðÓhúº#«!ã+/û?2ש^kZޱàk}cÂňP¢IgªZ®òWïá_k~¹¬8<9©xþÆJ†âîÝcŠDùäS÷¶o]è?ÙÿЫÏ眗¼ÎØÅEèŽUÔ5?ø‡S:}°¿ÒîFé®™ÿ³î>mΉ¹ŠFß)ÚµÒ¯ÄèôÛMïľ0´¼Á(¹Ž°º†ˆ'¢ÿ¨5b ‹-»¶‚ÚÎ ›&[Ï’ltû›·§ñ.ïZn±£øBdÑ.u»‹+ÝR ÂçP}ñ$¹ùC|¸¾îæ­S¾èMÊRîïMiìµÖÕmÙÇÚQ HO'îm=0~jæÎ–þ¿¼iuVöKl§ÊŒ<(Ûz}ûæºÍÁZ.ŠòêZv›· Dd?;(êò*ó_øÃNñµŠé’i:Žˆ¶ÛÝØêP”o½Ñ¸­,íÌsEëÊRûŸ…ÿ‡.ÞËsæ¼ijv4 ÏÎÈ[+5y·ü#¾4ÿ¡úÃÿÑW]ñkPŸá.¥Š4Í+ûGÃóeud³uÜ?ݸÜw/FþSº¸ßøl 'þ}5ïûå¿øÕm U$¯M]|‚U"ž¯ó=kÂW“Úø·».>`­·d?Þ;¿Ú­èºeÄ1^Op–÷Vz\¯Þ‹=Ù»ö[ƒT-&’Þ:îÚ®.¢P®¾r®øÿŠ´wOâ i² ºÎä¤Ò_|ÑCò¾Í¿¼»ü@ìÝ âG ªü@–6Õÿ´-þÅuk¶Wû4++\Ú¼ð©eo}ÍÇë_8j^8M[Ä2¿Ù.µ a.ôÙKÞʆÏÚYÂìGù¾êô¯¢/~Ï6•q{ý„þ!Žo´[ê·c|®Àmdl2€>òìUÅ\ÿ„C±Ò‘Æ‘káý:hZâ{e ¬óoGÙ÷ö·Ý­hÓÒÅ:sŸSÆí¾!|?³ð”±xr ¿µh¬b6Ê ýæ\vÿz¼¾_YIrÂòâ7¹r¤ñŸ¸ßÅòž¦·>3é~º¹Ó£Ó4ñ¤ê)óãW¥>m®«þïã^Yo¡§›,7"îù‰»?ím¯F”!nc’¤ª'Ê_ЦOy;£Ü}§sF«'̈wÍè)–ºÔZ8šX 1<ˆÈ’å¶'øÖR^E¥ÛËcsÌ6î|ËVtíä¶Aq(‰í‡ÍùÞozëi±o¡ÑxGPt·ñĉŸ2W;~_ᮓÂ->Þ´ú4²\.W϶`ËÀÿzâ/¼?i7îíÃNÈw1UݼÜÕÛo ÙÙ¢{dfsÇÊv·û+Pܹ\³jÇÛ?¾$h_´u¾Ò§+*|ÒA!Û4 þ×øô®Ò `Ú•Ž÷çAÒuú×ç Ö¯ü4®…ztÛ«c±ý×þò²ú{WÓßi-âDPiš¡‡Iñ|©Ø®ý2cßý†ýj99•àbýÇižþѤʯ ‡ø–©ÜY£äeèËò²Õ¼ÛWó-g¬MÐÖ•®µÃù3§Ùgþë}ÓX4ž…¦Ñ¿¢üEÕü<<»€u{D+ßìßÅø×£ø{Ç:O‰`‰íæ1I Ȇa±ëÉßÐý*¹‡o?woF¢'p„Ï ÊL×™üBýž|ñ9Íþ™ö;©¿Ö]éÍöy_ýüpÿð kAñî«§HÑ4ßhiIùüš»+âN{µ.Uì¥ÿ¦œ¯ç[óÒª½äBZ/š ùsÄÿ±_ˆ<:ësá}RßX‰1û«Ÿô{Á¾áÿÇk‰Ô´ÏxnU³Õ´;>ß„½ÃûÊÝ>_öX×è­õ½òn‚d™}Q³Kug Ü/ñ$Ñ8Ã#®Aü+Ž®_ ºÁžÖ­-*+þ振­¦¶[) OÅÛå›$®íµæ>$þφæw$1BO•æ·ð(ÿdw¯Òÿ~Ìÿ¼bZIôU±¸9ýþ!€ø ü¿¥|ëã¿ø'Õõµèþ0‘¡ßŸ²j6ý³ÓzñÍK*OßÛÈí©™Â¢÷wó>Føoá}cÄÚÅÔÚuí²iqMûÿ=ñåùÕ6ó»w÷¿…«èÍ7Â~ÒaHô覽¼9ŽxÃ4­ü[— Ýü^ÕÔøcöUñO´ÙÚGªßº´r}‘¼ÅHÈ9UÝ´î÷Ç¥rþ ð¦µÜFûG¿´Œ&ùQìÝý•-·æÛþé®\Ss©Ù}ÇfÅGâ»ûÎü$ÑÚö1”Q)-¢}½æTO˜â¹o麕œROtrVÎVVAü;;Œ³ZÚNštøíÞ7•'•Y^F}Œ£ýÞ´ßØÿcù˜ºi“c´…·®kϳR;÷2|?¦éðîûfŸ%æ:´RDÉæªžå]¼üßv¼ŸÅ¾ƒá¾»=ö‘gu¡ëo²â{”g{eߺU_º~feûܸæ»Ý+T¼··ÄN-RÚfŠh÷7Î…¾m¾í]–~ÌÂ4·–ßcæ CçI“ï|¹®…zný šUt{œŠ|}á Û·ˆt=>ÛV¼b–¶–,Øüˆ7; nBíéÝ™³Xþý¥±®.¡{áë5¸ß»ìºu¢Å ù_—ûUæ?<7‡üSxt„‘­e>hUû©“•ZÊÒüQ©è7Kqý—m<ð¦ÈÚX÷*7ð¿×¿ýó^´(Ó;¥sÆ©9Ó©i¶¿{§Ä¯ŒZŸÆ­9´û?yKl Y´-ýåÇ?Þù·S<­x“ÁòÚÿÂWxÐi¦àÒù^r m]¯·$ÿ:â´/ZÄzDú}—‡ìmï%Fg»bß7Ëó|§®ï›ø«ÿ„Ä<•n5V4G“Ê äã eUT/üj—%D’ûÁUwç§vþãêM'âæ‡ñåô½C¶I•ëµd|Í·¯FÛÿ¯ ø•®^|/»ÿ„~Ø‹‹8çÜŒ£ïÅ»*YzgmQÒ´;Ã0Êï,sÞÊ®WÃòû÷®SŨxëR·I±»Ô¥TTòí y_þùù©R§Ë–+ÜC­RTâå}YöÂÿ\kZDGÊÙ„‰ü†mÊ™íêOݯoÒ|@lìÕï_<tWÏ?²·ÁÏhº{}³Ã—Ö)rŒÓOªÀaÛ“„DWë÷w}ßâZú¯KøSzÑíº™!-†+ïaíž•ãUÃÔöSÎß­RäNr±˜|W 4—dìó~^ËþE:MKΙ^Ï7R©,$ÜÍÇL íí¾èxò&¾~þaÀü…ušn‡c£À±YZÅmè± Z륕֞³ÐóªfT£ü5sÄo>ø‹Æ)ìɤ±Ý ë"ê!‡ûUÐø7öjð…®ZöêÛûoPgßæÞ¨(‡ýˆúÇ5ë,UF[zÖUç‰l­‹"¿œãøSükØ¥¡GYjyÕ1¸ŠÚ-‘©ÀŠˆ¡ £Uou‹[‰dû ä×1â[«Ä"6û:É÷¿:ÉE ÀË1ùŽïâ®—[—HDçT^ó6µOzao³Ç÷xûçñ¬ÔŒ·aÿ³Pª1sµ¼Æ¢{ãÒç£W;r–²7^î‘-M4vh¦BwŠ¿y«[ñm„ú…ýÄv\ ¾Y%?(_ê}«Ÿøñ3Bøc¥-î»xy3äZ©ÝqrÞŠ¾žíÅ|=ñ‡ãw‰>&j/sw(µÒ!ÜöZu·ú¨?Ûfþ7ÿm¿ QcHE¶vŸhkßCug¦,ºw‡í ·Ù¥=ÊõY%ÿâ;}î\øhÖš€Žâêâíb·‰Â·Ï#nó?à5á:N¹®›¨Éä\ê:¤ÁÔÜÿ \|{s^ãðšÏP“ÁVZ„艨ÈÖÆ(ÆÏô‰8WöÚ‹–®nYÎK›dvÊJ6–ìô]cA×õÍJÎãÂ~#‡FÒ-ÿâEO›çC íwöß*ÊïšÚÑ<;¨xI¼:…ïŠ#O"&xPü£6æþo™»*Õ+ýD¸Ñ.¬ï4ùÞÎ4M!‰üÐ7$ªÁ¸9ÝózÖ¶y©hpÂñjŒº%Ý¢y…öÙ—ø·c¿_½ÏÊÕâׯíç~ŸÕJ•e¤~ºÔõdº¼OÃâTÞ;e‘"{&Ûó'Þè¿Åº»K KûSM³¸þÑo2ý™>ðÇñ&õ®[øjOµÆŸ§Øj’êpï3ÄB-ÂÚß/ñŸáùºÿz®üµÐ´sâ;ÃÑIu*ÜK¿íA™ éû”²¾ìüz¥ÓKÞ+™Û”êo5dÐüDº”Úd÷K{ÙŸQÓ#Ye‰1Òdûäï*šä¾ -äÞÕŸN°°Õ]ZÛ\ɱž1µ™ÕO(U¾ðí^â?¶¹£±·¹ŽÞññ1WÞëœs³æ\ ýk™Ò5 GÃöKâ+ uýdn·76ÐnSŽ6mMÅ8îÕk£#ÐÖð7Š5‹Áþ ’ÇMÔ¦@¶öÑÎ]œmùö¶ì?Íó}ºÙÿkÞ@d—r¯Ïå@Û<̵þ~ípmÖ¦é°jÙj ö§Ø4}Bá]aùÙ[bŸî•úâ®ø2Q[WÔ5ËØ·$acŽ9×l(3÷¾èËnÿÐj’ÒĽùŠ^.¸ñåÓ,ä´•¦Ø´¿+ƒåmä7Î~ïËÞ¼·íž,ÿŸ?ÿ±ÿñ5éz¦¡®¬S¼A~×6ë43ØÂâŒ0dÝÓî|ßíW ŸПÿƒdÿâ뢲èfã©£à x|8Âîñ'–Ï ¶AæÍ ù°ìµ¹7ˆ®õ qcÒ¬Vñ«<FY‰ù·+îÈùôòK-rͼf‘Z\"º·fº{C½UŽÝW¹foý ·¼)u¥Íâ´‹9%ûüî‘Hñ5©ŒíÊ㟛ýìW£:mjyðhômBmVÎÂâãû,yïÝðL‰¸ÇñÿÙ¿à5庺i·Z>§qt×–„j©òžá•º8_”üÙÏÍò×MªÙéÞ¼žãȼ½û,,Éw=Ùš+Uû¬ê¾cÛ;kÎ~'_Yéïa”f¸½Ö i÷]oŠq·ïnë¿-sSƒ—õÿën1<;ÄìúÆ©ý¯säI»·Ÿ=°]×wù7}ïö›øª(ä‚á<û—cQ¼EÛ¸º¾¿ðÜÓô¸ÛÃOŠ@Ï4edXþfÜ»íX±h#Â(°j2¬«1o&Lª¿.íÞ†½¸ÿ)æ>ýËVm¥ºOsö8þÔ\,j¿6?ÝÏݪu¨I¸Ïo¶$»ÍŸ÷ª[]pÇñÛÛy°8l|ûU}ê„WÓ̱8„-º|ÛÛZ®VÞ¤Þ+`Ö.<Ãöx­äf ÷¾ócïeš£µñ¾zÇzþj Ýÿ§j·‡RydlG …Pw/÷·U ëW·¹ˆA‡‡ÈñüÛª”˜‰JÎ豫³Éjüîó3Ÿ›îæ¹ábðºÊ‡j¨ãk|ßZé_c[ì$¶Fл?Îk:hä[µ‰~a·w÷©Å¸…HÆ{žëðsö˜Ô<>öºG‹'}GM;RAï¡ÿeÛøÇû]kêm;V²×¬Ökic¹B?åŸð׿ž½jöplóB¢»æÝÿ¯WøñjûGò4ë›¶‰GËosŸüpúÔT§Î¹¢`Ÿ$¹¸mî.ì[÷Sy©ÿ<¤ù—þú­{mzÚá‚Ë›y»%yf‡ñ2;‚±ê( •¿å¼4Oÿí]¼ ô),n’Äÿ0e;”× ätr÷:¿³‰>tù·t¤žƒåþ•Í[Ç%˜ÍµÄ‘6yV;–´ ñ‹´\Á÷Ž:WˆìÍ‹[©ô÷ó-å’þòµÐZü@Õ­ðÅp£ûãæ®j BÒð/—(ÝþÑ«gùxû¿Z­WÂO»/ˆíô߉Ð;ì¾¶{öÓæZéìO5¶ˆ†ÓþÏÉÀ®nãöøuysçÜ\jòî „Uü‚W¶Ÿˆz¾Ãzwcwú—ÿ •ì/òªŽÆfùòÍŸâ;©ºöøb ‡vwW,°·,†fþìb±îüi31X!XÏý4ä×<±¾ÞËR´'=÷VnµFj©Aº¿žíó5ÃÉþÎ~Zb©fæ–Kˆ-y’D\|ÇšÇÔüeoc°F…ÝÇ ÍÿV-ÛVÍÔ[÷boùaS.BíþõU—P Û!Mþ¬ßv¨FÒ]”ìÿ3î»Çðÿ㵋ãoˆ^øo¥O¨ëw‚%„n1EË–þ¶­^[Õ·:cÈòÉ#Ÿï6ãòŠù³ã¯í© ü=iôO¼A¯/É%çÞ²µ?ïËcì¼µü5ãÿiü\ŽöÞÓ~áQ¼ûi^QÆÒî>ùÿc§Ö¼Ä*—Ö+r1²<2Hɵ™>îæüVº¡®¤Ê-£Ôõ_[øÛTmFÿX:•äáindùÎ{/÷0Ý— ³Òîm÷Ù¢Dð;»oÿdöÿ€ô¯3KVÔ7\@#µqµv³íYoó¯Fð½ÕçúÏó%ÌnÆH·.×G!ƒ¯c\µ#c¶ £áêz—ˆ[LŽ9bŠi6"+îWù¾Zõ-_ÄZî›âû Ã#ƒJG[‡‚ï—ûåWrÿuÕ[Ò®Ù¬^Ð_Uyß^Bñ[´¿ÁñËýü ½Ä? ÓÅß ´;íò-7ĺt*ö7ÑI±ÿ¼Ñ3Íïõ©«/cO•ý¢)Å֩打àKÍoÆ-]>û@Õôm:kFwžòÝ•w}Íœ×eÃ?O³³‹TÕ%[x®meµ ’Å–ß±»ÀÕj‡Ñk<³®ë¨7rÉ…ãoËòÖ>½âÈuË™ì-õúMå]2ÆðÄð¿ÝWì_nßâ¯$ñ߆nü`ú]Ƈ¯˜õËp­ ±\y^B?,ŽMy¯Œ¼iñßWµðÿˆï~ßfŸ%­Û:ÿ«>ÞÝjô(Su)ßfqÕjœÏ¬o$>±óï."•žD]Ò#<@Ü/O•wç¼ak¥ê×0iÈ—*“YLïåüÈbÛ×o}ÁÎ+Í~x‹ÅôñZ=ÌvpÌ-î•gó™þçÞÿgvEz–µàùt}+ÍÑ&Ó/om]ÚÞÚì}¿Ü‰ƒt£—•Û¨´~ñKUð®‡ÿ’uBîv†4KMFK‚“,½1»¾ïºÈÕ»Dÿ¨ïþËÿÄÕŸ†Qø‘¯kº\ßËoiyµš5ÝóSν¿‹ïW­Â7¨ÿÏ[ûå¿øª9œ4µw>nø¥xfÉFŸ.Ÿª|Ï uµÔ"Š“·!Z`qß}z?‰~|?Ó4\C¡jJÓç[ë “°+÷^CÃQ^ÍJ’RVg“£Î4 ü-¡h~'V>#E3Èók6ÓK¹xì‰_¼Þ½kŽÕ´¯iž$·èž&ŽI<µ-¿oŒla¬˜þ´Q^…7©Ë=™oI³ð yeMÄa÷…Ëk–ÇOøñ®{â1ð {Xî´_MÎ=~Ñþ›ÍVÐþ!…Oá³"ÊßÀˆÄZ‰ãÜvëö‡üÖ¨ƒÀë•]Äj½p5»oþA¢ŠÖ§ÄsÒ(IkàA:Èt_±ÝÐë¶ØÿÒYl</âA¤xû¿Ûvû~ï§Ø¨¢†YVîßÁió¦âcÜkVü}?Ðë>uðxh±¤ëã¿ü†-ÿùŠ*c±R3 'Test Queue', CorrespondAddress => 'help@example.com', CommentAddress => 'help-comment@example.com', } ); @Scrips = ( { Description => 'Test Without Stage', ScripCondition => 'On Resolve', ScripAction => 'Notify Requestors', Template => 'Correspondence in HTML', }, { Queue => 'General', Description => 'Test Without Stage and One Queue', ScripCondition => 'On Resolve', ScripAction => 'Notify Requestors', Template => 'Correspondence in HTML', }, { Queue => ['General', 'Test Queue'], Description => 'Test Without Stage and Two Queues', ScripCondition => 'On Resolve', ScripAction => 'Notify Requestors', Template => 'Correspondence in HTML', }, { Description => 'Test TransactionCreate', ScripCondition => 'On Resolve', ScripAction => 'Notify Requestors', Template => 'Correspondence in HTML', Stage => 'TransactionCreate', }, { Description => 'Test TransactionBatch', ScripCondition => 'On Resolve', ScripAction => 'Notify Requestors', Template => 'Correspondence in HTML', Stage => 'TransactionBatch', }, ); @CustomFields = ( { Name => 'Favorite color', Type => 'FreeformSingle', LookupType => 'RT::Queue-RT::Ticket', Queue => 'Test Queue', }, ); @Groups = ( { Name => 'Test Employees', Description => 'All of the employees of my company', Attributes => [ { Name => 'SavedSearch', Description => 'Stalled Tickets in Test Queue', Content => { Query => "Status = 'stalled' AND Queue = 'Test Queue'", OrderBy => 'id', Order => 'DESC' }, }, ], } ); @ACL = ( { GroupId => 'Test Employees', GroupDomain => 'UserDefined', CF => 'Favorite Color', Queue => 'Test Queue', Right => ['SeeCustomField', 'ModifyCustomField'], }, ); @Attributes = ({ Name => 'SavedSearch', Description => 'New Tickets in Test Queue', Object => sub { my $GroupName = 'Test Employees'; my $group = RT::Group->new( RT->SystemUser ); my( $ret, $msg ) = $group->LoadUserDefinedGroup( $GroupName ); die $msg unless $ret; return $group; }, Content => { Query => "Status = 'new' AND Queue = 'Test Queue'", OrderBy => 'id', Order => 'DESC' }, }); rt-4.4.2/t/data/initialdata/transaction-cfs0000664000175000017500000000241413131430353020513 0ustar vagrantvagrantuse strict; use warnings; our @Queues = ( { Name => "Blues" }, { Name => "Purples" }, ); our @CustomFields = ( map +{ LookupType => RT::Transaction->CustomFieldLookupType, MaxValues => 1, Type => "Freeform", %$_ }, { Name => "Billable", Type => "Select", Values => [ { Name => "Yes", SortOrder => 1 }, { Name => "No", SortOrder => 2 }, ], }, { Name => "Who", Type => "SelectMultiple", Values => [ map +{ Name => $_ }, "Facilities", "Information Technology", "Library", "Telecom", ], }, { Name => "When", Type => "Date", }, # Two CFs named the same, but each applied to only one queue # Note: Queue => ref forces RT::Handle to apply rather than # RT::CustomField->Create; the former respects LookupType, the latter # doesn't. { Name => "Color", Queue => ["Blues"], }, { Name => "Color", Queue => ["Purples"], }, # Some ticket CFs to test mixed searches { Name => "Location", LookupType => RT::Ticket->CustomFieldLookupType, }, ); rt-4.4.2/t/data/smime/0000775000175000017500000000000013131430353014320 5ustar vagrantvagrantrt-4.4.2/t/data/smime/mails/0000775000175000017500000000000013131430353015425 5ustar vagrantvagrantrt-4.4.2/t/data/smime/mails/8-signed-encrypted-attachment.eml0000664000175000017500000001612313131430353023666 0ustar vagrantvagrantX-Mozilla-Status: 0801 X-Mozilla-Status2: 00000000 X-Mozilla-Keys: FCC: imap://sender@localhost/Sent X-Identity-Key: id1 X-Account-Key: account1 Message-ID: <4B709E7D.8050407@example.com> Date: Tue, 09 Feb 2010 02:30:05 +0300 From: tester X-Mozilla-Draft-Info: internal/draft; vcard=0; receipt=0; DSN=0; uuencode=0 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; ru; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1 MIME-Version: 1.0 To: root@example.com Subject: Test Email ID:8 Content-Type: application/pkcs7-mime; name="smime.p7m" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7m" Content-Description: S/MIME Encrypted Message MIAGCSqGSIb3DQEHA6CAMIACAQAxggHIMIHhAgEAMIGKMH0xCzAJBgNVBAYTAkFVMRMwEQYD VQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxETAP BgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBleGFtcGxlLmNvbQIJ AIpqzVG+lKAVMA0GCSqGSIb3DQEBAQUABEADxC8CAlzKMNF0mslS0vildCM5FQxOllhn1/nC DWM3qsFtrFLIy56M3Knz4GZUFAk3cRObg21WABJysenXaqYEMIHhAgEAMIGKMH0xCzAJBgNV BAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRz IFB0eSBMdGQxETAPBgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBl eGFtcGxlLmNvbQIJAIpqzVG+lKAWMA0GCSqGSIb3DQEBAQUABEAVZIiRyhVjCAOFOZpkGsES yu/zqlRn/AhhtHVwB+9+RpLr+POuaBCXlp8705wOyokMpFbV5Lan5MGitd7vmGpqMIAGCSqG SIb3DQEHATAaBggqhkiG9w0DAjAOAgIAoAQIEhlk2O2sbNCggASCEED/gpJpoTTN4xn+aW+X G+pGKN5s4lp00IyQTZ2yfrUIrEtcekJBSzGPbOTK6sbwN2LJzNUlgWzcblxvIhP+6kJtMQgC 09O5/0BDpXhbq1KpZVizMqRoiHZc9K8X2vS7pZerCIG1FqWr5qyEdl7WMiSSrLxrGWWW5PQB CORILs8vJ+KLkVOGyJJavFFG3NLZrwiOSKlWevVPuRBWQAu3Z35CviVvGb1up0wbCZxx/hcI rnxoT7qMFv6x9KbNT/kiK6KbVIwdUb17YycxFyhihf7Eo+U+4twP12bXMCoGMR25KSHafyka 3u8Y8Sww1MS3HHmfXOZ3sLEwq1NLjuHEKTYQKyo2eG6PHXXEnStUwhuYWtYKkVoJWjCv4I1e MryU4e8PkfLouktGOSzPON0Ju4KPwq1eIWRtTjI/AuhCGR59RHlwiDV2F5lXWCuqVOMD7hpv kgytAkUlkXRU1USSA4GQd6RIzuaxDn/VI2NyRJLqCo97J2XBU067yhgbwvDJCD1Of/01h4vw oSut3jXvLhz4daOW1hbuMtu4T429ye89+K/lLi6pCxxedr3DRqJDw38jbHCBS92zeGMDnmd2 zUbBS8w/fRyLG6ac9tbKDG8fg2qtmJuR0rVKgkd4uw0HxBz2B2DOVcsy5/KoPWXAmTMGSHUh S4Dpxa2NHsPfYn89/o61nfKbwATEqUlPinnVaT8TllHfkSANP1MfFowr03W7e3e9FS3aILTt 8scxSlkJ5Wn50R5shbu5QzZiQtOAkDHf/szhSR6SE5yeCmUuXzhEjv1Lplb6Go9FkPsZcZAy iieQTzidJ/0iUEkrjiTJdVC+jwPJhE6wPJ79PPqYCchJsdDiFrwOWtzaetZUzPrPrucyLxvk FojSDmCJ94XpGhdR+PwVabdeoAIac/bb3I8gfWH6q6e5TL4p01tyWMdCLVEuYJcBK1xZ8KGn Gmq+vYUOdTqLasdZ3Uu5D/KDlRYr1eSNOU51D8bukZT2D0ojEA4t9tXLNus1TAu3kuC39U0S qwXfm71n2wZZF0FUzHpelJbNTGwA6ZYL8Yb483yhDFOJyDly+3siN5u9Q6knmqHsyZ4VE7iJ O/pFOogowW0wn8kG6Wr5QCTd5eCHSehz7ZJHahPTVCeAr2i23W7GqT+Shp/FW9h1Iv2ARlEU QSY8ZKtOG8PBc6M4fvsDiS7LqwE20++DznHAFU5pRxUtRUo6Q5lO7xCoYD0MPgoW9IUgAFaS 5RzGyYmGqFIMFZ9Q135/wA1SM3Fsx9J0oZbxOUCaSfwkpL/MlkPaRmIh9PEGuo1/Fs6AH9ui VEfbHWU6eixY8DY8UCKudptgeYpBfgXTtgyprwAxC3+/jhxcTBmJ5vRpTePOLjRbLZIJQ5nK +cWtW0JvQR2Lm/I/cHtycZmz1oEPqZHVk98Sn6vxqByZFPLTvtf39tSzWaT4rpcTXUS6ybp9 wxZeUkqEztbmnN6jSgSzk+7HP9jSiy+xYqm6oyjgVKIosaNAMKJfy/OHrUW08Mefook7Mprd nOVWMMRVVeLLewPVeN9mBnncocUWXVRvNL4BJ9G2jriEEx2St9JNsUkdTd3cACRvDywxreU4 ubfVzzC9PLrUL1GW5UiR/lGqjD9mUvz9ZL5kR2Z4UyiUqyGAeul41TRPNwyosD7Fs+ryeU6/ om2I/CJTwOq5oLtB6azEqR7C3cF3VZ44Q4IYjf/i/HNIhufFti1owJgG8wENNNQiQuEEMpeo j1fyBmUiAyv+4I1g83wnWTTWPNoHfQ4IWP2TlqdRjv7pYShIYoaPdgdTE5aYactX6B2+Bw0F ge3YyXfxevrhWkObPeyLDEjtAhidET8qSbQL1Z9X2hQZ5YnY9J1zay2JOIP1mqc+otapNQ1f rotU9cFBSI4oUykl+DulmDLbzR+QYRprtTgff5it3QaV0IDWp1oiUNm8PTAczek67o1Ftpw6 PdsWDycs37GfP+KC0wJoSHRyR4Xw91WZth7le1Tuxe0Do+cDK3owP/b7dMZxggeHKrPi9V1u 6HjS1N6SNxn4gsaPZaHOurAJAF42gOiV6O0pisAQy7kj/0hQYSiRZ8G8gIsgJVYPnT1JVQIs dZ8mqbNmM/bQXWkLjBNU1APzhmdaejzenYyJEnYiLfWfcWs/lyOgUwO3sU+5qQj0pN11k2bJ Ma2Auweq018H61jEetP4/aEIfFp4+jqjlKa07g1JdNpq5X7Sfytb6qQm0Mj6eK2bwR9JGFpH CihoWICFEpNYeZZdKUQBivLqep09JBOJYuPXUpeoJHx+tqe0ZFIEh+Ef6W+nm1ReKGZ1YGt4 29noZnTTY7cgWbixVfTcCYLSQTgVNd87QIgqZwK8y3YwmMz1d4brlXUdT+uGC265aTOMtIDH jYv//4new3nP5RYijcPgdh1NrJm0ItoYpjk3/1OQsYy0WjVOF/XungHqblnZfLb+ll2+M6f6 9J0nvXVyV2eqBGkLcVkBT/9T2qMEeChGXOQn0VLeBr7hpg/I8tHRw2COykagS8gIUiE6ymID JrsfT9L9smfXapoFbsazfi5sYK6/4/+YaLQX7yvVOrW36Fq2acAM3P6g0ICKBHiiSn0ob1WF QPZ3K8+Aool6V3RGM9S4gl/tsHqEmDwHmUt5bGn+P4pCB8idppljAW9Wce4Tco+w/CDrNrEW 9nckhopXWpE0O2R6Jn1OWkWwJ+hNKd06HS0eBpMhnmJ1AWGpUR4dh89jCVoNmEvj/ar1QVkV h+hMHV6ti3VI5XjQ+1sXF3Zcxu8vjmf+fePgjrvoBpCxR1psxKLj1lprV5evtqSdKH5tjpnq JpfhtVsQ76/s5HkSknhkz8GAW+SvlfOR9DTx9leR1ZvM1KEW4ID+WcSzQoC2w1MlIdtGILua q2jZsK+Sb01VxxmHSuUn7DMvUo9R/7D0ukTPFOt57ZH7Ipr0S25CSxFLLmgaEUf1LCl5Mfew m89yJQso7SWHMEC10YJhJNkeCH+qMN4PnX2e0N6zDlHFPd7CqxoJJKba53rjOqKtEbudzHuv gvmQCPULmTIp9GhIS12y+jS3LkW1l7tbHHBJtQ7NdzyCqv74JHzOlxkawEoLcJDRdlsekOg9 oHVSMRNVTvr8KF5QkI9n5pY+O3iKPVIUTGzvANbYjg99oSvWWSd5gqSSBZA2O1uSVSMcuhkg xNXRfDEL6AObmSULAkG3ymBQkBVt9XUMZKSMuHxTKFTGcJXf+vzsJYSHuvOvtTArV6FMm4gH s+eRpL/BgZu3tXU4MqNXhE5OdXNQJSxC4DkWetaocIYXPgSDbPv6L2oluTC+p9KSQZFkeH7o hxnj+xYB/KvR266kgsyd8tAxlvdUdTnIkhq+GCmvlRjgZv0N+qOinQCqtseUl4WlM+h7940l MNCNhjBlhLI1fD11eJLw5DjzPAamIoJWwhPfw2RRi4I0gKWTKBiWqoM6k04frrnKFLFqTm6x HdIPJxxexW4A9LopWAEotqF/av07+JpAnRPFVW4rqZENAeSz7ao1AlIz4yDTTiqubbP91f0e DbLmIz8X7tRDe/r9WA9OAIlzm4ISnqjazlQl0LvhIGerOebHshJnAskOVLwYhoAKW1bPGRaD PiWzHxHEFXz89bH6lLTLf9DuFq3HGOaXdiFTtqCForOpABXQaczIjjwRY4i/WyXKDDjrPmOl 6g0OjJL4ZP83fryiG9qaaEMnXLJPkjy3Kd0yBVDZBhKfebOlQlNvSsJ7Q4SxOqGBsVecxiWf d3ftb1BUJRroTeAZDfQ/hADbCgLAgOfsiCCgV3E7shOTdJ91OaWrPYNAZiAnsjbGFYDmWJYH /tcYTh4o5v6y+PaiI6YCYOCV1vd9x0B2hQNrCFUloR7j9osBVqFMRtm3nJyTl5/69oGW1tMI EYUBm1QzLOmhnL9+nnDp8kEyjXJMEkhwG0duauOV1UY9Ouy1LgCT34TM1TE3hkvOF4weOF9L b4LRtdEp0SRqyL8cYYlEotMIqwyO2H3/J4BNiEuVGauFhUZhqnbZ4Ll9hebYGmb/sHrsQdC1 5IlNzlTIOFjvhI4VzFYanPAkZTCZzMqiEIqqa4befyG28XRw3SGG8GjgQ6qMCWEIzRg6WNzz CRqEG4eBwG3txivFcysa48BTpiteo9hT7k1zu9MTypEiHiRh9x61PKnyL87Fh26IEA5vjda4 HpDdgblqQu2kFo0UK+Sg52+l4SojTPSrC+K+1phmz4Y+OsVFFrog22ZQIJ684XP6cXjLI3G9 0gkor2iMtYfV/MvEe5EAyw4NexLFpSo4wcxJxKGauyYAf/bzk9XNfrrWTG/CdVBswAP8psJ2 W0pWFh1EVrPEvtU1FXFHHmNmPjFtusPJ8TvY9s5f/xnC6Deo3/gNojgpK4mRYICh8nnmYFJQ Mi0F13r7QQhDfHli8m0hqJ2c+rv2Iw43Ok7b7mBkDc4rOAIp7sXu6qaBOqmIE6fA0NYVI33p EFraKFJNM1mhUcj4c6UKa8mBPNba/CxHBEnN65peleMqiidGsiNLD26IKXISXb2uwFwTWOPV heOecqvyvZ7lcI32Lvqw9D4p4oKkHyJzxzgkcMGMcrw/TBT5gnGdw8cDDD8D3/Noxvv8w+dV OY6JHTnG6d8tS6th6ADuduiP+x4QLYfIvnTh1uK0COOpBYltuB88IsBqJ6DN8v6tAlgf7/+e r2EGJCpNDtJK5zkl8v73Ny5nhMgYUSZG9NlwYI+b+SrAJalZpWRU/vY14cbDSq+u4awzvlNH eATqqMdz6qVH6rl6NJksD+RxrzTxEI1WJVri3xBV1XfSiHm7R0YBGolfsQW95J1gSxY0w651 qjVnSEWvCMClJ5eZstnXh9Vbw1gp+E1Lmg0SG4bxj7V9aIzWbKqLygWrVNNzUSbd4Efi8pu3 bJ0/qy/stElV/+g5ULy+6qAb4zF1cqjfkS71yGJd8pQ8O6PLPVADbTe6Kvh4obYgJ3zeT3Vm oq4AKnfi6XYBLw6CACm/IuMa3zfyFKMw9m8r7uklGDJMa6/y1BPp/5qRMNgjeprX4er9U/EC bkSDeZKpAvXIh9Q7dVdpVGAL+Z+H8EJW+pe3sOurRR+HkXGPgIfjUg/XL32n/OqoMPWr28K1 8ME63jxX5cPjMN4749Y7AbVlbw3yw6BKHpbZl5A56l3mJN9ejeJ9PEBsF9tBtzkjDSw6LV4+ Rr/KoyC6IAro2fWUVy5rFQSDk7jWSQZIyCzD9VNhxMgpElVlwFBvve5tBRIzOJVJCplM0Ybf ovtJB+BA5qzaeMkH0ZbsZ5WLiuodF1RHf6dndDWyF0zP0hqn+DaBav4xUAtBAxSWGvZokShr sCPx2mzmvbuiCuQwHrioZveWsp6RA6pS3AGH1p+NvBzo1rbijBwiFlsgL7VyLUmXz6uxDvNm cnVof0+Y/nUJ30vWUzbW38lUDQOks+ZOhWBDZ4Dx1B9lrQ+SyQtIlXi5AEmTJcbYb+f1rp7O BKknFBBRd8kW7H5ryxyY1wyfYZ7TVhCQD7I41pXg8Mj41C6BTlqXvndhJQQI5iqg/OuwSHwA AAAAAAAAAAAA rt-4.4.2/t/data/smime/mails/5-encrypted-attachment.eml0000664000175000017500000000466113131430353022420 0ustar vagrantvagrantX-Mozilla-Status: 0801 X-Mozilla-Status2: 00000000 X-Mozilla-Keys: FCC: imap://sender@localhost/Sent X-Identity-Key: id1 X-Account-Key: account1 Message-ID: <4B709D8E.1000001@example.com> Date: Tue, 09 Feb 2010 02:26:06 +0300 From: tester X-Mozilla-Draft-Info: internal/draft; vcard=0; receipt=0; DSN=0; uuencode=0 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; ru; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1 MIME-Version: 1.0 To: root@example.com Subject: Test Email ID:5 Content-Type: application/pkcs7-mime; name="smime.p7m" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7m" Content-Description: S/MIME Encrypted Message MIAGCSqGSIb3DQEHA6CAMIACAQAxggHIMIHhAgEAMIGKMH0xCzAJBgNVBAYTAkFVMRMwEQYD VQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxETAP BgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBleGFtcGxlLmNvbQIJ AIpqzVG+lKAVMA0GCSqGSIb3DQEBAQUABEALN6in6tg2C0yVmkb0XWJr6qRLrwrJLiqcoamd a3VAyQeHcqIB14UYuHiN6zZA2lABUI1DsjFlDiCEg8TSyJuAMIHhAgEAMIGKMH0xCzAJBgNV BAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRz IFB0eSBMdGQxETAPBgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBl eGFtcGxlLmNvbQIJAIpqzVG+lKAWMA0GCSqGSIb3DQEBAQUABEBDqZbltMcqBRxIshfZ+jSa 49l6RJAX6HVIBVZRu77rmlyVs2ft18qP0YVgwDPgD5Iok4c1Taemo3Rg7M2bHLwlMIAGCSqG SIb3DQEHATAaBggqhkiG9w0DAjAOAgIAoAQIWcv/5Jc8r/uggASCAqjneNECFsRSAPgwjW7G Hi+zLy+vPBLNfWgyuEAlKGeM347PdUciZNLhiz3D49lfHmVypGOxYTNU0kfeJVTW5bfwYHdS ZmPRx49tNJt08GR0eqbePKZtH0/0BW7LF1//lcNeJchsSdyRvkMB8zvTBhnNVhUSQWumrbda OUqvVpSdqx4SeqbyiyQKI+7AiZ2ChcZX9fA+YoiWT85NVtmgBNMMne0uHgmdBMaQHF4bTXvY /Mg8ew7Vg3TkVjg9QlaAe7JGrgyvSx/H4f+sn6mb68NaF5jGjiwen4a6ThRJO8lIJ30rTlb+ WMqszV6OZK2ieWNn5BQlXOI/ew92UIuoyd5PtDkrLbkYio20KfCLpLbt1tvT8ZG0csgg9PO3 iM3S0PWpjg4axknCYonphwSczsPcvUYZ+y4cIMdXvk5A3byMAQjLPYh0N6F9Q9tETc3HhDhA rSdVRot6JILv/tUs2ISPxJcMlLh8TcHZNchnRUcDg0wojULs49rONZIw8UGzbZi1H6IoGebk 1HBsskw21pPDUjG7LpV0bKFKan0wxE5kJP1Xk5EN2Yw+2EHDE19QHs/ru2FdTjfbtcQFGlT1 yiNUI7UwAPpCPyLoOpfvwYL2u4nSnbnKHCdjDHl4VAre8bngCMTzdRM91w/nydjpHfBbv+l5 /EOKbYPC/SNG3IJZy70iExcXU+WydHdYCW0NhR7K1sCdwDsUpziQMvzlkJKclPC894Yljqnn 83S8G2z3pTJ+SEAabdXY1GmYdfFeLGwnRmegzmWe0wCZKz0m4CabkDX4h0u8xu/C/5gbfU5Y JO1s3iVxzGa1TgyvD4aPvqh9pIQ/wSFt43HtZ5/ReG2ul7PTzOK92xC1c3xpMnXdtLEeRmNx 2KU0Kfk1Si0lBJHf3R/JhwhHvwQI0IeGb5Ho55oAAAAAAAAAAAAA rt-4.4.2/t/data/smime/mails/7-signed-encrypted-plain.eml0000664000175000017500000001455313131430353022645 0ustar vagrantvagrantX-Mozilla-Status: 0801 X-Mozilla-Status2: 00000000 X-Mozilla-Keys: FCC: imap://sender@localhost/Sent X-Identity-Key: id1 X-Account-Key: account1 Message-ID: <4B709E37.3080003@example.com> Date: Tue, 09 Feb 2010 02:28:55 +0300 From: tester X-Mozilla-Draft-Info: internal/draft; vcard=0; receipt=0; DSN=0; uuencode=0 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; ru; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1 MIME-Version: 1.0 To: root@example.com Subject: Test Email ID:7 Content-Type: application/pkcs7-mime; name="smime.p7m" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7m" Content-Description: S/MIME Encrypted Message MIAGCSqGSIb3DQEHA6CAMIACAQAxggHIMIHhAgEAMIGKMH0xCzAJBgNVBAYTAkFVMRMwEQYD VQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxETAP BgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBleGFtcGxlLmNvbQIJ AIpqzVG+lKAVMA0GCSqGSIb3DQEBAQUABEBn4w9xFhp6LNJPyt9G4QzJMyNIHsRVgJRb5gnw TjP9wid5D1+bi6FKg4ydAmC1xicBtrUj5P+ZVwZHEnPKl2DqMIHhAgEAMIGKMH0xCzAJBgNV BAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRz IFB0eSBMdGQxETAPBgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBl eGFtcGxlLmNvbQIJAIpqzVG+lKAWMA0GCSqGSIb3DQEBAQUABECW3Ck8XGyHghaSy3AklUgR hgeyhd/eARl2L6MZDLZX54xjSY1rFpgXreuM9Ttscp9lWvXv7zt0cYO4Aq178SHmMIAGCSqG SIb3DQEHATAaBggqhkiG9w0DAjAOAgIAoAQI6O53d4iWD66ggASCDiAtaWyrM3VPhlRupSYC oQQfwOeYYGLUp4s44UgdDiKjtPAsDdyrwPQMXI8ETFzEZp9XQ8bVKVLJ5c/PT+7LCqPtfihE 4gqXABe3qePPKlBYZhJkmfLHRxU096JUviZK7VjRBEKYaRD+8xOqBDFipedAPyvq4GvzT631 PAAgRBqLF/i+puFUlbd9RPM4l6aSajnM/pTrbl3IuYKFiWyJ+K8RlD2rDcEw4fJLMr+/2Lx2 uIL0VUAz3VDl+ja7bfo0XfRCmpgkf2utyZLlRSRbKuyaNJ7nGFK6m54UJYO7FD5sRKHiLk87 poxmuZCvcamnoEiLManXxzeuB6UcmCZvvGCoVz8WGgOM21p5DLdmaIguq38yh4F993em2Lrd +ii+dN+ChPdBdq58CqUovqj4Aic96i25ZGXFJIh7hgeVkhulzYuaduZABS2yXzoOcBxsnQdk Vfb4lTTsdSrONStSmSsA9wZg1ksagPHZZkWLCTvi1GBQkv0PE4jo4AR6WdJzWnxA50eOoGIZ F0OhjXJKTtQCsmsSEcfTEcAnE7zXzDNAYQ1DpCGvrCMUD2aLdocF2J/qIc0NlKhH03zjBwpc DMYn54K3JD1qH+4vRYpk51PAitI0DBlI/iYAzoFpCrx+gsckMccwm03J/VdgXU6iEt/J3+Ma hCcg6mpcBFkhL/MKPb3a4sf6KOXejYNufoGV4J3D91FeNh6NXEr0EO5axvye44afe/0kTZ+k GFMe8IgURVzpwEt+04nMjqj+xOFUNgRF7sG9i2jFQenAaj1uz1DZtkeK56WkifEZIUNfPdII DFcBDBM/Gvpg+oRf1aQNckZyGTFc5SYUFZmrVdbN5EgZ2NI+yEl7eM57+bWa14zUk6/0nuRY 0PLsyu7iUQB0xZRSL/WI9mkPB42EIiXOwyHquQSv9qGPFETOM1CBvkTtRwmrTQFfOPRYME7T 6+MC3r/Xf8z4ZDxmkxck16U0/r6GHGszOcmTlFE/5nuZbeTegU0nHJHR81Es4i4oP9JPDYdT kzQS5jk+ttBWq9gBvNFrNbXZ6d4F+61Wqy5fFRcCBM76l2cpt+PGREh7ExGDAg57QTM6RUkg g2AG9IHwLvCqkaF5u1K6Ijy10n/BXQ7Nnf+myFgxdZwe2JX8BQeRgDZBNgg2EhbzMNjfkbX1 s1JW5kWj+CjdzHIqSpa4XJcfGhAkTdju7RTjjzArMGgqWL5VveSZJThBx1hoggkPeWxQBqEP wWflxbp3QTOgNKNOGt1p0++fkdkSpQmdCnPYnMgY/PXDuW9My1CSq5NKsHWdiAjwR5UWYEat BLT1yDoV7Ofk32304k0DgFXC/Z0zdbXddrL31JW48GrOsU/eX8fGZXFthfKeWgH28NJvqaSg 1Lyfa22Ssun2e80ieLoQnYBkN4XkX0oLClpr6B/ig4qdJVRn5D1O1HLcvEcd+zi+gfToQmxf UR1VAaeZiLtJ4xlhWJAYeI60xhCt7vQoaGDtybLWup/oFZG+e7zWV5UKpktrhf+Uew2F1+P6 8jRjXUckkQU+wqXlZMXoSrsL6LZHWt9NLA0CNeiX23L+A0MVqjRRyJwUp8M1FvU+I7WlYL1p xHZmy7mGCbyTBKJTPt40U/DAbEQBvKZWVSN2NqmoJf8q/cpwaN3IuVJl/LWOuC6cXHqjvF/8 PvWb9QMqgMRMS8jOfUc51+XV5Sh1H5zod5rpTRRKMgnwZmuhkXWPWNjIMfVHo0Rl+mPfMJiy PyXjPMYZd9TzoaaFm+pPfMJxa657UmgO5Wh7hFLNH6n5wz8RHpifLQJlIZoDdV+sixnzjZok WOsnKji+2TPbbx9eeBBbap8FnsHC28tNoVRuT5JqL3pu6/df+/MetthF9YnEMBMt+uZBYcnA +j0Wyh6kgW+72jG8TtmiwWRFnRR3Qv9D3s9EplG6oAV90BBsorxaaBUgHc53m0d+phLIWm5k OTayvoGkwj3GubRGeKtONC+hdZqYU7Jsh1zOXqEn+GvRC3T/R+G7GxKAoAkGqVjPUTOq8BHH QIwpVvcac+fYNOxHVRaCK+yieEXLkunH1Ty2tVn3wi4OWhGURu3aJDhM+a/Qh9ulCYJjzeOt XM8/wZFElmg4+ih+u4wiOkgTF5Cv7EpZS5INtdNooiu/fYPCdaqhUKR7Xa5mOdoCDmzI6XRD JKnXCUkiOqBXdv6SnzD7d7OYWJrul6FCCErobU059PhRV0xp5rLgGnrJE/Q28F2SFN93SOQF k+imZHbpxGwoKULrORzTGQb7KUNYZYTxqEtMUErodMrw9y2tfAufNAWNvEn/cGTsHhhJNATS qgoeuFxSmvGTtSunFr/mhTcy7/Gg9eZqEdpJjmywKLDjefCUYWRs8dv9mEnhoFLrXv1/NmMo aPtJ9bysI9NpxP+zVXz6cQRCVO8PTZOYrZsVT7Wq/s3oiArY29hxNNRJT89BzVO9LLgEgM8h ApV5LczVFmAd+hKHnW1/+y4uYhqsXlB3OhcLwleNFlAV0hJqd4G24yGNV/36+Mp3epZX3Tn3 QLYn55EkwU0EV7Z/KzhlpUYbIqYY7V+mrx+YlW8K+D1b8FIayMY0m8joQFbM/NWyoVjPoSXW r1mQlmXlMhDCnaow3HtWWX3kIvFrg1JmmyDdsdi2v8W8l+CkAmEhMrY4cTfXFw1uBzZI9Ayx TCGu83B+G2wo0bp/UtsxpV8vQRgjm02hwODqLIHWqtTPzIrP3nBDc9jbwBB4w5XKiTAZob+Q nJnCUgwD+2RV8TDzUDezRPbvs5M93Wu4JPFo2pQsOfIj8gDESgiRoaC/qAITsnE8LF9HwTLG 3BL736DFTwHrURp/Er+3j7o+Dj53Fyei+/nMQ4GVF6kk34laQv6VC4i70DXx86J2eT3Dvkdk 2n29KPAyFCE4TLO2vOWaeXSzFSsDbSGwWbum8AzehUB7gpz3TPU16LSrfXY6Wu3t5Gn6L1ai dwyRQu02DXQPZ1QtwrRBRLGC2zHRk2dsAOwhW8D3ua3FYNyBEActet+Ln1W6AAAYWGUVbaBt FzdRQdw8wpHunDp21Tv9EEGR0SbbntPtW+DDQC5HHfKM2bI0y7zfdyacFm6pCwLWF4pbbH46 O5gTIkvR/MfzDWPylmkvqG4+XW6yV/rGx4cRwapAuhGpH6OCDYOHjIN6/murzVTi9frwqKX1 Ktxso1OWANL+DvZZWAVwGnZQ3oR3u6Ng537aQKiBJjlET3H7N/ofe5zlrr16dNjp9Zq1i09h e7/3vrAnQXP7MHrSl8eQYrwip6q5XD+2PGaLbfulxMZueaA+0UDn8MgfwhYRjDmRk7HNIQ+Z R7isjgtt8USEUichKVTI0WDO+708wRi8pldqrPTRJGoN4kmofnLteluFRlzmRejCVYmgC3Kr Cou3rrgSs/aCLkuwa2DcexBhX51Vzu5ILEJPn8eMOM/IzaFGu2RuUgMOV3f9TN87UB/3LFLJ QswdqtMqQIwKWL+8QVbYVo9OqDiY6IReJUZbaPUgyy6A/QIk4U06DwqKOBqDXORWtU0CGZro X0w2Ed92HOpWvXK/fz8Wm5a3fdE+1nDc2ZRk4zFDF0+armg8H9qsmSU5q/qEsMCTlTnl7EUt hwXxDRLu9FzAG4day3VcO+mBE6vwNb+JUBcAr9e8aWbIqXEZLszS3j2XkGfESVc5bAy44YTB PZykK1hYbuTwFFDhizPy6pU38rk5bJNV8c/Dt+bjL0WANLDh6sDEU0nzpcae4nR9YDHbi8h4 DNyEH+tHtXPYkJtj5+jLoyD5kbFFeB0rtywhCnzrsdMDFeR5hnYbf9VnFdIUVFTdD+3FRMr1 Vl3uCMxRA51UUUOE42cLRTOTauYCaqNsbwPKfvu1zbSupTy3H85Tm4iUuZFEsdaBpJIvwZGI dzB3Ug05ARAJBoo49xsuISJcI6KpkmgfO/M3xOsiIm4K+mYKoIA8obUjFOT5KvGAlxz1kaXb XjV5HOUQDtWh3Z4eFX39CkxDLR+K0jPe9Ny0Z3us4fjl0twTpiK5Bn8KriCTo5GG8uyry7W0 hdxjd7fGZiKE/jMgxFtU1SLY6zLnM9ynbDoA4EWKNe6tBHtfB/TES2uxLzXseKly+RfItTuA Qo54LuY4hdExOPPZS0s98moejtWkS/feh5bUAh1cXkwZr0da7ESjHYT/Gua3OthPf3xT3Rv6 ZaQaNOiVMfqCenAnCQX+yi3HgLJA2iWddhre61GE3x4ggpCa/UbLVs4gvlNaQO9bANZDDMwr rk+5fw6paoabhLulMUe+XM1ZUA5hj/rBXkr/ytEDNefB9aKoPUm0ZI6WDtKttJsa4FNV+6Bf SoOrQ/mRAmhaOyGxwCkG+cVo4KkZz1XgcLypnRv/VLB32td1KwmpJZ+hZihI/s4NhO+9BHNT ATu2wsHCeO/e0hzLvKVcRjuzUu/wGzK3r2XX6Bkynz2g1NRLw0dFfmiz/QjlWdDatrmTX6QB /7e4h7zFrYB8YGqzFEoPTVvLoLCilBs563LrgVCAOi8v/lm88ZKBN95G5x1nI6YvSrxqAMzE mSciIlosHS4baea67BNAkRIUg4Bgx+J8vmJIYhGQJSQNtFPc3mJgtOQ/NQtombr4PdzLJda6 rpdeHoU+F1/pq46TqwQl7deB3YPfa8D84Ma0/5W7ZyO9UZ3sGUXcZhJBsxo8rzd8NqF4whag 4wrSWe8NSrigwkzVTc0r3M8jz2xzTLJqSnvuM04fgrCZEsz2aroP6dR4mhbuj5F8JdEZVW3g /xtcSkPsRuRVo8cD0FzQdjSbNG3GO2ITOA2+ZPnh7vBDfAMekmAeBAin2A20Eh6sGAAAAAAA AAAAAAA= rt-4.4.2/t/data/smime/mails/6-encrypted-binary.eml0000664000175000017500000000557513131430353021562 0ustar vagrantvagrantX-Mozilla-Status: 0801 X-Mozilla-Status2: 00000000 X-Mozilla-Keys: FCC: imap://sender@localhost/Sent X-Identity-Key: id1 X-Account-Key: account1 Message-ID: <4B709DE8.9000101@example.com> Date: Tue, 09 Feb 2010 02:27:36 +0300 From: tester X-Mozilla-Draft-Info: internal/draft; vcard=0; receipt=0; DSN=0; uuencode=0 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; ru; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1 MIME-Version: 1.0 To: root@example.com Subject: Test Email ID:6 Content-Type: application/pkcs7-mime; name="smime.p7m" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7m" Content-Description: S/MIME Encrypted Message MIAGCSqGSIb3DQEHA6CAMIACAQAxggHIMIHhAgEAMIGKMH0xCzAJBgNVBAYTAkFVMRMwEQYD VQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxETAP BgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBleGFtcGxlLmNvbQIJ AIpqzVG+lKAVMA0GCSqGSIb3DQEBAQUABEBaD8gD14bNN6JP7//sSTSKfd8xt9qWPMhY9bua KfkSNpEiV0NIcdnJLJxMfgQ3ox6+eHOt5PlU67FgdStmUoHZMIHhAgEAMIGKMH0xCzAJBgNV BAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRz IFB0eSBMdGQxETAPBgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBl eGFtcGxlLmNvbQIJAIpqzVG+lKAWMA0GCSqGSIb3DQEBAQUABEAdwlvCFxp7N94tveDDJs6Q 9hDYS7AMp+tc2Z0SNCQmCW803P+iVkZdEPJ0VIDvefAoqKfZlXwZKYydsN041UGlMIAGCSqG SIb3DQEHATAaBggqhkiG9w0DAjAOAgIAoAQI0HAJB8sjnyaggASCA/jxFMDm7gsDSM2rSbqO +bPNrSatAQTjkYcCnqsExZKCB+P4IwBIODEQ3pbYL3AMF3STZTFEIKxQG4+3lfO3qoIfSWPK HRvabwW+trH3tVsgf+KkdVSfCXBfSV9sIdmXHIAJOSKUZvmbJ8iuQy6543v0InIgNsGgmH9M I+i5bkgWrJHXVn8N0iAH3Unkf0qJgb6E6lvqcbfOpgKzYJ0cBSn9Z00NXo0qw8DuORAeev6i EABlIzv/v7P/7ptvxDzlu+EoiMIiuo9t/aL3lKT27UK1yPUfEZTqevhMwXYzRHi6AQcsZGKJ 33xpaVDkZYZQolQInBIlx23o04K0dm+iAcOau6xpWSvGwlI590MryKg0GIjeNOuy7CkEbZXX P7gF/ExBMM03Xoa93ss7Q3CJHey2xwC+Ozf4Zbny1wvbs54bT//Oin22jdtSOxDIa72vYH+F DKRdqHdSr6RKg4vnIKOxoOys+P4oKbJP66SOKni86XovDR/iVClu0lxHqjJKsW9r1p0O1iOT +aNGMKaXkIa7UEKfVDPdaRUPMszjo8vjqZDWOV6aO8mg52bg/nnbbviVNtToqKweEJA8ellJ sxCtrE/lUerWPZG6d073bMQ2yl9i/2pF8UnEwZNF0vP3hMZ+k8w4uQbAX9BEcDKMKGB1x3FL GvgdzypGzzX/yk5UvTAA1KVT3+HDWCQHmH3fSB+8XyTcnlX4WGJ/oqWMU01C7GWEjj17q2CS 8c11m9/IC0dBgc1iffkdIGMwjHBdbUNmuAmCM0qTMmzrFWrHiahLXhvzz3+X/oqbltemmlpQ GD/v699pN1vp6ito4qSmJ6WOrS0Uud6V9UOPDHXI3nQNBnI+IijHQVVL/H9FxuUYFrKsYupt ssdGrdrKb8+CmiMpuDp8w3QoCfxBf/Y+FykX/rBF6T5MJtS90LQtq/7iYv3sTS9PDqXBHW4+ SgLSOcFH4vmodrP3nu+TnLWU33aboPBvdNzGO2CpOzGRsvft0QanTq3vhSwLG5Nhqiv7XHKE MRphztDRdNlxNQjEyV5q0ER/bEltrMtksFIcPKEWXfsNjbW4PTgjlsjLVBnMOkOU/dX812UK byJW7l0SrWo6bFrooP1pht0IyGWLSxmRMb4CivKgqQuLq+z869I479RlReVBwoYJ+bxoOjD5 5RQUkljjEg/ZCo9OvVVgA9LFUhT3nATjHQJTqJKx6jZxITiy9EfXymX71SxDXyPsM9sdqrdQ SYX217aHveMarK6v9V8smV+LtxKq9Bgkm2ZbUiqZ0/oBcsIIca9HYC7hUxIXkQRvJBcsi7BB Lk7Xm/Egkcc9ZfcnGevgIntzdVYod6LpUodzYavdewQIiEXE/XWx8fgAAAAAAAAAAAAA rt-4.4.2/t/data/smime/mails/4-encrypted-plain.eml0000664000175000017500000000331113131430353021361 0ustar vagrantvagrantX-Mozilla-Status: 0801 X-Mozilla-Status2: 00000000 X-Mozilla-Keys: FCC: imap://sender@localhost/Sent X-Identity-Key: id1 X-Account-Key: account1 Message-ID: <4B709D39.6090102@example.com> Date: Tue, 09 Feb 2010 02:24:41 +0300 From: tester X-Mozilla-Draft-Info: internal/draft; vcard=0; receipt=0; DSN=0; uuencode=0 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; ru; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1 MIME-Version: 1.0 To: root@example.com Subject: Test Email ID:4 Content-Type: application/pkcs7-mime; name="smime.p7m" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7m" Content-Description: S/MIME Encrypted Message MIAGCSqGSIb3DQEHA6CAMIACAQAxggHIMIHhAgEAMIGKMH0xCzAJBgNVBAYTAkFVMRMwEQYD VQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxETAP BgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBleGFtcGxlLmNvbQIJ AIpqzVG+lKAVMA0GCSqGSIb3DQEBAQUABEB4NUWl1nJB+cQVXPRmHEj+uxapSKRQ2PFeP+Eh VJHyPpsgf8APPxhS/6s1DBIWE9fwkghiM7JTgYZow42q/tdfMIHhAgEAMIGKMH0xCzAJBgNV BAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRz IFB0eSBMdGQxETAPBgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBl eGFtcGxlLmNvbQIJAIpqzVG+lKAWMA0GCSqGSIb3DQEBAQUABEAFd/zqPwzjH8gKZoGUA/yY 7aDfJzlAsg2tar47hM1xeSTgJ5JpluYy9V/43oK++Q+3HceI4P+aE91CjMrcbqvlMIAGCSqG SIb3DQEHATAaBggqhkiG9w0DAjAOAgIAoAQIsDsGzNXDhPmggASBiBdO/BdF/SrEjAeIi2is G71RuJ/lcnNlAltdk9lMJLoOxxTaa495lk8HuVD0xFYQueNS8AsACRjkOwgSf9Avh1elFRV5 U3XZrmCOqbnDsWRTr2KEc8K9CXxqY6CwFizaoFlTftpji7W3ATU2+/QufIKYBS7Za3Zq1u7M HLbv4GLdEP1GVPDj2fAECP7azsN17fhCAAAAAAAAAAAAAA== rt-4.4.2/t/data/smime/mails/1-signed.eml0000664000175000017500000001031413131430353017532 0ustar vagrantvagrantX-Mozilla-Status: 0801 X-Mozilla-Status2: 00000000 X-Mozilla-Keys: FCC: imap://sender@localhost/Sent X-Identity-Key: id1 X-Account-Key: account1 Message-ID: <4B709B50.6040609@example.com> Date: Tue, 09 Feb 2010 02:16:32 +0300 From: tester X-Mozilla-Draft-Info: internal/draft; vcard=0; receipt=0; DSN=0; uuencode=0 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; ru; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1 MIME-Version: 1.0 To: root@example.com Subject: Test Email ID:1 Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg=sha1; boundary="------------ms010504020705000203070202" This is a cryptographically signed message in MIME format. --------------ms010504020705000203070202 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable This is a test email with detached signature. ID:1 --------------ms010504020705000203070202 Content-Type: application/pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIFXjCC AqswggIUoAMCAQICCQCKas1RvpSgFTANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJBVTET MBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRk MREwDwYDVQQDEwhDQSBPd25lcjEjMCEGCSqGSIb3DQEJARYUY2Eub3duZXJAZXhhbXBsZS5j b20wHhcNMTAwMjA4MTYyNTQyWhcNMTEwMjA4MTYyNTQyWjB5MQswCQYDVQQGEwJBVTETMBEG A1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMQ8w DQYDVQQDEwZzZW5kZXIxITAfBgkqhkiG9w0BCQEWEnNlbmRlckBleGFtcGxlLmNvbTBcMA0G CSqGSIb3DQEBAQUAA0sAMEgCQQCoOEGQHefNK8tiz63/cPZEXfNLfiF1tlzhfsInO4Xrcpta lAppHYPKxZGyPwRyYeS461vOtRB32Kffi8laFBVhAgMBAAGjezB5MAkGA1UdEwQCMAAwLAYJ YIZIAYb4QgENBB8WHU9wZW5TU0wgR2VuZXJhdGVkIENlcnRpZmljYXRlMB0GA1UdDgQWBBTz NObDUXiSm5NJjk4wvBiIJGk0CTAfBgNVHSMEGDAWgBSNGy29vSToGWKuTMkqWJAIHNEFKzAN BgkqhkiG9w0BAQUFAAOBgQBTkNtt0KoPyzKULqW80Q0nfIXYCGxS/rFNGJTCEP9Pj3Ergb+j qhE+bnJfSho4oD9fLInWr8Vs/1ljEy37Wi9Ysnc+UoMHAcZOzxmcmvMXrGPCAPMYuSem1RoU Edbw25ve5K3NKQH9OMEhnPqiC15tXRRUzgo8968P5n/HOQCzMzCCAqswggIUoAMCAQICCQCK as1RvpSgFTANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1T dGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMREwDwYDVQQDEwhDQSBP d25lcjEjMCEGCSqGSIb3DQEJARYUY2Eub3duZXJAZXhhbXBsZS5jb20wHhcNMTAwMjA4MTYy NTQyWhcNMTEwMjA4MTYyNTQyWjB5MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0 ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMQ8wDQYDVQQDEwZzZW5kZXIx ITAfBgkqhkiG9w0BCQEWEnNlbmRlckBleGFtcGxlLmNvbTBcMA0GCSqGSIb3DQEBAQUAA0sA MEgCQQCoOEGQHefNK8tiz63/cPZEXfNLfiF1tlzhfsInO4XrcptalAppHYPKxZGyPwRyYeS4 61vOtRB32Kffi8laFBVhAgMBAAGjezB5MAkGA1UdEwQCMAAwLAYJYIZIAYb4QgENBB8WHU9w ZW5TU0wgR2VuZXJhdGVkIENlcnRpZmljYXRlMB0GA1UdDgQWBBTzNObDUXiSm5NJjk4wvBiI JGk0CTAfBgNVHSMEGDAWgBSNGy29vSToGWKuTMkqWJAIHNEFKzANBgkqhkiG9w0BAQUFAAOB gQBTkNtt0KoPyzKULqW80Q0nfIXYCGxS/rFNGJTCEP9Pj3Ergb+jqhE+bnJfSho4oD9fLInW r8Vs/1ljEy37Wi9Ysnc+UoMHAcZOzxmcmvMXrGPCAPMYuSem1RoUEdbw25ve5K3NKQH9OMEh nPqiC15tXRRUzgo8968P5n/HOQCzMzGCAvAwggLsAgEBMIGKMH0xCzAJBgNVBAYTAkFVMRMw EQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQx ETAPBgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBleGFtcGxlLmNv bQIJAIpqzVG+lKAVMAkGBSsOAwIaBQCgggH8MBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEw HAYJKoZIhvcNAQkFMQ8XDTEwMDIwODIzMTYzMlowIwYJKoZIhvcNAQkEMRYEFMOPwVBhOpsi ON90KfnmXL2eK6NdMF8GCSqGSIb3DQEJDzFSMFAwCwYJYIZIAWUDBAECMAoGCCqGSIb3DQMH MA4GCCqGSIb3DQMCAgIAgDANBggqhkiG9w0DAgIBQDAHBgUrDgMCBzANBggqhkiG9w0DAgIB KDCBmwYJKwYBBAGCNxAEMYGNMIGKMH0xCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0 YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxETAPBgNVBAMTCENBIE93 bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBleGFtcGxlLmNvbQIJAIpqzVG+lKAVMIGd BgsqhkiG9w0BCRACCzGBjaCBijB9MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0 ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMREwDwYDVQQDEwhDQSBPd25l cjEjMCEGCSqGSIb3DQEJARYUY2Eub3duZXJAZXhhbXBsZS5jb20CCQCKas1RvpSgFTANBgkq hkiG9w0BAQEFAARAU+TWo0+Dn6Os7e1q4GrQqDvSEPcEA9mx4SotzuLfQ/TQdzquucB0967F SMKKtZ91LwT/wfT8cqCADfh0LaTIFAAAAAAAAA== --------------ms010504020705000203070202-- rt-4.4.2/t/data/smime/mails/9-signed-encrypted-binary.eml0000664000175000017500000001703713131430353023030 0ustar vagrantvagrantX-Mozilla-Status: 0801 X-Mozilla-Status2: 00000000 X-Mozilla-Keys: FCC: imap://sender@localhost/Sent X-Identity-Key: id1 X-Account-Key: account1 Message-ID: <4B709ECC.4020500@example.com> Date: Tue, 09 Feb 2010 02:31:24 +0300 From: tester X-Mozilla-Draft-Info: internal/draft; vcard=0; receipt=0; DSN=0; uuencode=0 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; ru; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1 MIME-Version: 1.0 To: root@example.com Subject: Test Email ID:9 Content-Type: application/pkcs7-mime; name="smime.p7m" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7m" Content-Description: S/MIME Encrypted Message MIAGCSqGSIb3DQEHA6CAMIACAQAxggHIMIHhAgEAMIGKMH0xCzAJBgNVBAYTAkFVMRMwEQYD VQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxETAP BgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBleGFtcGxlLmNvbQIJ AIpqzVG+lKAVMA0GCSqGSIb3DQEBAQUABEAS1T2vHU5laVZc98o4TkRhMbMRNq/ScHm0yBUG 3ibvOwes56fhE65qZvzpKlpv5dtl/7ZXn99GHxmybCyUN1tcMIHhAgEAMIGKMH0xCzAJBgNV BAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRz IFB0eSBMdGQxETAPBgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBl eGFtcGxlLmNvbQIJAIpqzVG+lKAWMA0GCSqGSIb3DQEBAQUABEBrG0OYfAeKnXGrznADm/YK zVh4n//J85fRJhKOEgCjBmo6nUrB5oklBe9nn7/6B5/75+sR7O9yVAlSAx4arlzeMIAGCSqG SIb3DQEHATAaBggqhkiG9w0DAjAOAgIAoAQI1SyfOlDkrbmggASCEZDOvqqmIEtaqMi6LwQY W2lZzGx7RhdT1cRbLA3z684xCAe18T/9iI36HH8Kn711eBQYbSPOn6CRnEbNckP+u0F07fJf MX0bdx/HeVOc+KFqHl+JYIkzD91IVqBjK6NsbCFz3ratZTthLgoRM/oj2T0RCpqf13AhnfZ6 Pm+HoeQBr80XfhcKAhRKrSZRONjQ+rcljh8fGJiLiqu+MjP1OWPdkTx/zO+iMAM7ZCi6JYLh 5+cCRxX8MqWCmOJyNTd3UGgU+Fl7XQcpGYHKeP5LdrBCv+a/w94uqCtjVbAPzBEF4hilxiFt 2JyDMIksh+spaIvQTaY5OhsEg1yg3JOSzwEYoo9qRS2RbBh9kSoB6rlTcQ/1TWr8rU64G/OR WsYUeMIaVJh0FPhm58//NUe3NbPl8Np8lOc31HWwUG3b4vX7VcaF07MzsRNxPQ199Cv11Rqz DtJyjuS3kMgIHcl6oFixsJ6/jGzPL4FAyYFHfEfL4+iuBQzYWfZ0dvNbCDsguGo9Tn7Hd95K 2JqKkw0VwPHFPBpL5fpDXp+5KPKRKLsRl6Vz7WK9xJ+4J9c5H1Hu1t89j4WcG6bnxgLmTN4L n3QKXLgc8MHjRA2rWrOqmK9s/NAUcALqiBCD3LLFkJ9IAglPRS0d8Gqgc+7gQ+x3KWU0/MH2 rpkcYoHAR8gUaQ4ub+p4DrBunF2sT3vlEPcbDY/nxY0hF2532earCX186QuaQQN5R415mjCf cQ9+sQ8UVdbfYZd9iDnbDa24dR87h5GusfvVqmkph2LcnUTGmJFzGEfktCmWA+jqukS+43PI vvnLqYlftnfjrhybG15XwQy3zxJJ2vX80RpfQfPhDMILOlCM1axe10XPys4814qIWrvq9HGK g45iwttLOpxC6nQTj3goZxGRjLTKTARDnVN4/WNOh357MsGwt5xXcNDSxSemyE81u/Cg0m3k pbCOU9AoY1hTSUdZQjL0UqYo3DSicUSVd9tjcUru83S1O+cM/a4CLSXDNu3XSbu9in2+JJBN QX5Qabx5Fat3u2towEnYPqrVFDgwCIXVS/5DlpTk9evbYNqqms42dD6ahz2eYiwReqJ3gYTx eNZ/MXEOFTIMCMajTo576G5Wpg8LcP+2CCAR/MeY+FtijT7jslPBoLgVUy/yTCuo2FsSN6T9 CFsMZjc29OO+xPgEq33vv/jiiPYVRvp6jiB5Y6rv0D83Sza4GhpNDx5TQ6ohJwTIyeUjnMt0 ogdvvo2Wj3YokdTrp7aJlscYH5jqUw/4SghveQaosipJ1x18CIFWzhdLrqFxclaJobXhSfBw oxwPKSVdE9E2iFTdCQBWmS78BuMs6CEit2Hhg3zYMYm1gYSeTQBQ+9Ktpv8im0YikOJ9lFfG noQrE+pDJxFTAfbaGNw7oYr7ovsA0xECGNeHjKs88pHC8jPOK7FmTo7GsRYR71Mq5mvZef7C Mbg3wIEd2lfTF5oUrym/1dWj7QCeBFwPXrhcD5lYFISo0rIUk5DjsEuLoS/c4PQa6tgSKRmL 35O+67dPYbCL/e6XTf6pmcxawFGa3O1CDCJCUQsKbZgU1HlMHjdGm9nHPq69BiUrEl1hY+Ik +R6vVby8Ki29Ff9Tgza9Lzm3GbUZ7EEg6MpKOBcyaWsg4JJoH/ERKIWlfBy+99JQ9tZ98BNC MvwmHggpWAWJ4Q6c77DAadhkjVaXcCIJnNsSDVfhtvy0VXfbrjkXWboMqBEag2PKfDLnS2uQ SEZc+OalsUHTUip/b+NUtBwhViBYVyj1KSjEFRCZXuE8vq8m7sDnOR+2FIk/u71G2/y2q7M8 euJBBfjWmUU4IFs2Bj74odqT/JwV9HedWX+Z7InZJZtLKLPnMos3ojky3YnbKEWMoNFpimp6 LoZdJUB7PbzFWEXPwy1MkHd2joOg2WZ2/Hl8FU+enJ+rQbXYPMTAz/MSLUOe8b/JnINBWRNq bRpcXsHdrF6V9afyJTCaitSGu4kvoGfWNjpla45Se1XicR7Yu8C+niTsb187Irqamza+XTEc CucoZp2RvYAdMd4jx0995ElGCc8tPT4VY1CEVziY/Bvd5FLxy8Y/HEG0Z63hbrTfxSp1jp08 WfLf93p01iXOZi8wH+EMfajQ415jHDCMK/RY9JJWJFKcu6w50l3EpHqJOqMol0r3ZkXRGy/2 gxyDbwizs/2xqsMf/zQYP2SWroKEMdaapaJ1HMyVKWxLD6/yyn9bAW5kMoolcTZrBILc/+5q MxYN8RVr2pmt+WIXnQxhcVh45n9zGl2UcA3m/MgIlGrOQNzAfiCQXWz0ejK3mp/Bl4ljve90 SVKnBd28HNDLU+Z92ISt/mWC6JCK3zGDl2GvAcDh4IYPveKNd2sRrCFqPwdcag2qMdVpNaoN 9Pw6MduH/ei9HZqJgYpNOKsI9YBq7rotbWG6Ioa7Vvr4wbPLBR/ZPsEB8i7sEtNJJR/eytao l0uZJ9KlPMAWG71DP/a8aUQMJV5leL6Ct5vuQ8GllAAU7xZHbUEedLUVCR1gasuSDLa6dJRN iljb5zYdod0DI1etK03N2ZPc2He4Jc+rcjq6VmM/EUro6hX4xWjNnDkpw7d8dWcjVDOO54Dw BK6RvVxHW3/QknE1l+Mdja+SKqxV6IWhFr5YJATSMlJWLRJyVpBLP5Ba5mcPdIk1wyc4Xy2n MOGBvX7qfuR4osNY/Lpul2yA/MzppY+KUGMs3UIBEKKY5IrTMZLfqV9lMJeUlgIXul3sQK9w KIv5rr93QGmbTDklfy+7vXi+MLL6x0aSgeIHjdx1FNSbbpG+rK1q5dFa/2iI/JrloxeK2sDh XMR0i23OZv4J5wTGhZ10KR3einN2dVzGiVmTsxYC1oLmulwOOFLPR8dTmQBmTPN00cCTuf4J UTE5oNsGN9SU2etuKHIBmsMOG/9N8qRA2PxGMMYXoJLKEBu6BqTBz59bF1PVoFG2cF4ORlTd rKcYMSPjpvvZCswbp5enGOTEcph4FYCkGc18YTdkh0QnKzT2GC+Ta//NX1ecIp9fgn0r0Qxo xNAqnOf8C66QBsQdM8lwOnqYLvVLOmAkr2/EhocVSylzxith8TlAFwoUHN1HzN6mhGi1MotU aQNfutSPKUPjSwS/sXUmRZB0YUcWa+ZyZw1mPgjvAThDOIEAWci+F2zreFbMaYyHiY8di6h3 MBWgJtkfYEQo9A4bQ8bmbVKvwpQ8vMtGlckMvUgZQU/+kcQ3R9f2ngHseEmnT/MOjiv651R6 m9XwT9hb5qu31OFQPSfrCZxKyK7enVI6wnGav13vvq2//i9WKJTE1Y0gj1kfroMOwo8OpcUD PaqBJFiozXJSwIX7kL6ElWMxs0sgQlcDK0AcU2b8u0BJWWQCFMz9cua9DF6t2Qjg4ZGrnbGX H9iC7lJnDnBmdc3mjrVFKdakx1ElJufAxrb6Dysf+OZva9wZvA80xCCL3Z6AoIKqC9QYeFg9 0lbgsTkJOZ7BOI25O8vf6AJHMvI/ZAwxtMf92fnL1zEnGPq0M1gQoFRG+e5pa440Du7NwktC b7p4Wg/Kcz42E8frPdF7RXp9QHnktnpC4q7/+4BYaSCPkfGFWQL5nPtzJZaujlHI+RV8ch92 Q6x1jEpxicawAdjAgoERojl2kjvgQeB9wwPzua8tqwwoAtIAcEQgfdLCiMWgJRAzUNFgd7H7 ruu+h5WpPCCFc6B5j/2Ahw8ZcN2uT+FZ2lCSSbmZ01J3PKeSzv8jWT9DvfkJXv7wUTOxfyB8 LPsaaQ7NqQQewSW3eWk23U+frd0Mohu11KXxWAB1qFxSCDgUOKn7Fe7zhI4HKCZpfhzmylsm TjMNia0xySn57rWdGiUFunHNGfCuKEVe38/iamFHjS2X7CNoVXwRa/cCtGC7ZWa82qYx7hKT fghbAMvQnDW2IXQPhwwxJ6pI9tanpswB0Dkf1wJwBsdhFWFRBxMGHvHl/gcgRNU5Lu4+Fiih sieGaucaG2SAV6lYINPA5ycc9HMQpJJ9byy6Ghk+jPRl9610u3YkWY7+IMaS1wZMdHdDeaO7 a1V2IDiTOgIrvtxT+p3lNeXS6GPP+krWU4K4f8T+sQITeo5vtQujDVtxgqTo7rulNNy5Yv5w g852LqjpnQgFmKhMopZbwuHpTpIuQ93Z3N6kP4aXaLNySx/wJC7tsOfzYBI6EDYJNvSEtYtf zNdECVpFVrVegA48uiMh1FoxDD/QYao9+2bAgcrjZUiN4pKLCh09QTK4xW8HtZLrM7qA9PB+ rGb5wqZyCgyvEMG7P/b0TsBO9tKgStTv6vV557GxGhno36c40auAaMMfGqQzFQ8y1qJObXek pz0Qjsk//hSGoEl0o4vxVZOMbGzUWF49sckkS3EdEjeOKlT8jWk0phzrAGM13KJci5uxdRD0 Y033xZY74PQ9XXLAQ1/f3EBmPFEmfeTNWMkSqDG7/ZDV3tA5rA7Ys2ay6uzk+Fpd7oWsvkph kaeK+0NHYtJuxrIevmT9P9hznLK2QXWE0fVtHlmzr7JPa6/a1QKxG0Pr0ydY1weIV1w0uYqf T/Sj4Mghkws26gCCaR4iaAIEcBvJ6vENCSaDFnL+sxw96IthDy6ttbY2jF34BaIwpAdlu/qY gdr/Ii6EvQZX5wHolPFuz0jwJrndmBTuH9ZVki3eEvS9qFJjI/OHnhW2BegaFcgQcMnx6x07 C466Ex8Cs+W1AGoDCYtVjQMAmkLHNzeGLr6Hszf5MIUKtFG+IN3CKL8hJKtGbZ5szQrRN3K4 gDqHApJ4TiE+Uhgpjrq8ik9huJxIRcQXOCZVL8WDfCkybDWy1sVcYgzqf/0WhJDXeeE/ncJi UXBTv4tS46DjOlt70zYfs34gPrrU2aOhy5QF01RnA4HYoEGB963A4GmE+nZv5ezu94M1k1FG KtLbW/OTJQ6qKVMZSadUyOFWtxolF7SfUzGHIpZuzLlBhyihJ/x9evMR8yOPk0/BFdFBRk2R 2lRDMvo3J7czmeYeZjUdb8Mxg5EEPKmi1TndzZ2eJ55hdwpR+klE/+FL0l9TfiBfb8/rYv2M +DYIIsGDUDafialHmVp06dUuxBw0kbjjzB0TWIdX8F6+6Z6c2dFF7Cfy2EhN/834hu5owc1q Lxg6GFoUPI2olPdTaK4iFDT7kXHYdjZ2b26Wy6piPeyVRQg9sJzzMGfCnNM8SyLi7MtfKsSQ bsP3NzrSx3+YMF8nXCpNrmk3MwSwC614H0euyDxckhQe3DY/OAGxhFz/uHKy3bbydY3I6WuX ix+CbovWufHrlXJv29qMT0as5BpXHQnXcEi87FCcFoYCv34J3TPrUQRkW/UKR/OQB9ghWyn2 3nN61B+lpOygnTqCvoBYs0ZF3GEFP/fpqNYRJZn7ThnIOOwTcbp2kawWMmcZ1jLxvpT1KnM+ I01c8v+Nsu6G3h/HhI5aOc1qhZgzNbo3BMPScpf0rMvwdAxoXd9E/Z4JX58v33m64fImSg4r +oByCxR1NjPFZdc9NeC29hTLsEd6pzC/ojsQQqpjw0ezKDuCBxgiPep9NdXoqrS2AsJQqeDI nim5yf4EDteUlS8NruqHhSCHfgi9Ofn5R84dWn1rGTZCZdxLKWa+BlSA0AHiJSHv04Ozj8H0 GrZvM7GEXATNYN/cMr9Hi0BQTZVDzjXnCjpRqjvuY6K1TbrxwbAjMfGJyKSJCZQOhgGZySbh iB9WbqH2O7cEmUQTgzFnSY5TEVuJZGxyX9TSHUOLCt+KgxATKudGtjWX80G0+058BrqRHpu4 AGqJ+nBifnxMihVcm8fZ6XbC8r/KWgbFt7laXBJLal0i847kYnFYwGGOdhsImfiCrbdaQ99c BLqjGxMyqHF9p+WJjVq2GleBLTZNADdAbi8ILc+1aNAWrCvgYC2CXEJIyw5xFzLByklP1IY5 VJl16vAQxKLzOzQET0xzS5Jic/d6ponxjcBiXLsTxNnS/DHXkPpDWzz+2Fy9p7sz7NScH9+3 qwQIeNe1tczOd/sAAAAAAAAAAAAA rt-4.4.2/t/data/smime/mails/2-signed-attachment.eml0000664000175000017500000001133013131430353021660 0ustar vagrantvagrantX-Mozilla-Status: 0801 X-Mozilla-Status2: 00000000 X-Mozilla-Keys: FCC: imap://sender@localhost/Sent X-Identity-Key: id1 X-Account-Key: account1 Message-ID: <4B709C48.4030908@example.com> Date: Tue, 09 Feb 2010 02:20:40 +0300 From: tester X-Mozilla-Draft-Info: internal/draft; vcard=0; receipt=0; DSN=0; uuencode=0 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; ru; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1 MIME-Version: 1.0 To: root@example.com Subject: Test Email ID:2 Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg=sha1; boundary="------------ms090206030705090204050109" This is a cryptographically signed message in MIME format. --------------ms090206030705090204050109 Content-Type: multipart/mixed; boundary="------------090009090000030005040209" This is a multi-part message in MIME format. --------------090009090000030005040209 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable This is a test email with a text attachment. ID:2 --------------090009090000030005040209 Content-Type: text/plain; x-mac-type="0"; x-mac-creator="0"; name="text-attachment" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="text-attachment" VGhpcyBpcyBhIHRlc3QgYXR0YWNobWVudC4gIFRoZSBtYWdpYyB3b3JkIGlzOiAgemFuemli YXIuCg== --------------090009090000030005040209-- --------------ms090206030705090204050109 Content-Type: application/pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIFXjCC AqswggIUoAMCAQICCQCKas1RvpSgFTANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJBVTET MBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRk MREwDwYDVQQDEwhDQSBPd25lcjEjMCEGCSqGSIb3DQEJARYUY2Eub3duZXJAZXhhbXBsZS5j b20wHhcNMTAwMjA4MTYyNTQyWhcNMTEwMjA4MTYyNTQyWjB5MQswCQYDVQQGEwJBVTETMBEG A1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMQ8w DQYDVQQDEwZzZW5kZXIxITAfBgkqhkiG9w0BCQEWEnNlbmRlckBleGFtcGxlLmNvbTBcMA0G CSqGSIb3DQEBAQUAA0sAMEgCQQCoOEGQHefNK8tiz63/cPZEXfNLfiF1tlzhfsInO4Xrcpta lAppHYPKxZGyPwRyYeS461vOtRB32Kffi8laFBVhAgMBAAGjezB5MAkGA1UdEwQCMAAwLAYJ YIZIAYb4QgENBB8WHU9wZW5TU0wgR2VuZXJhdGVkIENlcnRpZmljYXRlMB0GA1UdDgQWBBTz NObDUXiSm5NJjk4wvBiIJGk0CTAfBgNVHSMEGDAWgBSNGy29vSToGWKuTMkqWJAIHNEFKzAN BgkqhkiG9w0BAQUFAAOBgQBTkNtt0KoPyzKULqW80Q0nfIXYCGxS/rFNGJTCEP9Pj3Ergb+j qhE+bnJfSho4oD9fLInWr8Vs/1ljEy37Wi9Ysnc+UoMHAcZOzxmcmvMXrGPCAPMYuSem1RoU Edbw25ve5K3NKQH9OMEhnPqiC15tXRRUzgo8968P5n/HOQCzMzCCAqswggIUoAMCAQICCQCK as1RvpSgFTANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1T dGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMREwDwYDVQQDEwhDQSBP d25lcjEjMCEGCSqGSIb3DQEJARYUY2Eub3duZXJAZXhhbXBsZS5jb20wHhcNMTAwMjA4MTYy NTQyWhcNMTEwMjA4MTYyNTQyWjB5MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0 ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMQ8wDQYDVQQDEwZzZW5kZXIx ITAfBgkqhkiG9w0BCQEWEnNlbmRlckBleGFtcGxlLmNvbTBcMA0GCSqGSIb3DQEBAQUAA0sA MEgCQQCoOEGQHefNK8tiz63/cPZEXfNLfiF1tlzhfsInO4XrcptalAppHYPKxZGyPwRyYeS4 61vOtRB32Kffi8laFBVhAgMBAAGjezB5MAkGA1UdEwQCMAAwLAYJYIZIAYb4QgENBB8WHU9w ZW5TU0wgR2VuZXJhdGVkIENlcnRpZmljYXRlMB0GA1UdDgQWBBTzNObDUXiSm5NJjk4wvBiI JGk0CTAfBgNVHSMEGDAWgBSNGy29vSToGWKuTMkqWJAIHNEFKzANBgkqhkiG9w0BAQUFAAOB gQBTkNtt0KoPyzKULqW80Q0nfIXYCGxS/rFNGJTCEP9Pj3Ergb+jqhE+bnJfSho4oD9fLInW r8Vs/1ljEy37Wi9Ysnc+UoMHAcZOzxmcmvMXrGPCAPMYuSem1RoUEdbw25ve5K3NKQH9OMEh nPqiC15tXRRUzgo8968P5n/HOQCzMzGCAvAwggLsAgEBMIGKMH0xCzAJBgNVBAYTAkFVMRMw EQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQx ETAPBgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBleGFtcGxlLmNv bQIJAIpqzVG+lKAVMAkGBSsOAwIaBQCgggH8MBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEw HAYJKoZIhvcNAQkFMQ8XDTEwMDIwODIzMjA0MFowIwYJKoZIhvcNAQkEMRYEFJXLFU9+rB4Q gPV6QSV6J7blwox4MF8GCSqGSIb3DQEJDzFSMFAwCwYJYIZIAWUDBAECMAoGCCqGSIb3DQMH MA4GCCqGSIb3DQMCAgIAgDANBggqhkiG9w0DAgIBQDAHBgUrDgMCBzANBggqhkiG9w0DAgIB KDCBmwYJKwYBBAGCNxAEMYGNMIGKMH0xCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0 YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxETAPBgNVBAMTCENBIE93 bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBleGFtcGxlLmNvbQIJAIpqzVG+lKAVMIGd BgsqhkiG9w0BCRACCzGBjaCBijB9MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0 ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMREwDwYDVQQDEwhDQSBPd25l cjEjMCEGCSqGSIb3DQEJARYUY2Eub3duZXJAZXhhbXBsZS5jb20CCQCKas1RvpSgFTANBgkq hkiG9w0BAQEFAARAai2FuYDJS0n8idViQ6y3pocwSKJRg0hrSP1K3GiVyh4an5y1lWuotK/q tziPXZ2qeGSB/mmBf7mwfjPYgGZkoQAAAAAAAA== --------------ms090206030705090204050109-- rt-4.4.2/t/data/smime/mails/3-signed-binary.eml0000664000175000017500000001207513131430353021024 0ustar vagrantvagrantX-Mozilla-Status: 0801 X-Mozilla-Status2: 00000000 X-Mozilla-Keys: FCC: imap://sender@localhost/Sent X-Identity-Key: id1 X-Account-Key: account1 Message-ID: <4B709CC5.4010607@example.com> Date: Tue, 09 Feb 2010 02:22:45 +0300 From: tester X-Mozilla-Draft-Info: internal/draft; vcard=0; receipt=0; DSN=0; uuencode=0 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; ru; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1 MIME-Version: 1.0 To: root@example.com Subject: Test Email ID:3 Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg=sha1; boundary="------------ms020101060809030506070801" This is a cryptographically signed message in MIME format. --------------ms020101060809030506070801 Content-Type: multipart/mixed; boundary="------------060502090104050607070406" This is a multi-part message in MIME format. --------------060502090104050607070406 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable This is a test email with binary attachment and detached signature. ID:3 --------------060502090104050607070406 Content-Type: image/png; name="favicon.png" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="favicon.png" iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QAAAAAAAD5Q7t/AAAB BElEQVR42u1WWw6DMAwz0+5FbzbvZuZk2cfUritpea77wVIRIBQ7dhsBdIQkM8AMMJImyW6d BXweyJ7UAMnUvQFGwHp2bizIJfUTUHZO8j/k1pt8lntvchbdH8ndtqyS+Gj3fyVPAtZAkm3N ffCyi/chBIQQ3iqs3cQ0TZCERzbhngDocOS4z94wXTCmu2V45LuQW8hsSWpaP8v9sy+2IRZj ZTP5ububbp8Az4ly5W6QqJ33YwKSkIYbZVy5uNMFsOJGLaLTBMRC8Yy7bmR/OD8TUB00DvkW AcPSB7FIPoji0AGQBtU4jt+Fh1R6Dcc6B2Znv4HTHTiAJkfXv+ILFy5c8PACgtsiPj7qOgAA AAAASUVORK5CYII= --------------060502090104050607070406-- --------------ms020101060809030506070801 Content-Type: application/pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIFXjCC AqswggIUoAMCAQICCQCKas1RvpSgFTANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJBVTET MBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRk MREwDwYDVQQDEwhDQSBPd25lcjEjMCEGCSqGSIb3DQEJARYUY2Eub3duZXJAZXhhbXBsZS5j b20wHhcNMTAwMjA4MTYyNTQyWhcNMTEwMjA4MTYyNTQyWjB5MQswCQYDVQQGEwJBVTETMBEG A1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMQ8w DQYDVQQDEwZzZW5kZXIxITAfBgkqhkiG9w0BCQEWEnNlbmRlckBleGFtcGxlLmNvbTBcMA0G CSqGSIb3DQEBAQUAA0sAMEgCQQCoOEGQHefNK8tiz63/cPZEXfNLfiF1tlzhfsInO4Xrcpta lAppHYPKxZGyPwRyYeS461vOtRB32Kffi8laFBVhAgMBAAGjezB5MAkGA1UdEwQCMAAwLAYJ YIZIAYb4QgENBB8WHU9wZW5TU0wgR2VuZXJhdGVkIENlcnRpZmljYXRlMB0GA1UdDgQWBBTz NObDUXiSm5NJjk4wvBiIJGk0CTAfBgNVHSMEGDAWgBSNGy29vSToGWKuTMkqWJAIHNEFKzAN BgkqhkiG9w0BAQUFAAOBgQBTkNtt0KoPyzKULqW80Q0nfIXYCGxS/rFNGJTCEP9Pj3Ergb+j qhE+bnJfSho4oD9fLInWr8Vs/1ljEy37Wi9Ysnc+UoMHAcZOzxmcmvMXrGPCAPMYuSem1RoU Edbw25ve5K3NKQH9OMEhnPqiC15tXRRUzgo8968P5n/HOQCzMzCCAqswggIUoAMCAQICCQCK as1RvpSgFTANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1T dGF0ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMREwDwYDVQQDEwhDQSBP d25lcjEjMCEGCSqGSIb3DQEJARYUY2Eub3duZXJAZXhhbXBsZS5jb20wHhcNMTAwMjA4MTYy NTQyWhcNMTEwMjA4MTYyNTQyWjB5MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0 ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMQ8wDQYDVQQDEwZzZW5kZXIx ITAfBgkqhkiG9w0BCQEWEnNlbmRlckBleGFtcGxlLmNvbTBcMA0GCSqGSIb3DQEBAQUAA0sA MEgCQQCoOEGQHefNK8tiz63/cPZEXfNLfiF1tlzhfsInO4XrcptalAppHYPKxZGyPwRyYeS4 61vOtRB32Kffi8laFBVhAgMBAAGjezB5MAkGA1UdEwQCMAAwLAYJYIZIAYb4QgENBB8WHU9w ZW5TU0wgR2VuZXJhdGVkIENlcnRpZmljYXRlMB0GA1UdDgQWBBTzNObDUXiSm5NJjk4wvBiI JGk0CTAfBgNVHSMEGDAWgBSNGy29vSToGWKuTMkqWJAIHNEFKzANBgkqhkiG9w0BAQUFAAOB gQBTkNtt0KoPyzKULqW80Q0nfIXYCGxS/rFNGJTCEP9Pj3Ergb+jqhE+bnJfSho4oD9fLInW r8Vs/1ljEy37Wi9Ysnc+UoMHAcZOzxmcmvMXrGPCAPMYuSem1RoUEdbw25ve5K3NKQH9OMEh nPqiC15tXRRUzgo8968P5n/HOQCzMzGCAvAwggLsAgEBMIGKMH0xCzAJBgNVBAYTAkFVMRMw EQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQx ETAPBgNVBAMTCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBleGFtcGxlLmNv bQIJAIpqzVG+lKAVMAkGBSsOAwIaBQCgggH8MBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEw HAYJKoZIhvcNAQkFMQ8XDTEwMDIwODIzMjI0NVowIwYJKoZIhvcNAQkEMRYEFI7CVTBf4yX6 Twycl/Zaa56huywsMF8GCSqGSIb3DQEJDzFSMFAwCwYJYIZIAWUDBAECMAoGCCqGSIb3DQMH MA4GCCqGSIb3DQMCAgIAgDANBggqhkiG9w0DAgIBQDAHBgUrDgMCBzANBggqhkiG9w0DAgIB KDCBmwYJKwYBBAGCNxAEMYGNMIGKMH0xCzAJBgNVBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0 YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxETAPBgNVBAMTCENBIE93 bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBleGFtcGxlLmNvbQIJAIpqzVG+lKAVMIGd BgsqhkiG9w0BCRACCzGBjaCBijB9MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0 ZTEhMB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMREwDwYDVQQDEwhDQSBPd25l cjEjMCEGCSqGSIb3DQEJARYUY2Eub3duZXJAZXhhbXBsZS5jb20CCQCKas1RvpSgFTANBgkq hkiG9w0BAQEFAARAYC9J5HJ1uSWhqT+WUyoEH/mUn9ZLg/yB3KnRRs3tsqYeJt2SlQrD+zN9 53knAqbgZ9v3viuGCo0fj6RvFU4CHgAAAAAAAA== --------------ms020101060809030506070801-- rt-4.4.2/t/data/smime/keys/0000775000175000017500000000000013131430353015273 5ustar vagrantvagrantrt-4.4.2/t/data/smime/keys/root@example.com.pem0000664000175000017500000000546113131430353021220 0ustar vagrantvagrantCertificate: Data: Version: 1 (0x0) Serial Number: 9974010075738841110 (0x8a6acd51be94a016) Signature Algorithm: sha1WithRSAEncryption Issuer: C=AU, ST=Some-State, O=Internet Widgits Pty Ltd, CN=CA Owner/emailAddress=ca.owner@example.com Validity Not Before: Aug 28 21:41:07 2013 GMT Not After : Aug 28 21:41:07 2023 GMT Subject: C=AU, ST=Some-State, O=Internet Widgits Pty Ltd, CN=Enoch Root/emailAddress=root@example.com Subject Public Key Info: Public Key Algorithm: rsaEncryption Public-Key: (512 bit) Modulus: 00:b2:77:b9:bc:09:7d:14:8e:6b:6f:7e:33:a9:95: 21:5d:f3:3c:91:61:f1:bc:5c:1d:7e:e7:54:25:e8: cb:5f:b7:18:0e:23:26:00:42:09:bd:89:da:5c:06: cb:52:08:43:f6:4e:fe:dd:f8:0a:8a:95:35:8f:4a: 25:16:da:e6:bf Exponent: 65537 (0x10001) Signature Algorithm: sha1WithRSAEncryption 1a:cd:7e:0e:e0:6f:90:b7:22:0e:4d:79:4d:6a:9b:ac:a1:6a: ab:85:32:9c:86:9c:d2:10:96:f7:e0:00:2c:7d:3c:16:a4:ff: dd:9e:37:fb:a3:7a:43:ab:2f:ee:c4:ff:be:77:0f:40:f8:0e: 45:3e:48:46:bf:ec:e1:b0:46:8d:13:37:7a:a6:d1:7c:16:cb: 28:6b:37:88:4d:0a:12:6b:87:b9:7c:d9:c4:d7:57:93:b9:f6: 21:26:1b:32:88:1d:cd:84:0f:6a:f9:05:0a:76:01:de:5e:99: 86:10:fc:7d:ee:d5:70:b2:44:99:41:0a:d7:0e:e8:5b:c9:ca: 10:39 -----BEGIN CERTIFICATE----- MIICKzCCAZQCCQCKas1RvpSgFjANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJB VTETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0 cyBQdHkgTHRkMREwDwYDVQQDDAhDQSBPd25lcjEjMCEGCSqGSIb3DQEJARYUY2Eu b3duZXJAZXhhbXBsZS5jb20wHhcNMTMwODI4MjE0MTA3WhcNMjMwODI4MjE0MTA3 WjB7MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMY SW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMRMwEQYDVQQDEwpFbm9jaCBSb290MR8w HQYJKoZIhvcNAQkBFhByb290QGV4YW1wbGUuY29tMFwwDQYJKoZIhvcNAQEBBQAD SwAwSAJBALJ3ubwJfRSOa29+M6mVIV3zPJFh8bxcHX7nVCXoy1+3GA4jJgBCCb2J 2lwGy1IIQ/ZO/t34CoqVNY9KJRba5r8CAwEAATANBgkqhkiG9w0BAQUFAAOBgQAa zX4O4G+QtyIOTXlNapusoWqrhTKchpzSEJb34AAsfTwWpP/dnjf7o3pDqy/uxP++ dw9A+A5FPkhGv+zhsEaNEzd6ptF8FssoazeITQoSa4e5fNnE11eTufYhJhsyiB3N hA9q+QUKdgHeXpmGEPx97tVwskSZQQrXDuhbycoQOQ== -----END CERTIFICATE----- -----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: DES-EDE3-CBC,6356CE6012402B9B Lco5rf3/rHlShktH/o6NHF1mVH00k+pZ3bWodejMaHW1ofZXe9/yjzPM2jqqi+Dj xmzZ9R/MijO07vpxWHqdvhXeFf0TW67gW413M/bwiRd/rV0mUFz81nowFe9e15tm Itku1sePFvvL/UUxBGeYhplHAP6e76JqQcJTkBaG04KitH9GHtj1HFQR8P9/8h6d f0ZtU8wqnhkZvtzb72ZLwsw0YZ7R9YLIqCmOn1twW0CC77deACy+deJOC0N4CxW6 +jEGbJKMN5rOPsFiieDzZXAaTlGd6qXVWaxUPYH89yWedYoAZgbi6zxGGwNGbc/Q 2Y7g+qHi3L30uJvgJEGihIM+9iAKUJSazyGYl9Xl2FwTpNFOMJAYFyNKNv5FHwdm deoslrbEXVtqurOQYr955cyqs2NN+JYLsz5nNnfBpGo= -----END RSA PRIVATE KEY----- rt-4.4.2/t/data/smime/keys/otherCA/0000775000175000017500000000000013131430353016620 5ustar vagrantvagrantrt-4.4.2/t/data/smime/keys/otherCA/private/0000775000175000017500000000000013131430353020272 5ustar vagrantvagrantrt-4.4.2/t/data/smime/keys/otherCA/private/cakey.pem0000664000175000017500000000321313131430353022070 0ustar vagrantvagrant-----BEGIN RSA PRIVATE KEY----- MIIEowIBAAKCAQEA1rZTBFPomJHGaqsnw7oBU+HzVh6QyWF+czc2gEmptGqfOtgI b7qCZMWFkkFTcSXsGIUcnoBLMPcWtPgHPvebqi2f+AikCuaeCtIvBlkoU560d4or 8LXGyq9Bvu0XEg83Lum4Qzp2IP3ogZG4vwOSdh9A0+BE/TTH89T2d8lSWdo3latU pxGlGgP6zHEZcsspORVptfZbFiLY7aSztYPtadmRfy0Mr0/GSkpPHaPcHxD0d8hI 5ZRkOyk9nRYM0jA6RA2khwQEhOz9GYIId7V3ZPTOvGylwbcXfqJK3ihiQF49d1ya Cdx+prajNMpzpMJCdE7YUi2YTyhuiZN+NDvrNwIDAQABAoIBABa6G9V0cEVeAMuf rEjacnOHkjNGbvrx9+mIKZuwsGbpdktLPLFe45h5E+dkRMnQQsphpKLeX5ciQGQN cO7oVLDRvYIKoBqLSKVKlDGu1EbtoJqapIYJJ66imGn2PJ/rvmKX2Ko9EO3zEl5M p2qInUMlkb4bmhHXOWcE3sXVKINcFSjUxx/EkE/hS4z4gZX1ZFz8r6NmnnSk3G5p yS7JlTx9gIEqIp3LFmgPY8yhjdbQ+Qsde4FU1MSWWvmE4+LT4AicTAUGf61VEc+s gVHVHl9yuOGJYRaKuqHevCMxr8Bh27WpPT+NGdPxVRZJ/kSoDKPdrv9oU99Rtgwp RaanetECgYEA8Uuk/2pqOHQKd83jHynejJSK/B1XxAddn9PHWNw9gYFBPnrxL76/ lIuEAHyjcqYC4XV7dmEpWklWFInV1cBUAGimX4ykwArQcneq9nJXxR5KQ7ofozB+ eYZ1/QvhySJeg+ucsyi99HLFL845aGf4y48VkHD9MKnKMCNwYcytgBkCgYEA48v2 6K70spBv/j4QQ3v/5ovsmvv9xQei5mPZKawKOx6OxDZJ0he6ltGQ6bJoNFFtcC/u Lb/uX/0Ah/V5gurAVQAJU53o2t2Ai32NX80b2lUXi0H8nGvOxW8i95SUWx3dn1yz EBJMgfjH5XJV+kZVUWeOIIl+hPXew+u3XAdq788CgYAobDa4/zfKO05hoaEx4E7D GENsVvIUCfPaSZ00urinEGNAt1HeYMMxfGnhtv+evkbvREIpo79Mu8pq6GhlRbIM 23s7uJEFBwrCkl+Wp7Mid5+TVwPjz8TwUOFFQg9SJarVyMvYi7O+1tdH2fFuFzTr zQ2cxAD2fQs9I0K5b5OFSQKBgQDXM0QiE86VtsAmhslkh4t8aKnwzKiz73/keWWZ 6a6MpVSoZsUcllAu1PI65NFuw5JIzu8LB2wSAHj0+GF/3XgvlOY6uU5XHbSnksfx PlrWy1Z/t6oGuA5SFKkLDbGN1swdFj0PrMnca4Ok7nvtAW7uhY8Oi/YbdA+sNU42 wccznwKBgBswApZRfZKCUD/1Khdz+HmG/YEPbk4Kqgi7a8MKpT4No0hjRsoO1HV2 WggtvBjzagHkzZNkjJv+WvSU0DHk/JQnWIZFJd+72ZGR56neq8iXIQ28LnnGhcvk m0YNZzB8MCvD5ZztH6GU5ecPzO+4Tjkruau2an4etLSs60ogKy5u -----END RSA PRIVATE KEY----- rt-4.4.2/t/data/smime/keys/otherCA/serial0000664000175000017500000000002113131430353020013 0ustar vagrantvagrantFB573398E9349E9D rt-4.4.2/t/data/smime/keys/otherCA/cacert.pem0000664000175000017500000001060713131430353020570 0ustar vagrantvagrantCertificate: Data: Version: 3 (0x2) Serial Number: 16372135729078323798 (0xe33582b3ca31ca56) Signature Algorithm: sha1WithRSAEncryption Issuer: C=AU, ST=Some-State, O=Other Widgits, LLC, CN=CA Owner/emailAddress=ca.owner@example.net Validity Not Before: Aug 28 22:16:28 2013 GMT Not After : Aug 28 22:16:28 2023 GMT Subject: C=AU, ST=Some-State, O=Other Widgits, LLC, CN=CA Owner/emailAddress=ca.owner@example.net Subject Public Key Info: Public Key Algorithm: rsaEncryption Public-Key: (2048 bit) Modulus: 00:d6:b6:53:04:53:e8:98:91:c6:6a:ab:27:c3:ba: 01:53:e1:f3:56:1e:90:c9:61:7e:73:37:36:80:49: a9:b4:6a:9f:3a:d8:08:6f:ba:82:64:c5:85:92:41: 53:71:25:ec:18:85:1c:9e:80:4b:30:f7:16:b4:f8: 07:3e:f7:9b:aa:2d:9f:f8:08:a4:0a:e6:9e:0a:d2: 2f:06:59:28:53:9e:b4:77:8a:2b:f0:b5:c6:ca:af: 41:be:ed:17:12:0f:37:2e:e9:b8:43:3a:76:20:fd: e8:81:91:b8:bf:03:92:76:1f:40:d3:e0:44:fd:34: c7:f3:d4:f6:77:c9:52:59:da:37:95:ab:54:a7:11: a5:1a:03:fa:cc:71:19:72:cb:29:39:15:69:b5:f6: 5b:16:22:d8:ed:a4:b3:b5:83:ed:69:d9:91:7f:2d: 0c:af:4f:c6:4a:4a:4f:1d:a3:dc:1f:10:f4:77:c8: 48:e5:94:64:3b:29:3d:9d:16:0c:d2:30:3a:44:0d: a4:87:04:04:84:ec:fd:19:82:08:77:b5:77:64:f4: ce:bc:6c:a5:c1:b7:17:7e:a2:4a:de:28:62:40:5e: 3d:77:5c:9a:09:dc:7e:a6:b6:a3:34:ca:73:a4:c2: 42:74:4e:d8:52:2d:98:4f:28:6e:89:93:7e:34:3b: eb:37 Exponent: 65537 (0x10001) X509v3 extensions: X509v3 Subject Key Identifier: 7F:75:3B:B2:1E:CF:EF:D6:A7:D1:42:F8:1C:A9:13:63:CF:C9:0E:5A X509v3 Authority Key Identifier: keyid:7F:75:3B:B2:1E:CF:EF:D6:A7:D1:42:F8:1C:A9:13:63:CF:C9:0E:5A X509v3 Basic Constraints: CA:TRUE Signature Algorithm: sha1WithRSAEncryption 44:f7:e8:e6:af:a9:be:cf:28:51:dc:86:14:e2:4d:e4:14:9f: 09:4d:cb:e9:10:2c:ef:21:ec:b0:8c:14:57:59:45:52:b4:e3: db:f4:34:e3:39:b6:de:0c:eb:68:78:db:d0:21:d2:c1:51:18: ce:33:14:a4:4d:91:88:eb:cc:b0:4a:93:73:75:48:e8:56:ce: 29:c9:07:73:18:28:20:e1:2e:ba:0f:cc:4c:26:e7:45:d5:4c: 60:89:ef:1d:d7:7a:a5:80:62:bf:30:da:ac:bf:be:f8:54:f3: fc:8a:09:1c:89:2d:2a:12:20:99:66:54:a0:78:50:f0:46:44: 9d:ad:95:81:83:c0:47:38:b8:4a:81:3c:72:49:68:a2:a1:04: c7:d3:e9:e8:6f:65:ce:10:11:7f:0a:8b:96:ce:4e:1e:55:c7: 54:34:25:5e:ba:95:62:ad:45:43:b1:69:70:d4:c4:33:29:56: cd:45:08:7d:e5:1e:5c:77:55:7b:f7:34:ea:c5:d5:48:21:b1: 71:a5:02:16:50:78:64:e4:01:85:28:3e:e4:b8:f6:f8:02:3d: 01:23:ba:2c:54:c3:72:a5:2a:3d:41:fd:c1:15:60:37:0b:65: bf:23:bd:33:f6:d8:75:03:71:46:47:97:93:ae:bc:7f:76:1e: f3:5f:ba:0f -----BEGIN CERTIFICATE----- MIIDwTCCAqmgAwIBAgIJAOM1grPKMcpWMA0GCSqGSIb3DQEBBQUAMHcxCzAJBgNV BAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMRswGQYDVQQKDBJPdGhlciBXaWRn aXRzLCBMTEMxETAPBgNVBAMMCENBIE93bmVyMSMwIQYJKoZIhvcNAQkBFhRjYS5v d25lckBleGFtcGxlLm5ldDAeFw0xMzA4MjgyMjE2MjhaFw0yMzA4MjgyMjE2Mjha MHcxCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMRswGQYDVQQKDBJP dGhlciBXaWRnaXRzLCBMTEMxETAPBgNVBAMMCENBIE93bmVyMSMwIQYJKoZIhvcN AQkBFhRjYS5vd25lckBleGFtcGxlLm5ldDCCASIwDQYJKoZIhvcNAQEBBQADggEP ADCCAQoCggEBANa2UwRT6JiRxmqrJ8O6AVPh81YekMlhfnM3NoBJqbRqnzrYCG+6 gmTFhZJBU3El7BiFHJ6ASzD3FrT4Bz73m6otn/gIpArmngrSLwZZKFOetHeKK/C1 xsqvQb7tFxIPNy7puEM6diD96IGRuL8DknYfQNPgRP00x/PU9nfJUlnaN5WrVKcR pRoD+sxxGXLLKTkVabX2WxYi2O2ks7WD7WnZkX8tDK9PxkpKTx2j3B8Q9HfISOWU ZDspPZ0WDNIwOkQNpIcEBITs/RmCCHe1d2T0zrxspcG3F36iSt4oYkBePXdcmgnc fqa2ozTKc6TCQnRO2FItmE8obomTfjQ76zcCAwEAAaNQME4wHQYDVR0OBBYEFH91 O7Iez+/Wp9FC+BypE2PPyQ5aMB8GA1UdIwQYMBaAFH91O7Iez+/Wp9FC+BypE2PP yQ5aMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAET36Oavqb7PKFHc hhTiTeQUnwlNy+kQLO8h7LCMFFdZRVK049v0NOM5tt4M62h429Ah0sFRGM4zFKRN kYjrzLBKk3N1SOhWzinJB3MYKCDhLroPzEwm50XVTGCJ7x3XeqWAYr8w2qy/vvhU 8/yKCRyJLSoSIJlmVKB4UPBGRJ2tlYGDwEc4uEqBPHJJaKKhBMfT6ehvZc4QEX8K i5bOTh5Vx1Q0JV66lWKtRUOxaXDUxDMpVs1FCH3lHlx3VXv3NOrF1UghsXGlAhZQ eGTkAYUoPuS49vgCPQEjuixUw3KlKj1B/cEVYDcLZb8jvTP22HUDcUZHl5OuvH92 HvNfug8= -----END CERTIFICATE----- rt-4.4.2/t/data/smime/keys/sender@example.com.key0000664000175000017500000000106113131430353021514 0ustar vagrantvagrant-----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: DES-EDE3-CBC,605762440BC8261C MpUs66ILz2ePX4NKQ408LOAwvmpLLLnSwDX/Zmr/LG4SyZ7AnY6dY06XB6suev3m AS+xm/LM44lvUaDvPnl4gO8jnCw3D1yktcfeHc6XqcFx2U9AiUTawmoSTKwrT4P+ tnpSrrBJY3WghElbckK3vbZboX9Eld+dJjGPf9YqMrkixObp0ul1zW7Wt+aSEV5B ngP3VmQinB1EjSUhGF/gsFzhJsutsX4Z1SE/U4K1A1OPl3Oz4e+9VLGgUN4ao84y pcNYdXO/BCax4Uk8l0r0DcMd73P9WZs9+bcSgmkqduWCXkNXDbfi4RTOEn19Ehpu MyKc3JrskRhNRN1vfMSRFUsrmppxBdPfkrGrTCJNBuL7zdbQh9k9XMaNzfw5Tt2R oCWay5shBGEEKXRLIEqzO+Jx1BWVlWwxUwDLr73ItHA= -----END RSA PRIVATE KEY----- rt-4.4.2/t/data/smime/keys/sender@example.com.crt0000664000175000017500000000437213131430353021524 0ustar vagrantvagrantCertificate: Data: Version: 1 (0x0) Serial Number: 9974010075738841109 (0x8a6acd51be94a015) Signature Algorithm: sha1WithRSAEncryption Issuer: C=AU, ST=Some-State, O=Internet Widgits Pty Ltd, CN=CA Owner/emailAddress=ca.owner@example.com Validity Not Before: Aug 28 21:41:45 2013 GMT Not After : Aug 28 21:41:45 2023 GMT Subject: C=AU, ST=Some-State, O=Internet Widgits Pty Ltd, CN=sender/emailAddress=sender@example.com Subject Public Key Info: Public Key Algorithm: rsaEncryption Public-Key: (512 bit) Modulus: 00:a8:38:41:90:1d:e7:cd:2b:cb:62:cf:ad:ff:70: f6:44:5d:f3:4b:7e:21:75:b6:5c:e1:7e:c2:27:3b: 85:eb:72:9b:5a:94:0a:69:1d:83:ca:c5:91:b2:3f: 04:72:61:e4:b8:eb:5b:ce:b5:10:77:d8:a7:df:8b: c9:5a:14:15:61 Exponent: 65537 (0x10001) Signature Algorithm: sha1WithRSAEncryption 91:74:84:00:98:40:30:6b:a6:61:6b:7b:d7:c9:9d:6e:ef:bb: c8:ba:8b:83:15:62:3e:d1:c2:9d:1c:4e:ce:09:ce:d8:4f:4a: 49:a8:97:e8:3b:ed:82:2c:a3:20:45:72:f3:d9:23:66:93:d5: 54:14:ce:ce:cf:27:04:52:43:b4:a7:0b:ac:b8:45:a3:96:bf: 2f:43:59:61:02:7a:36:39:9c:01:ad:b7:63:6e:b5:b6:29:cb: 79:78:93:95:25:24:4a:83:bd:1d:d6:07:86:06:6a:fa:04:60: 6e:ba:41:11:0a:cb:b2:84:03:ac:30:55:94:ed:b2:2d:3c:c5: 99:6f -----BEGIN CERTIFICATE----- MIICKTCCAZICCQCKas1RvpSgFTANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJB VTETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0 cyBQdHkgTHRkMREwDwYDVQQDDAhDQSBPd25lcjEjMCEGCSqGSIb3DQEJARYUY2Eu b3duZXJAZXhhbXBsZS5jb20wHhcNMTMwODI4MjE0MTQ1WhcNMjMwODI4MjE0MTQ1 WjB5MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMY SW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMQ8wDQYDVQQDEwZzZW5kZXIxITAfBgkq hkiG9w0BCQEWEnNlbmRlckBleGFtcGxlLmNvbTBcMA0GCSqGSIb3DQEBAQUAA0sA MEgCQQCoOEGQHefNK8tiz63/cPZEXfNLfiF1tlzhfsInO4XrcptalAppHYPKxZGy PwRyYeS461vOtRB32Kffi8laFBVhAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEAkXSE AJhAMGumYWt718mdbu+7yLqLgxViPtHCnRxOzgnO2E9KSaiX6DvtgiyjIEVy89kj ZpPVVBTOzs8nBFJDtKcLrLhFo5a/L0NZYQJ6NjmcAa23Y261tinLeXiTlSUkSoO9 HdYHhgZq+gRgbrpBEQrLsoQDrDBVlO2yLTzFmW8= -----END CERTIFICATE----- rt-4.4.2/t/data/smime/keys/root@example.com.key0000664000175000017500000000106113131430353021217 0ustar vagrantvagrant-----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: DES-EDE3-CBC,6356CE6012402B9B Lco5rf3/rHlShktH/o6NHF1mVH00k+pZ3bWodejMaHW1ofZXe9/yjzPM2jqqi+Dj xmzZ9R/MijO07vpxWHqdvhXeFf0TW67gW413M/bwiRd/rV0mUFz81nowFe9e15tm Itku1sePFvvL/UUxBGeYhplHAP6e76JqQcJTkBaG04KitH9GHtj1HFQR8P9/8h6d f0ZtU8wqnhkZvtzb72ZLwsw0YZ7R9YLIqCmOn1twW0CC77deACy+deJOC0N4CxW6 +jEGbJKMN5rOPsFiieDzZXAaTlGd6qXVWaxUPYH89yWedYoAZgbi6zxGGwNGbc/Q 2Y7g+qHi3L30uJvgJEGihIM+9iAKUJSazyGYl9Xl2FwTpNFOMJAYFyNKNv5FHwdm deoslrbEXVtqurOQYr955cyqs2NN+JYLsz5nNnfBpGo= -----END RSA PRIVATE KEY----- rt-4.4.2/t/data/smime/keys/root@example.com.csr0000664000175000017500000000076113131430353021224 0ustar vagrantvagrant-----BEGIN CERTIFICATE REQUEST----- MIIBNTCB4AIBADB7MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEh MB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMRMwEQYDVQQDEwpFbm9j aCBSb290MR8wHQYJKoZIhvcNAQkBFhByb290QGV4YW1wbGUuY29tMFwwDQYJKoZI hvcNAQEBBQADSwAwSAJBALJ3ubwJfRSOa29+M6mVIV3zPJFh8bxcHX7nVCXoy1+3 GA4jJgBCCb2J2lwGy1IIQ/ZO/t34CoqVNY9KJRba5r8CAwEAAaAAMA0GCSqGSIb3 DQEBBQUAA0EABuN/lyQxMY6DNb9XZ7H+UZLJrNYei1HRvfIXig7EvkSDEnArSwfZ uzAeLo3mnIp7WiDk3M7e19LQFkERs2xvHw== -----END CERTIFICATE REQUEST----- rt-4.4.2/t/data/smime/keys/demoCA/0000775000175000017500000000000013131430353016423 5ustar vagrantvagrantrt-4.4.2/t/data/smime/keys/demoCA/private/0000775000175000017500000000000013131430353020075 5ustar vagrantvagrantrt-4.4.2/t/data/smime/keys/demoCA/private/cakey.pem0000664000175000017500000000170313131430353021675 0ustar vagrantvagrant-----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: DES-EDE3-CBC,8580147E208C5674 GTz9b2WFdP7gNjUWQnhWqq2o8bpYPbmPTLSyefUfI2UxL0bW96VBKyLpx/FO7Zxr itfItZA4A7hG+CJLa6pz5C4/9onzHeihhLLDov3pE1hjZwwPFs1IHM/q1KLU4tK4 yb/Xx1pw/3L1nlvWy4CQ/F1pmHG+akQNopy2Ru0XWLVw/gysmff8GW94Awx5MyZd 81tvuFu2U2BYdPbC/Zc+hrlTdqG2btgdll39gjRoNvLbA4tifLNy264yOS71lxF/ rOtavqzCULo/cTTumcZzbMnowjpdrPliuGg6rox3xc3zFjNfogu7okH53XtOZClQ n3/jjqI1LEUhOC0omUck4q3XbaCWGg6X/MUL8Fae+jDUs5NISt75xVs1uJdU2DuB xUwtgzJCbt5eovbczmoKm44nY3TqsITG+vuI7qim3wds8WPbM4lnz7fx0AbHYOIK ceCxDJirQRmblImJybPHJL6uuCo91Ahx7NmLcGw35QhhQf/EfKPJyh4Ih7+Cn2il EGW9RWS7hl9JSCOZs30YwPQz1bgCHIt0+31WSK4hbZ/IyPnDrMY4XNVCeWxX2xcF y2VjpoW305Glu2D522n0jUe/YJGHBaA7ijQkLpw2nL0qstlkq/2RoGZaDm0gUCUG dNbmeQrOF7dJtSKKjxy/DqMPw+ymn/YCXVaCPvIEuqHyFKnUNJ/ak4vnAeV7Jrhz 0OlyqNR4O/FKjf4pgsTHqodTQrxHA2d/n/Evnes/TevnIp6sa8HpkMcJc2DL9hKB aIWFQxGynI/S9juZXSKdTOMcUbSsicVELzzk+spHlZ9xKpuBvJvWxQ== -----END RSA PRIVATE KEY----- rt-4.4.2/t/data/smime/keys/demoCA/serial0000664000175000017500000000002113131430353017616 0ustar vagrantvagrant8A6ACD51BE94A017 rt-4.4.2/t/data/smime/keys/demoCA/cacert.pem0000664000175000017500000000607613131430353020400 0ustar vagrantvagrantCertificate: Data: Version: 3 (0x2) Serial Number: 11236924883769032812 (0x9bf193a560cd006c) Signature Algorithm: sha1WithRSAEncryption Issuer: C=AU, ST=Some-State, O=Internet Widgits Pty Ltd, CN=CA Owner/emailAddress=ca.owner@example.com Validity Not Before: Aug 28 21:19:44 2013 GMT Not After : Aug 26 21:19:44 2023 GMT Subject: C=AU, ST=Some-State, O=Internet Widgits Pty Ltd, CN=CA Owner/emailAddress=ca.owner@example.com Subject Public Key Info: Public Key Algorithm: rsaEncryption Public-Key: (1024 bit) Modulus: 00:be:cc:62:70:bf:42:ee:9d:f0:05:04:2b:05:46: 4e:c9:60:6a:b4:31:8c:a5:60:25:79:05:61:88:fe: 36:9e:63:24:bf:33:91:6f:6a:90:27:81:47:5e:2f: 49:54:19:c7:02:51:37:d9:ff:0b:9b:8a:cd:ed:7f: b7:6b:bc:0a:de:e5:c8:32:f7:a4:16:51:d1:3f:a4: 02:96:98:09:83:e2:ed:81:19:bb:e3:d4:2b:f1:87: 97:03:08:05:e6:f7:65:c6:90:48:9d:75:07:31:93: 04:6d:09:b7:0f:df:fa:f2:b3:ff:e1:44:f4:18:03: 4f:59:b6:ba:d2:36:8b:0e:b3 Exponent: 65537 (0x10001) X509v3 extensions: X509v3 Subject Key Identifier: 8D:1B:2D:BD:BD:24:E8:19:62:AE:4C:C9:2A:58:90:08:1C:D1:05:2B X509v3 Authority Key Identifier: keyid:8D:1B:2D:BD:BD:24:E8:19:62:AE:4C:C9:2A:58:90:08:1C:D1:05:2B X509v3 Basic Constraints: CA:TRUE Signature Algorithm: sha1WithRSAEncryption 7b:f5:8f:d2:b9:44:34:fe:91:ab:1d:52:d3:10:2d:23:75:05: 8e:17:70:be:52:11:b0:8e:ee:f6:33:50:7c:c7:82:f3:c4:d2: 98:90:b3:a6:ad:00:33:36:dc:95:f4:4e:45:d2:09:e9:88:ae: 88:a2:72:e4:75:95:7a:78:31:16:34:a3:50:e0:c9:25:7f:65: 51:d4:59:20:23:d5:3e:35:79:cf:ed:3d:3c:8c:d1:79:b0:99: d3:6b:99:ed:32:c5:29:7a:82:8a:98:cb:c6:95:c7:52:59:7c: f8:1d:fd:18:b8:ef:4d:1f:9d:5d:09:b0:eb:68:50:ed:c0:21: 61:eb -----BEGIN CERTIFICATE----- MIICyDCCAjGgAwIBAgIJAJvxk6VgzQBsMA0GCSqGSIb3DQEBBQUAMH0xCzAJBgNV BAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBX aWRnaXRzIFB0eSBMdGQxETAPBgNVBAMMCENBIE93bmVyMSMwIQYJKoZIhvcNAQkB FhRjYS5vd25lckBleGFtcGxlLmNvbTAeFw0xMzA4MjgyMTE5NDRaFw0yMzA4MjYy MTE5NDRaMH0xCzAJBgNVBAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYD VQQKDBhJbnRlcm5ldCBXaWRnaXRzIFB0eSBMdGQxETAPBgNVBAMMCENBIE93bmVy MSMwIQYJKoZIhvcNAQkBFhRjYS5vd25lckBleGFtcGxlLmNvbTCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEAvsxicL9C7p3wBQQrBUZOyWBqtDGMpWAleQVhiP42 nmMkvzORb2qQJ4FHXi9JVBnHAlE32f8Lm4rN7X+3a7wK3uXIMvekFlHRP6QClpgJ g+LtgRm749Qr8YeXAwgF5vdlxpBInXUHMZMEbQm3D9/68rP/4UT0GANPWba60jaL DrMCAwEAAaNQME4wHQYDVR0OBBYEFI0bLb29JOgZYq5MySpYkAgc0QUrMB8GA1Ud IwQYMBaAFI0bLb29JOgZYq5MySpYkAgc0QUrMAwGA1UdEwQFMAMBAf8wDQYJKoZI hvcNAQEFBQADgYEAe/WP0rlENP6Rqx1S0xAtI3UFjhdwvlIRsI7u9jNQfMeC88TS mJCzpq0AMzbclfRORdIJ6YiuiKJy5HWVengxFjSjUODJJX9lUdRZICPVPjV5z+09 PIzRebCZ02uZ7TLFKXqCipjLxpXHUll8+B39GLjvTR+dXQmw62hQ7cAhYes= -----END CERTIFICATE----- rt-4.4.2/t/data/smime/keys/sender@example.com.pem0000664000175000017500000000545313131430353021516 0ustar vagrantvagrantCertificate: Data: Version: 1 (0x0) Serial Number: 9974010075738841109 (0x8a6acd51be94a015) Signature Algorithm: sha1WithRSAEncryption Issuer: C=AU, ST=Some-State, O=Internet Widgits Pty Ltd, CN=CA Owner/emailAddress=ca.owner@example.com Validity Not Before: Aug 28 21:41:45 2013 GMT Not After : Aug 28 21:41:45 2023 GMT Subject: C=AU, ST=Some-State, O=Internet Widgits Pty Ltd, CN=sender/emailAddress=sender@example.com Subject Public Key Info: Public Key Algorithm: rsaEncryption Public-Key: (512 bit) Modulus: 00:a8:38:41:90:1d:e7:cd:2b:cb:62:cf:ad:ff:70: f6:44:5d:f3:4b:7e:21:75:b6:5c:e1:7e:c2:27:3b: 85:eb:72:9b:5a:94:0a:69:1d:83:ca:c5:91:b2:3f: 04:72:61:e4:b8:eb:5b:ce:b5:10:77:d8:a7:df:8b: c9:5a:14:15:61 Exponent: 65537 (0x10001) Signature Algorithm: sha1WithRSAEncryption 91:74:84:00:98:40:30:6b:a6:61:6b:7b:d7:c9:9d:6e:ef:bb: c8:ba:8b:83:15:62:3e:d1:c2:9d:1c:4e:ce:09:ce:d8:4f:4a: 49:a8:97:e8:3b:ed:82:2c:a3:20:45:72:f3:d9:23:66:93:d5: 54:14:ce:ce:cf:27:04:52:43:b4:a7:0b:ac:b8:45:a3:96:bf: 2f:43:59:61:02:7a:36:39:9c:01:ad:b7:63:6e:b5:b6:29:cb: 79:78:93:95:25:24:4a:83:bd:1d:d6:07:86:06:6a:fa:04:60: 6e:ba:41:11:0a:cb:b2:84:03:ac:30:55:94:ed:b2:2d:3c:c5: 99:6f -----BEGIN CERTIFICATE----- MIICKTCCAZICCQCKas1RvpSgFTANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJB VTETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0 cyBQdHkgTHRkMREwDwYDVQQDDAhDQSBPd25lcjEjMCEGCSqGSIb3DQEJARYUY2Eu b3duZXJAZXhhbXBsZS5jb20wHhcNMTMwODI4MjE0MTQ1WhcNMjMwODI4MjE0MTQ1 WjB5MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMY SW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMQ8wDQYDVQQDEwZzZW5kZXIxITAfBgkq hkiG9w0BCQEWEnNlbmRlckBleGFtcGxlLmNvbTBcMA0GCSqGSIb3DQEBAQUAA0sA MEgCQQCoOEGQHefNK8tiz63/cPZEXfNLfiF1tlzhfsInO4XrcptalAppHYPKxZGy PwRyYeS461vOtRB32Kffi8laFBVhAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEAkXSE AJhAMGumYWt718mdbu+7yLqLgxViPtHCnRxOzgnO2E9KSaiX6DvtgiyjIEVy89kj ZpPVVBTOzs8nBFJDtKcLrLhFo5a/L0NZYQJ6NjmcAa23Y261tinLeXiTlSUkSoO9 HdYHhgZq+gRgbrpBEQrLsoQDrDBVlO2yLTzFmW8= -----END CERTIFICATE----- -----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTED DEK-Info: DES-EDE3-CBC,605762440BC8261C MpUs66ILz2ePX4NKQ408LOAwvmpLLLnSwDX/Zmr/LG4SyZ7AnY6dY06XB6suev3m AS+xm/LM44lvUaDvPnl4gO8jnCw3D1yktcfeHc6XqcFx2U9AiUTawmoSTKwrT4P+ tnpSrrBJY3WghElbckK3vbZboX9Eld+dJjGPf9YqMrkixObp0ul1zW7Wt+aSEV5B ngP3VmQinB1EjSUhGF/gsFzhJsutsX4Z1SE/U4K1A1OPl3Oz4e+9VLGgUN4ao84y pcNYdXO/BCax4Uk8l0r0DcMd73P9WZs9+bcSgmkqduWCXkNXDbfi4RTOEn19Ehpu MyKc3JrskRhNRN1vfMSRFUsrmppxBdPfkrGrTCJNBuL7zdbQh9k9XMaNzfw5Tt2R oCWay5shBGEEKXRLIEqzO+Jx1BWVlWwxUwDLr73ItHA= -----END RSA PRIVATE KEY----- rt-4.4.2/t/data/smime/keys/root@example.com.crt0000664000175000017500000000440013131430353021217 0ustar vagrantvagrantCertificate: Data: Version: 1 (0x0) Serial Number: 9974010075738841110 (0x8a6acd51be94a016) Signature Algorithm: sha1WithRSAEncryption Issuer: C=AU, ST=Some-State, O=Internet Widgits Pty Ltd, CN=CA Owner/emailAddress=ca.owner@example.com Validity Not Before: Aug 28 21:41:07 2013 GMT Not After : Aug 28 21:41:07 2023 GMT Subject: C=AU, ST=Some-State, O=Internet Widgits Pty Ltd, CN=Enoch Root/emailAddress=root@example.com Subject Public Key Info: Public Key Algorithm: rsaEncryption Public-Key: (512 bit) Modulus: 00:b2:77:b9:bc:09:7d:14:8e:6b:6f:7e:33:a9:95: 21:5d:f3:3c:91:61:f1:bc:5c:1d:7e:e7:54:25:e8: cb:5f:b7:18:0e:23:26:00:42:09:bd:89:da:5c:06: cb:52:08:43:f6:4e:fe:dd:f8:0a:8a:95:35:8f:4a: 25:16:da:e6:bf Exponent: 65537 (0x10001) Signature Algorithm: sha1WithRSAEncryption 1a:cd:7e:0e:e0:6f:90:b7:22:0e:4d:79:4d:6a:9b:ac:a1:6a: ab:85:32:9c:86:9c:d2:10:96:f7:e0:00:2c:7d:3c:16:a4:ff: dd:9e:37:fb:a3:7a:43:ab:2f:ee:c4:ff:be:77:0f:40:f8:0e: 45:3e:48:46:bf:ec:e1:b0:46:8d:13:37:7a:a6:d1:7c:16:cb: 28:6b:37:88:4d:0a:12:6b:87:b9:7c:d9:c4:d7:57:93:b9:f6: 21:26:1b:32:88:1d:cd:84:0f:6a:f9:05:0a:76:01:de:5e:99: 86:10:fc:7d:ee:d5:70:b2:44:99:41:0a:d7:0e:e8:5b:c9:ca: 10:39 -----BEGIN CERTIFICATE----- MIICKzCCAZQCCQCKas1RvpSgFjANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJB VTETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50ZXJuZXQgV2lkZ2l0 cyBQdHkgTHRkMREwDwYDVQQDDAhDQSBPd25lcjEjMCEGCSqGSIb3DQEJARYUY2Eu b3duZXJAZXhhbXBsZS5jb20wHhcNMTMwODI4MjE0MTA3WhcNMjMwODI4MjE0MTA3 WjB7MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMY SW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMRMwEQYDVQQDEwpFbm9jaCBSb290MR8w HQYJKoZIhvcNAQkBFhByb290QGV4YW1wbGUuY29tMFwwDQYJKoZIhvcNAQEBBQAD SwAwSAJBALJ3ubwJfRSOa29+M6mVIV3zPJFh8bxcHX7nVCXoy1+3GA4jJgBCCb2J 2lwGy1IIQ/ZO/t34CoqVNY9KJRba5r8CAwEAATANBgkqhkiG9w0BAQUFAAOBgQAa zX4O4G+QtyIOTXlNapusoWqrhTKchpzSEJb34AAsfTwWpP/dnjf7o3pDqy/uxP++ dw9A+A5FPkhGv+zhsEaNEzd6ptF8FssoazeITQoSa4e5fNnE11eTufYhJhsyiB3N hA9q+QUKdgHeXpmGEPx97tVwskSZQQrXDuhbycoQOQ== -----END CERTIFICATE----- rt-4.4.2/t/data/smime/keys/sender@example.com.csr0000664000175000017500000000075513131430353021524 0ustar vagrantvagrant-----BEGIN CERTIFICATE REQUEST----- MIIBMzCB3gIBADB5MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEh MB8GA1UEChMYSW50ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMQ8wDQYDVQQDEwZzZW5k ZXIxITAfBgkqhkiG9w0BCQEWEnNlbmRlckBleGFtcGxlLmNvbTBcMA0GCSqGSIb3 DQEBAQUAA0sAMEgCQQCoOEGQHefNK8tiz63/cPZEXfNLfiF1tlzhfsInO4Xrcpta lAppHYPKxZGyPwRyYeS461vOtRB32Kffi8laFBVhAgMBAAGgADANBgkqhkiG9w0B AQUFAANBAFoi5bepEWsl0cQiO7k314NAuHenXaVrsWt3kPWfwgWn0aLp3aH86aZ5 g4MYNjJzTqnkU1apyY8MV+BUZaXfnII= -----END CERTIFICATE REQUEST----- rt-4.4.2/t/data/gnupg/0000775000175000017500000000000013131430353014326 5ustar vagrantvagrantrt-4.4.2/t/data/gnupg/keys/0000775000175000017500000000000013131430353015301 5ustar vagrantvagrantrt-4.4.2/t/data/gnupg/keys/rt-test-at-example.com.secret.key0000664000175000017500000000352413131430353023515 0ustar vagrantvagrant-----BEGIN PGP PRIVATE KEY BLOCK----- Version: GnuPG v1.4.7 (Darwin) lQHhBEa4o04RBADc+2sFcnuTTaqcKRTmSBQKdXvumT4GoATk194UYMghwprrNb1/ flXQRk9zLkc0YENFHLMoRUmXKEF+WFxzXrZgHJS096tGn+Ud2FXQbSL47Vl3EHng c+jSvvVaZRcEySaCyQrsDR7gWlQtCbxbe96Y2x9jX3Zbih9UYnRvWBeczwCg4tgz EOmScnWiwUdyZNQsvXDqvKUD/REf0WjWDaykQvXYZ0aTpc/WMBsDS16nl8GNz5eD lCB/JJHKh5QDu89p0557AbVDSi5LCOYAM+v4oi8k5zgiO/7HJptirDkZ27Ichyes kzhu3Xr9rPLawie/o4FCfncNLbOAEE4EjEGDGRlyowAaXlW7DWT+TLbxY0qL0uHy AQPGA/9AmYHBJQqHTfQ4/QXdCnp+UwYs+rhPh7YHymBLn8Saa14heE9SZcYfSerL FAE7KKeBx96+RplgsiaqfWrliUwrV3KnnJICMyqWmn2OyMYiV9iFWqAHFTCsitS2 q1COv5/Lg1a+XkAwEfoIuLrAXT8buIxXs/BhLc1PD1t9My8srf4DAwKhnHYPLWS2 9GBnewzagq2czolDuKHrmtb1Eiv4mb4S8X6HhSn4gQSUJ59mVsn7L1TwK7yWJgK0 +Ix66LQdUlQgVGVzdCA8cnQtdGVzdEBleGFtcGxlLmNvbT6IYAQTEQIAIAUCRrij TgIbAwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJENMoA12EiB8bMZoAoIxLNWQ9 d9+W4ImPMpUmjLl9ttxWAJ9ELlhkfdhPukRe508p5fZqKUfl/p0CYwRGuKNhEAgA jSKFedFcU9RjLmSEGo7E4qMQWOtiNooW4NtRsKC2cbJXnGJUOT+GBzGCxjBZt89T 6MVsOy7DoAzs+xWKA5CfgFEX5xZWM1c6EA4f7LhC1hawtGQkMQIyHzEy9b7NPEcM lkdOebjjhZ4Ob8svGilyQ9jN6zpR2c36i0sLaZ5gORIHJ9DOX1k5lUzEhkogEYoY of48VQwHt/5xUURli2kLDaqi+X2+6j/vNp96EQ3sbFifmNejWNaDyyrlyGUvx9g/ Eh5wMRospmFA/oE1kSwstKiBxAPs11OJGBRre2Q6QVW2ULAhxZOFgkCq0DNb8TMn hJOY4jhOP57rrvpMyu9q4wADBQgAhRl4aiej9lX+YpZUcyhBkqIB/cDwYemmtIWz o6mVWuDuVcyLl//sJsBipwJF6O5nr0ZC5CT+GRgjBmh9rQjv/UtWBldJ7og/HfuS MG6xIfljO2FxKjabDhGaiKzgTk75LnPqfx0FeRNbN78dPy4hV/iIvHPANuyUlmbB sx9hSGqMc78FIDwwfZtBim5XUJbpHsahu4/8agQLBu+PFK+5CIVWskrYVL1R66nP HCzsfYcOv+1CYCsuFldGtFNPCegGxE7T7CFs7m7aYeSdgycNaR9wuBZeV17JnOJ2 z/mtsR+8p4vZZzSMcTkjf1j7UCgiKS/ioTD03pU/OZEy9+l1Sf4DAwKhnHYPLWS2 9GBUcgG+SE35K+ynz0mpxRRx4kbgN9Ap6oxzhDYVGRbfDpVxE8hgJuc7zJ27pmPr VwmdzDROCDy1W9bwjfrV8yhln81npumXxndSiEkEGBECAAkFAka4o2ECGwwACgkQ 0ygDXYSIHxs69QCgxvFIuPg6xpgRDUXE5+xc9GZI9VYAn3U+8U7AuSGybzySM8Ah zyjKaN3s =cv/+ -----END PGP PRIVATE KEY BLOCK----- rt-4.4.2/t/data/gnupg/keys/rt-recipient-at-example.com.secret.key0000664000175000017500000000354313131430353024521 0ustar vagrantvagrant-----BEGIN PGP PRIVATE KEY BLOCK----- Version: GnuPG v1.4.7 (GNU/Linux) lQHhBEa8u6QRBADCqPh8w3cO51hPVb1Sttqq5UhCeB5t2dAL8aVEDkpPfV7LItDi pN4VqHo2zbGE8q2bCoqW06Ogn0R4xsxEeD9Jq9/k3dHReFL2gbA5F/el1PKXVxG8 62BnjLkDub8yCdWsg0QDJ6ah7LC7vukTMlJj+3HhoXWEqBrTBKjtFkNIrwCg/LtU CEyj+z/cl6NQGZUw2A6+5DUD/2DfcLeSir7xrlcidqO4BxtxdWkEBDAnmARKrqaw zSATIK11+HO3Gteovfa08J1XXU2+IFqi2Ssyaqss1kteJE8DmOAcllSXqmCfOmPm xoW4gXOQfEv6tkTvF9JST1OZRj5w+ecyxn0282XrzKcxNeLjc+JcLfzPmmuhw4lA s/nJA/4tBqT0V7QiwaznBo8Bh7N3sz75x0vgSdZLUA0e2VzHKh9mAfK/FeVS1mcJ 04iHWvxOGMqEfXnpxUrogME7f/TWNBVfT4M2JW0sHLvaiJhTtIhn+Q67awQ1f0qG mGQLIo9OAWZnIfBZ8e2tBwJ3ajiSZ2LIPWFv4Q1hKxOclODpf/4DAwIc+jyN96r4 cWCKJH3rJKMiam7fzkjUhawkIXBXWlau1oZeQKvQCxCpj02aFks9bSTK9wseazjU JRF6D7QmUlQgVXNlciBCb2IgPHJ0LXJlY2lwaWVudEBleGFtcGxlLmNvbT6IYAQT EQIAIAUCRry7pAIbAwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEM4wxB7CJ0om PPUAoL3A7jiEZX6xSyXEduAtnmMplqHrAKDB8mrNols8/ni0VOv0QletwEwbVp0C YwRGvLuvEAgA/qDyDeDPFrDhh757tpgvJp2CmIx8fyv+i9nLEBVCZjtkLqgrcvtN h8l+xu3y8vjGB6+ToPvGZE3FRxyLWNPGIlq1pQSREC9faEDWDrN7yA8miaikLIlf MnGwwzb5bEXWsmXzctTvDgxTCufDj8T66TKv+cCqc9T956XY6q49Z/p6yZDiY7LZ 0N6GkHSoT8o6ZCOvl87nIjwKR8AXDWBxL5+SeenNkZ8e30pSVDJTOe4u6W/MKK3R BD0FKYr+DOMh5BQtE7yTQEhzmDTPfGe9m52FV8FbSLpimMnIFM2hGRf6jynoR10s 0tk2DVADXDycwNYarRYGAxV6XafLCPDv4wADBQgAtpM7zhVch/NsL56aIG0QZmSa KCdk6UPsJua91eLEHJFozOzethsAWED5KHD5ThsYBKPGq+mFz7QQtw8/DBmcajtB xMv2fvVOE7SrWfeHyMVlRgidJc3O6HlPPnA/v8lQhsYTxpUddYqB4lC0ktpncxCz X/VNr62YkmrpJx2Yvyd0L/lK5fiko65gQC1v/XQ/QI9kpGbOFXFnEgQXmFcDTX4k zTgpJ3cOBrM9GAO/hcwH82eC0j8fYw8mLYR8yQG0jsXJKCvHxTgkOh0nSkLaeLoq 1maLp+NbJKCqgpsmeV4nQmEJE4Ye7I/L077BtJLv1tk0G0Jh3F2WeSzEvB7cS/4D AwIc+jyN96r4cWBgxgN9v8Z6ySQrlQfJWkB3LDcYVugGb3Ht6vIMaFMnW9KFwOgd /nuf5uqyuy2/jQ0SZT1fUC3skhxT1BXKewfmmlnzoLJu3rz6iEkEGBECAAkFAka8 u68CGwwACgkQzjDEHsInSib8VwCeLdgy5axSbYZ8Ez42Kcj8Ku2Q4ZUAnjJ92jFc fC7XWcM/6AX5IyU0jtEW =DS2U -----END PGP PRIVATE KEY BLOCK----- rt-4.4.2/t/data/gnupg/keys/general-at-example.com.2.public.key0000664000175000017500000000321313131430353023654 0ustar vagrantvagrant-----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.7 (Darwin) mQGiBEbgjJQRBACx8uMHcl9JlKCUU5yh0rBw636MXhKr7cH/+zBTeUVQyfs+J4fo HlI3fwJzZOxwXKTwmXsHSKxomeBJxPpFCnwHvn7xTYh6Wtis1Rm2Vr4lsw4gxrFj bpk1ISkHo4tO3dPTNx6Jhz+gYzoVUyfclz/byUmEbe2HJkBCQNmC9/lcuwCg477S siOdObqTKtQhDqXzFfOHKmsEAKVB8RImtLAO/HPY5+rxiVkfKjsmZovi0PfioGDI 3o1jcSwq/RwWPZTNB0vnlEx1aD3zedUn1T7ZPnKoRttIv0xYlg9wYhX/xvOA9mKy G5aXSypiJiNwJSQfcChlyVHX3R88pURIzPiwWv2OBOvRagE8Bmgz0DFa0/AQfmvI vpUmA/4qZVzOJ5hC6fVP+ESKEC6fStvHAEZM3sQK5AnZsuUls3+tgfkD9T6ei5YF MXDLMGz3thue1M0QEu3IL7cLoTMalWQpjpyDuqXS8UAsd5cG2eP2iA6Uf2VoKQ11 w6Q1FyMwTC9B0F8JijwdLF77ERSCtIG+TOA1EtH9HfTV5+BfHbQfZ2VuZXJhbCAy IDxnZW5lcmFsQGV4YW1wbGUuY29tPohgBBMRAgAgBQJG4IyUAhsDBgsJCAcDAgQV AggDBBYCAwECHgECF4AACgkQ32UfoGMsT1De7QCgu2Gws7EHllWWhJC9mHgDHC45 Z8YAn2mBLO7ZBi5lptavTfQlR05RvTSKuQINBEbgjJQQCAD55mgtF494BvjhumUE Zu15W9QL99772EntAHnGd6tx6r2GlqWmIHrze/jguIdyXqVGEVWAosDAu08vF1EC DDJoCz/tkyjhXOT4MBKWL0Gpetk61Pi2Qv0GsxQSYG+FwKjTk+pE4qxnT932n3U8 7KxUtgIxzH7Y/oFxgb0LGQxgokSPuq/E+jtglYxey9fzeFWjr2T77g5oWu9PXPCF jg+km3f9rQxxRgDuM4bPr5tWjhLTpNB0xKZMbx6YUVUP/DyK/DhqaMZ5Qt1vZ0QI /COSPy9Kq76wR1WW6E0SDFU49xAbtMm2MZgDh5uj/lFp95yDGmBSZzwxY0qy/BbN c4HDAAMFCADbiPty42xieGtEtQdvjqejEsE15Zhna+zf/4Fch/Ee9laOmtW9Nekg 2ltUMHw+Nc5VseWIKtFqlnOZtcutO6yYgVH+GJ287gnXw3gK8zEcbQ2RUxYEdiuw ORuMqowmVlOCFxgPW6Vv5Em8E3kb1dEMx+Ec/SVmeXpOcGV5kS9PS9veO3ruoXqx 6l3Gq3BU3xvDhJ3FRRlsUYtGOBuJl0/oXk/1TUjAuQinsxM+Nh4VljeI3eiT2Ygb ypdXjH6zmTDy7PlEy5RDYdFOsKW1sZXKWoY6y2TU4IO9JBWehS8Lhn3pMTv65FME 6Ow9W5+hLTBYo9E/kUZXWvPlJgGA1439iEkEGBECAAkFAkbgjJQCGwwACgkQ32Uf oGMsT1BE+gCeOni/yGg3+IIPpIoTCVsf8jUcJXgAn3nsf/TTUli9XyftXRiJbua9 CM0m =bGLz -----END PGP PUBLIC KEY BLOCK----- rt-4.4.2/t/data/gnupg/keys/general-at-example.com.secret.key0000664000175000017500000000335613131430353023533 0ustar vagrantvagrant-----BEGIN PGP PRIVATE KEY BLOCK----- Version: GnuPG v1.4.7 (Darwin) lQG7BEYrdhQRBACpTwAjSJchxV9rgWJj/4GUe92xZ2wWHVrkv7cELO5GD1ie8wtA nh57oXfcFhuSmtLTyT/C1Mbzo/tz4Sigf33bZlEMXusp0bLsSz1S/5mslBGRdApJ Dz5jETEcakpzWsHA5sHfv8HLn+o8WUDtlGZf+Edi0DqUKSiLRkjWMAdcJwCg7cN1 IIhhFFAf9Lr3Ny7ngJDwn/sEAJoZVUmhBHo9TipR9lZY1si5U0hA8Yn4XghLp4z9 0rm8dAgLSZwFI2/zoU5u9qjW0UAo8Sp2SO9F03wQpfUGnpQtea/HVNuwiZVU42bB E5gn5EIYrHYT8X7cd+ZpWVGYu2117uoJtRHwnfuh857ocs7M7xeo7IQUZArqeHOG i3hABACV9mqnZoPyCOtaBogdXtDlEbqDvYclONJTsSKAfPsNRjJi8lzvJL9ZhtS8 YKIUvxFu+XX0UVXWoNnzte8Ip/0hwupJu9jIcBJpI9dVEK3H2tWr+NElzML/uch+ VO7UUmk2H/hF8+a3wXkdEN45FnJCyqC0Kk59OcY3bJIrI56SZgAAn2a5NRggeMB1 vXJiR6c1NjYO2+hHCRC0HWdlbmVyYWwgPGdlbmVyYWxAZXhhbXBsZS5jb20+iGAE ExECACAFAkYrdhQCGwMGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRCfpmLAbeIv wjccAKDBGLeJiZR/awqKnPJJGhNqibJRvgCfaZZFJOS1r+53FnK1KTMVaOSdxIed Aj0ERit2MBAIAKsR4aMqFYhibCJjChtl0MMRyASXNtc2i8BvDAJ+sTVyGUQ645YM tCLbXhgdB7NVaomxO9H8GfauTvxL99jP7H8bRICTMn2czlTzMWNAGbu7FHbHw4k6 lf9BcCjIxjNWldrpamlWSya+IaXcY4Mp301KrZCY2LVDAMDHLHnvzkZ8rkgRnGht 0o1sjsqyPqA5uHtkGf4xpiDT+G9zxybvQiV6t3Uf7yRpWMa/bgKWlx41ZLGufrjw Ooqo8gqEaP0r/ld0gDUjmCWCPbZyhR7izGAKsDrn1jZ7x429s0tIQgCSeqdAjHAY ZmjYnl3DoJrfDCCXv2+VuCLX4Ev9g/siP4sAAwUH/iEk5IdqWNkBMV7RpoYztS0s Qf7DuZ9MyTpEL3/yOWjoFsVwz/HWHHPZqdrFeaJAfkuA6Jf6aRmsWrPpIrHcEzY2 tdhK9tS65ughn8qqdteBCmXDOOCpiG9RwLrS5bowSbFoH+iw4IB+LO/ORis8LQPT R34lnlpF1hl6xhbBSujlg3HUh9BnB7rNhfRRy8joeY6ZHeF3M8eZRAJ9cL1IULUZ /WwVOxSxlIp3d+dr2ynoHhY1L4Rgi6fmBSMUgdjl3lXc1GzI4lDNMybt1TQ7KvSD +RAb1d3MIsbjhf182IgyD6nsww1PT+R9kXdSEAYDCD5fVlwBUZAiCVJ7Jr0DiDQA AVQKdEMomLc49M9nDgc3mQkmkS1Ce0xI+BBEf0LhdiUYRU9mclN7HkCj3fl8EUCI SQQYEQIACQUCRit2MAIbDAAKCRCfpmLAbeIvwhLsAKCoZAIqS3Bp2WndQqZJvHBS u4f0VACgslT4IpJF1BdbMvA+oyvYVgv3g/c= =linj -----END PGP PRIVATE KEY BLOCK----- rt-4.4.2/t/data/gnupg/keys/recipient-at-example.com.public.key0000664000175000017500000000321713131430353024065 0ustar vagrantvagrant-----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.7 (Darwin) mQGiBEWOOBARBAClfdK23heqW39sO3K0p+KtZkDxWhgpjjRfMSWQWwY++eDFhDr5 BGG3zxsB2R8MOaHVKetuDjWjmfDi/LvDR8br8+eaLt94F4PBcLa+vVjboYyjvTFs 2t3leyXjNd+mBTZmUcY6WLM0E+biIJdlDhVOv95n8VwvT10R0J/mGO7hTwCg20NC vJJ/fpWzPItFfKHnKg3gO3MD/RhG6CxmsZs+1bdzY07UwABQG8NhoR5Veqg2+uBr xiYjemtC+8fAtthEojJ334BE7qDuXEO7eq1R+JOtEj/Hx8gtgWQfDNZlgLA4NUSc aU3PthtXD4CnY5MsTrxjpD+bjTde6ziEJ3RHPQQSq2S1fKqo5Bf6H7GYWueRiSGS cNK2A/4/WAYFQbj9Jm7zgvPrLRRnk7RP3A4+ABaWEtGMRbpCaFEHd63gjYEH7P3i /O6y9kXsYr3SkDbhk6h1Cx8+4fjpZHAd4XbgabZhp5u7Nq3m/TIzQiXMYXrZGleB CGoQrERbM9mavEgOHGZEwO1I/JKSHdmAg/adTRAbG+AxZK79u7QhVGVzdCBVc2Vy IDxyZWNpcGllbnRAZXhhbXBsZS5jb20+iGAEExECACAFAkWOOBACGwMGCwkIBwMC BBUCCAMEFgIDAQIeAQIXgAAKCRBIVe2Ik+ud58m2AKCAO8NDxsU8m6ahhfwrPaQG O7MjQwCgtDn5aYx4G93pv5UKpGzkHKh2T1G5Ag0ERY44FBAIALAc3V9FsEK3pxdc ILYVjV85rrL58+hGcsgeNqF2TIgneJ3Dwi0zA82K1gchfvBT7Ab+A7WGi6E0rXnO s/rMoDV+5Qoac4M9hW1qb1seBt+0au72npIMSqF5V/4nZr4L21g6vE4/cgrLd3BK bA1hCDdIGeqG3Ljiy++RGnhIkiY+FGpNYYAI9bkXltC9BYtl5DBvMrpTqlDUfSzq rz3zZYaD30FUGbTTqfISU1RC4sY7aEmgFvB6vvia/s9XyldngPFwuTELCAG/JkFd ZvodkwlTdv/vIY0SFkHJSjmT2a797wuhxuaC17eWrQhfF0sxsZhJ1Ac3osrGQQvr 8dZCd2cAAwUH/icHkxwmYKa7UPQZYexD4QsGS+rq7TbYzbSWcxz2l5J11/pHdD6m tdGbtEn5mQPjBnOI3GYwvtqbzG4WO5y5qssYoW22ZL9ov67QpJyKJILNLInWwiqx oRgB3Kgk5J5vDNw7CZLxrEvQNKE1gTEqfmQGUAiXipJ2VXbTWenPN6fDv5vdKesF dnDmk+jfjbL0/G8jUwt6vnQXMVZnIuxTMxs+4tTQfK1qh5iMdaC3wy15pg2wZoky OzjVEJywIQmqAA8lcvD0S/l4+JM6Epfx8gd9IjOVULUd2/TiPSvGM/gpJdop3bUc UmlWeF59Xx9uZPo7twDubKB6grMWOZwGgM2ISQQYEQIACQUCRY44FAIbDAAKCRBI Ve2Ik+ud5+EVAJ0TZHopcAmCANc26gPWWDfTaZovmQCcC5jl3o/yXvdaAhfbqKMr cts0+T8= =wrrX -----END PGP PUBLIC KEY BLOCK----- rt-4.4.2/t/data/gnupg/keys/rt-recipient-at-example.com.public.key0000664000175000017500000000323213131430353024505 0ustar vagrantvagrant-----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.7 (GNU/Linux) mQGiBEa8u6QRBADCqPh8w3cO51hPVb1Sttqq5UhCeB5t2dAL8aVEDkpPfV7LItDi pN4VqHo2zbGE8q2bCoqW06Ogn0R4xsxEeD9Jq9/k3dHReFL2gbA5F/el1PKXVxG8 62BnjLkDub8yCdWsg0QDJ6ah7LC7vukTMlJj+3HhoXWEqBrTBKjtFkNIrwCg/LtU CEyj+z/cl6NQGZUw2A6+5DUD/2DfcLeSir7xrlcidqO4BxtxdWkEBDAnmARKrqaw zSATIK11+HO3Gteovfa08J1XXU2+IFqi2Ssyaqss1kteJE8DmOAcllSXqmCfOmPm xoW4gXOQfEv6tkTvF9JST1OZRj5w+ecyxn0282XrzKcxNeLjc+JcLfzPmmuhw4lA s/nJA/4tBqT0V7QiwaznBo8Bh7N3sz75x0vgSdZLUA0e2VzHKh9mAfK/FeVS1mcJ 04iHWvxOGMqEfXnpxUrogME7f/TWNBVfT4M2JW0sHLvaiJhTtIhn+Q67awQ1f0qG mGQLIo9OAWZnIfBZ8e2tBwJ3ajiSZ2LIPWFv4Q1hKxOclODpf7QmUlQgVXNlciBC b2IgPHJ0LXJlY2lwaWVudEBleGFtcGxlLmNvbT6IYAQTEQIAIAUCRry7pAIbAwYL CQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEM4wxB7CJ0omPPUAoL3A7jiEZX6xSyXE duAtnmMplqHrAKDB8mrNols8/ni0VOv0QletwEwbVrkCDQRGvLuvEAgA/qDyDeDP FrDhh757tpgvJp2CmIx8fyv+i9nLEBVCZjtkLqgrcvtNh8l+xu3y8vjGB6+ToPvG ZE3FRxyLWNPGIlq1pQSREC9faEDWDrN7yA8miaikLIlfMnGwwzb5bEXWsmXzctTv DgxTCufDj8T66TKv+cCqc9T956XY6q49Z/p6yZDiY7LZ0N6GkHSoT8o6ZCOvl87n IjwKR8AXDWBxL5+SeenNkZ8e30pSVDJTOe4u6W/MKK3RBD0FKYr+DOMh5BQtE7yT QEhzmDTPfGe9m52FV8FbSLpimMnIFM2hGRf6jynoR10s0tk2DVADXDycwNYarRYG AxV6XafLCPDv4wADBQgAtpM7zhVch/NsL56aIG0QZmSaKCdk6UPsJua91eLEHJFo zOzethsAWED5KHD5ThsYBKPGq+mFz7QQtw8/DBmcajtBxMv2fvVOE7SrWfeHyMVl RgidJc3O6HlPPnA/v8lQhsYTxpUddYqB4lC0ktpncxCzX/VNr62YkmrpJx2Yvyd0 L/lK5fiko65gQC1v/XQ/QI9kpGbOFXFnEgQXmFcDTX4kzTgpJ3cOBrM9GAO/hcwH 82eC0j8fYw8mLYR8yQG0jsXJKCvHxTgkOh0nSkLaeLoq1maLp+NbJKCqgpsmeV4n QmEJE4Ye7I/L077BtJLv1tk0G0Jh3F2WeSzEvB7cS4hJBBgRAgAJBQJGvLuvAhsM AAoJEM4wxB7CJ0om/FcAn2tCGofP7IPmw6VxGBZNPHal4sIBAJ9UCgpOaGtX2fRl +vvcvfcuIys27g== =mo7N -----END PGP PUBLIC KEY BLOCK----- rt-4.4.2/t/data/gnupg/keys/rt-test-at-example.com.2.public.key0000664000175000017500000000323213131430353023642 0ustar vagrantvagrant-----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.7 (GNU/Linux) mQGiBEbl4D0RBADu+s2KTTSMl2/aK3Jkhy9ZTBMFOOCPeleidjV8z7RVGEwTjcby B0DbPFC/eK0ot9m/F9CojE6QHK0hqjCKPfARptjG6C/Iqxql0DaRWdo4UYTgT6WW hhoKK5DUN57Eu0essy1qTyzcXVIRsQdfkn2ldRKC1XSXnKAiL0vODLtL7wCgoDgj tDtOHdi0vlSHvRhPD1F9P3sEAMvSaiEMN/3AlAWQLqrg0rQRr4dpRZqahoffBIeX OZGzDSrWtIshMQLLA0HmkphPtRe/y74GBWfpwr6Hs6yl5tP2PSXsAAl+W92st2Vp lKJWsLZtvW39nS5cwmv0Etz6j0F9tn7Ah4+x89egzIg9GwU14cS2GNqxYsK3+YMY jSXzA/4zEDOQkrRuSEm9JNG5JCFKexAvjLzhYQQRCOI1PrX3iAMzbYFFIgTpr26h sPfOb5SMy2OGeECXGd0rxF4+rMCbp0jrQ8B18CWuho7HJK97WuT6NFoaPZCh/pYK OQkKGnJCUQNSm5u4uWY6yNs/+U4kvYJvIGw7F7uNWuXcpfREabQmUlQgVGVzdCB0 aGUgc2FtZSA8cnQtdGVzdEBleGFtcGxlLmNvbT6IYAQTEQIAIAUCRuXgPQIbAwYL CQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEMeYWRqoMdv7v1oAnR9bV/4nbzizkEAm 691AuqGLFyryAJ9WjLWviRXuiEKMR6LMIn9HC0POarkCDQRG5eA9EAgAoexx9eOo hJpX0VJ8gNVSlFsLLq60ugiWzfwzrGkL2v4o5QoCwj6XFhK/xtDmqhWu3USBVtqW vrMuq2VCWWPiezZ/8Zl8NY7GjxDyLgeuEotfBkS8qFLQH7TGqNFLoJOIi3UjNFX8 cRx29CSQyc3jj88HiC1InuMMwDXf8ukpkYNG0n7E3lZ3dWOadCXY2+kAxJ5qGV0U WmEBoux9TU8hFAq4DtRmf2x/Mt3k+e5ZXpbnbKGxAAImMV8WR0SGAd5OcgeE+rB3 ziAtD8YbM+WDxbihloje7YN0hVSFSTsGvypIC/jPSNTVgkJdG7N0NepGh/T3wbAV eDebMYDmUQYLiwADBQgAmrAkyor1V/M21ERoZdoNFMlbdxuuQ5QhBIkkiygn2dq1 d7CaOF1Hi5s3o6DsD9ER2YENlPYgPtVPH/agGuITHHugGKitj9sRM/QCGMKf/IKa zxcTQfcHmOUMXrM6GWzPZiiTrIBpOZyRDyFN1x0y9G9z7lVt507AkyF3aS2da6yc l2knSX3vPtFkHCUVlvKz6yXGE4xLm8/ACH/zPDjuQ2X/Yz+FfpJAeNihz6/J88Ga O7sgU1jx3zdRaH5hZXJRlyO7AW1KdOtI8xZi3SBNXKBnfCbUUSBbxa2spXst0Eep ijEDtsDhK+imdFjX8ul/JE0XhJooRrcdevEbohMn2IhJBBgRAgAJBQJG5eA9AhsM AAoJEMeYWRqoMdv7OI4AnR5PPGNNdhVSTle3B9cV2Vy11gEjAJ0QHe4iFf7wfASF jybMsNKYwFb5FQ== =XFiw -----END PGP PUBLIC KEY BLOCK----- rt-4.4.2/t/data/gnupg/keys/general-at-example.com.public.key0000664000175000017500000000321313131430353023514 0ustar vagrantvagrant-----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.7 (Darwin) mQGiBEYrdhQRBACpTwAjSJchxV9rgWJj/4GUe92xZ2wWHVrkv7cELO5GD1ie8wtA nh57oXfcFhuSmtLTyT/C1Mbzo/tz4Sigf33bZlEMXusp0bLsSz1S/5mslBGRdApJ Dz5jETEcakpzWsHA5sHfv8HLn+o8WUDtlGZf+Edi0DqUKSiLRkjWMAdcJwCg7cN1 IIhhFFAf9Lr3Ny7ngJDwn/sEAJoZVUmhBHo9TipR9lZY1si5U0hA8Yn4XghLp4z9 0rm8dAgLSZwFI2/zoU5u9qjW0UAo8Sp2SO9F03wQpfUGnpQtea/HVNuwiZVU42bB E5gn5EIYrHYT8X7cd+ZpWVGYu2117uoJtRHwnfuh857ocs7M7xeo7IQUZArqeHOG i3hABACV9mqnZoPyCOtaBogdXtDlEbqDvYclONJTsSKAfPsNRjJi8lzvJL9ZhtS8 YKIUvxFu+XX0UVXWoNnzte8Ip/0hwupJu9jIcBJpI9dVEK3H2tWr+NElzML/uch+ VO7UUmk2H/hF8+a3wXkdEN45FnJCyqC0Kk59OcY3bJIrI56SZrQdZ2VuZXJhbCA8 Z2VuZXJhbEBleGFtcGxlLmNvbT6IYAQTEQIAIAUCRit2FAIbAwYLCQgHAwIEFQII AwQWAgMBAh4BAheAAAoJEJ+mYsBt4i/CNxwAoMEYt4mJlH9rCoqc8kkaE2qJslG+ AJ9plkUk5LWv7ncWcrUpMxVo5J3Eh7kCDQRGK3YwEAgAqxHhoyoViGJsImMKG2XQ wxHIBJc21zaLwG8MAn6xNXIZRDrjlgy0ItteGB0Hs1VqibE70fwZ9q5O/Ev32M/s fxtEgJMyfZzOVPMxY0AZu7sUdsfDiTqV/0FwKMjGM1aV2ulqaVZLJr4hpdxjgynf TUqtkJjYtUMAwMcsee/ORnyuSBGcaG3SjWyOyrI+oDm4e2QZ/jGmINP4b3PHJu9C JXq3dR/vJGlYxr9uApaXHjVksa5+uPA6iqjyCoRo/Sv+V3SANSOYJYI9tnKFHuLM YAqwOufWNnvHjb2zS0hCAJJ6p0CMcBhmaNieXcOgmt8MIJe/b5W4ItfgS/2D+yI/ iwADBQf+ISTkh2pY2QExXtGmhjO1LSxB/sO5n0zJOkQvf/I5aOgWxXDP8dYcc9mp 2sV5okB+S4Dol/ppGaxas+kisdwTNja12Er21Lrm6CGfyqp214EKZcM44KmIb1HA utLlujBJsWgf6LDggH4s785GKzwtA9NHfiWeWkXWGXrGFsFK6OWDcdSH0GcHus2F 9FHLyOh5jpkd4Xczx5lEAn1wvUhQtRn9bBU7FLGUind352vbKegeFjUvhGCLp+YF IxSB2OXeVdzUbMjiUM0zJu3VNDsq9IP5EBvV3cwixuOF/XzYiDIPqezDDU9P5H2R d1IQBgMIPl9WXAFRkCIJUnsmvQOINIhJBBgRAgAJBQJGK3YwAhsMAAoJEJ+mYsBt 4i/CEuwAn1QHO3umF9MHhpWQIBaacJUfBboqAKCYPpflpFvDNn0ioLA7Dw5qVSix 5A== =CF0O -----END PGP PUBLIC KEY BLOCK----- rt-4.4.2/t/data/gnupg/keys/general-at-example.com.2.secret.key0000664000175000017500000000353013131430353023665 0ustar vagrantvagrant-----BEGIN PGP PRIVATE KEY BLOCK----- Version: GnuPG v1.4.7 (Darwin) lQHhBEbgjJQRBACx8uMHcl9JlKCUU5yh0rBw636MXhKr7cH/+zBTeUVQyfs+J4fo HlI3fwJzZOxwXKTwmXsHSKxomeBJxPpFCnwHvn7xTYh6Wtis1Rm2Vr4lsw4gxrFj bpk1ISkHo4tO3dPTNx6Jhz+gYzoVUyfclz/byUmEbe2HJkBCQNmC9/lcuwCg477S siOdObqTKtQhDqXzFfOHKmsEAKVB8RImtLAO/HPY5+rxiVkfKjsmZovi0PfioGDI 3o1jcSwq/RwWPZTNB0vnlEx1aD3zedUn1T7ZPnKoRttIv0xYlg9wYhX/xvOA9mKy G5aXSypiJiNwJSQfcChlyVHX3R88pURIzPiwWv2OBOvRagE8Bmgz0DFa0/AQfmvI vpUmA/4qZVzOJ5hC6fVP+ESKEC6fStvHAEZM3sQK5AnZsuUls3+tgfkD9T6ei5YF MXDLMGz3thue1M0QEu3IL7cLoTMalWQpjpyDuqXS8UAsd5cG2eP2iA6Uf2VoKQ11 w6Q1FyMwTC9B0F8JijwdLF77ERSCtIG+TOA1EtH9HfTV5+BfHf4DAwJaviEcavOA YWAyNs+6FnvZb5JMpdZWxKrmidVFbPUx7sHk2vEW0UTzcnqnlxmoJ/tKeWwiNl1j ztCVFbQfZ2VuZXJhbCAyIDxnZW5lcmFsQGV4YW1wbGUuY29tPohgBBMRAgAgBQJG 4IyUAhsDBgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQ32UfoGMsT1De7QCgu2Gw s7EHllWWhJC9mHgDHC45Z8YAn2mBLO7ZBi5lptavTfQlR05RvTSKnQJjBEbgjJQQ CAD55mgtF494BvjhumUEZu15W9QL99772EntAHnGd6tx6r2GlqWmIHrze/jguIdy XqVGEVWAosDAu08vF1ECDDJoCz/tkyjhXOT4MBKWL0Gpetk61Pi2Qv0GsxQSYG+F wKjTk+pE4qxnT932n3U87KxUtgIxzH7Y/oFxgb0LGQxgokSPuq/E+jtglYxey9fz eFWjr2T77g5oWu9PXPCFjg+km3f9rQxxRgDuM4bPr5tWjhLTpNB0xKZMbx6YUVUP /DyK/DhqaMZ5Qt1vZ0QI/COSPy9Kq76wR1WW6E0SDFU49xAbtMm2MZgDh5uj/lFp 95yDGmBSZzwxY0qy/BbNc4HDAAMFCADbiPty42xieGtEtQdvjqejEsE15Zhna+zf /4Fch/Ee9laOmtW9Nekg2ltUMHw+Nc5VseWIKtFqlnOZtcutO6yYgVH+GJ287gnX w3gK8zEcbQ2RUxYEdiuwORuMqowmVlOCFxgPW6Vv5Em8E3kb1dEMx+Ec/SVmeXpO cGV5kS9PS9veO3ruoXqx6l3Gq3BU3xvDhJ3FRRlsUYtGOBuJl0/oXk/1TUjAuQin sxM+Nh4VljeI3eiT2YgbypdXjH6zmTDy7PlEy5RDYdFOsKW1sZXKWoY6y2TU4IO9 JBWehS8Lhn3pMTv65FME6Ow9W5+hLTBYo9E/kUZXWvPlJgGA1439/gMDAlq+IRxq 84BhYLhZWMP6gRz3MuuJr0YX10x+bx3/96Wkh505MRMLqefr0J8WgzjIJS1aIUqA nusWttcVsQZS3ZHIZk/tp5dq54CICn09Rl+UNySISQQYEQIACQUCRuCMlAIbDAAK CRDfZR+gYyxPUET6AJwNpkgxKEdjvIbdB7Y+IPgA1wyt+ACdGc0py11j1RLa2gn0 1+nPnBIS7R8= =oSXs -----END PGP PRIVATE KEY BLOCK----- rt-4.4.2/t/data/gnupg/keys/rt-test-at-example.com.2.secret.key0000664000175000017500000000354313131430353023656 0ustar vagrantvagrant-----BEGIN PGP PRIVATE KEY BLOCK----- Version: GnuPG v1.4.7 (GNU/Linux) lQHhBEbl4D0RBADu+s2KTTSMl2/aK3Jkhy9ZTBMFOOCPeleidjV8z7RVGEwTjcby B0DbPFC/eK0ot9m/F9CojE6QHK0hqjCKPfARptjG6C/Iqxql0DaRWdo4UYTgT6WW hhoKK5DUN57Eu0essy1qTyzcXVIRsQdfkn2ldRKC1XSXnKAiL0vODLtL7wCgoDgj tDtOHdi0vlSHvRhPD1F9P3sEAMvSaiEMN/3AlAWQLqrg0rQRr4dpRZqahoffBIeX OZGzDSrWtIshMQLLA0HmkphPtRe/y74GBWfpwr6Hs6yl5tP2PSXsAAl+W92st2Vp lKJWsLZtvW39nS5cwmv0Etz6j0F9tn7Ah4+x89egzIg9GwU14cS2GNqxYsK3+YMY jSXzA/4zEDOQkrRuSEm9JNG5JCFKexAvjLzhYQQRCOI1PrX3iAMzbYFFIgTpr26h sPfOb5SMy2OGeECXGd0rxF4+rMCbp0jrQ8B18CWuho7HJK97WuT6NFoaPZCh/pYK OQkKGnJCUQNSm5u4uWY6yNs/+U4kvYJvIGw7F7uNWuXcpfREaf4DAwJXViZBji9w O2Bhhip5V1QOR7FbE8SLAJVVPoX4Lv8iXOMm4jaXAqTPkvWmWZDiUKfDf6Dv5wT1 aj8N8LQmUlQgVGVzdCB0aGUgc2FtZSA8cnQtdGVzdEBleGFtcGxlLmNvbT6IYAQT EQIAIAUCRuXgPQIbAwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEMeYWRqoMdv7 v1oAnR9bV/4nbzizkEAm691AuqGLFyryAJ9WjLWviRXuiEKMR6LMIn9HC0POap0C YwRG5eA9EAgAoexx9eOohJpX0VJ8gNVSlFsLLq60ugiWzfwzrGkL2v4o5QoCwj6X FhK/xtDmqhWu3USBVtqWvrMuq2VCWWPiezZ/8Zl8NY7GjxDyLgeuEotfBkS8qFLQ H7TGqNFLoJOIi3UjNFX8cRx29CSQyc3jj88HiC1InuMMwDXf8ukpkYNG0n7E3lZ3 dWOadCXY2+kAxJ5qGV0UWmEBoux9TU8hFAq4DtRmf2x/Mt3k+e5ZXpbnbKGxAAIm MV8WR0SGAd5OcgeE+rB3ziAtD8YbM+WDxbihloje7YN0hVSFSTsGvypIC/jPSNTV gkJdG7N0NepGh/T3wbAVeDebMYDmUQYLiwADBQgAmrAkyor1V/M21ERoZdoNFMlb dxuuQ5QhBIkkiygn2dq1d7CaOF1Hi5s3o6DsD9ER2YENlPYgPtVPH/agGuITHHug GKitj9sRM/QCGMKf/IKazxcTQfcHmOUMXrM6GWzPZiiTrIBpOZyRDyFN1x0y9G9z 7lVt507AkyF3aS2da6ycl2knSX3vPtFkHCUVlvKz6yXGE4xLm8/ACH/zPDjuQ2X/ Yz+FfpJAeNihz6/J88GaO7sgU1jx3zdRaH5hZXJRlyO7AW1KdOtI8xZi3SBNXKBn fCbUUSBbxa2spXst0EepijEDtsDhK+imdFjX8ul/JE0XhJooRrcdevEbohMn2P4D AwJXViZBji9wO2DcFJ5JiQd3X934uG+AeTFIWQG75qOWS3j8BpRn50H73tUn9dxB Z+V9tI7sMFW3cQTnt6c+FSNJBTUAfLTExQO0BqPSrVwVmKImiEkEGBECAAkFAkbl 4D0CGwwACgkQx5hZGqgx2/s4jgCfeukl8vl9mMuariu08MsuywQ77y4An1cIwl1x 997LwJrR5WF/WoGvPQ61 =E3hO -----END PGP PRIVATE KEY BLOCK----- rt-4.4.2/t/data/gnupg/keys/recipient-at-example.com.secret.key0000664000175000017500000000353413131430353024076 0ustar vagrantvagrant-----BEGIN PGP PRIVATE KEY BLOCK----- Version: GnuPG v1.4.7 (Darwin) lQHhBEWOOBARBAClfdK23heqW39sO3K0p+KtZkDxWhgpjjRfMSWQWwY++eDFhDr5 BGG3zxsB2R8MOaHVKetuDjWjmfDi/LvDR8br8+eaLt94F4PBcLa+vVjboYyjvTFs 2t3leyXjNd+mBTZmUcY6WLM0E+biIJdlDhVOv95n8VwvT10R0J/mGO7hTwCg20NC vJJ/fpWzPItFfKHnKg3gO3MD/RhG6CxmsZs+1bdzY07UwABQG8NhoR5Veqg2+uBr xiYjemtC+8fAtthEojJ334BE7qDuXEO7eq1R+JOtEj/Hx8gtgWQfDNZlgLA4NUSc aU3PthtXD4CnY5MsTrxjpD+bjTde6ziEJ3RHPQQSq2S1fKqo5Bf6H7GYWueRiSGS cNK2A/4/WAYFQbj9Jm7zgvPrLRRnk7RP3A4+ABaWEtGMRbpCaFEHd63gjYEH7P3i /O6y9kXsYr3SkDbhk6h1Cx8+4fjpZHAd4XbgabZhp5u7Nq3m/TIzQiXMYXrZGleB CGoQrERbM9mavEgOHGZEwO1I/JKSHdmAg/adTRAbG+AxZK79u/4DAwKKjpV+74Fq wGCggxQNXbWP1fy2s8C5f3k/jsyGcPyDv2qcVoo9f1cLdb6Alu3f6kSAGWpUink9 dHErTbQhVGVzdCBVc2VyIDxyZWNpcGllbnRAZXhhbXBsZS5jb20+iGAEExECACAF AkWOOBACGwMGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRBIVe2Ik+ud58m2AKCA O8NDxsU8m6ahhfwrPaQGO7MjQwCgtDn5aYx4G93pv5UKpGzkHKh2T1GdAmMERY44 FBAIALAc3V9FsEK3pxdcILYVjV85rrL58+hGcsgeNqF2TIgneJ3Dwi0zA82K1gch fvBT7Ab+A7WGi6E0rXnOs/rMoDV+5Qoac4M9hW1qb1seBt+0au72npIMSqF5V/4n Zr4L21g6vE4/cgrLd3BKbA1hCDdIGeqG3Ljiy++RGnhIkiY+FGpNYYAI9bkXltC9 BYtl5DBvMrpTqlDUfSzqrz3zZYaD30FUGbTTqfISU1RC4sY7aEmgFvB6vvia/s9X yldngPFwuTELCAG/JkFdZvodkwlTdv/vIY0SFkHJSjmT2a797wuhxuaC17eWrQhf F0sxsZhJ1Ac3osrGQQvr8dZCd2cAAwUH/icHkxwmYKa7UPQZYexD4QsGS+rq7TbY zbSWcxz2l5J11/pHdD6mtdGbtEn5mQPjBnOI3GYwvtqbzG4WO5y5qssYoW22ZL9o v67QpJyKJILNLInWwiqxoRgB3Kgk5J5vDNw7CZLxrEvQNKE1gTEqfmQGUAiXipJ2 VXbTWenPN6fDv5vdKesFdnDmk+jfjbL0/G8jUwt6vnQXMVZnIuxTMxs+4tTQfK1q h5iMdaC3wy15pg2wZokyOzjVEJywIQmqAA8lcvD0S/l4+JM6Epfx8gd9IjOVULUd 2/TiPSvGM/gpJdop3bUcUmlWeF59Xx9uZPo7twDubKB6grMWOZwGgM3+AwMCio6V fu+BasBgNB3AutvANzxcWBPZSJFs3uN0m4ii+g7eu8fYaiIJO7GFk1WD5UORHs9w 0C4JIqUj10yUzvnHBZ6DdkV2aZE9FZljLLpRs+iiwYhJBBgRAgAJBQJFjjgUAhsM AAoJEEhV7YiT653n4RUAoJd1DuGANpd7VGGwNfoMCCpAk/4TAKCrbh6NpoJr0Ab4 1toDA5lM/EYYPw== =5O4y -----END PGP PRIVATE KEY BLOCK----- rt-4.4.2/t/data/gnupg/keys/rt-test-at-example.com.public.key0000664000175000017500000000321613131430353023504 0ustar vagrantvagrant-----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.7 (GNU/Linux) mQGiBEa4o04RBADc+2sFcnuTTaqcKRTmSBQKdXvumT4GoATk194UYMghwprrNb1/ flXQRk9zLkc0YENFHLMoRUmXKEF+WFxzXrZgHJS096tGn+Ud2FXQbSL47Vl3EHng c+jSvvVaZRcEySaCyQrsDR7gWlQtCbxbe96Y2x9jX3Zbih9UYnRvWBeczwCg4tgz EOmScnWiwUdyZNQsvXDqvKUD/REf0WjWDaykQvXYZ0aTpc/WMBsDS16nl8GNz5eD lCB/JJHKh5QDu89p0557AbVDSi5LCOYAM+v4oi8k5zgiO/7HJptirDkZ27Ichyes kzhu3Xr9rPLawie/o4FCfncNLbOAEE4EjEGDGRlyowAaXlW7DWT+TLbxY0qL0uHy AQPGA/9AmYHBJQqHTfQ4/QXdCnp+UwYs+rhPh7YHymBLn8Saa14heE9SZcYfSerL FAE7KKeBx96+RplgsiaqfWrliUwrV3KnnJICMyqWmn2OyMYiV9iFWqAHFTCsitS2 q1COv5/Lg1a+XkAwEfoIuLrAXT8buIxXs/BhLc1PD1t9My8srbQdUlQgVGVzdCA8 cnQtdGVzdEBleGFtcGxlLmNvbT6IYAQTEQIAIAUCRrijTgIbAwYLCQgHAwIEFQII AwQWAgMBAh4BAheAAAoJENMoA12EiB8bMZoAoIxLNWQ9d9+W4ImPMpUmjLl9ttxW AJ9ELlhkfdhPukRe508p5fZqKUfl/rkCDQRGuKNhEAgAjSKFedFcU9RjLmSEGo7E 4qMQWOtiNooW4NtRsKC2cbJXnGJUOT+GBzGCxjBZt89T6MVsOy7DoAzs+xWKA5Cf gFEX5xZWM1c6EA4f7LhC1hawtGQkMQIyHzEy9b7NPEcMlkdOebjjhZ4Ob8svGily Q9jN6zpR2c36i0sLaZ5gORIHJ9DOX1k5lUzEhkogEYoYof48VQwHt/5xUURli2kL Daqi+X2+6j/vNp96EQ3sbFifmNejWNaDyyrlyGUvx9g/Eh5wMRospmFA/oE1kSws tKiBxAPs11OJGBRre2Q6QVW2ULAhxZOFgkCq0DNb8TMnhJOY4jhOP57rrvpMyu9q 4wADBQgAhRl4aiej9lX+YpZUcyhBkqIB/cDwYemmtIWzo6mVWuDuVcyLl//sJsBi pwJF6O5nr0ZC5CT+GRgjBmh9rQjv/UtWBldJ7og/HfuSMG6xIfljO2FxKjabDhGa iKzgTk75LnPqfx0FeRNbN78dPy4hV/iIvHPANuyUlmbBsx9hSGqMc78FIDwwfZtB im5XUJbpHsahu4/8agQLBu+PFK+5CIVWskrYVL1R66nPHCzsfYcOv+1CYCsuFldG tFNPCegGxE7T7CFs7m7aYeSdgycNaR9wuBZeV17JnOJ2z/mtsR+8p4vZZzSMcTkj f1j7UCgiKS/ioTD03pU/OZEy9+l1SYhJBBgRAgAJBQJGuKNhAhsMAAoJENMoA12E iB8bOvUAoMbxSLj4OsaYEQ1FxOfsXPRmSPVWAJ91PvFOwLkhsm88kjPAIc8oymjd 7A== =ABM8 -----END PGP PUBLIC KEY BLOCK----- rt-4.4.2/t/data/gnupg/keyrings/0000775000175000017500000000000013131430353016161 5ustar vagrantvagrantrt-4.4.2/t/data/gnupg/keyrings/pubring.gpg0000664000175000017500000001105313131430353020326 0ustar vagrantvagrant™¢Eˆ¨û÷œmšEɤóψJ©gܾ¢ë ‘ ’ï‰Ô¤èäF†ËÁ¸¤ýVòTHyÀK¼…Äî£U¡Á7¹ €bhu-ì&\‚¢³_vžþÍ]B¡Í¦½­‚ê­¨Þ8ð[ ñ “OKöLzî%ñüßDæbçí~hgG ¢ÌoÜ7UÄ.ʰs}T@Æ9û?¦ÿº‡Šñþ"yj`Ûë( (ÒØ¼ÌJĆ †¢ÙZèÖ¹ÙqZ›ˆ»@[8ÔZ•ÝSæËåƒã»gÆSMHpÏìJûÆ‚ñËWüÔ7n.Ã[ù§î¸M¨DãF?_cϪ»ÔÿÀ~:¨Ö@½æ!žúàwó'FX¥‹UÿkžYm”Fr¯( ÿ9Ÿñ.χsŒ»í Õ½Ç6NÌJq‰N;|[ìiZHHó½’_Ñsx0¸Éóc¡Ê?ÓC؈~©@÷ͱA¤Ðy¡Þˆ:!ɹ¬«‚·­ü‘êéH@ KézÊHÔ×K|âüIJ·löYµ£lãêa«´Test User ˆ` Eˆ¨û € µ¤bCE÷¥”ë ””™îBi×ÞÍÅ#ó@UóyÇy9 ›„˜e„÷ä^›¥3äË“gü°¹ Eˆ©Èr6Ù§…—O“(Õ||"ˆ™h^À jlL§+ð·$ÏK4Wb¸+¥ÙÒâê«ÏÀœ˜ “"~œé­¶RLýõõ;)Y'ÝG*©j^#7ΛèÈ8üÎ*RF f‰d˜`Ä»T@Àž«ù¾ÉH*÷jÆÁ“c‰s¯£‚r¼ØPš [­‘öÃkÈɘ²2dcdË% ìž6GòÙ£ç£";ý@¨ßÎ…×?©Åä%Ì_Ò €óøõøj„¾‡Ö´*°Û“ÉîE³T§Î…D =Ó‡§¬TIñ“},;»»ÐÃäL¶¨™Ä|;÷ŒjúÍ„ëÃ:yóÛÝËÏÌm7ÇÿW¤úã÷²m´81´uš€[Tʉ Ø]äZ²÷‘¿„ü `–ÏšË ™¶­ØvL¡µÉ)·Øæ`•€ô©ã¾ô÷vœg˜]õa€§_ÛK®O¦JHà?¯ÚÑÿGö2‹‘Òrúê,²0÷YšæU°PãôpxVÇ™B>Ã@é!íy빦ù5‚ƒrz9•š=ff‰3)–‰|;ٞΧ ÷¬"ùÕ Ƙ†¾u¸A¨ß1Ç1=gŠä+‡ TP«P+ÊæR^Ê·VŒqÓÚ= ‡GàTc Oo­„{™¸ÍΩW,Þ)ñ¶µNþ(„iäþn¤¢y%g[]—®âcˆI Eˆ© µ¤bCE÷¥‰IŸ[ê ËÊÎ,{J  ˜ku\t3‡ŸjUðÃë UÁ„üè·3Ø¿àA°™¢EŽ8¥}Ò¶Þª[l;r´§â­f@ñZ)Ž4_1%[>ùàÅ„:ùa·ÏÙ 9¡Õ)ën5£™ðâü»ÃGÆëóçš.ßxƒÁp¶¾½XÛ¡Œ£½1lÚÝå{%ã5ߦ6fQÆ:X³4æâ —eN¿Þgñ\/O]ПæîáO ÛCB¼’~•³<‹E|¡ç* à;sýFè,f±›>Õ·scNÔÀPÃa¡Uz¨6úàkÆ&#zkBûÇÀ¶ØD¢2w߀Dî î\C»z­Qø“­?ÇÇÈ-d Öe€°85DœiM϶W€§c“,N¼c¤?›7^ë8„'tG=«dµ|ª¨äú±˜Z瑉!’pÒ¶þ?XA¸ý&nó‚óë-g“´OÜ>–ÑŒEºBhQw­àìýâüî²öEìb½Ò6ᓨu >áøédpávài¶a§›»6­æý23B%ÌazÙWj¬D[3Ùš¼HfDÀíHü’’Ù€ƒöMà1d®ý»´!Test User ˆ` EŽ8 € HU툓ëçɶ €;ÃCÆÅ<›¦¡…ü+=¤;³#C ´9ùiŒxÝé¿• ¤lä¨vOQ°¹ EŽ8°Ý_E°B·§\ ¶_9®²ùóèFrÈ6¡vLˆ'xÃÂ-3ÍŠÖ!~ðSìþµ†‹¡4­yγúÌ 5~å sƒ=…mjo[ß´jîöž’ J¡yWþ'f¾ ÛX:¼N?r ËwpJl a7Hê†Ü¸âËï‘xH’&>jMa€õ¹–н‹eä0o2ºSªPÔ},ê¯=óe†ƒßAT´Ó©òSTBâÆ;hI ðz¾øšþÏWÊWg€ñp¹1 ¿&A]fú“ Svÿï!AÉJ9“Ù®ýï ¡Ææ‚×·–­_K1±˜IÔ7¢ÊÆA ëñÖBwgþ'“&`¦»PôaìCá Kêêí6ØÍ´–sö—’u×úGt>¦µÑ›´Iù™ãsˆÜf0¾Ú›Ìn;œ¹ªË¡m¶d¿h¿®Ð¤œŠ$‚Í,‰ÖÂ*±¡ܨ$äžo Ü; ’ñ¬KÐ4¡51*~dP—Š’vUvÓYéÏ7§Ã¿›Ý)ëvpæ“èß²ôüo#S z¾t1Vg"ìS3>âÔÐ|­j‡˜Œu ·Ã-y¦ °f‰2;8Õœ°! ª%rðôKùxø“:—ñò}"3•PµÛôâ=+Æ3ø)%Ú)ݵRiVx^}_ndú;·îl z‚³9œ€ÍˆI EŽ8 HU툓ëçádz)p ‚×6êÖX7Óiš/™œ ˜åÞò^÷ZÛ¨£+rÛ4ù?°™¢F+v©O#H—!Å_kbcÿ”{ݱglZä¿·,îFXžó @ž{¡wÜ’šÒÓÉ?ÂÔÆó£ûsá( }ÛfQ ^ë)ѲìK=Rÿ™¬”‘t I>c1jJsZÁÀæÁß¿ÁËŸêˆ` F+v € Ÿ¦bÀmâ/Â7 Á·‰‰”k ŠœòIj‰²Q¾Ÿi–E$䵯îwrµ)3häć°¹ F+v0«á£*ˆbl"c eÐÃÈ—6×6‹Ào ~±5rD:ã– ´"Û^³Uj‰±;Ñüö®NüK÷ØÏìD€“2}œÎTó1c@»»vÇÉ:•ÿAp(ÈÆ3V•ÚéjiVK&¾!¥Ücƒ)ßMJ­˜ØµCÀÇ,yïÎF|®HœhmÒlŽÊ²> 9¸{dþ1¦ ÓøosÇ&ïB%z·uï$iXÆ¿n–—5d±®~¸ð:Ѝò „hý+þWt€5#˜%‚=¶r…âÌ` °:çÖ6{ǽ³KHB’z§@ŒpfhØž]àšß —¿o•¸"×àKýƒû"?‹þ!$ä‡jXÙ1^Ѧ†3µ-,AþùŸLÉ:D/ò9hèÅpÏñÖsÙ©ÚÅy¢@~K€è—úi¬Z³é"±Ü66µØJöÔºæè!ŸÊªv× eÃ8ੈoQÀºÒåº0I±hè°à€~,ïÎF+<-ÓG~%žZEÖzÆÁJèåƒqÔ‡ÐgºÍ…ôQËÈèyŽ™áw3Ç™D}p½HPµýl;±”ŠwwçkÛ)è5/„`‹§æ#ØåÞUÜÔlÈâPÍ3&íÕ4;*ôƒùÕÝÌ"Æã…ý|؈2©ìà OOä}‘wR>_V\Q" R{&½ˆ4ˆI F+v0 Ÿ¦bÀmâ/ÂìŸT;{¦Ó†• šp•º* ˜>—å¤[Ã6}" °;jU(±ä°™¢F,w™“>|iÀ1}a9šc¨Irʼnó…Âð g+n/ÜŠ5‘‰ tlß)¯„æ?Ö)÷®‘)¥ÞŸsŸ—²ú›±1Äž Üõ|³²nçò²(ÂÛ™öølåtÂ¥Q:Qªiò(©{d†ÝëcÃ#“7_œyeÑñ¯^{dlë; ›g¾0º†—*ƒ¯ÆÁËW…ÙQéþ3šó+q;bó‹­·’ÌòAp…r5­ê+ ”óL<»™VæÏ >9GÝâM¹ ú®çpéT±zAŠ ^¸Šb¯º(Íiü˜†Me¶ö7ÚÎsˆà_å¨zÐë)“L¼z°€ªbq¥2që+/~ø=ªv#3}Ẍ¦Õ(Ò»Qþ)3$„:¼’eqNg¼eg䌵fßR:=Ÿ®²ÒƸÉgË)‹z²…ø¹ ªMté“ddQŽÖ¼(êH„ˆY{¶êµA~å«ð‹*|5Š“pd±¼¼±]¡¡˜Fdˆ’¹5šS+yÄ—–ð]œn±ÚáÏ’SÝc_’6»AS´#random@localhost ˆ` F,w™ €  ÈŒßXDþæ{¾ŸUü) Þ³ÂÖ§©_n@#²Ÿo¥8FX˜g8JØAæ4ï½ ©«°¹ F,w¥íôìÆˆm*y6”©1vÕ}å%±Ü}/ÃÇÓæ€ 1ž¦“¼^ï¹ê­Ô$Ä gl¦6y0dÔ ¿Ë¶‘vöf¹%nÀ¼± 1‹ªÿAÞì {&’|eîó^6c ˆŠêUì¿GÃÓ šfCàÈïi5ñ+dmß¹k¯Q¬’i’ü÷Å»Sp~FÁCOEºaû{†¸ÈPÖ0 ‘Yg©„O÷ÛÛVO„„á)eÖLr§ho]Cî(ûxùŒXÍ”$„¸ß™ÿ¶ ÎHg0“^r?õmAºx0cÿ’ÕR6÷¸T8zž¤W4ç$ÑM3ço}Ýi­9õ_zÁÀæ—@YŠÂ²è‡I(bµ(Ô¬õ—RöúËœ!’9¤ç ù’X£Ñ$ÇrÒ”ÃÝ» ×vm¶fLÓäy«î 1X‡ùÐ>äY&¥^­:}xb±–{Ì‚ž÷5B› ›ù~@kÂcÃDŠßÛûöXä£|nªo‚f«‡‡ŠDm¬¡Ë}½Ì_C’¸¿Tÿ!<¡ÁàNÏ_jÝÐiÂøºõgäý— ´ƒhçˆ` Eˆ¨û € µ¤bCE÷¥”ë ””™îBi×ÞÍÅ#ó@UóyÇy9 ›„˜e„÷ä^›¥3äË“gü°cEˆ©Èr6Ù§…—O“(Õ||"ˆ™h^À jlL§+ð·$ÏK4Wb¸+¥ÙÒâê«ÏÀœ˜ “"~œé­¶RLýõõ;)Y'ÝG*©j^#7ΛèÈ8üÎ*RF f‰d˜`Ä»T@Àž«ù¾ÉH*÷jÆÁ“c‰s¯£‚r¼ØPš [­‘öÃkÈɘ²2dcdË% ìž6GòÙ£ç£";ý@¨ßÎ…×?©Åä%Ì_Ò €óøõøj„¾‡Ö´*°Û“ÉîE³T§Î…D =Ó‡§¬TIñ“},;»»ÐÃäL¶¨™Ä|;÷ŒjúÍ„ëÃ:yóÛÝËÏÌm7ÇÿW¤úã÷²m´81´uš€[Tʉ Ø]äZ²÷‘¿„ü `–ÏšË ™¶­ØvL¡µÉ)·Øæ`•€ô©ã¾ô÷vœg˜]õa€§_ÛK®O¦JHà?¯ÚÑÿGö2‹‘Òrúê,²0÷YšæU°PãôpxVÇ™B>Ã@é!íy빦ù5‚ƒrz9•š=ff‰3)–‰|;ٞΧ ÷¬"ùÕ Ƙ†¾u¸A¨ß1Ç1=gŠä+‡ TP«P+ÊæR^Ê·VŒqÓÚ= ‡GàTc Oo­„{™¸ÍΩW,Þ)ñ¶µNþ(„iäþn¤¢y%g[]—®âcþ1ÁÆ|Ù¡²`™=:(Z%,Êwõyl¡¦ÅTÃ:¥Ás°ÞÅÿ-3ÎÑP×Põ÷¾ßÙ]äW¡Q[ìÚÀt_Ò݃iÿÉ£±‚ I¬%¸© §ÌˆI Eˆ© µ¤bCE÷¥‰I ƒ½˜m:ÆáMhtm!¦Ï»€¦ŸŸeùàÅ„:ùa·ÏÙ 9¡Õ)ën5£™ðâü»ÃGÆëóçš.ßxƒÁp¶¾½XÛ¡Œ£½1lÚÝå{%ã5ߦ6fQÆ:X³4æâ —eN¿Þgñ\/O]ПæîáO ÛCB¼’~•³<‹E|¡ç* à;sýFè,f±›>Õ·scNÔÀPÃa¡Uz¨6úàkÆ&#zkBûÇÀ¶ØD¢2w߀Dî î\C»z­Qø“­?ÇÇÈ-d Öe€°85DœiM϶W€§c“,N¼c¤?›7^ë8„'tG=«dµ|ª¨äú±˜Z瑉!’pÒ¶þ?XA¸ý&nó‚óë-g“´OÜ>–ÑŒEºBhQw­àìýâüî²öEìb½Ò6ᓨu >áøédpávài¶a§›»6­æý23B%ÌazÙWj¬D[3Ùš¼HfDÀíHü’’Ù€ƒöMà1d®ý»þŠŽ•~ïjÀ` ƒ ]µÕü¶³À¹y?ŽÌ†püƒ¿jœVŠ=W u¾€–íßêD€jTŠy=tq+M´!Test User ˆ` EŽ8 € HU툓ëçɶ €;ÃCÆÅ<›¦¡…ü+=¤;³#C ´9ùiŒxÝé¿• ¤lä¨vOQ°cEŽ8°Ý_E°B·§\ ¶_9®²ùóèFrÈ6¡vLˆ'xÃÂ-3ÍŠÖ!~ðSìþµ†‹¡4­yγúÌ 5~å sƒ=…mjo[ß´jîöž’ J¡yWþ'f¾ ÛX:¼N?r ËwpJl a7Hê†Ü¸âËï‘xH’&>jMa€õ¹–н‹eä0o2ºSªPÔ},ê¯=óe†ƒßAT´Ó©òSTBâÆ;hI ðz¾øšþÏWÊWg€ñp¹1 ¿&A]fú“ Svÿï!AÉJ9“Ù®ýï ¡Ææ‚×·–­_K1±˜IÔ7¢ÊÆA ëñÖBwgþ'“&`¦»PôaìCá Kêêí6ØÍ´–sö—’u×úGt>¦µÑ›´Iù™ãsˆÜf0¾Ú›Ìn;œ¹ªË¡m¶d¿h¿®Ð¤œŠ$‚Í,‰ÖÂ*±¡ܨ$äžo Ü; ’ñ¬KÐ4¡51*~dP—Š’vUvÓYéÏ7§Ã¿›Ý)ëvpæ“èß²ôüo#S z¾t1Vg"ìS3>âÔÐ|­j‡˜Œu ·Ã-y¦ °f‰2;8Õœ°! ª%rðôKùxø“:—ñò}"3•PµÛôâ=+Æ3ø)%Ú)ݵRiVx^}_ndú;·îl z‚³9œ€ÍþŠŽ•~ïjÀ`4ÀºÛÀ7<\XÙH‘lÞãt›ˆ¢úÞ»ÇØj" ;±…“UƒåC‘ÏpÐ. "¥#×L”ÎùÇžƒvEvi‘=™c,ºQ³è¢ÁˆI EŽ8 HU툓ëçá —uá€6—{Ta°5ú *@“þ «n¦‚kÐøÖÚ™LüF?°•»F+v©O#H—!Å_kbcÿ”{ݱglZä¿·,îFXžó @ž{¡wÜ’šÒÓÉ?ÂÔÆó£ûsá( }ÛfQ ^ë)ѲìK=Rÿ™¬”‘t I>c1jJsZÁÀæÁß¿ÁËŸêˆ` F+v € Ÿ¦bÀmâ/Â7 Á·‰‰”k ŠœòIj‰²Q¾Ÿi–E$䵯îwrµ)3häć°=F+v0«á£*ˆbl"c eÐÃÈ—6×6‹Ào ~±5rD:ã– ´"Û^³Uj‰±;Ñüö®NüK÷ØÏìD€“2}œÎTó1c@»»vÇÉ:•ÿAp(ÈÆ3V•ÚéjiVK&¾!¥Ücƒ)ßMJ­˜ØµCÀÇ,yïÎF|®HœhmÒlŽÊ²> 9¸{dþ1¦ ÓøosÇ&ïB%z·uï$iXÆ¿n–—5d±®~¸ð:Ѝò „hý+þWt€5#˜%‚=¶r…âÌ` °:çÖ6{ǽ³KHB’z§@ŒpfhØž]àšß —¿o•¸"×àKýƒû"?‹þ!$ä‡jXÙ1^Ѧ†3µ-,AþùŸLÉ:D/ò9hèÅpÏñÖsÙ©ÚÅy¢@~K€è—úi¬Z³é"±Ü66µØJöÔºæè!ŸÊªv× eÃ8ੈoQÀºÒåº0I±hè°à€~,ïÎF+<-ÓG~%žZEÖzÆÁJèåƒqÔ‡ÐgºÍ…ôQËÈèyŽ™áw3Ç™D}p½HPµýl;±”ŠwwçkÛ)è5/„`‹§æ#ØåÞUÜÔlÈâPÍ3&íÕ4;*ôƒùÕÝÌ"Æã…ý|؈2©ìà OOä}‘wR>_V\Q" R{&½ˆ4T tC(˜·8ôÏg7™ &‘-B{LHøDBáv%EOfrS{@£Ýù|@ˆI F+v0 Ÿ¦bÀmâ/Âì ¨d*KpiÙiÝB¦I¼pR»‡ôT ²Tø"’EÔ[2ð>£+ØV ÷ƒ÷°•»F,w™“>|iÀ1}a9šc¨Irʼnó…Âð g+n/ÜŠ5‘‰ tlß)¯„æ?Ö)÷®‘)¥ÞŸsŸ—²ú›±1Äž Üõ|³²nçò²(ÂÛ™öølåtÂ¥Q:Qªiò(©{d†ÝëcÃ#“7_œyeÑñ¯^{dlë; ›g¾0º†—*ƒ¯ÆÁËW…ÙQéþ3šó+q;bó‹­·’ÌòAp…r5­ê+ ”óL<»™VæÏ >9GÝâM¹ ú®çpéT±zAŠ ^¸Šb¯º(Íiü˜†Me¶ö7ÚÎsˆà_å¨zÐë)“L¼z°€ªbq¥2që+/~ø=ªv#3}Ẍ¦Õ(Ò»Qþ)3$„:¼’eqNg¼eg䌵fßR:=Ÿ®²ÒƸÉgË)‹z²…ø¹ ªMté“ddQŽÖ¼(êH„ˆY{¶êµA~å«ð‹*|5Š“pd±¼¼±]¡¡˜Fdˆ’¹5šS+yÄ—–ð]œn±ÚáÏ’SÝc_’6»AS®N—kS+½t NúŸV lk´#random@localhost ˆ` F,w™ €  ÈŒßXDþæ{¾ŸUü) Þ³ÂÖ§©_n@#²Ÿo¥8FX˜g8JØAæ4ï½ ©«°=F,w¥íôìÆˆm*y6”©1vÕ}å%±Ü}/ÃÇÓæ€ 1ž¦“¼^ï¹ê­Ô$Ä gl¦6y0dÔ ¿Ë¶‘vöf¹%nÀ¼± 1‹ªÿAÞì {&’|eîó^6c ˆŠêUì¿GÃÓ šfCàÈïi5ñ+dmß¹k¯Q¬’i’ü÷Å»Sp~FÁCOEºaû{†¸ÈPÖ0 ‘Yg©„O÷ÛÛVO„„á)eÖLr§ho]Cî(ûxùŒXÍ”$„¸ß™ÿ¶ ÎHg0“^r?õmAºx0cÿ’ÕR6÷¸T8zž¤W4ç$ÑM3ço}Ýi­9õ_zÁÀæ—@YŠÂ²è‡I(bµ(Ô¬õ—RöúËœ!’9¤ç ù’X£Ñ$ÇrÒ”ÃÝ» ×vm¶fLÓäy«î 1X‡ùÐ>äY&¥^­:}xb±–{Ì‚ž÷5B› ›ù~@kÂcÃDŠßÛûöXä£|nªo‚f«‡‡ŠDm¬¡Ë}½Ì_C’¸¿Tÿ!<¡ÁàNÏ_jÝÐiÂøºõgäý— ´ƒhç Date: Sun, 07 Jan 2007 17:13:23 +0300 From: "Ruslan U. Zakirov" User-Agent: Thunderbird 1.5.0.9 (X11/20061221) MIME-Version: 1.0 To: rt@example.com Subject: test X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/mixed; boundary="------------030903040907010006050500" This is a multi-part message in MIME format. --------------030903040907010006050500 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFoQADtaRiGUNF96URAmHSAKCDdVnRJ2gb1idhE1ZXEg1JARalsQCgkaU8 74cnNxVyp/0XwBA73qzkvx0= =UmxP -----END PGP SIGNATURE----- --------------030903040907010006050500 Content-Type: text/plain; name="test.txt" Content-Transfer-Encoding: base64 Content-Disposition: inline; filename="test.txt" YXR0YWNobWVudAo= --------------030903040907010006050500 Content-Type: application/pgp-signature; name="test.txt.sig" Content-Transfer-Encoding: base64 Content-Disposition: inline; filename="test.txt.sig" iD8DBQBFoQADtaRiGUNF96URAqmBAJ42zyr06nK6R4dNpZD5067DNDgjRwCgkR+SKgz7OdAq p11D7PQGCR1Wuvg= --------------030903040907010006050500-- rt-4.4.2/t/data/gnupg/emails/0000775000175000017500000000000013131430353015600 5ustar vagrantvagrantrt-4.4.2/t/data/gnupg/emails/2-signed-MIME-plain-with-attachment.txt0000664000175000017500000000237613131430353024706 0ustar vagrantvagrantReceived: by anduril (Postfix, from userid 1000) id 74BF637F75; Mon, 13 Aug 2007 15:23:57 -0400 (EDT) Date: Mon, 13 Aug 2007 15:23:57 -0400 To: rt-recipient@example.com Subject: Test Email ID:2 Message-ID: <20070813192357.GB6392@mit.edu> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bKyqfOwhbdpXa4YI" Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: rt-test@example.com --bKyqfOwhbdpXa4YI Content-Type: multipart/mixed; boundary="DKU6Jbt7q3WqK7+M" Content-Disposition: inline --DKU6Jbt7q3WqK7+M Content-Type: text/plain; charset=us-ascii Content-Disposition: inline This is a test email with a text attachment. ID:2 --DKU6Jbt7q3WqK7+M Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=text-attachment This is a test attachment. The magic word is: zanzibar. --DKU6Jbt7q3WqK7+M-- --bKyqfOwhbdpXa4YI Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGwK/N0ygDXYSIHxsRAlbuAJ4wxUVCNerg6dLm+w7llCj51YYbFACgvNJR ajbUy9MMkljajl6Of3IlqRA= =R6Gi -----END PGP SIGNATURE----- --bKyqfOwhbdpXa4YI-- rt-4.4.2/t/data/gnupg/emails/11-encrypted-inline-attachment.txt0000664000175000017500000000774213131430353024171 0ustar vagrantvagrantMessage-ID: <46BCDCA0.4000205@mit.edu> Date: Fri, 10 Aug 2007 17:46:08 -0400 From: rt-test@example.com User-Agent: Thunderbird 1.5.0.12 (X11/20070604) MIME-Version: 1.0 To: rt-recipient@example.com Subject: Test Email ID:11 X-Enigmail-Version: 0.94.2.0 Content-Type: multipart/mixed; boundary="------------010900070701080408060501" This is a multi-part message in MIME format. --------------010900070701080408060501 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit -----BEGIN PGP MESSAGE----- Charset: ISO-8859-1 Version: GnuPG v1.4.6 (GNU/Linux) hQIOA076g5OuwfIOEAf/dbKZrl//1Q5r/FjPmqjp2+NDajR7Fj2afjKtkR8ySKni gc8kTvx2ceQ8bdOMfdn2AngPlKKyADp8xLDge3hwZg/mBRpOtk5B6eqGZDSwDxgQ Q2+mUVilhDBqLB5uv4rXoclT/JqR/WBWW1SjZgVVaf/lB9mI5amcmOPuY5vBq/iY q+qBAlWc27AfafGPSz0nifohc2qmq/pj2G6YDkKBE01EZRwbwvm35bTjI6rFL6dp Zzx2kGhAu928orL5Ft/KtyOEqdGwGlrGApLVV2X6+G1X6ASdgR24OAqnPxYMnhoT I3uYidSE6DSmUAm4R0rGRc1yMG5rBgRDDOYumRJFHAgA9WsNlQTkSuzypFzW7xT1 zAzurHA1OYttjjWSAFb/eOnLxc27r1mBS0JVoEz/9+HtHOgGcsRe/sym6uwOOMT1 znpgRGtQ+vL0bwBK3HyLqQzY9o5BGphf3ipCpI6HWwBDdGUJT+K7S8J9Og4AmV9V iq6V1PCdGwWS/XD4tulHIPUiA7Z6osVqtbHVTuQNWwsFU06SEHOmhNEGDSmO7Q7i bUS1YvC1STmJttzSsh+A/dh7uN/mfrPG1BJEAi4iZRGM6GFoKS5CQnpyQ4Az222n w1iB3u170ijcgLvDNR1Nz5DVnXdJcbVg46GvAGjctI7qWmFIKuazCA/AA0hwRjfz j4UCDgOxaIPydPr+7xAH/AzvNqeXEU9n7Y7K6rALWKwETU98ltzyp0FdO0YCbN/Z HWAyazGpPL6VqECWdc9xAYa1zYRf9HEW25yi5BMqbPav7oxfkEMbfLEl2OJr+EfO /GeTijv8riPFazcXdj7CKuumsld/GQgVLjwmRdoVtGN8WMRZfM/CII6uhg2wVbxq iThRc03DSNwLr0N0aNr66rySOnvTZNEARljPA1VaRgy1YkHXAyj6Z+s5OBZgj3yh 3f6KZXaRBq9r+7iXJFuOpQ35k/pykHL6wwaTYMmEvlPZ9EO1zgvBxS6NWm4Ct4+X l9anXjRRPS9aSEUZQRjP6VfQPrrlhBNIgAEoKHlIJe4H/RVbTUAqRlTf3k4XBwkR HoTk/b/vM5grRQTR12DLXKB+NeNEpQPQFbdFOhfX22ZJbVzl3CVxaOEYHB29KT4D 2frp99spiO8gksYdC5kviXeXXlXINtqsAWCEQr96wOlE03NuKh9TLF3ykAKageqr yDVdFjmeuMwL5XWVdWFUCDKROQz0gbX3WglCVhccrB4aMPx1vP4HiQIn7R2Q9/GJ I0lrn/se5GuT078BnhpApZkA0zU+Fi32NWTY7TLXYKxK1BpHWREEFIwrPe1D3Sot tLh+E65rDp2dt9LrZgGerSQqP1V8z50reNcGdRuWXfJSBwWJfVVo6ApEqD17bPo1 Y8HSfAGGTN7euRDBuov2eMPKlLTYqQAqOE7DJK1IWQtw9aIMxLuTBCORy+DHh8v3 elFBb1PxNZ64BJrOK4+gUm09eizynTdtHYhvhe8Gplu6JO5U28djXVqlIiHtEhF1 VltikOnWlztV/2M8XoUKZneB9MBqhJ3W0lqN5Xzw7Jk= =bB9/ -----END PGP MESSAGE----- --------------010900070701080408060501 Content-Type: application/octet-stream; name="text-attachment.pgp" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="text-attachment.pgp" hQIOA076g5OuwfIOEAf+KE8JLsuGPug17A+1JJwCliRR8Iid4CxXyFplTXYgeFGKh2EN0UJw Rj0k10BKnefbhL2gRM90aQaAF4gBF9mCh4H4Rg1reZ5ohoinNPk1Qgkotx1JnyVxIEk7mzKE tDIU4BGdcaN6LPhlBRBsSA/nzA19oM8HwecBstws9fbS6ZRwV8XLXKEWsQASEfmJxSYWpdkJ GEWIprcwkKClXf9RO+FXhFeg9i1ucFC05/1053w1CZtBAB9ohqs/GhILiCzVc8RZtQ+Xig6c Pdv7Q7zZBRy3lFz3o6bAjefxZfNbvVZmuJGMLPrevXF02v4aGazCtzqm7wR5cH0sxaaW0maD Fgf8DAeE4A+GqG16s6GGodVllO2JsDWYlyVnf+kfE4FU94uspYteDeGBf4zXhd9ccRYOnDWO o6yBwgonzgrZHicF6kcYhJLQS0uM4C1cK9S5nh6CP8cZEUUmEar9g5TKQjWivNGl4qNdzm10 4dZOK1/u5xFb6dkrqOZ1a1M2DfrZRxgdz2RwZZbwre88wGKP3taBtvJvFXk26QNEa78fuoGL wqo3jvsn1evswD/JL4bVJl6VGRDNAsqSxkR6209W8qseFA1tw1aFM8XhpZzhchOlshg+ri60 r7fMKln4t1hiaBstROGCCtdLomb4ezxJQddp/SH4K3XdHBJg+4ttjsUmkoUCDgOxaIPydPr+ 7xAH/RbwjSq8A8C7lJVXcwnmEIIpQfaKNaFkSRhp9+/y8e8skhUz6JRopeLnMv0u4o6jos+2 9VGQ8ei+wzA8NgIbWtnxktT4aobI+lWpy7fyC13aMcG64lYbDUjktW7YNxkMYD9+Pk5bBpwJ hf9cXhfdSPPofqUM1DmA1LcrkkO+d/qvTCnHjrrjwvTFGBmvKi+iKUk1pltTvOdc5rkK7oI4 6U6JTYWp9HfvNt7oYCMuILYEftvY0XhBCiUIWUClsQ7WhfqoGpix1peOv4ajzDYeDPo18cMi oyDrAHAeWAOjYWtuDXOtwpdaWkAoxgZOJgcu2ZVUWdGyFYvSCwOxfZYzv5IH/2a3xIjO21OC M5ql+lXb1OFfqsqXYXAhOP5+JhBOa5UN+VBIKG9pxVL48mWCK1GwHN5RX5aB+ky6tvkrK1QD XjCZRxj8o+le03bZ16QiWSEuqxTg2e4/zWY1ZUXBqkxpBVRwT5hzEbLVays0Bju6vKV8CyX9 apFxFf/vWZ347x+/cK6jc/Bpc8u9PSdOBwGC1ReZixmvgL3fI9ozLOlkNXGvjKxx2Ui6v6LB e6SBQsD0cnhRGgfWXgJQsmmPDVPbcmM9+pU/p4JsqdA15lNUILXeeiieFNGHjUORgZtjhY45 Z1Hw8EOfZWBquFbNt5tRaR6UmroviHO4kNx5N39DtfvSegEma6N5QIsTxrpw0IP2NMVXJ9qa 4in+Orrc1EQfljFTLYSyK3zowghdHlZsMUo7d5+AMjDlsjKf9H0f1gMB8hWebQQNlyNOmKa/ uHMcJVlbpGFCOspBgN4N2+s/Ldz+c9hy9W9x7J5U2bcdsdbEKlMF0EkgUE+f3Jhc --------------010900070701080408060501-- rt-4.4.2/t/data/gnupg/emails/12-encrypted-inline-binary.txt0000664000175000017500000001054013131430353023314 0ustar vagrantvagrantMessage-ID: <46BCDCF2.3080704@mit.edu> Date: Fri, 10 Aug 2007 17:47:30 -0400 From: rt-test@example.com User-Agent: Thunderbird 1.5.0.12 (X11/20070604) MIME-Version: 1.0 To: rt-recipient@example.com Subject: Test Email ID:12 X-Enigmail-Version: 0.94.2.0 Content-Type: multipart/mixed; boundary="------------090206040704060905090502" This is a multi-part message in MIME format. --------------090206040704060905090502 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit -----BEGIN PGP MESSAGE----- Charset: ISO-8859-1 Version: GnuPG v1.4.6 (GNU/Linux) hQIOA076g5OuwfIOEAf/bD4qivq3N/0qZZnLucbOARr1mypqomT+gvm1It/DllR/ F3RRLlm0wcBoVQp52aNecT9OJiZNh32oxPW78XBG2OCZv+jATd2vMf4ESOX1Pj4+ 1DATM9V3lOJ8XYJqAX9dVe3MdUntpwqmGvlv2bYmbrc1o6IVQroPm6eV+ttB0BKc ELj+1NjpaXDGERoV2P300JcJNR6tu9pXo56kz1vAjAQj/xQBNCoSOxBB1TJA1sKF iNuQVObWYG2cE63PRZFTlzvTofeHo9kt9ykfyfNMnslwAaXPI5LJP3KGjUOZiomq XA+FYLzMuFzHaOgRGcpJGKTeZ578N7WZ21zmNOgS8ggA0/RNae8CHklYRd9sySdo 0vxoAO6pokK9HSCaxeX96nS4JJfij/uTMRyR1cbwFBvJSQHUtGNGL1Tn9vhgGfqL TjrkvkC/HhBqu4QDYH3ekobV/tu/uQjGhxAASTFB5vtYSQvZtmCR1COTmO559aDz oO+93N4x3AOhC1Nhcmyds9mSCKCt4TCWE3gmHuPKYuLpSwj5Ndi5er6jCsq7RpsJ W0GzGOGg8wUUPDgBWJbXS5CVAkiJs/SlP0yUqeVR18mf9r/oKUt9DL3GCp230/o+ 0wyVkzqOBPNiIHpFRN1NhikXdKRVOL4ewJeCc9nrlBtLwqpEyZ1g4Ht7SKkE3rl1 64UCDgOxaIPydPr+7xAH+gNwaV49PwLd8WUJpPuL+YmH5RRsAasWvX+VlnxM+g/7 cn1BrvpXekq7vctMByxHaV2WnaC42n4M8xC+V1B/7Wk1rmhRMZKpIVjM6X9eNsPg FvOX5DhJdhgNOhjwT7rk29P24p9TQj06TwPnvLYjQJ6LViiX5l4T1YpG0mMb6Sc2 vmp1MbGeV8zZ3hVbSpWOmwlotvfiGa4LjLGNduXIiOFF93pviV2xApYNt+FgJHLc p63GfqUXuj/K2iqKwFIbo7nssx/ceWBRdlgPrE/MSStYhBm/e9mw55nwDsUIB4Pg tkle/6XgRsOgvHydiTD+mxng/1bx9cmvVtNfvOq82wMH/3JI/rfmQUQGRJ/JFufk Kl26lQcbd/Vyxff3MVww7oUFBY2oUPwYL/5N3TjhI7HwiCkMP6S9bL1AfHvkLenu n5GKjSLJmyx7BNQMEIIKWD4tNSjA0CCk3+QVGr9sRIVIVD44Be9I8jlcpkn2r5Qs 9djSXzEBpM+Aiqv5cCBFq2rgYyd9m2c2iHsI6EBaxCzYFz1qobsfvXk4a7ax0/Ck ug/jPEq8GK36UTp+51G8JhxzgJKSm4Fo7N3Os8emIlZ2QymPrzPkxEQj9eRsMmp3 qIQ0rOPjTC8847s4lIlAx7di80OYQ1dV2J8NLL/qxF09rr6f978oH59IfSHRKJ2b aCnSfAGfFBr68Zm20se6/0mzrYY2MDljPrKSDQPmNW7nJ761/YjMgVAeZlnKW7JM hTdZciuHMTX7+3BDTGCMbAnmYYWurX0jKGJ4X0UJLV8m4nsXvqHvsG6FBzVC5z2w kytey5Bqi2gXRjk6xqckH4O79kEJw0kLkxJbT9IPBKw= =vGEb -----END PGP MESSAGE----- --------------090206040704060905090502 Content-Type: application/octet-stream; name="favicon.png.pgp" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="favicon.png.pgp" hQIOA076g5OuwfIOEAf+P0Qp/k1B0WDRr9bNcEANStTaiefYoLrUrtMJv+aFtkiSqKfft0A9 okrYkVUKs6kxfgxueuqNMFQh58nl8+d7Z2qGIgVEXxC8rRxexEQ8mXu5LXzzBbc6Dq8Jsa7B bXzwGty51culYcKeMEjpEY8Qx76qoNQDNCuvth1JJxJ6xQix/pVyZZbJRu/nLrv1i3Z4KRFY qafnJlcsUTVj2o9dLfeU13z8nd0uBPY+hiCgYJHSPDLr+mkA+c6YK0m4a88r/wjLmsVHMkn2 N5nCjuqP4tzT8SCjhoICGTbu+fFdks9NhQjvsW7MHBi9HFFzm6SoEvquFHThzwMl3hAhTLpi Jwf/a6unMP/swAxoFTJ2GRXBmQOH4sJHR/M31rEVkLZGJixhU94Tpx8ptgLXqme5VCXgl+M3 Oh0GHRXqFYjR/HGUTZokRKR/BgCEpOGlH5FcabHiu/Gy8UBezPbuC+BNvxuCbuwODMp9R5DE F8RSCAQ1hrRoJjeHT2wyE7HdCvN/xx7NyenA3GdJa5Z6W7Y0gshr2fAOFL39jKXw4WwCh/Yq XnyG8uOyPgFrnHI3WpO24VpQHp3MBKebWNhQ/Opy/cABunCSwWQpDB9Ar4GeS3R1WGtMNC4r ph4afmTHJcQQkoa0VfvHL0hEzycwysYD46O9QhZfhxtKKShgX356oCeMEIUCDgOxaIPydPr+ 7xAH+gMnbi5OLPf5xMeZydvNWdHE/wJTub2rrWFtzvj0Aa5Ne/KFhcDDqSjaL3MXP1WfIJr1 /ANe1eWcM2hlYVDpEn6YOh0bz6BASE4kbHA5nGMyUrgH0hWfcOgkMUloRZdf1q32j80mchCJ rF4YsQ6EndnUYzAiXKHGJRUy/6IA2qBH2n/fRiyC2FmmQPtWO4c6t15Vgh4fB3QXSTri8J5r 577yIiHRE+dq6gg1BfyqCtw0DW56lSFQ7dxyMXeLyTGyjTGPlUDc+FbP23CRK7zDIVujARmm mX3bP2lMfCK326FwBZf2Q4Zl/ac1BN8Mcb4wwcnKvRzfEw8d1Y6pkphe7KYH/0MDDqtmuEw2 D/xdw4FHB16/HW32bcPaMVvFuseczEfrwPGCrCiPHPm++edAoY0rWoBtzHVpgN+s5bset5OR snhjuWceuCb+Ga0QV0s/xmIPIQ8VYaXyD5hob6nHEIeskS68Vbni0BpY3nejDPoV3dNHY2Tp 2fjYNHCpsdTz8yyavQVixoQjZQH9hUb48zZDHCt0Af9Rfq6Et5/Qr8iJqAyEU8JzZtrkpO4O HgLU7JTPLxOGzYtOj8JkLmLguVA5kOafAuU4OTEU43utQfS3KYbdEWT2jJ1QaJVS8CjFJrqH V99FUsDvgKWSTy5hA9gkQAQE1QdwkoQKpkCWm18KZqTSwNkBfrsEuvHC3Cz4Sy+cJmhr4Hvx dyZY8DuuWExUcVCjkeuASLgjLEgahnCbMkyKATazswwTEdfzjcOowjLTdaWFEN/Cg22nF/px 9MXMtzBkrTkjYPhfywETKoMVH/Nw7rRNZhkOSb5WJV5ynF1BlbzXI7Z8rA/KrIn8aydzwJUU qFr8Dw1C7kbE76+SFVWX8fqpwGmQhDAO+kos6ivgN9HDHtuXmwfGeROi2U0WcmFGbAyLo5fT LCcNPOMflU27WDXm8m+tjq9naUynqvwg5zBBz/xY67L1R8uOwfZplvRi35iZAJjzMHGirkiB W3ZDXbDqEfKl4aCXqU+XhQZsku2z3OtKZOBVVI5p8nGVEfavg6QECRUNUS7qbtMxlj5IwCGl babK3W5YVuERjklrrLUYZjqFIZ2yLK3Z2VmSn7yKAb/eRvdEeha+9PKcN11pXPkS/M3t+Vpr G+4TqNgqwLVWMvbENp08dS3OAPpZLDnqG9CJV0qacDMjv69X26V3Xp6vuZoKqAPxMG9QKAfX E9LInR1Kd0cpRUkb --------------090206040704060905090502-- rt-4.4.2/t/data/gnupg/emails/4-signed-inline-plain.txt0000664000175000017500000000127213131430353022332 0ustar vagrantvagrantReceived: by anduril (Postfix, from userid 1000) id 3EDA537F80; Mon, 13 Aug 2007 15:34:17 -0400 (EDT) Date: Mon, 13 Aug 2007 15:34:17 -0400 To: rt-recipient@example.com Subject: Test Email ID:4 Message-ID: <20070813193417.GD6392@mit.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: rt-test@example.com -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 This is a test email with inline signature. ID:4 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGwLI50ygDXYSIHxsRAp40AJ9ErYdLH2SVRXtgRtx7n/FVFOmKDwCgl/0T BeRSaF4Xbi8uGhVIkmU+YCs= =e4u6 -----END PGP SIGNATURE----- rt-4.4.2/t/data/gnupg/emails/17-signed-encrypted-inline-attachment.txt0000664000175000017500000001036313131430353025437 0ustar vagrantvagrantMessage-ID: <46D73CE2.8060202@example.com> Date: Fri, 31 Aug 2007 01:55:46 +0400 From: rt-test@example.com User-Agent: Thunderbird 2.0.0.6 (X11/20070804) MIME-Version: 1.0 To: rt-recipient@example.com Subject: Test Email ID:17 X-Enigmail-Version: 0.95.3 Content-Type: multipart/mixed; boundary="------------070807070206050202070908" This is a multi-part message in MIME format. --------------070807070206050202070908 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -----BEGIN PGP MESSAGE----- Charset: UTF-8 Version: GnuPG v1.4.7 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org hQIOA076g5OuwfIOEAgAn0IWP59DHAWRYz8MG09D5vp+V3rfVdwv8ud2hp/jAUDZ ogXobK3KkUH5CIDaohqgrxobAtU9D7XhxO1ti6G9ana7+u2GiTIQmC7F1THSipNJ GZajUNG4E0WQXjvkWvDgx2cLdjn+L/i4Y5lQvP6CEmzZpdfKQk4DZdmMJf/Fz0Ag jqPI0weYSEr8YBz/p0bEy2Xh7UPw8rwC6ajk/v/E/SfZXI+TpWnFxLt9OUN+o0E/ o8RQ+5LTpPvkR4RTFFnqZAKu8CU2LqNIWYlzhm67pi+QqeepMuhbW+Ix8tt6oBbN EXFrwBYfjLeLcmMJcm2fEwE7otDqKHHW5/G/lu8RBwf9E0TjxnGbpTH3ERrj172E T/LT0LD2qRitQQCdFyeDvnq6KKyoUtkyhwrrfpDfB1ZYBSjgIB8rgolbO6OxnY8s O6dob+07mQrC3EsbrTQhRjwtLCWB/4kaI0d/9Y4/InStq14AvW0wZWX3kukUq8Us ReJhrDA/fOV+duOQgcEc6ZsMjLE/snQv6KMN7ey7iOe10ejLs9qHFZClqHhpjbn7 zTPRapgTOV1hwBWq9603NDP1EQM/wAOFCw1TDUnhFOzUocpBfSwajWY1bKB4pz94 Nf/U4BBUFq3aQVX3g4mh4sBesYInZ8wMq7fw9fegyiaLL7YzTbxg/YSXHWkTaYCk YIUCDgOxaIPydPr+7xAH/1BIgIWDNzXHWbrmi2pxg547LWoJ3EpJQ46fk2ryfIll 6Ot1xpCXGStZA1bUnRB0KTZlTNVfXkIy2TuFKJ0xP5JgkeeVQ+Vn8wCXyPB1nYte WJ9aKHIk9UhKHhW6FHIjWs3CYjfmpJPaI3AXu4hwT/W1yPIFbAb2UYwuvRn5XABk RDxauFRDoHKPvy4IsorGBPIa5ZkJxuBsP7lxp03CfgnUHX7HYehlNp+rKzp82uLg fXJdwQAE3OcrnB7rbD9AirIyJpy4q/sYUOnC2M137PF+HYA5zCxktpnkVDtWd6Te DyQy7T5Ey5/NzP8IbJpS3Wv+bYOiozv1zNCZ4ZbopbcH/RKMlLN78fSTZmgC6Snb dcwZqi8lvL6vx83VBwUAaQeNDLvtlyjojt0UuDWUI3JQJpv5vcGdLjP21+5f/INt lua80hg/pKwoKijzQPPtnPBJQOiRkzIEYlaqMkmPi+jgkosf0kcAWxnQGt0L74tD Q4ENpgCK6jJVkQFN9Gd2efT7EFUc2acY7/YfFcTOBVm6xi0FXoa0HzL4NzMhbrsx NhlC7/Yp34y3NHjzVlMIKiU9kbHrVCyZyXKuSSV2em0a1SqbJu2wj2/qjK6Ibtts 0aowVn5HafWR6jm8sEEyX/v8c1BdR5Ibmup7Z2DPd0j+fY65GK0nNYZ5QeYq7PxR rSbSwA0B+Ot9P47q0c2vGrQF7EKvug2sgnE/9K8DX+Q5IVwMQEoJUZvKf66x7DTA YIMnWxlJeeU6fkURzeBpv0TzidU6/KRa/2xg/QoUTZvftAoaQidsajzFSIZTBEqC xjzLnkqlDMtlZYBtdvVYDxrBvj8u5whGnhe6GhO8GUfIe/N+bWM5N1kbUAsE7Tau ify77kszQdf20rLVO9eU0MjXyvKpWcT/Dpk/Nzth3iLACEtjr/dXo5pMwK0mofx1 I4lLS7P5PtTz4Oat7aV1up1o =LNkV -----END PGP MESSAGE----- --------------070807070206050202070908 Content-Type: application/octet-stream; name="text-attachment.pgp" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="text-attachment.pgp" hQIOA076g5OuwfIOEAf/fLTYMB41pbPXfa0LaNlQ5PVkAa8i9W/RVfA8s+BGgFYz/herlLi+ eCE9Ls1RoiEmh3e3ZOG0M/iPA0qBMryH4fcYWqx3R7uaZDVIOEcUM3lR9Q0ffNfGRyVMKX+N nUUI/HAaSLCl1NWF6Qnh+/S8tV97D6FDdqQqJKeG7HtPcXMJ3daqHcCl5mMrL/OgcwEcqdHl dw8VnESjnkQ3NAvzyNJEpyB7fHN6HtaynxmZbU262ez9Ywh8XsfBbKsDhnLRf/rEUt7X3RQz YjXL2C6scGT9ctZ6i1yxPQJOP1+Z+UxijfSd8S59n51/SATsdjmhNFst1JZTbX9Xm/Gv//mj aQgAuzhrqVBvyOtX1fMNxGACBhMuJKMLvb9bCltnl4V8IN76d1HP65bw9FvFC7JNcLnbeLBk 6J6CGhwZYcQHuLBiTAfycM636RotiszjLTx1/7j/Jp3vvzToLm3sNNb4INVmoRBrmVqqP2wl Ykl7mxdHAq0Lr6NMiTnk9/TVbJnXdCFseLONJaX6ZPrPZUbw6jhgDMeyAjoBkHJjGqfbde2S TsHvPvT53g8d2RgZx5ATptTphU5QsBbS0eYEIiKoU4lUh7augb6EratU63xTsKc9pJ8DJOqB l7Ic1ujUDQqlccTVJgYyIJJVO/GUR/AkIYrzWcvEwhtk+PW5CMwrcbEo5IUCDgOxaIPydPr+ 7xAH/RYdKbPnEo/0R8mZls6xuycjGoGNWYuhhaze7NiDPuflz/oMkPL9f/o/7a+9t5mBbdQ9 XXnNKuhclocbDg6N/TLXWWw9011Ba2ko2l8LpvzlLo7oARaMYZu4kmMYZIkIeQ2GW97gIV4w yXLJOuVnH5cudt36/P4QqJM0PxSqmQA5sqAMB7cvgK3RFKbDvvrMvmyrdoTFmrcFhKMWbTq+ g51hVLm7HEHjicP6LEhHv7m4ooe+rojS4D+0HofvkPou4XWJ+R2T4CVKOSfobrp0RjMqjRuJ PvdzhyUNjP1qhtvUyM0JBgYHd7biFKOKjYG7E7j9+5EhHG0uSG+xRWq9NtgH+QF2Mhb1WB24 lpXZM2KPM6OdStgEJFEzjr9DwULJpEzQhvOAUI45Jd7oqLQjEdmzuPmkEBdNfcUBKkCNdADp JBn/0Ak2C4OQImtZX6kyJ2afF7zwMQ5J1eH2e/eOYJTOAVnt29EH51UZHi6OCWosYQhDMNZW 8AXoza4H3474bPzlxw7utSRm/CJwetrmp3L9BahuEheYv3PZCmy/1aHpt5OHIJDmrDVMzaAH DhWNkRuY4/CLvg/+r4W21Y7tsPllPGNfxLJt9kilu8F3M/alhNK8CxbM3sskNnxSPPid5vE2 e88iO74uhwvQzTrPKlXfsUDpnGacAwG3uNS3x3CbimjSwAkBjvCRETU1DziOU5xVTCGEQFPv gF3YtRG7Bmvm0d1zeAlPDuflRhadYCdNvy17gA8LI+YBuk74XavAqKURN6FEevULYaSPZCx8 HXgjE0uyo8U7l2D9hrYjGuvON84Cwp2O6+jsiLk4oVvdBVbb0PRz4xj/Egnlu+yjGD88Swge zpQzBdaqE8m6sizWBlYyPGh8amL8/PfS3OC6hZcg4LOiLhj+h+h3eeamTyAE62zjJjC4UMKc ZEI9ZhQ95BxH9bTS+JxP6UySLnQ= --------------070807070206050202070908-- rt-4.4.2/t/data/gnupg/emails/3-signed-MIME-plain-with-binary.txt0000664000175000017500000000325313131430353024036 0ustar vagrantvagrantReceived: by anduril (Postfix, from userid 1000) id 9745537F7B; Mon, 13 Aug 2007 15:29:41 -0400 (EDT) Date: Mon, 13 Aug 2007 15:29:41 -0400 To: rt-recipient@example.com Subject: Test Email ID:3 Message-ID: <20070813192941.GC6392@mit.edu> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pY3vCvL1qV+PayAL" Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: rt-test@example.com --pY3vCvL1qV+PayAL Content-Type: multipart/mixed; boundary="at6+YcpfzWZg/htY" Content-Disposition: inline --at6+YcpfzWZg/htY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline This is a test email with binary attachment and MIME signature. ID:3 --at6+YcpfzWZg/htY Content-Type: image/png Content-Disposition: attachment; filename="favicon.png" Content-Transfer-Encoding: base64 iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QAAAAAAAD5Q7t/AAAB BElEQVR42u1WWw6DMAwz0+5FbzbvZuZk2cfUritpea77wVIRIBQ7dhsBdIQkM8AMMJImyW6d BXweyJ7UAMnUvQFGwHp2bizIJfUTUHZO8j/k1pt8lntvchbdH8ndtqyS+Gj3fyVPAtZAkm3N ffCyi/chBIQQ3iqs3cQ0TZCERzbhngDocOS4z94wXTCmu2V45LuQW8hsSWpaP8v9sy+2IRZj ZTP5ububbp8Az4ly5W6QqJ33YwKSkIYbZVy5uNMFsOJGLaLTBMRC8Yy7bmR/OD8TUB00DvkW AcPSB7FIPoji0AGQBtU4jt+Fh1R6Dcc6B2Znv4HTHTiAJkfXv+ILFy5c8PACgtsiPj7qOgAA AAAASUVORK5CYII= --at6+YcpfzWZg/htY-- --pY3vCvL1qV+PayAL Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGwLEl0ygDXYSIHxsRAuYxAKDQeRS40bRiW5jmrwHNsCDN67vu7wCfV0Pd 7T/gCO7TrbuGaJ0BVsJnJsY= =Pjdg -----END PGP SIGNATURE----- --pY3vCvL1qV+PayAL-- rt-4.4.2/t/data/gnupg/emails/10-encrypted-inline-plain.txt0000664000175000017500000000260213131430353023131 0ustar vagrantvagrantReceived: by anduril (Postfix, from userid 1000) id 3AAFC37F5A; Fri, 10 Aug 2007 15:52:03 -0400 (EDT) Date: Fri, 10 Aug 2007 15:52:03 -0400 To: rt-recipient@example.com Subject: Test Email ID:10 Message-ID: <20070810195203.GB5815@mit.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-encrypted Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: rt-test@example.com -----BEGIN PGP MESSAGE----- Version: GnuPG v1.4.6 (GNU/Linux) hQIOA076g5OuwfIOEAgAyB2wkXAxcNw6+iKwzSlXlyZCsdZFSstJbhIr/i+ujIrk +NLUAIgPfgIeg1nGVVK1z/hszrHRo3FT2b+jSrPF2Ox/wsUqpSvDf641hFbDCIlx bbqNmUEOCP5Q64Bw+RHoDoGLx9CPgeXLbciXvPZtlC3MPqG9w8lQdJlhTM1lqwCs 1kqyvQ8YiFrvCNxU6x/81O9wWwiGOVELVnwX62crUK8howCpmeGx28Uo3HKG7NMv vTsdO6vwh38tNRz0kX05+AlxWP+3Vs4se6YwePc+XnhgWQoHqrYcxTOA0OrivJja 1ty5CAHzGudBdXBcDncg0+6d1Ih60d5JP7nhl3lyzAgArA8CO/iv/kFOkQN9qm4O 4zq189niju7mVCmcTLgBoxN2U1AeAlSl/JacPw4b3CGDQKmj1L/SMKOfUvOvCUlU o6XB7fHPxsFrJag9Yp5snenMRrvoUbypRljebHYsjtkCOsLqK7KUYLx2JQ/pHJjs AXwuyytBpLVxwEy0xkujpAQ4rsYT+z410zdH8hAthFo9FwFGKsT95WzfGcOa2+B3 Qi1LX2uav8q5PAQgbjatp/aiHn3mHZSkRtLbOPr9A8GkmjQaNqIFgUMfaKx2hu8z nIZmAjpZ8CDvyKoFU0g9Z2KqNPagOqHgq6sRKuAp/5nz62sMyl4Hc7UfeYMTHWn/ tNKCAYtyAHAGuvwLiRCN3M5h5Y1DdgEyIri7RtH/LW2QLCqYt9MLvmVRsPIEtuEh tZAb+KQzr9W6+fOhpW/1zkBCGxw2PEhv0HafXsVxEjOITbc2Hfwn9kySZ1aeSxL8 DXzE9fSwcCOXQE1YY7TVNKuqqm34BADCnO7jw/b8EaOHRWgElw== =MYSm -----END PGP MESSAGE----- rt-4.4.2/t/data/gnupg/emails/1-signed-MIME-plain.txt0000664000175000017500000000216713131430353021604 0ustar vagrantvagrantMessage-ID: <46D7309C.9040804@example.com> Date: Fri, 31 Aug 2007 01:03:24 +0400 From: rt-test@example.com User-Agent: Thunderbird 2.0.0.6 (X11/20070804) MIME-Version: 1.0 To: rt-recipient@example.com Subject: Test Email ID:1 X-Enigmail-Version: 0.95.3 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigF67974ED650702891ACEBB10" This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigF67974ED650702891ACEBB10 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable This is a test email with MIME signature. ID:1 --------------enigF67974ED650702891ACEBB10 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFG1zCi0ygDXYSIHxsRAqEmAJ9mKiEdoWg9IFGlUlhPrzo9+1tKSwCfdqRG +HKnj+81jWpBEhj6D00uNrQ= =ZFav -----END PGP SIGNATURE----- --------------enigF67974ED650702891ACEBB10-- rt-4.4.2/t/data/gnupg/emails/README0000664000175000017500000000156113131430353016463 0ustar vagrantvagrantSet of emails signed and/or encrypted using real MUAs(mutt, thunderbird). All messages have subejct 'Test Email ID:\d+'. ID matches number in name of the corresponding file. Top most entity of a message as well contains 'ID:\d+' text. Emails may have either text plain or binary attachment. Text of plain attachment is "This is a test attachment. The magic word is: zanzibar." Content of binary attachment is RT's favicon.png. Encrypted messages encrypted for rt-recipient@example.com. Messages signed using rt-test@example.com key. Name of a file may contain the following parts separated by dash: * signed * encrypted * MIME - RFC format * inline - inline format * with-attachment - text plain attachment * with-binary - binary attachment In total 18 emails using all possible combinations. 18 = 3 (signed/encrypted/both) * 2 (MIME/inline) * 3 (no/text/binary) rt-4.4.2/t/data/gnupg/emails/18-signed-encrypted-inline-binary.txt0000664000175000017500000001106713131430353024576 0ustar vagrantvagrantMessage-ID: <46BCDC0C.6090400@mit.edu> Date: Fri, 10 Aug 2007 17:43:40 -0400 From: rt-test@example.com User-Agent: Thunderbird 1.5.0.12 (X11/20070604) MIME-Version: 1.0 To: rt-recipient@example.com Subject: Test Email ID:18 X-Enigmail-Version: 0.94.2.0 Content-Type: multipart/mixed; boundary="------------090909060406090905060708" This is a multi-part message in MIME format. --------------090909060406090905060708 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit -----BEGIN PGP MESSAGE----- Charset: ISO-8859-1 Version: GnuPG v1.4.6 (GNU/Linux) hQIOA076g5OuwfIOEAf+KwEEEyzyWahb5iwjSff0D3MfGimfD7AJTEBjjDgtxcC4 8xKSJsXhZ2feCi3Wx3TYAoFedoiR0DkyNd//B6dE51bpDpoUX1R8M4W0tOKH03ZZ N3sIBYSnJBF66GdLfjSvyEGD9sdi+OnWTv9DbQ4x9Sq2d3u8PBLu3krwk75hJEH7 z9Q4rhqzpRU9ymhWpS/QPd+4SvuhlJ0ciUGeYLmOFc1YAUJNWzTtnja/jZptFY7l 8oDXtHTapeJPB9M0WaDf6R60Evkl9DcvGA6FRBMCzWRjqMSdAPGYiceeMiDYcwCq hJWSzbDKAHDSY2qwlHZ+2y7mIze3x05qcBHYCIOKewgA5mer22WKZIiEP++p4TZF kJbwFxfCqf7mB/nsRGDWsfThGED4KSr18feba8ychNLbVx83FEtTZ5tei96N6NrK eS6BdjedTCbvrq7lhIFmC/qPXy/5cjNxr50RBT0sLUEdnY9dhrwLxo69Rqr5qHQT luYu7/NhQwOV8OlMTpvy/AfUXGiICLa1iBxtVK8UQ9YMLe1GOyCmseeF3UyfTmKN YfEylY17YRsmYZerulSwsHnEoCipjEHOwzksR5zXDHmnv7cqVq1gV1SnjSXOd1Cd QuJFdXY5fBdugcrAAJsiB8Iq4t0B7Ai1Lou6x+kKQoigF4i3zhSmH6blZmc99B1r jYUCDgOxaIPydPr+7xAH/j7bst78EmNmr4RJvQ4A5bss5BJeOdG36MsTkQ4rXTKv tA+chOccB3irMYqpWpKoDMWRz8VgAu9MVVc8SBUr6XRIhLRyCpuZxlwLA+EJJUk6 yeKBHZZ8KgQ+PgC6WYMaTcRRLeOWbTxhhIrZmT2EbEEDE1jbeeLNrEu1wmrdMBBb fhtQTjOHKb7iau3LOGTbbV+F9llnPHrdy2WTp8ozFbsruEqdUG85zQ8X58sy/iC4 hS9mj+vRs8nanbYABfDHUhoBk8VWUWPlpWTUfzDX0Wuai7LWo5wn7mK0p2i84vMU IghS5OGRJfrGVK/1giklqUrmPuiz8M2bG9voLoOVnVIH/izycMW2zZh12TD+YySt D1NP6OPy/5PgYgVZvzTYtOW7Y5EI1eTYoC0cMgjITokq6NKqN9aI7sReVV9P24El J/LxLvv9Nk7/8Jq6z1CjF0THtFg1mQYTWn52mrYwBr7aPpv/UDDFA0dmIancXwf0 CHwFMMHFlYSBChy/vwx8+QiE60pLiz6EnajSq8lEQCf6nSFIvmkWn8y3IxmYRgr/ CMn0BZc+VLgyzIJYG1Ygll10vXDdmjV4Y4f33stWr2Qse5Wp2Pyg/Lsfqw3C7+H1 1BoxYJma2NmJ6sQu8xDNKPt8dsyOCYEyJqf8KGhi8eslRPuilKOreZ9b/KZh6OE2 cNTSwA4Buvhbv4626sdq/BJxEi4Cxrhu3dMPCyeyl1540BOSMpThXdKa5pheJTs1 78UDi87cJBZx8eQ5Gcg2VfwXkolc/dOvIRBEvnuIvA/3DaqH4gxMZ90UCFSzZ9Jm By83H0GVB0l8UbneSKtbr4wms5qjSUUzT7NTmqOdZwFmxJIbB0hVZtC1ve00WlkG qSmK2BXyG2bccsjeC/XOKO2WmZm9Gfuvtr6KcOnHFQYj08ZSfDPzJCuY7PK4/egc TR4wApehk6BzQwbz66uN2PlHIw== =2ZQG -----END PGP MESSAGE----- --------------090909060406090905060708 Content-Type: application/octet-stream; name="favicon.png.pgp" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="favicon.png.pgp" hQIOA076g5OuwfIOEAf/fVq/LJs3vrFnybm6thFjpDte1mawn7xw9op6UIFqEFRjkesreTn2 b4vzYgi/8HUKJj6A/b9OBBobsOuHkKddZ+wRnTnMTc6ZGahJOFdOc3C84hEJYvyEgRqJ9hBh F6awMfPYHIfN3y6PpeJ8jbtWN2QxYvy9a9dsb7oUGi9FuBC7nI0qIqdxeLwjK4MkVGzDhdJU N4OCCe3LhYyD+Ev8Ote2NiWFdPnCkFiO6vwYI1cEyzltJXeOXYe/7YCKDb3FcTG9UszG2nDl jz7hIXF4NtYVQjIxxtRxPfxKgkzboXIoAD1enJpBkNtTdVS3jtdbFvSlypDhG3+mfMlUo/k4 vwf/RF+30fL1kZjue/Jecd4oh6NcOokKRRScIwxTwittYPVYtR5W+swTRyF+YA5SLfygmmYb QHDjFX+cOx8u8WzmVgK4szOBgh921p6DWxMdD6aLK2wDT//ZVdRDqNV/0AbApexlDriCP/CH 8BQxHKTCsentMtdVDf66Y/44K6HYceeU8iZT3pvQKXfAmetiMau7G/pN+BvkN2HXFhBPa8id dHYIpixvjk7Mg3PBzt6mJa4SOSf8vzProFx4UmnkexOQcRxpS0Zoep1mB16oWqm7tXEUjBJx 39BwDg8e9sU4Yrri2WzUkIPU0pG3ub5sxbCTMSxMJnZkRk8ul8s9GMtWYIUCDgOxaIPydPr+ 7xAIAIu4kheO0n6eNJeng1XE/giRvZodwsO27kA00KIW8mi6WGLvehlmFoxntck1r2oCNVvH Oj94nfWsG2i1zvjQDvMp2Cnp3KTmhTrOss37dFayWVODF/Q9Kx+7WXnh9zCEjQe0eCd6PiKF fvb4zCU3ANAY8dTmqRcDDB9TK39nafpWHEfzhjClHrQhuQDh+yb4ayXAvUXkNLIYzAvuwvku 9x46MPLHf/4VVQAplymRvsMy/Vj3R9triHoE9tD42EOWgbo525IwLQ590x/AZoZhkCOeffWv 6fq29Z6om8TqFTHFGPb7I88s5ihlpvUgvXkAA7ZYdF6q06pDldWqVOCUm98H/0LZKiiURX1P 30EAe7DpKi0bAUvHj2Qc5GCU+Hf1ASGJmeENFNMwY+eDwYA6wuBf0tN5zitvncUj5SBZjXjV o8Uz7JJ9/6BuUcfAa4/O2qTIFdctBI9bwzzzuXYF3LbYXfjB4WmoaR0nRh8kTlpgFij7WQlg l+C1G630ynSm4bVHSmD0J/kBDfNUF7Kyr/riPuqnyqf2wVffbLIJYe/axb4slACZ+F4FhfsZ 0NLYL2+pvGW05sv+k/kEyhSQeQZwmu8X4iZdfFK6kOpkHeS7K/yFX7BYRD9nMnZ5Zwekh8l7 eVno90OdJ4rVJkp4+c2N3kEPPLgrEVlaut9gybv553PSwSIBeo8TwJX0khartEsmJRh4fuQq Ni8JhsMDG5Mr8DMvmjhWy5Awp+uQ+neNcnk11wQ+OYDFw4JopRED0m+igEK0i/737ANzEhLN ssbKnPSivQCBo7Yzv9o3XUx+UU4c3E2bE3MQRGDgDmB1SS2h+wyLDWDoBHGXZ17Hxcb83huJ HxFt+5e2K8T6hL3Rwghtg1DHt9eVS05v35xomDn1zPR+EWTEEhvWrPEw00CGpsq3ub4vJajJ Aa+4ClaBivaZVKE4rC87cdLNkiBFbXR3ROvkzoSnrA7/ZUgupDLfagDQKAj91hC1hmF1nRix SOIYGGeM1IsKm806Ah58IOUWsE5vAzoFqCMB4kYNZLbXU1ccxZVTU6QnpE8DzHoDqOtyN5y3 2nyRLH9jBwKfECR3YHH3NxRbbI317fhmU5pAvRWeHpRp1yzGrCf21lgx12Ot1EWxHuXrd23p 0O2EiQAcwadItgkfKW+UwAxGsVX+vueqSBYmYViCTFWKGqMXmgXgirR4nLt7L20WqrXBFKBH ms+7e9LwLHStfAzilr1deHnriNfwz0b9UPAvCV3n6FN3uz2asBWZKjOxlEr2VmaQYLiiFWe0 UhX685wevk7AOX2LZ7iq7SkVmMLSIMgOVI8vmt2PEw== --------------090909060406090905060708-- rt-4.4.2/t/data/gnupg/emails/13-signed-encrypted-MIME-plain.txt0000664000175000017500000000354313131430353023661 0ustar vagrantvagrantReceived: by anduril (Postfix, from userid 1000) id 19FD037F61; Fri, 10 Aug 2007 16:03:35 -0400 (EDT) Date: Fri, 10 Aug 2007 16:03:35 -0400 To: rt-recipient@example.com Subject: Test Email ID:13 Message-ID: <20070810200335.GC5815@mit.edu> MIME-Version: 1.0 Content-Type: multipart/encrypted; protocol="application/pgp-encrypted"; boundary="+nBD6E3TurpgldQp" Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: rt-test@example.com --+nBD6E3TurpgldQp Content-Type: application/pgp-encrypted Content-Disposition: attachment Version: 1 --+nBD6E3TurpgldQp Content-Type: application/octet-stream Content-Disposition: inline; filename="msg.asc" -----BEGIN PGP MESSAGE----- Version: GnuPG v1.4.6 (GNU/Linux) hQIOA076g5OuwfIOEAgAhFFX4adckICRP4VEhrElZ8rRYAwJVbTLd7S5yOnrovcG sRAIZTjEmb8CRPX926hm3fJ/5O+pm9ZPE1wzvEBQGcJ+6oZPD4GMwuMqJpaZLw4v 6zj4ogzac0i32vkwLYDLHXle9ytgiBwTFHuOKllCvBmTe5PrFAHqhA0EPJ824gD9 H93LJUyvn/elOHASKVcUhm1XLV0RxdNTh8Afc7dEAIr0uPaWu1rVatdnc9JnQjsB luYLP8M+UD9u/sZwSBv7x/PVIOE9QsaFQGQZTYEzKb/4zeujcUyM0+4rjJ+45QUX cDsrFVmXoQfts2nw0BN5mERZdbOIwvkhZMZzsf+EKgf/dA7x9rguO/eGy/keQf0f sBHAz24WGWRqcmRNdBsaecVgAsygAEi564RQYvxM7eJxqKl+1TsjUmGUAmacShN7 JjpqTH9HRrV522UNvVXFitel4Ri3UItP3zI+951x7YvkzUtIz8gfaCOHC71NmPBO RdKDDBYDEajJkYN6mhL+QpX9fIIP5ALkfVz0JmdHN1e81Z5myuEWnCSuxeyZHCgl Xw8PuV/Af/+GHqjNUaXRDxN4SWm82pKkK4rxioMI4liI5zuR73GH8wd1RjspCkKd gPEhmqDxvkxykjhtJt5Izj+iQsyZNRDHRkGJA4BLOLUnvFtwpNCg6DaRDUOBjBmI P9LAXwGbhZU7uZLtSzwn1gr8TD+cqkpQrFlKRiUCdh6sTwfp+HE3JDmKAwX6t8bM ndBMYwIPddYdkFFpWOQbl1G72zR3SSuwgyCC5+xZxDWPHT97iCKbvCYAmdN3cGHZ 8Lqu56ulz54pIkBZzSsu8TWzZner2eax1MqITH3WNYYuH57yiMSaUK1DSdFrg9Mc o/aK0QUaW6pCFbYGZRS1cqUBaN11Z2debMC60JiNFA/htzLwgSwmZiEdAIt4lvU6 xMdA7dFYuVLmVh9+VQYp3KspNDWsILiPsKbV8oomlcLiZ+g8cRY/NzLKXVqX2a+7 Jl3hLlEuVKdcWe+XCfWt07Y2Ibwtpkq/vph61cPdus0dgV8U+QITQ4kt1ky8xNBc L51c =zSIe -----END PGP MESSAGE----- --+nBD6E3TurpgldQp-- rt-4.4.2/t/data/gnupg/emails/5-signed-inline-with-attachment.txt0000664000175000017500000000254413131430353024334 0ustar vagrantvagrantMessage-ID: <46BCDA81.3030308@mit.edu> Date: Fri, 10 Aug 2007 17:37:05 -0400 From: rt-test@example.com User-Agent: Thunderbird 1.5.0.12 (X11/20070604) MIME-Version: 1.0 To: rt-recipient@example.com Subject: Test Email ID:5 X-Enigmail-Version: 0.94.2.0 Content-Type: multipart/mixed; boundary="------------010302000403000103080306" This is a multi-part message in MIME format. --------------010302000403000103080306 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 This is a test email with a text attachment and inline signature. ID:5 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGvNqA0ygDXYSIHxsRAuCHAKC0HnduLWqihY5wzGYDFGbFtA4chwCgr6+t mQo4oXIqu+kIZ0ExWyiUENs= =3ABp -----END PGP SIGNATURE----- --------------010302000403000103080306 Content-Type: text/plain; name="text-attachment" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="text-attachment" This is a test attachment. The magic word is: zanzibar. --------------010302000403000103080306 Content-Type: application/octet-stream; name="text-attachment.sig" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="text-attachment.sig" iD8DBQBGvNqB0ygDXYSIHxsRAmkbAJ0esGNEDMr01u45ZHIIKZpCFSE8tgCfXBedq0Yu5mnZ zOZyASZYUIf9wSE= --------------010302000403000103080306-- rt-4.4.2/t/data/gnupg/emails/8-encrypted-MIME-with-attachment.txt0000664000175000017500000000355213131430353024334 0ustar vagrantvagrantReceived: by anduril (Postfix, from userid 1000) id C962637F57; Fri, 10 Aug 2007 15:39:14 -0400 (EDT) Date: Fri, 10 Aug 2007 15:39:14 -0400 To: rt-recipient@example.com Subject: Test Email ID:8 Message-ID: <20070810193914.GC5572@mit.edu> MIME-Version: 1.0 Content-Type: multipart/encrypted; protocol="application/pgp-encrypted"; boundary="FFoLq8A0u+X9iRU8" Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: rt-test@example.com --FFoLq8A0u+X9iRU8 Content-Type: application/pgp-encrypted Content-Disposition: attachment Version: 1 --FFoLq8A0u+X9iRU8 Content-Type: application/octet-stream Content-Disposition: inline; filename="msg.asc" -----BEGIN PGP MESSAGE----- Version: GnuPG v1.4.6 (GNU/Linux) hQIOA076g5OuwfIOEAgA4dZa3t55kB5pY4Q7+h4thTJVZ+wV2QxI5wZFRvMs7yw3 MEIWqHusoe7R2zeXLxaT0gMSQj3osO+GrGJRDk4qCGjcjSneFmYKkELx8KRML59N X7/HeX7v8nSGpyqM5foaky38uAGxj2xBpswfvsY8qdQ37a4mNH2atESnkxYLomZb 4vTRTSE1XtvhaG7oHaXxfmeNln0JezfbfpDGTktZJOupEX99j6/bvloimXyBT6SZ 3wbcP/EYoqC8DQOQTtFTAisWwveTVp6FDFvi5L2BCJ2NzYZSDOBNeXrzf1AJ04dN 9lTzbtejdE/AgwDclDnZYZByiGLM43X6nTk7c9gH1AgAlrxxvO1yz4sZchGM2rrn yzNJpcvcgbJLTt54gqie/BdQHSnvlCBLZzplx2xV9HIwJB7Kf29Ka2gg2p6mjyID YUd1451K1hDUmBHgya8jb6g2c6bBxiusUODlGfmv+c+kq/yG0tKws5d0/IGanL+Z h7XkcEYq3its0acCbcKizgzLSmxSqu6NK7rnDvioUOHHKG8uC9fk2JetdTdYOTBn AWYDxa3D+kRvOAiOWGMqtvOWAC1BZJ8hssBpesuG1+sucTh7W4ZROtQfEbqC8W51 s6e17x1YUqE8QIs/aUYkUkX2JqObKsZPJAiVYCQkqJceIk/lT4rXNOfUwl5dAynk WNLAZQGKuVghSfSoRyKbFMRDimigisWN2JUudaV0Ld6E/5iO7EP7XhjqkzTlwsaN wui2n0Omxye2dNVMKz3q76fVp79XbznaI1ckeVjiiDmkiaQOp1Au/Sx2Bj0/wolJ OXnp27oqc9THy3RANLRXIQuRaYOyoxUIjVvhbOVfM3U7MlcAW3jT2kMTI7H83HWc ezxKfqM7nJUKkIVmRY4J/6X4uo5c8DdIxLeG+ioj+3I7BRkLfIAPYDGaeB5+BD1k EPcVGd3u1EW7D8f5CRARnU8aaC8DCPk5YYN6wM9JY9n0FEgIkwoniTpqHLs/UMa8 DWGer1UCGp4qElmHvWHVV8b82nw6Ta2BhWKjA9pphf96KOTt3y4jqxfU4GbrOYDJ 786/cggItsc0 =qJrM -----END PGP MESSAGE----- --FFoLq8A0u+X9iRU8-- rt-4.4.2/t/data/gnupg/emails/16-signed-encrypted-inline-plain.txt0000664000175000017500000000276413131430353024417 0ustar vagrantvagrantReceived: by anduril (Postfix, from userid 1000) id 98F6C37F69; Fri, 10 Aug 2007 16:17:42 -0400 (EDT) Date: Fri, 10 Aug 2007 16:17:42 -0400 To: rt-recipient@example.com Subject: Test Email ID:16 Message-ID: <20070810201742.GF5815@mit.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-encrypted Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: rt-test@example.com -----BEGIN PGP MESSAGE----- Version: GnuPG v1.4.6 (GNU/Linux) hQIOA076g5OuwfIOEAgAsnA+yHerSZnvxR6TIiWSIRlohPBIQHUhoeHBH+9Q0DFJ r6in5UmN1luVGtT8kl1dbLAnoVu2Yyf/d57IWgam41MbWi1EmGLQaaLHcIbQ3JXR MmXXwG7PTHWdZJismmqCOuT3svTlkqerIBicsHXvfKE209y+jP3lruJ7cVpxZyCI M75H8d313r3MwBpoRuEiNMBOjG6MXOATFmgRw93J6pzjWirxwmawhaSNeghkO8tN 3vdDkzZlLmM/Pq4jQrkWbIbGH/EwdchbWNnhd91o/Lll77fshkXNMYQlgyU154sk 3wCY5IFGJTUdR1hrETz2nOASLDHIdamhhz1xMItClwgA2uXkVhG0Fslp/A7z4a09 ivX/gM6a4KuFSNVJtHrlc6Z8/WKe1LNdLiulbFMtbppvMtIkzgZfv/DBavZJBqVI EOI+9VzLb6IdqybbNp54nRbniU6aiboEk90waSjqHggCnk5qnOUxrxp2ZCIn9pwP KUisxy6cAKGCEeFdvtXIBqfC6uITAu9kNq78rPN64TUaZbJs8VshIj1zpGi6DUYa uPvGPIhlLi5xN/oK3Yu2TDrIPxO4m1ZdHQJH8TBn6l6EifAVsDeskSQ4nCZJzc0H 0D+ofkCzxqRkjDY0IOcl7hI79cRxO5tagtf6od0vcK883wUHxe6Kfv26tKm8IsX1 ANLAFQFi867dLG+X9wc/QyBwNXZ1hPSE8MulfAYyzT/rXno4nkmQrw6zFLf9q4gA Z7aZsgxXPAvWwhwLGyinNgi0ua5LHZL17CWOfG8/GlIK59mesnk8tC9Gyj8aLU3/ ROteGBBGfk0UJbfcQ+reAjmORofZdHSMCsGYZ5DJEy3KIUrNHzW4yYAlfzLWYfX8 k9R41E0xGBuooe578MTBtVOPZKY4gurQZdfrHdYnsUXgfpV1w6WYvEM31n90Px6m aXWFWq9JVxX/JFOmWJV38fw+EhNgApncTw== =J8xa -----END PGP MESSAGE----- rt-4.4.2/t/data/gnupg/emails/14-signed-encrypted-MIME-attachment.txt0000664000175000017500000000403113131430353024700 0ustar vagrantvagrantReceived: by anduril (Postfix, from userid 1000) id 061F037F56; Fri, 10 Aug 2007 16:12:29 -0400 (EDT) Date: Fri, 10 Aug 2007 16:12:29 -0400 To: rt-recipient@example.com Subject: Test Email ID:14 Message-ID: <20070810201229.GD5815@mit.edu> MIME-Version: 1.0 Content-Type: multipart/encrypted; protocol="application/pgp-encrypted"; boundary="N1GIdlSm9i+YlY4t" Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: rt-test@example.com --N1GIdlSm9i+YlY4t Content-Type: application/pgp-encrypted Content-Disposition: attachment Version: 1 --N1GIdlSm9i+YlY4t Content-Type: application/octet-stream Content-Disposition: inline; filename="msg.asc" -----BEGIN PGP MESSAGE----- Version: GnuPG v1.4.6 (GNU/Linux) hQIOA076g5OuwfIOEAf+MEje2ZVc5yRFxINYBmz8l5oRdrDkldSFISKNlcFogKeA ZAwvP0Y2Utxjs+aT25gqR72uftGzCLhKdIb8X/i8CswKHX/1NnLKFTFB+T3Mmwtg 3a9jiB6kQ5haWvcd9y1DBcm1Wnw5B51QmiHZzHu209dphl7qnoak79M0NK4KPSqr NKqn7yTKFOjJ3qIlCLqawQbQy++IFmtJVKMQSNZawqSX/JSGMNPz9hioyOgyjxtE XZlrdgV1jumnZ3nVF1bQFMGUMGpi6NAA7+TiPjSZgFkKp2zvyOXwFKjKqkVgAgUh +295JO9kjFmRYOxpWcSfBaibX4qFSsWvJbvltNceDAf/WCCcvP6+JYHmZL32YL6+ oSM3SnHuG3PIqaT0/99pMVIhHzhrdrmWsyR6ijcK7PRpQg3mIZDd5pzAgcae3c4M mYsImADyUC6CX0PvSOYYvG7CskDUiGk76fjDKTkKPkgqEFJXz1v9TA+ptx9v2PTd CW8cES9Du5PdwPLbltfC54ax/tCKcyyHbtgozVQJB6RfkXKhUjYI632qnXa7BDqO c5Pcpn7gKKik4MkGEWnf50aqQ6ph4Q9MfOZ+5hc/EBUQd2Genqn8iCTPa2rkrI49 6sKJ9FSdXL4Xdlat09MxnD5Dw6DKF6G6Ig2SAQA/WBG5+sZxWC5NMd5oeJWHVnCz VNLA5QEIo0BNtY+wm2W/YH3hSHV5K+Mz+MEKEUaimYSLWKl1p6vboBjHuk0XY1Tn FDGmLVcO/jLBkiPOhNyibRXaCW/x3iws+xCHngjX4rDeidEtphHCxihVtS1Sh1wT IHHE+Kl6jlateIeBpug79RsGKcdwYTUg2SuaZXEf5A2tQtUhU6TEWYqhFc0g2dCV u/lkhrVRt4S+En4DYJ7myQYdMBeHym52Mz9tFZKKQ54dMWDhDsRZIe0Zy8TKBwXd cwc5kMpkwFK3drbhFuf3WnQUUR80oyGKCffJw3n40ET91b+nAYJ8bPvYFE+gDB+S vHktXvM+vk4PTAKGN21TyZfB9n8VVtIHq3DUPpStrFFQQUDKjMeZf0TDtEWVd1zl 7jVJ2d+Su/KcAXUITXAQMl4ECXMZ3VD3fnbyRAHI375+wcBh08rM1DQRdhWd40XZ 55rzTy6T0RVa3JcQBCtM8FYubYQvy8iU5XcA2LEDWdDn8D89IJ+UAnFHIYoeipj8 qbYjl9JetF1gcmm3QlUwtec6nb5VSmWdQrdfnvdxrW54J3gqlGnzCQg= =7/EE -----END PGP MESSAGE----- --N1GIdlSm9i+YlY4t-- rt-4.4.2/t/data/gnupg/emails/7-encrypted-MIME-plain.txt0000664000175000017500000000334413131430353022334 0ustar vagrantvagrantReceived: by anduril (Postfix, from userid 1000) id CEA9137F51; Fri, 10 Aug 2007 15:27:49 -0400 (EDT) Date: Fri, 10 Aug 2007 15:27:49 -0400 To: rt-recipient@example.com Subject: Test Email ID:7 Message-ID: <20070810192749.GA5572@mit.edu> MIME-Version: 1.0 Content-Type: multipart/encrypted; protocol="application/pgp-encrypted"; boundary="YiEDa0DAkWCtVeE4" Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: rt-test@example.com --YiEDa0DAkWCtVeE4 Content-Type: application/pgp-encrypted Content-Disposition: attachment Version: 1 --YiEDa0DAkWCtVeE4 Content-Type: application/octet-stream Content-Disposition: inline; filename="msg.asc" -----BEGIN PGP MESSAGE----- Version: GnuPG v1.4.6 (GNU/Linux) hQIOA076g5OuwfIOEAf9FtBMrkLWUKK5BtwuUsYXV9Mbe/YkkmK61MuysAtLcX/M DiXPzngjL62Dr9l88R3imf2kPmY36yx5WNeXUrFFVmFPaeZrHEJiMNvPGVVQCqRK uar2vsYRK9th4msZnn0hBYnA8+8kZ8rWefWHpszOcJ1YZpyyEMLf8Vnstyf0Pebp Wxixr99+mn3MVH38CrhoErI6CMiCFJgPAl5wtGWd0lT3+657dLJCsNI0cT3AY/JC IJwWD2sdOXOzDo7tdC3l7/YuGsXvd4jGu4A8PdoBMOgPx/N4KT3+uPhp2sRD3PMg LU59613xT8/FOYxQSib9hGqNZPqXS3ryC3ZvY4Sp8AgApCMocKsN7vm8N+6Yh7Nc Jjy/kuf8tjuTTs32Yk0ACU3y2SFXKSBZo6cVXgJhUvmG2Dq4O/A8mtP0cjqeBFqp +vZOb7xhtxxTE6HWWThvx5qxcwjpijzDMS9uzfGaHwLvewdGVLODCup06MJmeAmj N1WEZqc/cqFZvZ9omCpcvTGoELpOzcUY1MxAq1IVkMzAk7dPIHYuyPSFQK6Y8IPl xsfSMcq9gjth8qautnriB0ohwkUebGnxgM4CjGjnSmLmUFXkndUOXKbM7R7E3QdL +6TKMr2pvLl8U3OJrCiyyPVyVi3in4TYi4uegXJl05CAEjEXRf5RFhaWRnn66EYN WdLAAQHpkESfESVUaWvJwI+JB+LMBoKZjWgvIQ7AQKqLAvIsAqs9PKM4mYOMaawl en9XNRkW0dSGUxjW4K8u7fLS/xzWrZeCrafEkvCowVv/nR+Wxm296bxX+7z2R52/ j+J0zms1fRdVxEs+rOI6JuXg4xWxUdLTav7cqvQ5c/izM+jU4yWEa3y0fHma6Jeh o4+1NerQby8Yzxszh9XVfkbYnQilhP8qCVxYe4HGjKlNi5v/xOgCznCKsqkGYMPU S32K6lg= =xeKr -----END PGP MESSAGE----- --YiEDa0DAkWCtVeE4-- rt-4.4.2/t/data/gnupg/emails/9-encrypted-MIME-with-binary.txt0000664000175000017500000000460213131430353023466 0ustar vagrantvagrantReceived: by anduril (Postfix, from userid 1000) id 215C737F5D; Fri, 10 Aug 2007 15:46:27 -0400 (EDT) Date: Fri, 10 Aug 2007 15:46:27 -0400 To: rt-recipient@example.com Subject: Test Email ID:9 Message-ID: <20070810194627.GA5815@mit.edu> MIME-Version: 1.0 Content-Type: multipart/encrypted; protocol="application/pgp-encrypted"; boundary="GID0FwUMdk1T2AWN" Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: rt-test@example.com --GID0FwUMdk1T2AWN Content-Type: application/pgp-encrypted Content-Disposition: attachment Version: 1 --GID0FwUMdk1T2AWN Content-Type: application/octet-stream Content-Disposition: inline; filename="msg.asc" -----BEGIN PGP MESSAGE----- Version: GnuPG v1.4.6 (GNU/Linux) hQIOA076g5OuwfIOEAgAqwVRwpeOIRMvrgswuYagJfk57HvSvrAg7tVzXHaHW5LI zJeWpKg0PVwmJUYTG9cZN0gkfpr33SULruvniZRSX650E/vv9H03P1dVYhBbcP01 AyfPoaySinipoqG5OK7aTJVEnPZqqsCKgzFbqEg+FdF3YjNVa1etfmKV/JvoXTxR il6pOqv+xUJ66GpPUoP7mCZJ/cJEF1zz/EbZoYcS9MgxoP42bOIYBhyqIv3fUh7X fuDpup5xnJwM3FRjkNQPlqKhgGHCgk04OGgLUw8wzRwYQ5jSyij45J/UcGoNWePi eVTZignbYIfrlwa5GH6776U9QA9ei7PFP3RqO2CB2Af6AiIdkeN9MfPFfiQ/ASwR /zePg+OOmKC6locoUHWTEuBCZhgty7XarfPZufBHlA3Z3f369Pxz9nMV07KkO22t thhltpsxan2pFZL4oPfwA9OdDRGeWIISn4jGc+foNfKTmERY7EZv9ruDC0lxaSvs HEWJC38sJ3xGdlS439qaddSbm0Lft8JbNwi6FEpThE4abBdITu+BxbkoFrjIy6aC UJgyJ3YtPTpU8JuT49Ocn+51YPXZTSc/ePnvlzSqRXHeJrOKp5Oyoa9001242MRM mpaC1lw/sfGIIAXv5t2B569RXDsZ2jIvPjFIleIdyKOG17m8qsP82nWKbN2N96am p9LpAb5gqid4Hw1PjjjCB0A9w7G9orQeEQuF+2V9MGWAEWOHoVbGWTRjfh4uXASz 4PlazbNDIZZB09ACaDfxG3Y3/TI2X0sl9KJNRALFtHm4+DNbWVeWe+aKrG9ZY9Os xjD/UQFFQrchpNPD7xV98WWEg4+s8pkk9Mwv+Q/gNf2xBXJXDOhIm2LlY0VlhETq fk4YS3EUS78Ti4V99w/L9PTnoaZY/8kkI6NNjb+bqldhd9AQHXEkpV5Gh/PrsgFn FzBZxEwcY8wKP2yKMTp+A3rsjHwM4OChjtkDShf4KDwGS5D+E4o1RJVcM3jfh2SG RRKge5ewErBmIDIqeU8Wpj5cuyqS77CIB3aplSKLqUu2bC2EiLFZxs2UTg+cp5WK WFzt+YmH6/p0y9eyaAGOleSh3dnIZHv2BDtzF9x5fHFesjaVp3jpmMsHQ1ol53TR 8N4fUuO140oE0Gnci61EXzLjkGCSBhzZqy/+K8PR0d1hGv+vlwfadpzsPfX8WcxZ DBuI1E7OcqVaXemR90/C2AbLB8qGuwQ+wTIHPqXlm8s0+6wZ4YUcUoa/F+2VLSxN VWGji1yioKrSaBjlBBUpHfoC/Q/0hLk2FgIrAZFIPvhHl9nF3Vq/HqlxtGZQ7gnL TjQtRuI+oU7IhJRR1VZbhr8xn1pirueiiwJUPub6w4XfMGyvcvlIOVpUImW5Hab7 kg20iwrcJNLCcPJsR5iEbhJBBHLsViMtfdRbstlEV8I4wTY2tNAkfMtUtWdUhwOA fdx/UmHjbNZFSS6cpsGHL8+QJ2Bo1urkHIz6z1w4f1vTL31NAPeyvZ4kNstSqkNt 6fjdrt8mBRVGQfqRQsK2b/R61ErJoFULboeqOT/ed/Dufu2Wxf/wuuRvG77S8xoq OiDT8nhyHh7ljjdHZZ2uLro8gg== =BIke -----END PGP MESSAGE----- --GID0FwUMdk1T2AWN-- rt-4.4.2/t/data/gnupg/emails/15-signed-encrypted-MIME-binary.txt0000664000175000017500000000505613131430353024045 0ustar vagrantvagrantReceived: by anduril (Postfix, from userid 1000) id 171AA37F6B; Fri, 10 Aug 2007 16:13:42 -0400 (EDT) Date: Fri, 10 Aug 2007 16:13:42 -0400 To: rt-recipient@example.com Subject: Test Email ID:15 Message-ID: <20070810201341.GE5815@mit.edu> MIME-Version: 1.0 Content-Type: multipart/encrypted; protocol="application/pgp-encrypted"; boundary="QWpDgw58+k1mSFBj" Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: rt-test@example.com --QWpDgw58+k1mSFBj Content-Type: application/pgp-encrypted Content-Disposition: attachment Version: 1 --QWpDgw58+k1mSFBj Content-Type: application/octet-stream Content-Disposition: inline; filename="msg.asc" -----BEGIN PGP MESSAGE----- Version: GnuPG v1.4.6 (GNU/Linux) hQIOA076g5OuwfIOEAgAiH54xEwaxc/DL+nyd5f/77c6Vk27bdxRz1eXHVU0ofqs oeZHkEWpkub80YQL1HOQTabAF3ZUIGfyfGufnqXpWWNjhnxP/Bi/Itxk4p3oq6Pj RDoDsrO6SPcM1wlbz7M/8rTmpjTk0cYl3nA9Bc7ZDP7jRWRRKFp3Jl63fvK2BWG3 x0yA1WwJX/gzgsRlFSBBFukaffCqaeQZJ2GSKGbuHTH8EYvGDjqALlEwE/iPYRYq OoSa27KIzDCwPFJf8/ZK+03qX2D2LrEViflbFlZMcMGrIFmU0BLrlBx8Obimu3lm 8bCDX5zQsOIptLQqrhQ5E1HIeEFHqJAxJwHu5v7AFggAqSNH4adYAxz3vZyQ3HdV IiDYdwwGh4usb7R7afc8uiFGzxmcc9ktyQ8bBAEpGHMU+ahcUMcfg1svcSKKFQqS xNJb5rl3Q9D7qqsoFnNdVFGIxhnUpjt16TdFEtRHDUnC6dWjxKw2fzdR7YsclzkP IjUP1yHRK0ees3r7LGU90zQUcUXGnuX4xbMi3+t8NFPqpi9DIkOKS77XEpLFg+Yg qrMi3/p72jGBcgbchyS5JJyrVfZjz3igEDy4A2rEw9lJvyemahpccYf9v8LjVCn8 ofdeLujIyDV1T+wFuB2gIY8fbnvP2UC+ffJ2qGA4uDiz9T1t+IapBjwwrhG/P541 KdLpAfXAJzKb/gnXdicy/TyGnMguVXryCVZXAx392jA5se/OVjtVkUV8hMcqBPFC 6zMEPZDXVaCZ7r4VX4xK1y7MGTrq+t4v8UhmfxckiwDVrKZkt6MOwdhTq1YBwFwq DEDN391R2fFr08i+3ogKv30gNlqs1gfqh55uCsZMsrtjMAEnM7JcB6pnptND/mRm 9MYsz5Sxra5L59SNNhJS0GjuTVGIaEhzwusWdFTAeE358AqTOTwdSNe/Fa3qEXBr YzmrCgTn4x4YTn8IDQkh80It7ENEc7tkgRN/FcG+Q6cwHWgPOj7QDBJsN/lm8V3K cWKVxwvp+hoP8isigZxi/7nOD1EZkQkMAWyZSFp+iCZH14GcAKwqxp9Y8bgSuF/5 jzASoge+POvEIpsbS7lmfalU8qR2kCYg17fEvDH+6olqRCT6Bq30cVUYY+LVAHgz KXgJjK3WYue2XQieGaNYjtwr9AsVl4fxpjXmb+QwL6H0K4JMdXc9tabF5j5YFeTQ rWYzED39EiXst9dAFomVhXDHD1OdpAbNh5F9/9wlccgZ7co+tK3bdcD18k2G4XGq 1AX27utveaSU8M1jeHG4a9//f6NLn4cqJ8Qryv0uiY7N0iiwWHsoHrci0doMQI0U glPhkk7qjHf7YAhsRsybfdNrum4jPHMpk1wqY4GR4xhV3JLAbDfKN17yHJWR3c2w TQ8sOLMPKMibyo/KRBLCz3CpnuSvpc7A5tCenDJLYtDhmUMofTN1ki3gBW3OFQpd zH6pCuVBQDQ3iLO/lg6Y434fPz3cuKnxBdN/QvdbeiX4H7tGzC/q+qXpu/8Yv2x0 AVSQkrXcc4CQXAvLzqNMXa6NgKrVtVNXUgHyIxvOgGyVxULKDQo+3bByccCOjNOZ 3gN/JnU2HvEk3iYDYPa+VOJzS1i6itZOCeCBF+NDaaTvG30owmINGCGl/nxv+yIO 9nlCF3QYdaod2TVYfxdp2X7hlPEhv6nHYt2r3/pXYW4Hjy5M/mT7sR+OVAgknpiJ yOzeNy/dVoxpAAlOuzwl+sYI6TkDnF0vduJO0jxWP5+oa+Al9sWr4x4E59OkGAg/ lQ== =NbQY -----END PGP MESSAGE----- --QWpDgw58+k1mSFBj-- rt-4.4.2/t/data/gnupg/emails/19-signed-inline-plain-nested.txt0000664000175000017500000000167713131430353023711 0ustar vagrantvagrantReceived: by anduril (Postfix, from userid 1000) id 3EDA537F80; Mon, 13 Aug 2007 15:34:17 -0400 (EDT) Date: Mon, 13 Aug 2007 15:34:17 -0400 To: rt-recipient@example.com Subject: Test Email ID:19 Message-ID: <20070813193417.GD6392@mit.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: rt-test@example.com -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 - -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 This is a test email with inline nested signature. ID:19 - -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Darwin) iEYEARECAAYFAkmETNkACgkQ0ygDXYSIHxv3ewCgijZQyL5vWIOfk+06XjqTXdrN VDcAnj13TCHvhas6rMtxcljNNGvPidw6 =VMc6 - -----END PGP SIGNATURE----- -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Darwin) iEYEARECAAYFAkmETOIACgkQ0ygDXYSIHxvvvQCfZlRPNjt77jJ7ANxwOpkHkwCY wsIAn0PzLhCKhIcAm+hk8CpduzYcY0xW =Xy5t -----END PGP SIGNATURE----- rt-4.4.2/t/data/gnupg/emails/6-signed-inline-with-binary.txt0000664000175000017500000000361113131430353023465 0ustar vagrantvagrantMessage-ID: <46BCDAE6.4090803@mit.edu> Date: Fri, 10 Aug 2007 17:38:46 -0400 From: rt-test@example.com User-Agent: Thunderbird 1.5.0.12 (X11/20070604) MIME-Version: 1.0 To: rt-recipient@example.com Subject: Test Email ID:6 X-Enigmail-Version: 0.94.2.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigAEEA002E4229CA8E5445ED73" This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigAEEA002E4229CA8E5445ED73 Content-Type: multipart/mixed; boundary="------------000104020205010403010301" This is a multi-part message in MIME format. --------------000104020205010403010301 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable This is a email signed inline with a binary attachment. ID:6 --------------000104020205010403010301 Content-Type: image/png; name="favicon.png" Content-Transfer-Encoding: base64 Content-Disposition: inline; filename="favicon.png" iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABmJLR0QAAAAAAAD5Q7t/AAAB BElEQVR42u1WWw6DMAwz0+5FbzbvZuZk2cfUritpea77wVIRIBQ7dhsBdIQkM8AMMJImyW6d BXweyJ7UAMnUvQFGwHp2bizIJfUTUHZO8j/k1pt8lntvchbdH8ndtqyS+Gj3fyVPAtZAkm3N ffCyi/chBIQQ3iqs3cQ0TZCERzbhngDocOS4z94wXTCmu2V45LuQW8hsSWpaP8v9sy+2IRZj ZTP5ububbp8Az4ly5W6QqJ33YwKSkIYbZVy5uNMFsOJGLaLTBMRC8Yy7bmR/OD8TUB00DvkW AcPSB7FIPoji0AGQBtU4jt+Fh1R6Dcc6B2Znv4HTHTiAJkfXv+ILFy5c8PACgtsiPj7qOgAA AAAASUVORK5CYII= --------------000104020205010403010301-- --------------enigAEEA002E4229CA8E5445ED73 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFGvNrm0ygDXYSIHxsRAvwSAKC4d3U6SjfhYpUHu2V/vXtgxGFa1QCfeK6p dyDDlvlqP9Ns4EExvHXfHuY= =sX3V -----END PGP SIGNATURE----- --------------enigAEEA002E4229CA8E5445ED73-- rt-4.4.2/t/data/gnupg/emails/special/0000775000175000017500000000000013131430353017220 5ustar vagrantvagrantrt-4.4.2/t/data/gnupg/emails/special/quoted_inline_signature.txt0000664000175000017500000000117513131430353024705 0ustar vagrantvagrantTo: rt-recipient@example.com Subject: Test Email ID:4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline From: rt-test@example.com Forwarded email with signature quoted. RT shouldn't bother about it. > ------ Forwarded Message > From: Xxx Yyy > Subject: test email > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > This is a test email with inline signature. > ID:4 > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.6 (GNU/Linux) > > iD8DBQFGwLI50ygDXYSIHxsRAp40AJ9ErYdLH2SVRXtgRtx7n/FVFOmKDwCgl/0T > BeRSaF4Xbi8uGhVIkmU+YCs= > =e4u6 > -----END PGP SIGNATURE----- rt-4.4.2/t/data/gnupg/emails/special/binary-asc-attach-marked-plain-text.txt0000664000175000017500000000546013131430353026604 0ustar vagrantvagrantMessage-ID: <46BCDCF2.3080704@mit.edu> Date: Fri, 10 Aug 2007 17:47:30 -0400 From: Christian Ternus User-Agent: Thunderbird 1.5.0.12 (X11/20070604) MIME-Version: 1.0 To: rt-recipient@example.com Subject: Test Email ID:12 X-Enigmail-Version: 0.94.2.0 Content-Type: multipart/mixed; boundary="------------090206040704060905090502" This is a multi-part message in MIME format. --------------090206040704060905090502 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Attached file has .asc extension and content type is text/plain. ASC in some clients stands for ascii, so it's attached as text/plain. --------------090206040704060905090502 Content-Type: text/plain; name="favicon.png.asc" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="favicon.png.asc" hQIOA076g5OuwfIOEAf+P0Qp/k1B0WDRr9bNcEANStTaiefYoLrUrtMJv+aFtkiSqKfft0A9 okrYkVUKs6kxfgxueuqNMFQh58nl8+d7Z2qGIgVEXxC8rRxexEQ8mXu5LXzzBbc6Dq8Jsa7B bXzwGty51culYcKeMEjpEY8Qx76qoNQDNCuvth1JJxJ6xQix/pVyZZbJRu/nLrv1i3Z4KRFY qafnJlcsUTVj2o9dLfeU13z8nd0uBPY+hiCgYJHSPDLr+mkA+c6YK0m4a88r/wjLmsVHMkn2 N5nCjuqP4tzT8SCjhoICGTbu+fFdks9NhQjvsW7MHBi9HFFzm6SoEvquFHThzwMl3hAhTLpi Jwf/a6unMP/swAxoFTJ2GRXBmQOH4sJHR/M31rEVkLZGJixhU94Tpx8ptgLXqme5VCXgl+M3 Oh0GHRXqFYjR/HGUTZokRKR/BgCEpOGlH5FcabHiu/Gy8UBezPbuC+BNvxuCbuwODMp9R5DE F8RSCAQ1hrRoJjeHT2wyE7HdCvN/xx7NyenA3GdJa5Z6W7Y0gshr2fAOFL39jKXw4WwCh/Yq XnyG8uOyPgFrnHI3WpO24VpQHp3MBKebWNhQ/Opy/cABunCSwWQpDB9Ar4GeS3R1WGtMNC4r ph4afmTHJcQQkoa0VfvHL0hEzycwysYD46O9QhZfhxtKKShgX356oCeMEIUCDgOxaIPydPr+ 7xAH+gMnbi5OLPf5xMeZydvNWdHE/wJTub2rrWFtzvj0Aa5Ne/KFhcDDqSjaL3MXP1WfIJr1 /ANe1eWcM2hlYVDpEn6YOh0bz6BASE4kbHA5nGMyUrgH0hWfcOgkMUloRZdf1q32j80mchCJ rF4YsQ6EndnUYzAiXKHGJRUy/6IA2qBH2n/fRiyC2FmmQPtWO4c6t15Vgh4fB3QXSTri8J5r 577yIiHRE+dq6gg1BfyqCtw0DW56lSFQ7dxyMXeLyTGyjTGPlUDc+FbP23CRK7zDIVujARmm mX3bP2lMfCK326FwBZf2Q4Zl/ac1BN8Mcb4wwcnKvRzfEw8d1Y6pkphe7KYH/0MDDqtmuEw2 D/xdw4FHB16/HW32bcPaMVvFuseczEfrwPGCrCiPHPm++edAoY0rWoBtzHVpgN+s5bset5OR snhjuWceuCb+Ga0QV0s/xmIPIQ8VYaXyD5hob6nHEIeskS68Vbni0BpY3nejDPoV3dNHY2Tp 2fjYNHCpsdTz8yyavQVixoQjZQH9hUb48zZDHCt0Af9Rfq6Et5/Qr8iJqAyEU8JzZtrkpO4O HgLU7JTPLxOGzYtOj8JkLmLguVA5kOafAuU4OTEU43utQfS3KYbdEWT2jJ1QaJVS8CjFJrqH V99FUsDvgKWSTy5hA9gkQAQE1QdwkoQKpkCWm18KZqTSwNkBfrsEuvHC3Cz4Sy+cJmhr4Hvx dyZY8DuuWExUcVCjkeuASLgjLEgahnCbMkyKATazswwTEdfzjcOowjLTdaWFEN/Cg22nF/px 9MXMtzBkrTkjYPhfywETKoMVH/Nw7rRNZhkOSb5WJV5ynF1BlbzXI7Z8rA/KrIn8aydzwJUU qFr8Dw1C7kbE76+SFVWX8fqpwGmQhDAO+kos6ivgN9HDHtuXmwfGeROi2U0WcmFGbAyLo5fT LCcNPOMflU27WDXm8m+tjq9naUynqvwg5zBBz/xY67L1R8uOwfZplvRi35iZAJjzMHGirkiB W3ZDXbDqEfKl4aCXqU+XhQZsku2z3OtKZOBVVI5p8nGVEfavg6QECRUNUS7qbtMxlj5IwCGl babK3W5YVuERjklrrLUYZjqFIZ2yLK3Z2VmSn7yKAb/eRvdEeha+9PKcN11pXPkS/M3t+Vpr G+4TqNgqwLVWMvbENp08dS3OAPpZLDnqG9CJV0qacDMjv69X26V3Xp6vuZoKqAPxMG9QKAfX E9LInR1Kd0cpRUkb --------------090206040704060905090502-- rt-4.4.2/t/data/gnupg/emails/special/inline-binary-attachment-with-wrap.txt0000664000175000017500000000423113131430353026567 0ustar vagrantvagrantMessage-ID: <46BCDCF2.3080704@mit.edu> Date: Fri, 10 Aug 2007 17:47:30 -0400 From: Christian Ternus User-Agent: Thunderbird 1.5.0.12 (X11/20070604) MIME-Version: 1.0 To: rt-recipient@example.com Subject: Test Email ID:12 X-Enigmail-Version: 0.94.2.0 Content-Type: multipart/mixed; boundary="------------090206040704060905090502" This is a multi-part message in MIME format. --------------090206040704060905090502 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit A binary file encrypted with PGP MESSAGE wrapping then attached to a mail. As it's .asc some clients attach it as content type is text/plain. --------------090206040704060905090502 Content-Type: text/plain; name="favicon.png.asc" Content-Disposition: attachment; filename="favicon.png.asc" -----BEGIN PGP MESSAGE----- Version: GnuPG v1.4.11 (Darwin) hQIOA076g5OuwfIOEAf/Qxa6rk76JTSjlyb27k1kZwpsvtXocnALZEd1tbJ4HwwH o0CQb5Ew6apUzAcfSFdVcZ+IbFXYmjJ7bH1mpG5kjfSz8mEYO0muX+ZrgVeL+Q3J /lR+A+THD7LNxnsZe11OfDi1aX8Uz71R03vmK+0o1ZIge3zzdm1BoUT9cmy1QPMi aJSdBAJn01EJ++ETfrBqspFj8n6yR/q0BukAcoefaMA0qzrJNQeluMsrqSEjbcuq nwXDEv8fhqF6efrWW+wtyMnY/JpIEwmlNbcCI0NZQFM92vkp89nusRPwbP0+z87m Qsr1vyLHMX79kqwcRKadf1EW/3eWVqlbrOC+yhvKKAf+MAcixgFDIUDup+NuWpjp YUbS357E4yqh2LXogpTZDsvjSL+Z4hKEurKq8TYju8T4exGHkas3VbcWnoPBKiMU 3RjyVNCQzS3XeOtQv9g8WclENq6Pg8eQVNKd5tbpQ6Sios0J1FYFVXHSr/dQOaET Y1jSVKV/6GxVwERpR7DN+yTIVIr//pYnMIb6agNapSKbosvTKNEcGPSjjSB8ixpo C9yiZuIhml5lQUXV9ouDDMtHOFtguDUSSm7Ta84wRJ2VcVQUIv/ADg3jBC5Lmp5Q CGqwq5Hx7q5AKKZDnGNqHepWzeCiEs5Dg9J9onBYx4zrNMrGVP5uvF+RwK4J0pf0 XtLAzgFryuv7cswKKxP9vJaEjLDI4Tizdui+la0vA2tJ6gVQ1CPVtREt0s3s+LM0 oUzgVMvnb1X9KgyazcGp/a+bGHAZwy9/CscxoDYyDrQuUbypNK+f0xefpOURiQ0z N86G/DeaRwLkePoGWZySWk5Ktat6594lRP5h1/B/VYXhvBeh98Rm6E7S8gpjJlMr 6wit2Bd3oPVeqv1fxru9BR1CEl4N+/4ODVwphqMhYM9MplIzGrrCC9bTudKC7g34 UZ+IQV4GLlCK/1BckJQgkWEHTS5fDxAdwG4F7TWfpGzsp43IlDUr073aL7Z3TfkY iyAYGVdnq1EpzVAOPAc2IUMlybUGjoYTmolI1/XIEAxZG9cSFuSMXlrJ2On2kvFO /rla7j5euFpucFWumcNDbZ1HIgDUQ0AMxpzIqwVtd8ZGE0OhSqbT6lgP7jZUwiSA H4g6/4w+aM5XIy26jifvHOlHzsCraG/xGbzXgYkocXbmSuBhtFdoR4KFzOyFaI7H uFoUez7HUuEjl80w77pBeU2v =j0Yd -----END PGP MESSAGE----- --------------090206040704060905090502-- rt-4.4.2/t/data/configs/0000775000175000017500000000000013136155512014644 5ustar vagrantvagrantrt-4.4.2/t/data/configs/passwords0000664000175000017500000000004513131430353016605 0ustar vagrantvagrant# root / password root:8NbrT44Shvnco rt-4.4.2/t/data/configs/apache2.2+fastcgi.conf0000664000175000017500000000156113136155512020575 0ustar vagrantvagrantServerRoot %%SERVER_ROOT%% PidFile %%PID_FILE%% LockFile %%LOCK_FILE%% ServerAdmin root@localhost %%LOAD_MODULES%% User www-data Group www-data ServerName localhost Listen %%LISTEN%% ErrorLog "%%LOG_FILE%%" LogLevel debug Options FollowSymLinks AllowOverride None Order deny,allow Deny from all AddDefaultCharset UTF-8 FastCgiServer %%RT_SBIN_PATH%%/rt-server.fcgi \ -socket %%TMP_DIR%%/socket \ -processes 1 \ -idle-timeout 180 \ -initial-env RT_SITE_CONFIG=%%RT_SITE_CONFIG%% \ -initial-env RT_TESTING=1 ScriptAlias / %%RT_SBIN_PATH%%/rt-server.fcgi/ DocumentRoot "%%DOCUMENT_ROOT%%" Order allow,deny Allow from all %%BASIC_AUTH%% Options +ExecCGI AddHandler fastcgi-script fcgi rt-4.4.2/t/data/configs/apache2.2+mod_perl.conf.in0000664000175000017500000000243013131430353021351 0ustar vagrantvagrant StartServers 1 MinSpareServers 1 MaxSpareServers 1 MaxClients 1 MaxRequestsPerChild 0 StartServers 1 MinSpareThreads 1 MaxSpareThreads 1 ThreadLimit 1 ThreadsPerChild 1 MaxClients 1 MaxRequestsPerChild 0 ServerRoot %%SERVER_ROOT%% PidFile %%PID_FILE%% LockFile %%LOCK_FILE%% ServerAdmin root@localhost %%LOAD_MODULES%% User @WEB_USER@ Group @WEB_GROUP@ ServerName localhost Listen %%LISTEN%% ErrorLog "%%LOG_FILE%%" LogLevel debug Options FollowSymLinks AllowOverride None Order deny,allow Deny from all AddDefaultCharset UTF-8 PerlSetEnv RT_SITE_CONFIG %%RT_SITE_CONFIG%% DocumentRoot "%%DOCUMENT_ROOT%%" Order allow,deny Allow from all %%BASIC_AUTH%% SetHandler modperl PerlResponseHandler Plack::Handler::Apache2 PerlSetVar psgi_app %%RT_SBIN_PATH%%/rt-server $ENV{RT_TESTING}=1; use Plack::Handler::Apache2; Plack::Handler::Apache2->preload("%%RT_SBIN_PATH%%/rt-server"); rt-4.4.2/t/data/configs/apache2.4+fastcgi.conf0000664000175000017500000000154113136155512020575 0ustar vagrantvagrantServerRoot %%SERVER_ROOT%% PidFile %%PID_FILE%% ServerAdmin root@localhost %%LOAD_MODULES%% User www-data Group www-data ServerName localhost Listen %%LISTEN%% ErrorLog "%%LOG_FILE%%" LogLevel debug Options FollowSymLinks AllowOverride None Require all denied AddDefaultCharset UTF-8 FastCgiServer %%RT_SBIN_PATH%%/rt-server.fcgi \ -socket %%TMP_DIR%%/socket \ -processes 1 \ -idle-timeout 180 \ -initial-env RT_SITE_CONFIG=%%RT_SITE_CONFIG%% \ -initial-env RT_TESTING=1 ScriptAlias / %%RT_SBIN_PATH%%/rt-server.fcgi/ DocumentRoot "%%DOCUMENT_ROOT%%" Require all granted %%BASIC_AUTH%% Options +ExecCGI AddHandler fastcgi-script fcgi rt-4.4.2/t/data/configs/apache2.2+fastcgi.conf.in0000664000175000017500000000156613131430353021201 0ustar vagrantvagrantServerRoot %%SERVER_ROOT%% PidFile %%PID_FILE%% LockFile %%LOCK_FILE%% ServerAdmin root@localhost %%LOAD_MODULES%% User @WEB_USER@ Group @WEB_GROUP@ ServerName localhost Listen %%LISTEN%% ErrorLog "%%LOG_FILE%%" LogLevel debug Options FollowSymLinks AllowOverride None Order deny,allow Deny from all AddDefaultCharset UTF-8 FastCgiServer %%RT_SBIN_PATH%%/rt-server.fcgi \ -socket %%TMP_DIR%%/socket \ -processes 1 \ -idle-timeout 180 \ -initial-env RT_SITE_CONFIG=%%RT_SITE_CONFIG%% \ -initial-env RT_TESTING=1 ScriptAlias / %%RT_SBIN_PATH%%/rt-server.fcgi/ DocumentRoot "%%DOCUMENT_ROOT%%" Order allow,deny Allow from all %%BASIC_AUTH%% Options +ExecCGI AddHandler fastcgi-script fcgi rt-4.4.2/t/data/configs/apache2.4+mod_perl.conf0000664000175000017500000000240313136155512020754 0ustar vagrantvagrant StartServers 1 MinSpareServers 1 MaxSpareServers 1 MaxClients 1 MaxRequestsPerChild 0 StartServers 1 MinSpareThreads 1 MaxSpareThreads 1 ThreadLimit 1 ThreadsPerChild 1 MaxClients 1 MaxRequestsPerChild 0 ServerRoot %%SERVER_ROOT%% PidFile %%PID_FILE%% ServerAdmin root@localhost %%LOAD_MODULES%% User www-data Group www-data ServerName localhost Listen %%LISTEN%% ErrorLog "%%LOG_FILE%%" LogLevel debug Options FollowSymLinks AllowOverride None Require all denied AddDefaultCharset UTF-8 PerlSetEnv RT_SITE_CONFIG %%RT_SITE_CONFIG%% DocumentRoot "%%DOCUMENT_ROOT%%" Require all granted %%BASIC_AUTH%% SetHandler modperl PerlResponseHandler Plack::Handler::Apache2 PerlSetVar psgi_app %%RT_SBIN_PATH%%/rt-server $ENV{RT_TESTING}=1; use Plack::Handler::Apache2; Plack::Handler::Apache2->preload("%%RT_SBIN_PATH%%/rt-server"); rt-4.4.2/t/data/configs/apache2.2+mod_perl.conf0000664000175000017500000000242313136155512020754 0ustar vagrantvagrant StartServers 1 MinSpareServers 1 MaxSpareServers 1 MaxClients 1 MaxRequestsPerChild 0 StartServers 1 MinSpareThreads 1 MaxSpareThreads 1 ThreadLimit 1 ThreadsPerChild 1 MaxClients 1 MaxRequestsPerChild 0 ServerRoot %%SERVER_ROOT%% PidFile %%PID_FILE%% LockFile %%LOCK_FILE%% ServerAdmin root@localhost %%LOAD_MODULES%% User www-data Group www-data ServerName localhost Listen %%LISTEN%% ErrorLog "%%LOG_FILE%%" LogLevel debug Options FollowSymLinks AllowOverride None Order deny,allow Deny from all AddDefaultCharset UTF-8 PerlSetEnv RT_SITE_CONFIG %%RT_SITE_CONFIG%% DocumentRoot "%%DOCUMENT_ROOT%%" Order allow,deny Allow from all %%BASIC_AUTH%% SetHandler modperl PerlResponseHandler Plack::Handler::Apache2 PerlSetVar psgi_app %%RT_SBIN_PATH%%/rt-server $ENV{RT_TESTING}=1; use Plack::Handler::Apache2; Plack::Handler::Apache2->preload("%%RT_SBIN_PATH%%/rt-server"); rt-4.4.2/t/data/configs/apache2.4+fastcgi.conf.in0000664000175000017500000000154613131430353021201 0ustar vagrantvagrantServerRoot %%SERVER_ROOT%% PidFile %%PID_FILE%% ServerAdmin root@localhost %%LOAD_MODULES%% User @WEB_USER@ Group @WEB_GROUP@ ServerName localhost Listen %%LISTEN%% ErrorLog "%%LOG_FILE%%" LogLevel debug Options FollowSymLinks AllowOverride None Require all denied AddDefaultCharset UTF-8 FastCgiServer %%RT_SBIN_PATH%%/rt-server.fcgi \ -socket %%TMP_DIR%%/socket \ -processes 1 \ -idle-timeout 180 \ -initial-env RT_SITE_CONFIG=%%RT_SITE_CONFIG%% \ -initial-env RT_TESTING=1 ScriptAlias / %%RT_SBIN_PATH%%/rt-server.fcgi/ DocumentRoot "%%DOCUMENT_ROOT%%" Require all granted %%BASIC_AUTH%% Options +ExecCGI AddHandler fastcgi-script fcgi rt-4.4.2/t/data/configs/apache2.4+mod_perl.conf.in0000664000175000017500000000241013131430353021351 0ustar vagrantvagrant StartServers 1 MinSpareServers 1 MaxSpareServers 1 MaxClients 1 MaxRequestsPerChild 0 StartServers 1 MinSpareThreads 1 MaxSpareThreads 1 ThreadLimit 1 ThreadsPerChild 1 MaxClients 1 MaxRequestsPerChild 0 ServerRoot %%SERVER_ROOT%% PidFile %%PID_FILE%% ServerAdmin root@localhost %%LOAD_MODULES%% User @WEB_USER@ Group @WEB_GROUP@ ServerName localhost Listen %%LISTEN%% ErrorLog "%%LOG_FILE%%" LogLevel debug Options FollowSymLinks AllowOverride None Require all denied AddDefaultCharset UTF-8 PerlSetEnv RT_SITE_CONFIG %%RT_SITE_CONFIG%% DocumentRoot "%%DOCUMENT_ROOT%%" Require all granted %%BASIC_AUTH%% SetHandler modperl PerlResponseHandler Plack::Handler::Apache2 PerlSetVar psgi_app %%RT_SBIN_PATH%%/rt-server $ENV{RT_TESTING}=1; use Plack::Handler::Apache2; Plack::Handler::Apache2->preload("%%RT_SBIN_PATH%%/rt-server"); rt-4.4.2/t/data/bpslogo.png0000664000175000017500000000753113131430353015367 0ustar vagrantvagrant‰PNG  IHDRµ&‚¡ÚDsRGB®ÎébKGDïïïÁ̃ pHYs × ×B(›xtIMEÚ$GÙIDATxÚíœ{pUEžÇ?Ýçœû ‘—„‡2H‚ˆ( Z2"!(2¨£[–a’Ak°fw­ÝM­«®jxD¤Vبuvåa@]¢Ž" â„ð L^÷žÓÝûÇ9ɽ¹¹7$XVy¾U·RésNwŸîoÿžÝB„"Ä·VWUÅž/á. Ó_ÃÎp¨C|Sá„I"DHê!¾YØß…— ÎA8?Ûµz0upHæx¼WDÛªÿ(D€@mæµ?½-è^ëßsÐYª¹  {yf[ðuHÝï8©w€°‘eÎËvÝúK «€?e\¾¶yC[õ;@7ô/Nµ$u?ªFŽ„ÜgОÄ>ªðv*؈)®Á»æLïâ ÿàÂòºßqRR¸8¬$úDÓ K*¼ /±ÐíÂâôcP«Ubo¶Ê *ï$ÒŠòlä\ 7XkÜ8©±zièú‰¼1Ž>X:Iò«(Öi–á*”ȯÀü±©TÀi7ämHê–N„ÜžÀý,U¢À—äåy1è‚ÀDÈ(ëP#î+íiÃQ¡÷¸¸Ï¬¨ -ŠÐ=ª`J-¤/’í‰àº¿ØÔYèá}®à•ª!©Û \Âé[ͦ 0H@ 9jvt¤:p[Knâ˜~ø?4„†CаNkBúu5©Ë^+ÀäSQüß­î*Ût3RíaÑ »¼G?_݃ú¾7±¤ä¥V×J·^‡NV±ô†Ï¶úòþݬl‚‹^¾# I}«®ˆ /N/X'¸ 3ïÂG ˜ º¯ƒ¼·©¼Úð“}À&þa ï…ì mœ2—!XÆÜ­pûêT¦ñÞm#0öóèèîß6®K{3çõ‹©ë¿äbʶOiIèÊ9± +²‚ò½‘³oDba½ßôëÓì¬Ù·ñ¥+¢ùçâf˜ÔAµ‡~ÂE¯±Ñï(ô—œ0Ð  'Èщ{âpuHÁ.5?ä¿‚Y÷ѯï0ØüNªá¹ñ1¯r š±ôo)«ü9K&¬èôžÌÝt=Â~ÁyVѧçn\¥hÌ„¹Ó™ÙS>"yö«8º±‘Äg­¥«sŸF]æÀ¥.ü!óºÀú0»²Uqnœ*‚SѺˆS%r²‡3 Üÿ iØU’zÉ„]D­0æ=„œ„g­çÞ7.aXTüÆÌò£fe›ÿòòγÇK+ç í—€<<ñ0Åe”H2ïÝ~þ¤¹Ã~“?dÉø ]1îi@¬xÌäW¦ùvz«HŒ€FßÜq“!»ÚQ|züÊ÷ÞÆ‘cOb‰iÄ"ë)Û>›%ã7P1ñîÝö9QõŸkÇJ†1ëõY¼0õÄY·ÞR ŸB0‹g'lõM‘ͣщ•HÑ£7c›ŸP1¹æÜWqâÊ<¢…)2{–F yy0$Ÿ‘…h6Zpä’}Axvµ8MyÕ!ú# ÚÁ9báöT8ƒAÄO´¼R°ó‘[}Îyë^,ó‰0²xâ"f½Ý›¸»!®sãÜCÅ5Ÿ´Vçö|D®dÁ¼wûá%_Dr%ð)^r:ÏNÞïKî·þ ÌB„ˆ¡Í2ŽT—³æu¶/9œ=È1н •õ•@¿Û•éåÜ$‘SÏÔF„ø uÔíȃQIg`¨@Ʋµå _ËéeÔÇí9¬\ÜCªv©|k"žyDO„y™ªêXsGåå6Ç®{Á1Ôá1›eÅëÛMê9›GcÉ• úcÌtõl–ÞQK¹‘Ûöó†$’Ÿ±¸xU'¼g¬ä4+·A˜-ô€X[•7‚ðÃv­´Vôøšh_M¢»„Ú B|m"F ’ÕCªv©æn¿áýB Ø·©˜ø©P_å Œy…?æ™ kÏHê²Ê+0z-BÄf½Š£\ø^TÙ– g`t5š™,- Õsˆs éåÀ3×Ę7¿hH‹knòM¤¨}ËÈ€1 'Püo3¡´ ê—¿ç‹Ý»Ãé Ñù¤ž¿+9•¿DÊ9N`™ûR&Ä–«°3Xªúe»Zì½õ ¤yAo¯RºõÖáÕ߃ùÁÍ\<úæ¼×?œ¢g~ÌÛ8]‰à2Œù˜¨=ã}ï¾tëÝñ4à Í"? ÂtÈQüiåt´yÑOQ1ñ)†6÷DÉ@ƒ9ŒÒÓY:)<â%õýÛÆ¡£\†ëèS} ÆàöÕ¥[CˆE£@ÎfÑÄË$t»°xÂJ„¼ 8ŽQZ¹œù»òX8©†ÃÕw`ôs ú#åïühHˆg+©Ë¶ÎÀˆ'| ªPQòD+ j¨Bˆé,™°+WÅg”Ô-5 #0ìÅJÌhÞc2¯òn´ñ5‚ ésíã-lðöÃr™2~š<ÛÂìMö´y=þÁ‚öâÂ௡õ~휸º ÿÂálm„øQ˜ðûDîù [¾"Hü}Im}9JîC=£Ð/á÷©jœnG÷#@A“÷Œq.Á: Ÿ|·–Ú#Gêòr›c“Aˆ¿ÃЦ”Љþ–ÇÒÍ—"ä …ñ>–3“EãªÛÄv’ºÉvo<õ ‚›ãxòoyöÚw›mw)…  Eø¯ƒ)âÇ©{e»hàÏ6Ö'6ÑõéƒêÀ8wgF× 8¤á È–± Ú¶‘ çÞé$úŸÈ‰q¸Z!§fö×@ƒFiá¼çâîTô¯Aþc{ÁE—„cP¢iÐÇë}mø mõCjd‰ï{¨m¾S©w 䘯AuùÑ´ïÜq®,sШðþä`–ÀÛ’+zbÐçù“--…îÞä„ýc–gú‚i!O7¢#Àð$ú¸O5¸ =bãF¼oÁgX¢XQÁ"r†€Hv80Æ@/ öïó£>8$`ŒÂŒÖÓòrHês…/þ¸¥ÙÂ^Ìb¿É¯xO÷ 9(ÒpØÍNh,¬0B¡»;ÈûSÖCóä_ßä­û6/_Ÿj4œ\ÇÊ‚X†;@Êø êQèÁAt,«DñC~_ê2Æê:íjQê½›µ[ÜÆïámêR1Jêø¾SèJdI>ùó™ésµAרèÕé? ý²O9––!»# }H c»q¦å˜ ¸+Š=««æ®–ÚÏ ºÆ D±n!K.ÃËYÜÙRÊG‡jøžA™ùÞñF E¯£ ?Lšg#½V oKR? ?Λ.±Æû˜ÊØÖZZCA²`’‚—ÓtÆs6üÌ ¾Ã܈÷ŽãŸmì)`°À.4è|ƒ®ÂD†]ÞIHÚÄžW$çiÌäò2Ü¡'5n„Â#؃ :f'»PO}•ßÿÄ$Ä`}ë½âJØ0ZA®t!Û1¶Ë-?á•ÕÑRðZHê–)ž v´Û>ìá :ž©Š=Øbûg/ppfù€ÞÑ@{A,¹µÝê¾@Ž’Èkº’TÜüdýT¦xè8È›i!*uÂÆ~§äZ‚Øn4„Øá‘*ëÉ$E]/(¼nd|ꡑƃÀ“ÀäXƒ¾%0-šºƒ½©žä:úD馑#Ô×f„LÓËw€[ r èm-œç‹n9JúŸ”Èævïiï)ÑU,êPF±ë‘ž&ïHŠ;=M^•îË'¿o-µM©æš@Zç“:›xapp->($env); return $self->response_cb( $res, sub { my $headers = shift->[1]; Plack::Util::header_set($headers, 'X-RT-PSGIWrap' => '1'); } ); } sub PSGIWrap { return shift->wrap(@_) } 1; rt-4.4.2/t/data/plugins/Overlays/0000775000175000017500000000000013131430353016473 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/Overlays/html/0000775000175000017500000000000013131430353017437 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/Overlays/html/overlay_loaded0000664000175000017500000000025213131430353022352 0ustar vagrantvagrant<%flags> inherit => undef # avoid auth <%init> $r->content_type("text/plain"); $m->out( $RT::User::LOADED_OVERLAY ? "yes" : "no" ); $m->abort(200); rt-4.4.2/t/data/plugins/Overlays/html/user_accessible0000664000175000017500000000025413131430353022516 0ustar vagrantvagrant<%flags> inherit => undef # avoid auth <%init> $r->content_type("application/json"); $m->out( JSON( RT::User->_ClassAccessible() ) ); $m->abort(200); rt-4.4.2/t/data/plugins/Overlays/lib/0000775000175000017500000000000013131430353017241 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/Overlays/lib/RT/0000775000175000017500000000000013131430353017566 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/Overlays/lib/RT/User_Local.pm0000664000175000017500000000021013131430353022145 0ustar vagrantvagrantpackage RT::User; use strict; use warnings; our $LOADED_OVERLAY = 1; sub _LocalAccessible { { Comments => { public => 1 } } } 1; rt-4.4.2/t/data/plugins/Overlays/lib/Overlays.pm0000664000175000017500000000002513131430353021400 0ustar vagrantvagrantpackage Overlays; 1; rt-4.4.2/t/data/plugins/RT-Extension-ScripExecModule/0000775000175000017500000000000013131430353022217 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/RT-Extension-ScripExecModule/lib/0000775000175000017500000000000013131430353022765 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/RT-Extension-ScripExecModule/lib/RT/0000775000175000017500000000000013131430353023312 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/RT-Extension-ScripExecModule/lib/RT/Extension/0000775000175000017500000000000013131430353025266 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/RT-Extension-ScripExecModule/lib/RT/Extension/ScripExecModule.pm0000664000175000017500000000005413131430353030656 0ustar vagrantvagrantpackage RT::Extension::ScripExecModule; 1; rt-4.4.2/t/data/plugins/RT-Extension-ScripExecModule/lib/RT/Condition/0000775000175000017500000000000013131430353025240 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/RT-Extension-ScripExecModule/lib/RT/Condition/Foo/0000775000175000017500000000000013131430353025763 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/RT-Extension-ScripExecModule/lib/RT/Condition/Foo/Bar.pm0000664000175000017500000000017113131430353027024 0ustar vagrantvagrantpackage RT::Condition::Foo::Bar; use strict; use warnings; use base 'RT::Condition'; sub IsApplicable { return 1 } 1; rt-4.4.2/t/data/plugins/RT-Extension-ScripExecModule/lib/RT/Action/0000775000175000017500000000000013131430353024527 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/RT-Extension-ScripExecModule/lib/RT/Action/Foo/0000775000175000017500000000000013131430353025252 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/RT-Extension-ScripExecModule/lib/RT/Action/Foo/Bar.pm0000664000175000017500000000020713131430353026313 0ustar vagrantvagrantpackage RT::Action::Foo::Bar; use strict; use warnings; use base 'RT::Action'; sub Prepare { return 1 } sub Commit { return 1 } 1; rt-4.4.2/t/data/plugins/MakeClicky/0000775000175000017500000000000013131430353016703 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/MakeClicky/html/0000775000175000017500000000000013131430353017647 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/MakeClicky/html/makeclicky0000664000175000017500000000024113131430353021703 0ustar vagrantvagrant<%args> $content => "" $html => 0 <%init> $m->comp("/Elements/MakeClicky", content => \$content, html => $html); $m->out($content); $m->abort; rt-4.4.2/t/data/plugins/MakeClicky/lib/0000775000175000017500000000000013131430353017451 5ustar vagrantvagrantrt-4.4.2/t/data/plugins/MakeClicky/lib/MakeClicky.pm0000664000175000017500000000002713131430353022022 0ustar vagrantvagrantpackage MakeClicky; 1; rt-4.4.2/t/data/image.png0000664000175000017500000000753113131430353015004 0ustar vagrantvagrant‰PNG  IHDRµ&‚¡ÚDsRGB®ÎébKGDïïïÁ̃ pHYs × ×B(›xtIMEÚ$GÙIDATxÚíœ{pUEžÇ?Ýçœû ‘—„‡2H‚ˆ( Z2"!(2¨£[–a’Ak°fw­ÝM­«®jxD¤Vبuvåa@]¢Ž" â„ð L^÷žÓÝûÇ9ɽ¹¹7$XVy¾U·RésNwŸîoÿžÝB„"Ä·VWUÅž/á. Ó_ÃÎp¨C|Sá„I"DHê!¾YØß…— ÎA8?Ûµz0upHæx¼WDÛªÿ(D€@mæµ?½-è^ëßsÐYª¹  {yf[ðuHÝï8©w€°‘eÎËvÝúK «€?e\¾¶yC[õ;@7ô/Nµ$u?ªFŽ„ÜgОÄ>ªðv*؈)®Á»æLïâ ÿàÂòºßqRR¸8¬$úDÓ K*¼ /±ÐíÂâôcP«Ubo¶Ê *ï$ÒŠòlä\ 7XkÜ8©±zièú‰¼1Ž>X:Iò«(Öi–á*”ȯÀü±©TÀi7ämHê–N„ÜžÀý,U¢À—äåy1è‚ÀDÈ(ëP#î+íiÃQ¡÷¸¸Ï¬¨ -ŠÐ=ª`J-¤/’í‰àº¿ØÔYèá}®à•ª!©Û \Âé[ͦ 0H@ 9jvt¤:p[Knâ˜~ø?4„†CаNkBúu5©Ë^+ÀäSQüß­î*Ût3RíaÑ »¼G?_݃ú¾7±¤ä¥V×J·^‡NV±ô†Ï¶úòþݬl‚‹^¾# I}«®ˆ /N/X'¸ 3ïÂG ˜ º¯ƒ¼·©¼Úð“}À&þa ï…ì mœ2—!XÆÜ­pûêT¦ñÞm#0öóèèîß6®K{3çõ‹©ë¿äbʶOiIèÊ9± +²‚ò½‘³oDba½ßôëÓì¬Ù·ñ¥+¢ùçâf˜ÔAµ‡~ÂE¯±Ñï(ô—œ0Ð  'Èщ{âpuHÁ.5?ä¿‚Y÷ѯï0ØüNªá¹ñ1¯r š±ôo)«ü9K&¬èôžÌÝt=Â~ÁyVѧçn\¥hÌ„¹Ó™ÙS>"yö«8º±‘Äg­¥«sŸF]æÀ¥.ü!óºÀú0»²Uqnœ*‚SѺˆS%r²‡3 Üÿ iØU’zÉ„]D­0æ=„œ„g­çÞ7.aXTüÆÌò£fe›ÿòòγÇK+ç í—€<<ñ0Åe”H2ïÝ~þ¤¹Ã~“?dÉø ]1îi@¬xÌäW¦ùvz«HŒ€FßÜq“!»ÚQ|züÊ÷ÞÆ‘cOb‰iÄ"ë)Û>›%ã7P1ñîÝö9QõŸkÇJ†1ëõY¼0õÄY·ÞR ŸB0‹g'lõM‘ͣщ•HÑ£7c›ŸP1¹æÜWqâÊ<¢…)2{–F yy0$Ÿ‘…h6Zpä’}Axvµ8MyÕ!ú# ÚÁ9báöT8ƒAÄO´¼R°ó‘[}Îyë^,ó‰0²xâ"f½Ý›¸»!®sãÜCÅ5Ÿ´Vçö|D®dÁ¼wûá%_Dr%ð)^r:ÏNÞïKî·þ ÌB„ˆ¡Í2ŽT—³æu¶/9œ=È1н •õ•@¿Û•éåÜ$‘SÏÔF„ø uÔíȃQIg`¨@Ʋµå _ËéeÔÇí9¬\ÜCªv©|k"žyDO„y™ªêXsGåå6Ç®{Á1Ôá1›eÅëÛMê9›GcÉ• úcÌtõl–ÞQK¹‘Ûöó†$’Ÿ±¸xU'¼g¬ä4+·A˜-ô€X[•7‚ðÃv­´Vôøšh_M¢»„Ú B|m"F ’ÕCªv©æn¿áýB Ø·©˜ø©P_å Œy…?æ™ kÏHê²Ê+0z-BÄf½Š£\ø^TÙ– g`t5š™,- Õsˆs éåÀ3×Ę7¿hH‹knòM¤¨}ËÈ€1 'Püo3¡´ ê—¿ç‹Ý»Ãé Ñù¤ž¿+9•¿DÊ9N`™ûR&Ä–«°3Xªúe»Zì½õ ¤yAo¯RºõÖáÕ߃ùÁÍ\<úæ¼×?œ¢g~ÌÛ8]‰à2Œù˜¨=ã}ï¾tëÝñ4à Í"? ÂtÈQüiåt´yÑOQ1ñ)†6÷DÉ@ƒ9ŒÒÓY:)<â%õýÛÆ¡£\†ëèS} ÆàöÕ¥[CˆE£@ÎfÑÄË$t»°xÂJ„¼ 8ŽQZ¹œù»òX8©†ÃÕw`ôs ú#åïühHˆg+©Ë¶ÎÀˆ'| ªPQòD+ j¨Bˆé,™°+WÅg”Ô-5 #0ìÅJÌhÞc2¯òn´ñ5‚ ésíã-lðöÃr™2~š<ÛÂìMö´y=þÁ‚öâÂ௡õ~휸º ÿÂálm„øQ˜ðûDîù [¾"Hü}Im}9JîC=£Ð/á÷©jœnG÷#@A“÷Œq.Á: Ÿ|·–Ú#Gêòr›c“Aˆ¿ÃЦ”Љþ–ÇÒÍ—"ä …ñ>–3“EãªÛÄv’ºÉvo<õ ‚›ãxòoyöÚw›mw)…  Eø¯ƒ)âÇ©{e»hàÏ6Ö'6ÑõéƒêÀ8wgF× 8¤á È–± Ú¶‘ çÞé$úŸÈ‰q¸Z!§fö×@ƒFiá¼çâîTô¯Aþc{ÁE—„cP¢iÐÇë}mø mõCjd‰ï{¨m¾S©w 䘯AuùÑ´ïÜq®,sШðþä`–ÀÛ’+zbÐçù“--…îÞä„ýc–gú‚i!O7¢#Àð$ú¸O5¸ =bãF¼oÁgX¢XQÁ"r†€Hv80Æ@/ öïó£>8$`ŒÂŒÖÓòrHês…/þ¸¥ÙÂ^Ìb¿É¯xO÷ 9(ÒpØÍNh,¬0B¡»;ÈûSÖCóä_ßä­û6/_Ÿj4œ\ÇÊ‚X†;@Êø êQèÁAt,«DñC~_ê2Æê:íjQê½›µ[ÜÆïámêR1Jêø¾SèJdI>ùó™ésµAרèÕé? ý²O9––!»# }H c»q¦å˜ ¸+Š=««æ®–ÚÏ ºÆ D±n!K.ÃËYÜÙRÊG‡jøžA™ùÞñF E¯£ ?Lšg#½V oKR? ?Λ.±Æû˜ÊØÖZZCA²`’‚—ÓtÆs6üÌ ¾Ã܈÷ŽãŸmì)`°À.4è|ƒ®ÂD†]ÞIHÚÄžW$çiÌäò2Ü¡'5n„Â#؃ :f'»PO}•ßÿÄ$Ä`}ë½âJØ0ZA®t!Û1¶Ë-?á•ÕÑRðZHê–)ž v´Û>ìá :ž©Š=Øbûg/ppfù€ÞÑ@{A,¹µÝê¾@Ž’Èkº’TÜüdýT¦xè8È›i!*uÂÆ~§äZ‚Øn4„Øá‘*ëÉ$E]/(¼nd|ꡑƃÀ“ÀäXƒ¾%0-šºƒ½©žä:úD馑#Ô×f„LÓËw€[ r èm-œç‹n9JúŸ”Èævïiï)ÑU,êPF±ë‘ž&ïHŠ;=M^•îË'¿o-µM©æš@Zç“:›x Delivered-To: j@pallas.eruditorum.org Received: from vis.example.com (vis.example.com [212.68.68.251]) by pallas.eruditorum.org (Postfix) with SMTP id 59236111C3 for ; Thu, 12 Jun 2003 02:14:44 -0400 (EDT) Received: (qmail 29541 invoked by uid 502); 12 Jun 2003 06:14:42 -0000 Received: from sivd.example.com (HELO example.com) (192.168.42.1) by 192.168.42.42 with SMTP; 12 Jun 2003 06:14:42 -0000 Received: received from 172.20.72.174 by odie.example.com; Thu, 12 Jun 2003 08:14:27 +0200 Received: by mailserver.example.com with Internet Mail Service (5.5.2653.19) id ; Thu, 12 Jun 2003 08:14:39 +0200 Message-ID: <50362EC956CBD411A339009027F6257E013DD495@mailserver.example.com> Date: Thu, 12 Jun 2003 08:14:39 +0200 From: "Stever, Gregor" MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) To: "'jesse@example.com'" Subject: An example of mail containing text-html with an umlaut in the content Date: Thu, 12 Jun 2003 08:14:39 +0200 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello,

ist this kind of Messa= ges, that=20 causes rt to crash.

Mit freundlichen Gr=FC=DFen
Gregor=20 Stever      ^^causes Error!!
rt-4.4.2/t/data/emails/8859-15-message-series/0000775000175000017500000000000013131430353020232 5ustar vagrantvagrantrt-4.4.2/t/data/emails/8859-15-message-series/msg70000664000175000017500000000330413131430353021032 0ustar vagrantvagrantReturn-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 29551 invoked by uid 9804); 26 May 2003 18:15:16 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:15:12 +0200 Received: (Qmail 29521 invoked from network); 26 May 2003 18:15:12 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:15:12 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKcx-0000a4-00 for ; Mon, 26 May 2003 18:15:11 +0200 Received: (qmail 29511 invoked by uid 9804); 26 May 2003 18:15:10 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:15:07 +0200 Received: (Qmail 29465 invoked from network); 26 May 2003 18:15:06 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:15:06 +0200 Date: Mon, 26 May 2003 18:15:26 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972926@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [29524] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 rt-4.4.2/t/data/emails/8859-15-message-series/dir0000664000175000017500000003717313131430353020746 0ustar vagrantvagrantReturn-Path: Delivered-To: j@pallas.eruditorum.org Received: from pallas.eruditorum.org (localhost [127.0.0.1]) by pallas.eruditorum.org (Postfix) with ESMTP id 72E3A111B3; Mon, 26 May 2003 14:50:14 -0400 (EDT) Delivered-To: rt-users@pallas.eruditorum.org Received: from mail-in-02.arcor-online.net (mail-in-02.arcor-online.net [151.189.21.42]) by pallas.eruditorum.org (Postfix) with ESMTP id 15E761118D for ; Mon, 26 May 2003 14:49:56 -0400 (EDT) Received: from otdial-212-144-012-186.arcor-ip.net (otdial-212-144-011-024.arcor-ip.net [212.144.11.24]) by mail-in-02.arcor-online.net (Postfix) with ESMTP id 745EE15E87; Mon, 26 May 2003 20:53:15 +0200 (CEST) From: Dirk Pape To: Jesse Vincent , rt-users Subject: Re: [rt-users] [rt-announce] Development Snapshot 3.0.2++ Message-ID: <2147483647.1053982235@otdial-212-144-011-024.arcor-ip.net> In-Reply-To: <2147483647.1053974498@[10.0.255.35]> References: <20030523202405.GF23719@fsck.com> <2147483647.1053974498@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="==========2147500486==========" Sender: rt-users-admin@lists.fsck.com Errors-To: rt-users-admin@lists.fsck.com X-BeenThere: rt-users@lists.fsck.com X-Mailman-Version: 2.0.12 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: For users of RT: Request Tracker List-Unsubscribe: , List-Archive: Date: Mon, 26 May 2003 20:50:36 +0200 X-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,IN_REP_TO,KNOWN_MAILING_LIST,QUOTED_EMAIL_TEXT, REFERENCES,REPLY_WITH_QUOTES autolearn=ham version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) --==========2147500486========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello, here is the digest I forgot to attach. And I also forgot to say, that these were the only messages after a restart of apache. The messages in the digest are the copies which I - for testing purpose - allways queue into a mailbox just befor it is queued via rt-mailgate into the rt-system. --Am Montag, 26. Mai 2003 18:41 Uhr +0200 schrieb Dirk Pape : > I attach a digest with mails I send one after another to the rt-system > and they get queued into one queue, each as a new ticket. --==========2147500486========== Content-Type: multipart/digest; boundary="==========2147489407==========" --==========2147489407========== Content-Type: message/rfc822; name="test _________" Return-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 27591 invoked by uid 9804); 26 May 2003 18:10:50 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:10:46 +0200 Received: (Qmail 27575 invoked from network); 26 May 2003 18:10:46 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:10:46 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKYe-0000Yi-00 for ; Mon, 26 May 2003 18:10:44 +0200 Received: (qmail 27557 invoked by uid 9804); 26 May 2003 18:10:44 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:10:40 +0200 Received: (Qmail 27540 invoked from network); 26 May 2003 18:10:40 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:10:40 +0200 Date: Mon, 26 May 2003 18:11:00 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972660@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [27578] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 --==========2147489407========== Content-Type: message/rfc822; name="test _________" Return-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 27754 invoked by uid 9804); 26 May 2003 18:11:24 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:11:20 +0200 Received: (Qmail 27704 invoked from network); 26 May 2003 18:11:19 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:11:19 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKZA-0000Yy-00 for ; Mon, 26 May 2003 18:11:16 +0200 Received: (qmail 27690 invoked by uid 9804); 26 May 2003 18:11:16 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:11:13 +0200 Received: (Qmail 27677 invoked from network); 26 May 2003 18:11:13 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:11:13 +0200 Date: Mon, 26 May 2003 18:11:32 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972692@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [27711] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 --==========2147489407========== Content-Type: message/rfc822; name="test _________" Return-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 27971 invoked by uid 9804); 26 May 2003 18:12:02 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:11:52 +0200 Received: (Qmail 27908 invoked from network); 26 May 2003 18:11:52 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:11:52 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKZj-0000ZC-00 for ; Mon, 26 May 2003 18:11:51 +0200 Received: (qmail 27848 invoked by uid 9804); 26 May 2003 18:11:50 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:11:46 +0200 Received: (Qmail 27809 invoked from network); 26 May 2003 18:11:45 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:11:45 +0200 Date: Mon, 26 May 2003 18:12:05 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972725@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [27911] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 --==========2147489407========== Content-Type: message/rfc822; name="test _________" Return-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 28283 invoked by uid 9804); 26 May 2003 18:12:39 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:12:36 +0200 Received: (Qmail 28256 invoked from network); 26 May 2003 18:12:35 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:12:35 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKaQ-0000ZQ-00 for ; Mon, 26 May 2003 18:12:34 +0200 Received: (qmail 28236 invoked by uid 9804); 26 May 2003 18:12:34 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:12:30 +0200 Received: (Qmail 28224 invoked from network); 26 May 2003 18:12:30 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:12:30 +0200 Date: Mon, 26 May 2003 18:12:50 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972770@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [28259] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 --==========2147489407========== Content-Type: message/rfc822; name="test _________" Return-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 28578 invoked by uid 9804); 26 May 2003 18:13:20 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:13:15 +0200 Received: (Qmail 28534 invoked from network); 26 May 2003 18:13:14 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:13:14 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKb1-0000Ze-00 for ; Mon, 26 May 2003 18:13:11 +0200 Received: (qmail 28516 invoked by uid 9804); 26 May 2003 18:13:11 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:13:08 +0200 Received: (Qmail 28479 invoked from network); 26 May 2003 18:13:07 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:13:07 +0200 Date: Mon, 26 May 2003 18:13:27 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972807@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [28540] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 --==========2147489407========== Content-Type: message/rfc822; name="test _________" Return-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 29108 invoked by uid 9804); 26 May 2003 18:14:15 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:14:10 +0200 Received: (Qmail 29066 invoked from network); 26 May 2003 18:14:10 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:14:10 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKbw-0000Zr-00 for ; Mon, 26 May 2003 18:14:08 +0200 Received: (qmail 29054 invoked by uid 9804); 26 May 2003 18:14:08 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:14:04 +0200 Received: (Qmail 29036 invoked from network); 26 May 2003 18:14:04 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:14:04 +0200 Date: Mon, 26 May 2003 18:14:24 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972864@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [29069] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 --==========2147489407========== Content-Type: message/rfc822; name="test _________" Return-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 29551 invoked by uid 9804); 26 May 2003 18:15:16 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:15:12 +0200 Received: (Qmail 29521 invoked from network); 26 May 2003 18:15:12 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:15:12 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKcx-0000a4-00 for ; Mon, 26 May 2003 18:15:11 +0200 Received: (qmail 29511 invoked by uid 9804); 26 May 2003 18:15:10 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:15:07 +0200 Received: (Qmail 29465 invoked from network); 26 May 2003 18:15:06 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:15:06 +0200 Date: Mon, 26 May 2003 18:15:26 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972926@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [29524] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 --==========2147489407==========-- --==========2147500486==========-- _______________________________________________ rt-users mailing list rt-users@lists.fsck.com http://lists.fsck.com/mailman/listinfo/rt-users Have you read the FAQ? The RT FAQ Manager lives at http://fsck.com/rtfm rt-4.4.2/t/data/emails/8859-15-message-series/msg10000664000175000017500000000330413131430353021024 0ustar vagrantvagrantReturn-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 27591 invoked by uid 9804); 26 May 2003 18:10:50 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:10:46 +0200 Received: (Qmail 27575 invoked from network); 26 May 2003 18:10:46 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:10:46 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKYe-0000Yi-00 for ; Mon, 26 May 2003 18:10:44 +0200 Received: (qmail 27557 invoked by uid 9804); 26 May 2003 18:10:44 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:10:40 +0200 Received: (Qmail 27540 invoked from network); 26 May 2003 18:10:40 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:10:40 +0200 Date: Mon, 26 May 2003 18:11:00 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972660@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [27578] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 rt-4.4.2/t/data/emails/8859-15-message-series/msg30000664000175000017500000000330313131430353021025 0ustar vagrantvagrantReturn-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 27971 invoked by uid 9804); 26 May 2003 18:12:02 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:11:52 +0200 Received: (Qmail 27908 invoked from network); 26 May 2003 18:11:52 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:11:52 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKZj-0000ZC-00 for ; Mon, 26 May 2003 18:11:51 +0200 Received: (qmail 27848 invoked by uid 9804); 26 May 2003 18:11:50 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:11:46 +0200 Received: (Qmail 27809 invoked from network); 26 May 2003 18:11:45 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:11:45 +0200 Date: Mon, 26 May 2003 18:12:05 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972725@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [27911] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 rt-4.4.2/t/data/emails/8859-15-message-series/msg50000664000175000017500000000330313131430353021027 0ustar vagrantvagrantReturn-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 28578 invoked by uid 9804); 26 May 2003 18:13:20 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:13:15 +0200 Received: (Qmail 28534 invoked from network); 26 May 2003 18:13:14 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:13:14 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKb1-0000Ze-00 for ; Mon, 26 May 2003 18:13:11 +0200 Received: (qmail 28516 invoked by uid 9804); 26 May 2003 18:13:11 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:13:08 +0200 Received: (Qmail 28479 invoked from network); 26 May 2003 18:13:07 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:13:07 +0200 Date: Mon, 26 May 2003 18:13:27 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972807@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [28540] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 rt-4.4.2/t/data/emails/8859-15-message-series/msg40000664000175000017500000000330313131430353021026 0ustar vagrantvagrantReturn-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 28283 invoked by uid 9804); 26 May 2003 18:12:39 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:12:36 +0200 Received: (Qmail 28256 invoked from network); 26 May 2003 18:12:35 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:12:35 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKaQ-0000ZQ-00 for ; Mon, 26 May 2003 18:12:34 +0200 Received: (qmail 28236 invoked by uid 9804); 26 May 2003 18:12:34 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:12:30 +0200 Received: (Qmail 28224 invoked from network); 26 May 2003 18:12:30 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:12:30 +0200 Date: Mon, 26 May 2003 18:12:50 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972770@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [28259] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 rt-4.4.2/t/data/emails/8859-15-message-series/msg60000664000175000017500000000330313131430353021030 0ustar vagrantvagrantReturn-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 29108 invoked by uid 9804); 26 May 2003 18:14:15 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:14:10 +0200 Received: (Qmail 29066 invoked from network); 26 May 2003 18:14:10 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:14:10 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKbw-0000Zr-00 for ; Mon, 26 May 2003 18:14:08 +0200 Received: (qmail 29054 invoked by uid 9804); 26 May 2003 18:14:08 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:14:04 +0200 Received: (Qmail 29036 invoked from network); 26 May 2003 18:14:04 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:14:04 +0200 Date: Mon, 26 May 2003 18:14:24 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972864@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [29069] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 rt-4.4.2/t/data/emails/8859-15-message-series/msg20000664000175000017500000000330413131430353021025 0ustar vagrantvagrantReturn-Path: Delivered-To: pape-rtdoublecheck@mi.fu-berlin.de Received: (qmail 27754 invoked by uid 9804); 26 May 2003 18:11:24 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:11:20 +0200 Received: (Qmail 27704 invoked from network); 26 May 2003 18:11:19 +0200 Received: From es.inf.fu-berlin.de (160.45.110.22) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:11:19 +0200 Received: from leibniz ([160.45.40.10] helo=math.fu-berlin.de) by es.inf.fu-berlin.de with smtp (Exim 3.35 #1 (Debian)) id 19KKZA-0000Yy-00 for ; Mon, 26 May 2003 18:11:16 +0200 Received: (qmail 27690 invoked by uid 9804); 26 May 2003 18:11:16 +0200 Received: from localhost (HELO math.fu-berlin.de) (127.0.0.1) by localhost with SMTP; 26 May 2003 18:11:13 +0200 Received: (Qmail 27677 invoked from network); 26 May 2003 18:11:13 +0200 Received: From eremix.inf.fu-berlin.de (HELO eremix) (160.45.113.36) by leibniz.math.fu-berlin.de with SMTP; 26 May 2003 18:11:13 +0200 Date: Mon, 26 May 2003 18:11:32 +0200 From: Dirk Pape To: staff@tec.mi.fu-berlin.de Subject: =?ISO-8859-15?Q?test_=E4=F6=FC=DF=C4=D6=DC=DF=A4?= Message-ID: <2147483647.1053972692@[10.0.255.35]> X-Mailer: Mulberry/3.0.3 (Mac OS X) X-Envelope-Sender: pape@inf.fu-berlin.de X-Envelope-Sender: pape@inf.fu-berlin.de X-Virus-Scanned: by AMaViS 0.3.12pre7-U23 [27711] (NAI-uvscan@math.fu-berlin.de) X-Remote-IP: 160.45.110.22 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; FORMAT=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline test nochmal in anderer Queue test =E4=F6=FC=DF=C4=D6=DC=DF=A4 rt-4.4.2/t/data/emails/nested-rfc-8220000664000175000017500000002310013131430353016742 0ustar vagrantvagrantReturn-Path: Delivered-To: j@pallas.eruditorum.org Received: from example.com (example.com [213.88.137.35]) by pallas.eruditorum.org (Postfix) with ESMTP id 869591115E for ; Sun, 29 Jun 2003 18:04:04 -0400 (EDT) Received: from jonas by example.com with local (Exim 4.20) id 19WkLK-0004Vr-0I for jesse@bestpractical.com; Mon, 30 Jun 2003 00:08:18 +0200 Resent-To: jesse@bestpractical.com Resent-From: Jonas Liljegren Resent-Date: Mon, 30 Jun 2003 00:08:17 +0200 Received: from mail by example.com with spam-scanned (Exim 4.20) id 19Wayz-00068j-KO for jonas@astral.example.com; Sun, 29 Jun 2003 14:08:42 +0200 Received: from jonas by example.com with local (Exim 4.20) id 19Wayz-00068g-FY for red@example.com; Sun, 29 Jun 2003 14:08:37 +0200 To: Redaktionen Subject: [Jonas Liljegren] Re: [Para] =?iso-8859-1?q?Niv=E5er=3F?= From: Jonas Liljegren Date: Sun, 29 Jun 2003 14:08:37 +0200 Message-ID: <87d6gxt7ay.fsf@example.com> User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Sender: Jonas Liljegren Resent-Message-Id: Resent-Sender: Jonas Liljegren Resent-Date: Mon, 30 Jun 2003 00:08:18 +0200 X-Spam-Status: No, hits=-5.7 required=5.0 tests=AWL,BAYES_10,EMAIL_ATTRIBUTION,MAILTO_WITH_SUBJ, QUOTED_EMAIL_TEXT,USER_AGENT_GNUS_UA version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Material f=F6r att uppdatera texten om niv=E5er. Denna text b=F6r dessutom ligga som ett uppslagsord och inte d=E4r den ligg= er nu. --=-=-= Content-Type: message/rfc822 Content-Disposition: inline Return-path: Received: from mail by example.com with spam-scanned (Exim 4.20) id 19WFzq-0005i1-WE for jonas@example.com; Sat, 28 Jun 2003 15:44:13 +0200 Received: from localhost ([127.0.0.1] helo=example.com ident=list) by example.com with esmtp (Exim 4.20) id 19WFzp-0005hf-Tz; Sat, 28 Jun 2003 15:44:05 +0200 Received: from mail by example.com with spam-scanned (Exim 4.20) id 19WFzh-0005hR-Bu for list@example.com; Sat, 28 Jun 2003 15:44:03 +0200 Received: from jonas by example.com with local (Exim 4.20) id 19WFzh-0005hO-AO for list@example.com; Sat, 28 Jun 2003 15:43:57 +0200 To: list@example.com Subject: Re: [Para] =?iso-8859-1?q?Niv=E5er=3F?= References: <002701c33d62$170fb2e0$a33740d5@TELIA.COM> <002301c33d66$bf6483e0$d97864d5@remotel2tu76c8> <64753.217.210.4.156.1056801224.squirrel@example.com> From: Jonas Liljegren Date: Sat, 28 Jun 2003 15:43:57 +0200 In-Reply-To: <64753.217.210.4.156.1056801224.squirrel@example.com> (Jakob Carlsson's message of "Sat, 28 Jun 2003 13:53:44 +0200 (CEST)") Message-ID: <877k76uxk2.fsf@example.com> User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.2 (gnu/linux) X-BeenThere: list@example.com X-Mailman-Version: 2.1.2 Precedence: list List-Id: Öppen lista för alla medlemmar List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: list-bounces@example.com Errors-To: list-bounces@example.com X-Spam-Status: No, hits=-7.0 required=5.0 tests=BAYES_00,EMAIL_ATTRIBUTION,IN_REP_TO,QUOTED_EMAIL_TEXT, REFERENCES,REPLY_WITH_QUOTES,USER_AGENT_GNUS_UA version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable "Jakob Carlsson" writes: >> Om du g=E5r in p=E5 Hemsidan och sen p=E5 Torget. >> D=E4r ser du att det st=E5r ditt anv=E4ndarnamn och >> bredvid det Niv=E5 5. >> Klicka p=E5 niv=E5 5 s=E5 kommer du in p=E5 en sida som >> f=F6rklarar allt om niv=E5systemet. > > Bra svar. Men jag k=E4nner f=F6r att ge en kort f=F6rklaring av niv=E5-sy= stemet. Jag skulle kunna l=E4gga en massa tid p=E5 at skriva samma sak om och om igen. Fliker in h=E4r f=F6r att s=E4ga detta =E4nnu en g=E5ng...: * Det =E4r jag som hittat p=E5 det h=E4r med niv=E5system * Det =E4r en stor skillnad p=E5 hur det =E4r t=E4nkt att vara och hur det= =E4r nu. Jag har stora planer och en massa id=E9er jag vill genomf=F6ra. * Niv=E5systemet =E4r en =E5terkoppling f=F6r vad man gjort f=F6r webbplat= sen. Som ett tack g=F6r hj=E4lpen. * Systemet finns som en inspiration f=F6r de som d=E5 k=E4nner f=F6r att g= =F6ra mer. Men jag vill inte att det ska ge en negativ influens f=F6r de som inte gillar niv=E5er. Var och en ska kunna v=E4lja att ignorera niv=E5n. Speciellt b=F6r de f=F6rst=E5 att det inte har att g=F6ra med graden av andlig utveckling, esoteriska kunskaper eller n=E5got s=E5dant. * Inspirationen till niv=E5erna kommer fr=E5n spel, hemliga ordenssystem, kosmska hiearkier, skr=E5v=E4sen, akademier, politisk administration, osv. Det =E4r ett element av rollspel. En lek. * Olika niv=E5er motsvarar olika roller p=E5 webbplatsen. Webbplatsen webbmaster och ansvbariga har en viss niv=E5, bes=F6kare och g=E4ster har en annan niv=E5. * Alla datorsystem har administrat=F6rssystem f=F6r dem som sk=F6ter systemet. Jag har valt att arrangera dessa funktioner i en skala. Niv=E5n anger hur mycket av systemet du har r=E4tt att administrera. * Att ha ett niv=E5system f=F6r access g=F6r att man kan g=F6ra som p=E5 f= ilm; att l=E5ta de med h=F6gre access komma =E5t mer information. De med riktigt h=F6g niv=E5 kan n=E5 topphemlig information. P=E5 denna webbpl= ats kan varje anv=E4ndae v=E4lja att h=E5lla vissa personliga uppgifter. Har du h=F6g niv=E5 har du rollen som anv=E4ndaradministrat=F6r och har tillg=E5ng till dessa uppgifter. Just nu =E4r vi tre personer med denna niv=E5n. * Niv=E5systemet =E4r ett m=E5tt p=E5 p=E5litlighet. Vi ger dig h=F6gre n= iv=E5 n=E4r vi litar p=E5 att du inte kommer att f=F6rst=F6ra f=F6r oss. F=F6r ju h= =F6gre niv=E5, desto l=E4ttare kan du sabbotera inneh=E5llet. * P=E5 en h=F6gre niv=E5 beh=F6vs det inte bara att vi litar p=E5 att du v= ill v=E4l. Du m=E5ste =E4ven ha ett gott omd=F6me, teknisk f=F6rst=E5else, intresse och logiskt t=E4nkande. Utan detta =E4r det l=E4tt h=E4nt att = du f=F6rst=F6r saker av misstag. * Vi vill uppmuntra medlemmarna att g=F6ra det som =E4r bra f=F6r webbplatsen. Tilldelandet av h=F6gre niv=E5 ska uppmuntra till att g=F6ra det som =E4r bra. * F=F6r att minska missbruk av e-postadresser visar vi e-postadresser bara f=F6r de med lite h=F6gre niv=E5. P=E5 s=E5 vis vill vi undvika att n=E5gon g=E5r med som medlem bara f=F6r att samla e-postadresser f=F6r a= tt sedan g=F6ra reklamutskick. * Idag n=E5r du olika niv=E5er p=E5 detta vis: 0. Kom in p=E5 webbplatsen som g=E4st 1. V=E4lj anv=E4ndarnamn och ange e-postadress 2. Logga in med det l=F6senord som skickats till dig 3. Skrivit en presentation 5. Presentationen har godk=E4nts 6. Du har svarat p=E5 ett f=E5tal fr=E5gor om dina intressen 7. Du har svarat p=E5 en massa fr=E5gor om intressen och beskrivit dem detaljerat 10. N=E5gon v=E4ktare tycker du f=F6rtj=E4nar h=F6gre niv=E5 f=F6r att du= =E4r s=E5 trevlig och engagerad i webbplatsen. 11. Du har gjort ett antal kopplingar mellan =E4mnen och =F6verv=E4gande delan av dem har godk=E4nts av en v=E4ktare, och du accepterar att b=F6rja som l=E4rling i v=E4ktarakademin (jobbet som systemadministrat=F6r) 12-39. D=E5 och d=E5 tittar jag p=E5 vad du gjort i form av skrivande av texter och arbetande med uppslagsverkets =E4mnen, och justerar din niv=E5 i f=F6rh=E5llande till m=E4ngd och kvalit=E9 p=E5 arbetet 40. Du har full=E4ndat ett helt =E4mnesomr=E5de. En m=E4ngd sammanl=E4nk= ade =E4mnen med bra textinneh=E5ll. 41. F=F6rtroende att arbeta med adminstration av medlemsregistret. 42. Delaktig i utvecklandet av webbplatsens prgrammering. * Allts=E5. Automatik tar dig till niv=E5 7. * Men som sagt. Jag har en massa andra planer d=E4r mycket mer kopplas till niv=E5er och d=E4r det finns systemautomatik f=F6r hela v=E4gen till niv=E5 40. * 41 och 42 ligger utanf=F6r niv=E5systemet i =F6vrigt. Den som har de niv=E5erna har inte n=F6dv=E4ndigtvis tagit sig till niv=E5 40 innan. De motsvaras av anv=E4ndaradministrat=F6r och systemadministrat=F6r och niv=E5n speglar maktbefogenheterna snarare =E4n vad man i =F6vrigt gjort f=F6r webbplatsen. * Alla texter. Allt inneh=E5ll =E4r =F6ppet f=F6r alla. =C4ven f=F6r bes= =F6kare som inte loggar in. Du kan till och med g=E5 in p=E5 administrationssidorna utan att logga in. Vi g=F6mmer inte inneh=E5ll. Det vi g=F6r =E4r att hindra dig fr=E5n att =E4ndra inneh=E5llet. Vi d= =F6ljer dock en del information om andra medlemmar i syfte att f=E5 s=E5 m=E5nga som m=F6jligt att sj=E4lv skriva in sig och skriva en presentation. --=20 / Jonas - http://jonas.example.com/myself/en/index.html _______________________________________________ List mailing list List@example.com http://example.com/cgi-bin/mailman/listinfo/list --=-=-= -- / Jonas - http://jonas.example.com/myself/en/index.html --=-=-=-- rt-4.4.2/t/data/emails/new-ticket-from-iso-8859-10000664000175000017500000000257213131430353020765 0ustar vagrantvagrantReturn-Path: Delivered-To: j@pallas.eruditorum.org Received: from sm1.nordkapp.net (sm1.nordkapp.net [62.70.54.150]) by pallas.eruditorum.org (Postfix) with ESMTP id 48F4E11112 for ; Mon, 2 Jun 2003 14:58:37 -0400 (EDT) Received: (qmail 3612 invoked by uid 1009); 2 Jun 2003 18:58:36 -0000 Received: from unknown (HELO office.nordkapp.net) (213.161.186.83) by 0 with SMTP; 2 Jun 2003 18:58:36 -0000 Message-Id: <5.2.1.1.0.20030602205708.0314c5f8@mail.nordkapp.net> X-Sender: hw@nordkapp.net@mail.nordkapp.net X-Mailer: QUALCOMM Windows Eudora Version 5.2.1 Date: Mon, 02 Jun 2003 20:58:30 +0200 To: Jesse Vincent From: Wilhelmsen Håvard Subject: Re: rt-3.0.3pre1 In-Reply-To: <20030602185607.GN10811@fsck.com> References: <5.2.1.1.0.20030602204834.031406d8@mail.nordkapp.net> <5.2.1.1.0.20030530194214.0371c988@mail.nordkapp.net> <5.2.1.1.0.20030530194214.0371c988@mail.nordkapp.net> <5.2.1.1.0.20030602204834.031406d8@mail.nordkapp.net> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1"; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,EMAIL_ATTRIBUTION,IN_REP_TO,QUOTED_EMAIL_TEXT, REFERENCES,REPLY_WITH_QUOTES autolearn=ham version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) Håvard rt-4.4.2/t/data/emails/rfc2231-attachment-filename-continuations0000664000175000017500000000223713131430353024270 0ustar vagrantvagrantMessage-ID: Date: Wed, 7 Dec 2011 20:32:40 +0900 (JST) From: root@localhost Subject: Client =?ISO-2022-JP?B?Pw==?= Japanese Attachment Name issue MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_2017_4220946.1323257560967" X-Priority: 3 X-MSMail-Priority: Normal Priority: normal X-Mailer: @nifty Webmail ------=_Part_2017_4220946.1323257560967 Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit Some data in a file ------=_Part_2017_4220946.1323257560967 Content-Type: text/plain; name="=?ISO-2022-JP?B?GyRCPzckNyQkJUYlLSU5JUgbKEIgGyRCJUkbKEI=?= =?ISO-2022-JP?B?GyRCJS0lZSVhJXMlSBsoQi50eHQ=?=" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline; filename*0*=ISO-2022-JP'ja'%1b$B%3f7$7$$%25F%25%2d%259%25H%1b%28B; filename*1*=%20; filename*2*=%1b$B%25I%25%2d%25e%25a%25s%25H%1b%28B; filename*3=.txt =EF=BB=BFSome data in a file with a file name of "=E6=96=B0=E3=81=97=E3=81= =84=E3=83=86=E3=82=AD=E3=82=B9=E3=83=88" and "=E3=83=89=E3=82=AD=E3=83=A5=E3=83= =A1=E3=83=B3=E3=83=88.txt" joined with a space; for testing in RT with ------=_Part_2017_4220946.1323257560967-- rt-4.4.2/t/data/emails/multipart-alternative-with-umlaut0000664000175000017500000000433113131430353023217 0ustar vagrantvagrantReturn-Path: Delivered-To: j@pallas.eruditorum.org Received: from vis.example.com (vis.example.com [212.68.68.251]) by pallas.eruditorum.org (Postfix) with SMTP id 59236111C3 for ; Thu, 12 Jun 2003 02:14:44 -0400 (EDT) Received: (qmail 29541 invoked by uid 502); 12 Jun 2003 06:14:42 -0000 Received: from sivd.example.com (HELO example.com) (192.168.42.1) by 192.168.42.42 with SMTP; 12 Jun 2003 06:14:42 -0000 Received: received from 172.20.72.174 by odie.example.com; Thu, 12 Jun 2003 08:14:27 +0200 Received: by mailserver.example.com with Internet Mail Service (5.5.2653.19) id ; Thu, 12 Jun 2003 08:14:39 +0200 Message-ID: <50362EC956CBD411A339009027F6257E013DD495@mailserver.example.com> Date: Thu, 12 Jun 2003 08:14:39 +0200 From: "Stever, Gregor" MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) To: "'jesse@example.com'" Subject: RE: [rt-users] HTML-encoded mails with umlaute Date: Thu, 12 Jun 2003 08:14:39 +0200 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C330A9.E7BDD590" X-Spam-Status: No, hits=0.0 required=5.0 tests=AWL,HTML_50_60,HTML_MESSAGE,INVALID_DATE version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) ------_=_NextPart_001_01C330A9.E7BDD590 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, ist this kind of Messages, that causes rt to crash.=20 Mit freundlichen Gr=FC=DFen Gregor Stever ^^causes Error!! ------_=_NextPart_001_01C330A9.E7BDD590 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hello,

ist this kind of Messa= ges, that=20 causes rt to crash.

Mit freundlichen Gr=FC=DFen
Gregor=20 Stever      ^^causes Error!!
------_=_NextPart_001_01C330A9.E7BDD590-- rt-4.4.2/t/data/emails/crashes-file-based-parser0000664000175000017500000002045313131430353021322 0ustar vagrantvagrantX-Real-To: Received: from [194.87.5.31] (HELO sinbin.d-s.example.com) by cgp.example.com (CommuniGate Pro SMTP 4.0.6/D4) with ESMTP-TLS id 125035761 for mitya@example.com; Thu, 11 Dec 2003 15:17:46 +0300 Received: (from daemon@localhost) by sinbin.d-s.example.com (8.12.9p1/8.11.6) id hBBCHjN0031595 for mitya@example.com; Thu, 11 Dec 2003 15:17:45 +0300 (MSK) (envelope-from noc@rt3.mx.example.com) Received: from d-s.example.com by sinbin.d-s.example.com with ESMTP id hBBCHjar031575; (8.12.9p2/D) Thu, 11 Dec 2003 15:17:45 +0300 (MSK) X-Real-To: Sender: (Network Operation Center) To: mitya@example.com Date: Thu, 11 Dec 2003 15:17:45 +0300 Message-ID: X-Original-Return-Path: Received: from [194.87.0.16] (HELO mail.d-s.example.com) by d-s.example.com (CommuniGate Pro SMTP 4.1.5/D1) with ESMTP id 120757484 for noc@rt3.mx.example.com; Mon, 27 Oct 2003 09:40:53 +0300 Received: from [194.87.0.22] (HELO moscvax.d-s.example.com) by mail.d-s.example.com (CommuniGate Pro SMTP 4.1.5/D) with ESMTP-TLS id 107945800 for noc@rt3.mx.example.com; Mon, 27 Oct 2003 09:40:53 +0300 Received: from d-s.example.com (mx.d-s.example.com [194.87.0.32]) by moscvax.d-s.example.com (8.12.9/8.12.9) with ESMTP id h9R6erFm062621 for ; Mon, 27 Oct 2003 09:40:53 +0300 (MSK) (envelope-from vox19@b92.d-s.example.com) Received: by d-s.example.com (CommuniGate Pro PIPE 4.1.5/D1) with PIPE id 120757490; Mon, 27 Oct 2003 09:40:53 +0300 Received: from [194.87.2.108] (HELO b92.d-s.example.com) by d-s.example.com (CommuniGate Pro SMTP 4.1.5/D1) with ESMTP-TLS id 120757480 for security@d.example.com; Mon, 27 Oct 2003 09:40:52 +0300 Received: from b92.d-s.example.com (localhost [127.0.0.1]) by b92.d-s.example.com (8.12.8p1/8.12.3) with ESMTP id h9R6eqIe014669 for ; Mon, 27 Oct 2003 09:40:52 +0300 (MSK) (envelope-from vox19@b92.d-s.example.com) Received: from localhost (localhost [[UNIX: localhost]]) by b92.d-s.example.com (8.12.8p1/8.12.3/Submit) id h9R6epst014668 for security@d.example.com; Mon, 27 Oct 2003 09:40:51 +0300 (MSK) From: "Stanislav" Subject: Fwd: scanning my ports X-Original-Date: Mon, 27 Oct 2003 10:40:51 +0400 User-Agent: KMail/1.5.4 X-Original-To: security@d.example.com MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_z3Ln/tUeUBipHgx" X-Original-Message-Id: <200310270940.51758.vox19@d.example.com> X-Spam-Checker-Version: SpamAssassin 2.60-jumbo.demos (1.212-2003-09-23-exp) X-Spam-Level: X-Spam-Status: No, hits=-6.8 required=5.0 tests=BAYES_00,FROM_ENDS_IN_NUMS, HTML_MESSAGE,SUBJECT_RT autolearn=ham version=2.60-jumbo.demos X-Spam-Report: -6.8 points, 5.0 required; * -3.0 SUBJECT_RT Tracking system * 1.0 FROM_ENDS_IN_NUMS From: ends in numbers * 0.1 HTML_MESSAGE BODY: HTML included in message * -4.9 BAYES_00 BODY: Bayesian spam probability is 0 to 1% * [score: 0.0000] --Boundary-00=_z3Ln/tUeUBipHgx Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Content-Disposition: inline FYI ---------- Forwarded Message ---------- Subject: [DEMOS #12148] scanning my ports Date: Sunday 26 October 2003 20:19 From: 1stwizard@isp.example.com To: no-reply@d-r.example.com This transaction appears to have no content ------------------------------------------------------- -- best wishes, Stanislav A. Mushkat http://www.di.example.com --Boundary-00=_z3Ln/tUeUBipHgx Content-Type: text/plain; charset="iso-8859-1"; name=" " Content-Transfer-Encoding: 7bit Content-Disposition: inline Somebody at IP 127.0.0.1 scanned my ports. --Boundary-00=_z3Ln/tUeUBipHgx Content-Type: text/html; charset="iso-8859-1"; name=" " Content-Transfer-Encoding: 7bit Content-Disposition: inline
Somebody at IP 127.0.0.1 scanned my ports.
 
 
--Boundary-00=_z3Ln/tUeUBipHgx Content-Type: image/jpeg; charset="iso-8859-1"; name="BackGrnd.jpg" Content-Transfer-Encoding: base64 Content-Disposition: inline; filename="BackGrnd.jpg" /9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAHgAA/+4AIUFk b2JlAGTAAAAAAQMAEAMCAwYAAAHbAAAC1gAABZX/2wCEABALCwsMCxAMDBAX Dw0PFxsUEBAUGx8XFxcXFx8eFxoaGhoXHh4jJSclIx4vLzMzLy9AQEBAQEBA QEBAQEBAQEABEQ8PERMRFRISFRQRFBEUGhQWFhQaJhoaHBoaJjAjHh4eHiMw Ky4nJycuKzU1MDA1NUBAP0BAQEBAQEBAQEBAQP/CABEIAGUAcwMBIgACEQED EQH/xACAAAEBAQEAAAAAAAAAAAAAAAAAAQIGAQEBAAAAAAAAAAAAAAAAAAAA ARABAAICAwEAAgMAAAAAAAAAAQARIQIxQRIiQDIQMFARAAICAgIBBAIDAQEA AAAAAAERACExQVFhcYGRobECEsHhMtHxEgEAAAAAAAAAAAAAAAAAAABQ/9oA DAMBAAIRAxEAAADtRZYE1ASghQFgUZoCkKSwLmhcllAEqkSkqFAlhUomoAS3 IoJqFlDNpFEAQFE1AIVYAWIVKAJRNZpYCwVmmshKACA0CBAUCBYGwf/aAAgB AgABBQD8B/yP/9oACAEDAAEFAPz6/or8H//aAAgBAQABBQC2+ZeHjbD+saX6 hwXeDW1Rg4xLLTa+m7ZiIEsI1MTiHP1dYpvFADiFM1/X6nq9byuwdPPz5oFo fWlEMQ9ULKrWq2ppG9Y2J6INQma9lVTRdlUKgHzXXSEECw1SYu5WsGoJPkis ZYpx31GvXZQ/JM3VwShzVTsp1EZbBI8LcaUSih86+s2Zl4Wp6+lAZnVsDkjd ku5m+lJTdXDG2SHM9M2wKX1YxsaZTTwmoVrYnqsMrM652yjs01K0mtbGAz6Y 5dpfqNz06qpq5QNjiIjiZtbhtceNuf0jyeqGgu6rXMvI4omPWbPMYzEfMI+a xHnFvOP4/9oACAECAgY/AGP/2gAIAQMCBj8AY//aAAgBAQEGPwB72Yucb1Bf IhFEaeZ+xRXFQELN+HEUQdjU0Xn4g9gRCQcpw1yajGYsP/kFvUzvjUBWrIMF HI2OJQNEAjiEEFdTmfG/MTHq5RFOnpTV3kzCBx7x4YOD1AV5uYJvnqMA0hep jfwpYCwC4Bx3q55zeZRBCw9TkoIuHw78RdczSNH2mgqcLpRC+RASAkA3B13m cYd5mR84c/yOx4lWtRAZ6mGDhiP9WgXVyhWA+xDgMOWGMsTg/wBTz8SjjXrP 8hHIlX1MZ6mDzgc/cIV/iyN1GBR0MQMKjnEzvvMz8mUkErKlfqU63iV+IKNH 7mNZBLFQEpEDeDOV32IVn8WR4caoywqI2p695mbZzNUQIcKfk0bo+0NpCqn7 CiQiNGXkdQen1DpjGeZ7WNw3pK+I93maCPc16+Zkf6XxMCsFwAkaiIB57vc/ IAhZ/HqZBBbB0ZokAEOGxsYqBgPp8agQBu4VSMJdqx6SwDsGBrTmAR93uZGX 6KePowEADAIjoX8gw459CICaW/MLGvodQfkDW71zBxRHtB3j3jC4PMIYoAgK NfPMCQNN7jCzvlzXPopzhQvNZY3CRya9ZrEFfRE0iCB5mscZuVYfKmAi94uE 3Q8qfytQ7xD0svmFcmaxNPI8iMjh3pmF2HbzqeUi+YkiD/MrOl5LmbwPuWVf mXpv3hDH8qAjPpiZHXkRnSd6ZhB53mejzKV6US0K9TCCLyCeIhtETX5MsHBG JkD/ANiFkMCE2qGoCdZ8Q8AMGpYFqEhdhRIYH3CF3d1M/Mexma+4CwdQ2Ddc x0exAlmj04QUQd8QWLB/iB5GxmEg5TENVZqPYzFV8eHAy9T/AEc8a4n3Ov6g /VwvE6lpQ4VNysXzhS8esOO8w/rlF/rypjV3B5H1Knr8T//Z --Boundary-00=_z3Ln/tUeUBipHgx-- rt-4.4.2/t/data/emails/russian-subject-no-content-type0000664000175000017500000000405713131430353022573 0ustar vagrantvagrantReturn-Path: X-Real-To: Received: from [194.87.5.31] (HELO sinbin.example.com) by cgp.second.example.com (CommuniGate Pro SMTP 4.0.5/D) with ESMTP-TLS id 69661026 for mitya@second.example.com; Wed, 18 Jun 2003 11:14:49 +0400 Received: (from daemon@localhost) by sinbin.example.com (8.12.8/8.11.6) id h5I7EfOj096595 for mitya@second.example.com; Wed, 18 Jun 2003 11:14:41 +0400 (MSD) (envelope-from mitya@fling-wing.example.com) Received: from example.com by sinbin.example.com with ESMTP id h5I7Ee8K096580; (8.12.9/D) Wed, 18 Jun 2003 11:14:40 +0400 (MSD) X-Real-To: Received: from [194.87.0.31] (HELO mail.example.com) by example.com (CommuniGate Pro SMTP 4.1b7/D) with ESMTP id 76217696 for mitya@example.com; Wed, 18 Jun 2003 11:14:40 +0400 Received: by mail.example.com (CommuniGate Pro PIPE 4.1b7/D) with PIPE id 63920083; Wed, 18 Jun 2003 11:14:40 +0400 Received: from [194.87.5.69] (HELO fling-wing.example.com) by mail.example.com (CommuniGate Pro SMTP 4.1b7/D) with ESMTP-TLS id 63920055 for mitya@example.com; Wed, 18 Jun 2003 11:14:38 +0400 Received: from fling-wing.example.com (localhost [127.0.0.1]) by fling-wing.example.com (8.12.9/8.12.6) with ESMTP id h5I7Ec5R000153 for ; Wed, 18 Jun 2003 11:14:38 +0400 (MSD) (envelope-from mitya@fling-wing.example.com) Received: (from mitya@localhost) by fling-wing.example.com (8.12.9/8.12.6/Submit) id h5I7Ec0J000152 for mitya@example.com; Wed, 18 Jun 2003 11:14:38 +0400 (MSD) Date: Wed, 18 Jun 2003 11:14:38 +0400 (MSD) From: "Dmitry S. Sivachenko" Message-Id: <200306180714.h5I7Ec0J000152@fling-wing.example.com> To: mitya@example.com Subject: ÔÅÓÔ ÔÅÓÔ X-Spam-Checker-Version: SpamAssassin 2.60-cvs-mail.demos (1.193-2003-06-13-exp) X-Spam-Level: + X-Spam-Status: No, hits=1.0 required=5.0 tests=SUBJ_ILLEGAL_CHARS autolearn=no version=2.60-cvs-mail.demos X-Spam-Report: * SUBJ_ILLEGAL_CHARS 1.0 (Subject contains too many raw illegal characters) Content-Length: 6 ôåóô rt-4.4.2/t/data/emails/multipart-report0000664000175000017500000000422713131430353017742 0ustar vagrantvagrantReturn-Path: Date: Sat, 23 Aug 2003 00:15:18 +0800 (SGT) From: Mail Delivery Subsystem Message-Id: <200308221615.CGA36111@mailbox.other.example.com> To: support@example.com MIME-Version: 1.0 Content-Type: multipart/report; report-type=delivery-status; boundary="CGA36111.1061568918/mailbox.other.example.com" Subject: Returned mail: User unknown Auto-Submitted: auto-generated (failure) This is a MIME-encapsulated message --CGA36111.1061568918/mailbox.other.example.com The original message was received at Sat, 23 Aug 2003 00:15:18 +0800 (SGT) from mx12.mcis.other.example.com [10.1.1.232] ----- The following addresses had permanent delivery errors ----- --CGA36111.1061568918/mailbox.other.example.com Content-Type: message/delivery-status Reporting-MTA: dns; mailbox.other.example.com Arrival-Date: Sat, 23 Aug 2003 00:15:18 +0800 (SGT) Final-Recipient: RFC822; jesmund@mailbox.other.example.com Action: failed Status: 5.1.1 Remote-MTA: DNS; mail.mcis.other.example.com Diagnostic-Code: SMTP; 550 5.1.1 ... User unknown Last-Attempt-Date: Sat, 23 Aug 2003 00:15:18 +0800 (SGT) --CGA36111.1061568918/mailbox.other.example.com Content-Type: message/rfc822 Return-Path: Received: from mx12.other.example.com (mx12.mcis.other.example.com [10.1.1.232]) by mailbox.other.example.com (Mirapoint Messaging Server MOS 3.3.3-GR) with ESMTP id CGA36101; Sat, 23 Aug 2003 00:15:17 +0800 (SGT) Received: from STATION13 (rhala.dsl.pe.net [64.38.69.104]) by mx12.other.example.com (8.12.9/8.12.9) with ESMTP id h7MGFGac020135 for ; Sat, 23 Aug 2003 00:15:17 +0800 Message-Id: <200308221615.h7MGFGac020135@mx12.other.example.com> From: To: Subject: Thank you! Date: Fri, 22 Aug 2003 9:15:19 --0700 X-MailScanner: Found to be clean Importance: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MSMail-Priority: Normal X-Priority: 3 (Normal) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="_NextPart_000_05684DA4" --_NextPart_000_05684DA4-- --CGA36111.1061568918/mailbox.other.example.com-- rt-4.4.2/t/data/emails/rt-send-cc0000664000175000017500000000036113131430353016342 0ustar vagrantvagrantFrom: rt@example.com subject: testing send-cc headers RT-Send-Cc: this-is-a-sample-test1e@example.com, second-this-is-a-sample-test2@example.com, test-sample-sample-sample-test3@example.com, afourthtest4@example.com, test5@example.com rt-4.4.2/t/data/emails/new-ticket-from-iso-8859-1-full0000664000175000017500000000233313131430353021720 0ustar vagrantvagrantX-Mailer: QUALCOMM Windows Eudora Version 5.2.1 To: Jesse Vincent From: Wilhelmsen Håvard Subject: Re: rt-3.0.3pre1 X-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,EMAIL_ATTRIBUTION,IN_REP_TO,QUOTED_EMAIL_TEXT, REFERENCES,REPLY_WITH_QUOTES autolearn=ham version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) At 14:56 02.06.2003 -0400, you wrote: >> This patch didn't help us out. >> We still got problems with auto responding e-mails sent from the system >> when a new ticket is created. >> The same problem appears when one of the staff replays to an new ticket. >> All Norwegian letters is converted to strange letters like ø >> >> We would love if this bug could be fixed. On our mail server we are >running >> perl 5.6.1 since we are using debian stabel packet lists. > >I'd love it too. I just can't find it. Can you send me >(jesse@bestpractical.com) a couple of email messages containing >characters that break your RT? Hello again, Thanks for your fast replay! I don't know how this looks at your end but it is letters like: ø æ Ã¥ If your want to make this in html it will be ø å and &aerlig; -- HÃ¥vard rt-4.4.2/t/data/emails/subject-with-folding-ws0000664000175000017500000000035013131430353021060 0ustar vagrantvagrantSubject: =?ISO-8859-1?Q?te?= =?ISO-8859-1?Q?st?= Date: Mon, 02 Jun 2003 20:58:30 +0200 To: rt@example.com From: foo@example.com Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit test rt-4.4.2/t/data/emails/very-long-subject0000664000175000017500000000120713131430353017762 0ustar vagrantvagrantSubject: 012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789 Date: Mon, 02 Jun 2003 20:58:30 +0200 To: rt@example.com From: foo@example.com Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit This email has a very long subject. Our DB allows you to use subject no longer than 200 chars, but we creat ticket, don't generate an error and trancate long line. rt-4.4.2/t/data/emails/lorem-ipsum0000664000175000017500000000067713131430353016666 0ustar vagrantvagrantLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. rt-4.4.2/t/data/emails/notes-uuencoded0000664000175000017500000043455413131430353017523 0ustar vagrantvagrantReturn-Path: Delivered-To: j@pallas.eruditorum.org Received: from serveurlotus.example.com (unknown [213.56.193.67]) by pallas.eruditorum.org (Postfix) with SMTP id C21DB113AA for ; Thu, 27 Nov 2003 10:55:58 -0500 (EST) Received: by serveurlotus.example.com(Lotus SMTP MTA v4.6.1 (569.2 2-6-1998)) id C1256DEB.00578401 ; Thu, 27 Nov 2003 16:55:54 +0100 X-Lotus-FromDomain: DOMAINEQZ From: "Maxime HENRION" To: jesse@vendor.example.com Cc: support@example.com Message-ID: Date: Thu, 27 Nov 2003 16:55:50 +0100 Subject: Test e-mail which exhibits problems with RT X-Spam-Status: No, hits=-2.6 required=7.0 tests=BAYES_20 version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) Content-Length: 144905 I send you this mail from Lotus Notes to make sure it'll exhibit the reported symptoms (lost attachment and body). I Cc: it to our RT address to verify it does cause the reported problems. Could you please mail me any replies to my personal e-mail, mux@example.org ? Thanks in advance, Maxime (See attached file: Naz_Head.jpg) (UUEncoded file named: Naz_Head.jpg follows) (Its format is: JPEG File Interchange ) begin 644 Naz_Head.jpg M_]C_X``02D9)1@`!`@(```````#__@`>04-$(%-Y56:T,@P9,:ML)Y$]AW03FLXR78A.VY=&=IV58& M2!^X1-BFWO)S""S_`!#M,.,'VV2;<.(C48"JR'#&!V*>!LUV_OLBK)KO@C5) M_9)M=V0(GNJSAL9"7!!E066UR&X)^BD%P06DOR%2&00WG=$WYSQ[JHL&Y&>9 MQV3ON7.;ZG:@.).%59,Y.#[)H&F7.`/QNBK;:Y#?S$XP"4(N'[:S[Y46H-8< M2#C.4``SZA!V")I9?5=AVO[')L[3G?=15_P#BG`0"[/=(W;N3NJ@/J]>8PG=M(5'#_`)CL>Z`7CY]1=`[$Y50& M1,Y]BF&^G!]I07_XRII!#JD3]E(ROHU9_/O]5G,+F"9@>Z?5D3Q[HC2'4*PF'9=]T_\?6!' M\QQ^2LZG,[R-U(3Z):<<"9A*+K.I7(<2*KA]4XZI<:R[S78YE9H))$NB?=+4 M(C.^4&O2ZM<:Y-=^F(+\`#^+JQ[/*P/,<'SI`]E/1D[@'.`D*V[GKMZUP>;N MOW`#RJEQXCZB^KJ_BJ_P*CEG]1JD5PW5D?HJC2`V8,]P>$A.&PSKO41Z'7E; M/_649\0]18YO_K:I@Y]9@K%:\DDM/P.4#G._J)39IT%3Q#U(48;>U9]GE*WZ M_P!3:=;KVMCC65@L,M],_=3C\I9@^_*IIT-GX@ZL]P<;ZK#3)EY5YWB;J9`_ M]75`]G9*YJB-%&!@G<=T?F!K`T3'LL4=(/$_5-`TWE4#_P"Y,?%750__`-[5 MS[KG?,U-`)..W*$N$F=QW4TKH?\`S5U?7)O:@^J3O%/5&`3>5<_]2YQS_3,D M90OJ%L9S[*CI'>*^JA\_QE4>VN?[)4?%76`''^/KCC\Q7-.?WG[PHR\9[\!" M.I/C+K8R.I7(CL\J1OC?K[!J'5KH>WF$+DC5TM&#J_="YY=].$Z'8?\`G_Q( MTS_QJ\$\"L[_`#1?_4;Q8T"/$-^('_SN_P`UQ.O/`(3O?Z<\JZAR[=WXG>+V MMQXBZB)Y-R__`#3?_4[QHV2/$W4\)NJ0.]W4_S3?_5'QII.KQ/U0@;?^I?M]UPDN()DCLE2J/%6>?8Y5X-U MWP_$[QDTZO\`S+U0#L;A_P#FA/XI>-1__D_5!`__`-A_^:XBK4+A#=]LJ'62 MT@@2H;KO:?XK^.`#'BCJ7_\`'=_FI&?B]XY;G_S1U$]OY[O\UYWYA+")*;6- MNRJ/26_C)X]8UI_\T]1@XCSBI/\`ZT_B$W;Q5?D]O-*\R#P`#O&R$UC,SDH/ M4*?XX?B,R)\6]1$?_M4=3\HB?\`]IM^B\LU.W(D$*.M7\L$-DGW M31MZF_\`';\2*6H'Q3U!Q(P?.V_15S^./XE:-;O%O42WDFIM^B\K#_3).0>4 M1>-,R,YB86M0Y>HL_'+\2"X$>*NH?_Q/]%+1_'7\1FNSXHO2>_F+RG5#,F/8 M=U(S+@Z23\)J'+VNT_\`$'^)M.W:QOBJ[@=WJ3_]8;\3_P#_`*NZ_P#WUX]0 M/\IOJ`13_P!8_P!_1.#E)>;X.DJE4`G4&CW]U>O/2YTY/95"VD\@O(8(_-NE M-(*I$\#ZJ.((DP#MRC?I!,.#@3P@`3L`F@0!0`")).=10F`,SG9*`Y^DS'9#0VZM.' M@0=NZ51S@XYR=PG9IF'?1!4<)QF4!`X&TTQ@",3R5'[%V$1,Y\B8S&Q0:S^;4")R9@(2^`

T[ M)`@^IH&GL%%2-?@B8^J;60">3]T+=C.J1O@_ND<_U8'(RJ8`/)3#3OJ'T*(D:[&8B=Y4C7$"&M,J)L1Q'>$3@1L8'L@8F3@1]4+G M&(VX2(#3^:>\%`?54P9'SNJHZ;B.^4]0D@X!(0@..QCZIR`V"7-.)0)CR6P1 MDHFZ@-_BVZ.>9&?T32';4C&4FN.24S!G,B.4@"7P-D4;CZ02G MUQM@'E,`7,D-F-TP:03#B)XW03TW0`3/=.ZHT[20HJ0(=JP<83U=1'Y??=$I M.>20)B/JF<\D^W$)+@3@D=@@.1J(C\RGI.TTAL`%!;@U'@&8)4U< M#40..%*LA!WKD@?,JQ3<*;=6J?959U`<%*HXBG,R=MU`JM05+G42#[QLF>8: M0V"1O)W4;):`V3G>$4@$&()W0/YA+H&$S"=Q$'E,X34D!.&MF<>_NBIZ.G5. M1C=6*32XZSMP56:Z#I#1/=6ZKAY8:!$;PI:1(7B!)SV0O$+R(+B![(IY&DQN$!U$=OE*99G;V0ZVDSVXE7:0I$@DY12W5 MF0.P47ID%(N@03]R@.1DL'ZH#_DD#^G"C!R=_NE()$'?!0$X%Q$?NF(& MY!&.Z;;4`24#RYH!!)]T#U7A@,\JNZ-6?ND\EYDN$]T]-[\MUX[0M!/;+?E, MUDQ/WW2=4TGL3V*!SAQQS*(D:WD$P?T4M+8@29W]E!J],CE'J&H`.XR$&G0< M!1:(&R/6WL%#1TFDTEW'9%#/\?Z)N+I/L@B%`B9(SQF$/&TIHT[B M2F;!.3'L4#N:&P[?Y*:1!WD=T\S(.3\RA,:2Z.?T3:GD%I&Y&/A*8&9CLA(S M$B/S8PGQ&R%0;B#F#CW14 MXU>QX4?]1X*3,$X(]U!,_2'0XS"%S@'20(CLAJF'#E)I!!:2J$XMS(]L(26P M)S[(W._EENH@3J4+FR2/902.TZCP(V[HH!!C(*A;#@)V[8@M^"J#<1&QE-SL0.Y2(SOLE'IF<($XB$3P0[)"%VD9!D#^Q02!D;F2>P0&(,[I,:XB-4B,Q"1#@=49" M`J9!R^3&R=Q;J$(0(GD(*A<(='U2"1V&;#_-`R(D;%,\DL$B>Z$;X!55)G48 M1-'IS&VZ'48&#GE,4[2[5`(GL902`.:#ID(2,Y$D]D33Z().$(F,'ZH#:"6GU MB9_*F$SO]$F-)V,%(.Y`D(:'4P0`?LD`[2)D`]]B@#LX:1*Y0D02-.>ZE<\NHM`:)'/*HBDQ.=MYW2C,D[(2XN;))"32XM(! M@'906+-LEU4DXF(2TD$$.)3AX91:WDY0DM#?RQQNI5A]!+@3/PA<=\@HGNCT M_?/"AJG$#8^V$"UD8!4E,P9;G':5$"`?5()X4[6.@.VCLJ@2UT`B?E.3#`9$ M\93:H/I/SA.P-J$``R#NH+%KAVLOD=H4I<9@SW[*(0T>EV/8)5'$N&9![K-Y M5+J<68(R-TTB=0P4!<-`@(`YVH24$],SF?A"]P#MQG&4&J'">$+W>H09SA%% MEI(D"=RA+9;D_;!3.+B\DCG9,]X(,.T@;?'R@6Y,]L94L4_X4N=Z7R(`V4.M MPR2W*=S@:@&P(VE5."?KTR1!)F4#LB"-LRBGYH`$85"!G@'ZIG0>$S8D3*L=2_@!58+)U4MTC6: MD3JYVX00'T[YS\I4W`\H9#G"8^`D\M#AZ9^40Y<7'@?.4#@)!R24Q,]FI$ZG M$_W5#XW$S'=,UHF(W0DB#DY3R0V29(W0"78)*KU':R`9]D]=^O\`*%&60\1P M@,#5`VGNG`:T.,9!30`!#N,I0!N(`5*.B*/G!U5ITC)&<_91N+!J(G`*54-6=H"B/I?MDA2U3DG&.%&]Y=!+H(/W4`N_/@&$B6R'#=)[AJ(P( M0-$/@"9303HF0TR/T2:06!I)E*3!$8E-K=K!``;QE`0#9`P8]L(&_(CV*<&0 M.9.4[OR['L"A<1$`A&_\`(.!.854F-(:?4?A$6AKX[;Y3 M4G.#,[=RE.!(CNB'=&X.R8F``,)2X',0)"B)).T245(..>=L)B MXX0'R!SAP),>R1Y(SV]D+V_S2V))YE,T:F@`X"J)&2UI M'._*1Q$&/7:9,`;0H&WR`(.(1;;D",8*:)Q)D;F4B#.'8!GL@?+7$'OPDV"_.3.Z6"1 MM]1E.ULSD2,90$TES#\@83M&3&W=,USA$R0=RG`T@.!WVA%Z$UQ+CB!Q[I.( M.`([^R<.EFW/*`DEYDX(@RB:%.8,&/V1MD8R<*,B'`[QPIV#^43D#]D`Y#H. MK`Y"*J#$F028DY4?YJN,`=N457!<=I&K/919@P1DJ5^EEO`(G(W]EEI%5(+ISE!4=D<$' MO"6OU1Q*:)=G!Y5036G7)VVE76.<+5S1I')=L2J;"00`.5,S\D@C2$^!JAQL M('LCH,<&E\@$YCZ(6-UNB7$!2@[-&`-]U*';.2#`CLE3'I$@'O/"8P!G'=%2 M=J>9^L#$#$8P@:3DD@J5X<##?Z9)([J(?F_+)B9E`#IG<`\2FEN=L?JB%4($Y"!Q#8&1[]TG26`Z<`;=DG0&C[HH0,R M('(.\*H?`@'O.-T+RUOIW,Y@J:XHU:5.G4 MJTRT5&ZV3R-I^X4+H+BXE.3J('`Y"6&M^NZ:- M!)RYV0"G!``&DB1DH8&7'`,C"8N],ZAP)0._2XB`94%5\NTCGE27)?2+6N8X M:A(GLJ\`F)S^ZH8P!`R-Y3G\V)D#^Z0(&,F#O[)IY)A$&T@&08QRF=!:,$3& MR<^H0TD$_JHWY]!W^J!W-);!&#NG.EI!U9!VRD0)`G/"%P;$@2(0&!%0.F09 MG*.F`#^:3O""FT$`D[X^5)1G4!@GL54K1HU8I-!F81><.Q48H]W9&,92\D?X MBJ<+=T&!T-,R,:>%1J!DDQ,=RKEW`Y,X1/]1)!`&T(H6Q'..QW0^^Q]D1/],`X2!<<_\` M9,2Z?RC!X1%IRX?=,-RPF$\>HC()V2<'!V/ZNZ%WYL#G[J=D$W#=S')'9"-B=C*+,3JG[X2:#C(SW5 M#M(U>TIB8P"!GE-FV4[`6QB3[!%I=H+P"&SM*6HZ1'',($\PR(.3@A0P9)VCA&XNG)R< MPF,$02,?HB$&XD_7NF@',9[)2=CE%`'LBI#5J&6ZX`&PV48>-7JV`_5/HV@? M/ND02Z7?TG[H&@#W._PB@Z@):1'=.)>_)@\^Z%Q/YG8(Y0%@$@N`G$#NDTRU MT<\IAB3.3G>4[7"#N0).$47]43.)_1$PB(C$J,8#8@2C9,SM_9-(-@]$`X.4 M),C`(#433@M]S*&)=&<]D!TA)S^O)4U9H;;AHDSV4%(@`;F.%+6=Z`>$#,$. MW]H*8DDDG;M"'S#C2,#L93R3D"2@(0'#5$B813J<6R/="P'RR22!P$S8:^)U M3N2I5D2'3,1B=E$^"[_5&YP:6@A19F7#"FE$`8`'.91%IJX$B!RGI_FG)C,! M$[\LP?8@JHC@M#OS23W1EQ\L#&IW9"XR?=3T*;=1>/\`,(:%0:6CDR)_LG<0 MVI^:.=U-TW^&_C!_$BJ]G^&F!)/`SQ*&]=JJ%PHLI@>G0&Q`[+*HR-1R?9*EI%3+CGA`FEQ-, MF)V^4]1PT;DD\("XZC'`50@_U#A!)@S.=H.R-[A$0@#@3+>4@=[M3`"3+1&3 MPA.6:8R,9.Z6`-1.)0D#\VK3\;H?].02[!$D)G3IG4)/[IO=HE(@@29^B:*1 M/H+7`P=@HW5"`/T`3$Z0=1.=@%%4(+OR[[JAWU'P-1,1@=DP=#L"1L"F`]$$ M92S)'M`0$[!!!(GE".2?L4A&LD"('=,X1!D%"HU7-I-;)V1^>[N5'2CRQZ47 MI_PE39__`%9N'D/=#RP$&8Y"H5B7`Q!`5V]U$G<-E4:N9_:%:(B!I^,B5&X0 M,GTF`/U2]$&"9A._5IR1"C.-B?A!:Z76MZ-;76 MIZQ!@1.?<**Y(\USF&&N<2`,0%'J=J&`.9*62XD.^J!9($../E)PSD'YE,XD MNDRB+6Z))`)X'"!-B(+A(3THR2<`Y4;?2Z"W[HV^Q@^Z"S>OH5?+\FB:4,AV M9U'NH-!D$`CW]DAD`';W2DB1/"!'TGA(3J&4P^#M".1Y8](!)C5R@'5#N8([ MRF$1W[A,^-A)A)L[`9/97L'3`,^J/9.08^>4(])@G$Y"Z*$U,AI)+)]I0N M($[3[IV#4'`D-Q(0,-\B/E.2-0Y[H6D'?CB40(B/LB[."7&(`^2CDSG([(#& M'$Q"9CFAWM^J"0D"=+O_`,(2:0?S8'<(7?D(9/=.TC>4!'_F?&P3M<"P`M)^ M2A:2?Z))^J<'.PCF4!O@Q`C&TIP&C+2\:PUQCF$``@G`)[C"ELW%E20.,%`U>)(,[<)FZ/,!R8X2;-2H07'/) M35&C9@R-R"LJ:Z?JJ2TQ.P*9CR6^H;8A`6%P&H93M(@B2/A4&7NSI,81:VBD MT'NA$@#!":,:AN@DID/J1$QMA7':12TM>2!C3W5>T8&F7#<9A2G2'&-H6:HF M$MRTQIY&(2Y(&??=/Z=XD#W3TV4RQQ=4T MXD")DJ@=,TX'U!&4G%L@D$GB.4G$EH``B(D(20!I`@2@R'8F3]95#U`"TZG#V0,PZ8$?*0_*3J.-P4.H3D0!PF@3F1(D%!` M#?2_=$]K1SO[H"V`3[\(AA^724AEN(":)$G.>4Q`!+I]D(9X$21N8^5(:C?X M=M(TV`M.K5SMRH@T22YQ([RHZKPY\3LJ<&J$D[8&<8E1P-8WA&]L1O\`"$M$ MG]B@*#I/;N$AW.2D[)B?\DQ:6MW0)L3!E+2`X<#;*;=VK:$>F6R3\(A%I`R) M!0./H)X]RG.N8:Z!V"`G_J'Q*+L[20"6N`'*4-+IG;@SE+3ODD']$T@;$_=$ M2!KB3!)PBI2'1D3P2@IO(;@[CDJ1FJRHO4R`P`MV]T6IO^']4%/5H$3]D M_J[G[(BS?.:1O/Q_=4*S@XR($*W7+M6,?14;C\Y&DGY5JHWU&%NJ(^%$7-#I MR0.$YVWPAR';@1P0L[#.=,D$IAM,I.P/5L4FB1#^2(14?+TDO#@Z,0-S[H!D$B3]CA/Z9P))XF4C`.WW3"`[9OP-T!:O5I.( M1#,9Y0-`@D'(XSE/I$3O&=T$D9R0,IJD<#`[(7B!`B$=(,\LN/YAPJ'I!U2J M*8DEV!">H?5$Q'=0OB=C\IV%LB0?NH%J&`,?7=$7-F2?JHW?G@`QS"?1J@9D MJB1L.$EWZ%,XAQP)]X0-P-!DQ[E(@3B4#D09!QP$[BTO_P`/LHR`'01(&Y[) M`-@@GX"@,1M(*>`!.('9,`(B-]H2>WU3)^$BCH,+@ZH&ZVL$NCA"!)W.=D`D M'00[W1:?^HY]T00T[$B?E+3F9$]D).ET.]/8IC_TNYG=4.W!CT@C8%%B9G[% M`X-2=T\S)XVC=`8$"03GW1`B3.2>5 M%Z_\7UE$9`$\\I%&X"(+H[(@V!+=O9!,M&04B3.`?NH#C5MN4[!GT)P(;.#W]D`+RB),[[Y]BH!((!$<;RI`T#^J9$!"T@5` M73],HF/=,Y!^5*IV"&^P1.!@:1]45NUU6HUC07%YC9=5XA\,ML^@T+NWU.>/ M^;G8(;Z-,$1V3=I](*4R[5!^H2?CC(S,+*E$.YQ\IW`SB<[RDZH M=S$H"\:).)[H",QB8W[)I+1)Y[(=8/!TQPG-22TP2`J%F#W"9@)9'*1=+>\E M(&,\(!J-,B3CVV3M\H:PXEQ/Y\-&"#)[H`@DZM0'UW4FC^5)W/*`N;,@Q.QA25GD4FM+@0-E1$ MT%(^HYA,YS8$G[%#4>W5G,>Z`J0+WP2T?*!P+1GGA"7Q//NB#M3I=$#N@%TD MQ!RG:USCI`)+N(3!X)[?&ZBJU@`()U`]U4*N2'Z9/V43_>$^H&3,8YI8?V(^BJA[#<$ MAH:'&8_LJBRS\H_-]"G^CONI*8.@:=D\.[JFCU]&K))!6=D#;.>R(:);)D92TYAQ( MA!K]&DXGE.^IZ]1.Z!R!,.)PF<9,R!\IB[N)^J)Q@B0W81D($^7.DD.)RF;^ M:)@\04P))P!/$[):])!/?=%'`WGZ)W21Q'8*.G.HD;GNB:^#B`"$B#@D`0/E M)K3&'8Y0M?`!$%*F_.VRI$KJ!IL8\/:0\2,R1F,J-ATY_1,2.3GY3/?+G.TY M*BG`DSRI,MIZ=,3O[J/5&",I.>"W5'^B"322V<9V*'!=`R1^J8&2/ZD0[V@B&#$X3P]N)`U;CN@U0Z2)^4J;QKEPD?/*`J8$8W3G.^.R&1C MD#9,7("JZ]6EV^V4I]6T=RH^W/'RGUB`!L<(I'7$YSRG+8XF,X*'40P`#,I% M[33].LCW0&?R`G?A.]L8&2>R%C@21$QV3Z@1IB/D[(&>),SO[I>Q$)B]H<1. MV)28<@%THAR8;M\J2A7?1:XL.7")W46IH:0D'M+<`Y0&T^H%PD'=&`"2"0!\ MH&N!SF2,E.UX+>/HBBI-8714<=/[(]88``R)P8*B#MO5]$S'%I)X/?\`[()G M?E(#<_J@(AA`S[HO^:XBF)`R8[=U%JP1(A`[LNVVX3M:#]DVK.0!'*9KP'D[ M(@H),`E.[:(@[Y3,(U9C&-)2>9S@1P4X4F3I):)C,)__`,4)VN&DQPA9$:9B M>$T'`R2'8^$;&SZ9^J'>=(,?ME%OVA`U,,#4`09+@G>`3@$?(1@M!)(WY"3CB8&>4#.C@P1S")T!QS(3-=C2(SR43 ML.:"=N`B!,1)"3JA>B^);RA4Z'>U650PD"F`>?9>5 M,:0[21!"MUJ]>G;MM:CB&-,D'!!*K-G*.H3Y<;25!+M1G96*CFU&@-!$;F=U M#6;MF)X470:;"]_J,0%9!ETM<"/=10&MW$A'Z2"1.,PI06HM9I+M^YPDYVI" M-(W)SPDV)&!CLHIH<3))_P`DY=-/1((!^J9^_?5]4[9PUS`9._=4`TP,#;A* M1K./H$;O*#X9VV/=`"0\@8/)0(@@0D-3H!2V.9(F/A!L3R$!8+#$2-\;H9(S MJR.`E`TQ.^Z1;Z?3QA`F/(!=@\Y3$MEWOLF([;'VW0D@$1N3,!4.T@C+FYX3 MO=#(:Z1V0.$,G8WL$`Y_J'RFT@&>QV2<3'YLM3``3!^$#$$3$)BZ M&C$\)-$P(.4#W9[J@G8+CO/"K/WVS\J0R#O]"FT:<@C=$!$X''*3\")`"+2! M_6)[[(3ZAGO"!,@1Z8)[A(F#@#(^4Y$@-#I*1WF2/:4`N/K&!/LGT`.$I.)! M`;N>$Y;@B9A$[",_W3$>D0#*(&"?9,V3OP@30`22#^R0`DX3_P!)DI$``.(P M?;*='!I^<^Z>$X5+W M0U\`&!LXB/T5&IVP<[;Z=;HG'?95:H<6N&J`-_4LU5>J6R=(`GA`UPU3 MSP0C<,'T_=!I,@$1/"BE-,$:@2W8B>4PC2X:=_N$B#IEP&/9(#U`SL4#M#G"29(]\ MH2(@29/8HV-BGJ.T[IG#TG=`-,0W&?:43@Z"1J,')3.PPC^KY39`]C@^Z!P6 MP<;^Z;MW[IS,$AWU*0F2H]S7VP:060<'WD*FP;C'R1*.LW M)#H!&9!0-(:XG3(CN@)T$0/J!RBTC6886G_#RHX!_-()W2)@S/\`F$!O>3F( MDS`$(#(/'RG:9.2?<)%OTR@1W_1$"X/:0)0T\D_NB+=9@`YW0+(G5B0G/YRX M#XW3D:J<$NG?;W2U$$S!&^/KR@31+-0(D',82$:-I,X"=K26''Z[IP(=!=C; M<_Y(IQ/L9C*)C9:!)SPE,8TS/;9/2:X#L9F5=(3@X``#'"-S8.7<*32UU*)R M.R'2';MF,RHIG4R,$1&^=D_I`&,C*DIM+O:4=4`50U MC1,3/=,,.D`X_J*>OZB=R1G]%+RL5WODZ1W&,B$X75>_O*EY=NFI4RX@``G[*I1IR#@>YE2-_P"8 M""94T@2[33,`R!A/2.LZS@#9-<5'U:HF2[8'X&%)IAH:(]/92KHC(VF>X128 M$GU>R%V'`<\II.DP"H$]TOB?5VV2<9&J3'9-!+06DB3ND`YQ)B>#[JD+5!!^ MIRDQVH@.<1[IIC9N/W2&",`DG7-`D1*3,?F<)2):_!@>RJ M&&,Q@;J#S`YP=ICV5BXKTS0TM;\E5?1,D'XE('J/$Q(@\!(U(;&H#ZIBT`3] M0AC$%TJAR\E\"#'.R;4!L,X3`AN(XR4(C)@[J`G.)&`W`^$['2\@C(&(*9I@ M3!/RG8UFF9W1`EV9D8V2EQ=O*8MGMVW3Y$@1/[H'UX2:X3!/W3``M^".4VSA MJ]0]T!DB3`QLF>['.>R;TZ@0=^4PWD@F>`$#ZL1!@29[(FN(//P90$3,@0>" MEIT^D9CD(B4.'((CWW4U")]IG95F07'2I:8`]6Y$*PZ:U!X=1:9C'9'J_P"K M]%%;,8Z@USG"2I/*I_X@IJ)Q^%>\@2,3[\*G4]3L`EQ=/*O7H&HXP.9W56A7 M=;W(JM]4;`JU52K&DP#W`0/!TC(R.>%(]TDDF0=T!,NF?NH!.^<@X3<;P2G& M"#''=.W2=6K&,(&+L'`SW2&_"8DN@0!'LF9@QD#V0.#B0V9X1,:PYTY/NASP M"DW?)_1!)`!@SGF4U,G3S]$1!+@&`D^PDH6983G"J'):3GYW2DS\(=68(&$1 MP=OD%%*8$9R>$[SO'9,TPX#VYY0D^QR@7],$E/3U!TZL^R8`:9RDT9,X]T03 MR"P;GC!W34R2X8^Z1([8Y2#@#Z.$4XG9VR0<3)SE)I!$$`9V'"0/](D"5`[7 M'5+C!'LE4<7.`WX3&/,+@/NE4@B6SODH!;D3J/.R<[S((Y2&G5D3/,I#\\EV M_(0+48F1":>=H/=.XX/J@H9&0#]^4#D[N)D\IB&D>K\3G[),P@88$"3^RD8)]_K*`F#\HTJ:@TEQ#),]LRE86]6X MJM928YQ=@87J/X=?A_YY9+,LX\!L_PUJNM M]=1V>T#O\KG_`!7X3J=(`<8=G;_9]U]']4MF6EN8;@+R[Q9:U>J=F?3VSLDT""9,'L4+02=.T= MDX.D$9^2@:63J:=^)3/#0,'/'LF<(,`3'ND[6!$R`-]T41_(,XA,T`MXP/[I M9&(!`0C83"H.8$'CLE3INU"/LIMJ8VG:W40,8F$VG!/ M;:5.VVJ.W!RI_P"#TB"TR>W98]X[3]/E5(0[D8'"8@-(@Y[=LJ^RS#:8)$_! MW41LW;_V5F<,OTV<4F:-0SGLB>9=C,;'LC?;5&Y:PP.0=_=1.I.#B-,'?LM2 MQQN&4-Z`T$S*CJN)>&C')37))=C!43B0)'9:C(G!L8@@\(2T`P<1W3-,Y<,> MQ2HQ]%C:-,N.MX;/L)W*@ MID8D&$.!DC/:4[QB3./="#O\;2G_`%#@1.?OA$T&1/*!L3`XW`*X;6HF',Y(! M_0_*&T9;G&VR+&C^W=-J).)!/9-+L$\]R@?2"Z&R`=I2:1ORFGN8^B=OYL"> M4!TIF6_*E:,R-Q^JB;F"7P/A2TR"<2"#NK$:-!O\H8_4H]/M^I0VU1IH-+G- MGW"/73_QM^RNS:.[@SJ='SF51KENJ`(^JNWS0'&#,?,*C5B-QV2FD3C!P/NA M<0'3(1.D849(Y60GYV"8@!^EY"9GYM]CLGJM(JG5AWNBFEL@!(#.0CI/%-^L ML94'(=,(6[B-CW0(!NN#D)-_-$8&Z;!?,?5$&P/.Y*`[$%Q^94-$./5&=TY] M6"YL43>8)RB#P7', M`I,,`_XB<&4V(@G*$>DY!)E!(UKC@[)SO&J!W(0M#B,Z0-]Y3M;!$P MA=(P(3`N/930D='E9F>R3!Z)(0N)P)Y1ET",#LJ'@AHC:.Z=F6\Y]T+"Z2.% M)1:[2=O9$%3:&-V$GDJS86M6XJMI,:7.<<>ZKTR3Z0)/<3*]#_"+PU4O+IMW M49+`9`(/^2,Y9>LVZW\*_`=O2M67-S3#ZKA.1M^B]8Z+T^G;L#13`^%'X7Z> M*5!C-,8[+H*-L)S"YY9;<9-\T-.V!`X/LK5&U!&6Y5FVH>D<*W3I:6KFZ2*= MO;!KXC!5YM$%L$;?JCI4I,E6649XW4VU%-U$`:0%!7MQH/9:IH]A@J&K2$?L MAIS'4^GBLTC.?9%Z+7MY9$96==V6=7]E=LW%S->W%.V@! M>7?BY8&O:/>`1&Y"]BZE2#&$'8;KS+\5*M)G3*PQLI+I9'@]]3%.I$[<*M5' MI;DS[*U?5'/JN(V!RJ[W=FQV7:.J"7:I:<)Y,1@E.3#C.4.2=DL4XYVQ@X2@ M%N9)]MD+I`PW"0=N8,G$(0Q(B-N\),#G#TR>PWE6;*SK5ZA#*9"V^G]'#-+J MH),GU?'_Y>,_LYUG23H]69[*Q;],8QTP#P!V6Z*=,4/'J,T68G#1",6L[;K1TM),`)F@%T8F%CWKK^S)\9K[2&@C'OW0 M&W@"1[[\K7T^DN@`*&JP.PWZ*S-,O#BQZMOI=(;+NTJI6L0]Q!$'B.5N5:32 M)(4%1AG`77'-YL_T\O<<]<=-)+LQ*IUNG5&9'J75>6W4<`_51.H!P@M77'S7 MZ\?D_0XWF.3-N]H/I46DY#1F5TEQ;,)TN;LJ-S:-)D-A=\?)*\/D_27'IC:3 MO@\PCHOF>%J(T:+Z8I`&E/\`^)%YE/\`^'_^=/1T>4/[(_0FDVCN MR&/CN=E1KM+GX`#5=O<./:?LJ=?6`!CVREYK2*N"&Y:-/=0`1O!5BYK&I3:S M2T>6W3@;_*KDSF!\+*[`\`"<]R$CDYA.7&#(&4P=),`(A^Y`S^Z1)!G0/A,= M]Q\)&#C5&$#P#Z2V9X",`!LM)'_2=T#7%K@1N#,2B;!SB`/ MNF8-6J8QF$YTGL([H%)B"A8)SC")FF9)D>R1&"-`^Z!FZ2!,(V#!C9`S)C`" MDIZ)&H`*:@T:B'\;94+&@G8#WV5FDT;8'U07NAV#[J]ITJ8U&HZ.Z^ MCOPPZ"VRZ328&@$-$XB5X_\`@OTT777FU32U"G]>R^DO#EJVG;LP-EC*Z!W0VS0T",?"O-8'-Y*YTD*W;F8PK0IEPD;)K.E(R MKK&%K0UH$$9*EK2O18(^%W"IW5'!ANZUJS`!)^%4N*;2,$PAIRW7*.JF6E>7?B%TFI>T MJE!LC5B3E>S=3H-=3,#9>=>-*#VO4WDA8W4^MUG4]%VUTQDA<9Y?)/CO/'OJO M-Z]I5H.TU&$9@X4-1@$P?ONO0NFVEEUB62))W6%XR\+W/3'&K2!=3<=X.%Z, M?-+=4]+O3EG#T0>5+:TV.J,&K$[!.:,#U'`XA36+:0K!I#H_ISRM7+AZ,/!K M*>SI^AVM(46QDE:1MVZ9)CYV6?TJHUE-K08+1F#R?I9\8);D$@X]DM.T_?BN*N0-+3DGDJ,@&9;]U+5:1(((`P(49;%,N&\K3E MK0?2#@(FMD3^Q0AI,G^Z)K=HDQP@0`/TX2.()!`*6-X..4BW$Y^VR`<$R?OE M'#=>MS0?;9#_`%R<_=2>HC),#[HA4V@O`!&3B2K+:3J54L?^8;P0?V5=@+7X M&_<*9H((F9[+2::-$GRADHI/$50P)(!08#)].4`!P:9W2,'( M@?"1;!QM"1T[&8X4"F>('LD73N,\)$2<"$@UL[[=@AH[@W!&4\@`2AF,-$=D M0((/I*!1/'PGJ`#&_NAV`(^ONB@3,Q`RD*6F(S[%,(C!V1`@$1&4(.8T[?J@ M)P&#P3PDZ"9@;X3$0X#(3;-R1WA`WG5M&=^(0(PYT`&#R2F`@S(ENV)3P,D&1$(20?2#))A`[LM.WP.4M+3`#ON MD/T30"[&)0.1,YVRFB&#YP$@")$_F2C3SE#1')P/CLG@;;)FQL#LG9&,F!C? M=`G&#!,@]D,>WU3Z(&K,3"8?E(!S*!P($Y^=TX`(._QP`@;40R`1ZA MF0EN`(R,$IB"!NB:-I/&R!B"#N91-P"ZN6=)U6JUC M#)<8WA4QJ#N-UT/@6W;5Z_:-J:2USQ/;<*I7M7X)>'/X/IE*K48-=4!Q/.P] ME[#TVDQE!HD;!`G`A+1F7X]!,?*Y?JMHRO6ES!`.5T=_4+9!&.Z MQ+BH"7$B(&%C*FF/UNWL'VIM/+:`X:0LNX_":UZ_T\MH-(J.&".Z@N:[W^)M M)R`?[KU#\,NMT+6[;0K.&1&5Y/W+A=UWF&^GR?XZ\+=;_#SQ2VUNVO;2<[4U MYF")_P!%V'2[=OB7PT0&@E[(F)S"]6_\9%C8=:\(_P`51:UU>V]0,KRK\ M`:NJU?:U#,9S\#"WGG,M91N;T\?\7]/N.D=F>7&8O3X?#Y//=AZ M?4K-HB08]E>I:B(_0\*:VM<#TG'SA7&VA#@"V9]EY,LY:^]XO'<<=519J),Y M/"-I>(EH6M;]-J.:!Y#B79P%J],\*W-=H?HT@;:@LSGIK/R8X3=KE1KW@Y2# M:T?E.>5WMGX.`<#6=,C(6W;>%K%E-H-%KL025VQ\-KP^7_T?'A>.7DP9<$C0 MUP=QA6Z'2NHU73Y+W%QDSRO6*/ARRI^H4F`]EHVUE;,9'EB`NV/@GVO'Y/\` MUO\`\QY78^&.IU&RYND^ZL,\)W^DAQ:#[+U&E;T22)$=D?ETI(C$+7[.#SW_ M`-3S?'EG_E&]TE^H'YW0N\)7;F>H@$GY7J-S3IM&1QM*K-8P.VW[J_LX)_\` M4\SR^X\*7S#Z:<@'$*"MX:OV"32,[X7K;J3'#\L(76M$M]7V3]C%9_ZOE^O% M;SI=W1,&@<;JE5H.#9#")]E[7==.MZH(-,&5F77A^S>Z/*;]E+X)\KMC_P"K M_P#J/'GM(RX`905*(\LN*]4OO"-BYN*<$]ES_6/"#X)MS_\`A_V%F^'+X[X_ M^CXLN+PX"XI2,CN5"6MC@SA=+?\`AJ^I./\`+)![2L6YLJM#4'TG-+=Y!_R4 M]0&Q[+5-0@$`^^%4:M`32:0#$(M+O\`"5!39%,>MR+1_P!;E4W"OC,@M.,22>ZI M5#L#B`K=WO+HDA4J@:79'ZK-:1O.O/W05`2X"!`'Z(X(,EP@CNHWY(P84.@N M@'WW3$F(Y3R0[OREJ:701`Y0"Z0\&1!Q*41#6QMV3.,NW.F4@<9&=D#_`&WV M*D86B3@8Q$84Z9 MPTD2/LG!YS&WPD\!I<6@ELX*<*%HB=]L>Z?!+2XR(C'"9I/`YW31!COE`1]+ M8WD\X2<"1Q`.R$EI@`00Q31Z<9`]T$A@S,8&$FY(`CZ(0!(V$[3.?A%)C?< M(O18#?HG`+6->Z(?C[(=Q^B=Q,MD^PE$,[5P<#DIH)GDI5!#N/@)-'K$.F$! M.;I9)<"(G!W48G5O$G8HW3DNV03!11D-T$`@&$@[88QN"DT"&S@E*/1C;LH@ M00\P=OA&=R!C.)0T\&(W3D'5![JZ#N/!,(V.B21GN$+0TF"G.V=D!TX)U#E; MGA&N+?KEO6C#'`[_``L*1O'T6ATUPIUF/R8,YPI87E]0>$KYMQTN@YCL.`./ M@+LNBTW5-,X$;]UY5^"5S5O^ET0=F`"3/LO9NA6^BFS&?V7&SEQC7Z;2AH)X M[+5M@T&.V%2M6P,<]U;HNR,@?59;BU(:TYGZI4A+O;E1.S$!3VPVD*?6DU)H M&)4C&2-X2:T1Q,(I:,3[?"H<#2()F#RF(G`10#A,[TLD&(10.I>C5&V.RH7[ MM+'9V"MW-7T?FC'?=9=\^=0=RH.8\27[:3RW(E4NG!UY(:/S--+:X(=R MH/#W6:-D]_G/`U#!*\N>?K77'';,\16'\'U`U?ZAF"LZTZQ4M[X.UF0Y:/C? MK-"ZJZZ+A`9!(^JXVR+ZO4`."9)7&WV:ZKM?%]Z>I^&JE*H20ZGM]%P'X:6M M>RZQ7-++02/U"[#J=84^D>6#)+8CZ*CX2LC1I5*C6$N>2DWKUC4NG+?B]KO. MJT61EC>WN5@]'Z#>73FZ:+HVD@KTR[\/_P`=U'^)JTR2T1!"UK#HK+>D`RFU MH[0N^'AM_L]W_P!#'PX3'"S2^X/P`%NT/"UK3A[J;3\C_1=2VTEA M):.P3_P[BT""N^/AQG.GES_]'RY_63;]%MFL;I8W`X"M4[)M.G#6A:5M;9DE M7&6[-.6B1NNDQD>7+S99=USKK5_F3"E%M4$`K;-!NK`1?PX+IC;E:IO^BCKVSRXZ9A= M#Y!DB(X0U;<#>)A!S+J%5C9(.$#608(GE=)5M6.'TX5.I9-+L(;8E1C2[2!^ MJ@N*`$P-^ZV+NPT9`YW55]!PG5'=-&V'5M&5'9:(&=EG]5Z!95J;@ZBP`C:]:\#TGS4HXGC_87-=7\)7EHPN:USF^R]IK6 M\#+1GV52O9TJK-+F@@[@J62]QVQ_4YX_7@%6UK47N\QKA'>5#7T"F8&W=>S= M?\,6EXPN--K701@;K@O$_@^ZM];Z#"?CLLWP[YCUX?K9>*XQ_J!=V&RJWE(. M;@;[+4NK*O;^FJTMA4[ILM(VCCNL3J!SA-)PTZ6D4P"[CN44L_Q_J5%3<\,`#G$!/KJ=W*^IN%>; M%Q700R<2J@VMP,GV[)%PWD`QLE(V$I.;F"443 M1C3(E#4WXSPGW.!OB4+L`0B':1_LIY'F#\H'OE`W?:/=.!P<\H=E4TS$G*6) MTB3!W)0U`9B1&ZR3_`$`01!V*$@%WM[2A($3!440+8DP> M_P`)-]7'LFW$@@$<).:X$#(,3"($3= MI]D.B&CU;IZ8/.?9%.W2'1$F.4Y'9XD\H""`08![RA`)[0/=!+H`HZB]KB3^ M4`RFQIB!\%#"3E-SEKI*`FQHQCB>R>(&#N4)V`[CE.X>GCY"!VCU2,]D[@#.\I@) M`EQ(`[IVF!/*(36_U"!",@:-6!/"C:7-.F)&$[LY&P/*`P&^V=RM"P8YSF@3 M/8+.8'7_@ MY58WHMLT<,'[!>G=/K#2#.ZY95QQC2HXW^ZN4F8&RIT'<\*U3<(X6'18IM$[ M^RLT0`/T56F9((^JMTHP9V14S8#"XCZ*"I5/F1SW4I&(!4+J<&82K$U"H8,G M,IJK_>4-,:0%#3A_'#'AP<) MBN"2&,)'5YSXDZ.ZD7/:V2"N.?B]NFL<],FI;U/ MX)I+IGNJ@K,MGR-QE3BIW#7U&G3,Y7*>'*_&O:`Z1; M7?5*S1I(9O\`*[OH_2&6UJT:1,=E>Z#T2C96[0&B5IOIZ6B&X7HP\4Q8N5K/ M99TV@@`;3LH*U%C7:8"TVTGF1D(769).)*ZQBLKR#'ID\J7R/3^671@+4IV9 MQNK%*P<2"6R5H8M&T=@Z4?\`#/#IC!X"Z>\\L'LI!T\NC"I(YW^#($[J6C M;3(^JZ.GTX!OY0C;TYK0(:$-.=_@L;;H76T#9=2;`%L`2H*G3`'9"&G/?PX: MV0W"C-/3,#]UT3NG']5!4Z:X@]BJ:8+J<_EYW1A@B#QPM&K8.!(TE!_!G)VQ ME$9KZ0&PW0NH-+K:%JBF9(C=15 MJ0DGE!F/HASH.QY*AK6D[#9:3:<.)_=1UE[9"V:E"23'W52K3@D!NRHX[Q'X9MKT.+&!K_`&Y7 MGWB?POTU6%C28A9E[:T;MQ:^#\J\7MO#RY8=/G6_MWTZQU@@[ M0JO'8KU[QQX.I50^M;MAR\RZSTRXL:[A49!G'LM7'4W&YY)E6RM`U6T&V;'MJEU5SB',TX`[RH!^;=$\^K!!08=.8(X M[J!-;_U2.R$M<)D0>Z=I@YPED`D.SW)0"]I(DB?JK+`*-E4(>TOK```;CNJY M+B28VY3.RV!QPH&J/U2`C,'X28<29^Z?7F0<'NJ#IR':Q,QC.R%P).`#/ M,H28.TH@2'9.-E#9Z>VYE)XW!;/:$MAV0ZR3/?94/Q[)#3W^H0Y<#`VWA,"# M+H(*`G279PEI,;[YQE,2!DRBD:9S\!`+MH/Z(28<"6Z@/U1-TCN/=-5<=69A M-*$'?LB)<,SN(3.(@P)0D@`X/RH"DY,<)'CW*8G,?=(.,Q&P0.)C3LG)(,-. M=Y".JRFV@VHVL'$[MY"BU:=\]E=!W%SOTM(."$@0?A`+H!@S\H2'''[HR3IC!^0F(@F?M*H;3F2Z M`4OS2(!]TX(CB1PD`.,=RH%`$22DV(Y/LE@G/T3C3&((F,HAVB"1]$M#MHG2 M(1@P,X]Y0)N/G96^G/+:@)G&% M4P3),@^ZFH%K8,Q"#Z&_!#K!J=.I4M660-U[3T>L'4FS\[KYE_`GJM*C>>2Y MP&H[DKZ&Z-=--%I:<'LN.3EU77V]00.)X4VO.)PLBQN6N$3^JTK7U#^9EKMU8%RYH_,M3R5+XXZS^)I.;^Z<5J+O3@2N7 MI7;MR25)_%/U#2\_"W/-6?VG2>73?S]$#K)AF`/HL2EU"HSG;E6:/5SR2MSS M?EB^);K=/;I,#/95:UA(,"`K5/J5-[W,`+I/)*YWQU@/LBV7053 MN:'(;E=:ZE1>"1"K5NGTG">%N65BXZHY,!;=:W<#$3"JU[:0=059L8D!KLY"CN*;7D#A: M56VD$8^57\HM.1*(RZ]!H!`;"H5:$/)B%NW%$ETZ57N:`TR1*K+G[ND"TF-E MEUK5S27[+JW6[).B5;"Z>W3(G!A8P8`2"(CB%[_XEZ%:7])S0 MP!W=>7>,?"E6SJN?2G3RKZR\QVQ\F^*Y-K00!.VZFI?F&-U4>X$1@-X'*"#3/J@X0.QQ,J4O@$MVV(0.#0!ZM]S*B(R!$@E"8(C@*1[ MB7N>3E,6^D.Z`8&"4T0=_UW1%H.9)!0N@$_M*@:8WRGUY@?J4MX'*3&M[Q_=#1 M$G3,QW1%Q&ZAHFX.-N?=.TY'LD1O'";\L'ETWBL"Z,B>?NOE<&#.K]5U7@OQ;>='J-#3%/V)/]USSQ^Q+CM]8]+Z MB-7YC]UU/2:XJ-!#XYW7A7@?QG;=0H-+ZH;4Y;,2?NO1/#O7FD@&JT_!7&\, MZL[>E47M#7$CE*RMM3M1PC#=1WGV5RR8`?=6(L4[66`A05'LIDR1 MA6ZUS3I4"=0PN"\:^(_X?4VD<[83+.2+CCMTU[U:WH-)-1N/=:]>\0]3JEVESH/RL!]:[N'ES]><%>3/RVN^/CCM.K>.JKI#7&/EL=/:3IA]) M=7O:!;5)SC.ZSO$/2KRE4-6DXP.R[K_@[:%0.:W3_97*G2V5Z&DM!/=)-,^U MEW'GO1+R^H/%-Y,#NM^EU&XIM\S45?J=":VM(;'O""KTPAT:#'"Q8U[;;'AS MKS]3653@>ZZZROJ==DM(7GM&P?3:'#$+6Z76K4:@:7'"2V+K;M#5WAREIO?/ ML%C65Q,:C'NM>@6%HV^JU*FA.JNU0)1M>X['9`Z"TY^B!WY/VRM,Z6F5W-Q) M@X4S+EXR'&5EE\#>5(VIZ<.A39ILTNIU6`2?U5ZWZN',+7+FJ;R2! M,976NI4ZC<*C=V6#NNDRCE<7*.:0XR,J"Y@;-"W[BQ.LDM69=6NX`"TSID5Y MF(4+V@L@MB5JOM"&203"IU:0!C9&6'?48.V%0N;.6X"WZX(&P@\JG6AWHB6K M6TD[>&>-^@5:-R: ME*GCF%RX9I?!!@<+WCQ'TUMQ:U&.`)(PO)O%/1JEEX^RY:CLJ.KUJ;*U*G5=396:&5`#AP MD'/V_14GP#`D_P":M7@;JF/]54J#B=\[JT`2UI`G_)';5*#!4%>FY^K8M,05 M&R`PB.VR$.]4Q*E@,TF/>UM$N<7;`[J*."XHW!NJ0"UO!E"8(`.4`#Y^DIL" M)._;*.(.ES3(.W9,6MWDQ\H:"[V)'PD08TS(Y3@`S&!W"1`+2)D[;) M@V#G>82!D<_912!@Y.`G=$C.`F($@$004[P)W]T`@2[*=QQ)^GRGB`29^(W3 M:0002/V3F0()(0N_,1G/'=`+B8B1',)LGW[)W?_'9CG.R$.,SCX"-K8P3OCE!'IG[[J`B1(C8[2G$EI`'ND9D;93& M9S$H'GU&!`A,XNS`PC:"3$A`X#/Q%NK2X:+EYLFI3:X5.>G>2)KM/O*+_SI M;&`VN"1C&?[)N4>B5[T-F'?""A<^>,.,''RN/Z1U5_4BT,G2>2NOZ=3;2I#6 MMR;9VNL>6'\TC]D]UU"G:T2XN&%5N:K:=-Q)^ZX[Q7U-Y8ZFUT`*97U:DVF\ M4>,0POITWKC']5=?57>8=S*C?:/NJ^27%:%ET.'MAL^Z\F6[7IQD@;>QIW#- M6G)Y5BUZ'1G\@QG9;G3^G!M/0=BM.C9L:P`"/E6+_P`<]2Z12`/IB.5'$]E5M M[44JF<05&H@T.:T@#A:/3ZCO*#3NBI6S2Z2%*VV,^D?"B[2M,C8?=([R%+3I MP())"*E193:0R0)P.RK*HYA)QO\`LH7/(,*[59I$JI787.V1=&I5#\(C5]4! M0GTDD[A1O=I((,PIH6WU!I$#=0.<"R1(^%%K+G`26I`D:H)DY24T-]9S8TJ> MC=O8R0X[\*EL3G!4-2L6OC/PM)9MTEEU8C#C';*U[:_H5J8@B8R9W7$4WDLP M[Y4E"[J4LASH^5TQ\ECCEXY7;U&4ZK2&@+.N[`#(;NLNSZN6.ASX[Y6O;]1I M7#1Z@O3CY97GR\5C(N:)8XM((E9EQ;.+RVS@8`$+,OK?09Y"U&+-,>H/3J+=/UE4KVF'QZ\N(R>Z;_@]O MV"W_`!=?W*\#NZD/APSR=U4JOAT@8XY4U?\`.2,859PAW8>Y7.NVR+H.TB,% M,7##HC'>0FQ$B$S@`T=SQMA0V,U6;-!@C8H?,TD.8=MI0%H`F9A`(,AT^R"5 M]8OJE[R2YYDDF24.L3JSGNA@:9!Q/^PE&(S!W0V(5#N`2"93O>#F8]O9+$S.P022,DG!2#O1$X''NHY` M[YV2:(S.>Z`@0'0-MLIVN9D\;*,@S,XC9-`!DN@'A%'Z9U<#$HG.86CG/*BW M>R'6W0TM.1PHL@`0(&Y3`8,9A#:1SFAN\CO*4LC\V3R@CD8"1 M&9*(P&@%TQNHH@9VYRDT2 M,J&TNKT_F&/T14:C09G'90`&,?;NFC.VWNJ;62[UR#(D)FS&#C]E"&.B8._& M82(AOPH;3D`#?9"/SQ,R@9L3,':"A&"8P=O=4VL?TB=C[)B?4,S.)4+2YVD@ MP!LE,;*&UAI$!TB/=`XC!^ZB'IP23W3.RT#GE71M)N![)X'$Y*A`(?F8GNG! M(GV]T5,WL.$F<-])A0DGO\P48,N:9G"(E#23,_24X+2!`CVC"BUG,DMQPFU8 MR0"-LY1=IZ<9''S!2:2)$P.Q4<@/W,3K&))X3AQ)D;;C*AI MN(V.0B$ZMX]DT;3-J.;D3@YA7+?J%RT'2\YBG&:!TKIS*(!?$K5H46X`&%%2:YYX4]'7OL>5C;K(MT6L`G2G>0'"% M$R3N8Y1!CC`F5-[;D.XZA&`0F;3^P1BF=)[J;R@Y@/[J=KPA\OG,*Q1;!C>$ M@SB"/HC8P$AORKK25)I:3D`=_9(6[=)@#Z)B0-A/"-KQMA:E9TJ5:68CY4#[ M?2"8RM%PE^P3:0Z,*5J*`I13_=4G4?YA@8'=;GDRT[2JXMP2#A9UPUM4MZ`@ M$_JIJ5-IF0K#J):.WU0-9$08/92B(,=JP,!3-I_RSW4]&F3EQ^JE%.7#N4D& M959B'#!Q"J7-*#$;=EM5J30W;*HUZ4O@<;H,FNQT$D0J[R)C<[+3NZ3B-L+, MK-WWQRHL!4R#$9[)A4+1,92;)$&$&\JE-4<">Q]TWE!XF2/JD]P!@CZH758: M2W*=()K0UF#,IY;$"%!YH&"=NZ'S@';_`$2&DSAWW1T*]2B):2(XE1MJ@GF4 M;(>V"5N,6-CIO6"QH8]Q$]EN4;FE7HX>,KAZC8!(,?W3V74*U$^EQ@<%=03C*KW%LW M20&_5:5S;Z'Z@JM5P+M)V"#--"F#!R4WD4NQ6LRC1+`2""47D4?=.%?)%56?O.XXRH])J@@$.TRWLHV@@',GA&]QYR.4SO MRDR,<(R"1)`W^4B(V!2G>&IB3JVX[HIW:-1`.`<80.B9!(([IYDP2)[IB2)Q M]D#.=/(^Z)H@:L'ZH3&G#3O\)R8B#G]$"=J(_U3M$X;B>$YD`MF0=QW3-@C+9(Y0%I;K)VC M8=T-0R[_`%3AH<[N!PF>-),B/8H'8).9,(!IF/;!)1$ZL>R$B,<]T#@0P'?@ MI@9/Z).,-B4FG&V_*!P`1C/LD-0!]1CV3,.(`^,HFF),8^4#C5N/L$[9/IC, MY(2$@8Q^J*1(:1]$"(],0<<)J>F-DY@M$?ND(F0J&/I<5+3(,3D$IG!I!.QV MA.&P-ON4"(!$#E=A^'7AQW4;MKZC)8TA8/0.FOO[UC`PP2O>?PZ\/FTM6`L' MRLWIG+/UZ=#X.Z*RA2IT*;,-'*]+Z);MH4`-`"R?#5@U@!(B-PNB>6TZ>-EB MNF7#U)K2F2-ONKU"G!CLO/>7IQA6S`QHA3&F0"4@`'2<*1[FAN( M6:Z2$P"6XP5,T#&%`Q[2_)_56&'MNIMK22FUNG_52M'HQRH&$ZO2K5`#3_=6 M4T`,,0!",LT@3^BD$.F,)G./*K*%T\H28B``GJG_`*E&7`[S`02XB)1-B9C" MB8X1,DX1TG09/*FQ/'I@#Y3^6,N)@CV3-)(D(Z?YC^J*!](O?`0U:`;D?16& M-&8'Z)ZE)KP`X2.45'08W1&".Y5@4QH,)4F'4('W4^D:)'*1*I5*0!DSE5*U M(:C&Q6C6:!.)A5JC6S);E18S*U"096?=6S1_3!6[7``^50K,#R3C"G2L-]') M)&`@\HP?9;#K=A&!@JLZD!(`0K(?3)!&WNJ]1C]/I(^@6S5H`B`,JM_#:21^ MB:1EO;IG!*A#'ZCO'*TW6WJ,A)M!H$&$TNU&DPG?CW5BG3@;[J846L),)5:O2#G;;K4K"FUY:[4Q\%;/1.LN8[RWN MU`+*=;$B&/< M1_OX7765[3O*(@CW*]/B\ORO+Y/%KIR74K0LEQ'ZK%K6O\S6Z3"[OK/3@6DM MV7-=4M2*1TSCL%ZIR\MX9#7M`B?U2\QO0<`!6*YEQ;`&..56>1Q"E>H+@2/8)/!D2-TSMA)QV2(F'$X]D-&<,X[(2) M))&41`'9"X]T#$&9@&=BD9`B"2$PSMQPB4)@#_1%3=+80/+MR23WE-LTZ@DZ8&04TX@ ME$.!Z9S!2W[I9#1.4I+M.?:.Z`?3S,<)`$DX=/`2AP<J^GJ;H MU;>K.Y00TGL=DY!C4[Z2D3)D'/NA#`@..GM&R0)`^>R=I+4T>F"W=)L!ID?14/=.I.JEU*G MH:=FZIA1N]@B#26ET8:)WV0F-!Q]5`Y!<=1&!RF&Y@>^Z0(E.8!$85":V3D' M"<`:<#;=+4T99(/)*=H$=^Z!"1$#*<09F?HD1MRG='(DSW0T8>SI]D]-OJ@D M;[)@,;F?E&(&^_LBB.6P>58M[>I7F6^&B%3Z):!K!A;MM3T`8^'3'SI:,GW5D=%J-R&N! M"OK4]HWK6[-5FH'Z`JRR^+?S#3[K!L35M7!KP8^%J4GT[AHV"FMK&A0O&N/Y ME-4K!W]06-68^B8&J!V34;PZH.RSNSMJS?34>Z7%`V=63`4=&J'"094K3Z@1 M&5N7;-@R('I&ZDH@ALB$PRTG]$3()&(5TSM-3P8S"GIM`,A1,(.5*#VQW32[ M6*8!@2BTMG?.TJ&B1JVE66%IW"!1`P[[(RW!F4@0`)&/E-J&IX(:[([JG5ZH8!UPH;\-9(:!/*R+IQ) M@'*9$TZ&WZDW5)=,JT.HTW-`7$UKEU/)<<=E2NNN/I,($^V84F5B7';T,WK# MC4/;*FIUJ+VP0"?E>3?^9;IE3,Z?=:?2O&#&U`*U32??*U,_\2^*NZOZ/]30 M1_=6>@=0=0KBF2L;IO7;6ZIC2Z9&_P#L*=[VEVMI'>97693+IQN/RO1[6LV[ MMPT1)&95'J=DT,((^BQO"G4SK:U[L]UV+A1N+4.!X7J\7DWQ7C\OCTXBK9-% M0Y_1-_!-[_HNCJ6)+S#"A_@3_@*].W#3X'N-RZ8G"KDP2"#&RL5\F&S([*"I MZJ8@F1B%-O2A._<#W2.H#V3NB3N1&2FJ.);OM$?"JR:">3\J!#,G*7S(A-M[)\=\Z=P:!D^^$HD2=O MV0)F#R)3NB,QGNDX``9'U"1'I,<(IA^4$B>Z9\``C]D_],S!A*0/^H>R`(SB M<>R=@)G.Z3@``Z1GA,#/$(%IC'"49!V^4XR)/"3))$9[94"(R2(3/V_=&0#. M-]\JUTQ_3J=.Y%^RJ\NI$4?+,0^1!/M$JBG!C<=HW3"=6#D(FDZI`GZIRZ6P M2/D;H$"TN`<(2<,P)^$((@#;Y*=TD8?C_P"Y`\C3_ACLG:X@[S*;$$S@=RFU M9E`1)X.=D)!C"67&>P3`8,9*!`^J28'<<)R0-G<]LIB!/")C27`-&78B$"&/ M43@IP#!,'2>3RFDR6]P8,IB0#I&8[%.6Z9 M;I(/,H?S/COR25%$QQ+H(1F3&G[E-0\LEQ<7#'')4]M3+W-`R51?\.]/?>7; M`&D@D?NO>_PS\-MHVE*:?J@25QOX.^'75`*[Z4S!R/A>[>%NG-H4VC3&%,KI MPROM=-+HMCY%)N`"KUUYE.F-6(7.^(;\'4QA@^Q7*UJ17\0=1=5< MZFUQ2Z#8N)#WY)]]E3Z=;FXN`]V5U%E1;3HC'U7FRRV]&&.EJW8&L;Z=E:%0 M!NX5%U9K6Q(V[IA4WK*=(Y7-7?G]0N-+7'3^RT;MCZSX.%H] M.LZ5"V#C^8Y6=;:WIF].Z2*;AJ))706%FP``-5>B[75@;<+5MW,ITY<8"WC' M/+)RZ+J?3#2JZV<=E5%)E1A:=QW7++'7%=\56NK1U*H2V?E-;EP,+E.'2S;7ID%L0$MLZH"BH$>7JG=-4>5U[W3A'4(+L9&RC>!&6C"XN#C]`L3K-E+"0S8 MKN+BP@2!C9974NGZV$'93U-V/,>LNJT7END$#W61:;@!R.3\+TOJ72 MNF^0T>5_,`AQX/NN3\06MM3)T,?[+OO M#GB)MT/++B';1_L+R/JE-S'DM'I.T!2^'>LU;&Z`.8Q!6KX_N+%LO%?072KK M14:X;E=]X6OQ5IM#SF(7C'@[KM.\HL!/JB8/_9=]X=O13M(,0(V MF=U7=(?&5Z;VTC<09`XY2JX`;!VS*?&L`NB3DH.=\;)0F@D3G?=,\.!S@^_* M:21OE(N)(!=/RH&R7<;)`ZN3DP MA(#$?N@/`<07`\2G1G.Q0_P!'O.^_A%X: M%K:L?49ZW9_92UC.ZXCJ_`'0:=G0IL;3#0!L%VU.FV@WM"@Z?0IV](#:`J?6 M^I-8TZ'?5SH=4N:Y,[G=!7J5;FK(G=:G2K4,:"3\K MSYY;>C#!;Z72\ILN&%>KW(IT\QLJP(`+01E*C1-5^J?NN5=I(9M1]5\SOE7: M;M-,9(,*2VLQL&G.ZLUK2&&!!C*QITE9U2JXU>ZN![BP1C$8*J_P[F5@8WV* MMTQI;D9(315RQ9Z0X1C<]UC^-.M&RM##@#NMFU>T4R-B!"\]_%-Y<2!\_.ZZ MXS;SY\./\5>,',8Y[ZPF<"?E5_-.ET@']%E>/7/IW08`=)Q^Z[C\"_P MUZ'XDZ"[JW7*]8L-7RV4Z#@#L#)D>Z[SQX_6-^LW6A^'/CJJ^JP&J02=I^%] M#?AYUD7UJPN?F!SLOE?QIX9'@_\`$3^`Z=4?4MG$/ID_FTDX!@;KW7\%;ISP MUAF,?V7++#URX:W+'KMS2;5I;;KG[^D;:L2``"9E=-2@T&&(D+*ZU1:^FXM& M96?)-QT\=U6-69Y]/4(E4*E`M>8^JNL?Y;P#SA2.HM>=0V.5P[>GI3HU#^7? MV4E:"W/'*CKTS3<2!`05*X#(..Y5G"6`,->/A.ZH&[''RJU>LT2951]R"V`X M+>V%]]UIP24A>-`!!SV60^L7$29E.R9P%A6Q_&`DP2)2_BIP=OE9;6NB#REJ M+9.P_=%;3:NJ>ZFMG'5JGZ+$IW`!''.ZNVESD'ZJ+MO4R-`DH75`2J(NP6[I MZ58ND?JKM(MM<&NB=T-;).1'LHR^`)2\S8?9:A2:UN3LH:C2YY4KW`@D'/RH MWNS@_P"BJ*U2B`ENRR.IV9+3S/"Z&HTZHX56XI!P((B$B;:=\\.VOJJ5@7.))DSNN;\3=`M?))INTD;2%<Z3@!!$DSRG+CI`!PF=)`QL-^ZBFEQ)=RG@`Q)DH0X3(G*<.( M.)5#P8&?LG:3$1DI,)&"XP0FGW_5`8#-&"9!VXA(^IQP`$.-0DY'9'J!,.)# M9RE@$_\`+`G=(B!EVV(2`]6#A$0)W!$2B`R&X.4Y+HB?NG<0.,).@"/K\(&U M&>2>4.2#D=OE/(`:3N<)SD`@B>W"*0@.D)F@EV-Y1`C3&`)V"3G1,``H$0`Z M3A!$CL$3C!R`3\I`Y&=NZ!A.@-G!X3&200C=+8$C*;4)WCL.Z!MP)CY3QB9V M_1,2)WPD\C&-T#.DY.\II@DD`GW[IM7J[)SET[(IR9C`$#;W2`)@3!2&!@"4 MQ+-,YDH$<>G$1E+`<(XV3-P?=.)!]\X2C$NR?9`P)TD'(E.R3)T_=,V"#@R>.R=A8706F3L`@0 M)D1,S&R-XGX[(0<2/L43W"((R$`@F0`)3$SD#`12.1$A,E8VP,M$#EFT&L M:'$;=UH,=C?8J&BV:8#0K5K0+M^%RM=I#TF%S_>%HVC(`'9-;T&Z1)QV5FDT M8(*RUI9H1N["DR[!4(@;'=.7EA$LP/TA#YT'3Q\K;*\:H([?L@J5=(D@J$.!V=[[IJSI&#*!5JL`F!["<*( MOD\9"'U&9W0M!C.,;**D80.<3LG>[U1Q*B<^-MR4SB=."`FTT*070<*-S!). MQ0PZ*SO3YSZK3K6US%0' MT&22/=;G@WJ#J5W3;,-D3&W"['QMT2TJT7O$!PG^ZXFPMA1OAI$M!WGW6[JQ MJ7;UBROV.M*;IF1O*E_C6+G+"NT6=($G#0%+_$-[E8W7-\XU]#JN#`YY*J52 M`?1'NK5?#N!.ZK5A$C$;1"^C]<43R9/?LE$24[],3J@SV0N_)^B@8G.(2;#B M9@XPDT$X`^R$MAV1D(%$)",SLGW$%+2=])`]T"D:0($^RQ]TH@"?V3M&=X^$0TDQ@8"=S1&=B)3R`-`!GNF('Y3OO** M;WTQ\)&#G!^4OZ)PD-\8'NB:,!)C8)$!I(TIV``;_?*8S.P^RBIKAU%PIMHT MG4H:`X%^K49WVPH7;[9/9.\&-XG@'=,9+AD&.Y5^AMC),I;X**1)*%D:23,H M'='/Q,IH&DR-]DPY=)GY3R=$G"!F@-)G;^Z0@D\A.&NXS*?4?+#8&.VZ`,!Q MB/A(D!I:0`/;=)P,9,2-I3<>R*(1$;'O"8M$1!'RA^3"(S&Y"@&)^B7>(!*( MQI&3JY28`7?YJH3)B&F`[!2#6"?4F]IPGB^'*-'I%@*E0LUZ>#"Y3I56E9GS-/JX&Z;JO4;FYJ>6"X#L"8"7+7 M3%Q]JWNI]#^DNJ%M2H)F,%>@=&M6 ML#1'/'*\^==<9\B_TRVT@'*W+2B2T0(5>RHDN&_T6U:41H!7&NV,%;4,-&RM MTJ3ALBH49:%9;3TK-=)!4F0-M]Q*GMV0#(F-E'1'J^BMT6SB$;]0BF=\'V*) MU*?@(W,=P)"E#'Z?=#U5C1&D"#(,PCIVIU=L*=K3,'=3T6:LB%E?52?;.!]. M%&:-0#?Z+6%$N(X1FVD@IK:,;RZ\2'$0$%6KRD`:U MD",**H^?3W34B;V=PEWIW"NV%`ZQC*AZ?2+W_P":W[&T@`D96:W.#VM$0`!M MN5:-`%L3(CNK=&UTL!")[`QIDJQ&<^F&S`V]U4NZH:R-NZL]2JM#?W6!U&X] M4S]%-M:VI=;K:FN`&^ZYBZ=-:/HMOJ+]605AW&*DD+6*7A=Z>X-<"?JMBV?` M&GNN>LZGKAI"V[)P<-BMZ8K2IO)]1V'"($&(Y5=@=C.ZFI%F))'$*[1,T&1B M$;((AT(?,:!L-E&*X)SLLVM2;2^ANWU"@J/DF-/R4-2K(,<>Z@:USB3G"SMJ M8K6(GORFIQJ@C?*9@EN94K&9!Y5BZ$6C$#(0&!,B%9IT^"AJ4A&)`5TS5&L1 M.^_*A=`,GA37+!JGMW4%3+(!6F=&UC29$*EU1NJD((D^RM0`-Y3,8'-AQ)2, MY.!\3].N:E-^EARO/+VWN+/J$U&:0X[+WGJ-JQ[(`PO._'/2AJ+PW:2"%TQD M8]K.&+:5&FV9SCNI-;>Q_P#WE5MZ3FT6MTNP$?EN_P`+E=)IX77R_`C.ZKO` M$G^ZL5LDD'_55ZL`[8/=>ZUP0C,YPF>#`C9$`-)W33$S*&C#`$2F&X<,)3+I M!33G=0.7!SB?V3`8W,>Z33F"/[I\3DC*H+29#C!]A,I&.3E-`G3LG/I&2/F4 MV'#0,A,Z0<(,PG)#0-L[A`A(,GG9(G&YRG).F!L$C!W,1W1##`P?HF!@ MD(@(GLFQO)12'Y)'ZIB9;JGZ2G&TSD8^4S]Y;(4")X(@H7&#/ZS*-P)$Z8)4 M>G)(/UX5-$UQ&0?E(?/*0!!,)X@3!0/Q";U;$[)V_E2'YIF90."9"3S@$P[&81Z8(S*0;V,^Z* M`?XA&$33Z?=+CG[;)-V]E`^H:?RC='3+7.EY(&TJ,`!TI^=-J M*,-`F=49*$X$<)G-!@,G43D*H0,8@?5.3D0!A#ICM@_=.TD?1021,>G?&4Q` M:>X3R8`:9`R,X0PX.#?U[($R7&(E$6[%KI)W'9#!$Y1,^,'L@-KO1V*`3YFH M\H@)`TPDS$3QN$&MT4C?A;-)M-U,Z78Y'=9/0:>JH&MS\K6KL%%FB#/*Q>S_ M`!7J57`G\P'>5I^&[9UW>`@.C&^ZS&`UZN@-R>Z[OP/TLTRUY'N"N>66HW(Z MCH%B*=!GH"Z;IU!K6B&K/Z;1R#$+>Z;1B#W7GW]=,8T.FT1`)"U*%/(@0.RJ MV+-+1[K3MV"97.NTB:VIG3MA6&4=42E2;#8VE6Z%/GA&I$=&@)_+A6*=&?\` M)6:3,[05-3I@[?:$:5V40.(4C*$M]O96J5)IYW1BF&Q&Z:6549:B1.%+3HMD MX.%:;1Q*D9;SM,J6&T#*>WLC\LAL!6Z=N1`1&B-6VRK%40P@$\J-P(_=:3J` M!.,*)]($0%$VR;BGJ!G=4*]OK.0<+=KT@W,`JI7:UL]NRB,2K;1@&/A15:+` M!`,K0N2)G[`*G5(CU*;%5U(;DPH*M5K<3A'?W#6-C^ZS!4=7>0V3QA#6UD5" M]_IX5NTMGU*@)'T3=+L7ZI=RM_I]F`084M;F)=(L,R1]5OV%`#C906-NYKI# ML'A:5`0`8^4C5B3RVAA[PJ'4,-*OU9T[0LCJU0L80,CNE28L/JM1NDDOCV7/ M7E4%QRM'K-7)B9*YZL^:D:E(TDNCJ9`S*R+X#(,"%L4V:QE9?5Z6G8+>+GE5 M6Q)\[?"W^G@B).%A]-9#YX[+:Z3[HF;D@_W4-W@]Q\IJ)<>?T4+$U;+28_58W7K(UZ#B M6SV6N#)@;?LH[MWE#N"NF-TX91Y[4L'-J%N@X*;^!?\`X"NKK,INJEQ:)*'R MJ7^$+ON./+Y#N3+M,$_)4%PYQ`&HD#8RK-<:B`V/5Q,0JE<-V:\P,;1*]*(Q MS!]T,^DA%B#F$V6ND.RTJ(`D`$PEQ[]T[AOD?"3V@#!,';"!-/JD&(]T0,NP MXXV*9\BL[4S3F=/9-`/,R>$$C=()F2?F$PR3[!`3B-6!$Y2:-3PWOW2B=,'/(3$Y@!02,)#2,04&-6 MV$G1\^R:0!M,@*A'2TDDQ]$P(P=,Q]D0PWN@&#)P(WA%27%4UG%[PV2(,"`H MQI@[>Z08#OEQY2`(<"Z80+TC&)3#:0!"=H.QC*2F<`<@X]RG(.G\WT";8Y$`_JJ$V)SB/=,W_ISRGTD-G'/*0C2 M21!X'=`Y$_/LDQOJ`G/ORF!!`Q]47],0-D!%HV).>R$M@0#ORI/3_0'("/27 M&2=D#.$1P.Z>F/5D[);#;ZA"S88WYA`8$F92@2#KR>Z>89@2A`R<">R((MD` MZA]$3.T'ZE-&T[=@G+73IB>%`;/2\0`83MU5*FV_8(*9),;*WT^BUQD3\(-C MP\?*8"X>P@*]>.#OZM@=E2IQ3%+(U; MQKVM)@\C*]1Z%;>70:V`)7(^#[-K7M<6@>\?*[_IE.=.!G]%Y\[MTD:-E1V& MRV[&F!`P)6?8T@&:C)_NM6RI%Q`C/=<[7;&-&U9Z1Z<+3M:8E5[2EB./=7[6 ME#?=9=(L4:8A6Z+(XPHJ#/3D25=MV>K))114VQCG?"G93<8Y*EMZ4%6Z5(1@ M1"U$VAHTR"9`^ZG;1U#:)1LI@'T[JU09W(CE-%J"C;Q(`R%89;D"8W4LM#AG M=$XC3(X2QG=1>6!QL@J,Y4T^O'U0N!T$`[J"/2(@M4-9K8]U8,=Y"AK"9VGA M04KPAHP2LN]+0"=EIW8AIET3W6)U.X:`YH(6+6I%.ZJ9QRLZ\KX(`SV1UJI< MXL;RHA:U'ND@=UF+I2F`$YMI;/*UI95*@UC3^ZL$`-D;%)M&'3 MI@)G@AN\J-\`KO.GNL;JKO3(XY6K6.!WX67U$@L,]E$TX_KKX>'',<:E*,"WFDX.^(5>T=J.O7Z@N=GX=-_EWS:K7LF9!Y4;JD3)E8/1NH#%)YY MV6M4<'&6D0=H3_#1KIH(G49]D#):V=7NB![C/LG#=+=$9*U"](VN!=`&?200?E-KI^_W7 M5P?'U8`%QU2,S_95JA&GXXY&5/<..HDW"`B`6D3/\`=-I$3N-MR4X@M$P=/!35B`XM!+AR=N$-A(AN$VF1@?=%4+=) M$1]4FX!P2@30=MCV2?E(F#&\8RFG!SG9%(F!`^"D!Q/T2!`/,I2-<@$0B M'<-1!!@3"%['DP!MB`B);]1RB)D2XR9Y0`<-DREI$0=D\MUD@[;2B9),B".0 MH!P03,EW_`'4],#5'9+^K?/.$3()$;'E0-4;.3VW2`,`$R1V1.`'NG8W2Z=_? MNH!T`YXV2%/[+:8DK0KD-,3L.5S_7;P,81 M.2LVZ63;/ZU>L@C4N>J^96JG'1QGB9S1JS]UB]-@W!+5K>+B"TG;V6-T36^Z[:3]E/C&3IZ+8MS!SLL M?K+_=95_3)?EOR4E#/;*Z+H=:EITN@G;"XVRN@)#S@>ZU;*Z-.'-/U6= M:JW>M.\M7-;3D\*AU_KUITZF2^HT1W(6-=>(&6]@XN&OQ#IW,!]5IG$$ M[+N>F7]#J%MJ:09XE?'OA?KE=I:"^#N).R]P_"#Q,ZJ!1K.]0.<_*XV7"\EU M\=OXIZ2RJ'56B"1A>=]6\WI]SZB=(.0O6[A[:M"<&>%P_C?I+:]%[@T`1O\` M93/'P4-L-5,3!'96*3(GNMPM0W!#7P MX:&DR>%0N7RSM"Z1QR+1J]0>(*7E'_&%6\QO^RG\QO;]5UT MX;?(=S`,`AP[]U7J"'=YR)4]P6DQ(DY[(].F6ELGB#_DJ:"0!L#'M MRD(_*1F-TGD%VXPD"-,R"XJ*0'H@[CE*'3,_ZI/`(Y^J=FDND?9`@&:#).K@ M<)23C4E5!D'(D2A8`AH36G8'/L81`[`B.Q/"%H(_F3@8[IH9)R8^TH$3`B"G MR6:9'>4_Y6G;`Y*%@D9)]D0S6#`GZH]()R=DP!`&84M33H])@#@JJC$`=@,` M),P[5!(V*1,Y,`%,WZ<`.=$B?V2`#L1_V3DD`8CA3H,`_?V6_XP8VW:VFT-U;=H5[\.6&C MTXAK,D3\+/\`&.IUZ6NF)V"XYYS?JUAX[;[52Z)0\RL=8+I@8*[+HEGH:V`- MYPLCPO:%T$@D[X7:],M0W3I&%P\EVZ3AI]%MA`UUI'3[^RC<6;9@:9$*];4S MA0T&`$*_;T8Y*-;36],`CLK5!D-'LHZ;6@*>UAPGCL5=":F`0`3/]E8IC$<0 MHF`[*:EL!,!6"4-]0,HP!'RHV[_W4U(2)[J$`W>8(A3,9)S`A%2IAQRIPT!N M4T(6TQ,$\)5H8P03E2NTB?=4>HW+64YD*45>IW(IL))7+WCC<5=,D\JQU>\= M4):UQ*/I5`$!SQ)]UQRNZZ2:2],LVL`)9GW6DXTZ+,B!W0.+A<7K7_S M#GW*\TNJ%?I/7J=1Y(:X[Y@J7VK>&..^7T;X:K"XI"I,SW74VE2(_P!RO//P MVOA6L6YS_P!UW-O5D`XE7&\)9RV*50"`#A7;6L0T$D2L:C4(]2M4:OW"Z3)F MQLMN1IW56]N?285&M<:6D3^JI75X,@._T6KFDQ!U&JV""`9"Y[JC_28C*T;J MX$.AP^%E=1?JIGV7.UN<.,\6.!!D[K&Z!J%R6G'Z+>\3T=3'/VC]5B=#9%WM M,G"EZ+'7VXF@`2W8KJJ]$ M1$+.O+8%LP`MQ&`ZB1D'/[([>X=3<`XF#[J]5MP&$9SLJ%S1+7'>.86M;54?BAX9NF:JUNS#1D0<[>R]/Z9=.;4#7-AOLMFKTVTZE;::C& MND=EK#+5<<\?KY)\,7%ET_QI:W'5Z`?;TJFI[*@X'RO6/_$'XT\$7_X?OL>G MT[*YO:VGR'TF-FB`X$Y&TA:?XE?A9:W=%]6VH-94`P6#_1>&>(?!W5.FU1Y[ M/29&QD1$S]UZ\?[>^WGRQF4U^&9T6L0]I(N$W>'`>+Z1H5!5:(`.3"BZ7?,?7I"#+MCP5T7B M.C2K6K]0W"Y#H]L*74H!($X,KAY/R]F&OKU+I%8.MV@X,+0:26RZW'M`9(/RKBEJG>G+O5CGW61>U0`8=\+2OGQ.?E<]UNNUC'&?U7?&..5X5 M*MZX5"&D0A_CG_X@N?KW;_-=IV0?Q=3_`&%W%5JN].D1!5N MX+7OEK(G8`[JMN2%S2,@$2)R@&>%(X3$ND(1`/?V32ASI(@I@ M.-TT"(TDD?;V1L$B"\#G)_1!IYS]U`B#JV^R0D M081-`#ADHB!L'?W5@8DNW'Z0$VDGZ(X])WA)S=D#`^F,S^Z8"<1E.W:"=L)$ M$"90(3$29W14C#FRT'V.Q33@YB.1RF(@9A`3RW=I4=:=3B'&"BS`@@2F-LYW09)[J@I))@Y"D-1SZ(IP(;[*-C9,$@>Z)H])R$ M#$&3V[A(`B#"D;ALD84CRP6X:6#6#.J=QV326H7$XS/PF(=));]`C:9(,#/= M'#8@E#8!J()&0/9"3#IZ.!IF"`>$PQ^5L'N@.D3.!N-TU0D-@3*3=X@9V ME$]D@X'R%`!(#F@".,KHO`/0J_5NIL;HEDY*PK.AYM9M,'\R]J_">SM[#IS" MYK=3LRN7FS]8Z>/';J.B]!I6/3?+#`-(R>ZX+QC18[K@I,=MV*]*ZSU.C0Z: M\AW&%Y:*K[[K3JO+BO)CSD[R:EM;_ANWAK1I=\KM.C420"6K!Z#1`RW["GHI1!/NJ_1[<""0"%M4Z M;`T8CX7.1M0N*3GB<_"PNOT&LIE[H$!=:]K0"3PN3\8%S@\,)5LU-D_#A^J> MNJ?9<=XXZ36NJ(-,B09&%W#Z+G5O4/JAO.GBK3RS"LO&EN.KM%^$[:M&T8RH M22`O3K0N\L?YKA_"EJ;>H.R[6U>&@">-RL8S2Y]M"DX3$J1U9K6Y.0L\W`8" M2R>RZ&VIE\'/\`FI,C M+'3'ZW2!ID1PN>Z93#;T;[KM>K6Q-N[&ZYFE;Q?2-YRM6\,1NV3]-,@[*>FT MG)RGZ=;%U,$;J\R@`?WE,>6:SZM,021"KOH!_P#3]5JW%`$8(*A%&&G"VS6% M!LL>O0$]99RT;[J%)S(:1]UF0ZM4]!D$K+N65&F"=D5 ME>BW?+B2`N>6=^MX82+?B"U>RS+78D+DK*FZGU(:OZ3L%U=[U)MVP,F)[K.? M9M%<505G/5G#4NNW0]`+6M!)(A;AJ,-'4:D'@+G>GO#6#U+294+F$$C(X*WB M9(>HU@1#>5QWC"[\J@:3J,[\@I2P$Z09XGLDX3).23W0/W'<;H$( MP3E,8G?!1`9Q"'?!_P"R!O8@GW2';!1%C@W+26S`(3.:0^1('$JAA^6(B$6\ MG?;"%HR`"B(@Y"@+4<'@)#\LF4#$4HVQCW"<'./W3` M83!L'`4!.;!("8>[3LEI`,28`S*<`:?9`P@`04@)G"1$B-B$6F&_"H;TPGF! MQ]TS0=<3&.4S=Y/'NH@CEHS@)`#5ONG`(W`^)3&)[>R*?T@'T@CY03Q)E&V( M(WG;A,V`_@9V"(:28R8E'ID0-TY)#2UKX!W2!@QW0)H.DR["+4(@Y*#$P#NG M`;OPJ&D`@?NB<2`1&>$((!QD)F)=)!PC,MQ*"F,F!"EIM+GC2TDSG*@N]%8'7;7`1G.%ZAX4N7&M3H:H!@ M&%S'@SI%-U'4X&>Z[?PCT84KP5BTX&Y7F\MEX=\,O6+_`(W:VAT@PXDQB%R7 MA.@'W7FR22>5L_B9=Z6-H!RK^!+?8N$Y[+CCQ+8U;P[+H=``-DB>5U73*>1C M'98O1Z0$8PNCZ53AX)V4VQ(T[)D1Q[+1H`$P!E5[1H!SSP5>H-;M*S6XMVS9 M`,%:5N,#"J6K1I_-^JT+1L-U;A%6J$Z5:8`(]U7H@=HE6!M`$JJGIQ,*=CL1 M.%!1VR-E8HB8,9*C6DM$?4*S1:V1.%#0:6^TJ1U4-W5V:25:[J;]-.GCG5FM``6BVKK:`#"P[*F\ M/`+EJVI(@?ND6Q/4<\LCA974+!UP3JV6TQNJ!PIQ;-TSI]UO6V.G%U.BM827 M#G=05K#2=L=UV%[0:&N`;E9-S1;L`5-2+.6/96K6OD"(6FU[64LIVTAO^JAN MA#2&\+#2IU6ZTT708,+@?%+[BZF6[YU,&5D]1Z-0J/T:0>(6KG9#'*N M:_#?JU>C=,HUB8G&/]%[CX=N&W%HTC)/N5Y=;^'Q1K-J,:`9X7HW@FF:=%K2 MXDQNN/,K6=F4;74&`T"#&0N9-$-ZA`&Y767PBD8,K`#`;[5L96ZY1M]-MR+< M1V4WDN`("L=,9_(:8X4U1OK.%TG3G6/LM>K1&8'TE4[FF0#`!51AWM)L:EDWM$`D@[KH[JB(]0"RKRB M-41^BC6G.D/IU"YI+2M3I=X'0UYSLH[VD`2"/LJ<>55#FR"J6;=`ZFVI3G"S M.J6@+.ZGZ=AU#> M^,=.N6M.P71>+K@MMGD/CTG=9OX2VC+KK!K%N=>Y7HG3SW\O7>EVX'3Z0#?Z M>58\@?X5IV=LP6K`!B%)_#M[+K'E?`-Q)JDSG=5WP.EY@0"<(4-!R3,),'I(D=Y3EPC`G M*$F3/]D#N)VC?A.2YP&HR>QW0!_^RG)Q&^-^Z:#9!B-NX1GU.)(P3F,)@8G; M/UA-)D-)$#8*AY$!K6DG^R4XVV288[#Y3N)!(TX]U`S2=XA-F8C'=&S:8QLA M<[.V1A`T@-T@9F9X2).F83NRT2`8"%Q((B$T'`)]1!SRF#.R<9]Y2!W`&4[2([_``J"#HD&"(V*8$;C MZX3$B,3GW3LB,$SQA1"8`23JX3ZMH/RG%0:1Z8@S,)C^>50\C5P)2)$$P/9, M=$A$S000XG:0BADX[)-/9.V"1.>"B,:1IC"`&"&_*?&Y@?"=X$0(CDII!,DX M&\)H)OOE$.^`WMLD0-YS&1[)@?5B/[J(=ADB`M#H],5+EK($SLLX1W``XE:O MAMS/^(4]1`$J9<19-UZ1X.L7-HTSGX'*[BT'D6VJ,`25B^#:;/X.F&Z5T=YI M9T^I$8;_`&7S[;M[,L9T\W\;W)N.M>6TB-41]5T?A"EY=LR2)AMFR!$K-:BW:#(,+0MP!OM/=4K89VV5RD1GD ME%7*)C`&RFI27*O;\*S1&>))V2M1:I``S*LT0,$E04FY$J9KH&!NHJ8OTM]X M5*]N!,:LA/=U@![K)O*^IQB=E+5B2M<:G$`D*(ND$3E5M0D[H@2,0IMK20X^ MB-CA`(.5&R'$#E6[>A)]E%!2]3NZLTK<$"1NI:%L"9A7;>B(`(5TOLJTK6(+ M6Y5RWMR`)^RMV]NT1'"L,I,V5F)[(*5,1B,=U.UOHB%,RB`,DPK%.@(!W6IB MSMD75OJ!.!&2LJ]MW-<3NNJJ46EN6CX5.YMFO#F@#/)4RP=,KI[1S_\`!S,A4>IV8T'V755+8`0,E9G5*/H( MVQ*FE<)U!OE.?MA95-CJESM,E=9>=,\^L0)AVZL]/\.`.U8.%B[IN1B6=H*F MEI$+J>B6XI4P1`14NF"B[;;E:%*D`P8XX*2!1,[A8]@T5;V?=:/5W MM#2TF.%#X>M]5?61REYJ=1TMC1B@&B9C=$]FY.ZFM9%,B2%4JI6G@?*HUQ.P^5I5VAQA4Z[(;I)"J1GW=.1,02LVY MHF3^F%MU&C3@@_*IW3&AIG[J::CF^H4C!D[%8US#:G(@[A=-?T0YC@!(6+>V MA#C@&5-MQ3MW.#Y!PCV];31:)B`C\_P!U7&!&HI9_Q%>OT>/V?!5TT3J( M#>T&56J@1+3DXRK-P/YG`/;=05&>K2X<*O2K$Z9`!!^4GMTZ02W!)4`;B,;IB,Y*>!ID83Z,$E`+A.!*9A)&Y`]D,S@[)F$MJ-J`!VGAPWA27ES7N7,\^IJ%,0T1L-X_5!`P-`,C!_5.(X M&R>!`<4Y:-.HC?*`($[3E-$$1RB($8R)[*ST9]K1ZE;U[VV-S;,>#4HM=H+V MSD3PH*PS.,A,YQU2[C`^%/^488=,EPC@S"8@#5(:<1GA`+FM!'O[I-TD=C\I.:#_4`# MV1A@+8)&_=4"($EHD:D_E,`:2_A-@&'W/=%&29.W?=/Y;/\8']T!#)F3"!L:-9KQ\ MSV0!LMEDCZH(PX3LH=/6OPTZ[2T4Z%=X#L`2?9=IUR_I4^CU"QP&L0#*^?>G MWE:U>'TW?E[+;/BB[KT!2=4,;+RY^&WIZL/++_9TW2GBKU\O)D:H_5>B]*IB M&,#3``@RO-/`G\VY%0Y)S\Y"]0Z,"6,Q&Q7/.:X8SR]KMU'0V::;<[?JNBL6 MRT`F,Q]U?MP<3\J-1 M98(`D0K-%IB95<$@YV'Z*:@\GX^4VU%VB,`JU1C"K6WJ`5IK0`,J5J+`VU9" M:I4`:/5!0EVD8^RS[^X+=7J@!2J'J-Q!/JQLLXU2Z MGD3E7Z%)P:.RL460)A-2!=@8PK%(-@3\0M*DIB`TR,J2F`7 M)`!V&P2G9^;M"HL4Q(]E-3$-Q^JBIG/]E/3$C/PMQ*"KANP,JNX'=6ZC-\J( MLA^)"595>G3#B<"$]6D"V8E3,`#\B/=/6(`(^JFFMLRM1R8$86;U"WD'`6S6 M[XB%1O=);@;KG9'25S;J.BX@C8K4L-#F`1E5NHTAKU-$'=*SJ^7$F5QZKI9N M+US2U<1"JW3A3IND20,*=]VSRSZA*PNMW^#DB>)2UF1G]6K&ITRZ:U'#!S")X!&-^R"BZ![E2O`^(79R0 M5&&9(QW4%1F8C'=6G-QOME05)F`JE5JK`!@&53>S)5^O.D\*K4VF=E44JS-! M)5"\!+<8E:=U!DA4;B#@G)4VU&749)(GC*S[VE`+8,E;%8-!D$*A=AIU1OOE M-*YZ[IN;4)B.,*`@;[$\K3O!/ITX69=L]4@^\*QJS:.JXND$<*M5T@1"FDD^ M^RCN"-)!&58Y933*ZBZ).^E85R]KJL-'J&5O=3PUTD?*PJ[8?M))PY,JXKMC M6+:6(B),*OU*\++=[FGU.!!,*%U;2T,&_99_7*[OX9P$1&4PIE&+;UA5Z\V? M5Z^WNO:_P_I>784_3!(F>Z\2\)M?<]>:3_34X^B]Y\*L?3Z6QH&-*].$_D\W MFO#3?T)0YTD[X]D`&X+D0@-$B?HA. M1(R@=C?2-LE-Q,0@:=.YQ\(">WW3`ZZ1D@095(4F/68E(NA^_QE+20(SG8]D[A#@`\N`R3L@=CM.'-D M1M*$.,'3NF:`1C]24I]1C"B#IG`](GY4M!H\P0/U45,8!G92VT>:-P)RBQZ) M^'E.&LU8C$_9>H]$;AITXP%YK^'%+66DN:.TGE>G]$IP]LU&G"\7EFZZ1U71 M_P#EMF8XA;MF8`GY6)TMHAI6W:-,`X^JYUN-*UG`S&ZOT(`ET_'94K1I(GZ* MVP:>2HTG)D8)D[*2T$B!^ZAI9V5TJ]9MDC8B4T;7+1AU?FPKE$MF9D[95>@P`[1"O6H$[X*?\6+-J#J#B MM*W`(`GW5&DX-P#*O4*@:!ZLA6"Q2;Z"1]DS"2^",;RDVLTX$2I&:"Z9&RTL M'2,84[#J(,`2HZ6DN$?=3!XF`=D@D8R/ZL`*1CHV.V84#*ITZ<;J1KLC:2M" M<.PF$%V^/=1.?I^4[*D"<*[-)7QI)D;J*KZA&)3O?)F,)M33)4%2L#JSG*HW M^)P%H5R-EGWC06F2L9-XL;J-32#E8ES=Z'D-,0M?K`Q`.>"N=NZ9+BX$X7#) MZ<$M:^/DDZ\]ED7]TZK5#9QLFO2]F!RJUI2>`KU;_P"["S[P2^`?JC3. MKB7$[$9^JH7%,:'0UY]E!5?+C[*6[:0XF8$K/JO` M>?40[A8OB> MX:*+@2&X[9`6G6,N=JGPS^3Q>>HJUZSS734C* M'^-I_P#R+!N6N-=YU')[H-#O\7ZKW/*^7:WY@V`3['=5J[8)])'"M7`!)*KU M-);.?A<'N5WD;K./A,YIX./A#H+0 M"(V^4B2T07$CLG@1G<;82ZH(")@X3.+=)W M)3_T[(7-,?FQLH%)$PF$\$%/I($2DSG2=MT#`NDG5D^Z6VQ`QLD0>=NR$P!W M^J51$_U2,\2GI5#3,M,&(D'9`UH.Z<@!`MR8.V8)2/M@]DT`'O\`!2`$D;_* M!QN,Q&0DYL8@;;('#LG`@IHSF` M/A.1C:#O@H3ODX0$T8P`4B)$:1/>4FMS,.A)S9=@[(@F2/\`)3V7_/;C"@`X M*L].$5`,CX18]'\`:139(X7IW0A(;"\R\`L,,#B97J?06AM-N%X?)/Y.N^'5 M=+@-:3QNMRR`+1DQ&%B=*@M&(6Y:B",;K%:C3MP/+YV5BGAH[2H+0"/[J<8? M"RTEI.@C'*T+,`JE2:(SLKE"&MW1J+3<`DE5KNL`(!QV2K5@&F52N*FL0TY4 M$-R^2294%>JPT@UM.'3.N=PFNW$-,G94PYSZ@RB=K5`-DP9/*O6T-V!PJ-!N MD@;*4U-.2Y1J1KTZK0T$NA2_Q8#0)(GNN;K]2T#33,RL^ZO+UP])(:<[)MOU MUV[=G463ET0IJ?4Z9P'97FU"^NGW'EZX.RZ+IM"Y>`XN*;OX6W&?77TK]D@Z ML0K=&^8X8=EJTB3,%79H% M5\'A1/<'#(^O">J8YG]E!DDPJF@5@'-@B0J=S3GLKSF0"3^BJ5ORF/W6NS;+ MNF.DPJ%<<1E:=WALK-KCU?KA--13N&!X^%F7Q@XV'ZK6K2LV\``D@(LK)O2W M MCQSEQSZ=W^"[7/ZJTN_5>N=>J"E99($!>-?@<[5>NK:X`"]!\47HJ4"P/]EZ MO!/Y5X/U%Y57]0I%Y))W3?Q]+N5GTM)I@D$HH9V*[^S$E?/=RQH&.>.RK/TD MF6\<*U6>X$_E^55KETB2`2N3U(@!JDX"&-1_9)Y)=O\`5($ENXQPB&3L.4S3+0[3M]D`P9V/T2$P2EK)))W]BF:X:C MG`0/EISRFV/*69$[#ND2,`2BF&<@Q*0!W,E$8G/Z)AC9N_,H&VD$2-X3-ATY M._=$8,,[^Z4,F&X!Q\)W@#TDS'(0,R(W@^Z3BX^WR4WHT[_3**6EH&G(Y!.55 M$2#$-(')W09`AN?=)L3))QC9.<&<91#AW$X"N]*@U@=PJ;6D@$`1W6GTND&D M.QE9H]`_#_-8`#CE>J=`TEC,%>5?A\0;IC2['*]7Z""UC>5X\_[.KING;@<+ M?M22T2L/I>X&WRMVT:-(GCAX(#42JUV^7$3A16U,% MP=ND]NNI`,@*8Z:5/=-$A[BJ*3,X7->)/$C+)CB7[<)>*^JTZ-LXO>`!LO)/ M$G6!>W[J;JI%.=X6+;O4>KQ>/?->A>'_`!11N+R7/G,1_L+L_P"-H5K::?(7 M@5O6I4&MJ4ZI#VKL?#_BNG2L]-:H!A;PMG%8V/$76V],OA5J&&3NM[ MH/XA].9;-#Z[!`Y*\:_$7Q"WJ5?RJ#O2WGNN0;JLJ0-2IW'A[S:T4P/E4K_I%[TT"H M#+0?=3^6/;M,\ZJW+0`3*GJ.TD@G"AKP MYF%C8RKQYU0`LR\;(,B/=:MY3AI)P%DW67;[_HL5O%2TG5$?5/I/,(B3&-^Z M"8=!^ZQIO:S0QMN%J]/.`0G.55NG#20`M(IW+001NLZLT`GM[J[7<1,*C=.,F/T15. MY=!,RLZ_@L)!A7;DDM67=O=M,@H,^NTQ(*R;W+HB/A:5Y4`$;$+*NZX)))D* MEJA?._EF`[/"PJCCHYEQR5Z_'-.'DKT7\'!Y5HXC[_5=3UI MI>#J)$9PLK\+K`T^@,K3EXG]5E5'EC40"B\UG<+>DV\%N7;-('IDY"IU6'))&#RKE8>C42T@=U4KQ,<3 M*YO6@)B1B"FKO"36@/@=OE4.\$'26P0<@J>G7;3MRQE*G M+CE[A)^D[*`-`)./F=D0D-@$`(&`],DC!2(;J_`1%HG83O*8-$@$?7V0T89:?G,)X( M,C'9,1C';=2.CR\B%0,Z6D#&K=)Y=`U2G#89,?FV/=(M$80,9)B4(:?>$^B1 M@0$;8TF9S[H!#009"8-_I.(1N:(=F$+FD@#4<\H&CQ>/VKCO'WB&XN*[F4G'1/=<5_P"H=4)=J))^ MB]1;X)-2B:M7+CG*Q;OPH^WNH#-0!Y*S/),7T,)CU'-65.N6B7[9C=/=U"PP MYQ`[%=)5Z=$KL/=J88!'U4'4/#%U;VVMU+*Z8^6.>>,_+D[>L^G4EKB,[KN/` M7C_J'0WL8Y[WT@-BGZ`>&NKVUZR6O!'L5J]0H"[MM+&APXY7R9^%GXM_P`$&6_4*NGC M43@[^Z^A/!7C_I'4K&F]M]2!C(UC_-7'/?%>?/QY8)NI]*+=1##J"S)KV57) MP/==1<=2L[QYJ4GM+3[[K!ZZ^@X$-ZV.C]4%0:=0D?JL[LXKO-7F.ANJG:%&:GIR1\JLVL'4HE M`:@.)]E*:*\+3.HX65=,TM*T*YEL<*A=G$AWT6:D4:DM)(Q[*"H\`8E'<.WQ MD*M4J0V94;3T7CS/E;72WN(#L^ZY^W?_`#-UN])&IN^R%;5&IM`^ZD+B<'Z* M*W`@2,J5Q:.8[:`PG(S*N$Y2ZDX875GDO<"9Y`5*@WS;UM!LET]X*>^KN=4E MHEP)VPM#\.;=USXIIO$PS,_0KU7C';S7F[>R^&Z!LO#5*B['IR5A=4JL-P7& M)GX6_P!8J.IV082`(Y7%=0JDDN(F-EZO%CK&1\_+^657V=2H!L2?NG_XE0_Q M?JN6>^7DR<^Z;6>Y^ZZZ:]8X2X9',G;2#Z!K/YIV'^:J M5:[)E[6O`P1IC[+S/4H5`X"=B@:(SOPK3G-8QX:^6NSIC*KD@B>WZ(!J%SW% M[@.V/]^R",_F@SO*DC;4=QE"6AQ!(^@4`$&`"?@=D_IW=O\`*83>K,"1\H&:]P)(P"$W!).4^\"82()$3@I5.3@9D'A% M4)D&2!P/[H&M`=C[IVN,^HC!W1#28QGX^48)W:0.P3:0,@X3L#9&H2#P#'ZJ M@8(=)@E.Q[PSRPYL.()!'(_[I&(Q$#&R1$G3C3V"@)@)D'2"9WY^J1!Q(]Y' MPF`Y..ZGI:!N3L. MRXY]MQ>\#S_&R-H7K_0!#6#;"\B\$M#;_3.)V^B]=\/D:6CLN&?:NKZ61H$# M$+6MB2(_99'33D"`?JMBS:/3&WNN5;C2M&@C;]%HT@UK?=4[6=H5@XGWX4;. M\->\F<=D-=H&>>45(-&\R%#?/`9RFH6JE5TO+0=E!5.AA6P?943TEMR\D#=;=G85:]3;=; M-KTSRHD9"7^79N8].:Z3X48^MYCV8/9=E;^#;+^!DDZHSA6*#&TFB!GNIA=7 M'_*\PZ2NF,QCCE*'3W,IXC$KV2YL:CJ+WR` M<8*Y'Q7T(WC7`M)XPLWCITPRW>7R]U2VT5G`;?XEDUFAH&73)7K7BKP15I7! M=3:8G:%Q_4/#-Y2.H4G.S!PNF'FDXKV98XYSAR]-Q>T3.,J1N@X!,QNM"YZ3 M5MVZGTG"/LLRK2J-,220N\RF73SY>*PJC@&2''.)'T6MT+Q'U+IM1AM;VJS$ MEH<8^RQ'3N1'M$)WD:,8'9:NJY^M>P^&?QDO;6W#+ISW$#=I/WW6YTK\7&W_ M`%1E#4X,.[G'_5>!!Y`#I$D3(&ZEMKFI2>"UV1V*SZZG%<_VL+\?973>HV_4 M>EC0YI,<+.I7KK._`+S&VZ\6\`?B(ZRMA2KU':F",G??W6[?^-FWEXTL<2'< MA9\EEF[VY>/PY89:^/=^G7C*EN#KD0KC*HD1LN'\$]4-Q9M:7#@[_*ZNA4;I MR5REVWE-+I=S,A5;P#08&/V1!YU3M*KWE26D?LCE5"[AI,;*@^H3G:.5+?U# MF8*HEQ\S<%9K<7+,GS02<%=)TD^F`87/=+IEU0?JNGZ:`U@GG@++5:=-WIP4 M-1QA,PB,[H*AR?=:VD(N[[%05W<3*3G9CA05'K4*%S\\QW*C>^!_JB, MX8D[G=9O4:@`,.CE61%;J#Y;`B?98M[6`:X=^2KMW7#3_=8O4:I>Z!WE;2 MHJ[A$G8K(ZE5AKAJGOE7;IX;1(<[/>5SW6;EK6%PF7;DJ,=UG=;N@V3/I'9< M5UJX#I@2"<-E;?7[II9`P`5QO5;B:CSK)/)7;";Y9SOQ1N:LO'IDCV7:?A/; MG^.%PUD!HWWX*X>QMW7%ZRF&DS/&Z]L\*=(H]-Z*P-/K(EV9[_YKOK=F+R^3 M+UQVGZ_?LH]QM_N5=\05A1N708U&%POBJZUO(! M)R9A>SC%Y<,?:B_BJE3U^:&SPEY]3_YPJ%NXFBTM+H^`CEW=WV"Y>U_+U^D= MGXR\-]/;3\QE,LJ'AIW7$]0Z8UCR((/*],ZXUUQU`TW?E'U4;NC6M>@T.'U7 M.8UPGD]>WC]W1=1`U-)CF5"_2*8,[S(A>H=7\&"Z9_)<1&=ES]WX!OZ;=37A MXY$;*;=9GC?KC3$("G&P[I, MR<'[!4,79QQC9.(F7O,DIZE-["0]KFD\0F@3.<\(&!&0#)E,2.,RB:&YU`F= MDTCL80(#G>$PTG`$0B@2E`T[01RH'I`!DDB>ZF)HFU`'IJ-,&,Z@?V4&S!P1 MN40B<';.RH<@#'VSDHGZ0"21)0D@SEL>R9VEP`D;=T"D$$`1/NA>Z378.<[9*!H)VPG$#!PD!P?NEIF3.RH36@8)!E2!H< M,`F/=`W><%2-<6[8/SNH!:!D@$CY3:!S(/.$5327$M$#M,H#$D"3]4!M!([_ M`*I])#])!!Y!3"-')?QV2+3.<(.H\&4PTS`&)(717=-C6^IO')6+X+HES0X+ M$[*G2?YM025RSYX>O#'TFVQTKHM'I_2Y M;AP"IN:*M:^+/!U&I;.#*0'NT+R+Q)X9N;*LX%AB5]8=?Z53IT6N:X%K^.RX/Q+X< MHW#S_+&<_"L]L:WXO+^7S1>652FZ/+/RH1:U0X^C=>T]7\$->\%M,#/`_P!% M?Z1^'=@*7G/I^8Y@D-=^7]EUQ\UO&G3.X2;>"5:%2GAS7=LC*K.U,<=M)^Z] MF_$;P>RM;:>FVK35:9FFWCM@+R:^M*E&X=2J4]+V&"'`@A>B>25QF,RFX73? M56;F`<+T+HMK:LZ<7ZAJB?=>>VC8,!H!'NMNRZC4#6,U&!N)68WE>KV-352;F)"X8=/-Y>*O/?+("IW- M0EN\2CK/AF<*G7<)SF5IYZI7U0P1.Z@MP7P3GV1WCB7'&$]AETD$_5*U&QTE MD$%RZ*S_`"?V67TJB-`*UZ#2T`]ME%3,;Z!Q&Z"L1IV1>8,Y^?=15GG3GA6* M@<<^RBJ[%&^I(Q$*M4<2[E6):=[X=&?E5JQ;$20B?4P2JUQ5):)@?"TQ45P\ M]RJ55X;JER*XJ9+MRJ-P]V2#*H"ZK9*R>H59!`/W5B]K2>0LB^J03E:D9V@N MZI#?4LN[<8)!W5BYJDR#.-EEW=:)DA7>F;RH=5N]!+3D+F>K7;7`AQU#D+6Z MS6`$G\IW]ER75GZB'`B)5QA(RNNUAJ(#L@[^ZYVYESBX!IG`!5[JM8/J.:2" M>\RJ=C1=5JZ&YU87IFI''+FNB_#OHW\5U-A73O`=/^BXR\ MN]=4OW,_HM#Q;_P"JQMWY>K6W3!<.-2X>XU%H-Z;28T`-..96YTCI8-/43G=7 M*]FUHPI:\#EZMI4;)8^?91:'-9_,9`_=;M>@T..<+/ZRP4[7,$\*;-;85:T_ MC+OTLAE/HNMP6MI2J5;K+V/-3RW#V"LARAZST6WNF%KV" M7=PN(\0^%:UO4+[<2)VR?[+MZOB&B7#S*+E`_KMH]_\`,C3&Y"GK^'3'.QY7 M6MW4ZNFH-)&(.$#6Z3(=MR%W/B2PZ=?,-2W+14W[+BKVVK6]8L!MJ,P@,EQ2+\>EH$)M3HB/]56B>-O5MV3AIQ!W33[!(., M[!$V<9R8$>R4NT@H2XDF44D#;]478>9G?L40&-\?"',_ZHVF#,1[;H'8#ITB M!_=)C!)`$^X3`N#J_*G<"3B#'NF+F@"<%$"W2:_V M:G3:\!,+KO5F?=>J=$PUIC/LO./P\I:GDD;-U9\0!M"F6@X"Y:O=>GVENHSF`UKD.X'"N]6ZK3LK')&`L2 MCU!E%I).W*X?\1O$%9[#3H.=]%-Z;F'M4WBGQZRA4>RD[4Z8@'_1<9U#K_6. MK.TAYIM=V_[+.Z;;NNKXU*HF3RNCI6S:8V(Q]UC+6+V888RZ8M#HQJ.#J[I) MXW72]'Z=;4:`UM#BW]$UG3!>T`\\!=1:VE(V>&B8F96,;I=,H7 M37%M(-DKF3T?^%ZH"#&<+OKRF*3W`-()Y7$>+;Q]"\:[8`Y*WC;T87EZ]^'] MH;JFRD'0T-G==)U.>DO8\50^"/';+*BUKC!;B94OBWQ_5NS.LN<-HV MA)-37USR\65R_P`>K'Q#Y\,K5AC:2KEM9U.HTP:,OC:,KYLNO%767534HEQY MQ*[O\(OQ;%AIIX4RGK7+&^^/*+J-K0\Y^FG@ M\B%Y'^+'A9U6[-]0HQK)+H$?V7LKP"X&"8[Y5#Q#T^E>6I:Y@)`X"U,JL_AE MN/ERM;NH5M&W&$SG%A!'!7:?B%X?-A>NK"GAQ.RXVY&C):"?NNN%]GJLFMQZ M3^#MVYU4#)(`PO;.E5?Y`)'"\)_!>/XDQOC9>Y=.`%N.#"QCW7A_4]IKFL9P MJWFD.)F92KDZL$2H8=&ZUIY052Y[HTX'5R'B"OYME5+SJC2&RS< MF5D6W3:CR):N_A;T5MOTQM0@A[ARNEN^(XYSUFZZBUMJ=I8-)(V7EGXM M]3+'FFS(G/9>D^)KC^$L'DO&.Z\$\?=1-UU%X#@9*]N$]<=O!)[YN?KU75GE MSC]$]#)AT.4#!!)@94]`MU`M])YDKGMZHV+=H\AL=NZ/2/=!;$B@T3PCU.[_ M`**.D?45M0T4Q&,*/J-.*1(.0K]-N(4?4*8-J9WA9KP1S=.F*E4DF0J/6;8U M(80(6U:V\`F/=4[JWKOJDMO8-&/+6)U:TA[FL!E==?VEQ@4W>HGZ M*B[H]:"?,:2HSF3F6_Z*K6L M2]^DAHWB$TU,G$U^E,V#=NRIW'3:@P&Q'.E-."R6QA4KCH#:KCY8R3QNHU[1S5O;5*];12 M:7$]EOV'ABYJTVNJ,/\`DNU\%>'+6SH.?5HZZIYA=*;5M8M92HD1R,*V:#GZ-;F&&Y(!2H^'Z#20:1WB)S^Z],N[#RK1VH9/SE5K'IE%C-3F^LP MI$][]W<>RXWJ'2+RT>0^BX#.87U`^R;4'J:"L3Q#X5M+NB6FD,[8Y3==,<_ ME?-;VEIS@;Y0$D#!F>R](\9^`JM#55MFN,3L"8"\^O+2M;5C3JM'2.%$Z0<'Z(BT#(G[)B,SJ)^55"X&9+OT3C3J.N8CC>4[L`2XSW" M"#/O/952@SB)2(.=@"EDDP=N2E!F"5-!S&H$'YGNDXX@"`G,$C(R4H,Y('8( M&D:<8*6(.R9L`?F$)5!)&!\)RXN`DM$"!"&B M)VV4U#);)D_"KM!QLIK=L.;)[0@[[PN\LL8+1D0K5;0^L`=_94O#CW"PV`(" MOV-(FZ$B? MMJ.AZ:,`&/JM>U$#(!]UG63)B``5J6W&%ATBW2$-DQ*BKO!@$A$ZH6L,B<[* MM2FK7C@<)5BU1IC27'D;KG>M5F_\0#?Z6E=)>'R+0_\`V]UP?6;E[KXEN=., M+.7$>KPX[=M9=5HT;)H:1JB-UG]2O/XPD`R5SEK6K5G`$D#Y6WTNAL9RIOV; MN/HJOZ:Y[#C#ED7WAAE4Z],'.05VM-@TQ"I533`@[X61:L%$QI,K1H5-5.<_!7#"/5Y;LUX!4<97(>-.A" M[I%U+<<+IKRLYK@!LJ3[C,O$3W6\;-[8FYT\O'2;NA M2#C*W+NE1J'4*<&9E2L#!18QQB<+>7DV[;W!6?1+048+`0)5_R`^U@P9R0ICDX7^-V\M\.^(NJ=!O12KU:A9.Q<5['X M-\56W4J+7-JC5&1J7F'C?HYKZZC&Z2V"05X7UND:5RX"9E?47C^WI5>GN`'J((V7SCXUM'TNKN9WSVE0>0-UY?\`A+:Z;5K]($QO]%Z53=%./9;Q M_+Q_J;R.J0XD\\H@TEL]E'1)>\S@?NK=)GNJ\RO0HN=5Q^RZ#I%#0T$B%1LZ M4OGW6Q;"&QNI)^6MKU(C3[IB<2@&1GA)VV^$#/>0<%5[I^KE%7V@*K5<"2)C MY5*&JXD$*O6=C*.K4$C.54N'DM*UME'<$`95*LXP7$XX4E=Y.Y52Y=#Q6XEJO%^@UNI5#62L_IUN_J74FM@F#W7KWAFP%ITVF MQS0T@!/)EZ_QC>$O]JY9WAUE*HQH8#GOLN\Z#:BUZ96G M=N;0L]($$!=/T\W=O-^KSNM.%_%2_=2Z8\N]P#_L+P?J-P:UT]SA.>2O3/QA MZPQSC0.'YDYRO*ZT$EPF">^Z^CGQ)'D\,[IPX:9C8Y$J6@X:MB1QE04CISG( M4U$G8$D;KD[[:M&L/*;B,(_.:E0/\EOIX1R?\*;:?6]-LF..4/5`T6)(^(E3 M`>O"BZL6_P`.&]S"S7AG;,MJ9-N9W*KW-,LIDD+5I4P:0T]E3ZE2.(Y*7LC$ M;1+W&JX8]U'79`@">ZUC0B/A5G4QR$5C5K=[S$P-EEW5JW4=()DY*Z.ZHN/I M`W45O92XN<`594L7 M*5^B:1E7?#GA^:HJ5JVZFVN?K,; M:.&&T84U&W=2;JV'*U_.81D0J]=XK.AC<`9*RK'=1?6JESR8&P'"(6S7'5L5 MI.I:7/<2# MPK(L6%N1/>5+(2V/F?Q!T:ZZ9<&G68=(Q,++R!!_5?1GBCPU9=2M7T:E(:\E MKH&\?"\+\7=&K]'ZF^A581DQ@Y"2_*[XY>S'(+78^$,N$"20#LB,9,-2](=. MX6V]@R9!.-TAZ20<@H\-<<80^GDJ!GD;MVE//!(^4G``CU2$B)/:!RJ'+70" M!B,IMP9@GZH@,.]0CLF@`X(RH!9)SR$0+L@@;93M'NT)R`08*`#.W^JFMI;4 M`/?91[GTCVGLI[8$UFD[R,RE'9=!J.;;MP(WRM[H=$U+QI(_J!/W6'X?IOKL M`I@O($P,PNN\+VX_BV:A#@X#3O[KS^2M8NXZ-3BDQL8@0NOZ#3.(;(7,]-I_ MECV76]`I;'(G9>:UN1OV3(;"T*8B3A4[1L08.(W5L;;_`"L5LUQ5TCYV1=+R M^8&ZI7+R*D;B530<\[*SMJ(O%%X*=$M#L[;KCG-%2H29"T>M7/\`$WD2 M2`=Y]U'2IB=ESSNZ^AXZGJN`$3*@I@QOD(WCT223B5TCR54NH<9V!]UD=8`%)P.=X6U5I'1)[ MK'ZO0<_N1"-8WEQ%_5-.[+'0!,J0NBC(.47BBR=3)'C0?S=UG'J8MZT-S`R"-E;/5VU'-< M3'?W6'>8V78+BDZB1JW/"AJ5#(SC?"FO7F\IRPR&_<*G>-JMI8!!GA734_U- M9OU5&Y]MUJMOBR*>'?!7/VCJK()'/V5FGY[7E^C$R=U>9TSG)>TO6'^8QYT@ M3*X3Q'8-;4\YH#3JE=TYS7L=KXGZ+G/$S6N<"TG=;PRU3&?':_@W=/%G!,@1 M$[[!>O>'#YC))7BGX4/\MI&"TD)VG4YTNQ\RNF5TQ^G=K^']D M*=BR!B`?V74D-C3MA9OA6CY5@P_].WT"U`S4[;`77#B/%Y;NI+2E+I/)W6C2 MIPV4%E0),1]5<;3.T;>ZUVXGLVB<#"T[<"`)RJEM2@29@JVQS6CMP5`6N9$[ M)B_?$H7GU$YRA=F/]PB[1UR""(S.ZK57"3D*6L8=`XE5;ATR`?[*I45PX<%4 MZKY)"EN'&<'95:E4##HSR545[MXW!]QE4+BK(._,*:\=(D'?LLZZ<1SLM1$- M=X$DG'*R[^J"QP`^JL75:6D?NL:[J$DMG'RM=,54N/4^2,;X56\K"G3($`_* MENJ@8'.]BN=ZY?8(F.P":3M3\1=1\LG0U]7>_A;T!FD7503,;_1>@/MJ;6P'8'9< MIX,O!0H-IC@!='6N@ZEK!P5Y9=VV]O1EQ1VA:VY@GZRL7\4.N4NF])J.%0-< M00T'X*H=8Z_3L:[YJB0"=_\`1>1_B=XG?UB[+!4FFTD8/N5]'])CJ7*OF?J? MYY:C!Z_U*O?WKZI>XAQ,_$K-,$`R<=D(<2222<)A!S$1[J M2W$.S('N>5`S#Y))5BEE^JWZJZ:T^N MZ5P`_2[!E1=5J--:FTG!5VO;LJNEV"/U697LWU+\14):-@?E3?/+PZ:%%@T2 M"J-PT.N''LM"V86TG`G8*"G2PXD*6F>Y"J7+BYQ(!QL@Q^L-F2(CW7-R/XL@R M#,1WRNCZXXMI'(F#PL7HEK1JW)J57$F<`;!:Q9R:?2K1SAD>DCLM!UJ&TPP9 M)Y[*?IC=1\M@)^FRV[7IH%*7"7.4JSABVS&V].`V4KDT=.K+2MJM94J#2YX5 M2C:-NJWJ9Z`5!B4Z=6M7`)=H!6E3%%K`QC8`WE;#K.C2ID,:-L*O4LV:,B"4 M5EUF-VD(6-&DJ6[MW-?#23W4894:ZS;H$L,XA M:70P'4!WV*J+6IT0'!5ZM`.)+R8]U?%(D845R`QDQ/NIH8]]9TMW.`5FRL6> M6W2,#"&HWS@2[8<*WTTZJ!#>$4%:U]`[JK5MXD8^%K.!B")Y45:GJ&`)4(Y_ MJ-$-,F)',+S/\;^B-K]/;>TZ8ULG41]5ZQU>EI:0N5\6VS;OH-PQPDACL`9V M6;TWC=5\W/;I,$B9Y0-(@AQCV5[K5NZAU"HPA^'$01PJ+V^H&<>RW.GH,?S` MR/2A&6Y."G!^H>)KYHI,+*,P7P/\U+=08?0^BW74KHMMZ1A^&[4-MVSN0O/Y+RZ M3IO](8?,!P5VWA^A+`2,_LN4Z'3]07==$I!M`$`SN5QR;Q6Z3-.3A*X?Z8'* M*J0%2NGR)#MEG;8*9UW')&Y5CK;W4.GD`XC*J].!=6U$\\H/&%8LM(#MQ&ZO M4M;\>.\I&'9ESZI<3N>ZT;9A(L6=(M'NKU)L& M%6HZME&%9^'62)IQRKI\.T6TSZ=^% MNM9#X4PIE[<@CA;F$CC?)E?K@>J=`EITLW[!<5XDZ)=4*@Q>'+AM"RSVE> M?=%Z0:5\1387$NG&5UEKYC6:#+2,0N,WOEZ/+E,X+Q1>.KL>&C2`"%P%C:ON MO$)>[=KI_5=]U.AIZ'*&GJ+ZK@)G?ZJY3=C&.4QETZCI](4K=L MB/3'Z*]:L+GB,RJE-X>0T;+9Z31)C"[O#GVOV-,-I@$94H:"XP8]U(U@#1,= MT3609X*TY'8W2/\`-$^8C]T1`"` M,H%6JX.)5.L\03'ZHGN#N?DJK<56Z2B(KBH!/;]EGW575($;_HCNJS9)G?"S M;JX`;@\PKH#=5B)$X`6=HW#:=(P86Y&;=*_4:T&>RQKR MY$$@?)"DO+K7))^ZQKZZ9)]7^15W^&-;#U.]`:>T&%RG6+AS@XD%L;$]EI7]RZU-(/(XPLV^]FG2X>N*]:]491Z@[2,3M M/NK'7?%3;7ISW`^K,"?9<97J&C3+G.)>>5S'B;J=2XJ>7K,-VDK>'BWEM/)Y M)ZGZYU^ZO[FJ35(:02_5,YY.4QD&)^@,IG.$@-Q`7M^/%KD[8&0$[RQK M@&O+\"3$0>R8`:9#OLA;^8`$F-U`='&I+B&MTX!*53);I`506+R^:E0_"32AK/I@$:A.RI7-TQH(:`>_*T*EE2&3)/N50O*3=6 MFFT0J.;ZW4N*N=`T9WRKG0K)CZ8].8RFZPUK7BGB5J>%J!=5;3`QW5B5O^&N MF-ILUEGW6U492I,U&('"*U93MK8<+-ZC<&ZJ>32&.2I2(JC?XRX@1H!^ZOT; M>C09@!!8VH8,1`W4M;TC3,E155[0ZH2!@*"Z:`PGG97"W0P[R51NG3,\JHS+ MIH%6#GW3TZ>)`VRB<-50XDJQ18XMC^GV**HWUN#3EI(/96/#?J:6Y[M+0=,[K2%.K5:2_TM[*C?-# M7P%"*XI#RH4?3JGDW9IDX)5ZFV:4++ZAJHW#7C8%%;=1P#9(5=M:GD$B5:Z6 M^E=VW$J.[M:;7X_109?7'-\B8V'*YSJ`\RRJ0W)!X6]U\.;2ADD'NL^C95;J MB:;&N<7!17A'COH-?S'W%*@2"XR0-\KC*E+2Z#+?HOIR\\-U*5!S*M#6'`_F M;*\_\5_AN;FL:MHUM.H6%Q9U-->DYL>45-OI=$']$0;(&?T75_AEX2K^(^LL9I(H`C4Z-PK>$WI9_" MSP1=>).I-.-?PI2.BFTNYE>A].IM%```+C_!EK+VQ M]EW=M3`8T2%PR[=&QX;I@U@/<;+M;4BG2:-H"YGPQ;RX'3]ET55NEH`Q\KCD MZXP=>I+`%3O'@-V$]RIFN&C:52O8\P;JQ?J[T:FXF=_W5#QDX:6,`,DP95RT MK&A;:R`/JL._KNONH`?TM]UG.ZFGJ_3X;RVGZ91@-$'LMJTMB0(V5/IU+T@Q M_9;MDP!@$+GC-O7G=!HTM+L[^RN4:)Z50R#Q[+;A8S7L()0O:3!.`K5>GG=,&R,$I$JN:+8] M2J7K&M.`K]P2,;\3*H/IFH\N!='*;28LZM;ZG!WU1"FW#2-NRO5J$"&E1>3[ M&=U-JJ5*#29`,FPATDJQ0M MM+,C[IZM/&\=D`Z`:9(^JSNJ4QY1['=6*M=P<03$+,ZM?R/JQ&ZTO$PZ?==8\[ISF.9I&HTXTS*\RZK6)J:P3*Z3PG?A MMMH>^2=LKAC]OUOOM9\37&FEY;")VA9W1[5P`>`02K5S2==W9=F`M+ MI]O``(Q*J9743=,M"\@E=%84`T"1@*M8T=#0(6C1EL#=:CRV[$`V8C"*DW.> M43&S!3NAN%I@-0"/\E$Z&A&\Z22>5#5J>F$5#7=P"55JEP:23*.O5@02%3KU MH;$B40-:J(*SKJX&H]D]W7P1*R[NJ2-4[85@&]KC.5F5ZQU=%O[:I8M=2"L^> M7>OCT>*R8[G:;J5"D+8LC`&%PGB&B*1/EM[GMA=C?7M,L<'>I<=XDKZJ;I/! MQV6,.W3UX11:(=MW1^8[L[[I4"XT6D(O7V1M M]F5?3;O=(&%!TMKC3)!$%7.HLTV3S,$JG9.#;2?ZE,?KYU6J4OJ;?9&]I&(2 MLF$-DG)4CPA%.YIEPR85-],`&8A:-9IF(5"\:0[_`%05+MS!1C)*R;V&TRYW M/"T[W3IP?HL7JSI],S/"JL:ZEU:??'*Z_P`(6IHVGG/$2N;Z=:FXOZ=-K,DY M7.+JF@8 M[H(J=,N?JB)1UZNEHILF5*QH92AIU/.V5:L[+0-=;+BJ*%*R#O75R>R+I=%M M/J0`:%I5:0TQ&>,JG1IM'4&NGE23E=MFLS^6LJXI!SR3]%NFGKI;2:1D)2.8Z!3JVKWMJ,(DX5FY- M4U-3*9/T70"U9,EH@)5J=-E.=()^$',5+$W+@:K?HMOHW2Z5O2UAH!4EM::Z MWFG;MPM+'EC2<++4C&ZM0IN&6C[+`O+"FYQ$#/9=)?R\XY[JA<4/23"NDKG* M_014&IH#F\J,="I`8:%U/32R2QYP<*6M:,95D9:5FPCSCQ1X$L.JVCV5+=@> M1AP&0O"O'_@^[\/7SFOIS2=^5R^NZENWY6!XT\,6G6NG5*->DT^GE9LLNXZX M9ZXKY2\*]%N.K]7HVE"G)>[/LOJO\*/!MMT/HU-OE@.W)]USGX0_AU2Z/U&I M7>`XEV">`O7Z5$4F!K1@!:WLRRW=*8(MQ)&!R@LA4O[L!OY0>%!UFMYERVWH MB9Q*ZCPMTSR:#7$03[J;33.\74*=KT&H2-F%?*GB(,K>*JU3TEH<>_=?4OXO MW'\/T&KG=I"^4[C57ZR]Q.SID!D/)!`W[+6O6CRLJMX?IBG;C"N=0,49PN.3K&; M3J0TF8`X51[Q4K_F^B5W5TT#IF?E5+)Q<\F?F5N1<>:T.HU&LM-!,X[JETRB M7.UD`2E>N=4](SQNKW3[?32&%QSO+Z/AQU&A94\<+5M\-`5.PI>D2`M&DP1` MW2+FFI9=LK;*9T=YY4-%F0K=('3S\+>+SY(:0=,%3-9(DIJC2,!/!;DG*TS0 M5:9[B%$:4L_+[S*FUY@_HA.,]ME6;BK/IDB"-R@-`,W$>RLB29V^J187?V*) MZJYH!P@Q*B?9D'MW"O4Z+FOS]T=0"0T*4TSFV8`,G*=EKZQ`C*O!AG`D!.&! MIWV[IK:JM6CIID\K-NM9&,GNM.[>`#E9E<@$P2LY5O#%0JAVJ7=UE=8&V3?6H=+A.1PBZ#1N/XEK1,3]U?9;.JNT`3*Z M;P[TAK*0<6C'LN4F[PZ^3*8SE/TRR8*'J;G=7+2T'F;):2RH!,`*[8N$\+M' M@SR34*1!5AK2$31$>\!1FJ2%#4JQ*J)*M0!BIW%8 M@;&4-Q7);^8?"HU[@Q'=5-E=W!!PJ%W7+@3C"&ZN"2086=<5_>1/":0US7,D MG99EY=','Z(KRO`,&%D7EP)))6I"TKRN2#J.0LFZK9,';WV3W=R).8"S:U23 M&J2[LJQLU]=%K<&"5D=3O@*;BYT$!2=1K:)#IQE<7XJZU3:XM:2#V73#Q^R6 MR`\3]::QI&K(D`RN'ZC>5*]Q)D@\(NIW;KBI+I@]YRJ]2A79:MN'47-I/<6M M?!@GM*]>.,CE:BUEKI`),]UTGAOQ=?=.:&.+BP<$E/W0[R)F M-@@8OQIS'.4^H[Y^Z1T_[RG&?4Z8[JH=IYS]2K-&"\`X]U`(@<_"FMY#R).> MQ5&M1@4FC*/[I6[6^0V>W)1Z&?[*;:?:'60!8NGLLSI;?->`#("T_$.EO37$ M%4?#M-K:0,J8_7@R:#0`(V1.`DGA$\B1G=(@:KYCB2W`*TNIESG\85-E#55#`,NQA6*N>%:?EU MG7+VP-Y(72VVN]J:W`AC=IY63;TVTZE.V$`'\RZ&T=3I,T,B$J)6L+3MLI*_ M_*$X1B"W!4%5Q<=,X4$=,'6FN'0$B[2('T*@KNTMU$[(*U[5#&',$JI38(\Q M\DHG'S:VMQP%Z:@A#26`*CCMJVH#K4$%5;IDF85SI0!L MT-XR,B)4O;416C<>P5RBR20H[2F="L._EL01UG-I#\RCMJ3Z[];YTC:4=&W? MZ:&:ZH7 MOS./9*JS6R-_A2NHZQ,9Y1T$`'L56637I.8Z1A7^D5#<,\MYDH.HTP6$ M90]#FC7$P!*"Q=6]2W,\*"Y,+"\+"K?76MTZ0>5G3 M5='T2S;3M-3ADH[VIY5N]^TA:=*C%O`.0,!9'7V'0VF.5*U%/PS9&ZO?.>WG M"[VWI>70T1$+&\.6C;>FUVDR5T$Q0D;PIIJ/)_\`Q`W?E=&J`.$EI'[+YPZ: M[7U02`2797N?_B7NG-LW-:?Z<_<+PCP\[7U8-``),R.5PO-KT83AZEX<<\8.ZZ"TM"&3DK'\,4R6M>=B>5VMM1::(@-&-UY^Z^A;ZS M2I:4X;C4>,J[2IG$H&L+2,`_"L,!C,$+>G*U-0:T>DA3M#1@'=5Z32!NI6!S M7;Y6XYT;FP9,$(G`8(&$6B6Y.R"H9(`B$9TK5B0XZ1(0@@L@;GA2O;/Y1LH@ M-+P)E&]"#2!WGE'0G,D_(34LMC*EIB0!QPC-@3JX$DIPP1$0C+=3_;A&&0-I M[^R)I$ZE@&=E6N7.#?=7GDAA`5"Y>.5;-$FU"YJ:R1"J5`T?"NUV:C,*M78` MTR1LN==\69U&'`MGCA8E>A#IW6S>&'23\++NWZG:0L5WQXB]X;R;IGD5'X,\JW9,=J!/"KVE/@[ MA:5JS2((DJO/M-3:`U1U0`XRBJU"`H'O<79A/\0-2-.#"JUZL$PY'>5`UORL MNYK@@@`>ZTSLKVN6YF2%G7%<:3!37=8Y=B>\K-N:I79#LE#>7;B<9G8=U3J@EI&O M'&-M+0^)^K MM;2=H=$#$%>>]5NG7%1SG$F3DA2]:OJM9Y`<8[`K+)).1^J]F&,QCC>:=P`X M$_=*<:9D'B=D!'J.)^J>9SO\+89S=($[;E)PDDZJ]6O^H4:-*[J@TZ M,^6QM-K`V=\-`[*@V0Z)(![JB5KCI@R/E34!/)4+7#<3CLI:3FSN?\E4;EJ/ M_3MWV[*2/]PH[8?R&R\C&R.!_P#(FF]?X^Q_$MQ3/3G2HN@U*?D@2$7BVSI' MISGM,$]I5+H%G4\D'S2.@N!$+F^MWU+\C#K)]U-#/N#JJ%Q=Z1[I M^A_S*YJ$'2W8JJYEQ6<*;6D:CL970](LQ3@X.EAV0T MZ[FXJCW!14M0MY.RSKVKYCO+;L-U)=73?RM,RH&-QI&7%`]I0=7J"DP>GDKI M+2W;;VX8`H>B6;:%#(EQY6@X2PJ-2*M>?RCE4Z@(82095YXSN20J5T2!IDF5 M4I4&R-7U073&FD3P5-;M'EQ&WNBK,UL)[)2#Z'#J43E6*](YDJKT0AM9S8V. MRT;AL.]7=2K$=)K0R20$U*FZXJ[4`(W1?CPO\`\2ET"7-Q!;S] M%XYX5<:O56D.'I(R!$;KO_\`Q#]0=7N@`8D',_"X?P#;/-1U:K^7G=>?\UZL M9_&/3[*NT6S079CE=7X/+7U&D@#A<1T>7,:!!^5WW@JU.L%IDKS^UJR.\Z/1 M!I@Z<+G_`!^2!Z=EUO3:99;\97)>/P"3)V"-1P=S4_GO\`2X\[=%T2T+*;=+,<0MZU,^O3E=W14BW?96:5-I;@XW5!CS/$!7K=W8;KHYU/2P M(($*2!EW/""D,"<^RD<<;+;G]1ZCO&$+SF2/U1@-Q*BN,-#P-E&H=VV9RHW4 MMD`8YN)Q[JRP>D2HHU1J"FI.]7J&.R%$/4R M9",-T-R@!C\F`FJO])@E(Q8CK/R2/LJ-:2(W5MQ#B9.ZJ.#G/ALD]E+6\8B< M#"S^HOAI,&0M&Y):V'`A9/4)N+;M@&4H!5BW.NIL<*M1:Z!$96E84QB5UKYN]K=I M1!9)*M1I;*%C6L:-_IRFJF>R@"L\:H)^ZK5ZH:./E-7J`'*S+NX&HYF58E-? MW!+3GA9-:O+LE27-=VHQ^JSKBHW(QE73-I[ROS)$>ZRKVX#?ZL=D=]<-ILR= MN5B=1NY80TA;D8M0]2NI=^;`637K%YTS`15R:CC+C(Y[(6T);!&(A3:(:C`U MNJ<_*J7-0MIR,&)5RY#:5-V#LL3J-UIEI]..=U9RU&5UR](IG5L)S*\]\2]1 M?5K.#2<]N5O>+NJ-\WRZ;I:9!65UWH%RSI+.JM:31(RX<9A>OQX^O;CEERYH MO?J@?^:<=MT>`=L]Y0`QOW[KLAC$>_P`I?E;`S\%(EG90)CHVWVA6*1(=C]5'+RGH M#U#V*HUK:J]M!HEN.Z/SJG_3]D%`@T@8E'([+6XV^TO%;0>F.'^PL_P[_P`L M"9'RM/Q.#_PJH0=@L7PNZ*4#)4P^OG9]1T8P)$0HZK&/&6S*.EJ\J>.%#=7` MITMP(5L3;-ZI19&D$_`*P+FA3IOTM9)]UJ7UT^L_2P$D@+H:5"F*`;IA/^+"H%I9C=$\>G8@' ME0U*;Z1EFW924ZP>!J])45&]AQ`^0LN^<-8CNM>K_P`LDDK'O/\`F'4>58E3 MVAU`"9]U:`#V2852S,F&F%?8V&^RM2*MF!2O(F)*T;SUO;39,K)NWZ;IND[E M=!TBTEK:KSD]U*U!]/M6TJ7N5<#0/=$RF!Z3DI3&_P!U&P/.D&52O:H8UQ)B M%9KOWW"Q>HW&I^C[HBO/F/UN[\J5CS(:P%T]DK:B:D3^5:-M2938`&B?=$4* MEO4=3+G'3[+"Z_;,;2.9]I74=0(93);V7*]5_FG1).5-+M1Z;;AL0T">0MNU MJ,M*!U"'.V4-E0#&C4,!,VF;R_:&Y:-RKIEJ^&K5AJ^:3))77V09Y>.%D='L M138(PMRC1(9B%ETQB&](;;N)/RN=KVIJ%U4#(X6QUA[F4RW,E4@1Y!EN_*G% M6M3IU;18YSA2NLZY2:^^?7<`3Q(6#?AKZ[7'U0?C" M\-RWV]V/4C0\-TJH8'O81)WG=>K?A_1+@WT[KSCHM>E6+*;-Y7K?@&U#*32> M5F,]UV5*D!:ZH'RN%\?,+M1G`"]#T`6A/ML%PGCD-%&J=.S5:L>;63!5ZAQN MO0.@6[6T6X_1<+T"GYG5"\#E>D>';9U>JRBW!)A<,KNOH>''UQ=/TNQ8ZT#M M)(.9"H79T5BSCW76T>D5+?I[@VL-31D+D>I:?XHNR(V&RU9K289>UIJ>'#.Z MNVT-<`-E0H/$B2/;*M4G(`3ADM47F%P``F$[7'(),)M-"B&2,PHS(:9*EIND$_NF>T8Y515 M>9!`RBM7"F"YQ@]RGJ`#)/RH:QEQ`/PLUJ3:/K3FN#0QP)&Y"Q;L@$CLK]T0 MT03!63U!T@Y"YY5WPFF3>>JY`X6KTNCZ!&25G6U#76!/!70V%(``Q$!B1 M]5EW]S#3G*NDM1WEP?\`%,+)OJA+B2BN[B!(.^ZSZU0N<07+4C--<5)#A@E4 M;ZLV)$3RCNZP:T@"7'8K#ZE=#45J1BU#U.X.HRX9X6-6+S4@9A25JCZM6&B? MJK]I9`L#G?7*MUU$_P"L^VMI;J<,3N5*X"FWW&[J7X77%G<4]3F@P7#?,KM>O=$M M[6Q=0\H"!M"'P-2HNZ54M:;(;D1]UZM7BUXO+G[33YDN:;J-5S"`(,*)V@.Y M!Y!V7:_B=X5NNG==N'T*+G43D$3C9<;4IO:8UWY7`=BA!(W&?=+DP9^J42WOW[H"C_`#^%/:'^9,[F5"(` M!$J:V.0=O=4C8M@/)'K(1X_^0_9-;TM5%IU0C\G_`*_U3AO3[7Z\&CIM68(A M0P!Q4U%M2Z<&Z2!W&$NF6)?#GB! M[\K6IT]`A@&.%!#2HBF!3:/JK-.F*7J&8_1/38&C41G]DY(+3$**4SF/HJMS M5;.<$J6H^*>2J%1VIW*`*I+]R@ITW5J@IM^I4E41#0,G[K4Z/9AK-1W/=%6> MFVM.G2$1CW5MVT):0/3`3&[HZVD`Q*Q.IM?1)$F%8E3]-/IW@JS7N#^5@U%9O3ZAF`)_1*N-+)!.>$Z5E=9J0V))_LL$TV/K!V5 ML=6]1(G/L%G/I"F`9(`[HS0W]44Z&EL:CA:OA&RTTP]PDG*PZ+?XSJ+6@$M" M[GH=J&46B%2-/I]!H&0KS&CX06M.&A2O&)V*Q76,OJK`^N&G8*&[L@ZW.@YA M3U&.==XV5C20R#F%F1IQK[8T[QS7C=8/C)F/*;@0NP\0T]%3S&[KCO$+@0YS MG9A=^(_P"43F,96!6BJP%@D$?,K7\7GS*[H,">.5CVY(G= M>2UZI&WX-M3_`!3!$97N/@FWBBTD+R/P%0\V[86[2O;_``G0TVS!"2G^M.Z) M;;P5Y]^)#PSI]1Q/'"]!ZE#6%OLO+OQ?N!2L7:3GLF5:QFZYWP8QKW^:<">5 MW?0JKZ->G4IG+3*X7P++[1KSSW7>=+#6,'JSW"XU].36.G=W'7VOL"`P,JN& M2=ER-U4UO<00?=*K(E15'2PD'=*2`JU),`J$ M@G,IC(='[HZ/JQ$+%NW233,Z@3J*R;U[B[3_`(EN=1$'+868]@=<#G*PZ[U# M]*MOZHF%LVM+`&TJ.RI`4Q$+1MZ0%.0NLFGSL[NBI-T#'^B&K4&DGMV*)[]+ M2.ZS+^XT-,.581]1K[P0L>\KZOZI*>^N'/<<_JJGYR25IBJUP79$JO5>13)F M25;KPUI61U&L&M):8A61+57J=Q!.5AW0=7?#3NI[ISJCHSGE6.GVLN!(@\%: MZ9[5^GV#F&3![K4HT3I@&(4KJ6P@8]E(P!@+B`?=9:TK730UF7K!ZY/#5W7G\F7L\L\>6_\U\",+E/!\V_ M4JE'(ER[_P`?4--8D`0N&L6AG7`T")*]&4X>?MI=1Z+9W=9[;FG3>U^\B5S7 M7?PNZ#U"7TJ(I./_`,<#^R[2\?Y-9A?B0I[2K2B<'NL^NXN.5G3R"]_!>W-3 M^7>5&CW`/]E4J?@T&"6WI/R/]%[57N*+CAID=E`74W3_`$G=3T_UT_=R>.4/ MPFHTGDU*IC/O: MXRKX"Z-5;B@-7PLGK'X;6A8]U`"8P"O2J5,3D94SJ;'B"$F$/>O!^I>!ZUO. MJ@Y\(W6DFE4#CM$_ZKONJ=/K650TZE,5*8YY"ITJ+`X.HO)_Z7*S%? MW*\^NO#G4Z+=3[O2=%2FX+UP.8ZF&5&9_Q`S"AN.G=,KRVX:\] ML$)JK^]^7DNSMM]@3LIZ.H.DC1[95&IX9I-.IKYC`3IJ> M25D4`31:>_\`U(])[?\`\RZ*U\.,_AVS,J3_`,N4^[D=/:/K6^:W^&>R=PO/ MVN\KK3Z9.-2]"K@&F1R5YWXCFCXA='*N/&;Q=XUT/GGRPUF\836%)KKW^8=O MW5?I`<:#71+W;+6%J*3!4_J.ZW>W.=-"FP.,```*5S6LDG)4=D[^3)^Z:H35 MJXV"BFJ/)_+LA,P,Q\*8LXC`[*"X=VQA18K7;H!]4A5V_EU&9.%([UO/8$M(,]D%2J`<1*R^MTP:;OW6R]H MZBL*^AMQDA4>K/#:&D8QPM#JE,MEVK*QJSG7-<,,C,>R1FM+P99E[Q4(.3RN M[L*(`!"Q/"]IY=HR`%T=K3TP05:UBM4F@#9#6`\MW"E8"1)05VQ3<3V6'1ET M\W!/NIW/8X`(K!@=4),;H[JUQJ'V4I&-U^D/X9SNP7FOB*N6U*K2=EZ=U8'R M'@Q,=UY'^(#C3O*@:=UP\_3KXN].`\1UVU.H&F9WX4E&G0ITVET"?U4%_3F^ MU5G`1QW5RQMO,+.>9]E\[*[>WIW'X=T:3M#M`B5Z[T$-;;M;,%>8?A];-8YA MU8X"]3Z7`MQC/==<.&:;J[P6.',+Q+\=[TT:08#NX8GW7L_6'^EQ'9?.O_B+ MOGLZA3IXC4#/U6';P3>4=#X`J"ITNFX?HNYZ;4EK9`"\W_"R\+^E4A@X7 MJ'A:C3N'?S-@)*YV;NH^A>)RF?&F<`JM4_Y@.!*T^M6].DT/ID@.X*QZKX=$ MS/NK.*QW-Q:HN&_"M:Q&%1MX(F2IVB#Q"Z,)A5(."(]T-=X<))^@43@1L9"C MU.U;*+(.K^3='T]PDSO[JO6<"S!0VCB' MD1W5NDX1M/96,W:Y;D@"5+4>-$!5Z3O2/V3U'?TCE;VP(.D=Y451X:=X33#9 MSV4-2"9!6;6I#O?DG<*[TNDPTY<[?.5#T:R=>W0IC\NY*UNM6++"T#V&8QNL MR6\KE9.'.^)G-94U,)(B%F68-2IJE%UBX=6J%L[&,*ST6V)`EIRLSFL^7+6. MFA8LP,X^5=:0`FITFLI@`9]U%XMU%7+VKDC.ZJ"GYE9;ZC-Y1V%MK()$_*V*%NUC,#Z)K*B`P#WRF8C?9=L)NN.=X4 MNG6>FIJ(6@]C0PCE*SI/J58+H"O/MVLI0!PO1BXUYSX_I>H_"\_1<-K[@$+K>8X_6CXBIN?4I%DY@2M+I/36?PP4G6E<6-$"?+'U5>[L*4$%FGW"U_*+Z\`>GVRI; MJU_D$QF%K45PU\U]"OY>[95JVHM?0@@94G6+=SKO26R)S*&F*M!H:YDM[A7I M$-6S-,ZL?11MI@&(RM*F!5IX<,]U6O;&HT%[:GZJ+M2KL83#CMPHGT*;S@82 MJ6MA5UT&E_QB%Z!4IO9)()A M05-3@<%!YY0Z=7HO]=J]I';*GI=.96U$5'!Q]LKMWTVU6!I;OP4%3I;20ZF" M"-T''4>@-!Q&_(W4KNENI^GRI`Y74_P=1M3(EH.R3J0#3CZ(,&VLZ`H-&DCV ME2?PE#L?NMIMO3+9+,^Q3_PU+_`?NIMMZY4,@8_5<%XWIZ.N-<=L2%UM1]RS MTN$B,$+B_'-U5;U2DXC3ZAGMNKQ[1RF]5=Z#62[`F/=)S_,?OONE6BF(F2[A1H+6^8\4:>>\+6Z? M1;28`&Y'95>EVX#0?ZB=UI-`:R.0%")`X-&Z0.=]T#3("-F7`1]4:'3W5EC2 M6B3A!3IC$JGP">,K18&N9&9*HVK"6<25(*CJ9VE9 MI%3KMN!2@65Q-,2Z2[W7?&QBINID. MIOD<+YN_\2E$"_%3,2/[KZ1N`'4C.<+P#_Q,VSO(+QGU#'W4R[CO^GO\F?\` M@RZ;)D/QVE>O=#N3;N#VNC$+P[\&[HL:RGL/^R];Z;<>D!T_=<[Q:^E9MTEY M>/N1JZ3EC6EVA6!DK M.L=P>/U5LDP%T8L2!PF2>-E'6>-/LH7EQ,;?"=C9(UZ,Y4[;7I$[NRE MRUCJ,^O.Z:QH/N*\D3)W72=/H-I40,*/HMDVE1#W#*LUR=6(`3"L^I5,J2DR M,F?D)4:$L!/Z(JKQ386SLG:!NG13X"R+UY<2-6.,JQ?7!((D;+,N:DB)W]UN M33*O5ESR.ZM]/M3Z<2HJ#/4#"VNGL'DCNIE5D!3MRT`#,!,^6$P,JU5<`P25 M1N3(,&.RS%JCU)Q+MU5I4#4N&RTFYIM:S;V7H-"A%D,0LCI%E1H51`C*WZSPRV$8PO3C.7FO2.WI:&^D94D M.+<]E7HUB3Z1(1U+@Z8(A=)IFN9\=40^@[&87F7B6V!H.&C9>J>*:M-UL^1Z MEP'7J0?:OFU?/O-&DD2MQENP4M.B0=UOCX* M!J4KB[FJ`"=E:JVI%/+99"S[^DZC6EHD+0Z3U!C6-HUY@XRE@HU;-NN6%U,E M0W5K=END5);\KJOX>TKT=3"V2JQL:8.G4/B5!R[NG78;K:9CA!0JOI5--PR/ M==DZSBG`V5&\Z8'`@,!:>%(U6,/(J-P0<*&I1I%D`R#PKM?H;2=36EHY$H'] M%!8-+W-([*HQ;FTAY+3[A%:$D:2#(4W4K*[M07AY>WW""Q>RHV8AP&0B'>!/ MJ9'NJMU39O/Z+5#6N"SNH,TUH:@&C;!U(.C='_"#L%=M:8-NP[84GE!1T=G5 M,%<1^)=,Z6U`V8(S]UVCW>@YA6-X.ZDZF^G3<[#@ MMN]J-KO)X&RXOHD^:]S2!IF(^BZ"TKO-#)RN^7+G)ILV#=#-3#*M-N'.(8_' MRJ?2ZAT@`_=7Z=%KQ),%9O"K#0P-U2-DUNPU;CS#EC3"H7KZC*C:+#(G.5I] M&EONK5]4'_`"FS+C&$5&AY=#(]2@YSJE,-NM0&!LM'H9#@#V5? MKU,Z]1[[H_#]08`SE;G3-[;>F:4.,R(6=48:5Z"#`GE:E/+0X[1W5+JC)<'1 MGNLUIKV;IHM(.1&0J/4ZI=?-;4;J]^58Z6X&V$G80LV_JM?UIK9D#=-:MYY3<@&2IV54MZ1<=9,EQB5U7AV@&4FD\CA<]1+16:P8B-ETO2:G MH:`-A"TD:](P(E6[8:HD*A2U/<,;*W2K-IMAQ`^JRZ1>D!H"K7IFB04S;NB3 MFHU*L]KF2""#[I8NXBLY#\D3@2O+^HRN MM._@QF]U@6M"I4NVN8--/N976].M&^2(&&@'4J[:5(D#$MV"U>D.;YK&U7^D MVVWX<>ZCH.D@=UVW1;HN:TQD^ZY6VITQ3:X'!V70]&T!K8,X6I: M.B8XN89[+R'_`,2EH7]"K/#3B#^Z];MJA\L'8+S[\=[7^)\-W0&?23/T*WE> M-M^+C./#?PHN-/4&4W.V);O\+V?ICR:3#@[8"\%\"5C:^(RTNP'G'U7M_0[A MKK>F=0R%C.:R?5EX=+;52*<']%#6J%U6&[3E5_XE@I_F`.ZCH5BZH07;]BI. M$L;%K(:"T$_*NMAP'ZJA9$E@!*U^EVS'M+GDXX[KHY7A!;T"^I,'*.[I.8!( MCLMRUL0(((@Y^$U_T[6PD)IGWFW-D$OP=U(Q@!X^%+>T#2K:3N$`@OSN%&JM M6YTN!CV5BJ[T@1&%2`TM!:<'=3:G&C$B2M2L6!?I$GG]UTLD MG`NM5!2HEHW*;PQ;^;4;5<#,[K,O+G^.O6TF8$]UU70J'D6K3$8W6I-W3S^; M/UQTTWD,MPP=EE]0O&4:3BXY'5M-)QD!<9XLZ@?4&N_WE=G@1=9ZJ:]< MTVG?;*&PH_U/YRLCHS:E>^#GB1,KI&4PRD!$'NL[VMD@:C@QF/NLV\JAP(GE M6>H513ENQ]BL>]K@N.DQ*Z2.=J"XK9/)F,%1T6>94!,Y.$J=)U1\1N5J].LF MAHG$%+=$@;:T`#7#*T&4PVF2!PC93]$!"_5&D+';>E.]?K):!!04+1`5VK-MK`U*C6-;DE=9T;IE2E:^EF8W6SX4\.M?IK5& M9&'"V[6[[0O M/NJL>R@]CL`=UZKXAI3:N)W`.%Y_UNU\RC5])F"NL<,F;X*I,9YCBX%HG^R? MQ=JUW_4J%"D:_5'-W:#,;KECQ;3ZO>%K$-8'O'J//*U MKNEI8=,XX4_3K<,H-],8E27,-89:/9:QBUS_`%!@<"1(C=/2M65[4.:WU`J> MJR7N!R"I+-GE&!!!6F8KT65K?U-V&X**\K^8T5&.+7#A:/EM<9PJG4+1NG6W M#AE(JWT^J]]JQQ,PBKO<L0UU([[JS6)TR#$%9BU%6N:E/S&C^I475!5O`'2)X6K:WUS M4I-:7!W!;"L46VCW@7%#23RLW_"?Z&A3:*31JX1Z&_XBM"CTN@:32RLX-(QE M%_PJG_\`,Y9Y::A_(3SRN0_$"H?*+)R=PNPJO#:)<<>RX#QK<"I734>3C4Y;G37%^ESI(VE0W'<+8Z-<#0)=[+K.6'5=-)V[;+ M4IU&M:23@#*Q^FU6BFT@F85NM4):Q@_J.5*JU:-;5KNJ1O@`K2IVNBF'L.2% M6L&C4UK0(`X6D'`0LJ@I5*K'^MN.ZO4:@J1ZOI*#0'M@Q]4!MW,'H)G=1II4 M```=_E2^PPL^VN-(#*@,\K0H.8YHC,H"8R#G/U4]/#8RHFCU[X*E9@RBG,"% M%=5@QIB22E=56L$\H+&@:K_.J_0=E*"Z=;D@UJDEQ.)5IS<;*1H`;M[).8"F MFF%UVEZ"9Q\*ET,AMQ$E;'6J0=0=!("P^G'1=:"0KBSDZ>AMLHNH@&B9.45! M[12;D!4^IUS4864Q)VE+`NGW#W$4VFTY/=GNN'-JU& MG/\`B73M;9V%`.J/:(WDPL2XZQ;=+Z<8(U,$+S#Q_P",>H7E1]"VJN8V<1*S ME9.VL>>(]0ZYXWZ1TYKP:["1PTA>?^(_Q5#ZSFV@)'!7G)H]0O:DU/,>3DDR M59L^@7-3/E.'T7.^61TF'Y=/2_$+JKJX=.Y[KUG\/NI5^J6%*K6.7"87@W_# M:MM5;YK2!*]I_"FH&](I0=FQ^RZX9^T8RFK'H#&M;2WX6;UHL;;N).P4C[T, M9I<%E=9KMKV[@'QC98M='EWXD=4)NGT6NVW*\PZ[U5[:[J=&-1W<XX(P%X/-=W3V_I\>F\>)>YQ+BY>ZY:X M;-./=<9TBX#JHU8@X`Q'Z+I["\8`-1DCL%X\YIZ;B[SI]R'4VDNR8$+KO#Y9 MY()[+S7I-RX!CXQ[E=MX>NBZDT%PRDNT^.OI/:*\+70?94R"XD M`+RKQ_1-CXKJ%HTC5(79_A[?-N+.F)F-\K.Z@=4@97.NLG"1E6&$DR=D+ZY#8#B M/E0"K+S$QM*DHTC4=),#NEIZ_DF/J"G3=+_JL7I51W4^ MK-`)T3_=+>$O\>:ZCPA;&I7\Y^Q/^2[#S0R@&@[+-Z70IVMH-,`ANZK=0OO+ MGU+IC-3E\WR9^]V;Q%U5M*FYH\`*ZRE+HCZJW;6_J`T_*"O:V<1V72^&>F>9 M5#W``*#IMGYE1K0,=EV71K-M"DT@?HNOCP]JSGEJ+5NQMM:@8!`63UBO4J4W M!H^5LUJ>OTX`*I=1IT:5N[5!@+WS\1YX7$W0:+FJUP,96_CCDXJ_N'6=2HUN)G`*M>&:?F-\\@R3.57 MZ_08Z_,@Y*Z+P?:4VVX:1*F?%3&?5AE9K:<.!P%!7J-,\8D3B5JW-*E!!8/A M9UU;4RTC;L0K"L]P!=B-U/1I8"@J4*U)X+3J:%8M:S7$-?A#0].E\#`'9'5` M=0@C=&\LQD05%)'!S-;-Y5#IU M>Y?3+6C9+J4DW&N\-R7X:JM:M2:XR=DS:5>H`'NW3U+*B!ZQJGA38I7-:B>! M"EL_+J"!D)7EC0\LPU4J5LZF^:57(&`@NNM?(JBHT0KU+16H9RY4@;A]`-D$ MC*&UN*E"IZV$`*&FM1;IIALG"*/^IR"E>TC3!T%%_&4O\!472[U2MIH$`K@^ MN4Q6O7@977]5JM;0).ZY&Y9I>^N2<[+KIRC&N+:F:+B2"6\!0=*<&W$.P.$] MPZN*C]/Y">55:]S;C!@<*XI796-;32&95_IKWU;@N)PU<[T^M-O'*VNAU)8& M\GDV3V")PD^R"C?-+Z3MX7,OTT^H$KK+K\D@;^ZY7K M32V]R2)/9)Q4O32M"^Y(IM..5IMM:;*>1J57H3`R@T@[K5()8>ZMF^R*%DT, MN=(Q[*WUNCYG321N%6J?RKH%:<"O9EL[A9O,:G;`Z.36_EDX:CZ[K(`!F,K4L<;F5R_;WVU/XL3IWA"RI``4FS\+5H>'K9@@4FX] MEL6WE@"",JVQK2TA:](UNO)_Q(L*5N_T-`@RM7\*+F:;:,F1PG_%>AZ-0V!6 M3^&-P*75=&I3QW5,IN/4KJV+Z7R%R_B?S[2@_1+AMNNXM&"K;-/$;K'\16#: MM-P(A7+A9'SKX\>^O?U'N$9WW7#=;#R2X&1PO3_Q=L76E>H^F/LO+ZC_`#[@ MAP).T+Y^#*ZKPQXVK47,96+H&#J)3+#[B]>%^/?.C515J-#CCY704JX MIT8IN.<$+RGPSXE9-[=[TS3_#AY:-,2 M5F=>O&"F]K#`*O65]19TUI;49$>J2N-Z_?\`G7E3089.%TO$>;#'VR-6NQD< MJM5N!)@JK4J9&=U&YY7.UZIC%VE5.J,Y5NC0/A M,=UG*1KWG5&`_F((&`L#K76&,8Y]2J,=RN7\5^*[>W+A1,N7+VESU'Q!?AFA MY8XYB``EXYJ=3<=)4ZG6ZI?BA2RR8*[WP;T@6U-M5P`<%Z5G;TZM1 MGJC)*W[RY%NT-;B"LXS?->'S>7VXC4JUPRE!VC92P$SRIA/M,N>(LW=X#+&9/R@LNG5[BL'%KH/RM+H?1'O<*E5H]Y746=G1I M,#6M'9:N=O$)AID=.Z2&4Q(`*T*%DUIVA7]#)`#83N89VA8_ZJLVFUH['LB% M(N$$85AE(`3^Z.DT:M/Z*[-(K>C#@%=H4X(`&2DUK6>H[K4\.VKKBY#W#!6L M>6YJZ*BSTP1@)NG6X92#1B%.88W,+W^/'4>;*[0W!#:1("YKK M]9SY:"M?JURUK"-6.RYVX<:UQ`[KK>(Y]KG2:1;;22K-%DGOE*VIAEL`,'E6 M;>F/S'/LIC.$O9]):T#90U`(.5<+?;"@N&@C"Z1BLKJ4&@X?NN*ZG2!OGEHE M=O?L_E.7(WC)OG'&ZU\<[VXCQ/1(N-78R5I^%:X#6Y/O*C\749:\Q$W77;0YD@JE4;(BQW5.],TRFD8M]0I-IN@3A M<_3J5*%_#?R$PNDK,+CN85'J-F`TO&%=<:B3B\I:(:]D@&3RIB*9;#L$")4? M2ZK74])&6A2UF@L@%2%*M3T&?U5.YH^OS&.WX`5[4`\M)P5!4!:#!,3A5 M%>@\TZH!_+SG9:;6-JT0[3)'*H56,+)#H/*N=+J!A%-QP5FK%BE2:*8V1^4W MV5RG2E@(B"B\D^RFFW/WU4O86Q)=C=<]U5YIWE.@X8G(6[6:ZG2-3VINNJ_F/)T\`J^ZV8]H;`$;)6S0P`- M$0IVD3)32J['.MSI=,*];N#X(*AJ5&UKP^6,DK4Z9:MM;85'1J=[*MT.V:]_G5`M-C?XBN*;/ MRA9O";#;6[[FM);CX6@;1C*4"![*]96S*3!C,)ZS6DSCZ+$YY:CF^I6T5):W MY52E+70X8707ENTM)61=T@QVQE6+I);@1A6QKTX*HV[A$?NK5!QVU*K'*?B9 M:5JG3G."\X\,=0?8^(*;7XET$KV3Q6UE3IKVG.%XCU.@]G67O$@,=(*Y?UR; M[CZ-\*UVW/3J9!F0I^I6VIAYE>7_`(=^,6V[&V]P^"T1)PO3;#J=M>V^L/!) M"ZW'?,9QRUQ7D?XRV+74G0T3*\9O^EOI52ZFV9.Q7TCX_P"DF]+BT%P.87GS MO";J]8@LQV7B\F.WHPR]7EUC8UZ3R\M!+OT1=0#C#=,M9[KNNL=!%E4TO!PN M>ZS;LI"8E>;R8<;=\<[:PQ7K4Z;:5$?)[+5Z+6=3:"1]5F&[IMJEI_-V0UKT M0-#H:,0O/=[>C3LNGWTU`7GT^Q706U1E:@W3$_JO/>FW!(:[4872=-OFTPV7 M3([[*XUF\.@MB16RYMM# M@""IZ\[CKCY+B^;>D=4ONB]1\BJ'-T&#)*].\'^+;>X:T.<&NCD[JKXY\(4; MNXJ.8S29D0%Y]U/I?5.C5O,87.8W&"KN9?Y7MP\TO;W@=8\VCZ:L@C@J(W8> M8)V]UXOTCQG=6Q%.J\^G'JV"V:?CINQ(^04N-=98])JWD'!D;)S>4VLU%T%> M5U_'#G$N8=("H5O%5_>$TJ3WDGM_V4F%[I);2V#O5+EPW6?$M[U% MQHVVHR<`(^C>&.K]6JZZ[BUIS!7HO@OP1:V9:^I3U.[DG_-+G)QBXY>3&=N* M\%^#.H=6KMK7FKR]].R]:\+^&+/IM$!M,!S1(6Q:6]I9T6A@#<+.ZCU`TZA# M7XE9U]R>7/RW/B-2YN:5&EI]H@+G^IW,DOF8V6?U7J3R]I!CZJM'W@!]2G!]UL^#N@T+>@V6#;>%U=&UIM:`UHA;QW8S;)TPK6P> MUH;IP%:IV&Q=,?9:YI@&0(]D+FM;D\K@68H4FXX7+^!>EMMZ+:K_SDK>G'LUS7+R7.,A1=.+7W.H$#Y3U[-Q$$+ M0Z59-I4]3FB8WA3OAG_4]-[7O+,$MY5R@W$X*KLI@NW*M-U#&WNNC)WC&57J MC)GA3N?@M*KW)`&#NM1*S^H-!I.7(W-/_P!T[A.ZGZN,[*KX4N6W'2Z<'40%HPX[[+#:LYF2T-D$6L]T-`M\H8E%+?\*SIMS'7#_"T-'(W6/08]@-0Y:_*VO&8_D'&9X5 M2WJ,=TP-J-`0W:>5E==93=1@CV6SU*DQO\P+%\05)MAB M3*L*HVE336;JTXSA=5XEW^:XUSBQ[3'W70^'ZY#)X/*WWRQU7963]39!V M6ST]P(&#ED6NUL)]PBIR)S&/=9OB6GKM25?H5P6AKL%!U5GF6C@"I2,#PP\A^ M@KJ;=PB97(]#>&WSV.X.RW[F[93H:0X2>RVST;KO4`QOEL,E8_3Z56]N(&W= M2/8ZXJ:1))Y6Q94*=C:`F-<96=G8+RX;:4VVU*#4/9;'1*7E6X?4&2-UC],Z MD$&5#>-:*>8(2QIS ME;^6X[@!1MO=!C)6C<6KJ[SL`HSTQ@&1*SLTSKBJ^Y)9_2N'\9=&+*AJTF3. M\+T6I:-9^4`:55N;!E5A%2,K&<]N6L;IXU7IU*;I`(A;OACQ3==.J-94>2S9 M=/USPO2JM)I0#[+C.L]&KVE8RWTM*QCG<6[C,GI?0_%%EU!@8]PF,_[A;0MK M.K3-1L`N"\-M*M>UK:V/+7!=#TGQ?=4G>75>=/O_`-ET_CFQSCTWO'?1YHOK M"!"\?\4U88^F<0=Y7J/5?$'_`!"R\L.ES@N&ZIT2K<5'.#=1)PO+YO'KAW\7 MDWV\SJ>8ZLY\&3M"EL];ZKJ;@`!GY787GA_RO4YD+&N.G,I7&L-+?A>:XZCU M3RRHQ7=;T#/S`1]-ZG4J7`;J,3D2J'4V.<[,CY0V3/*)>[Z<+EZZCK-6.^Z7 M?@4@TG/`*UZ%1M2D)$D[A>?],OG/N@ULS\G9==0J.IV8<(EWNM2\.=XK>MPQ MFI[2/H5:97]49C]UA=*K.JB,GYY5FI=EC\DAW8JR+[).IU`XF0-^5E=7Z1;7 ME(L

K*DZK=--,&23\IK*O4J.$\>ZQE_KI*X[K7X=LN-3Z(ATJI2_#6NZD& MAH:!S.Z];MS3%LQK@)(S*FHUJ+1,1"LEZVZ3S61X_5\"%CJ=)]-H:S^H#+OE M=3X=\&6=HYM3R?4-B0NHJ%E2Z!#>58K564P,PI9;Q:7RVK]E:6MK:M+:8!(Y M2-^QC/Y9,MX"R;SJ;74M,RJHNV`Q*MLG#G.>URYZH75C)52[NP\ZM655O&:S M+"&%KB09Q*X^_QK2QZY;PM2\QH;J))7:]`L:E(X^JU).TMXT[ M'IU2F&`#$J[YX#=\++Z?:52P1)6I9](NZ[L@@+K+\7QB^3&.2J&XJ.@`Y3#IM>J9=NNG%I2!.EH M1,H-G\L+>/Z>WMB^;\,&UZ&TP7"?E:-CT2D'`BGMW"V+>BR>,*[;AH'$+T8_ MI\8Y9>6U4M+(TV@-=MV4E>W>6@-*O4V:L@Q[*5C`)E=ICKIC;#=T^JXYRAJ4 M*MN=0^RZ-K`L_J3FG`[K4P9M8E2\J.=!D`=@H.J>)[?I]-IJU`/;_82\075. MSMG/YX7E'B^[N^HO>:;"6@K>YC/;)PSMZQ>DV?X@]+J5=)KM!^O^2Z#I_7K> M]IAU&H#.<%?*U6G5J7]2F7O8YIG!73^#_$'4>D5!3J/+V#:5G]W&W34E?1_\ M4',`)RHZE8/V,KB/"OBVVZBQM-]0!T97327MUT7RU=$V.]>=!@A8%)Y_CG$@ M22KO4KE[00X$++L:[7WD#E6])]-X@;-$X^B\U\5TCYSH:!!X7J75!KHG'T7G MWBVVRXYP5J.=['^'%V^7473@?W78R8_U7G/@ZLZWZL!,:L'*]!+R:8(^\[K' M^-"J.`;D*E3Z9E`69G909O5:6J@[.%1Z82&.89QMA:O48-$\@<+&L"16>$ MO42?5DAAV'R(2:P`AP">F`XR1A3M8W3@04%&YSB)16M,@SIW4KZX2;HC;]4O3V_59TZ.:94'4>JN8XC0P_=#U6A2I5 M2`0.T*#I3?(NJM7,%1]7>XN:^"5?Z0X:0 MP5/:>ZU.F:ZBP?',+H>DW$4XQ\KDK*J`X;SW*W>G58@DXC9(O;KK!P(&=QDJ M6O4#M-!I!)W6=T^J74QZN%/T]X?=NJ$&!LI81OV+6M8!V5ZG^2(*SK)PF!`5 MZF^!NHTM429W*EIB8[*O3<)B=U9;@"%%3,_+`W4C6X'WE14\22I9$1.%%/F, M#/RBI@_U94-2LVGDN`4)OJ0$`?571M8KVQ)U,*@KUBRF14G'*=G46:=L+/ZK M>'Z MM&KJI20F[]2R?%&_Z?0N*9.D+E^K=!8ZF][6R`K2UNTJK=='<:&?EV_=KA[*W=1J@D!L8GNM6ZZEHH"'Y'=:0L*=1I&`%G]5Z:#3 M);&3O"YY>*QN>297E?Z)>NI40YQ;!&X4M[=MK/:01)]]ED68G5`:'2`!O/*EI5W5'[ MRUJQMN.CI7CG$MG"G_B(GU3.ZR*%9E%AAPF%4N;\@N>"M^Q&ZRZ:VO@SW17E M?73UMW/'9<]KFY]N5IV5`LM]>K$8PL[I]J\7D%OY<# M*ZNTL:E2ES'*LPW>&SI!KFQ`V^Z]7B\4MU7G\GDNN&_TKIE*E3:"`5JQ1H4Y;I4%K3?H#LA M!>M<&Y)7OP\>./3S7*U6N[MU1Y:W;N%4KU''!XW*FH#+DSK6K5K:H,+>^&5< M9,P$3`XG`6C0ZRD&71I.DR,*W3MW2M-EDT$G=2MMVZIE/98=[<>6"3]ET'5"&4\[E'NGVE>V=J:-495^WZ9K::CQ^9+H-D:5Y4` M/I/"X>3^4W6B(U'98G7/#%U9G#-0!WA>ULLAIU-/Z*M=] M/;5:6/:#VE9GBUS&Y>-/":1K6=>6RQS5VW@OQFZ@YEO>.G&Y4GC7PN&36H,@ M@SA&5Q,IM[O5JVO5;'72(DB5R5RVM9=3)$Q*X_PCXMK M=,K>35J33(@2=EWEA=VW5XJ4RUQB=_\`?9=]RS;EK5%_Q!M1FEXAWV7.^)F- MJ,>=,@G=;/7K(T3YC20?98EW7<:#V.`U'&1LNDD:=(2V=X[*3;`5>W=``" MLTFF>9]U%-1:#5]0(A3/`!E$QL"2<]D-P0,_HHJ6F\!@&4_F#W4+3Z1ZH]D\ M_P#6HUIS=9WH;3(`,969U!AT$QE2U;DFLZH1`.TJM&:S:;M$P1A:QM MR_LSE).G;68``;$1PIZT"F52LGZF`RI[JJ'-#1E,NEVJ5ZFFF23NI.E4C4=J M>=ME'6HZR)..RO\`3@&P,=LK&*XS2]28(P43FM.WZI,&(!!^JD:.\?=:;C(Z MYTYMQ2/^+VP%SEN]UGK=7*+VD#..,KF;-[J=4TW...Y6Q;O)8,KKVQTTP6G8P.RCJL;"@IBI M.ZE.N((6:T@K4L3&ZJNIGX6B[20,;J)P;R/NH*@!&!A#6IMJ@#WW5I],3,?9 M`8;N84[X7I49;,INGGNF%!M5T$81N>:C](`5R@QK&#W4OX(R.H=/%1D:<+'J M]/'FZ=/LNV\K53P%5J6+7/U1NL7%K;F[;HM$PXLRL[Q'X=HUJ9T4Q)W@+O:- MG@`C"CO;!I&V%+A%V\AN/"M1C"6@_*Y?K?3*M'4T3\+W>ZLV"@06CZKS/QI0 M\JY=%,@$]EBX-3)Y6\/9=%A#AGE-6B"8,CLNDONF-J.+].%B7ED6/+73'[KQ MY^/5>G'/;+\XNJN9I!NJX8]I=`7++#3I,]E5N7; M!Q'*IEI=K*LML*;FESV$D]UC4CK+(R+8/#C4)]+LD+6 MIUM&F3Z>Z"[I4J,`"&G@*(.B-50_=%5ZGXAB07Q]4_<\9Z9O M?CXBL6X\YN?^I1N\46`.:K?NOGQW4NM:CYCJP^Z.C==1?E]6H([DJ_NX)<,W MT+1\1V53`K-^ZF/6+73+7A?/G3KCJ8KRVN\`^ZWJ?5+UC`U]5T_*OOA4UE'I M?6^L4G-TM=)'995"B;EQ>X$MW7/^'?/O*\U2=*ZI[A0H!C#^JS\=+)Z]J MM^\,864QD*'HC-%4ZOS%6J-L:KBYQGE2T:(:\F!]%G/IG2_;N](DRCTMDF<% M0T8$P1*DDQD[+>/,%>_MJ55A8YLA>??B#X,IW=-U6U;I?/'T7HU0@C;*JW+` MX$`*Y8S)9=/FCK?3[VQK&C589:2%K?A_XDK=*Z@UM;46$1GC_U@U[X7E?6NBU>GW+@]A`G=<;[8UOC)[(:E#JW3&U*3VY$X*Y#Q#:/HM=$ MS.ZS_P`.^O/L[@6E.GDW52YU7,`@[K9 M\*LJ7%N=#H@+.ZY1ASLPX'NM/\.G#SC3C!5RK.+7:+BD0"?96*3*[@,`+5K6 M8.0`HV6[V]L;++2@:-P)!<$#FW#,3*U7"&B?U4%9NF85&;6J7.VP"S[JM7!] M;/LM>Y,.R`53N2UXG2$1E?QF/5QW6=4J-=?AS7)Y5VAIF)^BPPRNS.DJS:7548&J%CVZ!Z@G\QO<*-.$NZL^GA.`/+!=E1U634P M/=2L:U]/2.%V<5:H095:J=0CG967`ZCC95ZS03'ZJ:5E]8I`T-``E9UFP`.: M0/HM/JC9JM9V"IT*(:\P))25FHJC21#A\:5=L:CJ+@W8#@R%7SKCCOPK)IEU M-N-7N$&O85IK-DF"NJL:HAN9PN#L*FF[%,SA=/T^O#1"U.5=/:UB7!H^RV;* MI#1U`5`8DY69=9+>G4VEPQM)LJ;D1 M&RZ;I5(LI9Y4SO.G.Z&V)#O4%/5&H?Z*!PAPSE633JT:)$-RI9RJU MLZ6@&`58:"8[(T51H&905F![()!"F+0/IYM,&%B7UO^+9MM6M5KP,R2.%;`$9Y7 M,](O@3I(R-UMT*NH`@[KK6)5M]-I]E&ZU!R$;*DP.49]+20<]EC4K6V=>L-, M8*I-IU:C@'#'>5HO'FU2(Y[JRVB`T#3"S_D5FV])E-V55<2",8[J1E8!%70UH;`E#4:"S*A%6=M_E.'M(R54>A52]S(Q*Y[ MQ7X?NJ)+@TP3_OA>P4NFN;5-7RR0[L%'U3I-.[9#J6X[+A<-NLRT\";1J4_3 M4$_*MV?3&5R-`A>B^(_"5%E$O:T`_94/#/0CYI#FX"Q<-\6+[:YC`M_"DT-? MUCLLWJ/3S0FF*9G9>K'IS@T4VTXGE"/#--_JJ,U'E+XI.B>2WMXG<]'N*KQ_ M*<0I+3H=Q(:6GY*]J'A^V;Z13_15+SPZ)!8T1\+$\N#Z'T>+F2["[CI%G2I:-3H5YGA M&L!+"1[PM&T\)W3J0ESI[PM8R8LY6UK]!JVK&CU`'NNCHWM!K``]H7`7W0NI M6DF@]Q473K;KSW'4XPO1/)XYVY^N5=U>=2MV/!+Q]%/2ZM;>0#J'W7#5>C]6 MKN#B]TCLIZ'0^JD:75'1]4_=PV>F3H[_`*]0H_\`Z1L?*CL+\WSBX&0L^S\+ MU:@FKJ=\K>Z7T06S!N,*_N;XD/37U%>V%KP_R5O_RY9-;'D-(^ M`N@JQ*@KNU+8ITQ]%U^E]3$84M*U! M;D9*7Q8_#VKSEWA]U(D"F`HO_+UQ5J`Y#5Z3<65-PF(*SKLMH'3`,]E/V[\I M[,KI=HVQH``>H"%;HT'U'R9,J6A2=6=J<,%:-O1#0!"WC-349O/**WHPS+8^ MJCN&:8M+78S*1,$J:MFB#'U55\SE2<5DG.TG MY4535F"C)$@'"9\&8*TJK5;JF2N;\3]"HW])PT#5W74%A)V0OI:FQI4N,IMX M7UGI]QTN])@B#Z2N\\!=7;U'I9MJSO6T`>I:7CGH-.\LR]K1K&<+S[P]UITN."%E>`JOE=4+"XYXE>@>)[6GU/H M@JL&0)QRO-^AAUKXA@-YA>B_U<9V]4I`.IC!P.2HW,R5-8Q4MV$DB0AK@#(4 MBJ58.S.P4%9TM^5;J@0>52KG!C"(I7,D20J+R-6ZO5RTX"I730(`PJB"X.#( MGLLDLF[U`+3N7.GV673,7I(VY4O5)VO,$S_DIZ+!AT#"CI`;S$\J>FT3@J*" MM1IO&VRK5;5IR'*XX$-R@=!,CA-$0LM:VD14PB_A:_\`\BMTP-`S">!_B4:< M"XESH."$=$D3!D!0L)#2,SA155K)'<'LK-`ZTZ)S1_$-)D&-PM.QK.:((.>5E7NJE4:YAF3$'A7K" MIKPX3"16]87!'($KH^DUM%,$'=<10JNI51.&KH^B7(>T'5*TS766+Y=RM:W< MV,RL#IM4$3NM:V>20I2-$U64J9$QD&0-^Q4K#QV35#`C)*:5-:N.L$G`V5ZFXG/&^4WL#ZC01)W6,HTH^&+-U"V;K! MD[KI:+=#`J=NP`-``$*9]R&D-E8QYK&.EID'!450#5A/1JM)B4540<+I72#M MR!LK=%V),+/8=.T^ZN4G`MXPBQ+(WWE(Q_LI-!/;'9"T0XP5&C.`TD2J74*- M.I1+7KTRH;?_`)REHVC'0(5ZI:U'$P"FM[=]-TP5C*S>ED9]QTX%X@<\*:GT<.8"6+:L;37 M4!<%K4K6F&Z>RSCA]:ZO5:S&LW.%F79J57P-N%9C(EY0/8VK4RR>ZFZ-0&LOXE,%7*-N7G4XRK+*``@<)645O1TMPV% M*&CD*4@S`,)0"?=601D'Y_LJ74Z0@&/HKYDG!5?J(]`D[*I4=`:K<3!`4;J0 MG"L=/&JC.T(W"#')6/\`4RXK.J4(<9"C-/@K1J"./E15&3D05L4_+$8RDQD- MSCY5O2(E1$;@B$%2XHM7_`(E]'_AKD75`$23,!>JOP")E8?B^PIWE MBX.:"8*93<3>G,>![L7O2G4'.ES1&3[+D.J6O\)XK((_,XG]5T/@B@^TZI5I M%IB?@)O&]H1U>C7:`?5O]5,,MXV,Y363H>GD?P=.,X&R>XVSA*P'_HVF!D!# M=P`,K>*5!5V/"HW!,D#]%/6J0)!E4Z[B3+9515JCU($[*O0;YUPZI,M;@+-6'>P>3@Y5.L``2<=CW5\!KG$=N5!>4Y9EON$JL: MH)J`D$CLI:!)<``(]U)=42*0=F?904FD.F00#L"D2Q)>M:6M#@"?CE'8.#'X M&?V454&I4B<`FZ'"00-B4B5IL+:A!&/E7>GW+J#X;^4\K,L7S5+85YD: MM)C/Z*SAJNQZ+=M?3$>PRMNG<::)*XGICWTP"PB)6W:7IJU&42XQO"U6>G4= M%8\36=C4M:VENY]UFV-1OE-`.!'[+1HN$3,+&FEEASE&X225%1@Y)4\0T&8! M4L:!)!`"M6U0$Q]%3<,GD_*DMW:'=Y1&K2)B8A-#7OGLH#6TT9$!3V)+J>HQ ME8S+4VK13+BJCGMJF0=BH?$UT;:UP=U1Z1BX0J=%X=$JS2QSNHTM!P`ALGW2/ M>4+-.F!^J*0!D*:4%:&LU$!5*`-6L29@84EZ_P!):'&45C3AD]TJIF@2#V5# MK-DVYI$`96BXP0(3.`TZ5,IM8X*X8^SN""#$JW:70\T21D2MOKG3V7#"=.RY M.X94M;C27>F=UG&WJLY3['96E753W5JG4).-AV6!TBZ#FB7+9MWR)E;TDJVP MR(/=3,@`S/95J!>7^IP(XQLK$<\J-G:)R#(1`RL`->T84;J(>9[%76A M(QP>-]E7ZA#:>#**K2=3RT_=4:M74_0\\[J\!J-)U0YF%890:!NI:+0U@&_P MIV!H"FOR*OD-[;G=%Y`U1"LD-F>4_I@^AW]M2;#IV04:[:=.&!0-K/N0"\DCWX4U*FP-RDQDZ2VWL%4U M:SX)PCIV^@[`^ZL,\L#>041@[%:TR&FP!IGA.-_A.X`#TF4$#5NJ'?G(*$3` M)^$SS,]PA>2UL]T!8&(S\JMU""S&2IM7V4-_`IRWZJQFGZ8TZ3&RDK$:@=H4 M/2\-,E2UXF9P5SLX3()<")(]D#R`(*7[#*$YAP*W.E"8TX0.&9`GY4D3_4AB M'^RHKUJV%IU8O:/S'^Z#Q/0\SR MGZ3W*UNI4`ZX#SIE4>OF&,`B9W4DUMF\E;PR@P#``4%TZ2OEWM[JM4#OS<=E8N M#J]H*A<($`_=!3KM9I)DY53IP'GO),$<*Y/4*CJ;]1)<.%KVM21,P>RR[?3IT.SV4],NHF=Y^Z[ M;_+RK=P]U)AP>PRKG3F>7:^K!(G*RJU7^)N:=,8:W)6L'?R2W[*::@0"PD\( M+C\H$3/Z*5Y/E1$DJ/3.\[(TJ5VX`@[S*I!A95(G[K3J`D9:%0>#Y\:02HE5 MVG_U;A)!`P%-J(.9]E#/_JR,R,;84]P"TSIGXE$Y%0<:;I#MSW6@Q[?S+*HE MSJ@!&^P"M^8-@[E58W.GUG>6%J4CJ;PN;Z/<9`G*W;>HV`9)6S%8JLVV"-\+-QVNW#V-1U"KI=N/==!TZZ!8)/LJ/6[!K'ZX&%5L;G2^. MWNM2[<[-.JMZDG#L*SK$]UCV=QJY6C1>#C=-+*OL)+)E24CE5Z1ALD>TJ>B9 M(SMP%&ED$$`;]T1_+,[**8*)YTL10T0'5YD8'=6JL0%7LBV22`K+&!SO]5EH M]"G!E7K6F&[0@HTP8PK--H:`"Y%AW`!D2H;HPS^RF>0!G?Y5.\)TQ/NJE0V@ M'F&45P8YP5%9_F),[JQ<4R1A94%"M!A7:3FGZY654)IU([*S0J>D=RM)%NZT MZ3`&VZQ<&N8V6A7J$TX<#"S[9NJL7`*6+M:+](QPA_B-)DIBSDG'9`:8]\\J M@_XKD9A+^+&5`:?J@=^`F92`=D%-HE_BS)]TOXP\%0BG\I"D,%-B2I7J$1)4 M%057XU8*L-:`$X89SB%-BF+5Q,.$1"VYP9' M$)V5Z9`(*9]$'X41M@#@P$1/K;O,T^DJ-[JH]U=C0])&-P MJ]_4;Y<$A5Q=N!R%6NZFL:M7W59J[TUQ`#E4[PC M3."%8JN),-5&[<6X,JLUD=3J,;5!,?*Q.MW-.I48UI$K9ZM0UTBXN`PN.>QP MORTN)SS\J\:VQ]:A<^Z"@P,I M!@R.4C0TN)&^ZSTWI>)!@`(7,(4/3K@ZB'JW4#33F55BM6U:2T`'4%GO]%:) M(/Z+3=3BFXSNLRZ#6.)=R,+/TO2L[2ZL7N`[*\UC74X':!E5K>D#1U%NYY4U M":9`F0>2D$%9HHUO?=*K^77,%3WC&N]>F>ZJD#3I,P$5;L7M-,ZCQN%L]`J^ M6S5.YY7-V=3^2X@''"U.EUY8`>/=;B1WG2K@$`D_9;UE5#V@E<3T:YD!DKI+ M&X``$E+$Z;HIAX)8`3Q+E:M0^F1G!5+I]68]2U*+@6C"SIK:W;W`C2XY/NGJ MP&EP)4'D2-0W[H;ASVLT[GY6+56>F4O,?J$[K9HP*<3LJ'1O10]6>5/5KR=` MY7/&;J3M!U-IKO#&G"Q.K4-!CLNGMK>*9>[<[++ZQ;R#CZJUUTQNG5?+JPZ5 MT=A5+V@`Q]5R[V^74Y"U>E7&(E=)S&.JZBW,B)'RIW?EG*S[-X+9F58K50QD M24TW*@OJ@;LPXRN5ZA3\FXD8GW7:5@'",K`Z[:C27#CE2\%Y4^FW):()6S:5@ M1)*Y6D]S'D=BM;I]>0`=EISZ=-;U1Y6\PK5JZ3LLFRJ2)F%HT*D[%--RKP=* M&L\!D3/U0-*&X+@WY45-8"3NM.U8/^ZSNEL<6:EJVH)B2/A9;6:;0.,A%(.$ M&2-PD>$43^TRJMZ`*9(W5C;)A5;QTMP/F54J.Q:1)5MP!'!56RGZ*RXB5%5+ MFE+I4+':7Z0"5)`TX(4-%T5HW,H+1[$2% M%IWR84CL9P4SLA`,`@;X]T@V$1_+,(3G?ZJFS?LD`",<).$#!320`-,('#<3 MRD02(U$)]1_[II_W*!RK=1ANG/U1**RHFG0])*"X:\OU! M6*+HM1/*$9V"QC$O:G-5IR20=E+2KN&3LI7@")3M:TB0/NNF@S;@!LN3>=JF M(2JT6N,!/2HM`01OJ!K3/[JE5.H%Q..ZM7H#1M"P.M]290IEK'"0K)MFW2KX MEZ@RA;%K2"3[KF>G!U6H:A$F9RH^KW%:M5-1P,#Y1V5RT,R(E7.SB1B;[JV_ M>0%`]I.VZD=7IEH@P9V4?FLF0X#W01OUJ`0@A=CZJ M-X`._P!U-4B%"1G,HBMD0+I\DY/=6KD0L,X4)@G(W5BL0!$[Y5=\[?W1",QJ#20.?91U#J=+?DIR^&1_=1%X@D['& MZ*E#V`;):V=D#64M(EZ6BE_C4TKP6RJ.=4`)F.ZU^D5/-O9T@Z%SMN[RP3R- MY6OX5KZ*+]0`W.Y4_XI$BJP1/NL[J@T-/I$*U4:^D^!.RI]4J M"H!3$R=PE4]L!_#"#S*CR:F&F%.&^4P-X]E6I:C7<9(XD8E/J?%QH#J<1,*G MWT%X!C'!16-=S>25#F6U)3'AG*.D MZ;=`L!R/E60\UZX:#(Y7-VUWHI[Y6_T&IJ9YA,F5K),:VK9C6TX&X4A@;**@ MZ1DB%)CV'PLNAJ3C)P5-3,NS*!C94C(X&%%%H8[?"B=0G,*8D:1.Z)H&TQ*: M7:J*;QWA-JJ,<1RK;?S1PGD:A@JI M4]CLK#`W5E5[/##*DU2[!A9X5)5$[*K69ZIX4SW$Y`RA<)YA+5T@J,=C2J-= MYI5IM4\2-PB5T=U;$E2@F#E- MQD)-&.4Q'ND4YC>4+R3]$VXG8)I;R@/)$(9XA,#`W3:H!$H@I/('LJO4/R8, M'MW5C5[_`'5;J1:&AP.?96)36GY.WPI`9)4-HX&EN4^J#`<2D*)YEVZ1SNY, M82;AI&Z!W;;H,3_FDXD&>4+B1F50G$`PA<(.^2FY]3D-0R\"9A$.YPVC/RJ- M\[4\-/W5RI@;Y6?=NU5P-XY3XB]3;_(!S]TB0#A$`?X<0O"H=%&2?99++>KUR_Q- M2,'J]*FQS6!H3LLZ;J8AH4_5VS6;D8*F9I%,-VE+VDZ9=Q9-.Q`52M9N:8:Y MRVJNDC;E0N;JR)51CNIUVJ8]NJK$%N^%"20W.RH-K5O*!T\*$WE0$M+AN M:VBWM/)7-5W/\QI+0X.,#NMZPK^50:<^K@B/U7HG+AG/PZ?I]1KR`=S^BU6' M`$GZ+!Z56@@XSB5LVQ+@-UFLXK31G)4OJT@`?51")D'Z*3U&F`0LNAVL:\$N M"RKFBX7\TYPHE]$U';.*E(I/K-=Z9D]U&_\Y!,8[J2[H$5 M"]@)X@*J'Q(,[[#9)R7<7;9N"=D;YP*FM*L M-`)6H1W71+@%C3JRNGZ;7D`2=UP'1K@!@`HUVB@!,:N5T/1V_\`I@[NN&<^&]KE=@(/[(NG.#'@2F+01NHZ/HJ@ MY2<.K?H'4T$.2O6C3)W473ZC74\%3U1(D\)6XPNJ4SJE8E^P]ETO4J3BQ8=[ M1,%PS"R5B7#GC=Q71^':Y\@#5^JYWJ3"!($?*T.AU7LIB7+RAIOYVA22`#.RC21CI.1A&3] ME#(#2`G:??;A%2B)WD]T61B?LHVD;''PI0#&%E35`",F0LZ_C6&@Y6C4.EA) M,?"S6M-6ZB9'=+T`KT/Y.DB5S/6;?2^=.W9=A480-IGE8O6:1F8GW4TETRRIQ)W*L=)N0QX!=.5JB[5=MC:4:CJNG@>0(_16@Z/8?*K63HH`@B5.YT`3"SIT@Y!'"37" M(.Z`NGLGRTA#L0L[K#0)D<=TB5E MT029&ZLV]32?4HNG`Y!;';*>NW2[5)3%*T:;Q(`.Z-L]BL^UK1)<-E=H5`6^ MGE4V+3B?T0.W_P`U(_NHW$``P44B0-DP,`2GYG2?E"3/QV*B"+LQCZ*MU*#3 M[J5[VXB(4%[4!I20K"HK7\ASGV1"=?S[J*T=Z20$;3)F$A4T3W*8$SC]4['" M"!PFD?EC!50GNRHW'NB>8X4;CE`_]/NHR9=(Y12W3N<(,.$Q]4`UC)A4:\&X M:-2NDR8./94;@`W(R$O2?6I3]5'_`#59PTO+295B@[TCD?917C3(.RG255KG M.ZK//T4UP02JM4B,GZ+:!JNE0U?R[?52$MX*BJ?EW05G_G3.YX1N#2<2FTG3 MC[(C$ZP'>U]%IC"CN:3)P M(!3=+<'6HD9/NBJ%PQJ6<>BH/(I%OY<_94[NU8X%TP>5>&3O!5>Z$-R95TLJ MJRU>&@-=A/\`PU3NK--P#``#]T^O_I6--OFRL\%U,F"),9D+2MJWE46%L25D M6]1QN00=4;85ZFXEY$@C<$8XRO5'/*.IZ74U071@\%=%T^JT;F5R/2JCF@`. M#F]PNAZ;6AVDY@;I7GG%;K2"V8B=BI'.@1S\JO0<2R(V"L`$MC$!8KK*K=2> M!1#`8<]7+-I9;@"1`*HN:;B_V]-,85^K+*9C'UW655(EQU?94.I4"'!S)$[K M3:T:9,2H7L\QVV9P+J30ZF0YQ(CE8K612).-6(6W6+:EE+I$X*K.MVFF(:#"EFE[9MNXZH8V M#/)4VKR\.,_W356.%:`2)454D3[;95EVS9IL=)NF@`.)$''NNIZ1=%S!GEF78:WTSGB5M([SIU<5+RE3F<_"[OIL-MPWO[KS+P54-QU$' MM&?NO2*#]+!G"XYMW0_!P%J6U:&Y,(W!7K)D1A9%]2(:0MUYUTYD!9G4&3(V^%FM.8 MZC3_`)>)^JALJA#8$"%I=3H^@[8652@2!NK&*W^F7&T\\%;%G5U-B8"Y2WJN MIQN?%-+LUV^!'*"S9$N)RH*8\^MC(5Y MF`!P%+VLZ"ZZRV-#:@>.%T MW6;?4TB..%SMRPM?&PY4C-;_`$DEU$96G8!PO!/"Y[H%0T;J.D:0?'^92U0-RL]MWJ$DS\)VW8` M[&47:]4?Z2>2%EUG?SQ.41`!.<>Z!T"2,2@!Y'!*@O'>C'&V5,\S_HH+LS2.\K42H+)X(R= MU8:9)AQSQPJ=G!,?NK3(F`T!2%2?TX3SP<2HW.(P-D[7%Q"H*3![*.I,P70B M).GM"#5ZT"QHW2,`1.R=WY=Q@(()!,R50!B2`250N#INACGNK9_,8(RJ-VXF MZ"EZ3ZTZ>6M]MD;B'TR"H6$!@/9%4=Z-RFMI5*X&DQ./=5JK3J@*W7`)SQNJ MS\XP4B17((.(0UL#<%2EHE1U&@B()(5$%)L@DC)3$>HC92AIG/V2+1N$1B]; M!!F$5*'4`8"DZXTFB2,$#=5.F/#K>!CV5O;,$]PU>W)4=1@=&DX2=.J"(^$X M<-,;=E16KC)!W"AJ/AT$*6X/K.256J&0W0'$B=ENO-DZFTJ-=3W M`]E9?5TT"XC99O3Z@-,,]E)6>^K=T[<'$R5BS2XU>Z73_D:_5+E9KSH`.=\I M42&-T[`;IJH:XQE9TZ2A8!`!(PHJI]4@XYA2M`CDJ!Q]LS6T2J-)@KWT$0&^ZFNFFE M6D"8@)WVR*]IM\T;*G=LTLD.$*[2+'TSJ'JW454!U,YSP5-::WMF$`D:'1W* MT^GW/I`:<=E1=1)!(`QRH:%7RFNP1GG8K4K%>G_A:\N]7_5]MUZ'YS=($PO+ M?PGN`ZDYWO/[KNZEP=8.K[K&N7/&\MNA5EX$A7J#@6[_`%7/V-?.#]5KV521 M\K5CO*N#TO!!*TK3348%F_F9A6.G57!\3CW6-?&]KSWN83,PH*SFU,X'=7G- M#V9"I7=+2/3LLUME=69%-T9`"Q6LF1L#WX6QU1Y%-P&)"SZ--II&3]D1")D@ M&85JPK>7'=0-I%K^W*3AI=^:0KM'16MQJ8,G=7Z%3T8."N8L:Y;`U+9MJXC! MW5TLK8I/)&\_*F:Z,`X6?0J3_4K-*H8_-NHU*M:]B0J]W6]6DY!..5D=3I&/RY42L2U(I58SA;W07BO4!^JBNAKIQRD2HVU=>=_JF/'<(;1GELR[/[J0C,I.C2*K@J,>H'( M"DJ\XCV40D"`(E4"X0XC.?JFJMC:8'=%$$H71O\`NB,_J@_E.!Y"Q^FU-+W- M@A;G4&!U,SD$+G+8Z.H$#<[JWIF=K]1LFI?R^JM>"`!RKE M9XJ-#@GVK>9"<8.3,(:KMYW"![W:#&Z!SG%GJ;!0@J8]`X3Q[H&5'!H&H?9/ MYKO\0^RSPV^3`XT[@M(TP>2M*RJ!SA)&>52\04G6_57B``?=*TJG!C=:\>6X MZ>3%U73GAQ$'!,;K>L7:G""<87*=%KM:R9]/.F75GU=,294 MCVN!![I.D#4ID-TM%)SHB1"TK<@M@`PFZC3#K5Y9G'"6Z339_"2MIH.&6GG]5VG\9J>?5/NN` M_#:6TCP5T3KDMNBV2IC=UQDYKJ>G7/JP2NCZ?5!I#,%<%TR['FAL[KK.DW&H M`+I8Z8UTMLZ`#RI@[34!&%1M:LQE7(!9@K%=8V;)X?2&4=5@.ZS>FU8=!,1P M5HNJ!M,PX+-;E87B"C+]`&5GFDZDP!TB.RV:X%>[WD!1WULTL,#(V)6-ZJZ8 MU,MU[D^Y0W+9.,#N%+6I.IU%'4>-B M0))B.RJ.AMJH+!ZE>H50(Y7.V=?.ZTZ%Q#-6T(LJ]>5Q.D&"5/T]NFG/DX!D8@>R3AJ.5`#HHSL/=2+5B01\I.`)[J)K]N$X=ZXVE4#4I`@Z5&T%IV*L.<2-T M'YO=30=M=^,?*=U8Z<@X2`;&=RC+&'$A!`;G,1]E&^X&))RI32;MA15*(&QE M7E%&YJQ<"(A6VO#VZEG=29IJ!P,0C8][:8$E/J-!CNY4S"2/[=UF,N8)#E:H MUPX`2J+<^D]U#5._!"<5!W4=4C:440=.Z?4)WV46J!$I!W(1!/P(&RS+V/-! M.RT:A=!!/T6=U&=8DCX3XE7J('E`C8>Z"H01&?NAMG?R(0ETG*3I:>(9)2ID M%N9"$N@1O\IFD:>RJ(ZL%Q`.$+\#L$3_`,RB>X]P40HR$U68PG),25$Z9,_< M((+PM\LCV7,51IZD-]UTET'%IPN:ZK++L.`"U>F?K5>6Z!C?NJ=4EM0S'PIJ M;II!P,JM>._F$@_5(@*I,F1NJQ$O#I/NCJ.)`,('.,1C*(:H6G$?JJ\Z26G8 MJ6KC(,_"KU<9B?JFBH*NVD?=0L=O.$=PXD_YJN7DNW,!5&5UP@W#3SW5FG/E M`\_NJ?6S-P#LK5)W\EI:F7]B='.7GE)SF^7`@>RCJ.=(+HREK+A)<-ONI5A` MXPV0GD_X/T4)J'M/NF\P_P"%&]/G7\3K1U#J!JMD-/8KG+*J69:8E>A_B=:" MI0D4B33;F=I7FK*FG^61)#MYX7+"ZNG:?RQE;G3*HD#_`&%T?3JQ+6F3(W7) M=+K%WHG![E;_`$JX`IZ&G;D+UX7CU75>J-$X;P%VG3G.=I+CMC=< M'X8=_P"L<^",KL^F58TD#;NK7GO%;1(:R2!E%2;B8^O"AI.+QJ+I4K"XG$Y7 M-T!4R3RFEL<[(JC2#O\`W4%0%KMPR#J)T6QAVZ>D\Z(U3*@O' M:[BFP3[I4/2`;;-$"2)4-;43'?@*^YLB(&.RK5&Q6$;J=*B$M#02E=-'EF#& M%-4_F;B"%7N\-W)0X-94&NIG.4UV"V@\$3(X*DZ406D@G>([*W<40^V?,S&R MF71`^!7:V]R0X=@NC\/7\.:"9GZ+TSE7IW3J^K25L4'@LCNN3Z M%HSGNGN&G5Q$*6E&@:3'U2J@&9(E8UIT95U1#G$EJS+RA!."MVJP'_54+ MQD-/)[*#`?-.MA&UVK\RN5K=KP21!Y5&LQS3`.`DK.DU-^G'NK#[K13^5G:_ M?9-=51Y>J<^RW*E;O0JFHR5N,J;`F?A?HHUM<8[U8^%)J(,JNUX.?V4DPV>Z*)[OJH*Y!, M']$;G=B@<&D&5!GWP]!PI?"P)J?7DJ'J`ACC)]D?AA^DR2D1T8P,Y'=$"-U& MRH"S@2A+@2(2,Y5J3MNM.-T8=`_P!55UX&8]DFOG))459+S.\A)K^2?HH" M9P$.HPBK?F-R!CNLKJCLF"85DU#!S/LLSJ50_E,2JB2V>`TD291.?F05!;._ MD[_5$TB?41)YV4@LM>0-YY1!\G=5R[:<)P[.=D$X?G=&Q\#C*KL>"-]D[70X M9^J;%EQ.-DB\]U"7\&8*<.X!_54$YY&9E`7DNVW35'@;G*&0[Z>ZNT5.HG.4 MJ8'D[8_9-U+4!N82M_\`D`[J7L+RVDX*3:3ID(FN]4(VNAW"I`/UM[X4=2X< MP9G/Z*V#+5%5I-.[=]U!"VY$_P":E;<-)`U0H*M$<*$TG;#A!H>:TM]+I5/J M)`$G"B:VJUQSA0=2-9M/97:5I6;@:`)=$(7D`K/Z;<5?X>'`X[(GW1+O4DUH MJ\'`P#PA<3&VRJLNFZO[(S781C'=42U'2V3NHAOLA\YFG\WU0"H)W.564Q/I MRHJFQC"=U1L;J-[@6SJPFC:O=.,?(6!UO)+APMN]ZK=7ES/92=/(;:-!S\E3+N+.DI+6M)(CA"8%,$'"5:" MTXSPAI@^5I!!]U%@FM!;)A/H'M]T+#Z1A%/LHV\H\54&UZ%9KID-/RO)NK4' M4.I50T`M!R9VRO;.I4P]CG')CO@+R?Q[9NI]0>Z<3,1[KGGQE*O@O<9EKEH+ M0=.X^%K=-K@4M((_NL*SJ/IO:`>^3PM2E6UR74Q(WC"[X7ZN4VZGPW6+*+[41OV3&2 M3P2HT3JFEA."!N`HNG@5*KJAG?"#J-0TK8GDX1],+V6K=49[IVB_JVF=E%4$ MG494EN\$?/":K),D;84L:B*W'J)WE07;7:S&/W5JF"!,;SRJU1NMSL\[H([3 M4PYG)VA7GUO_`$;@,8YG"JZ((+)!XRGZA4A]!O= M=-I!6\HDKJC6#:;CJW]U'9U7&[!`QW6>^Y\RJVDVB@)B>5RRNN(ZX_ MEMVM<&G'>%8W&3/NLBUJZ7`$C_):-!VHCU+-CI*-S1I,`RJ=VQI?[_"O'/[* M"HT203)E8L:9=>FT$B"J=>CC;'*U+ML$@`RJU>GB2D1D7%N#)!R?T5&^8YM* M"86U780TJA?M#J#I'"L2JG3*^FGI!S^ZV>G78TCDA8%M3(!(5BA6-+>!E:E9 MKK+6X!;DQ[*];U/2,Q*YCI]WL)_5:MI<:B#@_5+&I6W3J>H02A)!Q@%#4)V. M%-"O>F1OLJ_3?^;GNBOG>@J'I9]9DR9PK?B1L:A&_P`)M>(*B:XS&(A,>ZBI MVU1.Z(O:3,CO"JD'![^Z3@[28)E-B!R MK\%RS>?+!"F+O>51M"?*!,A2TZDNW*S%6'.)_IPEN,&"HW.!.1A#J'?'""P- M38!VB9]U%YF-T@Z>51%U%WH*&S(\D9^B;J+OY1SCY4=B[^5OE*BP9!D)&0Z5&YW M\R9^B?428)Y06&ET`IY)89CWRHV.QI"9S^$#5=\)##8[H7G.#$IJ;G28*"5D M$[1]5%?-#J9D3[2B:XYXY0ULTR"58*E@QLN`:BK46.>3&>RCM'1=.!.)4]0R M3"D*K/H>J02F=0<6G=3EQ`"?4-)Y*ND4'4G`8)4(-459E7RX:C.Q*!S0'3CZ MHBD]]4&0#!*%U:H&Q!5\M#C^7Y05J8#<-'U5FRZ8M]J1."5:K63 MB-33"F]6GP5Q7'ED[PJ8JM+Y!W2K6]700"9A9U5M:F2-/RJC4+\&#]%!Y7H M5=S2")XW7,^*K8U*%0;R)SPKY)N.'COKE'E#7Z*A:!B<%:%FX/8T["9A4^JT MO(O:E,-(@]]U-TYWY6C`:5,+N/7G&S1=H\J3G<05U7ARZ#FX<&D#OGA3'<>@]-JM--H[[S\+3M*Y+1,&-ES72;IKVL`)' MN5MT*LZ<[*6:>>72^QS#4DD[X4FN2!G[JJTOB8GLI2X8<=Q@SA8TZ2JW5'M? M=MI-<7'!(4U`C0&;`=E7HM-;J#JN(;C]58JC0>T_HH)Z=8!P`/U[JVW2ZGD; M+,HN+KAH)P5ITX-(-[CE6K#`'1@G_)02!4(GE6)`:0)PJE4^H_=1=I6YR3[R MHNJ`&R?C=34W32$MVPJ?6ZFBV&PEP^J6);PZ3PSZ.D4LQ#0._P!$_6&R0^9` MX1=!+?\`@E$[2T)^I#52U8@'"XSMQPO+.K-8^CI`XA<_URSECM.^\+HJ;'`C MW5>_HM-%T@+=_+O'+=(N'6U=K3JP$P@YG*J M6U<.&2(4X>"!$9]UG3ZV;FFPZ@=BLKJ[!Y+@WZ*Q*SK.F8U`XF)1U*32XQ"EZ?2/D`]T=>G#HXX M1&<7NI'\V!Q"N6=X6ELF9S!45:D2Z`,E5JE/2[&",K4J5U%E=A])L'?]%HV] M66@3NN+M+MU&J`[8+>Z;?->&RX!+$E=`Q_$J859:/?A9M*J'`:73/96:3IS. MRPZ'OS-%P!E'TADT_A17#AY)4W29%(P0I!?;@'V1-=GE1S]$3=.)("JI(,S^ MZ%QW#M]DY+8WW4;S`B1\H*G47``CE1],`UDCOPBZ@X!AR%%TQ_/<\*4:E-V) MTHO4<[*)CL"%(TXGNFC9.<`(Q/=$'PTB5&Z9G&$%28[JB34P-=.>ZR>JN:*G M;*OU'::1XX63U1\U0`('LH59MG#R0)&`DYWJWP5#1GRP,YY3N,.P3ME)2IQ4 M'!^B37^M0%VT)B\@S@#A!:+AW3L><*&0<1N$F'2X23'RE%L.YF>Z;4`2?[JN M7^DQ*(/P)@H)=?`!^4=-X+<[RH`Y)K@,JANHP*9SB%'8QY>#LFZ@_P#DD$'Y M4=@[^6=]E:D67:B9G,951#6$_P!U488=,QRJ]1WJQVV5T;8M\VNRA4D$X5'I=W M4;4<#N"8"Z&[:W09SC*Q:%)C>H/$R'$J7>EG:9MV7&2WY4E&Z:1$[)A;L\QQ M@9PDVT&J1O\`NFUFEFFYI9.I%+?\85=ML^-T_P##/[K&W3U>?U'.IO`/T69> MO\T/#I@<+7T4WTGM>\-%S=*J]M00/RY/NN&/%T]TN\8WK<^EIG&N&3I>FO+;A@:YP&"(."NBMKJ:@; M+=+<8*YKHU:=,P=(6E;^:UX>X`P9PMWAYLG46Q,B?YD.:5=M7%D#@H;'6UBF2=O90522PQO M&P5BK4EL$*O6)R-(AR+L]&12C:5E^(7PRF`[=X!$;Y6C.BC)9!]C,K)O#YE7 M46R`X1/=3+IFV.SZ"7'H]$$02!CA7*P+J7T5;H'_`.44]P(5UP::6VZY3MSP MJC5;#Q,#B945>D#D;=E<(!(&)35F12F1]%T=]N8Z[9BI,M&W*Y:Z;4MK@B3H M:X;KT"ZH!U-Q+J(`!D[X4XJ$C$A9-K M7Q\8PKC*DLP9D+C765?H7!:[2=CRK]O5&D#NL4/`$SE6K.YAP`4:VU]6(E-N M#PH*+PX27$`YW4@>"["S6Y456F223A9G5VC0["U:SN%E]0<'5`SDE016E/3; M"!&.Z&H-1DC?=6PS32;.T0HG!HRT*K?48C?ZJ* MM3EL@_,J[33*?3.K41"*G6=3J`M5FK3(SLJSQ`WRK*EC9Z;?D:6..8W6S;7; M2!#IGW7&4ZFDB)'LK]M=EH&8@)4G#I;JN#2)D#ZJWTJN/(&09]UR]3J`>UK- M6^`MSI&;=N8E2\++MK^=VVV1LK>KC*H.IU/1NAZ62*8,[E5NIU"6&"$73'N=2:`=^4J M1K4ZO!/ZHV5H'YC$JD")"/6",G=1I*7[ANZ1=&5`7PW!A(O^I518;5)[(M6TE56N``(")M01ML@N!P M@0=TXRV9"K!\B$8?!03AS28!D]D;2.3]%5UQSGV1!Y@[_P":H74'?RS$=H45 MBXMIP"`=U'?/EARFLG2W$B$OPBTY\&-^4P=F4$CG?N@U0X[0B++7$'Y2>[B5 M`U_<)R\[$G"HDJ.(;,IZ;QIB,PH''N8RE3)F)*@G#R3'',*<&6B`53U28W^B ME;4<&C*HK=5!:=4;*6SJAUL#]"HNI^JD>?[*'IK_`$P3LE2+-5^ZAJN M$$QE6%!4_.CZOUI`(!PJ542\R(5QS<;Y*IW1C$F=E M652NS\QF>5%2=#H.WRK#SCW5:!)SLBCK-;HB9"INC.^^59>3IWSL0H:[=+"1 M^Z(K5(/YLK)NJIHWIIZ1I>9)T@G[Q*UZPEL3GV67UNBXT!4$XSNEG&EG%3R" MT%G92VY)!(WXA4[.MKMF'^IHC=3VKH):5)>%URL!S>93ZF^ZCAO8E*&]BG#; MSU].##9PH:E%AR>-YQ*NG7%+6#('TE0=*+_.?4<##R0`5E'\K?A:5CO]%?B]4]=O\V3NK%$0S)GLJ];=6:/Y6_19 MC6^3U`00.Z3@=6G.VZ=WYDF_\QORFC?*&^;IHR"1'M*RJM)PI"I/YGXE:W5/ M^0LZO_[+_P#&%G*_$RX==T)I;TFG)G&5=R:>TJGT7_\`+6?`_966;!8P[KEC M"PT^Y4PIZJ$]U!5W5NG_`,KZ+HZJ5:B13.096%U2U+R8`RNDK?\`*/RLFZV* MS>G2.#ZO;.MK[S`3`,KJO!?5X;387Q[2L+Q9_P"X8@\'?\_ZKKX[PQGC]>Q= M&O&U*;3KS&RV:%0:1ZOU7(^'/RM736WY&K.4Y7%?U%WI_9)KG-=$_5#;[!)_ MY'+G6XT+2O,`NV]U=8_TR#ORL:WV/PM*A_R6I5B6I4'EJA3FK>DQLK5S_P`L MJ/IGYS\KG;J-3E.6C1![1"@>V1&_NK+]C\J`_F5-*[VD/.,;[H'@.:0)^B.X M_*F=_P`GZ(:5*U,M!Q/RJE5AR5H5/RGZ*H[^KZIM*I5&&<843JKV'NK=;\BI MW'YEK:6!97?_`!5/W*[/I%QIM&#&RX1O_O&?*Z[IO_MF_16I.&UYX+2F+F$` MJK3_`.2/E)OY?J5C36UN*D^K]*I#!&Z/63_4HJ?_`"_HC;^8_`5THR\8@)]<[2@& M[OA*EL4T"-4#&X"0>.^_91'_`)A3MW;\J"PUY`B81!Y.02H'?\M'0V^B"5KB M#*E;4QO!]E`/S?1,W?F^BDZ?^1+\2+#R4QC5,IG M[_5#4_YGV5@<.`,GZ(I,@]U$/^8%,>/HJD,YQWDIVNS$H*WY/JDS\P45('>K M!PI`YI&V-L*!OYDXW*J&OS%$MD0JG3':JQ$JS=_^VHM?L"5/PAY*#%LIIWCJ)(`) I("O4!#X(DJA<_P#YE_\`B6G2_P">U9ZNFXE:#I_,$^EW^,*4;)(T_]EK ` end rt-4.4.2/t/data/emails/nested-mime-sample0000664000175000017500000003043413131430353020075 0ustar vagrantvagrantReturn-Path: Delivered-To: jesse@pallas.eruditorum.org Received: by pallas.eruditorum.org (Postfix) id B5D3E1123A; Fri, 12 Jul 2002 11:35:27 -0400 (EDT) Delivered-To: rt-2.0-bugs@pallas.eruditorum.org Received: from postman.some.net (postman.some.net [193.0.0.199]) by pallas.eruditorum.org (Postfix) with SMTP id 2736011234 for ; Fri, 12 Jul 2002 11:35:27 -0400 (EDT) Received: (qmail 11615 invoked by uid 0); 12 Jul 2002 15:35:26 -0000 Received: from x22.some.net (HELO x22.some.net.some.net) (193.0.1.22) by postman.some.net with SMTP; 12 Jul 2002 15:35:26 -0000 Date: Fri, 12 Jul 2002 17:35:26 +0200 (CEST) From: Xxxxxx Yyyyyyy To: rt-0.0-bugs@fsck.com Subject: Example MIME within MIME within MIME message Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="12654081-192303556-1026488126=:25020" X-Spam-Status: No, hits=4.0 required=7.0 tests=DOUBLE_CAPSWORD,MIME_NULL_BLOCK,MIME_MISSING_BOUNDARY version=2.31 Content-Length: 11478 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --12654081-192303556-1026488126=:25020 Content-Type: TEXT/PLAIN; charset=US-ASCII MIME is fun at times. -- Xxxxxx Yyyyyyy SOME Systems/Network Engineer NCC www.some.net - PGP000C8B1B Operations/Security --12654081-192303556-1026488126=:25020 Content-Type: MULTIPART/Digest; BOUNDARY="12654081-2102091261-1026488126=:25020" Content-ID: Content-Description: Digest of 2 messages This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --12654081-2102091261-1026488126=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: first outer message (fwd) Date: Fri, 12 Jul 2002 17:32:37 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: first outer message Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="12654081-113777422-1026487957=:25020" --12654081-113777422-1026487957=:25020 Content-Type: TEXT/PLAIN; charset=US-ASCII first outer message --12654081-113777422-1026487957=:25020 Content-Type: MULTIPART/Digest; BOUNDARY="12654081-387266385-1026487957=:25020" Content-ID: Content-Description: Digest of 2 messages --12654081-387266385-1026487957=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: middle message (fwd) Date: Fri, 12 Jul 2002 17:31:45 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: middle message Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="12654081-1711788944-1026487905=:25020" --12654081-1711788944-1026487905=:25020 Content-Type: TEXT/PLAIN; charset=US-ASCII This is the first middle message --12654081-1711788944-1026487905=:25020 Content-Type: MULTIPART/Digest; BOUNDARY="12654081-1221085552-1026487905=:25020" Content-ID: Content-Description: Digest of 2 messages --12654081-1221085552-1026487905=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: This is the inner-most message (fwd) Date: Fri, 12 Jul 2002 17:30:31 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: This is the inner-most message Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII inner-msg --12654081-1221085552-1026487905=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: another inner message (need two before pine will do the mime-digest thing) (fwd) Date: Fri, 12 Jul 2002 17:31:12 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: another inner message (need two before pine will do the mime-digest thing) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII again --12654081-1221085552-1026487905=:25020-- --12654081-1711788944-1026487905=:25020-- --12654081-387266385-1026487957=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: middle message (fwd) Date: Fri, 12 Jul 2002 17:32:05 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: middle message Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="12654081-1731270459-1026487925=:25020" --12654081-1731270459-1026487925=:25020 Content-Type: TEXT/PLAIN; charset=US-ASCII This is the second middle message --12654081-1731270459-1026487925=:25020 Content-Type: MULTIPART/Digest; BOUNDARY="12654081-128832654-1026487925=:25020" Content-ID: Content-Description: Digest of 2 messages --12654081-128832654-1026487925=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: This is the inner-most message (fwd) Date: Fri, 12 Jul 2002 17:30:31 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: This is the inner-most message Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII inner-msg --12654081-128832654-1026487925=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: another inner message (need two before pine will do the mime-digest thing) (fwd) Date: Fri, 12 Jul 2002 17:31:12 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: another inner message (need two before pine will do the mime-digest thing) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII again --12654081-128832654-1026487925=:25020-- --12654081-1731270459-1026487925=:25020-- --12654081-387266385-1026487957=:25020-- --12654081-113777422-1026487957=:25020-- --12654081-2102091261-1026488126=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: 2nd outer message (fwd) Date: Fri, 12 Jul 2002 17:32:54 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: 2nd outer message Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="12654081-1955637437-1026487974=:25020" --12654081-1955637437-1026487974=:25020 Content-Type: TEXT/PLAIN; charset=US-ASCII 2nd outer message --12654081-1955637437-1026487974=:25020 Content-Type: MULTIPART/Digest; BOUNDARY="12654081-362457126-1026487974=:25020" Content-ID: Content-Description: Digest of 2 messages --12654081-362457126-1026487974=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: middle message (fwd) Date: Fri, 12 Jul 2002 17:31:45 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: middle message Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="12654081-1711788944-1026487905=:25020" --12654081-1711788944-1026487905=:25020 Content-Type: TEXT/PLAIN; charset=US-ASCII This is the first middle message --12654081-1711788944-1026487905=:25020 Content-Type: MULTIPART/Digest; BOUNDARY="12654081-1221085552-1026487905=:25020" Content-ID: Content-Description: Digest of 2 messages --12654081-1221085552-1026487905=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: This is the inner-most message (fwd) Date: Fri, 12 Jul 2002 17:30:31 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: This is the inner-most message Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII inner-msg --12654081-1221085552-1026487905=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: another inner message (need two before pine will do the mime-digest thing) (fwd) Date: Fri, 12 Jul 2002 17:31:12 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: another inner message (need two before pine will do the mime-digest thing) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII again --12654081-1221085552-1026487905=:25020-- --12654081-1711788944-1026487905=:25020-- --12654081-362457126-1026487974=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: middle message (fwd) Date: Fri, 12 Jul 2002 17:32:05 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: middle message Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="12654081-1731270459-1026487925=:25020" --12654081-1731270459-1026487925=:25020 Content-Type: TEXT/PLAIN; charset=US-ASCII This is the second middle message --12654081-1731270459-1026487925=:25020 Content-Type: MULTIPART/Digest; BOUNDARY="12654081-128832654-1026487925=:25020" Content-ID: Content-Description: Digest of 2 messages --12654081-128832654-1026487925=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: This is the inner-most message (fwd) Date: Fri, 12 Jul 2002 17:30:31 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: This is the inner-most message Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII inner-msg --12654081-128832654-1026487925=:25020 Content-Type: MESSAGE/RFC822; CHARSET=US-ASCII Content-ID: Content-Description: another inner message (need two before pine will do the mime-digest thing) (fwd) Date: Fri, 12 Jul 2002 17:31:12 +0200 (CEST) From: Xxxxxx Yyyyyyy X-X-Sender: bc@x22.some.net To: Xxxxxx_Yyyyyyy@some.net Subject: another inner message (need two before pine will do the mime-digest thing) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII again --12654081-128832654-1026487925=:25020-- --12654081-1731270459-1026487925=:25020-- --12654081-362457126-1026487974=:25020-- --12654081-1955637437-1026487974=:25020-- --12654081-2102091261-1026488126=:25020-- --12654081-192303556-1026488126=:25020-- rt-4.4.2/t/approval/0000775000175000017500000000000013131430353014121 5ustar vagrantvagrantrt-4.4.2/t/approval/admincc.t0000664000175000017500000002065113131430353015710 0ustar vagrantvagrant use strict; use warnings; use Test::More; use RT; use RT::Test tests => "no_declare"; use RT::Test::Email; RT->Config->Set( LogToSTDERR => 'debug' ); RT->Config->Set( UseTransactionBatch => 1 ); my ($baseurl, $m) = RT::Test->started_ok; my $q = RT::Queue->new($RT::SystemUser); $q->Load('___Approvals'); $q->SetDisabled(0); my %users; # minion is the requestor, cto is the approval owner, coo and ceo are approval # adminccs for my $user_name (qw(minion cto coo ceo )) { my $user = $users{$user_name} = RT::User->new($RT::SystemUser); $user->Create( Name => uc($user_name), Privileged => 1, EmailAddress => $user_name.'@company.com', Password => 'password', ); my ($val, $msg); ($val, $msg) = $user->PrincipalObj->GrantRight(Object =>$q, Right => $_) for qw(ModifyTicket OwnTicket ShowTicket); } # XXX: we need to make the first approval ticket open so notification is sent. my $approvals = '===Create-Ticket: for-CTO Queue: ___Approvals Type: approval Owner: CTO AdminCCs: COO, CEO DependedOnBy: TOP Subject: CTO Approval for PO: {$Tickets{"TOP"}->Id} - {$Tickets{"TOP"}->Subject} Due: {time + 86400} Content-Type: text/plain Content: Your approval is requested for the PO ticket {$Tickets{"TOP"}->Id}: {$Tickets{"TOP"}->Subject} Blah Blah ENDOFCONTENT '; my $apptemp = RT::Template->new($RT::SystemUser); $apptemp->Create( Content => $approvals, Name => "PO Approvals", Queue => "0"); ok($apptemp->Id); $q = RT::Queue->new($RT::SystemUser); $q->Create(Name => 'PO'); ok ($q->Id, "Created PO queue"); my $scrip = RT::Scrip->new($RT::SystemUser); my ($sval, $smsg) =$scrip->Create( ScripCondition => 'On Create', ScripAction => 'Create Tickets', Template => 'PO Approvals', Queue => $q->Id, Description => 'Create Approval Tickets'); ok ($sval, $smsg); ok ($scrip->Id, "Created the scrip"); ok ($scrip->TemplateObj->Id, "Created the scrip template"); ok ($scrip->ConditionObj->Id, "Created the scrip condition"); ok ($scrip->ActionObj->Id, "Created the scrip action"); my $t = RT::Ticket->new($RT::SystemUser); my ($tid, $ttrans, $tmsg); mail_ok { ( $tid, $ttrans, $tmsg ) = $t->Create( Subject => "PO for stationary", Owner => "root", Requestor => 'minion', Queue => $q->Id, ); } { from => qr/PO via RT/, to => 'minion@company.com', subject => qr/PO for stationary/, body => qr/automatically generated in response/ },{ from => qr/RT System/, to => 'root@localhost', subject => qr/PO for stationary/, },{ from => qr/RT System/, to => 'cto@company.com', bcc => qr/ceo.*coo|coo.*ceo/i, subject => qr/New Pending Approval: CTO Approval/, body => qr/pending your approval.*Your approval is requested.*Blah/s } ; ok ($tid,$tmsg); is ($t->DependsOn->Count, 1, "depends on one ticket"); my $t_cto = RT::Ticket->new( $RT::SystemUser ); $t_cto->Load( $t->DependsOn->First->TargetObj->id ); is_deeply( [ $t->Status, $t_cto->Status ], [ 'new', 'open' ], 'tickets in correct state' ); mail_ok { my $cto = RT::CurrentUser->new; $cto->Load( $users{cto} ); $t_cto->CurrentUser($cto); my $notes = MIME::Entity->build( Data => [ 'Resources exist to be consumed.' ] ); RT::I18N::SetMIMEEntityToUTF8($notes); # convert text parts into utf-8 my ( $notesval, $notesmsg ) = $t_cto->Correspond( MIMEObj => $notes ); ok($notesval, $notesmsg); my ($ok, $msg) = $t_cto->SetStatus( Status => 'resolved' ); ok($ok, "cto can approve - $msg"); } { from => qr/CTO/, bcc => qr/ceo.*coo|coo.*ceo/i, body => qr/Resources exist to be consumed/, }, { from => qr/RT System/, to => 'root@localhost', subject => qr/Ticket Approved:/, }, { from => qr/RT System/, to => 'minion@company.com', subject => qr/Ticket Approved:/, body => qr/approved by CTO.*notes: Resources exist to be consumed/s }, { from => qr/CTO/, to => 'root@localhost', subject => qr/Ticket Approved:/, body => qr/The ticket has been approved, you may now start to act on it/, }; is_deeply( [ $t->Status, $t_cto->Status ], [ 'new', 'resolved' ], 'ticket state after coo approval' ); for my $admin (qw/coo ceo/) { $t_cto->_Set( Field => 'Status', Value => 'open', ); RT::Test->clean_caught_mails; mail_ok { my $user = RT::CurrentUser->new; $user->Load( $users{$admin} ); $t_cto->CurrentUser($user); my $notes = MIME::Entity->build( Data => ['Resources exist to be consumed.'] ); RT::I18N::SetMIMEEntityToUTF8($notes); # convert text parts into utf-8 my ( $notesval, $notesmsg ) = $t_cto->Correspond( MIMEObj => $notes ); ok( $notesval, $notesmsg ); my ( $ok, $msg ) = $t_cto->SetStatus( Status => 'resolved' ); ok( $ok, "cto can approve - $msg" ); } { from => qr/\U$admin/, bcc => $admin eq 'coo' ? qr/ceo/i : qr/coo/, body => qr/Resources exist to be consumed/, }, { from => qr/RT System/, to => 'root@localhost', subject => qr/Ticket Approved:/, body => qr/approved by \U$admin\E.*notes: Resources exist to be consumed/s }, { from => qr/RT System/, to => 'minion@company.com', subject => qr/Ticket Approved:/, body => qr/approved by \U$admin\E.*notes: Resources exist to be consumed/s }, { from => qr/\U$admin/, to => 'root@localhost', subject => qr/Ticket Approved:/, body => qr/The ticket has been approved, you may now start to act on it/, }; } # now we test the web my $approval_link = $baseurl . '/Approvals/'; $t = RT::Ticket->new($RT::SystemUser); ( $tid, $ttrans, $tmsg ) = $t->Create( Subject => "first approval", Owner => "root", Requestor => 'minion', Queue => $q->Id, ); ok( $tid, $tmsg ); my $first_ticket = RT::Ticket->new( $RT::SystemUser ); $first_ticket->Load( $tid ); my $first_approval = $first_ticket->DependsOn->First->TargetObj; $t = RT::Ticket->new($RT::SystemUser); ( $tid, $ttrans, $tmsg ) = $t->Create( Subject => "second approval", Owner => "root", Requestor => 'minion', Queue => $q->Id, ); my $second_ticket = RT::Ticket->new( $RT::SystemUser ); $second_ticket->Load( $tid ); my $second_approval = $second_ticket->DependsOn->First->TargetObj; ok( $m->login( 'cto', 'password' ), 'logged in as coo' ); my $m_coo = RT::Test::Web->new; ok( $m_coo->login( 'coo', 'password' ), 'logged in as coo' ); my $m_ceo = RT::Test::Web->new; ok( $m_ceo->login( 'ceo', 'password' ), 'logged in as coo' ); $m->get_ok( $approval_link ); $m_coo->get_ok( $approval_link ); $m_ceo->get_ok( $approval_link ); $m->content_contains('first approval', 'cto: see both approvals' ); $m->content_contains('second approval', 'cto: see both approvals' ); $m_coo->content_contains('first approval', 'coo: see both approvals'); $m_coo->content_contains('second approval', 'coo: see both approvals'); $m_ceo->content_contains('first approval', 'ceo: see both approvals'); $m_ceo->content_contains('second approval', 'ceo: see both approvals'); # now let's approve the first one via cto $m->submit_form( form_name => 'Approvals', fields => { 'Approval-' . $first_approval->id . '-Action' => 'approve', }, ); $m->content_lacks( 'first approval', 'cto: first approval is gone' ); $m->content_contains( 'second approval', 'cto: second approval is still here' ); $m_coo->get_ok( $approval_link ); $m_ceo->get_ok( $approval_link ); $m_coo->content_lacks( 'first approval', 'coo: first approval is gone' ); $m_coo->content_contains( 'second approval', 'coo: second approval is still here' ); $m_ceo->content_lacks( 'first approval', 'ceo: first approval is gone' ); $m_ceo->content_contains( 'second approval', 'ceo: second approval is still here' ); $m_coo->submit_form( form_name => 'Approvals', fields => { 'Approval-' . $second_approval->id . '-Action' => 'approve', }, ); $m->get_ok( $approval_link ); $m_ceo->get_ok( $approval_link ); $m->content_lacks( 'second approval', 'cto: second approval is gone too' ); $m_coo->content_lacks( 'second approval', 'coo: second approval is gone too' ); $m_ceo->content_lacks( 'second approval', 'ceo: second approval is gone too' ); RT::Test->clean_caught_mails; undef $m; undef $m_ceo; undef $m_coo; done_testing; rt-4.4.2/t/approval/basic.t0000664000175000017500000001635013131430353015374 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use RT::Test::Email; RT->Config->Set( LogToSTDERR => 'debug' ); RT->Config->Set( UseTransactionBatch => 1 ); my $q = RT::Queue->new(RT->SystemUser); $q->Load('___Approvals'); $q->SetDisabled(0); my %users; for my $user_name (qw(minion cfo ceo )) { my $user = $users{$user_name} = RT::User->new(RT->SystemUser); $user->Create( Name => uc($user_name), Privileged => 1, EmailAddress => $user_name.'@company.com'); my ($val, $msg); ($val, $msg) = $user->PrincipalObj->GrantRight(Object =>$q, Right => $_) for qw(ModifyTicket OwnTicket ShowTicket); } # XXX: we need to make the first approval ticket open so notification is sent. my $approvals = '===Create-Ticket: for-CFO Queue: ___Approvals Type: approval Owner: CFO Refers-To: TOP Subject: CFO Approval for PO: {$Tickets{"TOP"}->Id} - {$Tickets{"TOP"}->Subject} Due: {time + 86400} Content-Type: text/plain Content: Your approval is requested for the PO ticket {$Tickets{"TOP"}->Id}: {$Tickets{"TOP"}->Subject} Blah Blah ENDOFCONTENT ===Create-Ticket: for-CEO Queue: ___Approvals Type: approval Owner: CEO Subject: PO approval request for {$Tickets{"TOP"}->Subject} Refers-To: TOP Depends-On: for-CFO Depended-On-By: {$Tickets{"TOP"}->Id} Content-Type: text/plain Content: Your CFO approved PO ticket {$Tickets{"TOP"}->Id} for minion. you ok with that? ENDOFCONTENT '; my $apptemp = RT::Template->new(RT->SystemUser); $apptemp->Create( Content => $approvals, Name => "PO Approvals", Queue => "0"); ok($apptemp->Id); $q = RT::Queue->new(RT->SystemUser); $q->Create(Name => 'PO'); ok ($q->Id, "Created PO queue"); my $scrip = RT::Scrip->new(RT->SystemUser); my ($sval, $smsg) =$scrip->Create( ScripCondition => 'On Create', ScripAction => 'Create Tickets', Template => 'PO Approvals', Queue => $q->Id, Description => 'Create Approval Tickets'); ok ($sval, $smsg); ok ($scrip->Id, "Created the scrip"); ok ($scrip->TemplateObj->Id, "Created the scrip template"); ok ($scrip->ConditionObj->Id, "Created the scrip condition"); ok ($scrip->ActionObj->Id, "Created the scrip action"); my $t = RT::Ticket->new(RT->SystemUser); my ($tid, $ttrans, $tmsg); mail_ok { ($tid, $ttrans, $tmsg) = $t->Create(Subject => "PO for stationary", Owner => "root", Requestor => 'minion', Queue => $q->Id); } { from => qr/PO via RT/, to => 'minion@company.com', subject => qr/PO for stationary/, body => qr/automatically generated in response/ },{ from => qr/RT System/, to => 'root@localhost', subject => qr/PO for stationary/, }, { from => qr/RT System/, to => 'cfo@company.com', subject => qr/New Pending Approval: CFO Approval/, body => qr/pending your approval.*Your approval is requested.*Blah/s }; ok ($tid,$tmsg); is ($t->ReferredToBy->Count,2, "referred to by the two tickets"); my $deps = $t->DependsOn; is ($deps->Count, 1, "The ticket we created depends on one other ticket"); my $dependson_ceo= $deps->First->TargetObj; ok ($dependson_ceo->Id, "It depends on a real ticket"); like($dependson_ceo->Subject, qr/PO approval request.*stationary/); $deps = $dependson_ceo->DependsOn; is ($deps->Count, 1, "The ticket we created depends on one other ticket"); my $dependson_cfo = $deps->First->TargetObj; ok ($dependson_cfo->Id, "It depends on a real ticket"); like($dependson_cfo->Subject, qr/CFO Approval for PO.*stationary/); is_deeply([ $t->Status, $dependson_cfo->Status, $dependson_ceo->Status ], [ 'new', 'open', 'new'], 'tickets in correct state'); mail_ok { my $cfo = RT::CurrentUser->new; $cfo->Load( $users{cfo} ); $dependson_cfo->CurrentUser($cfo); my $notes = MIME::Entity->build( Data => [ 'Resources exist to be consumed.' ] ); RT::I18N::SetMIMEEntityToUTF8($notes); # convert text parts into utf-8 my ( $notesval, $notesmsg ) = $dependson_cfo->Correspond( MIMEObj => $notes ); ok($notesval, $notesmsg); my ($ok, $msg) = $dependson_cfo->SetStatus( Status => 'resolved' ); ok($ok, "cfo can approve - $msg"); } { from => qr/RT System/, to => 'ceo@company.com', subject => qr/New Pending Approval: PO approval request for PO/, body => qr/pending your approval.*CFO approved.*ok with that\?/s },{ from => qr/RT System/, to => 'root@localhost', subject => qr/Ticket Approved:/, },{ from => qr/RT System/, to => 'minion@company.com', subject => qr/Ticket Approved:/, body => qr/approved by CFO.*notes: Resources exist to be consumed/s }; is ($t->DependsOn->Count, 1, "still depends only on the CEO approval"); is ($t->ReferredToBy->Count,2, "referred to by the two tickets"); is_deeply([ $t->Status, $dependson_cfo->Status, $dependson_ceo->Status ], [ 'new', 'resolved', 'open'], 'ticket state after cfo approval'); mail_ok { my $ceo = RT::CurrentUser->new; $ceo->Load( $users{ceo} ); $dependson_ceo->CurrentUser($ceo); my $notes = MIME::Entity->build( Data => [ 'And consumed they will be.' ] ); RT::I18N::SetMIMEEntityToUTF8($notes); # convert text parts into utf-8 my ( $notesval, $notesmsg ) = $dependson_ceo->Correspond( MIMEObj => $notes ); ok($notesval, $notesmsg); my ($ok, $msg) = $dependson_ceo->SetStatus( Status => 'resolved' ); ok($ok, "ceo can approve - $msg"); } { from => qr/RT System/, to => 'root@localhost', subject => qr/Ticket Approved:/, body => qr/approved by CEO.*Its Owner may now start to act on it.*notes: And consumed they will be/s, },{ from => qr/RT System/, to => 'minion@company.com', subject => qr/Ticket Approved:/, body => qr/approved by CEO.*Its Owner may now start to act on it.*notes: And consumed they will be/s, },{ from => qr/CEO via RT/, to => 'root@localhost', subject => qr/Ticket Approved/, body => qr/The ticket has been approved, you may now start to act on it/, }; is_deeply([ $t->Status, $dependson_cfo->Status, $dependson_ceo->Status ], [ 'new', 'resolved', 'resolved'], 'ticket state after ceo approval'); $dependson_cfo->_Set( Field => 'Status', Value => 'open'); $dependson_ceo->_Set( Field => 'Status', Value => 'new'); mail_ok { my $cfo = RT::CurrentUser->new; $cfo->Load( $users{cfo} ); $dependson_cfo->CurrentUser($cfo); my $notes = MIME::Entity->build( Data => [ 'sorry, out of resources.' ] ); RT::I18N::SetMIMEEntityToUTF8($notes); # convert text parts into utf-8 my ( $notesval, $notesmsg ) = $dependson_cfo->Correspond( MIMEObj => $notes ); ok($notesval, $notesmsg); my ($ok, $msg) = $dependson_cfo->SetStatus( Status => 'rejected' ); ok($ok, "cfo can approve - $msg"); } { from => qr/RT System/, to => 'root@localhost', subject => qr/Ticket Rejected: PO for stationary/, body => qr/rejected by CFO.*out of resources/s, },{ from => qr/RT System/, to => 'minion@company.com', subject => qr/Ticket Rejected: PO for stationary/, body => qr/rejected by CFO.*out of resources/s, }; $t->Load($t->id);$dependson_ceo->Load($dependson_ceo->id); is_deeply([ $t->Status, $dependson_cfo->Status, $dependson_ceo->Status ], [ 'rejected', 'rejected', 'deleted'], 'ticket state after cfo rejection'); done_testing; rt-4.4.2/t/externalauth/0000775000175000017500000000000013131430353015001 5ustar vagrantvagrantrt-4.4.2/t/externalauth/auth_config.t0000664000175000017500000000414313131430353017456 0ustar vagrantvagrantuse strict; use warnings; use RT; my $config; BEGIN{ $config = <<'END'; Set($ExternalSettings, { 'My_LDAP' => { 'type' => 'ldap', 'server' => 'ldap.example.com', # By not passing 'user' and 'pass' we are using an anonymous # bind, which some servers to not allow 'base' => 'ou=Staff,dc=example,dc=com', 'filter' => '(objectClass=inetOrgPerson)', # Users are allowed to log in via email address or account # name 'attr_match_list' => [ 'Name', 'EmailAddress', ], # Import the following properties of the user from LDAP upon # login 'attr_map' => { 'Name' => 'sAMAccountName', 'EmailAddress' => 'mail', 'RealName' => 'cn', 'WorkPhone' => 'telephoneNumber', 'Address1' => 'streetAddress', 'City' => 'l', 'State' => 'st', 'Zip' => 'postalCode', 'Country' => 'co', }, }, } ); END } use RT::Test nodb => 1, tests => undef, config => $config; use Test::Warn; diag "Test ExternalAuth configuration processing"; my $auth_settings = RT::Config->Get('ExternalSettings'); ok( $auth_settings, 'Got ExternalSettings'); is( $auth_settings->{'My_LDAP'}{'type'}, 'ldap', 'External Auth type is ldap'); ok( RT::Config->Get('ExternalAuth'), 'ExternalAuth activated automatically'); ok( RT::Config->Set('ExternalAuthPriority', ['My_LDAP']),'Set ExternalAuthPriority'); ok( RT::Config->Set('ExternalInfoPriority', ['My_LDAP']),'Set ExternalInfoPriority'); ok( RT::Config->Set( 'ExternalSettings', undef ), 'unset ExternalSettings' ); ok( !(RT::Config->Get('ExternalSettings')), 'ExternalSettings removed'); warnings_like {RT::Config->PostLoadCheck} [qr/ExternalSettings not defined/, qr/ExternalSettings not defined/], 'Correct warnings with ExternalSettings missing'; done_testing; rt-4.4.2/t/externalauth/ldap_escaping.t0000664000175000017500000000606313131430353017764 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; eval { require RT::Authen::ExternalAuth; require Net::LDAP::Server::Test; 1; } or do { plan skip_all => 'Unable to test without Net::LDAP and Net::LDAP::Server::Test'; }; my $ldap_port = 1024 + int rand(10000) + $$ % 1024; ok( my $server = Net::LDAP::Server::Test->new( $ldap_port, auto_schema => 1 ), "spawned test LDAP server on port $ldap_port" ); my $ldap = Net::LDAP->new("localhost:$ldap_port"); $ldap->bind(); my $users_dn = "ou=users,dc=bestpractical,dc=com"; my $group_dn = "cn=test group,ou=groups,dc=bestpractical,dc=com"; $ldap->add($users_dn); $ldap->add( "cn=Smith\\, John,$users_dn", attr => [ cn => 'Smith\\, John', mail => 'jsmith@example.com', uid => 'jsmith', objectClass => 'User', userPassword => 'password', ] ); $ldap->add( "cn=John Doe,$users_dn", attr => [ cn => 'John Doe', mail => 'jdoe@example.com', uid => 'j(doe', objectClass => 'User', userPassword => 'password', ] ); $ldap->add( $group_dn, attr => [ cn => "test group", memberDN => [ "cn=Smith\\, John,$users_dn", "cn=John Doe,$users_dn" ], objectClass => 'Group', ], ); RT->Config->Set( ExternalAuthPriority => ['My_LDAP'] ); RT->Config->Set( ExternalInfoPriority => ['My_LDAP'] ); RT->Config->Set( AutoCreateNonExternalUsers => 0 ); RT->Config->Set( AutoCreate => undef ); RT->Config->Set( ExternalSettings => { 'My_LDAP' => { 'type' => 'ldap', 'server' => "127.0.0.1:$ldap_port", 'base' => $users_dn, 'filter' => '(objectClass=*)', 'd_filter' => '()', 'group' => $group_dn, 'group_attr' => 'memberDN', 'tls' => 0, 'net_ldap_args' => [ version => 3 ], 'attr_match_list' => [ 'Name', 'EmailAddress' ], 'attr_map' => { 'Name' => 'uid', 'EmailAddress' => 'mail', } }, } ); RT->Config->PostLoadCheck; my ( $baseurl, $m ) = RT::Test->started_ok(); diag "comma in the DN"; { ok( $m->login( 'jsmith', 'password' ), 'logged in' ); my $testuser = RT::User->new($RT::SystemUser); my ($ok,$msg) = $testuser->Load( 'jsmith' ); ok($ok,$msg); is($testuser->EmailAddress,'jsmith@example.com'); } diag "paren in the username"; { ok( $m->logout, 'logged out' ); # $m->login chokes on ( in 4.0.5 $m->get_ok($m->rt_base_url . "?user=j(doe;pass=password"); $m->content_like(qr/Logout/i, 'contains logout link'); $m->content_contains('j(doe', 'contains logged in user name'); my $testuser = RT::User->new($RT::SystemUser); my ($ok,$msg) = $testuser->Load( 'j(doe' ); ok($ok,$msg); is($testuser->EmailAddress,'jdoe@example.com'); } $ldap->unbind(); undef $m; done_testing; rt-4.4.2/t/externalauth/ldap.t0000664000175000017500000000546713131430353016122 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; eval { require RT::Authen::ExternalAuth; require Net::LDAP::Server::Test; 1; } or do { plan skip_all => 'Unable to test without Net::LDAP and Net::LDAP::Server::Test'; }; my $ldap_port = 1024 + int rand(10000) + $$ % 1024; ok( my $server = Net::LDAP::Server::Test->new( $ldap_port, auto_schema => 1 ), "spawned test LDAP server on port $ldap_port" ); my $ldap = Net::LDAP->new("localhost:$ldap_port"); $ldap->bind(); my $username = "testuser"; my $base = "dc=bestpractical,dc=com"; my $dn = "uid=$username,$base"; my $entry = { cn => $username, mail => "$username\@invalid.tld", uid => $username, objectClass => 'User', userPassword => 'password', }; $ldap->add( $base ); $ldap->add( $dn, attr => [%$entry] ); RT->Config->Set( ExternalAuthPriority => ['My_LDAP'] ); RT->Config->Set( ExternalInfoPriority => ['My_LDAP'] ); RT->Config->Set( AutoCreateNonExternalUsers => 0 ); RT->Config->Set( AutoCreate => undef ); RT->Config->Set( ExternalSettings => { # AN EXAMPLE DB SERVICE 'My_LDAP' => { 'type' => 'ldap', 'server' => "127.0.0.1:$ldap_port", 'base' => $base, 'filter' => '(objectClass=*)', 'd_filter' => '()', 'tls' => 0, 'net_ldap_args' => [ version => 3 ], 'attr_match_list' => [ 'Name', 'EmailAddress' ], 'attr_map' => { 'Name' => 'uid', 'EmailAddress' => 'mail', } }, } ); RT->Config->PostLoadCheck; my ( $baseurl, $m ) = RT::Test->started_ok(); diag "test uri login"; { ok( !$m->login( 'fakeuser', 'password' ), 'not logged in with fake user' ); ok( $m->login( 'testuser', 'password' ), 'logged in' ); } diag "test user creation"; { my $testuser = RT::User->new($RT::SystemUser); my ($ok,$msg) = $testuser->Load( 'testuser' ); ok($ok,$msg); is($testuser->EmailAddress,'testuser@invalid.tld'); } diag "test form login"; { $m->logout; $m->get_ok( $baseurl, 'base url' ); $m->submit_form( form_number => 1, fields => { user => 'testuser', pass => 'password', }, ); $m->text_contains( 'Logout', 'logged in via form' ); } is( $m->uri, $baseurl . '/SelfService/' , 'selfservice page' ); diag "test redirect after login"; { $m->logout; $m->get_ok( $baseurl . '/SelfService/Closed.html', 'closed tickets page' ); $m->submit_form( form_number => 1, fields => { user => 'testuser', pass => 'password', }, ); $m->text_contains( 'Logout', 'logged in' ); is( $m->uri, $baseurl . '/SelfService/Closed.html' ); } $ldap->unbind(); $m->get_warnings; undef $m; done_testing; rt-4.4.2/t/externalauth/ldap_group.t0000664000175000017500000001120513131430353017321 0ustar vagrantvagrantuse strict; use warnings; # This lets us change config during runtime without restarting BEGIN { $ENV{RT_TEST_WEB_HANDLER} = 'inline'; } use RT::Test tests => undef; eval { require RT::Authen::ExternalAuth; require Net::LDAP::Server::Test; 1; } or do { plan skip_all => 'Unable to test without Net::LDAP and Net::LDAP::Server::Test'; }; my $ldap_port = 1024 + int rand(10000) + $$ % 1024; ok( my $server = Net::LDAP::Server::Test->new( $ldap_port, auto_schema => 1 ), "spawned test LDAP server on port $ldap_port" ); my $ldap = Net::LDAP->new("localhost:$ldap_port"); $ldap->bind(); my $users_dn = "ou=users,dc=bestpractical,dc=com"; my $group_dn = "cn=test group,ou=groups,dc=bestpractical,dc=com"; $ldap->add($users_dn); for (1 .. 3) { my $uid = "testuser$_"; my $entry = { cn => "Test User $_", mail => "$uid\@example.com", uid => $uid, objectClass => 'User', userPassword => 'password', }; $ldap->add( "uid=$uid,$users_dn", attr => [%$entry] ); } $ldap->add( $group_dn, attr => [ cn => "test group", memberDN => [ "uid=testuser1,$users_dn" ], memberUid => [ "testuser2" ], objectClass => 'Group', ], ); $ldap->add( "cn=subgroup,$group_dn", attr => [ cn => "subgroup", memberUid => [ "testuser3" ], objectClass => "group", ], ); RT->Config->Set( ExternalAuthPriority => ['My_LDAP'] ); RT->Config->Set( ExternalInfoPriority => ['My_LDAP'] ); RT->Config->Set( AutoCreateNonExternalUsers => 0 ); RT->Config->Set( AutoCreate => undef ); RT->Config->Set( ExternalSettings => { 'My_LDAP' => { 'type' => 'ldap', 'server' => "127.0.0.1:$ldap_port", 'base' => $users_dn, 'filter' => '(objectClass=*)', 'd_filter' => '()', 'group' => $group_dn, 'group_attr' => 'memberDN', 'tls' => 0, 'net_ldap_args' => [ version => 3 ], 'attr_match_list' => [ 'Name', 'EmailAddress' ], 'attr_map' => { 'Name' => 'uid', 'EmailAddress' => 'mail', } }, } ); RT->Config->PostLoadCheck; my ( $baseurl, $m ) = RT::Test->started_ok(); diag "Using DN to match group membership"; diag "test uri login"; { ok( !$m->login( 'fakeuser', 'password' ), 'not logged in with fake user' ); $m->warning_like(qr/FAILED LOGIN for fakeuser/); ok( !$m->login( 'testuser2', 'password' ), 'not logged in with real user not in group' ); $m->next_warning_like(qr/LDAP_NO_SUCH_OBJECT/); $m->next_warning_like(qr/LDAP_NO_SUCH_OBJECT/); $m->next_warning_like(qr/FAILED LOGIN for testuser2/); ok( $m->login( 'testuser1', 'password' ), 'logged in' ); } diag "test user creation"; { my $testuser = RT::User->new($RT::SystemUser); my ($ok,$msg) = $testuser->Load( 'testuser1' ); ok($ok,$msg); is($testuser->EmailAddress,'testuser1@example.com'); } $m->logout; diag "Using uid to match group membership"; RT->Config->Get('ExternalSettings')->{My_LDAP}{group_attr} = 'memberUid'; RT->Config->Get('ExternalSettings')->{My_LDAP}{group_attr_value} = 'uid'; diag "test uri login"; { ok( !$m->login( 'testuser1', 'password' ), 'not logged in with real user not in group' ); $m->next_warning_like(qr/LDAP_NO_SUCH_OBJECT/); $m->next_warning_like(qr/LDAP_NO_SUCH_OBJECT/); $m->next_warning_like(qr/FAILED LOGIN for testuser1/); ok( $m->login( 'testuser2', 'password' ), 'logged in' ); } $m->logout; diag "Subgroup isn't used with default group_scope of base"; { local $TODO = 'Net::LDAP::Server::Test bug: https://rt.cpan.org/Ticket/Display.html?id=78612' if $Net::LDAP::Server::Test::VERSION <= 0.13; ok( !$m->login( 'testuser3', 'password' ), 'not logged in from subgroup' ); $m->next_warning_like(qr/LDAP_NO_SUCH_OBJECT/); $m->next_warning_like(qr/LDAP_NO_SUCH_OBJECT/); $m->next_warning_like(qr/FAILED LOGIN for testuser3/); $m->logout; } diag "Using group_scope of sub not base"; RT->Config->Get('ExternalSettings')->{My_LDAP}{group_scope} = 'sub'; diag "test uri login"; { ok( !$m->login( 'testuser1', 'password' ), 'not logged in with real user not in group' ); $m->warning_like(qr/FAILED LOGIN for testuser1/); ok( $m->login( 'testuser2', 'password' ), 'logged in as testuser2' ); $m->logout; ok( $m->login( 'testuser3', 'password' ), 'logged in as testuser3 from subgroup' ); $m->logout; } $ldap->unbind(); undef $m; done_testing; rt-4.4.2/t/externalauth/sqlite.t0000664000175000017500000000632213131430353016472 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; eval { require RT::Authen::ExternalAuth; require Net::LDAP::Server::Test; 1; } or do { plan skip_all => 'Unable to test without Net::LDAP and Net::LDAP::Server::Test'; }; use DBI; use File::Temp; use Digest::MD5; use File::Spec; eval { require DBD::SQLite; } or do { plan skip_all => 'Unable to test without DBD::SQLite'; }; my $dir = File::Temp::tempdir( CLEANUP => 1 ); my $dbname = File::Spec->catfile( $dir, 'rtauthtest' ); my $table = 'users'; my $dbh = DBI->connect("dbi:SQLite:$dbname"); my $password = Digest::MD5::md5_hex('password'); my $schema = <<"EOF"; CREATE TABLE users ( username varchar(200) NOT NULL, password varchar(40) NULL, email varchar(16) NULL ); EOF $dbh->do( $schema ); $dbh->do( "INSERT INTO $table VALUES ( 'testuser', '$password', 'testuser\@invalid.tld')" ); RT->Config->Set( ExternalAuthPriority => ['My_SQLite'] ); RT->Config->Set( ExternalInfoPriority => ['My_SQLite'] ); RT->Config->Set( AutoCreateNonExternalUsers => 0 ); RT->Config->Set( AutoCreate => undef ); RT->Config->Set( ExternalSettings => { 'My_SQLite' => { 'type' => 'db', 'database' => $dbname, 'table' => $table, 'dbi_driver' => 'SQLite', 'u_field' => 'username', 'p_field' => 'password', 'p_enc_pkg' => 'Digest::MD5', 'p_enc_sub' => 'md5_hex', 'attr_match_list' => ['Name'], 'attr_map' => { 'Name' => 'username', 'EmailAddress' => 'email', } }, } ); RT->Config->PostLoadCheck; my ( $baseurl, $m ) = RT::Test->started_ok(); diag "test uri login"; { ok( !$m->login( 'fakeuser', 'password' ), 'not logged in with fake user' ); ok( !$m->login( 'testuser', 'wrongpassword' ), 'not logged in with wrong password' ); ok( $m->login( 'testuser', 'password' ), 'logged in' ); } diag "test user creation"; { my $testuser = RT::User->new($RT::SystemUser); my ($ok,$msg) = $testuser->Load( 'testuser' ); ok($ok,$msg); is($testuser->EmailAddress,'testuser@invalid.tld'); } diag "test form login"; { $m->logout; $m->get_ok( $baseurl, 'base url' ); $m->submit_form( form_number => 1, fields => { user => 'testuser', pass => 'password', }, ); $m->text_contains( 'Logout', 'logged in via form' ); } is( $m->uri, $baseurl . '/SelfService/', 'selfservice page' ); diag "test redirect after login"; { $m->logout; $m->get_ok( $baseurl . '/SelfService/Closed.html', 'closed tickets page' ); $m->submit_form( form_number => 1, fields => { user => 'testuser', pass => 'password', }, ); $m->text_contains( 'Logout', 'logged in' ); is( $m->uri, $baseurl . '/SelfService/Closed.html' ); } diag "test with user and pass in URL"; { $m->logout; $m->get_ok( $baseurl . '/SelfService/Closed.html?user=testuser;pass=password', 'closed tickets page' ); $m->text_contains( 'Logout', 'logged in' ); is( $m->uri, $baseurl . '/SelfService/Closed.html?user=testuser;pass=password' ); } $m->get_warnings; undef $m; done_testing; rt-4.4.2/t/externalauth/sessions.t0000664000175000017500000000631113131430353017035 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; eval { require RT::Authen::ExternalAuth; require Net::LDAP::Server::Test; 1; } or do { plan skip_all => 'Unable to test without Net::LDAP and Net::LDAP::Server::Test'; }; setup_auth_source(); RT->Config->Set("WebSessionClass" => "Apache::Session::File"); { my %sessions; sub sessions_seen_is { local $Test::Builder::Level = $Test::Builder::Level + 1; my ($agent, $expected, $msg) = @_; $msg ||= "$expected sessions seen"; $agent->cookie_jar->scan(sub { $sessions{$_[2]}++ if $_[1] =~ /SID/; }); is scalar keys %sessions, $expected, $msg; } } my ($base, $m) = RT::Test->started_ok(); diag "Login as tom"; { sessions_seen_is($m, 0); $m->get_ok("/"); $m->submit_form( with_fields => { user => 'tom', pass => 'password', }, ); $m->text_contains( 'Logout', 'logged in via form' ); sessions_seen_is($m, 1); $m->get_ok("/NoAuth/Logout.html"); sessions_seen_is($m, 2); } diag "Login as alex"; { $m->get_ok("/"); $m->submit_form( with_fields => { user => 'alex', pass => 'password', }, ); $m->text_contains( 'Logout', 'logged in via form' ); sessions_seen_is($m, 3); $m->get_ok("/NoAuth/Logout.html"); sessions_seen_is($m, 4); } undef $m; done_testing; sub setup_auth_source { require DBI; require File::Temp; require Digest::MD5; require File::Spec; eval { require DBD::SQLite; } or do { plan skip_all => 'Unable to test without DBD::SQLite'; }; my $dir = File::Temp::tempdir( CLEANUP => 1 ); my $dbname = File::Spec->catfile( $dir, 'rtauthtest' ); my $table = 'users'; my $dbh = DBI->connect("dbi:SQLite:$dbname"); my $password = Digest::MD5::md5_hex('password'); my $schema = <<" EOF"; CREATE TABLE users ( username varchar(200) NOT NULL, password varchar(40) NULL, email varchar(16) NULL ); EOF $dbh->do( $schema ); foreach my $user ( qw(tom alex) ){ $dbh->do(<<" SQL"); INSERT INTO $table VALUES ( '$user', '$password', '$user\@invalid.tld'); SQL } RT->Config->Set( ExternalAuthPriority => ['My_SQLite'] ); RT->Config->Set( ExternalInfoPriority => ['My_SQLite'] ); RT->Config->Set( AutoCreateNonExternalUsers => 0 ); RT->Config->Set( AutoCreate => undef ); RT->Config->Set( ExternalSettings => { 'My_SQLite' => { 'type' => 'db', 'database' => $dbname, 'table' => $table, 'dbi_driver' => 'SQLite', 'u_field' => 'username', 'p_field' => 'password', 'p_enc_pkg' => 'Digest::MD5', 'p_enc_sub' => 'md5_hex', 'attr_match_list' => ['Name'], 'attr_map' => { 'Name' => 'username', 'EmailAddress' => 'email', } }, } ); RT->Config->PostLoadCheck; } rt-4.4.2/t/externalauth/ldap_privileged.t0000664000175000017500000000471113131430353020323 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; eval { require RT::Authen::ExternalAuth; require Net::LDAP::Server::Test; 1; } or do { plan skip_all => 'Unable to test without Net::LDAP and Net::LDAP::Server::Test'; }; my $ldap_port = 1024 + int rand(10000) + $$ % 1024; ok( my $server = Net::LDAP::Server::Test->new( $ldap_port, auto_schema => 1 ), "spawned test LDAP server on port $ldap_port" ); my $ldap = Net::LDAP->new("localhost:$ldap_port"); $ldap->bind(); my $username = "testuser"; my $base = "dc=bestpractical,dc=com"; my $dn = "uid=$username,$base"; my $entry = { cn => $username, mail => "$username\@invalid.tld", uid => $username, objectClass => 'User', userPassword => 'password', }; $ldap->add( $base ); $ldap->add( $dn, attr => [%$entry] ); RT->Config->Set( ExternalAuthPriority => ['My_LDAP'] ); RT->Config->Set( ExternalInfoPriority => ['My_LDAP'] ); RT->Config->Set( AutoCreateNonExternalUsers => 0 ); RT->Config->Set( AutoCreate => { Privileged => 1 } ); RT->Config->Set( ExternalSettings => { # AN EXAMPLE DB SERVICE 'My_LDAP' => { 'type' => 'ldap', 'server' => "127.0.0.1:$ldap_port", 'base' => $base, 'filter' => '(objectClass=*)', 'tls' => 0, 'net_ldap_args' => [ version => 3 ], 'attr_match_list' => [ 'Name', 'EmailAddress' ], 'attr_map' => { 'Name' => 'uid', 'EmailAddress' => 'mail', } }, } ); RT->Config->PostLoadCheck; my ( $baseurl, $m ) = RT::Test->started_ok(); diag "test uri login"; { ok( !$m->login( 'fakeuser', 'password' ), 'not logged in with fake user' ); ok( $m->login( 'testuser', 'password' ), 'logged in' ); } diag "test user creation"; { my $testuser = RT::User->new($RT::SystemUser); my ($ok,$msg) = $testuser->Load( 'testuser' ); ok($ok,$msg); is($testuser->EmailAddress,'testuser@invalid.tld'); } diag "test form login"; { $m->logout; $m->get_ok( $baseurl, 'base url' ); $m->submit_form( form_number => 1, fields => { user => 'testuser', pass => 'password', }, ); $m->text_contains( 'Logout', 'logged in via form' ); } like( $m->uri, qr!$baseurl/(index\.html)?!, 'privileged home page' ); $ldap->unbind(); $m->get_warnings; undef $m; done_testing; rt-4.4.2/t/externalauth/obfuscate-password.t0000664000175000017500000000167613131430353021013 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; eval { require RT::Authen::ExternalAuth; 1; } or do { plan skip_all => 'Unable to test without Net::LDAP'; }; RT->Config->Set( ExternalSettings => { 'My_LDAP' => { type => 'ldap', user => 'ldap_bind', pass => 'sekrit', }, 'My_DBI' => { type => 'db', user => 'external_db_user', pass => 'nottelling', }, } ); my ($base, $m) = RT::Test->started_ok(); ok( $m->login, 'logged in' ); $m->get_ok('/Admin/Tools/Configuration.html', 'config page'); $m->content_lacks('sekrit', 'external source 1 pass obfuscated'); $m->content_lacks('nottelling', 'external source 2 pass obfuscated'); $m->content_contains('ldap_bind', 'sanity check: we do have external config dumped'); $m->content_contains('external_db_user', 'sanity check: we do have external config dumped'); undef $m; done_testing; rt-4.4.2/t/fts/0000775000175000017500000000000013131430353013071 5ustar vagrantvagrantrt-4.4.2/t/fts/indexed_pg.t0000664000175000017500000000760613131430353015375 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => undef; plan skip_all => 'Not Pg' unless RT->Config->Get('DatabaseType') eq 'Pg'; my ($major, $minor) = $RT::Handle->dbh->get_info(18) =~ /^0*(\d+)\.0*(\d+)/; plan skip_all => "Need Pg 8.2 or higher; we have $major.$minor" if "$major.$minor" < 8.2; RT->Config->Set( FullTextSearch => Enable => 1, Indexed => 1, Column => 'ContentIndex', Table => 'AttachmentsIndex' ); setup_indexing(); my $q = RT::Test->load_or_create_queue( Name => 'General' ); ok $q && $q->id, 'loaded or created queue'; my $queue = $q->Name; sub setup_indexing { my %args = ( 'no-ask' => 1, command => $RT::SbinPath .'/rt-setup-fulltext-index', dba => $ENV{'RT_DBA_USER'}, 'dba-password' => $ENV{'RT_DBA_PASSWORD'}, ); my ($exit_code, $output) = RT::Test->run_and_capture( %args ); ok(!$exit_code, "setted up index") or diag "output: $output"; } sub sync_index { my %args = ( command => $RT::SbinPath .'/rt-fulltext-indexer', ); my ($exit_code, $output) = RT::Test->run_and_capture( %args ); ok(!$exit_code, "setted up index") or diag "output: $output"; } sub run_tests { my @test = @_; while ( my ($query, $checks) = splice @test, 0, 2 ) { run_test( $query, %$checks ); } } my @tickets; sub run_test { my ($query, %checks) = @_; my $query_prefix = join ' OR ', map 'id = '. $_->id, @tickets; my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL( "( $query_prefix ) AND ( $query )" ); my $error = 0; my $count = 0; $count++ foreach grep $_, values %checks; is($tix->Count, $count, "found correct number of ticket(s) by '$query'") or $error = 1; my $good_tickets = ($tix->Count == $count); while ( my $ticket = $tix->Next ) { next if $checks{ $ticket->id }; diag $ticket->Subject ." ticket has been found when it's not expected"; $good_tickets = 0; } ok( $good_tickets, "all tickets are good with '$query'" ) or $error = 1; diag "Wrong SQL query for '$query':". $tix->BuildSelectQuery if $error; } my $blase = Encode::decode_utf8("blasé"); @tickets = RT::Test->create_tickets( { Queue => $q->id }, { Subject => 'fts test 1', Content => "book $blase" }, { Subject => 'fts test 2', Content => "bars blasé", ContentType => 'text/html' }, ); sync_index(); my $book = $tickets[0]; my $bars = $tickets[1]; run_tests( "Content LIKE 'book'" => { $book->id => 1, $bars->id => 0 }, "Content LIKE 'bars'" => { $book->id => 0, $bars->id => 1 }, # Unicode searching "Content LIKE '$blase'" => { $book->id => 1, $bars->id => 1 }, "Content LIKE 'blase'" => { $book->id => 0, $bars->id => 0 }, "Content LIKE 'blas'" => { $book->id => 0, $bars->id => 0 }, # make sure that Pg stemming works "Content LIKE 'books'" => { $book->id => 1, $bars->id => 0 }, "Content LIKE 'bar'" => { $book->id => 0, $bars->id => 1 }, # no matches "Content LIKE 'baby'" => { $book->id => 0, $bars->id => 0 }, "Content LIKE 'pubs'" => { $book->id => 0, $bars->id => 0 }, ); # Test the "ts_vector too long" skip my $content = ""; $content .= "$_\n" for 1..200_000; @tickets = RT::Test->create_tickets( { Queue => $q->id }, { Subject => 'Short content', Content => '50' }, { Subject => 'Long content', Content => $content }, { Subject => 'More short', Content => '50' }, ); my ($exit_code, $output) = RT::Test->run_and_capture( command => $RT::SbinPath .'/rt-fulltext-indexer' ); like($output, qr/string is too long for tsvector/, "Got a warning for the ticket"); ok(!$exit_code, "set up index"); # The long content is skipped entirely run_tests( "Content LIKE '1'" => { $tickets[0]->id => 0, $tickets[1]->id => 0, $tickets[2]->id => 0 }, "Content LIKE '50'" => { $tickets[0]->id => 1, $tickets[1]->id => 0, $tickets[2]->id => 1 }, ); @tickets = (); done_testing; rt-4.4.2/t/fts/indexed_mysql.t0000664000175000017500000000461413131430353016130 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => undef; plan skip_all => 'Not mysql' unless RT->Config->Get('DatabaseType') eq 'mysql'; RT->Config->Set( FullTextSearch => Enable => 1, Indexed => 1, Table => 'AttachmentsIndex' ); setup_indexing(); my $q = RT::Test->load_or_create_queue( Name => 'General' ); ok $q && $q->id, 'loaded or created queue'; my $queue = $q->Name; sub setup_indexing { my %args = ( 'no-ask' => 1, command => $RT::SbinPath .'/rt-setup-fulltext-index', dba => $ENV{'RT_DBA_USER'}, 'dba-password' => $ENV{'RT_DBA_PASSWORD'}, ); my ($exit_code, $output) = RT::Test->run_and_capture( %args ); ok(!$exit_code, "setted up index") or diag "output: $output"; } sub sync_index { my %args = ( command => $RT::SbinPath .'/rt-fulltext-indexer', ); my ($exit_code, $output) = RT::Test->run_and_capture( %args ); ok(!$exit_code, "setted up index") or diag "output: $output"; } sub run_tests { my @test = @_; while ( my ($query, $checks) = splice @test, 0, 2 ) { run_test( $query, %$checks ); } } my @tickets; sub run_test { my ($query, %checks) = @_; my $query_prefix = join ' OR ', map 'id = '. $_->id, @tickets; my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL( "( $query_prefix ) AND ( $query )" ); my $error = 0; my $count = 0; $count++ foreach grep $_, values %checks; is($tix->Count, $count, "found correct number of ticket(s) by '$query'") or $error = 1; my $good_tickets = ($tix->Count == $count); while ( my $ticket = $tix->Next ) { next if $checks{ $ticket->Subject }; diag $ticket->Subject ." ticket has been found when it's not expected"; $good_tickets = 0; } ok( $good_tickets, "all tickets are good with '$query'" ) or $error = 1; diag "Wrong SQL query for '$query':". $tix->BuildSelectQuery if $error; } @tickets = RT::Test->create_tickets( { Queue => $q->id }, { Subject => 'first', Content => 'english' }, { Subject => 'second', Content => 'french' }, { Subject => 'third', Content => 'spanish' }, { Subject => 'fourth', Content => 'german' }, ); sync_index(); run_tests( "Content LIKE 'english'" => { first => 1, second => 0, third => 0, fourth => 0 }, "Content LIKE 'french'" => { first => 0, second => 1, third => 0, fourth => 0 }, ); @tickets = (); done_testing; rt-4.4.2/t/fts/indexed_sphinx.t0000664000175000017500000001115213131430353016267 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => undef; plan skip_all => 'Not mysql' unless RT->Config->Get('DatabaseType') eq 'mysql'; plan skip_all => "No SphinxSE in mysql" unless $RT::Handle->CheckSphinxSE; my %sphinx; $sphinx{'searchd'} = RT::Test->find_executable('searchd'); $sphinx{'indexer'} = RT::Test->find_executable('indexer'); plan skip_all => "No searchd and indexer under PATH" unless $sphinx{'searchd'} && $sphinx{'indexer'}; plan skip_all => "Can't determine sphinx version" unless `$sphinx{searchd} --version` =~ /Sphinx (\d+)\.(\d+)(?:\.(\d+))?/; $sphinx{version} = sprintf "%d.%03d%03d", $1, $2, ($3 || 0); plan tests => 15; setup_indexing(); my $q = RT::Test->load_or_create_queue( Name => 'General' ); ok $q && $q->id, 'loaded or created queue'; my $queue = $q->Name; sub setup_indexing { # Since we're not running a webserver in this test, use the # known-safe port we determined at test setup my $port = $RT::Test::port; my ($exit_code, $output) = RT::Test->run_and_capture( 'no-ask' => 1, command => $RT::SbinPath .'/rt-setup-fulltext-index', dba => $ENV{'RT_DBA_USER'}, 'dba-password' => $ENV{'RT_DBA_PASSWORD'}, url => "sphinx://127.0.0.1:$port/rt", 'index-type' => 'sphinx', ); ok(!$exit_code, "setted up index"); diag "output: $output" if $ENV{'TEST_VERBOSE'}; my $tmp = $sphinx{'directory'} = File::Spec->catdir( RT::Test->temp_directory, 'sphinx' ); mkdir $tmp; my $sphinx_conf = $output; $sphinx_conf =~ s/.*?source rt \{/source rt {/ms; $sphinx_conf =~ s{\Q$RT::VarPath\E/sphinx/}{$tmp/}g; # Remove lines for different versions of sphinx than we're running $sphinx_conf =~ s{^(\s+ \# \s+ for \s+ sphinx \s+ (<=?|>=?|=) \s* (\d+) \. (\d+) (?:\. (\d+))? .* \n) ((?:^\s* \w .*\n)+)}{ my $v = sprintf "%d.%03d%03d", $3, $4, ($5 || 0); my $prefix = eval "$sphinx{version} $2 $v" ? "" : "#"; $1 . join("\n",map{"$prefix$_"} split "\n", $6) . "\n"; }emix; $sphinx{'config'} = File::Spec->catfile( $tmp, 'sphinx.conf' ); { open my $fh, ">", $sphinx{'config'}; print $fh $sphinx_conf; close $fh; } sync_index(); { my ($exit_code, $output) = RT::Test->run_and_capture( command => $sphinx{'searchd'}, config => $sphinx{'config'}, ); ok(!$exit_code, "setted up index") or diag "output: $output"; $sphinx{'started'} = 1 if !$exit_code; } } sub sync_index { local $SIG{'CHLD'} = 'DEFAULT'; local $SIG{'PIPE'} = 'DEFAULT'; open my $fh, '-|', $sphinx{'indexer'}, '--all', '--config' => $sphinx{'config'}, $sphinx{'started'}? ('--rotate') : (), ; my $output = <$fh>; close $fh; my $exit_code = $?>>8; ok(!$exit_code, "indexed") or diag "output: $output"; # We may need to wait a second for searchd to pick up the changes sleep 1; } sub run_tests { my @test = @_; while ( my ($query, $checks) = splice @test, 0, 2 ) { run_test( $query, %$checks ); } } my @tickets; sub run_test { my ($query, %checks) = @_; my $query_prefix = join ' OR ', map 'id = '. $_->id, @tickets; my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL( "( $query_prefix ) AND ( $query )" ); my $error = 0; my $count = 0; $count++ foreach grep $_, values %checks; is($tix->Count, $count, "found correct number of ticket(s) by '$query'") or $error = 1; my $good_tickets = ($tix->Count == $count); while ( my $ticket = $tix->Next ) { next if $checks{ $ticket->Subject }; diag $ticket->Subject ." ticket has been found when it's not expected"; $good_tickets = 0; } ok( $good_tickets, "all tickets are good with '$query'" ) or $error = 1; diag "Wrong SQL query for '$query':". $tix->BuildSelectQuery if $error; } @tickets = RT::Test->create_tickets( { Queue => $q->id }, { Subject => 'book', Content => 'book' }, { Subject => 'bar', Content => 'bar' }, ); sync_index(); RT->Config->Set( FullTextSearch => Enable => 1, Indexed => 1, Table => 'AttachmentsIndex', MaxMatches => 1000, Sphinx => 1 ); run_tests( "Content LIKE 'book'" => { book => 1, bar => 0 }, "Content LIKE 'bar'" => { book => 0, bar => 1 }, ); END { my $Test = RT::Test->builder; return if $Test->{Original_Pid} != $$; return unless $sphinx{'started'}; my $pid = int RT::Test->file_content([$sphinx{'directory'}, 'searchd.pid']); kill TERM => $pid if $pid; } rt-4.4.2/t/fts/not_indexed.t0000664000175000017500000000334313131430353015561 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 20; RT->Config->Set( FullTextSearch => Enable => 1, Indexed => 0 ); my $q = RT::Test->load_or_create_queue( Name => 'General' ); ok $q && $q->id, 'loaded or created queue'; my $queue = $q->Name; sub run_tests { my @test = @_; while ( my ($query, $checks) = splice @test, 0, 2 ) { run_test( $query, %$checks ); } } my @tickets; sub run_test { my ($query, %checks) = @_; my $query_prefix = join ' OR ', map 'id = '. $_->id, @tickets; my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL( "( $query_prefix ) AND ( $query )" ); my $error = 0; my $count = 0; $count++ foreach grep $_, values %checks; is($tix->Count, $count, "found correct number of ticket(s) by '$query'") or $error = 1; my $good_tickets = ($tix->Count == $count); while ( my $ticket = $tix->Next ) { next if $checks{ $ticket->Subject }; diag $ticket->Subject ." ticket has been found when it's not expected"; $good_tickets = 0; } ok( $good_tickets, "all tickets are good with '$query'" ) or $error = 1; diag "Wrong SQL query for '$query':". $tix->BuildSelectQuery if $error; } @tickets = RT::Test->create_tickets( { Queue => $q->id }, { Subject => 'book', Content => 'book' }, { Subject => 'bar', Content => 'bar' }, { Subject => 'no content', Content => undef }, ); run_tests( "Content LIKE 'book'" => { book => 1, bar => 0 }, "Content LIKE 'bar'" => { book => 0, bar => 1 }, "(Content LIKE 'baz' OR Subject LIKE 'con')" => { 'no content' => 1 }, "(Content LIKE 'bar' OR Subject LIKE 'con')" => { 'no content' => 1, bar => 1 }, "(Content LIKE 'bar' OR Subject LIKE 'missing')" => { bar => 1 }, ); rt-4.4.2/t/fts/indexed_oracle.t0000664000175000017500000000434213131430353016226 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => undef; plan skip_all => 'Not Oracle' unless RT->Config->Get('DatabaseType') eq 'Oracle'; plan tests => 13; RT->Config->Set( FullTextSearch => Enable => 1, Indexed => 1, IndexName => 'rt_fts_index' ); setup_indexing(); my $q = RT::Test->load_or_create_queue( Name => 'General' ); ok $q && $q->id, 'loaded or created queue'; my $queue = $q->Name; sub setup_indexing { my %args = ( 'no-ask' => 1, command => $RT::SbinPath .'/rt-setup-fulltext-index', dba => $ENV{'RT_DBA_USER'}, 'dba-password' => $ENV{'RT_DBA_PASSWORD'}, ); my ($exit_code, $output) = RT::Test->run_and_capture( %args ); ok(!$exit_code, "setted up index") or diag "output: $output"; } sub sync_index { my %args = ( command => $RT::SbinPath .'/rt-fulltext-indexer', ); my ($exit_code, $output) = RT::Test->run_and_capture( %args ); ok(!$exit_code, "synced the index") or diag "output: $output"; } sub run_tests { my @test = @_; while ( my ($query, $checks) = splice @test, 0, 2 ) { run_test( $query, %$checks ); } } my @tickets; sub run_test { my ($query, %checks) = @_; my $query_prefix = join ' OR ', map 'id = '. $_->id, @tickets; my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL( "( $query_prefix ) AND ( $query )" ); my $error = 0; my $count = 0; $count++ foreach grep $_, values %checks; is($tix->Count, $count, "found correct number of ticket(s) by '$query'") or $error = 1; my $good_tickets = ($tix->Count == $count); while ( my $ticket = $tix->Next ) { next if $checks{ $ticket->Subject }; diag $ticket->Subject ." ticket has been found when it's not expected"; $good_tickets = 0; } ok( $good_tickets, "all tickets are good with '$query'" ) or $error = 1; diag "Wrong SQL query for '$query':". $tix->BuildSelectQuery if $error; } @tickets = RT::Test->create_tickets( { Queue => $q->id }, { Subject => 'book', Content => 'book' }, { Subject => 'bar', Content => 'bar' }, ); sync_index(); run_tests( "Content LIKE 'book'" => { book => 1, bar => 0 }, "Content LIKE 'bar'" => { book => 0, bar => 1 }, ); @tickets = (); rt-4.4.2/t/ticket/0000775000175000017500000000000013131430353013560 5ustar vagrantvagrantrt-4.4.2/t/ticket/clicky.t0000664000175000017500000000704213131430353015226 0ustar vagrantvagrant use strict; use warnings; use Test::More; use RT::Test tests => 20; my $plain = MIME::Entity->build( Subject => 'plain mime', Type => 'text/plain', Data => <build( Type => 'text/html', Subject => 'html mime', Data => <wiki or find known bugs on http://rt3.fsck.com to test anchor: https://wiki.bestpractical.com/test#anchor -- Best regards. BestPractical Team. END ); my $ticket = RT::Ticket->new( RT->SystemUser ); my ($plain_id) = $ticket->Create( Subject => 'test', Queue => 'General', MIMEObj => $plain, ); ok($plain_id, "We created a ticket #$plain_id"); my ($html_id) = $ticket->Create( Subject => 'test', Queue => 'General', MIMEObj => $html, ); ok($html_id, "We created a ticket #$html_id"); diag 'test no clicky'; { RT->Config->Set( 'Active_MakeClicky' => () ); my ( $baseurl, $m ) = RT::Test->started_ok; ok $m->login, 'logged in'; $m->goto_ticket($plain_id); my @links = $m->find_link( tag => 'a', url => 'http://wiki.bestpractical.com', ); ok( @links == 0, 'no clicky link found with plain message' ); @links = $m->find_link( tag => 'a', url => 'http://rt3.fsck.com', ); ok( @links == 0, 'no extra clicky link found with html message' ); } diag 'test httpurl'; { RT::Test->stop_server; RT->Config->Set( 'Active_MakeClicky' => qw/httpurl/ ); my ( $baseurl, $m ) = RT::Test->started_ok; ok $m->login, 'logged in'; $m->goto_ticket($plain_id); my @links = $m->find_link( tag => 'a', url => 'http://wiki.bestpractical.com', text => 'Open URL', ); ok( scalar @links, 'found clicky link' ); @links = $m->find_link( tag => 'a', url => 'https://wiki.bestpractical.com/test#anchor', text => 'Open URL', ); ok( scalar @links, 'found clicky link with anchor' ); $m->goto_ticket($html_id); @links = $m->find_link( tag => 'a', url => 'http://wiki.bestpractical.com', text => 'Open URL', ); ok( @links == 0, 'not make clicky links clicky twice' ); @links = $m->find_link( tag => 'a', url => 'http://rt3.fsck.com', text => 'Open URL', ); ok( scalar @links, 'found clicky link' ); @links = $m->find_link( tag => 'a', url => 'https://wiki.bestpractical.com/test#anchor', text => 'Open URL', ); ok( scalar @links, 'found clicky link with anchor' ); } diag 'test httpurl_overwrite'; { RT::Test->stop_server; RT->Config->Set( 'Active_MakeClicky' => 'httpurl_overwrite' ); my ( $baseurl, $m ) = RT::Test->started_ok; ok $m->login, 'logged in'; ok $m->goto_ticket($plain_id), 'opened diplay page of the ticket'; my @links = $m->find_link( tag => 'a', url => 'http://wiki.bestpractical.com', text => 'http://wiki.bestpractical.com', ); ok( scalar @links, 'found clicky link' ); @links = $m->find_link( tag => 'a', url => 'https://wiki.bestpractical.com/test#anchor', text => 'https://wiki.bestpractical.com/test#anchor', ); ok( scalar @links, 'found clicky link with anchor' ); } rt-4.4.2/t/ticket/batch-upload-csv.t0000664000175000017500000000247313131430353017107 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 12; use_ok('RT'); use_ok('RT::Action::CreateTickets'); my $QUEUE = 'uploadtest-'.$$; my $queue_obj = RT::Queue->new(RT->SystemUser); $queue_obj->Create(Name => $QUEUE); my $cf = RT::CustomField->new(RT->SystemUser); my ($val,$msg) = $cf->Create(Name => 'Work Package-'.$$, Type => 'Freeform', LookupType => RT::Ticket->CustomFieldLookupType, MaxValues => 1); ok($cf->id); ok($val,$msg); ($val, $msg) = $cf->AddToObject($queue_obj); ok($val,$msg); ok($queue_obj->TicketCustomFields()->Count, "We have a custom field, at least"); my $data = <Name]} create-1,$QUEUE,hi,new,root,2.0 create-2,$QUEUE,hello,new,root,3.0 EOF my $action = RT::Action::CreateTickets->new(CurrentUser => RT::CurrentUser->new('root')); ok ($action->CurrentUser->id , "WE have a current user"); $action->Parse(Content => $data); my @results = $action->CreateByTemplate(); my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL ("Queue = '". $QUEUE."'"); $tix->OrderBy( FIELD => 'id', ORDER => 'ASC' ); is($tix->Count, 2, '2 tickets'); my $first = $tix->First(); is($first->Subject(), 'hi'); is($first->FirstCustomFieldValue($cf->id), '2.0'); my $second = $tix->Next; is($second->Subject(), 'hello'); is($second->FirstCustomFieldValue($cf->id), '3.0'); rt-4.4.2/t/ticket/add-watchers.t0000664000175000017500000001326013131430353016315 0ustar vagrantvagrantuse RT::Test nodata => 1, tests => 34; use strict; use warnings; use RT::Queue; use RT::User; use RT::Group; use RT::Ticket; use RT::CurrentUser; # clear all global right my $acl = RT::ACL->new(RT->SystemUser); $acl->Limit( FIELD => 'RightName', OPERATOR => '!=', VALUE => 'SuperUser' ); $acl->LimitToObject( RT->System ); while( my $ace = $acl->Next ) { $ace->Delete; } # create new queue to be sure we do not mess with rights my $queue = RT::Queue->new(RT->SystemUser); my ($queue_id) = $queue->Create( Name => 'watcher tests '.$$); ok( $queue_id, 'queue created for watcher tests' ); # new privileged user to check rights my $user = RT::User->new( RT->SystemUser ); my ($user_id) = $user->Create( Name => 'watcher'.$$, EmailAddress => "watcher$$".'@localhost', Privileged => 1, Password => 'qwe123', ); my $cu= RT::CurrentUser->new($user); # make sure user can see tickets in the queue my $principal = $user->PrincipalObj; ok( $principal, "principal loaded" ); $principal->GrantRight( Right => 'ShowTicket', Object => $queue ); $principal->GrantRight( Right => 'SeeQueue' , Object => $queue ); ok( $user->HasRight( Right => 'SeeQueue', Object => $queue ), "user can see queue" ); ok( $user->HasRight( Right => 'ShowTicket', Object => $queue ), "user can show queue tickets" ); ok( !$user->HasRight( Right => 'ModifyTicket', Object => $queue ), "user can't modify queue tickets" ); ok( !$user->HasRight( Right => 'Watch', Object => $queue ), "user can't watch queue tickets" ); my $ticket = RT::Ticket->new( RT->SystemUser ); my ($rv, $msg) = $ticket->Create( Subject => 'watcher tests', Queue => $queue->Name ); ok( $ticket->id, "ticket created" ); my $ticket2 = RT::Ticket->new( $cu ); $ticket2->Load( $ticket->id ); ok( $ticket2->Subject, "ticket load by user" ); # user can add self to ticket only after getting Watch right ($rv, $msg) = $ticket2->AddWatcher( Type => 'Cc', PrincipalId => $user->PrincipalId ); ok( !$rv, "user can't add self as Cc" ); ($rv, $msg) = $ticket2->AddWatcher( Type => 'Requestor', PrincipalId => $user->PrincipalId ); ok( !$rv, "user can't add self as Requestor" ); $principal->GrantRight( Right => 'Watch' , Object => $queue ); ok( $user->HasRight( Right => 'Watch', Object => $queue ), "user can watch queue tickets" ); ($rv, $msg) = $ticket2->AddWatcher( Type => 'Cc', PrincipalId => $user->PrincipalId ); ok( $rv, "user can add self as Cc by PrincipalId" ); ($rv, $msg) = $ticket2->AddWatcher( Type => 'Requestor', PrincipalId => $user->PrincipalId ); ok( $rv, "user can add self as Requestor by PrincipalId" ); # remove user and try adding with Email address ($rv, $msg) = $ticket->DeleteWatcher( Type => 'Cc', PrincipalId => $user->PrincipalId ); ok( $rv, "watcher removed by PrincipalId" ); ($rv, $msg) = $ticket->DeleteWatcher( Type => 'Requestor', Email => $user->EmailAddress ); ok( $rv, "watcher removed by Email" ); ($rv, $msg) = $ticket2->AddWatcher( Type => 'Cc', Email => $user->EmailAddress ); ok( $rv, "user can add self as Cc by Email" ); ($rv, $msg) = $ticket2->AddWatcher( Type => 'Requestor', Email => $user->EmailAddress ); ok( $rv, "user can add self as Requestor by Email" ); # remove user and try adding by username # This worked in 3.6 and is a regression in 3.8 ($rv, $msg) = $ticket->DeleteWatcher( Type => 'Cc', Email => $user->EmailAddress ); ok( $rv, "watcher removed by Email" ); ($rv, $msg) = $ticket->DeleteWatcher( Type => 'Requestor', Email => $user->EmailAddress ); ok( $rv, "watcher removed by Email" ); ($rv, $msg) = $ticket2->AddWatcher( Type => 'Cc', Email => $user->Name ); ok( $rv, "user can add self as Cc by username" ); ($rv, $msg) = $ticket2->AddWatcher( Type => 'Requestor', Email => $user->Name ); ok( $rv, "user can add self as Requestor by username" ); # Add an email address with a phrase ($rv, $msg) = $ticket->AddWatcher( Type => 'Cc', Email => q["Foo Bar" ] ); ok $rv, "Added email address with phrase" or diag $msg; my $foo = RT::Test->load_or_create_user( EmailAddress => 'foo@example.com' ); is $foo->RealName, "Foo Bar", "RealName matches"; # Queue watcher tests $principal->RevokeRight( Right => 'Watch' , Object => $queue ); ok( !$user->HasRight( Right => 'Watch', Object => $queue ), "user queue watch right revoked" ); my $queue2 = RT::Queue->new( $cu ); ($rv, $msg) = $queue2->Load( $queue->id ); ok( $rv, "user loaded queue" ); # user can add self to queue only after getting Watch right ($rv, $msg) = $queue2->AddWatcher( Type => 'Cc', PrincipalId => $user->PrincipalId ); ok( !$rv, "user can't add self as Cc" ); ($rv, $msg) = $queue2->AddWatcher( Type => 'Requestor', PrincipalId => $user->PrincipalId ); ok( !$rv, "user can't add self as Requestor" ); $principal->GrantRight( Right => 'Watch' , Object => $queue ); ok( $user->HasRight( Right => 'Watch', Object => $queue ), "user can watch queue queues" ); ($rv, $msg) = $queue2->AddWatcher( Type => 'Cc', PrincipalId => $user->PrincipalId ); ok( $rv, "user can add self as Cc by PrincipalId" ); ($rv, $msg) = $queue2->AddWatcher( Type => 'Requestor', PrincipalId => $user->PrincipalId ); ok( $rv, "user can add self as Requestor by PrincipalId" ); # remove user and try adding with Email address ($rv, $msg) = $queue->DeleteWatcher( Type => 'Cc', PrincipalId => $user->PrincipalId ); ok( $rv, "watcher removed by PrincipalId" ); ($rv, $msg) = $queue->DeleteWatcher( Type => 'Requestor', Email => $user->EmailAddress ); ok( $rv, "watcher removed by Email" ); ($rv, $msg) = $queue2->AddWatcher( Type => 'Cc', Email => $user->EmailAddress ); ok( $rv, "user can add self as Cc by Email" ); ($rv, $msg) = $queue2->AddWatcher( Type => 'Requestor', Email => $user->EmailAddress ); ok( $rv, "user can add self as Requestor by Email" ); rt-4.4.2/t/ticket/action_linear_escalate.t0000664000175000017500000000641513131430353020423 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => 17; my ($id, $msg); my $RecordTransaction; my $UpdateLastUpdated; use_ok('RT::Action::LinearEscalate'); my $q = RT::Test->load_or_create_queue( Name => 'Regression' ); ok $q && $q->id, 'loaded or created queue'; # rt-cron-tool uses Gecos name to get rt user, so we'd better create one my $gecos = RT::Test->load_or_create_user( Name => 'gecos', Password => 'password', Gecos => (getpwuid($<))[0], ); ok $gecos && $gecos->id, 'loaded or created gecos user'; # get rid of all right permissions $gecos->PrincipalObj->GrantRight( Right => 'SuperUser' ); my $user = RT::Test->load_or_create_user( Name => 'user', Password => 'password', ); ok $user && $user->id, 'loaded or created user'; $user->PrincipalObj->GrantRight( Right => 'SuperUser' ); my $current_user = RT::CurrentUser->new(RT->SystemUser); ($id, $msg) = $current_user->Load($user->id); ok( $id, "Got current user? $msg" ); #defaults $RecordTransaction = 0; $UpdateLastUpdated = 1; my $ticket2 = create_ticket_as_ok($current_user); escalate_ticket_ok($ticket2); ok( $ticket2->LastUpdatedBy != $user->id, "Set LastUpdated" ); ok( $ticket2->Transactions->Last->Type =~ /Create/i, "Did not record a transaction" ); $RecordTransaction = 1; $UpdateLastUpdated = 1; my $ticket1 = create_ticket_as_ok($current_user); escalate_ticket_ok($ticket1); ok( $ticket1->LastUpdatedBy != $user->id, "Set LastUpdated" ); ok( $ticket1->Transactions->Last->Type !~ /Create/i, "Recorded a transaction" ); $RecordTransaction = 0; $UpdateLastUpdated = 0; my $ticket3 = create_ticket_as_ok($current_user); escalate_ticket_ok($ticket3); ok( $ticket3->LastUpdatedBy == $user->id, "Did not set LastUpdated" ); ok( $ticket3->Transactions->Last->Type =~ /Create/i, "Did not record a transaction" ); sub create_ticket_as_ok { my $user = shift; my $created = RT::Date->new(RT->SystemUser); $created->Unix(time() - ( 7 * 24 * 60**2 )); my $due = RT::Date->new(RT->SystemUser); $due->Unix(time() + ( 7 * 24 * 60**2 )); my $ticket = RT::Ticket->new($user); ($id, $msg) = $ticket->Create( Queue => $q->id, Subject => "Escalation test", Priority => 0, InitialPriority => 0, FinalPriority => 50, ); ok($id, "Created ticket? ".$id); $ticket->__Set( Field => 'Created', Value => $created->ISO, ); $ticket->__Set( Field => 'Due', Value => $due->ISO, ); return $ticket; } sub escalate_ticket_ok { my $ticket = shift; my $id = $ticket->id; print "$RT::BinPath/rt-crontool --search RT::Search::FromSQL --search-arg \"id = @{[$id]}\" --action RT::Action::LinearEscalate --action-arg \"RecordTransaction:$RecordTransaction; UpdateLastUpdated:$UpdateLastUpdated\"\n"; print STDERR `$RT::BinPath/rt-crontool --search RT::Search::FromSQL --search-arg "id = @{[$id]}" --action RT::Action::LinearEscalate --action-arg "RecordTransaction:$RecordTransaction; UpdateLastUpdated:$UpdateLastUpdated"`; $ticket->Load($id); # reload, because otherwise we get the cached value ok( $ticket->Priority != 0, "Escalated ticket" ); } rt-4.4.2/t/ticket/cfsort-freeform-single.t0000664000175000017500000001705513131430353020337 0ustar vagrantvagrant use strict; use warnings; use RT::Test nodata => 1, tests => undef; my $queue = RT::Test->load_or_create_queue( Name => "sorting" ); ok $queue && $queue->id, "Created queue"; my $queue_name = $queue->Name; # CFs for testing, later we create another one my $cf; my $cf_name = "ordering"; diag "create a CF"; { $cf = RT::CustomField->new( RT->SystemUser ); my ($ret, $msg) = $cf->Create( Name => $cf_name, Queue => $queue->id, Type => 'FreeformSingle', ); ok($ret, "Custom Field created"); } run_tests( [ { Subject => '-' }, { Subject => 'aa', 'CustomField-' . $cf->id => 'aa' }, { Subject => 'bb', 'CustomField-' . $cf->id => 'bb' }, { Subject => 'cc', 'CustomField-' . $cf->id => 'cc' }, ], { Count => 4, Order => "CF.{$cf_name}" }, { Count => 4, Order => "CF.$queue_name.{$cf_name}" }, { Query => "CF.{$cf_name} LIKE 'a'", Count => 1, Order => "CF.{$cf_name}" }, { Query => "CF.{$cf_name} LIKE 'a'", Count => 1, Order => "CF.$queue_name.{$cf_name}" }, { Query => "CF.{$cf_name} != 'cc'", Count => 3, Order => "CF.{$cf_name}" }, { Query => "CF.{$cf_name} != 'cc'", Count => 3, Order => "CF.$queue_name.{$cf_name}" }, ); my $other_cf; my $other_name = "othercf"; diag "create another CF"; { $other_cf = RT::CustomField->new( RT->SystemUser ); my ($ret, $msg) = $other_cf->Create( Name => $other_name, Queue => $queue->id, Type => 'FreeformSingle', ); ok($ret, "Other Custom Field created"); } # Test that order is not affected by other CFs run_tests( [ { Subject => '-', }, { Subject => 'aa', "CustomField-" . $cf->id => 'aa', "CustomField-" . $other_cf->id => 'za' }, { Subject => 'bb', "CustomField-" . $cf->id => 'bb', "CustomField-" . $other_cf->id => 'ya' }, { Subject => 'cc', "CustomField-" . $cf->id => 'cc', "CustomField-" . $other_cf->id => 'xa' }, ], { Count => 4, Order => "CF.{$cf_name}" }, { Count => 4, Order => "CF.$queue_name.{$cf_name}" }, { Query => "CF.{$cf_name} LIKE 'a'", Count => 1, Order => "CF.{$cf_name}" }, { Query => "CF.{$cf_name} LIKE 'a'", Count => 1, Order => "CF.$queue_name.{$cf_name}" }, { Query => "CF.{$cf_name} != 'cc'", Count => 3, Order => "CF.{$cf_name}" }, { Query => "CF.{$cf_name} != 'cc'", Count => 3, Order => "CF.$queue_name.{$cf_name}" }, { Query => "CF.{$other_name} != 'za'", Count => 3, Order => "CF.{$cf_name}" }, { Query => "CF.{$other_name} != 'za'", Count => 3, Order => "CF.$queue_name.{$cf_name}" }, ); # And then add a CF with a duplicate name, on a different queue { my $other_queue = RT::Test->load_or_create_queue( Name => "other_queue" ); ok $other_queue && $other_queue->id, "Created queue"; my $dup = RT::CustomField->new( RT->SystemUser ); my ($ret, $msg) = $dup->Create( Name => $cf_name, Queue => $other_queue->id, Type => 'FreeformSingle', ); ok($ret, "Custom Field created"); } my $cf_id = $cf->id; run_tests( [ { Subject => '-', }, { Subject => 'aa', "CustomField-" . $cf->id => 'aa', "CustomField-" . $other_cf->id => 'za' }, { Subject => 'bb', "CustomField-" . $cf->id => 'bb', "CustomField-" . $other_cf->id => 'ya' }, { Subject => 'cc', "CustomField-" . $cf->id => 'cc', "CustomField-" . $other_cf->id => 'xa' }, ], { Count => 4, Order => "CF.{$cf_name}" }, { Count => 4, Order => "CF.$queue_name.{$cf_name}" }, { Query => "CF.{$cf_id} LIKE 'a'", Count => 1, Order => "CF.{$cf_name}" }, { Query => "CF.{$cf_id} LIKE 'a'", Count => 1, Order => "CF.$queue_name.{$cf_name}" }, { Query => "CF.{$cf_id} != 'cc'", Count => 3, Order => "CF.{$cf_name}" }, { Query => "CF.{$cf_id} != 'cc'", Count => 3, Order => "CF.$queue_name.{$cf_name}" }, { Query => "CF.$queue_name.{$cf_name} LIKE 'a'", Count => 1, Order => "CF.{$cf_name}" }, { Query => "CF.$queue_name.{$cf_name} LIKE 'a'", Count => 1, Order => "CF.$queue_name.{$cf_name}" }, { Query => "CF.$queue_name.{$cf_name} != 'cc'", Count => 3, Order => "CF.{$cf_name}" }, { Query => "CF.$queue_name.{$cf_name} != 'cc'", Count => 3, Order => "CF.$queue_name.{$cf_name}" }, { Query => "CF.{$other_name} != 'za'", Count => 3, Order => "CF.{$cf_name}" }, { Query => "CF.{$other_name} != 'za'", Count => 3, Order => "CF.$queue_name.{$cf_name}" }, { Query => "CF.{$cf_id} != 'cc'", Count => 3, Order => "CF.{$cf_id}" }, { Query => "CF.{$cf_id} != 'cc'", Count => 3, Order => "CF.$queue_name.{$cf_id}" }, { Query => "CF.$queue_name.{$cf_name} != 'cc'", Count => 3, Order => "CF.{$cf_id}" }, { Query => "CF.$queue_name.{$cf_name} != 'cc'", Count => 3, Order => "CF.$queue_name.{$cf_id}" }, { Query => "CF.{$other_name} != 'za'", Count => 3, Order => "CF.{$cf_id}" }, { Query => "CF.{$other_name} != 'za'", Count => 3, Order => "CF.$queue_name.{$cf_id}" }, ); sub run_tests { my $tickets = shift; my @tickets = RT::Test->create_tickets( { Queue => $queue->id, RandomOrder => 1 }, @{ $tickets }); my $base_query = join(" OR ", map {"id = ".$_->id} @tickets) || "id > 0"; my @tests = @_; for my $test ( @tests ) { $test->{'Query'} ||= "id > 0"; my $query = "( $base_query ) AND " . $test->{'Query'}; for my $order (qw(ASC DESC)) { subtest $test->{'Query'} . " ORDER BY ".$test->{'Order'}. " $order" => sub { my $error = 0; my $tix = RT::Tickets->new( RT->SystemUser ); $tix->FromSQL( $query ); $tix->OrderBy( FIELD => $test->{'Order'}, ORDER => $order ); is($tix->Count, $test->{'Count'}, "found right number of tickets (".$test->{Count}.")") or $error = 1; my ($order_ok, $last) = (1, $order eq 'ASC'? '-': 'zzzzzz'); if ($tix->Count) { my $last_id = $tix->Last->id; while ( my $t = $tix->Next ) { my $tmp; next if $t->id == $last_id and $t->Subject eq "-"; # Nulls are allowed to come last, in Pg if ( $order eq 'ASC' ) { $tmp = ((split( /,/, $last))[0] cmp (split( /,/, $t->Subject))[0]); } else { $tmp = -((split( /,/, $last))[-1] cmp (split( /,/, $t->Subject))[-1]); } if ( $tmp > 0 ) { $order_ok = 0; last; } $last = $t->Subject; } } ok( $order_ok, "$order order of tickets is good" ) or $error = 1; if ( $error ) { diag "Wrong SQL query:". $tix->BuildSelectQuery; $tix->GotoFirstItem; while ( my $t = $tix->Next ) { diag sprintf "%02d - %s", $t->id, $t->Subject; } } }; } } } done_testing; rt-4.4.2/t/ticket/search_long_cf_values.t0000664000175000017500000000507413131430353020266 0ustar vagrantvagrant # tests relating to searching. Especially around custom fields with long values # (> 255 chars) use strict; use warnings; use RT::Test nodata => 1, tests => 10; # setup the queue my $q = RT::Queue->new(RT->SystemUser); my $queue = 'SearchTests-'.$$; $q->Create(Name => $queue); ok ($q->id, "Created the queue"); # setup the CF my $cf = RT::CustomField->new(RT->SystemUser); $cf->Create(Name => 'SearchTest', Type => 'Freeform', MaxValues => 0, Queue => $q->id); ok($cf->id, "Created the SearchTest CF"); my $cflabel = "CustomField-".$cf->id; # setup some tickets my $t1 = RT::Ticket->new(RT->SystemUser); my ( $id, undef $msg ) = $t1->Create( Queue => $q->id, Subject => 'SearchTest1', Requestor => ['search@example.com'], $cflabel => 'foo', ); ok( $id, $msg ); my $t2 = RT::Ticket->new(RT->SystemUser); ( $id, undef, $msg ) = $t2->Create( Queue => $q->id, Subject => 'SearchTest2', Requestor => ['searchlong@example.com'], $cflabel => 'bar' x 150, ); ok( $id, $msg ); my $t3 = RT::Ticket->new(RT->SystemUser); ( $id, undef, $msg ) = $t3->Create( Queue => $q->id, Subject => 'SearchTest3', Requestor => ['searchlong@example.com'], $cflabel => 'bar', ); ok( $id, $msg ); # we have tickets. start searching my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND CF.SearchTest LIKE 'foo'"); is($tix->Count, 1, "matched short string foo") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND CF.SearchTest LIKE 'bar'"); is($tix->Count, 2, "matched long+short string bar") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND ( CF.SearchTest LIKE 'foo' OR CF.SearchTest LIKE 'bar' )"); is($tix->Count, 3, "matched short string foo or long+short string bar") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND CF.SearchTest NOT LIKE 'foo' AND CF.SearchTest LIKE 'bar'"); is($tix->Count, 2, "not matched short string foo and matched long+short string bar") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND CF.SearchTest LIKE 'foo' AND CF.SearchTest NOT LIKE 'bar'"); is($tix->Count, 1, "matched short string foo and not matched long+short string bar") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; rt-4.4.2/t/ticket/search_by_watcher.t0000664000175000017500000002143613131430353017427 0ustar vagrantvagrant use strict; use warnings; use RT::Test nodata => 1, tests => undef; use RT::Ticket; my $q = RT::Test->load_or_create_queue( Name => 'Regression' ); ok $q && $q->id, 'loaded or created queue'; my $queue = $q->Name; my ($total, @tickets, @test, @conditions) = (0, ()); sub generate_tix { my @list = ( [], ['x@foo.com'], ['y@bar.com'], ['z@bar.com'], ['x@foo.com', 'y@bar.com'], ['y@bar.com', 'z@bar.com'], ['x@foo.com', 'z@bar.com'], ['x@foo.com', 'y@bar.com', 'z@bar.com'], ); my @data = (); foreach my $r (@list) { foreach my $c (@list) { my $subject = 'r:'. (join( '', map substr($_, 0, 1), @$r ) || '-') .';'; $subject .= 'c:'. (join( '', map substr($_, 0, 1), @$c ) || '-') .';'; push @data, { Subject => $subject, Requestor => $r, Cc => $c, }; } } return RT::Test->create_tickets( { Queue => $q->id }, @data ); } sub run_tests { while ( my ($query, $checks) = splice @test, 0, 2 ) { run_test( $query, %$checks ); } } sub run_test { my ($query, %checks) = @_; my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL($query); my $error = 0; my $count = 0; $count++ foreach grep $_, values %checks; is($tix->Count, $count, "found correct number of ticket(s) by '$query'") or $error = 1; my $good_tickets = ($tix->Count == $count); while ( my $ticket = $tix->Next ) { next if $checks{ $ticket->Subject }; diag $ticket->Subject ." ticket has been found when it's not expected"; $good_tickets = 0; } ok( $good_tickets, "all tickets are good with '$query'" ) or $error = 1; diag "Wrong SQL query for '$query':". $tix->BuildSelectQuery if $error; } sub run_auto_tests { { my @atmp = @conditions; while ( my ($query, $cb) = splice @atmp, 0, 2 ) { my %checks = (); foreach my $ticket ( @tickets ) { my $s = $ticket->Subject; $checks{ $s } = $cb->($s); } run_test($query, %checks); } } my @queries = ( '? AND ?' => sub { $_[0] and $_[1] }, '? OR ?' => sub { $_[0] or $_[1] }, ); while ( my ($template, $t_cb) = splice @queries, 0, 2 ) { my @atmp = @conditions; while ( my ($a, $a_cb) = splice @atmp, 0, 2 ) { my @btmp = @conditions; while ( my ($b, $b_cb) = splice @btmp, 0, 2 ) { next if $a eq $b; my %checks = (); foreach my $ticket ( @tickets ) { my $s = $ticket->Subject; $checks{ $s } = $t_cb->( scalar $a_cb->($s), scalar $b_cb->($s) ); } my $query = $template; foreach my $tmp ($a, $b) { $query =~ s/\?/$tmp/; } run_test( $query, %checks ); } } } return unless $ENV{'RT_TEST_HEAVY'}; @queries = ( '? AND ? AND ?' => sub { $_[0] and $_[1] and $_[2] }, '(? OR ?) AND ?' => sub { return (($_[0] or $_[1]) and $_[2]) }, '? OR (? AND ?)' => sub { $_[0] or ($_[1] and $_[2]) }, '(? AND ?) OR ?' => sub { ($_[0] and $_[1]) or $_[2] }, '? AND (? OR ?)' => sub { $_[0] and ($_[1] or $_[2]) }, '? OR ? OR ?' => sub { $_[0] or $_[1] or $_[2] }, ); while ( my ($template, $t_cb) = splice @queries, 0, 2 ) { my @atmp = @conditions; while ( my ($a, $a_cb) = splice @atmp, 0, 2 ) { my @btmp = @conditions; while ( my ($b, $b_cb) = splice @btmp, 0, 2 ) { next if $a eq $b; my @ctmp = @conditions; while ( my ($c, $c_cb) = splice @ctmp, 0, 2 ) { next if $a eq $c; next if $b eq $c; my %checks = (); foreach my $ticket ( @tickets ) { my $s = $ticket->Subject; $checks{ $s } = $t_cb->( scalar $a_cb->($s), scalar $b_cb->($s), scalar $c_cb->($s) ); } my $query = $template; foreach my $tmp ($a, $b, $c) { $query =~ s/\?/$tmp/; } run_test( $query, %checks ); } } } } } @conditions = ( 'Cc = "not@exist"' => sub { 0 }, 'Cc != "not@exist"' => sub { 1 }, 'Cc IS NULL' => sub { $_[0] =~ /c:-;/ }, 'Cc IS NOT NULL' => sub { $_[0] !~ /c:-;/ }, 'Cc = "x@foo.com"' => sub { $_[0] =~ /c:[^;]*x/ }, 'Cc != "x@foo.com"' => sub { $_[0] !~ /c:[^;]*x/ }, 'Cc LIKE "@bar.com"' => sub { $_[0] =~ /c:[^;]*(?:y|z)/ }, # TODO: # 'Cc NOT LIKE "@bar.com"' => sub { $_[0] !~ /y|z/ }, 'Requestor = "not@exist"' => sub { 0 }, 'Requestor != "not@exist"' => sub { 1 }, 'Requestor IS NULL' => sub { $_[0] =~ /r:-;/ }, 'Requestor IS NOT NULL' => sub { $_[0] !~ /r:-;/ }, 'Requestor = "x@foo.com"' => sub { $_[0] =~ /r:[^;]*x/ }, 'Requestor != "x@foo.com"' => sub { $_[0] !~ /r:[^;]*x/ }, 'Requestor LIKE "@bar.com"' => sub { $_[0] =~ /r:[^;]*(?:y|z)/ }, # TODO: # 'Requestor NOT LIKE "@bar.com"' => sub { $_[0] !~ /y|z/ }, 'Watcher = "not@exist"' => sub { 0 }, 'Watcher != "not@exist"' => sub { 1 }, # TODO: # 'Watcher IS NULL' => sub { $_[0] eq 'r:-;c:-;' }, # 'Watcher IS NOT NULL' => sub { $_[0] ne 'r:-;c:-;' }, 'Watcher = "x@foo.com"' => sub { $_[0] =~ /x/ }, # 'Watcher != "x@foo.com"' => sub { $_[0] !~ /x/ }, 'Watcher LIKE "@bar.com"' => sub { $_[0] =~ /(?:y|z)/ }, # TODO: # 'Watcher NOT LIKE "@bar.com"' => sub { $_[0] !~ /y|z/ }, 'Subject LIKE "ne"' => sub { 0 }, 'Subject NOT LIKE "ne"' => sub { 1 }, 'Subject = "r:x;c:y;"' => sub { $_[0] eq 'r:x;c:y;' }, 'Subject LIKE "x"' => sub { $_[0] =~ /x/ }, ); @tickets = generate_tix(); $total += scalar @tickets; { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue'"); is($tix->Count, $total, "found $total tickets"); } run_auto_tests(); # owner is special watcher because reference is duplicated in two places, # owner was an ENUM field now it's WATCHERFIELD, but should support old # style ENUM searches for backward compatibility my $nobody = RT::Nobody(); { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Owner = '". $nobody->id ."'"); ok($tix->Count, "found ticket(s)"); } { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Owner = '". $nobody->Name ."'"); ok($tix->Count, "found ticket(s)"); } { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Owner != '". $nobody->id ."'"); is($tix->Count, 0, "found ticket(s)"); } { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Owner != '". $nobody->Name ."'"); is($tix->Count, 0, "found ticket(s)"); } { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Owner.Name LIKE 'nob'"); ok($tix->Count, "found ticket(s)"); } { # create ticket and force type to not a 'ticket' value # bug #6898@rt3.fsck.com # and http://marc.theaimsgroup.com/?l=rt-devel&m=112662934627236&w=2 my($t) = RT::Test->create_tickets( { Queue => $q->id }, { Subject => 'not a ticket' } ); $t->_Set( Field => 'Type', Value => 'not a ticket', CheckACL => 0, RecordTransaction => 0, ); my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Owner = 'Nobody'"); is($tix->Count, $total, "found ticket(s)"); } { my $everyone = RT::Group->new( RT->SystemUser ); $everyone->LoadSystemInternalGroup('Everyone'); ok($everyone->id, "loaded 'everyone' group"); my($id, $msg) = $everyone->PrincipalObj->GrantRight( Right => 'OwnTicket', Object => $q ); ok($id, "granted OwnTicket right to Everyone on '$queue'") or diag("error: $msg"); my $u = RT::User->new( RT->SystemUser ); $u->LoadOrCreateByEmail('alpha@e.com'); ok($u->id, "loaded user"); my($t) = RT::Test->create_tickets( { Queue => $q->id }, { Subject => '4', Owner => $u->id }, ); my $u_alpha_id = $u->id; $u = RT::User->new( RT->SystemUser ); $u->LoadOrCreateByEmail('bravo@e.com'); ok($u->id, "loaded user"); ($t) = RT::Test->create_tickets( { Queue => $q->id }, { Subject => '5', Owner => $u->id }, ); my $u_bravo_id = $u->id; my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND ( Owner = '$u_alpha_id' OR Owner = '$u_bravo_id' )" ); is($tix->Count, 2, "found ticket(s)"); } @tickets = (); done_testing(); rt-4.4.2/t/ticket/search.t0000664000175000017500000002746613131430353015231 0ustar vagrantvagrant # tests relating to searching. Especially around custom fields, and # corner cases. use strict; use warnings; use RT::Test nodata => 1, tests => undef; # setup the queue my $q = RT::Queue->new(RT->SystemUser); my $queue = 'SearchTests-'.$$; $q->Create(Name => $queue); ok ($q->id, "Created the queue"); # and setup the CFs # we believe the Type shouldn't matter. my $cf = RT::CustomField->new(RT->SystemUser); $cf->Create(Name => 'SearchTest', Type => 'Freeform', MaxValues => 0, Queue => $q->id); ok($cf->id, "Created the SearchTest CF"); my $cflabel = "CustomField-".$cf->id; my $cf2 = RT::CustomField->new(RT->SystemUser); $cf2->Create(Name => 'SearchTest2', Type => 'Freeform', MaxValues => 0, Queue => $q->id); ok($cf2->id, "Created the SearchTest2 CF"); my $cflabel2 = "CustomField-".$cf2->id; my $cf3 = RT::CustomField->new(RT->SystemUser); $cf3->Create(Name => 'SearchTest3', Type => 'Freeform', MaxValues => 0, Queue => $q->id); ok($cf3->id, "Created the SearchTest3 CF"); my $cflabel3 = "CustomField-".$cf3->id; # There was a bug involving a missing join to ObjectCustomFields that # caused spurious results on negative searches if another custom field # with the same name existed on a different queue. Hence, we make # duplicate CFs on a different queue here my $dup = RT::Queue->new(RT->SystemUser); $dup->Create(Name => $queue . "-Copy"); ok ($dup->id, "Created the duplicate queue"); my $dupcf = RT::CustomField->new(RT->SystemUser); $dupcf->Create(Name => 'SearchTest', Type => 'Freeform', MaxValues => 0, Queue => $dup->id); ok($dupcf->id, "Created the duplicate SearchTest CF"); $dupcf = RT::CustomField->new(RT->SystemUser); $dupcf->Create(Name => 'SearchTest2', Type => 'Freeform', MaxValues => 0, Queue => $dup->id); ok($dupcf->id, "Created the SearchTest2 CF"); $dupcf = RT::CustomField->new(RT->SystemUser); $dupcf->Create(Name => 'SearchTest3', Type => 'Freeform', MaxValues => 0, Queue => $dup->id); ok($dupcf->id, "Created the SearchTest3 CF"); # setup some tickets # we'll need a small pile of them, to test various combinations and nulls. # there's probably a way to think harder and do this with fewer my $t1 = RT::Ticket->new(RT->SystemUser); my ( $id, undef $msg ) = $t1->Create( Queue => $q->id, Subject => 'SearchTest1', Requestor => ['search1@example.com'], $cflabel => 'foo1', $cflabel2 => 'bar1', $cflabel3 => 'qux1', ); ok( $id, $msg ); my $t2 = RT::Ticket->new(RT->SystemUser); ( $id, undef, $msg ) = $t2->Create( Queue => $q->id, Subject => 'SearchTest2', Requestor => ['search2@example.com'], # $cflabel => 'foo2', $cflabel2 => 'bar2', $cflabel3 => 'qux2', ); ok( $id, $msg ); my $t3 = RT::Ticket->new(RT->SystemUser); ( $id, undef, $msg ) = $t3->Create( Queue => $q->id, Subject => 'SearchTest3', Requestor => ['search3@example.com'], $cflabel => 'foo3', # $cflabel2 => 'bar3', $cflabel3 => 'qux3', ); ok( $id, $msg ); my $t4 = RT::Ticket->new(RT->SystemUser); ( $id, undef, $msg ) = $t4->Create( Queue => $q->id, Subject => 'SearchTest4', Requestor => ['search4@example.com'], $cflabel => 'foo4', $cflabel2 => 'bar4', # $cflabel3 => 'qux4', ); ok( $id, $msg ); my $t5 = RT::Ticket->new(RT->SystemUser); ( $id, undef, $msg ) = $t5->Create( Queue => $q->id, # Subject => 'SearchTest5', Requestor => ['search5@example.com'], $cflabel => 'foo5', $cflabel2 => 'bar5', $cflabel3 => 'qux5', ); ok( $id, $msg ); my $t6 = RT::Ticket->new(RT->SystemUser); ( $id, undef, $msg ) = $t6->Create( Queue => $q->id, Subject => 'SearchTest6', # Requestor => ['search6@example.com'], $cflabel => 'foo6', $cflabel2 => 'bar6', $cflabel3 => 'qux6', ); ok( $id, $msg ); my $t7 = RT::Ticket->new(RT->SystemUser); ( $id, undef, $msg ) = $t7->Create( Queue => $q->id, Subject => 'SearchTest7', Requestor => ['search7@example.com'], # $cflabel => 'foo7', # $cflabel2 => 'bar7', $cflabel3 => 'qux7', ); ok( $id, $msg ); # we have tickets. start searching my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue'"); is($tix->Count, 7, "found all the tickets") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; # very simple searches. both CF and normal $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND CF.SearchTest = 'foo1'"); is($tix->Count, 1, "matched identical subject") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue LIKE '$queue' AND CF.SearchTest = 'foo1'"); is($tix->Count, 1, "matched identical subject and LIKE Queue") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND CF.SearchTest LIKE 'foo1'"); is($tix->Count, 1, "matched LIKE subject") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue LIKE '$queue' AND CF.SearchTest LIKE 'foo1'"); is($tix->Count, 1, "matched LIKE queue and LIKE subject") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND CF.SearchTest = 'foo'"); is($tix->Count, 0, "IS a regexp match") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND CF.SearchTest LIKE 'foo'"); is($tix->Count, 5, "matched LIKE subject") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND CF.SearchTest IS NULL"); is($tix->Count, 2, "IS null CF") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Requestors LIKE 'search1'"); is($tix->Count, 1, "LIKE requestor") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Requestors = 'search1\@example.com'"); is($tix->Count, 1, "IS requestor") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Requestors LIKE 'search'"); is($tix->Count, 6, "LIKE requestor") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Requestors IS NULL"); is($tix->Count, 1, "Search for no requestor") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Subject = 'SearchTest1'"); is($tix->Count, 1, "IS subject") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Subject LIKE 'SearchTest1'"); is($tix->Count, 1, "LIKE subject") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Subject = ''"); is($tix->Count, 1, "found one ticket") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Subject LIKE 'SearchTest'"); is($tix->Count, 6, "found two ticket") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Subject LIKE 'qwerty'"); is($tix->Count, 0, "found zero ticket") or diag "wrong results from SQL:\n". $tix->BuildSelectCountQuery; # various combinations $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("CF.SearchTest LIKE 'foo' AND CF.SearchTest2 LIKE 'bar1'"); is($tix->Count, 1, "LIKE cf and LIKE cf"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("CF.SearchTest = 'foo1' AND CF.SearchTest2 = 'bar1'"); is($tix->Count, 1, "is cf and is cf"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("CF.SearchTest = 'foo' AND CF.SearchTest2 LIKE 'bar1'"); is($tix->Count, 0, "is cf and like cf"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("CF.SearchTest LIKE 'foo' AND CF.SearchTest2 LIKE 'bar' AND CF.SearchTest3 LIKE 'qux'"); is($tix->Count, 3, "like cf and like cf and like cf"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("CF.SearchTest LIKE 'foo' AND CF.SearchTest2 LIKE 'bar' AND CF.SearchTest3 LIKE 'qux6'"); is($tix->Count, 1, "like cf and like cf and is cf"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("CF.SearchTest LIKE 'foo' AND Subject LIKE 'SearchTest'"); is($tix->Count, 4, "like cf and like subject"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("CF.SearchTest IS NULL AND CF.SearchTest2 = 'bar2'"); is($tix->Count, 1, "null cf and is cf"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND CF.SearchTest IS NULL AND CF.SearchTest2 IS NULL"); is($tix->Count, 1, "null cf and null cf"); # tests with the same CF listed twice $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("CF.{SearchTest} = 'foo1'"); is($tix->Count, 1, "is cf.{name} format"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("CF.SearchTest = 'foo1' OR CF.SearchTest = 'foo3'"); is($tix->Count, 2, "is cf1 or is cf1"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("CF.SearchTest = 'foo1' OR CF.SearchTest IS NULL"); is($tix->Count, 3, "is cf1 or null cf1"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("(CF.SearchTest = 'foo1' OR CF.SearchTest = 'foo3') AND (CF.SearchTest2 = 'bar1' OR CF.SearchTest2 = 'bar2')"); is($tix->Count, 1, "(is cf1 or is cf1) and (is cf2 or is cf2)"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("(Queue LIKE '$queue') AND (CF.SearchTest = 'foo1' OR CF.SearchTest = 'foo3') AND (CF.SearchTest2 = 'bar1' OR CF.SearchTest2 = 'bar2')"); is($tix->Count, 1, "(queue LIKE) and (is cf1 or is cf1) and (is cf2 or is cf2)"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("CF.SearchTest = 'foo1' OR CF.SearchTest = 'foo3' OR CF.SearchTest2 = 'bar1' OR CF.SearchTest2 = 'bar2'"); is($tix->Count, 3, "is cf1 or is cf1 or is cf2 or is cf2"); # tests with lower cased NULL $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL('Requestor.Name IS null'); is($tix->Count, 1, "t6 doesn't have a Requestor"); like($tix->BuildSelectCountQuery, qr/\bNULL\b/, "Contains upper-case NULL"); unlike($tix->BuildSelectCountQuery, qr/\bnull\b/, "Lacks lower-case NULL"); # tests for searching by queue lifecycle $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL('Lifecycle="default"'); is($tix->Count,7,"We found all 7 tickets in a queue with the default lifecycle"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL('Lifecycle ="approvals" OR Lifecycle="default"'); is($tix->Count,7,"We found 7 tickets in a queue with a lifecycle of default or approvals"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL('Lifecycle ="approvals" AND Lifecycle="default"'); is($tix->Count,0,"We found 0 tickets in a queue with a lifecycle of default AND approvals...(because that's impossible"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL('Queue="'.$queue.'" AND Lifecycle="default"'); is($tix->Count,7,"We found 7 tickets in $queue with a lifecycle of default"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL('Lifecycle !="approvals"'); is($tix->Count,7,"We found 7 tickets in a queue with a lifecycle other than approvals"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL('Lifecycle!="default"'); is($tix->Count,0,"We found 0 tickets in a queue with a lifecycle other than default"); $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL('Lifecycle="approvals"'); is($tix->Count,0,"We found 0 tickets in a queue with the approvals lifecycle"); done_testing; rt-4.4.2/t/ticket/time-worked.t0000664000175000017500000000425713131430353016204 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 27; my $queue = RT::Test->load_or_create_queue( Name => 'General' ); ok $queue && $queue->id, "loaded or created a queue"; note 'set on Create'; { my $ticket = RT::Test->create_ticket( Queue => $queue->id, TimeWorked => 10, ); is $ticket->TimeWorked, 10, 'correct value'; my $txn = RT::Transaction->new( RT->SystemUser ); $txn->LoadByCols( ObjectType => 'RT::Ticket', ObjectId => $ticket->id, Type => 'Create', ); ok $txn->id, 'found transaction'; is $txn->TimeTaken, 10, 'correct value'; } note 'set on Comment'; { my $ticket = RT::Test->create_ticket( Queue => $queue->id ); ok !$ticket->TimeWorked, 'correct value'; $ticket->Comment( Content => 'test', TimeTaken => 10 ); is $ticket->TimeWorked, 10, 'correct value'; my $txn = RT::Transaction->new( RT->SystemUser ); $txn->LoadByCols( ObjectType => 'RT::Ticket', ObjectId => $ticket->id, Type => 'Comment', ); ok $txn->id, 'found transaction'; is $txn->TimeTaken, 10, 'correct value'; } note 'update'; { my $ticket = RT::Test->create_ticket( Queue => $queue->id ); ok !$ticket->TimeWorked, 'correct value'; $ticket->SetTimeWorked( 10 ); is $ticket->TimeWorked, 10, 'correct value'; my $txn = RT::Transaction->new( RT->SystemUser ); $txn->LoadByCols( ObjectType => 'RT::Ticket', ObjectId => $ticket->id, Type => 'Set', Field => 'TimeWorked', ); ok $txn->id, 'found transaction'; is $txn->TimeTaken, 10, 'correct value'; } note 'on Merge'; { my $ticket = RT::Test->create_ticket( Queue => $queue->id, TimeWorked => 7, ); { my $tmp = RT::Test->create_ticket( Queue => $queue->id, TimeWorked => 13, ); my ($status, $msg) = $tmp->MergeInto( $ticket->id ); ok $status, "merged tickets"; } $ticket->Load( $ticket->id ); is $ticket->TimeWorked, 20, 'correct value'; } sub dump_txns { my $ticket = shift; my $txns = $ticket->Transactions; while ( my $txn = $txns->Next ) { diag sprintf "#%d\t%s\t%s\t%d", map $txn->$_() // '', qw(id Type Field TimeTaken); } } rt-4.4.2/t/ticket/scrips_batch.t0000664000175000017500000000552613131430353016421 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 19; use_ok('RT'); use_ok('RT::Ticket'); my $queue = RT::Test->load_or_create_queue( Name => 'Regression' ); ok $queue && $queue->id, 'loaded or created queue'; RT->Config->Set( UseTransactionBatch => 1 ); my ($baseurl, $m) = RT::Test->started_ok; ok $m->login, 'logged in as root'; my $sid; { $m->follow_link_ok( { id => 'admin-queues' } ); $m->follow_link_ok( { text => $queue->Name } ); $m->follow_link_ok( { id => 'page-scrips-create'}); $m->form_name('CreateScrip'); $m->field('Description' => 'test'); $m->select('ScripCondition' => 'On Transaction'); $m->select('ScripAction' => 'User Defined'); $m->select('Template' => 'Blank'); $m->select('Stage' => 'Batch'); $m->field('CustomPrepareCode' => 'return 1;'); $m->field('CustomCommitCode' => 'return 1;'); $m->click('Create'); $m->content_contains("Scrip Created"); my $form = $m->form_name('ModifyScrip'); $sid = $form->value('id'); is $m->value("Description"), 'test', 'correct description'; is value_name($form, "ScripCondition"), 'On Transaction', 'correct condition'; is value_name($form, "ScripAction"), 'User Defined', 'correct action'; is value_name($form, "Template"), 'Blank', 'correct template'; { my $rec = RT::ObjectScrip->new( RT->SystemUser ); $rec->LoadByCols( Scrip => $sid, ObjectId => $queue->id ); is $rec->Stage, 'TransactionBatch', "correct stage"; } my $tmp_fn = File::Spec->catfile( RT::Test->temp_directory, 'transactions' ); open my $tmp_fh, '+>', $tmp_fn or die $!; my $code = <', '$tmp_fn' ) or die "Couldn't open '$tmp_fn':\$!"; my \$batch = \$self->TicketObj->TransactionBatch; unless ( \$batch && \@\$batch ) { print \$fh "no batch\n"; return 1; } foreach my \$txn ( \@\$batch ) { print \$fh \$txn->Type ."\n"; } return 1; END $m->field( "CustomCommitCode" => $code ); $m->click('Update'); $m->goto_create_ticket( $queue ); $m->form_name('TicketCreate'); $m->submit; is_deeply parse_handle($tmp_fh), ['Create'], 'Create'; $m->follow_link_ok( { text => 'Resolve' } ); $m->form_name('TicketUpdate'); $m->field( "UpdateContent" => 'resolve it' ); $m->click('SubmitTicket'); is_deeply parse_handle($tmp_fh), ['Comment', 'Status'], 'Comment + Resolve'; } sub value_name { my $form = shift; my $field = shift; my $input = $form->find_input( $field ); my @names = $input->value_names; my @values = $input->possible_values; for ( my $i = 0; $i < @values; $i++ ) { return $names[ $i ] if $values[ $i ] eq $input->value; } return undef; } sub parse_handle { my $fh = shift; seek $fh, 0, 0; my @lines = <$fh>; foreach ( @lines ) { s/^\s+//gms; s/\s+$//gms } truncate $fh, 0; return \@lines; } rt-4.4.2/t/ticket/search_by_watcher_group.t0000664000175000017500000000421113131430353020633 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use Test::Warn; my $q = RT::Test->load_or_create_queue( Name => 'General' ); ok $q && $q->id, 'loaded or created queue'; my $queue = $q->Name; my $group; { $group = RT::Group->new( RT->SystemUser ); my ($id, $msg) = $group->CreateUserDefinedGroup( Name => 'Test' ); ok $id, "$msg"; } my $root = RT::Test->load_or_create_user( Name => 'root', MemberOf => $group->id ); ok $root && $root->id; RT::Test->create_tickets( { Queue => $q, }, { Subject => '-', }, { Subject => 'o', Owner => $root->id }, { Subject => 'r', Requestor => $root->id }, { Subject => 'c', Cc => $root->id }, { Subject => 'a', AdminCc => $root->id }, ); run_tests( 'OwnerGroup = "Test"' => { '-' => 0, o => 1, r => 0, c => 0, a => 0 }, 'RequestorGroup = "Test"' => { '-' => 0, o => 0, r => 1, c => 0, a => 0 }, 'CCGroup = "Test"' => { '-' => 0, o => 0, r => 0, c => 1, a => 0 }, 'AdminCCGroup = "Test"' => { '-' => 0, o => 0, r => 0, c => 0, a => 1 }, 'WatcherGroup = "Test"' => { '-' => 0, o => 1, r => 1, c => 1, a => 1 }, ); warning_like { my $tickets = RT::Tickets->new( RT->SystemUser ); my ($status, $msg) = $tickets->FromSQL('OwnerGroup != "Test"'); ok !$status, "incorrect op: $msg"; } qr{Invalid OwnerGroup Op: !=}; done_testing(); sub run_tests { my @test = @_; while ( my ($query, $checks) = splice @test, 0, 2 ) { run_test( $query, %$checks ); } } sub run_test { my ($query, %checks) = @_; my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL($query); my $error = 0; my $count = 0; $count++ foreach grep $_, values %checks; is($tix->Count, $count, "found correct number of ticket(s) by '$query'") or $error = 1; my $good_tickets = ($tix->Count == $count); while ( my $ticket = $tix->Next ) { next if $checks{ $ticket->Subject }; diag $ticket->Subject ." ticket has been found when it's not expected"; $good_tickets = 0; } ok( $good_tickets, "all tickets are good with '$query'" ) or $error = 1; diag "Wrong SQL query for '$query':". $tix->BuildSelectQuery if $error; } rt-4.4.2/t/ticket/search_by_cf_freeform_multiple.t0000664000175000017500000003122513131430353022157 0ustar vagrantvagrant use strict; use warnings; use RT::Test nodata => 1, tests => undef; my $q = RT::Test->load_or_create_queue( Name => 'Regression' ); ok $q && $q->id, 'loaded or created queue'; my $queue = $q->Name; diag "create a CF"; my ($cf_name, $cf_id, $cf) = ("Test", 0, undef); { $cf = RT::CustomField->new( RT->SystemUser ); my ($ret, $msg) = $cf->Create( Name => $cf_name, Queue => $q->id, Type => 'FreeformMultiple', ); ok($ret, "Custom Field Order created"); $cf_id = $cf->id; } my $ylong = "y" x 300; subtest "Creating tickets" => sub { RT::Test->create_tickets( { Queue => $q->id }, { Subject => '-' }, { Subject => 'x', "CustomField-$cf_id" => 'x', }, { Subject => 'y', "CustomField-$cf_id" => 'y', }, { Subject => 'z', "CustomField-$cf_id" => 'z', }, { Subject => 'xy', "CustomField-$cf_id" => [ 'x', 'y' ], }, { Subject => 'xz', "CustomField-$cf_id" => [ 'x', 'z' ], }, { Subject => 'yz', "CustomField-$cf_id" => [ 'y', 'z' ], }, { Subject => 'x_ylong', "CustomField-$cf_id" => [ 'x', $ylong ], }, { Subject => 'ylong', "CustomField-$cf_id" => $ylong, }, ); }; my @tests = ( "CF.{$cf_id} IS NULL" => { '-' => 1, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "CF.{$cf_id}.Content IS NULL" => { '-' => 1, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 1, ylong => 1 }, "CF.{$cf_id}.LargeContent IS NULL" => { '-' => 1, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 0 }, "'CF.{$cf_name}' IS NULL" => { '-' => 1, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "'CF.{$cf_name}.Content' IS NULL" => { '-' => 1, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 1, ylong => 1 }, "'CF.{$cf_name}.LargeContent' IS NULL" => { '-' => 1, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 0 }, "'CF.$queue.{$cf_id}' IS NULL" => { '-' => 1, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "'CF.$queue.{$cf_name}' IS NULL" => { '-' => 1, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "CF.{$cf_id} IS NOT NULL" => { '-' => 0, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 1 }, "CF.{$cf_id}.Content IS NOT NULL" => { '-' => 0, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 0 }, "CF.{$cf_id}.LargeContent IS NOT NULL" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 1, ylong => 1 }, "'CF.{$cf_name}' IS NOT NULL" => { '-' => 0, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 1 }, "'CF.{$cf_name}.Content' IS NOT NULL" => { '-' => 0, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 0 }, "'CF.{$cf_name}.LargeContent' IS NOT NULL" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 1, ylong => 1 }, "'CF.$queue.{$cf_id}' IS NOT NULL" => { '-' => 0, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 1 }, "'CF.$queue.{$cf_name}' IS NOT NULL" => { '-' => 0, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 1 }, "CF.{$cf_id} = 'x'" => { '-' => 0, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "CF.{$cf_id}.Content = 'x'" => { '-' => 0, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "CF.{$cf_id}.LargeContent = 'x'" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "CF.{$cf_id} = '$ylong'" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 1, ylong => 1 }, "CF.{$cf_id}.Content = '$ylong'" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "CF.{$cf_id}.LargeContent = '$ylong'" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 1, ylong => 1 }, "CF.{$cf_id} LIKE 'yyy'" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 1, ylong => 1 }, "CF.{$cf_id}.Content LIKE 'yyy'" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "CF.{$cf_id}.LargeContent LIKE 'yyy'" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 1, ylong => 1 }, "'CF.{$cf_name}' = 'x'" => { '-' => 0, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "'CF.{$cf_name}.Content' = 'x'" => { '-' => 0, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "'CF.{$cf_name}.LargeContent' = 'x'" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "'CF.$queue.{$cf_id}' = 'x'" => { '-' => 0, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "'CF.$queue.{$cf_name}' = 'x'" => { '-' => 0, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "CF.{$cf_id} != 'x'" => { '-' => 1, x => 0, y => 1, z => 1, xy => 0, xz => 0, yz => 1, x_ylong => 0, ylong => 1 }, "CF.{$cf_id}.Content != 'x'" => { '-' => 1, x => 0, y => 1, z => 1, xy => 0, xz => 0, yz => 1, x_ylong => 0, ylong => 1 }, "CF.{$cf_id}.LargeContent != 'x'" => { '-' => 1, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 1 }, "CF.{$cf_id} != '$ylong'" => { '-' => 1, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 0, ylong => 0 }, "CF.{$cf_id}.Content != '$ylong'" => { '-' => 1, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 1 }, "CF.{$cf_id}.LargeContent != '$ylong'" => { '-' => 1, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 0, ylong => 0 }, "TODO: CF.{$cf_id} NOT LIKE 'yyy'" => { '-' => 1, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 0, ylong => 0 }, "CF.{$cf_id}.Content NOT LIKE 'yyy'" => { '-' => 1, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 1 }, "CF.{$cf_id}.LargeContent NOT LIKE 'yyy'" => { '-' => 1, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 0, ylong => 0 }, "'CF.{$cf_name}' != 'x'" => { '-' => 1, x => 0, y => 1, z => 1, xy => 0, xz => 0, yz => 1, x_ylong => 0, ylong => 1 }, "'CF.{$cf_name}.Content' != 'x'" => { '-' => 1, x => 0, y => 1, z => 1, xy => 0, xz => 0, yz => 1, x_ylong => 0, ylong => 1 }, "'CF.{$cf_name}.LargeContent' != 'x'" => { '-' => 1, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 1 }, "'CF.$queue.{$cf_id}' != 'x'" => { '-' => 1, x => 0, y => 1, z => 1, xy => 0, xz => 0, yz => 1, x_ylong => 0, ylong => 1 }, "'CF.$queue.{$cf_name}' != 'x'" => { '-' => 1, x => 0, y => 1, z => 1, xy => 0, xz => 0, yz => 1, x_ylong => 0, ylong => 1 }, "CF.{$cf_id} = 'x' OR CF.{$cf_id} = 'y'" => { '-' => 0, x => 1, y => 1, z => 0, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 0 }, "'CF.{$cf_name}' = 'x' OR 'CF.{$cf_name}' = 'y'" => { '-' => 0, x => 1, y => 1, z => 0, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 0 }, "'CF.$queue.{$cf_id}' = 'x' OR 'CF.$queue.{$cf_id}' = 'y'" => { '-' => 0, x => 1, y => 1, z => 0, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 0 }, "'CF.$queue.{$cf_name}' = 'x' OR 'CF.$queue.{$cf_name}' = 'y'" => { '-' => 0, x => 1, y => 1, z => 0, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 0 }, "CF.{$cf_id} = 'x' AND CF.{$cf_id} = 'y'" => { '-' => 0, x => 0, y => 0, z => 0, xy => 1, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "'CF.{$cf_name}' = 'x' AND 'CF.{$cf_name}' = 'y'" => { '-' => 0, x => 0, y => 0, z => 0, xy => 1, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "'CF.$queue.{$cf_id}' = 'x' AND 'CF.$queue.{$cf_id}' = 'y'" => { '-' => 0, x => 0, y => 0, z => 0, xy => 1, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "'CF.$queue.{$cf_name}' = 'x' AND 'CF.$queue.{$cf_name}' = 'y'" => { '-' => 0, x => 0, y => 0, z => 0, xy => 1, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "CF.{$cf_id} != 'x' AND CF.{$cf_id} != 'y'" => { '-' => 1, x => 0, y => 0, z => 1, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 1 }, "'CF.{$cf_name}' != 'x' AND 'CF.{$cf_name}' != 'y'" => { '-' => 1, x => 0, y => 0, z => 1, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 1 }, "'CF.$queue.{$cf_id}' != 'x' AND 'CF.$queue.{$cf_id}' != 'y'" => { '-' => 1, x => 0, y => 0, z => 1, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 1 }, "'CF.$queue.{$cf_name}' != 'x' AND 'CF.$queue.{$cf_name}' != 'y'" => { '-' => 1, x => 0, y => 0, z => 1, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 1 }, "CF.{$cf_id} = 'x' AND CF.{$cf_id} IS NULL" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "'CF.{$cf_name}' = 'x' AND 'CF.{$cf_name}' IS NULL" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "'CF.$queue.{$cf_id}' = 'x' AND 'CF.$queue.{$cf_id}' IS NULL" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "'CF.$queue.{$cf_name}' = 'x' AND 'CF.$queue.{$cf_name}' IS NULL" => { '-' => 0, x => 0, y => 0, z => 0, xy => 0, xz => 0, yz => 0, x_ylong => 0, ylong => 0 }, "CF.{$cf_id} = 'x' OR CF.{$cf_id} IS NULL" => { '-' => 1, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "'CF.{$cf_name}' = 'x' OR 'CF.{$cf_name}' IS NULL" => { '-' => 1, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "'CF.$queue.{$cf_id}' = 'x' OR 'CF.$queue.{$cf_id}' IS NULL" => { '-' => 1, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "'CF.$queue.{$cf_name}' = 'x' OR 'CF.$queue.{$cf_name}' IS NULL" => { '-' => 1, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "CF.{$cf_id} = 'x' AND CF.{$cf_id} IS NOT NULL" => { '-' => 0, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "'CF.{$cf_name}' = 'x' AND 'CF.{$cf_name}' IS NOT NULL" => { '-' => 0, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "'CF.$queue.{$cf_id}' = 'x' AND 'CF.$queue.{$cf_id}' IS NOT NULL" => { '-' => 0, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "'CF.$queue.{$cf_name}' = 'x' AND 'CF.$queue.{$cf_name}' IS NOT NULL" => { '-' => 0, x => 1, y => 0, z => 0, xy => 1, xz => 1, yz => 0, x_ylong => 1, ylong => 0 }, "CF.{$cf_id} = 'x' OR CF.{$cf_id} IS NOT NULL" => { '-' => 0, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 1 }, "'CF.{$cf_name}' = 'x' OR 'CF.{$cf_name}' IS NOT NULL" => { '-' => 0, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 1 }, "'CF.$queue.{$cf_id}' = 'x' OR 'CF.$queue.{$cf_id}' IS NOT NULL" => { '-' => 0, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 1 }, "'CF.$queue.{$cf_name}' = 'x' OR 'CF.$queue.{$cf_name}' IS NOT NULL" => { '-' => 0, x => 1, y => 1, z => 1, xy => 1, xz => 1, yz => 1, x_ylong => 1, ylong => 1 }, ); run_tests(@tests); sub run_tests { my @tests = @_; while (@tests) { my $query = shift @tests; my %results = %{ shift @tests }; local $TODO = "Not implemented correctly" if $query =~ s/^TODO:\s*//; subtest $query => sub { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL( "$query" ); my $error = 0; my $count = 0; $count++ foreach grep $_, values %results; is($tix->Count, $count, "found correct number of ticket(s)") or $error = 1; my $good_tickets = ($tix->Count == $count); while ( my $ticket = $tix->Next ) { next if $results{ $ticket->Subject }; diag $ticket->Subject ." ticket has been found when it's not expected"; $good_tickets = 0; } ok( $good_tickets, "all tickets are good" ) or $error = 1; diag "Wrong SQL: ". $tix->BuildSelectQuery if $error; }; } } done_testing; rt-4.4.2/t/ticket/sort-by-queue.t0000664000175000017500000000467313131430353016500 0ustar vagrantvagrant use RT::Test nodata => 1, tests => 12; use strict; use warnings; use RT::Tickets; use RT::Queue; use RT::CustomField; ######################################################### # Test sorting by Queue, we sort by its name ######################################################### diag "Create queues to test with."; my @qids; my @queues; # create them in reverse order to avoid false positives foreach my $name ( qw(sort-by-queue-Z sort-by-queue-A) ) { my $queue = RT::Queue->new( RT->SystemUser ); my ($ret, $msg) = $queue->Create( Name => $name ."-$$", Description => 'queue to test sorting by queue' ); ok($ret, "test queue creation. $msg"); push @queues, $queue; push @qids, $queue->id; } my ($total, @tickets, @test) = (0, ()); sub run_tests { my $query_prefix = join ' OR ', map 'id = '. $_->id, @tickets; foreach my $test ( @test ) { my $query = join " AND ", map "( $_ )", grep defined && length, $query_prefix, $test->{'Query'}; foreach my $order (qw(ASC DESC)) { my $error = 0; my $tix = RT::Tickets->new( RT->SystemUser ); $tix->FromSQL( $query ); $tix->OrderBy( FIELD => $test->{'Order'}, ORDER => $order ); ok($tix->Count, "found ticket(s)") or $error = 1; my ($order_ok, $last) = (1, $order eq 'ASC'? '-': 'zzzzzz'); while ( my $t = $tix->Next ) { my $tmp; if ( $order eq 'ASC' ) { $tmp = ((split( /,/, $last))[0] cmp (split( /,/, $t->Subject))[0]); } else { $tmp = -((split( /,/, $last))[-1] cmp (split( /,/, $t->Subject))[-1]); } if ( $tmp > 0 ) { $order_ok = 0; last; } $last = $t->Subject; } ok( $order_ok, "$order order of tickets is good" ) or $error = 1; if ( $error ) { diag "Wrong SQL query:". $tix->BuildSelectQuery; $tix->GotoFirstItem; while ( my $t = $tix->Next ) { diag sprintf "%02d - %s", $t->id, $t->Subject; } } } } } @tickets = RT::Test->create_tickets( { RandomOrder => 1 }, { Queue => $qids[0], Subject => 'z' }, { Queue => $qids[1], Subject => 'a' }, ); @test = ( { Order => "Queue" }, ); run_tests(); @tickets = (); rt-4.4.2/t/ticket/circular_links.t0000664000175000017500000000337113131430353016755 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my ( $foo, $bar, $baz ) = RT::Test->create_tickets( { Queue => 'General' }, { Subject => 'foo' }, { Subject => 'bar' }, { Subject => 'baz' } ); diag "test circular DependsOn"; my ( $status, $msg ) = $foo->AddLink( Type => 'DependsOn', Target => $bar->id ); ok( $status, "foo depends on bar" ); ( $status, $msg ) = $foo->AddLink( Type => 'DependsOn', Base => $bar->id ); ok( !$status, "foo can't be depended on bar" ); ( $status, $msg ) = $bar->AddLink( Type => 'DependsOn', Target => $foo->id ); ok( !$status, "bar can't depend on foo back" ); ( $status, $msg ) = $bar->AddLink( Type => 'DependsOn', Target => $baz->id ); ok( $status, "bar depends on baz" ); ( $status, $msg ) = $baz->AddLink( Type => 'DependsOn', Target => $foo->id ); ok( !$status, "baz can't depend on foo back" ); diag "test circular MemberOf"; ( $status, $msg ) = $foo->AddLink( Type => 'MemberOf', Target => $bar->id ); ok( $status, "foo is a member of bar" ); ( $status, $msg ) = $foo->AddLink( Type => 'MemberOf', Base => $bar->id ); ok( !$status, "foo can't have member bar" ); ( $status, $msg ) = $bar->AddLink( Type => 'MemberOf', Target => $foo->id ); ok( !$status, "bar can't be a member of foo" ); ( $status, $msg ) = $bar->AddLink( Type => 'MemberOf', Target => $baz->id ); ok( $status, "baz is a member of bar" ); ( $status, $msg ) = $baz->AddLink( Type => 'DependsOn', Target => $foo->id ); ok( !$status, "baz can't be a member of foo" ); diag "test circular RefersTo"; ( $status, $msg ) = $foo->AddLink( Type => 'RefersTo', Target => $bar->id ); ok( $status, "foo refers to bar" ); ( $status, $msg ) = $foo->AddLink( Type => 'RefersTo', Base => $bar->id ); ok( $status, "foo can be referred to by bar" ); done_testing; rt-4.4.2/t/ticket/requestor-order.t0000664000175000017500000001131213131430353017105 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 58; use_ok('RT'); use RT::Ticket; my $q = RT::Queue->new(RT->SystemUser); my $queue = 'SearchTests-'.rand(200); $q->Create(Name => $queue); my @requestors = ( ('bravo@example.com') x 6, ('alpha@example.com') x 6, ('delta@example.com') x 6, ('charlie@example.com') x 6, (undef) x 6); my @subjects = ("first test", "second test", "third test", "fourth test", "fifth test") x 6; while (@requestors) { my $t = RT::Ticket->new(RT->SystemUser); my ( $id, undef $msg ) = $t->Create( Queue => $q->id, Subject => shift @subjects, Requestor => [ shift @requestors ] ); ok( $id, $msg ); } { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue'"); is($tix->Count, 30, "found thirty tickets"); } { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND requestor = 'alpha\@example.com'"); $tix->OrderByCols({ FIELD => "Subject" }); my @subjects; while (my $t = $tix->Next) { push @subjects, $t->Subject; } is(@subjects, 6, "found six tickets"); is_deeply( \@subjects, [ sort @subjects ], "Subjects are sorted"); } sub check_emails_order { my ($tix,$count,$order) = (@_); my @mails; while (my $t = $tix->Next) { push @mails, $t->RequestorAddresses; } is(@mails, $count, "found $count tickets for ". $tix->Query); my @required_order; if( $order =~ /asc/i ) { @required_order = sort { $a? ($b? ($a cmp $b) : -1) : 1} @mails; } else { @required_order = sort { $a? ($b? ($b cmp $a) : -1) : 1} @mails; } foreach( reverse splice @mails ) { if( $_ ) { unshift @mails, $_ } else { push @mails, $_ } } is_deeply( \@mails, \@required_order, "Addresses are sorted"); } { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND subject = 'first test' AND Requestor.EmailAddress LIKE 'example.com'"); $tix->OrderByCols({ FIELD => "Requestor.EmailAddress" }); check_emails_order($tix, 5, 'ASC'); $tix->OrderByCols({ FIELD => "Requestor.EmailAddress", ORDER => 'DESC' }); check_emails_order($tix, 5, 'DESC'); } { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Subject = 'first test'"); $tix->OrderByCols({ FIELD => "Requestor.EmailAddress" }); check_emails_order($tix, 6, 'ASC'); $tix->OrderByCols({ FIELD => "Requestor.EmailAddress", ORDER => 'DESC' }); check_emails_order($tix, 6, 'DESC'); } { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Subject = 'first test'"); $tix->OrderByCols({ FIELD => "Requestor.EmailAddress" }); check_emails_order($tix, 6, 'ASC'); $tix->OrderByCols({ FIELD => "Requestor.EmailAddress", ORDER => 'DESC' }); check_emails_order($tix, 6, 'DESC'); } { # create ticket with group as member of the requestors group my $t = RT::Ticket->new(RT->SystemUser); my ( $id, $msg ) = $t->Create( Queue => $q->id, Subject => "first test", Requestor => 'badaboom@example.com', ); ok( $id, "ticket created" ) or diag( "error: $msg" ); my $g = RT::Group->new(RT->SystemUser); my ($gid); ($gid, $msg) = $g->CreateUserDefinedGroup(Name => '20-sort-by-requestor.t-'.rand(200)); ok($gid, "created group") or diag("error: $msg"); ($id, $msg) = $t->Requestors->AddMember( $gid ); ok($id, "added group to requestors group") or diag("error: $msg"); } my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue' AND Subject = 'first test'"); $tix->OrderByCols({ FIELD => "Requestor.EmailAddress" }); check_emails_order($tix, 7, 'ASC'); $tix->OrderByCols({ FIELD => "Requestor.EmailAddress", ORDER => 'DESC' }); check_emails_order($tix, 7, 'DESC'); { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue'"); $tix->OrderByCols({ FIELD => "Requestor.EmailAddress" }); $tix->RowsPerPage(30); my @mails; while (my $t = $tix->Next) { push @mails, $t->RequestorAddresses; } is(@mails, 30, "found thirty tickets"); is_deeply( [grep {$_} @mails], [ sort grep {$_} @mails ], "Paging works (exclude nulls, which are db-dependant)"); } { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '$queue'"); $tix->OrderByCols({ FIELD => "Requestor.EmailAddress" }); $tix->RowsPerPage(30); my @mails; while (my $t = $tix->Next) { push @mails, $t->RequestorAddresses; } is(@mails, 30, "found thirty tickets"); is_deeply( [grep {$_} @mails], [ sort grep {$_} @mails ], "Paging works (exclude nulls, which are db-dependant)"); } RT::Test->mailsent_ok(25); rt-4.4.2/t/ticket/linking.t0000664000175000017500000003314313131430353015404 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 102; use Test::Warn; use_ok('RT'); use_ok('RT::Ticket'); use_ok('RT::ScripConditions'); use_ok('RT::ScripActions'); use_ok('RT::Template'); use_ok('RT::Scrips'); use_ok('RT::Scrip'); my $filename = File::Spec->catfile( RT::Test->temp_directory, 'link_count' ); open my $fh, '>', $filename or die $!; close $fh; my $link_acl_checks_orig = RT->Config->Get( 'StrictLinkACL' ); RT->Config->Set( 'StrictLinkACL', 1); my $condition = RT::ScripCondition->new( RT->SystemUser ); $condition->Load('User Defined'); ok($condition->id); my $action = RT::ScripAction->new( RT->SystemUser ); $action->Load('User Defined'); ok($action->id); my $template = RT::Template->new( RT->SystemUser ); $template->Load('Blank'); ok($template->id); my $q1 = RT::Queue->new(RT->SystemUser); my ($id,$msg) = $q1->Create(Name => "LinkTest1.$$"); ok ($id,$msg); my $q2 = RT::Queue->new(RT->SystemUser); ($id,$msg) = $q2->Create(Name => "LinkTest2.$$"); ok ($id,$msg); my $commit_code = <; \$data += 0; close \$file; \$RT::Logger->debug("Data is \$data"); open( \$file, '>', "$filename" ) or die "couldn't open $filename"; if (\$self->TransactionObj->Type eq 'AddLink') { \$RT::Logger->debug("AddLink"); print \$file \$data+1, "\n"; } elsif (\$self->TransactionObj->Type eq 'DeleteLink') { \$RT::Logger->debug("DeleteLink"); print \$file \$data-1, "\n"; } else { \$RT::Logger->error("THIS SHOULDN'T HAPPEN"); print \$file "666\n"; } close \$file; 1; END my $Scrips = RT::Scrips->new( RT->SystemUser ); $Scrips->UnLimit; while ( my $Scrip = $Scrips->Next ) { $Scrip->Delete if $Scrip->Description and $Scrip->Description =~ /Add or Delete Link \d+/; } my $scrip = RT::Scrip->new(RT->SystemUser); ($id,$msg) = $scrip->Create( Description => "Add or Delete Link $$", ScripCondition => $condition->id, ScripAction => $action->id, Template => $template->id, Stage => 'TransactionCreate', Queue => 0, CustomIsApplicableCode => '$self->TransactionObj->Type =~ /(Add|Delete)Link/;', CustomPrepareCode => '1;', CustomCommitCode => $commit_code, ); ok($id, "Scrip created"); my $u1 = RT::User->new(RT->SystemUser); ($id,$msg) = $u1->Create(Name => "LinkTestUser.$$"); ok ($id,$msg); # grant ShowTicket right to allow count transactions ($id,$msg) = $u1->PrincipalObj->GrantRight ( Object => $q1, Right => 'ShowTicket'); ok ($id,$msg); ($id,$msg) = $u1->PrincipalObj->GrantRight ( Object => $q2, Right => 'ShowTicket'); ok ($id,$msg); ($id,$msg) = $u1->PrincipalObj->GrantRight ( Object => $q1, Right => 'CreateTicket'); ok ($id,$msg); my $creator = RT::CurrentUser->new($u1->id); diag('Create tickets without rights to link'); { # on q2 we have no rights, yet my $parent = RT::Ticket->new( RT->SystemUser ); my ($id,$tid,$msg) = $parent->Create( Subject => 'Link test 1', Queue => $q2->id ); ok($id,$msg); my $child = RT::Ticket->new( $creator ); ($id,$tid,$msg) = $child->Create( Subject => 'Link test 1', Queue => $q1->id, MemberOf => $parent->id ); ok($id,$msg); $child->CurrentUser( RT->SystemUser ); is($child->_Links('Base')->Count, 0, 'link was not created, no permissions'); is($child->_Links('Target')->Count, 0, 'link was not create, no permissions'); } diag('Create tickets with rights checks on one end of a link'); { # on q2 we have no rights, but use checking one only on thing RT->Config->Set( StrictLinkACL => 0 ); my $parent = RT::Ticket->new( RT->SystemUser ); my ($id,$tid,$msg) = $parent->Create( Subject => 'Link test 1', Queue => $q2->id ); ok($id,$msg); my $child = RT::Ticket->new( $creator ); ($id,$tid,$msg) = $child->Create( Subject => 'Link test 1', Queue => $q1->id, MemberOf => $parent->id ); ok($id,$msg); $child->CurrentUser( RT->SystemUser ); is($child->_Links('Base')->Count, 1, 'link was created'); is($child->_Links('Target')->Count, 0, 'link was created only one'); # only one scrip run (on second ticket) since this is on a ticket Create txn is(link_count($filename), 1, "scrips ok"); RT->Config->Set( StrictLinkACL => 1 ); } ($id,$msg) = $u1->PrincipalObj->GrantRight ( Object => $q1, Right => 'ModifyTicket'); ok ($id,$msg); diag('try to add link without rights'); { # on q2 we have no rights, yet my $parent = RT::Ticket->new( RT->SystemUser ); my ($id,$tid,$msg) = $parent->Create( Subject => 'Link test 1', Queue => $q2->id ); ok($id,$msg); my $child = RT::Ticket->new( $creator ); ($id,$tid,$msg) = $child->Create( Subject => 'Link test 1', Queue => $q1->id ); ok($id,$msg); ($id, $msg) = $child->AddLink(Type => 'MemberOf', Target => $parent->id); ok(!$id, $msg); is(link_count($filename), 0, "scrips ok"); $child->CurrentUser( RT->SystemUser ); is($child->_Links('Base')->Count, 0, 'link was not created, no permissions'); is($child->_Links('Target')->Count, 0, 'link was not create, no permissions'); } diag('add link with rights only on base'); { # on q2 we have no rights, but use checking one only on thing RT->Config->Set( StrictLinkACL => 0 ); my $parent = RT::Ticket->new( RT->SystemUser ); my ($id,$tid,$msg) = $parent->Create( Subject => 'Link test 1', Queue => $q2->id ); ok($id,$msg); my $child = RT::Ticket->new( $creator ); ($id,$tid,$msg) = $child->Create( Subject => 'Link test 1', Queue => $q1->id ); ok($id,$msg); ($id, $msg) = $child->AddLink(Type => 'MemberOf', Target => $parent->id); ok($id, $msg); is(link_count($filename), 2, "scrips ok"); $child->CurrentUser( RT->SystemUser ); is($child->_Links('Base')->Count, 1, 'link was created'); is($child->_Links('Target')->Count, 0, 'link was created only one'); $child->CurrentUser( $creator ); # turn off feature and try to delete link, we should fail RT->Config->Set( StrictLinkACL => 1 ); ($id, $msg) = $child->DeleteLink(Type => 'MemberOf', Target => $parent->id); ok(!$id, $msg); is(link_count($filename), 0, "scrips ok"); $child->CurrentUser( RT->SystemUser ); $child->_Links('Base')->_DoCount; is($child->_Links('Base')->Count, 1, 'link was not deleted'); $child->CurrentUser( $creator ); # try to delete link, we should success as feature is active RT->Config->Set( StrictLinkACL => 0 ); ($id, $msg) = $child->DeleteLink(Type => 'MemberOf', Target => $parent->id); ok($id, $msg); is(link_count($filename), -2, "scrips ok"); $child->CurrentUser( RT->SystemUser ); $child->_Links('Base')->_DoCount; is($child->_Links('Base')->Count, 0, 'link was deleted'); RT->Config->Set( StrictLinkACL => 1 ); } my $tid; my $ticket = RT::Ticket->new( $creator); ok($ticket->isa('RT::Ticket')); ($id,$tid, $msg) = $ticket->Create(Subject => 'Link test 1', Queue => $q1->id); ok ($id,$msg); diag('try link to itself'); { warning_like { ($id, $msg) = $ticket->AddLink(Type => 'RefersTo', Target => $ticket->id); } qr/Can't link a ticket to itself/; ok(!$id, $msg); is(link_count($filename), 0, "scrips ok"); } my $ticket2 = RT::Ticket->new(RT->SystemUser); ($id, $tid, $msg) = $ticket2->Create(Subject => 'Link test 2', Queue => $q2->id); ok ($id, $msg); ($id,$msg) =$ticket->AddLink(Type => 'RefersTo', Target => $ticket2->id); ok(!$id,$msg); is(link_count($filename), 0, "scrips ok"); ($id,$msg) = $u1->PrincipalObj->GrantRight ( Object => $q2, Right => 'CreateTicket'); ok ($id,$msg); ($id,$msg) = $u1->PrincipalObj->GrantRight ( Object => $q2, Right => 'ModifyTicket'); ok ($id,$msg); ($id,$msg) = $ticket->AddLink(Type => 'RefersTo', Target => $ticket2->id); ok($id,$msg); is(link_count($filename), 2, "scrips ok"); warnings_like { ($id,$msg) = $ticket->AddLink(Type => 'RefersTo', Target => -1); } [ qr/Could not determine a URI scheme for -1/, ]; ($id,$msg) = $ticket->AddLink(Type => 'RefersTo', Target => $ticket2->id); ok($id,$msg); is(link_count($filename), 0, "scrips ok"); # already added my $transactions = $ticket2->Transactions; $transactions->Limit( FIELD => 'Type', VALUE => 'AddLink' ); is( $transactions->Count, 1, "Transaction found in other ticket" ); is( $transactions->First->Field , 'ReferredToBy'); is( $transactions->First->NewValue , $ticket->URI ); ($id,$msg) = $ticket->DeleteLink(Type => 'RefersTo', Target => $ticket2->id); ok($id,$msg); is(link_count($filename), -2, "scrips ok"); $transactions = $ticket2->Transactions; $transactions->Limit( FIELD => 'Type', VALUE => 'DeleteLink' ); is( $transactions->Count, 1, "Transaction found in other ticket" ); is( $transactions->First->Field , 'ReferredToBy'); is( $transactions->First->OldValue , $ticket->URI ); ($id,$msg) =$ticket->AddLink(Type => 'RefersTo', Target => $ticket2->id); ok($id,$msg); is(link_count($filename), 2, "scrips ok"); ($id,$msg) =$ticket->DeleteLink(Type => 'RefersTo', Target => $ticket2->id); ok($id,$msg); is(link_count($filename), -2, "scrips ok"); # tests for silent behaviour ($id,$msg) = $ticket->AddLink(Type => 'RefersTo', Target => $ticket2->id, Silent => 1); ok($id,$msg); is(link_count($filename), 0, "scrips ok"); { my $transactions = $ticket->Transactions; $transactions->Limit( FIELD => 'Type', VALUE => 'AddLink' ); is( $transactions->Count, 2, "Still two txns on the base" ); $transactions = $ticket2->Transactions; $transactions->Limit( FIELD => 'Type', VALUE => 'AddLink' ); is( $transactions->Count, 2, "Still two txns on the target" ); } ($id,$msg) =$ticket->DeleteLink(Type => 'RefersTo', Target => $ticket2->id, Silent => 1); ok($id,$msg); is(link_count($filename), 0, "scrips ok"); ($id,$msg) = $ticket->AddLink(Type => 'RefersTo', Target => $ticket2->id, SilentBase => 1); ok($id,$msg); is(link_count($filename), 1, "scrips ok"); { my $transactions = $ticket->Transactions; $transactions->Limit( FIELD => 'Type', VALUE => 'AddLink' ); is( $transactions->Count, 2, "still five txn on the base" ); $transactions = $ticket2->Transactions; $transactions->Limit( FIELD => 'Type', VALUE => 'AddLink' ); is( $transactions->Count, 3, "+1 txn on the target" ); } ($id,$msg) =$ticket->DeleteLink(Type => 'RefersTo', Target => $ticket2->id, SilentBase => 1); ok($id,$msg); is(link_count($filename), -1, "scrips ok"); ($id,$msg) = $ticket->AddLink(Type => 'RefersTo', Target => $ticket2->id, SilentTarget => 1); ok($id,$msg); is(link_count($filename), 1, "scrips ok"); { my $transactions = $ticket->Transactions; $transactions->Limit( FIELD => 'Type', VALUE => 'AddLink' ); is( $transactions->Count, 3, "+1 txn on the base" ); $transactions = $ticket2->Transactions; $transactions->Limit( FIELD => 'Type', VALUE => 'AddLink' ); is( $transactions->Count, 3, "three txns on the target" ); } ($id,$msg) =$ticket->DeleteLink(Type => 'RefersTo', Target => $ticket2->id, SilentTarget => 1); ok($id,$msg); is(link_count($filename), -1, "scrips ok"); # restore RT->Config->Set( StrictLinkACL => $link_acl_checks_orig ); { my $Scrips = RT::Scrips->new( RT->SystemUser ); $Scrips->Limit( FIELD => 'Description', OPERATOR => 'STARTSWITH', VALUE => 'Add or Delete Link '); while ( my $s = $Scrips->Next ) { $s->Delete }; } my $link = RT::Link->new( RT->SystemUser ); ($id,$msg) = $link->Create( Base => $ticket->URI, Target => $ticket2->URI, Type => 'MyLinkType' ); ok($id, $msg); ok($link->LocalBase == $ticket->id, "LocalBase set correctly"); ok($link->LocalTarget == $ticket2->id, "LocalTarget set correctly"); { no warnings 'once'; *RT::NotTicket::Id = sub { return $$ }; *RT::NotTicket::id = \&RT::NotTicket::Id; } { package RT::URI::not_ticket; use RT::URI::base; use vars qw(@ISA); @ISA = qw/RT::URI::base/; sub IsLocal { 1; } sub Object { return bless {}, 'RT::NotTicket'; } } my $orig_getresolver = \&RT::URI::_GetResolver; { no warnings 'redefine'; *RT::URI::_GetResolver = sub { my $self = shift; my $scheme = shift; $scheme =~ s/(\.|-)/_/g; my $resolver; my $module = "RT::URI::$scheme"; $resolver = $module->new($self->CurrentUser); if ($resolver) { $self->{'resolver'} = $resolver; } else { $self->{'resolver'} = RT::URI::base->new($self->CurrentUser); } }; } ($id,$msg) = $link->Create( Base => "not_ticket::$RT::Organization/notticket/$$", Target => $ticket2->URI, Type => 'MyLinkType' ); ok($id, $msg); ok($link->LocalBase == 0, "LocalBase set correctly"); ok($link->LocalTarget == $ticket2->id, "LocalTarget set correctly"); ($id,$msg) = $link->Create( Target => "not_ticket::$RT::Organization/notticket/$$", Base => $ticket->URI, Type => 'MyLinkType' ); ok($id, $msg); ok($link->LocalTarget == 0, "LocalTarget set correctly"); ok($link->LocalBase == $ticket->id, "LocalBase set correctly"); ($id,$msg) = $link->Create( Target => "not_ticket::$RT::Organization/notticket/1$$", Base => "not_ticket::$RT::Organization/notticket/$$", Type => 'MyLinkType' ); ok($id, $msg); ok($link->LocalTarget == 0, "LocalTarget set correctly"); ok($link->LocalBase == 0, "LocalBase set correctly"); # restore _GetResolver { no warnings 'redefine'; *RT::URI::_GetResolver = $orig_getresolver; } sub link_count { my $file = shift; open( my $fh, '<', $file ) or die "couldn't open $file"; my $data = <$fh>; close $fh; truncate($file, 0); return 0 unless defined $data; chomp $data; return $data + 0; } rt-4.4.2/t/ticket/deferred_owner.t0000664000175000017500000000776613131430353016757 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodata => 1, tests => undef; use Test::Warn; my $tester = RT::Test->load_or_create_user( EmailAddress => 'tester@localhost', ); ok $tester && $tester->id, 'loaded or created user'; my $queue = RT::Test->load_or_create_queue( Name => 'General' ); ok $queue && $queue->id, 'loaded or created queue'; my $owner_role_group = $queue->RoleGroup( 'Owner' ); ok $owner_role_group->id, 'loaded owners role group of the queue'; diag "check that deffering owner doesn't regress"; { RT::Test->set_rights( { Principal => $tester->PrincipalObj, Right => [qw(SeeQueue ShowTicket CreateTicket OwnTicket)], }, { Principal => $owner_role_group->PrincipalObj, Object => $queue, Right => [qw(ModifyTicket)], }, ); my $ticket = RT::Ticket->new( $tester ); # tester is owner, owner has right to modify owned tickets, # this right is required to set somebody as AdminCc my ($tid, $txn_id, $msg) = $ticket->Create( Queue => $queue->id, Owner => $tester->id, AdminCc => 'root@localhost', ); diag $msg if $msg; ok $tid, "created a ticket"; is $ticket->Owner, $tester->id, 'correct owner'; like $ticket->AdminCcAddresses, qr/root\@localhost/, 'root is there'; } diag "check that previous trick doesn't work without sufficient rights"; { RT::Test->set_rights( { Principal => $tester->PrincipalObj, Right => [qw(SeeQueue ShowTicket CreateTicket OwnTicket)], }, ); my $ticket = RT::Ticket->new( $tester ); # tester is owner, owner has right to modify owned tickets, # this right is required to set somebody as AdminCc my ($tid, $txn_id, $msg) = $ticket->Create( Queue => $queue->id, Owner => $tester->id, AdminCc => 'root@localhost', ); diag $msg if $msg; ok $tid, "created a ticket"; is $ticket->Owner, $tester->id, 'correct owner'; unlike $ticket->AdminCcAddresses, qr/root\@localhost/, 'root is not there'; } diag "check that deffering owner really works"; { RT::Test->set_rights( { Principal => $tester->PrincipalObj, Right => [qw(SeeQueue ShowTicket CreateTicket)], }, { Principal => $queue->Cc->PrincipalObj, Object => $queue, Right => [qw(OwnTicket TakeTicket)], }, ); my $ticket = RT::Ticket->new( $tester ); # set tester as Cc, Cc role group has right to own and take tickets my ($tid, $txn_id, $msg) = $ticket->Create( Queue => $queue->id, Owner => $tester->id, Cc => 'tester@localhost', ); diag $msg if $msg; ok $tid, "created a ticket"; like $ticket->CcAddresses, qr/tester\@localhost/, 'tester is in the cc list'; is $ticket->Owner, $tester->id, 'tester is also owner'; my $owners = $ticket->OwnerGroup->MembersObj; is $owners->Count, 1, 'one record in owner group'; is $owners->First->MemberObj->Id, $tester->id, 'and it is tester'; } diag "check that deffering doesn't work without correct rights"; { RT::Test->set_rights( { Principal => $tester->PrincipalObj, Right => [qw(SeeQueue ShowTicket CreateTicket)], }, ); my $ticket = RT::Ticket->new( $tester ); # set tester as Cc, Cc role group has right to own and take tickets my ($tid, $txn_id, $msg); warning_like { ($tid, $txn_id, $msg) = $ticket->Create( Queue => $queue->id, Owner => $tester->id, Cc => 'tester@localhost', ); } qr/User .* was proposed as a ticket owner but has no rights to own tickets in General/; diag $msg if $msg; ok $tid, "created a ticket"; like $ticket->CcAddresses, qr/tester\@localhost/, 'tester is in the cc list'; is $ticket->Owner, RT->Nobody->id, 'nobody is the owner'; my $owners = $ticket->OwnerGroup->MembersObj; is $owners->Count, 1, 'one record in owner group'; is $owners->First->MemberObj->Id, RT->Nobody->id, 'and it is nobody'; } done_testing; rt-4.4.2/t/ticket/search_by_queue.t0000664000175000017500000000526513131430353017120 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodata => 1, tests => undef; use RT::Ticket; my $qa = RT::Test->load_or_create_queue( Name => 'Queue A' ); ok $qa && $qa->id, 'loaded or created queue'; my $qb = RT::Test->load_or_create_queue( Name => 'Queue B' ); ok $qb && $qb->id, 'loaded or created queue'; my @tickets = RT::Test->create_tickets( {}, { Queue => $qa->id, Subject => 'a1', }, { Queue => $qa->id, Subject => 'a2', }, { Queue => $qb->id, Subject => 'b1', }, { Queue => $qb->id, Subject => 'b2', }, ); run_tests( \@tickets, 'Queue = "Queue A"' => { a1 => 1, a2 => 1, b1 => 0, b2 => 0 }, 'Queue = '. $qa->id => { a1 => 1, a2 => 1, b1 => 0, b2 => 0 }, 'Queue != "Queue A"' => { a1 => 0, a2 => 0, b1 => 1, b2 => 1 }, 'Queue != '. $qa->id => { a1 => 0, a2 => 0, b1 => 1, b2 => 1 }, 'Queue = "Queue B"' => { a1 => 0, a2 => 0, b1 => 1, b2 => 1 }, 'Queue = '. $qb->id => { a1 => 0, a2 => 0, b1 => 1, b2 => 1 }, 'Queue != "Queue B"' => { a1 => 1, a2 => 1, b1 => 0, b2 => 0 }, 'Queue != '. $qb->id => { a1 => 1, a2 => 1, b1 => 0, b2 => 0 }, 'Queue = "Bad Queue"' => { a1 => 0, a2 => 0, b1 => 0, b2 => 0 }, 'Queue != "Bad Queue"' => { a1 => 1, a2 => 1, b1 => 1, b2 => 1 }, 'Queue LIKE "Queue A"' => { a1 => 1, a2 => 1, b1 => 0, b2 => 0 }, 'Queue LIKE "Queue B"' => { a1 => 0, a2 => 0, b1 => 1, b2 => 1 }, 'Queue LIKE "Bad Queue"' => { a1 => 0, a2 => 0, b1 => 0, b2 => 0 }, 'Queue LIKE "Queue"' => { a1 => 1, a2 => 1, b1 => 1, b2 => 1 }, 'Queue NOT LIKE "Queue B"' => { a1 => 1, a2 => 1, b1 => 0, b2 => 0 }, 'Queue NOT LIKE "Queue A"' => { a1 => 0, a2 => 0, b1 => 1, b2 => 1 }, 'Queue NOT LIKE "Bad Queue"' => { a1 => 1, a2 => 1, b1 => 1, b2 => 1 }, 'Queue NOT LIKE "Queue"' => { a1 => 0, a2 => 0, b1 => 0, b2 => 0 }, ); done_testing; sub run_tests { my @tickets = @{ shift() }; my %test = @_; my $query_prefix = join ' OR ', map 'id = '. $_->id, @tickets; foreach my $key ( sort keys %test ) { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL( "( $query_prefix ) AND ( $key )" ); my $error = 0; my $count = 0; $count++ foreach grep $_, values %{ $test{$key} }; is($tix->Count, $count, "found correct number of ticket(s) by '$key'") or $error = 1; my $good_tickets = 1; while ( my $ticket = $tix->Next ) { next if $test{$key}->{ $ticket->Subject }; diag $ticket->Subject ." ticket has been found when it's not expected"; $good_tickets = 0; } ok( $good_tickets, "all tickets are good with '$key'" ) or $error = 1; diag "Wrong SQL query for '$key':". $tix->BuildSelectQuery if $error; } } rt-4.4.2/t/ticket/search_by_links.t0000664000175000017500000001233013131430353017103 0ustar vagrantvagrant use strict; use warnings; use RT::Test nodata => 1, tests => 100; use RT::Ticket; my $q = RT::Test->load_or_create_queue( Name => 'Regression' ); ok $q && $q->id, 'loaded or created queue'; my ($total, @tickets, %test) = (0, ()); sub run_tests { my $query_prefix = join ' OR ', map 'id = '. $_->id, @tickets; foreach my $key ( sort keys %test ) { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL( "( $query_prefix ) AND ( $key )" ); my $error = 0; my $count = 0; $count++ foreach grep $_, values %{ $test{$key} }; is($tix->Count, $count, "found correct number of ticket(s) by '$key'") or $error = 1; my $good_tickets = 1; while ( my $ticket = $tix->Next ) { next if $test{$key}->{ $ticket->Subject }; diag $ticket->Subject ." ticket has been found when it's not expected"; $good_tickets = 0; } ok( $good_tickets, "all tickets are good with '$key'" ) or $error = 1; diag "Wrong SQL query for '$key':". $tix->BuildSelectQuery if $error; } } # simple set with "no links", "parent and child" @tickets = RT::Test->create_tickets( { Queue => $q->id }, { Subject => '-', }, { Subject => 'p', }, { Subject => 'c', MemberOf => -1 }, ); $total += @tickets; %test = ( 'Linked IS NOT NULL' => { '-' => 0, c => 1, p => 1 }, 'Linked IS NULL' => { '-' => 1, c => 0, p => 0 }, 'LinkedTo IS NOT NULL' => { '-' => 0, c => 1, p => 0 }, 'LinkedTo IS NULL' => { '-' => 1, c => 0, p => 1 }, 'LinkedFrom IS NOT NULL' => { '-' => 0, c => 0, p => 1 }, 'LinkedFrom IS NULL' => { '-' => 1, c => 1, p => 0 }, 'HasMember IS NOT NULL' => { '-' => 0, c => 0, p => 1 }, 'HasMember IS NULL' => { '-' => 1, c => 1, p => 0 }, 'MemberOf IS NOT NULL' => { '-' => 0, c => 1, p => 0 }, 'MemberOf IS NULL' => { '-' => 1, c => 0, p => 1 }, 'RefersTo IS NOT NULL' => { '-' => 0, c => 0, p => 0 }, 'RefersTo IS NULL' => { '-' => 1, c => 1, p => 1 }, 'Linked = '. $tickets[0]->id => { '-' => 0, c => 0, p => 0 }, 'Linked != '. $tickets[0]->id => { '-' => 1, c => 1, p => 1 }, 'MemberOf = '. $tickets[1]->id => { '-' => 0, c => 1, p => 0 }, 'MemberOf != '. $tickets[1]->id => { '-' => 1, c => 0, p => 1 }, ); { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '". $q->id ."'"); is($tix->Count, $total, "found $total tickets"); } run_tests(); # make sure search by id is on LocalXXX columns { my $tickets = RT::Tickets->new( RT->SystemUser ); $tickets->FromSQL('MemberOf = '. $tickets[0]->id); like $tickets->BuildSelectQuery, qr/LocalBase/; like $tickets->BuildSelectQuery, qr/LocalTarget/; } # another set with tests of combinations searches @tickets = RT::Test->create_tickets( { Queue => $q->id }, { Subject => '-', }, { Subject => 'p', }, { Subject => 'rp', RefersTo => -1 }, { Subject => 'c', MemberOf => -2 }, { Subject => 'rc1', RefersTo => -1 }, { Subject => 'rc2', RefersTo => -2 }, ); $total += @tickets; my $pid = $tickets[1]->id; %test = ( 'RefersTo IS NOT NULL' => { '-' => 0, c => 0, p => 0, rp => 1, rc1 => 1, rc2 => 1 }, 'RefersTo IS NULL' => { '-' => 1, c => 1, p => 1, rp => 0, rc1 => 0, rc2 => 0 }, 'RefersTo IS NOT NULL AND MemberOf IS NOT NULL' => { '-' => 0, c => 0, p => 0, rp => 0, rc1 => 0, rc2 => 0 }, 'RefersTo IS NOT NULL AND MemberOf IS NULL' => { '-' => 0, c => 0, p => 0, rp => 1, rc1 => 1, rc2 => 1 }, 'RefersTo IS NULL AND MemberOf IS NOT NULL' => { '-' => 0, c => 1, p => 0, rp => 0, rc1 => 0, rc2 => 0 }, 'RefersTo IS NULL AND MemberOf IS NULL' => { '-' => 1, c => 0, p => 1, rp => 0, rc1 => 0, rc2 => 0 }, 'RefersTo IS NOT NULL OR MemberOf IS NOT NULL' => { '-' => 0, c => 1, p => 0, rp => 1, rc1 => 1, rc2 => 1 }, 'RefersTo IS NOT NULL OR MemberOf IS NULL' => { '-' => 1, c => 0, p => 1, rp => 1, rc1 => 1, rc2 => 1 }, 'RefersTo IS NULL OR MemberOf IS NOT NULL' => { '-' => 1, c => 1, p => 1, rp => 0, rc1 => 0, rc2 => 0 }, 'RefersTo IS NULL OR MemberOf IS NULL' => { '-' => 1, c => 1, p => 1, rp => 1, rc1 => 1, rc2 => 1 }, "RefersTo = $pid AND MemberOf = $pid" => { '-' => 0, c => 0, p => 0, rp => 0, rc1 => 0, rc2 => 0 }, "RefersTo = $pid AND MemberOf != $pid" => { '-' => 0, c => 0, p => 0, rp => 1, rc1 => 0, rc2 => 0 }, "RefersTo != $pid AND MemberOf = $pid" => { '-' => 0, c => 1, p => 0, rp => 0, rc1 => 0, rc2 => 0 }, "RefersTo != $pid AND MemberOf != $pid" => { '-' => 1, c => 0, p => 1, rp => 0, rc1 => 1, rc2 => 1 }, "RefersTo = $pid OR MemberOf = $pid" => { '-' => 0, c => 1, p => 0, rp => 1, rc1 => 0, rc2 => 0 }, "RefersTo = $pid OR MemberOf != $pid" => { '-' => 1, c => 0, p => 1, rp => 1, rc1 => 1, rc2 => 1 }, "RefersTo != $pid OR MemberOf = $pid" => { '-' => 1, c => 1, p => 1, rp => 0, rc1 => 1, rc2 => 1 }, "RefersTo != $pid OR MemberOf != $pid" => { '-' => 1, c => 1, p => 1, rp => 1, rc1 => 1, rc2 => 1 }, ); { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL("Queue = '". $q->id ."'"); is($tix->Count, $total, "found $total tickets"); } run_tests(); @tickets = (); rt-4.4.2/t/ticket/simple_search.t0000664000175000017500000000276313131430353016573 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 12; use_ok('RT'); my $q = RT::Queue->new(RT->SystemUser); my $queue = 'SearchTests-'.$$; $q->Create(Name => $queue); ok ($q->id, "Created the queue"); my $t1 = RT::Ticket->new(RT->SystemUser); my ( $id, undef, $msg ) = $t1->Create( Queue => $q->id, Subject => 'SearchTest1', Requestor => ['search2@example.com'], ); ok( $id, $msg ); use_ok("RT::Search::Simple"); my $tickets = RT::Tickets->new(RT->SystemUser); my $quick = RT::Search::Simple->new(Argument => "", TicketsObj => $tickets); my @tests = ( "General new open root" => "( Owner = 'root' ) AND ( Queue = 'General' ) AND ( Status = 'new' OR Status = 'open' )", "General" => "( Queue = 'General' ) AND ( Status = '__Active__' )", "General any" => "( Queue = 'General' )", "fulltext:jesse" => "( Content LIKE 'jesse' ) AND ( Status = '__Active__' )", $queue => "( Queue = '$queue' ) AND ( Status = '__Active__' )", "root $queue" => "( Owner = 'root' ) AND ( Queue = '$queue' ) AND ( Status = '__Active__' )", "notauser $queue" => "( Subject LIKE 'notauser' ) AND ( Queue = '$queue' ) AND ( Status = '__Active__' )", "notauser $queue root" => "( Subject LIKE 'notauser' ) AND ( Owner = 'root' ) AND ( Queue = '$queue' ) AND ( Status = '__Active__' )"); while (my ($from, $to) = splice @tests, 0, 2) { is($quick->QueryToSQL($from), $to, "<$from> -> <$to>"); } rt-4.4.2/t/ticket/link_search.t0000664000175000017500000002065113131430353016233 0ustar vagrantvagrantuse strict; use warnings; use RT; # Load the config file use RT::Test tests => 63; #Connect to the database and get RT::SystemUser and RT::Nobody loaded #Get the current user all loaded my $CurrentUser = RT->SystemUser; my $queue = RT::Queue->new($CurrentUser); $queue->Load('General') || Abort(loc("Queue could not be loaded.")); my $child_ticket = RT::Ticket->new( $CurrentUser ); my ($childid) = $child_ticket->Create( Subject => 'test child', Queue => $queue->Id, ); ok($childid, "We created a child ticket"); my $parent_ticket = RT::Ticket->new( $CurrentUser ); my ($parentid) = $parent_ticket->Create( Subject => 'test parent', Children => [ $childid ], Queue => $queue->Id, ); ok($parentid, "We created a parent ticket"); my $Collection = RT::Tickets->new($CurrentUser); $Collection->LimitMemberOf( $parentid ); is($Collection->Count,1, "We found only one result"); ok($Collection->First); is($Collection->First->id, $childid, "We found the collection of all children of $parentid with Limit"); $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL("MemberOf = $parentid"); is($Collection->Count, 1, "We found only one result"); ok($Collection->First); is($Collection->First->id, $childid, "We found the collection of all children of $parentid with TicketSQL"); $Collection = RT::Tickets->new($CurrentUser); $Collection->LimitHasMember ($childid); is($Collection->Count,1, "We found only one result"); ok($Collection->First); is($Collection->First->id, $parentid, "We found the collection of all parents of $childid with Limit"); $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL("HasMember = $childid"); is($Collection->Count,1, "We found only one result"); ok($Collection->First); is($Collection->First->id, $parentid, "We found the collection of all parents of $childid with TicketSQL"); # Now we find a collection of all the tickets which have no members. they should have no children. $Collection = RT::Tickets->new($CurrentUser); $Collection->LimitHasMember(''); # must contain child; must not contain parent my %has; while (my $t = $Collection->Next) { ++$has{$t->id}; } ok( $has{$childid}, "The collection has our child - $childid"); ok( !$has{$parentid}, "The collection doesn't have our parent - $parentid"); # Now we find a collection of all the tickets which are not members of anything. they should have no parents. $Collection = RT::Tickets->new($CurrentUser); $Collection->LimitMemberOf(''); # must contain parent; must not contain child %has = (); while (my $t = $Collection->Next) { ++$has{$t->id}; } ok ($has{$parentid} , "The collection has our parent - $parentid"); ok( !$has{$childid}, "The collection doesn't have our child - $childid"); # Do it all over with TicketSQL # # Now we find a collection of all the tickets which have no members. they should have no children. $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL ("HasMember IS NULL"); # must contain parent; must not contain child %has = (); while (my $t = $Collection->Next) { ++$has{$t->id}; } ok( !$has{$parentid}, "The collection doesn't have our parent - $parentid"); ok( $has{$childid}, "The collection has our child - $childid"); # Now we find a collection of all the tickets which have no members. they should have no children. # Alternate syntax $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL("HasMember = ''"); # must contain parent; must not contain child %has = (); while (my $t = $Collection->Next) { ++$has{$t->id}; } ok( !$has{$parentid}, "The collection doesn't have our parent - $parentid"); ok( $has{$childid}, "The collection has our child - $childid"); # Now we find a collection of all the tickets which are not members of anything. they should have no parents. $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL("MemberOf IS NULL"); # must not contain parent; must contain parent %has = (); while (my $t = $Collection->Next) { ++$has{$t->id}; } ok( $has{$parentid}, "The collection has our parent - $parentid"); ok( !$has{$childid}, "The collection doesn't have our child - $childid"); # Now we find a collection of all the tickets which are not members of anything. they should have no parents. $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL("MemberOf = ''"); # must not contain parent; must contain parent %has = (); while (my $t = $Collection->Next) { ++$has{$t->id}; } ok( $has{$parentid}, "The collection has our parent - $parentid"); ok( !$has{$childid}, "The collection doesn't have our child - $childid"); # Now we find a collection of all the tickets which are not members of the parent ticket $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL("MemberOf != $parentid"); %has = (); while (my $t = $Collection->Next) { ++$has{$t->id}; } ok( $has{$parentid}, "The collection has our parent - $parentid"); ok( !$has{$childid}, "The collection doesn't have our child - $childid"); $Collection = RT::Tickets->new($CurrentUser); $Collection->LimitMemberOf($parentid, OPERATOR => '!='); %has = (); while (my $t = $Collection->Next) { ++$has{$t->id}; } ok( $has{$parentid}, "The collection has our parent - $parentid"); ok( !$has{$childid}, "The collection doesn't have our child - $childid"); my $grand_child_ticket = RT::Ticket->new( $CurrentUser ); my ($grand_childid) = $child_ticket->Create( Subject => 'test child', Queue => $queue->Id, MemberOf => $childid, ); ok($childid, "We created a grand child ticket"); my $unlinked_ticket = RT::Ticket->new( $CurrentUser ); my ($unlinked_id) = $child_ticket->Create( Subject => 'test unlinked', Queue => $queue->Id, ); ok($unlinked_id, "We created a grand child ticket"); $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL( "LinkedTo = $childid" ); is($Collection->Count,1, "We found only one result"); ok($Collection->First); is($Collection->First->id, $grand_childid, "We found all tickets linked to ticket #$childid"); $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL( "LinkedFrom = $childid" ); is($Collection->Count,1, "We found only one result"); ok($Collection->First); is($Collection->First->id, $parentid, "We found all tickets linked from ticket #$childid"); $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL( "LinkedTo IS NULL" ); ok($Collection->Count, "Result is set is not empty"); %has = (); while (my $t = $Collection->Next) { ++$has{$t->id}; } ok( $has{$parentid}, "parent is in collection"); ok( $has{$unlinked_id}, "unlinked is in collection"); ok( !$has{$childid}, "child is NOT in collection"); ok( !$has{$grand_childid}, "grand child too is not in collection"); $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL( "LinkedTo IS NOT NULL" ); ok($Collection->Count, "Result set is not empty"); %has = (); while (my $t = $Collection->Next) { ++$has{$t->id}; } ok( !$has{$parentid}, "The collection has no our parent - $parentid"); ok( !$has{$unlinked_id}, "unlinked is not in collection"); ok( $has{$childid}, "The collection have our child - $childid"); ok( $has{$grand_childid}, "The collection have our grand child - $grand_childid"); $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL( "LinkedFrom IS NULL" ); ok($Collection->Count, "Result is set is not empty"); %has = (); while (my $t = $Collection->Next) { ++$has{$t->id}; } ok( !$has{$parentid}, "parent is NOT in collection"); ok( !$has{$childid}, "child is NOT in collection"); ok( $has{$grand_childid}, "grand child is in collection"); ok( $has{$unlinked_id}, "unlinked is in collection"); $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL( "LinkedFrom IS NOT NULL" ); ok($Collection->Count, "Result set is not empty"); %has = (); while (my $t = $Collection->Next) { ++$has{$t->id}; } ok( $has{$parentid}, "The collection has our parent - $parentid"); ok( $has{$childid}, "The collection have our child - $childid"); ok( !$has{$grand_childid}, "The collection have no our grand child - $grand_childid"); ok( !$has{$unlinked_id}, "unlinked is not in collection"); $Collection = RT::Tickets->new($CurrentUser); $Collection->FromSQL( "Linked = $childid" ); is($Collection->Count, 2, "We found two tickets: parent and child"); %has = (); while (my $t = $Collection->Next) { ++$has{$t->id}; } ok( !$has{$childid}, "Ticket is not linked to itself"); ok( $has{$parentid}, "The collection has our parent"); ok( $has{$grand_childid}, "The collection have our child"); ok( !$has{$unlinked_id}, "unlinked is not in collection"); rt-4.4.2/t/ticket/badlinks.t0000664000175000017500000000224713131430353015541 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 14; my ($baseurl, $m) = RT::Test->started_ok; ok($m->login, "Logged in"); my $queue = RT::Test->load_or_create_queue(Name => 'General'); ok($queue->Id, "loaded the General queue"); my $ticket = RT::Ticket->new(RT->SystemUser); my ($tid, $txn, $msg) = $ticket->Create( Queue => $queue->id, Subject => 'test links', ); ok $tid, 'created a ticket #'. $tid or diag "error: $msg"; $m->goto_ticket($tid); $m->follow_link_ok( { text => 'Links' }, "Followed link to Links" ); ok $m->form_with_fields("$tid-DependsOn"), "found the form"; my $not_a_ticket_url = "http://example.com/path/to/nowhere"; $m->field("$tid-DependsOn", $not_a_ticket_url); $m->field("DependsOn-$tid", $not_a_ticket_url); $m->field("$tid-MemberOf", $not_a_ticket_url); $m->field("MemberOf-$tid", $not_a_ticket_url); $m->field("$tid-RefersTo", $not_a_ticket_url); $m->field("RefersTo-$tid", $not_a_ticket_url); $m->submit; foreach my $type ("depends on", "member of", "refers to") { $m->content_like(qr/$type.+$not_a_ticket_url/,"base for $type"); $m->content_like(qr/$not_a_ticket_url.+$type/,"target for $type"); } $m->goto_ticket($tid); rt-4.4.2/t/ticket/sort-by-custom-ownership.t0000664000175000017500000000557013131430353020677 0ustar vagrantvagrant use RT; use RT::Test nodata => 1, tests => 7; use strict; use warnings; use RT::Tickets; use RT::Queue; use RT::CustomField; my($ret,$msg); # Test Paw Sort # ---- Create a queue to test with. my $queue = "PAWSortQueue-$$"; my $queue_obj = RT::Queue->new(RT->SystemUser); ($ret, $msg) = $queue_obj->Create(Name => $queue, Description => 'queue for custom field sort testing'); ok($ret, "$queue test queue creation. $msg"); # ---- Create some users my $me = RT::User->new(RT->SystemUser); ($ret, $msg) = $me->Create(Name => "Me$$", EmailAddress => $$.'create-me-1@example.com'); ($ret, $msg) = $me->PrincipalObj->GrantRight(Object =>$queue_obj, Right => 'OwnTicket'); ($ret, $msg) = $me->PrincipalObj->GrantRight(Object =>$queue_obj, Right => 'SeeQueue'); ($ret, $msg) = $me->PrincipalObj->GrantRight(Object =>$queue_obj, Right => 'ShowTicket'); my $you = RT::User->new(RT->SystemUser); ($ret, $msg) = $you->Create(Name => "You$$", EmailAddress => $$.'create-you-1@example.com'); ($ret, $msg) = $you->PrincipalObj->GrantRight(Object =>$queue_obj, Right => 'OwnTicket'); ($ret, $msg) = $you->PrincipalObj->GrantRight(Object =>$queue_obj, Right => 'SeeQueue'); ($ret, $msg) = $you->PrincipalObj->GrantRight(Object =>$queue_obj, Right => 'ShowTicket'); my $nobody = RT::User->new(RT->SystemUser); $nobody->Load('nobody'); # ----- Create some tickets to test with. Assign them some values to # make it easy to sort with. my @tickets = ( [qw[1 10], $me], [qw[2 20], $me], [qw[3 20], $you], [qw[4 30], $you], [qw[5 5], $nobody], [qw[6 55], $nobody], ); for (@tickets) { my $t = RT::Ticket->new(RT->SystemUser); $t->Create( Queue => $queue_obj->Id, Subject => $_->[0], Owner => $_->[2]->Id, Priority => $_->[1], ); } sub check_order { my ($tx, @order) = @_; my @results; while (my $t = $tx->Next) { push @results, $t->Subject; } my $results = join (" ",@results); my $order = join(" ",@order); is( $results, $order ); } # The real tests start here my $cme = RT::CurrentUser->new( $me ); my $metx = RT::Tickets->new( $cme ); # Make sure we can sort in both directions on a queue specific field. $metx->FromSQL(qq[queue="$queue"] ); $metx->OrderBy( FIELD => "Custom.Ownership", ORDER => 'ASC' ); is($metx->Count,6); check_order( $metx, qw[2 1 6 5 4 3]); $metx->OrderBy( FIELD => "Custom.Ownership", ORDER => 'DESC' ); is($metx->Count,6); check_order( $metx, reverse qw[2 1 6 5 4 3]); my $cyou = RT::CurrentUser->new( $you ); my $youtx = RT::Tickets->new( $cyou ); # Make sure we can sort in both directions on a queue specific field. $youtx->FromSQL(qq[queue="$queue"] ); $youtx->OrderBy( FIELD => "Custom.Ownership", ORDER => 'ASC' ); is($youtx->Count,6); check_order( $youtx, qw[4 3 6 5 2 1]); __END__ rt-4.4.2/t/ticket/merge.t0000664000175000017500000001237313131430353015052 0ustar vagrantvagrant use strict; use warnings; use RT; use RT::Test tests => '44'; # validate that when merging two tickets, the comments from both tickets # are integrated into the new ticket { my $queue = RT::Queue->new(RT->SystemUser); my ($id,$msg) = $queue->Create(Name => 'MergeTest-'.rand(25)); ok ($id,$msg); my $t1 = RT::Ticket->new(RT->SystemUser); my ($tid,$transid, $t1msg) =$t1->Create( Queue => $queue->Name, Subject => 'Merge test. orig', ); ok ($tid, $t1msg); ($id, $msg) = $t1->Comment(Content => 'This is a Comment on the original'); ok($id,$msg); my $txns = $t1->Transactions; my $Comments = 0; while (my $txn = $txns->Next) { $Comments++ if ($txn->Type eq 'Comment'); } is($Comments,1, "our first ticket has only one Comment"); my $t2 = RT::Ticket->new(RT->SystemUser); my ($t2id,$t2transid, $t2msg) =$t2->Create ( Queue => $queue->Name, Subject => 'Merge test. duplicate'); ok ($t2id, $t2msg); ($id, $msg) = $t2->Comment(Content => 'This is a commet on the duplicate'); ok($id,$msg); $txns = $t2->Transactions; $Comments = 0; while (my $txn = $txns->Next) { $Comments++ if ($txn->Type eq 'Comment'); } is($Comments,1, "our second ticket has only one Comment"); ($id, $msg) = $t1->Comment(Content => 'This is a second Comment on the original'); ok($id,$msg); $txns = $t1->Transactions; $Comments = 0; while (my $txn = $txns->Next) { $Comments++ if ($txn->Type eq 'Comment'); } is($Comments,2, "our first ticket now has two Comments"); ($id,$msg) = $t2->MergeInto($t1->id); ok($id,$msg); $txns = $t1->Transactions; $Comments = 0; while (my $txn = $txns->Next) { $Comments++ if ($txn->Type eq 'Comment'); } is($Comments,3, "our first ticket now has three Comments - we merged safely"); } # when you try to merge duplicate links on postgres, eveyrything goes to hell due to referential integrity constraints. { my $t = RT::Ticket->new(RT->SystemUser); $t->Create(Subject => 'Main', Queue => 'general'); ok ($t->id); my $t2 = RT::Ticket->new(RT->SystemUser); $t2->Create(Subject => 'Second', Queue => 'general'); ok ($t2->id); my $t3 = RT::Ticket->new(RT->SystemUser); $t3->Create(Subject => 'Third', Queue => 'general'); ok ($t3->id); my ($id,$val); ($id,$val) = $t->AddLink(Type => 'DependsOn', Target => $t3->id); ok($id,$val); ($id,$val) = $t2->AddLink(Type => 'DependsOn', Target => $t3->id); ok($id,$val); ($id,$val) = $t->MergeInto($t2->id); ok($id,$val); } my $user = RT::Test->load_or_create_user( Name => 'a user', Password => 'password', ); ok $user && $user->id, 'loaded or created user'; # check rights { RT::Test->set_rights( { Principal => 'Everyone', Right => [qw(SeeQueue ShowTicket CreateTicket OwnTicket TakeTicket)] }, { Principal => 'Owner', Right => [qw(ModifyTicket)] }, ); my $t = RT::Ticket->new(RT::CurrentUser->new($user)); $t->Create(Subject => 'Main', Queue => 'general'); ok ($t->id, "Created ticket"); my $t2 = RT::Ticket->new(RT::CurrentUser->new($user)); $t2->Create(Subject => 'Second', Queue => 'general'); ok ($t2->id, "Created ticket"); foreach my $ticket ( $t, $t2 ) { ok( !$ticket->CurrentUserHasRight('ModifyTicket'), "can not modify" ); } my ($status,$msg) = $t->MergeInto($t2->id); ok(!$status, "Can not merge: $msg"); ($status, $msg) = $t->SetOwner( $user->id ); ok( $status, "User took ticket"); ok( $t->CurrentUserHasRight('ModifyTicket'), "can modify after take" ); ($status,$msg) = $t->MergeInto($t2->id); ok(!$status, "Can not merge: $msg"); ($status, $msg) = $t2->SetOwner( $user->id ); ok( $status, "User took ticket"); ok( $t2->CurrentUserHasRight('ModifyTicket'), "can modify after take" ); ($status,$msg) = $t->MergeInto($t2->id); ok($status, "Merged tickets: $msg"); } # check Time* fields after merge { my @tickets; my @values = ( { Worked => 11, Estimated => 17, Left => 6 }, { Worked => 7, Estimated => 12, Left => 5 }, ); for my $i (0 .. 1) { my $t = RT::Ticket->new(RT->SystemUser); $t->Create( Queue => 'general'); ok ($t->id); push @tickets, $t; foreach my $field ( keys %{ $values[ $i ] } ) { my $method = "SetTime$field"; my ($status, $msg) = $t->$method( $values[ $i ]{ $field } ); ok $status, "changed $field on the ticket" or diag "error: $msg"; } } my ($status, $msg) = $tickets[1]->MergeInto($tickets[0]->id); ok($status,$msg); my $t = RT::Ticket->new(RT->SystemUser); $t->Load( $tickets[0]->id ); foreach my $field ( keys %{ $values[0] } ) { my $method = "Time$field"; my $expected = 0; $expected += $_->{ $field } foreach @values; is $t->$method, $expected, "correct value"; my $from_history = 0; my $txns = $t->Transactions; while ( my $txn = $txns->Next ) { next unless $txn->Type eq 'Set' && $txn->Field eq $method; $from_history += $txn->NewValue - $txn->OldValue; } is $from_history, $expected, "history is correct"; } } rt-4.4.2/t/ticket/cfsort-freeform-multiple.t0000664000175000017500000000633613131430353020711 0ustar vagrantvagrant use RT::Test nodata => 1, tests => 41; use strict; use warnings; use RT::Tickets; use RT::Queue; use RT::CustomField; # Test Sorting by custom fields. diag "Create a queue to test with."; my $queue_name = "CFSortQueue-$$"; my $queue; { $queue = RT::Queue->new( RT->SystemUser ); my ($ret, $msg) = $queue->Create( Name => $queue_name, Description => 'queue for custom field sort testing' ); ok($ret, "$queue_name - test queue creation. $msg"); } diag "create a CF"; my $cf_name = "Order$$"; my $cf; { $cf = RT::CustomField->new( RT->SystemUser ); my ($ret, $msg) = $cf->Create( Name => $cf_name, Queue => $queue->id, Type => 'FreeformMultiple', ); ok($ret, "Custom Field Order created"); } my (@data, @tickets, @test) = (0, ()); sub run_tests { my $query_prefix = join ' OR ', map 'id = '. $_->id, @tickets; foreach my $test ( @test ) { my $query = join " AND ", map "( $_ )", grep defined && length, $query_prefix, $test->{'Query'}; foreach my $order (qw(ASC DESC)) { my $error = 0; my $tix = RT::Tickets->new( RT->SystemUser ); $tix->FromSQL( $query ); $tix->OrderBy( FIELD => $test->{'Order'}, ORDER => $order ); ok($tix->Count, "found ticket(s)") or $error = 1; my ($order_ok, $last) = (1, $order eq 'ASC'? '-': 'zzzzzz'); my $last_id = $tix->Last->id; while ( my $t = $tix->Next ) { my $tmp; next if $t->id == $last_id and $t->Subject eq "-"; # Nulls are allowed to come last, in Pg if ( $order eq 'ASC' ) { $tmp = ((split( /,/, $last))[0] cmp (split( /,/, $t->Subject))[0]); } else { $tmp = -((split( /,/, $last))[-1] cmp (split( /,/, $t->Subject))[-1]); } if ( $tmp > 0 ) { $order_ok = 0; last; } $last = $t->Subject; } ok( $order_ok, "$order order of tickets is good" ) or $error = 1; if ( $error ) { diag "Wrong SQL query:". $tix->BuildSelectQuery; $tix->GotoFirstItem; while ( my $t = $tix->Next ) { diag sprintf "%02d - %s", $t->id, $t->Subject; } } } } } @data = ( { Subject => '-' }, { Subject => 'b-d', 'CustomField-' . $cf->id => ['b', 'd'] }, { Subject => 'a-c', 'CustomField-' . $cf->id => ['a', 'c'] }, ); @tickets = RT::Test->create_tickets( {Queue => $queue->id, RandomOrder => 1 }, @data); @test = ( { Order => "CF.{$cf_name}" }, { Order => "CF.$queue_name.{$cf_name}" }, ); run_tests(); @data = ( { Subject => 'm-a', 'CustomField-' . $cf->id => ['m', 'a'] }, { Subject => 'm', 'CustomField-' . $cf->id => ['m'] }, { Subject => 'm-o', 'CustomField-' . $cf->id => ['m', 'o'] }, ); @tickets = RT::Test->create_tickets( {Queue => $queue->id, RandomORder => 1 }, @data); @test = ( { Order => "CF.{$cf_name}", Query => "CF.{$cf_name} = 'm'" }, { Order => "CF.$queue_name.{$cf_name}", Query => "CF.{$cf_name} = 'm'" }, ); run_tests(); @tickets = (); rt-4.4.2/t/ticket/sort_by_cf.t0000664000175000017500000001342013131430353016076 0ustar vagrantvagrant use RT::Test nodata => 1, tests => 21; RT::Init(); use strict; use warnings; use RT::Tickets; use RT::Queue; use RT::CustomField; my($ret,$msg); # Test Sorting by custom fields. # TODO: it's hard to read this file, conver to new style, # for example look at 23cfsort-freeform-single.t # ---- Create a queue to test with. my $queue = "CFSortQueue-$$"; my $queue_obj = RT::Queue->new( RT->SystemUser ); ($ret, $msg) = $queue_obj->Create( Name => $queue, Description => 'queue for custom field sort testing' ); ok($ret, "$queue test queue creation. $msg"); # ---- Create some custom fields. We're not currently using all of # them to test with, but the more the merrier. my $cfO = RT::CustomField->new(RT->SystemUser); my $cfA = RT::CustomField->new(RT->SystemUser); my $cfB = RT::CustomField->new(RT->SystemUser); my $cfC = RT::CustomField->new(RT->SystemUser); ($ret, $msg) = $cfO->Create( Name => 'Order', Queue => 0, SortOrder => 1, Description => q{Something to compare results for, since we can't guarantee ticket ID}, Type=> 'FreeformSingle'); ok($ret, "Custom Field Order created"); ($ret, $msg) = $cfA->Create( Name => 'Alpha', Queue => $queue_obj->id, SortOrder => 1, Description => 'A Testing custom field', Type=> 'FreeformSingle'); ok($ret, "Custom Field Alpha created"); ($ret, $msg) = $cfB->Create( Name => 'Beta', Queue => $queue_obj->id, Description => 'A Testing custom field', Type=> 'FreeformSingle'); ok($ret, "Custom Field Beta created"); ($ret, $msg) = $cfC->Create( Name => 'Charlie', Queue => $queue_obj->id, Description => 'A Testing custom field', Type=> 'FreeformSingle'); ok($ret, "Custom Field Charlie created"); # ----- Create some tickets to test with. Assign them some values to # make it easy to sort with. my $t1 = RT::Ticket->new(RT->SystemUser); $t1->Create( Queue => $queue_obj->Id, Subject => 'One', ); $t1->AddCustomFieldValue(Field => $cfO->Id, Value => '1'); $t1->AddCustomFieldValue(Field => $cfA->Id, Value => '2'); $t1->AddCustomFieldValue(Field => $cfB->Id, Value => '1'); $t1->AddCustomFieldValue(Field => $cfC->Id, Value => 'BBB'); my $t2 = RT::Ticket->new(RT->SystemUser); $t2->Create( Queue => $queue_obj->Id, Subject => 'Two', ); $t2->AddCustomFieldValue(Field => $cfO->Id, Value => '2'); $t2->AddCustomFieldValue(Field => $cfA->Id, Value => '1'); $t2->AddCustomFieldValue(Field => $cfB->Id, Value => '2'); $t2->AddCustomFieldValue(Field => $cfC->Id, Value => 'AAA'); # helper sub check_order { my ($tx, @order) = @_; my @results; while (my $t = $tx->Next) { push @results, $t->CustomFieldValues($cfO->Id)->First->Content; } my $results = join (" ",@results); my $order = join(" ",@order); @_ = ($results, $order , "Ordered correctly: $order"); goto \&is; } # The real tests start here my $tx = RT::Tickets->new( RT->SystemUser ); # Make sure we can sort in both directions on a queue specific field. $tx->FromSQL(qq[queue="$queue"] ); $tx->OrderBy( FIELD => "CF.${queue}.{Charlie}", ORDER => 'DES' ); is($tx->Count,2 ,"We found 2 tickets when looking for cf charlie"); check_order( $tx, 1, 2); $tx = RT::Tickets->new( RT->SystemUser ); $tx->FromSQL(qq[queue="$queue"] ); $tx->OrderBy( FIELD => "CF.${queue}.{Charlie}", ORDER => 'ASC' ); is($tx->Count,2, "We found two tickets when sorting by cf charlie without limiting to it" ); check_order( $tx, 2, 1); # When ordering by _global_ CustomFields, if more than one queue has a # CF named Charlie, things will go bad. So, these results are uniqued # in Tickets_Overlay. $tx = RT::Tickets->new( RT->SystemUser ); $tx->FromSQL(qq[queue="$queue"] ); $tx->OrderBy( FIELD => "CF.{Charlie}", ORDER => 'DESC' ); is($tx->Count,2); check_order( $tx, 1, 2); $tx = RT::Tickets->new( RT->SystemUser ); $tx->FromSQL(qq[queue="$queue"] ); $tx->OrderBy( FIELD => "CF.{Charlie}", ORDER => 'ASC' ); is($tx->Count,2); check_order( $tx, 2, 1); # Add a new ticket, to test sorting on multiple columns. my $t3 = RT::Ticket->new(RT->SystemUser); $t3->Create( Queue => $queue_obj->Id, Subject => 'Three', ); $t3->AddCustomFieldValue(Field => $cfO->Id, Value => '3'); $t3->AddCustomFieldValue(Field => $cfA->Id, Value => '3'); $t3->AddCustomFieldValue(Field => $cfB->Id, Value => '2'); $t3->AddCustomFieldValue(Field => $cfC->Id, Value => 'AAA'); $tx = RT::Tickets->new( RT->SystemUser ); $tx->FromSQL(qq[queue="$queue"] ); $tx->OrderByCols( { FIELD => "CF.${queue}.{Charlie}", ORDER => 'ASC' }, { FIELD => "CF.${queue}.{Alpha}", ORDER => 'DES' }, ); is($tx->Count,3); check_order( $tx, 3, 2, 1); $tx = RT::Tickets->new( RT->SystemUser ); $tx->FromSQL(qq[queue="$queue"] ); $tx->OrderByCols( { FIELD => "CF.${queue}.{Charlie}", ORDER => 'DES' }, { FIELD => "CF.${queue}.{Alpha}", ORDER => 'ASC' }, ); is($tx->Count,3); check_order( $tx, 1, 2, 3); # Reverse the order of the secondary column, which changes the order # of the first two tickets. $tx = RT::Tickets->new( RT->SystemUser ); $tx->FromSQL(qq[queue="$queue"] ); $tx->OrderByCols( { FIELD => "CF.${queue}.{Charlie}", ORDER => 'ASC' }, { FIELD => "CF.${queue}.{Alpha}", ORDER => 'ASC' }, ); is($tx->Count,3); check_order( $tx, 2, 3, 1); $tx = RT::Tickets->new( RT->SystemUser ); $tx->FromSQL(qq[queue="$queue"] ); $tx->OrderByCols( { FIELD => "CF.${queue}.{Charlie}", ORDER => 'DES' }, { FIELD => "CF.${queue}.{Alpha}", ORDER => 'DES' }, ); is($tx->Count,3); check_order( $tx, 1, 3, 2); rt-4.4.2/t/ticket/race.t0000664000175000017500000000613013131430353014657 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use Test::MockTime qw/set_fixed_time/; use constant KIDS => 50; my $id; { my $t = RT::Ticket->new( RT->SystemUser ); ($id) = $t->Create( Queue => "General", Subject => "Race $$", ); } diag "Created ticket $id"; RT->DatabaseHandle->Disconnect; my @kids; for (1..KIDS) { if (my $pid = fork()) { push @kids, $pid; next; } # In the kid, load up the ticket and correspond RT->ConnectToDatabase; my $t = RT::Ticket->new( RT->SystemUser ); $t->Load( $id ); $t->Correspond( Content => "Correspondence from PID $$" ); undef $t; exit 0; } diag "Forked @kids"; waitpid $_, 0 for @kids; diag "All kids finished corresponding"; RT->ConnectToDatabase; my $t = RT::Ticket->new( RT->SystemUser ); $t->Load($id); my $txns = $t->Transactions; $txns->Limit( FIELD => 'Type', VALUE => 'Status' ); is($txns->Count, 1, "Only one transaction change recorded" ); $txns = $t->Transactions; $txns->Limit( FIELD => 'Type', VALUE => 'Correspond' ); is($txns->Count, KIDS, "But all correspondences were recorded" ); my @users; for my $n (0..2) { push @users, RT::Test->load_or_create_user( Name => "user_$n", Password => 'password', )->id; } ok(RT::Test->add_rights({ Principal => 'Privileged', Right => 'OwnTicket', }), "Granted OwnTicket"); for my $round (1..10) { my ($ok, $msg) = $t->SetOwner($users[0]); ok $ok, "Set owner back to base"; my $last_txn = $t->Transactions->Last->id; RT->DatabaseHandle->Disconnect; diag "Round $round..\n"; @kids = (); for my $n (1..2) { if (my $pid = fork()) { push @kids, $pid; next; } set_fixed_time("2017-01-03T17:17:17Z"); # In the kid, load up the ticket and claim the owner RT->ConnectToDatabase; my $t = RT::Ticket->new( RT->SystemUser ); $t->Load( $id ); my ($ok, $msg); if ($n == 1) { $RT::Handle->BeginTransaction; $t->LockForUpdate; ($ok, $msg) = $t->SetOwner( $users[$n] ); undef $t; $RT::Handle->Commit; } else { ($ok, $msg) = $t->SetOwner( $users[$n] ); undef $t; } exit(1 - $ok); } diag "Forked @kids"; for my $pid (@kids) { waitpid $pid, 0; my $ret = $? >> 8; is $ret, 0, "$pid returned $ret"; } RT->ConnectToDatabase; # Flush the process-local cache and reload, since the changes # happened in other processes DBIx::SearchBuilder::Record::Cachable->FlushCache; $t->Load( $id ); $txns = $t->Transactions; $txns->Limit( FIELD => 'id', OPERATOR => '>', VALUE => $last_txn ); $txns->Limit( FIELD => 'Type', VALUE => 'SetWatcher' ); is $txns->Count, 2, "Found two new SetWatcher transactions"; my $winner = $t->Owner; isnt $winner, $users[0], "Not the base owner"; ok $t->OwnerGroup->HasMember( $winner ), "GroupMembers agrees"; ok $t->OwnerGroup->HasMemberRecursively( $winner ), "CachedGroupMembers agrees"; } done_testing; rt-4.4.2/t/ticket/search_by_cf_freeform_single.t0000664000175000017500000002703113131430353021605 0ustar vagrantvagrant use strict; use warnings; use RT::Test nodata => 1, tests => undef; my $q = RT::Test->load_or_create_queue( Name => 'Regression' ); ok $q && $q->id, 'loaded or created queue'; my $queue = $q->Name; diag "create a CF"; my ($cf_name, $cf_id, $cf) = ("Test", 0, undef); { $cf = RT::CustomField->new( RT->SystemUser ); my ($ret, $msg) = $cf->Create( Name => $cf_name, Queue => $q->id, Type => 'FreeformSingle', ); ok($ret, "Custom Field Order created"); $cf_id = $cf->id; } my $other_q = RT::Test->load_or_create_queue( Name => 'Other' ); ok $other_q && $other_q->id, 'loaded or created queue'; my $ylong = 'y' x 300; subtest "Creating tickets" => sub { RT::Test->create_tickets( { Queue => $q->id }, { Subject => '-' }, { Subject => "other", Queue => $other_q->id }, { Subject => 'x', "CustomField-$cf_id" => 'x', }, { Subject => 'y', "CustomField-$cf_id" => 'y', }, { Subject => 'z', "CustomField-$cf_id" => 'z', }, { Subject => 'ylong', "CustomField-$cf_id" => $ylong, }, ); }; my @tests = ( "CF.{$cf_id} IS NULL" => { '-' => 1, other => 1, x => 0, y => 0, z => 0, ylong => 0 }, "CF.{$cf_id}.Content IS NULL" => { '-' => 1, other => 1, x => 0, y => 0, z => 0, ylong => 1 }, "CF.{$cf_id}.LargeContent IS NULL" => { '-' => 1, other => 1, x => 1, y => 1, z => 1, ylong => 0 }, "'CF.{$cf_name}' IS NULL" => { '-' => 1, other => 1, x => 0, y => 0, z => 0, ylong => 0 }, "'CF.{$cf_name}.Content' IS NULL" => { '-' => 1, other => 1, x => 0, y => 0, z => 0, ylong => 1 }, "'CF.{$cf_name}.LargeContent' IS NULL" => { '-' => 1, other => 1, x => 1, y => 1, z => 1, ylong => 0 }, "'CF.$queue.{$cf_id}' IS NULL" => { '-' => 1, other => 1, x => 0, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_name}' IS NULL" => { '-' => 1, other => 1, x => 0, y => 0, z => 0, ylong => 0 }, "CF.{$cf_id} IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 1, z => 1, ylong => 1 }, "CF.{$cf_id}.Content IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 1, z => 1, ylong => 0 }, "CF.{$cf_id}.LargeContent IS NOT NULL" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 1 }, "'CF.{$cf_name}' IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 1, z => 1, ylong => 1 }, "'CF.{$cf_name}.Content' IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 1, z => 1, ylong => 0 }, "'CF.{$cf_name}.LargeContent' IS NOT NULL" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 1 }, "'CF.$queue.{$cf_id}' IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 1, z => 1, ylong => 1 }, "'CF.$queue.{$cf_name}' IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 1, z => 1, ylong => 1 }, "CF.{$cf_id} = 'x'" => { '-' => 0, other => 0, x => 1, y => 0, z => 0, ylong => 0 }, "CF.{$cf_id}.Content = 'x'" => { '-' => 0, other => 0, x => 1, y => 0, z => 0, ylong => 0 }, "CF.{$cf_id}.LargeContent = 'x'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "CF.{$cf_id} = '$ylong'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 1 }, "CF.{$cf_id}.Content = '$ylong'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "CF.{$cf_id}.LargeContent = '$ylong'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 1 }, "CF.{$cf_id} LIKE 'yyy'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 1 }, "CF.{$cf_id}.Content LIKE 'yyy'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "CF.{$cf_id}.LargeContent LIKE 'yyy'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 1 }, "'CF.{$cf_name}' = 'x'" => { '-' => 0, other => 0, x => 1, y => 0, z => 0, ylong => 0 }, "'CF.{$cf_name}.Content' = 'x'" => { '-' => 0, other => 0, x => 1, y => 0, z => 0, ylong => 0 }, "'CF.{$cf_name}.LargeContent' = 'x'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_id}' = 'x'" => { '-' => 0, other => 0, x => 1, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_id}.Content' = 'x'" => { '-' => 0, other => 0, x => 1, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_id}.LargeContent' = 'x'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_name}' = 'x'" => { '-' => 0, other => 0, x => 1, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_name}.Content' = 'x'" => { '-' => 0, other => 0, x => 1, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_name}.LargeContent' = 'x'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "CF.{$cf_id} != 'x'" => { '-' => 1, other => 1, x => 0, y => 1, z => 1, ylong => 1 }, "CF.{$cf_id}.Content != 'x'" => { '-' => 1, other => 1, x => 0, y => 1, z => 1, ylong => 1 }, "CF.{$cf_id}.LargeContent != 'x'" => { '-' => 1, other => 1, x => 1, y => 1, z => 1, ylong => 1 }, "CF.{$cf_id} != '$ylong'" => { '-' => 1, other => 1, x => 1, y => 1, z => 1, ylong => 0 }, "CF.{$cf_id}.Content != '$ylong'" => { '-' => 1, other => 1, x => 1, y => 1, z => 1, ylong => 1 }, "CF.{$cf_id}.LargeContent != '$ylong'" => { '-' => 1, other => 1, x => 1, y => 1, z => 1, ylong => 0 }, "CF.{$cf_id} NOT LIKE 'yyy'" => { '-' => 1, other => 1, x => 1, y => 1, z => 1, ylong => 0 }, "CF.{$cf_id}.Content NOT LIKE 'yyy'" => { '-' => 1, other => 1, x => 1, y => 1, z => 1, ylong => 1 }, "CF.{$cf_id}.LargeContent NOT LIKE 'yyy'" => { '-' => 1, other => 1, x => 1, y => 1, z => 1, ylong => 0 }, "'CF.{$cf_name}' != 'x'" => { '-' => 1, other => 1, x => 0, y => 1, z => 1, ylong => 1 }, "'CF.{$cf_name}.Content' != 'x'" => { '-' => 1, other => 1, x => 0, y => 1, z => 1, ylong => 1 }, "'CF.{$cf_name}.LargeContent' != 'x'" => { '-' => 1, other => 1, x => 1, y => 1, z => 1, ylong => 1 }, "'CF.$queue.{$cf_id}' != 'x'" => { '-' => 1, other => 1, x => 0, y => 1, z => 1, ylong => 1 }, "'CF.$queue.{$cf_id}.Content' != 'x'" => { '-' => 1, other => 1, x => 0, y => 1, z => 1, ylong => 1 }, "'CF.$queue.{$cf_id}.LargeContent' != 'x'" => { '-' => 1, other => 1, x => 1, y => 1, z => 1, ylong => 1 }, "'CF.$queue.{$cf_name}' != 'x'" => { '-' => 1, other => 1, x => 0, y => 1, z => 1, ylong => 1 }, "'CF.$queue.{$cf_name}.Content' != 'x'" => { '-' => 1, other => 1, x => 0, y => 1, z => 1, ylong => 1 }, "'CF.$queue.{$cf_name}.LargeContent' != 'x'" => { '-' => 1, other => 1, x => 1, y => 1, z => 1, ylong => 1 }, "CF.{$cf_id} = 'x' OR CF.{$cf_id} = 'y'" => { '-' => 0, other => 0, x => 1, y => 1, z => 0, ylong => 0 }, "'CF.{$cf_name}' = 'x' OR 'CF.{$cf_name}' = 'y'" => { '-' => 0, other => 0, x => 1, y => 1, z => 0, ylong => 0 }, "'CF.$queue.{$cf_id}' = 'x' OR 'CF.$queue.{$cf_id}' = 'y'" => { '-' => 0, other => 0, x => 1, y => 1, z => 0, ylong => 0 }, "'CF.$queue.{$cf_name}' = 'x' OR 'CF.$queue.{$cf_name}' = 'y'" => { '-' => 0, other => 0, x => 1, y => 1, z => 0, ylong => 0 }, "CF.{$cf_id} = 'x' AND CF.{$cf_id} = 'y'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "'CF.{$cf_name}' = 'x' AND 'CF.{$cf_name}' = 'y'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_id}' = 'x' AND 'CF.$queue.{$cf_id}' = 'y'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_name}' = 'x' AND 'CF.$queue.{$cf_name}' = 'y'" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "CF.{$cf_id} != 'x' AND CF.{$cf_id} != 'y'" => { '-' => 1, other => 1, x => 0, y => 0, z => 1, ylong => 1 }, "'CF.{$cf_name}' != 'x' AND 'CF.{$cf_name}' != 'y'" => { '-' => 1, other => 1, x => 0, y => 0, z => 1, ylong => 1 }, "'CF.$queue.{$cf_id}' != 'x' AND 'CF.$queue.{$cf_id}' != 'y'" => { '-' => 1, other => 1, x => 0, y => 0, z => 1, ylong => 1 }, "'CF.$queue.{$cf_name}' != 'x' AND 'CF.$queue.{$cf_name}' != 'y'" => { '-' => 1, other => 1, x => 0, y => 0, z => 1, ylong => 1 }, "CF.{$cf_id} = 'x' AND CF.{$cf_id} IS NULL" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "'CF.{$cf_name}' = 'x' AND 'CF.{$cf_name}' IS NULL" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_id}' = 'x' AND 'CF.$queue.{$cf_id}' IS NULL" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_name}' = 'x' AND 'CF.$queue.{$cf_name}' IS NULL" => { '-' => 0, other => 0, x => 0, y => 0, z => 0, ylong => 0 }, "CF.{$cf_id} = 'x' OR CF.{$cf_id} IS NULL" => { '-' => 1, other => 1, x => 1, y => 0, z => 0, ylong => 0 }, "'CF.{$cf_name}' = 'x' OR 'CF.{$cf_name}' IS NULL" => { '-' => 1, other => 1, x => 1, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_id}' = 'x' OR 'CF.$queue.{$cf_id}' IS NULL" => { '-' => 1, other => 1, x => 1, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_name}' = 'x' OR 'CF.$queue.{$cf_name}' IS NULL" => { '-' => 1, other => 1, x => 1, y => 0, z => 0, ylong => 0 }, "CF.{$cf_id} = 'x' AND CF.{$cf_id} IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 0, z => 0, ylong => 0 }, "'CF.{$cf_name}' = 'x' AND 'CF.{$cf_name}' IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_id}' = 'x' AND 'CF.$queue.{$cf_id}' IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 0, z => 0, ylong => 0 }, "'CF.$queue.{$cf_name}' = 'x' AND 'CF.$queue.{$cf_name}' IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 0, z => 0, ylong => 0 }, "CF.{$cf_id} = 'x' OR CF.{$cf_id} IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 1, z => 1, ylong => 1 }, "'CF.{$cf_name}' = 'x' OR 'CF.{$cf_name}' IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 1, z => 1, ylong => 1 }, "'CF.$queue.{$cf_id}' = 'x' OR 'CF.$queue.{$cf_id}' IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 1, z => 1, ylong => 1 }, "'CF.$queue.{$cf_name}' = 'x' OR 'CF.$queue.{$cf_name}' IS NOT NULL" => { '-' => 0, other => 0, x => 1, y => 1, z => 1, ylong => 1 }, ); run_tests(@tests); sub run_tests { my @tests = @_; while (@tests) { my $query = shift @tests; my %results = %{ shift @tests }; subtest $query => sub { my $tix = RT::Tickets->new(RT->SystemUser); $tix->FromSQL( "$query" ); my $error = 0; my $count = 0; $count++ foreach grep $_, values %results; is($tix->Count, $count, "found correct number of ticket(s)") or $error = 1; my $good_tickets = ($tix->Count == $count); while ( my $ticket = $tix->Next ) { next if $results{ $ticket->Subject }; diag $ticket->Subject ." ticket has been found when it's not expected"; $good_tickets = 0; } ok( $good_tickets, "all tickets are good" ) or $error = 1; diag "Wrong SQL: ". $tix->BuildSelectQuery if $error; }; } } done_testing; rt-4.4.2/t/ticket/sort-by-user.t0000664000175000017500000000702413131430353016323 0ustar vagrantvagrant use RT::Test nodata => 1, tests => 52; use strict; use warnings; use RT::Tickets; use RT::Queue; use RT::CustomField; ######################################################### # Test sorting by Owner, Creator and LastUpdatedBy # we sort by user name ######################################################### diag "Create a queue to test with."; my $queue_name = "OwnerSortQueue$$"; my $queue; { $queue = RT::Queue->new( RT->SystemUser ); my ($ret, $msg) = $queue->Create( Name => $queue_name, Description => 'queue for custom field sort testing' ); ok($ret, "$queue test queue creation. $msg"); } my @uids; my @users; # create them in reverse order to avoid false positives foreach my $u (qw(Z A)) { my $name = $u ."-user-to-test-ordering-$$"; my $user = RT::User->new( RT->SystemUser ); my ($uid) = $user->Create( Name => $name, Privileged => 1, ); ok $uid, "created user #$uid"; my ($status, $msg) = $user->PrincipalObj->GrantRight( Right => 'OwnTicket', Object => $queue ); ok $status, "granted right"; ($status, $msg) = $user->PrincipalObj->GrantRight( Right => 'CreateTicket', Object => $queue ); ok $status, "granted right"; push @users, $user; push @uids, $user->id; } my (@data, @tickets, @test) = (0, ()); sub run_tests { my $query_prefix = join ' OR ', map 'id = '. $_->id, @tickets; foreach my $test ( @test ) { my $query = join " AND ", map "( $_ )", grep defined && length, $query_prefix, $test->{'Query'}; foreach my $order (qw(ASC DESC)) { my $error = 0; my $tix = RT::Tickets->new( RT->SystemUser ); $tix->FromSQL( $query ); $tix->OrderBy( FIELD => $test->{'Order'}, ORDER => $order ); ok($tix->Count, "found ticket(s)") or $error = 1; my ($order_ok, $last) = (1, $order eq 'ASC'? '-': 'zzzzzz'); while ( my $t = $tix->Next ) { my $tmp; if ( $order eq 'ASC' ) { $tmp = ((split( /,/, $last))[0] cmp (split( /,/, $t->Subject))[0]); } else { $tmp = -((split( /,/, $last))[-1] cmp (split( /,/, $t->Subject))[-1]); } if ( $tmp > 0 ) { $order_ok = 0; last; } $last = $t->Subject; } ok( $order_ok, "$order order of tickets is good" ) or $error = 1; if ( $error ) { diag "Wrong SQL query:". $tix->BuildSelectQuery; $tix->GotoFirstItem; while ( my $t = $tix->Next ) { diag sprintf "%02d - %s", $t->id, $t->Subject; } } } } } @data = ( { Subject => 'Nobody' }, { Subject => 'Z', Owner => $uids[0] }, { Subject => 'A', Owner => $uids[1] }, ); @tickets = RT::Test->create_tickets( { Queue => $queue->id }, @data ); @test = ( { Order => "Owner" }, ); run_tests(); @data = ( { Subject => 'RT' }, { Subject => 'Z', Creator => $uids[0] }, { Subject => 'A', Creator => $uids[1] }, ); @tickets = RT::Test->create_tickets( { Queue => $queue->id }, @data ); @test = ( { Order => "Creator" }, ); run_tests(); @data = ( { Subject => 'RT' }, { Subject => 'Z', LastUpdatedBy => $uids[0] }, { Subject => 'A', LastUpdatedBy => $uids[1] }, ); @tickets = RT::Test->create_tickets( { Queue => $queue->id }, @data ); @test = ( { Order => "LastUpdatedBy" }, ); run_tests(); @tickets = (); rt-4.4.2/t/ticket/search_by_txn.t0000664000175000017500000000172413131430353016601 0ustar vagrantvagrant use warnings; use strict; BEGIN{ $ENV{'TZ'} = 'GMT'}; use RT::Test tests => 10; my $SUBJECT = "Search test - ".$$; use_ok('RT::Tickets'); my $tix = RT::Tickets->new(RT->SystemUser); can_ok($tix, 'FromSQL'); $tix->FromSQL('Updated = "2005-08-05" AND Subject = "$SUBJECT"'); ok(! $tix->Count, "Searching for tickets updated on a random date finds nothing" . $tix->Count); my $ticket = RT::Ticket->new(RT->SystemUser); $ticket->Create(Queue => 'General', Subject => $SUBJECT); ok ($ticket->id, "We created a ticket"); my ($id, $txnid, $txnobj) = $ticket->Comment( Content => 'A comment that happend on 2004-01-01'); isa_ok($txnobj, 'RT::Transaction'); ok($txnobj->CreatedObj->ISO); my ( $sid,$smsg) = $txnobj->__Set(Field => 'Created', Value => '2005-08-05 20:00:56'); ok($sid,$smsg); is($txnobj->Created,'2005-08-05 20:00:56'); is($txnobj->CreatedObj->ISO,'2005-08-05 20:00:56'); $tix->FromSQL(qq{Updated = "2005-08-05" AND Subject = "$SUBJECT"}); is( $tix->Count, 1); rt-4.4.2/t/shredder/0000775000175000017500000000000013131430353014075 5ustar vagrantvagrantrt-4.4.2/t/shredder/01basics.t0000664000175000017500000000116113131430353015666 0ustar vagrantvagrant use strict; use warnings; use Test::Deep; use RT::Test::Shredder tests => 4; my $test = "RT::Test::Shredder"; $test->create_savepoint(); use RT::Tickets; my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id) = $ticket->Create( Subject => 'test', Queue => 1 ); ok( $id, "created new ticket" ); $ticket = RT::Ticket->new( RT->SystemUser ); my ($status, $msg) = $ticket->Load( $id ); ok( $id, "load ticket" ) or diag( "error: $msg" ); my $shredder = $test->shredder_new(); $shredder->Wipeout( Object => $ticket ); $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint(), "current DB equal to savepoint"); rt-4.4.2/t/shredder/02user.t0000664000175000017500000000360613131430353015407 0ustar vagrantvagrant use strict; use warnings; use Test::Deep; use RT::Test::Shredder tests => 10; my $test = "RT::Test::Shredder"; $test->create_savepoint('clean'); my $queue = RT::Queue->new( RT->SystemUser ); my ($qid) = $queue->Load( 'General' ); ok( $qid, "loaded queue" ); my $ticket = RT::Ticket->new( RT->SystemUser ); my ($tid) = $ticket->Create( Queue => $qid, Subject => 'test' ); ok( $tid, "ticket created" ); $test->create_savepoint('bucreate'); # berfore user create my $user = RT::User->new( RT->SystemUser ); my ($uid, $msg) = $user->Create( Name => 'new user', Privileged => 1, Disabled => 0 ); ok( $uid, "created new user" ) or diag "error: $msg"; is( $user->id, $uid, "id is correct" ); # HACK: set ticket props to enable VARIABLE dependencies $ticket->__Set( Field => 'LastUpdatedBy', Value => $uid ); $test->create_savepoint('aucreate'); # after user create { my $resolver = sub { my %args = (@_); my $t = $args{'TargetObject'}; my $resolver_uid = RT->SystemUser->id; foreach my $method ( qw(Creator LastUpdatedBy) ) { next unless $t->_Accessible( $method => 'read' ); $t->__Set( Field => $method, Value => $resolver_uid ); } }; my $shredder = $test->shredder_new(); $shredder->PutResolver( BaseClass => 'RT::User', Code => $resolver ); $shredder->Wipeout( Object => $user ); $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('bucreate'), "current DB equal to savepoint"); } { $test->restore_savepoint('aucreate'); my $user = RT::User->new( RT->SystemUser ); $user->Load($uid); ok($user->id, "loaded user after restore"); my $shredder = $test->shredder_new(); eval { $shredder->Wipeout( Object => $user ) }; ok($@, "wipeout throw exception if no resolvers"); $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('aucreate'), "current DB equal to savepoint"); } rt-4.4.2/t/shredder/03plugin_summary.t0000664000175000017500000000056013131430353017501 0ustar vagrantvagrant use strict; use warnings; use RT::Test::Shredder nodb => 1, tests => 4; use_ok('RT::Shredder::Plugin'); my $plugin_obj = RT::Shredder::Plugin->new; isa_ok($plugin_obj, 'RT::Shredder::Plugin'); my ($status, $msg) = $plugin_obj->LoadByName('Summary'); ok($status, 'loaded summary plugin') or diag "error: $msg"; isa_ok($plugin_obj, 'RT::Shredder::Plugin::Summary'); rt-4.4.2/t/shredder/03plugin_users.t0000664000175000017500000000612013131430353017143 0ustar vagrantvagrant use strict; use warnings; use Test::Deep; use RT::Test::Shredder tests => 21; my $test = "RT::Test::Shredder"; my @ARGS = sort qw(limit status name member_of not_member_of email replace_relations no_tickets no_ticket_transactions); use_ok('RT::Shredder::Plugin::Users'); { my $plugin = RT::Shredder::Plugin::Users->new; isa_ok($plugin, 'RT::Shredder::Plugin::Users'); is(lc $plugin->Type, 'search', 'correct type'); my @args = sort $plugin->SupportArgs; cmp_deeply(\@args, \@ARGS, "support all args"); my ($status, $msg) = $plugin->TestArgs( name => 'r??t*' ); ok($status, "arg name = 'r??t*'") or diag("error: $msg"); for (qw(any disabled enabled)) { my ($status, $msg) = $plugin->TestArgs( status => $_ ); ok($status, "arg status = '$_'") or diag("error: $msg"); } ($status, $msg) = $plugin->TestArgs( status => '!@#' ); ok(!$status, "bad 'status' arg value"); } RT::Test->set_rights( { Principal => 'Everyone', Right => [qw(CreateTicket)] }, ); $test->create_savepoint('clean'); { # Create two users and a ticket. Shred second user and replace relations with first user my ($uidA, $uidB, $msg); my $userA = RT::User->new( RT->SystemUser ); ($uidA, $msg) = $userA->Create( Name => 'userA', Privileged => 1, Disabled => 0 ); ok( $uidA, "created user A" ) or diag "error: $msg"; my $userB = RT::User->new( RT->SystemUser ); ($uidB, $msg) = $userB->Create( Name => 'userB', Privileged => 1, Disabled => 0 ); ok( $uidB, "created user B" ) or diag "error: $msg"; my ($tid, $trid); my $ticket = RT::Ticket->new( RT::CurrentUser->new($userB) ); ($tid, $trid, $msg) = $ticket->Create( Subject => 'UserB Ticket', Queue => 1 ); ok( $tid, "created new ticket") or diag "error: $msg"; $ticket->ApplyTransactionBatch; my $transaction = RT::Transaction->new( RT->SystemUser ); $transaction->Load($trid); is ( $transaction->Creator, $uidB, "ticket creator is user B" ); my $plugin = RT::Shredder::Plugin::Users->new; isa_ok($plugin, 'RT::Shredder::Plugin::Users'); my $status; ($status, $msg) = $plugin->TestArgs( status => 'any', name => 'userB', replace_relations => $uidA ); ok($status, "plugin arguments are ok") or diag "error: $msg"; my $shredder = $test->shredder_new(); my @objs; ($status, @objs) = $plugin->Run; ok($status, "executed plugin successfully") or diag "error: @objs"; @objs = RT::Shredder->CastObjectsToRecords( Objects => \@objs ); is(scalar @objs, 1, "one object in the result set"); ($status, $msg) = $plugin->SetResolvers( Shredder => $shredder ); ok($status, "set conflicts resolver") or diag "error: $msg"; $shredder->PutObjects( Objects => \@objs ); $shredder->WipeoutAll; $ticket->Load( $tid ); is($ticket->id, $tid, 'loaded ticket'); $transaction->Load($trid); is ( $transaction->Creator, $uidA, "ticket creator is now user A" ); $shredder->Wipeout( Object => $ticket ); $shredder->Wipeout( Object => $userA ); } cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); rt-4.4.2/t/shredder/00load.t0000664000175000017500000000102413131430353015336 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodb => 1, tests => 11; use_ok("RT::Shredder"); use_ok("RT::Shredder::Plugin"); use_ok("RT::Shredder::Plugin::Base"); # search plugins use_ok("RT::Shredder::Plugin::Base::Search"); use_ok("RT::Shredder::Plugin::Objects"); use_ok("RT::Shredder::Plugin::Attachments"); use_ok("RT::Shredder::Plugin::Tickets"); use_ok("RT::Shredder::Plugin::Users"); # dump plugins use_ok("RT::Shredder::Plugin::Base::Dump"); use_ok("RT::Shredder::Plugin::SQLDump"); use_ok("RT::Shredder::Plugin::Summary"); rt-4.4.2/t/shredder/02cfs.t0000664000175000017500000000241113131430353015175 0ustar vagrantvagrant use strict; use warnings; use Test::Deep; use File::Spec; use RT::Test::Shredder tests => 5; my $test = "RT::Test::Shredder"; $test->create_savepoint('clean'); my $cf = RT::Test->load_or_create_custom_field( Name => "Favorite Color", LookupType => "RT::Queue-RT::Ticket", Type => "FreeformSingle", ); ok $cf->id, "Created ticket CF"; $test->create_savepoint('clean_with_cf'); diag 'global ticket custom field'; { my $global_queue = RT::Queue->new(RT->SystemUser); my ($ok, $msg) = $cf->AddToObject($global_queue); ok $ok, "Added ticket CF globally: $msg"; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $cf ); $shredder->WipeoutAll; cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); } diag 'queue-specific ticket custom field'; { $test->restore_savepoint('clean_with_cf'); my $general = RT::Test->load_or_create_queue( Name => 'General' ); my ($ok, $msg) = $cf->AddToObject($general); ok $ok, "Added ticket CF to General queue: $msg"; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $cf ); $shredder->WipeoutAll; cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); } rt-4.4.2/t/shredder/03plugin_tickets.t0000664000175000017500000001372013131430353017454 0ustar vagrantvagrant use strict; use warnings; use Test::Deep; use RT::Test::Shredder tests => 49; my $test = "RT::Test::Shredder"; use_ok('RT::Shredder'); use_ok('RT::Shredder::Plugin::Tickets'); { my $plugin = RT::Shredder::Plugin::Tickets->new; isa_ok($plugin, 'RT::Shredder::Plugin::Tickets'); is(lc $plugin->Type, 'search', 'correct type'); } $test->create_savepoint('clean'); use_ok('RT::Ticket'); use_ok('RT::Tickets'); { # create parent and child and check functionality of 'with_linked' arg my $parent = RT::Ticket->new( RT->SystemUser ); my ($pid) = $parent->Create( Subject => 'parent', Queue => 1 ); ok( $pid, "created new ticket" ); my $child = RT::Ticket->new( RT->SystemUser ); my ($cid) = $child->Create( Subject => 'child', Queue => 1, MemberOf => $pid ); ok( $cid, "created new ticket" ); $_->ApplyTransactionBatch for $parent, $child; my $plugin = RT::Shredder::Plugin::Tickets->new; isa_ok($plugin, 'RT::Shredder::Plugin::Tickets'); my ($status, $msg, @objs); ($status, $msg) = $plugin->TestArgs( query => 'Subject = "parent"' ); ok($status, "plugin arguments are ok") or diag "error: $msg"; ($status, @objs) = $plugin->Run; ok($status, "executed plugin successfully") or diag "error: @objs"; @objs = RT::Shredder->CastObjectsToRecords( Objects => \@objs ); is(scalar @objs, 1, "only one object in result set"); is($objs[0]->id, $pid, "parent is in result set"); ($status, $msg) = $plugin->TestArgs( query => 'Subject = "parent"', with_linked => 1 ); ok($status, "plugin arguments are ok") or diag "error: $msg"; ($status, @objs) = $plugin->Run; ok($status, "executed plugin successfully") or diag "error: @objs"; @objs = RT::Shredder->CastObjectsToRecords( Objects => \@objs ); my %has = map { $_->id => 1 } @objs; is(scalar @objs, 2, "two objects in the result set"); ok($has{$pid}, "parent is in the result set"); ok($has{$cid}, "child is in the result set"); my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => \@objs ); $shredder->WipeoutAll; $test->db_is_valid; } cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); { # create parent and child and link them reqursively to check that we don't hang my $parent = RT::Ticket->new( RT->SystemUser ); my ($pid) = $parent->Create( Subject => 'parent', Queue => 1 ); ok( $pid, "created new ticket" ); my $child = RT::Ticket->new( RT->SystemUser ); my ($cid) = $child->Create( Subject => 'child', Queue => 1, MemberOf => $pid ); ok( $cid, "created new ticket" ); my ($status, $msg) = $child->AddLink( Target => $pid, Type => 'DependsOn' ); ok($status, "added reqursive link") or diag "error: $msg"; $_->ApplyTransactionBatch for $parent, $child; my $plugin = RT::Shredder::Plugin::Tickets->new; isa_ok($plugin, 'RT::Shredder::Plugin::Tickets'); my (@objs); ($status, $msg) = $plugin->TestArgs( query => 'Subject = "parent"' ); ok($status, "plugin arguments are ok") or diag "error: $msg"; ($status, @objs) = $plugin->Run; ok($status, "executed plugin successfully") or diag "error: @objs"; @objs = RT::Shredder->CastObjectsToRecords( Objects => \@objs ); is(scalar @objs, 1, "only one object in result set"); is($objs[0]->id, $pid, "parent is in result set"); ($status, $msg) = $plugin->TestArgs( query => 'Subject = "parent"', with_linked => 1 ); ok($status, "plugin arguments are ok") or diag "error: $msg"; ($status, @objs) = $plugin->Run; ok($status, "executed plugin successfully") or diag "error: @objs"; @objs = RT::Shredder->CastObjectsToRecords( Objects => \@objs ); is(scalar @objs, 2, "two objects in the result set"); my %has = map { $_->id => 1 } @objs; ok($has{$pid}, "parent is in the result set"); ok($has{$cid}, "child is in the result set"); my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => \@objs ); $shredder->WipeoutAll; $test->db_is_valid; } cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); { # create parent and child and check functionality of 'apply_query_to_linked' arg my $parent = RT::Ticket->new( RT->SystemUser ); my ($pid) = $parent->Create( Subject => 'parent', Queue => 1 ); ok( $pid, "created new ticket" ); $parent->SetStatus('resolved'); my $child1 = RT::Ticket->new( RT->SystemUser ); my ($cid1) = $child1->Create( Subject => 'child', Queue => 1, MemberOf => $pid ); ok( $cid1, "created new ticket" ); my $child2 = RT::Ticket->new( RT->SystemUser ); my ($cid2) = $child2->Create( Subject => 'child', Queue => 1, MemberOf => $pid); ok( $cid2, "created new ticket" ); $child2->SetStatus('resolved'); $_->ApplyTransactionBatch for $parent, $child1, $child2; my $plugin = RT::Shredder::Plugin::Tickets->new; isa_ok($plugin, 'RT::Shredder::Plugin::Tickets'); my ($status, $msg) = $plugin->TestArgs( query => 'Status = "resolved"', apply_query_to_linked => 1 ); ok($status, "plugin arguments are ok") or diag "error: $msg"; my @objs; ($status, @objs) = $plugin->Run; ok($status, "executed plugin successfully") or diag "error: @objs"; @objs = RT::Shredder->CastObjectsToRecords( Objects => \@objs ); is(scalar @objs, 2, "two objects in the result set"); my %has = map { $_->id => 1 } @objs; ok($has{$pid}, "parent is in the result set"); ok(!$has{$cid1}, "first child is in the result set"); ok($has{$cid2}, "second child is in the result set"); my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => \@objs ); $shredder->WipeoutAll; $test->db_is_valid; my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load( $cid1 ); is($ticket->id, $cid1, 'loaded ticket'); $shredder->PutObjects( Objects => $ticket ); $shredder->WipeoutAll; $test->db_is_valid; } cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); rt-4.4.2/t/shredder/02group_member.t0000664000175000017500000001456313131430353017120 0ustar vagrantvagrant use strict; use warnings; use Test::Deep; use RT::Test::Shredder tests => 35; my $test = "RT::Test::Shredder"; ### nested membership check { $test->create_savepoint('clean'); my $pgroup = RT::Group->new( RT->SystemUser ); my ($pgid) = $pgroup->CreateUserDefinedGroup( Name => 'Parent group' ); ok( $pgid, "created parent group" ); is( $pgroup->id, $pgid, "id is correct" ); my $cgroup = RT::Group->new( RT->SystemUser ); my ($cgid) = $cgroup->CreateUserDefinedGroup( Name => 'Child group' ); ok( $cgid, "created child group" ); is( $cgroup->id, $cgid, "id is correct" ); my ($status, $msg) = $pgroup->AddMember( $cgroup->id ); ok( $status, "added child group to parent") or diag "error: $msg"; $test->create_savepoint('bucreate'); # before user create my $user = RT::User->new( RT->SystemUser ); my $uid; ($uid, $msg) = $user->Create( Name => 'new user', Privileged => 1, Disabled => 0 ); ok( $uid, "created new user" ) or diag "error: $msg"; is( $user->id, $uid, "id is correct" ); $test->create_savepoint('buadd'); # before group add ($status, $msg) = $cgroup->AddMember( $user->id ); ok( $status, "added user to child group") or diag "error: $msg"; my $members = RT::GroupMembers->new( RT->SystemUser ); $members->Limit( FIELD => 'MemberId', VALUE => $uid ); $members->Limit( FIELD => 'GroupId', VALUE => $cgid ); is( $members->Count, 1, "find membership record" ); my $transactions = RT::Transactions->new(RT->SystemUser); $transactions->_OpenParen('member'); $transactions->Limit( SUBCLAUSE => 'member', FIELD => 'Type', VALUE => 'AddMember'); $transactions->Limit( SUBCLAUSE => 'member', FIELD => 'Field', VALUE => $user->PrincipalObj->id, ENTRYAGGREGATOR => 'AND' ); $transactions->Limit( SUBCLAUSE => 'member', FIELD => 'ObjectId', VALUE => $cgroup->id, ENTRYAGGREGATOR => 'AND' ); $transactions->_CloseParen('member'); $transactions->_OpenParen('member'); $transactions->Limit( SUBCLAUSE => 'member', FIELD => 'Type', VALUE => 'AddMembership'); $transactions->Limit( SUBCLAUSE => 'member', FIELD => 'Field', VALUE => $cgroup->PrincipalObj->id, ENTRYAGGREGATOR => 'AND' ); $transactions->Limit( SUBCLAUSE => 'member', FIELD => 'ObjectId', VALUE => $user->id, ENTRYAGGREGATOR => 'AND' ); $transactions->_CloseParen('member'); is( $transactions->Count, 2, "find membership transaction records" ); my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => [$members, $transactions] ); $shredder->WipeoutAll(); $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('buadd'), "current DB equal to savepoint"); $shredder->PutObjects( Objects => $user ); $shredder->WipeoutAll(); $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('bucreate'), "current DB equal to savepoint"); $shredder->PutObjects( Objects => [$pgroup, $cgroup] ); $shredder->WipeoutAll(); $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); } ### deleting member of the ticket AdminCc role group { $test->restore_savepoint('clean'); my $user = RT::User->new( RT->SystemUser ); my ($uid, $msg) = $user->Create( Name => 'new user', Privileged => 1, Disabled => 0 ); ok( $uid, "created new user" ) or diag "error: $msg"; is( $user->id, $uid, "id is correct" ); use RT::Queue; my $queue = RT::Queue->new( RT->SystemUser ); $queue->Load('general'); ok( $queue->id, "queue loaded succesfully" ); use RT::Tickets; my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id) = $ticket->Create( Subject => 'test', Queue => $queue->id ); ok( $id, "created new ticket" ); $ticket = RT::Ticket->new( RT->SystemUser ); my $status; ($status, $msg) = $ticket->Load( $id ); ok( $id, "load ticket" ) or diag( "error: $msg" ); ($status, $msg) = $ticket->AddWatcher( Type => "AdminCc", PrincipalId => $user->id ); ok( $status, "AdminCC successfuly added") or diag( "error: $msg" ); my $member = $ticket->AdminCc->MembersObj->First; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $member ); $shredder->WipeoutAll(); $test->db_is_valid; $shredder->PutObjects( Objects => $user ); $shredder->WipeoutAll(); $test->db_is_valid; } ### deleting member of the ticket Owner role group { $test->restore_savepoint('clean'); my $user = RT::User->new( RT->SystemUser ); my ($uid, $msg) = $user->Create( Name => 'new user', Privileged => 1, Disabled => 0 ); ok( $uid, "created new user" ) or diag "error: $msg"; is( $user->id, $uid, "id is correct" ); use RT::Queue; my $queue = RT::Queue->new( RT->SystemUser ); $queue->Load('general'); ok( $queue->id, "queue loaded succesfully" ); $user->PrincipalObj->GrantRight( Right => 'OwnTicket', Object => $queue ); use RT::Tickets; my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id) = $ticket->Create( Subject => 'test', Queue => $queue->id ); ok( $id, "created new ticket" ); $ticket = RT::Ticket->new( RT->SystemUser ); my $status; ($status, $msg) = $ticket->Load( $id ); ok( $id, "load ticket" ) or diag( "error: $msg" ); ($status, $msg) = $ticket->SetOwner( $user->id ); ok( $status, "owner successfuly set") or diag( "error: $msg" ); is( $ticket->Owner, $user->id, "owner successfuly set") or diag( "error: $msg" ); my $member = $ticket->OwnerGroup->MembersObj->First; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $member ); $shredder->WipeoutAll(); $test->db_is_valid; $ticket = RT::Ticket->new( RT->SystemUser ); ($status, $msg) = $ticket->Load( $id ); ok( $id, "load ticket" ) or diag( "error: $msg" ); is( $ticket->Owner, RT->Nobody->id, "owner switched back to nobody" ); is( $ticket->OwnerGroup->MembersObj->First->MemberId, RT->Nobody->id, "and owner role group member is nobody"); } rt-4.4.2/t/shredder/02queue.t0000664000175000017500000000775113131430353015562 0ustar vagrantvagrant use strict; use warnings; use Test::Deep; use RT::Test::Shredder tests => 21; my $test = "RT::Test::Shredder"; diag 'simple queue' if $ENV{TEST_VERBOSE}; { $test->create_savepoint('clean'); my $queue = RT::Queue->new( RT->SystemUser ); my ($id, $msg) = $queue->Create( Name => 'my queue' ); ok($id, 'created queue') or diag "error: $msg"; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $queue ); $shredder->WipeoutAll; $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); } diag 'queue with scrip' if $ENV{TEST_VERBOSE}; { $test->create_savepoint('clean'); my $queue = RT::Queue->new( RT->SystemUser ); my ($id, $msg) = $queue->Create( Name => 'my queue' ); ok($id, 'created queue') or diag "error: $msg"; my $scrip = RT::Scrip->new( RT->SystemUser ); ($id, $msg) = $scrip->Create( Description => 'my scrip', Queue => $queue->id, ScripCondition => 'On Create', ScripAction => 'Open Tickets', Template => 'Blank', ); ok($id, 'created scrip') or diag "error: $msg"; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $queue ); $shredder->WipeoutAll; $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); } diag 'queue with template' if $ENV{TEST_VERBOSE}; { $test->create_savepoint('clean'); my $queue = RT::Queue->new( RT->SystemUser ); my ($id, $msg) = $queue->Create( Name => 'my queue' ); ok($id, 'created queue') or diag "error: $msg"; my $template = RT::Template->new( RT->SystemUser ); ($id, $msg) = $template->Create( Name => 'my template', Queue => $queue->id, Content => "\nsome content", ); ok($id, 'created template') or diag "error: $msg"; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $queue ); $shredder->WipeoutAll; $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); } diag 'queue with a right granted' if $ENV{TEST_VERBOSE}; { $test->create_savepoint('clean'); my $queue = RT::Queue->new( RT->SystemUser ); my ($id, $msg) = $queue->Create( Name => 'my queue' ); ok($id, 'created queue') or diag "error: $msg"; my $group = RT::Group->new( RT->SystemUser ); $group->LoadSystemInternalGroup('Everyone'); ok($group->id, 'loaded group'); ($id, $msg) = $group->PrincipalObj->GrantRight( Right => 'CreateTicket', Object => $queue, ); ok($id, 'granted right') or diag "error: $msg"; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $queue ); $shredder->WipeoutAll; $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); } diag 'queue with a watcher' if $ENV{TEST_VERBOSE}; { # XXX, FIXME: if uncomment these lines then we'll get 'Bizarre...' # $test->create_savepoint('clean'); my $group = RT::Group->new( RT->SystemUser ); my ($id, $msg) = $group->CreateUserDefinedGroup(Name => 'my group'); ok($id, 'created group') or diag "error: $msg"; $test->create_savepoint('bqcreate'); my $queue = RT::Queue->new( RT->SystemUser ); ($id, $msg) = $queue->Create( Name => 'my queue' ); ok($id, 'created queue') or diag "error: $msg"; ($id, $msg) = $queue->AddWatcher( Type => 'Cc', PrincipalId => $group->id, ); ok($id, 'added watcher') or diag "error: $msg"; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $queue ); $shredder->WipeoutAll; $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('bqcreate'), "current DB equal to savepoint"); # $shredder->PutObjects( Objects => $group ); # $shredder->WipeoutAll; # cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); } rt-4.4.2/t/shredder/00skeleton.t0000664000175000017500000000055513131430353016253 0ustar vagrantvagrant use strict; use warnings; use Test::Deep; use RT::Test::Shredder tests => 1; my $test = "RT::Test::Shredder"; $test->create_savepoint('clean'); # backup of the clean RT DB my $shredder = $test->shredder_new(); # new shredder object # .... # create and wipe RT objects # cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); rt-4.4.2/t/shredder/01ticket.t0000664000175000017500000000573713131430353015722 0ustar vagrantvagrant use strict; use warnings; use Test::Deep; use RT::Test::Shredder tests => 20; my $test = "RT::Test::Shredder"; $test->create_savepoint('clean'); use RT::Ticket; use RT::Tickets; { my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id) = $ticket->Create( Subject => 'test', Queue => 1 ); ok( $id, "created new ticket" ); $ticket->Delete; is( $ticket->Status, 'deleted', "successfuly changed status" ); $ticket->ApplyTransactionBatch; my $tickets = RT::Tickets->new( RT->SystemUser ); $tickets->{'allow_deleted_search'} = 1; $tickets->LimitStatus( VALUE => 'deleted' ); is( $tickets->Count, 1, "found one deleted ticket" ); my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $tickets ); $shredder->WipeoutAll; $test->db_is_valid; } cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); { my $parent = RT::Ticket->new( RT->SystemUser ); my ($pid) = $parent->Create( Subject => 'test', Queue => 1 ); ok( $pid, "created new ticket" ); $test->create_savepoint('parent_ticket'); my $child = RT::Ticket->new( RT->SystemUser ); my ($cid) = $child->Create( Subject => 'test', Queue => 1 ); ok( $cid, "created new ticket" ); my ($status, $msg) = $parent->AddLink( Type => 'MemberOf', Target => $cid ); ok( $status, "Added link between tickets") or diag("error: $msg"); $parent->ApplyTransactionBatch; $child->ApplyTransactionBatch; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $child ); $shredder->WipeoutAll; $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('parent_ticket'), "current DB equal to savepoint"); $shredder->PutObjects( Objects => $parent ); $shredder->WipeoutAll; $test->db_is_valid; } cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); { my $parent = RT::Ticket->new( RT->SystemUser ); my ($pid) = $parent->Create( Subject => 'test', Queue => 1 ); ok( $pid, "created new ticket" ); my ($status, $msg) = $parent->Delete; ok( $status, 'deleted parent ticket'); $test->create_savepoint('parent_ticket'); my $child = RT::Ticket->new( RT->SystemUser ); my ($cid) = $child->Create( Subject => 'test', Queue => 1 ); ok( $cid, "created new ticket #$cid" ); ($status, $msg) = $parent->AddLink( Type => 'DependsOn', Target => $cid ); ok( $status, "Added link between tickets") or diag("error: $msg"); $parent->ApplyTransactionBatch; $child->ApplyTransactionBatch; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $child ); $shredder->WipeoutAll; $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('parent_ticket'), "current DB equal to savepoint"); $shredder->PutObjects( Objects => $parent ); $shredder->WipeoutAll; $test->db_is_valid; } cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); rt-4.4.2/t/shredder/02template.t0000664000175000017500000000420213131430353016235 0ustar vagrantvagrant use strict; use warnings; use Test::Deep; use RT::Test::Shredder tests => 10; my $test = "RT::Test::Shredder"; diag 'global template' if $ENV{TEST_VERBOSE}; { $test->create_savepoint('clean'); my $template = RT::Template->new( RT->SystemUser ); my ($id, $msg) = $template->Create( Name => 'my template', Content => "\nsome content", ); ok($id, 'created template') or diag "error: $msg"; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $template ); $shredder->WipeoutAll; $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); } diag 'local template' if $ENV{TEST_VERBOSE}; { $test->create_savepoint('clean'); my $template = RT::Template->new( RT->SystemUser ); my ($id, $msg) = $template->Create( Name => 'my template', Queue => 'General', Content => "\nsome content", ); ok($id, 'created template') or diag "error: $msg"; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $template ); $shredder->WipeoutAll; $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); } diag 'template used in scrip' if $ENV{TEST_VERBOSE}; { $test->create_savepoint('clean'); my $template = RT::Template->new( RT->SystemUser ); my ($id, $msg) = $template->Create( Name => 'my template', Queue => 'General', Content => "\nsome content", ); ok($id, 'created template') or diag "error: $msg"; my $scrip = RT::Scrip->new( RT->SystemUser ); ($id, $msg) = $scrip->Create( Description => 'my scrip', Queue => 'General', ScripCondition => 'On Create', ScripAction => 'Open Tickets', Template => $template->id, ); ok($id, 'created scrip') or diag "error: $msg"; my $shredder = $test->shredder_new(); $shredder->PutObjects( Objects => $template ); $shredder->WipeoutAll; $test->db_is_valid; cmp_deeply( $test->dump_current_and_savepoint('clean'), "current DB equal to savepoint"); } rt-4.4.2/t/shredder/03plugin.t0000664000175000017500000000233713131430353015730 0ustar vagrantvagrant use strict; use warnings; use Test::Deep; use RT::Test::Shredder nodb => 1, tests => 28; my $test = "RT::Test::Shredder"; my @PLUGINS = sort qw(Attachments Base Objects SQLDump Summary Tickets Users); use_ok('RT::Shredder::Plugin'); { my $plugin = RT::Shredder::Plugin->new; isa_ok($plugin, 'RT::Shredder::Plugin'); my %plugins = $plugin->List; cmp_deeply( [sort keys %plugins], [@PLUGINS], "correct plugins" ); } { # test ->List as class method my %plugins = RT::Shredder::Plugin->List; cmp_deeply( [sort keys %plugins], [@PLUGINS], "correct plugins" ); } { # reblessing on LoadByName foreach (@PLUGINS) { my $plugin = RT::Shredder::Plugin->new; isa_ok($plugin, 'RT::Shredder::Plugin'); my ($status, $msg) = $plugin->LoadByName( $_ ); ok($status, "loaded plugin by name") or diag("error: $msg"); isa_ok($plugin, "RT::Shredder::Plugin::$_" ); } } { # error checking in LoadByName my $plugin = RT::Shredder::Plugin->new; isa_ok($plugin, 'RT::Shredder::Plugin'); my ($status, $msg) = $plugin->LoadByName; ok(!$status, "not loaded plugin - empty name"); ($status, $msg) = $plugin->LoadByName('Foo'); ok(!$status, "not loaded plugin - not exist"); } rt-4.4.2/t/mail/0000775000175000017500000000000013131430353013217 5ustar vagrantvagrantrt-4.4.2/t/mail/gnupg-special.t0000664000175000017500000000570413131430353016150 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => 25, gnupg_options => { passphrase => 'rt-test' }; use Digest::MD5 qw(md5_hex); RT::Test->import_gnupg_key('rt-recipient@example.com'); RT::Test->import_gnupg_key('rt-test@example.com', 'public'); my ($baseurl, $m) = RT::Test->started_ok; ok( $m->login, 'we did log in' ); # configure key for General queue { $m->get( $baseurl.'/Admin/Queues/'); $m->follow_link_ok( {text => 'General'} ); $m->submit_form( form_number => 3, fields => { CorrespondAddress => 'rt-recipient@example.com' }, ); $m->content_like(qr/rt-recipient\@example.com.* - never/, 'has key info.'); } ok(my $user = RT::User->new(RT->SystemUser)); ok($user->Load('root'), "Loaded user 'root'"); $user->SetEmailAddress('recipient@example.com'); { my $id = send_via_mailgate('quoted_inline_signature.txt'); my $tick = RT::Ticket->new( RT->SystemUser ); $tick->Load( $id ); ok ($tick->id, "loaded ticket #$id"); my $txn = $tick->Transactions->First; my ($msg, @attachments) = @{$txn->Attachments->ItemsArrayRef}; is( $msg->GetHeader('X-RT-Privacy'), undef, "no privacy is set as this ticket is not encrypted" ); my @mail = RT::Test->fetch_caught_mails; is(scalar @mail, 1, "autoreply only"); } { my $id = send_via_mailgate('binary-asc-attach-marked-plain-text.txt'); my $tick = RT::Ticket->new( $RT::SystemUser ); $tick->Load( $id ); ok ($tick->id, "loaded ticket #$id"); my $txn = $tick->Transactions->First; my ($msg, @attachs) = @{$txn->Attachments->ItemsArrayRef}; is (scalar @attachs, 3, 'text, attachment and original'); my $bin = $attachs[1]; is( (split /;/, $bin->GetHeader('Content-Type'))[0], 'application/octet-stream', 'binary attachment' ); is(md5_hex($bin->Content), '1e35f1aa90c98ca2bab85c26ae3e1ba7', "correct png"); } { my $id = send_via_mailgate('inline-binary-attachment-with-wrap.txt'); my $tick = RT::Ticket->new( $RT::SystemUser ); $tick->Load( $id ); ok ($tick->id, "loaded ticket #$id"); my $txn = $tick->Transactions->First; my ($msg, @attachs) = @{$txn->Attachments->ItemsArrayRef}; is (scalar @attachs, 3, 'text, attachment and original'); my $bin = $attachs[1]; is( (split /;/, $bin->GetHeader('Content-Type'))[0], 'application/octet-stream', 'binary attachment' ); is(md5_hex($bin->Content), '1e35f1aa90c98ca2bab85c26ae3e1ba7', "correct png"); } sub send_via_mailgate { my $fname = shift; my $emaildatadir = RT::Test::get_relocatable_dir(File::Spec->updir(), qw(data gnupg emails special)); my $file = File::Spec->catfile( $emaildatadir, $fname ); my $mail = RT::Test->file_content($file); my ($status, $id) = RT::Test->send_via_mailgate($mail); is ($status >> 8, 0, "the mail gateway exited normally"); ok ($id, "got id of a newly created ticket - $id"); return $id; } rt-4.4.2/t/mail/gnupg-outgoing-plain.t0000664000175000017500000000122513131430353017456 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => undef, gnupg_options => { passphrase => 'rt-test', 'trust-model' => 'always', }; RT::Test->import_gnupg_key('rt-recipient@example.com'); RT::Test->import_gnupg_key( 'rt-test@example.com' ); my $queue = RT::Test->load_or_create_queue( Name => 'Regression', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', ); ok $queue && $queue->id, 'loaded or created queue'; my ( $baseurl, $m ) = RT::Test->started_ok; ok $m->login, 'logged in'; create_and_test_outgoing_emails( $queue, $m ); undef $m; done_testing; rt-4.4.2/t/mail/verp.t0000664000175000017500000000022713131430353014361 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodb => 1, tests => 1; TODO: { todo_skip "No tests written for VERP yet", 1; ok(1,"a test to skip"); } rt-4.4.2/t/mail/charsets-outgoing-plaintext.t0000664000175000017500000002373113131430353021065 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 79, text_templates => 1; my %string = ( ru => { test => "\x{442}\x{435}\x{441}\x{442}", autoreply => "\x{410}\x{432}\x{442}\x{43e}\x{43e}\x{442}\x{432}\x{435}\x{442}", support => "\x{43f}\x{43e}\x{434}\x{434}\x{435}\x{440}\x{436}\x{43a}\x{430}", }, latin1 => { test => Encode::decode('latin1', "t\xE9st"), autoreply => Encode::decode('latin1', "a\xFCtoreply"), support => Encode::decode('latin1', "supp\xF5rt"), }, ); my $queue = RT::Test->load_or_create_queue( Name => 'Regression', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', ); ok $queue && $queue->id, 'loaded or created queue'; diag "make sure queue has no subject tag"; { my ($status, $msg) = $queue->SetSubjectTag( undef ); ok $status, "set subject tag for the queue" or diag "error: $msg"; } diag "set intial simple autoreply template"; { my $template = RT::Template->new( RT->SystemUser ); $template->Load('Autoreply'); ok $template->id, "loaded autoreply tempalte"; my ($status, $msg) = $template->SetContent( "Subject: Autreply { \$Ticket->Subject }\n" ."\n" ."hi there it's an autoreply.\n" ."\n" ); ok $status, "changed content of the template" or diag "error: $msg"; } diag "basic test of autoreply"; { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; } diag "non-ascii Subject with ascii prefix set in the template"; foreach my $set ( 'ru', 'latin1' ) { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => $string{$set}{test}, Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$set}{test}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } foreach my $tag_set ( 'ru', 'latin1' ) { diag "set non-ascii subject tag for the queue"; { my ($status, $msg) = $queue->SetSubjectTag( $string{$tag_set}{support} ); ok $status, "set subject tag for the queue" or diag "error: $msg"; } diag "ascii subject with non-ascii subject tag"; { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$tag_set}{support}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } diag "non-ascii subject with non-ascii subject tag"; foreach my $set ( 'ru', 'latin1' ) { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => $string{$set}{test}, Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$tag_set}{support}/ or do { $status = 0; diag "wrong subject: $subject" }; $subject =~ /$string{$set}{test}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } } # subject tag diag "return back the empty subject tag"; { my ($status, $msg) = $queue->SetSubjectTag( undef ); ok $status, "set subject tag for the queue" or diag "error: $msg"; } foreach my $prefix_set ( 'ru', 'latin1' ) { diag "add non-ascii subject prefix in the autoreply template"; { my $template = RT::Template->new( RT->SystemUser ); $template->Load('Autoreply'); ok $template->id, "loaded autoreply tempalte"; my ($status, $msg) = $template->SetContent( "Subject: $string{$prefix_set}{autoreply} { \$Ticket->Subject }\n" ."\n" ."hi there it's an autoreply.\n" ."\n" ); ok $status, "changed content of the template" or diag "error: $msg"; } diag "ascii subject with non-ascii subject prefix in template"; { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$prefix_set}{autoreply}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } diag "non-ascii subject with non-ascii subject prefix in template"; foreach my $set ( 'ru', 'latin1' ) { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => $string{$set}{test}, Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$prefix_set}{autoreply}/ or do { $status = 0; diag "wrong subject: $subject" }; $subject =~ /$string{$set}{test}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } foreach my $tag_set ( 'ru', 'latin1' ) { diag "set non-ascii subject tag for the queue"; { my ($status, $msg) = $queue->SetSubjectTag( $string{$tag_set}{support} ); ok $status, "set subject tag for the queue" or diag "error: $msg"; } diag "non-ascii subject, non-ascii prefix in template and non-ascii tag"; foreach my $set ( 'ru', 'latin1' ) { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => $string{$set}{test}, Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$prefix_set}{autoreply}/ or do { $status = 0; diag "wrong subject: $subject" }; $subject =~ /$string{$tag_set}{support}/ or do { $status = 0; diag "wrong subject: $subject" }; $subject =~ /$string{$set}{test}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } } # subject tag diag "flush subject tag of the queue"; { my ($status, $msg) = $queue->SetSubjectTag( undef ); ok $status, "set subject tag for the queue" or diag "error: $msg"; } } # prefix set diag "don't change subject via template"; # clean DB has autoreply that always changes subject in template, # we should test situation when subject is not changed from template { my $template = RT::Template->new( RT->SystemUser ); $template->Load('Autoreply'); ok $template->id, "loaded autoreply tempalte"; my ($status, $msg) = $template->SetContent( "\n" ."\n" ."hi there it's an autoreply.\n" ."\n" ); ok $status, "changed content of the template" or diag "error: $msg"; } diag "non-ascii Subject without changes in template"; foreach my $set ( 'ru', 'latin1' ) { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => $string{$set}{test}, Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$set}{test}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } foreach my $tag_set ( 'ru', 'latin1' ) { diag "set non-ascii subject tag for the queue"; { my ($status, $msg) = $queue->SetSubjectTag( $string{$tag_set}{support} ); ok $status, "set subject tag for the queue" or diag "error: $msg"; } diag "non-ascii Subject without changes in template and with non-ascii subject tag"; foreach my $set ( 'ru', 'latin1' ) { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => $string{$set}{test}, Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$set}{test}/ or do { $status = 0; diag "wrong subject: $subject" }; $subject =~ /$string{$tag_set}{support}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } } # subject tag set rt-4.4.2/t/mail/digest-attributes.t0000664000175000017500000001552413131430353017056 0ustar vagrantvagrant use warnings; use strict; use RT; use RT::Test tests => 31; my @users = qw/ emailnormal@example.com emaildaily@example.com emailweekly@example.com emailsusp@example.com /; my( $ret, $msg ); my $user_n = RT::User->new( RT->SystemUser ); ( $ret, $msg ) = $user_n->LoadOrCreateByEmail( $users[0] ); ok( $ret, "user with default email prefs created: $msg" ); $user_n->SetPrivileged( 1 ); my $user_d = RT::User->new( RT->SystemUser ); ( $ret, $msg ) = $user_d->LoadOrCreateByEmail( $users[1] ); ok( $ret, "user with daily digest email prefs created: $msg" ); # Set a username & password for testing the interface. $user_d->SetPrivileged( 1 ); $user_d->SetPreferences($RT::System => { %{ $user_d->Preferences( $RT::System ) || {}}, EmailFrequency => 'Daily digest'}); my $user_w = RT::User->new( RT->SystemUser ); ( $ret, $msg ) = $user_w->LoadOrCreateByEmail( $users[2] ); ok( $ret, "user with weekly digest email prefs created: $msg" ); $user_w->SetPrivileged( 1 ); $user_w->SetPreferences($RT::System => { %{ $user_w->Preferences( $RT::System ) || {}}, EmailFrequency => 'Weekly digest'}); my $user_s = RT::User->new( RT->SystemUser ); ( $ret, $msg ) = $user_s->LoadOrCreateByEmail( $users[3] ); ok( $ret, "user with suspended email prefs created: $msg" ); $user_s->SetPreferences($RT::System => { %{ $user_s->Preferences( $RT::System ) || {}}, EmailFrequency => 'Suspended'}); $user_s->SetPrivileged( 1 ); is(RT::Config->Get('EmailFrequency' => $user_s), 'Suspended'); # Make a testing queue for ourselves. my $testq = RT::Queue->new( RT->SystemUser ); if( $testq->ValidateName( 'EmailDigest-testqueue' ) ) { ( $ret, $msg ) = $testq->Create( Name => 'EmailDigest-testqueue' ); ok( $ret, "Our test queue is created: $msg" ); } else { $testq->Load( 'EmailDigest-testqueue' ); ok( $testq->id, "Our test queue is loaded" ); } # Allow anyone to open a ticket on the test queue. my $everyone = RT::Group->new( RT->SystemUser ); ( $ret, $msg ) = $everyone->LoadSystemInternalGroup( 'Everyone' ); ok( $ret, "Loaded 'everyone' group: $msg" ); ( $ret, $msg ) = $everyone->PrincipalObj->GrantRight( Right => 'CreateTicket', Object => $testq ); ok( $ret || $msg =~ /already has/, "Granted everyone CreateTicket on testq: $msg" ); # Make user_d an admincc for the queue. ( $ret, $msg ) = $user_d->PrincipalObj->GrantRight( Right => 'AdminQueue', Object => $testq ); ok( $ret || $msg =~ /already has/, "Granted dduser AdminQueue on testq: $msg" ); ( $ret, $msg ) = $testq->AddWatcher( Type => 'AdminCc', PrincipalId => $user_d->PrincipalObj->id ); ok( $ret || $msg =~ /already/, "dduser added as a queue watcher: $msg" ); # Give the others queue rights. ( $ret, $msg ) = $user_n->PrincipalObj->GrantRight( Right => 'AdminQueue', Object => $testq ); ok( $ret || $msg =~ /already has/, "Granted emailnormal right on testq: $msg" ); ( $ret, $msg ) = $user_w->PrincipalObj->GrantRight( Right => 'AdminQueue', Object => $testq ); ok( $ret || $msg =~ /already has/, "Granted emailweekly right on testq: $msg" ); ( $ret, $msg ) = $user_s->PrincipalObj->GrantRight( Right => 'AdminQueue', Object => $testq ); ok( $ret || $msg =~ /already has/, "Granted emailsusp right on testq: $msg" ); # Create a ticket with To: Cc: Bcc: fields using our four users. my $id; my $ticket = RT::Ticket->new( RT->SystemUser ); ( $id, $ret, $msg ) = $ticket->Create( Queue => $testq->Name, Requestor => [ $user_w->Name ], Subject => 'Test ticket for RT::Extension::EmailDigest', ); ok( $ret, "Ticket $id created: $msg" ); # Make the other users ticket watchers. ( $ret, $msg ) = $ticket->AddWatcher( Type => 'Cc', PrincipalId => $user_n->PrincipalObj->id ); ok( $ret, "Added user_n as a ticket watcher: $msg" ); ( $ret, $msg ) = $ticket->AddWatcher( Type => 'Cc', PrincipalId => $user_s->PrincipalObj->id ); ok( $ret, "Added user_s as a ticket watcher: $msg" ); my $obj; ($id, $msg, $obj ) = $ticket->Correspond( Content => "This is a ticket response for CC action" ); ok( $ret, "Transaction created: $msg" ); # Get the deferred notifications that should result. Should be two for # email daily, and one apiece for emailweekly and emailsusp. my @notifications; my $txns = RT::Transactions->new( RT->SystemUser ); $txns->LimitToTicket( $ticket->id ); my( $c_daily, $c_weekly, $c_susp ) = ( 0, 0, 0 ); while( my $txn = $txns->Next ) { my @daily_rcpt = $txn->DeferredRecipients( 'daily' ); my @weekly_rcpt = $txn->DeferredRecipients('weekly' ); my @susp_rcpt = $txn->DeferredRecipients( 'susp' ); $c_daily++ if @daily_rcpt; $c_weekly++ if @weekly_rcpt; $c_susp++ if @susp_rcpt; # If the transaction has content... if( $txn->ContentObj ) { # ...none of the deferred folk should be in the header. my $headerstr = $txn->ContentObj->Headers; foreach my $rcpt( @daily_rcpt, @weekly_rcpt, @susp_rcpt ) { ok( $headerstr !~ /$rcpt/, "Deferred recipient $rcpt not found in header" ); } } } # Finally, check to see that we got the correct number of each sort of # deferred recipient. is( $c_daily, 2, "correct number of daily-sent messages" ); is( $c_weekly, 2, "correct number of weekly-sent messages" ); is( $c_susp, 1, "correct number of suspended messages" ); # Now let's actually run the daily and weekly digest tool to make sure we generate those # the first time get the content email_digest_like( '--mode daily --print', qr/in the last day/ ); # The second time run it for real so we make sure that we get RT to mark the txn as sent email_digest_like( '--mode daily --verbose', qr/maildaily\@/ ); # now we should have nothing to do, so no content. email_digest_like( '--mode daily --print', '' ); # the first time get the content email_digest_like( '--mode weekly --print', qr/in the last seven days/ ); # The second time run it for real so we make sure that we get RT to mark the txn as sent email_digest_like( '--mode weekly --verbose', qr/mailweekly\@/ ); # now we should have nothing to do, so no content. email_digest_like( '--mode weekly --print', '' ); sub email_digest_like { my $arg = shift; my $pattern = shift; local $Test::Builder::Level = $Test::Builder::Level + 1; my $perl = $^X . ' ' . join ' ', map { "-I$_" } @INC; open my $digester, "-|", "$perl $RT::SbinPath/rt-email-digest $arg"; my @results = <$digester>; my $content = join '', @results; if ( ref $pattern && ref $pattern eq 'Regexp' ) { like($content, $pattern); } else { is( $content, $pattern ); } close $digester; } rt-4.4.2/t/mail/gnupg-outgoing-plain-plaintext.t0000664000175000017500000000125613131430353021470 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => undef, text_templates => 1, gnupg_options => { passphrase => 'rt-test', 'trust-model' => 'always', }; RT::Test->import_gnupg_key('rt-recipient@example.com'); RT::Test->import_gnupg_key( 'rt-test@example.com' ); my $queue = RT::Test->load_or_create_queue( Name => 'Regression', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', ); ok $queue && $queue->id, 'loaded or created queue'; my ( $baseurl, $m ) = RT::Test->started_ok; ok $m->login, 'logged in'; create_and_test_outgoing_emails( $queue, $m ); undef $m; done_testing; rt-4.4.2/t/mail/outgoing-mail-from.t0000664000175000017500000000324613131430353017125 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; RT->Config->Set( MailCommand => 'sendmailpipe' ); RT->Config->Set( SetOutgoingMailFrom => 'rt@example.com' ); RT->Config->Set( OverrideOutgoingMailFrom => { Test => 'rt-test@example.com' } ); # Ensure that the fake sendmail knows where to write to $ENV{RT_MAILLOGFILE} = RT::Test->temp_directory . "/sendmailpipe.log"; my $fake = File::Spec->rel2abs( File::Spec->catfile( 't', 'mail', 'fake-sendmail' ) ); RT->Config->Set( SendmailPath => $fake); { my $queue = RT::Test->load_or_create_queue( Name => 'General' ); ok $queue && $queue->id, 'loaded or created queue General'; my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => 'root@localhost', ); open(my $fh, "<", $ENV{RT_MAILLOGFILE}) or die "Can't open log file: $!"; my $ok = 0; while (my $line = <$fh>) { $ok++ if $line =~ /^-f rt\@example.com/; } close($fh); is($ok,1,"'-f rt\@example.com' specified to sendmail command"); } { my $queue = RT::Test->load_or_create_queue( Name => 'Test' ); ok $queue && $queue->id, 'loaded or created queue Test'; my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => 'root@localhost', ); open(my $fh, "<", $ENV{RT_MAILLOGFILE}) or die "Can't open log file: $!"; my $ok = 0; while (my $line = <$fh>) { $ok++ if $line =~ /^-f rt-test\@example.com/; } close($fh); is($ok,1,"'-f rt-test\@example.com' specified to sendmail command"); } done_testing; rt-4.4.2/t/mail/threading.t0000664000175000017500000000501313131430353015350 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 22; RT->Config->Set( NotifyActor => 1 ); my $queue = RT::Test->load_or_create_queue( Name => 'General', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', ); ok $queue && $queue->id, 'loaded or created queue'; my $user = RT::Test->load_or_create_user( Name => 'root', EmailAddress => 'root@localhost', ); ok $user && $user->id, 'loaded or created user'; { my $mail = < Foob! EOF my ($status, $id) = RT::Test->send_via_mailgate($mail); ok $id, "created a ticket"; my @mail = RT::Test->fetch_caught_mails; is scalar @mail, 1, "autoreply"; like $mail[0], qr{^In-Reply-To:\s*$}mi; like $mail[0], qr{^References:\s*}mi; my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket"; ($status, my ($msg)) = $ticket->Correspond( Content => 'boo' ); ok $status, "replied to the ticket"; @mail = RT::Test->fetch_caught_mails; is scalar @mail, 1, "reply"; like $mail[0], qr{^References:\s*$}mi, "no context, so only pseudo header is referenced"; } { my ($ticket) = RT::Test->create_ticket( Queue => $queue->id, Requestor => $user->EmailAddress ); my $id = $ticket->id; ok $id, "created a ticket"; my @mail = RT::Test->fetch_caught_mails; is scalar @mail, 1, "autoreply"; like $mail[0], qr{^References:\s*}mi; } { my $scrip = RT::Scrip->new(RT->SystemUser); my ($status, $msg) = $scrip->Create( Description => "Notify requestor on status change", ScripCondition => 'On Status Change', ScripAction => 'Notify Requestors', Template => 'Transaction', Stage => 'TransactionCreate', Queue => 0, ); ok($status, "Scrip created"); my ($ticket) = RT::Test->create_ticket( Queue => $queue->id, Requestor => $user->EmailAddress, ); my $id = $ticket->id; ok $id, "created a ticket"; RT::Test->fetch_caught_mails; ($status, $msg) = $ticket->SetStatus('open'); ok $status, "changed status"; my @mail = RT::Test->fetch_caught_mails; is scalar @mail, 1, "status change notification"; like $mail[0], qr{^References:\s*}mi; } rt-4.4.2/t/mail/dashboards.t0000664000175000017500000002727713131430353015535 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use Test::Warn; use RT::Dashboard::Mailer; my ($baseurl, $m) = RT::Test->started_ok; ok($m->login, 'logged in'); sub create_dashboard { my ($baseurl, $m) = @_; local $Test::Builder::Level = $Test::Builder::Level + 1; $m->get_ok($baseurl . '/Dashboards/Modify.html?Create=1'); $m->form_name('ModifyDashboard'); $m->field('Name' => 'Testing!'); $m->click_button(value => 'Create'); $m->title_is('Modify the dashboard Testing!'); $m->follow_link_ok({text => 'Content'}); $m->title_is('Modify the content of dashboard Testing!'); my $form = $m->form_name('Dashboard-Searches-body'); my @input = $form->find_input('Searches-body-Available'); my ($dashboards_component) = map { ( $_->possible_values )[1] } grep { ( $_->value_names )[1] =~ /Dashboards/ } @input; $form->value('Searches-body-Available' => $dashboards_component ); $m->click_button(name => 'add'); $m->content_contains('Dashboard updated'); $m->follow_link_ok({text => 'Show'}); $m->title_is('Testing! Dashboard'); $m->content_contains('My dashboards'); $m->content_like(qr{Testing!}); } sub create_subscription { my ($baseurl, $m, %fields) = @_; local $Test::Builder::Level = $Test::Builder::Level + 1; # create a subscription $m->follow_link_ok({text => 'Subscription'}); $m->title_is('Subscribe to dashboard Testing!'); $m->form_name('SubscribeDashboard'); $m->set_fields(%fields); $m->click_button(name => 'Save'); $m->content_contains("Subscribed to dashboard Testing!"); } sub get_dash_sub_ids { my $user = RT::User->new(RT->SystemUser); $user->Load('root'); ok($user->Id, 'loaded user'); my ($subscription) = $user->Attributes->Named('Subscription'); my $subscription_id = $subscription->Id; ok($subscription_id, 'loaded subscription'); my $dashboard_id = $subscription->SubValue('DashboardId'); ok($dashboard_id, 'got dashboard id'); return ($dashboard_id, $subscription_id); } # first, create and populate a dashboard create_dashboard($baseurl, $m); # now test the mailer # without a subscription.. RT::Dashboard::Mailer->MailDashboards(); my @mails = RT::Test->fetch_caught_mails; is @mails, 0, 'no mail yet'; RT::Dashboard::Mailer->MailDashboards( All => 1, ); @mails = RT::Test->fetch_caught_mails; is @mails, 0, "no mail yet since there's no subscription"; create_subscription($baseurl, $m, Frequency => 'daily', Hour => '06:00', ); my ($dashboard_id, $subscription_id) = get_dash_sub_ids(); sub produces_dashboard_mail_ok { # {{{ my %args = @_; my $subject = delete $args{Subject}; my $body_like = delete $args{BodyLike}; my $body_unlike = delete $args{BodyUnlike}; local $Test::Builder::Level = $Test::Builder::Level + 1; RT::Dashboard::Mailer->MailDashboards(%args); my @mails = RT::Test->fetch_caught_mails; is @mails, 1, "got a dashboard mail"; my $mail = parse_mail( $mails[0] ); is($mail->head->get('Subject'), $subject); is($mail->head->get('From'), qq{"root" \n}); is($mail->head->get('Content-Transfer-Encoding'), "base64\n"); is($mail->head->get('X-RT-Dashboard-Id'), "$dashboard_id\n"); is($mail->head->get('X-RT-Dashboard-Subscription-Id'), "$subscription_id\n"); my $body = $mail->bodyhandle->as_string; like($body, qr{My dashboards}) if !$body_like && !$body_unlike; like($body, qr{Testing!}); if ($body_like) { for my $re (ref($body_like) eq 'ARRAY' ? @$body_like : $body_like) { ok($body =~ $re, "body should match $re"); } } if ($body_unlike) { for my $re (ref($body_unlike) eq 'ARRAY' ? @$body_unlike : $body_unlike) { ok($body !~ $re, "body should not match $re"); } } } # }}} sub produces_no_dashboard_mail_ok { # {{{ my %args = @_; my $name = delete $args{Name}; local $Test::Builder::Level = $Test::Builder::Level + 1; RT::Dashboard::Mailer->MailDashboards(%args); @mails = RT::Test->fetch_caught_mails; is @mails, 0, $name; } # }}} sub delete_dashboard { # {{{ my $dashboard_id = shift; # delete the dashboard and make sure we get exactly one subscription failure # notice my $dashboard = RT::Dashboard->new(RT::CurrentUser->new('root')); my ($ok, $msg) = $dashboard->LoadById($dashboard_id); ok($ok, $msg); ($ok, $msg) = $dashboard->Delete; ok($ok, $msg); } # }}} my $good_time = 1290423660; # 6:01 EST on a monday my $bad_time = 1290427260; # 7:01 EST on a monday my $expected_subject = "[example.com] Daily Dashboard: Testing!\n"; produces_dashboard_mail_ok( Time => $good_time, Subject => $expected_subject, ); produces_dashboard_mail_ok( All => 1, Subject => $expected_subject, ); produces_dashboard_mail_ok( All => 1, Time => $good_time, Subject => $expected_subject, ); produces_dashboard_mail_ok( All => 1, Time => $bad_time, Subject => $expected_subject, ); produces_no_dashboard_mail_ok( Name => "no dashboard mail it's a dry run", All => 1, DryRun => 1, ); produces_no_dashboard_mail_ok( Name => "no dashboard mail it's a dry run", Time => $good_time, DryRun => 1, ); produces_no_dashboard_mail_ok( Name => "no mail because it's the wrong time", Time => $bad_time, ); @mails = RT::Test->fetch_caught_mails; is(@mails, 0, "no mail leftover"); $m->no_warnings_ok; RT::Test->stop_server; RT->Config->Set('DashboardSubject' => 'a %s b %s c'); RT->Config->Set('DashboardAddress' => 'dashboard@example.com'); RT->Config->Set('EmailDashboardRemove' => (qr/My dashboards/, "Testing!")); ($baseurl, $m) = RT::Test->started_ok; RT::Dashboard::Mailer->MailDashboards(All => 1); @mails = RT::Test->fetch_caught_mails; is(@mails, 1, "one mail"); my $mail = parse_mail($mails[0]); is($mail->head->get('Subject'), "[example.com] a Daily b Testing! c\n"); is($mail->head->get('From'), "dashboard\@example.com\n"); is($mail->head->get('X-RT-Dashboard-Id'), "$dashboard_id\n"); is($mail->head->get('X-RT-Dashboard-Subscription-Id'), "$subscription_id\n"); my $body = $mail->bodyhandle->as_string; unlike($body, qr{My dashboards}); unlike($body, qr{Testing!}); delete_dashboard($dashboard_id); RT::Dashboard::Mailer->MailDashboards(All => 1); @mails = RT::Test->fetch_caught_mails; is(@mails, 0, "no mail because the subscription is deleted"); RT::Test->stop_server; RT::Test->clean_caught_mails; RT->Config->Set('EmailDashboardRemove' => ()); RT->Config->Set('DashboardAddress' => 'root'); ($baseurl, $m) = RT::Test->started_ok; $m->login; create_dashboard($baseurl, $m); create_subscription($baseurl, $m, Frequency => 'weekly', Hour => '06:00', ); ($dashboard_id, $subscription_id) = get_dash_sub_ids(); # bump $bad_time to Tuesday $bad_time = $good_time + 86400; produces_dashboard_mail_ok( Time => $good_time, Subject => "[example.com] a Weekly b Testing! c\n", ); produces_no_dashboard_mail_ok( Name => "no mail because it's the wrong time", Time => $bad_time, ); @mails = RT::Test->fetch_caught_mails; is(@mails, 0, "no mail leftover"); $m->no_warnings_ok; RT::Test->stop_server; RT->Config->Set('DashboardSubject' => 'a %s b %s c'); RT->Config->Set('DashboardAddress' => 'dashboard@example.com'); RT->Config->Set('EmailDashboardRemove' => (qr/My dashboards/, "Testing!")); ($baseurl, $m) = RT::Test->started_ok; delete_dashboard($dashboard_id); RT::Test->clean_caught_mails; RT::Test->stop_server; RT->Config->Set('EmailDashboardRemove' => ()); RT->Config->Set('DashboardAddress' => 'root'); ($baseurl, $m) = RT::Test->started_ok; $m->login; create_dashboard($baseurl, $m); create_subscription($baseurl, $m, Frequency => 'daily', Monday => 1, Tuesday => 1, Wednesday => 1, Thursday => 1, Friday => 1, Hour => '06:00', ); ($dashboard_id, $subscription_id) = get_dash_sub_ids(); # bump $bad_time back to Sunday $bad_time = $good_time - 86400; produces_dashboard_mail_ok( Time => $good_time, Subject => "[example.com] a Daily b Testing! c\n", ); produces_no_dashboard_mail_ok( Name => "no mail because it's the wrong time", Time => $bad_time, ); produces_no_dashboard_mail_ok( Name => "no mail because it's the wrong time", Time => $bad_time - 86400, # saturday ); produces_dashboard_mail_ok( Time => $bad_time - 86400 * 2, # friday Subject => "[example.com] a Daily b Testing! c\n", ); @mails = RT::Test->fetch_caught_mails; is(@mails, 0, "no mail leftover"); $m->no_warnings_ok; RT::Test->stop_server; RT->Config->Set('DashboardSubject' => 'a %s b %s c'); RT->Config->Set('DashboardAddress' => 'dashboard@example.com'); RT->Config->Set('EmailDashboardRemove' => (qr/My dashboards/, "Testing!")); ($baseurl, $m) = RT::Test->started_ok; delete_dashboard($dashboard_id); RT::Test->clean_caught_mails; RT::Test->stop_server; RT->Config->Set('EmailDashboardRemove' => ()); RT->Config->Set('EmailDashboardLanguageOrder' => qw(_subscription _recipient _subscriber fr)); RT->Config->Set('DashboardAddress' => 'root'); ($baseurl, $m) = RT::Test->started_ok; $m->login; create_dashboard($baseurl, $m); create_subscription($baseurl, $m, Frequency => 'monthly', Hour => '06:00', ); ($dashboard_id, $subscription_id) = get_dash_sub_ids(); $good_time = 1291201200; # dec 1 produces_dashboard_mail_ok( Time => $good_time, Subject => "[example.com] a Mensuel b Testing! c\n", BodyLike => qr/Mes tableaux de bord/, BodyUnlike => qr/My dashboards/, ); @mails = RT::Test->fetch_caught_mails; is(@mails, 0, "no mail leftover"); $m->no_warnings_ok; RT::Test->stop_server; RT->Config->Set('DashboardSubject' => 'a %s b %s c'); RT->Config->Set('DashboardAddress' => 'dashboard@example.com'); RT->Config->Set('EmailDashboardRemove' => (qr/My dashboards/, "Testing!")); ($baseurl, $m) = RT::Test->started_ok; delete_dashboard($dashboard_id); RT::Test->clean_caught_mails; RT::Test->stop_server; RT->Config->Set('EmailDashboardRemove' => ()); RT->Config->Set('EmailDashboardLanguage' => 'ja'); RT->Config->Set('DashboardAddress' => 'root'); ($baseurl, $m) = RT::Test->started_ok; $m->login; create_dashboard($baseurl, $m); create_subscription($baseurl, $m, Frequency => 'monthly', Hour => '06:00', Language => 'fr', # overrides EmailDashboardLanguage ); ($dashboard_id, $subscription_id) = get_dash_sub_ids(); $good_time = 1291201200; # dec 1 $bad_time = $good_time - 86400; # day before (i.e. different month) produces_dashboard_mail_ok( Time => $good_time, Subject => "[example.com] a Mensuel b Testing! c\n", BodyLike => qr/Mes tableaux de bord/, BodyUnlike => qr/My dashboards/, ); produces_no_dashboard_mail_ok( Name => "no mail because it's the wrong time", Time => $bad_time, ); @mails = RT::Test->fetch_caught_mails; is(@mails, 0, "no mail leftover"); $m->no_warnings_ok; RT::Test->stop_server; RT->Config->Set('DashboardSubject' => 'a %s b %s c'); RT->Config->Set('DashboardAddress' => 'dashboard@example.com'); RT->Config->Set('EmailDashboardRemove' => (qr/My dashboards/, "Testing!")); ($baseurl, $m) = RT::Test->started_ok; delete_dashboard($dashboard_id); RT::Test->clean_caught_mails; RT::Test->stop_server; RT->Config->Set('EmailDashboardRemove' => ()); RT->Config->Set('DashboardAddress' => 'root'); ($baseurl, $m) = RT::Test->started_ok; $m->login; create_dashboard($baseurl, $m); create_subscription($baseurl, $m, Frequency => 'never', ); ($dashboard_id, $subscription_id) = get_dash_sub_ids(); produces_no_dashboard_mail_ok( Name => "mail should never get sent", Time => $bad_time, ); undef $m; done_testing; rt-4.4.2/t/mail/gnupg-outgoing-signed_encrypted.t0000664000175000017500000000131613131430353021702 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => undef, gnupg_options => { passphrase => 'rt-test', 'trust-model' => 'always', }; RT::Test->import_gnupg_key('rt-recipient@example.com'); RT::Test->import_gnupg_key( 'rt-test@example.com' ); my $queue = RT::Test->load_or_create_queue( Name => 'Regression', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', Sign => 1, Encrypt => 1, ); ok $queue && $queue->id, 'loaded or created queue'; my ( $baseurl, $m ) = RT::Test->started_ok; ok $m->login, 'logged in'; create_and_test_outgoing_emails( $queue, $m ); undef $m; done_testing; rt-4.4.2/t/mail/sendmail.t0000664000175000017500000001614113131430353015203 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use File::Spec (); use Email::Abstract; # We're not testing acls here. my $everyone = RT::Group->new(RT->SystemUser); $everyone->LoadSystemInternalGroup('Everyone'); $everyone->PrincipalObj->GrantRight( Right =>'SuperUser' ); # some utils sub first_txn { return $_[0]->Transactions->First } sub first_attach { return first_txn($_[0])->Attachments->First } sub count_attachs { return first_txn($_[0])->Attachments->Count } sub mail_in_ticket { my ($filename) = @_; my $path = RT::Test::get_relocatable_file($filename, (File::Spec->updir(), 'data', 'emails')); my $content = RT::Test->file_content($path); RT::Test->clean_caught_mails; my ($status, $id) = RT::Test->send_via_mailgate( $content ); ok( !$status, "Fed $filename into mailgate"); my $ticket = RT::Ticket->new(RT->SystemUser); $ticket->Load($id); ok( $ticket->Id, "Successfully created ticket ".$ticket->Id); my @mail = map {Email::Abstract->new($_)->cast('MIME::Entity')} RT::Test->fetch_caught_mails; return ($ticket, @mail); } { my ($ticket) = mail_in_ticket('multipart-report'); like( first_txn($ticket)->Content , qr/The original message was received/, "It's the bounce"); } for my $encoding ('ISO-8859-1', 'UTF-8') { RT->Config->Set( EmailOutputEncoding => $encoding ); my ($ticket, @mail) = mail_in_ticket('new-ticket-from-iso-8859-1'); like (first_txn($ticket)->Content , qr/H\x{e5}vard/, "It's signed by havard. yay"); is(@mail, 1); like( $mail[0]->head->get('Content-Type'), qr/multipart\/alternative/, "Its content type is multipart/alternative" ); # The text/html part is guaranteed to not have had non-latin-1 # characters introduced by the HTML-to-text conversion, so it is # guaranteed to be able to be represented in latin-1 like( $mail[0]->parts(1)->head->get('Content-Type'), qr/text\/html.+?$encoding/, "Second part's content type is text/html $encoding" ); my $message_as_string = $mail[0]->parts(1)->bodyhandle->as_string(); $message_as_string = Encode::decode($encoding, $message_as_string); like( $message_as_string , qr/H\x{e5}vard/, "The message's content contains havard's name in $encoding"); # The text/plain part may have utf-8 characters in it. Accept either encoding. like( $mail[0]->parts(0)->head->get('Content-Type'), qr/text\/plain.+?(ISO-8859-1|UTF-8)/i, "First part's content type is text/plain (ISO-8859-1 or UTF-8)" ); # Make sure it checks out in whatever encoding it ended up in $mail[0]->parts(0)->head->get('Content-Type') =~ /text\/plain.+?(ISO-8859-1|UTF-8)/i; my $found = $1 || $encoding; $message_as_string = $mail[0]->parts(0)->bodyhandle->as_string(); $message_as_string = Encode::decode($found, $message_as_string); like( $message_as_string , qr/H\x{e5}vard/, "The message's content contains havard's name in $encoding"); } { my ($ticket) = mail_in_ticket('multipart-alternative-with-umlaut'); like( first_txn($ticket)->Content, qr/causes Error/, "We recorded the content as containing 'causes error'"); is( count_attachs($ticket), 3, "Has three attachments, presumably a text-plain, a text-html and a multipart alternative"); } { my ($ticket, @mail) = mail_in_ticket('text-html-with-umlaut'); like( first_attach($ticket)->Content, qr/causes Error/, "We recorded the content as containing 'causes error'"); like( first_attach($ticket)->ContentType , qr/text\/html/, "We recorded the content as text/html"); is (count_attachs($ticket), 1, "Has one attachment, just a text-html"); is(@mail, 1); is( $mail[0]->parts, 2, "generated correspondence mime entity has parts"); is( $mail[0]->parts(0)->head->mime_type , "text/plain", "The first part mime type is a plain"); is( $mail[0]->parts(1)->head->mime_type , "text/html", "The second part mime type is an html"); } { my @InputEncodings = RT->Config->Get('EmailInputEncodings'); RT->Config->Set( EmailInputEncodings => 'koi8-r', @InputEncodings ); RT->Config->Set( EmailOutputEncoding => 'koi8-r' ); my ($ticket, @mail) = mail_in_ticket('russian-subject-no-content-type'); like( first_attach($ticket)->ContentType, qr/text\/plain/, "We recorded the content type right"); is( count_attachs($ticket), 1, "Has one attachment, presumably a text-plain"); is( $ticket->Subject, Encode::decode("UTF-8","теÑÑ‚ теÑÑ‚"), "Recorded the subject right"); is(@mail, 1); is( $mail[0]->head->mime_type , "multipart/alternative", "The top part is multipart/alternative"); is( $mail[0]->parts, 2, "generated correspondnece mime entity has parts"); is( $mail[0]->parts(0)->head->mime_type , "text/plain", "The first part is a plain"); is( $mail[0]->parts(1)->head->mime_type , "text/html", "The second part is an html"); like( $mail[0]->head->get("subject"), qr/\Q=?KOI8-R?B?W2V4YW1wbGUuY29tICM2XSBBdXRvUmVwbHk6INTF09Qg1MXT1A==?=\E/, "The subject is encoded correctly"); RT->Config->Set(EmailInputEncodings => @InputEncodings ); RT->Config->Set(EmailOutputEncoding => 'utf-8'); } { my ($ticket, @mail) = mail_in_ticket('nested-rfc-822'); is( $ticket->Subject, "[Jonas Liljegren] Re: [Para] Niv\x{e5}er?"); like( first_attach($ticket)->ContentType, qr/multipart\/mixed/, "We recorded the content type right"); is( count_attachs($ticket), 5, "Has five attachments, presumably a text-plain and a message RFC 822 and another plain"); is(@mail, 1); is( $mail[0]->head->mime_type , "multipart/alternative", "The top part is multipart/alternative"); is( $mail[0]->parts, 2, "generated correspondnece mime entity has parts"); is( $mail[0]->parts(0)->head->mime_type , "text/plain", "The first part is a plain"); is( $mail[0]->parts(1)->head->mime_type , "text/html", "The second part is an html"); my $encoded_subject = $mail[0]->head->get("Subject"); chomp $encoded_subject; my $subject = Encode::decode('MIME-Header',$encoded_subject); like($subject, qr/Niv\x{e5}er/, "The subject matches the word - $subject"); } { my ($ticket) = mail_in_ticket('notes-uuencoded'); like( first_txn($ticket)->Content, qr/from Lotus Notes/, "We recorded the content right"); is( count_attachs($ticket), 3, "Has three attachments"); } { my ($ticket) = mail_in_ticket('crashes-file-based-parser'); like( first_txn($ticket)->Content, qr/FYI/, "We recorded the content right"); is( count_attachs($ticket), 5, "Has five attachments"); } { my ($ticket) = mail_in_ticket('rt-send-cc'); my $cc = first_attach($ticket)->GetHeader('RT-Send-Cc'); like ($cc, qr/test$_/, "Found test $_") for 1..5; } { diag "Regression test for #5248 from rt3.fsck.com"; my ($ticket) = mail_in_ticket('subject-with-folding-ws'); is ($ticket->Subject, 'test', 'correct subject'); } { diag "Regression test for #5248 from rt3.fsck.com"; my ($ticket) = mail_in_ticket('very-long-subject'); is ($ticket->Subject, '0123456789'x20, 'correct subject'); } done_testing; rt-4.4.2/t/mail/gnupg-outgoing-encrypted.t0000664000175000017500000000126213131430353020351 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => undef, gnupg_options => { passphrase => 'rt-test', 'trust-model' => 'always', }; RT::Test->import_gnupg_key('rt-recipient@example.com'); RT::Test->import_gnupg_key( 'rt-test@example.com' ); my $queue = RT::Test->load_or_create_queue( Name => 'Regression', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', Encrypt => 1, ); ok $queue && $queue->id, 'loaded or created queue'; my ( $baseurl, $m ) = RT::Test->started_ok; ok $m->login, 'logged in'; create_and_test_outgoing_emails( $queue, $m ); undef $m; done_testing; rt-4.4.2/t/mail/extractsubjecttag.t0000664000175000017500000000713613131430353017141 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 18; my $queue = RT::Test->load_or_create_queue( Name => 'Regression', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', ); my $subject_tag = 'Windows/Servers-Desktops'; ok $queue && $queue->id, 'loaded or created queue'; diag "Set Subject Tag"; { is(RT->System->SubjectTag($queue), undef, 'No Subject Tag yet'); my ($status, $msg) = $queue->SetSubjectTag( $subject_tag ); ok $status, "set subject tag for the queue" or diag "error: $msg"; is(RT->System->SubjectTag($queue), $subject_tag, "Set Subject Tag to $subject_tag"); } my $original_ticket = RT::Ticket->new( RT->SystemUser ); diag "Create a ticket and make sure it has the subject tag"; { $original_ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => 'root@localhost' ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = $entity->head->get('Subject'); $subject =~ /\[\Q$subject_tag\E #\d+\]/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "Correctly added subject tag to ticket"; } diag "Test that a reply with a Subject Tag doesn't change the subject"; { my $ticketid = $original_ticket->Id; my $text = <send_via_mailgate($text, queue => $queue->Name); is ($status >> 8, 0, "The mail gateway exited normally"); is ($id, $ticketid, "Replied to ticket $id correctly"); my $freshticket = RT::Ticket->new( RT->SystemUser ); $freshticket->LoadById($id); is($original_ticket->Subject,$freshticket->Subject,'Stripped Queue Subject Tag correctly'); } diag "Test that a reply with another RT's subject tag changes the subject"; { my $ticketid = $original_ticket->Id; my $text = <send_via_mailgate($text, queue => $queue->Name); is ($status >> 8, 0, "The mail gateway exited normally"); is ($id, $ticketid, "Replied to ticket $id correctly"); my $freshticket = RT::Ticket->new( RT->SystemUser ); $freshticket->LoadById($id); like($freshticket->Subject,qr/\[remote-rt-system #79\]/,"Kept remote rt's subject tag"); unlike($freshticket->Subject,qr/\[\Q$subject_tag\E #$ticketid\]/,'Stripped Queue Subject Tag correctly'); } diag "Test that extraction of another RT's subject tag grabs only tag"; { my $ticketid = $original_ticket->Id; my $text = <send_via_mailgate($text, queue => $queue->Name); is ($status >> 8, 0, "The mail gateway exited normally"); is ($id, $ticketid, "Replied to ticket $id correctly"); my $freshticket = RT::Ticket->new( RT->SystemUser ); $freshticket->LoadById($id); like($freshticket->Subject,qr/\[remote-rt-system #79\]/,"Kept remote rt's subject tag"); unlike($freshticket->Subject,qr/comment/,"doesn't grab comment"); unlike($freshticket->Subject,qr/\[\Q$subject_tag\E #$ticketid\]/,'Stripped Queue Subject Tag correctly'); } rt-4.4.2/t/mail/gnupg-outgoing-signed_encrypted-plaintext.t0000664000175000017500000000134713131430353023714 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => undef, text_templates => 1, gnupg_options => { passphrase => 'rt-test', 'trust-model' => 'always', }; RT::Test->import_gnupg_key('rt-recipient@example.com'); RT::Test->import_gnupg_key( 'rt-test@example.com' ); my $queue = RT::Test->load_or_create_queue( Name => 'Regression', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', Sign => 1, Encrypt => 1, ); ok $queue && $queue->id, 'loaded or created queue'; my ( $baseurl, $m ) = RT::Test->started_ok; ok $m->login, 'logged in'; create_and_test_outgoing_emails( $queue, $m ); undef $m; done_testing; rt-4.4.2/t/mail/rfc822-attachment.t0000664000175000017500000000767613131430353016560 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use MIME::Entity; diag "simple rfc822 attachment"; { my $top = MIME::Entity->build( From => 'root@localhost', To => 'rt@localhost', Subject => 'this is top', Data => ['top mail'], ); my $rfc822 = MIME::Entity->build( From => 'foo@localhost', To => 'bar@localhost', Subject => 'rfc822', Data => ['rfc822 attachment'], 'X-Brokenness' => 'high', ); $top->attach( Data => $rfc822->stringify, Type => 'message/rfc822', ); my $parsed = content_as_mime($top); for my $mime ($top, $parsed) { diag "testing mail"; is $mime->parts, 2, 'two mime parts'; like $mime->head->get('Subject'), qr/this is top/, 'top subject'; like $mime->head->get('From'), qr/root\@localhost/, 'top From'; like $mime->parts(0)->bodyhandle->as_string, qr/top mail/, 'content of top'; my $attach = $mime->parts(1); my $body = $attach->bodyhandle->as_string; like $attach->head->mime_type, qr/message\/rfc822/, 'attach of type message/rfc822'; like $body, qr/rfc822 attachment/, 'attach content'; headers_like( $attach, Subject => 'rfc822', From => 'foo@localhost', 'X-Brokenness' => 'high', ); } } diag "multipart rfc822 attachment"; { my $top = MIME::Entity->build( From => 'root@localhost', To => 'rt@localhost', Subject => 'this is top', Data => ['top mail'], ); my $rfc822 = MIME::Entity->build( From => 'foo@localhost', To => 'bar@localhost', Subject => 'rfc822', Data => ['rfc822 attachment'], 'X-Brokenness' => 'high', ); $rfc822->attach( Data => 'attachment of rfc822 attachment', Type => 'text/html', ); $top->attach( Data => $rfc822->stringify, Type => 'message/rfc822', ); my $parsed = content_as_mime($top); for my $mime ($top, $parsed) { diag "testing mail"; is $mime->parts, 2, 'two mime parts'; like $mime->head->get('Subject'), qr/this is top/, 'top subject'; like $mime->head->get('From'), qr/root\@localhost/, 'top From'; like $mime->parts(0)->bodyhandle->as_string, qr/top mail/, 'content of top'; my $attach = $mime->parts(1); my $body = $attach->bodyhandle->as_string; like $attach->head->mime_type, qr/message\/rfc822/, 'attach of type message/rfc822'; like $body, qr/rfc822 attachment/, 'attach content'; like $body, qr/attachment of rfc822 attachment/, 'attach content'; headers_like( $attach, Subject => 'rfc822', From => 'foo@localhost', 'X-Brokenness' => 'high', 'Content-Type' => 'text/plain', 'Content-type' => 'text/html', ); } } sub content_as_mime { my $entity = shift; my ( $status, $id ) = RT::Test->send_via_mailgate($entity); is( $status >> 8, 0, "The mail gateway exited normally" ); ok( $id, "created ticket" ); # We can't simply use Txn->ContentAsMIME since that is wrapped in a # message/rfc822 entity return RT::Test->last_ticket->Transactions->First->Attachments->First->ContentAsMIME(Children => 1); } sub headers_like { my $attach = shift; my %header = (@_); my $body = $attach->bodyhandle->as_string; for my $name (keys %header) { if (lc $name eq 'content-type') { like $attach->head->get($name), qr/message\/rfc822/, "attach $name message/rfc822, not from a subpart"; } else { is $attach->head->get($name), undef, "attach $name not in part header"; } like $body, qr/$name: $header{$name}/i, "attach $name in part body"; } } done_testing; rt-4.4.2/t/mail/gnupg-realmail.t0000664000175000017500000001201113131430353016303 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => 198, gnupg_options => { passphrase => 'rt-test' }; use Digest::MD5 qw(md5_hex); RT::Test->import_gnupg_key('rt-recipient@example.com'); RT::Test->import_gnupg_key('rt-test@example.com', 'public'); RT::Test->trust_gnupg_key('rt-test@example.com'); my ($baseurl, $m) = RT::Test->started_ok; ok $m->login, 'we did log in'; $m->get_ok( '/Admin/Queues/'); $m->follow_link_ok( {text => 'General'} ); $m->submit_form( form_number => 3, fields => { CorrespondAddress => 'rt-recipient@example.com' } ); $m->content_like(qr/rt-recipient\@example.com.* - never/, 'has key info.'); my $eid = 0; for my $usage (qw/signed encrypted signed&encrypted/) { for my $format (qw/MIME inline/) { for my $attachment (qw/plain text-attachment binary-attachment/) { ++$eid; diag "Email $eid: $usage, $attachment email with $format format"; eval { email_ok($eid, $usage, $format, $attachment) }; } } } $eid = 18; { my ($usage, $format, $attachment) = ('signed', 'inline', 'plain'); ++$eid; diag "Email $eid: $usage, $attachment email with $format format"; eval { email_ok($eid, $usage, $format, $attachment) }; } sub email_ok { my ($eid, $usage, $format, $attachment) = @_; diag "email_ok $eid: $usage, $format, $attachment"; my $emaildatadir = RT::Test::get_relocatable_dir(File::Spec->updir(), qw(data gnupg emails)); my ($file) = glob("$emaildatadir/$eid-*"); my $mail = RT::Test->file_content($file); my ($status, $id) = RT::Test->send_via_mailgate($mail); is ($status >> 8, 0, "$eid: The mail gateway exited normally"); ok ($id, "$eid: got id of a newly created ticket - $id"); my $tick = RT::Ticket->new( RT->SystemUser ); $tick->Load( $id ); ok ($tick->id, "$eid: loaded ticket #$id"); is ($tick->Subject, "Test Email ID:$eid", "$eid: Created the ticket" ); my $txn = $tick->Transactions->First; my ($msg, @attachments) = @{$txn->Attachments->ItemsArrayRef}; is( $msg->GetHeader('X-RT-Privacy'), 'GnuPG', "$eid: recorded incoming mail that is encrypted" ); if ($usage =~ /encrypted/) { if ( $format eq 'MIME' || $attachment eq 'plain' ) { is( $msg->GetHeader('X-RT-Incoming-Encryption'), 'Success', "$eid: recorded incoming mail that is encrypted" ); } else { is( $attachments[0]->GetHeader('X-RT-Incoming-Encryption'), 'Success', "$eid: recorded incoming mail that is encrypted" ); is( $attachments[1]->GetHeader('X-RT-Incoming-Encryption'), 'Success', "$eid: recorded incoming mail that is encrypted" ); } like( $attachments[0]->Content, qr/ID:$eid/, "$eid: incoming mail did NOT have original body" ); } else { is( $msg->GetHeader('X-RT-Incoming-Encryption'), 'Not encrypted', "$eid: recorded incoming mail that is not encrypted" ); like( $msg->Content || $attachments[0]->Content, qr/ID:$eid/, "$eid: got original content" ); } if ($usage =~ /signed/) { # XXX: FIXME: TODO: 6-signed-inline-with-attachment should be re-generated as it's actually RFC format if ( $format eq 'MIME' || $attachment eq 'plain' || ($format eq 'inline' && $attachment =~ /binary/ && $usage !~ /encrypted/) ) { is( $msg->GetHeader('X-RT-Incoming-Signature'), 'RT Test ', "$eid: recorded incoming mail that is signed" ); } else { is( $attachments[0]->GetHeader('X-RT-Incoming-Signature'), 'RT Test ', "$eid: recorded incoming mail that is signed" ); is( $attachments[1]->GetHeader('X-RT-Incoming-Signature'), 'RT Test ', "$eid: recorded incoming mail that is signed" ); } } else { is( $msg->GetHeader('X-RT-Incoming-Signature'), undef, "$eid: recorded incoming mail that is not signed" ); } if ($attachment =~ /attachment/) { # signed messages should sign each attachment too if ($usage =~ /signed/) { my $sig = pop @attachments; ok ($sig->Id, "$eid: loaded attachment.sig object"); my $acontent = $sig->Content; } my ($a) = grep $_->Filename, @attachments; ok ($a && $a->Id, "$eid: found attachment with filename"); my $acontent = $a->Content; if ($attachment =~ /binary/) { is(md5_hex($acontent), '1e35f1aa90c98ca2bab85c26ae3e1ba7', "$eid: The binary attachment's md5sum matches"); } else { like($acontent, qr/zanzibar/, "$eid: The attachment isn't screwed up in the database."); } } return 0; } rt-4.4.2/t/mail/one-time-recipients.t0000664000175000017500000001252113131430353017265 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use RT::Test::Email; use Test::Warn; my $queue = RT::Test->load_or_create_queue( Name => 'General', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', ); ok $queue && $queue->id, 'loaded or created queue'; my $user = RT::Test->load_or_create_user( Name => 'root', EmailAddress => 'root@localhost', ); ok $user && $user->id, 'loaded or created user'; diag "Reply to ticket with actor as one time cc"; warnings_are { my $ticket = RT::Ticket->new( RT::CurrentUser->new( $user ) ); mail_ok { my ($status, undef, $msg) = $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => 'root@localhost', ); ok $status, "created ticket"; } { To => 'root@localhost' }; RT->Config->Set( NotifyActor => 1 ); mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', ); ok $status, "replied to a ticket"; } { To => 'root@localhost' }; RT->Config->Set( NotifyActor => 0 ); mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', ); ok $status, "replied to a ticket"; }; mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', CcMessageTo => 'root@localhost', ); ok $status, "replied to a ticket"; } { Cc => 'root@localhost' }; } []; diag "Reply to ticket with requestor squelched"; warnings_are { my $ticket = RT::Ticket->new( RT::CurrentUser->new( $user ) ); mail_ok { my ($status, undef, $msg) = $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => 'test@localhost', ); ok $status, "created ticket"; } { To => 'test@localhost' }; mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', ); ok $status, "replied to a ticket"; } { To => 'test@localhost' }; $ticket->SquelchMailTo('test@localhost'); mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', ); ok $status, "replied to a ticket"; }; mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', CcMessageTo => 'test@localhost', ); ok $status, "replied to a ticket"; } { Cc => 'test@localhost' }; }[]; diag "Reply to ticket with multiple requestors squelched"; warnings_are { my $ticket = RT::Ticket->new( RT::CurrentUser->new( $user ) ); mail_ok { my ($status, undef, $msg) = $ticket->Create( Queue => $queue->id, Subject => 'test squelch', Requestor => ['test@localhost','bob@localhost','fred@localhost' ], ); ok $status, "created ticket"; } { To => 'bob@localhost, fred@localhost, test@localhost' }; mail_ok { my ($status,$msg) = $ticket->Correspond( Content => 'squelched email', SquelchMailTo => ['bob@localhost', 'fred@localhost'], ); ok $status, "replied to a ticket"; } { To => 'test@localhost' }; } []; diag "Reply to ticket with requestor squelched"; warnings_are { my $ticket = RT::Ticket->new( RT::CurrentUser->new( $user ) ); mail_ok { my ($status, undef, $msg) = $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => 'test@localhost', ); ok $status, "created ticket"; } { To => 'test@localhost' }; mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', ); ok $status, "replied to a ticket"; } { To => 'test@localhost' }; mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', SquelchMailTo => ['test@localhost'], ); ok $status, "replied to a ticket"; }; mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', ); ok $status, "replied to a ticket"; } { To => 'test@localhost' }; mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', CcMessageTo => 'test@localhost', SquelchMailTo => ['test@localhost'], ); ok $status, "replied to a ticket"; } { Cc => 'test@localhost' }; } []; diag "Requestor is an RT address"; warnings_are { my $ticket = RT::Ticket->new( RT::CurrentUser->new( $user ) ); mail_ok { my ($status, undef, $msg) = $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => 'rt-address@example.com', ); ok $status, "created ticket"; } { To => 'rt-address@example.com' }; RT->Config->Set( RTAddressRegexp => qr/^rt-address\@example\.com$/i ); mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', ); ok $status, "replied to a ticket"; }; mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', CcMessageTo => 'rt-address@example.com', ); ok $status, "replied to a ticket"; }; } []; done_testing; rt-4.4.2/t/mail/smime/0000775000175000017500000000000013131430353014331 5ustar vagrantvagrantrt-4.4.2/t/mail/smime/reject_on_unencrypted.t0000664000175000017500000000773413131430353021121 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::SMIME tests => undef, actual_server => 1, config => 'Set( @MailPlugins, "Authz::RequireEncrypted" );'; my $test = 'RT::Test::SMIME'; use IPC::Run3 'run3'; use String::ShellQuote 'shell_quote'; use RT::Tickets; my ($url, $m) = RT::Test->started_ok; ok $m->login, "logged in"; # configure key for General queue RT::Test::SMIME->import_key('sender@example.com'); my $queue = RT::Test->load_or_create_queue( Name => 'General', CorrespondAddress => 'sender@example.com', CommentAddress => 'sender@example.com', ); ok $queue && $queue->id, 'loaded or created queue'; my $user = RT::Test->load_or_create_user( Name => 'root@example.com', EmailAddress => 'root@example.com', ); RT::Test::SMIME->import_key('root@example.com.crt', $user); RT::Test->add_rights( Principal => $user, Right => 'SuperUser', Object => RT->System ); my $mail = RT::Test->open_mailgate_ok($url); print $mail <close_mailgate_ok($mail); { ok(!RT::Test->last_ticket, 'A ticket was not created'); my ($mail) = RT::Test->fetch_caught_mails; like( $mail, qr/^Subject: RT requires that all incoming mail be encrypted/m, 'rejected mail that is not encrypted' ); my ($warning) = $m->get_warnings; like($warning, qr/rejected because the message is unencrypted/); } { # test for encrypted mail my $buf = ''; run3( shell_quote( qw(openssl smime -encrypt -des3), -from => 'root@example.com', -to => 'sender@example.com', -subject => "Encrypted message for queue", $test->key_path('sender@example.com.crt' ), ), \"Subject: test\n\norzzzzzz", \$buf, \*STDERR ); my ($status, $tid) = RT::Test->send_via_mailgate( $buf ); is ($status >> 8, 0, "The mail gateway exited normally"); my $tick = RT::Ticket->new( $RT::SystemUser ); $tick->Load( $tid ); is( $tick->Subject, 'Encrypted message for queue', "Created the ticket" ); my $txn = $tick->Transactions->First; my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef}; is( $msg->GetHeader('X-RT-Incoming-Encryption'), 'Success', 'recorded incoming mail that is encrypted' ); is( $msg->GetHeader('X-RT-Privacy'), 'SMIME', 'recorded incoming mail that is encrypted' ); like( $attach->Content, qr'orz'); is( $orig->GetHeader('Content-Type'), 'application/x-rt-original-message'); } { my $buf = ''; run3( join( ' ', shell_quote( RT->Config->Get('SMIME')->{'OpenSSL'}, qw( smime -sign -nodetach -passin pass:123456), -signer => $test->key_path('root@example.com.crt' ), -inkey => $test->key_path('root@example.com.key' ), ), '|', shell_quote( qw(openssl smime -encrypt -des3), -from => 'root@example.com', -to => 'sender@example.com', -subject => "Encrypted and signed message for queue", $test->key_path('sender@example.com.crt' ), )), \"Subject: test\n\norzzzzzz", \$buf, \*STDERR ); my ($status, $tid) = RT::Test->send_via_mailgate( $buf ); my $tick = RT::Ticket->new( $RT::SystemUser ); $tick->Load( $tid ); ok( $tick->Id, "found ticket " . $tick->Id ); is( $tick->Subject, 'Encrypted and signed message for queue', "Created the ticket" ); my $txn = $tick->Transactions->First; my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef}; is( $msg->GetHeader('X-RT-Incoming-Encryption'), 'Success', 'recorded incoming mail that is encrypted' ); like( $attach->Content, qr'orzzzz'); } undef $m; done_testing; rt-4.4.2/t/mail/smime/incoming.t0000664000175000017500000001355413131430353016331 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::SMIME tests => undef, actual_server => 1; my $test = 'RT::Test::SMIME'; use IPC::Run3 'run3'; use String::ShellQuote 'shell_quote'; use RT::Tickets; use Test::Warn; my ($url, $m) = RT::Test->started_ok; ok $m->login, "logged in"; # configure key for General queue RT::Test::SMIME->import_key('sender@example.com'); my $queue = RT::Test->load_or_create_queue( Name => 'General', CorrespondAddress => 'sender@example.com', CommentAddress => 'sender@example.com', ); ok $queue && $queue->id, 'loaded or created queue'; my $user = RT::Test->load_or_create_user( Name => 'root@example.com', EmailAddress => 'root@example.com', ); RT::Test::SMIME->import_key('root@example.com.crt', $user); RT::Test->add_rights( Principal => $user, Right => 'SuperUser', Object => RT->System ); my $mail = RT::Test->open_mailgate_ok($url); print $mail <close_mailgate_ok($mail); { my $tick = RT::Test->last_ticket; is( $tick->Subject, 'This is a test of new ticket creation as root', "Created the ticket" ); my $txn = $tick->Transactions->First; like( $txn->Attachments->First->Headers, qr/^X-RT-Incoming-Encryption: Not encrypted/m, 'recorded incoming mail that is not encrypted' ); like( $txn->Attachments->First->Content, qr'Blah'); } { # test for encrypted mail my $buf = ''; run3( shell_quote( qw(openssl smime -encrypt -des3), -from => 'root@example.com', -to => 'sender@example.com', -subject => "Encrypted message for queue", $test->key_path('sender@example.com.crt'), ), \"Subject: test\n\norzzzzzz", \$buf, \*STDERR ); my ($status, $tid) = RT::Test->send_via_mailgate( $buf ); is ($status >> 8, 0, "The mail gateway exited normally"); my $tick = RT::Ticket->new( $RT::SystemUser ); $tick->Load( $tid ); is( $tick->Subject, 'Encrypted message for queue', "Created the ticket" ); my $txn = $tick->Transactions->First; my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef}; is( $msg->GetHeader('X-RT-Incoming-Encryption'), 'Success', 'recorded incoming mail that is encrypted' ); is( $msg->GetHeader('X-RT-Privacy'), 'SMIME', 'recorded incoming mail that is encrypted' ); like( $attach->Content, qr'orz'); is( $orig->GetHeader('Content-Type'), 'application/x-rt-original-message'); } { my $buf = ''; run3( join( ' ', shell_quote( RT->Config->Get('SMIME')->{'OpenSSL'}, qw( smime -sign -nodetach -passin pass:123456), -signer => $test->key_path('root@example.com.crt'), -inkey => $test->key_path('root@example.com.key'), ), '|', shell_quote( qw(openssl smime -encrypt -des3), -from => 'root@example.com', -to => 'sender@example.com', -subject => "Encrypted and signed message for queue", $test->key_path('sender@example.com.crt'), )), \"Subject: test\n\norzzzzzz", \$buf, \*STDERR ); my ($status, $tid) = RT::Test->send_via_mailgate( $buf ); my $tick = RT::Ticket->new( $RT::SystemUser ); $tick->Load( $tid ); ok( $tick->Id, "found ticket " . $tick->Id ); is( $tick->Subject, 'Encrypted and signed message for queue', "Created the ticket" ); my $txn = $tick->Transactions->First; my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef}; is( $msg->GetHeader('X-RT-Incoming-Encryption'), 'Success', 'recorded incoming mail that is encrypted' ); like( $attach->Content, qr'orzzzz'); } { my $buf = ''; run3( shell_quote( RT->Config->Get('SMIME')->{'OpenSSL'}, qw( smime -sign -passin pass:123456), -signer => $test->key_path('root@example.com.crt'), -inkey => $test->key_path('root@example.com.key'), ), \"Content-type: text/plain\n\nThis is the body", \$buf, \*STDERR ); $buf = "Subject: Signed email\n" . "From: root\@example.com\n" . $buf; { my ($status, $tid) = RT::Test->send_via_mailgate( $buf ); my $tick = RT::Ticket->new( $RT::SystemUser ); $tick->Load( $tid ); ok( $tick->Id, "found ticket " . $tick->Id ); is( $tick->Subject, 'Signed email', "Created the ticket" ); my $txn = $tick->Transactions->First; my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef}; is( $msg->GetHeader('X-RT-Incoming-Signature'), '"Enoch Root" ', "Message was signed" ); like( $attach->Content, qr/This is the body/ ); } # Make the signature not match $buf =~ s/This is the body/This is not the body/; warning_like { my ($status, $tid) = RT::Test->send_via_mailgate( $buf ); my $tick = RT::Ticket->new( $RT::SystemUser ); $tick->Load( $tid ); ok( $tick->Id, "found ticket " . $tick->Id ); is( $tick->Subject, 'Signed email', "Created the ticket" ); my $txn = $tick->Transactions->First; my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef}; isnt( $msg->GetHeader('X-RT-Incoming-Signature'), '"Enoch Root" ', "Message was not marked signed" ); like( $attach->Content, qr/This is not the body/ ); } qr/Failure during SMIME verify: The signature did not verify/; } undef $m; done_testing; rt-4.4.2/t/mail/smime/outgoing.t0000664000175000017500000000360113131430353016351 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::SMIME tests => undef; my $test = 'RT::Test::SMIME'; use IPC::Run3 'run3'; use RT::Interface::Email; my ($url, $m) = RT::Test->started_ok; ok $m->login, "logged in"; my $queue = RT::Test->load_or_create_queue( Name => 'General', CorrespondAddress => 'sender@example.com', CommentAddress => 'sender@example.com', ); ok $queue && $queue->id, 'loaded or created queue'; { my ($status, $msg) = $queue->SetEncrypt(1); ok $status, "turn on encyption by default" or diag "error: $msg"; } my $user; { $user = RT::User->new($RT::SystemUser); ok($user->LoadByEmail('root@localhost'), "Loaded user 'root'"); ok($user->Load('root'), "Loaded user 'root'"); is($user->EmailAddress, 'root@localhost'); RT::Test::SMIME->import_key( 'root@example.com.crt' => $user ); } RT::Test->clean_caught_mails; { my $mail = <send_via_mailgate( $mail, queue => $queue->Name, ); is $status >> 8, 0, "successfuly executed mailgate"; my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load( $id ); ok ($ticket->id, "found ticket ". $ticket->id); } { my @mails = RT::Test->fetch_caught_mails; is scalar @mails, 1, "autoreply"; my ($buf, $err); local $@; ok(eval { run3([ qw(openssl smime -decrypt -passin pass:123456), '-inkey', $test->key_path('root@example.com.key'), '-recip', $test->key_path('root@example.com.crt') ], \$mails[0], \$buf, \$err ) }, 'can decrypt' ); diag $@ if $@; diag $err if $err; diag "Error code: $?" if $?; like($buf, qr'This message has been automatically generated in response'); } undef $m; done_testing; rt-4.4.2/t/mail/smime/other-signed.t0000664000175000017500000001055713131430353017116 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::SMIME tests => undef; my $test = 'RT::Test::SMIME'; use IPC::Run3 'run3'; use String::ShellQuote 'shell_quote'; use RT::Tickets; use Test::Warn; # configure key for General queue RT::Test::SMIME->import_key('sender@example.com'); my $queue = RT::Test->load_or_create_queue( Name => 'General', CorrespondAddress => 'sender@example.com', CommentAddress => 'sender@example.com', ); ok $queue && $queue->id, 'loaded or created queue'; my $user = RT::Test->load_or_create_user( Name => 'root@example.com', EmailAddress => 'root@example.com', ); RT::Test::SMIME->import_key('root@example.com.crt', $user); RT::Test->add_rights( Principal => $user, Right => 'SuperUser', Object => RT->System ); my $buf = ''; run3( shell_quote( RT->Config->Get('SMIME')->{'OpenSSL'}, qw( smime -sign -passin pass:123456), -signer => $test->key_path('root@example.com.crt'), -inkey => $test->key_path('root@example.com.key'), ), \"Content-type: text/plain\n\nThis is the body", \$buf, \*STDERR ); $buf = "Subject: Signed email\n" . "From: root\@example.com\n" . $buf; my $send_mail = sub { my %args = ( CAPath => undef, AcceptUntrustedCAs => undef, @_ ); RT->Config->Get('SMIME')->{$_} = $args{$_} for keys %args; my ($status, $tid) = RT::Test->send_via_mailgate( $buf ); my $tick = RT::Ticket->new( $RT::SystemUser ); $tick->Load( $tid ); ok( $tick->Id, "found ticket " . $tick->Id ); is( $tick->Subject, 'Signed email', "Created the ticket" ); my $txn = $tick->Transactions->First; my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef}; ($status) = RT::Crypt->ParseStatus( Protocol => 'SMIME', Status => $msg->GetHeader('X-RT-SMIME-Status') ); return ($msg, $status); }; # Test with no CA path; should not be marked as signed warning_like { my ($msg, $status) = $send_mail->( CAPath => undef ); is( $msg->GetHeader('X-RT-Incoming-Signature'), undef, "Message was not marked as signed" ); is($status->{Operation}, "Verify", "Found the Verify operation"); is($status->{Status}, "BAD", "Verify was a failure"); is($status->{Trust}, "NONE", "Noted the no trust level"); like($status->{Message}, qr/not trusted/, "Verify was a failure"); } qr/Failure during SMIME verify: The signing CA was not trusted/; # Test with the correct CA path; marked as signed, trusted { my ($msg, $status) = $send_mail->( CAPath => $test->key_path . "/demoCA/cacert.pem" ); is( $msg->GetHeader('X-RT-Incoming-Signature'), '"Enoch Root" ', "Message is signed" ); is($status->{Operation}, "Verify", "Found the Verify operation"); is($status->{Status}, "DONE", "Verify was a success"); is($status->{Trust}, "FULL", "Noted the full trust level"); } # Test with the other CA warning_like { my ($msg, $status) = $send_mail->( CAPath => $test->key_path . "/otherCA/cacert.pem" ); is( $msg->GetHeader('X-RT-Incoming-Signature'), undef, "Message was not marked as signed" ); is($status->{Operation}, "Verify", "Found the Verify operation"); is($status->{Status}, "BAD", "Verify was a failure"); is($status->{Trust}, "NONE", "Noted the no trust level"); like($status->{Message}, qr/not trusted/, "Verify was a failure"); } qr/Failure during SMIME verify: The signing CA was not trusted/; # Other CA, but allow all CAs { my ($msg, $status) = $send_mail->( CAPath => $test->key_path . "/otherCA/cacert.pem", AcceptUntrustedCAs => 1 ); is( $msg->GetHeader('X-RT-Incoming-Signature'), '"Enoch Root" ', "Message was marked as signed" ); is($status->{Operation}, "Verify", "Found the Verify operation"); is($status->{Status}, "DONE", "Verify was a success"); is($status->{Trust}, "NONE", "Noted the no trust level"); } # No CA path, but allow all CAs { my ($msg, $status) = $send_mail->( CAPath => undef, AcceptUntrustedCAs => 1 ); is( $msg->GetHeader('X-RT-Incoming-Signature'), '"Enoch Root" ', "Message was marked as signed" ); is($status->{Operation}, "Verify", "Found the Verify operation"); is($status->{Status}, "DONE", "Verify was a success"); is($status->{Trust}, "UNKNOWN", "Noted the no trust level"); } done_testing; rt-4.4.2/t/mail/smime/realmail.t0000664000175000017500000000677013131430353016316 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::SMIME tests => undef; use Digest::MD5 qw(md5_hex); my $test = 'RT::Test::SMIME'; my $mails = $test->mail_set_path; RT->Config->Get('SMIME')->{AcceptUntrustedCAs} = 1; RT::Test::SMIME->import_key('root@example.com'); RT::Test::SMIME->import_key('sender@example.com'); my ($baseurl, $m) = RT::Test->started_ok; ok $m->login, 'we did log in'; $m->get_ok( '/Admin/Queues/'); $m->follow_link_ok( {text => 'General'} ); $m->submit_form( form_number => 3, fields => { CorrespondAddress => 'root@example.com' } ); diag "load Everyone group" if $ENV{'TEST_VERBOSE'}; my $everyone; { $everyone = RT::Group->new( $RT::SystemUser ); $everyone->LoadSystemInternalGroup('Everyone'); ok $everyone->id, "loaded 'everyone' group"; } RT::Test->set_rights( Principal => $everyone, Right => ['CreateTicket'], ); my $eid = 0; for my $usage (qw/signed encrypted signed&encrypted/) { for my $attachment (qw/plain text-attachment binary-attachment/) { ++$eid; diag "Email $eid: $usage, $attachment email" if $ENV{TEST_VERBOSE}; eval { email_ok($eid, $usage, $attachment) }; } } undef $m; done_testing; sub email_ok { my ($eid, $usage, $attachment) = @_; diag "email_ok $eid: $usage, $attachment" if $ENV{'TEST_VERBOSE'}; my ($file) = glob("$mails/$eid-*"); my $mail = RT::Test->file_content($file); my ($status, $id) = RT::Test->send_via_mailgate($mail); is ($status >> 8, 0, "$eid: The mail gateway exited normally"); ok ($id, "$eid: got id of a newly created ticket - $id"); my $tick = RT::Ticket->new( $RT::SystemUser ); $tick->Load( $id ); ok ($tick->id, "$eid: loaded ticket #$id"); is ($tick->Subject, "Test Email ID:$eid", "$eid: Created the ticket" ); my $txn = $tick->Transactions->First; my ($msg, @attachments) = @{$txn->Attachments->ItemsArrayRef}; is( $msg->GetHeader('X-RT-Privacy'), 'SMIME', "$eid: recorded incoming mail that is secured" ); if ($usage =~ /encrypted/) { is( $msg->GetHeader('X-RT-Incoming-Encryption'), 'Success', "$eid: recorded incoming mail that is encrypted" ); like( $attachments[0]->Content, qr/ID:$eid/, "$eid: incoming mail did NOT have original body" ); } else { is( $msg->GetHeader('X-RT-Incoming-Encryption'), 'Not encrypted', "$eid: recorded incoming mail that is not encrypted" ); like( $msg->Content || $attachments[0]->Content, qr/ID:$eid/, "$eid: got original content" ); } if ($usage =~ /signed/) { is( $msg->GetHeader('X-RT-Incoming-Signature'), '"sender" ', "$eid: recorded incoming mail that is signed" ); } else { is( $msg->GetHeader('X-RT-Incoming-Signature'), undef, "$eid: recorded incoming mail that is not signed" ); } if ($attachment =~ /attachment/) { my ($a) = grep $_->Filename, @attachments; ok ($a && $a->Id, "$eid: found attachment with filename"); my $acontent = $a->Content; if ($attachment =~ /binary/) { is(md5_hex($acontent), '1e35f1aa90c98ca2bab85c26ae3e1ba7', "$eid: The binary attachment's md5sum matches"); } else { like($acontent, qr/zanzibar/, "$eid: The attachment isn't screwed up in the database."); } } return 0; } rt-4.4.2/t/mail/gnupg-reverification.t0000664000175000017500000000471613131430353017543 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => undef, gnupg_options => { passphrase => 'rt-test' }; diag "load Everyone group"; my $everyone; { $everyone = RT::Group->new( RT->SystemUser ); $everyone->LoadSystemInternalGroup('Everyone'); ok $everyone->id, "loaded 'everyone' group"; } my ($baseurl, $m) = RT::Test->started_ok; ok $m->login, 'we get log in'; RT::Test->import_gnupg_key('rt-recipient@example.com'); my @ticket_ids; my $emaildatadir = RT::Test::get_relocatable_dir(File::Spec->updir(), qw(data gnupg emails)); my @files = glob("$emaildatadir/*-signed-*"); foreach my $file ( @files ) { diag "testing $file"; my ($eid) = ($file =~ m{(\d+)[^/\\]+$}); ok $eid, 'figured id of a file'; my $email_content = RT::Test->file_content( $file ); ok $email_content, "$eid: got content of email"; my $warnings; my ($status, $id); { # We don't use Test::Warn here because we get multi-line # warnings, which Test::Warn only records the first line of. local $SIG{__WARN__} = sub { $warnings .= "@_"; }; ($status, $id) = RT::Test->send_via_mailgate( $email_content ); } is $status >> 8, 0, "$eid: the mail gateway exited normally"; ok $id, "$eid: got id of a newly created ticket - $id"; like($warnings, qr/Public key '0xD328035D84881F1B' is not available/); my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load( $id ); ok $ticket->id, "$eid: loaded ticket #$id"; is $ticket->Subject, "Test Email ID:$eid", "$eid: correct subject"; $m->goto_ticket( $id ); $m->content_contains( "Not possible to check the signature, the reason is missing public key", "$eid: signature is not verified", ); $m->content_like(qr/This is .*ID:$eid/ims, "$eid: content is there and message is decrypted"); $m->next_warning_like(qr/public key not found/); # some mails contain multiple signatures if ($eid == 5 || $eid == 17 || $eid == 18) { $m->next_warning_like(qr/public key not found/); } $m->no_leftover_warnings_ok; push @ticket_ids, $id; } diag "import key into keyring"; RT::Test->import_gnupg_key('rt-test@example.com', 'public'); foreach my $id ( @ticket_ids ) { diag "testing ticket #$id"; $m->goto_ticket( $id ); $m->content_contains( "The signature is good", "signature is re-verified and now good", ); $m->no_warnings_ok; } undef $m; done_testing; rt-4.4.2/t/mail/gnupg-outgoing-signed.t0000664000175000017500000000126213131430353017625 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => undef, gnupg_options => { passphrase => 'rt-test', 'trust-model' => 'always', }; RT::Test->import_gnupg_key('rt-recipient@example.com'); RT::Test->import_gnupg_key( 'rt-test@example.com' ); my $queue = RT::Test->load_or_create_queue( Name => 'Regression', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', Sign => 1, ); ok $queue && $queue->id, 'loaded or created queue'; my ( $baseurl, $m ) = RT::Test->started_ok; ok $m->login, 'logged in'; create_and_test_outgoing_emails( $queue, $m ); undef $m; done_testing; rt-4.4.2/t/mail/autogenerated.t0000664000175000017500000000077613131430353016245 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use Email::Abstract; my $msg = Email::Abstract->new(<<'MSG')->cast("MIME::Entity"); From: somebody@example.com To: rt@example.com Precedence: never-bounce Precedence: bulk Subject: testing precedence I am bulk mail, hear me roar! MSG ok RT::Interface::Email::CheckForAutoGenerated($msg->head), "Is AutoGenerated"; $msg->head->delete("Precedence", 1); ok !RT::Interface::Email::CheckForAutoGenerated($msg->head), "Isn't AutoGenerated"; done_testing; rt-4.4.2/t/mail/not-supported-charset.t0000664000175000017500000000335713131430353017666 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use Test::Warn; my $queue = RT::Test->load_or_create_queue( Name => 'General' ); ok $queue->id, 'loaded queue'; { my $mail = <<'END'; From: root@localhost Subject: test Content-type: text/plain; charset="not-supported-encoding" ho hum just some text END my ($stat, $id); warning_like { ($stat, $id) = RT::Test->send_via_mailgate($mail); is( $stat >> 8, 0, "The mail gateway exited normally" ); ok( $id, "created ticket" ); } qr/Encoding 'not-supported-encoding' is not supported/; my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load($id); ok $ticket->id, "loaded ticket"; my $txn = $ticket->Transactions->First; ok !$txn->ContentObj, 'no content'; my $attach = $txn->Attachments->First; like $attach->Content, qr{ho hum just some text}, 'attachment is there'; is $attach->GetHeader('Content-Type'), 'application/octet-stream; charset="not-supported-encoding"', 'content type is changed' ; is $attach->GetHeader('X-RT-Original-Content-Type'), 'text/plain', 'original content type is saved' ; } { my $mail = <<'END'; From: root@localhost Subject: =?not-supported?Q?=07test=A9?= Content-type: text/plain; charset="ascii" ho hum just some text END my ($stat, $id); warning_like { ($stat, $id) = RT::Test->send_via_mailgate($mail); is( $stat >> 8, 0, "The mail gateway exited normally" ); ok( $id, "created ticket" ); } qr/Charset 'not-supported' is not supported/; my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load($id); ok $ticket->id, "loaded ticket"; is $ticket->Subject, "\x{FFFD}test\x{FFFD}"; } done_testing; rt-4.4.2/t/mail/squelched-email-recipients.t0000664000175000017500000000633613131430353020621 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use RT::Test::Email; use Test::Warn; my $queue = RT::Test->load_or_create_queue( Name => 'General', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', ); ok $queue && $queue->id, 'loaded or created queue'; my $user = RT::Test->load_or_create_user( Name => 'root', EmailAddress => 'root@localhost', ); ok $user && $user->id, 'loaded or created root user'; my $test_user = RT::Test->load_or_create_user( Name => 'test', EmailAddress => 'test@localhost', ); ok $test_user && $test_user->id, 'loaded or created test user'; my $nobody_user = RT::Test->load_or_create_user( Name => 'nobody', EmailAddress => 'nobody@localhost', ); ok $nobody_user && $nobody_user->id, 'loaded or created test user'; diag "Test creation of emails with a squelched requestor"; warnings_are { my $ticket = RT::Ticket->new( RT::CurrentUser->new( $user ) ); mail_ok { my ($status, undef, $msg) = $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => [ 'root@localhost', 'test@localhost', 'nobody@localhost' ], SquelchMailTo => [ 'test@localhost' ], ); ok $status, "created ticket"; } { To => 'nobody@localhost, root@localhost' }; RT->Config->Set( NotifyActor => 1 ); mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', ); ok $status, "replied to a ticket"; } { To => 'nobody@localhost, root@localhost' }; RT->Config->Set( NotifyActor => 0 ); mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', ); ok $status, "replied to a ticket"; } { To => 'nobody@localhost' }; mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', CcMessageTo => 'root@localhost', ); ok $status, "replied to a ticket"; } { Cc => 'root@localhost'},{ To => 'nobody@localhost' }; } []; diag "Reply to ticket with multiple requestors squelched"; warnings_are { my $ticket = RT::Ticket->new( RT::CurrentUser->new( $user ) ); mail_ok { my ($status, undef, $msg) = $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => [ 'root@localhost', 'test@localhost', 'nobody@localhost' ], SquelchMailTo => [ 'root@localhost', 'nobody@localhost' ] ); ok $status, "created ticket"; } { To => 'test@localhost' }; mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', ); ok $status, "replied to a ticket"; } { To => 'test@localhost' }; $ticket->SquelchMailTo('test@localhost'); mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', ); ok $status, "replied to a ticket"; }; mail_ok { my ($status, $msg) = $ticket->Correspond( Content => 'test mail', CcMessageTo => 'test@localhost', ); ok $status, "replied to a ticket"; } { Cc => 'test@localhost' }; }[]; done_testing; rt-4.4.2/t/mail/gnupg-outgoing-signed-plaintext.t0000664000175000017500000000131313131430353021630 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => undef, text_templates => 1, gnupg_options => { passphrase => 'rt-test', 'trust-model' => 'always', }; RT::Test->import_gnupg_key('rt-recipient@example.com'); RT::Test->import_gnupg_key( 'rt-test@example.com' ); my $queue = RT::Test->load_or_create_queue( Name => 'Regression', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', Sign => 1, ); ok $queue && $queue->id, 'loaded or created queue'; my ( $baseurl, $m ) = RT::Test->started_ok; ok $m->login, 'logged in'; create_and_test_outgoing_emails( $queue, $m ); undef $m; done_testing; rt-4.4.2/t/mail/charsets-outgoing.t0000664000175000017500000002373413131430353017062 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 78; my %string = ( ru => { test => "\x{442}\x{435}\x{441}\x{442}", autoreply => "\x{410}\x{432}\x{442}\x{43e}\x{43e}\x{442}\x{432}\x{435}\x{442}", support => "\x{43f}\x{43e}\x{434}\x{434}\x{435}\x{440}\x{436}\x{43a}\x{430}", }, latin1 => { test => Encode::decode('latin1', "t\xE9st"), autoreply => Encode::decode('latin1', "a\xFCtoreply"), support => Encode::decode('latin1', "supp\xF5rt"), }, ); my $queue = RT::Test->load_or_create_queue( Name => 'Regression', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', ); ok $queue && $queue->id, 'loaded or created queue'; diag "make sure queue has no subject tag"; { my ($status, $msg) = $queue->SetSubjectTag( undef ); ok $status, "set subject tag for the queue" or diag "error: $msg"; } diag "set intial simple autoreply template"; { my $template = RT::Template->new( RT->SystemUser ); $template->Load('Autoreply in HTML'); ok $template->id, "loaded autoreply tempalte"; my ($status, $msg) = $template->SetContent( "Subject: Autreply { \$Ticket->Subject }\n" ."\n" ."hi there it's an autoreply.\n" ."\n" ); ok $status, "changed content of the template" or diag "error: $msg"; } diag "basic test of autoreply"; { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; } diag "non-ascii Subject with ascii prefix set in the template"; foreach my $set ( 'ru', 'latin1' ) { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => $string{$set}{test}, Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$set}{test}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } foreach my $tag_set ( 'ru', 'latin1' ) { diag "set non-ascii subject tag for the queue"; { my ($status, $msg) = $queue->SetSubjectTag( $string{$tag_set}{support} ); ok $status, "set subject tag for the queue" or diag "error: $msg"; } diag "ascii subject with non-ascii subject tag"; { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$tag_set}{support}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } diag "non-ascii subject with non-ascii subject tag"; foreach my $set ( 'ru', 'latin1' ) { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => $string{$set}{test}, Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$tag_set}{support}/ or do { $status = 0; diag "wrong subject: $subject" }; $subject =~ /$string{$set}{test}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } } # subject tag diag "return back the empty subject tag"; { my ($status, $msg) = $queue->SetSubjectTag( undef ); ok $status, "set subject tag for the queue" or diag "error: $msg"; } foreach my $prefix_set ( 'ru', 'latin1' ) { diag "add non-ascii subject prefix in the autoreply template"; { my $template = RT::Template->new( RT->SystemUser ); $template->Load('Autoreply in HTML'); ok $template->id, "loaded autoreply tempalte"; my ($status, $msg) = $template->SetContent( "Subject: $string{$prefix_set}{autoreply} { \$Ticket->Subject }\n" ."\n" ."hi there it's an autoreply.\n" ."\n" ); ok $status, "changed content of the template" or diag "error: $msg"; } diag "ascii subject with non-ascii subject prefix in template"; { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => 'test', Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$prefix_set}{autoreply}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } diag "non-ascii subject with non-ascii subject prefix in template"; foreach my $set ( 'ru', 'latin1' ) { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => $string{$set}{test}, Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$prefix_set}{autoreply}/ or do { $status = 0; diag "wrong subject: $subject" }; $subject =~ /$string{$set}{test}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } foreach my $tag_set ( 'ru', 'latin1' ) { diag "set non-ascii subject tag for the queue"; { my ($status, $msg) = $queue->SetSubjectTag( $string{$tag_set}{support} ); ok $status, "set subject tag for the queue" or diag "error: $msg"; } diag "non-ascii subject, non-ascii prefix in template and non-ascii tag"; foreach my $set ( 'ru', 'latin1' ) { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => $string{$set}{test}, Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$prefix_set}{autoreply}/ or do { $status = 0; diag "wrong subject: $subject" }; $subject =~ /$string{$tag_set}{support}/ or do { $status = 0; diag "wrong subject: $subject" }; $subject =~ /$string{$set}{test}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } } # subject tag diag "flush subject tag of the queue"; { my ($status, $msg) = $queue->SetSubjectTag( undef ); ok $status, "set subject tag for the queue" or diag "error: $msg"; } } # prefix set diag "don't change subject via template"; # clean DB has autoreply that always changes subject in template, # we should test situation when subject is not changed from template { my $template = RT::Template->new( RT->SystemUser ); $template->Load('Autoreply in HTML'); ok $template->id, "loaded autoreply tempalte"; my ($status, $msg) = $template->SetContent( "\n" ."\n" ."hi there it's an autoreply.\n" ."\n" ); ok $status, "changed content of the template" or diag "error: $msg"; } diag "non-ascii Subject without changes in template"; foreach my $set ( 'ru', 'latin1' ) { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => $string{$set}{test}, Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$set}{test}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } foreach my $tag_set ( 'ru', 'latin1' ) { diag "set non-ascii subject tag for the queue"; { my ($status, $msg) = $queue->SetSubjectTag( $string{$tag_set}{support} ); ok $status, "set subject tag for the queue" or diag "error: $msg"; } diag "non-ascii Subject without changes in template and with non-ascii subject tag"; foreach my $set ( 'ru', 'latin1' ) { my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->id, Subject => $string{$set}{test}, Requestor => 'root@localhost', ); my @mails = RT::Test->fetch_caught_mails; ok @mails, "got some outgoing emails"; my $status = 1; foreach my $mail ( @mails ) { my $entity = parse_mail( $mail ); my $subject = Encode::decode( "UTF-8", $entity->head->get('Subject') ); $subject =~ /$string{$set}{test}/ or do { $status = 0; diag "wrong subject: $subject" }; $subject =~ /$string{$tag_set}{support}/ or do { $status = 0; diag "wrong subject: $subject" }; } ok $status, "all mails have correct data"; } } # subject tag set rt-4.4.2/t/mail/fake-sendmail0000775000175000017500000000101313131430353015640 0ustar vagrantvagrant#!/usr/bin/env perl # captures command line arguments so you can validate # what is being generated in sendmailpipe use strict; use warnings; die "No \$RT_MAILLOGFILE set in environment" unless $ENV{RT_MAILLOGFILE}; open LOG, ">", $ENV{RT_MAILLOGFILE} or die "Can't write to $ENV{RT_MAILLOGFILE}: $!"; my $needs_newline; for (@ARGV) { if (/^-/) { print LOG "\n" if $needs_newline++; print LOG $_; } else { print LOG " $_"; } } print LOG "\n"; 1 while $_ = ; exit 0; rt-4.4.2/t/mail/html-outgoing.t0000664000175000017500000001541013131430353016202 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use RT::Test::Email; use Test::Warn; my $root = RT::User->new(RT->SystemUser); $root->Load('root'); # Set root as admincc my $q = RT::Queue->new(RT->SystemUser); $q->Load('General'); my ($ok, $msg) = $q->AddWatcher( Type => 'AdminCc', PrincipalId => $root->Id ); ok($ok, "Added root as a watcher on the General queue"); # Create a couple users to test notifications my %users; for my $user_name (qw(enduser tech)) { my $user = $users{$user_name} = RT::User->new(RT->SystemUser); $user->Create( Name => ucfirst($user_name), Privileged => 1, EmailAddress => $user_name.'@example.com'); my ($val, $msg); ($val, $msg) = $user->PrincipalObj->GrantRight(Object =>$q, Right => $_) for qw(ModifyTicket OwnTicket ShowTicket); } my $t = RT::Ticket->new(RT->SystemUser); my ($tid, $ttrans, $tmsg); diag "Autoreply and AdminCc (Transaction)"; mail_ok { ($tid, $ttrans, $tmsg) = $t->Create(Subject => "The internet is broken", Owner => 'Tech', Requestor => 'Enduser', Queue => 'General'); } { from => qr/The default queue/, to => 'enduser@example.com', subject => qr/\Q[example.com #1] AutoReply: The internet is broken\E/, body => parts_regex( 'trouble ticket regarding \*?The internet is broken\*?', 'trouble ticket regarding The internet is broken' ), 'Content-Type' => qr{multipart}, },{ from => qr/RT System/, bcc => 'root@localhost', subject => qr/\Q[example.com #1] The internet is broken\E/, body => parts_regex( 'Request (\[\d+\])?1(\s*[(<]http://localhost:\d+/Ticket/Display\.html\?id=1[)>])?\s*was acted upon by RT_System', 'Request 1 was acted upon by RT_System\.' ), 'Content-Type' => qr{multipart}, }; diag "Admin Correspondence and Correspondence"; mail_ok { ($ok, $tmsg) = $t->Correspond( MIMEObj => HTML::Mason::Commands::MakeMIMEEntity( Body => '

This is a test of HTML correspondence.

', Type => 'text/html', ), ); } { from => qr/RT System/, bcc => 'root@localhost', subject => qr/\Q[example.com #1] The internet is broken\E/, body => parts_regex( 'Ticket URL: (?:\[\d+\])?http://localhost:\d+/Ticket/Display\.html\?id=1.+?'. 'This is a test of \*?HTML\*? correspondence\.', 'Ticket URL: \1.+?'. '

This is a test of HTML correspondence\.

' ), 'Content-Type' => qr{multipart}, },{ from => qr/RT System/, to => 'enduser@example.com', subject => qr/\Q[example.com #1] The internet is broken\E/, body => parts_regex( 'This is a test of \*?HTML\*? correspondence\.', '

This is a test of HTML correspondence\.

' ), 'Content-Type' => qr{multipart}, }; SKIP: { skip "Only fails on core HTMLFormatter", 9 unless RT->Config->Get("HTMLFormatter") eq "core"; require HTML::FormatText::WithLinks::AndTables; skip "Only fails with older verions of HTML::FormatText::WithLinks::AndTables", 9 unless $HTML::FormatText::WithLinks::AndTables::VERSION < 0.03; diag "Failing HTML -> Text conversion"; warnings_like { my $body = '
Foo
'; mail_ok { ($ok, $tmsg) = $t->Correspond( MIMEObj => HTML::Mason::Commands::MakeMIMEEntity( Body => $body, Type => 'text/html', ), ); } { from => qr/RT System/, bcc => 'root@localhost', subject => qr/\Q[example.com #1] The internet is broken\E/, body => qr{Ticket URL: \1.+?$body}s, 'Content-Type' => qr{text/html}, # TODO },{ from => qr/RT System/, to => 'enduser@example.com', subject => qr/\Q[example.com #1] The internet is broken\E/, body => qr{$body}, 'Content-Type' => qr{text/html}, # TODO }; } [(qr/uninitialized value/, qr/Failed to downgrade HTML/)x3]; } diag "Admin Comment in HTML"; mail_ok { ($ok, $tmsg) = $t->Comment( MIMEObj => HTML::Mason::Commands::MakeMIMEEntity( Body => '

Comment test, please!

', Type => 'text/html', ), ); } { from => qr/RT System/, bcc => 'root@localhost', subject => qr/\Q[example.com #1] [Comment] The internet is broken\E/, body => parts_regex( 'This is a comment about (\[\d+\])?ticket.1(\s*[(<]http://localhost:\d+/Ticket/Display\.html\?id=1[)>])?\..+?'. 'It is not sent to the Requestor\(s\):.+?'. 'Comment test, _?please!_?', '

This is a comment about ticket 1\. '. 'It is not sent to the Requestor\(s\):

.+?'. '

Comment test, please!

', ), 'Content-Type' => qr{multipart}, }; diag "Resolved in HTML templates"; mail_ok { ($ok, $tmsg) = $t->SetStatus('resolved'); } { from => qr/RT System/, to => 'enduser@example.com', subject => qr/\Q[example.com #1] Resolved: The internet is broken\E/, body => parts_regex( 'According to our records, your request has been resolved\.', '

According to our records, your request has been resolved\.', ), 'Content-Type' => qr{multipart}, }; diag "Status changes in HTML"; my $scrip = RT::Scrip->new(RT->SystemUser); my ($sval, $smsg) =$scrip->Create( ScripCondition => 'On Status Change', ScripAction => 'Notify Requestors', Template => 'Status Change in HTML', Queue => $q->Id, Description => 'Tell requestors about status changes' ); ok ($sval, $smsg); ok ($scrip->Id, "Created the scrip"); ok ($scrip->TemplateObj->Id, "Created the scrip template"); ok ($scrip->ConditionObj->Id, "Created the scrip condition"); ok ($scrip->ActionObj->Id, "Created the scrip action"); mail_ok { ($ok, $tmsg) = $t->SetStatus('stalled'); } { from => qr/RT System/, to => 'enduser@example.com', subject => qr/\Q[example.com #1] Status Changed to: stalled\E/, body => parts_regex( 'http://localhost:\d+/Ticket/Display\.html\?id=1.+?', '\1' ), 'Content-Type' => qr{multipart}, }; done_testing; sub parts_regex { my ($text, $html) = @_; my $pattern = 'Content-Type: text/plain.+?' . $text . '.+?' . 'Content-Type: text/html.+?' . $html; return qr/$pattern/s; } rt-4.4.2/t/mail/mime_decoding.t0000664000175000017500000002047513131430353016177 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodb => 1, tests => undef; use Test::LongString; use Test::Warn; use_ok('RT::I18N'); diag q{'=' char in a leading part before an encoded part}; { my $str = 'key="plain"; key="=?UTF-8?B?0LzQvtC5X9GE0LDQudC7LmJpbg==?="'; warnings_like { is( RT::I18N::DecodeMIMEWordsToUTF8($str), 'key="plain"; key="мой_файл.bin"', "right decoding" ); } [qr/DecodeMIMEWordsTo.*?called without field name/i]; is( RT::I18N::DecodeMIMEWordsToUTF8($str, 'content-disposition'), 'key="plain"; key="мой_файл.bin"', "right decoding" ); } diag q{not compliant with standards, but MUAs send such field when attachment has non-ascii in name}; { my $str = 'attachment; filename="=?UTF-8?B?0LzQvtC5X9GE0LDQudC7LmJpbg==?="'; warnings_like { is( RT::I18N::DecodeMIMEWordsToUTF8($str), 'attachment; filename="мой_файл.bin"', "right decoding" ); } [qr/DecodeMIMEWordsTo.*?called without field name/i]; is( RT::I18N::DecodeMIMEWordsToUTF8($str, 'content-disposition'), 'attachment; filename="мой_файл.bin"', "right decoding" ); } diag q{'=' char in a trailing part after an encoded part}; { my $str = 'attachment; filename="=?UTF-8?B?0LzQvtC5X9GE0LDQudC7LmJpbg==?="; some_prop="value"'; warnings_like { is( RT::I18N::DecodeMIMEWordsToUTF8($str), 'attachment; filename="мой_файл.bin"; some_prop="value"', "right decoding" ); } [qr/DecodeMIMEWordsTo.*?called without field name/i]; is( RT::I18N::DecodeMIMEWordsToUTF8($str, 'content-disposition'), 'attachment; filename="мой_файл.bin"; some_prop="value"', "right decoding" ); } diag q{adding quotes around mime words containing specials when word is already quoted}; { my $str = 'attachment; filename="=?iso-8859-1?Q?foobar,_?=' . "\n" . '=?iso-8859-1?Q?barfoo.docx?="'; my $decoded = 'attachment; filename="foobar, barfoo.docx"'; is( RT::I18N::DecodeMIMEWordsToUTF8($str, 'content-disposition'), $decoded, "No added quotes" ); } diag q{regression test for #5248 from rt3.fsck.com}; { my $str = qq{Subject: =?ISO-8859-1?Q?Re=3A_=5BXXXXXX=23269=5D_=5BComment=5D_Frag?=} . qq{\n =?ISO-8859-1?Q?e_zu_XXXXXX--xxxxxx_/_Xxxxx=FCxxxxxxxxxx?=}; is( RT::I18N::DecodeMIMEWordsToUTF8($str, 'Subject'), qq{Subject: Re: [XXXXXX#269] [Comment] Frage zu XXXXXX--xxxxxx / Xxxxxüxxxxxxxxxx}, "right decoding" ); } diag q{newline and encoded file name}; { my $str = qq{application/vnd.ms-powerpoint;\n\tname="=?ISO-8859-1?Q?Main_presentation.ppt?="}; warnings_like { is( RT::I18N::DecodeMIMEWordsToUTF8($str), qq{application/vnd.ms-powerpoint;\tname="Main presentation.ppt"}, "right decoding" ); } [qr/DecodeMIMEWordsTo.*?called without field name/i]; is( RT::I18N::DecodeMIMEWordsToUTF8($str,'content-type'), qq{application/vnd.ms-powerpoint; name="Main presentation.ppt"}, "right decoding" ); } diag q{rfc2231}; { my $str = "attachment; filename*=ISO-8859-1''%74%E9%73%74%2E%74%78%74"; is( RT::I18N::DecodeMIMEWordsToEncoding( $str, 'utf-8', 'Content-Disposition' ), 'attachment; filename="tést.txt"', 'right decoding' ); } diag q{rfc2231 param continuations}; { # XXX TODO: test various forms of the continuation stuff # quotes around the values my $hdr = <<'.'; inline; filename*0*=ISO-2022-JP'ja'%1b$B%3f7$7$$%25F%25%2d%259%25H%1b%28B; filename*1*=%20; filename*2*=%1b$B%25I%25%2d%25e%25a%25s%25H%1b%28B; filename*3=.txt . is( RT::I18N::DecodeMIMEWordsToEncoding( $hdr, 'utf-8', 'Content-Disposition' ), 'inline; filename="æ–°ã—ã„テキスト ドキュメント.txt"', 'decoded continuations as one string' ); } diag q{canonicalize mime word encodings like gb2312}; { my $str = qq{Subject: =?gb2312?B?1NrKwL3nuPe12Lmy09CzrN9eX1NpbXBsaWZpZWRfQ05fR0IyMzEyYQ==?= \t=?gb2312?B?dHRhY2hlbWVudCB0ZXN0IGluIENOIHNpbXBsaWZpZWQ=?=}; is( RT::I18N::DecodeMIMEWordsToUTF8($str, "Subject"), qq{Subject: 在世界å„地共有超éŽ_Simplified_CN_GB2312attachement test in CN simplified}, "right decoding" ); } diag q{Whitespace between encoded words should be removed}; { warnings_like { my $str = "=?utf-8?Q?=E3=82=AD?= =?utf-8?Q?=E3=83=A3?="; is( RT::I18N::DecodeMIMEWordsToUTF8($str), "キャ", "whitespace between encoded words is removed", ); $str = "=?utf-8?Q?=E3=82=AD?= \n =?utf-8?Q?=E3=83=A3?="; is( RT::I18N::DecodeMIMEWordsToUTF8($str), "キャ", "newlines between encoded words also removed", ); } [(qr/DecodeMIMEWordsTo.*?called without field name/i) x 2]; } diag q{Multiple octets split across QP hunks are correctly reassembled}; { warnings_like { # This passes even without explicit code to handle it because utf8 # is perl's internal string encoding. my $str = "=?utf-8?Q?=E3?= =?utf-8?Q?=82?= =?utf-8?Q?=AD?="; is( RT::I18N::DecodeMIMEWordsToUTF8($str), "ã‚­", "UTF8 character split in three is successfully reassembled", ); # Non-utf8 encodings thus also must be checked $str = <updir(), qw/data gnupg keyrings/ ); } use RT::Test::GnuPG tests => 53, actual_server => 1, gnupg_options => { passphrase => 'rt-test', homedir => $homedir, }; use String::ShellQuote 'shell_quote'; use IPC::Run3 'run3'; use MIME::Base64; my ($baseurl, $m) = RT::Test->started_ok; # configure key for General queue ok( $m->login, 'we did log in' ); $m->get( $baseurl.'/Admin/Queues/'); $m->follow_link_ok( {text => 'General'} ); $m->submit_form( form_number => 3, fields => { CorrespondAddress => 'general@example.com' } ); $m->content_like(qr/general\@example.com.* - never/, 'has key info.'); ok(my $user = RT::User->new(RT->SystemUser)); ok($user->Load('root'), "Loaded user 'root'"); $user->SetEmailAddress('recipient@example.com'); # test simple mail. supposedly this should fail when # 1. the queue requires signature # 2. the from is not what the key is associated with my $mail = RT::Test->open_mailgate_ok($baseurl); print $mail <close_mailgate_ok($mail); { my $tick = RT::Test->last_ticket; is( $tick->Subject, 'This is a test of new ticket creation as root', "Created the ticket" ); my $txn = $tick->Transactions->First; like( $txn->Attachments->First->Headers, qr/^X-RT-Incoming-Encryption: Not encrypted/m, 'recorded incoming mail that is not encrypted' ); like( $txn->Attachments->First->Content, qr/Blah/); } # test for signed mail my $buf = ''; run3( shell_quote( qw(gpg --batch --no-tty --armor --sign), '--default-key' => 'recipient@example.com', '--homedir' => $homedir, '--passphrase' => 'recipient', '--no-permission-warning', ), \"fnord\r\n", \$buf, \*STDOUT ); $mail = RT::Test->open_mailgate_ok($baseurl); print $mail <<"EOF"; From: recipient\@example.com To: general\@$RT::rtname Subject: signed message for queue $buf EOF RT::Test->close_mailgate_ok($mail); { my $tick = RT::Test->last_ticket; is( $tick->Subject, 'signed message for queue', "Created the ticket" ); my $txn = $tick->Transactions->First; my ($msg, $attach) = @{$txn->Attachments->ItemsArrayRef}; is( $msg->GetHeader('X-RT-Incoming-Encryption'), 'Not encrypted', 'recorded incoming mail that is encrypted' ); # test for some kind of PGP-Signed-By: Header like( $attach->Content, qr/fnord/); } # test for clear-signed mail $buf = ''; run3( shell_quote( qw(gpg --batch --no-tty --armor --sign --clearsign), '--default-key' => 'recipient@example.com', '--homedir' => $homedir, '--passphrase' => 'recipient', '--no-permission-warning', ), \"clearfnord\r\n", \$buf, \*STDOUT ); $mail = RT::Test->open_mailgate_ok($baseurl); print $mail <<"EOF"; From: recipient\@example.com To: general\@$RT::rtname Subject: signed message for queue $buf EOF RT::Test->close_mailgate_ok($mail); { my $tick = RT::Test->last_ticket; is( $tick->Subject, 'signed message for queue', "Created the ticket" ); my $txn = $tick->Transactions->First; my ($msg, $attach) = @{$txn->Attachments->ItemsArrayRef}; is( $msg->GetHeader('X-RT-Incoming-Encryption'), 'Not encrypted', 'recorded incoming mail that is encrypted' ); # test for some kind of PGP-Signed-By: Header like( $attach->Content, qr/clearfnord/); } # test for signed and encrypted mail $buf = ''; run3( shell_quote( qw(gpg --batch --no-tty --encrypt --armor --sign), '--recipient' => 'general@example.com', '--default-key' => 'recipient@example.com', '--homedir' => $homedir, '--passphrase' => 'recipient', '--no-permission-warning', ), \"orzzzzzz\r\n", \$buf, \*STDOUT ); $mail = RT::Test->open_mailgate_ok($baseurl); print $mail <<"EOF"; From: recipient\@example.com To: general\@$RT::rtname Subject: Encrypted message for queue $buf EOF RT::Test->close_mailgate_ok($mail); { my $tick = RT::Test->last_ticket; is( $tick->Subject, 'Encrypted message for queue', "Created the ticket" ); my $txn = $tick->Transactions->First; my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef}; is( $msg->GetHeader('X-RT-Incoming-Encryption'), 'Success', 'recorded incoming mail that is encrypted' ); is( $msg->GetHeader('X-RT-Privacy'), 'GnuPG', 'recorded incoming mail that is encrypted' ); like( $attach->Content, qr/orz/); is( $orig->GetHeader('Content-Type'), 'application/x-rt-original-message'); ok(index($orig->Content, $buf) != -1, 'found original msg'); } # test that if it gets base64 transfer-encoded, we still get the content out $buf = encode_base64($buf); $mail = RT::Test->open_mailgate_ok($baseurl); print $mail <<"EOF"; From: recipient\@example.com To: general\@$RT::rtname Content-transfer-encoding: base64 Subject: Encrypted message for queue $buf EOF RT::Test->close_mailgate_ok($mail); { my $tick = RT::Test->last_ticket; is( $tick->Subject, 'Encrypted message for queue', "Created the ticket" ); my $txn = $tick->Transactions->First; my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef}; is( $msg->GetHeader('X-RT-Incoming-Encryption'), 'Success', 'recorded incoming mail that is encrypted' ); is( $msg->GetHeader('X-RT-Privacy'), 'GnuPG', 'recorded incoming mail that is encrypted' ); like( $attach->Content, qr/orz/); is( $orig->GetHeader('Content-Type'), 'application/x-rt-original-message'); ok(index($orig->Content, $buf) != -1, 'found original msg'); } # test for signed mail by other key $buf = ''; run3( shell_quote( qw(gpg --batch --no-tty --armor --sign), '--default-key' => 'rt@example.com', '--homedir' => $homedir, '--passphrase' => 'test', '--no-permission-warning', ), \"alright\r\n", \$buf, \*STDOUT ); $mail = RT::Test->open_mailgate_ok($baseurl); print $mail <<"EOF"; From: recipient\@example.com To: general\@$RT::rtname Subject: signed message for queue $buf EOF RT::Test->close_mailgate_ok($mail); { my $tick = RT::Test->last_ticket; my $txn = $tick->Transactions->First; my ($msg, $attach) = @{$txn->Attachments->ItemsArrayRef}; # XXX: in this case, which credential should we be using? is( $msg->GetHeader('X-RT-Incoming-Signature'), 'Test User ', 'recorded incoming mail signed by others' ); } # test for encrypted mail with key not associated to the queue $buf = ''; run3( shell_quote( qw(gpg --batch --no-tty --armor --encrypt), '--recipient' => 'random@localhost', '--homedir' => $homedir, '--no-permission-warning', ), \"should not be there either\r\n", \$buf, \*STDOUT ); $mail = RT::Test->open_mailgate_ok($baseurl); print $mail <<"EOF"; From: recipient\@example.com To: general\@$RT::rtname Subject: encrypted message for queue $buf EOF RT::Test->close_mailgate_ok($mail); { my $tick = RT::Test->last_ticket; my $txn = $tick->Transactions->First; my ($msg, $attach) = @{$txn->Attachments->ItemsArrayRef}; TODO: { local $TODO = "this test requires keys associated with queues"; unlike( $attach->Content, qr/should not be there either/); } } # test for badly encrypted mail { $buf = ''; run3( shell_quote( qw(gpg --batch --no-tty --armor --encrypt), '--recipient' => 'rt@example.com', '--homedir' => $homedir, '--no-permission-warning', ), \"really should not be there either\r\n", \$buf, \*STDOUT ); $buf =~ s/PGP MESSAGE/SCREWED UP/g; RT::Test->fetch_caught_mails; $mail = RT::Test->open_mailgate_ok($baseurl); print $mail <<"EOF"; From: recipient\@example.com To: general\@$RT::rtname Subject: encrypted message for queue $buf EOF RT::Test->close_mailgate_ok($mail); my @mail = RT::Test->fetch_caught_mails; is(@mail, 1, 'caught outgoing mail.'); } { my $tick = RT::Test->last_ticket; my $txn = $tick->Transactions->First; my ($msg, $attach) = @{$txn->Attachments->ItemsArrayRef}; unlike( ($attach ? $attach->Content : ''), qr/really should not be there either/); } # test that if it gets base64 transfer-encoded long mail then it doesn't hang { local $SIG{ALRM} = sub { ok 0, "timed out, web server is probably in deadlock"; exit; }; alarm 30; $buf = encode_base64('a'x(250*1024)); $mail = RT::Test->open_mailgate_ok($baseurl); print $mail <<"EOF"; From: recipient\@example.com To: general\@$RT::rtname Content-transfer-encoding: base64 Subject: Long not encrypted message for queue $buf EOF RT::Test->close_mailgate_ok($mail); alarm 0; my $tick = RT::Test->last_ticket; is( $tick->Subject, 'Long not encrypted message for queue', "Created the ticket" ); my $content = $tick->Transactions->First->Content; like $content, qr/a{1024,}/, 'content is not lost'; } rt-4.4.2/t/mail/gnupg-outgoing-encrypted-plaintext.t0000664000175000017500000000131313131430353022354 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => undef, text_templates => 1, gnupg_options => { passphrase => 'rt-test', 'trust-model' => 'always', }; RT::Test->import_gnupg_key('rt-recipient@example.com'); RT::Test->import_gnupg_key( 'rt-test@example.com' ); my $queue = RT::Test->load_or_create_queue( Name => 'Regression', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', Encrypt => 1, ); ok $queue && $queue->id, 'loaded or created queue'; my ( $baseurl, $m ) = RT::Test->started_ok; ok $m->login, 'logged in'; create_and_test_outgoing_emails( $queue, $m ); undef $m; done_testing; rt-4.4.2/t/mail/rfc2231-attachment.t0000664000175000017500000000137213131430353016617 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my ($baseurl, $m) = RT::Test->started_ok; ok $m->login, 'logged in as root'; diag "encoded attachment filename with parameter continuations"; { my $mail = RT::Test->file_content( RT::Test::get_relocatable_file( 'rfc2231-attachment-filename-continuations', (File::Spec->updir(), 'data', 'emails') ) ); my ( $status, $id ) = RT::Test->send_via_mailgate($mail); is( $status >> 8, 0, "The mail gateway exited normally" ); ok( $id, "Created ticket" ); $m->get_ok("/Ticket/Display.html?id=$id"); $m->content_contains(Encode::decode("UTF-8","æ–°ã—ã„テキスト ドキュメント.txt"), "found full filename"); } undef $m; done_testing; rt-4.4.2/t/mail/multipart.t0000664000175000017500000000222013131430353015421 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 4, config => q{Set($CorrespondAddress, 'rt@example.com');}; use RT::Test::Email; my $queue = RT::Test->load_or_create_queue( Name => 'General' ); my $user = RT::Test->load_or_create_user( Name => 'bob', EmailAddress => 'bob@example.com' ); $queue->AddWatcher( Type => 'AdminCc', PrincipalId => $user->PrincipalObj->Id ); my $text = <Config->Get('rtname')]} Content-Type: multipart/alternative; boundary=20cf3071cac0cb9772049eb22371 --20cf3071cac0cb9772049eb22371 Content-Type: text/plain; charset=ISO-8859-1 Hi --20cf3071cac0cb9772049eb22371 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable

Hi
--20cf3071cac0cb9772049eb22371-- EOF my ( $status, $id ) = RT::Test->send_via_mailgate($text); is( $status >> 8, 0, "The mail gateway exited normally" ); ok( $id, "Created ticket" ); my @msgs = RT::Test->fetch_caught_mails; is(@msgs,2,"sent 2 emails"); diag("We're skipping any testing of the autoreply"); my $entity = parse_mail($msgs[1]); is($entity->parts, 2, "only two parts"); rt-4.4.2/t/mail/disposition-outgoing.t0000664000175000017500000000304013131430353017576 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $queue = RT::Test->load_or_create_queue( Name => 'General' ); ok $queue->id, 'loaded queue'; my ($ok, $msg) = $queue->AddWatcher( Type => 'AdminCc', Email => 'test@example.com', ); ok $ok, $msg; my $mail = <<'.'; From: root@localhost Subject: I like inline dispositions and I cannot lie Content-type: multipart/related; boundary="foo" --foo Content-type: text/plain; charset="UTF-8" ho hum just some text --foo Content-type: text/x-patch; name="filename.patch" Content-disposition: inline; filename="filename.patch" a fake patch --foo . # inline { my $rt = send_and_receive($mail); like $rt, qr/Content-Disposition:\s*inline.+?filename\.patch/is, 'found inline disposition'; } # attachment { $mail =~ s/(?<=Content-disposition: )inline/attachment/i; my $rt = send_and_receive($mail); like $rt, qr/Content-Disposition:\s*attachment.+?filename\.patch/is, 'found attachment disposition'; } # no disposition { $mail =~ s/^Content-disposition: .+?\n(?=\n)//ism; my $rt = send_and_receive($mail); like $rt, qr/Content-Disposition:\s*attachment.+?filename\.patch/is, 'found default (attachment) disposition'; } sub send_and_receive { my $mail = shift; my ($stat, $id) = RT::Test->send_via_mailgate($mail); is( $stat >> 8, 0, "The mail gateway exited normally" ); ok( $id, "created ticket" ); my @mails = RT::Test->fetch_caught_mails; is @mails, 2, "got 2 outgoing emails"; # first is autoreply pop @mails; } done_testing; rt-4.4.2/t/mail/specials-in-encodedwords.t0000664000175000017500000000216713131430353020277 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; diag "specials (, and ;) in MIME encoded-words aren't treated as specials"; { # RT decodes too early in the game (i.e. before parsing), so it needs to # ensure special characters in encoded words are properly escaped/quoted # after decoding RT->Config->Set( ParseNewMessageForTicketCcs => 1 ); my $mail = <<'.'; From: root@localhost Subject: testing mime encoded specials Cc: a@example.com, =?utf8?q?d=40example.com=2ce=40example.com=3b?= , c@example.com Content-Type: text/plain; charset=utf8 here's some content . my ( $status, $id ) = RT::Test->send_via_mailgate($mail); is( $status >> 8, 0, "The mail gateway exited normally" ); ok( $id, "Created ticket" ); my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load($id); ok $ticket->id, 'loaded ticket'; my @cc = @{$ticket->Cc->UserMembersObj->ItemsArrayRef}; is scalar @cc, 3, "three ccs"; for my $addr (qw(a b c)) { ok( (scalar grep { $_->EmailAddress eq "$addr\@example.com" } @cc), "found $addr" ); } } done_testing; rt-4.4.2/t/mail/crypt-gnupg.t0000664000175000017500000003025513131430353015670 0ustar vagrantvagrant use strict; use warnings; my $homedir; BEGIN { require RT::Test; $homedir = RT::Test::get_abs_relocatable_dir( File::Spec->updir(), qw/data gnupg keyrings/ ); } use RT::Test::GnuPG tests => 100, gnupg_options => { homedir => $homedir }; use Test::Warn; use_ok('RT::Crypt'); use_ok('MIME::Entity'); diag 'only signing. correct passphrase'; { my $entity = MIME::Entity->build( From => 'rt@example.com', Subject => 'test', Data => ['test'], ); my %res = RT::Crypt->SignEncrypt( Entity => $entity, Encrypt => 0, Passphrase => 'test' ); ok( $entity, 'signed entity'); ok( !$res{'logger'}, "log is here as well" ) or diag $res{'logger'}; my @status = RT::Crypt->ParseStatus( Protocol => $res{'Protocol'}, Status => $res{'status'} ); is( scalar @status, 2, 'two records: passphrase, signing'); is( $status[0]->{'Operation'}, 'PassphraseCheck', 'operation is correct'); is( $status[0]->{'Status'}, 'DONE', 'good passphrase'); is( $status[1]->{'Operation'}, 'Sign', 'operation is correct'); is( $status[1]->{'Status'}, 'DONE', 'done'); is( $status[1]->{'User'}->{'EmailAddress'}, 'rt@example.com', 'correct email'); ok( $entity->is_multipart, 'signed message is multipart' ); is( $entity->parts, 2, 'two parts' ); my @parts = RT::Crypt->FindProtectedParts( Entity => $entity ); is( scalar @parts, 1, 'one protected part' ); is( $parts[0]->{'Type'}, 'signed', "have signed part" ); is( $parts[0]->{'Format'}, 'RFC3156', "RFC3156 format" ); is( $parts[0]->{'Top'}, $entity, "it's the same entity" ); my @res = RT::Crypt->VerifyDecrypt( Entity => $entity ); is scalar @res, 1, 'one operation'; @status = RT::Crypt->ParseStatus( Protocol => $res[0]{'Protocol'}, Status => $res[0]{'status'} ); is( scalar @status, 1, 'one record'); is( $status[0]->{'Operation'}, 'Verify', 'operation is correct'); is( $status[0]->{'Status'}, 'DONE', 'good passphrase'); is( $status[0]->{'Trust'}, 'ULTIMATE', 'have trust value'); } diag 'only signing. missing passphrase'; { my $entity = MIME::Entity->build( From => 'rt@example.com', Subject => 'test', Data => ['test'], ); my %res; warning_like { %res = RT::Crypt->SignEncrypt( Entity => $entity, Encrypt => 0, Passphrase => '' ); } qr/can't query passphrase in batch mode/; ok( $res{'exit_code'}, "couldn't sign without passphrase"); ok( $res{'error'} || $res{'logger'}, "error is here" ); my @status = RT::Crypt->ParseStatus( Protocol => $res{'Protocol'}, Status => $res{'status'} ); is( scalar @status, 1, 'one record'); is( $status[0]->{'Operation'}, 'PassphraseCheck', 'operation is correct'); is( $status[0]->{'Status'}, 'MISSING', 'missing passphrase'); } diag 'only signing. wrong passphrase'; { my $entity = MIME::Entity->build( From => 'rt@example.com', Subject => 'test', Data => ['test'], ); my %res; warning_like { %res = RT::Crypt->SignEncrypt( Entity => $entity, Encrypt => 0, Passphrase => 'wrong', ); } qr/bad passphrase/; ok( $res{'exit_code'}, "couldn't sign with bad passphrase"); ok( $res{'error'} || $res{'logger'}, "error is here" ); my @status = RT::Crypt->ParseStatus( Protocol => $res{'Protocol'}, Status => $res{'status'} ); is( scalar @status, 1, 'one record'); is( $status[0]->{'Operation'}, 'PassphraseCheck', 'operation is correct'); is( $status[0]->{'Status'}, 'BAD', 'wrong passphrase'); } diag 'encryption only'; { my $entity = MIME::Entity->build( From => 'rt@example.com', To => 'rt@example.com', Subject => 'test', Data => ['test'], ); my %res = RT::Crypt->SignEncrypt( Entity => $entity, Sign => 0 ); ok( !$res{'exit_code'}, "successful encryption" ); ok( !$res{'logger'}, "no records in logger" ); my @status = RT::Crypt->ParseStatus( Protocol => $res{'Protocol'}, Status => $res{'status'} ); is( scalar @status, 1, 'one record'); is( $status[0]->{'Operation'}, 'Encrypt', 'operation is correct'); is( $status[0]->{'Status'}, 'DONE', 'done'); ok($entity, 'get an encrypted part'); my @parts = RT::Crypt->FindProtectedParts( Entity => $entity ); is( scalar @parts, 1, 'one protected part' ); is( $parts[0]->{'Type'}, 'encrypted', "have encrypted part" ); is( $parts[0]->{'Format'}, 'RFC3156', "RFC3156 format" ); is( $parts[0]->{'Top'}, $entity, "it's the same entity" ); } diag 'encryption only, bad recipient'; { my $entity = MIME::Entity->build( From => 'rt@example.com', To => 'keyless@example.com', Subject => 'test', Data => ['test'], ); my %res; warning_like { %res = RT::Crypt->SignEncrypt( Entity => $entity, Sign => 0, ); } qr/public key not found/; ok( $res{'exit_code'}, 'no way to encrypt without keys of recipients'); ok( $res{'logger'}, "errors are in logger" ); my @status = RT::Crypt->ParseStatus( Protocol => $res{'Protocol'}, Status => $res{'status'} ); is( scalar @status, 1, 'one record'); is( $status[0]->{'Keyword'}, 'INV_RECP', 'invalid recipient'); } diag 'encryption and signing with combined method'; { my $entity = MIME::Entity->build( From => 'rt@example.com', To => 'rt@example.com', Subject => 'test', Data => ['test'], ); my %res = RT::Crypt->SignEncrypt( Entity => $entity, Passphrase => 'test' ); ok( !$res{'exit_code'}, "successful encryption with signing" ); ok( !$res{'logger'}, "no records in logger" ); my @status = RT::Crypt->ParseStatus( Protocol => $res{'Protocol'}, Status => $res{'status'} ); is( scalar @status, 3, 'three records: passphrase, sign and encrypt'); is( $status[0]->{'Operation'}, 'PassphraseCheck', 'operation is correct'); is( $status[0]->{'Status'}, 'DONE', 'done'); is( $status[1]->{'Operation'}, 'Sign', 'operation is correct'); is( $status[1]->{'Status'}, 'DONE', 'done'); is( $status[2]->{'Operation'}, 'Encrypt', 'operation is correct'); is( $status[2]->{'Status'}, 'DONE', 'done'); ok($entity, 'get an encrypted and signed part'); my @parts = RT::Crypt->FindProtectedParts( Entity => $entity ); is( scalar @parts, 1, 'one protected part' ); is( $parts[0]->{'Type'}, 'encrypted', "have encrypted part" ); is( $parts[0]->{'Format'}, 'RFC3156', "RFC3156 format" ); is( $parts[0]->{'Top'}, $entity, "it's the same entity" ); } diag 'encryption and signing with cascading, sign on encrypted'; { my $entity = MIME::Entity->build( From => 'rt@example.com', To => 'rt@example.com', Subject => 'test', Data => ['test'], ); my %res = RT::Crypt->SignEncrypt( Entity => $entity, Sign => 0 ); ok( !$res{'exit_code'}, 'successful encryption' ); ok( !$res{'logger'}, "no records in logger" ); %res = RT::Crypt->SignEncrypt( Entity => $entity, Encrypt => 0, Passphrase => 'test' ); ok( !$res{'exit_code'}, 'successful signing' ); ok( !$res{'logger'}, "no records in logger" ); my @parts = RT::Crypt->FindProtectedParts( Entity => $entity ); is( scalar @parts, 1, 'one protected part, top most' ); is( $parts[0]->{'Type'}, 'signed', "have signed part" ); is( $parts[0]->{'Format'}, 'RFC3156', "RFC3156 format" ); is( $parts[0]->{'Top'}, $entity, "it's the same entity" ); } diag 'find signed/encrypted part deep inside'; { my $entity = MIME::Entity->build( From => 'rt@example.com', To => 'rt@example.com', Subject => 'test', Data => ['test'], ); my %res = RT::Crypt->SignEncrypt( Entity => $entity, Sign => 0 ); ok( !$res{'exit_code'}, "success" ); $entity->make_multipart( 'mixed', Force => 1 ); $entity->attach( Type => 'text/plain', Data => ['-'x76, 'this is mailing list'], ); my @parts = RT::Crypt->FindProtectedParts( Entity => $entity ); is( scalar @parts, 1, 'one protected part' ); is( $parts[0]->{'Type'}, 'encrypted', "have encrypted part" ); is( $parts[0]->{'Format'}, 'RFC3156', "RFC3156 format" ); is( $parts[0]->{'Top'}, $entity->parts(0), "it's the same entity" ); } diag 'wrong signed/encrypted parts: no protocol'; { my $entity = MIME::Entity->build( From => 'rt@example.com', To => 'rt@example.com', Subject => 'test', Data => ['test'], ); my %res = RT::Crypt->SignEncrypt( Entity => $entity, Sign => 0, ); ok( !$res{'exit_code'}, 'success' ); $entity->head->mime_attr( 'Content-Type.protocol' => undef ); my @parts; warning_like { @parts = RT::Crypt->FindProtectedParts( Entity => $entity ) } qr{Entity is 'multipart/encrypted', but has no protocol defined. Checking for PGP part}; is( scalar @parts, 1, 'one protected part' ); is( $parts[0]->{'Type'}, 'encrypted', "have encrypted part" ); is( $parts[0]->{'Format'}, 'RFC3156', "RFC3156 format" ); is( $parts[0]->{'Top'}, $entity, "it's the same entity" ); } diag 'wrong signed/encrypted parts: not enought parts'; { my $entity = MIME::Entity->build( From => 'rt@example.com', To => 'rt@example.com', Subject => 'test', Data => ['test'], ); my %res = RT::Crypt->SignEncrypt( Entity => $entity, Sign => 0, ); ok( !$res{'exit_code'}, 'success' ); $entity->parts([ $entity->parts(0) ]); my @parts; warning_like { @parts = RT::Crypt->FindProtectedParts( Entity => $entity ); } qr/Encrypted or signed entity must has two subparts. Skipped/; is( scalar @parts, 0, 'no protected parts' ); } diag 'wrong signed/encrypted parts: wrong proto'; { my $entity = MIME::Entity->build( From => 'rt@example.com', To => 'rt@example.com', Subject => 'test', Data => ['test'], ); my %res = RT::Crypt->SignEncrypt( Entity => $entity, Sign => 0 ); ok( !$res{'exit_code'}, 'success' ); $entity->head->mime_attr( 'Content-Type.protocol' => 'application/bad-proto' ); my @parts = RT::Crypt->FindProtectedParts( Entity => $entity ); is( scalar @parts, 0, 'no protected parts' ); } diag 'wrong signed/encrypted parts: wrong proto'; { my $entity = MIME::Entity->build( From => 'rt@example.com', To => 'rt@example.com', Subject => 'test', Data => ['test'], ); my %res = RT::Crypt->SignEncrypt( Entity => $entity, Encrypt => 0, Passphrase => 'test' ); ok( !$res{'exit_code'}, 'success' ); $entity->head->mime_attr( 'Content-Type.protocol' => 'application/bad-proto' ); my @parts = RT::Crypt->FindProtectedParts( Entity => $entity ); is( scalar @parts, 0, 'no protected parts' ); } diag 'verify inline and in attachment signatures'; { open( my $fh, '<', "$homedir/signed_old_style_with_attachment.eml" ) or die $!; my $parser = new MIME::Parser; my $entity = $parser->parse( $fh ); my @parts = RT::Crypt->FindProtectedParts( Entity => $entity ); is( scalar @parts, 2, 'two protected parts' ); is( $parts[1]->{'Type'}, 'signed', "have signed part" ); is( $parts[1]->{'Format'}, 'Inline', "inline format" ); is( $parts[1]->{'Data'}, $entity->parts(0), "it's first part" ); is( $parts[0]->{'Type'}, 'signed', "have signed part" ); is( $parts[0]->{'Format'}, 'Attachment', "attachment format" ); is( $parts[0]->{'Data'}, $entity->parts(1), "data in second part" ); is( $parts[0]->{'Signature'}, $entity->parts(2), "file's signature in third part" ); my @res = RT::Crypt->VerifyDecrypt( Entity => $entity ); my @status = RT::Crypt->ParseStatus( Protocol => $res[0]{'Protocol'}, Status => $res[0]{'status'} ); is( scalar @status, 1, 'one record'); is( $status[0]->{'Operation'}, 'Verify', 'operation is correct'); is( $status[0]->{'Status'}, 'DONE', 'good passphrase'); is( $status[0]->{'Trust'}, 'ULTIMATE', 'have trust value'); $parser->filer->purge(); } rt-4.4.2/t/mail/header-characters.t0000664000175000017500000000420313131430353016750 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 12; use Test::Warn; my ($baseurl, $m) = RT::Test->started_ok; diag "Testing non-ASCII latin1 in From: header"; { my $mail = Encode::encode( 'iso-8859-1', Encode::decode( "UTF-8", <<'.') ); From: Reply-To: =?iso-8859-1?Q?Ren=E9?= Subject: testing non-ASCII From Content-Type: text/plain; charset=iso-8859-1 here's some content . my ($status, $id); warnings_like { ( $status, $id ) = RT::Test->send_via_mailgate($mail) } [(qr/Unable to parse an email address from/) x 2, qr/Couldn't parse or find sender's address/ ], 'Got parse error for non-ASCII in From'; TODO: { local $TODO = "Currently don't handle non-ASCII for sender"; is( $status >> 8, 0, "The mail gateway exited normally" ); ok( $id, "Created ticket" ); } } diag "Testing non-ASCII latin1 in From: header with MIME-word-encoded phrase"; { my $mail = Encode::encode( 'iso-8859-1', Encode::decode( "UTF-8", <<'.') ); From: =?iso-8859-1?Q?Ren=E9?= Reply-To: =?iso-8859-1?Q?Ren=E9?= Subject: testing non-ASCII From Content-Type: text/plain; charset=iso-8859-1 here's some content . my ($status, $id); warnings_like { ( $status, $id ) = RT::Test->send_via_mailgate($mail) } [(qr/Unable to parse an email address from/) x 2, qr/Couldn't parse or find sender's address/ ], 'Got parse error for iso-8859-1 in From'; TODO: { local $TODO = "Currently don't handle non-ASCII in sender"; is( $status >> 8, 0, "The mail gateway exited normally" ); ok( $id, "Created ticket" ); } } diag "No sender"; { my $mail = <<'.'; To: rt@example.com Subject: testing non-ASCII From Content-Type: text/plain; charset=iso-8859-1 here's some content . my ($status, $id); warnings_like { ( $status, $id ) = RT::Test->send_via_mailgate($mail) } [qr/Couldn't parse or find sender's address/], 'Got parse error with no sender fields'; is( $status >> 8, 1, "The mail gateway failed" ); ok( !$id, "No ticket created" ); } rt-4.4.2/t/mail/bounce.t0000664000175000017500000000244513131430353014664 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; RT->Config->Set( MailCommand => 'sendmailpipe' ); RT->Config->Set( SetOutgoingMailFrom => 1 ); RT->Config->Set( OverrideOutgoingMailFrom => { Default => 'queue@example.invalid' } ); # Ensure that the fake sendmail knows where to write to $ENV{RT_MAILLOGFILE} = RT::Test->temp_directory . "/sendmailpipe.log"; my $fake = File::Spec->rel2abs( File::Spec->catfile( 't', 'mail', 'fake-sendmail' ) ); RT->Config->Set( SendmailPath => $fake); my $message = <can('MailError'); local *RT::Interface::Email::MailError = sub { $orig_mail_error->( @_, LogLevel => undef ) }; RT::Test->send_via_mailgate($message); } open(LOG, "<", $ENV{RT_MAILLOGFILE}) or die "Can't open log file: $!"; my $fcount; while (my $line = ) { $fcount++ if $line =~ /^-f/; } close(LOG); # RT_MAILLOGFILE will contain all the command line flags if you need them is($fcount,1,"Only one -f specified to sendmail command"); done_testing; rt-4.4.2/t/mail/precedence-outgoing.t0000664000175000017500000000332713131430353017337 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use RT::Test::Email; use Test::Warn; RT->Config->Set( DefaultMailPrecedence => "bulk" ); RT->Config->Set( OverrideMailPrecedence => { "test_list" => "list", "test_undef" => undef, }); { my $queue = RT::Test->load_or_create_queue( Name => 'General' ); ok $queue && $queue->id, 'loaded or created queue General'; my $ticket = RT::Ticket->new( RT::CurrentUser->new( RT->SystemUser ) ); mail_ok { my ($status, undef, $msg) = $ticket->Create( Queue => $queue->id, Subject => 'test bulk', Requestor => 'root@localhost', ); ok $status, "created ticket 'test bulk'"; } { Precedence => "bulk" }; } { my $queue = RT::Test->load_or_create_queue( Name => "test_list" ); ok $queue && $queue->id, 'loaded or created queue test_list'; my $ticket = RT::Ticket->new( RT::CurrentUser->new( RT->SystemUser ) ); mail_ok { my ($status, undef, $msg) = $ticket->Create( Queue => $queue->id, Subject => 'test list', Requestor => 'root@localhost', ); ok $status, "created ticket 'test list'"; } { Precedence => "list" }; } { my $queue = RT::Test->load_or_create_queue( Name => "test_undef" ); ok $queue && $queue->id, 'loaded or created queue test_undef'; my $ticket = RT::Ticket->new( RT::CurrentUser->new( RT->SystemUser ) ); mail_ok { my ($status, undef, $msg) = $ticket->Create( Queue => $queue->id, Subject => 'test undef', Requestor => 'root@localhost', ); ok $status, "created ticket 'test undef'"; } { Precedence => "" }; } done_testing; rt-4.4.2/t/mail/outlook.t0000664000175000017500000002355513131430353015112 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 66; RT->Config->Set('CheckMoreMSMailHeaders', 1); # 12.0 is outlook 2007, 14.0 is 2010 for my $mailer ( 'Microsoft Office Outlook 12.0', 'Microsoft Outlook 14.0' ) { diag "Test mail with multipart/alternative"; { my $text = <Config->Get('rtname')]} Subject: outlook basic test Content-Type: multipart/alternative; \tboundary="----=_NextPart_000_0004_01CB045C.A5A075D0" ------=_NextPart_000_0004_01CB045C.A5A075D0 Content-Type: text/plain; \tcharset="us-ascii" Content-Transfer-Encoding: 7bit here is the content blahmm another line ------=_NextPart_000_0004_01CB045C.A5A075D0 Content-Type: text/html; \tcharset="us-ascii" Content-Transfer-Encoding: quoted-printable this is fake ------=_NextPart_000_0004_01CB045C.A5A075D0-- EOF my $content = <Config->Get('rtname')]} Subject: outlook basic test Content-Type: multipart/mixed; \tboundary="----=_NextPart_000_000F_01CB045E.5222CB40" ------=_NextPart_000_000F_01CB045E.5222CB40 Content-Type: multipart/alternative; \tboundary="----=_NextPart_001_0010_01CB045E.5222CB40" ------=_NextPart_001_0010_01CB045E.5222CB40 Content-Type: text/plain; \tcharset="us-ascii" Content-Transfer-Encoding: 7bit foo bar baz ------=_NextPart_001_0010_01CB045E.5222CB40 Content-Type: text/html; \tcharset="us-ascii" Content-Transfer-Encoding: quoted-printable this is fake ------=_NextPart_001_0010_01CB045E.5222CB40-- ------=_NextPart_000_000F_01CB045E.5222CB40 Content-Type: text/plain; \tname="att.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; \tfilename="att.txt" this is the attachment! :)=0A= ------=_NextPart_000_000F_01CB045E.5222CB40-- EOF my $content = <Config->Get('rtname')]} Subject: outlook basic test Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit foo bar baz EOF my $content = <Config->Get('rtname')]} Subject: outlook basic test Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 VGhpcyBpcyB0aGUgYm9keSBvZiBhbiBlbWFpbC4KCkl0IGhhcyBtdWx0aXBs ZSBleHRyYSBuZXdsaW5lcy4KCgoKTGlrZSBhIG1hbmdsZWQgT3V0bG9vayBt ZXNzYWdlIG1pZ2h0LgoKCgpKb2huIFNtaXRoCgpTb21lIENvbXBhbnkKCmVt YWlsQHNvbWVjby5jb20KCg== EOF my $content = <Config->Get('rtname')]} Subject: outlook basic test Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 X-MS-Has-Attach: X-MS-Tnef-Correlator: VGhpcyBpcyB0aGUgYm9keSBvZiBhbiBlbWFpbC4KCkl0IGhhcyBtdWx0aXBs ZSBleHRyYSBuZXdsaW5lcy4KCgoKTGlrZSBhIG1hbmdsZWQgT3V0bG9vayBt ZXNzYWdlIG1pZ2h0LgoKCgpKb2huIFNtaXRoCgpTb21lIENvbXBhbnkKCmVt YWlsQHNvbWVjby5jb20KCg== EOF my $content = <Config->Get('rtname')]} Subject: outlook basic test Content-Type: multipart/alternative; \tboundary="----=_NextPart_000_0004_01CB045C.A5A075D0" ------=_NextPart_000_0004_01CB045C.A5A075D0 Content-Type: text/plain; \tcharset="us-ascii" Content-Transfer-Encoding: 7bit foo bar baz ------=_NextPart_000_0004_01CB045C.A5A075D0 Content-Type: text/html; \tcharset="us-ascii" Content-Transfer-Encoding: quoted-printable this is fake ------=_NextPart_000_0004_01CB045C.A5A075D0-- EOF my $content = <; Tue, 17 Jul 2012 10:11:51 +0100 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01CD63FC.33F4C15C" Content-class: urn:content-classes:message Subject: outlook basic test Date: Tue, 17 Jul 2012 10:11:50 +0100 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Testing Outlook HTML Thread-Index: Ac1j/DNs7ly963bnRt63SJw9DkGwyw== From: root\@localhost To: rt\@@{[RT->Config->Get('rtname')]} This is a multi-part message in MIME format. ------_=_NextPart_001_01CD63FC.33F4C15C Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable This email contains a line of text containing multiple sentences. Where will RT wrap this when the text is quoted? What about the footer below? =20 This is a different line, with a blank line (paragraph) above. Will there be additional blank lines when the text is quoted? =20 This isthesig =20 ------_=_NextPart_001_01CD63FC.33F4C15C Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

This email = contains a line of text containing multiple sentences.  Where will = RT wrap this when the text is quoted?  What about the footer = below?

 

This is a different line, with a blank line = (paragraph) above.  Will there be additional blank lines when the = text is quoted?

 

This isthesig =

 

------_=_NextPart_001_01CD63FC.33F4C15C-- EOF my $content = <send_via_mailgate($text); is( $status >> 8, 0, "The mail gateway exited normally" ); ok( $id, "Created ticket" ); my $ticket = RT::Test->last_ticket; isa_ok( $ticket, 'RT::Ticket' ); is( $ticket->Id, $id, "correct ticket id" ); is( $ticket->Subject, 'outlook basic test', "subject of ticket $id" ); my $txns = $ticket->Transactions; $txns->Limit( FIELD => 'Type', VALUE => 'Create' ); my $txn = $txns->First; is( $txn->Content, $content, $msg ); } rt-4.4.2/t/mail/dashboard-chart-with-utf8.t0000664000175000017500000000521613131430353020273 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; plan skip_all => 'GD required' unless GD->require; my $root = RT::Test->load_or_create_user( Name => 'root' ); my ( $baseurl, $m ) = RT::Test->started_ok; ok( $m->login, 'logged in' ); my $ticket = RT::Ticket->new( $RT::SystemUser ); $ticket->Create( Queue => 'General', Subject => Encode::decode("UTF-8",'test äöü'), ); ok( $ticket->id, 'created ticket' ); $m->get_ok(Encode::decode("UTF-8", q{/Search/Chart.html?Query=Subject LIKE 'test äöü'})); $m->submit_form( form_name => 'SaveSearch', fields => { SavedSearchDescription => 'chart foo', SavedSearchOwner => 'RT::User-' . $root->id, ChartStyle => 'bar', }, button => 'SavedSearchSave', ); # first, create and populate a dashboard $m->get_ok('/Dashboards/Modify.html?Create=1'); $m->form_name('ModifyDashboard'); $m->field( 'Name' => 'dashboard foo' ); $m->click_button( value => 'Create' ); $m->follow_link_ok( { text => 'Content' } ); my $form = $m->form_name('Dashboard-Searches-body'); my @input = $form->find_input('Searches-body-Available'); my ($dashboards_component) = map { ( $_->possible_values )[1] } grep { ( $_->value_names )[1] =~ /^Chart/ } @input; $form->value( 'Searches-body-Available' => $dashboards_component ); $m->click_button( name => 'add' ); $m->content_contains('Dashboard updated'); $m->follow_link_ok( { text => 'Subscription' } ); $m->form_name('SubscribeDashboard'); $m->field( 'Frequency' => 'daily' ); $m->field( 'Hour' => '06:00' ); $m->click_button( name => 'Save' ); $m->content_contains('Subscribed to dashboard dashboard foo'); my $c = $m->get(Encode::decode("UTF-8",q{/Search/Chart?Query=Subject LIKE 'test äöü'})); my $image = $c->content; RT::Test->run_and_capture( command => $RT::SbinPath . '/rt-email-dashboards', all => 1 ); my @mails = RT::Test->fetch_caught_mails; is @mails, 1, "got a dashboard mail"; # can't use parse_mail here is because it deletes all attachments # before we can call bodyhandle :/ use RT::EmailParser; my $parser = RT::EmailParser->new; my $mail = $parser->ParseMIMEEntityFromScalar( $mails[0] ); like( $mail->head->get('Subject'), qr/Daily Dashboard: dashboard foo/, 'mail subject' ); my ($mail_image) = grep { $_->mime_type eq 'image/png' } $mail->parts; ok( $mail_image, 'mail contains image attachment' ); my $handle = $mail_image->bodyhandle; my $mail_image_data = ''; if ( my $io = $handle->open('r') ) { while ( defined( $_ = $io->getline ) ) { $mail_image_data .= $_ } $io->close; } is( $mail_image_data, $image, 'image in mail is the same one in web' ); undef $m; done_testing; rt-4.4.2/t/mail/gnupg-bad.t0000664000175000017500000000220513131430353015247 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => 7, gnupg_options => { passphrase => 'rt-test', homedir => RT::Test::get_abs_relocatable_dir( File::Spec->updir(), qw/data gnupg keyrings/ ), }; my ($baseurl, $m) = RT::Test->started_ok; $m->login; $m->get( $baseurl.'/Admin/Queues/'); $m->follow_link_ok( {text => 'General'} ); $m->submit_form( form_number => 3, fields => { CorrespondAddress => 'rt@example.com' } ); $m->content_like(qr/rt\@example.com.* - never/, 'has key info.'); ok(my $user = RT::User->new(RT->SystemUser)); ok($user->Load('root'), "Loaded user 'root'"); $user->SetEmailAddress('rt@example.com'); if (0) { # XXX: need to generate these mails diag "no signature"; diag "no encryption on encrypted queue"; diag "mismatched signature"; diag "unknown public key"; diag "unknown private key"; diag "signer != sender"; diag "encryption to user whose pubkey is not signed"; diag "no encryption of attachment on encrypted queue"; diag "no signature of attachment"; diag "revoked key"; diag "expired key"; diag "unknown algorithm"; } rt-4.4.2/t/mail/wrong_mime_charset.t0000664000175000017500000000262513131430353017265 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodb => 1, tests => undef; use_ok('RT::I18N'); my $test_string = Encode::decode("UTF-8", 'À'); my $encoded_string = Encode::encode( 'iso-8859-1', $test_string ); my $mime = MIME::Entity->build( "Subject" => $encoded_string, "Data" => [$encoded_string], ); # set the wrong charset mime in purpose $mime->head->mime_attr( "Content-Type.charset" => 'utf8' ); my @warnings; local $SIG{__WARN__} = sub { push @warnings, "@_"; }; RT::I18N::SetMIMEEntityToEncoding( $mime, 'iso-8859-1' ); # this is a weird behavior for different perl versions, 5.12 warns twice, # which is correct since we do the encoding thing twice, for Subject # and Data respectively. # but 5.8 and 5.10 warns only once. ok( @warnings == 1 || @warnings == 2, "1 or 2 warnings are ok" ); ok( @warnings == 1 || ( @warnings == 2 && $warnings[1] eq $warnings[0] ), 'if there are 2 warnings, they should be same' ); like( $warnings[0], qr/\QEncoding error: "\x{fffd}" does not map to iso-8859-1/, "We can't encode something into the wrong encoding without Encode complaining" ); my $subject = Encode::decode( 'iso-8859-1', $mime->head->get('Subject') ); chomp $subject; is( $subject, $test_string, 'subject is set to iso-8859-1' ); my $body = Encode::decode( 'iso-8859-1', $mime->stringify_body ); chomp $body; is( $body, $test_string, 'body is set to iso-8859-1' ); done_testing; rt-4.4.2/t/mail/dashboard-empty.t0000664000175000017500000000773513131430353016503 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use RT::Dashboard::Mailer; my $root = RT::Test->load_or_create_user( Name => 'root' ); my ( $baseurl, $m ) = RT::Test->started_ok; ok( $m->login, 'logged in' ); sub create_dashboard { my ($name, $suppress_if_empty, $assets) = @_; # first, create and populate a "suppress if empty" dashboard $m->get_ok('/Dashboards/Modify.html?Create=1'); $m->form_name('ModifyDashboard'); $m->field( 'Name' => $name ); $m->click_button( value => 'Create' ); $m->follow_link_ok( { text => 'Content' } ); my $form = $m->form_name('Dashboard-Searches-body'); my @input = $form->find_input('Searches-body-Available'); my $add_component = sub { my $name = shift; my ($dashboards_component) = map { ( $_->possible_values )[1] } grep { ( $_->value_names )[1] =~ $name } @input; $form->value( 'Searches-body-Available' => $dashboards_component ); $m->click_button( name => 'add' ); $m->content_contains('Dashboard updated'); }; $add_component->('My Tickets') unless $assets; $add_component->('MyAssets') if $assets; $m->follow_link_ok( { text => 'Subscription' } ); $m->form_name('SubscribeDashboard'); $m->field( 'Frequency' => 'daily' ); $m->field( 'Hour' => '06:00' ); $m->field( 'SuppressIfEmpty' => 1 ) if $suppress_if_empty; $m->click_button( name => 'Save' ); $m->content_contains("Subscribed to dashboard $name"); } create_dashboard('Suppress if empty', 1); diag 'no mail since the dashboard is suppressed if empty' if $ENV{'TEST_VERBOSE'}; { RT::Dashboard::Mailer->MailDashboards(All => 1); my @mails = RT::Test->fetch_caught_mails; is @mails, 0, "got no dashboard mail because the dashboard is empty"; } create_dashboard('Always send', 0); diag 'one mail since one of two dashboards is suppressed if empty' if $ENV{'TEST_VERBOSE'}; { RT::Dashboard::Mailer->MailDashboards(All => 1); my @mails = RT::Test->fetch_caught_mails; is @mails, 1, "got a dashboard mail from the always-send dashboard"; my $content = parse_mail( $mails[0] )->bodyhandle->as_string; ok($content =~ qr/highest priority tickets I own/); } RT::Test->create_ticket( Queue => 'General', Subject => 'a search result!', Owner => $root, ); RT::Test->fetch_caught_mails; # dump ticket notifications diag 'two mails since both dashboards now have results' if $ENV{'TEST_VERBOSE'}; { RT::Dashboard::Mailer->MailDashboards(All => 1); my @mails = RT::Test->fetch_caught_mails; is @mails, 2, "got a dashboard mail from the always-send dashboard"; for my $mail (@mails) { my $content = parse_mail( $mail )->bodyhandle->as_string; ok($content =~ qr/highest priority tickets I own/); ok($content =~ qr/a search result!/); } } create_dashboard('My Assets', 1, 1); diag 'two mails since no asset yet' if $ENV{'TEST_VERBOSE'}; { RT::Dashboard::Mailer->MailDashboards(All => 1); my @mails = RT::Test->fetch_caught_mails; is @mails, 2, "got 2 dashboard mails"; for my $mail (@mails) { my $content = parse_mail( $mail )->bodyhandle->as_string; ok($content =~ qr/highest priority tickets I own/); ok($content =~ qr/a search result!/); } } my $asset = RT::Asset->new( RT->SystemUser ); my ($ok, $msg) = $asset->Create( Catalog => 'General assets', HeldBy => 'root@localhost', Description => 'a computer asset', ); ok($ok, $msg); { RT::Dashboard::Mailer->MailDashboards(All => 1); my @mails = RT::Test->fetch_caught_mails; is @mails, 3, "got 3 dashboard mails"; my @contents = map { parse_mail( $_ )->bodyhandle->as_string } @mails; ok($contents[0] =~ qr/highest priority tickets I own/); ok($contents[0] =~ qr/a search result!/); ok($contents[1] =~ qr/highest priority tickets I own/); ok($contents[1] =~ qr/a search result!/); ok($contents[2] =~ qr/a computer asset/); } undef $m; done_testing; rt-4.4.2/t/mail/gateway.t0000664000175000017500000006647313131430353015065 0ustar vagrantvagrantuse strict; use warnings; use RT::Test config => 'Set( @MailPlugins, "Action::Take", "Action::Resolve");', tests => undef, actual_server => 1; my ($baseurl, $m) = RT::Test->started_ok; use RT::Tickets; use MIME::Entity; use Digest::MD5 qw(md5_base64); use LWP::UserAgent; # TODO: --extension queue my $url = $m->rt_base_url; diag "Make sure that when we call the mailgate without URL, it fails"; { my $text = <Config->Get('rtname')]} Subject: This is a test of new ticket creation Foob! EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text, url => undef); is ($status >> 8, 1, "The mail gateway exited with a failure"); ok (!$id, "No ticket id") or diag "by mistake ticket #$id"; $m->no_warnings_ok; } diag "Make sure that when we call the mailgate with wrong URL, it tempfails"; { my $text = <Config->Get('rtname')]} Subject: This is a test of new ticket creation Foob! EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text, url => 'http://this.test.for.non-connection.is.expected.to.generate.an.error'); is ($status >> 8, 75, "The mail gateway exited with a failure"); ok (!$id, "No ticket id"); $m->no_warnings_ok; } my $everyone_group; diag "revoke rights tests depend on"; { $everyone_group = RT::Group->new( RT->SystemUser ); $everyone_group->LoadSystemInternalGroup( 'Everyone' ); ok ($everyone_group->Id, "Found group 'everyone'"); foreach( qw(CreateTicket ReplyToTicket CommentOnTicket) ) { $everyone_group->PrincipalObj->RevokeRight(Right => $_); } } diag "Test new ticket creation by root who is privileged and superuser"; { my $text = <Config->Get('rtname')]} Subject: This is a test of new ticket creation Blah! Foob! EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text); is ($status >> 8, 0, "The mail gateway exited normally"); ok ($id, "Created ticket"); my $tick = RT::Test->last_ticket; isa_ok ($tick, 'RT::Ticket'); is ($tick->Id, $id, "correct ticket id"); is ($tick->Subject , 'This is a test of new ticket creation', "Created the ticket"); $m->no_warnings_ok; } diag "Test the 'X-RT-Mail-Extension' field in the header of a ticket"; { my $text = <Config->Get('rtname')]} Subject: This is a test of the X-RT-Mail-Extension field Blah! Foob! EOF local $ENV{'EXTENSION'} = "bad value with\nnewlines\n"; my ($status, $id) = RT::Test->send_via_mailgate_and_http($text); is ($status >> 8, 0, "The mail gateway exited normally"); ok ($id, "Created ticket #$id"); my $tick = RT::Test->last_ticket; isa_ok ($tick, 'RT::Ticket'); is ($tick->Id, $id, "correct ticket id"); is ($tick->Subject, 'This is a test of the X-RT-Mail-Extension field', "Created the ticket"); my $transactions = $tick->Transactions; $transactions->OrderByCols({ FIELD => 'id', ORDER => 'DESC' }); $transactions->Limit( FIELD => 'Type', OPERATOR => '!=', VALUE => 'EmailRecord'); my $txn = $transactions->First; isa_ok ($txn, 'RT::Transaction'); is ($txn->Type, 'Create', "correct type"); my $attachment = $txn->Attachments->First; isa_ok ($attachment, 'RT::Attachment'); # XXX: We eat all newlines in header, that's not what RFC's suggesting is ( $attachment->GetHeader('X-RT-Mail-Extension'), "bad value with newlines", 'header is in place, without trailing newline char' ); $m->no_warnings_ok; } diag "Make sure that not standard --extension is passed"; { my $text = <Config->Get('rtname')]} Subject: This is a test of new ticket creation Foob! EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text, extension => 'some-extension-arg' ); is ($status >> 8, 0, "The mail gateway exited normally"); ok ($id, "Created ticket #$id"); my $tick = RT::Test->last_ticket; isa_ok ($tick, 'RT::Ticket'); is ($tick->Id, $id, "correct ticket id"); my $transactions = $tick->Transactions; $transactions->OrderByCols({ FIELD => 'id', ORDER => 'DESC' }); $transactions->Limit( FIELD => 'Type', OPERATOR => '!=', VALUE => 'EmailRecord'); my $txn = $transactions->First; isa_ok ($txn, 'RT::Transaction'); is ($txn->Type, 'Create', "correct type"); my $attachment = $txn->Attachments->First; isa_ok ($attachment, 'RT::Attachment'); is ( $attachment->GetHeader('X-RT-Mail-Extension'), 'some-extension-arg', 'header is in place' ); $m->no_warnings_ok; } diag "Test new ticket creation without --action argument"; { my $text = <send_via_mailgate_and_http($text, extension => 'some-extension-arg' ); is ($status >> 8, 0, "The mail gateway exited normally"); ok ($id, "Created ticket #$id"); my $tick = RT::Test->last_ticket; isa_ok ($tick, 'RT::Ticket'); is ($tick->Id, $id, "correct ticket id"); is ($tick->Subject, 'using mailgate without --action arg', "using mailgate without --action arg"); $m->no_warnings_ok; } diag "This is a test of new ticket creation as an unknown user"; { my $text = <Config->Get('rtname')]} To: rt\@@{[RT->Config->Get('rtname')]} Subject: This is a test of new ticket creation as an unknown user Blah! Foob! EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text); is ($status >> 8, 0, "The mail gateway exited normally"); ok (!$id, "no ticket created"); my $tick = RT::Test->last_ticket; isa_ok ($tick, 'RT::Ticket'); ok ($tick->Id, "found ticket ".$tick->Id); isnt ($tick->Subject , 'This is a test of new ticket creation as an unknown user', "failed to create the new ticket from an unprivileged account"); my $u = RT::User->new(RT->SystemUser); $u->Load("doesnotexist\@@{[RT->Config->Get('rtname')]}"); ok( $u->Id, "user was created by failed ticket submission"); $m->next_warning_like(qr/Failed attempt to create a ticket by email, from doesnotexist\@\S+.*grant.*CreateTicket right/s); $m->next_warning_like(qr/Permission Denied: doesnotexist\@\S+ has no right to create tickets in queue General/); $m->no_leftover_warnings_ok; } diag "grant everybody with CreateTicket right"; { ok( RT::Test->set_rights( { Principal => $everyone_group->PrincipalObj, Right => [qw(CreateTicket)], }, ), "Granted everybody the right to create tickets"); } my $ticket_id; diag "now everybody can create tickets. can a random unkown user create tickets?"; { my $text = <Config->Get('rtname')]} To: rt\@@{[RT->Config->Get('rtname')]} Subject: This is a test of new ticket creation as an unknown user Blah! Foob! EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text); is ($status >> 8, 0, "The mail gateway exited normally"); ok ($id, "ticket created"); my $tick = RT::Test->last_ticket; isa_ok ($tick, 'RT::Ticket'); ok ($tick->Id, "found ticket ".$tick->Id); is ($tick->Id, $id, "correct ticket id"); is ($tick->Subject , 'This is a test of new ticket creation as an unknown user', "failed to create the new ticket from an unprivileged account"); my $u = RT::User->new( RT->SystemUser ); $u->Load( "doesnotexist\@@{[RT->Config->Get('rtname')]}" ); ok ($u->Id, "user does exist and was created by ticket submission"); $ticket_id = $id; $m->no_warnings_ok; } diag "can another random reply to a ticket without being granted privs? answer should be no."; { my $text = <Config->Get('rtname')]} To: rt\@@{[RT->Config->Get('rtname')]} Subject: [@{[RT->Config->Get('rtname')]} #$ticket_id] This is a test of a reply as an unknown user Blah! (Should not work.) Foob! EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text); is ($status >> 8, 0, "The mail gateway exited normally"); ok (!$id, "no way to reply to the ticket"); my $u = RT::User->new(RT->SystemUser); $u->Load('doesnotexist-2@'.RT->Config->Get('rtname')); ok( $u->Id, "user was created by ticket correspondence submission"); $m->next_warning_like(qr/Failed attempt to reply to a ticket by email, from doesnotexist-2\@\S+.*grant.*ReplyToTicket right/s); $m->next_warning_like(qr/Permission Denied: doesnotexist-2\@\S+ has no right to reply to ticket $ticket_id in queue General/); $m->no_leftover_warnings_ok; } diag "grant everyone 'ReplyToTicket' right"; { ok( RT::Test->set_rights( { Principal => $everyone_group->PrincipalObj, Right => [qw(CreateTicket ReplyToTicket)], }, ), "Granted everybody the right to reply to tickets" ); } diag "can another random reply to a ticket after being granted privs? answer should be yes"; { my $text = <Config->Get('rtname')]} To: rt\@@{[RT->Config->Get('rtname')]} Subject: [@{[RT->Config->Get('rtname')]} #$ticket_id] This is a test of a reply as an unknown user Blah! Foob! EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text); is ($status >> 8, 0, "The mail gateway exited normally"); is ($id, $ticket_id, "replied to the ticket"); my $u = RT::User->new(RT->SystemUser); $u->Load('doesnotexist-2@'.RT->Config->Get('rtname')); ok ($u->Id, "user exists and was created by ticket correspondence submission"); $m->no_warnings_ok; } diag "add a reply to the ticket using '--extension ticket' feature"; { my $text = <Config->Get('rtname')]} To: rt\@@{[RT->Config->Get('rtname')]} Subject: This is a test of a reply as an unknown user Blah! Foob! EOF local $ENV{'EXTENSION'} = $ticket_id; my ($status, $id) = RT::Test->send_via_mailgate_and_http($text, extension => 'ticket'); is ($status >> 8, 0, "The mail gateway exited normally"); is ($id, $ticket_id, "replied to the ticket"); my $tick = RT::Test->last_ticket; isa_ok ($tick, 'RT::Ticket'); ok ($tick->Id, "found ticket ".$tick->Id); is ($tick->Id, $id, "correct ticket id"); my $transactions = $tick->Transactions; $transactions->OrderByCols({ FIELD => 'id', ORDER => 'DESC' }); $transactions->Limit( FIELD => 'Type', OPERATOR => '!=', VALUE => 'EmailRecord'); my $txn = $transactions->First; isa_ok ($txn, 'RT::Transaction'); is ($txn->Type, 'Correspond', "correct type"); my $attachment = $txn->Attachments->First; isa_ok ($attachment, 'RT::Attachment'); is ($attachment->GetHeader('X-RT-Mail-Extension'), $id, 'header is in place'); $m->no_warnings_ok; } diag "can another random comment on a ticket without being granted privs? answer should be no"; { my $text = <Config->Get('rtname')]} To: rt\@@{[RT->Config->Get('rtname')]} Subject: [@{[RT->Config->Get('rtname')]} #$ticket_id] This is a test of a comment as an unknown user Blah! (Should not work.) Foob! EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text, action => 'comment'); is ($status >> 8, 0, "The mail gateway exited normally"); ok (!$id, "no way to comment on the ticket"); my $u = RT::User->new(RT->SystemUser); $u->Load('doesnotexist-3@'.RT->Config->Get('rtname')); ok( $u->Id, "user was created by ticket comment submission"); $m->next_warning_like(qr/Permission Denied: doesnotexist-3\@\S+ has no right to comment on ticket $ticket_id in queue General/); $m->no_leftover_warnings_ok; } diag "grant everyone 'CommentOnTicket' right"; { ok( RT::Test->set_rights( { Principal => $everyone_group->PrincipalObj, Right => [qw(CreateTicket ReplyToTicket CommentOnTicket)], }, ), "Granted everybody the right to comment on tickets"); } diag "can another random reply to a ticket after being granted privs? answer should be yes"; { my $text = <Config->Get('rtname')]} To: rt\@@{[RT->Config->Get('rtname')]} Subject: [@{[RT->Config->Get('rtname')]} #$ticket_id] This is a test of a comment as an unknown user Blah! Foob! EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text, action => 'comment'); is ($status >> 8, 0, "The mail gateway exited normally"); is ($id, $ticket_id, "replied to the ticket"); my $u = RT::User->new(RT->SystemUser); $u->Load('doesnotexist-3@'.RT->Config->Get('rtname')); ok ($u->Id, " user exists and was created by ticket comment submission"); $m->no_warnings_ok; } diag "add comment to the ticket using '--extension action' feature"; { my $text = <Config->Get('rtname')]} To: rt\@@{[RT->Config->Get('rtname')]} Subject: [@{[RT->Config->Get('rtname')]} #$ticket_id] This is a test of a comment via '--extension action' Blah! Foob! EOF local $ENV{'EXTENSION'} = 'comment'; my ($status, $id) = RT::Test->send_via_mailgate_and_http($text, extension => 'action'); is ($status >> 8, 0, "The mail gateway exited normally"); is ($id, $ticket_id, "added comment to the ticket"); my $tick = RT::Test->last_ticket; isa_ok ($tick, 'RT::Ticket'); ok ($tick->Id, "found ticket ".$tick->Id); is ($tick->Id, $id, "correct ticket id"); my $transactions = $tick->Transactions; $transactions->OrderByCols({ FIELD => 'id', ORDER => 'DESC' }); $transactions->Limit( FIELD => 'Type', OPERATOR => 'NOT ENDSWITH', VALUE => 'EmailRecord', ENTRYAGGREGATOR => 'AND', ); my $txn = $transactions->First; isa_ok ($txn, 'RT::Transaction'); is ($txn->Type, 'Comment', "correct type"); my $attachment = $txn->Attachments->First; isa_ok ($attachment, 'RT::Attachment'); is ($attachment->GetHeader('X-RT-Mail-Extension'), 'comment', 'header is in place'); $m->no_warnings_ok; } diag "Testing preservation of binary attachments"; { # Get a binary blob (Best Practical logo) my $LOGO_FILE = $RT::StaticPath .'/images/bpslogo.png'; # Create a mime entity with an attachment my $entity = MIME::Entity->build( From => 'root@localhost', To => 'rt@localhost', Subject => 'binary attachment test', Data => ['This is a test of a binary attachment'], ); $entity->attach( Path => $LOGO_FILE, Type => 'image/png', Encoding => 'base64', ); # Create a ticket with a binary attachment my ($status, $id) = RT::Test->send_via_mailgate_and_http($entity); is ($status >> 8, 0, "The mail gateway exited normally"); ok ($id, "created ticket"); my $tick = RT::Test->last_ticket; isa_ok ($tick, 'RT::Ticket'); ok ($tick->Id, "found ticket ".$tick->Id); is ($tick->Id, $id, "correct ticket id"); is ($tick->Subject , 'binary attachment test', "Created the ticket - ".$tick->Id); my $file = `cat $LOGO_FILE`; ok ($file, "Read in the logo image"); diag "for the raw file the md5 hex is ". Digest::MD5::md5_hex($file); # Verify that the binary attachment is valid in the database my $attachments = RT::Attachments->new(RT->SystemUser); $attachments->Limit(FIELD => 'ContentType', VALUE => 'image/png'); my $txn_alias = $attachments->Join( ALIAS1 => 'main', FIELD1 => 'TransactionId', TABLE2 => 'Transactions', FIELD2 => 'id', ); $attachments->Limit( ALIAS => $txn_alias, FIELD => 'ObjectType', VALUE => 'RT::Ticket' ); $attachments->Limit( ALIAS => $txn_alias, FIELD => 'ObjectId', VALUE => $id ); is ($attachments->Count, 1, 'Found only one png attached to the ticket'); my $attachment = $attachments->First; ok ($attachment->Id, 'loaded attachment object'); my $acontent = $attachment->Content; diag "coming from the database, md5 hex is ".Digest::MD5::md5_hex($acontent); is ($acontent, $file, 'The attachment isn\'t screwed up in the database.'); # Grab the binary attachment via the web ui my $ua = new LWP::UserAgent; my $full_url = "$url/Ticket/Attachment/". $attachment->TransactionId ."/". $attachment->id. "/bpslogo.png?&user=root&pass=password"; my $r = $ua->get( $full_url ); # Verify that the downloaded attachment is the same as what we uploaded. is ($file, $r->content, 'The attachment isn\'t screwed up in download'); $m->no_warnings_ok; } diag "Simple I18N testing"; { my $text = <Config->Get('rtname')]} Subject: This is a test of I18N ticket creation Content-Type: text/plain; charset="utf-8" 2 accented lines \303\242\303\252\303\256\303\264\303\273 \303\241\303\251\303\255\303\263\303\272 bye EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text); is ($status >> 8, 0, "The mail gateway exited normally"); ok ($id, "created ticket"); my $tick = RT::Test->last_ticket; isa_ok ($tick, 'RT::Ticket'); ok ($tick->Id, "found ticket ". $tick->Id); is ($tick->Id, $id, "correct ticket"); is ($tick->Subject , 'This is a test of I18N ticket creation', "Created the ticket - ". $tick->Subject); my $unistring = Encode::decode("UTF-8","\303\241\303\251\303\255\303\263\303\272"); is ( $tick->Transactions->First->Content, $tick->Transactions->First->Attachments->First->Content, "Content is ". $tick->Transactions->First->Attachments->First->Content ); ok ( $tick->Transactions->First->Content =~ /$unistring/i, $tick->Id." appears to be unicode ". $tick->Transactions->First->Attachments->First->Id ); $m->no_warnings_ok; } diag "supposedly I18N fails on the second message sent in."; { my $text = <Config->Get('rtname')]} Subject: This is a test of I18N ticket creation Content-Type: text/plain; charset="utf-8" 2 accented lines \303\242\303\252\303\256\303\264\303\273 \303\241\303\251\303\255\303\263\303\272 bye EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text); is ($status >> 8, 0, "The mail gateway exited normally"); ok ($id, "created ticket"); my $tick = RT::Test->last_ticket; isa_ok ($tick, 'RT::Ticket'); ok ($tick->Id, "found ticket ". $tick->Id); is ($tick->Id, $id, "correct ticket"); is ($tick->Subject , 'This is a test of I18N ticket creation', "Created the ticket"); my $unistring = Encode::decode("UTF-8","\303\241\303\251\303\255\303\263\303\272"); ok ( $tick->Transactions->First->Content =~ $unistring, "It appears to be unicode - ". $tick->Transactions->First->Content ); $m->no_warnings_ok; } diag "make sure we check that UTF-8 is really UTF-8"; { my $text = <Config->Get('rtname')]} Subject: This is test wrong utf-8 chars Content-Type: text/plain; charset="utf-8" utf-8: informaci\303\263n confidencial latin1: informaci\363n confidencial bye EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text); is ($status >> 8, 0, "The mail gateway exited normally"); ok ($id, "created ticket"); my $tick = RT::Test->last_ticket; is ($tick->Id, $id, "correct ticket"); my $content = Encode::encode("UTF-8",$tick->Transactions->First->Content); like $content, qr{informaci\303\263n confidencial}; like $content, qr{informaci\357\277\275n confidencial}; $m->no_warnings_ok; } diag "check that mailgate doesn't suffer from empty Reply-To:"; { my $text = <Config->Get('rtname')]} Subject: test Content-Type: text/plain; charset="utf-8" test EOF my ($status, $id) = RT::Test->send_via_mailgate_and_http($text); is ($status >> 8, 0, "The mail gateway exited normally"); ok ($id, "created ticket"); my $tick = RT::Test->last_ticket; isa_ok ($tick, 'RT::Ticket'); ok ($tick->Id, "found ticket ". $tick->Id); is ($tick->Id, $id, "correct ticket"); like $tick->RequestorAddresses, qr/root\@localhost/, 'correct requestor'; $m->no_warnings_ok; } my ($val,$msg) = $everyone_group->PrincipalObj->RevokeRight(Right => 'CreateTicket'); ok ($val, $msg); # create new queue to be shure we don't mess with rights use RT::Queue; my $queue = RT::Queue->new(RT->SystemUser); my ($qid) = $queue->Create( Name => 'ext-mailgate'); ok( $qid, 'queue created for ext-mailgate tests' ); # create ticket that is owned by nobody use RT::Ticket; my $tick = RT::Ticket->new(RT->SystemUser); my ($id) = $tick->Create( Queue => 'ext-mailgate', Subject => 'test'); ok( $id, 'new ticket created' ); is( $tick->Owner, RT->Nobody->Id, 'owner of the new ticket is nobody' ); $! = 0; ok(open(MAIL, '|-', "$RT::BinPath/rt-mailgate --url $url --queue ext-mailgate --action take"), "Opened the mailgate - $!"); print MAIL <Config->Get('rtname')]} \#$id] test EOF close (MAIL); is ($? >> 8, 0, "The mail gateway exited normally"); DBIx::SearchBuilder::Record::Cachable->FlushCache; $tick = RT::Ticket->new(RT->SystemUser); $tick->Load( $id ); is( $tick->Id, $id, 'load correct ticket'); is( $tick->OwnerObj->EmailAddress, 'root@localhost', 'successfuly take ticket via email'); # check that there is no text transactions writen (create + 2 for take) is( $tick->Transactions->Count, 3, 'no superfluous transactions'); my $status; ($status, $msg) = $tick->SetOwner( RT->Nobody->Id, 'Force' ); ok( $status, 'successfuly changed owner: '. ($msg||'') ); is( $tick->Owner, RT->Nobody->Id, 'set owner back to nobody'); $m->no_warnings_ok; $! = 0; ok(open(MAIL, '|-', "$RT::BinPath/rt-mailgate --url $url --queue ext-mailgate --action take-correspond"), "Opened the mailgate - $@"); print MAIL <Config->Get('rtname')]} \#$id] correspondence test EOF close (MAIL); is ($? >> 8, 0, "The mail gateway exited normally"); DBIx::SearchBuilder::Record::Cachable->FlushCache; $tick = RT::Ticket->new(RT->SystemUser); $tick->Load( $id ); is( $tick->Id, $id, "load correct ticket #$id"); is( $tick->OwnerObj->EmailAddress, 'root@localhost', 'successfuly take ticket via email'); my $txns = $tick->Transactions; $txns->Limit( FIELD => 'Type', VALUE => 'Correspond'); $txns->OrderBy( FIELD => 'id', ORDER => 'DESC' ); # +2 from owner to nobody, +1 because of auto open, +2 from take, +1 from correspond is( $tick->Transactions->Count, 9, 'no superfluous transactions'); is( $txns->First->Subject, "[$RT::rtname \#$id] correspondence", 'successfuly add correspond within take via email' ); $m->no_warnings_ok; $! = 0; ok(open(MAIL, '|-', "$RT::BinPath/rt-mailgate --url $url --queue ext-mailgate --action resolve"), "Opened the mailgate - $!"); print MAIL <Config->Get('rtname')]} \#$id] test EOF close (MAIL); is ($? >> 8, 0, "The mail gateway exited normally"); DBIx::SearchBuilder::Record::Cachable->FlushCache; $tick = RT::Ticket->new(RT->SystemUser); $tick->Load( $id ); is( $tick->Id, $id, 'load correct ticket'); is( $tick->Status, 'resolved', 'successfuly resolved ticket via email'); # +1 from resolve is( $tick->Transactions->Count, 10, 'no superfluous transactions'); use RT::User; my $user = RT::User->new( RT->SystemUser ); my ($uid) = $user->Create( Name => 'ext-mailgate', EmailAddress => 'ext-mailgate@localhost', Privileged => 1, Password => 'qwe123', ); ok( $uid, 'user created for ext-mailgate tests' ); ok( !$user->HasRight( Right => 'OwnTicket', Object => $queue ), "User can't own ticket" ); $tick = RT::Ticket->new(RT->SystemUser); ($id) = $tick->Create( Queue => $qid, Subject => 'test' ); ok( $id, 'create new ticket' ); my $rtname = RT->Config->Get('rtname'); $m->no_warnings_ok; $! = 0; ok(open(MAIL, '|-', "$RT::BinPath/rt-mailgate --url $url --queue ext-mailgate --action take"), "Opened the mailgate - $!"); print MAIL <> 8, 0, "mailgate exited normally" ); DBIx::SearchBuilder::Record::Cachable->FlushCache; cmp_ok( $tick->Owner, '!=', $user->id, "we didn't change owner" ); ($status, $msg) = $user->PrincipalObj->GrantRight( Object => $queue, Right => 'ReplyToTicket' ); ok( $status, "successfuly granted right: $msg" ); my $ace_id = $status; ok( $user->HasRight( Right => 'ReplyToTicket', Object => $tick ), "User can reply to ticket" ); $m->next_warning_like(qr/ext-mailgate\@localhost has no right to own ticket $id in queue ext-mailgate/); $m->no_leftover_warnings_ok; $! = 0; ok(open(MAIL, '|-', "$RT::BinPath/rt-mailgate --url $url --queue ext-mailgate --action correspond-take"), "Opened the mailgate - $!"); print MAIL <> 8, 0, "mailgate exited normally" ); DBIx::SearchBuilder::Record::Cachable->FlushCache; cmp_ok( $tick->Owner, '!=', $user->id, "we didn't change owner" ); is( $tick->Transactions->Count, 3, "one transactions added" ); $m->next_warning_like(qr/That user may not own tickets in that queue/); $m->no_leftover_warnings_ok; $! = 0; ok(open(MAIL, '|-', "$RT::BinPath/rt-mailgate --url $url --queue ext-mailgate --action take-correspond"), "Opened the mailgate - $!"); print MAIL <> 8, 0, "mailgate exited normally" ); DBIx::SearchBuilder::Record::Cachable->FlushCache; cmp_ok( $tick->Owner, '!=', $user->id, "we didn't change owner" ); is( $tick->Transactions->Count, 3, "no transactions added, user can't take ticket first" ); $m->next_warning_like(qr/ext-mailgate\@localhost has no right to own ticket $id in queue ext-mailgate/); $m->no_leftover_warnings_ok; # revoke ReplyToTicket right use RT::ACE; my $ace = RT::ACE->new(RT->SystemUser); $ace->Load( $ace_id ); $ace->Delete; my $acl = RT::ACL->new(RT->SystemUser); $acl->Limit( FIELD => 'RightName', VALUE => 'ReplyToTicket' ); $acl->LimitToObject( $RT::System ); while( my $ace = $acl->Next ) { $ace->Delete; } ok( !$user->HasRight( Right => 'ReplyToTicket', Object => $tick ), "User can't reply to ticket any more" ); my $group = $queue->RoleGroup( 'Owner' ); ok( $group->Id, "load queue owners role group" ); $ace = RT::ACE->new( RT->SystemUser ); ($ace_id, $msg) = $group->PrincipalObj->GrantRight( Right => 'ReplyToTicket', Object => $queue ); ok( $ace_id, "Granted queue owners role group with ReplyToTicket right" ); ($status, $msg) = $user->PrincipalObj->GrantRight( Object => $queue, Right => 'OwnTicket' ); ok( $status, "successfuly granted right: $msg" ); ($status, $msg) = $user->PrincipalObj->GrantRight( Object => $queue, Right => 'TakeTicket' ); ok( $status, "successfuly granted right: $msg" ); $! = 0; ok(open(MAIL, '|-', "$RT::BinPath/rt-mailgate --url $url --queue ext-mailgate --action take-correspond"), "Opened the mailgate - $!"); print MAIL <> 8, 0, "mailgate exited normally" ); DBIx::SearchBuilder::Record::Cachable->FlushCache; $tick->Load( $id ); is( $tick->Owner, $user->id, "we changed owner" ); ok( $user->HasRight( Right => 'ReplyToTicket', Object => $tick ), "owner can reply to ticket" ); # +2 from take, +1 from correspond is( $tick->Transactions->Count, 6, "transactions added" ); $m->no_warnings_ok; undef $m; done_testing; rt-4.4.2/t/mail/sendmail-plaintext.t0000664000175000017500000001263713131430353017217 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef, text_templates => 1; use File::Spec (); use Email::Abstract; # We're not testing acls here. my $everyone = RT::Group->new(RT->SystemUser); $everyone->LoadSystemInternalGroup('Everyone'); $everyone->PrincipalObj->GrantRight( Right =>'SuperUser' ); # some utils sub first_txn { return $_[0]->Transactions->First } sub first_attach { return first_txn($_[0])->Attachments->First } sub count_attachs { return first_txn($_[0])->Attachments->Count } sub mail_in_ticket { my ($filename) = @_; my $path = RT::Test::get_relocatable_file($filename, (File::Spec->updir(), 'data', 'emails')); my $content = RT::Test->file_content($path); RT::Test->clean_caught_mails; my ($status, $id) = RT::Test->send_via_mailgate( $content ); ok( !$status, "Fed $filename into mailgate"); my $ticket = RT::Ticket->new(RT->SystemUser); $ticket->Load($id); ok( $ticket->Id, "Successfully created ticket ".$ticket->Id); my @mail = map {Email::Abstract->new($_)->cast('MIME::Entity')} RT::Test->fetch_caught_mails; return ($ticket, @mail); } { my ($ticket) = mail_in_ticket('multipart-report'); like( first_txn($ticket)->Content , qr/The original message was received/, "It's the bounce"); } for my $encoding ('ISO-8859-1', 'UTF-8') { RT->Config->Set( EmailOutputEncoding => $encoding ); my ($ticket, @mail) = mail_in_ticket('new-ticket-from-iso-8859-1'); like (first_txn($ticket)->Content , qr/H\x{e5}vard/, "It's signed by havard. yay"); is(@mail, 1); like( $mail[0]->head->get('Content-Type') , qr/$encoding/, "Its content type is $encoding" ); my $message_as_string = $mail[0]->bodyhandle->as_string(); $message_as_string = Encode::decode($encoding, $message_as_string); like( $message_as_string , qr/H\x{e5}vard/, "The message's content contains havard's name in $encoding"); } { my ($ticket) = mail_in_ticket('multipart-alternative-with-umlaut'); like( first_txn($ticket)->Content, qr/causes Error/, "We recorded the content as containing 'causes error'"); is( count_attachs($ticket), 3, "Has three attachments, presumably a text-plain, a text-html and a multipart alternative"); } { my ($ticket, @mail) = mail_in_ticket('text-html-with-umlaut'); like( first_attach($ticket)->Content, qr/causes Error/, "We recorded the content as containing 'causes error'"); like( first_attach($ticket)->ContentType , qr/text\/html/, "We recorded the content as text/html"); is (count_attachs($ticket), 1, "Has one attachment, just a text-html"); is(@mail, 1); is( $mail[0]->parts, 0, "generated correspondence mime entity does not have parts"); is( $mail[0]->head->mime_type , "text/plain", "The mime type is a plain"); } { my @InputEncodings = RT->Config->Get('EmailInputEncodings'); RT->Config->Set( EmailInputEncodings => 'koi8-r', @InputEncodings ); RT->Config->Set( EmailOutputEncoding => 'koi8-r' ); my ($ticket, @mail) = mail_in_ticket('russian-subject-no-content-type'); like( first_attach($ticket)->ContentType, qr/text\/plain/, "We recorded the content type right"); is( count_attachs($ticket), 1, "Has one attachment, presumably a text-plain"); is( $ticket->Subject, Encode::decode("UTF-8","теÑÑ‚ теÑÑ‚"), "Recorded the subject right"); is(@mail, 1); is( $mail[0]->head->mime_type , "text/plain", "The only part is text/plain "); like( $mail[0]->head->get("subject"), qr/\Q=?KOI8-R?B?W2V4YW1wbGUuY29tICM2XSBBdXRvUmVwbHk6INTF09Qg1MXT1A==?=\E/, "The subject is encoded correctly"); RT->Config->Set(EmailInputEncodings => @InputEncodings ); RT->Config->Set(EmailOutputEncoding => 'utf-8'); } { my ($ticket, @mail) = mail_in_ticket('nested-rfc-822'); is( $ticket->Subject, "[Jonas Liljegren] Re: [Para] Niv\x{e5}er?"); like( first_attach($ticket)->ContentType, qr/multipart\/mixed/, "We recorded the content type right"); is( count_attachs($ticket), 5, "Has five attachments, presumably a text-plain and a message RFC 822 and another plain"); is(@mail, 1); is( $mail[0]->head->mime_type , "text/plain", "The outgoing mail is plain text"); my $encoded_subject = $mail[0]->head->get("Subject"); chomp $encoded_subject; my $subject = Encode::decode('MIME-Header',$encoded_subject); like($subject, qr/Niv\x{e5}er/, "The subject matches the word - $subject"); } { my ($ticket) = mail_in_ticket('notes-uuencoded'); like( first_txn($ticket)->Content, qr/from Lotus Notes/, "We recorded the content right"); is( count_attachs($ticket), 3, "Has three attachments"); } { my ($ticket) = mail_in_ticket('crashes-file-based-parser'); like( first_txn($ticket)->Content, qr/FYI/, "We recorded the content right"); is( count_attachs($ticket), 5, "Has five attachments"); } { my ($ticket) = mail_in_ticket('rt-send-cc'); my $cc = first_attach($ticket)->GetHeader('RT-Send-Cc'); like ($cc, qr/test$_/, "Found test $_") for 1..5; } { diag "Regression test for #5248 from rt3.fsck.com"; my ($ticket) = mail_in_ticket('subject-with-folding-ws'); is ($ticket->Subject, 'test', 'correct subject'); } { diag "Regression test for #5248 from rt3.fsck.com"; my ($ticket) = mail_in_ticket('very-long-subject'); is ($ticket->Subject, '0123456789'x20, 'correct subject'); } done_testing; rt-4.4.2/t/externalstorage/0000775000175000017500000000000013131430353015504 5ustar vagrantvagrantrt-4.4.2/t/externalstorage/basic.t0000664000175000017500000000626613131430353016764 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::ExternalStorage tests => undef; my $queue = RT::Test->load_or_create_queue(Name => 'General'); ok $queue && $queue->id; my $message = MIME::Entity->build( From => 'root@localhost', Subject => 'test', Data => 'test', ); $message->attach( Type => 'image/special', Filename => 'afile.special', Data => 'boo', ); $message->attach( Type => 'application/octet-stream', Filename => 'otherfile.special', Data => 'thing', ); my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id) = $ticket->Create( Queue => $queue, Subject => 'test', MIMEObj => $message, ); ok $id, 'created a ticket'; my @attachs = @{ $ticket->Transactions->First->Attachments->ItemsArrayRef }; is scalar @attachs, 4, "Contains a multipart and two sub-parts"; is $attachs[0]->ContentType, "multipart/mixed", "Found the top multipart"; my ($ok, $msg) = $attachs[0]->ShouldStoreExternally; ok !$ok, "Shouldn't store multipart part on disk"; like $msg, qr/attachment is multipart/, "Shouldn't store multipart part on disk"; is $attachs[1]->ContentType, "text/plain", "Found the text part"; is $attachs[1]->Content, 'test', "Can get the text part content"; is $attachs[1]->ContentEncoding, "none", "Content is not encoded"; ($ok, $msg) = $attachs[1]->ShouldStoreExternally; ok !$ok, "Won't store text part on disk"; like $msg, qr/text length.*does not exceed/, "Won't store text part on disk"; is $attachs[2]->ContentType, "image/special", "Found the image part"; is $attachs[2]->Content, 'boo', "Can get the image content"; is $attachs[2]->ContentEncoding, "none", "Content is not encoded"; ($ok, $msg) = $attachs[2]->ShouldStoreExternally; ok !$ok, "Won't store images on disk"; like $msg, qr/image size.*does not exceed/, "Won't store images on disk"; is $attachs[3]->ContentType, "application/octet-stream", "Found the binary part"; is $attachs[3]->Content, 'thing', "Can get the binary content"; is $attachs[3]->ContentEncoding, "none", "Content is not encoded"; ($ok, $msg) = $attachs[3]->ShouldStoreExternally; ok $ok, "Will store binary data on disk"; my $dir = RT::Test::ExternalStorage->attachments_dir; ok !<$dir/*>, "Attachments directory is empty"; ok -e 'sbin/rt-externalize-attachments', "Found rt-externalize-attachments script"; ok -x 'sbin/rt-externalize-attachments', "rt-externalize-attachments is executable"; ok !system('sbin/rt-externalize-attachments'), "rt-externalize-attachments ran successfully"; @attachs = @{ $ticket->Transactions->First->Attachments->ItemsArrayRef }; is $attachs[1]->Content, 'test', "Can still get the text part content"; is $attachs[1]->ContentEncoding, "none", "Content is not encoded"; is $attachs[2]->Content, 'boo', "Can still get the image content"; is $attachs[2]->ContentEncoding, "none", "Content is not encoded"; is $attachs[3]->ContentType, "application/octet-stream", "Found the binary part"; is $attachs[3]->Content, 'thing', "Can still get the binary content"; isnt $attachs[3]->__Value('Content'), "thing", "Content in database is not the raw content"; is $attachs[3]->ContentEncoding, "external", "Content encoding is 'external'"; ok <$dir/*>, "Attachments directory contains files"; done_testing(); rt-4.4.2/t/externalstorage/encoding.t0000664000175000017500000000271013131430353017457 0ustar vagrantvagrantuse strict; use warnings; use RT; use RT::Test::ExternalStorage tests => undef; RT->Config->Set( ExternalStorageCutoffSize => 1 ); my $queue = RT::Test->load_or_create_queue(Name => 'General'); my $non_english_text = Encode::decode("UTF-8",'PříliÅ¡ žluÅ¥ouÄký kůň pÄ›l Äábelské ódy'); my $message = MIME::Entity->build( From => 'root@localhost', Subject => 'test', Charset => 'UTF-8', Encoding => 'quoted-printable', Type => 'text/plain', Data => Encode::encode('UTF-8', $non_english_text), ); my $ticket = RT::Ticket->new( RT->SystemUser ); my ($id) = $ticket->Create( Queue => $queue, Subject => 'test', MIMEObj => $message, ); ok $id, 'created a ticket'; my @attachments = @{ $ticket->Transactions->First->Attachments->ItemsArrayRef }; is scalar @attachments, 1, "Found one attachment"; is $attachments[0]->ContentType, "text/plain", "Found the text part"; is $attachments[0]->Content, $non_english_text, "Can get the text part content"; ok !system('sbin/rt-externalize-attachments'), "rt-externalize-attachments ran successfully"; @attachments = @{ $ticket->Transactions->First->Attachments->ItemsArrayRef }; is scalar @attachments, 1, "Found one attachment"; is $attachments[0]->ContentType, "text/plain", "Found the text part"; is $attachments[0]->Content, $non_english_text, "Can still get the text part content"; is $attachments[0]->ContentEncoding, "external", "Content is external"; done_testing(); rt-4.4.2/t/customfields/0000775000175000017500000000000013131430353014776 5ustar vagrantvagrantrt-4.4.2/t/customfields/iprange.t0000664000175000017500000004377613131430353016631 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 133; my ($baseurl, $agent) =RT::Test->started_ok; ok( $agent->login, 'log in' ); my $q = RT::Queue->new($RT::SystemUser); $q->Load('General'); my $ip_cf = RT::CustomField->new($RT::SystemUser); my ($val,$msg) = $ip_cf->Create(Name => 'IP', Type =>'IPAddressRange', LookupType => 'RT::Queue-RT::Ticket'); ok($val,$msg); my $cf_id = $val; $ip_cf->AddToObject($q); use_ok('RT'); my $cf; diag "load and check basic properties of the IP CF" if $ENV{'TEST_VERBOSE'}; { my $cfs = RT::CustomFields->new( $RT::SystemUser ); $cfs->Limit( FIELD => 'Name', VALUE => 'IP', CASESENSITIVE => 0 ); is( $cfs->Count, 1, "found one CF with name 'IP'" ); $cf = $cfs->First; is( $cf->Type, 'IPAddressRange', 'type check' ); is( $cf->LookupType, 'RT::Queue-RT::Ticket', 'lookup type check' ); ok( !$cf->MaxValues, "unlimited number of values" ); ok( !$cf->Disabled, "not disabled" ); } diag "check that CF applies to queue General" if $ENV{'TEST_VERBOSE'}; { my $cfs = $q->TicketCustomFields; $cfs->Limit( FIELD => 'id', VALUE => $cf->id, ENTRYAGGREGATOR => 'AND' ); is( $cfs->Count, 1, 'field applies to queue' ); } diag "create a ticket via web and set IP" if $ENV{'TEST_VERBOSE'}; { my $val = '192.168.20.1'; ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $val, } ); $agent->content_like( qr/\Q$val/, "IP on the page" ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), $val, 'correct value' ); } diag "create a ticket via web with CIDR" if $ENV{'TEST_VERBOSE'}; { my $val = '172.16.20/31'; ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $val, } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), '172.16.20.0-172.16.20.1', 'correct value' ); } diag "create a ticket and edit IP field using Edit page" if $ENV{'TEST_VERBOSE'}; { my $val = '172.16.0.1'; ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $cf_field = "Object-RT::Ticket-$id-CustomField-$cf_id-Values"; $agent->follow_link_ok( { text => 'Basics', n => "1" }, "Followed 'Basics' link" ); $agent->form_name('TicketModify'); like( $agent->value($cf_field), qr/^\s*$/, 'IP is empty' ); $agent->field( $cf_field => $val ); $agent->click('SubmitTicket'); $agent->content_like( qr/\Q$val/, "IP on the page" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), $val, 'correct value' ); diag "set IP with spaces around" if $ENV{'TEST_VERBOSE'}; $val = " 172.16.0.2 \n "; $agent->follow_link_ok( { text => 'Basics', n => "1" }, "Followed 'Basics' link" ); $agent->form_name('TicketModify'); like( $agent->value($cf_field), qr/^\s*\Q172.16.0.1\E\s*$/, 'IP is in input box' ); $agent->field( $cf_field => $val ); $agent->click('SubmitTicket'); $agent->content_like( qr/\Q172.16.0.2/, "IP on the page" ); $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), '172.16.0.2', 'correct value' ); diag "replace IP with a range" if $ENV{'TEST_VERBOSE'}; $val = '172.16.0.0-172.16.0.255'; $agent->follow_link_ok( { text => 'Basics', n => "1" }, "Followed 'Basics' link" ); $agent->form_name('TicketModify'); like( $agent->value($cf_field), qr/^\s*\Q172.16.0.2\E\s*$/, 'IP is in input box' ); $agent->field( $cf_field => $val ); $agent->click('SubmitTicket'); $agent->content_like( qr/\Q$val/, "IP on the page" ); $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), $val, 'correct value' ); diag "delete range, add another range using CIDR" if $ENV{'TEST_VERBOSE'}; $val = '172.16/16'; $agent->follow_link_ok( { text => 'Basics', n => "1" }, "Followed 'Basics' link" ); $agent->form_name('TicketModify'); is( $agent->value($cf_field), '172.16.0.0-172.16.0.255', 'IP is in input box' ); $agent->field( $cf_field => $val ); $agent->click('SubmitTicket'); $agent->content_like( qr/\Q$val/, "IP on the page" ); $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), '172.16.0.0-172.16.255.255', 'correct value' ); } diag "check that we parse correct IPs only" if $ENV{'TEST_VERBOSE'}; { my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; for my $valid (qw/1.0.0.0 255.255.255.255/) { ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $valid, } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); is( $ticket->id, $id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), $valid, 'correct value' ); } for my $invalid (qw{255.255.255.256 355.255.255.255 8.13.8/8.13.0/1.0}) { ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $invalid, } ); $agent->content_like( qr/is not a valid IP address range/, 'ticket fails to create' ); } } diag "search tickets by IP" if $ENV{'TEST_VERBOSE'}; { my $val = '172.16.1/31'; ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $val, } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); my $tickets = RT::Tickets->new($RT::SystemUser); $tickets->FromSQL("id = $id AND CF.{IP} = '172.16.1.1'"); ok( $tickets->Count, "found tickets" ); is( $ticket->FirstCustomFieldValue('IP'), '172.16.1.0-172.16.1.1', 'correct value' ); } diag "search tickets by IP range" if $ENV{'TEST_VERBOSE'}; { my $val = '172.16.2/26'; ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $val, } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); my $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("id = $id AND CF.{IP} = '172.16.2.0-172.16.2.255'"); ok( $tickets->Count, "found tickets" ); is( $ticket->FirstCustomFieldValue('IP'), '172.16.2.0-172.16.2.63', 'correct value' ); } diag "create two tickets with different IPs and check several searches" if $ENV{'TEST_VERBOSE'}; { ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => '192.168.21.10', } ); my ($id1) = $agent->content =~ /Ticket (\d+) created/; ok( $id1, "created first ticket $id1" ); ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => '192.168.22.10', } ); my ($id2) = $agent->content =~ /Ticket (\d+) created/; ok( $id2, "created second ticket $id2" ); my $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("id = $id1 OR id = $id2"); is( $tickets->Count, 2, "found both tickets by 'id = x OR y'" ); # IP $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.10'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.21.10', "correct value" ); $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.22.10'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.22.10', "correct value" ); # IP/32 - one address $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.10/32'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.21.10', "correct value" ); $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.22.10/32'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.22.10', "correct value" ); # IP range $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.0-192.168.21.255'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.21.10', "correct value" ); $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.22.0-192.168.22.255'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.22.10', "correct value" ); # IP range, with start IP greater than end $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.255-192.168.21.0'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.21.10', "correct value" ); $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.22.255-192.168.22.0'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.22.10', "correct value" ); # CIDR/24 $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.0/24'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.21.10', "correct value" ); $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.22.0/24'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.22.10', "correct value" ); # IP is not in CIDR/24 $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} != '192.168.21.0/24'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.22.10', "correct value" ); $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} != '192.168.22.0/24'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.21.10', "correct value" ); # CIDR or CIDR $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND " ."(CF.{IP} = '192.168.21.0/24' OR CF.{IP} = '192.168.22.0/24')"); is( $tickets->Count, 2, "found both tickets" ); } diag "create two tickets with different IP ranges and check several searches" if $ENV{'TEST_VERBOSE'}; { ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => '192.168.21.0-192.168.21.127', } ); my ($id1) = $agent->content =~ /Ticket (\d+) created/; ok( $id1, "created first ticket $id1" ); ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => '192.168.21.128-192.168.21.255', } ); my ($id2) = $agent->content =~ /Ticket (\d+) created/; ok( $id2, "created ticket $id2" ); my $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("id = $id1 OR id = $id2"); is( $tickets->Count, 2, "found both tickets by 'id = x OR y'" ); # IP $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.0'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.64'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.127'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.128'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id2, "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.191'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id2, "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.255'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id2, "correct value" ); # IP/32 - one address $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.63/32'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.191/32'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id2, "correct value" ); # IP range, lower than both $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.20.0-192.168.20.255'"); is( $tickets->Count, 0, "didn't finnd ticket" ) or diag "but found ". $tickets->First->id; # IP range, intersect with the first range $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.20.0-192.168.21.63'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); # IP range, equal to the first range $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.0-192.168.21.127'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); # IP range, lay inside the first range $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.31-192.168.21.63'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); # IP range, intersect with the ranges $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.31-192.168.21.191'"); is( $tickets->Count, 2, "found both tickets" ); # IP range, equal to range from the starting IP of the first ticket to the ending IP of the second $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.0-192.168.21.255'"); is( $tickets->Count, 2, "found both tickets" ); # IP range, has the both ranges inside it $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168/16'"); is( $tickets->Count, 2, "found both tickets" ); # IP range, greater than both $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.22/24'"); is( $tickets->Count, 0, "didn't find ticket" ) or diag "but found ". $tickets->First->id; } diag "test the operators in search page" if $ENV{'TEST_VERBOSE'}; { $agent->get_ok( $baseurl . "/Search/Build.html?Query=Queue='General'" ); $agent->content_contains('CF.{IP}', 'got CF.{IP}'); my $form = $agent->form_name('BuildQuery'); my $op = $form->find_input("CF.{IP}Op"); ok( $op, "found CF.{IP}Op" ); is_deeply( [ $op->possible_values ], [ '=', '!=', '<', '>' ], 'op values' ); } rt-4.4.2/t/customfields/ipv6.t0000664000175000017500000002057513131430353016060 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => undef; use Test::Warn; my ( $baseurl, $agent ) = RT::Test->started_ok; ok( $agent->login, 'log in' ); my $q = RT::Queue->new($RT::SystemUser); $q->Load('General'); my $ip_cf = RT::CustomField->new($RT::SystemUser); my ( $val, $msg ) = $ip_cf->Create( Name => 'IP', Type => 'IPAddress', LookupType => 'RT::Queue-RT::Ticket' ); ok( $val, $msg ); my $cf_id = $val; $ip_cf->AddToObject($q); use_ok('RT'); my $cf; diag "load and check basic properties of the IP CF" if $ENV{'TEST_VERBOSE'}; { my $cfs = RT::CustomFields->new($RT::SystemUser); $cfs->Limit( FIELD => 'Name', VALUE => 'IP', CASESENSITIVE => 0 ); is( $cfs->Count, 1, "found one CF with name 'IP'" ); $cf = $cfs->First; is( $cf->Type, 'IPAddress', 'type check' ); is( $cf->LookupType, 'RT::Queue-RT::Ticket', 'lookup type check' ); ok( !$cf->MaxValues, "unlimited number of values" ); ok( !$cf->Disabled, "not disabled" ); } diag "check that CF applies to queue General" if $ENV{'TEST_VERBOSE'}; { my $cfs = $q->TicketCustomFields; $cfs->Limit( FIELD => 'id', VALUE => $cf->id, ENTRYAGGREGATOR => 'AND' ); is( $cfs->Count, 1, 'field applies to queue' ); } my %valid = ( 'abcd:' x 7 . 'abcd' => 'abcd:' x 7 . 'abcd', '034:' x 7 . '034' => '34:' x 7 . '34', 'abcd::' => 'abcd::', '::abcd' => '::abcd', 'abcd::034' => 'abcd::34', 'abcd::192.168.1.1' => 'abcd::c0a8:101', '::192.168.1.1' => '::c0a8:101', '::' => '::', '034:' x 7 . '034' => '34:'x7 . '34', ); diag "create a ticket via web and set IP" if $ENV{'TEST_VERBOSE'}; { for my $ip ( keys %valid ) { ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $ip, } ); $agent->content_contains( $valid{$ip}, "IP on the page" ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), $valid{$ip}, 'correct value' ); my $tickets = RT::Tickets->new($RT::SystemUser); $tickets->FromSQL("id = $id AND CF.{IP} = '$ip'"); ok( $tickets->Count, "found tickets" ); } } diag "create a ticket and edit IP field using Edit page" if $ENV{'TEST_VERBOSE'}; { my $ip = 'abcd::034'; ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $cf_field = "Object-RT::Ticket-$id-CustomField-$cf_id-Values"; $agent->follow_link_ok( { text => 'Basics', n => "1" }, "Followed 'Basics' link" ); $agent->form_name('TicketModify'); is( $agent->value($cf_field), '', 'IP is empty' ); $agent->field( $cf_field => $valid{$ip} ); $agent->click('SubmitTicket'); $agent->content_contains( $valid{$ip}, "IP on the page" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); my $values = $ticket->CustomFieldValues('IP'); is( $ticket->FirstCustomFieldValue('IP'), $valid{$ip}, 'correct value' ); diag "set IP with spaces around" if $ENV{'TEST_VERBOSE'}; my $new_ip = '::3141'; $agent->follow_link_ok( { text => 'Basics', n => "1" }, "Followed 'Basics' link" ); $agent->form_name('TicketModify'); is( $agent->value($cf_field), $valid{$ip}, 'IP is in input box' ); $agent->field( $cf_field => $new_ip ); $agent->click('SubmitTicket'); $agent->content_contains( $new_ip, "IP on the page" ); $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), $new_ip, 'correct value' ); } diag "check that we parse correct IPs only" if $ENV{'TEST_VERBOSE'}; { my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; my @invalid = ( 'abcd:', 'efgh', 'abcd:' x 8 . 'abcd', 'abcd::abcd::abcd' ); for my $invalid (@invalid) { ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $invalid, } ); $agent->content_contains( 'is not a valid IP address', 'ticket fails to create' ); } } diag "create two tickets with different IPs and check several searches" if $ENV{'TEST_VERBOSE'}; { ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => 'abcd::', } ); my ($id1) = $agent->content =~ /Ticket (\d+) created/; ok( $id1, "created first ticket $id1" ); ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => 'bbcd::', } ); my ($id2) = $agent->content =~ /Ticket (\d+) created/; ok( $id2, "created second ticket $id2" ); my $tickets = RT::Tickets->new($RT::SystemUser); $tickets->FromSQL("id = $id1 OR id = $id2"); is( $tickets->Count, 2, "found both tickets by 'id = x OR y'" ); # IP $tickets = RT::Tickets->new($RT::SystemUser); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'abcd::'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), 'abcd::', "correct value" ); $tickets = RT::Tickets->new($RT::SystemUser); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'bbcd::'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), 'bbcd::', "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} <= 'abcd::'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), 'abcd::', "correct value" ); $tickets = RT::Tickets->new($RT::SystemUser); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} >= 'bbcd::'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), 'bbcd::', "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} > 'bbcd::'"); is( $tickets->Count, 0, "no tickets found" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} < 'abcd::'"); is( $tickets->Count, 0, "no tickets found" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} < 'bbcd::'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), 'abcd::', "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} > 'abcd::'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), 'bbcd::', "correct value" ); } diag "create a ticket with an IP of abcd:23:: and search for doesn't match 'abcd:23'." if $ENV{'TEST_VERBOSE'}; { ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'local', $cf_field => 'abcd:23::', } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created first ticket $id" ); my $tickets = RT::Tickets->new($RT::SystemUser); warning_like { $tickets->FromSQL("id=$id AND CF.{IP} NOT LIKE 'abcd:23'"); } [qr/not a valid IPAddress/], "caught warning about IPAddress"; TODO: { local $TODO = "partial ip parse can causes ambiguity"; is( $tickets->Count, 0, "should not have found the ticket" ); } } undef $agent; done_testing; rt-4.4.2/t/customfields/unique_values.t0000664000175000017500000000400013131430353020042 0ustar vagrantvagrantuse warnings; use strict; use RT::Test tests => undef; { diag "testing freeform single cf"; my $unique_single = RT::Test->load_or_create_custom_field( Name => 'unique single', Type => 'FreeformSingle', Queue => 0, UniqueValues => 1, ); ok($unique_single->UniqueValues, 'unique values for this CF'); my @tests = ( ['foo', 'bar'], # Content [('foo' x 256), ('bar' x 256)], # LargeContent ); for (@tests) { my ($foo, $bar) = @$_; my $alpha = RT::Test->create_ticket( Subject => 'test unique values alpha', Queue => 'General' ); my $beta = RT::Test->create_ticket( Subject => 'test unique values beta', Queue => 'General' ); my ( $ret, $msg ) = $alpha->AddCustomFieldValue( Field => $unique_single, Value => $foo ); ok( $ret, $msg ); is( $alpha->FirstCustomFieldValue($unique_single), $foo, 'value is foo' ); ( $ret, $msg ) = $beta->AddCustomFieldValue( Field => $unique_single, Value => $foo ); ok( !$ret, "can't reuse the OCFV 'foo'"); like($msg, qr/That is not a unique value/); is( $beta->FirstCustomFieldValue($unique_single), undef, 'no value since it was a duplicate' ); ( $ret, $msg ) = $alpha->AddCustomFieldValue( Field => $unique_single, Value => $bar ); ok( $ret, $msg ); is( $alpha->FirstCustomFieldValue($unique_single), $bar, 'value is now bar' ); ( $ret, $msg ) = $beta->AddCustomFieldValue( Field => $unique_single, Value => $foo ); ok( $ret, "can reuse foo since alpha switched away"); is( $beta->FirstCustomFieldValue($unique_single), $foo, 'now beta has foo' ); ( $ret, $msg ) = $alpha->AddCustomFieldValue( Field => $unique_single, Value => $foo ); ok( !$ret, "alpha can't switch back to foo since beta uses it"); is( $alpha->FirstCustomFieldValue($unique_single), $bar, 'value is still bar' ); } } done_testing; rt-4.4.2/t/customfields/datetime.t0000664000175000017500000000453713131430353016770 0ustar vagrantvagrantuse Test::MockTime qw(set_fixed_time restore_time); use warnings; use strict; use RT::Test tests => undef; RT::Test->set_rights( { Principal => 'Everyone', Right => [qw( SeeQueue ShowTicket CreateTicket SeeCustomField ModifyCustomField )] }, ); my $q = RT::Test->load_or_create_queue( Name => 'General' ); ok $q && $q->id, 'loaded or created a queue'; my $user_m = RT::Test->load_or_create_user( Name => 'moscow', Timezone => 'Europe/Moscow' ); ok $user_m && $user_m->id; my $user_b = RT::Test->load_or_create_user( Name => 'boston', Timezone => 'America/New_York' ); ok $user_b && $user_b->id; my $cf_name = 'A Date and Time'; my $cf; { $cf = RT::CustomField->new(RT->SystemUser); ok( $cf->Create( Name => $cf_name, Type => 'DateTime', MaxValues => 1, LookupType => RT::Ticket->CustomFieldLookupType, ), 'create cf date' ); ok( $cf->AddToObject($q), 'date cf apply to queue' ); } { my $ticket = RT::Ticket->new( RT::CurrentUser->new( $user_m ) ); my ($id) = $ticket->Create( Queue => $q->id, Subject => 'Test', 'CustomField-'. $cf->id => '2013-02-11 00:00:00', ); my $cf_value = $ticket->CustomFieldValues($cf_name)->First; TODO: { local $TODO = 'questionable result, should we change?'; # $Ticket->Created returns UTC, not user's date, but # ticket has ->CreatedObj method to get all required # transformation # No more TODO. is( $cf_value->Content, '2013-02-11 00:00:00', 'correct value' ); } is( $cf_value->Content, '2013-02-10 20:00:00', 'correct value' ); $ticket = RT::Ticket->new( RT::CurrentUser->new( $user_b ) ); $ticket->Load($id); is( $ticket->FirstCustomFieldValue($cf_name), '2013-02-10 20:00:00', 'correct value' ); } # in moscow it's already Feb 11, so tomorrow is Feb 12 set_fixed_time("2013-02-10T23:10:00Z"); { my $ticket = RT::Ticket->new( RT::CurrentUser->new( $user_m ) ); my ($id) = $ticket->Create( Queue => $q->id, Subject => 'Test', 'CustomField-'. $cf->id => 'tomorrow', ); my $cf_value = $ticket->CustomFieldValues($cf_name)->First; is( $cf_value->Content, '2013-02-11 23:10:00', 'correct value' ); } done_testing(); rt-4.4.2/t/customfields/combo_cascade.t0000664000175000017500000000161413131430353017727 0ustar vagrantvagrantuse warnings; use strict; use RT::Test nodata => 1, tests => 11; my $q = RT::Queue->new($RT::SystemUser); works($q->Create(Name => "CF-Pattern-".$$)); my $cf = RT::CustomField->new($RT::SystemUser); my @cf_args = (Name => $q->Name, Type => 'Combobox', Queue => $q->id); works($cf->Create(@cf_args)); # Set some CFVs with Category markers my $t = RT::Ticket->new($RT::SystemUser); my ($id,undef,$msg) = $t->Create(Queue => $q->id, Subject => 'CF Test'); works($id,$msg); sub add_works { works( $cf->AddValue(Name => $_[0], Description => $_[0], Category => $_[1]) ); }; add_works('value1', '1. Category A'); add_works('value2'); add_works('value3', '1.1. A-sub one'); add_works('value4', '1.2. A-sub two'); add_works('value5', ''); my $cfv = $cf->Values->First; is($cfv->Category, '1. Category A'); works($cfv->SetCategory('1. Category AAA')); is($cfv->Category, '1. Category AAA'); rt-4.4.2/t/customfields/transaction.t0000664000175000017500000000251213131430353017510 0ustar vagrantvagrant use warnings; use strict; use Data::Dumper; use RT::Test nodata => 1, tests => 13; use_ok('RT'); use_ok('RT::Transactions'); my $q = RT::Queue->new(RT->SystemUser); my ($id,$msg) = $q->Create( Name => 'TxnCFTest'.$$); ok($id,$msg); my $cf = RT::CustomField->new(RT->SystemUser); ($id,$msg) = $cf->Create(Name => 'Txnfreeform-'.$$, Type => 'Freeform', MaxValues => '0', LookupType => RT::Transaction->CustomFieldLookupType ); ok($id,$msg); ($id,$msg) = $cf->AddToObject($q); ok($id,$msg); my $ticket = RT::Ticket->new(RT->SystemUser); my $transid; ($id,$transid, $msg) = $ticket->Create(Queue => $q->id, Subject => 'TxnCF test', ); ok($id,$msg); my $trans = RT::Transaction->new(RT->SystemUser); $trans->Load($transid); is($trans->ObjectId,$id); is ($trans->ObjectType, 'RT::Ticket'); is ($trans->Type, 'Create'); my $txncfs = $trans->CustomFields; is ($txncfs->Count, 1, "We have one custom field"); my $txn_cf = $txncfs->First; is ($txn_cf->id, $cf->id, "It's the right custom field"); my $values = $trans->CustomFieldValues($txn_cf->id); is ($values->Count, 0, "It has no values"); $trans->UpdateCustomFields( 'CustomField-'.$cf->id => 'Test'); $values = $trans->CustomFieldValues($txn_cf->id); is ($values->Count, 1, "it has a value"); # TODO ok(0, "Should updating custom field values remove old values?"); rt-4.4.2/t/customfields/access_via_queue.t0000664000175000017500000001337313131430353020476 0ustar vagrantvagrant use strict; use warnings; use RT::Test nodata => 1, tests => 47; use RT::Ticket; use RT::CustomField; my $queue_name = "CFSortQueue-$$"; my $queue = RT::Test->load_or_create_queue( Name => $queue_name ); ok($queue && $queue->id, "$queue_name - test queue creation"); diag "create a CF"; my $cf_name = "Rights$$"; my $cf; { $cf = RT::CustomField->new( RT->SystemUser ); my ($ret, $msg) = $cf->Create( Name => $cf_name, Queue => $queue->id, Type => 'FreeformSingle', ); ok($ret, "Custom Field Order created"); } my $tester = RT::Test->load_or_create_user( Name => 'tester', Password => 'password', ); ok $tester && $tester->id, 'loaded or created user'; my $cc_role = $queue->RoleGroup( 'Cc' ); my $owner_role = $queue->RoleGroup( 'Owner' ); ok( RT::Test->set_rights( { Principal => $tester, Right => [qw(SeeQueue ShowTicket CreateTicket ReplyToTicket Watch OwnTicket TakeTicket)] }, { Principal => $cc_role, Object => $queue, Right => [qw(SeeCustomField)] }, { Principal => $owner_role, Object => $queue, Right => [qw(ModifyCustomField)] }, ), 'set rights'); { my $ticket = RT::Ticket->new( $tester ); my ($tid, $msg) = $ticket->Create( Queue => $queue, Subject => 'test' ); ok $tid, "created ticket"; ok !$ticket->CustomFields->First, "see no fields"; } { my $ticket = RT::Ticket->new( $tester ); my ($tid, $msg) = $ticket->Create( Queue => $queue, Subject => 'test', Cc => $tester->id ); ok $tid, "created ticket"; my $cf = $ticket->CustomFields->First; ok $cf, "Ccs see cf"; } { my $ticket = RT::Ticket->new( $tester ); my ($tid, $msg) = $ticket->Create( Queue => $queue, Subject => 'test', Cc => $tester->id ); ok $tid, "created ticket"; (my $status, $msg) = $ticket->AddCustomFieldValue( Field => $cf->Name, Value => 'test' ); ok !$status, "Can not change CF"; } { my $ticket = RT::Ticket->new( $tester ); my ($tid, $msg) = $ticket->Create( Queue => $queue, Subject => 'test', Cc => $tester->id, Owner => $tester->id ); ok $tid, "created ticket"; (my $status, $msg) = $ticket->AddCustomFieldValue( Field => $cf->Name, Value => 'test' ); ok $status, "Changed CF"; is $ticket->FirstCustomFieldValue( $cf->Name ), 'test'; ($status, $msg) = $ticket->DeleteCustomFieldValue( Field => $cf->Name, Value => 'test' ); ok $status, "Changed CF"; is $ticket->FirstCustomFieldValue( $cf->Name ), undef; } { my $ticket = RT::Ticket->new( $tester ); my ($tid, $msg) = $ticket->Create( Queue => $queue, Subject => 'test', Cc => $tester->id, Owner => $tester->id ); ok $tid, "created ticket"; (my $status, $msg) = $ticket->AddCustomFieldValue( Field => $cf->id, Value => 'test' ); ok $status, "Changed CF"; is $ticket->FirstCustomFieldValue( $cf->id ), 'test'; ($status, $msg) = $ticket->DeleteCustomFieldValue( Field => $cf->id, Value => 'test' ); ok $status, "Changed CF"; is $ticket->FirstCustomFieldValue( $cf->id ), undef; } my ($baseurl, $m) = RT::Test->started_ok; ok $m->login( tester => 'password' ), 'logged in'; diag "check that we don't have the cf on create"; { $m->submit_form( form_name => "CreateTicketInQueue", fields => { Queue => $queue->Name }, ); my $form = $m->form_name("TicketCreate"); my $cf_field = "Object-RT::Ticket--CustomField-". $cf->id ."-Value"; ok !$form->find_input( $cf_field ), 'no form field on the page'; $m->submit_form( form_name => "TicketCreate", fields => { Subject => 'test' }, ); my ($tid) = ($m->content =~ /Ticket (\d+) created/i); ok $tid, "created a ticket succesfully"; $m->content_lacks($cf_name, "don't see CF"); $m->follow_link( id => 'page-basics'); $form = $m->form_name('TicketModify'); $cf_field = "Object-RT::Ticket-$tid-CustomField-". $cf->id ."-Value"; ok !$form->find_input( $cf_field ), 'no form field on the page'; } diag "check that we see CF as Cc"; { my $ticket = RT::Ticket->new( $tester ); my ($tid, $msg) = $ticket->Create( Queue => $queue, Subject => 'test', Cc => $tester->id ); ok $tid, "created ticket"; ok $m->goto_ticket( $tid ), "opened ticket"; $m->content_contains($cf_name, "see CF"); } diag "check that owner can see and edit CF"; { my $ticket = RT::Ticket->new( $tester ); my ($tid, $msg) = $ticket->Create( Queue => $queue, Subject => 'test', Cc => $tester->id, Owner => $tester->id ); ok $tid, "created ticket"; ok $m->goto_ticket( $tid ), "opened ticket"; $m->content_contains($cf_name, "see CF"); $m->follow_link( id => 'page-basics'); my $form = $m->form_name('TicketModify'); my $cf_field = "Object-RT::Ticket-$tid-CustomField-". $cf->id ."-Value"; ok $form->find_input( $cf_field ), 'form field on the page'; $m->submit_form( form_name => 'TicketModify', fields => { $cf_field => "changed cf", }, ); ok $m->goto_ticket( $tid ), "opened ticket"; $m->content_contains($cf_name, "changed cf"); } note 'make sure CF is not reset to no value'; { my $t = RT::Test->create_ticket( Queue => $queue->id, Subject => 'test', 'CustomField-'.$cf->id => '2012-02-12', Cc => $tester->id, Owner => $tester->id, ); ok $t && $t->id, 'created ticket'; is $t->FirstCustomFieldValue($cf_name), '2012-02-12'; $m->goto_ticket($t->id); $m->follow_link_ok({id => 'page-basics'}); my $form = $m->form_name('TicketModify'); my $input = $form->find_input( 'Object-RT::Ticket-'. $t->id .'-CustomField-'. $cf->id .'-Value' ); ok $input, 'found input'; $m->click('SubmitTicket'); my $tid = $t->id; $t = RT::Ticket->new( $RT::SystemUser ); $t->Load( $tid ); is $t->FirstCustomFieldValue($cf_name), '2012-02-12'; } rt-4.4.2/t/customfields/api.t0000664000175000017500000002765513131430353015753 0ustar vagrantvagrant use strict; use warnings FATAL => 'all'; use RT::Test nodata => 1, tests => 157; use Test::Warn; # Before we get going, ditch all object_cfs; this will remove # all custom fields systemwide; my $object_cfs = RT::ObjectCustomFields->new(RT->SystemUser); $object_cfs->UnLimit(); while (my $ocf = $object_cfs->Next) { $ocf->Delete(); } my $queue = RT::Queue->new( RT->SystemUser ); $queue->Create( Name => 'RecordCustomFields-'.$$ ); ok ($queue->id, "Created the queue"); my $queue2 = RT::Queue->new( RT->SystemUser ); $queue2->Create( Name => 'RecordCustomFields2' ); my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Create( Queue => $queue->Id, Requestor => 'root@localhost', Subject => 'RecordCustomFields1', ); my $cfs = $ticket->CustomFields; is( $cfs->Count, 0 ); # Check that record has no any CF values yet my $cfvs = $ticket->CustomFieldValues; is( $cfvs->Count, 0 ); is( $ticket->FirstCustomFieldValue, undef ); my $local_cf1 = RT::CustomField->new( RT->SystemUser ); $local_cf1->Create( Name => 'RecordCustomFields1-'.$$, Type => 'SelectSingle', Queue => $queue->id ); $local_cf1->AddValue( Name => 'RecordCustomFieldValues11' ); $local_cf1->AddValue( Name => 'RecordCustomFieldValues12' ); my $local_cf2 = RT::CustomField->new( RT->SystemUser ); $local_cf2->Create( Name => 'RecordCustomFields2-'.$$, Type => 'SelectSingle', Queue => $queue->id ); $local_cf2->AddValue( Name => 'RecordCustomFieldValues21' ); $local_cf2->AddValue( Name => 'RecordCustomFieldValues22' ); my $global_cf3 = RT::CustomField->new( RT->SystemUser ); $global_cf3->Create( Name => 'RecordCustomFields3-'.$$, Type => 'SelectSingle', Queue => 0 ); $global_cf3->AddValue( Name => 'RecordCustomFieldValues31' ); $global_cf3->AddValue( Name => 'RecordCustomFieldValues32' ); my $local_cf4 = RT::CustomField->new( RT->SystemUser ); $local_cf4->Create( Name => 'RecordCustomFields4', Type => 'SelectSingle', Queue => $queue2->id ); $local_cf4->AddValue( Name => 'RecordCustomFieldValues41' ); $local_cf4->AddValue( Name => 'RecordCustomFieldValues42' ); my @custom_fields = ($local_cf1, $local_cf2, $global_cf3); $cfs = $ticket->CustomFields; is( $cfs->Count, 3 ); # Check that record has no any CF values yet $cfvs = $ticket->CustomFieldValues; is( $cfvs->Count, 0 ); is( $ticket->FirstCustomFieldValue, undef ); # CF with ID -1 shouldnt exist at all warning_like { $cfvs = $ticket->CustomFieldValues( -1 ); } qr{Couldn't load custom field}; is( $cfvs->Count, 0 ); warning_like { is( $ticket->FirstCustomFieldValue( -1 ), undef ); } qr{Couldn't load custom field}; warning_like { $cfvs = $ticket->CustomFieldValues( 'SomeUnexpedCustomFieldName' ); } qr{Couldn't load custom field}; is( $cfvs->Count, 0 ); warning_like { is( $ticket->FirstCustomFieldValue( 'SomeUnexpedCustomFieldName' ), undef ); } qr{Couldn't load custom field}; for (@custom_fields) { $cfvs = $ticket->CustomFieldValues( $_->id ); is( $cfvs->Count, 0 ); $cfvs = $ticket->CustomFieldValues( $_->Name ); is( $cfvs->Count, 0 ); is( $ticket->FirstCustomFieldValue( $_->id ), undef ); is( $ticket->FirstCustomFieldValue( $_->Name ), undef ); } # try to add field value with fields that do not exist my ($status, $msg) = $ticket->AddCustomFieldValue( Field => -1 , Value => 'foo' ); ok(!$status, "shouldn't add value" ); ($status, $msg) = $ticket->AddCustomFieldValue( Field => 'SomeUnexpedCustomFieldName' , Value => 'foo' ); ok(!$status, "shouldn't add value" ); SKIP: { skip "TODO: We want fields that are not allowed to set unexpected values", 10; for (@custom_fields) { ($status, $msg) = $ticket->AddCustomFieldValue( Field => $_ , Value => 'SomeUnexpectedCFValue' ); ok( !$status, 'value doesn\'t exist'); ($status, $msg) = $ticket->AddCustomFieldValue( Field => $_->id , Value => 'SomeUnexpectedCFValue' ); ok( !$status, 'value doesn\'t exist'); ($status, $msg) = $ticket->AddCustomFieldValue( Field => $_->Name , Value => 'SomeUnexpectedCFValue' ); ok( !$status, 'value doesn\'t exist'); } # Let check that we did not add value to be sure # using only FirstCustomFieldValue sub because # we checked other variants allready for (@custom_fields) { is( $ticket->FirstCustomFieldValue( $_->id ), undef ); } } # Add some values to our custom fields for (@custom_fields) { # this should be tested elsewhere $_->AddValue( Name => 'Foo' ); $_->AddValue( Name => 'Bar' ); } my $test_add_delete_cycle = sub { my $cb = shift; for (@custom_fields) { ($status, $msg) = $ticket->AddCustomFieldValue( Field => $cb->($_) , Value => 'Foo' ); ok( $status, "message: $msg"); } # does it exist? $cfvs = $ticket->CustomFieldValues; is( $cfvs->Count, 3, "We found all three custom fields on our ticket" ); for (@custom_fields) { $cfvs = $ticket->CustomFieldValues( $_->id ); is( $cfvs->Count, 1 , "we found one custom field when searching by id"); $cfvs = $ticket->CustomFieldValues( $_->Name ); is( $cfvs->Count, 1 , " We found one custom field when searching by name for " . $_->Name); is( $ticket->FirstCustomFieldValue( $_->id ), 'Foo' , "first value by id is foo"); is( $ticket->FirstCustomFieldValue( $_->Name ), 'Foo' , "first value by name is foo"); } # because our CFs are SingleValue then new value addition should override for (@custom_fields) { ($status, $msg) = $ticket->AddCustomFieldValue( Field => $_ , Value => 'Bar' ); ok( $status, "message: $msg"); } $cfvs = $ticket->CustomFieldValues; is( $cfvs->Count, 3 ); for (@custom_fields) { $cfvs = $ticket->CustomFieldValues( $_->id ); is( $cfvs->Count, 1 ); $cfvs = $ticket->CustomFieldValues( $_->Name ); is( $cfvs->Count, 1 ); is( $ticket->FirstCustomFieldValue( $_->id ), 'Bar' ); is( $ticket->FirstCustomFieldValue( $_->Name ), 'Bar' ); } # delete it for (@custom_fields ) { ($status, $msg) = $ticket->DeleteCustomFieldValue( Field => $_ , Value => 'Bar' ); ok( $status, "Deleted a custom field value 'Bar' for field ".$_->id.": $msg"); } $cfvs = $ticket->CustomFieldValues; is( $cfvs->Count, 0, "The ticket (".$ticket->id.") no longer has any custom field values" ); for (@custom_fields) { $cfvs = $ticket->CustomFieldValues( $_->id ); is( $cfvs->Count, 0, $ticket->id." has no values for cf ".$_->id ); $cfvs = $ticket->CustomFieldValues( $_->Name ); is( $cfvs->Count, 0 , $ticket->id." has no values for cf '".$_->Name. "'" ); is( $ticket->FirstCustomFieldValue( $_->id ), undef , "There is no first custom field value when loading by id" ); is( $ticket->FirstCustomFieldValue( $_->Name ), undef, "There is no first custom field value when loading by Name" ); } }; # lets test cycle via CF id $test_add_delete_cycle->( sub { return $_[0]->id } ); # lets test cycle via CF object reference $test_add_delete_cycle->( sub { return $_[0] } ); $ticket->AddCustomFieldValue( Field => $local_cf2->id , Value => 'Baz' ); $ticket->AddCustomFieldValue( Field => $global_cf3->id , Value => 'Baz' ); # now if we ask for cf values on RecordCustomFields4 we should not get any warning_like { $cfvs = $ticket->CustomFieldValues( 'RecordCustomFields4' ); } qr{Couldn't load custom field}; is( $cfvs->Count, 0, "No custom field values for non-Queue cf" ); warning_like { is( $ticket->FirstCustomFieldValue( 'RecordCustomFields4' ), undef, "No first custom field value for non-Queue cf" ); } qr{Couldn't load custom field}; { my $cfname = $global_cf3->Name; ($status, $msg) = $global_cf3->SetDisabled(1); ok($status, "Disabled CF named $cfname"); my $load = RT::CustomField->new( RT->SystemUser ); $load->LoadByName( Name => $cfname); ok($load->Id, "Loaded CF named $cfname"); is($load->Id, $global_cf3->Id, "Can load disabled CFs"); my $dup = RT::CustomField->new( RT->SystemUser ); $dup->Create( Name => $cfname, Type => 'SelectSingle', Queue => 0 ); ok($dup->Id, "Created CF with duplicate name"); $load->LoadByName( Name => $cfname); is($load->Id, $dup->Id, "Loading by name gets non-disabled first"); $dup->SetDisabled(1); $global_cf3->SetDisabled(0); $load->LoadByName( Name => $cfname); is($load->Id, $global_cf3->Id, "Loading by name gets non-disabled first, even with order swapped"); } #SKIP: { # skip "TODO: should we add CF values to objects via CF Name?", 48; # names are not unique # lets test cycle via CF Name # $test_add_delete_cycle->( sub { return $_[0]->Name } ); #} # These represent adding the custom field to all objects my $all_queues = RT::Queue->new( RT->SystemUser ); my $all_classes = RT::Class->new( RT->SystemUser ); # Queue CustomField Message Test { my $queue = RT::Queue->new( RT->SystemUser ); $queue->Create( Name => 'queue_name_0' ); my $custom_field = RT::CustomField->new( RT->SystemUser ); $custom_field->Create( Name => 'custom_field_0', Type => 'SelectSingle', LookupType => 'RT::Queue' ); my ($status, $msg) = $custom_field->AddToObject( $queue ); is($msg, 'Added custom field custom_field_0 to queue_name_0.', "Adding custom field to queue produces appropriate message"); ($status, $msg) = $custom_field->RemoveFromObject( $queue ); is($msg, 'Removed custom field custom_field_0 from queue_name_0.', "Removing custom field from queue produces appropriate message"); ($status, $msg) = $custom_field->AddToObject( $all_queues ); is($msg, 'Globally added custom field custom_field_0.', "Adding custom field globally produces appropriate message"); ($status, $msg) = $custom_field->RemoveFromObject( $all_queues ); is($msg, 'Globally removed custom field custom_field_0.', "Rmeoving custom field globally produces appropriate message"); } # Ticket CustomField Message Test { my $queue = RT::Queue->new( RT->SystemUser ); $queue->Create( Name => 'queue_name_1' ); my $custom_field = RT::CustomField->new( RT->SystemUser ); $custom_field->Create( Name => 'custom_field_1', Type => 'SelectSingle', LookupType => 'RT::Queue-RT::Ticket' ); my ($status, $msg) = $custom_field->AddToObject( $queue ); is($msg, 'Added custom field custom_field_1 to queue_name_1.', "Adding custom field to queue-ticket produces appropriate message"); ($status, $msg) = $custom_field->RemoveFromObject( $queue ); is($msg, 'Removed custom field custom_field_1 from queue_name_1.', "Removing custom field from queue produces appropriate message"); ($status, $msg) = $custom_field->AddToObject( $all_queues ); is($msg, 'Globally added custom field custom_field_1.', "Adding custom field globally produces appropriate message"); ($status, $msg) = $custom_field->RemoveFromObject( $all_queues ); is($msg, 'Globally removed custom field custom_field_1.', "Removing custom field globally produces appropriate message"); } # Class CustomField Message Test { my $class = RT::Class->new( RT->SystemUser ); $class->Create( Name => 'class_name_0' ); my $custom_field = RT::CustomField->new( RT->SystemUser ); $custom_field->Create( Name => 'custom_field_2', Type => 'SelectSingle', LookupType => 'RT::Class-RT::Article' ); my ($status, $msg) = $custom_field->AddToObject( $class ); is($msg, 'Added custom field custom_field_2 to class_name_0.', "Adding custom field to class-ticket produces appropriate message"); ($status, $msg) = $custom_field->RemoveFromObject( $class ); is($msg, 'Removed custom field custom_field_2 from class_name_0.', "Remove custom field from class produces appropriate message"); ($status, $msg) = $custom_field->AddToObject( $all_classes ); is($msg, 'Globally added custom field custom_field_2.', "Adding custom field globally produces appropriate message"); ($status, $msg) = $custom_field->RemoveFromObject( $all_classes ); is($msg, 'Globally removed custom field custom_field_2.', "Removing custom field globally produces appropriate message"); } rt-4.4.2/t/customfields/ip.t0000664000175000017500000002305413131430353015577 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => undef; use Test::Warn; my ( $baseurl, $agent ) = RT::Test->started_ok; ok( $agent->login, 'log in' ); my $q = RT::Queue->new($RT::SystemUser); $q->Load('General'); my $ip_cf = RT::CustomField->new($RT::SystemUser); my ( $val, $msg ) = $ip_cf->Create( Name => 'IP', Type => 'IPAddress', LookupType => 'RT::Queue-RT::Ticket' ); ok( $val, $msg ); my $cf_id = $val; $ip_cf->AddToObject($q); use_ok('RT'); my $cf; diag "load and check basic properties of the IP CF" if $ENV{'TEST_VERBOSE'}; { my $cfs = RT::CustomFields->new($RT::SystemUser); $cfs->Limit( FIELD => 'Name', VALUE => 'IP', CASESENSITIVE => 0 ); is( $cfs->Count, 1, "found one CF with name 'IP'" ); $cf = $cfs->First; is( $cf->Type, 'IPAddress', 'type check' ); is( $cf->LookupType, 'RT::Queue-RT::Ticket', 'lookup type check' ); ok( !$cf->MaxValues, "unlimited number of values" ); ok( !$cf->Disabled, "not disabled" ); } diag "check that CF applies to queue General" if $ENV{'TEST_VERBOSE'}; { my $cfs = $q->TicketCustomFields; $cfs->Limit( FIELD => 'id', VALUE => $cf->id, ENTRYAGGREGATOR => 'AND' ); is( $cfs->Count, 1, 'field applies to queue' ); } diag "create a ticket via web and set IP" if $ENV{'TEST_VERBOSE'}; { my $val = '192.168.20.1'; ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $val, } ); $agent->content_contains( $val, "IP on the page" ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), $val, 'correct value' ); } diag "create a ticket and edit IP field using Edit page" if $ENV{'TEST_VERBOSE'}; { my $val = '172.16.0.1'; ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $cf_field = "Object-RT::Ticket-$id-CustomField-$cf_id-Values"; $agent->follow_link_ok( { text => 'Basics', n => "1" }, "Followed 'Basics' link" ); $agent->form_name('TicketModify'); is( $agent->value($cf_field), '', 'IP is empty' ); $agent->field( $cf_field => $val ); $agent->click('SubmitTicket'); $agent->content_contains( $val, "IP on the page" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), '172.16.0.1' ); diag "set IP with spaces around" if $ENV{'TEST_VERBOSE'}; $val = " 172.16.0.2 \n "; $agent->follow_link_ok( { text => 'Basics', n => "1" }, "Followed 'Basics' link" ); $agent->form_name('TicketModify'); is( $agent->value($cf_field), '172.16.0.1', 'IP is in input box' ); $agent->field( $cf_field => $val ); $agent->click('SubmitTicket'); $agent->content_contains( '172.16.0.2', "IP on the page" ); $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), '172.16.0.2', 'correct value' ); } diag "check that we parse correct IPs only" if $ENV{'TEST_VERBOSE'}; { my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; for my $valid (qw/1.0.0.0 255.255.255.255/) { ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $valid, } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); is( $ticket->id, $id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), $valid, 'correct value' ); } for my $invalid (qw{255.255.255.256 355.255.255.255 8.13.8/8.13.0/1.0}) { ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $invalid, } ); $agent->content_contains( 'is not a valid IP address', 'ticket fails to create' ); } } diag "search tickets by IP" if $ENV{'TEST_VERBOSE'}; { my $val = '172.16.1.1'; ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $val, } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); my $tickets = RT::Tickets->new($RT::SystemUser); $tickets->FromSQL("id = $id AND CF.{IP} = '172.16.1.1'"); ok( $tickets->Count, "found tickets" ); } diag "create two tickets with different IPs and check several searches" if $ENV{'TEST_VERBOSE'}; { ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => '192.168.21.10', } ); my ($id1) = $agent->content =~ /Ticket (\d+) created/; ok( $id1, "created first ticket $id1" ); ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => '192.168.22.10', } ); my ($id2) = $agent->content =~ /Ticket (\d+) created/; ok( $id2, "created second ticket $id2" ); my $tickets = RT::Tickets->new($RT::SystemUser); $tickets->FromSQL("id = $id1 OR id = $id2"); is( $tickets->Count, 2, "found both tickets by 'id = x OR y'" ); # IP $tickets = RT::Tickets->new($RT::SystemUser); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.21.10'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.21.10', "correct value" ); $tickets = RT::Tickets->new($RT::SystemUser); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '192.168.22.10'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.22.10', "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} <= '192.168.21.10'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.21.10', "correct value" ); $tickets = RT::Tickets->new($RT::SystemUser); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} >= '192.168.22.10'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.22.10', "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} > '192.168.22.10'"); is( $tickets->Count, 0, "no tickets found" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} < '192.168.21.10'"); is( $tickets->Count, 0, "no tickets found" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} < '192.168.22.10'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.21.10', "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} > '192.168.21.10'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), '192.168.22.10', "correct value" ); } diag "create a ticket with an IP of 10.0.0.1 and search for doesn't match '10.0.0.'." if $ENV{'TEST_VERBOSE'}; { ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'local', $cf_field => '10.0.0.1', } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created first ticket $id" ); my $tickets = RT::Tickets->new($RT::SystemUser); warning_like { $tickets->FromSQL("id=$id AND CF.{IP} NOT LIKE '10.0.0.'"); } [qr/not a valid IPAddress/], "caught warning about valid IP address"; TODO: { local $TODO = "partial ip parse causes ambiguity"; is( $tickets->Count, 0, "should not have found the ticket" ); } } diag "test the operators in search page" if $ENV{'TEST_VERBOSE'}; { $agent->get_ok( $baseurl . "/Search/Build.html?Query=Queue='General'" ); $agent->content_contains('CF.{IP}', 'got CF.{IP}'); my $form = $agent->form_name('BuildQuery'); my $op = $form->find_input("CF.{IP}Op"); ok( $op, "found CF.{IP}Op" ); is_deeply( [ $op->possible_values ], [ '=', '!=', '<', '>' ], 'op values' ); } undef $agent; done_testing; rt-4.4.2/t/customfields/transaction_searching.t0000664000175000017500000001211013131430353021526 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 'no_declare'; my $initialdata = RT::Test::get_relocatable_file("transaction-cfs" => "..", "data", "initialdata"); my ($rv, $msg) = RT->DatabaseHandle->InsertData( $initialdata, undef, disconnect_after => 0 ); ok($rv, "Inserted test data from $initialdata") or diag "Error: $msg"; create_tickets( Spam => { }, Coffee => { Billable => "No", }, Phone => { Billable => "Yes", Who => ["Telecom", "Information Technology"], When => "2013-06-25", Location => "Geology" }, Stacks => { Billable => "Yes", Who => "Library", When => "2013-06-01" }, Benches => { Billable => "Yes", Location => "Outdoors" }, ); # Sanity check results_are("CF.Location IS NOT NULL", [qw( Phone Benches )]); results_are("CF.Location IS NULL", [qw( Spam Coffee Stacks )]); # TODO: Ideal behaviour of TxnCF IS NULL not yet determined #results_are("TxnCF.Billable IS NULL", [qw( Spam )]); results_are("TxnCF.Billable IS NOT NULL", [qw( Coffee Phone Stacks Benches )]); results_are("TxnCF.Billable = 'No'", [qw( Coffee )]); results_are("TxnCF.Billable = 'Yes'", [qw( Phone Stacks Benches )]); results_are("TxnCF.Billable = 'Yes' AND CF.Location IS NOT NULL", [qw( Phone Benches )]); results_are("TxnCF.Billable = 'Yes' AND CF.Location = 'Outdoors'", [qw( Benches )]); results_are("TxnCF.Billable = 'Yes' AND CF.Location LIKE 'o'", [qw( Phone Benches )]); results_are("TxnCF.Who = 'Telecom' OR TxnCF.Who = 'Library'", [qw( Phone Stacks )]); # TODO: Negative searching finds tickets with at least one txn doesn't have the value #results_are("TxnCF.Who != 'Library'", [qw( Spam Coffee Phone Benches )]); results_are("TxnCF.When > '2013-06-24'", [qw( Phone )]); results_are("TxnCF.When < '2013-06-24'", [qw( Stacks )]); results_are("TxnCF.When >= '2013-06-01' and TxnCF.When <= '2013-06-30'", [qw( Phone Stacks )]); results_are("TxnCF.Who LIKE 'e'", [qw( Phone )]); # TODO: Negative searching finds tickets with at least one txn doesn't have the value #results_are("TxnCF.Who NOT LIKE 'e'", [qw( Spam Coffee Stacks Benches )]); results_are("TxnCF.Who NOT LIKE 'e' and TxnCF.Who IS NOT NULL", [qw( Stacks )]); # Multiple CFs with same name applied to different queues clear_tickets(); create_tickets( BlueNone => { Queue => "Blues" }, PurpleNone => { Queue => "Purples" }, Blue => { Queue => "Blues", Color => "Blue" }, Purple => { Queue => "Purples", Color => "Purple" }, ); # Queue-specific txn CFs results_are("TxnCF.Blues.{Color} = 'Blue'", [qw( Blue )]); results_are("TxnCF.Blues.{Color} = 'Purple'", []); # Multiple transaction CFs by name results_are("TxnCF.{Color} IS NOT NULL", [qw( Blue Purple )]); results_are("TxnCF.{Color} = 'Blue'", [qw( Blue )]); results_are("TxnCF.{Color} = 'Purple'", [qw( Purple )]); results_are("TxnCF.{Color} LIKE 'e'", [qw( Blue Purple )]); done_testing; sub results_are { local $Test::Builder::Level = $Test::Builder::Level + 1; my $query = shift; my $expected = shift; my %expected = map { $_ => 1 } @$expected; my @unexpected; my $tickets = RT::Tickets->new(RT->SystemUser); my ($ok, $msg) = $tickets->FromSQL($query); ok($ok, "Searched: $query") or return diag $msg; for my $t (@{$tickets->ItemsArrayRef || []}) { if (delete $expected{$t->Subject}) { ok(1, "Found expected ticket ".$t->Subject); } else { push @unexpected, $t->Subject; } } ok(0, "Didn't find expected ticket $_") for grep $expected{$_}, @$expected; ok(0, "Found unexpected tickets: ".join ", ", @unexpected) if @unexpected; } sub create_tickets { my %ticket = @_; for my $subject (sort keys %ticket) { my %data = %{$ticket{$subject}}; my $location = delete $data{Location}; my $queue = delete $data{Queue} || "General"; my $ticket = RT::Ticket->new( RT->SystemUser ); my ($ok, $msg) = $ticket->Create( Queue => $queue, Subject => $subject, ); ok($ticket->id, "Created ticket: $msg") or next; if ($location) { ($ok, $msg) = $ticket->AddCustomFieldValue( Field => "Location", Value => $location ); ok($ok, "Added Location: $msg") or next; } my ($txnid, $txnmsg, $txn) = $ticket->Correspond( Content => "test transaction" ); unless ($txnid) { RT->Logger->error("Unable to correspond on ticket $ok: $txnmsg"); next; } for my $name (sort keys %data) { my $values = ref $data{$name} ? $data{$name} : [$data{$name}]; for my $v (@$values) { ($ok, $msg) = $txn->_AddCustomFieldValue( Field => $name, Value => $v, RecordTransaction => 0 ); ok($ok, "Added txn CF $name value '$v'") or diag $msg; } } } } sub clear_tickets { my $tickets = RT::Tickets->new( RT->SystemUser ); $tickets->FromSQL("id > 0"); $_->SetStatus("deleted") for @{$tickets->ItemsArrayRef}; } rt-4.4.2/t/customfields/group_rights.t0000664000175000017500000000451513131430353017704 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; # These tests catch a previous issue that resulted in the CF # canonicalize call failing because an internal cf object lacked # sufficient context to properly do a rights check. my $general = RT::Test->load_or_create_queue( Name => 'General' ); my $staff1 = RT::Test->load_or_create_user( EmailAddress => 'staff1@example.com', Name => 'staff1', Timezone => 'America/New_York'); my $staff2 = RT::Test->load_or_create_user( EmailAddress => 'staff2@example.com', Name => 'staff2', Timezone => 'America/New_York'); my $group = RT::Test->load_or_create_group( 'Staff', Members => [$staff1, $staff2], ); ok( RT::Test->add_rights( { Principal => $group, Object => $general, Right => [ qw(ModifyTicket CreateTicket SeeQueue ShowTicket SeeCustomField ModifyCustomField) ] } )); my $cf_name = 'A Date and Time'; my $cf; { $cf = RT::CustomField->new(RT->SystemUser); ok( $cf->Create( Name => $cf_name, Type => 'DateTime', MaxValues => 1, LookupType => RT::Ticket->CustomFieldLookupType, ), 'create cf date' ); ok( $cf->AddToObject($general), 'date cf apply to queue' ); } diag "Confirm DateTime CF is properly created for root"; { my $ticket = RT::Ticket->new( RT::CurrentUser->new( RT->SystemUser ) ); my ($id) = $ticket->Create( Queue => $general->id, Subject => 'Test', 'CustomField-'. $cf->id => '2016-05-01 00:00:00', ); my $cf_value = $ticket->CustomFieldValues($cf_name)->First; is( $cf_value->Content, '2016-05-01 04:00:00', 'got correct value for datetime' ); } diag "Confirm DateTime CF is properly created for staff1"; { my $ticket = RT::Ticket->new( RT::CurrentUser->new( $staff1 ) ); my ($id) = $ticket->Create( Queue => $general->id, Subject => 'Test', 'CustomField-'. $cf->id => '2016-05-01 00:00:00', ); my $cf_value = $ticket->CustomFieldValues($cf_name)->First; is( $cf_value->Content, '2016-05-01 04:00:00', 'correct value' ); $ticket = RT::Ticket->new( RT::CurrentUser->new( $staff2 ) ); $ticket->Load($id); is( $ticket->FirstCustomFieldValue($cf_name), '2016-05-01 04:00:00', 'staff2 gets correct value' ); } done_testing; rt-4.4.2/t/customfields/date_search.t0000664000175000017500000001220513131430353017425 0ustar vagrantvagrantuse Test::MockTime qw(set_fixed_time restore_time); use warnings; use strict; use RT::Test nodata => 1, tests => undef; RT::Test->set_rights( { Principal => 'Everyone', Right => [qw( SeeQueue ShowTicket CreateTicket SeeCustomField ModifyCustomField )] }, ); my $q = RT::Test->load_or_create_queue( Name => 'General' ); ok $q && $q->id, 'loaded or created a queue'; my $user_m = RT::Test->load_or_create_user( Name => 'moscow', Timezone => 'Europe/Moscow' ); ok $user_m && $user_m->id; $user_m = RT::CurrentUser->new( $user_m ); my $user_b = RT::Test->load_or_create_user( Name => 'boston', Timezone => 'America/New_York' ); ok $user_b && $user_b->id; $user_b = RT::CurrentUser->new( $user_b ); my $cf = RT::CustomField->new(RT->SystemUser); ok( $cf->Create( Name => 'TestDate', Type => 'Date', MaxValues => 1, LookupType => RT::Ticket->CustomFieldLookupType, ), 'create cf date' ); ok( $cf->AddToObject($q), 'date cf apply to queue' ); my $cf_name = $cf->Name; my $ticket = RT::Ticket->new(RT->SystemUser); ok( $ticket->Create( Queue => $q->id, Subject => 'Test', 'CustomField-' . $cf->id => '2010-05-04', ), 'create ticket with cf set to 2010-05-04' ); is( $ticket->CustomFieldValues->First->Content, '2010-05-04', 'date in db is' ); { my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => '=', VALUE => '2010-05-04', ); is( $tickets->Count, 1, 'found the ticket with exact date: 2010-05-04' ); } { my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => '>', VALUE => '2010-05-03', ); is( $tickets->Count, 1, 'found ticket with > 2010-05-03' ); } { my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => '<', VALUE => '2010-05-05', ); is( $tickets->Count, 1, 'found ticket with < 2010-05-05' ); } { my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => '=', VALUE => '2010-05-05', ); is( $tickets->Count, 0, 'did not find the ticket with = 2010-05-05' ); } { my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->FromSQL( "'CF.{$cf_name}' = 'May 4 2010'" ); is( $tickets->Count, 1, 'found the ticket with = May 4 2010' ); $tickets->FromSQL( "'CF.{$cf_name}' < 'May 4 2010'" ); is( $tickets->Count, 0, 'did not find the ticket with < May 4 2010' ); $tickets->FromSQL( "'CF.{$cf_name}' < 'May 5 2010'" ); is( $tickets->Count, 1, 'found the ticket with < May 5 2010' ); $tickets->FromSQL( "'CF.{$cf_name}' > 'May 3 2010'" ); is( $tickets->Count, 1, 'found the ticket with > May 3 2010' ); } { my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => '<', VALUE => '2010-05-03', ); is( $tickets->Count, 0, 'did not find the ticket with < 2010-05-03' ); } { my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => '>', VALUE => '2010-05-05', ); is( $tickets->Count, 0, 'did not find the ticket with > 2010-05-05' ); } { my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => 'IS', VALUE => 'NULL', ); is( $tickets->Count, 0, 'did not find the ticket with date IS NULL' ); } { my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => 'IS NOT', VALUE => 'NULL', ); is( $tickets->Count, 1, 'did find the ticket with date IS NOT NULL' ); } # relative search by users in different TZs { my $ticket = RT::Ticket->new(RT->SystemUser); my ($tid) = $ticket->Create( Queue => $q->id, Subject => 'Test', 'CustomField-' . $cf->id => '2013-02-12', ); set_fixed_time("2013-02-10T23:10:00Z"); my $tickets = RT::Tickets->new($user_m); $tickets->FromSQL("'CustomField.{$cf_name}' = 'tomorrow' AND id = $tid"); is( $tickets->Count, 1, 'found the ticket' ); set_fixed_time("2013-02-10T15:10:00Z"); $tickets = RT::Tickets->new($user_m); $tickets->FromSQL("'CustomField.{$cf_name}' = 'tomorrow' AND id = $tid"); is( $tickets->Count, 0, 'found no tickets' ); set_fixed_time("2013-02-10T23:10:00Z"); $tickets = RT::Tickets->new($user_b); $tickets->FromSQL("'CustomField.{$cf_name}' = 'tomorrow' AND id = $tid"); is( $tickets->Count, 0, 'found no tickets' ); set_fixed_time("2013-02-11T23:10:00Z"); $tickets = RT::Tickets->new($user_b); $tickets->FromSQL("'CustomField.{$cf_name}' = 'tomorrow' AND id = $tid"); is( $tickets->Count, 1, 'found the tickets' ); } done_testing; rt-4.4.2/t/customfields/single_values.t0000664000175000017500000000161313131430353020024 0ustar vagrantvagrantuse warnings; use strict; use RT; use RT::Test nodata => 1, tests => 8; my $q = RT::Queue->new(RT->SystemUser); my ($id,$msg) =$q->Create(Name => "CF-Single-".$$); ok($id,$msg); my $cf = RT::CustomField->new(RT->SystemUser); ($id,$msg) = $cf->Create(Name => 'Single-'.$$, Type => 'Select', MaxValues => '1', Queue => $q->id); ok($id,$msg); ($id,$msg) =$cf->AddValue(Name => 'First'); ok($id,$msg); ($id,$msg) =$cf->AddValue(Name => 'Second'); ok($id,$msg); my $t = RT::Ticket->new(RT->SystemUser); ($id,undef,$msg) = $t->Create(Queue => $q->id, Subject => 'CF Test'); ok($id,$msg); is($t->CustomFieldValues($cf->id)->Count, 0, "No values yet"); $t->AddCustomFieldValue(Field => $cf->id, Value => 'First'); is($t->CustomFieldValues($cf->id)->Count, 1, "One now"); $t->AddCustomFieldValue(Field => $cf->id, Value => 'Second'); is($t->CustomFieldValues($cf->id)->Count, 1, "Still one"); rt-4.4.2/t/customfields/iprangev6.t0000664000175000017500000004252413131430353017073 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 158; my ($baseurl, $agent) =RT::Test->started_ok; ok( $agent->login, 'log in' ); my $q = RT::Queue->new($RT::SystemUser); $q->Load('General'); my $ip_cf = RT::CustomField->new($RT::SystemUser); my ($val,$msg) = $ip_cf->Create(Name => 'IP', Type =>'IPAddressRange', LookupType => 'RT::Queue-RT::Ticket'); ok($val,$msg); my $cf_id = $val; $ip_cf->AddToObject($q); use_ok('RT'); my $cf; diag "load and check basic properties of the IP CF" if $ENV{'TEST_VERBOSE'}; { my $cfs = RT::CustomFields->new( $RT::SystemUser ); $cfs->Limit( FIELD => 'Name', VALUE => 'IP', CASESENSITIVE => 0 ); is( $cfs->Count, 1, "found one CF with name 'IP'" ); $cf = $cfs->First; is( $cf->Type, 'IPAddressRange', 'type check' ); is( $cf->LookupType, 'RT::Queue-RT::Ticket', 'lookup type check' ); ok( !$cf->MaxValues, "unlimited number of values" ); ok( !$cf->Disabled, "not disabled" ); } diag "check that CF applies to queue General" if $ENV{'TEST_VERBOSE'}; { my $cfs = $q->TicketCustomFields; $cfs->Limit( FIELD => 'id', VALUE => $cf->id, ENTRYAGGREGATOR => 'AND' ); is( $cfs->Count, 1, 'field applies to queue' ); } my %valid = ( 'abcd:' x 7 . 'abcd' => 'abcd:' x 7 . 'abcd', '034:' x 7 . '034' => '34:' x 7 . '34', 'abcd::' => 'abcd::', '::abcd' => '::abcd', 'abcd::034' => 'abcd::34', 'abcd::192.168.1.1' => 'abcd::c0a8:101', '::192.168.1.1' => '::c0a8:101', '::' => '::', ); diag "create a ticket via web and set IP" if $ENV{'TEST_VERBOSE'}; { for my $ip ( keys %valid ) { ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $ip, } ); $agent->content_like( qr/$valid{$ip}/, "IP on the page" ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), $valid{$ip}, 'correct value' ); } } diag "create a ticket via web with CIDR" if $ENV{'TEST_VERBOSE'}; { my $val = 'abcd:034::/31'; ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $val, } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), 'abcd:34::-abcd:35:ffff:ffff:ffff:ffff:ffff:ffff', 'correct value' ); } diag "create a ticket and edit IP field using Edit page" if $ENV{'TEST_VERBOSE'}; { my $val = 'abcd' . ':abcd' x 7; ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $cf_field = "Object-RT::Ticket-$id-CustomField-$cf_id-Values"; $agent->follow_link_ok( { text => 'Basics', n => "1" }, "Followed 'Basics' link" ); $agent->form_name('TicketModify'); is( $agent->value($cf_field), '', 'IP is empty' ); $agent->field( $cf_field => $val ); $agent->click('SubmitTicket'); $agent->content_contains( $val, "IP on the page" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), $val, 'correct value' ); diag "set IP with spaces around" if $ENV{'TEST_VERBOSE'}; $agent->follow_link_ok( { text => 'Basics', n => "1" }, "Followed 'Basics' link" ); $agent->form_name('TicketModify'); is( $agent->value($cf_field), $val, 'IP is in input box' ); $val = 'bbcd' . ':abcd' x 7; $agent->field( $cf_field => " $val " ); $agent->click('SubmitTicket'); $agent->content_contains( $val, "IP on the page" ); $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), $val, 'correct value' ); diag "replace IP with a range" if $ENV{'TEST_VERBOSE'}; $agent->follow_link_ok( { text => 'Basics', n => "1" }, "Followed 'Basics' link" ); $agent->form_name('TicketModify'); is( $agent->value($cf_field), $val, 'IP is in input box' ); $val = 'abcd::' . '-' . 'abcd' . ':ffff' x 7; $agent->field( $cf_field => 'abcd::/16' ); $agent->click('SubmitTicket'); $agent->content_contains( $val, "IP on the page" ); $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), $val, 'correct value' ); diag "delete range, add another range using CIDR" if $ENV{'TEST_VERBOSE'}; $agent->follow_link_ok( { text => 'Basics', n => "1" }, "Followed 'Basics' link" ); $agent->form_name('TicketModify'); is( $agent->value($cf_field), $val, 'IP is in input box' ); $val = 'bb::' . '-' . 'bbff' . ':ffff' x 7; $agent->field( $cf_field => $val ); $agent->click('SubmitTicket'); $agent->content_contains( $val, "IP on the page" ); $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); is( $ticket->FirstCustomFieldValue('IP'), $val, 'correct value' ); } diag "check that we parse correct IPs only" if $ENV{'TEST_VERBOSE'}; { my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; my @invalid = ( 'abcd:', 'efgh', 'abcd:' x 8 . 'abcd', 'abcd::abcd::abcd' ); for my $invalid (@invalid) { ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $invalid, } ); $agent->content_like( qr/is not a valid IP address range/, 'ticket fails to create' ); } } diag "search tickets by IP" if $ENV{'TEST_VERBOSE'}; { my $val = 'abcd::/16'; ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $val, } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); my $tickets = RT::Tickets->new($RT::SystemUser); $tickets->FromSQL("id = $id AND CF.{IP} = 'abcd::/16'"); ok( $tickets->Count, "found tickets" ); is( $ticket->FirstCustomFieldValue('IP'), 'abcd::-abcd:ffff:ffff:ffff:ffff:ffff:ffff:ffff', 'correct value' ); } diag "search tickets by IP range" if $ENV{'TEST_VERBOSE'}; { my $val = 'abcd:ef00::/24'; ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $val, } ); my ($id) = $agent->content =~ /Ticket (\d+) created/; ok( $id, "created ticket $id" ); my $ticket = RT::Ticket->new($RT::SystemUser); $ticket->Load($id); ok( $ticket->id, 'loaded ticket' ); my $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("id = $id AND CF.{IP} = 'abcd:ef::-abcd:efff:ffff:ffff:ffff:ffff:ffff:ffff'"); ok( $tickets->Count, "found tickets" ); is( $ticket->FirstCustomFieldValue('IP'), 'abcd:ef00::-abcd:efff:ffff:ffff:ffff:ffff:ffff:ffff', 'correct value' ); } diag "create two tickets with different IPs and check several searches" if $ENV{'TEST_VERBOSE'}; { ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; my $first_ip = 'cbcd::'; my $second_ip = 'cbdd::'; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $first_ip, } ); my ($id1) = $agent->content =~ /Ticket (\d+) created/; ok( $id1, "created first ticket $id1" ); ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => $second_ip, } ); my ($id2) = $agent->content =~ /Ticket (\d+) created/; ok( $id2, "created second ticket $id2" ); my $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("id = $id1 OR id = $id2"); is( $tickets->Count, 2, "found both tickets by 'id = x OR y'" ); # IP $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '$first_ip'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), $first_ip, "correct value" ); $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = '$second_ip'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), $second_ip, "correct value" ); # IP/32 - one address $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'cbcd::/16'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), $first_ip, "correct value" ); $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'cbdd::/16'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), $second_ip, "correct value" ); # IP range $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL( "(id = $id1 OR id = $id2) AND CF.{IP} = '$first_ip-cbcf::'" ); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), $first_ip, "correct value" ); $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL( "(id = $id1 OR id = $id2) AND CF.{IP} = '$second_ip-cbdf::'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), $second_ip, "correct value" ); # IP range, with start IP greater than end $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'cbcf::-$first_ip'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), $first_ip,, "correct value" ); $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'cbdf::-$second_ip'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), $second_ip, "correct value" ); # CIDR/12 $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'cbcd::/12'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), $first_ip, "correct value" ); $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'cbdd::/12'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), $second_ip, "correct value" ); # IP is not in CIDR/24 $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} != 'cbcd::/12'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), $second_ip,, "correct value" ); $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} != 'cbdd::/12'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->FirstCustomFieldValue('IP'), $first_ip, "correct value" ); # CIDR or CIDR $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND " ."(CF.{IP} = 'cbcd::/12' OR CF.{IP} = 'cbdd::/12')"); is( $tickets->Count, 2, "found both tickets" ); } diag "create two tickets with different IP ranges and check several searches" if $ENV{'TEST_VERBOSE'}; { ok $agent->goto_create_ticket($q), "go to create ticket"; my $cf_field = "Object-RT::Ticket--CustomField-$cf_id-Values"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => 'ddcd::/16', } ); my ($id1) = $agent->content =~ /Ticket (\d+) created/; ok( $id1, "created first ticket $id1" ); ok $agent->goto_create_ticket($q), "go to create ticket"; $agent->submit_form( form_name => 'TicketCreate', fields => { Subject => 'test ip', $cf_field => 'edcd::/16', } ); my ($id2) = $agent->content =~ /Ticket (\d+) created/; ok( $id2, "created ticket $id2" ); my $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("id = $id1 OR id = $id2"); is( $tickets->Count, 2, "found both tickets by 'id = x OR y'" ); # IP $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'ddcd::'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'ddcd:abcd::'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'ddcd:ffff::'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'edcd::abcd'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id2, "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'edcd::ffff'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id2, "correct value" ); $tickets->FromSQL( "(id = $id1 OR id = $id2) AND CF.{IP} = 'edcd:ffff:ffff:ffff:ffff:ffff:ffff:ffff'" ); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id2, "correct value" ); # IP/32 - one address $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'ddcd::/32'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'edcd::/32'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id2, "correct value" ); # IP range, lower than both $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'abcd::/32'"); is( $tickets->Count, 0, "didn't finnd ticket" ) or diag "but found ". $tickets->First->id; # IP range, intersect with the first range $tickets->FromSQL( "(id = $id1 OR id = $id2) AND CF.{IP} = 'ddcc::-ddcd:ab::'" ); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); # IP range, equal to the first range $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'ddcd::/16'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); # IP range, lay inside the first range $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'ddcd:ab::'"); is( $tickets->Count, 1, "found one ticket" ); is( $tickets->First->id, $id1, "correct value" ); # IP range, intersect with the ranges $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'ddcc::-edcd:ab::'"); is( $tickets->Count, 2, "found both tickets" ); # IP range, equal to range from the starting IP of the first ticket to the ending IP of the second $tickets->FromSQL( "(id = $id1 OR id = $id2) AND CF.{IP} = 'ddcd::-edcd:ffff:ffff:ffff:ffff:ffff:ffff:ffff'" ); is( $tickets->Count, 2, "found both tickets" ); # IP range, has the both ranges inside it $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'd000::/2'"); is( $tickets->Count, 2, "found both tickets" ); # IP range, greater than both $tickets = RT::Tickets->new( $RT::SystemUser ); $tickets->FromSQL("(id = $id1 OR id = $id2) AND CF.{IP} = 'ffff::/16'"); is( $tickets->Count, 0, "didn't find ticket" ) or diag "but found ". $tickets->First->id; } rt-4.4.2/t/customfields/repeated_values.t0000664000175000017500000001165213131430353020340 0ustar vagrantvagrantuse warnings; use strict; use RT::Test tests => undef; my $ticket = RT::Test->create_ticket( Subject => 'test repeated values', Queue => 'General' ); my ( $ret, $msg ); { diag "testing freeform single cf"; my $freeform_single = RT::Test->load_or_create_custom_field( Name => 'freeform single', Type => 'FreeformSingle', Queue => 0, ); ( $ret, $msg ) = $ticket->AddCustomFieldValue( Field => $freeform_single, Value => 'foo' ); ok( $ret, $msg ); is( $ticket->FirstCustomFieldValue($freeform_single), 'foo', 'value is foo' ); my $ocfv = $ticket->CustomFieldValues($freeform_single)->First; ( $ret, $msg ) = $ticket->AddCustomFieldValue( Field => $freeform_single, Value => 'foo' ); is( $ret, $ocfv->id, "got the same previous object" ); is( $ticket->FirstCustomFieldValue($freeform_single), 'foo', 'value is still foo' ); ( $ret, $msg ) = $ticket->AddCustomFieldValue( Field => $freeform_single, Value => 'FOO' ); ok( $ret, $msg ); isnt( $ret, $ocfv->id, "got a new value" ); is( $ticket->FirstCustomFieldValue($freeform_single), 'FOO', 'value is FOO' ); } { diag "testing freeform multiple cf"; my $freeform_multiple = RT::Test->load_or_create_custom_field( Name => 'freeform multiple', Type => 'FreeformMultiple', Queue => 0, ); ($ret, $msg) = $ticket->AddCustomFieldValue( Field => $freeform_multiple, Value => 'foo' ); ok($ret, $msg); is( $ticket->FirstCustomFieldValue($freeform_multiple), 'foo', 'value is foo' ); my $ocfv = $ticket->CustomFieldValues($freeform_multiple)->First; ($ret, $msg) = $ticket->AddCustomFieldValue( Field => $freeform_multiple, Value => 'foo' ); is($ret, $ocfv->id, "got the same previous object"); is( $ticket->FirstCustomFieldValue($freeform_multiple), 'foo', 'value is still foo' ); ($ret, $msg) = $ticket->AddCustomFieldValue( Field => $freeform_multiple, Value => 'bar' ); ok($ret, $msg); my $ocfvs = $ticket->CustomFieldValues($freeform_multiple)->ItemsArrayRef; is( scalar @$ocfvs, 2, 'has 2 values'); is( $ocfvs->[0]->Content, 'foo', 'first is foo' ); is( $ocfvs->[1]->Content, 'bar', 'sencond is bar' ); } { diag "testing select single cf"; my $select_single = RT::Test->load_or_create_custom_field( Name => 'select single', Type => 'SelectSingle', Queue => 0, ); for my $value ( qw/foo bar baz/ ) { $select_single->AddValue( Name => $value ); } ( $ret, $msg ) = $ticket->AddCustomFieldValue( Field => $select_single, Value => 'foo' ); ok( $ret, $msg ); my $ocfv = $ticket->CustomFieldValues($select_single)->First; is( $ticket->FirstCustomFieldValue($select_single), 'foo', 'value is foo' ); ( $ret, $msg ) = $ticket->AddCustomFieldValue( Field => $select_single, Value => 'foo' ); is( $ret, $ocfv->id, "got the same previous object" ); is( $ticket->FirstCustomFieldValue($select_single), 'foo', 'value is still foo' ); diag "select values are case insensitive"; ( $ret, $msg ) = $ticket->AddCustomFieldValue( Field => $select_single, Value => 'FOO' ); is( $ret, $ocfv->id, "got the same previous object" ); is( $ticket->FirstCustomFieldValue($select_single), 'foo', 'value is still foo' ); ($ret, $msg) = $ticket->AddCustomFieldValue( Field => $select_single, Value => 'bar' ); ok($ret, $msg); isnt( $ret, $ocfv->id, "got a new value" ); is( $ticket->FirstCustomFieldValue($select_single), 'bar', 'new value is bar' ); } { diag "testing binary single cf"; my $binary_single = RT::Test->load_or_create_custom_field( Name => 'upload single', Type => 'BinarySingle', Queue => 0, ); ( $ret, $msg ) = $ticket->AddCustomFieldValue( Field => $binary_single, Value => 'foo', LargeContent => 'bar' ); ok( $ret, $msg ); my $ocfv = $ticket->CustomFieldValues($binary_single)->First; ( $ret, $msg ) = $ticket->AddCustomFieldValue( Field => $binary_single, Value => 'foo', LargeContent => 'bar' ); is( $ret, $ocfv->id, "got the same previous object" ); is($ocfv->Content, 'foo', 'name is foo'); is($ocfv->LargeContent, 'bar', 'content is bar'); ( $ret, $msg ) = $ticket->AddCustomFieldValue( Field => $binary_single, Value => 'foo', LargeContent => 'baz' ); ok( $ret, $msg ); isnt( $ret, $ocfv->id, "got a new value" ); $ocfv = $ticket->CustomFieldValues($binary_single)->First; is($ocfv->Content, 'foo', 'name is foo'); is($ocfv->LargeContent, 'baz', 'content is baz'); ( $ret, $msg ) = $ticket->AddCustomFieldValue( Field => $binary_single, Value => 'foo.2', LargeContent => 'baz' ); ok( $ret, $msg ); isnt( $ret, $ocfv->id, "got a new value" ); $ocfv = $ticket->CustomFieldValues($binary_single)->First; is($ocfv->Content, 'foo.2', 'name is foo.2'); is($ocfv->LargeContent, 'baz', 'content is baz'); } done_testing(); rt-4.4.2/t/customfields/sort_order.t0000664000175000017500000000454213131430353017352 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 20; use RT::Ticket; use RT::CustomField; my $queue_name = "CFSortQueue-$$"; my $queue = RT::Test->load_or_create_queue( Name => $queue_name ); ok($queue && $queue->id, "$queue_name - test queue creation"); diag "create multiple CFs: B, A and C"; my @cfs = (); { my $cf = RT::CustomField->new( RT->SystemUser ); my ($ret, $msg) = $cf->Create( Name => "CF B", Queue => $queue->id, Type => 'FreeformSingle', ); ok($ret, "Custom Field Order created"); push @cfs, $cf; } { my $cf = RT::CustomField->new( RT->SystemUser ); my ($ret, $msg) = $cf->Create( Name => "CF A", Queue => $queue->id, Type => 'FreeformSingle', ); ok($ret, "Custom Field Order created"); push @cfs, $cf; } { my $cf = RT::CustomField->new( RT->SystemUser ); my ($ret, $msg) = $cf->Create( Name => "CF C", Queue => $queue->id, Type => 'FreeformSingle', ); ok($ret, "Custom Field Order created"); push @cfs, $cf; } my ($baseurl, $m) = RT::Test->started_ok; ok $m->login( root => 'password' ), 'logged in'; diag "reorder CFs: C, A and B"; { $m->get( '/Admin/Queues/' ); $m->follow_link_ok( {text => $queue->id} ); $m->follow_link_ok( {id => 'page-custom-fields-tickets'} ); my @tmp = ($m->content =~ /(CF [ABC])/g); is_deeply(\@tmp, ['CF B', 'CF A', 'CF C']); $m->follow_link_ok( {text => '[Up]', n => 3} ); $m->follow_link_ok( {text => '[Up]', n => 2} ); $m->follow_link_ok( {text => '[Up]', n => 3} ); @tmp = ($m->content =~ /(CF [ABC])/g); is_deeply(\@tmp, ['CF C', 'CF A', 'CF B']); } diag "check ticket create, display and edit pages"; { $m->submit_form( form_name => "CreateTicketInQueue", fields => { Queue => $queue->Name }, ); my @tmp = ($m->content =~ /(CF [ABC])/g); is_deeply(\@tmp, ['CF C', 'CF A', 'CF B']); $m->submit_form( form_name => "TicketCreate", fields => { Subject => 'test' }, ); my ($tid) = ($m->content =~ /Ticket (\d+) created/i); ok $tid, "created a ticket succesfully"; @tmp = ($m->content =~ /(CF [ABC])/g); is_deeply(\@tmp, ['CF C', 'CF A', 'CF B']); $m->follow_link_ok( {id => 'page-basics'}); @tmp = ($m->content =~ /(CF [ABC])/g); is_deeply(\@tmp, ['CF C', 'CF A', 'CF B']); } rt-4.4.2/t/customfields/date.t0000664000175000017500000000510113131430353016075 0ustar vagrantvagrantuse Test::MockTime qw(set_fixed_time restore_time); use warnings; use strict; use RT::Test tests => undef; RT::Test->set_rights( { Principal => 'Everyone', Right => [qw( SeeQueue ShowTicket CreateTicket SeeCustomField ModifyCustomField )] }, ); my $q = RT::Test->load_or_create_queue( Name => 'General' ); ok $q && $q->id, 'loaded or created a queue'; my $user_m = RT::Test->load_or_create_user( Name => 'moscow', Timezone => 'Europe/Moscow' ); ok $user_m && $user_m->id; my $user_b = RT::Test->load_or_create_user( Name => 'boston', Timezone => 'America/New_York' ); ok $user_b && $user_b->id; my $cf_name = 'A Date'; my $cf; { $cf = RT::CustomField->new(RT->SystemUser); ok( $cf->Create( Name => $cf_name, Type => 'Date', MaxValues => 1, LookupType => RT::Ticket->CustomFieldLookupType, ), 'create cf date' ); ok( $cf->AddToObject($q), 'date cf apply to queue' ); } { my $ticket = RT::Ticket->new( RT::CurrentUser->new( $user_m ) ); my ($id) = $ticket->Create( Queue => $q->id, Subject => 'Test', 'CustomField-'. $cf->id => '2013-02-11', ); my $cf_value = $ticket->CustomFieldValues($cf_name)->First; is( $cf_value->Content, '2013-02-11', 'correct value' ); $ticket = RT::Ticket->new( RT::CurrentUser->new( $user_b ) ); $ticket->Load($id); is( $ticket->FirstCustomFieldValue($cf_name), '2013-02-11', 'correct value' ); } { my $ticket = RT::Ticket->new(RT->SystemUser); ok( $ticket->Create( Queue => $q->id, Subject => 'Test', 'CustomField-' . $cf->id => '2010-05-04 11:34:56', ), 'create ticket with cf set to 2010-05-04 11:34:56' ); is( $ticket->CustomFieldValues->First->Content, '2010-05-04', 'date in db only has date' ); } # in moscow it's already Feb 11, so tomorrow is Feb 12 set_fixed_time("2013-02-10T23:10:00Z"); { my $ticket = RT::Ticket->new( RT::CurrentUser->new( $user_m ) ); my ($id) = $ticket->Create( Queue => $q->id, Subject => 'Test', 'CustomField-'. $cf->id => 'tomorrow', ); my $cf_value = $ticket->CustomFieldValues($cf_name)->First; is( $cf_value->Content, '2013-02-12', 'correct value' ); $ticket = RT::Ticket->new( RT::CurrentUser->new( $user_b ) ); $ticket->Load($id); is( $ticket->FirstCustomFieldValue($cf_name), '2013-02-12', 'correct value' ); } done_testing(); rt-4.4.2/t/customfields/canonicalizer.t0000664000175000017500000000763013131430353020012 0ustar vagrantvagrantuse utf8; use warnings; use strict; use RT::Test tests => undef; my $t = RT::Test->create_ticket( Subject => 'test canonicalize values', Queue => 'General' ); { diag "testing invalid canonicalizer"; my $invalid = RT::CustomField->new(RT->SystemUser); my ($ok, $msg) = $invalid->Create( Name => 'uppercase', Type => 'FreeformSingle', Queue => 0, CanonicalizeClass => 'RT::CustomFieldValues::Canonicalizer::NonExistent', ); ok(!$ok, "Didn't create CF"); like($msg, qr/Invalid custom field values canonicalizer/); } { diag "testing uppercase canonicalizer"; my $uppercase = RT::Test->load_or_create_custom_field( Name => 'uppercase', Type => 'FreeformSingle', Queue => 0, CanonicalizeClass => 'RT::CustomFieldValues::Canonicalizer::Uppercase', ); is($uppercase->CanonicalizeClass, 'RT::CustomFieldValues::Canonicalizer::Uppercase', 'CanonicalizeClass'); my @tests = ( 'hello world' => 'HELLO WORLD', 'Hello World' => 'HELLO WORLD', 'ABC 123 xyz !@#' => 'ABC 123 XYZ !@#', 'Unicode aware: "ω Ω"' => 'UNICODE AWARE: "Ω Ω"', 'ã¦ã™ã¨ãƒ†ã‚¹ãƒˆ' => 'ã¦ã™ã¨ãƒ†ã‚¹ãƒˆ', ); while (my ($input, $expected) = splice @tests, 0, 2) { my ($ok, $msg) = $t->AddCustomFieldValue( Field => $uppercase, Value => $input, ); ok( $ok, $msg ); is( $t->FirstCustomFieldValue($uppercase), $expected, 'canonicalized to uppercase' ); } } { diag "testing lowercase canonicalizer"; my $lowercase = RT::Test->load_or_create_custom_field( Name => 'lowercase', Type => 'FreeformSingle', Queue => 0, CanonicalizeClass => 'RT::CustomFieldValues::Canonicalizer::Lowercase', ); is($lowercase->CanonicalizeClass, 'RT::CustomFieldValues::Canonicalizer::Lowercase', 'CanonicalizeClass'); my @tests = ( 'hello world' => 'hello world', 'Hello World' => 'hello world', 'ABC 123 xyz !@#' => 'abc 123 xyz !@#', 'Unicode aware: "ω Ω"' => 'unicode aware: "ω ω"', 'ã¦ã™ã¨ãƒ†ã‚¹ãƒˆ' => 'ã¦ã™ã¨ãƒ†ã‚¹ãƒˆ', ); while (my ($input, $expected) = splice @tests, 0, 2) { my ($ok, $msg) = $t->AddCustomFieldValue( Field => $lowercase, Value => $input, ); ok( $ok, $msg ); is( $t->FirstCustomFieldValue($lowercase), $expected, 'canonicalized to lowercase' ); } } { diag "testing asset canonicalizer"; my $assetcf = RT::Test->load_or_create_custom_field( Name => 'assetcf', Type => 'FreeformSingle', LookupType => RT::Asset->CustomFieldLookupType, CanonicalizeClass => 'RT::CustomFieldValues::Canonicalizer::Uppercase', ); $assetcf->AddToObject(RT::Catalog->new(RT->SystemUser)); is($assetcf->CanonicalizeClass, 'RT::CustomFieldValues::Canonicalizer::Uppercase', 'CanonicalizeClass'); my $asset = RT::Asset->new(RT->SystemUser); my ($ok, $msg) = $asset->Create(Subject => 'test canonicalizers', Catalog => 'General assets'); ok($ok, $msg); my @tests = ( 'hello world' => 'HELLO WORLD', 'Hello World' => 'HELLO WORLD', 'ABC 123 xyz !@#' => 'ABC 123 XYZ !@#', 'Unicode aware: "ω Ω"' => 'UNICODE AWARE: "Ω Ω"', 'ã¦ã™ã¨ãƒ†ã‚¹ãƒˆ' => 'ã¦ã™ã¨ãƒ†ã‚¹ãƒˆ', ); while (my ($input, $expected) = splice @tests, 0, 2) { my ($ok, $msg) = $asset->AddCustomFieldValue( Field => $assetcf, Value => $input, ); ok( $ok, $msg ); is( $asset->FirstCustomFieldValue($assetcf), $expected, 'canonicalized to uppercase' ); } } done_testing; rt-4.4.2/t/customfields/pattern.t0000664000175000017500000000247313131430353016646 0ustar vagrantvagrantuse warnings; use strict; use RT; use RT::Test nodata => 1, tests => 17; my $q = RT::Queue->new($RT::SystemUser); works($q->Create(Name => "CF-Pattern-".$$)); my $cf = RT::CustomField->new($RT::SystemUser); my @cf_args = (Name => $q->Name, Type => 'Freeform', Queue => $q->id, MaxValues => 1); fails($cf->Create(@cf_args, Pattern => ')))bad!regex(((')); works($cf->Create(@cf_args, Pattern => 'good regex')); my $t = RT::Ticket->new($RT::SystemUser); my ($id,undef,$msg) = $t->Create(Queue => $q->id, Subject => 'CF Test'); works($id,$msg); # OK, I'm thoroughly brain washed by HOP at this point now... sub cnt { $t->CustomFieldValues($cf->id)->Count }; sub add { $t->AddCustomFieldValue(Field => $cf->id, Value => $_[0]) }; sub del { $t->DeleteCustomFieldValue(Field => $cf->id, Value => $_[0]) }; is(cnt(), 0, "No values yet"); fails(add('not going to match')); is(cnt(), 0, "No values yet"); works(add('here is a good regex')); is(cnt(), 1, "Value filled"); fails(del('here is a good regex')); is(cnt(), 1, "Single CF - Value _not_ deleted"); $cf->SetMaxValues(0); # Unlimited MaxValues works(del('here is a good regex')); is(cnt(), 0, "Multiple CF - Value deleted"); fails($cf->SetPattern('(?{ "insert evil code here" })')); works($cf->SetPattern('(?!)')); # reject everything fails(add('')); fails(add('...')); undef $t; rt-4.4.2/t/customfields/enter_one.t0000664000175000017500000000142613131430353017144 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodata => 1, tests => undef; my $q = RT::Test->load_or_create_queue(Name => 'General'); ok $q && $q->id, "loaded or created queue 'General'"; my $cf = RT::CustomField->new(RT->SystemUser); my ($id,$msg) = $cf->Create(Name => 'Enter-One', Type => 'Freeform', MaxValues => '1', Queue => $q->id); ok $id, $msg; my $t = RT::Ticket->new(RT->SystemUser); ($id,undef,$msg) = $t->Create(Queue => $q->id, Subject => 'CF Enter-One Test'); ok $id, $msg; $t->AddCustomFieldValue(Field => $cf->id, Value => 'LOWER'); is $t->FirstCustomFieldValue($cf->id), "LOWER", "CF value is 'LOWER'"; $t->AddCustomFieldValue(Field => $cf->id, Value => 'lower'); is $t->FirstCustomFieldValue($cf->id), "lower", "CF value changed from 'LOWER' to 'lower'"; done_testing(); rt-4.4.2/t/customfields/datetime_search.t0000664000175000017500000001730113131430353020306 0ustar vagrantvagrantuse Test::MockTime qw(set_fixed_time restore_time); use warnings; use strict; use RT::Test nodata => 1, tests => undef; RT->Config->Set( 'Timezone' => 'EST5EDT' ); # -04:00 RT::Test->set_rights( { Principal => 'Everyone', Right => [qw( SeeQueue ShowTicket CreateTicket SeeCustomField ModifyCustomField )] }, ); my $q = RT::Test->load_or_create_queue( Name => 'General' ); ok $q && $q->id, 'loaded or created a queue'; my $user_m = RT::Test->load_or_create_user( Name => 'moscow', Timezone => 'Europe/Moscow' ); ok $user_m && $user_m->id; $user_m = RT::CurrentUser->new( $user_m ); my $user_b = RT::Test->load_or_create_user( Name => 'boston', Timezone => 'America/New_York' ); ok $user_b && $user_b->id; $user_b = RT::CurrentUser->new( $user_b ); my $cf = RT::CustomField->new(RT->SystemUser); ok( $cf->Create( Name => 'TestDateTime', Type => 'DateTime', MaxValues => 1, LookupType => RT::Ticket->CustomFieldLookupType, ), 'create cf datetime' ); ok( $cf->AddToObject($q), 'date cf apply to queue' ); my $cf_name = $cf->Name; my $ticket = RT::Ticket->new(RT->SystemUser); ok( $ticket->Create( Queue => $q->id, Subject => 'Test', 'CustomField-' . $cf->id => '2010-05-04 07:00:00', ), 'create ticket with cf set to 2010-05-04 07:00:00( 2010-05-04 11:00:00 with UTC )' ); is( $ticket->CustomFieldValues->First->Content, '2010-05-04 11:00:00', 'date in db is in timezone UTC' ); { my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => '=', VALUE => '2010-05-04 07:00:00', # this timezone is server ); is( $tickets->Count, 1, 'found the ticket with exact date: 2010-05-04 07:00:00' ); } { # TODO according to the code, if OPERATOR is '=', it means on that day # this will test this behavior my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => '=', VALUE => '2010-05-04', ); is( $tickets->Count, 1, 'found the ticket with rough date: 2010-05-04' ); } { # TODO according to the code, if OPERATOR is '=', it means on that day # this will test this behavior my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => '=', VALUE => '2010-05-05', ); is( $tickets->Count, 0, 'did not find the ticket with wrong datetime: 2010-05-05' ); } { my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->FromSQL( "'CF.{$cf_name}' = 'May 4 2010 7am'" ); is( $tickets->Count, 1, 'found the ticket with = May 4 2010 7am' ); $tickets->FromSQL( "'CF.{$cf_name}' = 'May 4 2010 8am'" ); is( $tickets->Count, 0, 'did not find the ticket with = May 4 2010 8am' ); $tickets->FromSQL( "'CF.{$cf_name}' > 'May 3 2010 7am'" ); is( $tickets->Count, 1, 'found the ticket with > May 3 2010 7am' ); $tickets->FromSQL( "'CF.{$cf_name}' < 'May 4 2010 8am'" ); is( $tickets->Count, 1, 'found the ticket with < May 4 2010 8am' ); } my $tickets = RT::Tickets->new( RT->SystemUser ); $tickets->UnLimit; while( my $ticket = $tickets->Next ) { $ticket->Delete(); } { ok( $ticket->Create( Queue => $q->id, Subject => 'Test', 'CustomField-' . $cf->id => '2010-06-21 17:00:01', ), 'create ticket with cf set to 2010-06-21 17:00:01( 2010-06-21 21:00:01 with UTC )' ); my $shanghai = RT::Test->load_or_create_user( Name => 'shanghai', Timezone => 'Asia/Shanghai', ); ok( $shanghai->PrincipalObj->GrantRight( Right => 'SuperUser', Object => $RT::System, ) ); my $current_user = RT::CurrentUser->new($shanghai); my $tickets = RT::Tickets->new($current_user); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => '=', VALUE => '2010-06-22', ); is( $tickets->Count, 1, 'found the ticket with rough datetime: 2010-06-22' ); $tickets->UnLimit; $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => '>', VALUE => '2010-06-21', ); is( $tickets->Count, 1, 'found the ticket with > 2010-06-21' ); $tickets->UnLimit; $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => '<', VALUE => '2010-06-23', ); is( $tickets->Count, 1, 'found the ticket with < 2010-06-23' ); $tickets->UnLimit; $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => '=', VALUE => '2010-06-22 05:00:01', ); is( $tickets->Count, 1, 'found the ticket with = 2010-06-22 01:00:01' ); } # set timezone in all places to UTC { RT->SystemUser->UserObj->__Set(Field => 'Timezone', Value => 'UTC') if RT->SystemUser->UserObj->Timezone; RT->Config->Set( Timezone => 'UTC' ); } # search by absolute date with '=', but date only { my $ticket = RT::Ticket->new(RT->SystemUser); my ($tid) = $ticket->Create( Queue => $q->id, Subject => 'Test', 'CustomField-' . $cf->id => '2013-02-11 23:14:15', ); is $ticket->FirstCustomFieldValue($cf_name), '2013-02-11 23:14:15'; my $tickets = RT::Tickets->new($user_m); $tickets->FromSQL("'CustomField.{$cf_name}' = '2013-02-11' AND id = $tid"); is( $tickets->Count, 0); $tickets = RT::Tickets->new($user_m); $tickets->FromSQL("'CustomField.{$cf_name}' = '2013-02-12' AND id = $tid"); is( $tickets->Count, 1); $tickets = RT::Tickets->new($user_b); $tickets->FromSQL("'CustomField.{$cf_name}' = '2013-02-11' AND id = $tid"); is( $tickets->Count, 1); $tickets = RT::Tickets->new($user_b); $tickets->FromSQL("'CustomField.{$cf_name}' = '2013-02-12' AND id = $tid"); is( $tickets->Count, 0); } { my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => 'IS', VALUE => 'NULL', ); is( $tickets->Count, 0, 'did not find the ticket with date IS NULL' ); } { my $tickets = RT::Tickets->new(RT->SystemUser); $tickets->LimitCustomField( CUSTOMFIELD => $cf->id, OPERATOR => 'IS NOT', VALUE => 'NULL', ); is( $tickets->Count, 2, 'did find the ticket with date IS NOT NULL' ); } # search by relative date with '=', but date only { my $ticket = RT::Ticket->new(RT->SystemUser); my ($tid) = $ticket->Create( Queue => $q->id, Subject => 'Test', 'CustomField-' . $cf->id => '2013-02-11 23:14:15', ); is $ticket->FirstCustomFieldValue($cf_name), '2013-02-11 23:14:15'; set_fixed_time("2013-02-10T16:10:00Z"); my $tickets = RT::Tickets->new($user_m); $tickets->FromSQL("'CustomField.{$cf_name}' = 'tomorrow' AND id = $tid"); is( $tickets->Count, 0); set_fixed_time("2013-02-10T23:10:00Z"); $tickets = RT::Tickets->new($user_m); $tickets->FromSQL("'CustomField.{$cf_name}' = 'tomorrow' AND id = $tid"); is( $tickets->Count, 1); set_fixed_time("2013-02-10T23:10:00Z"); $tickets = RT::Tickets->new($user_b); $tickets->FromSQL("'CustomField.{$cf_name}' = 'tomorrow' AND id = $tid"); is( $tickets->Count, 1); set_fixed_time("2013-02-10T02:10:00Z"); $tickets = RT::Tickets->new($user_b); $tickets->FromSQL("'CustomField.{$cf_name}' = 'tomorrow' AND id = $tid"); is( $tickets->Count, 0); } done_testing; rt-4.4.2/t/customfields/external.t0000664000175000017500000000415513131430353017012 0ustar vagrantvagrant use warnings; use strict; use RT; use RT::Test nodata => 1, tests => undef; sub new (*) { my $class = shift; return $class->new(RT->SystemUser); } use constant VALUES_CLASS => 'RT::CustomFieldValues::Groups'; RT->Config->Set(CustomFieldValuesSources => VALUES_CLASS); my $q = new( RT::Queue ); isa_ok( $q, 'RT::Queue' ); my ($qid) = $q->Create( Name => "CF-External-". $$ ); ok( $qid, "created queue" ); my %arg = ( Name => $q->Name, Type => 'Select', Queue => $q->id, MaxValues => 1, ValuesClass => VALUES_CLASS ); my $cf = new( RT::CustomField ); isa_ok( $cf, 'RT::CustomField' ); { my ($cfid, $msg) = $cf->Create( %arg ); ok( $cfid, "created cf" ) or diag "error: $msg"; is( $cf->ValuesClass, VALUES_CLASS, "right values class" ); ok( $cf->IsExternalValues, "custom field has external values" ); } { # create at least on group for the tests my $group = RT::Group->new( RT->SystemUser ); my ($ret, $msg) = $group->CreateUserDefinedGroup( Name => $q->Name ); ok $ret, 'created group' or diag "error: $msg"; } { my $values = $cf->Values; isa_ok( $values, VALUES_CLASS ); ok( $values->Count, "we have values" ); my ($failure, $count) = (0, 0); while( my $value = $values->Next ) { $count++; $failure = 1 unless $value->Name; } ok( !$failure, "all values have name" ); is( $values->Count, $count, "count is correct" ); is( $values->CustomFieldObject->id, $cf->id, "Values stored the CF id" ); is( $values->CustomFieldObject, $cf, "Values stored the identical CF object" ); is( $values->First->CustomFieldObj->id, $cf->id, "A value stored the CF id" ); is( $values->First->CustomFieldObj, $cf, "A value stored the identical CF object" ); } { my ($ret, $msg) = $cf->SetValuesClass('RT::CustomFieldValues'); ok $ret, 'Reverting this CF as internal source values based' or diag "error: $msg"; ($ret, $msg) = $cf->SetValuesClass('RT::CustomFieldValues::Groups'); ok $ret, 'Reverting this CF as external source values based' or diag "error: $msg"; } done_testing; rt-4.4.2/t/security/0000775000175000017500000000000013131430353014144 5ustar vagrantvagrantrt-4.4.2/t/security/CVE-2011-2084-attach-tickets.t0000664000175000017500000000303413131430353020630 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $user = RT::Test->load_or_create_user( Name => 'user', EmailAddress => 'user@example.com', Privileged => 1, Password => 'password', ); ok( RT::Test->set_rights( { Principal => 'Everyone', Right => [qw/CreateTicket/] }, { Principal => 'Requestor', Right => [qw/ShowTicket/] }, ), 'set rights' ); my $secret = "sekrit message"; RT::Test->create_tickets( {}, { Subject => 'ticket A', Requestor => $user->EmailAddress, Content => "user's ticket", }, { Subject => 'ticket B', Requestor => 'root@localhost', Content => $secret, }, ); my $ticket_b = RT::Test->last_ticket; my ($baseurl, $m) = RT::Test->started_ok; ok $m->login( 'user', 'password' ), 'logged in as user'; $m->get_ok("$baseurl/Ticket/Display.html?id=" . $ticket_b->id); $m->content_contains('No permission'); $m->warning_like(qr/no permission/i, 'no permission warning'); RT::Test->clean_caught_mails; # Ticket Create is just one example of where this is vulnerable $m->get_ok('/Ticket/Create.html?Queue=1'); $m->submit_form_ok({ form_name => 'TicketCreate', fields => { Subject => 'ticket C', AttachTickets => $ticket_b->id, }, }, 'create a ticket'); my @mail = RT::Test->fetch_caught_mails; ok @mail, "got some outgoing emails"; unlike $mail[0], qr/\Q$secret\E/, "doesn't contain ticket user can't see"; undef $m; done_testing; rt-4.4.2/t/security/CVE-2011-4458-verp.t0000664000175000017500000000252113131430353016703 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; RT->Config->Set( MailCommand => 'sendmailpipe' ); RT->Config->Set( VERPPrefix => "verp-" ); RT->Config->Set( VERPDomain => "example.com" ); # Ensure that the fake sendmail knows where to write to $ENV{RT_MAILLOGFILE} = RT::Test->temp_directory . "/sendmailpipe.log"; my $fake = File::Spec->rel2abs( File::Spec->catfile( 't', 'security', 'fake-sendmail' ) ); RT->Config->Set( SendmailPath => $fake); ok( RT::Test->set_rights( { Principal => 'Everyone', Right => [qw/CreateTicket/] }, ), 'set rights' ); my $bad = RT::Test->load_or_create_user( EmailAddress => 'danger-$USER@example.com', ); ok( $bad, "Got a user object back" ); ok( $bad->id, "Successfully created a user" ); my $current_user = RT::CurrentUser->new(RT->SystemUser); my ($id, $msg) = $current_user->Load($bad->Id); ok( $id, "Loaded the user successfully" ); my $ticket = RT::Ticket->new( $current_user ); ($id, $msg) = $ticket->Create( Requestor => $bad->Id, Subject => "Danger, Will Robinson!", Queue => "General" ); ok( $id, "Created a ticket: $msg" ); open(LOG, "<", $ENV{RT_MAILLOGFILE}) or die "Can't open log file: $!"; while (my $line = ) { next unless $line =~ /^-f/; like($line, qr/\$USER/, "Contains uninterpolated \$USER"); } close(LOG); done_testing; rt-4.4.2/t/security/CVE-2011-2084-cf-values.t0000664000175000017500000001033413131430353017606 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use JSON qw(decode_json); my ($base, $m) = RT::Test->started_ok; my $cf1 = RT::Test->load_or_create_custom_field( Name => 'cf1', Type => 'Select', MaxValues => 1, Queue => 0, ); ok $cf1->id, "created cf1"; my $cf2 = RT::Test->load_or_create_custom_field( Name => 'cf2', Type => 'Select', MaxValues => 1, Queue => 0, ); ok $cf2->id, "created cf2"; ok( $cf1->AddValue( Name => "cf1 value $_" ) ) for qw(a b c); ok( $cf2->AddValue( Name => "cf2 value $_" ) ) for qw(x y z); sub ac { my (%args) = ( CF => $cf1->id, Term => "%", Context => undef, ContextId => undef, ContextType => undef, @_ ); $args{term} = delete $args{Term}; if (my $obj = delete $args{Context}) { $args{ContextId} = $obj->Id unless defined $args{ContextId}; $args{ContextType} = ref($obj) unless defined $args{ContextType}; } $args{"Object-RT::Ticket--CustomField-$args{CF}-Values"} = ""; delete $args{CF}; delete $args{$_} for grep {not defined $args{$_}} keys %args; my $URI = URI->new("$base/Helpers/Autocomplete/CustomFieldValues"); $URI->query_form( %args ); $m->get_ok($URI, "GET to autocompleter"); return decode_json($m->content); } $m->login; is_deeply ac(CF => 12345, ContextId => 1, ContextType => "RT::Queue"), [], 'nothing for invalid CF'; is_deeply ac(), [], "Nothing without a context id"; is_deeply ac( ContextId => 12345, ContextType => "RT::Queue"), [], "Nothing with invalid contextid id"; is_deeply ac( ContextId => 12, ContextType => "RT::User"), [], "Nothing with invalid contextid type"; my $user = RT::Test->load_or_create_user( Name => 'user', Password => 'password', Privileged => 1, ); my $queue = RT::Test->load_or_create_queue( Name => 'CF Test' ); ok $queue->id, 'found or created queue'; my $ticket = RT::Test->create_ticket( Queue => $queue->id, Subject => "CF application", ); ok $queue->id, 'created ticket'; $m->logout; $m->login('user','password'); is_deeply ac( Context => $queue ), [], 'queue context, no permissions, no result'; is_deeply ac( Context => $ticket ), [], 'ticket context, no permissions, no result'; ok( RT::Test->set_rights( { Principal => $user, Right => [qw(SeeCustomField)], Object => $queue }, ), 'add queue level CF viewing rights'); my $cfvalues = [ ( map { { value => "cf1 value $_" , label => "cf1 value $_" } } qw(a b c) ) ]; is_deeply ac( Context => $queue ), $cfvalues, 'queue context, with permissions get result'; is_deeply ac( Context => $ticket ), $cfvalues, 'ticket context, with permissions get result'; { diag "Switching to non-global CFs"; my $globalq = RT::Queue->new( RT->SystemUser ); my ($status, $msg) = $cf1->RemoveFromObject( $globalq ); ok($status, "Removed CF1 globally: $msg"); ($status, $msg) = $cf1->AddToObject( $queue ); ok($status, "Added CF1 to queue @{[$queue->id]}: $msg"); ($status, $msg) = $cf2->RemoveFromObject( $globalq ); ok($status, "Removed CF2 globally: $msg"); } is_deeply ac( CF => $cf2->id, Context => $queue ), [], 'queue context, but not applied, get no result'; is_deeply ac( CF => $cf2->id, Context => $ticket ), [], 'ticket context, but not applied, get no result'; is_deeply ac( Context => $queue ), $cfvalues, 'queue context, applied correctly, get result'; is_deeply ac( Context => $ticket ), $cfvalues, 'ticket context, applied correctly, get result'; diag "Ticket-level rights"; ok( RT::Test->set_rights( { Principal => "Owner", Right => [qw(SeeCustomField)], Object => $queue }, { Principal => $user, Right => [qw(OwnTicket SeeTicket)], Object => RT->System }, ), 'add owner level CF viewing rights'); is_deeply ac( Context => $queue ), [], 'queue context, but not owner'; is_deeply ac( Context => $ticket ), [], 'ticket context, but not owner'; my ($status, $msg) = $ticket->SetOwner( $user->id ); ok( $status, "Set owner to user: $msg" ); is_deeply ac( Context => $queue ), [], 'queue context is not enough'; is_deeply ac( Context => $ticket ), $cfvalues, 'ticket context, get values'; undef $m; done_testing; rt-4.4.2/t/security/CVE-2011-5092-datetimeformat.t0000664000175000017500000000220513131430353020726 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my ($base, $m) = RT::Test->started_ok; my $user = RT::Test->load_or_create_user( Name => 'user', Password => 'password', Privileged => 1, ); ok $user->id, 'created user'; ok( RT::Test->set_rights( { Principal => 'privileged', Right => [qw(ModifySelf ShowTicket)] }, ), "granted ModifySelf to privileged" ); my $ticket = RT::Test->create_ticket( Queue => 'General', Subject => 'testing', ); ok $ticket->id, 'created ticket'; $m->login('user'); $m->get_ok("$base/Prefs/Other.html"); my $format = 'Formatters'; $m->submit_form_ok({ form_name => 'ModifyPreferences', fields => { DateTimeFormat => $format, }, button => 'Update', }, 'update prefs'); is $user->Preferences(RT->System, {})->{DateTimeFormat}, $format, 'set preference'; $m->no_warnings_ok; $m->get_ok("$base/Ticket/Display.html?id=" . $ticket->id); $m->next_warning_like(qr/Invalid date formatter.+?\Q$format\E/, 'invalid formatter warning'); $m->content_lacks($_, "lacks formatter in page") for @RT::Date::FORMATTERS; undef $m; done_testing; rt-4.4.2/t/security/CVE-2011-2084-transactions.t0000664000175000017500000000263613131430353020437 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; # A privileged user, but with no privs my $bad = RT::Test->load_or_create_user( Name => 'testing', EmailAddress => 'test@example.com', Password => 'password', ); ok( $bad, "Got a user object back" ); ok( $bad->id, "Successfully created a user" ); # A ticket CF my $obj = RT::Test->load_or_create_custom_field( Name => "Private CF", Type => "Freeform", Queue => 0, ); my ($t) = RT::Test->create_tickets( {}, { Subject => 'Testing' } ); ok($t->id, "Created a ticket"); # Add a txn on it my ($cfid) = $t->AddCustomFieldValue( Field => $obj->Id, Value => "hidden-value" ); ok($cfid, "Got CF id $cfid"); my $update_id = $t->Transactions->Last->Id; # Somebody else shouldn't be able to see the old and new values my ($base, $m) = RT::Test->started_ok; $m->post_ok("$base/REST/1.0/transaction/$update_id", [ user => 'testing', pass => 'password', format => 'l', ]); $m->content_lacks("hidden-value"); # Make a transaction on a user my $root = RT::Test->load_or_create_user( Name => "root" ); $root->SetHomePhone("hidden-value"); $update_id = $root->Transactions->Last->Id; # Which should also be hidden from random privileged users $m->post_ok("$base/REST/1.0/transaction/$update_id", [ user => 'testing', pass => 'password', format => 'l', ]); $m->content_lacks("hidden-value"); undef $m; done_testing; rt-4.4.2/t/security/CVE-2013-3373-template-header-injection.t0000664000175000017500000000160613131430353022750 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my ($ticket, $ok, $msg); note "Ticket Subject: in templates"; for my $sep ("\n", "\r\n", "\r") { # Create evil ticket subject $ticket = RT::Ticket->new( RT->SystemUser ); ($ok, $msg) = $ticket->Create( Queue => 1, Subject => "test ticket".$sep."Evil: yes", Requestor => 'foo@example.com', # provide any recipient just to generate a mail ); ok $ticket->id, "Created ticket: $msg"; unlike $ticket->Subject, qr/\n/, "Newline didn't make it into ticket subject"; # ... sends an email my @email = RT::Test->fetch_caught_mails; is @email, 1, "Caught one email"; ok open(my $fh, "<", \$email[0]), "Opened email" or diag $!; my $head = MIME::Head->read($fh); ok !$head->get("Evil"), "No Evil header" or diag explain $email[0]; } done_testing; rt-4.4.2/t/security/CVE-2011-2083-scrub.t0000664000175000017500000000074613131430353017044 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodb => 1, tests => undef; use RT::Interface::Web; # This gets us HTML::Mason::Commands use Test::LongString; { my $html = '

Moose

'; my $expected = '

Moose

'; is_string(scrub_html($html), $expected, "class and id are stripped"); } sub scrub_html { return HTML::Mason::Commands::ScrubHTML(shift); } done_testing; rt-4.4.2/t/security/CVE-2011-2084-modifyscrips-templates.t0000664000175000017500000000766613131430353022446 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; sub set_fails { my $col = shift; my $obj = shift; my $to = ref $_[0] ? +shift->Id : shift; my $from = $obj->$col; my $meth = "Set$col"; my ($ok, $msg) = $obj->$meth($to); ok !$ok, "$meth denied: $msg"; is $obj->$col, $from, "$col left alone"; } sub set_ok { my $col = shift; my $obj = shift; my $to = ref $_[0] ? +shift->Id : shift; my $from = $obj->$col; my $meth = "Set$col"; my ($ok, $msg) = $obj->$meth($to); ok $ok, "$meth allowed: $msg"; is $obj->$col, $to, "$col updated"; } my $qa = RT::Test->load_or_create_queue( Name => 'Queue A' ); my $qb = RT::Test->load_or_create_queue( Name => 'Queue B' ); ok $qa->id, "created Queue A"; ok $qb->id, "created Queue B"; my $user = RT::Test->load_or_create_user( Name => 'testuser' ); my $cu = RT::CurrentUser->new( $user ); ok $user->id, "created testuser"; diag "ModifyScrips"; { my $scrip = RT::Scrip->new( RT->SystemUser ); my ($scrip_id, $msg) = $scrip->Create( Description => 'Testing', Queue => $qa->Id, ScripCondition => 'User Defined', ScripAction => 'User Defined', Template => 'Blank', CustomIsApplicableCode => 'if ($self->TicketObj->Subject =~ /fire/) { return (1);} else { return(0)}', CustomPrepareCode => '1;', CustomCommitCode => 'warn "scrip fired!";', ); ok $scrip_id, $msg; RT::Test->set_rights( { Principal => $user, Right => 'ShowScrips' }, { Principal => $user, Right => 'ModifyScrips', Object => $qa }, ); $scrip = RT::Scrip->new( $cu ); $scrip->Load( $scrip_id ); ok $scrip->id, "loaded scrip as test user"; ok $scrip->IsAdded( $qa->Id ), 'queue is A'; ok +($scrip->SetName('Testing ModifyScrips')); for my $value ($qb->id, 0, undef, '') { my ($ok, $why) = $scrip->AddToObject( $value ); my $disp = (defined($value) ? "'$value'" : "undef"); ok( !$ok, "Correctly not added to $disp: $why" ); } RT::Test->add_rights( Principal => $user, Right => 'ModifyScrips', Object => $qb ); for my $value ($qb->id, 0, undef, '') { my ($ok, $why) = $scrip->AddToObject( $value ); my $disp = (defined($value) ? "'$value'" : "undef"); if ($value) { ok( $ok, "Correctly added to $disp: $why" ); } else { ok( !$ok, "Correctly not added to $disp: $why" ); } } RT::Test->add_rights( Principal => $user, Right => 'ModifyScrips' ); my ($ok, $why) = $scrip->AddToObject( 0 ); ok( $ok, "Correctly added globally: $why" ); set_fails( Template => $scrip => "Autoreply" ); RT::Test->add_rights( Principal => $user, Right => 'ShowTemplate' ); set_ok( Template => $scrip => "Autoreply" ); is $scrip->Template, 'Autoreply', 'template name is right'; } diag "ModifyTemplate"; { RT::Test->set_rights( { Principal => $user, Right => 'ShowTemplate' }, { Principal => $user, Right => 'ModifyTemplate', Object => $qa }, ); my $template = RT::Template->new( RT->SystemUser ); my ($id, $msg) = $template->Create( Queue => $qa->Id, Name => 'Testing', Type => 'Perl', Content => "\n\nThis is a test template.\n", ); ok $id, $msg; $template = RT::Template->new( $cu ); $template->Load( $id ); ok $template->id, "loaded template as test user"; is $template->Queue, $qa->Id, 'queue is A'; ok +($template->SetName('Testing ModifyTemplate')); set_fails( Queue => $template => $qb ); set_fails( Queue => $template => 0 ); RT::Test->add_rights( Principal => $user, Right => 'ModifyTemplate', Object => $qb ); set_fails( Queue => $template => $qb ); set_fails( Queue => $template => 0 ); RT::Test->add_rights( Principal => $user, Right => 'ModifyTemplate' ); set_fails( Queue => $template => 0 ); } done_testing; rt-4.4.2/t/security/CVE-2011-4460-rows-per-page.t0000664000175000017500000000227013131430353020411 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; plan skip_all => 'valid SQL only on mysql' unless RT->Config->Get('DatabaseType') eq 'mysql'; my ($base, $m) = RT::Test->started_ok; ok $m->login, "logged in"; my $t = RT::Ticket->new( RT->SystemUser ); $t->Create( Queue => 1, Subject => 'seed', ); ok $t->id, 'created seed ticket'; my $root = RT::User->new( RT->SystemUser ); $root->Load('root'); my $password = $root->__Value('Password'); ok $password, 'pulled hashed password from db'; my $sql = q[1 union select 1+id as id, 1+id as EffectiveId, 1 as Queue, 'ticket' as Type, 12 as Owner, Password as Subject, 0 as InitialPriority, 0 as FinalPriority, 0 as Priority, 0 as TimeEstimated, 0 as TimeWorked, Name as Status, 0 as TimeLeft, null as Told, null as Starts, null as Started, null as Due, null as Resolved, 0 as LastUpdatedBy, null as LastUpdated, 6 as Creator, null as Created, 0 as Disabled from Users]; RT::Interface::Web::EscapeURI(\$sql); $m->get_ok("$base/Search/Results.html?Format=id,Subject,Status;Query=id%3E0;OrderBy=|;Rows=$sql"); $m->content_lacks($password, "our password hash doesn't show up!"); $m->warning_like(qr/isn't numeric/); undef $m; done_testing; rt-4.4.2/t/security/CVE-2012-4733-status.t0000664000175000017500000000142413131430353017250 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $ticket = RT::Ticket->new(RT::CurrentUser->new('root')); my ($ok, $msg) = $ticket->Create(Queue => 1, Owner => 'nobody', Subject => 'status changes'); ok($ok); my ($baseurl, $m) = RT::Test->started_ok; $m->add_header(Referer => $baseurl); ok $m->login, 'logged in'; $m->get_ok("/Ticket/Display.html?id=1&Status=RESOLVED"); $m->content_like(qr/Status changed from/, "A status change happened"); $m->content_like(qr/Status changed from 'new' to 'resolved'/, "The new status is resolved"); $ticket->Load( $ticket->Id ); is($ticket->Status, 'resolved', "Status is now resolved"); ($ok, $msg) = $ticket->SetStatus('open'); ok($ok, "Can set status back to open"); undef $m; done_testing; rt-4.4.2/t/security/CVE-2012-4735-sign-encrypt-header.t0000664000175000017500000000243413131430353021601 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => undef, gnupg_options => { passphrase => 'rt-test', 'trust-model' => 'always', }; RT::Test->import_gnupg_key('rt-recipient@example.com'); RT::Test->import_gnupg_key( 'rt-test@example.com', 'public' ); my $queue = RT::Test->load_or_create_queue( Name => 'GPG', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', Sign => 0, ); ok $queue && $queue->id, 'loaded or created queue'; { my $mail = <send_via_mailgate($mail, queue => "GPG"); ok $id, "created a ticket"; my ($reply) = RT::Test->fetch_caught_mails; ok( defined $reply, "Got a message" ); unlike( $reply, qr/BEGIN PGP SIGNATURE/, "It is not signed"); } { my $mail = <send_via_mailgate($mail, queue => "GPG"); ok $id, "created a ticket"; my ($reply) = RT::Test->fetch_caught_mails; ok( defined $reply, "Got a message" ); unlike( $reply, qr/BEGIN PGP SIGNATURE/, "It is not signed"); } done_testing; rt-4.4.2/t/security/CVE-2011-5092-installmode.t0000664000175000017500000000066513131430353020244 0ustar vagrantvagrantuse strict; use warnings; BEGIN { $ENV{RT_TEST_WEB_HANDLER} = 'inline'; } use RT::Test tests => undef; use Test::Warn; my ($base, $m) = RT::Test->started_ok; $m->login; $m->content_like(qr/RT at a glance/i, 'homepage'); warning_like { ok !RT->InstallMode(1), 'install mode failed to turn on'; } qr/tried to turn on InstallMode/; $m->reload; $m->content_like(qr/RT at a glance/i, 'still homepage'); undef $m; done_testing; rt-4.4.2/t/security/fake-sendmail0000775000175000017500000000064613131430353016600 0ustar vagrantvagrant#!/usr/bin/perl use strict; use warnings; die "No \$RT_MAILLOGFILE set in environment" unless $ENV{RT_MAILLOGFILE}; open LOG, ">", $ENV{RT_MAILLOGFILE} or die "Can't write to $ENV{RT_MAILLOGFILE}: $!"; my $needs_newline; for (@ARGV) { if (/^-/) { print LOG "\n" if $needs_newline++; print LOG $_; } else { print LOG " $_"; } } print LOG "\n"; 1 while $_ = ; exit 0; rt-4.4.2/t/security/CVE-2011-2083-cf-urls.t0000664000175000017500000000266113131430353017277 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my ($base, $m) = RT::Test->started_ok; my $link = RT::Test->load_or_create_custom_field( Name => 'link', Type => 'Freeform', MaxValues => 1, Queue => 0, LinkValueTo => '__CustomField__', ); my $include = RT::Test->load_or_create_custom_field( Name => 'include', Type => 'Freeform', MaxValues => 1, Queue => 0, IncludeContentForValue => '__CustomField__', ); my $data_uri = 'data:text/html;base64,PHNjcmlwdD5hbGVydChkb2N1bWVudC5jb29raWUpPC9zY3JpcHQ+'; my $xss = q{')-eval(decodeURI('alert("xss")'))-('}; my $ticket = RT::Ticket->new(RT->SystemUser); $ticket->Create( Queue => 'General', Subject => 'ticket A', 'CustomField-'.$link->id => $data_uri, 'CustomField-'.$include->id => $xss, ); ok $ticket->Id, 'created ticket'; ok $m->login('root', 'password'), "logged in"; $m->get_ok($base . "/Ticket/Display.html?id=" . $ticket->id); # look for lack of link to data:text/html;base64,... ok !$m->find_link(text => $data_uri), "no data: link"; ok !$m->find_link(url => $data_uri), "no data: link"; # look for unescaped JS $m->content_lacks($xss, 'escaped js'); $m->warning_like(qr/Potentially dangerous URL type/, "found warning about dangerous link"); undef $m; done_testing; rt-4.4.2/t/security/CVE-2011-5092-localizeddatetime.t0000664000175000017500000000141413131430353021405 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $root = RT::CurrentUser->new('root'); my ($ok, $msg) = $root->UserObj->SetLang('en-us'); ok $ok, $msg; my $year = (localtime time)[5] + 1900; my $date = RT::Date->new( $root ); $date->SetToNow; like $date->AsString( Format => 'LocalizedDateTime' ), qr/\Q$year\E/, 'contains full year'; unlike $date->AsString( Format => 'LocalizedDateTime', DateFormat => 'date_format_short' ), qr/\Q$year\E/, 'lacks full year'; eval { $date->AsString( Format => 'LocalizedDateTime', DateFormat => 'bogus::format' ); }; ok !$@, "didn't die with bogus DateFormat"; eval { $date->AsString( Format => 'LocalizedDateTime', TimeFormat => 'bogus::format' ); }; ok !$@, "didn't die with bogus TimeFormat"; done_testing; rt-4.4.2/t/security/CVE-2012-4735-incoming-encryption-header.t0000664000175000017500000000413213131430353023147 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => undef; use Test::Warn; { my $mail = <send_via_mailgate($mail); ok $id, "created a ticket"; my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket"; my $txn = $ticket->Transactions->First; my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef}; like( $msg->Content, qr/This was _totally_ encrypted/, "Found the right attachment" ); is( $msg->GetHeader('X-RT-Incoming-Encryption'), 'Not encrypted', 'Incoming encryption header is removed' ); is( $msg->GetHeader('X-RT-Incoming-Signature'), undef, 'Incoming signature header is removed' ); } { my $mail = <send_via_mailgate($mail); ok $id, "created a ticket"; } [qr/keyring .* created/, qr/Failure during GnuPG data: No data has been found\. The reason is 'Invalid packet found'/, qr/Failure during GnuPG data: No data has been found\. The reason is 'No armored data'/, ]; my $ticket = RT::Ticket->new( RT->SystemUser ); $ticket->Load( $id ); ok $ticket->id, "loaded ticket"; my $txn = $ticket->Transactions->First; my ($msg, $attach, $orig) = @{$txn->Attachments->ItemsArrayRef}; like( $msg->Content, qr/This was _totally_ encrypted/, "Found the right attachment" ); is( $msg->GetHeader('X-RT-Incoming-Encryption'), undef, 'Incoming encryption header is removed' ); is( $msg->GetHeader('X-RT-Incoming-Signature'), undef, 'Incoming signature header is removed' ); } done_testing; rt-4.4.2/t/security/CVE-2011-5092-graph-links.t0000664000175000017500000000142113131430353020137 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; plan skip_all => 'GraphViz required.' unless GraphViz->require; my ($base, $m) = RT::Test->started_ok; $m->login; for my $arg (qw(LeadingLink ShowLinks)) { my $ticket = RT::Test->create_ticket( Queue => 'General', Subject => 'testing', ); ok $ticket->id, 'created ticket'; ok !$ticket->ToldObj->IsSet, 'no Told'; $m->get_ok("$base/Ticket/Graphs/index.html?$arg=SetTold;id=" . $ticket->id); $ticket->Load($ticket->id); # cache busting ok !$ticket->ToldObj->IsSet, 'still no Told'; $m->content_lacks('GotoFirstItem', 'no GotoFirstItem error'); $m->content_like(qr|]+?src=['"]/Ticket/Graphs/@{[$ticket->id]}|, 'found image element'); } undef $m; done_testing; rt-4.4.2/t/security/CVE-2012-4730-email-header-injection.t0000664000175000017500000001036113131430353022217 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use Email::Abstract; # Multiple email addresses for a single user are supported in 3.8 and 4.0 via # commas, so we really only care if you can inject other headers. It doesn't # much matter if you can inject other recipients via your user email address or # other values since you can do that in many visible and not-so-visible supported (!) # ways. # # HEADER INJECTION VIA USER EMAIL ADDRESS # # 4.0-trunk security/4.0/email-header-injection # ------------------------------------------------- # Via recipient headers w/ RecordOutgoingEmail ON | No | No | # Via recipient headers w/ RecordOutgoingEmail OFF | Yes | No | # Via RT-Originator (X-RT-Originator in 4.2) | Yes | No | # Via other default headers | No | No | # ------------------------------------------------- # # With RecordOutgoingEmail ON, your recipient headers are filtered through # Email::Address, potentially mangling addresses if you've inserted newlines or # other funky chars that run together. my ($ok, $msg); # Create evil user my $user = RT::User->new( RT->SystemUser ); ($ok, $msg) = $user->Create( Name => "eviluser", EmailAddress => "foo\@example.com\nEvil: yes\n\nMalicious", ); ok $user->id, "Created user with evil email address: $msg"; like $user->EmailAddress, qr/\nEvil: yes/, "Email address still evil"; like $user->EmailAddress, qr/\n\nMalicious/, "Email address still malicious"; ($ok, $msg) = $user->PrincipalObj->GrantRight( Right => 'CreateTicket', Object => RT->System, ); ok $ok, "Granted CreateTicket to evil user: $msg"; note "To: header (any recipient header)"; { for my $record_outgoing (1, 0) { RT->Config->Set( RecordOutgoingEmail => $record_outgoing ); note "RecordOutgoingEmail is " . ($record_outgoing ? "ON" : "OFF"); # Create ticket which will... my $ticket = RT::Ticket->new( RT->SystemUser ); ($ok, $msg) = $ticket->Create( Queue => 1, Subject => "test recipient ticket", Requestor => $user->PrincipalId, ); ok $ticket->id, "Created ticket: $msg"; # ... send an autoreply to said user, putting their email address in the To: header my @email = RT::Test->fetch_caught_mails; is @email, 1, "Caught one email"; my $entity = Email::Abstract->new($email[0])->cast('MIME::Entity'); my $head = $entity->head; like $head->get("Subject"), qr/autoreply/i, "Looks like autoreply"; like $head->get("To"), qr/foo\@example\.com/, "To: contains foo\@example.com"; ok !$head->get("Evil"), "No Evil header"; unlike $entity->stringify_body, qr/Malicious/, "No Malicious body"; } } note "X-RT-Originator (previously RT-Originator) header"; { for my $originator (1, 0) { RT->Config->Set( UseOriginatorHeader => $originator ); note "UseOriginatorHeader is " . ($originator ? "ON" : "OFF"); # Create ticket as evil user my $ticket = RT::Ticket->new( RT::CurrentUser->new($user) ); ($ok, $msg) = $ticket->Create( Queue => 1, Subject => "test originator ticket", Requestor => 'unsuspecting@example.com', # provide any recipient ); ok $ticket->id, "Created ticket: $msg"; # ... sends an email my @email = RT::Test->fetch_caught_mails; is @email, 1, "Caught one email"; my $entity = Email::Abstract->new($email[0])->cast('MIME::Entity'); my $head = $entity->head; if ($originator) { like $head->get("X-RT-Originator"), qr/foo\@example\.com/, "X-RT-Originator contains email"; like $head->get("X-RT-Originator"), qr/Evil: yes/, "Evil didn't leak out of X-RT-Originator"; } ok !$head->get("Evil"), "No Evil header"; unlike $entity->stringify_body, qr/Malicious/, "No Malicious body"; } } done_testing; rt-4.4.2/t/security/CVE-2011-2083-clickable-xss.t0000664000175000017500000000235113131430353020444 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; use Test::Warn; my ($base, $m) = RT::Test->started_ok; my $ticket = RT::Test->create_ticket( Queue => 'General', Subject => 'test ticket A', ); my $id = $ticket->id; ok $id, "created ticket"; my @links = ( 'javascript:alert("xss")', 'data:text/html,', ); for my $link ( map { ($_, ucfirst $_) } @links ) { my ($ok, $msg); warnings_like { ($ok, $msg) = $ticket->AddLink( Type => 'RefersTo', Target => $link, ); } [qr/Could not determine a URI scheme/]; ok !$ok, $msg; ok $m->login, "logged in"; $m->get_ok($base); $m->follow_link_ok({ text => 'test ticket A' }, 'ticket page'); $m->follow_link_ok({ text => 'Links' }, 'links page'); $m->submit_form_ok({ with_fields => { "$id-RefersTo" => $link, }, button => 'SubmitTicket', }, 'submitted links page'); $m->content_contains("Couldn't resolve "); $m->next_warning_like(qr/Could not determine a URI scheme/, 'expected warning'); my $element = $m->find_link( url => $link ); ok !$element, "no link"; } $m->no_leftover_warnings_ok; undef $m; done_testing; rt-4.4.2/t/security/CVE-2011-5093-execute-code.t0000664000175000017500000000266713131430353020310 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $template = RT::Template->new( RT->SystemUser ); my ($ok, $msg) = $template->Create( Queue => 0, Name => 'test', Type => 'Simple', Content => <<'.', ===Create-Ticket: testing Queue: General Subject: duplicate: { $Tickets{TOP}->Subject } . ); ok $ok, $msg; my $ticket = RT::Test->create_ticket( Queue => 'General', Subject => 'a ticket', ); ok $ticket->id, "created ticket"; for my $type (qw(Simple Perl)) { if ($template->Type ne $type) { my ($ok, $msg) = $template->SetType($type); ok $ok, $msg; } require RT::Action::CreateTickets; my $action = RT::Action::CreateTickets->new( CurrentUser => RT->SystemUser, TemplateObj => $template, TicketObj => $ticket, ); $action->{TransactionObj} = $ticket->Transactions->First; ok $action->Prepare, 'prepares'; ok $action->Commit, 'commits'; my $new_ticket = RT::Test->last_ticket; ok $new_ticket->id > $ticket->id, 'new ticket'; if ($type eq 'Perl') { is $new_ticket->Subject, 'duplicate: a ticket', 'interpolated'; isnt $new_ticket->Subject, 'duplicate: { $Tickets{TOP}->Subject }', 'interpolated'; } else { isnt $new_ticket->Subject, 'duplicate: a ticket', 'not interpolated'; is $new_ticket->Subject, 'duplicate: { $Tickets{TOP}->Subject }', 'not interpolated'; } } done_testing; rt-4.4.2/t/security/CVE-2012-4732-csrf-blacklist.t0000664000175000017500000000243413131430353020631 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $ticket = RT::Ticket->new(RT::CurrentUser->new('root')); my ($ok, $msg) = $ticket->Create(Queue => 1, Owner => 'nobody', Subject => 'bad music'); ok($ok); my ($baseurl, $m) = RT::Test->started_ok; my $test_page = "/Helpers/Toggle/TicketBookmark?id=1"; my $test_path = "/Helpers/Toggle/TicketBookmark"; ok $m->login, 'logged in'; # valid referer $m->add_header(Referer => $baseurl); $m->get_ok($test_page); $m->content_lacks("Possible cross-site request forgery"); $m->content_contains("star-full.png"); # come from an external source $m->add_header(Referer => 'http://example.com'); $m->get_ok($test_page); $m->content_contains("Possible cross-site request forgery"); $m->title_is('Possible cross-site request forgery'); # come with no referer $m->add_header(Referer => undef); $m->get_ok($test_page); $m->content_contains("Possible cross-site request forgery"); $m->title_is('Possible cross-site request forgery'); # clicking the resume request button gets us to the test page $m->follow_link(text_regex => qr{resume your request}); $m->content_lacks("Possible cross-site request forgery"); like($m->response->request->uri, qr{^http://[^/]+\Q$test_path\E\?CSRF_Token=\w+$}); $m->content_contains("star-empty.png"); undef $m; done_testing; rt-4.4.2/t/security/CVE-2012-4735-sign-any-key.t0000664000175000017500000000552613131430353020251 0ustar vagrantvagrantuse strict; use warnings; use RT::Test::GnuPG tests => undef, gnupg_options => { passphrase => 'rt-test', 'trust-model' => 'always', }; RT::Test->import_gnupg_key('rt-recipient@example.com'); RT::Test->import_gnupg_key('general@example.com'); # Determine the key IDs of the newly-loaded keys my %secret_keys; { my %info = RT::Crypt->GetKeysInfo( Type => 'private', Force => 1 ); for my $key (@{$info{info}}) { my $user = $key->{User}[0]{String}; $user = (Email::Address->parse( $user ))[0]->address; $secret_keys{$user} = $key->{Key}; } } my $queue = RT::Test->load_or_create_queue( Name => 'Signing', CorrespondAddress => 'rt-recipient@example.com', CommentAddress => 'rt-recipient@example.com', ); ok $queue && $queue->id, 'loaded or created queue'; my ( $baseurl, $m ) = RT::Test->started_ok; ok $m->login, 'logged in'; sub create_signed { my $key = shift; diag( "Attempting to sign using $key" ); $m->goto_create_ticket( $queue->id ); $m->form_name('TicketCreate'); unless ($m->current_form->find_input("SignUsing")) { my $content = $m->content; $content =~ s!using Queue(?:'|')s key!using !; $m->update_html( $content ); } $m->form_name('TicketCreate'); $m->field( Subject => 'test' ); $m->field( Requestors => 'rt-test@example.com' ); $m->field( Content => 'Some content' ); $m->tick( Sign => 1 ); $m->field( SignUsing => $key ); $m->submit; } create_signed( '' ); $m->content_lacks("unable to sign outgoing email messages"); my @mail = RT::Test->fetch_caught_mails; is( scalar @mail, 1, "Got a mail" ); like( $mail[0], qr/BEGIN PGP SIGNATURE/, "Is signed" ); create_signed( 'rt-recipient@example.com' ); $m->content_lacks("unable to sign outgoing email messages"); @mail = RT::Test->fetch_caught_mails; is( scalar @mail, 1, "Got a mail" ); like( $mail[0], qr/BEGIN PGP SIGNATURE/, "Is signed" ); create_signed( 'general@example.com' ); $m->content_contains("unable to sign outgoing email messages"); @mail = RT::Test->fetch_caught_mails; is( scalar @mail, 0, "Sent no mail" ); create_signed( $secret_keys{'general@example.com'} ); $m->content_contains("unable to sign outgoing email messages"); @mail = RT::Test->fetch_caught_mails; is( scalar @mail, 0, "Sent no mail" ); my $user = RT::User->new( RT->SystemUser ); $user->Load( 'root' ); my ($ok, $msg) = $user->SetPrivateKey( $secret_keys{'general@example.com'} ); ok($ok, "Set private key to $secret_keys{'general@example.com'}: $msg" ); create_signed( $secret_keys{'general@example.com'} ); $m->content_lacks("unable to sign outgoing email messages"); @mail = RT::Test->fetch_caught_mails; is( scalar @mail, 1, "Sent a mail" ); like( $mail[0], qr/BEGIN PGP SIGNATURE/, "Is signed" ); undef $m; done_testing; rt-4.4.2/t/security/CVE-2011-5092-prefs.t0000664000175000017500000000424613131430353017047 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my ($base, $m) = RT::Test->started_ok; my $user = RT::Test->load_or_create_user( Name => 'ausername', EmailAddress => 'user@example.com', Password => 'password', Privileged => 1, ); ok $user->id, 'created user'; ok( RT::Test->set_rights( { Principal => 'privileged', Right => [qw(ModifySelf ShowTicket)] }, ), "granted ModifySelf to privileged" ); $m->login('ausername'); { $m->get_ok("$base/Prefs/Other.html"); my $style = '../css/base'; $m->submit_form_ok({ with_fields => { WebDefaultStylesheet => $style, }, button => 'Update', }, 'update prefs'); is(RT->Config->Get('WebDefaultStylesheet', $user), $style, 'set preference'); SKIP: { skip "RT::User->Stylesheet wasn't backported", 1 unless $user->can("Stylesheet"); is $user->Stylesheet, RT->Config->Get('WebDefaultStylesheet'), '$user->Stylesheet is the default'; } $m->get_ok($base); $m->content_unlike(qr/"); $m->content_contains( RT->Config->Get('WebDefaultStylesheet') ); } { $m->get_ok("$base/Prefs/Other.html"); my $format = '/../../m/_elements/full_site_link'; $m->submit_form_ok({ form_name => 'ModifyPreferences', fields => { UsernameFormat => $format, }, button => 'Update', }, 'update prefs'); $m->content_contains('saved'); my $ticket = RT::Test->create_ticket( Queue => 'General', Subject => 'test ticket', Requestor => 'user@example.com', ); ok $ticket->id, 'created ticket'; $m->get_ok($base . "/Ticket/Display.html?id=" . $ticket->id); $m->content_lacks('NotMobile', "lacks NotMobile"); $m->next_warning_like(qr/UsernameFormat/, 'caught UsernameFormat warning'); } { $m->get_ok("$base/Helpers/Toggle/ShowRequestor?Status=/../../../Elements/Logo;Requestor=root"); $m->content_lacks('logo', "didn't display /Elements/Logo"); $m->content_contains('Results.html', "found link to search results"); } undef $m; done_testing; rt-4.4.2/t/security/CVE-2012-4731-create-article.t0000664000175000017500000000261113131430353020606 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $user = RT::Test->load_or_create_user( Name => 'testuser' ); ok $user->id, "Created user: ".$user->id; my $class = RT::Class->new( RT->SystemUser ); my ($ok, $msg) = $class->Create( Name => 'recipes' ); ok $ok, "Created class: $msg"; ok( RT::Test->set_rights( Principal => 'Privileged', Right => [qw/SeeClass/], Object => $class, ), "Granted SeeClass on the Class" ); my $article = RT::Article->new( RT::CurrentUser->new($user) ); ($ok, $msg) = $article->Create( Class => 'recipes', Name => 'ricotta raspberry buttermilk scones' ); ok !$ok, "Can't create article: $msg"; ok( RT::Test->add_rights( Principal => 'Privileged', Right => [qw/CreateArticle/], Object => $class, ), "Granted CreateArticle on the Class" ); ($ok, $msg) = $article->Create( Class => 'recipes', Name => 'ricotta raspberry buttermilk scones' ); ok $ok, "Created article: $msg"; ($ok, $msg) = $article->SetSummary("a tasty morning treat"); ok !$ok, "Can't update Summary: $msg"; ok( RT::Test->add_rights( Principal => 'Privileged', Right => [qw/ModifyArticle/], Object => $class, ), "Granted ModifyArticle on the Class" ); ($ok, $msg) = $article->SetSummary("a tasty morning treat"); ok $ok, "Updated Summary: $msg"; done_testing; rt-4.4.2/t/security/CVE-2012-4734-login-warning.t0000664000175000017500000000134013131430353020476 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $ticket = RT::Ticket->new(RT::CurrentUser->new('root')); my ($ok, $msg) = $ticket->Create(Queue => 1, Owner => 'nobody', Subject => 'bad music'); ok($ok); my ($baseurl, $m) = RT::Test->started_ok; my $test_page = "/Ticket/Display.html?id=$ok;Action=Take"; $m->get_ok($test_page); $m->content_contains("update a ticket"); ok($m->form_name('login'),"Found the login form"); $m->submit_form( form_name => 'login', fields => { user => 'root', pass => 'password' } ); $m->content_contains('Owner changed from Nobody to root'); $ticket->Load($ticket->Id); is($ticket->OwnerObj->Name,'root',"Ticket was assigned to root"); undef $m; done_testing; rt-4.4.2/t/i18n/0000775000175000017500000000000013131430353013054 5ustar vagrantvagrantrt-4.4.2/t/i18n/footer.t0000664000175000017500000000144713131430353014545 0ustar vagrantvagrantuse strict; use warnings; use RT::Test; { my $chinese = RT::User->new(RT->SystemUser); $chinese->LoadOrCreateByEmail('chinese@example.com'); $chinese->SetName('chinese'); $chinese->SetLang('zh_tw'); $chinese->SetPrivileged(1); $chinese->SetPassword('password'); $chinese->PrincipalObj->GrantRight(Right => 'SuperUser'); } my ($baseurl, $m) = RT::Test->started_ok; $m->login( root => "password" ); $m->content_contains('Copyright','Has english coypright'); $m->get_ok( "/NoAuth/Logout.html" ); $m->login( chinese => "password" ); $m->content_lacks('Copyright','Lacks english copyright'); $m->get_ok( "/NoAuth/Logout.html" ); # ->logout fails because it's translated $m->login( root => "password" ); $m->content_contains('Copyright','Still has english copyright'); undef $m; rt-4.4.2/t/i18n/default.t0000664000175000017500000000136713131430353014674 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodata => 1; my ($baseurl, $m) = RT::Test->started_ok; $m->get_ok('/'); $m->title_is('Login'); $m->get_ok('/', { 'Accept-Language' => 'x-klingon' }); $m->title_is('Login', 'unavailable language fallback to en'); $m->content_contains(''); $m->add_header('Accept-Language' => 'zh-tw,zh;q=0.8,en-gb;q=0.5,en;q=0.3'); $m->get_ok('/'); $m->title_is( Encode::decode("UTF-8",'登入'), 'Page title properly translated to chinese'); $m->content_contains( Encode::decode("UTF-8",'密碼'), 'Password properly translated'); { local $TODO = "We fail to correctly advertise the langauage in the block"; $m->content_contains(''); } undef $m; rt-4.4.2/t/i18n/caching.t0000664000175000017500000000155613131430353014644 0ustar vagrantvagrantuse strict; use warnings; use RT::Test; { my $french = RT::User->new(RT->SystemUser); $french->LoadOrCreateByEmail('french@example.com'); $french->SetName('french'); $french->SetLang('fr'); $french->SetPrivileged(1); $french->SetPassword('password'); $french->PrincipalObj->GrantRight(Right => 'SuperUser'); } my ($baseurl, $m) = RT::Test->started_ok; $m->login( root => "password" ); $m->get_ok('/Prefs/Other.html'); $m->content_lacks('Ne pas','Lacks translated french'); $m->get_ok( "/NoAuth/Logout.html" ); $m->login( french => "password" ); $m->get_ok('/Prefs/Other.html'); $m->content_contains('Ne pas','Has translated french'); $m->get_ok( "/NoAuth/Logout.html" ); # ->logout fails because it's translated $m->login( root => "password" ); $m->get_ok('/Prefs/Other.html'); $m->content_lacks('Ne pas','Lacks translated french'); undef $m; rt-4.4.2/t/web/0000775000175000017500000000000013131430353013052 5ustar vagrantvagrantrt-4.4.2/t/web/rest-search-user.t0000664000175000017500000000530113131430353016432 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $root = RT::Test->load_or_create_user( Name => 'root', ); my $user_foo = RT::Test->load_or_create_user( Name => 'foo', Password => 'password', ); my $user_bar = RT::Test->load_or_create_user( Name => 'bar' ); my $user_baz = RT::Test->load_or_create_user( Name => 'baz' ); $user_baz->SetDisabled(1); my ( $baseurl, $m ) = RT::Test->started_ok; ok( $m->login, 'logged in' ); search_users_ok( { query => 'id = ' . $user_foo->id }, [ $user_foo->id . ': foo' ], 'search by id' ); search_users_ok( { query => 'Name = ' . $user_foo->Name, format => 's', fields => 'id,name' }, [ "id\tName", $user_foo->id . "\tfoo" ], 'search by name with customized fields' ); search_users_ok( { query => 'foo = 3' }, ['Invalid field specification: foo'], 'invalid field' ); search_users_ok( { query => 'id foo 3' }, ['Invalid operator specification: foo'], 'invalid op' ); search_users_ok( { query => 'password = foo' }, ['Invalid field specification: password'], "can't search password" ); search_users_ok( { query => '', orderby => 'id' }, [ $root->id . ': root', $user_foo->id . ': foo', $user_bar->id . ': bar', ], 'order by id' ); search_users_ok( { query => '', orderby => 'name' }, [ $user_bar->id . ': bar', $user_foo->id . ': foo', $root->id . ': root' ], 'order by name' ); search_users_ok( { query => '', orderby => '+name' }, [ $user_bar->id . ': bar', $user_foo->id . ': foo', $root->id . ': root' ], 'order by +name' ); search_users_ok( { query => '', orderby => '-name' }, [ $root->id . ': root', $user_foo->id . ': foo', $user_bar->id . ': bar' ], 'order by -name' ); search_users_ok( { query => 'Disabled = 0', orderby => 'id' }, [ $root->id . ': root', $user_foo->id . ': foo', $user_bar->id . ': bar', ], 'enabled users' ); search_users_ok( { query => 'Disabled = 1', orderby => 'id' }, [ $user_baz->id . ': baz', ], 'disabled users' ); ok( $m->login( 'foo', 'password', logout => 1 ), 'logged in as foo' ); search_users_ok( { query => 'id = ' . $user_foo->id }, [ 'Permission denied' ], "can't search without permission" ); sub search_users_ok { local $Test::Builder::Level = $Test::Builder::Level + 1; my $query = shift; my $expected = shift; my $name = shift || 'search users'; my $uri = URI->new("$baseurl/REST/1.0/search/user"); $uri->query_form(%$query); $m->get_ok($uri); my @lines = split /\n/, $m->content; shift @lines; # header shift @lines; # empty line is_deeply( \@lines, $expected, $name ); } undef $m; done_testing(); rt-4.4.2/t/web/search_cf_quotes.t0000664000175000017500000000276613131430353016567 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 24; my ( $baseurl, $m ) = RT::Test->started_ok; my $cf = RT::CustomField->new($RT::SystemUser); ok( $cf->Create( Name => "I'm a cf", Type => 'Date', LookupType => 'RT::Queue-RT::Ticket', ) ); ok( $cf->AddToObject( RT::Queue->new($RT::SystemUser) ) ); RT::Test->create_tickets( { Queue => 'General' }, { Subject => 'ticket foo', 'CustomField-' . $cf->id => '2011-09-15' }, { Subject => 'ticket bar', 'CustomField-' . $cf->id => '2011-10-15' }, { Subject => 'ticket baz' }, ); ok( $m->login, 'logged in' ); $m->get_ok('/Search/Build.html'); $m->form_name( 'BuildQuery' ); my ($cf_op) = $m->find_all_inputs( type => 'option', name_regex => qr/I'm a cf/ ); my ($cf_field) = $m->find_all_inputs( type => 'text', name_regex => qr/I'm a cf/ ); diag "search directly"; $m->submit_form( fields => { $cf_op->name => '<', $cf_field->name => '2011-09-30', }, button => 'DoSearch', ); $m->title_is( 'Found 1 ticket', 'found only 1 ticket' ); $m->content_contains( 'ticket foo', 'has ticket foo' ); diag "first add clause, then search"; $m->get_ok('/Search/Build.html?NewQuery=1'); $m->form_name( 'BuildQuery' ); $m->submit_form( fields => { $cf_op->name => '<', $cf_field->name => '2011-09-30', }, button => 'AddClause', ); $m->follow_link_ok( { text => 'Show Results' } ); $m->title_is( 'Found 1 ticket', 'found only 1 ticket' ); $m->content_contains( 'ticket foo', 'has ticket foo' ); rt-4.4.2/t/web/requestor_groups_limit.t0000664000175000017500000000170213131430353020065 0ustar vagrantvagrant use strict; use warnings; use RT::Test tests => 11; diag "set groups limit to 1"; RT->Config->Set( ShowMoreAboutPrivilegedUsers => 1 ); RT->Config->Set( MoreAboutRequestorGroupsLimit => 1 ); my $ticket = RT::Ticket->new(RT->SystemUser); my ($id) = $ticket->Create( Subject => 'groups limit', Queue => 'General', Requestor => 'root@localhost', ); ok( $id, 'created ticket' ); my ( $url, $m ) = RT::Test->started_ok; ok( $m->login(), 'logged in as root' ); $m->goto_ticket($id); $m->content_like( qr/Everyone|Privileged/, 'got one group' ); $m->content_unlike( qr/Everyone.*?Privileged/, 'not 2 groups' ); RT::Test->stop_server; diag "set groups limit to 2"; RT->Config->Set( MoreAboutRequestorGroupsLimit => 2 ); ( $url, $m ) = RT::Test->started_ok; ok( $m->login(), 'logged in as root' ); $m->goto_ticket($id); $m->content_contains( 'Everyone', 'got the first group' ); $m->content_contains( 'Privileged', 'got the second group' ); rt-4.4.2/t/web/search_tabs.t0000664000175000017500000000461013131430353015516 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 21; my ($baseurl, $agent) = RT::Test->started_ok; my $ticket = RT::Ticket->new(RT->SystemUser); for ( 1 .. 3 ) { $ticket->Create( Subject => 'Ticket ' . $_, Queue => 'General', Owner => 'root', Requestor => 'clownman@localhost', ); } ok $agent->login('root', 'password'), 'logged in as root'; # [issues.bestpractical.com #16841] { $agent->get_ok('/Search/Build.html'); $agent->form_name('BuildQuery'); $agent->field('idOp', '='); $agent->field('ValueOfid', '1'); $agent->submit('AddClause'); $agent->form_name('BuildQuery'); $agent->field('idOp', '='); $agent->field('ValueOfid', '2'); $agent->field('AndOr', 'OR'); $agent->submit('AddClause'); $agent->follow_link_ok({id => 'page-results'}); $agent->title_is('Found 2 tickets'); # } # [issues.bestpractical.com #17237] { $agent->follow_link_ok({text => 'New Search'}); $agent->title_is('Query Builder'); $agent->form_name('BuildQuery'); $agent->field('idOp', '='); $agent->field('ValueOfid', '1'); $agent->submit('AddClause'); $agent->form_name('BuildQuery'); $agent->field('idOp', '='); $agent->field('ValueOfid', '2'); $agent->field('AndOr', 'OR'); $agent->click_button(name => 'DoSearch'); $agent->title_is('Found 2 tickets'); $agent->follow_link_ok({id => 'page-results'}); $agent->title_is('Found 2 tickets'); # } $agent->follow_link_ok({text => 'Chart'}); $agent->text_contains('id = 1 OR id = 2'); $agent->form_name('SaveSearch'); $agent->field('SavedSearchDescription' => 'this is my saved chart'); $agent->click_button(name => 'SavedSearchSave'); # Confirm that we saved the chart and that it's the "current chart" $agent->text_contains('Chart this is my saved chart saved.'); $agent->form_name('SaveSearch'); is($agent->value('SavedSearchDescription'), 'this is my saved chart'); $agent->follow_link_ok({text => 'Edit Search'}); $agent->form_name('BuildQuery'); $agent->field('idOp', '='); $agent->field('ValueOfid', '3'); $agent->field('AndOr', 'OR'); $agent->click_button(name => 'DoSearch'); $agent->title_is('Found 3 tickets'); $agent->follow_link_ok({text => 'Chart'}); $agent->text_contains('id = 1 OR id = 2 OR id = 3'); # The interesting bit: confirm that the chart we saved is still the # "current chart" after roundtripping through search builder $agent->form_name('SaveSearch'); is($agent->value('SavedSearchDescription'), 'this is my saved chart'); rt-4.4.2/t/web/ticket_txn_content.t0000664000175000017500000001064013131430353017146 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 63; my $plain_file = File::Spec->catfile( RT::Test->temp_directory, 'attachment.txt' ); open my $plain_fh, '>', $plain_file or die $!; print $plain_fh "this is plain content"; close $plain_fh; my $plain_name = (File::Spec->splitpath($plain_file))[-1]; my $html_file = File::Spec->catfile( RT::Test->temp_directory, 'attachment.html' ); open my $html_fh, '>', $html_file or die $!; print $html_fh "this is plain content"; close $html_fh; my $html_name = (File::Spec->splitpath($html_file))[-1]; my ($baseurl, $m) = RT::Test->started_ok; ok $m->login, 'logged in'; my $queue = RT::Queue->new(RT->Nobody); my $qid = $queue->Load('General'); ok( $qid, "Loaded General queue" ); RT::Test->clean_caught_mails; sub follow_parent_with_headers_link { my $m = shift; my $link = $m->find_link(@_)->url; $link =~ s{/(\d+)$}{"/" . ($1-1)}e; # get the parent attach $m->get_ok($link); } sub follow_with_headers_link { my $m = shift; my $link = $m->find_link(@_)->url; $link =~ s{/\d+/(\d+)/.+$}{/WithHeaders/$1}; # frob into a with headers url $m->get_ok($link); } for my $type ( 'text/plain', 'text/html' ) { $m->form_name('CreateTicketInQueue'); $m->field( 'Queue', $qid ); $m->submit; is( $m->status, 200, "request successful" ); $m->content_contains('Create a new ticket', 'ticket create page' ); $m->form_name('TicketCreate'); $m->field( 'Subject', 'with plain attachment' ); $m->field( 'Attach', $plain_file ); $m->field( 'Content', 'this is main content' ); $m->field( 'ContentType', $type ) unless $type eq 'text/plain'; $m->submit; is( $m->status, 200, "request successful" ); $m->content_contains('with plain attachment', 'we have subject on the page' ); $m->content_contains('this is main content', 'main content' ); $m->content_contains("Download $plain_name", 'download plain file link' ); # Check for Message-IDs follow_parent_with_headers_link($m, text => 'with headers', n => 1); $m->content_like(qr/^Message-ID:/im, 'create content has one Message-ID'); $m->content_unlike(qr/^Message-ID:.+?Message-ID:/ism, 'but not two Message-IDs'); $m->back; follow_with_headers_link($m, text => "Download $plain_name", n => 1); $m->content_unlike(qr/^Message-ID:/im, 'attachment lacks a Message-ID'); $m->back; my ( $mail ) = RT::Test->fetch_caught_mails; like( $mail, qr/this is main content/, 'email contains main content' ); # check the email link in page too $m->follow_link_ok( { text => 'Show' }, 'show the email outgoing' ); $m->content_contains('this is main content', 'email contains main content'); $m->back; $m->follow_link_ok( { text => 'Reply' }, "reply to the ticket" ); $m->form_name('TicketUpdate'); $m->field( 'Attach', $plain_file ); $m->click('AddMoreAttach'); is( $m->status, 200, "request successful" ); $m->form_name('TicketUpdate'); $m->field( 'Attach', $html_file ); # add UpdateCc so we can get email record $m->field( 'UpdateCc', 'rt-test@example.com' ); $m->field( 'UpdateContent', 'this is main reply content' ); $m->field( 'UpdateContentType', $type ) unless $type eq 'text/plain'; $m->click('SubmitTicket'); is( $m->status, 200, "request successful" ); $m->content_contains("this is main reply content", 'main reply content' ); $m->content_contains("Download $html_name", 'download html file link' ); # Check for Message-IDs follow_parent_with_headers_link($m, text => 'with headers', n => 2); $m->content_like(qr/^Message-ID:/im, 'correspondence has one Message-ID'); $m->content_unlike(qr/^Message-ID:.+?Message-ID:/ism, 'but not two Message-IDs'); $m->back; follow_with_headers_link($m, text => "Download $plain_name", n => 2); $m->content_unlike(qr/^Message-ID:/im, 'text/plain attach lacks a Message-ID'); $m->back; follow_with_headers_link($m, text => "Download $html_name", n => 1); $m->content_unlike(qr/^Message-ID:/im, 'text/html attach lacks a Message-ID'); $m->back; ( $mail ) = RT::Test->fetch_caught_mails; like( $mail, qr/this is main reply content/, 'email contains main reply content' ); # check the email link in page too $m->follow_link_ok( { text => 'Show', n => 2 }, 'show the email outgoing' ); $m->content_contains("this is main reply content", 'email contains main reply content'); $m->back; } rt-4.4.2/t/web/articles-links.t0000664000175000017500000000327013131430353016165 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 18; RT->Config->Set( MasonLocalComponentRoot => RT::Test::get_abs_relocatable_dir('html') ); my ($baseurl, $m) = RT::Test->started_ok; my $queue = RT::Queue->new(RT->SystemUser); $queue->Load('General'); my $class = RT::Class->new(RT->SystemUser); my ($ok, $msg) = $class->Create(Name => "issues"); ok($ok, "created class: $msg"); ($ok, $msg) = $class->AddToObject($queue); ok($ok, "applied class to General: $msg"); my $article = RT::Article->new(RT->SystemUser); ($ok, $msg) = $article->Create(Name => "instance of ticket #17421", Class => $class->id); ok($ok, "created article: $msg"); ok($m->login, "logged in"); my $ticket = RT::Test->create_ticket(Queue => $queue->Id, Subject => 'oh wow! an AUTOLOAD bug'); $m->goto_ticket($ticket->id); $m->follow_link_ok({text => 'Reply'}); $m->form_name('TicketUpdate'); $m->field('Articles-Include-Article-Named' => $article->Name); $m->submit; $m->content_contains('instance of ticket #17421', 'got the name of the article in the ticket'); # delete RT::Article's Name method on the server so we'll need to AUTOLOAD it my $clone = $m->clone; $clone->get_ok('/delete-article-name-method.html'); like($clone->content, qr/\{deleted\}/); $m->form_name('TicketUpdate'); $m->click('SubmitTicket'); $m->follow_link_ok({text => 'Links'}); $m->text_contains('Article #' . $article->id . ': instance of ticket #17421', 'Article appears with its name in the links table'); my $refers_to = $ticket->RefersTo; is($refers_to->Count, 1, 'the ticket has a refers-to link'); is($refers_to->First->TargetURI->URI, 'fsck.com-article://example.com/article/' . $article->Id, 'when we included the article it created a refers-to'); rt-4.4.2/t/web/command_line_with_unknown_field.t0000664000175000017500000000413713131430353021646 0ustar vagrantvagrantuse strict; use warnings; use File::Spec (); use Test::Expect; use RT::Test tests => 21, actual_server => 1; my ($baseurl, $m) = RT::Test->started_ok; my $rt_tool_path = "$RT::BinPath/rt"; $ENV{'RTUSER'} = 'root'; $ENV{'RTPASSWD'} = 'password'; $RT::Logger->debug("Connecting to server at ".RT->Config->Get('WebBaseURL')); $ENV{'RTSERVER'} =RT->Config->Get('WebBaseURL') ; $ENV{'RTDEBUG'} = '1'; $ENV{'RTCONFIG'} = '/dev/null'; expect_run( command => "$rt_tool_path shell", prompt => 'rt> ', quit => 'quit', ); expect_send( q{create -t ticket set foo=bar}, "create ticket with unknown field" ); expect_like(qr/foo: Unknown field/, 'foo is unknown field'); expect_like(qr/Could not create ticket/, 'ticket is not created'); expect_send(q{create -t ticket set subject='new ticket' add cc=foo@example.com}, "Creating a ticket..."); expect_like(qr/Ticket \d+ created/, "Created the ticket"); expect_handle->before() =~ /Ticket (\d+) created/; my $ticket_id = $1; expect_send("edit ticket/$ticket_id set marge=simpson", 'set unknown field'); expect_like(qr/marge: Unknown field/, 'marge is unknown field'); expect_like(qr/marge: simpson/, 'the value we set for marge is shown too'); expect_send("edit ticket/$ticket_id set homer=simpson", 'set unknown field'); expect_like(qr/homer: Unknown field/, 'homer is unknown field'); expect_like(qr/homer: simpson/, 'the value we set for homer is shown too'); expect_send( q{create -t ticket set requestors='foo@example.com, bar@example.com'}, "create ticket with field 'requestors'" ); expect_like(qr/Ticket \d+ created/, "Created the ticket"); expect_handle->before() =~ /Ticket (\d+) created/; $ticket_id = $1; expect_send("show ticket/$ticket_id", 'check requestors'); expect_like(qr/From: (?:foo\@example\.com, bar\@example\.com|bar\@example\.com, foo\@example\.com)/, "requestors are set correctly"); expect_quit(); # you may encounter warning like Use of uninitialized value $ampm # ... in Time::ParseDate my @warnings = grep { $_ !~ /\$ampm/ } $m->get_warnings; is( scalar @warnings, 0, 'no extra warnings' ); 1; # needed to avoid a weird exit value from expect_quit rt-4.4.2/t/web/dashboards-groups.t0000664000175000017500000002056013131430353016671 0ustar vagrantvagrantuse strict; use warnings; use RT::Test nodata => 1, tests => 64; my ($baseurl, $m) = RT::Test->started_ok; my $url = $m->rt_base_url; # create user and queue my $user_obj = RT::User->new(RT->SystemUser); my ($ok, $msg) = $user_obj->LoadOrCreateByEmail('customer@example.com'); ok($ok, 'ACL test user creation'); $user_obj->SetName('customer'); $user_obj->SetPrivileged(1); ($ok, $msg) = $user_obj->SetPassword('customer'); $user_obj->PrincipalObj->GrantRight(Right => 'ModifySelf'); my $currentuser = RT::CurrentUser->new($user_obj); my $queue = RT::Queue->new(RT->SystemUser); $queue->Create(Name => 'SearchQueue'.$$); $user_obj->PrincipalObj->GrantRight(Right => $_, Object => $queue) for qw/SeeQueue ShowTicket OwnTicket/; # grant the user all these rights so we can make sure that the group rights # are checked and not these as well $user_obj->PrincipalObj->GrantRight(Right => $_, Object => $RT::System) for qw/SubscribeDashboard CreateOwnDashboard SeeOwnDashboard ModifyOwnDashboard DeleteOwnDashboard/; # create and test groups (outer < inner < user) my $inner_group = RT::Group->new(RT->SystemUser); ($ok, $msg) = $inner_group->CreateUserDefinedGroup(Name => "inner", Description => "inner group"); ok($ok, "created inner group: $msg"); my $outer_group = RT::Group->new(RT->SystemUser); ($ok, $msg) = $outer_group->CreateUserDefinedGroup(Name => "outer", Description => "outer group"); ok($ok, "created outer group: $msg"); ($ok, $msg) = $outer_group->AddMember($inner_group->PrincipalId); ok($ok, "added inner as a member of outer: $msg"); ($ok, $msg) = $inner_group->AddMember($user_obj->PrincipalId); ok($ok, "added user as a member of member: $msg"); ok($outer_group->HasMember($inner_group->PrincipalId), "outer has inner"); ok(!$outer_group->HasMember($user_obj->PrincipalId), "outer doesn't have user directly"); ok($outer_group->HasMemberRecursively($inner_group->PrincipalId), "outer has inner recursively"); ok($outer_group->HasMemberRecursively($user_obj->PrincipalId), "outer has user recursively"); ok(!$inner_group->HasMember($outer_group->PrincipalId), "inner doesn't have outer"); ok($inner_group->HasMember($user_obj->PrincipalId), "inner has user"); ok(!$inner_group->HasMemberRecursively($outer_group->PrincipalId), "inner doesn't have outer, even recursively"); ok($inner_group->HasMemberRecursively($user_obj->PrincipalId), "inner has user recursively"); ok $m->login(customer => 'customer'), "logged in"; $m->follow_link_ok({ id => 'home-dashboard_create'}); $m->form_name('ModifyDashboard'); is_deeply([$m->current_form->find_input('Privacy')->possible_values], ["RT::User-" . $user_obj->Id], "the only selectable privacy is user"); $m->content_lacks('Delete', "Delete button hidden because we are creating"); $user_obj->PrincipalObj->GrantRight(Right => 'CreateGroupDashboard', Object => $inner_group); $m->follow_link_ok({ id => 'home-dashboard_create'}); $m->form_name('ModifyDashboard'); is_deeply([$m->current_form->find_input('Privacy')->possible_values], ["RT::User-" . $user_obj->Id, "RT::Group-" . $inner_group->Id], "the only selectable privacies are user and inner group (not outer group)"); $m->field("Name" => 'broken dashboard'); $m->field("Privacy" => "RT::Group-" . $inner_group->Id); $m->content_lacks('Delete', "Delete button hidden because we are creating"); $m->click_button(value => 'Create'); $m->content_contains("saved", "we lack SeeGroupDashboard, so we end up back at the index."); $user_obj->PrincipalObj->GrantRight( Right => 'SeeGroupDashboard', Object => $inner_group, ); $m->follow_link_ok({ id => 'home-dashboard_create'}); $m->form_name('ModifyDashboard'); $m->field("Name" => 'inner dashboard'); $m->field("Privacy" => "RT::Group-" . $inner_group->Id); $m->click_button(value => 'Create'); $m->content_lacks("Permission Denied", "we now have SeeGroupDashboard"); $m->content_contains("Saved dashboard inner dashboard"); $m->content_lacks('Delete', "Delete button hidden because we lack DeleteDashboard"); my $dashboard = RT::Dashboard->new($currentuser); my ($id) = $m->content =~ /name="id" value="(\d+)"/; ok($id, "got an ID, $id"); $dashboard->LoadById($id); is($dashboard->Name, "inner dashboard"); is($dashboard->Privacy, 'RT::Group-' . $inner_group->Id, "correct privacy"); is($dashboard->PossibleHiddenSearches, 0, "all searches are visible"); $m->get_ok("/Dashboards/Modify.html?id=$id"); $m->content_contains("inner dashboard", "we now have SeeGroupDashboard right"); $m->content_lacks("Permission Denied"); $m->content_contains('Subscription', "Subscription link not hidden because we have SubscribeDashboard"); $m->get_ok("/Dashboards/index.html"); $m->content_contains("inner dashboard", "We can see the inner dashboard from the UI"); $m->get_ok("/Prefs/DashboardsInMenu.html"); $m->content_contains("inner dashboard", "Can also see it in the menu options"); my ($group) = grep {$_->isa("RT::Group") and $_->Id == $inner_group->Id} RT::Dashboard->new($currentuser)->_PrivacyObjects; ok($group, "Found the group in the privacy objects list"); my @loading = map {ref($_)."-".$_->Id} RT::Dashboard->new($currentuser)->ObjectsForLoading; is_deeply( \@loading, ["RT::User-".$user_obj->Id, "RT::Group-".$inner_group->Id], "We can load from ourselves (SeeOwnDashboard) and a group we are with SeeGroupDashboard" ); # If you are granted SeeGroupDashboard globally, you can only see # dashboards in groups you are in. $user_obj->PrincipalObj->RevokeRight( Right => 'SeeGroupDashboard', Object => $inner_group, ); $user_obj->PrincipalObj->GrantRight( Right => 'SeeGroupDashboard', Object => RT->System, ); $m->get_ok("/Dashboards/index.html"); $m->content_contains("inner dashboard", "Having SeeGroupDashboard gobally is fine for groups you are in"); @loading = map {ref($_)."-".$_->Id} RT::Dashboard->new($currentuser)->ObjectsForLoading; is_deeply( \@loading, ["RT::User-".$user_obj->Id, "RT::Group-".$inner_group->Id], "SeeGroupDashboard globally still works for groups you are in" ); $inner_group->DeleteMember($user_obj->PrincipalObj->Id); ok(!$outer_group->HasMemberRecursively($user_obj->PrincipalId), "outer no longer has user recursively"); ok(!$inner_group->HasMemberRecursively($user_obj->PrincipalId), "inner no longer has user recursively"); $m->get_ok("/Dashboards/index.html"); $m->content_lacks("inner dashboard", "But global SeeGroupDashboard isn't enough for other groups"); $m->no_warnings_ok; @loading = map {ref($_)."-".$_->Id} RT::Dashboard->new($currentuser)->ObjectsForLoading; is_deeply( \@loading, ["RT::User-".$user_obj->Id], "We only have our SeeOwnDashboard right, as we are no longer in inner" ); # Similarly, if you're a SuperUser, you still only see dashboards for # groups you belong to $user_obj->PrincipalObj->RevokeRight( Right => 'SeeGroupDashboard', Object => RT->System, ); $user_obj->PrincipalObj->GrantRight( Right => 'SuperUser', Object => RT->System, ); $m->get_ok("/Dashboards/index.html"); $m->content_lacks("inner dashboard", "Superuser can't see dashboards in groups they're not in"); @loading = map {ref($_)."-".$_->Id} RT::Dashboard->new($currentuser)->ObjectsForLoading; is_deeply( \@loading, ["RT::User-".$user_obj->Id, "RT::System-1"], "We pick up the system-level SeeDashboard right from superuser" ); @loading = map {ref($_)."-".$_->Id} RT::Dashboard->new($currentuser)->ObjectsForLoading(IncludeSuperuserGroups => 0); is_deeply( \@loading, ["RT::User-".$user_obj->Id, "RT::System-1"], "IncludeSuperusers only cuts out _group_ dashboard objects for loading, not user and system ones" ); $inner_group->AddMember($user_obj->PrincipalId); $m->get_ok("/Dashboards/index.html"); $m->content_contains("inner dashboard", "Superuser can see dashboards in groups they are in"); @loading = map {ref($_)."-".$_->Id} RT::Dashboard->new($currentuser)->ObjectsForLoading; is_deeply( \@loading, ["RT::User-".$user_obj->Id, "RT::Group-".$inner_group->Id, "RT::System-1"], "Becoming a member of the group makes it a possibility" ); @loading = map {ref($_)."-".$_->Id} RT::Dashboard->new($currentuser)->ObjectsForLoading(IncludeSuperuserGroups => 0); is_deeply( \@loading, ["RT::User-".$user_obj->Id, "RT::System-1"], "But only via superuser" ); $m->get_ok("/Dashboards/index.html"); $m->content_contains("inner dashboard", "The dashboards list includes superuser rights"); $m->get_ok("/Prefs/DashboardsInMenu.html"); $m->content_lacks("inner dashboard", "But the menu skips them"); rt-4.4.2/t/web/ticket_preserve_basics.t0000664000175000017500000000566213131430353017772 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => undef; my $ticket = RT::Test->create_ticket( Subject => 'test ticket basics', Queue => 1, ); my ( $url, $m ) = RT::Test->started_ok; ok( $m->login, 'logged in' ); my $root = RT::Test->load_or_create_user( Name => 'root' ); # Failing test where the time units are not preserved when you # click 'Add more files' on Display my @form_tries = ( {Subject => "hello rt"}, {Status => "open"}, {Owner => $root->id}, ( map +{ "Time$_" => undef, "Time$_-TimeUnits" => 'hours', }, qw/Estimated Worked Left/ ), ( map +{ "Time$_" => '1', "Time$_-TimeUnits" => 'hours', }, qw/Estimated Worked Left/ ), {InitialPriority => "10"}, {FinalPriority => "10"}, ); for my $try (@form_tries) { $m->goto_create_ticket(1); $m->form_name('TicketCreate'); $m->set_fields(%$try); $m->click('AddMoreAttach'); $m->form_name('TicketCreate'); for my $field (keys %$try) { is( $m->value($field), defined($try->{$field}) ? $try->{$field} : '', "field $field is the same after the form was submitted" ); } } # Test for time unit preservation in Jumbo for my $try (@form_tries) { my $jumbo_ticket = RT::Test->create_ticket( Subject => 'test jumbo ticket basics', Queue => 1, ); local($try->{Priority}) = delete local($try->{InitialPriority}) if exists $try->{InitialPriority}; $m->get( $url . "/Ticket/ModifyAll.html?id=" . $jumbo_ticket->id ); $m->form_name('TicketModifyAll'); $m->set_fields(%$try); $m->click('AddMoreAttach'); $m->form_name('TicketModifyAll'); for my $field (keys %$try) { is( $m->value($field), defined($try->{$field}) ? $try->{$field} : '', "field $field is the same after the Jumbo form was submitted" ); } } my $cf = RT::Test->load_or_create_custom_field( Name => 'CF1', Type => 'Freeform', Pattern => '.', # mandatory Queue => 'General', ); # More time unit testing by a failing CF validation $m->get_ok($url.'/Admin/CustomFields/Objects.html?id='.$cf->id); $m->form_with_fields('UpdateObjs'); $m->tick('AddCustomField-'.$cf->id => '0'); # Make CF global $m->click('UpdateObjs'); $m->text_contains("Globally added custom field CF1", 'CF applied globally'); # Test for preservation when a ticket is submitted and CF validation fails for my $try (@form_tries) { $m->goto_create_ticket(1); $m->form_name('TicketCreate'); $m->set_fields(%$try); $m->submit(); $m->form_name('TicketCreate'); for my $field (keys %$try) { is( $m->value($field), defined($try->{$field}) ? $try->{$field} : '', "field $field is the same after the form was submitted" ); } } undef $m; done_testing(); rt-4.4.2/t/web/template.t0000664000175000017500000000536513131430353015063 0ustar vagrantvagrantuse strict; use warnings; use RT::Test tests => 22; my $user_a = RT::Test->load_or_create_user( Name => 'user_a', Password => 'password', ); ok $user_a && $user_a->id, 'loaded or created user'; my ($baseurl, $m) = RT::Test->started_ok; ok( RT::Test->set_rights( { Principal => $user_a, Right => [qw(ShowConfigTab ShowTemplate ModifyTemplate)] }, ), 'set rights'); ok $m->login('user_a', 'password'), 'logged in as user A'; # get to the templates screen $m->follow_link( text => 'Admin' ); $m->title_is(q{RT Administration}, 'admin screen'); $m->follow_link( text => 'Global' ); $m->title_is(q{Admin/Global configuration}, 'global admin'); $m->follow_link( text => 'Templates' ); $m->title_is(q{Modify templates which apply to all queues}, 'global templates'); $m->follow_link( text => 'Resolved' ); # template name $m->title_is(q{Modify template Resolved}, 'modifying the Resolved template'); # now try changing Type back and forth $m->form_name('ModifyTemplate'); is($m->value('Type'), 'Perl'); $m->field(Type => 'Simple'); $m->submit; $m->title_is(q{Modify template Resolved}, 'modifying the Resolved template'); $m->form_name('ModifyTemplate'); is($m->value('Type'), 'Simple', 'updated type to simple'); $m->field(Type => 'Perl'); $m->submit; $m->title_is(q{Modify template Resolved}, 'modifying the Resolved template'); $m->form_name('ModifyTemplate'); is($m->value('Type'), 'Simple', 'need the ExecuteCode right to update Type to Perl'); $m->content_contains('Permission Denied'); ok( RT::Test->add_rights( { Principal => $user_a, Right => [qw(ExecuteCode)] }, ), 'add ExecuteCode rights'); $m->field(Type => 'Perl'); $m->submit; $m->title_is(q{Modify template Resolved}, 'modifying the Resolved template'); $m->form_name('ModifyTemplate'); is($m->value('Type'), 'Perl', 'now that we have ExecuteCode we can update Type to Perl'); { # 21152: Each time you save a Template a newline is chopped off the front $m->form_name('ModifyTemplate'); my $content; TODO: { local $TODO = "WWW::Mechanize doesn't strip newline following ");return""+encodeURIComponent(a)+""})}function A(a){return a.replace(u,function(a,b){return decodeURIComponent(b)})}function r(a){return a.replace(/<\!--(?!{cke_protected})[\s\S]+?--\>/g, function(a){return"<\!--"+w+"{C}"+encodeURIComponent(a).replace(/--/g,"%2D%2D")+"--\>"})}function y(a){return a.replace(/<\!--\{cke_protected\}\{C\}([\s\S]+?)--\>/g,function(a,b){return decodeURIComponent(b)})}function o(a,b){var c=b._.dataStore;return a.replace(/<\!--\{cke_protected\}([\s\S]+?)--\>/g,function(a,b){return decodeURIComponent(b)}).replace(/\{cke_protected_(\d+)\}/g,function(a,b){return c&&c[b]||""})}function q(a,b){for(var c=[],d=b.config.protectedSource,k=b._.dataStore||(b._.dataStore= {id:1}),e=/<\!--\{cke_temp(comment)?\}(\d*?)--\>/g,d=[/|$)/gi,//gi,//gi].concat(d),a=a.replace(/<\!--[\s\S]*?--\>/g,function(a){return"<\!--{cke_tempcomment}"+(c.push(a)-1)+"--\>"}),f=0;f"});a=a.replace(e,function(a,b,d){return"<\!--"+w+(b?"{C}":"")+encodeURIComponent(c[d]).replace(/--/g, "%2D%2D")+"--\>"});a=a.replace(/<\w+(?:\s+(?:(?:[^\s=>]+\s*=\s*(?:[^'"\s>]+|'[^']*'|"[^"]*"))|[^\s=\/>]+))+\s*\/?>/g,function(a){return a.replace(/<\!--\{cke_protected\}([^>]*)--\>/g,function(a,b){k[k.id]=decodeURIComponent(b);return"{cke_protected_"+k.id++ +"}"})});return a=a.replace(/<(title|iframe|textarea)([^>]*)>([\s\S]*?)<\/\1>/g,function(a,c,d,k){return"<"+c+d+">"+o(y(k),b)+""})}CKEDITOR.htmlDataProcessor=function(b){var c,e,f=this;this.editor=b;this.dataFilter=c=new CKEDITOR.htmlParser.filter; this.htmlFilter=e=new CKEDITOR.htmlParser.filter;this.writer=new CKEDITOR.htmlParser.basicWriter;c.addRules(s);c.addRules(k,{applyToAll:true});c.addRules(a(b,"data"),{applyToAll:true});e.addRules(m);e.addRules(F,{applyToAll:true});e.addRules(a(b,"html"),{applyToAll:true});b.on("toHtml",function(a){var a=a.data,c=a.dataValue,k,c=q(c,b),c=g(c,E),c=n(c),c=g(c,L),c=c.replace(K,"$1cke:$2"),c=c.replace(x,""),c=c.replace(/(]*>)(\r\n|\n)/g,"$1$2$2"),c=c.replace(/([^a-z0-9<\-])(on\w{3,})(?!>)/gi, "$1data-cke-"+CKEDITOR.rnd+"-$2");k=a.context||b.editable().getName();var e;if(CKEDITOR.env.ie&&CKEDITOR.env.version<9&&k=="pre"){k="div";c="
"+c+"
";e=1}k=b.document.createElement(k);k.setHtml("a"+c);c=k.getHtml().substr(1);c=c.replace(RegExp("data-cke-"+CKEDITOR.rnd+"-","ig"),"");e&&(c=c.replace(/^
|<\/pre>$/gi,""));c=c.replace(C,"$1$2");c=A(c);c=y(c);k=a.fixForBody===false?false:d(a.enterMode,b.config.autoParagraph);c=CKEDITOR.htmlParser.fragment.fromHtml(c,a.context,k);if(k){e=c;
if(!e.children.length&&CKEDITOR.dtd[e.name][k]){k=new CKEDITOR.htmlParser.element(k);e.add(k)}}a.dataValue=c},null,null,5);b.on("toHtml",function(a){a.data.filter.applyTo(a.data.dataValue,true,a.data.dontFilter,a.data.enterMode)&&b.fire("dataFiltered")},null,null,6);b.on("toHtml",function(a){a.data.dataValue.filterChildren(f.dataFilter,true)},null,null,10);b.on("toHtml",function(a){var a=a.data,b=a.dataValue,c=new CKEDITOR.htmlParser.basicWriter;b.writeChildrenHtml(c);b=c.getHtml(true);a.dataValue=
r(b)},null,null,15);b.on("toDataFormat",function(a){var c=a.data.dataValue;a.data.enterMode!=CKEDITOR.ENTER_BR&&(c=c.replace(/^
/i,""));a.data.dataValue=CKEDITOR.htmlParser.fragment.fromHtml(c,a.data.context,d(a.data.enterMode,b.config.autoParagraph))},null,null,5);b.on("toDataFormat",function(a){a.data.dataValue.filterChildren(f.htmlFilter,true)},null,null,10);b.on("toDataFormat",function(a){a.data.filter.applyTo(a.data.dataValue,false,true)},null,null,11);b.on("toDataFormat",function(a){var c= a.data.dataValue,d=f.writer;d.reset();c.writeChildrenHtml(d);c=d.getHtml(true);c=y(c);c=o(c,b);a.data.dataValue=c},null,null,15)};CKEDITOR.htmlDataProcessor.prototype={toHtml:function(a,b,c,d){var k=this.editor,e,f,g,m;if(b&&typeof b=="object"){e=b.context;c=b.fixForBody;d=b.dontFilter;f=b.filter;g=b.enterMode;m=b.protectedWhitespaces}else e=b;!e&&e!==null&&(e=k.editable().getName());return k.fire("toHtml",{dataValue:a,context:e,fixForBody:c,dontFilter:d,filter:f||k.filter,enterMode:g||k.enterMode, protectedWhitespaces:m}).dataValue},toDataFormat:function(a,b){var c,d,k;if(b){c=b.context;d=b.filter;k=b.enterMode}!c&&c!==null&&(c=this.editor.editable().getName());return this.editor.fire("toDataFormat",{dataValue:a,filter:d||this.editor.filter,context:c,enterMode:k||this.editor.enterMode}).dataValue}};var t=/(?: |\xa0)$/,w="{cke_protected}",v=CKEDITOR.dtd,B=["caption","colgroup","col","thead","tfoot","tbody"],l=CKEDITOR.tools.extend({},v.$blockLimit,v.$block),s={elements:{input:i,textarea:i}}, k={attributeNames:[[/^on/,"data-cke-pa-on"],[/^data-cke-expando$/,""]]},m={elements:{embed:function(a){var b=a.parent;if(b&&b.name=="object"){var c=b.attributes.width,b=b.attributes.height;if(c)a.attributes.width=c;if(b)a.attributes.height=b}},a:function(a){if(!a.children.length&&!a.attributes.name&&!a.attributes["data-cke-saved-name"])return false}}},F={elementNames:[[/^cke:/,""],[/^\?xml:namespace$/,""]],attributeNames:[[/^data-cke-(saved|pa)-/,""],[/^data-cke-.*/,""],["hidefocus",""]],elements:{$:function(a){var b= a.attributes;if(b){if(b["data-cke-temp"])return false;for(var c=["name","href","src"],d,k=0;k-1&&d>-1&&c!=d)){c=a.parent?a.getIndex():-1;d=b.parent?b.getIndex():-1}return c>d?1:-1})},param:function(a){a.children=[];a.isEmpty=true;return a}, span:function(a){a.attributes["class"]=="Apple-style-span"&&delete a.name},html:function(a){delete a.attributes.contenteditable;delete a.attributes["class"]},body:function(a){delete a.attributes.spellcheck;delete a.attributes.contenteditable},style:function(a){var b=a.children[0];if(b&&b.value)b.value=CKEDITOR.tools.trim(b.value);if(!a.attributes.type)a.attributes.type="text/css"},title:function(a){var b=a.children[0];!b&&h(a,b=new CKEDITOR.htmlParser.text);b.value=a.attributes["data-cke-title"]|| ""},input:j,textarea:j},attributes:{"class":function(a){return CKEDITOR.tools.ltrim(a.replace(/(?:^|\s+)cke_[^\s]*/g,""))||false}}};if(CKEDITOR.env.ie)F.attributes.style=function(a){return a.replace(/(^|;)([^\:]+)/g,function(a){return a.toLowerCase()})};var p=/<(a|area|img|input|source)\b([^>]*)>/gi,I=/([\w-:]+)\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|(?:[^ "'>]+))/gi,z=/^(href|src|name)$/i,L=/(?:])[^>]*>[\s\S]*?<\/style>)|(?:<(:?link|meta|base)[^>]*>)/gi,E=/(])[^>]*>)([\s\S]*?)(?:<\/textarea>)/gi, u=/([^<]*)<\/cke:encoded>/gi,K=/(<\/?)((?:object|embed|param|html|body|head|title)[^>]*>)/gi,C=/(<\/?)cke:((?:html|body|head|title)[^>]*>)/gi,x=/]*?)\/?>(?!\s*<\/cke:\1)/gi})();"use strict"; CKEDITOR.htmlParser.element=function(a,d){this.name=a;this.attributes=d||{};this.children=[];var b=a||"",c=b.match(/^cke:(.*)/);c&&(b=c[1]);b=!(!CKEDITOR.dtd.$nonBodyContent[b]&&!CKEDITOR.dtd.$block[b]&&!CKEDITOR.dtd.$listItem[b]&&!CKEDITOR.dtd.$tableContent[b]&&!(CKEDITOR.dtd.$nonEditable[b]||b=="br"));this.isEmpty=!!CKEDITOR.dtd.$empty[a];this.isUnknown=!CKEDITOR.dtd[a];this._={isBlockLike:b,hasInlineStarted:this.isEmpty||!b}}; CKEDITOR.htmlParser.cssStyle=function(a){var d={};((a instanceof CKEDITOR.htmlParser.element?a.attributes.style:a)||"").replace(/"/g,'"').replace(/\s*([^ :;]+)\s*:\s*([^;]+)\s*(?=;|$)/g,function(a,c,e){c=="font-family"&&(e=e.replace(/["']/g,""));d[c.toLowerCase()]=e});return{rules:d,populate:function(a){var c=this.toString();if(c)a instanceof CKEDITOR.dom.element?a.setAttribute("style",c):a instanceof CKEDITOR.htmlParser.element?a.attributes.style=c:a.style=c},toString:function(){var a=[],c; for(c in d)d[c]&&a.push(c,":",d[c],";");return a.join("")}}}; (function(){function a(a){return function(b){return b.type==CKEDITOR.NODE_ELEMENT&&(typeof a=="string"?b.name==a:b.name in a)}}var d=function(a,b){a=a[0];b=b[0];return ab?1:0},b=CKEDITOR.htmlParser.fragment.prototype;CKEDITOR.htmlParser.element.prototype=CKEDITOR.tools.extend(new CKEDITOR.htmlParser.node,{type:CKEDITOR.NODE_ELEMENT,add:b.add,clone:function(){return new CKEDITOR.htmlParser.element(this.name,this.attributes)},filter:function(a,b){var d=this,h,i,b=d.getFilterContext(b);if(b.off)return true; if(!d.parent)a.onRoot(b,d);for(;;){h=d.name;if(!(i=a.onElementName(b,h))){this.remove();return false}d.name=i;if(!(d=a.onElement(b,d))){this.remove();return false}if(d!==this){this.replaceWith(d);return false}if(d.name==h)break;if(d.type!=CKEDITOR.NODE_ELEMENT){this.replaceWith(d);return false}if(!d.name){this.replaceWithChildren();return false}}h=d.attributes;var j,n;for(j in h){n=j;for(i=h[j];;)if(n=a.onAttributeName(b,j))if(n!=j){delete h[j];j=n}else break;else{delete h[j];break}n&&((i=a.onAttribute(b, d,n,i))===false?delete h[n]:h[n]=i)}d.isEmpty||this.filterChildren(a,false,b);return true},filterChildren:b.filterChildren,writeHtml:function(a,b){b&&this.filter(b);var f=this.name,h=[],i=this.attributes,j,n;a.openTag(f,i);for(j in i)h.push([j,i[j]]);a.sortAttributes&&h.sort(d);j=0;for(n=h.length;j0)this.children[a-1].next=null;this.parent.add(d,this.getIndex()+1);return d},addClass:function(a){if(!this.hasClass(a)){var b=this.attributes["class"]||"";this.attributes["class"]=b+(b?" ":"")+ a}},removeClass:function(a){var b=this.attributes["class"];if(b)(b=CKEDITOR.tools.trim(b.replace(RegExp("(?:\\s+|^)"+a+"(?:\\s+|$)")," ")))?this.attributes["class"]=b:delete this.attributes["class"]},hasClass:function(a){var b=this.attributes["class"];return!b?false:RegExp("(?:^|\\s)"+a+"(?=\\s|$)").test(b)},getFilterContext:function(a){var b=[];a||(a={off:false,nonEditable:false,nestedEditable:false});!a.off&&this.attributes["data-cke-processor"]=="off"&&b.push("off",true);!a.nonEditable&&this.attributes.contenteditable== "false"?b.push("nonEditable",true):a.nonEditable&&(!a.nestedEditable&&this.attributes.contenteditable=="true")&&b.push("nestedEditable",true);if(b.length)for(var a=CKEDITOR.tools.copy(a),d=0;d'+c.getValue()+"",CKEDITOR.document); a.insertAfter(c);c.hide();c.$.form&&b._attachToForm()}else b.setData(a.getHtml(),null,true);b.on("loaded",function(){b.fire("uiReady");b.editable(a);b.container=a;b.ui.contentsElement=a;b.setData(b.getData(1));b.resetDirty();b.fire("contentDom");b.mode="wysiwyg";b.fire("mode");b.status="ready";b.fireOnce("instanceReady");CKEDITOR.fire("instanceReady",null,b)},null,null,1E4);b.on("destroy",function(){if(c){b.container.clearCustomData();b.container.remove();c.show()}b.element.clearCustomData();delete b.element}); return b};CKEDITOR.inlineAll=function(){var a,d,b;for(b in CKEDITOR.dtd.$editable)for(var c=CKEDITOR.document.getElementsByTag(b),e=0,f=c.count();e"+(a.title?'{voiceLabel}':"")+'<{outerEl} class="cke_inner cke_reset" role="presentation">{topHtml}<{outerEl} id="{contentId}" class="cke_contents cke_reset" role="presentation">{bottomHtml}'), b=CKEDITOR.dom.element.createFromHtml(n.output({id:a.id,name:b,langDir:a.lang.dir,langCode:a.langCode,voiceLabel:a.title,topHtml:i?''+i+"":"",contentId:a.ui.spaceId("contents"),bottomHtml:j?''+j+"":"",outerEl:CKEDITOR.env.ie?"span":"div"}));if(h==CKEDITOR.ELEMENT_MODE_REPLACE){d.hide();b.insertAfter(d)}else d.append(b); a.container=b;a.ui.contentsElement=a.ui.space("contents");i&&a.ui.space("top").unselectable();j&&a.ui.space("bottom").unselectable();d=a.config.width;h=a.config.height;d&&b.setStyle("width",CKEDITOR.tools.cssLength(d));h&&a.ui.space("contents").setStyle("height",CKEDITOR.tools.cssLength(h));b.disableContextMenu();CKEDITOR.env.webkit&&b.on("focus",function(){a.focus()});a.fireOnce("uiReady")}CKEDITOR.replace=function(b,d){return a(b,d,null,CKEDITOR.ELEMENT_MODE_REPLACE)};CKEDITOR.appendTo=function(b, d,f){return a(b,d,f,CKEDITOR.ELEMENT_MODE_APPENDTO)};CKEDITOR.replaceAll=function(){for(var a=document.getElementsByTagName("textarea"),b=0;b'+d+"");c.append(d);a.changeAttr("aria-describedby",e)}}})});CKEDITOR.addCss(".cke_editable{cursor:text}.cke_editable img,.cke_editable input,.cke_editable textarea{cursor:default}");var o=CKEDITOR.dom.walker.whitespaces(true),q=CKEDITOR.dom.walker.bookmark(false,true),t=CKEDITOR.dom.walker.empty(),w=CKEDITOR.dom.walker.bogus(),v=/(^|]*>)\s*<(p|div|address|h\d|center|pre)[^>]*>\s*(?:]*>| |\u00A0| )?\s*(:?<\/\2>)?\s*(?=$|<\/body>)/gi, B=function(){function a(b){return b.type==CKEDITOR.NODE_ELEMENT}function b(c,d){var e,g,f,u,l=[],p=d.range.startContainer;e=d.range.startPath();for(var p=h[p.getName()],i=0,j=c.getChildren(),s=j.count(),z=-1,K=-1,I=0,F=e.contains(h.$list);i-1)l[z].firstNotAllowed=1;if(K>-1)l[K].lastNotAllowed=1;return l}function c(b,d){var e=[],g=b.getChildren(),f=g.count(),u,l=0,m=h[d],p=!b.is(h.$inline)||b.is("br");for(p&&e.push(" ");l ",x.document);x.insertNode(r);x.setStartAfter(r)}o=new CKEDITOR.dom.elementPath(x.startContainer);l.endPath=E=new CKEDITOR.dom.elementPath(x.endContainer);if(!x.collapsed){var n=E.block||E.blockLimit,y=x.getCommonAncestor();n&&(!n.equals(y)&&!n.contains(y)&&x.checkEndOfBlock())&& l.zombies.push(n);x.deleteContents()}for(;(q=a(x.startContainer)&&x.startContainer.getChild(x.startOffset-1))&&a(q)&&q.isBlockBoundary()&&o.contains(q);)x.moveToPosition(q,CKEDITOR.POSITION_BEFORE_END);e(x,l.blockLimit,o,E);if(r){x.setEndBefore(r);x.collapse();r.remove()}r=x.startPath();if(n=r.contains(d,false,1)){x.splitElement(n);l.inlineStylesRoot=n;l.inlineStylesPeak=r.lastElement}r=x.createBookmark();(n=r.startNode.getPrevious(i))&&a(n)&&d(n)&&G.push(n);(n=r.startNode.getNext(i))&&a(n)&&d(n)&& G.push(n);for(n=r.startNode;(n=n.getParent())&&d(n);)G.push(n);x.moveToBookmark(r);if(r=s){r=l.range;if(l.type=="text"&&l.inlineStylesRoot){q=l.inlineStylesPeak;x=q.getDocument().createText("{cke-peak}");for(G=l.inlineStylesRoot.getParent();!q.equals(G);){x=x.appendTo(q.clone());q=q.getParent()}s=x.getOuterHtml().split("{cke-peak}").join(s)}q=l.blockLimit.getName();if(/^\s+|\s+$/.test(s)&&"span"in CKEDITOR.dtd[q])var v=' ',s=v+s+v;s=l.editor.dataProcessor.toHtml(s, {context:null,fixForBody:false,protectedWhitespaces:!!v,dontFilter:l.dontFilter,filter:l.editor.activeFilter,enterMode:l.editor.activeEnterMode});q=r.document.createElement("body");q.setHtml(s);if(v){q.getFirst().remove();q.getLast().remove()}if((v=r.startPath().block)&&!(v.getChildCount()==1&&v.getBogus()))a:{var t;if(q.getChildCount()==1&&a(t=q.getFirst())&&t.is(u)&&!t.hasAttribute("contenteditable")){v=t.getElementsByTag("*");r=0;for(G=v.count();r0;else{H=t.startPath();if(!E.isBlock&&g(l.editor,H.block,H.blockLimit)&&(B=A(l.editor))){B=r.createElement(B);B.appendBogus();t.insertNode(B);CKEDITOR.env.needsBrFiller&&(J=B.getBogus())&&J.remove();t.moveToPosition(B,CKEDITOR.POSITION_BEFORE_END)}if((H=t.startPath().block)&&!H.equals(w)){if(J=H.getBogus()){J.remove(); v.push(H)}w=H}E.firstNotAllowed&&(n=1);if(n&&E.isElement){H=t.startContainer;for(O=null;H&&!h[H.getName()][E.name];){if(H.equals(q)){H=null;break}O=H;H=H.getParent()}if(H){if(O){V=t.splitElement(O);l.zombies.push(V);l.zombies.push(O)}}else{O=q.getName();W=!G;H=G==x.length-1;O=c(E.node,O);for(var Q=[],S=O.length,R=0,P=void 0,X=0,$=-1;R0;){d=a.getItem(b);if(!CKEDITOR.tools.trim(d.getHtml())){d.appendBogus(); CKEDITOR.env.ie&&(CKEDITOR.env.version<9&&d.getChildCount())&&d.getFirst().remove()}}}return function(d){var e=d.startContainer,g=e.getAscendant("table",1),f=false;c(g.getElementsByTag("td"));c(g.getElementsByTag("th"));g=d.clone();g.setStart(e,0);g=a(g).lastBackward();if(!g){g=d.clone();g.setEndAt(e,CKEDITOR.POSITION_BEFORE_END);g=a(g).lastForward();f=true}g||(g=e);if(g.is("table")){d.setStartAt(g,CKEDITOR.POSITION_BEFORE_START);d.collapse(true);g.remove()}else{g.is({tbody:1,thead:1,tfoot:1})&&(g= b(g,"tr",f));g.is("tr")&&(g=b(g,g.getParent().is("thead")?"th":"td",f));(e=g.getBogus())&&e.remove();d.moveToPosition(g,f?CKEDITOR.POSITION_AFTER_START:CKEDITOR.POSITION_BEFORE_END)}}}();a={detect:function(a,b){var c=a.range,d=c.clone(),e=c.clone(),g=new CKEDITOR.dom.elementPath(c.startContainer,b),f=new CKEDITOR.dom.elementPath(c.endContainer,b);d.collapse(1);e.collapse();if(g.block&&d.checkBoundaryOfElement(g.block,CKEDITOR.END)){c.setStartAfter(g.block);a.prependEolBr=1}if(f.block&&e.checkBoundaryOfElement(f.block, CKEDITOR.START)){c.setEndBefore(f.block);a.appendEolBr=1}},fix:function(a,b){var c=b.getDocument(),d;if(a.appendEolBr){d=this.createEolBr(c);a.fragment.append(d)}a.prependEolBr&&(!d||d.getPrevious())&&a.fragment.append(this.createEolBr(c),1)},createEolBr:function(a){return a.createElement("br",{attributes:{"data-cke-eol":1}})}};d={exclude:function(a){var b=a.range.getBoundaryNodes(),c=b.startNode;(b=b.endNode)&&(w(b)&&(!c||!c.equals(b)))&&a.range.setEndBefore(b)}};c={rebuild:function(a,b){var c=a.range, d=c.getCommonAncestor(),e=new CKEDITOR.dom.elementPath(d,b),g=new CKEDITOR.dom.elementPath(c.startContainer,b),c=new CKEDITOR.dom.elementPath(c.endContainer,b),f;d.type==CKEDITOR.NODE_TEXT&&(d=d.getParent());if(e.blockLimit.is({tr:1,table:1})){var h=e.contains("table").getParent();f=function(a){return!a.equals(h)}}else if(e.block&&e.block.is(CKEDITOR.dtd.$listItem)){g=g.contains(CKEDITOR.dtd.$list);c=c.contains(CKEDITOR.dtd.$list);if(!g.equals(c)){var l=e.contains(CKEDITOR.dtd.$list).getParent(); f=function(a){return!a.equals(l)}}}f||(f=function(a){return!a.equals(e.block)&&!a.equals(e.blockLimit)});this.rebuildFragment(a,b,d,f)},rebuildFragment:function(a,b,c,d){for(var e;c&&!c.equals(b)&&d(c);){e=c.clone(0,1);a.fragment.appendTo(e);a.fragment=e;c=c.getParent()}}};b={shrink:function(a){var a=a.range,b=a.startContainer,c=a.endContainer,d=a.startOffset,e=a.endOffset;b.type==CKEDITOR.NODE_ELEMENT&&(b.equals(c)&&b.is("tr")&&++d==e)&&a.shrink(CKEDITOR.SHRINK_TEXT)}};var s=function(){function a(b, c){var d=b.getParent();if(d.is(CKEDITOR.dtd.$inline))b[c?"insertBefore":"insertAfter"](d)}function b(c,d,e){a(d);a(e,1);for(var g;g=e.getNext();){g.insertAfter(d);d=g}t(c)&&c.remove()}function c(a,b){var d=new CKEDITOR.dom.range(a);d.setStartAfter(b.startNode);d.setEndBefore(b.endNode);return d}return{list:{detectMerge:function(a,b){var d=c(b,a.bookmark),e=d.startPath(),g=d.endPath(),f=e.contains(CKEDITOR.dtd.$list),h=g.contains(CKEDITOR.dtd.$list);a.mergeList=f&&h&&f.getParent().equals(h.getParent())&& !f.equals(h);a.mergeListItems=e.block&&g.block&&e.block.is(CKEDITOR.dtd.$listItem)&&g.block.is(CKEDITOR.dtd.$listItem);if(a.mergeList||a.mergeListItems){d=d.clone();d.setStartBefore(a.bookmark.startNode);d.setEndAfter(a.bookmark.endNode);a.mergeListBookmark=d.createBookmark()}},merge:function(a,c){if(a.mergeListBookmark){var d=a.mergeListBookmark.startNode,e=a.mergeListBookmark.endNode,g=new CKEDITOR.dom.elementPath(d,c),f=new CKEDITOR.dom.elementPath(e,c);if(a.mergeList){var h=g.contains(CKEDITOR.dtd.$list), k=f.contains(CKEDITOR.dtd.$list);if(!h.equals(k)){k.moveChildren(h);k.remove()}}if(a.mergeListItems){g=g.contains(CKEDITOR.dtd.$listItem);f=f.contains(CKEDITOR.dtd.$listItem);g.equals(f)||b(f,d,e)}d.remove();e.remove()}}},block:{detectMerge:function(a,b){if(!a.tableContentsRanges&&!a.mergeListBookmark){var c=new CKEDITOR.dom.range(b);c.setStartBefore(a.bookmark.startNode);c.setEndAfter(a.bookmark.endNode);a.mergeBlockBookmark=c.createBookmark()}},merge:function(a,c){if(a.mergeBlockBookmark&&!a.purgeTableBookmark){var d= a.mergeBlockBookmark.startNode,e=a.mergeBlockBookmark.endNode,g=new CKEDITOR.dom.elementPath(d,c),f=new CKEDITOR.dom.elementPath(e,c),g=g.block,f=f.block;g&&(f&&!g.equals(f))&&b(f,d,e);d.remove();e.remove()}}},table:function(){function a(c){var e=[],g,f=new CKEDITOR.dom.walker(c),h=c.startPath().contains(d),k=c.endPath().contains(d),l={};f.guard=function(a,f){if(a.type==CKEDITOR.NODE_ELEMENT){var m="visited_"+(f?"out":"in");if(a.getCustomData(m))return;CKEDITOR.dom.element.setMarker(l,a,m,1)}if(f&& h&&a.equals(h)){g=c.clone();g.setEndAt(h,CKEDITOR.POSITION_BEFORE_END);e.push(g)}else if(!f&&k&&a.equals(k)){g=c.clone();g.setStartAt(k,CKEDITOR.POSITION_AFTER_START);e.push(g)}else if(!f&&a.type==CKEDITOR.NODE_ELEMENT&&a.is(d)&&(!h||b(a,h))&&(!k||b(a,k))){g=c.clone();g.selectNodeContents(a);e.push(g)}};f.lastForward();CKEDITOR.dom.element.clearAllMarkers(l);return e}function b(a,c){var d=CKEDITOR.POSITION_CONTAINS+CKEDITOR.POSITION_IS_CONTAINED,e=a.getPosition(c);return e===CKEDITOR.POSITION_IDENTICAL? false:(e&d)===0}var d={td:1,th:1,caption:1};return{detectPurge:function(a){var b=a.range,c=b.clone();c.enlarge(CKEDITOR.ENLARGE_ELEMENT);var c=new CKEDITOR.dom.walker(c),e=0;c.evaluator=function(a){a.type==CKEDITOR.NODE_ELEMENT&&a.is(d)&&++e};c.checkForward();if(e>1){var c=b.startPath().contains("table"),g=b.endPath().contains("table");if(c&&g&&b.checkBoundaryOfElement(c,CKEDITOR.START)&&b.checkBoundaryOfElement(g,CKEDITOR.END)){b=a.range.clone();b.setStartBefore(c);b.setEndAfter(g);a.purgeTableBookmark= b.createBookmark()}}},detectRanges:function(e,g){var f=c(g,e.bookmark),h=f.clone(),k,l,m=f.getCommonAncestor();m.is(CKEDITOR.dtd.$tableContent)&&!m.is(d)&&(m=m.getAscendant("table",true));l=m;m=new CKEDITOR.dom.elementPath(f.startContainer,l);l=new CKEDITOR.dom.elementPath(f.endContainer,l);m=m.contains("table");l=l.contains("table");if(m||l){if(m&&l&&b(m,l)){e.tableSurroundingRange=h;h.setStartAt(m,CKEDITOR.POSITION_AFTER_END);h.setEndAt(l,CKEDITOR.POSITION_BEFORE_START);h=f.clone();h.setEndAt(m, CKEDITOR.POSITION_AFTER_END);k=f.clone();k.setStartAt(l,CKEDITOR.POSITION_BEFORE_START);k=a(h).concat(a(k))}else if(m){if(!l){e.tableSurroundingRange=h;h.setStartAt(m,CKEDITOR.POSITION_AFTER_END);f.setEndAt(m,CKEDITOR.POSITION_AFTER_END)}}else{e.tableSurroundingRange=h;h.setEndAt(l,CKEDITOR.POSITION_BEFORE_START);f.setStartAt(l,CKEDITOR.POSITION_AFTER_START)}e.tableContentsRanges=k?k:a(f)}},deleteRanges:function(a){for(var b;b=a.tableContentsRanges.pop();){b.extractContents();t(b.startContainer)&& b.startContainer.appendBogus()}a.tableSurroundingRange&&a.tableSurroundingRange.extractContents()},purge:function(a){if(a.purgeTableBookmark){var b=a.doc,c=a.range.clone(),b=b.createElement("p");b.insertBefore(a.purgeTableBookmark.startNode);c.moveToBookmark(a.purgeTableBookmark);c.deleteContents();a.range.moveToPosition(b,CKEDITOR.POSITION_AFTER_START)}}}}(),detectExtractMerge:function(a){return!(a.range.startPath().contains(CKEDITOR.dtd.$listItem)&&a.range.endPath().contains(CKEDITOR.dtd.$listItem))}, fixUneditableRangePosition:function(a){a.startContainer.getDtd()["#"]||a.moveToClosestEditablePosition(null,true)},autoParagraph:function(a,b){var c=b.startPath(),d;if(g(a,c.block,c.blockLimit)&&(d=A(a))){d=b.document.createElement(d);d.appendBogus();b.insertNode(d);b.moveToPosition(d,CKEDITOR.POSITION_AFTER_START)}}}}()})(); (function(){function a(){var a=this._.fakeSelection,b;if(a){b=this.getSelection(1);if(!b||!b.isHidden()){a.reset();a=0}}if(!a){a=b||this.getSelection(1);if(!a||a.getType()==CKEDITOR.SELECTION_NONE)return}this.fire("selectionCheck",a);b=this.elementPath();if(!b.compare(this._.selectionPreviousPath)){if(CKEDITOR.env.webkit)this._.previousActive=this.document.getActive();this._.selectionPreviousPath=b;this.fire("selectionChange",{selection:a,path:b})}}function d(){o=true;if(!y){b.call(this);y=CKEDITOR.tools.setTimeout(b, 200,this)}}function b(){y=null;if(o){CKEDITOR.tools.setTimeout(a,0,this);o=false}}function c(a){return q(a)||a.type==CKEDITOR.NODE_ELEMENT&&!a.is(CKEDITOR.dtd.$empty)?true:false}function e(a){function b(c,d){return!c||c.type==CKEDITOR.NODE_TEXT?false:a.clone()["moveToElementEdit"+(d?"End":"Start")](c)}if(!(a.root instanceof CKEDITOR.editable))return false;var d=a.startContainer,e=a.getPreviousNode(c,null,d),g=a.getNextNode(c,null,d);return b(e)||b(g,1)||!e&&!g&&!(d.type==CKEDITOR.NODE_ELEMENT&&d.isBlockBoundary()&& d.getBogus())?true:false}function f(a){return a.getCustomData("cke-fillingChar")}function h(a,b){var c=a&&a.removeCustomData("cke-fillingChar");if(c){if(b!==false){var d,e=a.getDocument().getSelection().getNative(),g=e&&e.type!="None"&&e.getRangeAt(0);if(c.getLength()>1&&g&&g.intersectsNode(c.$)){d=j(e);g=e.focusNode==c.$&&e.focusOffset>0;e.anchorNode==c.$&&e.anchorOffset>0&&d[0].offset--;g&&d[1].offset--}}c.setText(i(c.getText()));d&&n(a.getDocument().$,d)}}function i(a){return a.replace(/\u200B( )?/g, function(a){return a[1]?" ":""})}function j(a){return[{node:a.anchorNode,offset:a.anchorOffset},{node:a.focusNode,offset:a.focusOffset}]}function n(a,b){var c=a.getSelection(),d=a.createRange();d.setStart(b[0].node,b[0].offset);d.collapse(true);c.removeAllRanges();c.addRange(d);c.extend(b[1].node,b[1].offset)}function g(a){var b=CKEDITOR.dom.element.createFromHtml('
 
', a.document);a.fire("lockSnapshot");a.editable().append(b);var c=a.getSelection(1),d=a.createRange(),e=c.root.on("selectionchange",function(a){a.cancel()},null,null,0);d.setStartAt(b,CKEDITOR.POSITION_AFTER_START);d.setEndAt(b,CKEDITOR.POSITION_BEFORE_END);c.selectRanges([d]);e.removeListener();a.fire("unlockSnapshot");a._.hiddenSelectionContainer=b}function A(a){var b={37:1,39:1,8:1,46:1};return function(c){var d=c.data.getKeystroke();if(b[d]){var e=a.getSelection().getRanges(),g=e[0];if(e.length== 1&&g.collapsed)if((d=g[d<38?"getPreviousEditableNode":"getNextEditableNode"]())&&d.type==CKEDITOR.NODE_ELEMENT&&d.getAttribute("contenteditable")=="false"){a.getSelection().fake(d);c.data.preventDefault();c.cancel()}}}}function r(a){for(var b=0;b=d.getLength()?h.setStartAfter(d):h.setStartBefore(d));e&&e.type==CKEDITOR.NODE_TEXT&&(f?h.setEndAfter(e):h.setEndBefore(e));d=new CKEDITOR.dom.walker(h);d.evaluator=function(d){if(d.type==CKEDITOR.NODE_ELEMENT&&d.isReadOnly()){var e=c.clone();c.setEndBefore(d);c.collapsed&&a.splice(b--,1);if(!(d.getPosition(h.endContainer)&CKEDITOR.POSITION_CONTAINS)){e.setStartAfter(d); e.collapsed||a.splice(b+1,0,e)}return true}return false};d.next()}}return a}var y,o,q=CKEDITOR.dom.walker.invisible(1),t=function(){function a(b){return function(a){var c=a.editor.createRange();c.moveToClosestEditablePosition(a.selected,b)&&a.editor.getSelection().selectRanges([c]);return false}}function b(a){return function(b){var c=b.editor,d=c.createRange(),e;if(!(e=d.moveToClosestEditablePosition(b.selected,a)))e=d.moveToClosestEditablePosition(b.selected,!a);e&&c.getSelection().selectRanges([d]); c.fire("saveSnapshot");b.selected.remove();if(!e){d.moveToElementEditablePosition(c.editable());c.getSelection().selectRanges([d])}c.fire("saveSnapshot");return false}}var c=a(),d=a(1);return{37:c,38:c,39:d,40:d,8:b(),46:b(1)}}();CKEDITOR.on("instanceCreated",function(b){function c(){var a=e.getSelection();a&&a.removeAllRanges()}var e=b.editor;e.on("contentDom",function(){function b(){C=new CKEDITOR.dom.selection(e.getSelection());C.lock()}function c(){f.removeListener("mouseup",c);j.removeListener("mouseup", c);var a=CKEDITOR.document.$.selection,b=a.createRange();a.type!="None"&&b.parentElement().ownerDocument==g.$&&b.select()}var g=e.document,f=CKEDITOR.document,l=e.editable(),i=g.getBody(),j=g.getDocumentElement(),u=l.isInline(),s,C;CKEDITOR.env.gecko&&l.attachListener(l,"focus",function(a){a.removeListener();if(s!==0)if((a=e.getSelection().getNative())&&a.isCollapsed&&a.anchorNode==l.$){a=e.createRange();a.moveToElementEditStart(l);a.select()}},null,null,-2);l.attachListener(l,CKEDITOR.env.webkit? "DOMFocusIn":"focus",function(){s&&CKEDITOR.env.webkit&&(s=e._.previousActive&&e._.previousActive.equals(g.getActive()));e.unlockSelection(s);s=0},null,null,-1);l.attachListener(l,"mousedown",function(){s=0});if(CKEDITOR.env.ie||u){w?l.attachListener(l,"beforedeactivate",b,null,null,-1):l.attachListener(e,"selectionCheck",b,null,null,-1);l.attachListener(l,CKEDITOR.env.webkit?"DOMFocusOut":"blur",function(){e.lockSelection(C);s=1},null,null,-1);l.attachListener(l,"mousedown",function(){s=0})}if(CKEDITOR.env.ie&& !u){var x;l.attachListener(l,"mousedown",function(a){if(a.data.$.button==2){a=e.document.getSelection();if(!a||a.getType()==CKEDITOR.SELECTION_NONE)x=e.window.getScrollPosition()}});l.attachListener(l,"mouseup",function(a){if(a.data.$.button==2&&x){e.document.$.documentElement.scrollLeft=x.x;e.document.$.documentElement.scrollTop=x.y}x=null});if(g.$.compatMode!="BackCompat"){if(CKEDITOR.env.ie7Compat||CKEDITOR.env.ie6Compat)j.on("mousedown",function(a){function b(a){a=a.data.$;if(d){var c=i.$.createTextRange(); try{c.moveToPoint(a.clientX,a.clientY)}catch(e){}d.setEndPoint(g.compareEndPoints("StartToStart",c)<0?"EndToEnd":"StartToStart",c);d.select()}}function c(){j.removeListener("mousemove",b);f.removeListener("mouseup",c);j.removeListener("mouseup",c);d.select()}a=a.data;if(a.getTarget().is("html")&&a.$.y7&&CKEDITOR.env.version<11)j.on("mousedown",function(a){if(a.data.getTarget().is("html")){f.on("mouseup",c);j.on("mouseup",c)}})}}l.attachListener(l,"selectionchange",a,e);l.attachListener(l,"keyup",d,e);l.attachListener(l,CKEDITOR.env.webkit?"DOMFocusIn":"focus",function(){e.forceNextSelectionCheck();e.selectionChange(1)});if(u&&(CKEDITOR.env.webkit||CKEDITOR.env.gecko)){var n;l.attachListener(l,"mousedown",function(){n=1});l.attachListener(g.getDocumentElement(),"mouseup", function(){n&&d.call(e);n=0})}else l.attachListener(CKEDITOR.env.ie?l:g.getDocumentElement(),"mouseup",d,e);CKEDITOR.env.webkit&&l.attachListener(g,"keydown",function(a){switch(a.data.getKey()){case 13:case 33:case 34:case 35:case 36:case 37:case 39:case 8:case 45:case 46:h(l)}},null,null,-1);l.attachListener(l,"keydown",A(e),null,null,-1)});e.on("setData",function(){e.unlockSelection();CKEDITOR.env.webkit&&c()});e.on("contentDomUnload",function(){e.unlockSelection()});if(CKEDITOR.env.ie9Compat)e.on("beforeDestroy", c,null,null,9);e.on("dataReady",function(){delete e._.fakeSelection;delete e._.hiddenSelectionContainer;e.selectionChange(1)});e.on("loadSnapshot",function(){var a=CKEDITOR.dom.walker.nodeType(CKEDITOR.NODE_ELEMENT),b=e.editable().getLast(a);if(b&&b.hasAttribute("data-cke-hidden-sel")){b.remove();if(CKEDITOR.env.gecko)(a=e.editable().getFirst(a))&&(a.is("br")&&a.getAttribute("_moz_editor_bogus_node"))&&a.remove()}},null,null,100);e.on("key",function(a){if(e.mode=="wysiwyg"){var b=e.getSelection(); if(b.isFake){var c=t[a.data.keyCode];if(c)return c({editor:e,selected:b.getSelectedElement(),selection:b,keyEvent:a})}}})});CKEDITOR.on("instanceReady",function(a){function b(){var a=d.editable();if(a)if(a=f(a)){var c=d.document.$.getSelection();if(c.type!="None"&&(c.anchorNode==a.$||c.focusNode==a.$))g=j(c);e=a.getText();a.setText(i(e))}}function c(){var a=d.editable();if(a)if(a=f(a)){a.setText(e);if(g){n(d.document.$,g);g=null}}}var d=a.editor,e,g;if(CKEDITOR.env.webkit){d.on("selectionChange", function(){var a=d.editable(),b=f(a);b&&(b.getCustomData("ready")?h(a):b.setCustomData("ready",1))},null,null,-1);d.on("beforeSetMode",function(){h(d.editable())},null,null,-1);d.on("beforeUndoImage",b);d.on("afterUndoImage",c);d.on("beforeGetData",b,null,null,0);d.on("getData",c)}});CKEDITOR.editor.prototype.selectionChange=function(b){(b?a:d).call(this)};CKEDITOR.editor.prototype.getSelection=function(a){if((this._.savedSelection||this._.fakeSelection)&&!a)return this._.savedSelection||this._.fakeSelection; return(a=this.editable())&&this.mode=="wysiwyg"?new CKEDITOR.dom.selection(a):null};CKEDITOR.editor.prototype.lockSelection=function(a){a=a||this.getSelection(1);if(a.getType()!=CKEDITOR.SELECTION_NONE){!a.isLocked&&a.lock();this._.savedSelection=a;return true}return false};CKEDITOR.editor.prototype.unlockSelection=function(a){var b=this._.savedSelection;if(b){b.unlock(a);delete this._.savedSelection;return true}return false};CKEDITOR.editor.prototype.forceNextSelectionCheck=function(){delete this._.selectionPreviousPath}; CKEDITOR.dom.document.prototype.getSelection=function(){return new CKEDITOR.dom.selection(this)};CKEDITOR.dom.range.prototype.select=function(){var a=this.root instanceof CKEDITOR.editable?this.root.editor.getSelection():new CKEDITOR.dom.selection(this.root);a.selectRanges([this]);return a};CKEDITOR.SELECTION_NONE=1;CKEDITOR.SELECTION_TEXT=2;CKEDITOR.SELECTION_ELEMENT=3;var w=typeof window.getSelection!="function",v=1;CKEDITOR.dom.selection=function(a){if(a instanceof CKEDITOR.dom.selection)var b= a,a=a.root;var c=a instanceof CKEDITOR.dom.element;this.rev=b?b.rev:v++;this.document=a instanceof CKEDITOR.dom.document?a:a.getDocument();this.root=c?a:this.document.getBody();this.isLocked=0;this._={cache:{}};if(b){CKEDITOR.tools.extend(this._.cache,b._.cache);this.isFake=b.isFake;this.isLocked=b.isLocked;return this}var a=this.getNative(),d,e;if(a)if(a.getRangeAt)d=(e=a.rangeCount&&a.getRangeAt(0))&&new CKEDITOR.dom.node(e.commonAncestorContainer);else{try{e=a.createRange()}catch(g){}d=e&&CKEDITOR.dom.element.get(e.item&& e.item(0)||e.parentElement())}if(!d||!(d.type==CKEDITOR.NODE_ELEMENT||d.type==CKEDITOR.NODE_TEXT)||!this.root.equals(d)&&!this.root.contains(d)){this._.cache.type=CKEDITOR.SELECTION_NONE;this._.cache.startElement=null;this._.cache.selectedElement=null;this._.cache.selectedText="";this._.cache.ranges=new CKEDITOR.dom.rangeList}return this};var B={img:1,hr:1,li:1,table:1,tr:1,td:1,th:1,embed:1,object:1,ol:1,ul:1,a:1,input:1,form:1,select:1,textarea:1,button:1,fieldset:1,thead:1,tfoot:1};CKEDITOR.dom.selection.prototype= {getNative:function(){return this._.cache.nativeSel!==void 0?this._.cache.nativeSel:this._.cache.nativeSel=w?this.document.$.selection:this.document.getWindow().$.getSelection()},getType:w?function(){var a=this._.cache;if(a.type)return a.type;var b=CKEDITOR.SELECTION_NONE;try{var c=this.getNative(),d=c.type;if(d=="Text")b=CKEDITOR.SELECTION_TEXT;if(d=="Control")b=CKEDITOR.SELECTION_ELEMENT;if(c.createRange().parentElement())b=CKEDITOR.SELECTION_TEXT}catch(e){}return a.type=b}:function(){var a=this._.cache; if(a.type)return a.type;var b=CKEDITOR.SELECTION_TEXT,c=this.getNative();if(!c||!c.rangeCount)b=CKEDITOR.SELECTION_NONE;else if(c.rangeCount==1){var c=c.getRangeAt(0),d=c.startContainer;if(d==c.endContainer&&d.nodeType==1&&c.endOffset-c.startOffset==1&&B[d.childNodes[c.startOffset].nodeName.toLowerCase()])b=CKEDITOR.SELECTION_ELEMENT}return a.type=b},getRanges:function(){var a=w?function(){function a(b){return(new CKEDITOR.dom.node(b)).getIndex()}var b=function(b,c){b=b.duplicate();b.collapse(c); var d=b.parentElement();if(!d.hasChildNodes())return{container:d,offset:0};for(var e=d.children,g,f,h=b.duplicate(),l=0,k=e.length-1,i=-1,j,n;l<=k;){i=Math.floor((l+k)/2);g=e[i];h.moveToElementText(g);j=h.compareEndPoints("StartToStart",b);if(j>0)k=i-1;else if(j<0)l=i+1;else return{container:d,offset:a(g)}}if(i==-1||i==e.length-1&&j<0){h.moveToElementText(d);h.setEndPoint("StartToStart",b);h=h.text.replace(/(\r\n|\r)/g,"\n").length;e=d.childNodes;if(!h){g=e[e.length-1];return g.nodeType!=CKEDITOR.NODE_TEXT? {container:d,offset:e.length}:{container:g,offset:g.nodeValue.length}}for(d=e.length;h>0&&d>0;){f=e[--d];if(f.nodeType==CKEDITOR.NODE_TEXT){n=f;h=h-f.nodeValue.length}}return{container:n,offset:-h}}h.collapse(j>0?true:false);h.setEndPoint(j>0?"StartToStart":"EndToStart",b);h=h.text.replace(/(\r\n|\r)/g,"\n").length;if(!h)return{container:d,offset:a(g)+(j>0?0:1)};for(;h>0;)try{f=g[j>0?"previousSibling":"nextSibling"];if(f.nodeType==CKEDITOR.NODE_TEXT){h=h-f.nodeValue.length;n=f}g=f}catch(o){return{container:d, offset:a(g)}}return{container:n,offset:j>0?-h:n.nodeValue.length+h}};return function(){var a=this.getNative(),c=a&&a.createRange(),d=this.getType();if(!a)return[];if(d==CKEDITOR.SELECTION_TEXT){a=new CKEDITOR.dom.range(this.root);d=b(c,true);a.setStart(new CKEDITOR.dom.node(d.container),d.offset);d=b(c);a.setEnd(new CKEDITOR.dom.node(d.container),d.offset);a.endContainer.getPosition(a.startContainer)&CKEDITOR.POSITION_PRECEDING&&a.endOffset<=a.startContainer.getIndex()&&a.collapse();return[a]}if(d== CKEDITOR.SELECTION_ELEMENT){for(var d=[],e=0;e1){f=a[a.length-1];a[0].setEnd(f.endContainer,f.endOffset)}f=a[0];var a=f.collapsed,n,o,u;if((c=f.getEnclosedNode())&&c.type==CKEDITOR.NODE_ELEMENT&&c.getName()in B&&(!c.is("a")||!c.getText()))try{u=c.$.createControlRange(); u.addElement(c.$);u.select();return}catch(K){}if(f.startContainer.type==CKEDITOR.NODE_ELEMENT&&f.startContainer.getName()in b||f.endContainer.type==CKEDITOR.NODE_ELEMENT&&f.endContainer.getName()in b){f.shrink(CKEDITOR.NODE_ELEMENT,true);a=f.collapsed}u=f.createBookmark();b=u.startNode;if(!a)g=u.endNode;u=f.document.$.body.createTextRange();u.moveToElementText(b.$);u.moveStart("character",1);if(g){i=f.document.$.body.createTextRange();i.moveToElementText(g.$);u.setEndPoint("EndToEnd",i);u.moveEnd("character", -1)}else{n=b.getNext(j);o=b.hasAscendant("pre");n=!(n&&n.getText&&n.getText().match(i))&&(o||!b.hasPrevious()||b.getPrevious().is&&b.getPrevious().is("br"));o=f.document.createElement("span");o.setHtml("");o.insertBefore(b);n&&f.document.createText("").insertBefore(b)}f.setStartBefore(b);b.remove();if(a){if(n){u.moveStart("character",-1);u.select();f.document.$.selection.clear()}else u.select();f.moveToPosition(o,CKEDITOR.POSITION_BEFORE_START);o.remove()}else{f.setEndBefore(g);g.remove(); u.select()}}else{g=this.getNative();if(!g)return;this.removeAllRanges();for(u=0;u=0){f.collapse(1);o.setEnd(f.endContainer.$, f.endOffset)}else throw C;}g.addRange(o)}}this.reset();this.root.fire("selectionchange")}}},fake:function(a){var b=this.root.editor;this.reset();g(b);var c=this._.cache,d=new CKEDITOR.dom.range(this.root);d.setStartBefore(a);d.setEndAfter(a);c.ranges=new CKEDITOR.dom.rangeList(d);c.selectedElement=c.startElement=a;c.type=CKEDITOR.SELECTION_ELEMENT;c.selectedText=c.nativeSel=null;this.isFake=1;this.rev=v++;b._.fakeSelection=this;this.root.fire("selectionchange")},isHidden:function(){var a=this.getCommonAncestor(); a&&a.type==CKEDITOR.NODE_TEXT&&(a=a.getParent());return!(!a||!a.data("cke-hidden-sel"))},createBookmarks:function(a){a=this.getRanges().createBookmarks(a);this.isFake&&(a.isFake=1);return a},createBookmarks2:function(a){a=this.getRanges().createBookmarks2(a);this.isFake&&(a.isFake=1);return a},selectBookmarks:function(a){for(var b=[],c,d=0;d]*>)[ \t\r\n]*/gi,"$1");f=f.replace(/([ \t\n\r]+| )/g, " ");f=f.replace(/]*>/gi,"\n");if(CKEDITOR.env.ie){var h=a.getDocument().createElement("div");h.append(e);e.$.outerHTML="
"+f+"
";e.copyAttributes(h.getFirst());e=h.getFirst().remove()}else e.setHtml(f);b=e}else f?b=A(c?[a.getHtml()]:n(a),b):a.moveChildren(b);b.replace(a);if(d){var c=b,i;if((i=c.getPrevious(z))&&i.type==CKEDITOR.NODE_ELEMENT&&i.is("pre")){d=g(i.getHtml(),/\n$/,"")+"\n\n"+g(c.getHtml(),/^\n/,"");CKEDITOR.env.ie?c.$.outerHTML="
"+d+"
":c.setHtml(d);i.remove()}}else c&& q(b)}function n(a){var b=[];g(a.getOuterHtml(),/(\S\s*)\n(?:\s|(]+data-cke-bookmark.*?\/span>))*\n(?!$)/gi,function(a,b,c){return b+"
"+c+"
"}).replace(/([\s\S]*?)<\/pre>/gi,function(a,c){b.push(c)});return b}function g(a,b,c){var d="",e="",a=a.replace(/(^]+data-cke-bookmark.*?\/span>)|(]+data-cke-bookmark.*?\/span>$)/gi,function(a,b,c){b&&(d=b);c&&(e=c);return""});return d+a.replace(b,c)+e}function A(a,b){var c;a.length>1&&(c=new CKEDITOR.dom.documentFragment(b.getDocument()));
for(var d=0;d"),e=e.replace(/[ \t]{2,}/g,function(a){return CKEDITOR.tools.repeat(" ",a.length-1)+" "});if(c){var f=b.clone();f.setHtml(e);c.append(f)}else b.setHtml(e)}return c||b}function r(a,b){var c=this._.definition,
d=c.attributes,c=c.styles,e=B(this)[a.getName()],g=CKEDITOR.tools.isEmpty(d)&&CKEDITOR.tools.isEmpty(c),f;for(f in d)if(!((f=="class"||this._.definition.fullMatch)&&a.getAttribute(f)!=l(f,d[f]))&&!(b&&f.slice(0,5)=="data-")){g=a.hasAttribute(f);a.removeAttribute(f)}for(var h in c)if(!(this._.definition.fullMatch&&a.getStyle(h)!=l(h,c[h],true))){g=g||!!a.getStyle(h);a.removeStyle(h)}o(a,e,k[a.getName()]);g&&(this._.definition.alwaysRemoveElement?q(a,1):!CKEDITOR.dtd.$block[a.getName()]||this._.enterMode==
CKEDITOR.ENTER_BR&&!a.hasAttributes()?q(a):a.renameNode(this._.enterMode==CKEDITOR.ENTER_P?"p":"div"))}function y(a){for(var b=B(this),c=a.getElementsByTag(this.element),d,e=c.count();--e>=0;){d=c.getItem(e);d.isReadOnly()||r.call(this,d,true)}for(var g in b)if(g!=this.element){c=a.getElementsByTag(g);for(e=c.count()-1;e>=0;e--){d=c.getItem(e);d.isReadOnly()||o(d,b[g])}}}function o(a,b,c){if(b=b&&b.attributes)for(var d=0;d",a||b.name,"");return c.join("")},getDefinition:function(){return this._.definition}};CKEDITOR.style.getStyleText=function(a){var b=a._ST;if(b)return b;var b=a.styles,c=
a.attributes&&a.attributes.style||"",d="";c.length&&(c=c.replace(F,";"));for(var e in b){var g=b[e],f=(e+":"+g).replace(F,";");g=="inherit"?d=d+f:c=c+f}c.length&&(c=CKEDITOR.tools.normalizeCssText(c,true));return a._ST=c+d};CKEDITOR.style.customHandlers={};CKEDITOR.style.addCustomHandler=function(a){var b=function(a){this._={definition:a};this.setup&&this.setup(a)};b.prototype=CKEDITOR.tools.extend(CKEDITOR.tools.prototypedCopy(CKEDITOR.style.prototype),{assignedTo:CKEDITOR.STYLE_OBJECT},a,true);
return this.customHandlers[a.type]=b};var L=CKEDITOR.POSITION_PRECEDING|CKEDITOR.POSITION_IDENTICAL|CKEDITOR.POSITION_IS_CONTAINED,E=CKEDITOR.POSITION_FOLLOWING|CKEDITOR.POSITION_IDENTICAL|CKEDITOR.POSITION_IS_CONTAINED})();CKEDITOR.styleCommand=function(a,d){this.requiredContent=this.allowedContent=this.style=a;CKEDITOR.tools.extend(this,d,true)};
CKEDITOR.styleCommand.prototype.exec=function(a){a.focus();this.state==CKEDITOR.TRISTATE_OFF?a.applyStyle(this.style):this.state==CKEDITOR.TRISTATE_ON&&a.removeStyle(this.style)};CKEDITOR.stylesSet=new CKEDITOR.resourceManager("","stylesSet");CKEDITOR.addStylesSet=CKEDITOR.tools.bind(CKEDITOR.stylesSet.add,CKEDITOR.stylesSet);CKEDITOR.loadStylesSet=function(a,d,b){CKEDITOR.stylesSet.addExternal(a,d,"");CKEDITOR.stylesSet.load(a,b)};
CKEDITOR.tools.extend(CKEDITOR.editor.prototype,{attachStyleStateChange:function(a,d){var b=this._.styleStateChangeCallbacks;if(!b){b=this._.styleStateChangeCallbacks=[];this.on("selectionChange",function(a){for(var d=0;d"}});"use strict";
(function(){var a={},d={},b;for(b in CKEDITOR.dtd.$blockLimit)b in CKEDITOR.dtd.$list||(a[b]=1);for(b in CKEDITOR.dtd.$block)b in CKEDITOR.dtd.$blockLimit||b in CKEDITOR.dtd.$empty||(d[b]=1);CKEDITOR.dom.elementPath=function(b,e){var f=null,h=null,i=[],j=b,n,e=e||b.getDocument().getBody();do if(j.type==CKEDITOR.NODE_ELEMENT){i.push(j);if(!this.lastElement){this.lastElement=j;if(j.is(CKEDITOR.dtd.$object)||j.getAttribute("contenteditable")=="false")continue}if(j.equals(e))break;if(!h){n=j.getName();
j.getAttribute("contenteditable")=="true"?h=j:!f&&d[n]&&(f=j);if(a[n]){var g;if(g=!f){if(n=n=="div"){a:{n=j.getChildren();g=0;for(var A=n.count();g-1}:typeof a=="function"?c=a:typeof a=="object"&&(c=
function(b){return b.getName()in a});var e=this.elements,f=e.length;d&&f--;if(b){e=Array.prototype.slice.call(e,0);e.reverse()}for(d=0;d=c){f=e.createText("");f.insertAfter(this)}else{a=e.createText("");a.insertAfter(f);a.remove()}return f},substring:function(a,
d){return typeof d!="number"?this.$.nodeValue.substr(a):this.$.nodeValue.substring(a,d)}});
(function(){function a(a,c,d){var f=a.serializable,h=c[d?"endContainer":"startContainer"],i=d?"endOffset":"startOffset",j=f?c.document.getById(a.startNode):a.startNode,a=f?c.document.getById(a.endNode):a.endNode;if(h.equals(j.getPrevious())){c.startOffset=c.startOffset-h.getLength()-a.getPrevious().getLength();h=a.getNext()}else if(h.equals(a.getPrevious())){c.startOffset=c.startOffset-h.getLength();h=a.getNext()}h.equals(j.getParent())&&c[i]++;h.equals(a.getParent())&&c[i]++;c[d?"endContainer":"startContainer"]=
h;return c}CKEDITOR.dom.rangeList=function(a){if(a instanceof CKEDITOR.dom.rangeList)return a;a?a instanceof CKEDITOR.dom.range&&(a=[a]):a=[];return CKEDITOR.tools.extend(a,d)};var d={createIterator:function(){var a=this,c=CKEDITOR.dom.walker.bookmark(),d=[],f;return{getNextRange:function(h){f=f===void 0?0:f+1;var i=a[f];if(i&&a.length>1){if(!f)for(var j=a.length-1;j>=0;j--)d.unshift(a[j].createBookmark(true));if(h)for(var n=0;a[f+n+1];){for(var g=i.document,h=0,j=g.getById(d[n].endNode),g=g.getById(d[n+
1].startNode);;){j=j.getNextSourceNode(false);if(g.equals(j))h=1;else if(c(j)||j.type==CKEDITOR.NODE_ELEMENT&&j.isBlockBoundary())continue;break}if(!h)break;n++}for(i.moveToBookmark(d.shift());n--;){j=a[++f];j.moveToBookmark(d.shift());i.setEnd(j.endContainer,j.endOffset)}}return i}}},createBookmarks:function(b){for(var c=[],d,f=0;fb?-1:1}),e=0,f;e',CKEDITOR.document);a.appendTo(CKEDITOR.document.getHead());try{var d=a.getComputedStyle("border-top-color"),b=a.getComputedStyle("border-right-color");CKEDITOR.env.hc=!!(d&&d==b)}catch(c){CKEDITOR.env.hc=false}a.remove()}if(CKEDITOR.env.hc)CKEDITOR.env.cssClass=CKEDITOR.env.cssClass+" cke_hc";
CKEDITOR.document.appendStyleText(".cke{visibility:hidden;}");CKEDITOR.status="loaded";CKEDITOR.fireOnce("loaded");if(a=CKEDITOR._.pending){delete CKEDITOR._.pending;for(d=0;dc;c++){var f=a,h=c,d;d=parseInt(a[c],16);d=("0"+(0>e?0|d*(1+e):0|d+(255-d)*e).toString(16)).slice(-2);f[h]=d}return"#"+a.join("")}}(),c=function(){var b=new CKEDITOR.template("background:#{to};background-image:-webkit-gradient(linear,lefttop,leftbottom,from({from}),to({to}));background-image:-moz-linear-gradient(top,{from},{to});background-image:-webkit-linear-gradient(top,{from},{to});background-image:-o-linear-gradient(top,{from},{to});background-image:-ms-linear-gradient(top,{from},{to});background-image:linear-gradient(top,{from},{to});filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='{from}',endColorstr='{to}');");return function(c,
a){return b.output({from:c,to:a})}}(),f={editor:new CKEDITOR.template("{id}.cke_chrome [border-color:{defaultBorder};] {id} .cke_top [ {defaultGradient}border-bottom-color:{defaultBorder};] {id} .cke_bottom [{defaultGradient}border-top-color:{defaultBorder};] {id} .cke_resizer [border-right-color:{ckeResizer}] {id} .cke_dialog_title [{defaultGradient}border-bottom-color:{defaultBorder};] {id} .cke_dialog_footer [{defaultGradient}outline-color:{defaultBorder};border-top-color:{defaultBorder};] {id} .cke_dialog_tab [{lightGradient}border-color:{defaultBorder};] {id} .cke_dialog_tab:hover [{mediumGradient}] {id} .cke_dialog_contents [border-top-color:{defaultBorder};] {id} .cke_dialog_tab_selected, {id} .cke_dialog_tab_selected:hover [background:{dialogTabSelected};border-bottom-color:{dialogTabSelectedBorder};] {id} .cke_dialog_body [background:{dialogBody};border-color:{defaultBorder};] {id} .cke_toolgroup [{lightGradient}border-color:{defaultBorder};] {id} a.cke_button_off:hover, {id} a.cke_button_off:focus, {id} a.cke_button_off:active [{mediumGradient}] {id} .cke_button_on [{ckeButtonOn}] {id} .cke_toolbar_separator [background-color: {ckeToolbarSeparator};] {id} .cke_combo_button [border-color:{defaultBorder};{lightGradient}] {id} a.cke_combo_button:hover, {id} a.cke_combo_button:focus, {id} .cke_combo_on a.cke_combo_button [border-color:{defaultBorder};{mediumGradient}] {id} .cke_path_item [color:{elementsPathColor};] {id} a.cke_path_item:hover, {id} a.cke_path_item:focus, {id} a.cke_path_item:active [background-color:{elementsPathBg};] {id}.cke_panel [border-color:{defaultBorder};] "),
panel:new CKEDITOR.template(".cke_panel_grouptitle [{lightGradient}border-color:{defaultBorder};] .cke_menubutton_icon [background-color:{menubuttonIcon};] .cke_menubutton:hover .cke_menubutton_icon, .cke_menubutton:focus .cke_menubutton_icon, .cke_menubutton:active .cke_menubutton_icon [background-color:{menubuttonIconHover};] .cke_menuseparator [background-color:{menubuttonIcon};] a:hover.cke_colorbox, a:focus.cke_colorbox, a:active.cke_colorbox [border-color:{defaultBorder};] a:hover.cke_colorauto, a:hover.cke_colormore, a:focus.cke_colorauto, a:focus.cke_colormore, a:active.cke_colorauto, a:active.cke_colormore [background-color:{ckeColorauto};border-color:{defaultBorder};] ")};
return function(g,e){var a=g.uiColor,a={id:"."+g.id,defaultBorder:b(a,-0.1),defaultGradient:c(b(a,0.9),a),lightGradient:c(b(a,1),b(a,0.7)),mediumGradient:c(b(a,0.8),b(a,0.5)),ckeButtonOn:c(b(a,0.6),b(a,0.7)),ckeResizer:b(a,-0.4),ckeToolbarSeparator:b(a,0.5),ckeColorauto:b(a,0.8),dialogBody:b(a,0.7),dialogTabSelected:c("#FFFFFF","#FFFFFF"),dialogTabSelectedBorder:"#FFF",elementsPathColor:b(a,-0.6),elementsPathBg:a,menubuttonIcon:b(a,0.5),menubuttonIconHover:b(a,0.3)};return f[e].output(a).replace(/\[/g,
"{").replace(/\]/g,"}")}}();CKEDITOR.plugins.add("dialogui",{onLoad:function(){var h=function(b){this._||(this._={});this._["default"]=this._.initValue=b["default"]||"";this._.required=b.required||!1;for(var a=[this._],d=1;darguments.length)){var c=h.call(this,a);c.labelId=CKEDITOR.tools.getNextId()+
"_label";this._.children=[];var e={role:a.role||"presentation"};a.includeLabel&&(e["aria-labelledby"]=c.labelId);CKEDITOR.ui.dialog.uiElement.call(this,b,a,d,"div",null,e,function(){var e=[],g=a.required?" cke_required":"";if(a.labelLayout!="horizontal")e.push('",'");else{g={type:"hbox",widths:a.widths,padding:0,children:[{type:"html",html:'"},{type:"html",html:'"+f.call(this,b,a)+""}]};CKEDITOR.dialog._.uiElementBuilders.hbox.build(b,
g,e)}return e.join("")})}},textInput:function(b,a,d){if(!(3>arguments.length)){h.call(this,a);var f=this._.inputId=CKEDITOR.tools.getNextId()+"_textInput",c={"class":"cke_dialog_ui_input_"+a.type,id:f,type:a.type};a.validate&&(this.validate=a.validate);a.maxLength&&(c.maxlength=a.maxLength);a.size&&(c.size=a.size);a.inputStyle&&(c.style=a.inputStyle);var e=this,k=!1;b.on("load",function(){e.getInputElement().on("keydown",function(a){a.data.getKeystroke()==13&&(k=true)});e.getInputElement().on("keyup",
function(a){if(a.data.getKeystroke()==13&&k){b.getButton("ok")&&setTimeout(function(){b.getButton("ok").click()},0);k=false}e.bidi&&s.call(e,a)},null,null,1E3)});CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d,function(){var b=['");
return b.join("")})}},textarea:function(b,a,d){if(!(3>arguments.length)){h.call(this,a);var f=this,c=this._.inputId=CKEDITOR.tools.getNextId()+"_textarea",e={};a.validate&&(this.validate=a.validate);e.rows=a.rows||5;e.cols=a.cols||20;e["class"]="cke_dialog_ui_input_textarea "+(a["class"]||"");"undefined"!=typeof a.inputStyle&&(e.style=a.inputStyle);a.dir&&(e.dir=a.dir);if(f.bidi)b.on("load",function(){f.getInputElement().on("keyup",s)},f);CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d,function(){e["aria-labelledby"]=
this._.labelId;this._.required&&(e["aria-required"]=this._.required);var a=['");return a.join("")})}},checkbox:function(b,a,d){if(!(3>arguments.length)){var f=h.call(this,a,{"default":!!a["default"]});a.validate&&(this.validate=a.validate);CKEDITOR.ui.dialog.uiElement.call(this,
b,a,d,"span",null,null,function(){var c=CKEDITOR.tools.extend({},a,{id:a.id?a.id+"_checkbox":CKEDITOR.tools.getNextId()+"_checkbox"},true),e=[],d=CKEDITOR.tools.getNextId()+"_label",g={"class":"cke_dialog_ui_checkbox_input",type:"checkbox","aria-labelledby":d};p(c);if(a["default"])g.checked="checked";if(typeof c.inputStyle!="undefined")c.style=c.inputStyle;f.checkbox=new CKEDITOR.ui.dialog.uiElement(b,c,e,"input",null,g);e.push(' ");return e.join("")})}},radio:function(b,a,d){if(!(3>arguments.length)){h.call(this,a);this._["default"]||(this._["default"]=this._.initValue=a.items[0][1]);a.validate&&(this.validate=a.validate);var f=[],c=this;a.role="radiogroup";a.includeLabel=!0;CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d,function(){for(var e=[],d=[],g=(a.id?a.id:CKEDITOR.tools.getNextId())+"_radio",i=0;i'+CKEDITOR.tools.htmlEncode(a.label)+"")}},select:function(b,a,d){if(!(3>arguments.length)){var f=h.call(this,a);a.validate&&
(this.validate=a.validate);f.inputId=CKEDITOR.tools.getNextId()+"_select";CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d,function(){var c=CKEDITOR.tools.extend({},a,{id:a.id?a.id+"_select":CKEDITOR.tools.getNextId()+"_select"},true),e=[],d=[],g={id:f.inputId,"class":"cke_dialog_ui_input_select","aria-labelledby":this._.labelId};e.push('");return e.join("")})}},file:function(b,a,d){if(!(3>arguments.length)){void 0===a["default"]&&(a["default"]="");var f=CKEDITOR.tools.extend(h.call(this,
a),{definition:a,buttons:[]});a.validate&&(this.validate=a.validate);b.on("load",function(){CKEDITOR.document.getById(f.frameId).getParent().addClass("cke_dialog_ui_input_file")});CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d,function(){f.frameId=CKEDITOR.tools.getNextId()+"_fileInput";var b=['');return b.join("")})}},fileButton:function(b,a,d){var f=this;if(!(3>arguments.length)){h.call(this,a);a.validate&&(this.validate=a.validate);var c=CKEDITOR.tools.extend({},a),e=c.onClick;c.className=(c.className?c.className+" ":"")+"cke_dialog_ui_button";c.onClick=function(c){var d=a["for"];if(!e||e.call(this,c)!==false){b.getContentElement(d[0],d[1]).submit();this.disable()}};b.on("load",function(){b.getContentElement(a["for"][0],
a["for"][1])._.buttons.push(f)});CKEDITOR.ui.dialog.button.call(this,b,c,d)}},html:function(){var b=/^\s*<[\w:]+\s+([^>]*)?>/,a=/^(\s*<[\w:]+(?:\s+[^>]*)?)((?:.|\r|\n)+)$/,d=/\/$/;return function(f,c,e){if(!(3>arguments.length)){var k=[],g=c.html;"<"!=g.charAt(0)&&(g=""+g+"");var i=c.focus;if(i){var j=this.focus;this.focus=function(){("function"==typeof i?i:j).call(this);this.fire("focus")};c.isFocusable&&(this.isFocusable=this.isFocusable);this.keyboardFocusable=!0}CKEDITOR.ui.dialog.uiElement.call(this,
f,c,k,"span",null,null,"");k=k.join("").match(b);g=g.match(a)||["","",""];d.test(g[1])&&(g[1]=g[1].slice(0,-1),g[2]="/"+g[2]);e.push([g[1]," ",k[1]||"",g[2]].join(""))}}}(),fieldset:function(b,a,d,f,c){var e=c.label;this._={children:a};CKEDITOR.ui.dialog.uiElement.call(this,b,c,f,"fieldset",null,null,function(){var a=[];e&&a.push(""+e+"");for(var b=0;ba.getChildCount()?(new CKEDITOR.dom.text(b,CKEDITOR.document)).appendTo(a):a.getChild(0).$.nodeValue=b;return this},getLabel:function(){var b=CKEDITOR.document.getById(this._.labelId);return!b||1>b.getChildCount()?"":b.getChild(0).getText()},eventProcessors:o},!0);CKEDITOR.ui.dialog.button.prototype=
CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{click:function(){return!this._.disabled?this.fire("click",{dialog:this._.dialog}):!1},enable:function(){this._.disabled=!1;var b=this.getElement();b&&b.removeClass("cke_disabled")},disable:function(){this._.disabled=!0;this.getElement().addClass("cke_disabled")},isVisible:function(){return this.getElement().getFirst().isVisible()},isEnabled:function(){return!this._.disabled},eventProcessors:CKEDITOR.tools.extend({},CKEDITOR.ui.dialog.uiElement.prototype.eventProcessors,
{onClick:function(b,a){this.on("click",function(){a.apply(this,arguments)})}},!0),accessKeyUp:function(){this.click()},accessKeyDown:function(){this.focus()},keyboardFocusable:!0},!0);CKEDITOR.ui.dialog.textInput.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.labeledElement,{getInputElement:function(){return CKEDITOR.document.getById(this._.inputId)},focus:function(){var b=this.selectParentTab();setTimeout(function(){var a=b.getInputElement();a&&a.$.focus()},0)},select:function(){var b=this.selectParentTab();
setTimeout(function(){var a=b.getInputElement();a&&(a.$.focus(),a.$.select())},0)},accessKeyUp:function(){this.select()},setValue:function(b){if(this.bidi){var a=b&&b.charAt(0);(a="‪"==a?"ltr":"‫"==a?"rtl":null)&&(b=b.slice(1));this.setDirectionMarker(a)}b||(b="");return CKEDITOR.ui.dialog.uiElement.prototype.setValue.apply(this,arguments)},getValue:function(){var b=CKEDITOR.ui.dialog.uiElement.prototype.getValue.call(this);if(this.bidi&&b){var a=this.getDirectionMarker();a&&(b=("ltr"==a?"‪":"‫")+
b)}return b},setDirectionMarker:function(b){var a=this.getInputElement();b?a.setAttributes({dir:b,"data-cke-dir-marker":b}):this.getDirectionMarker()&&a.removeAttributes(["dir","data-cke-dir-marker"])},getDirectionMarker:function(){return this.getInputElement().data("cke-dir-marker")},keyboardFocusable:!0},n,!0);CKEDITOR.ui.dialog.textarea.prototype=new CKEDITOR.ui.dialog.textInput;CKEDITOR.ui.dialog.select.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.labeledElement,{getInputElement:function(){return this._.select.getElement()},
add:function(b,a,d){var f=new CKEDITOR.dom.element("option",this.getDialog().getParentEditor().document),c=this.getInputElement().$;f.$.text=b;f.$.value=void 0===a||null===a?b:a;void 0===d||null===d?CKEDITOR.env.ie?c.add(f.$):c.add(f.$,null):c.add(f.$,d);return this},remove:function(b){this.getInputElement().$.remove(b);return this},clear:function(){for(var b=this.getInputElement().$;0',
'
rt-4.4.2/share/static/RichText/plugins/wsc/dialogs/ciframe.html0000664000175000017500000000323213131430353024350 0ustar vagrantvagrant

rt-4.4.2/share/static/RichText/plugins/wsc/dialogs/wsc.css0000664000175000017500000000232013131430353023357 0ustar vagrantvagrant/* Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ html, body { background-color: transparent; margin: 0px; padding: 0px; } body { padding: 10px; } body, td, input, select, textarea { font-size: 11px; font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; } .midtext { padding:0px; margin:10px; } .midtext p { padding:0px; margin:10px; } .Button { border: #737357 1px solid; color: #3b3b1f; background-color: #c7c78f; } .PopupTabArea { color: #737357; background-color: #e3e3c7; } .PopupTitleBorder { border-bottom: #d5d59d 1px solid; } .PopupTabEmptyArea { padding-left: 10px; border-bottom: #d5d59d 1px solid; } .PopupTab, .PopupTabSelected { border-right: #d5d59d 1px solid; border-top: #d5d59d 1px solid; border-left: #d5d59d 1px solid; padding: 3px 5px 3px 5px; color: #737357; } .PopupTab { margin-top: 1px; border-bottom: #d5d59d 1px solid; cursor: pointer; } .PopupTabSelected { font-weight: bold; cursor: default; padding-top: 4px; border-bottom: #f1f1e3 1px solid; background-color: #f1f1e3; } rt-4.4.2/share/static/RichText/plugins/wsc/dialogs/wsc.js0000664000175000017500000013452513131430353023220 0ustar vagrantvagrant/* Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ (function(){function v(a){return a&&a.domId&&a.getInputElement().$?a.getInputElement():a&&a.$?a:!1}function E(a){if(!a)throw"Languages-by-groups list are required for construct selectbox";var c=[],d="",e;for(e in a)for(var f in a[e]){var g=a[e][f];"en_US"==g?d=g:c.push(g)}c.sort();d&&c.unshift(d);return{getCurrentLangGroup:function(c){a:{for(var d in a)for(var e in a[d])if(e.toUpperCase()===c.toUpperCase()){c=d;break a}c=""}return c},setLangList:function(){var c={},d;for(d in a)for(var e in a[d])c[a[d][e]]= e;return c}()}}var h=function(){var a=function(a,b,e){var e=e||{},f=e.expires;if("number"==typeof f&&f){var g=new Date;g.setTime(g.getTime()+1E3*f);f=e.expires=g}f&&f.toUTCString&&(e.expires=f.toUTCString());var b=encodeURIComponent(b),a=a+"="+b,i;for(i in e)b=e[i],a+="; "+i,!0!==b&&(a+="="+b);document.cookie=a};return{postMessage:{init:function(a){window.addEventListener?window.addEventListener("message",a,!1):window.attachEvent("onmessage",a)},send:function(a){var b=Object.prototype.toString,e= a.fn||null,f=a.id||"",g=a.target||window,i=a.message||{id:f};a.message&&"[object Object]"==b.call(a.message)&&(a.message.id||(a.message.id=f),i=a.message);a=window.JSON.stringify(i,e);g.postMessage(a,"*")},unbindHandler:function(a){window.removeEventListener?window.removeEventListener("message",a,!1):window.detachEvent("onmessage",a)}},hash:{create:function(){},parse:function(){}},cookie:{set:a,get:function(a){return(a=document.cookie.match(RegExp("(?:^|; )"+a.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, "\\$1")+"=([^;]*)")))?decodeURIComponent(a[1]):void 0},remove:function(c){a(c,"",{expires:-1})}},misc:{findFocusable:function(a){var b=null;a&&(b=a.find("a[href], area[href], input, select, textarea, button, *[tabindex], *[contenteditable]"));return b},isVisible:function(a){return!(0===a.offsetWidth||0==a.offsetHeight||"none"===(document.defaultView&&document.defaultView.getComputedStyle?document.defaultView.getComputedStyle(a,null).display:a.currentStyle?a.currentStyle.display:a.style.display))}, hasClass:function(a,b){return!(!a.className||!a.className.match(RegExp("(\\s|^)"+b+"(\\s|$)")))}}}}(),a=a||{};a.TextAreaNumber=null;a.load=!0;a.cmd={SpellTab:"spell",Thesaurus:"thes",GrammTab:"grammar"};a.dialog=null;a.optionNode=null;a.selectNode=null;a.grammerSuggest=null;a.textNode={};a.iframeMain=null;a.dataTemp="";a.div_overlay=null;a.textNodeInfo={};a.selectNode={};a.selectNodeResponce={};a.langList=null;a.langSelectbox=null;a.banner="";a.show_grammar=null;a.div_overlay_no_check=null;a.targetFromFrame= {};a.onLoadOverlay=null;a.LocalizationComing={};a.OverlayPlace=null;a.sessionid="";a.LocalizationButton={ChangeTo_button:{instance:null,text:"Change to",localizationID:"ChangeTo"},ChangeAll:{instance:null,text:"Change All"},IgnoreWord:{instance:null,text:"Ignore word"},IgnoreAllWords:{instance:null,text:"Ignore all words"},Options:{instance:null,text:"Options",optionsDialog:{instance:null}},AddWord:{instance:null,text:"Add word"},FinishChecking_button:{instance:null,text:"Finish Checking",localizationID:"FinishChecking"}, FinishChecking_button_block:{instance:null,text:"Finish Checking",localizationID:"FinishChecking"}};a.LocalizationLabel={ChangeTo_label:{instance:null,text:"Change to",localizationID:"ChangeTo"},Suggestions:{instance:null,text:"Suggestions"},Categories:{instance:null,text:"Categories"},Synonyms:{instance:null,text:"Synonyms"}};var F=function(b){var c,d,e;for(e in b)c=(c=a.dialog.getContentElement(a.dialog._.currentTabId,e))?c.getElement():b[e].instance.getElement().getFirst()||b[e].instance.getElement(), d=b[e].localizationID||e,c.setText(a.LocalizationComing[d])},G=function(b){var c,d,e;for(e in b)if(c=a.dialog.getContentElement(a.dialog._.currentTabId,e),c||(c=b[e].instance),c.setLabel)d=b[e].localizationID||e,c.setLabel(a.LocalizationComing[d]+":")},n,w;a.framesetHtml=function(b){return"'};a.setIframe=function(b,c){var d; d=a.framesetHtml(c);var e=a.iframeNumber+"_"+c;b.getElement().setHtml(d);d=document.getElementById(e);d=d.contentWindow?d.contentWindow:d.contentDocument.document?d.contentDocument.document:d.contentDocument;d.document.open();d.document.write('iframe
<% loc('Pause Timer') %> <% loc('Submit Timer') %>
<& /Elements/MessageBox, Name => 'Comment', Type => 'text/plain', Height => 3, Width => undef, # sets width:100% CSS Placeholder => loc('Comments for the ticket'), SuppressAttachmentWarning => 1, IncludeSignature => 0, IncludeArticle => 0, &>
<&|/l, $Now->AsString &>Started at [_1].
% if ($Ticket->TimeEstimated) {
<&|/l&>Time estimated: <& /Ticket/Elements/ShowTime, minutes => $Ticket->TimeEstimated &>
% }
<&|/l&>An error occurred while submitting time. Please submit your time manually.
% $m->abort(); rt-4.4.2/share/html/Helpers/TicketHistory0000664000175000017500000000513413131430353020235 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $id <%INIT> my $TicketObj = RT::Ticket->new($session{'CurrentUser'}); $TicketObj->Load($id); my $attachments = $TicketObj->Attachments; my $attachment_content = $TicketObj->TextAttachments; my %extra_args; $m->callback( CallbackName => 'ExtraShowHistoryArguments', Ticket => $TicketObj, ExtraArgs => \%extra_args ); <& /Elements/ShowHistory, Object => $TicketObj, ShowHeaders => $ARGS{'ShowHeaders'}, Attachments => $attachments, AttachmentContent => $attachment_content, %extra_args, &> % $m->abort(); rt-4.4.2/share/html/Helpers/TicketHistoryPage0000664000175000017500000000663513131430353021041 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $id $oldestTransactionsFirst => RT->Config->Get("OldestTransactionsFirst", $session{CurrentUser}); $lastTransactionId => undef $focusTransactionId => undef $loadAll => 0 <%INIT> my $TicketObj = RT::Ticket->new($session{'CurrentUser'}); $TicketObj->Load($id); my %extra_args; $m->callback( CallbackPage => '/Helpers/TicketHistory', CallbackName => 'ExtraShowHistoryArguments', Ticket => $TicketObj, ExtraArgs => \%extra_args ); my $transactions = $TicketObj->Transactions; my $order = $oldestTransactionsFirst ? 'ASC' : 'DESC'; if ($lastTransactionId) { $transactions->Limit( FIELD => 'id', OPERATOR => $oldestTransactionsFirst ? '>' : '<', VALUE => $lastTransactionId ); } $transactions->OrderByCols( { FIELD => 'Created', ORDER => $order }, { FIELD => 'id', ORDER => $order }, ); if ($focusTransactionId) { # make sure we load enough if we need to focus a transaction $transactions->Limit( FIELD => 'id', OPERATOR => $oldestTransactionsFirst ? '<=' : '>=', VALUE => $focusTransactionId ); } elsif (!$loadAll) { # otherwise, just load the standard page of 10 transactions $transactions->RowsPerPage(10); $transactions->FirstPage(); } <& /Elements/ShowHistoryPage, Object => $TicketObj, ShowHeaders => $ARGS{'ShowHeaders'}, Transactions => $transactions, %extra_args, &> % $m->abort(); rt-4.4.2/share/html/Helpers/Toggle/0000775000175000017500000000000013131430353016723 5ustar vagrantvagrantrt-4.4.2/share/html/Helpers/Toggle/TicketBookmark0000664000175000017500000000417013131430353021561 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $id $Toggle => 1 <%INIT> $m->comp('/Ticket/Elements/Bookmark', id => $id, Toggle => $Toggle ); $m->abort(); rt-4.4.2/share/html/Helpers/Toggle/ShowRequestor0000664000175000017500000000504213131430353021501 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $TicketTemplate = "/Ticket/Elements/ShowRequestorTickets$Status"; $TicketTemplate = "/Ticket/Elements/ShowRequestorTicketsActive" unless RT::Interface::Web->ComponentPathIsSafe($TicketTemplate) and $m->comp_exists($TicketTemplate); my $user_obj = RT::User->new($session{CurrentUser}); my ($val, $msg) = $user_obj->Load($Requestor); unless ($val) { $RT::Logger->error("Unable to load User $Requestor: $msg"); } else { $m->comp( $TicketTemplate, Requestor => $user_obj ); } $m->abort(); <%ARGS> $Status $Requestor rt-4.4.2/share/html/Helpers/autohandler0000664000175000017500000000413513131430353017736 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> RT::Interface::Web::CacheControlExpiresHeaders( Time => 'no-cache' ); $m->call_next; rt-4.4.2/share/html/Helpers/PreviewScrips0000664000175000017500000001510413131430353020233 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $TicketObj = RT::Ticket->new($session{CurrentUser}); $TicketObj->Load($ARGS{id}); $m->abort unless $TicketObj->id && $ARGS{UpdateType}; $m->abort unless $TicketObj->CurrentUserHasRight('ShowOutgoingEmail'); if ( $ARGS{UpdateType} eq 'private' ) { $m->abort unless $TicketObj->CurrentUserHasRight( 'CommentOnTicket' ) || $TicketObj->CurrentUserHasRight( 'ModifyTicket' ); } else { $m->abort unless $TicketObj->CurrentUserHasRight( 'ReplyToTicket' ) || $TicketObj->CurrentUserHasRight( 'ModifyTicket' ); } my @dryrun = $TicketObj->DryRun( sub { local $ARGS{UpdateContent} ||= "Content"; ProcessUpdateMessage(ARGSRef => \%ARGS, TicketObj => $TicketObj ); ProcessTicketWatchers(ARGSRef => \%ARGS, TicketObj => $TicketObj ); ProcessTicketBasics( ARGSRef => \%ARGS, TicketObj => $TicketObj ); ProcessTicketLinks( ARGSRef => \%ARGS, TicketObj => $TicketObj ); ProcessTicketDates( ARGSRef => \%ARGS, TicketObj => $TicketObj ); ProcessObjectCustomFieldUpdates(ARGSRef => \%ARGS, TicketObj => $TicketObj ); ProcessTicketReminders( ARGSRef => \%ARGS, TicketObj => $TicketObj ); } ); my %recips; $m->abort unless @dryrun; my %squelched = ProcessTransactionSquelching( \%ARGS ); my $squelched_config = !( RT->Config->Get('SquelchedRecipients', $session{'CurrentUser'}) ); my %submitted; $submitted{$_} = 1 for split /,/, $ARGS{TxnRecipients};

<&|/l, RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id, &>Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page.

% my @scrips = grep {$_->ActionObj->Action->isa('RT::Action::SendEmail')} % map {@{$_->Scrips->Prepared}} @dryrun; % if (@scrips) { % if ( grep { % my $s = $_; % my $action = $s->ActionObj->Action; % scalar(map { $action->$_ } qw(To Cc Bcc)) % } @scrips ) { value="1">
% } % for my $scrip (@scrips) { <% $scrip->Description || loc('Scrip #[_1]',$scrip->id) %>
<&|/l, loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)&>[_1] [_2] with template [_3]
% for my $type (qw(To Cc Bcc)) { % my $action = $scrip->ActionObj->Action; % my @addresses = $action->$type(); % next unless @addresses;
    % for my $addr (@addresses) {
  • % my $checked = $submitted{$addr->address} ? not $squelched{$addr->address} : $squelched_config; % $m->callback(CallbackName => 'BeforeAddress', Ticket => $TicketObj, Address => $addr, Type => $type, Checked => \$checked); % $recips{$addr->address}++; <%loc($type)%>: % my $show_checkbox = 1; % if ( grep {$_ eq $addr->address} @{$action->{NoSquelch}{$type}} ) { % $show_checkbox = 0; % } % if ( $show_checkbox ) { value="<%$addr->address%>" id="TxnSendMailTo-<% $addr->address %>-<% $recips{$addr->address} %>" /> % } % $m->callback(CallbackName => 'AfterAddress', Ticket => $TicketObj, Address => $addr, Type => $type); % unless ( $show_checkbox ) { % if ( $type eq 'Cc' ) { (<&|/l&>explicit one-time Cc) % } % else { (<&|/l&>explicit one-time Bcc) % } % }
  • % }
% } % if (RT->Config->Get('PreviewScripMessages')) { % }
% } % } % $m->callback( CallbackName => 'AfterRecipients', TicketObj => $TicketObj ); " /> % $m->abort(); rt-4.4.2/share/html/Helpers/ShowSimplifiedRecipients0000664000175000017500000001423313131430353022404 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> $m->abort unless RT->Config->Get('SimplifiedRecipients', $session{'CurrentUser'}); my $TicketObj = RT::Ticket->new($session{CurrentUser}); $TicketObj->Load($ARGS{id}); $m->abort unless $TicketObj->id && $ARGS{UpdateType}; if ( $ARGS{UpdateType} eq 'private' ) { $m->abort unless $TicketObj->CurrentUserHasRight( 'CommentOnTicket' ) || $TicketObj->CurrentUserHasRight( 'ModifyTicket' ); } else { $m->abort unless $TicketObj->CurrentUserHasRight( 'ReplyToTicket' ) || $TicketObj->CurrentUserHasRight( 'ModifyTicket' ); } my @dryrun = $TicketObj->DryRun( sub { local $ARGS{UpdateContent} ||= "Content"; ProcessUpdateMessage(ARGSRef => \%ARGS, TicketObj => $TicketObj ); ProcessTicketWatchers(ARGSRef => \%ARGS, TicketObj => $TicketObj ); ProcessTicketBasics( ARGSRef => \%ARGS, TicketObj => $TicketObj ); ProcessTicketLinks( ARGSRef => \%ARGS, TicketObj => $TicketObj ); ProcessTicketDates( ARGSRef => \%ARGS, TicketObj => $TicketObj ); ProcessObjectCustomFieldUpdates(ARGSRef => \%ARGS, TicketObj => $TicketObj ); ProcessTicketReminders( ARGSRef => \%ARGS, TicketObj => $TicketObj ); } ); $m->abort unless @dryrun; my %headers = (To => {}, Cc => {}, Bcc => {}); my %no_squelch = (To => {}, Cc => {}, Bcc => {}); my @scrips = map {@{$_->Scrips->Prepared}} @dryrun; if (@scrips) { for my $scrip (grep $_->ActionObj->Action->isa('RT::Action::SendEmail'), @scrips) { my $action = $scrip->ActionObj->Action; for my $type (qw(To Cc Bcc)) { for my $addr ($action->$type()) { if (grep {$addr->address eq $_} @{$action->{NoSquelch}{$type} || []}) { $no_squelch{$type}{$addr->address} = $addr; } else { $headers{$type}{$addr->address} = $addr; } } } } } my %recips; my %squelched = ProcessTransactionSquelching( \%ARGS ); my $squelched_config = !( RT->Config->Get('SquelchedRecipients', $session{'CurrentUser'}) ); my %submitted; $submitted{$_} = 1 for split /,/, $ARGS{TxnRecipients}; % if ( scalar(map { keys %{$headers{$_}} } qw(To Cc Bcc)) ) { % } % for my $type (qw(To Cc Bcc)) { % next unless keys %{$headers{$type}} or keys %{$no_squelch{$type}}; % } % $m->callback( CallbackName => 'AfterRecipients', TicketObj => $TicketObj );
 
<% $type %>: % for my $addr (sort {$a->address cmp $b->address} values %{$headers{$type}}) { % my $checked = $submitted{$addr->address} ? not $squelched{$addr->address} : $squelched_config; % $m->callback(CallbackName => 'BeforeAddress', Ticket => $TicketObj, Address => $addr, Type => $type, Checked => \$checked); % $recips{$addr->address}++; value="<%$addr->address%>" id="TxnSendMailTo-<% $addr->address %>-<% $recips{$addr->address} %>" /> % $m->callback(CallbackName => 'AfterAddress', Ticket => $TicketObj, Address => $addr, Type => $type);
% } % for my $addr (sort {$a->address cmp $b->address} values %{$no_squelch{$type}}) { % if ( $type eq 'Cc' ) { (<&|/l&>explicit one-time Cc) % } else { (<&|/l&>explicit one-time Bcc) % }
% }

<&|/l, RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id, &>Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page.

% unless ($TicketObj->CurrentUserHasRight('ShowOutgoingEmail')) { " /> % } % $m->abort(); rt-4.4.2/share/html/Helpers/ShortcutHelp0000664000175000017500000000414213131430353020052 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $show_search => 0 $show_bulk_update => 0 <& /Elements/ShortcutHelp, %ARGS &> % $m->abort; rt-4.4.2/share/html/Helpers/UserInfo0000664000175000017500000000525013131430353017161 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $id <%init> my %users; $id = [$id] unless ref($id) eq 'ARRAY'; for my $uid (@$id) { next if exists $users{$uid}; my $user = RT::User->new($session{'CurrentUser'}); $user->Load($uid); unless ($user->id) { $users{$uid} = undef; next; } my %user = map { $_ => $user->$_ } qw(id Name EmailAddress RealName); $user{Privileged} = $user->Privileged ? JSON::true : JSON::false; $user{_formatted} = $user->Format; $user{_html} = $m->scomp('/Elements/ShowUser', User => $user); $users{$uid} = \%user; } $r->content_type('application/json; charset=utf-8'); $m->out( JSON(\%users) ); $m->abort; rt-4.4.2/share/html/l0000664000175000017500000000426713131430353014267 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $hand = ($session{'CurrentUser'} ||= RT::CurrentUser->new)->LanguageHandle; $m->print($hand->maketext($m->content,map { $m->interp->apply_escapes($_, 'h') } @_)); return(1); rt-4.4.2/share/html/SelfService/0000775000175000017500000000000013131430353016312 5ustar vagrantvagrantrt-4.4.2/share/html/SelfService/Helpers/0000775000175000017500000000000013131430353017714 5ustar vagrantvagrantrt-4.4.2/share/html/SelfService/Helpers/Autocomplete/0000775000175000017500000000000013131430353022355 5ustar vagrantvagrantrt-4.4.2/share/html/SelfService/Helpers/Autocomplete/Users0000664000175000017500000000404413131430353023403 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->comp('/Helpers/Autocomplete/Users', %ARGS); rt-4.4.2/share/html/SelfService/Helpers/Autocomplete/CustomFieldValues0000664000175000017500000000406013131430353025676 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->comp('/Helpers/Autocomplete/CustomFieldValues', %ARGS); rt-4.4.2/share/html/SelfService/Helpers/Upload/0000775000175000017500000000000013131430353021140 5ustar vagrantvagrantrt-4.4.2/share/html/SelfService/Helpers/Upload/Add0000664000175000017500000000430513131430353021555 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Token => '' <%init> ProcessAttachments( Token => $Token, ARGSRef => \%ARGS ); $r->content_type('application/json; charset=utf-8'); $m->out( JSON({status => 'success'}) ); $m->abort; rt-4.4.2/share/html/SelfService/Helpers/ShortcutHelp0000664000175000017500000000414213131430353022264 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $show_search => 0 $show_bulk_update => 0 <& /Elements/ShortcutHelp, %ARGS &> % $m->abort; rt-4.4.2/share/html/SelfService/Prefs.html0000664000175000017500000001023513131430353020260 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc('Preferences') &> <& /Elements/ListActions, actions => \@results &>
<&| /Widgets/TitleBox, title => loc('Locale'), id => "user-prefs-identity" &>
<&|/l&>Language: <& /Elements/SelectLang, Name => 'Lang', Default => $user->Lang &>
<&|/l&>Timezone: <& /Elements/SelectTimezone, Name => 'Timezone', Default => $user->Timezone &>
<&| /Widgets/TitleBox, title => loc('Change password') &> % if ( $user->__Value('Password') ne '*NO-PASSWORD*' ) { <& /Elements/EditPassword, User => $user, Name => [qw(CurrentPass NewPass1 NewPass2)], &> % }

<& /Elements/Submit, Label => loc('Save Changes') &>
<%INIT> my @results; my $user = $session{'CurrentUser'}->UserObj; if (defined $NewPass1 && length $NewPass1 ) { my ($status, $msg) = $user->SafeSetPassword( Current => $CurrentPass, New => $NewPass1, Confirmation => $NewPass2, ); push @results, loc("Password: [_1]", $msg); } my @fields = qw( Lang Timezone ); $m->callback( CallbackName => 'UpdateLogic', fields => \@fields, results => \@results, UserObj => $user, ARGSRef => \%ARGS, ); push @results, UpdateRecordObject ( AttributesRef => \@fields, Object => $user, ARGSRef => \%ARGS, ); if ( $Lang ) { $session{'CurrentUser'}->LanguageHandle($Lang); $session{'CurrentUser'} = $session{'CurrentUser'}; # force writeback } if ($Signature) { $Signature =~ s/(\r\n|\r)/\n/g; if ($Signature ne $user->Signature) { my ($val, $msg) = $user->SetSignature($Signature); push (@results, "Signature: ".$msg); } } #A hack to make sure that session gets rewritten. $session{'i'}++; <%ARGS> $Signature => undef $CurrentPass => undef $NewPass1 => undef $NewPass2 => undef $Lang => undef rt-4.4.2/share/html/SelfService/Closed.html0000664000175000017500000000477113131430353020422 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc('Closed tickets') &> % $m->callback(CallbackName => 'BeforeMyRequests', ARGSRef => \%ARGS, Page => $Page); <& /SelfService/Elements/MyRequests, %ARGS, status => '__Inactive__', title => loc('My closed tickets'), BaseURL => RT->Config->Get('WebPath') ."/SelfService/Closed.html?", Page => $Page, &> % $m->callback(CallbackName => 'AfterMyRequests', ARGSRef => \%ARGS, Page => $Page); <%ARGS> $Page => 1 rt-4.4.2/share/html/SelfService/Update.html0000664000175000017500000001117213131430353020424 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title =>loc('Update ticket #[_1]', $Ticket->id) &> % $m->callback(CallbackName => 'BeforeForm', %ARGS, ARGSRef => \%ARGS, Ticket => $Ticket );
<& /Ticket/Elements/AddAttachments, %ARGS, TicketObj => $Ticket &>
<&|/l&>Status <& /Ticket/Elements/SelectStatus, Name => "Status", TicketObj => $Ticket, Default => $DefaultStatus &>
<&|/l&>Subject
<& /Elements/EditCustomFields, Object => $Ticket, AsTable => 0 &>
% if (exists $ARGS{UpdateContent}) { % # preserve QuoteTransaction so we can use it to set up sane references/in/reply to % my $temp = $ARGS{'QuoteTransaction'}; % delete $ARGS{'QuoteTransaction'}; <& /Elements/MessageBox, Name=>"UpdateContent", Default=>$ARGS{UpdateContent}, IncludeSignature => 0, %ARGS&> % $ARGS{'QuoteTransaction'} = $temp; % } else { % my $IncludeSignature = 1; <& /Elements/MessageBox, Name=>"UpdateContent", IncludeSignature => $IncludeSignature, %ARGS &> % }
<& /Elements/Submit, Label => loc('Update Ticket'), Name => 'SubmitTicket', id => 'SubmitTicket' &>
<%INIT> my $Ticket = LoadTicket($id); $m->callback( Ticket => $Ticket, ARGSRef => \%ARGS, CallbackName => 'Initial' ); my $title = loc( "Update ticket #[_1]", $Ticket->id ); $DefaultStatus = $ARGS{Status} || $Ticket->Status() unless ($DefaultStatus); Abort( loc("No permission to view update ticket") ) unless ( $Ticket->CurrentUserHasRight('ReplyToTicket') or $Ticket->CurrentUserHasRight('ModifyTicket') ); ProcessAttachments(ARGSRef => \%ARGS); if ( exists $ARGS{SubmitTicket} ) { $m->callback(CallbackName => 'BeforeDisplay', Ticket => \$Ticket, ARGSRef => \%ARGS); return $m->comp('Display.html', TicketObj => $Ticket, %ARGS); } <%ARGS> $id => undef $Action => undef $DefaultStatus => undef rt-4.4.2/share/html/SelfService/CreateTicketInQueue.html0000664000175000017500000000470613131430353023052 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& Elements/Header, Title => loc("Create a ticket") &>

<&|/l&>Select a queue for your new ticket

% while (my $queue = $queues->Next) { % next unless $queue->CurrentUserHasRight('CreateTicket');
<%$queue->Name%>
<%$queue->Description%>
% }
<%init> my $queues = RT::Queues->new($session{'CurrentUser'}); $queues->UnLimit; rt-4.4.2/share/html/SelfService/Elements/0000775000175000017500000000000013131430353020066 5ustar vagrantvagrantrt-4.4.2/share/html/SelfService/Elements/MyRequests0000664000175000017500000000536313131430353022141 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => $title &> <& /Elements/CollectionList, Title => $title, Format => $Format, Query => $Query, Order => @Order, OrderBy => @OrderBy, BaseURL => $BaseURL, AllowSorting => 1, Class => 'RT::Tickets', Rows => $Rows, Page => $Page &> <%INIT> $title ||= loc("My [_1] tickets", $friendly_status); my $id = $session{'CurrentUser'}->id; my $Query = "( Watcher.id = $id )"; if ($status) { $status =~ s/(['\\])/\\$1/g; $Query .= " AND Status = '$status'"; } my $Format = RT->Config->Get('DefaultSelfServiceSearchResultFormat'); <%ARGS> $title => undef $friendly_status => loc('open') $status => undef $BaseURL => undef $Page => 1 @Order => ('ASC') @OrderBy => ('Created') $Rows => 50 rt-4.4.2/share/html/SelfService/Elements/GotoTicket0000664000175000017500000000437013131430353022071 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
rt-4.4.2/share/html/SelfService/Elements/Header0000664000175000017500000000404513131430353021204 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, %ARGS &> <& /Elements/Tabs &> rt-4.4.2/share/html/SelfService/Elements/SearchArticle0000664000175000017500000000437113131430353022527 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
rt-4.4.2/share/html/SelfService/Display.html0000664000175000017500000001404413131430353020610 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc('#[_1]: [_2]', $Ticket->id, $Ticket->Subject) &> % $m->callback(CallbackName => 'BeforeActionList', %ARGS, Actions => \@results, ARGSRef => \%ARGS, Ticket => $Ticket ); <& /Elements/ListActions, actions => \@results &> <& /Ticket/Elements/ShowUpdateStatus, Ticket => $Ticket &>
<&| /Widgets/TitleBox, title => loc('The Basics'), class => 'ticket-info-basics', ($LinkBasicsTitle ? (title_href => $title_box_link) : ()), title_class=> 'inverse', color => "#993333" &> <& /Ticket/Elements/ShowBasics, Ticket => $Ticket, UngroupedCFs => 1 &> <& /Elements/ShowCustomFieldCustomGroupings, Object => $Ticket, title_href => ($LinkBasicsTitle ? RT->Config->Get('WebPath')."/SelfService/Update.html" : "" ), Groupings => [ grep {$_ !~ /^(Basics|Dates)$/} RT::CustomField->Groupings( "RT::Ticket" ) ], &> <&| /Widgets/TitleBox, title => loc("Dates"), class => 'ticket-info-dates', title_class=> 'inverse', color => "#663366" &> <& /Ticket/Elements/ShowDates, Ticket => $Ticket, UpdatedLink => 0 &>
<& /Ticket/Elements/ShowAssets, Ticket => $Ticket &> % $m->callback(CallbackName => 'BeforeShowHistory', ARGSRef=> \%ARGS, Ticket => $Ticket ); <& /Elements/ShowHistory, Object => $Ticket, ShowHeaders => $ARGS{'ShowHeaders'}, DownloadableHeaders => 0, &> <%INIT> my ( $field, @results ); $m->callback( ARGSRef => \%ARGS, CallbackName => 'Initial' ); # Load the ticket #If we get handed two ids, mason will make them an array. bleck. # We want teh first one. Just because there's no other sensible way # to deal my @id = ( ref $id eq 'ARRAY' ) ? @{$id} : ($id); my $Ticket = RT::Ticket->new( $session{'CurrentUser'} ); if ( ($id[0]||'') eq 'new' ) { my $Queue = RT::Queue->new( $session{'CurrentUser'} ); Abort( loc('Queue not found') ) unless $Queue->Load( $ARGS{'Queue'} ); Abort( loc('You have no permission to create tickets in that queue.') ) unless $Queue->CurrentUserHasRight('CreateTicket'); ( $Ticket, @results ) = CreateTicket( %ARGS ); Abort( join("\n", @results ) ) unless $Ticket->id; } else { $Ticket = LoadTicket($ARGS{'id'}); $Ticket->Atomic(sub{ push @results, ProcessUpdateMessage( ARGSRef => \%ARGS, TicketObj => $Ticket ); my @cfupdates = ProcessObjectCustomFieldUpdates(Object => $Ticket, ARGSRef => \%ARGS); push (@results, @cfupdates); #Update the status if ( ( defined $ARGS{'Status'} ) and $ARGS{'Status'} and ( $ARGS{'Status'} ne $Ticket->Status ) ) { my ($code, $msg) = $Ticket->SetStatus( $ARGS{'Status'} ); push @results, "$msg"; } }); } # This code does automatic redirection if any updates happen. unless ( $Ticket->CurrentUserHasRight('ShowTicket') ) { Abort( loc("No permission to display that ticket") ); } if ( $ARGS{'MarkAsSeen'} ) { $Ticket->SetAttribute( Name => 'User-'. $Ticket->CurrentUser->id .'-SeenUpTo', Content => $Ticket->LastUpdated, ); push @results, loc('Marked all messages as seen'); } MaybeRedirectForResults( Actions => \@results, Path => '/SelfService/Display.html', Anchor => $ARGS{'Anchor'}, Arguments => { 'id' => $Ticket->id }, ); my $LinkBasicsTitle = $Ticket->CurrentUserHasRight('ModifyTicket') || $Ticket->CurrentUserHasRight('ReplyToTicket'); my $title_box_link = RT->Config->Get('WebPath')."/SelfService/Update.html?id=".$Ticket->Id; $m->callback(CallbackName => 'BeforeDisplay', Ticket => \$Ticket, ARGSRef => \%ARGS, title_box_link => \$title_box_link); <%ARGS> $id => undef rt-4.4.2/share/html/SelfService/index.html0000664000175000017500000000471113131430353020312 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc('Open tickets') &> % $m->callback(CallbackName => 'BeforeMyRequests', ARGSRef => \%ARGS, Page => $Page); <& /SelfService/Elements/MyRequests, %ARGS, status => '__Active__', title => loc('My open tickets'), BaseURL => RT->Config->Get('WebPath') ."/SelfService/?", Page => $Page, &> % $m->callback(CallbackName => 'AfterMyRequests', ARGSRef => \%ARGS, Page => $Page); <%ARGS> $Page => 1 rt-4.4.2/share/html/SelfService/Attachment/0000775000175000017500000000000013131430353020402 5ustar vagrantvagrantrt-4.4.2/share/html/SelfService/Attachment/dhandler0000664000175000017500000000407613131430353022115 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> $m->comp('/Ticket/Attachment/dhandler', %ARGS); $m->abort; rt-4.4.2/share/html/SelfService/Create.html0000664000175000017500000001173313131430353020410 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& Elements/Header, Title => loc("Create a ticket in [_1]", $m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) &> <& /Elements/ListActions, actions => \@results &>
% for my $key (grep {defined $ARGS{$_}} map {+("new-$_", "$_-new")} keys %RT::Link::DIRMAP) { % } <% $m->callback( CallbackName => 'AfterQueue', %ARGS, QueueObj => $queue_obj ) %> <& /Ticket/Elements/AddAttachments, %ARGS, QueueObj => $queue_obj &>
<&|/l&>Queue: <%$queue_obj->Name || ''%> <% $queue_obj->Description ? '('.$queue_obj->Description.')' : '' %>
<&|/l&>Requestors: <& /Elements/EmailInput, Name => 'Requestors', Size => '20', Default => $ARGS{Requestors} || $session{CurrentUser}->EmailAddress, AutocompleteMultiple => 1 &>
<&|/l&>Cc: <& /Elements/EmailInput, Name => 'Cc', Size => '20', Default => $ARGS{Cc} || '', AutocompleteMultiple => 1 &>
<&|/l&>Subject:
<& /Elements/EditCustomFields, %ARGS, Object => RT::Ticket->new($session{CurrentUser}), CustomFields => $queue_obj->TicketCustomFields, AsTable => 0, ForCreation => 1, &>
<&|/l&>Describe the issue below:
<& /Elements/MessageBox, Default => $ARGS{Content} || '' &>
<& /Elements/Submit, Label => loc("Create ticket")&>
<%args> $Queue => undef <%init> my @results; my $queue_obj = RT::Queue->new($session{'CurrentUser'}); $queue_obj->Load($Queue); ProcessAttachments(ARGSRef => \%ARGS); my $skip_create = 0; { my ($status, @msg) = $m->comp( '/Elements/ValidateCustomFields', CustomFields => $queue_obj->TicketCustomFields, ARGSRef => \%ARGS ); unless ($status) { push @results, @msg; $skip_create = 1; } } $m->callback( CallbackName => 'BeforeCreate', ARGSRef => \%ARGS, skip_create => \$skip_create, results => \@results ); if ( !exists $ARGS{'AddMoreAttach'} and defined($ARGS{'id'}) and $ARGS{'id'} eq 'new' ) { # new ticket? if ( !$skip_create ) { $m->comp('Display.html', %ARGS); $RT::Logger->crit("After display call; error is $@"); $m->abort(); } } rt-4.4.2/share/html/SelfService/Article/0000775000175000017500000000000013131430353017675 5ustar vagrantvagrantrt-4.4.2/share/html/SelfService/Article/Search.html0000664000175000017500000001003213131430353021764 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc('Search Articles') &> % my %dedupe_articles; % while (my $article = $articles_content->Next) { % $dedupe_articles{$article->Id}++; % } % while (my $article = $articles_basics->Next) { % next if $dedupe_articles{$article->Id}; % }
<&|/l&>Search for Articles matching
  % if ($Articles_Content) { % if ($articles_basics->Count || $articles_content->Count) { <&|/l,$Articles_Content&>Articles matching [_1] % } else { <&|/l,$Articles_Content&>No Articles match [_1] % } % }
  <%$article->Name || loc('(no name)')%>: <%$article->Summary%>
  <%$article->Name || loc('(no name)')%>: <%$article->Summary%>
<%init> use RT::Articles; my $articles_content = RT::Articles->new( $session{'CurrentUser'} ); my $articles_basics = RT::Articles->new( $session{'CurrentUser'} ); if ( $ARGS{'Articles_Content'} ) { $articles_content->LimitCustomField( VALUE => $ARGS{'Articles_Content'}, OPERATOR => 'LIKE' ); $articles_basics->Limit( SUBCLAUSE => 'all', FIELD => 'Name', OPERATOR => 'LIKE', VALUE => $ARGS{'Articles_Content'}, ENTRYAGGREGATOR => "OR" ); $articles_basics->Limit( SUBCLAUSE => 'all', FIELD => 'Summary', OPERATOR => 'LIKE', VALUE => $ARGS{'Articles_Content'}, ENTRYAGGREGATOR => "OR" ); } <%args> $Articles_Content => '' rt-4.4.2/share/html/SelfService/Article/Display.html0000664000175000017500000000533313131430353022174 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc('Display Article [_1]', $id) &> <%$article->Name || loc("(no name)")%>
<%$article->Summary%> <& /Elements/ShowCustomFields, Object => $article &> <%init> my $article = RT::Article->new( $session{'CurrentUser'} ); if ($id) { $article->Load($id); } unless ( $article->Id ) { $m->comp( "/Elements/Error", Why => loc("Article not found") ); } unless ( $article->CurrentUserHasRight('ShowArticle') ) { $m->comp( "/Elements/Error", Why => loc("Permission Denied") ); } my $title = loc( "Article #[_1]: [_2]", $article->Id, $article->Name || loc("(no name)")); $id = $article->id; <%args> $id => undef rt-4.4.2/share/html/SelfService/Article/autohandler0000664000175000017500000000441113131430353022126 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> if ( $session{'CurrentUser'}->HasRight( Right => 'ShowArticle', Object => $RT::System )) { $m->comp( { base_comp => $m->request_comp }, $m->fetch_next, %ARGS); } else { RT::Interface::Web::Redirect($RT::WebURL."SelfService/"); } rt-4.4.2/share/html/SelfService/Asset/0000775000175000017500000000000013131430353017371 5ustar vagrantvagrantrt-4.4.2/share/html/SelfService/Asset/History.html0000664000175000017500000000437413131430353021730 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc("History of Asset #[_1]: [_2]", $asset->id, $asset->Name) &> <& /Elements/ShowHistory, Object => $asset, ShowDisplayModes => 0, &> <%args> $id => undef <%init> my $asset = LoadAsset($id); rt-4.4.2/share/html/SelfService/Asset/Helpers/0000775000175000017500000000000013131430353020773 5ustar vagrantvagrantrt-4.4.2/share/html/SelfService/Asset/Helpers/CreateLinkedTicket0000664000175000017500000000420413131430353024414 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Asset <%init> my $asset = LoadAsset($Asset); <& /Asset/Elements/CreateLinkedTicket, AssetObj => $asset &> % $m->abort; rt-4.4.2/share/html/SelfService/Asset/Display.html0000664000175000017500000000432513131430353021670 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc("Asset #[_1]: [_2]", $asset->id, $asset->Name) &> <& /Asset/Elements/ShowSummary, AssetObj => $asset &> <%args> $id => undef <%init> my $asset = LoadAsset($id); rt-4.4.2/share/html/SelfService/Asset/index.html0000664000175000017500000000424313131430353021371 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /SelfService/Elements/Header, Title => loc("My Assets") &> <& /User/Elements/AssetList, User => $session{'CurrentUser'}->UserObj, Roles => [''], Title => loc('My Assets') &> rt-4.4.2/share/html/SelfService/Asset/CreateLinkedTicket.html0000664000175000017500000000440013131430353023753 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $id => undef <%init> my $asset = LoadAsset($id); <& /Elements/Header, Title => loc("Create linked ticket for asset #[_1]: [_2]", $asset->id, $asset->Name) &> <& /Elements/Tabs &> <& /Asset/Elements/CreateLinkedTicket, AssetObj => $asset &> rt-4.4.2/share/html/Search/0000775000175000017500000000000013131430353015305 5ustar vagrantvagrantrt-4.4.2/share/html/Search/Chart.html0000664000175000017500000001777013131430353017250 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $default_value = { Query => 'id > 0', GroupBy => ['Status'], ChartStyle => 'bar+table+sql', ChartFunction => ['COUNT'], }; $m->callback( ARGSRef => \%ARGS, CallbackName => 'Initial' ); my $title = loc( "Grouped search results"); my @search_fields = qw(Query GroupBy ChartStyle ChartFunction Width Height); my $saved_search = $m->comp( '/Widgets/SavedSearch:new', SearchType => 'Chart', SearchFields => [@search_fields], ); my @actions = $m->comp( '/Widgets/SavedSearch:process', args => \%ARGS, defaults => $default_value, self => $saved_search, ); my %query; { if ($saved_search->{'CurrentSearch'}->{'Object'}) { foreach my $search_field (@{ $saved_search->{'SearchFields'} }) { $query{$search_field} = $saved_search->{'CurrentSearch'}->{'Object'}->Content->{$search_field}; } } my $current = $session{'CurrentSearchHash'}; my @session_fields = qw( Query SavedChartSearchId SavedSearchDescription SavedSearchLoad SavedSearchLoadButton SavedSearchOwner ); for(@session_fields) { $query{$_} = $DECODED_ARGS->{$_} unless defined $query{$_}; $query{$_} = $current->{$_} unless defined $query{$_}; } if ($DECODED_ARGS->{'SavedSearchLoadSubmit'}) { $query{'SavedChartSearchId'} = $DECODED_ARGS->{'SavedSearchLoad'}; } if ($DECODED_ARGS->{'SavedSearchSave'}) { $query{'SavedChartSearchId'} = $saved_search->{'SearchId'}; } } foreach (@search_fields) { if ( ref $default_value->{$_} ) { $query{$_} = ref $ARGS{$_} ? $ARGS{$_} : [ $ARGS{$_} ]; $query{$_} = $default_value->{$_} unless defined $query{$_} && defined $query{$_}[0]; } else { $query{$_} = ref $ARGS{$_} ? $ARGS{$_} : $ARGS{$_}; $query{$_} = $default_value->{$_} unless defined $query{$_}; } } $m->callback( ARGSRef => \%ARGS, QueryArgsRef => \%query ); <& /Elements/Header, Title => $title &> <& /Elements/Tabs, QueryArgs => \%query &> <& /Elements/ListActions, actions => \@actions &> % $m->callback( ARGSRef => \%ARGS, CallbackName => 'BeforeChart' ); <& /Search/Elements/Chart, %ARGS &> % $m->callback( ARGSRef => \%ARGS, CallbackName => 'AfterChart' );
<&| /Widgets/TitleBox, title => loc('Group by'), class => "chart-group-by" &>
<% loc('Group tickets by') %> <& Elements/SelectGroupBy, Name => 'GroupBy', Query => $query{Query}, Default => $query{'GroupBy'}[0], &>
<% loc('and then') %> <& Elements/SelectGroupBy, Name => 'GroupBy', Query => $query{Query}, Default => $query{'GroupBy'}[1] // q{}, ShowEmpty => 1, &>
<% loc('and then') %> <& Elements/SelectGroupBy, Name => 'GroupBy', Query => $query{Query}, Default => $query{'GroupBy'}[2] // q{}, ShowEmpty => 1, &>
<&| /Widgets/TitleBox, title => loc("Calculate"), class => "chart-calculate" &>
<% loc('Calculate values of') %> <& Elements/SelectChartFunction, Default => $query{'ChartFunction'}[0] &>
<% loc('and then') %> <& Elements/SelectChartFunction, Default => $query{'ChartFunction'}[1] // q{}, ShowEmpty => 1 &>
<% loc('and then') %> <& Elements/SelectChartFunction, Default => $query{'ChartFunction'}[2] // q{}, ShowEmpty => 1 &>
<&| /Widgets/TitleBox, title => loc('Picture'), class => "chart-picture" &> ×
> <% loc('Include data table') %>
> <% loc('Include TicketSQL query') %>
<& /Elements/Submit, Label => loc('Update Chart'), Name => 'Update' &>
rt-4.4.2/share/html/Search/Simple.html0000664000175000017500000001223713131430353017431 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> % $m->callback( %ARGS, CallbackName => 'PreForm' );
% my @strong = qw( );

<&|/l_unsafe, @strong &>Search for tickets by entering [_1]id[_2] numbers, subject words [_1]"in quotes"[_2], [_1]queues[_2] by name, Owners by [_1]username[_2], Requestors by [_1]email address[_2], and ticket [_1]statuses[_2]. Searching for [_1]@domainname.com[_2] will return tickets with requestors from that domain.

<&|/l&>Any word not recognized by RT is searched for in ticket subjects.

% my $config = RT->Config->Get('FullTextSearch') || {}; % my $fulltext_keyword = 'fulltext:'; % if ( $config->{'Enable'} ) { % if ( $config->{'Indexed'} ) {

<&|/l, $fulltext_keyword &>You can search for any word in full ticket history by typing [_1]word.

% } else {

<&|/l, $fulltext_keyword &>Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing [_1]word.

% } % }

<&|/l_unsafe, map { "$_" } qw(initial active inactive any) &>Entering [_1], [_2], [_3], or [_4] limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named. % if (RT->Config->Get('OnlySearchActiveTicketsInSimpleSearch', $session{'CurrentUser'})) { % my $status_str = join ', ', map { loc($_) } RT::Queue->ActiveStatusArray; <&|/l, $status_str &>Unless you specify a specific status, only tickets with active statuses ([_1]) are searched. % }

<&|/l_unsafe, map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com' &>Start the search term with the name of a supported field followed by a colon, as in [_1] and [_2], to explicitly specify the search type.

<&|/l_unsafe, 'cf.Name:value' &>CFs may be searched using a similar syntax as above with [_1].

% my $link_start = ''; % my $link_end = '';

<&|/l_unsafe, $link_start, $link_end &>For the full power of RT's searches, please visit the [_1]search builder interface[_2].

% $m->callback( %ARGS, CallbackName => 'PostForm' );
<%INIT> my $title = loc("Search for tickets"); use RT::Search::Simple; if ($q) { my $tickets = RT::Tickets->new( $session{'CurrentUser'} ); $m->callback( %ARGS, query => \$q, CallbackName => 'ModifyQuery' ); if ($q =~ /^#?(\d+)$/) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."Ticket/Display.html?id=".$1); } my %args = ( Argument => $q, TicketsObj => $tickets, ); $m->callback( %ARGS, CallbackName => 'SearchArgs', args => \%args); my $search = RT::Search::Simple->new(%args); $m->comp( "Results.html", Query => $search->QueryToSQL() ); $m->comp( "/Elements/Footer" ); $m->abort(); } <%ARGS> $q => undef rt-4.4.2/share/html/Search/Build.html0000664000175000017500000002511613131430353017237 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# %# Data flow here: %# The page receives a Query from the previous page, and maybe arguments %# corresponding to actions. (If it doesn't get a Query argument, it pulls %# one out of the session hash. Also, it could be getting just a raw query from %# Build/Edit.html (Advanced).) %# %# After doing some stuff with default arguments and saved searches, the ParseQuery %# function (which is similar to, but not the same as, _parser in lib/RT/Tickets.pm) %# converts the Query into a RT::Interface::Web::QueryBuilder::Tree. This mason file %# then adds stuff to or modifies the tree based on the actions that had been requested %# by clicking buttons. It then calls GetQueryAndOptionList on the tree to generate %# the SQL query (which is saved as a hidden input) and the option list for the Clauses %# box in the top right corner. %# %# Worthwhile refactoring: the tree manipulation code for the actions could use some cleaning %# up. The node-adding code is different in the "add" actions from in ParseQuery, which leads %# to things like ParseQuery correctly not quoting numbers in numerical fields, while the "add" %# action does quote it (this breaks SQLite). %# <& /Elements/Header, Title => $title &> <& /Elements/Tabs, %TabArgs &>
<& Elements/PickCriteria, query => $query{'Query'}, queues => $queues &>
<& /Elements/Submit, Label => loc('Add these terms'), SubmitId => 'AddClause', Name => 'AddClause'&> <& /Elements/Submit, Label => loc('Add these terms and Search'), SubmitId => 'DoSearch', Name => 'DoSearch'&>
<& Elements/EditQuery, %ARGS, actions => \@actions, optionlist => $optionlist, Description => $saved_search{'Description'}, &>
<& Elements/EditSearches, %saved_search, CurrentSearch => \%query &>
<& Elements/DisplayOptions, %ARGS, %query, AvailableColumns => $AvailableColumns, CurrentFormat => $CurrentFormat, &> <& /Elements/Submit, Label => loc('Update format and Search'), Name => 'DoSearch', id=>"formatbuttons"&>
<%INIT> use RT::Interface::Web::QueryBuilder; use RT::Interface::Web::QueryBuilder::Tree; $ARGS{SavedChartSearchId} ||= 'new'; my $title = loc("Query Builder"); my %query; for( qw(Query Format OrderBy Order RowsPerPage) ) { $query{$_} = $ARGS{$_}; } my %saved_search; my @actions = $m->comp( 'Elements/EditSearches:Init', %ARGS, Query => \%query, SavedSearch => \%saved_search); if ( $NewQuery ) { # Wipe all data-carrying variables clear if we want a new # search, or we're deleting an old one.. %query = (); %saved_search = ( Id => 'new' ); # ..then wipe the session out.. delete $session{'CurrentSearchHash'}; # ..and the search results. $session{'tickets'}->CleanSlate if defined $session{'tickets'}; } { # Attempt to load what we can from the session and preferences, set defaults my $current = $session{'CurrentSearchHash'}; my $prefs = $session{'CurrentUser'}->UserObj->Preferences("SearchDisplay") || {}; my $default = { Query => '', Format => '', OrderBy => RT->Config->Get('DefaultSearchResultOrderBy'), Order => RT->Config->Get('DefaultSearchResultOrder'), RowsPerPage => 50 }; for( qw(Query Format OrderBy Order RowsPerPage) ) { $query{$_} = $current->{$_} unless defined $query{$_}; $query{$_} = $prefs->{$_} unless defined $query{$_}; $query{$_} = $default->{$_} unless defined $query{$_}; } for( qw(Order OrderBy) ) { if (ref $query{$_} eq "ARRAY") { $query{$_} = join( '|', @{ $query{$_} } ); } } if ( $query{'Format'} ) { # Clean unwanted junk from the format $query{'Format'} = $m->comp( '/Elements/ScrubHTML', Content => $query{'Format'} ); } } my $ParseQuery = sub { my ($string, $results) = @_; my $tree = RT::Interface::Web::QueryBuilder::Tree->new('AND'); @$results = $tree->ParseSQL( Query => $string, CurrentUser => $session{'CurrentUser'} ); return $tree; }; my @parse_results; my $tree = $ParseQuery->( $query{'Query'}, \@parse_results ); # if parsing went poorly, send them to the edit page to fix it if ( @parse_results ) { push @actions, @parse_results; return $m->comp( "Edit.html", Query => $query{'Query'}, Format => $query{'Format'}, SavedSearchId => $saved_search{'Id'}, SavedChartSearchId => $ARGS{'SavedChartSearchId'}, actions => \@actions, ); } my @options = $tree->GetDisplayedNodes; my @current_values = grep defined, @options[@clauses]; my @new_values = (); my $cf_field_names = join "|", map quotemeta, grep { $RT::Tickets::FIELD_METADATA{$_}->[0] eq 'CUSTOMFIELD' } sort keys %RT::Tickets::FIELD_METADATA; # Try to find if we're adding a clause foreach my $arg ( keys %ARGS ) { next unless $arg =~ m/^ValueOf(\w+|($cf_field_names).\{.*?\}|CustomRole.\{.*?\})$/ && ( ref $ARGS{$arg} eq "ARRAY" ? grep $_ ne '', @{ $ARGS{$arg} } : $ARGS{$arg} ne '' ); # We're adding a $1 clause my $field = $1; my ($op, $value); #figure out if it's a grouping my $keyword = $ARGS{ $field . "Field" } || $field; my ( @ops, @values ); if ( ref $ARGS{ 'ValueOf' . $field } eq "ARRAY" ) { # we have many keys/values to iterate over, because there is # more than one CF with the same name. @ops = @{ $ARGS{ $field . 'Op' } }; @values = @{ $ARGS{ 'ValueOf' . $field } }; } else { @ops = ( $ARGS{ $field . 'Op' } ); @values = ( $ARGS{ 'ValueOf' . $field } ); } $RT::Logger->error("Bad Parameters passed into Query Builder") unless @ops == @values; for ( my $i = 0; $i < @ops; $i++ ) { my ( $op, $value ) = ( $ops[$i], $values[$i] ); next if !defined $value || $value eq ''; my $clause = { Key => $keyword, Op => $op, Value => $value, }; push @new_values, RT::Interface::Web::QueryBuilder::Tree->new($clause); } } push @actions, $m->comp('Elements/EditQuery:Process', %ARGS, Tree => $tree, Selected => \@current_values, New => \@new_values, ); # Rebuild $Query based on the additions / movements my $optionlist_arrayref; ($query{'Query'}, $optionlist_arrayref) = $tree->GetQueryAndOptionList(\@current_values); my $optionlist = join "\n", map { qq() } @$optionlist_arrayref; my $queues = $tree->GetReferencedQueues; # Deal with format changes my ( $AvailableColumns, $CurrentFormat ); ( $query{'Format'}, $AvailableColumns, $CurrentFormat ) = $m->comp( 'Elements/BuildFormatString', %ARGS, queues => $queues, Format => $query{'Format'}, ); # if we're asked to save the current search, save it push @actions, $m->comp( 'Elements/EditSearches:Save', %ARGS, Query => \%query, SavedSearch => \%saved_search); # Populate the "query" context with saved search data if ($ARGS{SavedSearchSave}) { $query{'SavedSearchId'} = $saved_search{'Id'}; } # Push the updates into the session so we don't lose 'em $session{'CurrentSearchHash'} = { %query, SearchId => $saved_search{'Id'}, Object => $saved_search{'Object'}, Description => $saved_search{'Description'}, }; # Show the results, if we were asked. if ( $ARGS{'DoSearch'} ) { my $redir_query_string = $m->comp( '/Elements/QueryString', %query, SavedChartSearchId => $ARGS{'SavedChartSearchId'}, SavedSearchId => $saved_search{'Id'}, ); RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Search/Results.html?' . $redir_query_string); $m->abort; } # Build a querystring for the tabs my %TabArgs = (); if ($NewQuery) { $TabArgs{QueryString} = 'NewQuery=1'; } elsif ( $query{'Query'} ) { $TabArgs{QueryArgs} = \%query; } <%ARGS> $NewQuery => 0 @clauses => () rt-4.4.2/share/html/Search/Edit.html0000664000175000017500000000652213131430353017065 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title&> <& /Elements/Tabs &> <& Elements/NewListActions, actions => \@actions &>
<&|/Widgets/TitleBox, title => loc('Query'), &> <&|/Widgets/TitleBox, title => loc('Format'), &> <& /Elements/Submit, Label => loc("Apply"), Reset => 1, Caption => loc("Apply your changes")&>
<%INIT> my $title = loc("Edit Query"); $Format = $m->comp('/Elements/ScrubHTML', Content => $Format); my $QueryString = $m->comp('/Elements/QueryString', Query => $Query, Format => $Format, RowsPerPage => $Rows, OrderBy => $OrderBy, Order => $Order, ); <%ARGS> $SavedSearchId => 'new' $SavedChartSearchId => 'new' $Query => '' $Format => '' $Rows => '50' $OrderBy => 'id' $Order => 'ASC' @actions => () rt-4.4.2/share/html/Search/Results.html0000664000175000017500000002062513131430353017641 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title, Refresh => $refresh, LinkRel => \%link_rel &> <& /Elements/Tabs &> % my $DisplayFormat; % $m->callback( ARGSRef => \%ARGS, Format => \$Format, DisplayFormat => \$DisplayFormat, CallbackName => 'BeforeResults' ); % unless ($ok) { % $msg =~ s{ at .*? line .*}{}s; <&| /Widgets/TitleBox, title => loc("Error"), class => "error-titlebox" &> <&|/l_unsafe, "".$m->interp->apply_escapes($msg, "h")."" &>There was an error parsing your search query: [_1]. Your RT admin can find more information in the error logs. % } else { <& /Elements/CollectionList, Query => $Query, TotalFound => $ticketcount, AllowSorting => 1, OrderBy => $OrderBy, Order => $Order, Rows => $Rows, Page => $Page, Format => $Format, DisplayFormat => $DisplayFormat, # in case we set it in callbacks Class => 'RT::Tickets', BaseURL => $BaseURL, SavedSearchId => $ARGS{'SavedSearchId'}, SavedChartSearchId => $ARGS{'SavedChartSearchId'}, PassArguments => [qw(Query Format Rows Page Order OrderBy SavedSearchId SavedChartSearchId)], &> % } % $m->callback( ARGSRef => \%ARGS, CallbackName => 'AfterResults' ); % my %hiddens = (Query => $Query, Format => $Format, Rows => $Rows, OrderBy => $OrderBy, Order => $Order, HideResults => $HideResults, Page => $Page, SavedChartSearchId => $SavedChartSearchId );
% foreach my $key (keys(%hiddens)) { % } <& /Elements/Refresh, Name => 'TicketsRefreshInterval', Default => $session{'tickets_refresh_interval'}||RT->Config->Get('SearchResultsRefreshInterval', $session{'CurrentUser'}) &>
%# Keyboard shortcuts info
<%INIT> $m->callback( ARGSRef => \%ARGS, CallbackName => 'Initial' ); # Read from user preferences my $prefs = $session{'CurrentUser'}->UserObj->Preferences("SearchDisplay") || {}; # These variables are what define a search_hash; this is also # where we give sane defaults. $Format ||= $prefs->{'Format'} || RT->Config->Get('DefaultSearchResultFormat'); $Order ||= $prefs->{'Order'} || RT->Config->Get('DefaultSearchResultOrder'); $OrderBy ||= $prefs->{'OrderBy'} || RT->Config->Get('DefaultSearchResultOrderBy'); # Some forms pass in "RowsPerPage" rather than "Rows" # We call it RowsPerPage everywhere else. if ( !defined($Rows) ) { if (defined $ARGS{'RowsPerPage'} ) { $Rows = $ARGS{'RowsPerPage'}; } elsif ( defined $prefs->{'RowsPerPage'} ) { $Rows = $prefs->{'RowsPerPage'}; } else { $Rows = 50; } } $Page = 1 unless $Page && $Page > 0; $session{'i'}++; $session{'tickets'} = RT::Tickets->new($session{'CurrentUser'}) ; my ($ok, $msg) = $Query ? $session{'tickets'}->FromSQL($Query) : (1, "Vacuously OK"); # Provide an empty search if parsing failed $session{'tickets'}->FromSQL("id < 0") unless ($ok); if ($OrderBy =~ /\|/) { # Multiple Sorts my @OrderBy = split /\|/,$OrderBy; my @Order = split /\|/,$Order; $session{'tickets'}->OrderByCols( map { { FIELD => $OrderBy[$_], ORDER => $Order[$_] } } ( 0 .. $#OrderBy ) );; } else { $session{'tickets'}->OrderBy(FIELD => $OrderBy, ORDER => $Order); } $session{'tickets'}->RowsPerPage( $Rows ) if $Rows; $session{'tickets'}->GotoPage( $Page - 1 ); $session{'CurrentSearchHash'} = { Format => $Format, Query => $Query, Page => $Page, Order => $Order, OrderBy => $OrderBy, RowsPerPage => $Rows }; my ($title, $ticketcount) = (loc("Find tickets"), 0); if ( $session{'tickets'}->Query()) { $ticketcount = $session{tickets}->CountAll(); $title = loc('Found [quant,_1,ticket,tickets]', $ticketcount); } my $QueryString = "?".$m->comp('/Elements/QueryString', Query => $Query, Format => $Format, Rows => $Rows, OrderBy => $OrderBy, Order => $Order, Page => $Page); my $ShortQueryString = "?".$m->comp('/Elements/QueryString', Query => $Query); if ($ARGS{'TicketsRefreshInterval'}) { $session{'tickets_refresh_interval'} = $ARGS{'TicketsRefreshInterval'}; } my $refresh = $session{'tickets_refresh_interval'} || RT->Config->Get('SearchResultsRefreshInterval', $session{'CurrentUser'} ); # Check $m->request_args, not $DECODED_ARGS, to avoid creating a new CSRF token on each refresh if (RT->Config->Get('RestrictReferrer') and $refresh and not $m->request_args->{CSRF_Token}) { my $token = RT::Interface::Web::StoreRequestToken( $session{'CurrentSearchHash'} ); $m->notes->{RefreshURL} = RT->Config->Get('WebURL') . "Search/Results.html?CSRF_Token=" . $token; } my %link_rel; my $genpage = sub { return $m->comp( '/Elements/QueryString', Query => $Query, Format => $Format, Rows => $Rows, OrderBy => $OrderBy, Order => $Order, Page => shift(@_), ); }; if ( RT->Config->Get('SearchResultsAutoRedirect') && $ticketcount == 1 && $session{tickets}->First ) { # $ticketcount is not always precise unless $UseSQLForACLChecks is set to true, # check $session{tickets}->First here is to make sure the ticket is there. RT::Interface::Web::Redirect( RT->Config->Get('WebURL') ."Ticket/Display.html?id=". $session{tickets}->First->id ); } my $BaseURL = RT->Config->Get('WebPath')."/Search/Results.html?"; $link_rel{first} = $BaseURL . $genpage->(1) if $Page > 1; $link_rel{prev} = $BaseURL . $genpage->($Page - 1) if $Page > 1; $link_rel{next} = $BaseURL . $genpage->($Page + 1) if ($Page * $Rows) < $ticketcount; $link_rel{last} = $BaseURL . $genpage->(POSIX::ceil($ticketcount/$Rows)) if $Rows and ($Page * $Rows) < $ticketcount; <%CLEANUP> $session{'tickets'}->PrepForSerialization(); <%ARGS> $Query => undef $Format => undef $HideResults => 0 $Rows => undef $Page => 1 $OrderBy => undef $Order => undef $SavedSearchId => undef $SavedChartSearchId => undef rt-4.4.2/share/html/Search/Elements/0000775000175000017500000000000013131430353017061 5ustar vagrantvagrantrt-4.4.2/share/html/Search/Elements/NewListActions0000664000175000017500000000452113131430353021714 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%loc('Results')%>
% foreach my $action (@actions) { % my @item = @$action; % if ($item[1] < 0) { % }  <%$item[0]%>
% if ($item[1] < 0) {
% } % }
<%init> @actions = map ref $_? $_: [$_, 0], grep defined && length, @actions; return unless @actions; <%ARGS> @actions => undef rt-4.4.2/share/html/Search/Elements/SearchesForObject0000664000175000017500000000474013131430353022344 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Object => undef <%init> # Returns an array of search objects associated on $Object, # in the form of [Description, LocalizedDescription, searchObj] my @result; while (my $search = $Object->Attributes->Next) { my $desc; if ($search->Name eq 'SavedSearch') { push @result, [$search->Description, $search->Description, $search]; } elsif ($search->Name =~ m/^Search - (.*)/) { push @result, [$1, loc($1), $search]; } } return @result; rt-4.4.2/share/html/Search/Elements/SelectChartType0000664000175000017500000000446413131430353022057 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Name => 'ChartType' $Default => 'bar' rt-4.4.2/share/html/Search/Elements/EditSort0000664000175000017500000001047113131430353020544 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % for my $o (0..3) { % $Order[$o] ||= ''; $OrderBy[$o] ||= ''; % }
% if ($o == 0) { <&|/l&>Order by: % }
<&|/l&>Rows per page: <& /Elements/SelectResultsPerPage, Name => "RowsPerPage", Default => $RowsPerPage &>
<%INIT> my $tickets = RT::Tickets->new($session{'CurrentUser'}); my %FieldDescriptions = %{$tickets->FIELDS}; my %fields; for my $field (keys %FieldDescriptions) { next if $field eq 'EffectiveId'; next unless $FieldDescriptions{$field}->[0] =~ /^(?:ENUM|INT|DATE|STRING|ID)$/; $fields{$field} = $field; } $fields{'Owner'} = 'Owner'; $fields{ $_ . '.EmailAddress' } = $_ . '.EmailAddress' for qw(Requestor Cc AdminCc); # Add all available CustomFields to the list of sortable columns. my @cfs = grep /^CustomField/, @{$ARGS{AvailableColumns}}; $fields{$_} = $_ for @cfs; # Add all available CustomRoles to the list of sortable columns. my @roles = grep /^CustomRole/, @{$ARGS{AvailableColumns}}; for my $role (@roles) { my ($label) = $role =~ /^CustomRole.{(.*)}$/; my $value = $role; $fields{$label . '.EmailAddress' } = $value . '.EmailAddress'; } # Add PAW sort $fields{'Custom.Ownership'} = 'Custom.Ownership'; $m->callback(CallbackName => 'MassageSortFields', Fields => \%fields ); my @Order = split /\|/, $Order; my @OrderBy = split /\|/, $OrderBy; if ($Order =~ /\|/) { @Order = split /\|/, $Order; } else { @Order = ( $Order ); } <%ARGS> $Order => '' $OrderBy => '' $RowsPerPage => undef $Format => undef $GroupBy => 'id' rt-4.4.2/share/html/Search/Elements/ResultsRSSView0000664000175000017500000000774113131430353021701 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $Tickets = RT::Tickets->new($session{'CurrentUser'}); $Tickets->FromSQL($ARGS{'Query'}); if ($OrderBy =~ /\|/) { # Multiple Sorts my @OrderBy = split /\|/,$OrderBy; my @Order = split /\|/,$Order; $Tickets->OrderByCols( map { { FIELD => $OrderBy[$_], ORDER => $Order[$_] } } ( 0 .. $#OrderBy ) );; } else { $Tickets->OrderBy(FIELD => $OrderBy, ORDER => $Order); } $r->content_type('application/rss+xml; charset=utf-8'); use XML::RSS; my $rss = XML::RSS->new(version => '1.0'); my $url; if ( RT->Config->Get('CanonicalizeURLsInFeeds') ) { $url = RT->Config->Get('WebURL'); } else { $url = RT::Interface::Web::GetWebURLFromRequest(); } my $base_date = RT::Date->new( RT->SystemUser ); $base_date->SetToNow; $base_date->SetToMidnight; $rss->channel( title => RT->Config->Get('rtname').": Search " . $ARGS{'Query'}, link => $url, description => "", dc => { }, generator => "RT v" . $RT::VERSION, syn => { updatePeriod => "hourly", updateFrequency => "1", updateBase => $base_date->W3CDTF, }, ); while ( my $Ticket = $Tickets->Next()) { my $creator_str = $Ticket->CreatorObj->Format; $creator_str =~ s/[\r\n]//g; # Get the plain-text content; it is interpreted as HTML by RSS # readers, so it must be escaped (and is escaped _again_ when # inserted into the XML). my $content = $Ticket->Transactions->First->Content; $content = $m->interp->apply_escapes( $content, 'h'); $rss->add_item( title => $Ticket->Subject || loc('No Subject'), link => $url . "Ticket/Display.html?id=".$Ticket->id, description => $content, dc => { creator => $creator_str, date => $Ticket->CreatedObj->W3CDTF, }, guid => $Ticket->Queue . '_' . $Ticket->id, ); } $m->out($rss->as_string); $m->abort(); <%ARGS> $OrderBy => 'Created' $Order => 'ASC' rt-4.4.2/share/html/Search/Elements/PickCriteria0000664000175000017500000000532313131430353021360 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => loc('Add Criteria')&> % $m->callback( %ARGS, CallbackName => "BeforeBasics" ); <& PickBasics, queues => \%queues &> <& PickCustomRoles, queues => \%queues &> <& PickTicketCFs, queues => \%queues &> <& PickObjectCFs, Class => 'Transaction', queues => \%queues &> <& PickObjectCFs, Class => 'Queue', queues => \%queues &> % $m->callback( %ARGS, CallbackName => "AfterCFs" );

<&|/l&>Aggregator <& SelectAndOr, Name => "AndOr" &>
<%ARGS> $addquery => 0 $query => undef %queues => () rt-4.4.2/share/html/Search/Elements/Graph0000664000175000017500000000410013131430353020040 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> return $m->comp('/Ticket/Graphs/Elements/ShowGraph', %ARGS); rt-4.4.2/share/html/Search/Elements/BuildFormatString0000664000175000017500000002076313131430353022413 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Format => RT->Config->Get('DefaultSearchResultFormat') %queues => () $Face => undef $Size => undef $Link => undef $Title => undef $AddCol => undef $RemoveCol => undef $ColUp => undef $ColDown => undef $SelectDisplayColumns => undef $CurrentDisplayColumns => undef <%init> # This can't be in a block, because otherwise we return the # same \@fields every request, and keep tacking more CustomFields onto # it -- and it grows per request. # All the things we can display in the format string by default my @fields = qw( id QueueName Subject Status ExtendedStatus UpdateStatus Type OwnerName Requestors Cc AdminCc CreatedBy LastUpdatedBy Priority InitialPriority FinalPriority TimeWorked TimeLeft TimeEstimated Starts StartsRelative Started StartedRelative Created CreatedRelative LastUpdated LastUpdatedRelative Told ToldRelative Due DueRelative Resolved ResolvedRelative SLA RefersTo ReferredToBy DependsOn DependedOnBy MemberOf Members Parents Children Bookmark Timer NEWLINE NBSP ); # loc_qw # Total time worked is an optional ColumnMap enabled for rolling up child # TimeWorked push @fields, 'TotalTimeWorked' if (RT->Config->Get('DisplayTotalTimeWorked')); my $CustomFields = RT::CustomFields->new( $session{'CurrentUser'}); foreach my $id (keys %queues) { # Gotta load up the $queue object, since queues get stored by name now. my $queue = RT::Queue->new($session{'CurrentUser'}); $queue->Load($id); next unless $queue->Id; $CustomFields->LimitToQueue($queue->Id); $CustomFields->SetContextObject( $queue ) if keys %queues == 1; } $CustomFields->LimitToGlobal; while ( my $CustomField = $CustomFields->Next ) { push @fields, "CustomField.{" . $CustomField->Name . "}"; } my $CustomRoles = RT::CustomRoles->new( $session{'CurrentUser'}); foreach my $id (keys %queues) { # Gotta load up the $queue object, since queues get stored by name now. my $queue = RT::Queue->new($session{'CurrentUser'}); $queue->Load($id); next unless $queue->Id; $CustomRoles->LimitToObjectId($queue->Id); } while ( my $Role = $CustomRoles->Next ) { push @fields, "CustomRole.{" . $Role->Name . "}"; } $m->callback( Fields => \@fields, ARGSRef => \%ARGS ); my ( @seen); $Format ||= RT->Config->Get('DefaultSearchResultFormat'); my @format = $m->comp('/Elements/CollectionAsTable/ParseFormat', Format => $Format); foreach my $field (@format) { # "title" is for columns like NEWLINE, which doesn't have "attribute" $field->{Column} = $field->{attribute} || $field->{title} || ''; push @seen, $field; } if ( $RemoveCol ) { # we do this regex match to avoid a non-numeric warning my ($index) = ($CurrentDisplayColumns // '') =~ /^(\d+)/; if ( defined($index) ) { delete $seen[$index]; my @temp = @seen; @seen = (); foreach my $element (@temp) { next unless $element; push @seen, $element; } } } elsif ( $AddCol ) { if ( defined $SelectDisplayColumns ) { my $selected = $SelectDisplayColumns; my @columns; if (ref($selected) eq 'ARRAY') { @columns = @$selected; } else { push @columns, $selected; } foreach my $col (@columns) { my %column = (); $column{Column} = $col; if ( $Face eq "Bold" ) { $column{Prefix} .= ""; $column{Suffix} .= ""; } if ( $Face eq "Italic" ) { $column{Prefix} .= ""; $column{Suffix} .= ""; } if ($Size) { if ( $Size eq 'Large' ) { $column{Prefix} .= ''; $column{Suffix} .= ''; } else { $column{Prefix} .= "<" . $m->interp->apply_escapes( $Size, 'h' ) . ">"; $column{Suffix} .= "interp->apply_escapes( $Size, 'h' ) . ">"; } } if ( $Link eq "Display" ) { $column{Prefix} .= q{}; $column{Suffix} .= ""; } elsif ( $Link eq "Take" ) { $column{Prefix} .= q{}; $column{Suffix} .= ""; } elsif ( $Link eq "Respond" ) { $column{Prefix} .= q{}; $column{Suffix} .= ""; } elsif ( $Link eq "Comment" ) { $column{Prefix} .= q{}; $column{Suffix} .= ""; } elsif ( $Link eq "Resolve" ) { $column{Prefix} .= q{}; $column{Suffix} .= ""; } if ($Title) { $column{Suffix} .= "/TITLE:" . $m->interp->apply_escapes( $Title, 'h' ); } push @seen, \%column; } } } elsif ( $ColUp ) { my ($index) = ($CurrentDisplayColumns // '') =~ /^(\d+)/; if ( defined $index && ( $index - 1 ) >= 0 ) { my $column = $seen[$index]; $seen[$index] = $seen[ $index - 1 ]; $seen[ $index - 1 ] = $column; $CurrentDisplayColumns = $index - 1; } } elsif ( $ColDown ) { my ($index) = ($CurrentDisplayColumns // '') =~ /^(\d+)/; if ( defined $index && ( $index + 1 ) < scalar @seen ) { my $column = $seen[$index]; $seen[$index] = $seen[ $index + 1 ]; $seen[ $index + 1 ] = $column; $CurrentDisplayColumns = $index + 1; } } my @format_string; foreach my $field (@seen) { next unless $field; my $row = ""; if ( $field->{'original_string'} ) { $row = $field->{'original_string'}; } else { $row .= $field->{'Prefix'} if defined $field->{'Prefix'}; $row .= "__$field->{'Column'}__" unless ( $field->{'Column'} eq "" ); $row .= $field->{'Suffix'} if defined $field->{'Suffix'}; $row =~ s!([\\'])!\\$1!g; $row = "'$row'"; } push( @format_string, $row ); } $Format = join(",\n", @format_string); return($Format, \@fields, \@seen); rt-4.4.2/share/html/Search/Elements/SelectGroupBy0000664000175000017500000000560313131430353021537 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Name => 'GroupBy' $Default => 'Status' $Query => '' $ShowEmpty => 0 <%init> use RT::Report::Tickets; my $report = RT::Report::Tickets->new( $session{'CurrentUser'} ); my @options = $report->Groupings( Query => $Query ); rt-4.4.2/share/html/Search/Elements/EditFormat0000664000175000017500000001365313131430353021052 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
<&|/l&>Add Columns: <&|/l&>Format: <&|/l&>Show Columns:
<&|/l&>Link:
<&|/l&>Title:
<&|/l&>Size:
<&|/l&>Style:

<%init> my $selected = $ARGS{AddCol} ? [] : $ARGS{SelectDisplayColumns}; $selected = [ $selected ] unless ref $selected; my %selected; $selected{$_}++ for grep {defined} @{ $selected }; <%ARGS> $CurrentFormat => undef $AvailableColumns => undef $IncludeTicketLinks => 1 rt-4.4.2/share/html/Search/Elements/SelectChartFunction0000664000175000017500000000553313131430353022721 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => 'ChartFunction' $Default => 'COUNT' $ShowEmpty => 0 <%INIT> my @functions = RT::Report::Tickets->Statistics; $Default = '' unless defined $Default; rt-4.4.2/share/html/Search/Elements/SelectSearchesForObjects0000664000175000017500000000524213131430353023665 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> @Objects => undef $Name => undef $SearchType => 'Ticket', rt-4.4.2/share/html/Search/Elements/PickObjectCFs0000664000175000017500000000543713131430353021426 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Class %queues => () <%init> my $CustomFields = RT::CustomFields->new( $session{'CurrentUser'} ); $CustomFields->ApplySortOrder; $CustomFields->LimitToLookupType( "RT::$Class"->CustomFieldLookupType ); $CustomFields->LimitToObjectId(0); foreach my $name (keys %queues) { my $queue = RT::Queue->new($session{'CurrentUser'}); $queue->Load($name); next unless $queue->Id; $CustomFields->LimitToObjectId($queue->Id); $CustomFields->SetContextObject( $queue ) if keys %queues == 1; } my $has_cf = $CustomFields->First ? 1 : 0; $CustomFields->GotoFirstItem; % if ($has_cf) {
<% loc("[_1] CFs", loc($Class)) %> % } <& PickCFs, %ARGS, TicketSQLField => "${Class}CF", CustomFields => $CustomFields &> rt-4.4.2/share/html/Search/Elements/ConditionRow0000664000175000017500000000726513131430353021434 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <% $handle_block->( $Condition->{'Field'}, $Condition->{'Name'} .'Field' ) |n %> <% $handle_block->( $Condition->{'Op'}, $Condition->{'Name'} .'Op') |n %> <% $handle_block->( $Condition->{'Value'}, 'ValueOf'. $Condition->{'Name'} ) |n %> <%INIT> return unless $Condition && $Condition->{'Name'}; $m->callback( Condition => \$Condition ); return unless $Condition; my $handle_block; $handle_block = sub { my $box = shift; return $box unless ref $box; my $name = shift; if ( UNIVERSAL::isa($box, 'ARRAY') ) { my $res = ''; $res .= $handle_block->( $_, $name ) foreach @$box; return $res; } return undef unless UNIVERSAL::isa($box, 'HASH'); if ( $box->{'Type'} eq 'component' ) { $box->{'Arguments'} ||= {}, return $m->scomp( $box->{'Path'}, %{ $box->{'Arguments'} }, Name => $name ); } if ( $box->{'Type'} eq 'text' ) { $box->{id} ||= $box->{name} ||= $name; $box->{value} ||= delete($box->{Default}) || ''; return "interp->apply_escapes(lc($_),'h') .q{="}.$m->interp->apply_escapes($box->{$_},'h').q{"}} sort keys %$box)." />"; } if ( $box->{'Type'} eq 'select' ) { my $res = ''; $res .= qq{}; return $res; } }; <%ARGS> $Condition => {} rt-4.4.2/share/html/Search/Elements/SelectAndOr0000664000175000017500000000434613131430353021156 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => "Operator" rt-4.4.2/share/html/Search/Elements/DisplayOptions0000664000175000017500000000427013131430353021770 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => loc("Sorting"), id => 'sorting' &> <& EditSort, %ARGS &> <&| /Widgets/TitleBox, title => loc("Display Columns"), id => 'columns' &> <& EditFormat, %ARGS &> rt-4.4.2/share/html/Search/Elements/PickTicketCFs0000664000175000017500000000512613131430353021436 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> %queues => () <%init> my $CustomFields = RT::CustomFields->new( $session{'CurrentUser'}); foreach my $id (keys %queues) { # Gotta load up the $queue object, since queues get stored by name now. my $queue = RT::Queue->new($session{'CurrentUser'}); $queue->Load($id); next unless $queue->Id; $CustomFields->LimitToQueue($queue->Id); $CustomFields->SetContextObject( $queue ) if keys %queues == 1; } $CustomFields->LimitToGlobal; $CustomFields->OrderBy( FIELD => 'Name', ORDER => 'ASC' ); <& PickCFs, %ARGS, TicketSQLField => 'CF', CustomFields => $CustomFields &> rt-4.4.2/share/html/Search/Elements/Article0000664000175000017500000000507113131430353020372 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/CollectionList, %ARGS, Collection => $articles, Class => 'RT::Articles', Format => q{ '__id__/TITLE:#', '__Name__/TITLE:Name', '__ClassName__', '__CreatedRelative__', '__LastUpdatedRelative__', '__Summary__', '__Topics__', } &> <%INIT> my $QueryString = "?".$m->comp('/Elements/QueryString', %{$ARGS{args}}); my $articles = RT::Articles->new( $session{CurrentUser} ); $articles->Search( %{$ARGS{args}} ); rt-4.4.2/share/html/Search/Elements/PickBasics0000664000175000017500000002042013131430353021015 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % foreach( @lines ) { <& ConditionRow, Condition => $_ &> % } <%INIT> my @lines = ( { Name => 'id', Field => loc('id'), Op => { Type => 'component', Path => '/Elements/SelectEqualityOperator', }, Value => { Type => 'text', Size => 5 } }, { Name => 'Attachment', Field => { Type => 'component', Path => '/Elements/SelectAttachmentField', }, Op => { Type => 'component', Path => '/Elements/SelectBoolean', Arguments => { True => loc("matches"), False => loc("doesn't match"), TrueVal => 'LIKE', FalseVal => 'NOT LIKE', }, }, Value => { Type => 'text', Size => 20 }, }, { Name => 'Queue', Field => loc('Queue'), Op => { Type => 'component', Path => '/Elements/SelectMatch', Arguments => { Default => '=' }, }, Value => { Type => 'component', Path => '/Elements/SelectQueue', Arguments => { NamedValues => 1, }, }, }, { Name => 'Status', Field => loc('Status'), Op => { Type => 'component', Path => '/Elements/SelectBoolean', Arguments => { TrueVal=> '=', FalseVal => '!=' }, }, Value => { Type => 'component', Path => '/Ticket/Elements/SelectStatus', Arguments => { SkipDeleted => 1, Queues => \%queues }, }, }, { Name => 'Actor', Field => { Type => 'select', Options => [ Owner => loc('Owner'), Creator => loc('Creator'), LastUpdatedBy => loc('Last updated by'), UpdatedBy => loc('Updated by'), ], }, Op => { Type => 'component', Path => '/Elements/SelectBoolean', Arguments => { TrueVal=> '=', FalseVal => '!=' }, }, Value => { Type => 'component', Path => '/Elements/SelectOwner', Arguments => { ValueAttribute => 'Name', Queues => \%queues }, }, }, { Name => 'Watcher', Field => { Type => 'component', Path => 'SelectPersonType', Arguments => { Default => 'Requestor' }, }, Op => { Type => 'component', Path => '/Elements/SelectMatch', }, Value => { Type => 'text', Size => 20 } }, { Name => 'WatcherGroup', Field => { Type => 'component', Path => 'SelectPersonType', Arguments => { Default => 'Owner', Suffix => 'Group' }, }, Op => { Type => 'select', Options => [ '=' => loc('is') ], }, Value => { Type => 'text', Size => 20, "data-autocomplete" => "Groups" } }, { Name => 'Date', Field => { Type => 'component', Path => '/Elements/SelectDateType', }, Op => { Type => 'component', Path => '/Elements/SelectDateRelation', }, Value => { Type => 'component', Path => '/Elements/SelectDate', Arguments => { ShowTime => 0, Default => '' }, }, }, { Name => 'Time', Field => { Type => 'select', Options => [ TimeWorked => loc('Time Worked'), TimeEstimated => loc('Time Estimated'), TimeLeft => loc('Time Left'), ], }, Op => { Type => 'component', Path => '/Elements/SelectEqualityOperator', }, Value => [ { Type => 'text', Size => 5 }, { Type => 'component', Path => '/Elements/SelectTimeUnits', }, ], }, { Name => 'Priority', Field => { Type => 'select', Options => [ Priority => loc('Priority'), InitialPriority => loc('Initial Priority'), FinalPriority => loc('Final Priority'), ], }, Op => { Type => 'component', Path => '/Elements/SelectEqualityOperator', }, Value => { Type => 'component', Path => '/Elements/SelectPriority', }, }, { Name => 'Links', Field => { Type => 'component', Path => 'SelectLinks' }, Op => { Type => 'component', Path => '/Elements/SelectBoolean', Arguments => { TrueVal=> '=', FalseVal => '!=' }, }, Value => { Type => 'text', Size => 5 } }, ); $m->callback( Conditions => \@lines ); <%ARGS> %queues => () rt-4.4.2/share/html/Search/Elements/SearchPrivacy0000664000175000017500000000451113131430353021550 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Object => undef <%init> my $label; if (ref($Object) eq 'RT::User') { $label = $Object->id == $session{'CurrentUser'}->Id ? loc("My saved searches") : loc("[_1]'s saved searches", $Object->Format); } else { $label = loc("[_1]'s saved searches", $Object->Name); } <% $label %>\ rt-4.4.2/share/html/Search/Elements/SelectPersonType0000664000175000017500000000621113131430353022254 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my @types; if ($Role) { @types = ( [ "CustomRole.{" . $Role->Name . "}", $Role->Name ], ); } elsif ($Scope =~ /queue/) { @types = qw(Cc AdminCc); } elsif ($Suffix eq 'Group') { @types = qw(Owner Requestor Cc AdminCc Watcher); } else { @types = qw(Requestor Cc AdminCc Watcher Owner QueueCc QueueAdminCc QueueWatcher); } my @subtypes = @{ $RT::Tickets::SEARCHABLE_SUBFIELDS{'User'} }; <%ARGS> $AllowNull => 1 $Suffix => '' $Default=>undef $Scope => 'ticket' $Name => 'WatcherType' $Role => undef rt-4.4.2/share/html/Search/Elements/PickCFs0000664000175000017500000000666513131430353020303 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % foreach( @lines ) { <& ConditionRow, Condition => $_ &> % } <%INIT> $m->callback( CallbackName => 'MassageCustomFields', CustomFields => $CustomFields, ); my @lines; while ( my $CustomField = $CustomFields->Next ) { my %line; $line{'Name'} = "$TicketSQLField.{" . $CustomField->Name . "}"; $line{'Field'} = $CustomField->Name; # Op if ($CustomField->Type =~ /^Date(Time)?$/ ) { $line{'Op'} = { Type => 'component', Path => '/Elements/SelectDateRelation', Arguments => {}, }; } elsif ($CustomField->Type =~ /^IPAddress(Range)?$/ ) { $line{'Op'} = { Type => 'component', Path => '/Elements/SelectIPRelation', Arguments => {}, }; } else { $line{'Op'} = { Type => 'component', Path => '/Elements/SelectCustomFieldOperator', Arguments => { True => loc("is"), False => loc("isn't"), TrueVal=> '=', FalseVal => '!=', }, }; } # Value $line{'Value'} = { Type => 'component', Path => '/Elements/SelectCustomFieldValue', Arguments => { CustomField => $CustomField }, }; push @lines, \%line; } $m->callback( Conditions => \@lines, Queues => \%queues ); <%ARGS> %queues => () $CustomFields $TicketSQLField => 'CF' rt-4.4.2/share/html/Search/Elements/EditSearches0000664000175000017500000002657713131430353021370 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
<&| /Widgets/TitleBox, title => loc($Title)&> %# Hide all the save functionality if the user shouldn't see it. % if ( $can_modify ) { <&|/l&>Privacy: <& SelectSearchObject, Name => 'SavedSearchOwner', Objects => \@Objects, Object => ( $Object && $Object->id ) ? $Object->Object : '' &>
<&|/l&>Description: % if ($Id ne 'new') { % if ( $Dirty ) { % } % if ( $AllowCopy ) { % } % } % if ( $Object && $Object->Id && $Object->CurrentUserHasRight('update') ) { % } elsif ( !$Object ) { %} % }

<&|/l&>Load saved search: <& SelectSearchesForObjects, Name => 'SavedSearchLoad', Objects => \@Objects, SearchType => $Type &>
<%INIT> return unless $session{'CurrentUser'}->HasRight( Right => 'LoadSavedSearch', Object => $RT::System, ); my $can_modify = $session{'CurrentUser'}->HasRight( Right => 'CreateSavedSearch', Object => $RT::System, ); use RT::SavedSearch; my @Objects = RT::SavedSearch->new($session{CurrentUser})->_PrivacyObjects; push @Objects, RT::System->new( $session{'CurrentUser'} ) if $session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser' ); my $is_dirty = sub { my %arg = ( Query => {}, SavedSearch => {}, SearchFields => [qw(Query Format OrderBy Order RowsPerPage)], @_ ); my $obj = $arg{'SavedSearch'}->{'Object'}; return 0 unless $obj && $obj->id; foreach( @{ $arg{'SearchFields'} } ) { return 1 if $obj->SubValue( $_ ) ne $arg{'Query'}->{$_}; } return 0; }; # If we're modifying an old query, check if it's been changed my $Dirty = $is_dirty->( Query => $CurrentSearch, SavedSearch => { Id => $Id, Object => $Object, Description => $Description }, SearchFields => \@SearchFields, ); <%ARGS> $Id => 'new' $Object => undef $Type => 'Ticket' $Description => '' $CurrentSearch => {} @SearchFields => () $AllowCopy => 1 $Title => loc('Saved searches') <%METHOD Init> <%ARGS> $Query => {} $SavedSearch => {} @SearchFields => qw(Query Format OrderBy Order RowsPerPage) <%INIT> $SavedSearch->{'Id'} = ( $ARGS{Type} && $ARGS{Type} eq 'Chart' ? $ARGS{'SavedChartSearchId'} : $ARGS{'SavedSearchId'} ) || 'new'; $SavedSearch->{'Description'} = $ARGS{'SavedSearchDescription'} || ''; $SavedSearch->{'Privacy'} = $ARGS{'SavedSearchOwner'} || undef; my @results; if ( $ARGS{'SavedSearchRevert'} ) { $ARGS{'SavedSearchLoad'} = $SavedSearch->{'Id'}; } if ( $ARGS{'SavedSearchLoad'} ) { my ($container, $id ) = _parse_saved_search ($ARGS{'SavedSearchLoad'}); if ( $container ) { my $search = RT::Attribute->new( $session{'CurrentUser'} ); $search->Load( $id ); $SavedSearch->{'Id'} = $ARGS{'SavedSearchLoad'}; $SavedSearch->{'Object'} = $search; $SavedSearch->{'Description'} = $search->Description; $Query->{$_} = $search->SubValue($_) foreach @SearchFields; if ( $ARGS{'SavedSearchRevert'} ) { push @results, loc('Loaded original "[_1]" saved search', $SavedSearch->{'Description'} ); } else { push @results, loc('Loaded saved search "[_1]"', $SavedSearch->{'Description'} ); } } else { push @results, loc( 'Can not load saved search "[_1]"', $ARGS{'SavedSearchLoad'} ); return @results; } } elsif ( $ARGS{'SavedSearchDelete'} ) { # We set $SearchId to 'new' above already, so peek into the %ARGS my ($container, $id) = _parse_saved_search( $SavedSearch->{'Id'} ); if ( $container && $container->id ) { # We have the object the entry is an attribute on; delete the entry... my ($val, $msg) = $container->Attributes->DeleteEntry( Name => 'SavedSearch', id => $id ); unless ( $val ) { push @results, $msg; return @results; } } $SavedSearch->{'Id'} = 'new'; $SavedSearch->{'Object'} = undef; $SavedSearch->{'Description'} = undef; push @results, loc("Deleted saved search"); } elsif ( $ARGS{'SavedSearchCopy'} ) { my ($container, $id ) = _parse_saved_search( $ARGS{'SavedSearchId'} ); $SavedSearch->{'Object'} = RT::Attribute->new( $session{'CurrentUser'} ); $SavedSearch->{'Object'}->Load( $id ); if ( $ARGS{'SavedSearchDescription'} && $ARGS{'SavedSearchDescription'} ne $SavedSearch->{'Object'}->Description ) { $SavedSearch->{'Description'} = $ARGS{'SavedSearchDescription'}; } else { $SavedSearch->{'Description'} = loc( "[_1] copy", $SavedSearch->{'Object'}->Description ); } $SavedSearch->{'Id'} = 'new'; $SavedSearch->{'Object'} = undef; } if ( $SavedSearch->{'Id'} && $SavedSearch->{'Id'} ne 'new' && !$SavedSearch->{'Object'} ) { my ($container, $id ) = _parse_saved_search( $ARGS{'SavedSearchId'} ); $SavedSearch->{'Object'} = RT::Attribute->new( $session{'CurrentUser'} ); $SavedSearch->{'Object'}->Load( $id ); $SavedSearch->{'Description'} ||= $SavedSearch->{'Object'}->Description; } return @results; <%METHOD Save> <%ARGS> $Query => {} $SavedSearch => {} @SearchFields => qw(Query Format OrderBy Order RowsPerPage) <%INIT> return unless $ARGS{'SavedSearchSave'} || $ARGS{'SavedSearchCopy'}; my @results; my $obj = $SavedSearch->{'Object'}; my $id = $SavedSearch->{'Id'}; my $desc = $SavedSearch->{'Description'}; my $privacy = $SavedSearch->{'Privacy'}; my %params = map { $_ => $Query->{$_} } @SearchFields; my ($new_obj_type, $new_obj_id) = split(/\-/, ($privacy || '')); if ( $obj && $obj->id ) { # permission check if ($obj->Object->isa('RT::System')) { unless ($session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser')) { push @results, loc("No permission to save system-wide searches"); return @results; } } $obj->SetSubValues( %params ); $obj->SetDescription( $desc ); my $obj_type = ref($obj->Object); # We need to get current obj_id now, because when we change obj_type to # RT::System, $obj->Object->Id returns 1, not the old one :( my $obj_id = $obj->Object->Id; if ( $new_obj_type && $new_obj_id ) { my ($val, $msg); # we need to check right before we change any of ObjectType and ObjectId, # or it will fail the 2nd change if we use SetObjectType and # SetObjectId sequentially if ( $obj->CurrentUserHasRight('update') ) { if ( $new_obj_type ne $obj_type ) { ( $val, $msg ) = $obj->__Set( Field => 'ObjectType', Value => $new_obj_type, ); push @results, loc( 'Unable to set privacy object: [_1]', $msg ) unless ($val); } if ( $new_obj_id != $obj_id ) { ( $val, $msg ) = $obj->__Set( Field => 'ObjectId', Value => $new_obj_id, ); push @results, loc( 'Unable to set privacy id: [_1]', $msg ) unless ($val); } } else { # two loc are just for convenience so we don't need to # write an extra i18n translation item push @results, loc( 'Unable to set privacy object or id: [_1]', loc('Permission Denied') ) } } else { push @results, loc('Unable to determine object type or id'); } push @results, loc('Updated saved search "[_1]"', $desc); } elsif ( $id eq 'new' and defined $desc and length $desc ) { my $saved_search = RT::SavedSearch->new( $session{'CurrentUser'} ); my ($status, $msg) = $saved_search->Save( Privacy => $privacy, Name => $desc, Type => $SavedSearch->{'Type'}, SearchParams => \%params, ); if ( $status ) { $SavedSearch->{'Object'} = RT::Attribute->new( $session{'CurrentUser'} ); $SavedSearch->{'Object'}->Load( $saved_search->Id ); # Build new SearchId $SavedSearch->{'Id'} = ref( $session{'CurrentUser'}->UserObj ) . '-' . $session{'CurrentUser'}->UserObj->Id . '-SavedSearch-' . $SavedSearch->{'Object'}->Id; } else { push @results, loc("Can't find a saved search to work with").': '.loc($msg); } } elsif ( $id eq 'new' ) { push @results, loc("Can't save a search without a Description"); } else { push @results, loc("Can't save this search"); } return @results; rt-4.4.2/share/html/Search/Elements/SelectLinks0000664000175000017500000000472713131430353021236 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => 'LinksField' <%INIT> my @fields = ( [ HasMember => loc("Child") ], [ MemberOf => loc("Parent") ], [ DependsOn => loc("Depends on") ], [ DependedOnBy => loc("Depended on by") ], [ RefersTo => loc("Refers to") ], [ ReferredToBy => loc("Referred to by") ], [ LinkedTo => loc("Links to") ], ); rt-4.4.2/share/html/Search/Elements/PickCustomRoles0000664000175000017500000000607013131430353022075 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> %queues => () <%INIT> my $CustomRoles = RT::CustomRoles->new( $session{'CurrentUser'}); foreach my $id (keys %queues) { # Gotta load up the $queue object, since queues get stored by name now. my $queue = RT::Queue->new($session{'CurrentUser'}); $queue->Load($id); next unless $queue->Id; $CustomRoles->LimitToObjectId($queue->Id); } $m->callback( CallbackName => 'MassageCustomRoles', CustomRoles => $CustomRoles, ); my @lines; while ( my $Role = $CustomRoles->Next ) { my $name = "CustomRole.{" . $Role->Name . "}"; my %line = ( Name => $name, Field => { Type => 'component', Path => 'SelectPersonType', Arguments => { Role => $Role, Default => $name }, }, Op => { Type => 'component', Path => '/Elements/SelectMatch', }, Value => { Type => 'text', Size => 20 }, ); push @lines, \%line; } $m->callback( Conditions => \@lines, Queues => \%queues ); % foreach( @lines ) { <& ConditionRow, Condition => $_ &> % } rt-4.4.2/share/html/Search/Elements/ChartTable0000664000175000017500000001055213131430353021020 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> %Table => () $Query => undef <%INIT> my $base_query = $m->comp('/Elements/QueryString', Format => $ARGS{Format}, Rows => $ARGS{Rows}, OrderBy => $ARGS{OrderBy}, Order => $ARGS{Order}, ); my $interp = $m->interp; my $eh = sub { $interp->apply_escapes( @_, 'h' ) }; my $eu = sub { $interp->apply_escapes( @_, 'u' ) }; $m->out(''. "\n"); foreach my $section (qw(thead tbody tfoot)) { next unless $Table{ $section } && @{ $Table{ $section } }; $m->out("<$section>\n"); foreach my $row ( @{ $Table{ $section } } ) { $m->out(' out(' class="'. ($row->{'even'}? 'evenline' : 'oddline') .'"') if defined $row->{'even'}; $m->out(">"); foreach my $cell ( @{ $row->{'cells'} } ) { my $tag = $cell->{'type'} eq 'value'? 'td' : 'th'; $m->out("<$tag"); my @class = ('collection-as-table'); push @class, ($cell->{'type'}) unless $cell->{'type'} eq 'head'; push @class, $cell->{'even'} ? 'evenline' : 'oddline' if defined $cell->{'even'}; $m->out(' class="'. $eh->( join ' ', @class ) .'"'); foreach my $dir ( grep $cell->{$_}, qw(rowspan colspan) ) { my $value = int $cell->{ $dir }; $m->out(qq{ $dir="$value"}); } $m->out(' style="background-color: #'. $m->interp->apply_escapes($cell->{color}) .'"') if $cell->{color}; $m->out('>'); if ( defined $cell->{'value'} ) { if ( my $q = $cell->{'query'} ) { $m->out( '('&') . $base_query . '">' ); $m->out( $eh->( $cell->{'value'} ) ); $m->out(''); } else { $m->out( $eh->( $cell->{'value'} ) ); } } else { $m->out(' '); } $m->out(""); } $m->out("\n"); } $m->out("\n\n"); } $m->out("
"); rt-4.4.2/share/html/Search/Elements/EditQuery0000664000175000017500000001716213131430353020726 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& NewListActions, actions => $actions &> <&|/Widgets/TitleBox, title => join(': ', grep defined, loc("Current search"), $Description) &>

%#

<%ARGS> $Description => undef $optionlist => '' $actions => [] <%METHOD Process> <%ARGS> $Tree $Selected @New => () <%INIT> my @NewSelection = (); my @results; if ( $ARGS{'Up'} || $ARGS{'Down'} ) { if (@$Selected) { foreach my $value (@$Selected) { my $parent = $value->getParent; my $index = $value->getIndex; my $newindex = $index; $newindex++ if $ARGS{'Down'}; $newindex-- if $ARGS{'Up'}; if ( $newindex < 0 || $newindex >= $parent->getChildCount ) { push( @results, [ loc("error: can't move up"), -1 ] ) if $ARGS{'Up'}; push( @results, [ loc("error: can't move down"), -1 ] ) if $ARGS{'Down'}; next; } $parent->removeChild( $index ); $parent->insertChild( $newindex, $value ); } } else { push( @results, [ loc("error: nothing to move"), -1 ] ); } } elsif ( $ARGS{"Left"} ) { if (@$Selected) { foreach my $value (@$Selected) { my $parent = $value->getParent; if( $value->isRoot || $parent->isRoot ) { push( @results, [ loc("error: can't move left"), -1 ] ); next; } my $grandparent = $parent->getParent; if( $grandparent->isRoot ) { push( @results, [ loc("error: can't move left"), -1 ] ); next; } my $index = $parent->getIndex; $parent->removeChild($value); $grandparent->insertChild( $index, $value ); if ( $parent->isLeaf ) { $grandparent->removeChild($parent); } } } else { push( @results, [ loc("error: nothing to move"), -1 ] ); } } elsif ( $ARGS{"Right"} ) { if (@$Selected) { foreach my $value (@$Selected) { my $parent = $value->getParent; my $index = $value->getIndex; my $newparent; if ( $index > 0 ) { my $sibling = $parent->getChild( $index - 1 ); $newparent = $sibling unless $sibling->isLeaf; } $newparent ||= RT::Interface::Web::QueryBuilder::Tree->new( $ARGS{'AndOr'} || 'AND', $parent ); $parent->removeChild($value); $newparent->addChild($value); } } else { push( @results, [ loc("error: nothing to move"), -1 ] ); } } elsif ( $ARGS{"DeleteClause"} ) { if (@$Selected) { my (@top); my %Selected = map { $_ => 1 } @$Selected; foreach my $node ( @$Selected ) { my $tmp = $node->getParent; while ( !$Selected{ $tmp } && !$tmp->isRoot ) { $tmp = $tmp->getParent; } next if $Selected{ $tmp }; push @top, $node; } my %seen; my @non_siblings_top = grep !$seen{ $_->getParent }++, @top; foreach ( @New ) { my $add = $_->clone; foreach my $selected( @non_siblings_top ) { my $newindex = $selected->getIndex + 1; $selected->insertSibling( $newindex, $add ); } $add->getParent->setNodeValue( $ARGS{'AndOr'} ); push @NewSelection, $add; } @New = (); while( my $node = shift @top ) { my $parent = $node->getParent; $parent->removeChild($node); $node->DESTROY; } @$Selected = (); } else { push( @results, [ loc("error: nothing to delete"), -1 ] ); } } elsif ( $ARGS{"Toggle"} ) { if (@$Selected) { my %seen; my @unique_nodes = grep !$seen{ $_ + 0 }++, map ref $_->getNodeValue? $_->getParent: $_, @$Selected; foreach my $node ( @unique_nodes ) { if ( $node->getNodeValue eq 'AND' ) { $node->setNodeValue('OR'); } else { $node->setNodeValue('AND'); } } } else { push( @results, [ loc("error: nothing to toggle"), -1 ] ); } } if ( @New && @$Selected ) { my %seen; my @non_siblings_selected = grep !$seen{ $_->getParent }++, @$Selected; foreach ( @New ) { my $add = $_->clone; foreach my $selected( @non_siblings_selected ) { my $newindex = $selected->getIndex + 1; $selected->insertSibling( $newindex, $add ); } $add->getParent->setNodeValue( $ARGS{'AndOr'} ); push @NewSelection, $add; } @$Selected = (); } elsif ( @New ) { foreach ( @New ) { my $add = $_->clone; $Tree->addChild( $add ); push @NewSelection, $add; } $Tree->setNodeValue( $ARGS{'AndOr'} ); } $_->DESTROY foreach @New; push @$Selected, @NewSelection; $Tree->PruneChildlessAggregators; return @results; rt-4.4.2/share/html/Search/Elements/SelectGroup0000664000175000017500000000476313131430353021252 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $groups = RT::Groups->new($session{'CurrentUser'}); $groups->Limit(FIELD => 'Domain', OPERATOR => '=', VALUE => $Domain, CASESENSITIVE => 0); <%ARGS> $AllowNull => 1 $Default=> '' $Name => 'Group' $Domain => 'UserDefined'; rt-4.4.2/share/html/Search/Elements/SelectSearchObject0000664000175000017500000000472213131430353022505 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> @Objects => undef $Name => undef $Object => undef <%init> my $default_privacy = ''; if ( $Object && $Object->Id ) { $default_privacy = ref($Object).'-'.$Object->Id; } rt-4.4.2/share/html/Search/Elements/Chart0000664000175000017500000000641413131430353020052 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Query => "id > 0" @GroupBy => () $ChartStyle => 'bar+table+sql' @ChartFunction => 'COUNT' <%init> use RT::Report::Tickets; my $report = RT::Report::Tickets->new( $session{'CurrentUser'} ); my %columns = $report->SetupGroupings( Query => $Query, GroupBy => \@GroupBy, Function => \@ChartFunction, ); $report->SortEntries; my $query_string = $m->comp('/Elements/QueryString', %ARGS, GroupBy => \@GroupBy );
% if ( ($ChartStyle || '') =~ /\b(pie|bar)\b/ ) { % if (RT->Config->Get('DisableGD')) { <% loc('Graphical charts are not available.') %>
% } else { % my $key = Digest::MD5::md5_hex( rand(1024) ); % $session{'charts_cache'}{$key} = { columns => \%columns, report => $report->Serialize }; % $session{'i'}++; % }
% } % if ( ($ChartStyle || '') =~ /\btable\b/ ) { <& ChartTable, %ARGS, Table => { $report->FormatTable( %columns ) } &> % } % $m->callback( CallbackName => 'AfterChartTable', ARGSRef => \%ARGS ); % if ( ($ChartStyle || '') =~ /\bsql\b/ ) {
<% loc('Query') %>:<% $Query %>
% }
rt-4.4.2/share/html/Search/index.html0000664000175000017500000000421413131430353017303 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Searches') &> <& /Elements/Tabs &> <& /Elements/ListMenu, menu => Menu()->child('search'), show_children => 1 &> rt-4.4.2/share/html/Search/Results.tsv0000664000175000017500000000517113131430353017510 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Format => undef $Query => '' $OrderBy => 'id' $Order => 'ASC' $PreserveNewLines => 0 <%INIT> my $Tickets = RT::Tickets->new( $session{'CurrentUser'} ); $Tickets->FromSQL( $Query ); if ( $OrderBy =~ /\|/ ) { # Multiple Sorts my @OrderBy = split /\|/, $OrderBy; my @Order = split /\|/, $Order; $Tickets->OrderByCols( map { { FIELD => $OrderBy[$_], ORDER => $Order[$_] } } ( 0 .. $#OrderBy ) ); } else { $Tickets->OrderBy( FIELD => $OrderBy, ORDER => $Order ); } $m->comp( "/Elements/TSVExport", Collection => $Tickets, Format => $Format, PreserveNewLines => $PreserveNewLines ); rt-4.4.2/share/html/Search/Bulk.html0000664000175000017500000003314313131430353017074 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
% foreach my $var (qw(Query Format OrderBy Order Rows Page SavedSearchId SavedChartSearchId Token)) { %} <& /Elements/CollectionList, Query => $Query, DisplayFormat => $DisplayFormat, Format => $Format, Verbatim => 1, AllowSorting => 1, OrderBy => $OrderBy, Order => $Order, Rows => $Rows, Page => $Page, BaseURL => RT->Config->Get('WebPath')."/Search/Bulk.html?", Class => 'RT::Tickets' &> % $m->callback(CallbackName => 'AfterTicketList', ARGSRef => \%ARGS);
<& /Elements/Submit, Label => loc('Update'), CheckboxNameRegex => '/^UpdateTicket(All)?$/', CheckAll => 1, ClearAll => 1 &>
<&|/Widgets/TitleBox, title => $title &>
% my $single_roles = RT::CustomRoles->new($session{CurrentUser}); % $single_roles->LimitToSingleValue; % $single_roles->LimitToObjectId($_) for keys %$seen_queues; % while (my $role = $single_roles->Next) { % } % my $multi_roles = RT::CustomRoles->new($session{CurrentUser}); % $multi_roles->LimitToMultipleValue; % $multi_roles->LimitToObjectId($_) for keys %$seen_queues; % while (my $role = $multi_roles->Next) { % }
<&|/l&>Make Owner: <& /Elements/SelectOwner, Name => "Owner", Default => $ARGS{Owner} || '' &>
<&|/l&>Add Requestor: <& /Elements/EmailInput, Name => "AddRequestor", Size=> 20, Default => $ARGS{AddRequestor} &>
<&|/l&>Remove Requestor: <& /Elements/EmailInput, Name => "DeleteRequestor", Size=> 20, Default => $ARGS{DeleteRequestor} &>
<&|/l&>Add Cc: <& /Elements/EmailInput, Name => "AddCc", Size=> 20, Default => $ARGS{AddCc} &>
<&|/l&>Remove Cc: <& /Elements/EmailInput, Name => "DeleteCc", Size=> 20, Default => $ARGS{DeleteCc} &>
<&|/l&>Add AdminCc: <& /Elements/EmailInput, Name => "AddAdminCc", Size=> 20, Default => $ARGS{AddAdminCc} &>
<&|/l&>Remove AdminCc: <& /Elements/EmailInput, Name => "DeleteAdminCc", Size=> 20, Default => $ARGS{DeleteAdminCc} &>
<&|/l, $role->Name &>Make [_1]: <& /Elements/SingleUserRoleInput, role => $role, ShowPlaceholder => 0, ShowEntryHint => 0, Size => 20, Default => $ARGS{"RT::CustomRole-" . $role->Id} &>
<&|/l, $role->Name &>Add [_1]: <& /Elements/EmailInput, Name => "AddRT::CustomRole-" . $role->Id, Size=> 20, Default => $ARGS{"AddRT::CustomRole-" . $role->Id} &>
<&|/l, $role->Name &>Remove [_1]: <& /Elements/EmailInput, Name => "DeleteRT::CustomRole-" . $role->Id, Size=> 20, Default => $ARGS{"DeleteRT::CustomRole-" . $role->Id} &>
% if ($hasSLA) { % }
<&|/l&>Make subject:
<&|/l&>Make priority: <& /Elements/SelectPriority, Name => "Priority", Default => $ARGS{Priority} &>
<&|/l&>Make queue: <& /Elements/SelectQueue, Name => "Queue", Default => $ARGS{Queue} &>
<&|/l&>Make Status: <& /Ticket/Elements/SelectStatus, Name => "Status", Default => $ARGS{Status}, Queues => $seen_queues &>
<&|/l&>Make SLA: <& /Elements/SelectSLA, Name => "SLA", Default => $ARGS{SLA} &>
<&|/l&>Make date Starts: <& /Elements/SelectDate, Name => "Starts_Date", Default => $ARGS{Starts_Date} || '' &>
<&|/l&>Make date Started: <& /Elements/SelectDate, Name => "Started_Date", Default => $ARGS{Started_Date} || '' &>
<&|/l&>Make date Told: <& /Elements/SelectDate, Name => "Told_Date", Default => $ARGS{Told_Date} || '' &>
<&|/l&>Make date Due: <& /Elements/SelectDate, Name => "Due_Date", Default => $ARGS{Due_Date} || '' &>
<&| /Widgets/TitleBox, title => loc('Add comments or replies to selected tickets') &> % $m->callback( CallbackName => 'BeforeTransactionCustomFields', CustomFields => $TxnCFs ); % while (my $CF = $TxnCFs->Next()) { % } # end if while <& /Ticket/Elements/AddAttachments, %ARGS &>
<&|/l&>Update Type:
<&|/l&>Subject: " /> % $m->callback( %ARGS, CallbackName => 'AfterUpdateSubject' );
<% $CF->Name %>: <& /Elements/EditCustomField, CustomField => $CF, Object => RT::Transaction->new( $session{'CurrentUser'} ), &><% $CF->EntryHint // '' %>
<&|/l&>Message: % $m->callback( %ARGS, CallbackName => 'BeforeMessageBox' ); %# Currently, bulk update always starts with Comment not Reply selected, so we check this unconditionally % my $IncludeSignature = RT->Config->Get('MessageBoxIncludeSignatureOnComment'); <& /Elements/MessageBox, Name => "UpdateContent", $ARGS{UpdateContent} ? ( Default => $ARGS{UpdateContent}, IncludeSignature => 0 ) : ( IncludeSignature => $IncludeSignature ), &>
<%perl> my $cfs = RT::CustomFields->new($session{'CurrentUser'}); $cfs->LimitToGlobal(); $cfs->LimitToQueue($_) for keys %$seen_queues; $cfs->SetContextObject( values %$seen_queues ) if keys %$seen_queues == 1; % if ( $cfs->Count ) { <&|/Widgets/TitleBox, title => loc('Edit Custom Fields') &> <& /Elements/BulkCustomFields, $ARGS{'AddMoreAttach'} ? %ARGS : (), CustomFields => $cfs &> % } <&|/Widgets/TitleBox, title => loc('Edit Links'), color => "#336633"&> <&|/l&>Enter tickets or URIs to link tickets to. Separate multiple entries with spaces.
<& /Elements/BulkLinks, Collection => $Tickets, $ARGS{'AddMoreAttach'} ? %ARGS : () &> <&| /Widgets/TitleBox, title => loc('Merge'), color => '#336633' &> <& /Ticket/Elements/EditMerge, Tickets => $Tickets, %ARGS &> <& /Elements/Submit, Label => loc('Update') &>
%# Keyboard shortcuts info
<%INIT> unless ( defined $Rows ) { $Rows = $RowsPerPage; $ARGS{Rows} = $RowsPerPage; } my $title = loc("Update multiple tickets"); # Iterate through the ARGS hash and remove anything with a null value. map ( $ARGS{$_} =~ /^$/ && ( delete $ARGS{$_} ), keys %ARGS ); my (@results); ProcessAttachments(ARGSRef => \%ARGS); $Page ||= 1; $Format ||= RT->Config->Get('DefaultSearchResultFormat'); my $DisplayFormat = "'__CheckBox.{UpdateTicket}__',". $Format; $DisplayFormat =~ s/\s*,\s*('?__NEWLINE__'?)/,$1,''/gi; $DECODED_ARGS->{'UpdateTicketAll'} = 1 unless @UpdateTicket; my $Tickets = RT::Tickets->new( $session{'CurrentUser'} ); $Tickets->FromSQL($Query); if ( $OrderBy =~ /\|/ ) { # Multiple Sorts my @OrderBy = split /\|/, $OrderBy; my @Order = split /\|/, $Order; $Tickets->OrderByCols( map { { FIELD => $OrderBy[$_], ORDER => $Order[$_] } } ( 0 .. $#OrderBy ) ); } else { $Tickets->OrderBy( FIELD => $OrderBy, ORDER => $Order ); } $Tickets->RowsPerPage($Rows) if ($Rows); $Tickets->GotoPage( $Page - 1 ); # SB uses page 0 as the first page Abort( loc("No search to operate on.") ) unless ($Tickets); # build up a list of all custom fields for tickets that we're displaying, so # we can display sane edit widgets. my $fields = {}; my $seen_queues = {}; while ( my $ticket = $Tickets->Next ) { next if $seen_queues->{ $ticket->Queue }; $seen_queues->{ $ticket->Queue } ||= $ticket->QueueObj; my $custom_fields = $ticket->CustomFields; while ( my $field = $custom_fields->Next ) { $fields->{ $field->id } = $field; } } # determine if any of the queues seen has a SLA active my $queue = RT::Queue->new($session{CurrentUser}); my $hasSLA = 0; for (keys %$seen_queues) { $queue->Load($_); $hasSLA ||= ! $queue->SLADisabled(); } #Iterate through each ticket we've been handed my @linkresults; $Tickets->RedoSearch(); unless ( $ARGS{'AddMoreAttach'} ) { $RT::Handle->BeginTransaction; while ( my $Ticket = $Tickets->Next ) { my $tid = $Ticket->id; next unless grep $tid == $_, @UpdateTicket; $Ticket->LockForUpdate; #Update the links $ARGS{'id'} = $Ticket->id; my @updateresults = ProcessUpdateMessage( TicketObj => $Ticket, ARGSRef => \%ARGS, KeepAttachments => 1, ); #Update the basics. my @basicresults = ProcessTicketBasics( TicketObj => $Ticket, ARGSRef => \%ARGS ); my @dateresults = ProcessTicketDates( TicketObj => $Ticket, ARGSRef => \%ARGS ); #Update the watchers my @watchresults = ProcessTicketWatchers( TicketObj => $Ticket, ARGSRef => \%ARGS ); @linkresults = ProcessTicketLinks( TicketObj => $Ticket, TicketId => 'Ticket', ARGSRef => \%ARGS ); my @cfresults = ProcessRecordBulkCustomFields( RecordObj => $Ticket, ARGSRef => \%ARGS ); my @tempresults = ( grep { defined } @watchresults, @basicresults, @dateresults, @updateresults, @linkresults, @cfresults ); @tempresults = map { loc( "Ticket [_1]: [_2]", $Ticket->Id, $_ ) } @tempresults; @results = ( @results, @tempresults ); } $RT::Handle->Commit; delete $session{'Attachments'}{ $ARGS{'Token'} }; $Tickets->RedoSearch(); } my $TxnCFs = RT::CustomFields->new( $session{CurrentUser} ); $TxnCFs->LimitToLookupType( RT::Transaction->CustomFieldLookupType ); $TxnCFs->LimitToGlobalOrObjectId( keys %$seen_queues ); $TxnCFs->SetContextObject( values %$seen_queues ) if keys %$seen_queues == 1; <%args> $Format => undef $Page => 1 $Rows => undef $RowsPerPage => undef $Order => 'ASC' $OrderBy => 'id' $Query => undef @UpdateTicket => () rt-4.4.2/share/html/Search/Article.html0000664000175000017500000000433013131430353017556 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> RT::Interface::Web::Redirect(RT->Config->Get('WebURL'). 'Articles/Article/Search.html?' . $m->comp( '/Elements/QueryString', %ARGS, Load => 'Load', CurrentSearch => $ARGS{LoadSavedSearch} ) ); rt-4.4.2/share/html/Search/Chart0000664000175000017500000003734013131430353016300 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Cache => undef $Query => "id > 0" @GroupBy => () $ChartStyle => 'bar+table+sql' @ChartFunction => 'COUNT' $Width => undef $Height => undef <%init> use GD; use GD::Text; my %font_config = RT->Config->Get('ChartFont'); my $font = $font_config{ $session{CurrentUser}->UserObj->Lang || '' } || $font_config{'others'}; s/\D//g for grep defined, $Width, $Height; $Width ||= 600; $Height ||= ($ChartStyle =~ /\bpie\b/ ? $Width : 400); $Height = $Width if $ChartStyle =~ /\bpie\b/; my $plot_error = sub { my $text = shift; my ($plot, $error); my $create_plot = sub { my ($width, $height) = @_; my $plot = GD::Image->new($width => $height); $plot->colorAllocate(255, 255, 255); # background my $black = $plot->colorAllocate(0, 0, 0); require GD::Text::Wrap; my $error = GD::Text::Wrap->new($plot, color => $black, text => $text, align => "left", width => $width - 20, preserve_nl => 1, ); $error->set_font( $font, 16 ); return ($plot, $error); }; ($plot, $error) = $create_plot->($Width, $Height); my $text_height = ($error->get_bounds(0, 0))[3]; # GD requires us to replot it all with the new height ($plot, $error) = $create_plot->($Width, $text_height + 20); $error->draw(10, 10); $m->comp( 'SELF:Plot', plot => $plot, %ARGS ); }; use RT::Report::Tickets; my $report = RT::Report::Tickets->new( $session{'CurrentUser'} ); my %columns; if ( $Cache and my $data = delete $session{'charts_cache'}{ $Cache } ) { %columns = %{ $data->{'columns'} }; $report->Deserialize( $data->{'report'} ); $session{'i'}++; } else { %columns = $report->SetupGroupings( Query => $Query, GroupBy => \@GroupBy, Function => \@ChartFunction, ); $report->SortEntries; } my @data = ([],[]); my $max_value = 0; my $min_value; my $max_key_length = 0; while ( my $entry = $report->Next ) { push @{ $data[0] }, [ map $entry->LabelValue( $_ ), @{ $columns{'Groups'} } ]; my @values; foreach my $column ( @{ $columns{'Functions'} } ) { my $v = $entry->RawValue( $column ); unless ( ref $v ) { push @values, $v; next; } my @subs = $report->FindImplementationCode( $report->ColumnInfo( $column )->{'META'}{'SubValues'} )->( $report ); push @values, map $v->{$_}, @subs; } my $i = 0; push @{ $data[++$i] }, $_ foreach @values; foreach my $v ( @values ) { $max_value = $v if $max_value < $v; $min_value = $v if !defined $min_value || $min_value > $v; } } $ChartStyle =~ s/\bpie\b/bar/ if @data > 2; my $chart_class; if ($ChartStyle =~ /\bpie\b/) { require GD::Graph::pie; $chart_class = "GD::Graph::pie"; } else { require GD::Graph::bars; $chart_class = "GD::Graph::bars"; } # Pie charts don't like having no input, so we show a special image # that indicates an error message. Because this is used in an # context, it can't be a simple error message. Without this check, # the chart will just be a non-loading image. unless ( $report->Count ) { return $plot_error->(loc("No tickets found.")); } my $chart = $chart_class->new( $Width => $Height ); my %chart_options; if ($chart_class eq "GD::Graph::bars") { my $count = @{ $data[0] }; $chart_options{'bar_spacing'} = $count > 30 ? 1 : $count > 20 ? 2 : $count > 10 ? 3 : 5 ; if ( my $code = $report->LabelValueCode( $columns{'Functions'}[0] ) ) { my %info = %{ $report->ColumnInfo( $columns{'Functions'}[0] ) }; $chart_options{'values_format'} = $chart_options{'y_number_format'} = sub { return $code->($report, %info, VALUE => shift ); }; } $report->GotoFirstItem; # normalize min/max values to graph boundaries { my $integer = 1; $integer = 0 for grep $_ ne int $_, $min_value, $max_value; $max_value *= $max_value > 0 ? 1.1 : 0.9 if $max_value; $min_value *= $min_value > 0 ? 0.9 : 1.1 if $min_value; if ($integer) { $max_value = int($max_value + ($max_value > 0? 1 : 0) ); $min_value = int($min_value + ($min_value < 0? -1 : 0) ); my $span = abs($max_value - $min_value); $max_value += 5 - ($span % 5); } $chart_options{'y_label_skip'} = 2; $chart_options{'y_tick_number'} = 10; } my $text_size = sub { my ($size, $text) = (@_); my $font_handle = GD::Text::Align->new( $chart->get('graph'), valign => 'top', 'halign' => 'center', ); $font_handle->set_font($font, $size); $font_handle->set_text($text); return $font_handle; }; my $fitter = sub { my %args = @_; foreach my $font_size ( @{$args{'sizes'}} ) { my $line_height = $text_size->($font_size, 'Q')->get('height'); my $keyset_height = $line_height; if ( ref $args{data}->[0] ) { $keyset_height = $text_size->($font_size, join "\n", ('Q')x scalar @{ $args{data}->[0] }) ->get('height'); } my $status = 1; foreach my $e ( @{ $args{data} } ) { $status = $args{'cb'}->( element => $e, size => $font_size, line_height => $line_height, keyset_height => $keyset_height, ); last unless $status; } next unless $status; return $font_size; } return 0; }; # try to fit in labels on X axis values, aka key { # we have several labels layouts: # 1) horizontal, one line per label # 2) horizontal, multi-line - doesn't work, GD::Chart bug # 3) vertical, one line # 4) vertical, multi-line my %can = ( 'horizontal, one line' => 1, 'vertical, one line' => 1, 'vertical, multi line' => @{$data[0][0]} > 1, ); my $x_space_for_label = $Width*0.8/($count+1.5); my $y_space_for_label = $Height*0.4; my $found_solution = $fitter->( sizes => [12,11,10], data => $data[0], cb => sub { my %args = @_; # if horizontal space doesn't allow us to fit one vertical line, # then we need smaller font return 0 if $args{'line_height'} > $x_space_for_label; my $width = $text_size->( $args{'size'}, join ' - ', @{ $args{'element'} } ) ->get('width'); if ( $width > $x_space_for_label ) { $can{'horizontal, one line'} = 0; } if ( $width > $y_space_for_label ) { $can{'vertical, one line'} = 0; } if ( $args{'keyset_height'} >= $x_space_for_label ) { $can{'vertical, multi line'} = 0; } if ( $can{'vertical, multi line'} ) { my $width = $text_size->( $args{'size'}, join "\n", @{ $args{'element'} } ) ->get('width'); if ( $width > $y_space_for_label ) { $can{'vertical, multi line'} = 0; } } return 0 unless grep $_, values %can; return 1; }, ); if ( $found_solution ) { $chart_options{'x_axis_font'} = [$font, $found_solution]; if ( $can{'horizontal, one line'} ) { $chart_options{'x_labels_vertical'} = 0; $_ = join ' - ', @$_ foreach @{$data[0]}; } elsif ( $can{'vertical, multi line'} ) { $chart_options{'x_labels_vertical'} = 1; $_ = join "\n", @$_ foreach @{$data[0]}; } else { $chart_options{'x_labels_vertical'} = 1; $_ = join " - ", @$_ foreach @{$data[0]}; } } else { my $font_handle = $text_size->(10, 'Q'); my $line_height = $font_handle->get('height'); if ( $line_height > $x_space_for_label ) { $Width *= $line_height/$x_space_for_label; $Width = int( $Width+1 ); } $_ = join " - ", @$_ foreach @{$data[0]}; my $max_text_width = 0; foreach (@{$data[0]}) { $font_handle->set_text($_); my $width = $font_handle->get('width'); $max_text_width = $width if $width > $max_text_width; } if ( $max_text_width > $Height*0.4 ) { $Height = int($max_text_width / 0.4 + 1); } $chart_options{'x_labels_vertical'} = 1; $chart_options{'x_axis_font'} = [$font, 10]; } } # use the same size for y axis labels { $chart_options{'y_axis_font'} = $chart_options{'x_axis_font'}; } # try to fit in values above bars { # 0.8 is guess, labels for ticks on Y axis can be wider # 1.5 for paddings around bars that GD::Graph adds my $x_space_for_label = $Width*0.8/($count*(@data - 1)+1.5); my %can = ( 'horizontal, one line' => 1, 'vertical, one line' => 1, ); my %seen; my $found_solution = $fitter->( sizes => [ grep $_ <= $chart_options{'x_axis_font'}[1], 12, 11, 10, 9 ], data => [ map {@$_} @data[1..(@data-1)] ], cb => sub { my %args = @_; # if horizontal space doesn't allow us to fit one vertical line, # then we need smaller font return 0 if $args{'line_height'} > $x_space_for_label; my $value = $args{'element'}; $value = $chart_options{'values_format'}->($value) if $chart_options{'values_format'}; return 1 if $seen{$value}++; my $width = $text_size->( $args{'size'}, $value )->get('width'); if ( $width > $x_space_for_label ) { $can{'horizontal, one line'} = 0; } my $y_space_for_label; if ($max_value == $min_value) { $y_space_for_label = 0; } else { $y_space_for_label = $Height * 0.6 *( 1 - ($args{'element'}-$min_value)/($max_value-$min_value) ); } if ( $width > $y_space_for_label ) { $can{'vertical, one line'} = 0; } return 0 unless grep $_, values %can; return 1; }, ); $chart_options{'show_values'} = 1; $chart_options{'hide_overlapping_values'} = 1; if ( $found_solution ) { $chart_options{'values_font'} = [ $font, $found_solution ], $chart_options{'values_space'} = 2; $chart_options{'values_vertical'} = $can{'horizontal, one line'} ? 0 : 1; } else { $chart_options{'values_font'} = [ $font, 9 ], $chart_options{'values_space'} = 1; $chart_options{'values_vertical'} = 1; } } %chart_options = ( %chart_options, x_label => join( ' - ', map $report->Label( $_ ), @{ $columns{'Groups'} } ), x_label_position => 0.6, y_label => $report->Label( $columns{'Functions'}[0] ), y_label_position => 0.6, # use a top margin enough to display values over the top line if needed t_margin => 18, # the following line to make sure there's enough space for values to show y_max_value => $max_value, y_min_value => $min_value, # if there're too many bars or at least one key is too long, use vertical bargroup_spacing => $chart_options{'bar_spacing'}*5, ); } else { my $i = 0; while ( my $entry = $report->Next ) { push @{ $data[0][$i++] }, $entry->LabelValue( $columns{'Functions'}[0] ); } $_ = join ' - ', @$_ foreach @{$data[0]}; } if ($chart->get('width') != $Width || $chart->get('height') != $Height ) { $chart = $chart_class->new( $Width => $Height ); } %chart_options = ( '3d' => 0, title_font => [ $font, 16 ], legend_font => [ $font, 16 ], x_label_font => [ $font, 14 ], y_label_font => [ $font, 14 ], label_font => [ $font, 14 ], y_axis_font => [ $font, 12 ], values_font => [ $font, 12 ], value_font => [ $font, 12 ], %chart_options, ); foreach my $opt ( grep /_font$/, keys %chart_options ) { my $v = delete $chart_options{$opt}; next unless my $can = $chart->can("set_$opt"); $can->($chart, @$v); } $chart->set(%chart_options) if keys %chart_options; $chart->{dclrs} = [ RT->Config->Get("ChartColors") ]; { no warnings 'redefine'; *GD::Graph::pick_data_clr = sub { my $self = shift; my $color_hex = $self->{dclrs}[ $_[0] % @{ $self->{dclrs} } - 1 ]; return map { hex } ( $color_hex =~ /(..)(..)(..)/ ); }; } if (my $plot = eval { $chart->plot( \@data ) }) { $m->comp( 'SELF:Plot', plot => $plot, %ARGS ); } else { my $error = join "\n", grep defined && length, $chart->error, $@; $plot_error->(loc("Error plotting chart: [_1]", $error)); } <%METHOD Plot> <%ARGS> $plot => undef <%INIT> my @types = ('png', 'gif'); for my $type (@types) { $plot->can($type) or next; $r->content_type("image/$type"); $m->out( $plot->$type ); $m->abort(); } die "Your GD library appears to support none of the following image types: " . join(', ', @types); rt-4.4.2/share/html/m/0000775000175000017500000000000013131430353014334 5ustar vagrantvagrantrt-4.4.2/share/html/m/_elements/0000775000175000017500000000000013131430353016307 5ustar vagrantvagrantrt-4.4.2/share/html/m/_elements/footer0000664000175000017500000000444713131430353017541 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Logo, ShowName => 1, OnlyCustom => 1 &>
rt-4.4.2/share/html/m/_elements/wrapper0000664000175000017500000000445013131430353017715 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $title => '' $show_home_button => 1 <%init> if ($session{'NotMobile'}) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL')); $m->abort(); } $m->comp('header', title => $title, show_home_button => $show_home_button); $m->out($m->content); $m->comp('footer'); $m->abort(); rt-4.4.2/share/html/m/_elements/header0000664000175000017500000000552513131430353017471 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $title => loc('RT for [_1]', RT->Config->Get('rtname')) $show_home_button => 1 <%init> $r->headers_out->{'Pragma'} = 'no-cache'; $r->headers_out->{'Cache-control'} = 'no-cache'; <%$title%> % my ($jquery) = grep { /^jquery-\d+\./ } RT::Interface::Web->JSFiles; <& /Elements/Framekiller &> % if ($show_home_button) { % # The align is for older browsers, like the blackberry % } % if ($title) {

<%$title%>

% } rt-4.4.2/share/html/m/_elements/ticket_list0000664000175000017500000001062113131430353020550 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $order => undef $order_by => undef $query => '' $page => 1 <%init> my $rows = 10; my $collection = RT::Tickets->new($session{'CurrentUser'}); $collection->FromSQL($query); $collection->RowsPerPage($rows); $collection->GotoPage($page-1); # XXX: ->{'order_by'} is hacky, but there is no way to check if # collection is ordered or not if ( $order_by) { my @order_by = split /\|/, $order_by; my @order = split /\|/,$order; $collection->OrderByCols( map { { FIELD => $order_by[$_], ORDER => $order[$_] } } ( 0 .. $#order_by ) ); } $collection->RedoSearch(); if ($page > 1 && ! @{$collection->ItemsArrayRef||[]}) { RT::Interface::Web::Redirect( RT->Config->Get('WebURL')."m/tickets/search?page=".($page-1)."&query=".$query."&order=$order&order_by=$order_by"); } <&| /m/_elements/wrapper, title => loc("Found [quant,_1,ticket,tickets]",$collection->CountAll) &> <&|/Widgets/TitleBox, class => 'search' &>
    % while (my $ticket = $collection->Next()) {
  • <%$ticket->id%>: <%$ticket->Subject%>
  • % }
% if ($page > 1) { Back % } Page <%$page%> % if ($collection->CountAll > $page * $rows) { Next % }
rt-4.4.2/share/html/m/_elements/full_site_link0000664000175000017500000000415513131430353021242 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/l&>Not using a mobile browser? rt-4.4.2/share/html/m/_elements/menu0000664000175000017500000001017113131430353017176 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, class => 'menu'&> <%init> my @menu = ( { html => '' }, { label => loc("New ticket"), url => '/m/ticket/select_create_queue', }, { label => loc("Bookmarked tickets"), url => '/m/tickets/search?name=Bookmarked%20Tickets', }, { label => loc("Tickets I own"), url => '/m/tickets/search?name=My%20Tickets', }, { label => loc("Unowned tickets"), url => '/m/tickets/search?name=Unowned%20Tickets', }, { label => loc("All tickets"), url => '/m/tickets/search?query=id!%3d0&order_by=id&order=DESC' }, ); if ( $session{'CurrentUser'}->HasRight( Right => 'LoadSavedSearch', Object => $RT::System)) { my @Objects = RT::SavedSearch->new( $session{CurrentUser} )->ObjectsForLoading; push @Objects, RT::System->new( $session{'CurrentUser'} ) if $session{'CurrentUser'}->HasRight( Object => $RT::System, Right => 'SuperUser' ); foreach my $object (@Objects) { my @searches = $object->Attributes->Named('SavedSearch'); foreach my $search (@searches) { next if $search->SubValue("SearchType") && $search->SubValue("SearchType") ne 'Ticket'; push @menu, { label => $search->Description, url => '/m/tickets/search?query=' . $search->SubValue("Query").'&order='.$search->SubValue("Order").'&order_by='.$search->SubValue("OrderBy") }; } } } push @menu, { label => loc("Logout"), url => '/m/logout', } ; $m->callback( CallbackName => 'MassageMenu', Menu => \@menu ); rt-4.4.2/share/html/m/_elements/login0000664000175000017500000000726513131430353017354 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( %ARGS, CallbackName => 'Header' ); <&| /m/_elements/wrapper, title => loc('RT for [_1]', RT->Config->Get('rtname')), show_home_button => 0 &> <& /m/_elements/full_site_link &> <%ARGS> $user => "" $pass => undef $goto => undef $actions => undef $next => "" rt-4.4.2/share/html/m/_elements/ticket_menu0000664000175000017500000000505213131430353020543 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $ticket
<%init> my @menu = ( { label => loc("Basics"), url => '/m/ticket/show?id='.$ticket->id }, { label => loc("History"), url => '/m/ticket/history?id='.$ticket->id }, #{ label => loc("Modify"), url => '/m/ticket/modify?id='.$ticket->id }, { label => loc("Reply"), url => '/m/ticket/reply?id='.$ticket->id } ); my $width = int(100/ ($#menu +1))-5; rt-4.4.2/share/html/m/dhandler0000664000175000017500000000422313131430353016041 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> # deal with users who don't have options indexes set right RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."m/index.html"); $m->abort(); rt-4.4.2/share/html/m/logout0000664000175000017500000000427513131430353015600 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> if (keys %session) { RT::Interface::Web::InstantiateNewSession(); $session{'CurrentUser'} = RT::CurrentUser->new; } RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."m/"); rt-4.4.2/share/html/m/ticket/0000775000175000017500000000000013131430353015617 5ustar vagrantvagrantrt-4.4.2/share/html/m/ticket/select_create_queue0000664000175000017500000000471413131430353021556 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $queues = RT::Queues->new($session{'CurrentUser'}); $queues->UnLimit(); <&| /m/_elements/wrapper, title => loc("Create a ticket") &>
<&|/Widgets/TitleBox, title => loc("Select a queue") &>
rt-4.4.2/share/html/m/ticket/create0000664000175000017500000003305713131430353017015 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $QuoteTransaction => undef $CloneTicket => undef <%init> $m->callback( CallbackName => "Init", ARGSRef => \%ARGS ); my $Queue = $ARGS{Queue}; my $escape = sub { $m->interp->apply_escapes(shift, 'h') }; my $showrows = sub { my @pairs = @_; while (@pairs) { my $key = shift @pairs; my $val = shift @pairs; $m->out("
$key
$val
"); } }; my $CloneTicketObj; if ($CloneTicket) { $CloneTicketObj = RT::Ticket->new( $session{CurrentUser} ); $CloneTicketObj->Load($CloneTicket) or Abort( loc("Ticket could not be loaded") ); my $clone = { Requestors => join( ',', $CloneTicketObj->RequestorAddresses ), Cc => join( ',', $CloneTicketObj->CcAddresses ), AdminCc => join( ',', $CloneTicketObj->AdminCcAddresses ), InitialPriority => $CloneTicketObj->Priority, }; $clone->{$_} = $CloneTicketObj->$_() for qw/Owner Subject FinalPriority TimeEstimated TimeWorked Status TimeLeft/; $clone->{$_} = $CloneTicketObj->$_->AsString for grep { $CloneTicketObj->$_->IsSet } map { $_ . "Obj" } qw/Starts Started Due Resolved/; my $get_link_value = sub { my ($link, $type) = @_; my $uri_method = $type . 'URI'; my $local_method = 'Local' . $type; my $uri = $link->$uri_method; return if $uri->IsLocal and $uri->Object and $uri->Object->isa('RT::Ticket') and $uri->Object->__Value('Type') eq 'reminder'; return $link->$local_method || $uri->URI; }; my (@refers, @refers_by); my $refers = $CloneTicketObj->RefersTo; while ( my $refer = $refers->Next ) { my $refer_value = $get_link_value->($refer, 'Target'); push @refers, $refer_value if defined $refer_value; } $clone->{'new-RefersTo'} = join ' ', @refers; my $refers_by = $CloneTicketObj->ReferredToBy; while ( my $refer_by = $refers_by->Next ) { my $refer_by_value = $get_link_value->($refer_by, 'Base'); push @refers_by, $refer_by_value if defined $refer_by_value; } $clone->{'RefersTo-new'} = join ' ', @refers_by; my $cfs = $CloneTicketObj->QueueObj->TicketCustomFields(); while ( my $cf = $cfs->Next ) { my $cf_id = $cf->id; my $cf_values = $CloneTicketObj->CustomFieldValues( $cf->id ); my @cf_values; while ( my $cf_value = $cf_values->Next ) { push @cf_values, $cf_value->Content; } $clone->{GetCustomFieldInputName( CustomField => $cf )} = join "\n", @cf_values; } for ( keys %$clone ) { $ARGS{$_} = $clone->{$_} if not defined $ARGS{$_}; } } my @results; my $title = loc("Create a ticket"); my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($Queue) || Abort(loc("Queue could not be loaded.")); $m->callback( QueueObj => $QueueObj, title => \$title, results => \@results, ARGSRef => \%ARGS ); $QueueObj->Disabled && Abort(loc("Cannot create tickets in a disabled queue.")); ProcessAttachments(ARGSRef => \%ARGS); my $checks_failure = 0; { my ($status, @msg) = $m->comp( '/Elements/ValidateCustomFields', CustomFields => $QueueObj->TicketCustomFields, ARGSRef => \%ARGS ); unless ( $status ) { $checks_failure = 1; push @results, @msg; } } my $gnupg_widget = $m->comp('/Elements/Crypt/SignEncryptWidget:new', Arguments => \%ARGS ); $m->comp( '/Elements/Crypt/SignEncryptWidget:Process', self => $gnupg_widget, QueueObj => $QueueObj, ); if ( !exists $ARGS{'AddMoreAttach'} && ($ARGS{'id'}||'') eq 'new' ) { my $status = $m->comp('/Elements/Crypt/SignEncryptWidget:Check', self => $gnupg_widget, Operation => 'Create', QueueObj => $QueueObj, ); $checks_failure = 1 unless $status; } # check email addresses for RT's { foreach my $field ( qw(Requestors Cc AdminCc) ) { my $value = $ARGS{ $field }; next unless defined $value && length $value; my @emails = Email::Address->parse( $value ); foreach my $email ( grep RT::EmailParser->IsRTAddress($_->address), @emails ) { push @results, loc("[_1] is an address RT receives mail at. Adding it as a '[_2]' would create a mail loop", $email->format, loc($field =~ /^(.*?)s?$/) ); $checks_failure = 1; $email = undef; } $ARGS{ $field } = join ', ', map $_->format, grep defined, @emails; } } my $skip_create = 0; $m->callback( CallbackName => 'BeforeCreate', ARGSRef => \%ARGS, skip_create => \$skip_create, checks_failure => $checks_failure, results => \@results ); if ((!exists $ARGS{'AddMoreAttach'}) and (defined($ARGS{'id'}) and $ARGS{'id'} eq 'new')) { # new ticket? if ( !$checks_failure && !$skip_create ) { $m->comp('show', %ARGS); $RT::Logger->crit("After display call; error is $@"); $m->abort(); } } <&| /m/_elements/wrapper, title => $title &> <& /Elements/ListActions, actions => \@results &>
% $m->callback( CallbackName => 'FormStart', QueueObj => $QueueObj, ARGSRef => \%ARGS ); % if ($gnupg_widget) { <& /Elements/Crypt/SignEncryptWidget:ShowIssues, self => $gnupg_widget &> % }
<&| /Widgets/TitleBox, title => $QueueObj->Name &> <%perl> $showrows->( loc("Subject") => ''); <& /Elements/MessageBox, exists $ARGS{Content} ? (Default => $ARGS{Content}, IncludeSignature => 0 ) : ( QuoteTransaction => $QuoteTransaction ), Height => 5, SuppressAttachmentWarning => 1 &> <&/Elements/Submit, Label => loc("Create") &>
<&| /Widgets/TitleBox &> <%perl> $showrows->( # loc('Queue') => $m->scomp( '/Ticket/Elements/ShowQueue', QueueObj => $QueueObj ) , loc('Status') => $m->scomp( "/Ticket/Elements/SelectStatus", Name => "Status", QueueObj => $QueueObj, ), loc("Owner") => $m->scomp( "/Elements/SelectOwner", Name => "Owner", QueueObj => $QueueObj, Default => $ARGS{Owner} || RT->Nobody->Id, DefaultValue => 0 ), loc("Requestors") => $m->scomp( "/Elements/EmailInput", Name => 'Requestors', Size => '40', Default => $ARGS{Requestors} // $session{CurrentUser}->EmailAddress ), loc("Cc") => $m->scomp( "/Elements/EmailInput", Name => 'Cc', Size => '40', Default => $ARGS{Cc} ) . '' . loc( "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" ) . '', loc("Admin Cc") => $m->scomp( "/Elements/EmailInput", Name => 'AdminCc', Size => '40', Default => $ARGS{AdminCc} ) . '' . loc( "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" ) . '', ); <& /Elements/EditCustomFields, %ARGS, Object => RT::Ticket->new($session{CurrentUser}), CustomFields => $QueueObj->TicketCustomFields, AsTable => 0, &> <& /Ticket/Elements/EditTransactionCustomFields, %ARGS, QueueObj => $QueueObj &> % if ( my $attachments = $session{'Attachments'}{ $ARGS{'Token'} }) { <%loc("Attached file") %> <%loc("Check box to delete")%>
% foreach my $attach_name ( keys %$attachments ) {
% } # end of foreach % } # end of if <%perl> $showrows->( loc("Attach file") => ' ' ); % if ( $gnupg_widget ) { <& /Elements/Crypt/SignEncryptWidget, self => $gnupg_widget, QueueObj => $QueueObj &> % }
<&| /Widgets/TitleBox, title => loc('The Basics'), title_class=> 'inverse', color => "#993333" &> <%perl> $showrows->( loc("Priority") => $m->scomp( "/Elements/SelectPriority", Name => "InitialPriority", Default => $ARGS{InitialPriority} ? $ARGS{InitialPriority} : $QueueObj->DefaultValue('InitialPriority'), ), loc("Final Priority") => $m->scomp( "/Elements/SelectPriority", Name => "FinalPriority", Default => $ARGS{FinalPriority} ? $ARGS{FinalPriority} : $QueueObj->DefaultValue('FinalPriority'), ), loc("Time Estimated") => ''.$m->scomp( "/Elements/EditTimeValue", Name => 'TimeEstimated', Default => $ARGS{TimeEstimated} || '', ).'', loc("Time Worked") => ''.$m->scomp( "/Elements/EditTimeValue", Name => 'TimeWorked', Default => $ARGS{TimeWorked} || '', ). '', loc("Time Left") => ''.$m->scomp( "/Elements/EditTimeValue", Name => 'TimeLeft', Default => $ARGS{TimeLeft} || '', ).'', ); <&|/Widgets/TitleBox, title => loc("Dates"), title_class=> 'inverse', color => "#663366" &> <%perl> $showrows->( loc("Starts") => $m->scomp( "/Elements/SelectDate", Name => "Starts", Default => ( $ARGS{Starts} || $QueueObj->DefaultValue('Starts') || '' )), loc("Due") => $m->scomp( "/Elements/SelectDate", Name => "Due", Default => ($ARGS{Due} || $QueueObj->DefaultValue('Due') || '' )) ); <&|/Widgets/TitleBox, title => loc('Links'), title_class=> 'inverse' &> <%loc("(Enter ticket ids or URLs, separated with spaces)")%> <%perl> $showrows->( loc("Depends on") => '', loc("Depended on by") => '', loc("Parents") => '', loc("Children") => '', loc("Refers to") => '', loc("Referred to by") => '' ); <& /Elements/Submit, Label => loc("Create") &> rt-4.4.2/share/html/m/ticket/history0000664000175000017500000000531013131430353017242 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $id => undef <%init> my $t = RT::Ticket->new($session{CurrentUser}); $t->Load($id); my $history = $t->Transactions()->ItemsArrayRef; <&| /m/_elements/wrapper, title => loc("#[_1]: [_2]", $t->Id, $t->Subject || '') &>
<& /m/_elements/ticket_menu, ticket => $t &> <&|/Widgets/TitleBox &>
    % for my $entry (reverse @$history) {
  • <% $entry->CreatedObj->AgeAsString() %> - <& /Elements/ShowUser, User => $entry->CreatorObj, Link => 0 &> - <%$entry->BriefDescription%> % if ($entry->Type !~ /EmailRecord/) { % if ($entry->ContentObj) {
    <%$entry->Content%>
    %} % }
  • % }
rt-4.4.2/share/html/m/ticket/show0000664000175000017500000003722613131430353016534 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $id => undef <%init> my $Ticket; my @Actions; unless ($id) { Abort('No ticket specified'); } if ($ARGS{'id'} eq 'new') { # {{{ Create a new ticket my $Queue = RT::Queue->new( $session{'CurrentUser'} ); $Queue->Load($ARGS{'Queue'}); unless ( $Queue->id ) { Abort('Queue not found'); } unless ( $Queue->CurrentUserHasRight('CreateTicket') ) { Abort('You have no permission to create tickets in that queue.'); } ($Ticket, @Actions) = CreateTicket( %ARGS ); unless ( $Ticket->CurrentUserHasRight('ShowTicket') ) { Abort("No permission to view newly created ticket #".$Ticket->id."."); } } else { $Ticket ||= LoadTicket($ARGS{'id'}); $Ticket->Atomic(sub{ $m->callback( CallbackName => 'BeforeProcessArguments', TicketObj => $Ticket, ActionsRef => \@Actions, ARGSRef => \%ARGS ); if ( defined $ARGS{'Action'} ) { if ($ARGS{'Action'} =~ /^(Steal|Delete|Take|SetTold)$/) { my $action = $1; my ($res, $msg) = $Ticket->$action(); push(@Actions, $msg); } } $m->callback(CallbackName => 'ProcessArguments', Ticket => $Ticket, ARGSRef => \%ARGS, Actions => \@Actions); push @Actions, ProcessUpdateMessage( ARGSRef => \%ARGS, Actions => \@Actions, TicketObj => $Ticket, ); #Process status updates push @Actions, ProcessTicketWatchers(ARGSRef => \%ARGS, TicketObj => $Ticket ); push @Actions, ProcessTicketBasics( ARGSRef => \%ARGS, TicketObj => $Ticket ); push @Actions, ProcessTicketLinks( ARGSRef => \%ARGS, TicketObj => $Ticket ); push @Actions, ProcessTicketDates( ARGSRef => \%ARGS, TicketObj => $Ticket ); push @Actions, ProcessObjectCustomFieldUpdates(ARGSRef => \%ARGS, TicketObj => $Ticket ); push @Actions, ProcessTicketReminders( ARGSRef => \%ARGS, TicketObj => $Ticket ); }); unless ($Ticket->CurrentUserHasRight('ShowTicket')) { if (@Actions) { Abort("A change was applied successfully, but you no longer have permissions to view the ticket", Actions => \@Actions); } else { Abort("No permission to view ticket"); } } if ( $ARGS{'MarkAsSeen'} ) { $Ticket->SetAttribute( Name => 'User-'. $Ticket->CurrentUser->id .'-SeenUpTo', Content => $Ticket->LastUpdated, ); push @Actions, loc('Marked all messages as seen'); } } $m->callback( CallbackName => 'BeforeDisplay', TicketObj => \$Ticket, Actions => \@Actions, ARGSRef => \%ARGS, ); # This code does automatic redirection if any updates happen. if (@Actions) { # We've done something, so we need to clear the decks to avoid # resubmission on refresh. # But we need to store Actions somewhere too, so we don't lose them. my $key = Digest::MD5::md5_hex( rand(1024) ); push @{ $session{"Actions"}->{$key} ||= [] }, @Actions; $session{'i'}++; my $url = RT->Config->Get('WebURL') . "m/ticket/show?id=" . $Ticket->id . "&results=" . $key; $url .= '#' . $ARGS{Anchor} if $ARGS{Anchor}; RT::Interface::Web::Redirect($url); } # If we haven't been passed in an Attachments object (through the precaching mechanism) # then we need to find one my $Attachments = $Ticket->Attachments; my %documents; while ( my $attach = $Attachments->Next() ) { next unless ($attach->Filename()); unshift( @{ $documents{ $attach->Filename } }, $attach ); } my $CustomFields = $Ticket->CustomFields; $m->callback( CallbackName => 'MassageCustomFields', Object => $Ticket, CustomFields => $CustomFields, ); my $print_value = sub { my ($cf, $value) = @_; my $linked = $value->LinkValueTo; if ( defined $linked && length $linked ) { my $linked = $m->interp->apply_escapes( $linked, 'h' ); $m->out(''); } my $comp = "ShowCustomField". $cf->Type; $m->callback( CallbackName => 'ShowComponentName', Name => \$comp, CustomField => $cf, Object => $Ticket, ); if ( $m->comp_exists( $comp ) ) { $m->comp( $comp, Object => $value ); } else { $m->out( $m->interp->apply_escapes( $value->Content, 'h' ) ); } $m->out('') if defined $linked && length $linked; # This section automatically populates a div with the "IncludeContentForValue" for this custom # field if it's been defined if ( $cf->IncludeContentForValue ) { my $vid = $value->id; $m->out( '\n} ); $m->out( qq{\n} ); } }; <&| /m/_elements/wrapper, title => loc("#[_1]: [_2]", $Ticket->Id, $Ticket->Subject || '') &>
<& /m/_elements/ticket_menu, ticket => $Ticket &> <&| /Widgets/TitleBox, title => loc('The Basics'), class => 'ticket-info-basics', &>
<&|/l&>Id:
<%$Ticket->Id %>
<&|/l&>Status:
<% loc($Ticket->Status) %>
% if ($Ticket->TimeEstimated) {
<&|/l&>Estimated:
<& /Ticket/Elements/ShowTime, minutes => $Ticket->TimeEstimated &>
% } % if ($Ticket->TimeWorked) {
<&|/l&>Worked:
<& /Ticket/Elements/ShowTime, minutes => $Ticket->TimeWorked &>
% } % if ($Ticket->TimeLeft) {
<&|/l&>Left:
<& /Ticket/Elements/ShowTime, minutes => $Ticket->TimeLeft &>
% }
<&|/l&>Priority:
<& /Ticket/Elements/ShowPriority, Ticket => $Ticket &>
<&|/l&>Queue:
<& /Ticket/Elements/ShowQueue, QueueObj => $Ticket->QueueObj &>
<&|/l&>Bookmark:
<& /Ticket/Elements/Bookmark, id => $Ticket->id &>
% if ($CustomFields->Count) { <&| /Widgets/TitleBox, title => loc('Custom Fields'), class => 'ticket-info-cfs', &> % while ( my $CustomField = $CustomFields->Next ) { % my $Values = $Ticket->CustomFieldValues( $CustomField->Id ); % my $count = $Values->Count;
<% $CustomField->Name %>:
% unless ( $count ) { <&|/l&>(no value) % } elsif ( $count == 1 ) { % $print_value->( $CustomField, $Values->First ); % } else {
    % while ( my $Value = $Values->Next ) {
  • % $print_value->( $CustomField, $Value );
  • % }
% }
% } % } <&| /Widgets/TitleBox, title => loc('People'), class => 'ticket-info-people' &>
<&|/l&>Owner:
<& /Elements/ShowUser, User => $Ticket->OwnerObj, Ticket => $Ticket, Link => 0 &>
<&|/l&>Requestors:
<& /Ticket/Elements/ShowGroupMembers, Group => $Ticket->Requestors, Ticket => $Ticket, Link => 0 &>
<&|/l&>Cc:
<& /Ticket/Elements/ShowGroupMembers, Group => $Ticket->Cc, Ticket => $Ticket, Link => 0 &>
<&|/l&>AdminCc:
<& /Ticket/Elements/ShowGroupMembers, Group => $Ticket->AdminCc, Ticket => $Ticket, Link => 0 &>
% if (keys %documents) { <&| /Widgets/TitleBox, title => loc('Attachments'), title_class=> 'inverse', class => 'ticket-info-attachments', color => "#336699" &> % foreach my $key (keys %documents) { <%$key%>
% } % } % # too painful to deal with reminders % if ( 0 && RT->Config->Get('EnableReminders') ) { <&|/Widgets/TitleBox, title => loc("Reminders"), class => 'ticket-info-reminders', &>
<& /Ticket/Elements/Reminders, Ticket => $Ticket, ShowCompleted => 0 &>
% } <&| /Widgets/TitleBox, title => loc("Dates"), class => 'ticket-info-dates', &>
<&|/l&>Created:
<% $Ticket->CreatedObj->AsString %>
<&|/l&>Starts:
<% $Ticket->StartsObj->AsString %>
<&|/l&>Started:
<% $Ticket->StartedObj->AsString %>
<&|/l&>Last Contact:
<% $Ticket->ToldObj->AsString %>
<&|/l&>Due:
% my $due = $Ticket->DueObj; % if ( $due && $due->IsSet && $due->Diff < 0 && $Ticket->QueueObj->IsActiveStatus($Ticket->Status) ) {
<% $due->AsString %>
% } else {
<% $due->AsString %>
% }
<&|/l&>Closed:
<% $Ticket->ResolvedObj->AsString %>
<&|/l&>Updated:
% my $UpdatedString = $Ticket->LastUpdated ? loc("[_1] by [_2]", $Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) : loc("Never");
<% $UpdatedString | h %>
<&| /Widgets/TitleBox, title => loc('Links'), class => 'ticket-info-links' &>
<% loc('Depends on')%>:
<%PERL> my ( @active, @inactive, @not_tickets ); for my $link ( @{ $Ticket->DependsOn->ItemsArrayRef } ) { my $target = $link->TargetObj; if ( $target && $target->isa('RT::Ticket') ) { if ( $target->QueueObj->IsInactiveStatus( $target->Status ) ) { push( @inactive, $link->TargetURI ); } else { push( @active, $link->TargetURI ); } } elsif ( not (UNIVERSAL::isa($link->TargetObj, 'RT::Article') && $link->TargetObj->Disabled) ) { push( @not_tickets, $link->TargetURI ); } }
    % for my $Link (@not_tickets, @active, @inactive) {
  • <& /Elements/ShowLink, URI => $Link &>
  • % }
<% loc('Depended on by')%>:
    % while (my $Link = $Ticket->DependedOnBy->Next) { % next if UNIVERSAL::isa($Link->BaseObj, 'RT::Article') && $Link->BaseObj->Disabled;
  • <& /Elements/ShowLink, URI => $Link->BaseURI &>
  • % }
<% loc('Parents') %>:
<& /Elements/ShowLinksOfType, Object => $Ticket, Type => 'MemberOf' &>
<% loc('Children')%>:
<& /Elements/ShowLinksOfType, Object => $Ticket, Type => 'Members' &>
<% loc('Refers to')%>:
    % while (my $Link = $Ticket->RefersTo->Next) { % next if UNIVERSAL::isa($Link->TargetObj, 'RT::Article') && $Link->TargetObj->Disabled;
  • <& /Elements/ShowLink, URI => $Link->TargetURI &>
  • % }
<% loc('Referred to by')%>:
    % while (my $Link = $Ticket->ReferredToBy->Next) { % next if UNIVERSAL::isa($Link->BaseObj, 'RT::Article') && $Link->BaseObj->Disabled; % next if (UNIVERSAL::isa($Link->BaseObj, 'RT::Ticket') && $Link->BaseObj->__Value('Type') eq 'reminder');
  • <& /Elements/ShowLink, URI => $Link->BaseURI &>
  • % }
rt-4.4.2/share/html/m/ticket/autohandler0000664000175000017500000000431713131430353020055 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> # Redirect to the approvals view if we're trying to get an approvals ticket MaybeRedirectToApproval( Whitelist => qr{/(?:create|select_create_queue)$}i, ARGSRef => \%ARGS, ); $m->call_next; rt-4.4.2/share/html/m/ticket/reply0000664000175000017500000002166513131430353016707 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/m/_elements/wrapper, title => loc('Update ticket #[_1]', $t->id) &> <& /m/_elements/ticket_menu, ticket => $t &> <& /Elements/ListActions, actions => \@results &>
<&|/Widgets/TitleBox &>
% if ($gnupg_widget) { <& /Elements/Crypt/SignEncryptWidget:ShowIssues, self => $gnupg_widget &> % }
<&|/l&>Status:
<& /Ticket/Elements/SelectStatus, Name=>"Status", TicketObj => $t, Default => $DefaultStatus &>
<&|/l&>Owner:
<& /Elements/SelectOwner, Name => "Owner", TicketObj => $t, QueueObj => $t->QueueObj, DefaultLabel => loc("[_1] (Unchanged)", $t->OwnerObj->Format), Default => $ARGS{'Owner'} &>
<&|/l&>Worked: <& /Elements/EditTimeValue, Name => 'UpdateTimeWorked', Default => $ARGS{UpdateTimeWorked}||'', &>
% $m->callback( %ARGS, CallbackName => 'AfterWorked', Ticket => $t );
<&|/l&>Update Type:
<&|/l&>Subject:
% $m->callback( %ARGS, CallbackName => 'AfterSubject' );
<&|/l&>One-time Cc:<& /Elements/EmailInput, Name => 'UpdateCc', Size => '60', Default => $ARGS{UpdateCc} &>
<&|/l&>One-time Bcc:<& /Elements/EmailInput, Name => 'UpdateBcc', Size => '60', Default => $ARGS{UpdateBcc} &>
<&|/l&>Message:
% if (exists $ARGS{UpdateContent}) { % # preserve QuoteTransaction so we can use it to set up sane references/in/reply to % my $temp = $ARGS{'QuoteTransaction'}; % delete $ARGS{'QuoteTransaction'}; <& /Elements/MessageBox, Name=>"UpdateContent", Default=>$ARGS{UpdateContent}, IncludeSignature => 0, SuppressAttachmentWarning => 1, %ARGS&> % $ARGS{'QuoteTransaction'} = $temp; % } else { % my $IncludeSignature = 1; % $IncludeSignature = 0 if $Action ne 'Respond' && !RT->Config->Get('MessageBoxIncludeSignatureOnComment'); <& /Elements/MessageBox, Name=>"UpdateContent", IncludeSignature => $IncludeSignature, SuppressAttachmentWarning => 1, %ARGS &> % }
% if (exists $session{'Attachments'}) { <%loc("Attached file") %> <%loc("Check box to delete")%>
% foreach my $attach_name (keys %{$session{'Attachments'}}) { <%$attach_name%>
% } # end of foreach % } # end of if
<&|/l&>Attach file:
" />
% if ( $gnupg_widget ) { <& /Elements/Crypt/SignEncryptWidget, self => $gnupg_widget, QueueObj => $t->QueueObj &> % } <& /Elements/Submit, Label => loc('Update Ticket'), Name => 'SubmitTicket' &>
<%INIT> my $CanRespond = 0; my $CanComment = 0; my $checks_failure = 0; my $title; my $t = LoadTicket($id); my @results; $m->callback( Ticket => $t, ARGSRef => \%ARGS, results => \@results, CallbackName => 'Initial' ); unless($DefaultStatus){ $DefaultStatus=($ARGS{'Status'} ||$t->Status()); } if ($DefaultStatus eq 'new'){ $DefaultStatus='open'; } if ($DefaultStatus eq 'resolved') { $title = loc("Resolve ticket #[_1] ([_2])", $t->id, $t->Subject); } else { $title = loc("Update ticket #[_1] ([_2])", $t->id, $t->Subject); } # Things needed in the template - we'll do the processing here, just # for the convenience: my ($CommentDefault, $ResponseDefault); if ($Action ne 'Respond') { $CommentDefault = qq[ selected="selected"]; $ResponseDefault = ""; } else { $CommentDefault = ""; $ResponseDefault = qq[ selected="selected"]; } $CanRespond = 1 if ( $t->CurrentUserHasRight('ReplyToTicket') or $t->CurrentUserHasRight('ModifyTicket') ); $CanComment = 1 if ( $t->CurrentUserHasRight('CommentOnTicket') or $t->CurrentUserHasRight('ModifyTicket') ); ProcessAttachments(ARGSRef => \%ARGS); # check email addresses for RT's { foreach my $field ( qw(UpdateCc UpdateBcc) ) { my $value = $ARGS{ $field }; next unless defined $value && length $value; my @emails = Email::Address->parse( $value ); foreach my $email ( grep RT::EmailParser->IsRTAddress($_->address), @emails ) { push @results, loc("[_1] is an address RT receives mail at. Adding it as a '[_2]' would create a mail loop", $email->format, loc(substr($field, 6)) ); $checks_failure = 1; $email = undef; } $ARGS{ $field } = join ', ', map $_->format, grep defined, @emails; } } my $gnupg_widget = $m->comp('/Elements/Crypt/SignEncryptWidget:new', Arguments => \%ARGS ); $m->comp( '/Elements/Crypt/SignEncryptWidget:Process', self => $gnupg_widget, TicketObj => $t, ); my $skip_update = 0; $m->callback( CallbackName => 'BeforeUpdate', ARGSRef => \%ARGS, skip_update => \$skip_update, checks_failure => $checks_failure, results => \@results, TicketObj => $t ); if ( !$checks_failure && !$skip_update && exists $ARGS{SubmitTicket} ) { my $status = $m->comp('/Elements/Crypt/SignEncryptWidget:Check', self => $gnupg_widget, TicketObj => $t, ); $checks_failure = 1 unless $status; $m->callback( Ticket => $t, ARGSRef => \%ARGS, CallbackName => 'BeforeDisplay' ); return $m->comp('/m/ticket/show', TicketObj => $t, %ARGS); } <%ARGS> $id => undef $Action => 'Respond' $DefaultStatus => undef rt-4.4.2/share/html/m/index.html0000664000175000017500000000417213131430353016335 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| _elements/wrapper, title => loc("RT for [_1]",RT->Config->Get('rtname'))&> <& _elements/menu &> <& _elements/full_site_link &> rt-4.4.2/share/html/m/tickets/0000775000175000017500000000000013131430353016002 5ustar vagrantvagrantrt-4.4.2/share/html/m/tickets/search0000664000175000017500000000662113131430353017177 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $page => 1 $order_by => 'id' $order => 'desc' $name => undef <%init> use RT::Search::Simple; my $query = $ARGS{'query'}; if ($ARGS{'q'}) { my $tickets = RT::Tickets->new( $session{'CurrentUser'} ); my %args = ( Argument => $ARGS{q}, TicketsObj => $tickets, ); my $search = RT::Search::Simple->new(%args); $query = $search->QueryToSQL(); } elsif ($ARGS{'name'}) { my $search_arg; my $search; if ($name) { ($search) = RT::System->new( $session{'CurrentUser'} )->Attributes->Named( 'Search - ' . $name ); unless ( $search && $search->Id ) { my (@custom_searches) = RT::System->new( $session{'CurrentUser'} )->Attributes->Named('SavedSearch'); foreach my $custom (@custom_searches) { if ( $custom->Description eq $name ) { $search = $custom; last } } unless ( $search && $search->id ) { $m->out(loc("Predefined search [_1] not found", $m->interp->apply_escapes($name, 'h'))); return; } } $search_arg = $session{'CurrentUser'}->UserObj->Preferences( $search, $search->Content ); } $query = $search_arg->{Query}; $order_by = $search_arg->{OrderBy}; $order = $search_arg->{Order}; } $m->comp('../_elements/ticket_list', query => $query, page => $page, order_by => $order_by, order => $order); $m->abort(); rt-4.4.2/share/html/Articles/0000775000175000017500000000000013131430353015646 5ustar vagrantvagrantrt-4.4.2/share/html/Articles/Elements/0000775000175000017500000000000013131430353017422 5ustar vagrantvagrantrt-4.4.2/share/html/Articles/Elements/ShowTopic0000664000175000017500000000467613131430353021301 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % for (@path) { %# this isn't always a class, it can be the system object % my $class_id = ($_->ObjectType eq 'RT::Class' ? $_->ObjectId : 0 ); <% $_->ParentObj->Id ? " > " : "" %><% $_->Name || loc("(no name)") %> % } <%args> $topic <%init> my @path; while ($topic->Id) { unshift @path, $topic; $topic = $topic->ParentObj; } rt-4.4.2/share/html/Articles/Elements/SubjectOverride0000664000175000017500000000613713131430353022453 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> foreach my $arg ( keys %$ARGSRef) { my $Queue = $QueueObj || RT::Queue->new($session{CurrentUser}); if (!$Queue->Id && $Ticket && $Ticket->Id) { $Queue = $Ticket->QueueObj; } my $article = RT::Article->new($session{'CurrentUser'}); $article->LoadByInclude( Field => $arg, Value => $ARGSRef->{$arg}, Queue => $Queue->Id, ); next unless $article && $article->id; my $class = $article->ClassObj; next unless $class->SubjectOverride; my $cfs = $class->ArticleCustomFields; $cfs->Limit( FIELD => 'id', VALUE => $class->SubjectOverride ); my $subjectCF = $cfs->First; next unless $subjectCF; my $subject = $article->CustomFieldValuesAsString($subjectCF->Id); $m->callback( CallbackName => 'ProcessContent', Ticket => $Ticket, Article => $article, content => \$subject); if ( exists $ARGSRef->{UpdateSubject} ) { $ARGSRef->{UpdateSubject} = $subject; } else { $ARGSRef->{Subject} = $subject; } } return; <%ARGS> $Ticket => undef $ARGSRef => undef $results => undef $QueueObj => undef rt-4.4.2/share/html/Articles/Elements/SelectClass0000664000175000017500000000605113131430353021554 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($Lite) { % } else { % } <%ARGS> $Multiple => undef $Size => undef $ShowNullOption => 1 $ShowAllClasses => 1 $Name => undef $Verbose => undef $Default => undef $Lite => 0 <%INIT> my @Default = ref($Default) eq 'ARRAY' ? @$Default : ( $Default); my $Classes= RT::Classes->new($session{'CurrentUser'}); $Classes->LimitToEnabled(); my $d = RT::Class->new($session{'CurrentUser'}); $d->Load($Default[0]); rt-4.4.2/share/html/Articles/Elements/UpdatedArticles0000664000175000017500000000716013131430353022426 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Widgets/TitleBoxStart, title => loc("[_1] most recently updated articles", $rows), bodyclass=> '' &> % while (my $Article = $MyArticles->Next) { % $i++; % }
<&|/l&># <&|/l&>Name <&|/l&>Created by  
<%$Article->Id%> <%$Article->Name || loc('(no name)')%> <%$Article->CreatorObj->Name%> [<&|/l&>Update]
  <%$Article->Summary || loc('(no Summary)')%>
<& /Widgets/TitleBoxEnd &> <%INIT> my $rows = 10; my $i; my $Classes = RT::Classes->new($session{'CurrentUser'}); $Classes->LimitToEnabled; my @classes; while (my $Class = $Classes->Next) { push @classes, $Class->id if $Class->CurrentUserHasRight('ShowArticle'); } my $MyArticles; $MyArticles = RT::Articles->new($session{'CurrentUser'}); $MyArticles->Limit(FIELD => 'Class', OPERATOR => 'IN', VALUE => \@classes) if @classes; $MyArticles->Limit(FIELD => 'Created', OPERATOR => '!=', VALUE => 'LastUpdated', QUOTEVALUE => 0 ); $MyArticles->RowsPerPage($rows); $MyArticles->OrderBy(FIELD => 'Created', ORDER => 'DESC'); rt-4.4.2/share/html/Articles/Elements/NeedsSetup0000664000175000017500000000547013131430353021432 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# Stupidly long lines because our extract-message-catalog doesn't handle multiple lines! <&|/Widgets/TitleBox, id => "articles-needs-setup", class => "error-titlebox", title => loc("Setup needed") &>

<&|/l_unsafe, qq[], '' &>Before Articles can be used, your RT administrator must [_1]create Classes[_2], apply Article custom fields to them, and grant users rights on the classes and CFs.

<&|/l_unsafe, qq[], qq[], '' &>An [_1]introduction to getting started with articles[_3] is available from [_2]Best Practical's online documentation[_3].

rt-4.4.2/share/html/Articles/Elements/GotoArticle0000664000175000017500000000557713131430353021577 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
% if ($class or $topic) { % }
<%args> $topic => "" $class => "" rt-4.4.2/share/html/Articles/Elements/QuickSearch0000664000175000017500000000456313131430353021557 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Widgets/TitleBoxStart, title => loc('Quick search') &> <& /Widgets/TitleBoxEnd &> <%init> my $classes = RT::Classes->new($session{'CurrentUser'}); $classes->LimitToEnabled; rt-4.4.2/share/html/Articles/Elements/BeforeMessageBox0000664000175000017500000002007113131430353022525 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $ARGS{id} && $ARGS{id} ne 'new' && RT->Config->Get('LinkArticlesOnInclude') ) { % } % unless (RT->Config->Get('HideArticleSearchOnReplyCreate')) { % } % if ($hotlist->Count) { % } % my %dedupe_articles; % while (my $article = $articles_content->Next) { % $dedupe_articles{$article->Id}++; % } % while (my $article = $articles_basics->Next) { % next if $dedupe_articles{$article->Id}; % } % if ( @$topics ) { % if ( $ARGS{$name_prefix .'Articles-Include-Topic'} ) { % } % }
<&|/l&>Search for Articles matching
<&|/l&>Include Article:
<&|/l&>Select an Article to include
  <%$article->Name|| loc('(no name)')%>: <%$article->Summary%>
  <%$article->Name || loc('(no name)')%>: <%$article->Summary || ''%>
<&|/l, $QueueObj->Name &>Choose from Topics for [_1]
<&|/l, $included_topic->Name &>Select an Article from [_1]
<%init> my $QueueObj = $ARGS{QueueObj}; if ( $ARGS{id} && $ARGS{id} ne 'new' && !$QueueObj ) { my $ticket = RT::Ticket->new( $session{CurrentUser} ); $ticket->Load( $ARGS{id} ); $QueueObj = $ticket->QueueObj; } my $skip = 0; $m->callback(CallbackName => "Init", skip => \$skip, Queue => $QueueObj); return if $skip; my $name_prefix = ''; if ( $ARGS{'MessageBoxName'} ) { $name_prefix = $ARGS{'MessageBoxName'} .'-'; } # convert Articles-Include-Article => $id to Articles-Include-Article-$id if ( my $tmp = $ARGS{$name_prefix ."Articles-Include-Article"} ) { $ARGS{$name_prefix ."Articles-Include-Article-$tmp"}++; } my %uri; if ( $ARGS{id} && $ARGS{id} ne 'new' ) { $uri{$_}++ for split ' ', ($ARGS{$ARGS{'id'}.'-RefersTo'} || ''); foreach my $arg (keys %ARGS) { next if $name_prefix && substr($arg, 0, length($name_prefix)) ne $name_prefix; my $article = RT::Article->new($session{'CurrentUser'}); $article->LoadByInclude( Field => substr($arg, length($name_prefix)), Value => $ARGS{$arg}, ); if ($article->Id) { $uri{$article->URI}++; } } } use RT::Articles; my $articles_content = RT::Articles->new( $session{'CurrentUser'} ); my $articles_basics = RT::Articles->new( $session{'CurrentUser'} ); if ( my $tmp = $ARGS{ $name_prefix ."Articles_Content" } ) { $articles_content->LimitCustomField( VALUE => $tmp, OPERATOR => 'LIKE' ); $articles_content->LimitAppliedClasses( Queue => $QueueObj ); $articles_basics->Limit( SUBCLAUSE => 'all', FIELD => 'Name', OPERATOR => 'LIKE', VALUE => $tmp, ENTRYAGGREGATOR => "OR" ); $articles_basics->Limit( SUBCLAUSE => 'all', FIELD => 'Summary', OPERATOR => 'LIKE', VALUE => $tmp, ENTRYAGGREGATOR => "OR" ); $articles_basics->LimitAppliedClasses( Queue => $QueueObj ); } my $hotlist = RT::Articles->new( $session{'CurrentUser'} ); $hotlist->LimitHotlistClasses; $hotlist->LimitAppliedClasses( Queue => $QueueObj ); my ( $topic_articles, $topics, $included_topic ); $topic_articles = RT::Articles->new( $session{CurrentUser} ); $topics = []; my $top_topic = RT::Topic->new( $session{CurrentUser} ); $top_topic->LoadByCols( Name => 'Queues', Parent => 0 , ObjectType => 'RT::System', ObjectId => 1); if ( $top_topic->id ) { my $queue_topic = RT::Topic->new( $session{CurrentUser} ); $queue_topic->LoadByCols( Name => $QueueObj->Name, Parent => $top_topic->id ); if ( $queue_topic->id ) { # store all topics below $queue_topic to $topics topics( $queue_topic, $topics, 0 ); if ( my $tmp = $ARGS{ $name_prefix .'Articles-Include-Topic'} ) { $included_topic = RT::Topic->new( $session{CurrentUser} ); $included_topic->Load( $tmp ); $topic_articles->LimitTopics( $tmp ); $topic_articles->OrderBy( FIELD => 'Name' ); } } } # recursively get all the topics given a top topic sub topics { my $parent = shift; my $out = shift; my $depth = shift; while ( my $topic = $parent->Children->Next ) { push @$out, { id => $topic->id, name => $topic->Name, depth => $depth }; topics( $topic, $out, $depth+1 ); } } rt-4.4.2/share/html/Articles/Elements/NewestArticles0000664000175000017500000000675513131430353022316 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Widgets/TitleBoxStart, title => loc("[_1] newest articles", $rows), bodyclass=> '' &> % while (my $Article = $MyArticles->Next) { % $i++; % }
<&|/l&># <&|/l&>Name <&|/l&>Created by  
<%$Article->Id%> <%$Article->Name || loc('(no name)')%> <%$Article->CreatorObj->Name%> [<&|/l&>Update]
  <%$Article->Summary || loc('(no Summary)')%>
<& /Widgets/TitleBoxEnd &> <%INIT> my $rows = 10; my $i; my $Classes = RT::Classes->new($session{'CurrentUser'}); $Classes->LimitToEnabled; my @classes; while (my $Class = $Classes->Next) { push @classes, $Class->id if $Class->CurrentUserHasRight('ShowArticle'); } my $MyArticles; $MyArticles = RT::Articles->new($session{'CurrentUser'}); $MyArticles->Limit(FIELD => 'Class', OPERATOR => 'IN', VALUE => \@classes) if @classes; $MyArticles->RowsPerPage($rows); $MyArticles->OrderBy(FIELD => 'LastUpdated', ORDER => 'DESC'); rt-4.4.2/share/html/Articles/Elements/CreateArticle0000664000175000017500000000447113131430353022062 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Widgets/TitleBoxStart, title => loc('Create an article') &> <& /Widgets/TitleBoxEnd &> <%init> my $Classes = RT::Classes->new($session{'CurrentUser'}); $Classes->LimitToEnabled; rt-4.4.2/share/html/Articles/Elements/CheckSkipCreate0000664000175000017500000000525413131430353022343 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> return if $checks_failure; # we're already skipping Create return unless RT->Config->Get('ArticleOnTicketCreate'); my $article = RT::Article->new($session{'CurrentUser'}); foreach my $arg ( keys %$ARGSRef) { if ( $ARGSRef->{Articles_Content} || # search for an article $ARGSRef->{'Articles-Include-Topic'} || # using Queue Topics ( $article->LoadByInclude( Field => $arg, Value => $ARGSRef->{$arg} ) && $article->id ) ) { # including an article $$skip_create = 1; last; } } return; <%ARGS> $ARGSRef => undef $skip_create => undef $checks_failure => undef $results => undef rt-4.4.2/share/html/Articles/Elements/ShowTopicLink0000664000175000017500000000512513131430353022105 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Topic $Class => 0 % if ($Link) { \ % } <% $Topic->Name() || loc("(no name)") %>\ % if ($Topic->Description) { : <% $Topic->Description %> % } % if ( $Articles->Count ) { (<&|/l, $Articles->Count &>[quant,_1,article,articles]) % } % if ($Link) { % } <%init> my $Articles = RT::ObjectTopics->new( $session{'CurrentUser'} ); $Articles->Limit( FIELD => 'ObjectType', VALUE => 'RT::Article' ); $Articles->Limit( FIELD => 'Topic', VALUE => $Topic->Id ); my $Link = $Topic->Children->Count || $Articles->Count; rt-4.4.2/share/html/Articles/Elements/IncludeArticle0000664000175000017500000000710713131430353022241 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $parent_args = $m->caller_args(-1); my $name_prefix = ''; $name_prefix = $ARGS{'Name'} .'-' if $ARGS{'Name'} && grep rindex($_, "$ARGS{'Name'}-Articles-", 0) == 0, keys %$parent_args; foreach my $arg ( keys %$parent_args ) { next if $name_prefix && substr($arg, 0, length($name_prefix)) ne $name_prefix; my $Ticket = $ARGS{Ticket}; if ( !$Ticket and $parent_args->{id} and $parent_args->{id} ne 'new' ) { $Ticket = RT::Ticket->new($session{'CurrentUser'}); $Ticket->Load($parent_args->{id}); unless ( $Ticket->id ) { $RT::Logger->error("Couldn't load ticket ". $parent_args->{id} ) } } my $Queue = RT::Queue->new($session{CurrentUser}); if ($Ticket && $Ticket->Id) { $Queue = $Ticket->QueueObj; } my $article = RT::Article->new($session{'CurrentUser'}); $article->LoadByInclude( Field => substr($arg, length($name_prefix)), Value => $parent_args->{$arg}, Queue => $Queue->Id, ); next unless $article && $article->id; my $formatted_article = $m->scomp('/Articles/Article/Elements/Preformatted', Article => $article, Ticket => $Ticket ); $m->callback( Article => $article, Ticket => $Ticket, formatted_article => \$formatted_article ); if (RT->Config->Get('MessageBoxRichText', $session{'CurrentUser'})) { $formatted_article =~ s/>/>/g; $formatted_article =~ s//g; } $m->print($formatted_article); } return; rt-4.4.2/share/html/Articles/Elements/MaybeNeedsSetup0000664000175000017500000000442013131430353022402 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $Classes = RT::Classes->new( $session{'CurrentUser'} ); $Classes->LimitToEnabled(); # This is a COUNT(), which doesn't apply ACLs; as such, we don't display # the warning if there are classes, but the user can't see them. return if $Classes->Count; <& NeedsSetup &> rt-4.4.2/share/html/Articles/index.html0000664000175000017500000000456113131430353017651 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Articles') &> <& /Elements/Tabs &> <& /Articles/Elements/MaybeNeedsSetup &>
<& /Articles/Elements/NewestArticles &>
<& /Articles/Elements/UpdatedArticles &>
<& /Articles/Elements/QuickSearch &>
<& /Articles/Elements/CreateArticle &>
rt-4.4.2/share/html/Articles/Topics.html0000664000175000017500000001441313131430353020000 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Browse by topic') &> <& /Elements/Tabs &> <&|/l&>All topics % if (defined $class) { > <% $currclass_name %> % } % if ($id != 0) { > <& /Articles/Elements/ShowTopic, topic => $currtopic &> % }

<&|/l&>Browse by topic

% if (defined $class) {

<% $currclass_name %>

% my $rtopic = RT::Topic->new( $session{'CurrentUser'} ); % $rtopic->Load($id); % unless ( $rtopic->Id() % && $rtopic->ObjectId() == $currclass->Id ) % { % # Show all of them % $ProduceTree->( 0 ); % } else { % my @showtopics = ( $rtopic ); % my $parent = $rtopic->ParentObj; % while ( $parent->Id ) { % unshift @showtopics, $parent; % $parent = $parent->ParentObj; % } % # List the topics. % for my $t ( @showtopics ) {
  • <& /Articles/Elements/ShowTopicLink, Topic => $t, Class => $currclass_id &> % $ProduceTree->( $id ) if $t->Id == $id; % } % for ( @showtopics ) {
% } % } % } else { % }
% if (@articles) { % if ($id) {

<&|/l, $currtopic->Name&>Articles in [_1]

% } elsif ($class) {

<&|/l&>Articles with no topics

% } % } <%init> my $Classes; my $currclass; my $currclass_id; my $currclass_name; my $currtopic; if ( defined $class ) { if ($class) { $currclass = RT::Class->new( $session{'CurrentUser'} ); $currclass->Load($class); $currclass_id = $currclass->Id; $currclass_name = $currclass->Name; } else { $currclass = $RT::System; $currclass_id = 0; $currclass_name = 'Global Topics'; } } else { $Classes = RT::Classes->new( $session{'CurrentUser'} ); $Classes->LimitToEnabled(); } if ($id) { $currtopic = RT::Topic->new( $session{'CurrentUser'} ); $currtopic->Load($id); } my $ProduceTree; $ProduceTree = sub { my ( $parentid ) = @_; my $topics = RT::Topics->new( $session{'CurrentUser'} ); $topics->LimitToObject($currclass); $topics->LimitToKids($parentid || 0); $topics->OrderBy( FIELD => 'Name' ); return unless $topics->Count; $m->out("
    "); while ( my $t = $topics->Next ) { $m->out("
  • "); $m->comp("/Articles/Elements/ShowTopicLink", Topic => $t, Class => $currclass_id, ); $ProduceTree->( $t->Id ) if $t->Children->Count; $m->out("
  • "); } $m->out("
"); }; my @articles; if ($id) { my $Articles = RT::ObjectTopics->new($session{'CurrentUser'}); $Articles->Limit(FIELD => 'ObjectType', VALUE => 'RT::Article'); $Articles->Limit(FIELD => 'Topic', VALUE => $id); while (my $objtopic = $Articles->Next) { my $a = RT::Article->new($session{'CurrentUser'}); $a->Load($objtopic->ObjectId); push @articles, $a; } } elsif ($class) { my $Articles = RT::Articles->new($session{'CurrentUser'}); my $TopicsAlias = $Articles->Join( TYPE => 'left', ALIAS1 => 'main', FIELD1 => 'id', TABLE2 => 'ObjectTopics', FIELD2 => 'ObjectId', ); $Articles->Limit( LEFTJOIN => $TopicsAlias, FIELD => 'ObjectType', VALUE => 'RT::Article', ); $Articles->Limit( ALIAS => $TopicsAlias, FIELD => 'Topic', OPERATOR => 'IS', VALUE => 'NULL', QUOTEVALUE => 0, ); $Articles->Limit( FIELD => 'Class', OPERATOR => '=', VALUE => $class, ); @articles = @{$Articles->ItemsArrayRef}; } <%args> $id => 0 $class => undef $showall => undef rt-4.4.2/share/html/Articles/Article/0000775000175000017500000000000013131430353017231 5ustar vagrantvagrantrt-4.4.2/share/html/Articles/Article/History.html0000664000175000017500000000501513131430353021561 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('History for article #[_1]', $id) &> <& /Elements/Tabs &> <& /Elements/ShowHistory, Object => $article, ShowHeaders => 0, ShowDisplayModes => 0, ShowActions => 0, DisplayPath => 'History.html', &> <%init> my $article = RT::Article->new($session{'CurrentUser'}); $article->Load($id); Abort(loc("Article #[_1] not found", $id)) unless $article->Id; Abort(loc("Permission Denied")) unless $article->CurrentUserHasRight('ShowArticle'); <%args> $id => undef rt-4.4.2/share/html/Articles/Article/Search.html0000664000175000017500000002340513131430353021330 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Search for articles") &> <& /Elements/Tabs &> % unless ( keys %ARGS ) {
% if (not $classes_configured) { <& /Articles/Elements/NeedsSetup &> % } elsif (not @classes) { <&|/l&>You don't have permission to view Articles in any Class % } else { % }
<& /Widgets/TitleBoxStart, title => loc('Saved searches') &> <&|/l&>Load saved search:
<& Elements/SelectSavedSearches, Name => 'LoadSavedSearch', Default => $CurrentSearch &> <& /Widgets/TitleBoxEnd &>
% return; % } <& /Elements/ListActions, actions => \@results &> % if ($articles->BuildSelectCountQuery =~ /WHERE/i) {

<&|/l&>Search results

<& /Elements/CollectionList, Collection => $articles, AllowSorting => 1, OrderBy => \@OrderBy, Order => \@Order, Format => $format, GenericQueryArgs => { %filtered, Format => $format, }, &> % }


<& Elements/ShowSearchCriteria, dates => \%dates, RefersTo => $RefersTo, customfields => $customfields, ReferredToBy => $ReferredToBy, %ARGS &>

<& Elements/ShowSavedSearches, CurrentSearch => $CurrentSearch, Name => ($search ? $search->Name : undef), Privacy => ($search ? $search->Privacy : undef) &>
<%init> my $Classes = RT::Classes->new($session{'CurrentUser'}); $Classes->LimitToEnabled(); # This is a COUNT(), which doesn't apply ACLs; as such, we don't display # the warning if there are classes, but the user can't see them. my $classes_configured = $Classes->Count; my @classes = @{ $Classes->ItemsArrayRef }; $ARGS{Class} = $classes[0]->id if @classes == 1; use RT::SavedSearch; my @results; my $articles = RT::Articles->new( $session{'CurrentUser'} ); my $format = q{ '__id__/TITLE:#', '__Name__/TITLE:Name', '__ClassName__', '__CreatedRelative__', '__LastUpdatedRelative__', '__Summary__', '__Topics__', }; # {{{ Quicksearch logic # If it is a number, load the article with that ID. Otherwise, search # on name and summary. if ($ARGS{'q'} && $ARGS{'q'} =~ /^(\d+)$/) { RT::Interface::Web::Redirect( RT->Config->Get('WebURL') . "Articles/Article/Display.html?id=" . $1 ); } # }}} # {{{ Saved search logic my $search; # The keys in %ARGS that are not saved and loaded with named searches. # These need to be treated specially. my @metakeys = qw/NewSearchName CurrentSearch SearchPrivacy Save Load Update Delete/; if ($CurrentSearch =~ /^(.*-\d+)-SavedSearch-(\d+)$/) { $search = RT::SavedSearch->new($session{'CurrentUser'}); $search->Load($1, $2); } # Have we been asked to load a search? if ($ARGS{'Load'}) { if ($ARGS{'LoadSavedSearch'} =~ /^(.*-\d+)-SavedSearch-(\d+)$/ ) { my $privacy = $1; my $search_id = $2; $search = RT::SavedSearch->new($session{'CurrentUser'}); my ($ret, $msg) = $search->Load($privacy, $search_id); if ($ret) { my $searchargs = $search->GetParameter('args'); # Clean out ARGS and fill it in with the saved args from the # loaded search. foreach my $key (@metakeys) { $searchargs->{$key} = $ARGS{$key}; } %ARGS = %{$searchargs}; $CurrentSearch = "$privacy-SavedSearch-$search_id"; } else { push(@results, loc("Error: could not load saved search [_1]: [_2]", $ARGS{'LoadSavedSearch'}, $msg)); } } else { push(@results, loc("Invalid [_1] argument", 'LoadSavedSearch')); } } # ...or have we been asked to save, update, or delete a search? if ($ARGS{'Save'}) { my %searchargs = %ARGS; foreach my $key (@metakeys) { delete $searchargs{$key}; } $search = RT::SavedSearch->new($session{'CurrentUser'}); unless ($ARGS{'SearchPrivacy'} =~ /^(.*)-(\d+)$/) { # This shouldn't really happen, but hey. push(@results, loc("WARNING: Saving search to user-level privacy")); $ARGS{'SearchPrivacy'} = 'RT::User-'.$session{'CurrentUser'}->Id; } my ($ret, $msg) = $search->Save(Privacy => $ARGS{'SearchPrivacy'}, Type => 'Article', Name => $ARGS{'NewSearchName'}, SearchParams => {'args' => \%searchargs}); if ($ret) { $CurrentSearch = $ARGS{'SearchPrivacy'} . "-SavedSearch-" . $search->Id; push(@results, loc("Created search [_1]", $search->Name)); } else { undef $search; # if we bomb out creating a search # we don't want to have the empty object hang around push(@results, loc("Could not create search: [_1]", $msg)); } } elsif ($ARGS{'Update'}) { if ($ARGS{'SearchPrivacy'} != $search->Privacy) { push(@results, loc("Error: cannot change privacy value of existing search")); } else { my %searchargs = %ARGS; foreach my $key (@metakeys) { delete $searchargs{$key}; } # We already have a search loaded, because CurrentSearch is set, # or else we would not have gotten here. my ($ret, $msg) = $search->Update(Name => $ARGS{'NewSearchName'}, SearchParams => \%searchargs); if ($ret) { push(@results, loc("Search [_1] updated", $search->Name)); } else { push(@results, loc("Error: search [_1] not updated: [_2]", $search->Name, $msg)); } } } elsif ($ARGS{'Delete'}) { # Keep track of this, as we are about to delete the search. my $searchname = $search->Name; my ($ret, $msg) = $search->Delete; if ($ret) { $ARGS{'CurrentSearch'} = undef; push(@results, loc("Deleted search [_1]", $searchname)); # Get rid of all the state. foreach my $key (keys %ARGS) { delete $ARGS{$key}; } $CurrentSearch = 'new'; $search = undef; $RefersTo = undef; $ReferredToBy = undef; } else { push(@results, loc("Could not delete search [_1]: [_2]", $searchname, $msg)); } } # }}} # Don't want to search for a null class when there is no class specced my $customfields = RT::CustomFields->new( $session{'CurrentUser'} ); my %dates; $articles->Search( %ARGS, CustomFields => $customfields, Dates => \%dates, OrderBy => \@OrderBy, Order => \@Order, ); $m->callback( %ARGS, _Search => $articles ); my %filtered = %ARGS; delete $filtered{$_} for (@metakeys, "EditTopics", "ExpandTopics"); delete $filtered{$_} for grep {$filtered{$_} !~ /\S/} keys %filtered; @filtered{qw(OrderBy Order)} = (\@OrderBy, \@Order); my $QueryString = "?".$m->comp('/Elements/QueryString', %filtered); <%ARGS> $CreatedBefore => '' $CreatedAfter => '' $LastUpdatedBefore => '' $LastUpdatedAfter => '' $RefersTo => undef $ReferredToBy => undef $CurrentSearch => 'new' @OrderBy => () @Order => () rt-4.4.2/share/html/Articles/Article/ExtractIntoTopic.html0000664000175000017500000000544013131430353023365 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Extract a new article from ticket #[_1]',$Ticket) &> <& /Elements/Tabs &> <&|/l&>Select topics for this article:
<& Elements/EditTopics, Classes => [$ClassObj], OnlyThisClass => 1, id => 'new', &>
<%args> $Ticket => undef $Class => undef <%init> my $ClassObj = RT::Class->new($session{'CurrentUser'}); $ClassObj->Load($Class); unless ($ClassObj->Id) { $m->comp("/Elements/Error", Why => loc("'[_1]' isn't a valid class identifier", $Class)); } rt-4.4.2/share/html/Articles/Article/Edit.html0000664000175000017500000002137513131430353021014 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
<&| /Widgets/TitleBox, title => $title, class => 'article-basics', &> <& Elements/EditBasics, ArticleObj => $ArticleObj, EditClass =>$EditClass, ClassObj => $ClassObj, %ARGS , id => $id &> <&| /Widgets/TitleBox, title => 'Content', class => 'article-content', &> <& Elements/EditCustomFields, ArticleObj => $ArticleObj, CFContent => \%CFContent, ClassObj => $ClassObj, %ARGS, id => $id, ForCreation => ($id eq 'new'), &> <&| /Widgets/TitleBox, title => 'Links', class => 'article-links', &> <& Elements/EditLinks, ArticleObj => $ArticleObj, %ARGS, id => $id &> <&| /Widgets/TitleBox, title => 'Topics', class => 'article-topics', &> <& Elements/EditTopics, ArticleObj => $ArticleObj, Classes => [$ArticleObj->Id ? $ArticleObj->ClassObj : $ClassObj], OnlyThisClass => 1, %ARGS, id => $id &> <& /Elements/Submit, Label => ($id eq 'new' ? loc('Create') : loc('Save Changes')), color => "#993333" &>
<%INIT> if ( exists $ARGS{'Topics'} ) { $ARGS{'Topics'} = ref( $ARGS{'Topics'} ) ? $ARGS{'Topics'} : [ $ARGS{'Topics'} ]; } my @results; my $title; my $Entries = {}; my $ArticleObj = RT::Article->new( $session{'CurrentUser'} ); my $ClassObj = RT::Class->new( $session{'CurrentUser'} ); if ($Class) { $ClassObj->Load($Class); Abort(loc("'[_1]' isn't a valid class", $Class)) unless $ClassObj->Id; } my %create_args; my %CFContent; my $EditClass = 1; if ( $ARGS{SetEnabled} ) { $ARGS{Disabled} = $ARGS{Enabled} ? 0 : 1; } if ( !$id ) { $title = loc('Create a new article'); foreach my $arg ( sort keys %ARGS ) { if ( $arg =~ /^Transaction-(\d+)$/ ) { my $trans = RT::Transaction->new( $session{'CurrentUser'} ); $trans->Load($1); $CFContent{ $ARGS{$arg} } .= "\n\n" if $CFContent{ $ARGS{$arg} }; $CFContent{ $ARGS{$arg} } .= $trans->Content; } } $EditClass = 0; $id = 'new'; } elsif ( $id eq 'new' ) { if ( $ARGS{'RefersTo-new'} ) { @{ $create_args{'RefersTo-new'} } = split( /\s+/, $ARGS{'RefersTo-new'} ); } if ( $ARGS{'new-RefersTo'} ) { @{ $create_args{'new-RefersTo'} } = split( /\s+/, $ARGS{'new-RefersTo'} ); } my %cfs = ProcessObjectCustomFieldUpdatesForCreate( ARGSRef => \%ARGS, ContextObject => $ClassObj, ); my $msg; ( $id, $msg ) = $ArticleObj->Create( Summary => $ARGS{'Summary'}, Name => $ARGS{'Name'}, Class => $ARGS{'Class'}, Topics => $ARGS{'Topics'}, Disabled => $ARGS{'Disabled'}, %create_args, %cfs ); push( @results, $msg ); if ($id) { $ArticleObj->Load($id); $title = loc( 'Modify article #[_1]', $ArticleObj->Id ); delete $ARGS{id}; if ( $ARGS{next} ) { $m->redirect($ARGS{next}); } else { MaybeRedirectForResults( Actions => \@results, Arguments => { id => $ArticleObj->id }, ); } } else { $ArticleObj = RT::Article->new( $session{'CurrentUser'} ); $id = 'new'; $EditClass = 0; $title = loc('Create a new article'); } } else { $ArticleObj->Load($id); unless ( $ArticleObj->id ) { $m->comp( "/Elements/Error", Why => loc("Unable to load article") ); } my @attribs = qw(Name Summary Class Disabled); @results = UpdateRecordObject( AttributesRef => \@attribs, Object => $ArticleObj, ARGSRef => \%ARGS ); my @cf_results = ProcessObjectCustomFieldUpdates( Object => $ArticleObj, ARGSRef => \%ARGS ); @results = ( @results, @cf_results ); # Delete links that are gone gone gone. foreach my $arg ( keys %ARGS ) { if ( $arg =~ /DeleteLink-(.*?)-(RefersTo|MemberOf|RefersTo)-(.*)$/ ) { my $base = $1; my $type = $2; my $target = $3; my ( $val, $msg ) = $ArticleObj->DeleteLink( Base => $base, Type => $type, Target => $target ); push @results, $msg; } } my @linktypes = qw(DependsOn MemberOf RefersTo ); foreach my $linktype (@linktypes) { for my $luri ( split( / /, ( $ARGS{ $ArticleObj->Id . "-$linktype" } || '' )) ) { $luri =~ s/\s*$//; # Strip trailing whitespace my ( $val, $msg ) = $ArticleObj->AddLink( Target => $luri, Type => $linktype ); push @results, $msg; delete $ARGS{ $ArticleObj->Id . "-$linktype" } if $val; } for my $luri ( split( / /, ( $ARGS{ "$linktype-" . $ArticleObj->Id } || '' )) ) { my ( $val, $msg ) = $ArticleObj->AddLink( Base => $luri, Type => $linktype ); push @results, $msg; delete $ARGS{ "$linktype-" . $ArticleObj->Id } if $val; } } my %topics; if ( $ARGS{'EditTopics'} ) { $topics{$_}++ for @{ $ARGS{'Topics'} }; my $objTopics = RT::ObjectTopics->new( $session{'CurrentUser'} ); $objTopics->LimitToObject($ArticleObj); while ( my $t = $objTopics->Next ) { $topics{ $t->Topic }--; } for my $id ( keys %topics ) { if ( $topics{$id} > 0 ) { my ( $val, $msg ) = $ArticleObj->AddTopic( Topic => $id ); push @results, $msg; } elsif ( $topics{$id} < 0 ) { my ( $val, $msg ) = $ArticleObj->DeleteTopic( Topic => $id ); push @results, $msg; } } } $title = loc( 'Modify article #[_1]', $ArticleObj->Id ); } # if they're working on an existing article if ( $ArticleObj->id ) { unless ( $ArticleObj->CurrentUserHasRight('ShowArticle') ) { $m->comp( "/Elements/Error", Why => loc("No permission to view Article") ); } } <%ARGS> $id => undef $Class => undef rt-4.4.2/share/html/Articles/Article/ExtractFromTicket.html0000664000175000017500000000773213131430353023532 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Extract article from ticket #[_1] into class [_2]',$Ticket, $ClassObj->Name) &> <& /Elements/Tabs &>
% for (@Topics) { % }

<&|/l&>Use the dropdown menus to select which ticket updates you want to extract into a new article. <&|/l&>You can insert ticket content into any freeform, text or wiki field.

% my $i; % while ( my $trans = $transactions->Next ) { % next unless $trans->HasContent && $trans->Content; % }
<&|/l&>Field <&|/l&>Ticket update
<%$trans->CreatedObj->AsString%>: <%$trans->Description%>
<%$trans->Content%>
<& /Elements/Submit, Label => loc('Create'), color => "#993333" &>
<%INIT> my $ticket=LoadTicket($Ticket); my $transactions = $ticket->Transactions; my $ClassObj = RT::Class->new($session{'CurrentUser'}); $ClassObj->Load($Class); unless ($ClassObj->Id) { $m->comp("/Elements/Error", Why => loc("'[_1]' isn't a valid class identifier", $Class)); } my $CustomFields = $ClassObj->ArticleCustomFields(); $CustomFields->Limit(FIELD => 'Type', OPERATOR => '=', VALUE => 'Text'); $CustomFields->Limit(FIELD => 'Type', OPERATOR => '=', VALUE => 'Wikitext'); $CustomFields->Limit(FIELD => 'Type', OPERATOR => '=', VALUE => 'Freeform'); <%ARGS> $Class => undef $Ticket => undef @Topics => () rt-4.4.2/share/html/Articles/Article/ExtractIntoClass.html0000664000175000017500000000631313131430353023354 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Extract a new article from ticket #[_1]',$Ticket) &> <& /Elements/Tabs &>

<&|/l&>Create a new article in:

    % my $Classes = RT::Classes->new($session{'CurrentUser'}); % $Classes->LimitToEnabled(); % while (my $Class = $Classes->Next) {
  • <%$Class->Name%>: <%$Class->Description || ''%>
  • % }
<%args> $Ticket => undef rt-4.4.2/share/html/Articles/Article/Elements/0000775000175000017500000000000013131430353021005 5ustar vagrantvagrantrt-4.4.2/share/html/Articles/Article/Elements/ShowLinks0000664000175000017500000000654513131430353022663 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
<&|/l&>Refers to: % my $refersto = $article->RefersTo; % while (my $link = $refersto->Next) { % my $member = $link->TargetURI;
  • % if ($link->TargetURI->IsLocal) { <% loc($member->Object->RecordType) %> <%$member->Object->Id%>: % if (UNIVERSAL::isa($member->Object, "RT::Article") or UNIVERSAL::can($member->Object, 'Name')) { <%$member->Object->Name%> % } elsif (UNIVERSAL::isa($member->Object, "RT::Ticket") or UNIVERSAL::can($member->Object, 'Subject')) { <%$member->Object->Subject%> % } % } else { <%$link->Target%> % }
  • % }
    <&|/l&>Referred to by: % my $referredtoby = $article->ReferredToBy; % while (my $link = $referredtoby->Next) { % my $member = $link->BaseURI;
  • % if ($member->IsLocal) { <% loc($member->Object->RecordType) %> <%$member->Object->Id%>: % if (UNIVERSAL::isa($member->Object, "RT::Article") or UNIVERSAL::can($member->Object, 'Name')) { <%$member->Object->Name%> % } elsif (UNIVERSAL::isa($member->Object, "RT::Ticket") or UNIVERSAL::can($member->Object, 'Subject')) { <%$member->Object->Subject%> % } % } else { <%$link->Base%> % }
  • % }
    <%args> $article => undef rt-4.4.2/share/html/Articles/Article/Elements/SearchByCustomField0000664000175000017500000000527613131430353024601 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# if the custom field is a select, enumerate the options % if ($Field->Type =~ /^Select/) { % my $CustomFieldValues = $Field->ValuesObj(); % } %# otherwise, put in a textedity field % else { % } <%init> my @Values =ref( $Values ) ? @{ $Values } : ( $Values ); <%ARGS> $Field => undef $Name => 'CustomField' $Values => undef rt-4.4.2/share/html/Articles/Article/Elements/LinkEntryInstructions0000664000175000017500000000417213131430353025300 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/l&>Type a: before article numbers and t: before ticket numbers. <&|/l&>Separate multiple entries with spaces. rt-4.4.2/share/html/Articles/Article/Elements/EditTopics0000664000175000017500000001146713131430353023010 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <&|/l&>Topics:
    <%INIT> use Tree::Simple; my $inClass = RT::Topics->new($session{'CurrentUser'}); # global topics should always be available push @Classes,$RT::System unless grep { $_ == $RT::System } @Classes; $inClass->LimitToObject($_) for @Classes; $inClass->OrderByCols({FIELD => 'Name'}); my $inTree = buildTree($inClass); my $otherClass = RT::Topics->new($session{'CurrentUser'}); if (@Classes) { $otherClass->Limit(FIELD => 'ObjectType', VALUE => 'RT::Class'); for (@Classes) { $otherClass->Limit(FIELD => 'ObjectId', OPERATOR => '!=', VALUE => $_->Id); } } else { $otherClass->UnLimit; } my $otherTree = buildTree($otherClass); my $articleTopics = RT::ObjectTopics->new($session{'CurrentUser'}); $articleTopics->LimitToObject($ArticleObj); my %topics; while (my $topicObj = $articleTopics->Next) { $topics{$topicObj->Topic} = 1; } $topics{$_} = 1 for @Topics; sub buildTree { my $query = shift; use Tree::Simple; my $tree = Tree::Simple->new(Tree::Simple->ROOT); my %lookup = (0 => $tree); my @todo; while (my $topic = $query->Next) { push @todo, $topic; } { my $changed = 0; my @work = @todo; @todo = (); for my $topic (@work) { if (defined $lookup{$topic->Parent}) { $lookup{$topic->Id} = Tree::Simple->new($topic, $lookup{$topic->Parent}); $changed = 1; } else { push @todo, $topic; } } redo unless $changed == 0; } return $tree; } <%ARGS> $ArticleObj => RT::Article->new($session{'CurrentUser'}) @Classes => () @Topics => () $OnlyThisClass => undef rt-4.4.2/share/html/Articles/Article/Elements/EditCustomFields0000664000175000017500000000536613131430353024151 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % while (my $CustomField = $CustomFields->Next()) { % }
    <%$CustomField->Name%>:
    <%$CustomField->EntryHint // ''%>
    <& /Elements/EditCustomField, Object => $ArticleObj, CustomField => $CustomField, Default => $CFContent->{$CustomField->Id}, Rows => 15, Cols => 70 &>
    <%INIT> my $CustomFields; if ($ArticleObj->id && $ArticleObj->ClassObj->id) { $CustomFields = $ArticleObj->CustomFields(); } else { $CustomFields = $ClassObj->ArticleCustomFields(); } <%ARGS> $ArticleObj => undef $ClassObj => undef $CFContent => undef $id => undef rt-4.4.2/share/html/Articles/Article/Elements/Preformatted0000664000175000017500000000751713131430353023376 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($include{Name}) { #<%$Article->Id%>: <%$Article->Name || loc('(no name)')%> <%'-' x length("#".$Article->Id.": ".($Article->Name || loc('(no name)'))) %> % } % if ( $include{Summary} && ($Article->Summary||'') =~ /\S/ ) { <% $Article->Summary %> % } % while (my $cf = $cfs->Next) { % next unless $include{"CF-Title-".$cf->Id} or $include{"CF-Value-".$cf->Id}; % my $values = $Article->CustomFieldValues($cf->Id); % if ($values->Count == 1) { % my $value = $values->First; % if ($include{"CF-Title-".$cf->Id}) { <% $cf->Name%>: <% '-' x length($cf->Name) %> % } % if ($value && $include{"CF-Value-".$cf->Id}) { <% $get_content->( $value ) %> % } % } else { % my $val = $values->Next; % if ($include{"CF-Title-".$cf->Id}) { <% $cf->Name%>: \ % } % if ($val && $include{"CF-Value-".$cf->Id}) { <% $get_content->( $val ) %> % } % while ($val = $values->Next) { % if ($include{"CF-Title-".$cf->Id}) { <% ' ' x length($cf->Name)%> \ % } % if ($include{"CF-Value-".$cf->Id}) { <% $get_content->( $val ) %> % } % } % } % } <%init> my $class = $Article->ClassObj; my %include = (Name => 1, Summary => 1); my $cfs = $class->ArticleCustomFields; $include{"CF-Title-".$_->Id} = $include{"CF-Value-".$_->Id} = 1 while $_ = $cfs->Next; $include{$_} = not $class->FirstAttribute("Skip-$_") for keys %include; my $get_content = sub { my $value = shift; return '' unless $value; my $content = $value->Content; return '' unless defined $content && length $content; $m->callback( %ARGS, CallbackName => 'ProcessContent', content => \$content, ); if ( $content =~ /<.{1,5}>/ ) { $content = RT::Interface::Email::ConvertHTMLToText( $content ); } return $content; }; <%args> $Article rt-4.4.2/share/html/Articles/Article/Elements/ShowSavedSearches0000664000175000017500000000664313131430353024322 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Widgets/TitleBoxStart, title => loc('Saved searches') &> %# Keep track of what our current search ID is. %# Hide all the save functionality if the user shouldn't see it. % if ($session{'CurrentUser'}->HasRight( Right => 'CreateSavedSearch', % Object=> $RT::System )) {

    <&|/l&>Save this search

    <&|/l&>Name: <&|/l&>Privacy: <& SelectSearchPrivacy, Name => 'SearchPrivacy', Default => $Privacy &>
    % if ($CurrentSearch && $CurrentSearch ne 'new') {       % } else { % }
    % } # if HasRight 'CreateSavedSearch'

    <&|/l&>Load a saved search

    <& SelectSavedSearches, Name => 'LoadSavedSearch', Default => $CurrentSearch &> <& /Widgets/TitleBoxEnd &> <%INIT> unless ($session{'CurrentUser'}->HasRight( Right => 'LoadSavedSearch', Object=> $RT::System )) { return; } <%ARGS> $CurrentSearch => undef $Name => undef $Privacy => undef rt-4.4.2/share/html/Articles/Article/Elements/SelectSearchPrivacy0000664000175000017500000000503413131430353024635 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $user = $session{'CurrentUser'}->UserObj; my $groups = $session{'CurrentUser'}->UserObj->OwnGroups; $Default = '' unless defined $Default; <%ARGS> $Name => 'GroupField' $Default => '' rt-4.4.2/share/html/Articles/Article/Elements/EditLinks0000664000175000017500000001005313131430353022615 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <&|/l&>Enter articles, tickets, or other URLs related to this article. <& LinkEntryInstructions &> % unless ($id eq 'new') { <&|/l&>(Check boxes to delete)
    % }
    <&|/l&>Refers to:
      % if ($id ne 'new') { % my $refersto = $ArticleObj->RefersTo; % while (my $link = $refersto->Next) { % my $member = $link->TargetURI;
    • % if ($link->TargetURI->IsLocal) { <% loc($member->Object->RecordType) %> <%$member->Object->Id%>: % if (UNIVERSAL::isa($member->Object, "RT::Article") or UNIVERSAL::can($member->Object, 'Name')) { <%$member->Object->Name%> % } elsif (UNIVERSAL::isa($member->Object, "RT::Ticket") or UNIVERSAL::can($member->Object, 'Subject')) { <%$member->Object->Subject%> % } % } else { <%$link->Target%> % } % } % }
    <&|/l&>Referred to by:
    <%ARGS> $ArticleObj => undef $id => undef rt-4.4.2/share/html/Articles/Article/Elements/ShowSearchCriteria0000664000175000017500000001415413131430353024466 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($ARGS{'HideOptions'}) { <& /Widgets/TitleBoxStart, title => loc('Advanced search'), class => "rolled-up", bodyclass => "hidden" &> % } else { <& /Widgets/TitleBoxStart, title => loc('Advanced search') &> % } % while (my $field = $customfields->Next ) { % }

    <&|/l&>Basics

    <&|/l&>Classis <& /Articles/Elements/SelectClass, Name => 'Class', Multiple =>1, Size => 5 , ShowNullOption => undef, Default => $ARGS{'Class'} &> <&|/l&>and not <& /Articles/Elements/SelectClass, Name => 'Class!', Multiple =>1, Size => 5 , ShowNullOption => undef, Default => $ARGS{'Class!'} &>
    <&|/l&>Name <&|/l&>matches <&|/l&>and not
    <&|/l&>Summary <&|/l&>matches <&|/l&>and not

    <&|/l&>Content

    <&|/l&>Any field <&|/l&>matches <&|/l&>and not
    <% $field->Name %> <&|/l&>matches % my $matches = $field->Name."~"; % my $nomatches = $field->Name."!~"; <& /Articles/Article/Elements/SearchByCustomField, Field => $field, Name => $matches, Values => $ARGS{$matches} &> <&|/l&>and not <& /Articles/Article/Elements/SearchByCustomField, Field => $field, Name => $nomatches, Values => $ARGS{$nomatches} &>

    <&|/l&>Dates

    <&|/l&>Created <&|/l&>after <& /Elements/SelectDate, Name=>"Created>", Default => ($dates->{'Created>'} ? $dates->{'Created>'}->ISO : '') &> <&|/l&>and before <& /Elements/SelectDate, Name=>"Created<", Default => ($dates->{'Created<'} ? $dates->{'Created<'}->ISO:'')&>
    <&|/l&>Last updated <&|/l&>after <& /Elements/SelectDate, Name=>"LastUpdated>", Default => ($dates->{'LastUpdated>'} ? $dates->{'LastUpdated>'}->AsString:'')&> <&|/l&>and before <& /Elements/SelectDate, Name=>"LastUpdated<", Default => ($dates->{'LastUpdated<'} ? $dates->{'LastUpdated<'}->AsString:'')&>

    <&|/l&>Links

    <& LinkEntryInstructions &>
    <&|/l&>Refer to
    <&|/l&>Referred to by

    <&|/l&>Topics

    <& /Articles/Article/Elements/EditTopics, %ARGS, Classes => \@Classes, OnlyThisClass => 1 &>
    />
    <& /Elements/Submit, Label => loc('Search') &> <& /Widgets/TitleBoxEnd &> <%init> my @Classes = ( ref $ARGS{'Class'} eq 'ARRAY' ) ? @{ $ARGS{'Class'} } : ( $ARGS{'Class'} ); for (@Classes) { my $class = RT::Class->new( $session{'CurrentUser'} ); $class->LoadById($_); $_ = $class; } for my $field ( qw/Class Name Summary Article/ ) { $ARGS{"$field~"} = '' unless defined $ARGS{"$field~"}; $ARGS{"$field!~"} = '' unless defined $ARGS{"$field!~"}; } $RefersTo = '' unless defined $RefersTo; $ReferredToBy = '' unless defined $ReferredToBy; <%ARGS> $dates =>undef $RefersTo => '' $ReferredToBy => '' $customfields => undef rt-4.4.2/share/html/Articles/Article/Elements/ShowTopics0000664000175000017500000000447613131430353023045 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <&|/l&>Topics: % my $topics = RT::ObjectTopics->new($session{'CurrentUser'}); % $topics->LimitToObject($article); % while (my $t = $topics->Next) { <& /Articles/Elements/ShowTopic, topic => $t->TopicObj &>
    % }
    <%args> $article => undef rt-4.4.2/share/html/Articles/Article/Elements/SelectSavedSearches0000664000175000017500000000574413131430353024622 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> use RT::SavedSearches; my $groups = $session{'CurrentUser'}->UserObj->OwnGroups; my %privacies; $privacies{'RT::User-' . $session{'CurrentUser'}->UserObj->Id} = 1; map { $privacies{'RT::Group-'.$_->Id} = $_ } @{$groups->ItemsArrayRef}; <%args> $Name => undef $Default => undef rt-4.4.2/share/html/Articles/Article/Elements/EditBasics0000664000175000017500000000714113131430353022745 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($ARGS{'id'} ne 'new') { % } % if ($ARGS{'id'} eq 'new' || $ArticleObj->CurrentUserHasRight('DisableArticle')) {
    <&|/l&>Name:
    <&|/l&>Summary:
    <&|/l&>Class: % if ($EditClass) { <& /Articles/Elements/SelectClass, Name => 'Class', Default =>$ArticleObj->ClassObj->Id&> % } else { <%$ClassObj->Name%> % }
    <&|/l&>Creator: <& /Elements/ShowUser, User => $ArticleObj->CreatorObj &>
    <&|/l&>Created: <%$ArticleObj->CreatedObj->AsString%>
    <&|/l&>Updated: <%$ArticleObj->LastUpdatedObj->AsString%>
    id && $ArticleObj->Disabled || $ARGS{'Disabled'} ) ? '' : 'checked="checked"' |n %> />
    % } <%INIT> <%ARGS> $EditClass => 1 $ClassObj => undef $ArticleObj => undef rt-4.4.2/share/html/Articles/Article/Display.html0000664000175000017500000000764713131430353021542 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <&| /Widgets/TitleBox, title => loc('The Basics'), class => 'article-basics', &>
    <&|/l&>Summary: <%$article->Summary%>
    <&|/l&>Class: <%$article->ClassObj->Name%>
    <&|/l&>Creator: <& /Elements/ShowUser, User => $article->CreatorObj &>
    <&|/l&>Created: <%$article->CreatedObj->AsString%>
    <&|/l&>Updated: <%$article->LastUpdatedObj->AsString%>
    % $m->callback( %ARGS, CallbackName => 'AfterBasics' ); <&| /Widgets/TitleBox, title => loc('Content'), class => 'article-content', &> <& /Elements/ShowCustomFields, Object => $article &> <&| /Widgets/TitleBox, title => loc('Links'), class => 'article-links', &> <& Elements/ShowLinks, article => $article &> <&| /Widgets/TitleBox, title => loc('Topics'), class => 'article-topics', &> <& Elements/ShowTopics, article => $article &> <%init> my $article = RT::Article->new( $session{'CurrentUser'} ); if ($Name) { $article->LoadByCols( Name => $Name ); } elsif ($id) { $article->Load($id); } unless ( $article->Id ) { if ( $ARGS{'Name'} ) { $m->comp( 'Edit.html', %ARGS ); return (); } else { $m->comp( "/Elements/Error", Why => loc("Article not found") ); } } unless ( $article->CurrentUserHasRight('ShowArticle') ) { $m->comp( "/Elements/Error", Why => loc("Permission Denied") ); } my $title = loc( "Article #[_1]: [_2]", $article->Id, $article->Name || loc("(no name)")); $id = $article->id; <%args> $id => undef $Name => undef rt-4.4.2/share/html/Articles/Article/PreCreate.html0000664000175000017500000000616113131430353021775 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Create an article in class...') &> <& /Elements/Tabs &> % if (not $classes_configured) { <& /Articles/Elements/NeedsSetup &> % } elsif (not @classes) { <&|/l&>You don't have permission to create Articles in any Class % } else { % } <%init> my $Classes = RT::Classes->new($session{'CurrentUser'}); $Classes->LimitToEnabled(); # This is a COUNT(), which doesn't apply ACLs; as such, we don't display # the warning if there are classes, but the user can't see them. my $classes_configured = $Classes->Count; # ->Next applies SeeClass, but we also want to check CreateArticle my @classes; while (my $class = $Classes->Next) { push @classes, $class if $class->CurrentUserHasRight("CreateArticle"); } # If there is only one, redirect to it MaybeRedirectForResults( Path => "/Articles/Article/Edit.html", Force => 1, Arguments => { Class => $classes[0]->id }, ) if @classes == 1; rt-4.4.2/share/html/NoAuth/0000775000175000017500000000000013131430353015276 5ustar vagrantvagrantrt-4.4.2/share/html/NoAuth/Helpers/0000775000175000017500000000000013131430353016700 5ustar vagrantvagrantrt-4.4.2/share/html/NoAuth/Helpers/CustomLogo/0000775000175000017500000000000013131430353020773 5ustar vagrantvagrantrt-4.4.2/share/html/NoAuth/Helpers/CustomLogo/dhandler0000664000175000017500000000456413131430353022510 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> if ( my $attr = $RT::System->FirstAttribute('UserLogo') ) { # The extra path in the url doesn't matter, we always want to serve the # latest logo if we have one. RT::Interface::Web::StaticFileHeaders(); my $content = $attr->Content; $r->content_type( $content->{type} ); $m->out( $content->{data} ); } else { # 404 return $m->decline; } rt-4.4.2/share/html/NoAuth/rss/0000775000175000017500000000000013131430353016105 5ustar vagrantvagrantrt-4.4.2/share/html/NoAuth/rss/dhandler0000664000175000017500000000553113131430353017615 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $path = $m->dhandler_arg; my $notfound = sub { my $mesg = shift; $r->headers_out->{'Status'} = '404 Not Found'; $RT::Logger->info("Error encountered in rss generation: $mesg"); $m->clear_and_abort; }; $notfound->("Invalid path: $path") unless $path =~ m!^([^/]+)/([^/]+)/?!; my ( $name, $auth ) = ( $1, $2 ); # Unescape parts $name =~ s/\%([0-9a-z]{2})/chr(hex($1))/gei; # convert to perl strings $name = Encode::decode( "UTF-8", $name); my $user = RT::User->new(RT->SystemUser); $user->Load($name); $notfound->("Invalid user: $user") unless $user->id; $notfound->("Invalid authstring") unless $user->ValidateAuthString( $auth, $ARGS{Query} . $ARGS{Order} . $ARGS{OrderBy} ); my $cu = RT::CurrentUser->new; $cu->Load($user); local $session{'CurrentUser'} = $cu; $m->comp("/Search/Elements/ResultsRSSView", %ARGS); rt-4.4.2/share/html/NoAuth/RichText/0000775000175000017500000000000013131430353017030 5ustar vagrantvagrantrt-4.4.2/share/html/NoAuth/RichText/autohandler0000664000175000017500000000432613131430353021266 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $file = $m->base_comp->source_file; if ($file =~ m{RichText/+ckeditor}) { $RT::Logger->crit("Invalid request directly to the rich text editor: $file"); $m->abort(403); } else { $m->call_next(); } rt-4.4.2/share/html/NoAuth/js/0000775000175000017500000000000013131430353015712 5ustar vagrantvagrantrt-4.4.2/share/html/NoAuth/js/dhandler0000664000175000017500000000453413131430353017424 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $arg = $m->dhandler_arg; if ( $arg =~ m{squished-[a-f0-9]{32}\.js$} ) { my $squished = RT::Interface::Web::SquishedJS(); # Don't send Last-Modified since we don't handle If-Modified-Since #$r->header_out( 'Last-Modified' => $squished->ModifiedTimeString ); $m->out( $squished->Content ); } else { return $m->decline; } rt-4.4.2/share/html/NoAuth/js/autohandler0000664000175000017500000000420413131430353020143 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> RT::Interface::Web::StaticFileHeaders(); $r->content_type('application/x-javascript; charset=utf-8'); $m->call_next(); return(); rt-4.4.2/share/html/NoAuth/Logout.html0000664000175000017500000000572013131430353017441 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Logout'), Refresh => RT->Config->Get('LogoutRefresh') &>
    <& /Elements/Footer, Menu => 0 &> % $m->abort(); <%INIT> my $URL = RT->Config->Get('WebPath')."/"; # Allow a callback to modify the URL we redirect to, which is useful for # external webauth systems $m->callback( %ARGS, CallbackName => 'ModifyLoginRedirect', URL => \$URL ); $m->callback( %ARGS, CallbackName => 'BeforeSessionDelete' ); if (keys %session) { RT::Interface::Web::InstantiateNewSession(); $session{'CurrentUser'} = RT::CurrentUser->new; } $m->callback( %ARGS, CallbackName => 'AfterSessionDelete' ); $m->notes->{RefreshURL} = $URL; rt-4.4.2/share/html/NoAuth/css/0000775000175000017500000000000013131430353016066 5ustar vagrantvagrantrt-4.4.2/share/html/NoAuth/css/rudder/0000775000175000017500000000000013131430353017353 5ustar vagrantvagrantrt-4.4.2/share/html/NoAuth/css/rudder/InHeader0000664000175000017500000000421013131430353020752 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} rt-4.4.2/share/html/NoAuth/css/rudder/AfterMenus0000664000175000017500000000554713131430353021362 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} rt-4.4.2/share/html/NoAuth/css/web2/0000775000175000017500000000000013131430353016725 5ustar vagrantvagrantrt-4.4.2/share/html/NoAuth/css/web2/InHeader0000664000175000017500000000443413131430353020334 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} rt-4.4.2/share/html/NoAuth/css/web2/AfterMenus0000664000175000017500000000643213131430353020726 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} rt-4.4.2/share/html/NoAuth/css/dhandler0000664000175000017500000000463513131430353017602 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ONCE> my $squisher; <%INIT> my $arg = $m->dhandler_arg; if ( $arg =~ m{(.*)/squished-[0-9a-f]{32}\.css$} ) { my $style = $1; my $squished = RT::Interface::Web::SquishedCSS( $style ); # Don't send Last-Modified since we don't handle If-Modified-Since #$r->header_out( 'Last-Modified' => $squished->ModifiedTimeString ); $m->out( $squished->Content ); } else { return $m->decline; } rt-4.4.2/share/html/NoAuth/css/autohandler0000664000175000017500000000416513131430353020325 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> RT::Interface::Web::StaticFileHeaders(); $r->content_type('text/css; charset=utf-8') ; $m->call_next(); return(); rt-4.4.2/share/html/NoAuth/css/ballard/0000775000175000017500000000000013131430353017467 5ustar vagrantvagrantrt-4.4.2/share/html/NoAuth/css/ballard/InHeader0000664000175000017500000000443713131430353021101 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} rt-4.4.2/share/html/NoAuth/css/base/0000775000175000017500000000000013131430353017000 5ustar vagrantvagrantrt-4.4.2/share/html/NoAuth/css/base/farbtastic.css0000664000175000017500000000277213131430353021644 0ustar vagrantvagrant/** * Farbtastic Color Picker 1.2 * © 2008 Steven Wittens * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ .farbtastic { position: relative; } .farbtastic * { position: absolute; cursor: crosshair; } .farbtastic, .farbtastic .wheel { width: 195px; height: 195px; } .farbtastic .color, .farbtastic .overlay { top: 47px; left: 47px; width: 101px; height: 101px; } .farbtastic .wheel { background: url(<%RT->Config->Get('WebPath')%>/NoAuth/images/farbtastic/wheel.png) no-repeat; width: 195px; height: 195px; } .farbtastic .overlay { background: url(<%RT->Config->Get('WebPath')%>/NoAuth/images/farbtastic/mask.png) no-repeat; } .farbtastic .marker { width: 17px; height: 17px; margin: -8px 0 0 -8px; overflow: hidden; background: url(<%RT->Config->Get('WebPath')%>/NoAuth/images/farbtastic/marker.png) no-repeat; } rt-4.4.2/share/html/NoAuth/css/aileron/0000775000175000017500000000000013131430353017517 5ustar vagrantvagrantrt-4.4.2/share/html/NoAuth/css/aileron/InHeader0000664000175000017500000000444113131430353021124 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} rt-4.4.2/share/html/NoAuth/css/aileron/AfterMenus0000664000175000017500000000553513131430353021523 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} rt-4.4.2/share/html/NoAuth/iCal/0000775000175000017500000000000013131430353016146 5ustar vagrantvagrantrt-4.4.2/share/html/NoAuth/iCal/dhandler0000664000175000017500000001251713131430353017660 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> use Data::ICal; use Data::ICal::Entry::Event; my $path = $m->dhandler_arg; my $notfound = sub { $r->headers_out->{'Status'} = '404 Not Found'; $m->clear_and_abort; }; $notfound->() unless $path =~ m!^([^/]+)/([^/]+)/(.*)(\.(ical|ics))?!; my ($name, $auth, $search) = ($1, $2, $3); # Unescape parts $_ =~ s/\%([0-9a-z]{2})/chr(hex($1))/gei for $name, $search; # Decode from bytes to characters $_ = Encode::decode( "UTF-8", $_ ) for $name, $search; my $user = RT::User->new( RT->SystemUser ); $user->Load( $name ); $notfound->() unless $user->id; $notfound->() unless $user->ValidateAuthString( $auth, $search ); my $cu = RT::CurrentUser->new; $cu->Load($user); my $tickets = RT::Tickets->new( $cu ); $tickets->FromSQL($search); $r->headers_out->{'Content-Type'} = 'text/calendar; charset=utf-8'; my $feed = Data::ICal->new(); $feed->add_properties('x-wr-calname' => ["RT due dates" => {value => "TEXT"}]); $feed->add_properties('x-wr-caldesc' => ["Due dates for RT tickets: $search" => {value => "TEXT"}]); $feed->add_properties('calscale' => ['gregorian']); $feed->add_properties('method' => ['publish']); $feed->add_properties('prodid' => ["-//" . RT->Config->Get('rtname') ."//"]); while (my $t = $tickets->Next) { next unless $t->DueObj->IsSet; my $starttime = $t->StartsObj->IsSet ? $t->StartsObj : $t->CreatedObj; my $url; if ( RT->Config->Get('CanonicalizeURLsInFeeds') ) { $url = RT->Config->Get('WebURL'); } else { $url = RT::Interface::Web::GetWebURLFromRequest(); } $url .= "Ticket/Display.html?id=".$t->id, my $now = RT::Date->new( $cu ); $now->SetToNow; my $start = Data::ICal::Entry::Event->new; my $end = Data::ICal::Entry::Event->new; $_->add_properties( url => $url, description => $url, organizer => $t->OwnerObj->Name, dtstamp => $now->iCal, created => $t->CreatedObj->iCal, 'last-modified' => $t->LastUpdatedObj->iCal, ) for $start, $end; my %time = ( Time => 0 ); my %ical_value = ( value => 'DATE' ); if ( defined $ARGS{Time} ? $ARGS{Time} : RT->Config->Get('TimeInICal', $user) ) { $time{Time} = 1; $ical_value{value} = 'DATE-TIME'; } if( $ARGS{SingleEvent} ){ $start->add_properties( summary => $t->Subject, dtstart => [$starttime->iCal( %time ) => \%ical_value ], dtend => [$t->DueObj->iCal( %time ) => \%ical_value ], ); $feed->add_entry($start); } else{ $start->add_properties( summary => "Start: ".$t->Subject, dtstart => [$starttime->iCal( %time ) => \%ical_value ], dtend => [$starttime->iCal( %time ) => \%ical_value ], ); $end->add_properties( summary => "Due: ".$t->Subject, dtstart => [$t->DueObj->iCal( %time ) => \%ical_value ], dtend => [$t->DueObj->iCal( %time ) => \%ical_value ], ); $feed->add_entry($start); $feed->add_entry($end); } } $m->clear_buffer; $m->out($feed->as_string); $m->abort; rt-4.4.2/share/html/NoAuth/Login.html0000664000175000017500000000441613131430353017241 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my ($good, $msg) = RT::Interface::Web::AttemptPasswordAuthentication(\%ARGS); $ARGS{'actions'} = [$msg] if not $good and $msg; % if ( RT::Interface::Web::MobileClient() || $ARGS{mobile} ) { <& /m/_elements/login, %ARGS &> % } else { <& /Elements/Login, %ARGS &> % } rt-4.4.2/share/html/Ticket/0000775000175000017500000000000013131430353015323 5ustar vagrantvagrantrt-4.4.2/share/html/Ticket/History.html0000664000175000017500000000550413131430353017656 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Ticket History # [_1] [_2]", $Ticket->Id, $Ticket->Subject) &> <& /Elements/Tabs &> % $m->callback( %ARGS, Ticket => $Ticket, CallbackName => 'BeforeActionList' );
    <& /Elements/ShowHistory, Object => $Ticket, ShowHeaders => $ARGS{'ShowHeaders'}, Attachments => $attachments, AttachmentContent => $attachment_content, DisplayPath => 'History.html', &> % $m->callback( %ARGS, CallbackName => 'AfterShowHistory', Ticket => $Ticket ); <%ARGS> $id => undef <%INIT> my $Ticket = LoadTicket ($id); unless ($Ticket->CurrentUserHasRight('ShowTicket')) { Abort("No permission to view ticket"); } $Ticket->CurrentUser->AddRecentlyViewedTicket($Ticket); my $attachments = $Ticket->Attachments; my $attachment_content = $Ticket->TextAttachments; rt-4.4.2/share/html/Ticket/ModifyPeople.html0000664000175000017500000001466713131430353020623 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Modify people related to ticket #[_1]', $Ticket->id) &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $Ticket); <& /Elements/ListActions, actions => \@results &>
    % $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS ); <&| /Widgets/TitleBox, title => loc('Modify people related to ticket #[_1]', $Ticket->Id), width => "100%", color=> "#333399", class=>'ticket-info-people' &> <& Elements/EditPeople, Ticket => $Ticket, UserField => $UserField, UserString => $UserString, UserOp => $UserOp, GroupString => $GroupString, GroupOp => $GroupOp, GroupField => $GroupField &> <&| /Widgets/TitleBox, title => loc("Modify who receives mail for ticket #[_1]", $Ticket->Id), width => "100%", color=> "#333399", class=>'ticket-info-squelch' &>

    <&|/l&>The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket.

    <%PERL> my $all_recipients_checked = (grep { !$_ } values %recips) ? 0 : 1; >
      % for my $addr (sort keys %recips) {
    • >
    • % }
    <& /Elements/Submit, Name => 'SubmitTicket', Label => loc('Save Changes'), Caption => loc("If you've updated anything above, be sure to"), color => "#333399" &>
    % $m->callback(CallbackName => 'AfterForm', ARGSRef => \%ARGS, Ticket => $Ticket); <%INIT> my @results; my $Ticket = LoadTicket($id); $m->callback( TicketObj => $Ticket, ARGSRef => \%ARGS ); # Update the squelch list my %squelched = map {$_->Content => 1} $Ticket->SquelchMailTo; my %checked = map {$_ => 1} grep {defined} (ref $ARGS{'checked_recipient'} eq "ARRAY" ? @{$ARGS{'checked_recipient'}} : defined $ARGS{'checked_recipient'} ? ($ARGS{'checked_recipient'}) : ()); my @all = grep {defined} (ref $ARGS{'autorecipient'} eq "ARRAY" ? @{$ARGS{'autorecipient'}} : defined $ARGS{'autorecipient'} ? ($ARGS{'autorecipient'}) : ()); $Ticket->UnsquelchMailTo($_) for grep {$squelched{$_}} keys %checked; $Ticket->SquelchMailTo($_) for grep {!$squelched{$_} and !$checked{$_}} @all; # if we're trying to search for watchers and nothing else unless ($OnlySearchForPeople or $OnlySearchForGroup) { $Ticket->Atomic(sub{ push @results, ProcessTicketBasics( TicketObj => $Ticket, ARGSRef => \%ARGS); push @results, ProcessTicketWatchers( TicketObj => $Ticket, ARGSRef => \%ARGS); push @results, ProcessObjectCustomFieldUpdates( TicketObj => $Ticket, ARGSRef => \%ARGS ); }); } # Use the ticket's scrips to figure out the new list of recipients. my @txns = $Ticket->DryRun( sub { my $MIME = MIME::Entity->build( Type => "text/plain", Data => "" ); $Ticket->Comment(MIMEObj => $MIME); $Ticket->Correspond(MIMEObj => $MIME); } ); my %recips=(); for my $scrip (map {@{$_->Scrips->Prepared}} @txns) { next unless $scrip->ActionObj->Action->isa('RT::Action::SendEmail'); for my $type (qw(To Cc Bcc)) { $recips{$_->address} = 1 for $scrip->ActionObj->Action->$type(); } } for my $rule (map {@{$_->Rules}} @txns) { next unless $rule->{hints} && $rule->{hints}{class} eq "SendEmail"; for my $type (qw(To Cc Bcc)) { $recips{$_} = 1 for @{$rule->{hints}{recips}{$type}}; } } # Use tkt squelch list to get recipients who will NOT get mail: $recips{$_->Content} = 0 for $Ticket->SquelchMailTo; $Ticket->CurrentUser->AddRecentlyViewedTicket($Ticket); <%ARGS> $OnlySearchForPeople => undef $OnlySearchForGroup => undef $UserField => undef $UserOp => undef $UserString => undef $GroupField => undef $GroupOp => undef $GroupString => undef $id => undef rt-4.4.2/share/html/Ticket/Modify.html0000664000175000017500000001155713131430353017451 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Modify ticket #[_1]', $TicketObj->Id) &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $TicketObj); <& /Elements/ListActions, actions => \@results &>
    % $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS ); <&| /Widgets/TitleBox, title => loc('Modify ticket #[_1]',$TicketObj->Id), class=>'ticket-info-basics' &> <& Elements/EditBasics, TicketObj => $TicketObj, defaults => \%ARGS, InTable => 1 &> <& /Elements/EditCustomFields, %ARGS, Object => $TicketObj, Grouping => 'Basics', InTable => 1 &>
    % $m->callback( CallbackName => 'AfterBasics', Ticket => $TicketObj ); <& /Elements/EditCustomFieldCustomGroupings, %ARGS, Object => $TicketObj, AsTable => !!RT->Config->Get('EditCustomFieldsSingleColumn', $session{'CurrentUser'}) &> <& /Elements/Submit, Name => 'SubmitTicket', Label => loc('Save Changes'), Caption => loc("If you've updated anything above, be sure to"), color => "#993333" &>
    % $m->callback(CallbackName => 'AfterForm', ARGSRef => \%ARGS, Ticket => $TicketObj); <%INIT> my $TicketObj = LoadTicket($id); my $CustomFields = $TicketObj->CustomFields; my @results; my $skip_update = 0; # Now let callbacks have a chance at editing %ARGS $m->callback( TicketObj => $TicketObj, CustomFields => $CustomFields, ARGSRef => \%ARGS, skip_update => \$skip_update, results => \@results ); { my ($status, @msg) = $m->comp( '/Elements/ValidateCustomFields', Object => $TicketObj, CustomFields => $CustomFields, ARGSRef => \%ARGS, ); unless ($status) { push @results, @msg; $skip_update = 1; } } unless ($skip_update) { $TicketObj->Atomic(sub{ push @results, ProcessTicketBasics(TicketObj => $TicketObj, ARGSRef => \%ARGS); push @results, ProcessTicketWatchers(TicketObj => $TicketObj, ARGSRef => \%ARGS); push @results, ProcessObjectCustomFieldUpdates(Object => $TicketObj, ARGSRef => \%ARGS); $m->callback( CallbackName => 'ProcessUpdates', TicketObj => $TicketObj, ARGSRef => \%ARGS, Results => \@results ); }); MaybeRedirectForResults( Actions => \@results, Path => "/Ticket/Modify.html", Arguments => { id => $TicketObj->id }, ); } unless ($TicketObj->CurrentUserHasRight('ShowTicket')) { if (@results) { Abort("A change was applied successfully, but you no longer have permissions to view the ticket", Actions => \@results); } else { Abort("No permission to view ticket"); } } $TicketObj->CurrentUser->AddRecentlyViewedTicket($TicketObj); <%ARGS> $id => undef rt-4.4.2/share/html/Ticket/Graphs/0000775000175000017500000000000013131430353016547 5ustar vagrantvagrantrt-4.4.2/share/html/Ticket/Graphs/Elements/0000775000175000017500000000000013131430353020323 5ustar vagrantvagrantrt-4.4.2/share/html/Ticket/Graphs/Elements/EditGraphProperties0000664000175000017500000001366513131430353024205 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => loc('Graph Properties') &> <% loc('Direction') %>
    <% loc('Main type of links') %> <% loc('maximum depth') %>
    <% loc('Show as well') %>: % foreach my $type ( @link_types ) { % my $checked = ''; % $checked = 'checked="checked"' if grep $type eq $_, @ShowLinks; /> % }
    % my @properties = RT::Graph::Tickets->TicketProperties( $session{'CurrentUser'} ); <% loc('Fill boxes with color using') %>:
    % if ( RT::Link->can('Description' ) ) { % my $checked = ''; % $checked = 'checked="checked"' if $ShowLinkDescriptions; />
    % } <%PERL> for my $i ( 1..($MaxDepth||6) ) { my @default; if ( my $tmp = $ARGS{ 'Level-'. $i .'-Properties' } ) { @default = ref $tmp? @$tmp : ($tmp); } $m->comp('SELF:Properties', Level => $i, Available => \@properties, Default => \@default, ); } <& /Elements/Submit, Label => loc('Update Graph'), Name => 'Update' &> <%ARGS> $id => undef $Direction => 'TB' $LeadingLink => 'Members' @ShowLinks => ('MemberOf', 'DependsOn', 'RefersTo') $MaxDepth => 3 $FillUsing => '' $ShowLinkDescriptions => 0 <%INIT> require RT::Graph::Tickets; require RT::Link; my @link_types = qw(Members MemberOf RefersTo ReferredToBy DependsOn DependedOnBy); #loc_qw @ShowLinks = grep $_ ne $LeadingLink, @ShowLinks; <%METHOD Properties> <%ARGS> @Available => () @Default => () $Level => 1, <%INIT> my $id = "graph-properties-box-$Level"; my $class = ''; $class = 'class="hidden"' if $Level != 1 && !@Default; <% loc('Show Tickets Properties on [_1] level', $Level) %> (<% loc('open/close') %>): > % while ( my ($group, $list) = (splice @Available, 0, 2) ) { % }
    <% loc($group) %>: % foreach my $prop ( @$list ) { % my $checked = ''; % $checked = 'checked="checked"' if grep $_ eq $prop, @Default; /> % }

    rt-4.4.2/share/html/Ticket/Graphs/Elements/ShowLegends0000664000175000017500000000545613131430353022502 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => loc('Legends'), hideable => $hideable &> % if ( $FillUsing ) { % }
    <% loc('Status') %>: % foreach my $status ( sort keys %RT::Graph::Tickets::ticket_status_style ) { % my $style = $RT::Graph::Tickets::ticket_status_style{ $status }; <% loc($status) %> % }
    <% loc($FillUsing) %>: % foreach my $value ( sort keys %RT::Graph::Tickets::fill_cache ) { % my $color = $RT::Graph::Tickets::fill_cache{ $value }; <% loc($value) %> % }
    <%ARGS> $FillUsing => '' $hideable => 1 rt-4.4.2/share/html/Ticket/Graphs/Elements/ShowGraph0000664000175000017500000000530613131430353022154 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <% safe_run_child { Encode::decode( "UTF-8", $graph->as_cmapx ) } |n %>
    <& ShowLegends, %ARGS, Ticket => $ticket &> <%ARGS> $id => undef <%INIT> use RT::Util 'safe_run_child'; my $ticket = RT::Ticket->new( $session{'CurrentUser'} ); $ticket->Load( $id ); unless ( $ticket->id ) { $RT::Logger->error("Couldn't load ticket $id"); return; } $ARGS{'id'} = $id = $ticket->id; require RT::Graph::Tickets; my $graph = RT::Graph::Tickets->TicketLinks( %ARGS, Graph => undef, Ticket => $ticket, ); rt-4.4.2/share/html/Ticket/Graphs/dhandler0000664000175000017500000000514413131430353020257 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $arg = $m->dhandler_arg; my $id; if ( $arg =~ m{^(\d+)$}i ) { ($id) = ($1); } else { return $m->abort( 404 ); } my $ticket = RT::Ticket->new($session{'CurrentUser'} ); $ticket->Load( $id ); unless ( $ticket->id ) { $RT::Logger->error("Couldn't load ticket #$id"); return $m->abort( 404 ); } require RT::Graph::Tickets; my $graph = RT::Graph::Tickets->TicketLinks( %ARGS, Graph => undef, Ticket => $ticket, ); $r->content_type( 'image/png' ); $m->clear_buffer; my $png; use RT::Util 'safe_run_child'; safe_run_child { $graph->as_png(\$png) }; $m->out( $png ); $m->abort; rt-4.4.2/share/html/Ticket/Graphs/index.html0000664000175000017500000001032413131430353020544 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $ticket); <& /Elements/ListActions, actions => \@results &> <& Elements/ShowGraph, %ARGS, Ticket => $ticket &>
    % $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS ); <& Elements/EditGraphProperties, %ARGS, Ticket => $ticket &> <& /Search/Elements/EditSearches, %$saved_search, Title => loc('Manage saved graphs'), Type => 'Graph', SearchFields => \@save_arguments, CurrentSearch => { map { $_ => $ARGS{$_} } @save_arguments }, AllowCopy => 0, &>
    % $m->callback(CallbackName => 'AfterForm', ARGSRef => \%ARGS, Ticket => $ticket); <%ARGS> <%INIT> use RT::Graph::Tickets; my $id = $ARGS{'id'}; my $ticket = LoadTicket( $id ); $ARGS{'id'} = $id = $ticket->id; $m->callback( TicketObj => $ticket, ARGSRef => \%ARGS ); my @results; my @save_arguments = qw(id Direction LeadingLink ShowLinks MaxDepth FillUsing ShowLinkDescriptions); foreach my $level ( 0 .. 6 ) { push @save_arguments, "Level-". $level ."-Properties"; } my $saved_search = { Type => 'Graph' }; push @results, $m->comp( '/Search/Elements/EditSearches:Init', %ARGS, Query => \%ARGS, SavedSearch => $saved_search, SearchFields => \@save_arguments, ); $ARGS{'LeadingLink'} ||= 'Members'; if ( $ARGS{'ShowLinks'} && !ref $ARGS{'ShowLinks'} ) { $ARGS{'ShowLinks'} = [$ARGS{'ShowLinks'}]; } elsif ( !$ARGS{'ShowLinks'} ) { $ARGS{'ShowLinks'} = [ qw(MemberOf DependsOn RefersTo) ]; } $ARGS{'ShowLinks'} = [ grep $_ ne $ARGS{'LeadingLink'}, @{ $ARGS{'ShowLinks'} } ]; $ARGS{'MaxDepth'} = 3 unless defined $ARGS{'MaxDepth'} && length $ARGS{'MaxDepth'}; push @results, $m->comp( '/Search/Elements/EditSearches:Save', %ARGS, Query => \%ARGS, SavedSearch => $saved_search, SearchFields => \@save_arguments, ); my $title = loc( "Ticket #[_1] relationships graph", $id ); rt-4.4.2/share/html/Ticket/ModifyDates.html0000664000175000017500000000635313131430353020430 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Modify dates for ticket #[_1]', $TicketObj->Id) &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $TicketObj); <& /Elements/ListActions, actions => \@results &>
    % $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS ); <&| /Widgets/TitleBox,title => loc('Modify dates for ticket #[_1]', $TicketObj->Id), class=> 'ticket-info-dates' &> <& Elements/EditDates, TicketObj => $TicketObj &> <& /Elements/Submit, Name => 'SubmitTicket', Label => loc('Save Changes') &>
    % $m->callback(CallbackName => 'AfterForm', ARGSRef => \%ARGS, Ticket => $TicketObj); <%INIT> my $TicketObj = LoadTicket($id); my @results; $m->callback( TicketObj => $TicketObj, ARGSRef => \%ARGS, results => \@results ); $TicketObj->Atomic(sub{ push @results, ProcessTicketDates( TicketObj => $TicketObj, ARGSRef => \%ARGS); push @results, ProcessObjectCustomFieldUpdates(Object => $TicketObj, ARGSRef => \%ARGS); }); $TicketObj->CurrentUser->AddRecentlyViewedTicket($TicketObj); <%ARGS> $id => undef rt-4.4.2/share/html/Ticket/Update.html0000664000175000017500000003610113131430353017434 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', ARGSRef => \%ARGS, Ticket => $TicketObj); <& /Elements/ListActions, actions => \@results &>
    % $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS, Ticket => $TicketObj, CanRespond => $CanRespond, CanComment => $CanComment, ResponseDefault => $ResponseDefault, CommentDefault => $CommentDefault ); <& /Elements/Crypt/SignEncryptWidget:ShowIssues, self => $gnupg_widget &>
    <&|/Widgets/TitleBox, title => loc('Ticket and Transaction') &> % $m->callback(CallbackName => 'AfterTableOpens', ARGSRef => \%ARGS, Ticket => $TicketObj); % my $skip; % $m->callback( %ARGS, CallbackName => 'BeforeUpdateType', skip => \$skip ); % if (!$skip) {
    % } <& /Ticket/Elements/EditBasics, TicketObj => $TicketObj, InTable => 1, fields => [ { name => 'Status', comp => '/Ticket/Elements/SelectStatus', args => { Name => 'Status', Default => $DefaultStatus, TicketObj => $TicketObj, }, }, { name => 'Owner', comp => '/Elements/SelectOwner', args => { Name => "Owner", TicketObj => $TicketObj, QueueObj => $TicketObj->QueueObj, DefaultLabel => loc("[_1] (Unchanged)", $TicketObj->OwnerObj->Format), Default => $ARGS{'Owner'} } }, { special => 'roles' }, { name => 'Worked', comp => '/Elements/EditTimeValue', args => { Name => 'UpdateTimeWorked', Default => $ARGS{UpdateTimeWorked}||'', } }, ] &> % $m->callback( %ARGS, CallbackName => 'AfterWorked', Ticket => $TicketObj ); <& /Ticket/Elements/EditTransactionCustomFields, %ARGS, TicketObj => $TicketObj, AsTable => 1 &>
    <&|/l&>Update Type: % $m->callback( %ARGS, CallbackName => 'AfterUpdateType' );
    % $m->callback( %ARGS, CallbackName => 'RightColumnBottom', Ticket => $TicketObj );
    % if ( RT->Config->Get('SimplifiedRecipients', $session{'CurrentUser'}) ) { <&|/Widgets/TitleBox, title => loc('Recipients'), id => 'recipients' &> % unless ($TicketObj->CurrentUserHasRight('ShowOutgoingEmail')) { % for my $address (grep {defined} ref $ARGS{TxnSendMailTo} ? @{$ARGS{TxnSendMailTo}} : $ARGS{TxnSendMailTo}) { % } % } %} <&|/Widgets/TitleBox, title => loc('Message'), class => 'messagedetails' &> <& /Ticket/Elements/UpdateCc, %ARGS, TicketObj => $TicketObj &> % if ( $gnupg_widget ) { % } % $m->callback( %ARGS, CallbackName => 'AfterGnuPG' ); <& /Ticket/Elements/AddAttachments, %ARGS, TicketObj => $TicketObj &>
      <& /Elements/Crypt/SignEncryptWidget, self => $gnupg_widget, TicketObj => $TicketObj, &>
    <&|/l&>Subject: % $m->callback( %ARGS, CallbackName => 'AfterSubject' );
    <&|/l&>Message: <& /Articles/Elements/BeforeMessageBox, %ARGS &> % $m->callback( %ARGS, CallbackName => 'BeforeMessageBox' ); % if (exists $ARGS{UpdateContent}) { % # preserve QuoteTransaction so we can use it to set up sane references/in/reply to % my $temp = $ARGS{'QuoteTransaction'}; % delete $ARGS{'QuoteTransaction'}; <& /Elements/MessageBox, Name=>"UpdateContent", Default=>$ARGS{UpdateContent}, IncludeSignature => 0, %ARGS&> % $ARGS{'QuoteTransaction'} = $temp; % } else { % my $IncludeSignature = 1; % $IncludeSignature = 0 if $Action ne 'Respond' && !RT->Config->Get('MessageBoxIncludeSignatureOnComment'); <& /Elements/MessageBox, Name=>"UpdateContent", IncludeSignature => $IncludeSignature, %ARGS &> % } % $m->callback( %ARGS, CallbackName => 'AfterMessageBox' );
    % $m->callback( %ARGS, CallbackName => 'BeforeSubmit', Ticket => $TicketObj ); <& /Elements/Submit, Label => loc('Update Ticket'), Name => 'SubmitTicket', id => 'SubmitTicket' &> % $m->callback( %ARGS, CallbackName => 'BeforeScrips', Ticket => $TicketObj ); % if ($TicketObj->CurrentUserHasRight('ShowOutgoingEmail')) { <&|/Widgets/TitleBox, title => loc('Scrips and Recipients'), id => 'previewscrips', rolledup => RT->Config->Get('SimplifiedRecipients', $session{'CurrentUser'}) &> % for my $address (grep {defined} ref $ARGS{TxnSendMailTo} ? @{$ARGS{TxnSendMailTo}} : $ARGS{TxnSendMailTo}) { % } % }
    % $m->callback( %ARGS, CallbackName => 'AfterScrips', Ticket => $TicketObj );

    % $m->callback( %ARGS, CallbackName => 'AfterForm', Ticket => $TicketObj ); % if ($TicketObj->CurrentUserHasRight('ShowOutgoingEmail') or RT->Config->Get('SimplifiedRecipients', $session{'CurrentUser'})) { % } <%INIT> my $CanRespond = 0; my $CanComment = 0; my $checks_failure = 0; my $TicketObj = LoadTicket($id); my @results; $m->callback( Ticket => $TicketObj, ARGSRef => \%ARGS, checks_failure => \$checks_failure, results => \@results, CallbackName => 'Initial' ); $m->scomp( '/Articles/Elements/SubjectOverride', Ticket => $TicketObj, ARGSRef => \%ARGS, results => \@results ); unless($DefaultStatus){ $DefaultStatus=($ARGS{'Status'} ||$TicketObj->Status()); } my $title = loc("Update ticket #[_1] ([_2])", $TicketObj->id, $TicketObj->Subject||''); # Things needed in the template - we'll do the processing here, just # for the convenience: my ($CommentDefault, $ResponseDefault); if ($Action ne 'Respond') { $CommentDefault = qq[ selected="selected"]; $ResponseDefault = ""; } else { $CommentDefault = ""; $ResponseDefault = qq[ selected="selected"]; } my $type = $ARGS{'UpdateType'} ? $ARGS{'UpdateType'} : lc $Action eq 'respond' ? 'response' : lc $Action eq 'comment' ? 'private' : 'none' ; $CanRespond = 1 if ( $TicketObj->CurrentUserHasRight('ReplyToTicket') or $TicketObj->CurrentUserHasRight('ModifyTicket') ); $CanComment = 1 if ( $TicketObj->CurrentUserHasRight('CommentOnTicket') or $TicketObj->CurrentUserHasRight('ModifyTicket') ); ProcessAttachments(ARGSRef => \%ARGS); my %squelched = ProcessTransactionSquelching( \%ARGS ); $ARGS{'SquelchMailTo'} = [keys %squelched] if keys %squelched; my $gnupg_widget = $m->comp('/Elements/Crypt/SignEncryptWidget:new', Arguments => \%ARGS ); $m->comp( '/Elements/Crypt/SignEncryptWidget:Process', self => $gnupg_widget, TicketObj => $TicketObj, ); if ( $ARGS{'SubmitTicket'} ) { my ($status, @msg) = $m->comp( '/Elements/ValidateCustomFields', CustomFields => $TicketObj->TransactionCustomFields, Object => RT::Transaction->new( $session{'CurrentUser'} ), ARGSRef => \%ARGS ); unless ( $status ) { push @results, @msg; $checks_failure = 1; } $status = $m->comp('/Elements/Crypt/SignEncryptWidget:Check', self => $gnupg_widget, TicketObj => $TicketObj, ); $checks_failure = 1 unless $status; } # check email addresses for RT's { foreach my $field ( qw(UpdateCc UpdateBcc) ) { my $value = $ARGS{ $field }; next unless defined $value && length $value; my @emails = Email::Address->parse( $value ); foreach my $email ( grep RT::EmailParser->IsRTAddress($_->address), @emails ) { push @results, loc("[_1] is an address RT receives mail at. Adding it as a '[_2]' would create a mail loop", $email->format, loc(substr($field, 6)) ); $checks_failure = 1; $email = undef; } $ARGS{ $field } = join ', ', map $_->format, grep defined, @emails; } } # $skip_update is provided below by reference to allow a final check to stop # the update and print a message for the user to fix something. my $skip_update = 0; $m->callback( CallbackName => 'BeforeUpdate', ARGSRef => \%ARGS, skip_update => \$skip_update, checks_failure => $checks_failure, results => \@results, TicketObj => $TicketObj ); if ( !$checks_failure && !$skip_update && exists $ARGS{SubmitTicket} ) { $m->callback( Ticket => $TicketObj, ARGSRef => \%ARGS, CallbackName => 'BeforeDisplay' ); return $m->comp('Display.html', TicketObj => $TicketObj, %ARGS); } $TicketObj->CurrentUser->AddRecentlyViewedTicket($TicketObj); <%ARGS> $id => undef $Action => '' $DefaultStatus => undef rt-4.4.2/share/html/Ticket/ModifyAll.html0000664000175000017500000002015713131430353020076 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Ticket #[_1] Jumbo update: [_2]", $Ticket->Id, $Ticket->Subject) &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $Ticket); <& /Elements/ListActions, actions => \@results &>
    % $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS ); <&| /Widgets/TitleBox, title => loc('Modify ticket # [_1]', $Ticket->Id), class=>'ticket-info-basics' &> <& Elements/EditBasics, TicketObj => $Ticket, defaults => \%ARGS, ExcludeCustomRoles => 1 &> <& /Elements/EditCustomFields, Object => $Ticket, Grouping => 'Basics' &> % $m->callback(CallbackName => 'AfterBasics', Ticket => $Ticket); <& /Elements/EditCustomFieldCustomGroupings, Object => $Ticket &> <&| /Widgets/TitleBox, title => loc('Dates'), class=>'ticket-info-dates'&> <& Elements/EditDates, TicketObj => $Ticket &>
    <&| /Widgets/TitleBox, title => loc('People'), class=>'ticket-info-people' &> <& Elements/EditPeople, Ticket => $Ticket, UserField => $UserField, UserString => $UserString, UserOp => $UserOp, GroupString => $GroupString, GroupOp => $GroupOp, GroupField => $GroupField &>
    <&| /Widgets/TitleBox, title => loc('Links'), class=>'ticket-info-links' &> <& /Elements/EditLinks, Object => $Ticket &>
    <&| /Widgets/TitleBox, title => loc('Merge'), class=>'ticket-info-merge' &> <& Elements/EditMerge, Ticket => $Ticket, %ARGS &>
    <&| /Widgets/TitleBox, title => loc('Update ticket') &> <& /Ticket/Elements/AddAttachments, %ARGS, TicketObj => $Ticket &>
    <&|/l&>Update Type: % $m->callback( %ARGS, CallbackName => 'AfterUpdateType' );
    <&|/l&>Subject: % $m->callback( %ARGS, CallbackName => 'AfterSubject' );
    <& /Ticket/Elements/EditTransactionCustomFields, %ARGS, TicketObj => $Ticket &>
    <&|/l&>Content: % $m->callback( %ARGS, CallbackName => 'BeforeMessageBox' ); % if (defined $ARGS{UpdateContent} && length($ARGS{UpdateContent})) { <& /Elements/MessageBox, Name=>"UpdateContent", Default=>$ARGS{UpdateContent}, IncludeSignature => 0 &> % } else { <& /Elements/MessageBox, Name=>"UpdateContent", QuoteTransaction=>$ARGS{QuoteTransaction} &> % }
    <& /Elements/Submit, Name => 'SubmitTicket', Label => loc('Save Changes'), Caption => loc("If you've updated anything above, be sure to"), color => "#333399" &>
    % $m->callback(CallbackName => 'AfterForm', ARGSRef => \%ARGS, Ticket => $Ticket); <%INIT> my $Ticket = LoadTicket($id); my $CustomFields = $Ticket->CustomFields; my $CanRespond = 0; my $CanComment = 0; $CanRespond = 1 if ( $Ticket->CurrentUserHasRight('ReplyToTicket') or $Ticket->CurrentUserHasRight('ModifyTicket') ); $CanComment = 1 if ( $Ticket->CurrentUserHasRight('CommentOnTicket') or $Ticket->CurrentUserHasRight('ModifyTicket') ); ProcessAttachments(ARGSRef => \%ARGS); my @results; my $skip_update = 0; $m->callback( TicketObj => $Ticket, ARGSRef => \%ARGS, skip_update => \$skip_update, results => \@results ); { my ($status, @msg) = $m->comp( '/Elements/ValidateCustomFields', Object => $Ticket, CustomFields => $CustomFields, ARGSRef => \%ARGS, ); unless ($status) { push @results, @msg; $skip_update = 1; } } # There might be two owners. if ( ref ($ARGS{'Owner'} )) { my @owners =@{$ARGS{'Owner'}}; delete $ARGS{'Owner'}; foreach my $owner(@owners){ if (defined($owner) && $owner =~ /\D/) { $ARGS{'Owner'} = $owner unless ($Ticket->OwnerObj->Name eq $owner); } elsif (length $owner) { $ARGS{'Owner'} = $owner unless ($Ticket->OwnerObj->id == $owner); } } } unless ($skip_update or $OnlySearchForPeople or $OnlySearchForGroup or $ARGS{'AddMoreAttach'} ) { $Ticket->Atomic(sub { push @results, ProcessTicketWatchers( TicketObj => $Ticket, ARGSRef => \%ARGS); push @results, ProcessObjectCustomFieldUpdates( Object => $Ticket, ARGSRef => \%ARGS); push @results, ProcessTicketDates( TicketObj => $Ticket, ARGSRef => \%ARGS); push @results, ProcessUpdateMessage( TicketObj => $Ticket, ARGSRef=>\%ARGS ); push @results, ProcessTicketBasics( TicketObj => $Ticket, ARGSRef => \%ARGS ); push @results, ProcessTicketLinks( TicketObj => $Ticket, ARGSRef => \%ARGS); }); MaybeRedirectForResults( Actions => \@results, Path => "/Ticket/ModifyAll.html", Arguments => { id => $Ticket->id }, ); } # If they've gone and moved the ticket to somewhere they can't see, etc... unless ($Ticket->CurrentUserHasRight('ShowTicket')) { if (@results) { Abort("A change was applied successfully, but you no longer have permissions to view the ticket", Actions => \@results); } else { Abort("No permission to view ticket"); } } $Ticket->CurrentUser->AddRecentlyViewedTicket($Ticket); <%ARGS> $OnlySearchForPeople => undef $OnlySearchForGroup => undef $UserField => undef $UserOp => undef $UserString => undef $GroupString => undef $GroupOp => undef $GroupField => undef $id => undef rt-4.4.2/share/html/Ticket/ModifyLinks.html0000664000175000017500000000714113131430353020444 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Link ticket #[_1]", $Ticket->Id) &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $Ticket); <& /Elements/ListActions, actions => \@results &>
    % $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS ); % my (@extra); % push @extra, titleright_raw => ''.loc('Graph').'' unless RT->Config->Get('DisableGraphViz'); <&| /Widgets/TitleBox, title => loc('Edit Links'), class=>'ticket-info-links', @extra &> <& /Elements/EditLinks, Object => $Ticket &> <&| /Widgets/TitleBox, title => loc('Merge'), class=>'ticket-info-merge' &> <& Elements/EditMerge, Ticket => $Ticket, %ARGS &> <& /Elements/Submit, Name => 'SubmitTicket', Label => loc('Save Changes') &>
    % $m->callback(CallbackName => 'AfterForm', ARGSRef => \%ARGS, Ticket => $Ticket); <%INIT> my $Ticket = LoadTicket($id); my @results; $Ticket->Atomic(sub{ $m->callback( TicketObj => $Ticket, ARGSRef => \%ARGS, Results => \@results ); push @results, ProcessTicketLinks( TicketObj => $Ticket, ARGSRef => \%ARGS ); push @results, ProcessObjectCustomFieldUpdates( TicketObj => $Ticket, ARGSRef => \%ARGS ); }); MaybeRedirectForResults( Actions => \@results, Arguments => { id => $id }, ); $Ticket->CurrentUser->AddRecentlyViewedTicket($Ticket); <%ARGS> $id => undef rt-4.4.2/share/html/Ticket/Crypt.html0000664000175000017500000000675613131430353017330 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> % $m->callback( CallbackName => 'BeforeActionList', %ARGS, Actions => \@results, ARGSRef => \%ARGS ); <& /Elements/ListActions, actions => \@results &>
    <% loc('Return back to the ticket') %> <& /Elements/Submit, Label => ($encrypted? loc('Decrypt'): loc('Encrypt')), Name => ($encrypted? 'Decrypt': 'Encrypt'), &>
    <%ARGS> $id => undef $Encrypt => 0 $Decrypt => 0 <%INIT> my $txn = RT::Transaction->new( $session{'CurrentUser'} ); $txn->Load( $id ); unless ( $txn->id ) { Abort(loc("Couldn't load transaction #[_1]", $id)); } $id = $txn->id; my @results; my $encrypted = 0; my $attachments = $txn->Attachments; while ( my $attachment = $attachments->Next ) { next unless $attachment->ContentType =~ m{^x-application-rt/[^-]+-encrypted\b}; $encrypted = 1; last; } $attachments->GotoFirstItem; if ( $Encrypt || $Decrypt ) { my $done = 1; while ( my $attachment = $attachments->Next ) { my ($status, $msg) = $Decrypt? $attachment->Decrypt : $attachment->Encrypt; push @results, $msg; unless ( $status ) { $done = 0; last; } } $encrypted = !$encrypted if $done; } my $title = loc("Encrypt/Decrypt transaction #[_1] of ticket #[_2]", $id, $txn->Ticket); rt-4.4.2/share/html/Ticket/Elements/0000775000175000017500000000000013131430353017077 5ustar vagrantvagrantrt-4.4.2/share/html/Ticket/Elements/Reminders0000664000175000017500000001762313131430353020763 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Ticket => undef $id => undef $ShowCompleted => 0 $Edit => 0 $ShowSave => 1 <%init> $Ticket = LoadTicket($id) if ($id); my $resolve_status = $Ticket->LifecycleObj->ReminderStatusOnResolve; my $count_reminders = RT::Reminders->new($session{'CurrentUser'}); $count_reminders->Ticket($Ticket->id); my $count_tickets = $count_reminders->Collection; if (!$ShowCompleted) { # XXX: don't break encapsulation if we can avoid it $count_tickets->FromSQL(q{Type = "reminder" AND RefersTo = "} . $Ticket->id . qq{" AND Status != "$resolve_status" }); } my $has_reminders = $count_tickets->Count; # We've made changes, let's reload our search my $reminder_collection = $count_reminders->Collection; % my $editable = 0; % if ($has_reminders) { > % if ( $Edit ) { % } else { % } % my $i = 0; % while ( my $reminder = $reminder_collection->Next ) { % $i++; % if ( $reminder->Status eq $resolve_status && !$ShowCompleted ) { % $i++; % } % else { % $editable = 1 if !$editable && $reminder->CurrentUserHasRight( 'ModifyTicket' ); % if ($Edit) { <& SELF:EditEntry, Reminder => $reminder, Ticket => $Ticket, Index => $i &> % } else { <& SELF:ShowEntry, Reminder => $reminder, Ticket => $Ticket, Index => $i &> % } % } % }
    <&|/l&>Reminders <&|/l&>Reminder <&|/l&>Due <&|/l&>Owner
    % if ( $editable ) { <&|/l&>(Check box to complete)

    % } % } else { %# we must always include resolved reminders due to the browser %# checkbox-with-false-value issue % while ( my $reminder = $reminder_collection->Next ) { % if ( $reminder->Status eq $resolve_status && !$ShowCompleted ) { % } % } % } % if (lc $Ticket->Status ne "deleted" and $Ticket->QueueObj->CurrentUserHasRight('CreateTicket') and $Ticket->CurrentUserHasRight('ModifyTicket') ) { <&|/l&>New reminder: <& SELF:NewReminder, Ticket => $Ticket &> % $editable = 1; % } % if ( $editable && $ShowSave ) {
    % } <%method NewReminder> <%args> $Ticket
    <&|/l&>Subject:
    <&|/l&>Owner: <& /Elements/SelectOwner, Name => 'NewReminder-Owner', QueueObj => $Ticket->QueueObj, Default=>$session{'CurrentUser'}->id, DefaultValue => 0 &>
    <&|/l&>Due: <& /Elements/SelectDate, Name => "NewReminder-Due", Default => "" &>
    <%method EditEntry> <%args> $Reminder $Ticket $Index % unless ( $Reminder->CurrentUserHasRight('ModifyTicket') ) { Status eq $Reminder->LifecycleObj->ReminderStatusOnResolve ? 1 : 0 %> /> % } Status eq $Reminder->LifecycleObj->ReminderStatusOnResolve ? 'checked="checked"' : '' |n %> % unless ( $Reminder->CurrentUserHasRight('ModifyTicket') ) { disabled="disabled" % } /> <&|/l&>Subject: CurrentUserHasRight('ModifyTicket') ) { readonly="readonly" % } />   <&|/l&>Owner: <& /Elements/SelectOwner, Name => 'Reminder-Owner-'.$Reminder->id, QueueObj => $Ticket->QueueObj, Default => $Reminder->Owner, DefaultValue => 0 &> <&|/l&>Due: % if ( $Reminder->CurrentUserHasRight('ModifyTicket') ) { <& /Elements/SelectDate, Name => 'Reminder-Due-'.$Reminder->id &> % } (<% $Reminder->DueObj->AsString %>) <%method ShowEntry> <%args> $Reminder $Ticket $Index % my $dueobj = $Reminder->DueObj; % my $overdue = $dueobj->IsSet && $dueobj->Diff < 0 ? 1 : 0; % unless ( $Reminder->CurrentUserHasRight('ModifyTicket') ) { Status eq $Reminder->LifecycleObj->ReminderStatusOnResolve ? 1 : 0 %> /> % } Status eq $Reminder->LifecycleObj->ReminderStatusOnResolve ? 'checked="checked"' : '' |n %> % unless ( $Reminder->CurrentUserHasRight('ModifyTicket') ) { disabled="disabled" % } /> <% $overdue ? '' : '' |n %><% $dueobj->AgeAsString || loc('Not set') %><% $overdue ? '' : '' |n %> <& /Elements/ShowUser, User => $Reminder->OwnerObj &> rt-4.4.2/share/html/Ticket/Elements/ShowCustomFields0000664000175000017500000000411713131430353022267 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ShowCustomFields, %ARGS, Object => $Ticket &> <%ARGS> $Ticket => undef rt-4.4.2/share/html/Ticket/Elements/Bookmark0000664000175000017500000000560413131430353020574 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $ticket = RT::Ticket->new( $session{'CurrentUser'} ); $ticket->Load( $id ); my $is_bookmarked; if ($Toggle) { $is_bookmarked = $session{'CurrentUser'}->UserObj->ToggleBookmark($ticket); } else { $is_bookmarked = $session{'CurrentUser'}->UserObj->HasBookmark($ticket); } <%ARGS> $id $Toggle => 0 % my $url = RT->Config->Get('WebPath') ."/Helpers/Toggle/TicketBookmark?id=". $id; % if ( $is_bookmarked ) { <% loc('Remove Bookmark') %> % } else { <% loc('Add Bookmark') %> % } rt-4.4.2/share/html/Ticket/Elements/AddWatchers0000664000175000017500000001044513131430353021217 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}

    <&|/l&>Add new watchers:
    % if ($Users and $Users->Count) { % while (my $u = $Users->Next ) { % } % } % if ($Groups and $Groups->Count) { % while (my $g = $Groups->Next ) { % } % } % my $counter = 4; % for my $email (@extras) { % $counter++; % } % for my $i (1 .. 3) { % }
    <&|/l&>Type <&|/l&>Username
    <&/Elements/SelectWatcherType, Name => "Ticket-AddWatcher-Principal-". $u->PrincipalId, Queue => $Ticket->QueueObj, &> <& '/Elements/ShowUser', User => $u, style=>'verbose' &>
    <&|/l&>Type <&|/l&>Group
    <& /Elements/SelectWatcherType, Name => "Ticket-AddWatcher-Principal-".$g->PrincipalId, Queue => $Ticket->QueueObj, &> <%$g->Name%> (<%$g->Description%>)
    <&|/l&>Type <&|/l&>Email
    <&/Elements/SelectWatcherType, Name => "WatcherTypeEmail".$counter, Queue => $Ticket->QueueObj &> <%$email->format%>
    <&/Elements/SelectWatcherType, Name => "WatcherTypeEmail" . $i, Queue => $Ticket->QueueObj &> <& /Elements/EmailInput, Name => 'WatcherAddressEmail' . $i, Size => '20' &>
    <%INIT> my ($Users, $Groups); if ($UserString) { $Users = RT::Users->new($session{'CurrentUser'}); $Users->Limit(FIELD => $UserField, VALUE => $UserString, OPERATOR => $UserOp, CASESENSITIVE => 0); $Users->LimitToPrivileged if $PrivilegedOnly; } if ($GroupString) { $Groups = RT::Groups->new($session{'CurrentUser'}); $Groups->LimitToUserDefinedGroups; $Groups->Limit(FIELD => $GroupField, VALUE => $GroupString, OPERATOR => $GroupOp, CASESENSITIVE => 0); } my @extras; for my $addr ( values %{$Ticket->TransactionAddresses} ) { my $is_watcher; for my $type ( qw/Owner Requestor Cc AdminCc/ ) { if ($Ticket->IsWatcher( Email => $addr->address, Type => $type )) { $is_watcher = 1; last; } } push @extras, $addr unless $is_watcher; } <%ARGS> $UserField => 'Name' $UserOp => '=' $UserString => undef $GroupField => 'Name' $GroupOp => '=' $GroupString => undef $PrivilegedOnly => undef $Ticket => undef rt-4.4.2/share/html/Ticket/Elements/ShowGroupMembers0000664000175000017500000000504013131430353022271 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# Released under the terms of version 2 of the GNU Public License <%init> my $post_user = sub { my $user = shift; $m->comp("/Elements/ShowUserEmailFrequency", User => $user, Ticket => $Ticket); $m->callback( User => $user, Ticket => $Ticket, %ARGS, CallbackName => 'AboutThisUser', CallbackPage => '/Ticket/Elements/ShowGroupMembers' ); }; $m->comp("/Elements/ShowPrincipal", Object => $Group, Separator => "
    ", PostUser => $post_user, Link => $Link); <%ARGS> $Group => undef $Ticket => undef $Link => 1 rt-4.4.2/share/html/Ticket/Elements/ShowDates0000664000175000017500000001215513131430353020727 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} \ % $m->callback( %ARGS, CallbackName => 'AfterCreated', TicketObj => $Ticket ); \ % $m->callback( %ARGS, CallbackName => 'AfterStarts', TicketObj => $Ticket ); \ % $m->callback( %ARGS, CallbackName => 'AfterStarted', TicketObj => $Ticket ); % $m->callback( %ARGS, CallbackName => 'AfterTold', TicketObj => $Ticket ); \ % my $due = $Ticket->DueObj; % if ( $due && $due->IsSet && $due->Diff < 0 && $Ticket->QueueObj->IsActiveStatus($Ticket->Status) ) { % } else { % } % $m->callback( %ARGS, CallbackName => 'AfterDue', TicketObj => $Ticket ); \ % $m->callback( %ARGS, CallbackName => 'AfterResolved', TicketObj => $Ticket ); \ % my $UpdatedString = $Ticket->LastUpdated ? loc("[_1] by [_2]", $Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) : loc("Never"); % if ($UpdatedLink) { % } else { % } % $m->callback( %ARGS, CallbackName => 'AfterUpdated', TicketObj => $Ticket ); <& /Ticket/Elements/ShowCustomFields, Ticket => $Ticket, Grouping => 'Dates', Table => 0 &> % $m->callback( %ARGS, CallbackName => 'EndOfList', TicketObj => $Ticket );
    <&|/l&>Created:<% $Ticket->CreatedObj->AsString %>
    <&|/l&>Starts:<% $Ticket->StartsObj->AsString %>
    <&|/l&>Started:<% $Ticket->StartedObj->AsString %>
    % if ( $Ticket->CurrentUserHasRight('ModifyTicket' ) ) { <&|/l&>Last Contact: % } else { <&|/l&>Last Contact: % } <% $Ticket->ToldObj->AsString %>
    <&|/l&>Due:<% $due->AsString %><% $due->AsString %>
    <&|/l&>Closed:<% $Ticket->ResolvedObj->AsString %>
    <&|/l&>Updated:<% $UpdatedString | n %><% $UpdatedString | n %>
    <%ARGS> $Ticket => undef $UpdatedLink => 1 <%INIT> if ($UpdatedLink and $Ticket) { my $txns = $Ticket->Transactions; $txns->OrderByCols( { FIELD => "Created", ORDER => "DESC" }, { FIELD => "id", ORDER => "DESC" }, ); $txns->RowsPerPage(1); if (my $latest = $txns->First) { $UpdatedLink = "#txn-" . $latest->id; } else { undef $UpdatedLink; } } rt-4.4.2/share/html/Ticket/Elements/EditTransactionCustomFields0000664000175000017500000000705613131430353024447 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( CallbackName => 'BeforeTransactionCustomFields', TicketObj => $TicketObj, QueueObj => $QueueObj, InTable => $InTable ); % if ( $WRAP ) { <<% $WRAP %> class="edit-transaction-custom-fields"> % } % if ($CustomFields->Count) { % while (my $CF = $CustomFields->Next()) { % next unless $CF->CurrentUserHasRight('ModifyCustomField'); <<% $FIELD %>> <<% $CELL %> class="label cflabel"> <% $CF->Name %>:
    <% $CF->EntryHint // '' %> > <<% $CELL %>> <& /Elements/EditCustomField, %ARGS, CustomField => $CF, Object => RT::Transaction->new( $session{'CurrentUser'} ), &> % if (my $msg = $m->notes('InvalidField-' . $CF->Id)) {
    <% $msg %> % } > > % } % } % if ( $WRAP ) { > % } % $m->callback( CallbackName => 'AfterTransactionCustomFields', TicketObj => $TicketObj, QueueObj => $QueueObj, InTable => $InTable ); <%INIT> my $CustomFields; if ($TicketObj) { $CustomFields = $TicketObj->TransactionCustomFields(); } else { $CustomFields = $QueueObj->TicketTransactionCustomFields(); } $m->callback( CallbackName => 'MassageTransactionCustomFields', CustomFields => $CustomFields, InTable => $InTable ); $AsTable ||= $InTable; my $FIELD = $AsTable ? 'tr' : 'div'; my $CELL = $AsTable ? 'td' : 'div'; my $WRAP = ''; if ( $AsTable ) { $WRAP = 'table' unless $InTable; } else { $WRAP = 'div'; } <%ARGS> $TicketObj => undef $QueueObj => undef $AsTable => 0 $InTable => 0 rt-4.4.2/share/html/Ticket/Elements/ShowTime0000664000175000017500000000435313131430353020566 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($minutes < 60) { <&|/l, $minutes &>[quant,_1,minute,minutes] % } else { <&|/l, sprintf("%.2f",$minutes / 60), $minutes &>[quant,_1,hour,hours] ([quant,_2,minute,minutes]) % } <%init> $minutes ||= 0; <%ARGS> $minutes rt-4.4.2/share/html/Ticket/Elements/ShowRequestorTicketsInactive0000664000175000017500000000441413131430353024671 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& ShowRequestorTickets, %ARGS, Description => loc('inactive'), conditions => $conditions, Rows => $Rows &> <%INIT> unless ( @$conditions ) { push @$conditions, { cond => "Status = '__Inactive__'" }; } <%ARGS> $Requestor => undef $conditions => [] $Rows => 10 rt-4.4.2/share/html/Ticket/Elements/ShowAssets0000664000175000017500000001527213131430353021134 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Ticket $ShowRelatedTickets => 10 <%init> my $target_assets = $Ticket->Links("Base")->Clone; $target_assets->Limit( FIELD => "Target", OPERATOR => "STARTSWITH", VALUE => RT::URI::asset->LocalURIPrefix, ); my $base_assets = $Ticket->Links("Target")->Clone; $base_assets->Limit( FIELD => "Base", OPERATOR => "STARTSWITH", VALUE => RT::URI::asset->LocalURIPrefix, ); my @linked_assets; push @linked_assets, grep { defined } map { $_->TargetURI->IsLocal } @{ $target_assets->ItemsArrayRef }; push @linked_assets, grep { defined } map { $_->BaseURI->IsLocal } @{ $base_assets->ItemsArrayRef }; my $asset_queue; if (RT->Config->Get('AssetQueues')) { $asset_queue = 1 if grep {$_ eq $Ticket->QueueObj->Name} @{RT->Config->Get('AssetQueues')} } else { $asset_queue = 0; } return unless @linked_assets or ($Ticket->CurrentUserHasRight("ModifyTicket") and $asset_queue); my $assets = RT::Assets->new( $session{CurrentUser} ); $assets->OrderBy( FIELD => "Name", ORDER => "ASC" ); if ( @linked_assets ) { $assets->Limit( FIELD => "id", OPERATOR => "IN", VALUE => \@linked_assets, ); } my $Format = RT->Config->Get("AssetSummaryFormat") || q[ '__Name__/TITLE:Name', Description, Status, Catalog, ]; $m->callback( CallbackName => 'ModifyCollection', Ticket => $Ticket, Assets => $assets, Format => \$Format, ); <&| /Widgets/TitleBox, title => loc('Assets'), class => 'ticket-assets', title_class => "inverse", &>
    /Ticket/Display.html" method="POST" enctype="multipart/form-data"> % $m->callback( CallbackName => "Start", Ticket => $Ticket, Assets => $assets );
    % my $display_path = $session{'CurrentUser'}->Privileged ? 'Asset' : 'SelfService/Asset'; % while (my $asset = $assets->Next) {

    <&|/l, $asset->id, $asset->Name &>#[_1]: [_2] <%perl> if ($Ticket->CurrentUserHasRight("ModifyTicket")) { my $targets = $asset->Links("Target")->Clone; $targets->Limit( FIELD => "LocalBase", VALUE => $Ticket->id, ); my $bases = $asset->Links("Base")->Clone; $bases->Limit( FIELD => "LocalTarget", VALUE => $Ticket->id, ); my %params; $params{join("-", "DeleteLink", "", $_->Type, $_->Target)} = 1 for @{ $targets->ItemsArrayRef }; $params{join("-", "DeleteLink", $_->Base, $_->Type, "")} = 1 for @{ $bases->ItemsArrayRef }; my $delete_url = RT->Config->Get("WebPath") . "/Ticket/Display.html?" . $m->comp("/Elements/QueryString", id => $Ticket->id, %params); X % }

    <& /Elements/ShowRecord, Object => $asset, Format => $Format, TrustFormat => 1, &> % $m->callback( CallbackName => "BeforeTickets", Ticket => $Ticket, Asset => $asset ); <%perl> if ($ShowRelatedTickets) { my %search = ( Query => "id != '@{[$Ticket->id]}' AND LinkedTo = 'asset:@{[$asset->id]}'", OrderBy => "LastUpdated", Order => "DESC", ); my $url = RT->Config->Get("WebPath") . "/Search/Results.html?" . $m->comp("/Elements/QueryString", %search); % } % $m->callback( CallbackName => "PerAsset", Ticket => $Ticket, Asset => $asset );
    % }
    % if ($Ticket->CurrentUserHasRight("ModifyTicket")) {
    % } % $m->callback( CallbackName => "End", Ticket => $Ticket, Assets => $assets );
    rt-4.4.2/share/html/Ticket/Elements/DelayShowHistory0000664000175000017500000000562413131430353022312 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <& /Widgets/TitleBoxStart, title => loc('History') &> <&|/l&>Loading... <& /Widgets/TitleBoxEnd &>
    <%ARGS> $Ticket <%INIT> my %params = %ARGS; delete $params{Ticket}; my $url = JSON( RT->Config->Get('WebPath') . "/Helpers/TicketHistory?". $m->comp('/Elements/QueryString', %params, id => $Ticket->id ) ); rt-4.4.2/share/html/Ticket/Elements/EditDates0000664000175000017500000000765013131430353020700 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/EditCustomFields, Object => $TicketObj, Grouping => 'Dates', InTable => 1 &> % $m->callback( %ARGS, CallbackName => 'EndOfList', Ticket => $TicketObj );
    <&|/l&>Starts: <& /Elements/SelectDate, menu_prefix => 'Starts', current => 0, Default => $TicketObj->StartsObj->Unix ? $TicketObj->StartsObj->ISO(Timezone => 'user') : '', Object => $TicketObj, ARGSRef => \%ARGS, &> (<% $TicketObj->StartsObj->AsString %>)
    <&|/l&>Started: <& /Elements/SelectDate, menu_prefix => 'Started', current => 0, Default => $TicketObj->StartedObj->Unix ? $TicketObj->StartedObj->ISO(Timezone => 'user') : '', Object => $TicketObj, ARGSRef => \%ARGS, &> (<%$TicketObj->StartedObj->AsString %>)
    <&|/l&>Last Contact: <& /Elements/SelectDate, menu_prefix => 'Told', current => 0, Default => $TicketObj->ToldObj->Unix ? $TicketObj->ToldObj->ISO(Timezone => 'user') : '', Object => $TicketObj, ARGSRef => \%ARGS, &> (<% $TicketObj->ToldObj->AsString %>)
    <&|/l&>Due: <& /Elements/SelectDate, menu_prefix => 'Due', current => 0, Default => $TicketObj->DueObj->Unix ? $TicketObj->DueObj->ISO(Timezone => 'user') : '', Object => $TicketObj, ARGSRef => \%ARGS, &> (<% $TicketObj->DueObj->AsString %>)
    <%ARGS> $TicketObj => undef rt-4.4.2/share/html/Ticket/Elements/ShowAssetsOnCreate0000664000175000017500000001007413131430353022550 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $QueueObj $ARGSRef <%init> my @linked_assets; foreach my $key ( map {+("new-$_", "$_-new")} keys %RT::Link::DIRMAP ) { next unless $ARGSRef->{$key}; for my $linktext (grep $_, split ' ', $ARGSRef->{$key}) { my $uri = RT::URI->new( $session{'CurrentUser'} ); next unless $uri->FromURI( $linktext ); next unless $uri->IsLocal and $uri->Object and $uri->Object->id and $uri->Object->isa("RT::Asset"); push @linked_assets, $uri->Object->id; } } my $asset_queue; if (RT->Config->Get('AssetQueues')) { $asset_queue = 1 if grep {$_ eq $QueueObj->Name} @{RT->Config->Get('AssetQueues')} } else { $asset_queue = 0; } return unless @linked_assets or $asset_queue; my $assets = RT::Assets->new( $session{CurrentUser} ); $assets->OrderBy( FIELD => "Name", ORDER => "ASC" ); if ( @linked_assets ) { $assets->Limit( FIELD => "id", OPERATOR => "IN", VALUE => \@linked_assets, ); } my $Format = RT->Config->Get("AssetSummaryFormat") || q[ '__Name__/TITLE:Name', Description, Status, Catalog, ]; $m->callback( CallbackName => 'ModifyCollection', Queue => $QueueObj, Assets => $assets, Format => \$Format, ); <&| /Widgets/TitleBox, title => loc('Assets'), class => 'ticket-assets', title_class => "inverse", &> % $m->callback( CallbackName => "Start", Queue => $QueueObj, Assets => $assets );
    % while (my $asset = $assets->Next) {

    <&|/l, $asset->id, $asset->Name &>#[_1]: [_2]

    <& /Elements/ShowRecord, Object => $asset, Format => $Format, TrustFormat => 1, &> % $m->callback( CallbackName => "PerAsset", Queue => $QueueObj, Asset => $asset );
    % }
    % $m->callback( CallbackName => "End", Queue => $QueueObj, Assets => $assets ); rt-4.4.2/share/html/Ticket/Elements/ShowUpdateStatus0000664000175000017500000000543113131430353022314 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <&| /Widgets/TitleBox, title => loc('New messages'), title_href => "#txn-". $txn->id &> <&|/l&>There are unread messages on this ticket. <&|/l, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id &>You can jump to the first unread message or jump to the first unread message and mark all messages as seen.
    <%ARGS> $Ticket $DisplayPath => $session{'CurrentUser'}->Privileged ? 'Ticket' : 'SelfService' <%INIT> return unless (RT->Config->Get( 'ShowUnreadMessageNotifications', $session{'CurrentUser'})); my $txn = $Ticket->SeenUpTo or return; rt-4.4.2/share/html/Ticket/Elements/ShowRequestorTicketsAll0000664000175000017500000000420213131430353023632 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& ShowRequestorTickets, %ARGS, conditions => $conditions, Rows => $Rows &> <%ARGS> $Requestor => undef $conditions => [] $Rows => 10 rt-4.4.2/share/html/Ticket/Elements/ShowQueue0000664000175000017500000000536313131430353020756 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $query ) { <% $label %> % } else { <% $label %> % } <%ARGS> $Ticket => undef $QueueObj <%INIT> my $label = $QueueObj->Name; my $query; if ( $Ticket and $Ticket->CurrentUserHasRight('SeeQueue') ) { # Grab the queue name anyway if the current user can # see the queue based on his role for this ticket $label = $QueueObj->__Value('Name'); if ( $session{CurrentUser}->Privileged ) { my $queue_name_parameter = $label; $queue_name_parameter =~ s/(['\\])/\\$1/g; #' $query = "Queue = '$queue_name_parameter' AND Status = '__Active__'"; } } $label = '#'. $QueueObj->id unless defined $label && length $label; rt-4.4.2/share/html/Ticket/Elements/ShowRequestorTicketsActive0000664000175000017500000000441113131430353024337 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& ShowRequestorTickets, %ARGS, Description => loc('active'), conditions => $conditions, Rows => $Rows &> <%INIT> unless ( @$conditions ) { push @$conditions, { cond => "Status = '__Active__'" }; } <%ARGS> $Requestor => undef $conditions => [] $Rows => 10 rt-4.4.2/share/html/Ticket/Elements/EditPeople0000664000175000017500000001151613131430353021060 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}

    <&|/l&>New watchers

    <&|/l&>Find people whose
    <& /Elements/SelectUsers &>
    <&|/l&>Find groups whose
    <& /Elements/SelectGroups &> <& AddWatchers, Ticket => $Ticket, UserString => $UserString, UserOp => $UserOp, UserField => $UserField, GroupString => $GroupString, GroupOp => $GroupOp, GroupField => $GroupField, PrivilegedOnly => $PrivilegedOnly &>

    <&|/l&>People

    % my @role_fields; % my $single_roles = $Ticket->QueueObj->CustomRoles; % $single_roles->LimitToSingleValue; % while (my $role = $single_roles->Next) { % }
    <&|/l&>Owner: <& /Elements/SelectOwner, Name => 'Owner', QueueObj => $Ticket->QueueObj, TicketObj => $Ticket, Default => $Ticket->OwnerObj->Id, DefaultValue => 0&>
    <% $role->Name %>: <& /Elements/SingleUserRoleInput, role => $role, Ticket => $Ticket &>

    <&|/l&>Current watchers

    <&|/l&>(Check box to delete)
    % my $multi_roles = $Ticket->QueueObj->CustomRoles; % $multi_roles->LimitToMultipleValue; % while (my $role = $multi_roles->Next) { % my $group = $Ticket->RoleGroup($role->GroupType); % } <& /Elements/EditCustomFields, Object => $Ticket, Grouping => 'People', InTable => 1 &>
    <&|/l&>Requestors: <& EditWatchers, TicketObj => $Ticket, Watchers => $Ticket->Requestors &>
    <&|/l&>Cc: <& EditWatchers, TicketObj => $Ticket, Watchers => $Ticket->Cc &>
    <&|/l&>Admin Cc: <& EditWatchers, TicketObj => $Ticket, Watchers => $Ticket->AdminCc &>
    <% $role->Name %>: <& EditWatchers, TicketObj => $Ticket, Watchers => $group &>
    <%ARGS> $UserField => undef $UserOp => undef $UserString => undef $GroupField => undef $GroupOp => undef $GroupString => undef $PrivilegedOnly => undef $Ticket => undef rt-4.4.2/share/html/Ticket/Elements/AddAttachments0000664000175000017500000002704313131430353021714 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $attachments ) { <&|/l&>Attached file: % foreach my $attach_name ( sort keys %$attachments ) {
    (<&|/l&>Delete)
    % } # end of foreach % } # end of if <&|/l&>Attach:
    % if ($HasExisting) { <&|/l&>Include attachments: <& /Ticket/Elements/ShowAttachments, Ticket => $TicketObj, Selectable => 1, HideTitleBox => 1, Checked => \@AttachExisting, Count => RT->Config->Get('AttachmentListCount'), &> % } % $m->callback( %ARGS, CallbackName => 'End' ); <%ARGS> $Token => '' @AttachExisting => () $QuoteTransaction => '' $TicketObj => undef <%INIT> my $attachments; if ( exists $session{'Attachments'}{ $Token } && keys %{ $session{'Attachments'}{ $Token } } ) { $attachments = $session{'Attachments'}{ $Token }; } my $HasExisting = 0; if ($TicketObj && $TicketObj->id) { my $Existing = $TicketObj->Attachments; $Existing->LimitHasFilename; $HasExisting = 1 if $Existing->Count; } rt-4.4.2/share/html/Ticket/Elements/ShowRequestorTickets0000664000175000017500000000475213131430353023213 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /User/Elements/TicketList, User => $Requestor, conditions => $conditions, Rows => $Rows, Title => $Title, WatcherTypes => ['Requestor'], Format => => RT->Config->Get('MoreAboutRequestorTicketListFormat'), &> <%INIT> my $Title = loc("This user's [_1] highest priority [_2] tickets", $Rows, $Description ); $m->callback( CallbackName => 'ModifyTitle', %ARGS, Title => \$Title ); <%ARGS> $Requestor => undef $conditions $Rows => 10 $Description => '' rt-4.4.2/share/html/Ticket/Elements/ShowDependencyStatus0000664000175000017500000000554313131430353023154 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    % if ($approvals) { % if ($approvals == 1) { <&|/l&>Pending approval. % } else { <&|/l, $approvals &>Pending [quant,_1,approval,approvals]. % } <&|/l&>This ticket cannot be resolved until it is approved. % } else { <&|/l, $depends &>Pending [quant,_1,ticket,tickets]. <&|/l, $depends &>This ticket cannot be resolved until its [numerate,_1,dependency is,dependencies are] resolved. % }
    <%args> $Ticket <%init> # normal tickets my $deps = $Ticket->UnresolvedDependencies; $deps->LimitType( VALUE => 'ticket' ); my $depends = $deps->Count || 0; # approvals $deps = $Ticket->UnresolvedDependencies; $deps->LimitType( VALUE => 'approval' ); my $approvals = $deps->Count || 0; return unless $depends or $approvals; rt-4.4.2/share/html/Ticket/Elements/ShowAttachments0000664000175000017500000001262613131430353022145 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => loc('Attachments'), title_class=> 'inverse', class => 'ticket-info-attachments', color => "#336699", hide_chrome => $HideTitleBox &> % $m->callback( %ARGS, CallbackName => 'BeforeList', TicketObj => $Ticket, Attachments => $Attachments, Documents => \%documents, IsChecked => \%is_checked, ShowMore => \$show_more );
    % foreach my $key (sort { lc($a) cmp lc($b) } keys %documents) { <%$key%>
    % } % $m->callback( %ARGS, CallbackName => 'AfterList', TicketObj => $Ticket, Attachments => $Attachments, Documents => \%documents, IsChecked => \%is_checked, ShowMore => \$show_more ); % if ($show_more) { % my %params = %ARGS; % delete $params{Ticket}; % delete $params{Attachments}; % delete $params{Count}; % my $query = $m->comp('/Elements/QueryString', %params, id => $Ticket->id ); % my $url = RT->Config->Get('WebPath')."/Helpers/TicketAttachments?$query"; <% loc('Show all') %> % }
    <%INIT> # If we haven't been passed in an Attachments object (through the precaching mechanism) # then we need to find one $Attachments ||= $Ticket->Attachments; # Avoid applying limits to this collection that may be used elsewhere # (e.g. transaction display) $Attachments = $Attachments->Clone; # Remember, each message in a transaction is an attachment; we only # want named attachments (real files) $Attachments->LimitHasFilename; my $show_more = 0; my %documents; # show newest first $Attachments->OrderByCols( { FIELD => 'Created', ORDER => 'DESC' }, { FIELD => 'id', ORDER => 'DESC' }, ); while ( my $attach = $Attachments->Next() ) { # display "show more" only when there will be more attachments if (defined($Count) && --$Count < 0) { $show_more = 1; last; } push @{ $documents{ $attach->Filename } }, $attach; } my %is_checked = map { $_ => 1 } @Checked; return if !$show_more && keys %documents == 0; <%ARGS> $Ticket => undef $Attachments => undef $DisplayPath => $session{'CurrentUser'}->Privileged ? 'Ticket' : 'SelfService' $HideTitleBox => 0 $Selectable => 0 $Count => undef @Checked => () rt-4.4.2/share/html/Ticket/Elements/ShowPeople0000664000175000017500000000776313131430353021124 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $owner = $Ticket->OwnerObj; % my $single_roles = $Ticket->QueueObj->CustomRoles; % $single_roles->LimitToSingleValue; % while (my $role = $single_roles->Next) { % my $group = $Ticket->RoleGroup($role->GroupType); % my $users = $group->UserMembersObj( Recursively => 0 ); %# $users can be empty for tickets created before the custom role is added to the queue, %# so fall back to nobody % my $user = $users->First || RT->Nobody; % } % my $multi_roles = $Ticket->QueueObj->CustomRoles; % $multi_roles->LimitToMultipleValue; % while (my $role = $multi_roles->Next) { % } <& /Ticket/Elements/ShowCustomFields, Ticket => $Ticket, Grouping => 'People', Table => 0 &>
    <&|/l&>Owner:<& /Elements/ShowUser, User => $owner, Ticket => $Ticket &> <& /Elements/ShowUserEmailFrequency, User => $owner, Ticket => $Ticket &> % $m->callback( User => $owner, Ticket => $Ticket, %ARGS, CallbackName => 'AboutThisUser' );
    <% $role->Name %>: <& /Elements/ShowUser, User => $user, Ticket => $Ticket &>
    <&|/l&>Requestors: <& ShowGroupMembers, Group => $Ticket->Requestors, Ticket => $Ticket &>
    <&|/l&>Cc: <& ShowGroupMembers, Group => $Ticket->Cc, Ticket => $Ticket &>
    <&|/l&>AdminCc: <& ShowGroupMembers, Group => $Ticket->AdminCc, Ticket => $Ticket &>
    <% $role->Name %>: <& ShowGroupMembers, Group => $Ticket->RoleGroup($role->GroupType), Ticket => $Ticket &>
    <%ARGS> $Ticket => undef rt-4.4.2/share/html/Ticket/Elements/ShowPriority0000664000175000017500000000411613131430353021506 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <% $Ticket->Priority %>/<% $Ticket->FinalPriority || ''%> <%ARGS> $Ticket => undef rt-4.4.2/share/html/Ticket/Elements/ShowSummary0000664000175000017500000001264013131430353021323 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    % $m->callback( %ARGS, CallbackName => 'LeftColumnTop' ); <&| /Widgets/TitleBox, title => loc('The Basics'), (($can_modify || $can_modify_cf) ? (title_href => RT->Config->Get('WebPath')."/Ticket/Modify.html?id=".$Ticket->Id) : ()), class => 'ticket-info-basics', &><& /Ticket/Elements/ShowBasics, Ticket => $Ticket &> % $m->callback( %ARGS, CallbackName => 'AfterBasics' ); <& /Elements/ShowCustomFieldCustomGroupings, Object => $Ticket, title_href => ($can_modify || $can_modify_cf) ? RT->Config->Get('WebPath')."/Ticket/Modify.html" : "", &> <&| /Widgets/TitleBox, title => loc('People'), (($can_modify || $can_modify_owner || $can_modify_people) ? (title_href => RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$Ticket->Id) : ()), class => 'ticket-info-people', &><& /Ticket/Elements/ShowPeople, Ticket => $Ticket &> % $m->callback( %ARGS, CallbackName => 'AfterPeople' ); <& /Ticket/Elements/ShowAttachments, Ticket => $Ticket, Attachments => $Attachments, Count => RT->Config->Get('AttachmentListCount') &> % $m->callback( %ARGS, CallbackName => 'AfterAttachments' ); <& /Ticket/Elements/ShowRequestor, Ticket => $Ticket &> % $m->callback( %ARGS, CallbackName => 'LeftColumn' ); % $m->callback( %ARGS, CallbackName => 'RightColumnTop' ); % if ( RT->Config->Get('EnableReminders') ) { <&|/Widgets/TitleBox, title => loc("Reminders"), title_href => RT->Config->Get('WebPath')."/Ticket/Reminders.html?id=".$Ticket->Id, class => 'ticket-info-reminders', &>
    <& /Ticket/Elements/Reminders, Ticket => $Ticket, ShowCompleted => 0 &>
    % } % $m->callback( %ARGS, CallbackName => 'AfterReminders' ); <&| /Widgets/TitleBox, title => loc("Dates"), ($can_modify ? (title_href => RT->Config->Get('WebPath')."/Ticket/ModifyDates.html?id=".$Ticket->Id) : ()), class => 'ticket-info-dates', &><& /Ticket/Elements/ShowDates, Ticket => $Ticket &> % $m->callback( %ARGS, CallbackName => 'AfterDates' ); % my (@extra); % push @extra, titleright_raw => ''.loc('Graph').'' unless RT->Config->Get('DisableGraphViz'); <& /Ticket/Elements/ShowAssets, Ticket => $Ticket &> % $m->callback( %ARGS, CallbackName => 'LinksExtra', extra => \@extra ); <&| /Widgets/TitleBox, title => loc('Links'), ($can_modify ? (title_href => RT->Config->Get('WebPath')."/Ticket/ModifyLinks.html?id=".$Ticket->Id) : ()), class => 'ticket-info-links', @extra, &><& /Elements/ShowLinks, Object => $Ticket &> % $m->callback( %ARGS, CallbackName => 'RightColumn' );
    <%ARGS> $Ticket => undef $Attachments => undef <%INIT> my $can_modify = $Ticket->CurrentUserHasRight('ModifyTicket'); my $can_modify_cf = $Ticket->CurrentUserHasRight('ModifyCustomField'); my $can_modify_owner = $Ticket->CurrentUserCanSetOwner(); my $can_modify_people = $Ticket->CurrentUserHasRight('Watch') || $Ticket->CurrentUserHasRight('WatchAsAdminCc'); rt-4.4.2/share/html/Ticket/Elements/SelectStatus0000664000175000017500000000562413131430353021454 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/SelectStatus, %ARGS, Statuses => \@Statuses, Object => $TicketObj || $QueueObj, Lifecycles => \@Lifecycles, Type => 'ticket', &> <%INIT> my @Lifecycles; for my $id (keys %Queues) { my $queue = RT::Queue->new($session{'CurrentUser'}); $queue->Load($id); push @Lifecycles, $queue->LifecycleObj if $queue->id; } if ($TicketObj) { $ARGS{DefaultLabel} = loc("[_1] (Unchanged)", loc($TicketObj->Status)); if ($DefaultFromArgs and $DECODED_ARGS->{Status}) { $ARGS{Default} = $DECODED_ARGS->{Status}; } elsif (defined $ARGS{Default}) { $ARGS{Default} = undef if $TicketObj->Status eq $ARGS{Default}; } } elsif ($QueueObj) { $ARGS{DefaultValue} = 0; $ARGS{Default} ||= $DECODED_ARGS->{Status} || $QueueObj->LifecycleObj->DefaultOnCreate; } <%ARGS> $DefaultFromArgs => 1, @Statuses => () $TicketObj => undef $QueueObj => undef %Queues => () rt-4.4.2/share/html/Ticket/Elements/EditMerge0000664000175000017500000000533213131430353020672 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/l&>Warning: merging is a non-reversible action! Enter a single ticket number to be merged into.
    <&|/l&>Merge into:
    <%INIT> my @excludes; if ( $Ticket ) { $Name ||= $Ticket->id . '-MergeInto'; @excludes = $Ticket->id; } elsif ( $Tickets ) { $Name ||= 'Ticket-MergeInto'; while ( my $ticket = $Tickets->Next ) { push @excludes, $ticket->id; } } $Default ||= $ARGS{$Name}; <%ARGS> $Ticket => undef $Tickets => undef $Name => '' $Default => '' rt-4.4.2/share/html/Ticket/Elements/ClickToShowHistory0000664000175000017500000000517213131430353022602 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <& /Widgets/TitleBoxStart, title => loc('History') &> <% loc('Show ticket history') %> <& /Widgets/TitleBoxEnd &>
    <%ARGS> $Ticket <%INIT> my %params = %ARGS; delete $params{Ticket}; my $query = $m->comp('/Elements/QueryString', %params, id => $Ticket->id ); my $url = RT->Config->Get('WebPath')."/Helpers/TicketHistory?$query"; my $display = RT->Config->Get('WebPath')."/Ticket/Display.html?ForceShowHistory=1;$query"; rt-4.4.2/share/html/Ticket/Elements/ShowRequestorExtraInfo0000664000175000017500000000423713131430353023502 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /User/Elements/UserInfo, User => $Requestor, FormatConfig => 'MoreAboutRequestorExtraInfo', ClassPrefix => 'more-about-requestor' &> <%ARGS> $Requestor => undef rt-4.4.2/share/html/Ticket/Elements/PopupTimerLink0000664000175000017500000000462013131430353021746 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $id <%INIT> my $url = RT->Config->Get('WebPath') . "/Helpers/TicketTimer?id=" . $id; <% loc('Open Timer') %> rt-4.4.2/share/html/Ticket/Elements/ShowBasics0000664000175000017500000001227513131430353021076 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( !$Ticket->QueueObj->SLADisabled ) { % } % if ($show_time_worked) { % if ($Ticket->TimeEstimated) { % } % $m->callback( %ARGS, CallbackName => 'AfterTimeEstimated', TicketObj => $Ticket ); % if ($Ticket->TimeWorked) { % } % my $totalTimeWorked = 0; % if (RT->Config->Get('DisplayTotalTimeWorked') && ($totalTimeWorked = $Ticket->TotalTimeWorked)) { % } % if ( keys %$time_worked ) { % } % $m->callback( %ARGS, CallbackName => 'AfterTimeWorked', TicketObj => $Ticket ); % if ($Ticket->TimeLeft) { % } % } % $m->callback( %ARGS, CallbackName => 'AfterTimeLeft', TicketObj => $Ticket ); % $m->callback( %ARGS, CallbackName => 'AfterPriority', TicketObj => $Ticket ); %# This will check SeeQueue at the ticket role level, queue level, and global level % if ($Ticket->CurrentUserHasRight('SeeQueue')) { % } % $m->callback( %ARGS, CallbackName => 'AfterQueue', TicketObj => $Ticket ); <& /Ticket/Elements/ShowCustomFields, Ticket => $Ticket, Grouping => 'Basics', Table => 0 &> % if ($UngroupedCFs) { <& /Ticket/Elements/ShowCustomFields, Ticket => $Ticket, Grouping => '', Table => 0 &> % } % $m->callback( %ARGS, CallbackName => 'EndOfList', TicketObj => $Ticket );
    <&|/l&>Id: <%$Ticket->Id %>
    <&|/l&>Status: <% loc($Ticket->Status) %>
    <&|/l&>SLA: <% loc($Ticket->SLA) %>
    <&|/l&>Estimated: <& ShowTime, minutes => $Ticket->TimeEstimated &>
    <&|/l&>Worked: <& ShowTime, minutes => $Ticket->TimeWorked &>
    <&|/l&>Total Time Worked: <& ShowTime, minutes => $totalTimeWorked &>
    <&|/l&>Users: % for my $user ( keys %$time_worked ) { % }
    <% $user %>: <& /Ticket/Elements/ShowTime, minutes => $time_worked->{$user} &>
    <&|/l&>Left: <& ShowTime, minutes => $Ticket->TimeLeft &>
    <&|/l&>Priority: <& ShowPriority, Ticket => $Ticket &>
    <&|/l&>Queue: <& ShowQueue, Ticket => $Ticket, QueueObj => $Ticket->QueueObj &>
    % $m->callback( %ARGS, CallbackName => 'AfterTable', TicketObj => $Ticket ); <%ARGS> $Ticket => undef $UngroupedCFs => 0 <%init> my $time_worked; my $show_time_worked = $Ticket->CurrentUserCanSeeTime; if ( $show_time_worked ) { if (RT->Config->Get('DisplayTotalTimeWorked')) { $time_worked = $Ticket->TotalTimeWorkedPerUser; } else { $time_worked = $Ticket->TimeWorkedPerUser; } } rt-4.4.2/share/html/Ticket/Elements/ScrollShowHistory0000664000175000017500000001606313131430353022511 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Ticket <%INIT> my %params = %ARGS; delete $params{Ticket}; my $url = RT->Config->Get('WebPath') . "/Helpers/TicketHistoryPage?" . $m->comp('/Elements/QueryString', %params, id => $Ticket->id ); my %extra_args; $m->callback( CallbackName => 'ExtraShowHistoryArguments', Ticket => $Ticket, ExtraArgs => \%extra_args ); my $ShowDisplayModes = 1 || $extra_args{'ShowDisplayModes'}; my $ShowTitle = 1 || $extra_args{'ShowTitle'}; my $ShowHeaders = 0 || $extra_args{'ShowHeaders'}; my $oldestTransactionsFirst = RT->Config->Get("OldestTransactionsFirst", $session{CurrentUser}); <& /Elements/ShowHistoryHeader, Object => $Ticket, ShowHeaders => $ShowHeaders, ShowTitle => $ShowTitle, ShowDisplayModes => $ShowDisplayModes, ScrollShowHistory => 1, &>
    % if ($ShowDisplayModes or $ShowTitle) { <& /Widgets/TitleBoxEnd &> % } rt-4.4.2/share/html/Ticket/Elements/UpdateCc0000664000175000017500000001433313131430353020516 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback(CallbackName => 'BeforeCc', ARGSRef => \%ARGS, Ticket => $TicketObj, one_time_Ccs => \@one_time_Ccs, txn_addresses => \%txn_addresses); <&|/l&>One-time Cc:<& /Elements/EmailInput, Name => 'UpdateCc', Size => undef, Default => $ARGS{UpdateCc}, AutocompleteMultiple => 1 &>
    %if (scalar @one_time_Ccs) { % if ($hide_cc_suggestions) { (<&|/l&>show suggestions) %} <&|/l&>One-time Bcc:<& /Elements/EmailInput, Name => 'UpdateBcc', Size => undef, Default => $ARGS{UpdateBcc}, AutocompleteMultiple => 1 &>
    %if (scalar @one_time_Ccs) { % if ($hide_cc_suggestions) { (<&|/l&>show suggestions) %} <%args> $TicketObj <%init> my %txn_addresses = %{$TicketObj->TransactionAddresses}; # Get people already added as watchers on the ticket so we can filter # them out of the one-time list my @people_addresses = Email::Address->parse( $TicketObj->RequestorAddresses ); push @people_addresses, Email::Address->parse( $TicketObj->CcAddresses ); push @people_addresses, Email::Address->parse( $TicketObj->AdminCcAddresses ); my @one_time_Ccs; foreach my $addr ( keys %txn_addresses) { next if ( grep {$addr eq lc $_->address} @people_addresses ); push @one_time_Ccs,$addr; } @one_time_Ccs = sort @one_time_Ccs; my $hide_cc_suggestions = RT->Config->Get('HideOneTimeSuggestions', $session{CurrentUser}); my $show_label = $m->interp->apply_escapes( loc("show suggestions"), 'h' ); my $hide_label = $m->interp->apply_escapes( loc("hide suggestions"), 'h' ); rt-4.4.2/share/html/Ticket/Elements/EditWatchers0000664000175000017500000000663413131430353021421 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      %# Print out a placeholder if there are none. % if ( !$Watchers->id || $Members->Count == 0 ) {
    • <&|/l&>none
    • % } else { % while ( my $watcher = $Members->Next ) { % my $member = $watcher->MemberObj->Object;
    • % if ( $member->isa( 'RT::User' ) ) { % if ( $session{CurrentUser}->HasRight( Right => 'AdminUsers', Object => $RT::System ) && % $session{CurrentUser}->HasRight( Right => 'ShowConfigTab', Object =>$RT::System ) ) { <& /Elements/ShowUser, User => $member &> <& /Elements/ShowUserEmailFrequency, User => $member, Ticket => $TicketObj &> % } else { <& /Elements/ShowUser, User => $member &> <& /Elements/ShowUserEmailFrequency, User => $member, Ticket => $TicketObj &> % } } % else { % if ( $session{CurrentUser}->HasRight( Right => 'AdminGroup', Object => $RT::System ) && % $session{CurrentUser}->HasRight( Right => 'ShowConfigTab', Object =>$RT::System ) ) { <% $member->Name %> % } else { <% $member->Name %> % } }
    • % } % }
    <%INIT> my $Members = $Watchers->MembersObj; <%ARGS> $TicketObj => undef $Watchers => undef rt-4.4.2/share/html/Ticket/Elements/ShowRequestor0000664000175000017500000001505213131430353021657 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($ShowTickets) { % } <&| /Widgets/TitleBox, title_raw => loc("More about the requestors"), class => 'ticket-info-requestor' &>
    % while ( my $requestor = $people->Next ) {

    <& /Elements/ShowUser, User => $requestor, Link => 0 &> User Summary

    %# Additional information about this user. Empty by default. % $m->callback( requestor => $requestor, %ARGS, CallbackName => 'AboutThisUser' ); <& ShowRequestorExtraInfo, Requestor => $requestor &> % if ( $ShowComments ) {
    <&|/l&>Comments about this user: <% ($requestor->Comments || loc("No comment entered about this user")) %>
    % } % $m->callback( requestor => $requestor, %ARGS, CallbackName => 'AfterComments' ); % if ( $ShowTickets ) {
    % $index = 1; % for my $status (@$status_order) { % if ( $status eq $DefaultTicketsTab ) {
    <& $TicketTemplate, Requestor => $requestor &> % } else { % }
    % } % my $grouplimit = RT->Config->Get('MoreAboutRequestorGroupsLimit'); % if ( $ShowGroups and defined $grouplimit ) {
    <&|/l&>Groups this user belongs to % if ( $session{CurrentUser}->HasRight( Right => 'AdminUsers', Object => $RT::System ) && % $session{CurrentUser}->HasRight( Right => 'ShowConfigTab', Object =>$RT::System ) ) { [Config->Get('WebPath') . '/Admin/Users/Memberships.html?id=' . $requestor->id %> ><&|/l&>Edit] % } <& /Elements/ShowMemberships, UserObj => $requestor, Limit => $grouplimit &>
    % } %# end of individual requestor details
    % } %# end of requestors loop % $m->callback( %ARGS, CallbackName => 'AfterRequestors' );
    <%INIT> my $show_privileged = RT->Config->Get('ShowMoreAboutPrivilegedUsers'); my $people = $Ticket->Requestors->UserMembersObj; $people->LimitToUnprivileged unless $show_privileged; my $count = $people->Count; return unless $count; my $has_right_adminusers = $session{'CurrentUser'}->HasRight( Object => $RT::System, Right => 'AdminUsers' ); $has_right_adminusers &&= $session{'CurrentUser'}->HasRight( Object => $RT::System, Right => 'ShowConfigTab' ); # Ticket list tabs my $selected = -1; $DefaultTicketsTab ||= RT->Config->Get('MoreAboutRequestorTicketList', $session{CurrentUser}) || 'Active'; my $status_link_text = {Active => loc('Active Tickets'), Inactive => loc('Inactive Tickets'), All => loc('All Tickets')}; my $status_order = [qw/Active Inactive All/]; $m->callback( CallbackName => 'AddStatus', status_link_text => \$status_link_text, status_order => \$status_order ); $ShowTickets = 0 if $DefaultTicketsTab eq 'None'; my $TicketTemplate; if ($ShowTickets) { for (0 .. (@$status_order - 1)) { if ( $status_order->[$_] eq $DefaultTicketsTab ) { $selected = $_; last; } } $TicketTemplate = "ShowRequestorTickets$DefaultTicketsTab"; $TicketTemplate = "ShowRequestorTicketsActive" unless RT::Interface::Web->ComponentPathIsSafe($TicketTemplate) and $m->comp_exists($TicketTemplate); } <%ARGS> $Ticket=>undef $DefaultTicketsTab => undef $ShowComments => 1 $ShowTickets => 1 $ShowGroups => 1 $Title => 'More about [_1]' rt-4.4.2/share/html/Ticket/Elements/EditBasics0000664000175000017500000001362113131430353021037 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $TicketObj => undef $QueueObj => undef @fields => () $InTable => 0 %defaults => () $ExcludeCustomRoles => 0 <%INIT> if ($TicketObj) { $QueueObj ||= $TicketObj->QueueObj; } unless ( @fields ) { my $subject = $defaults{'Subject'} || $TicketObj->Subject; @fields = ( { name => 'Subject', html => '', }, { name => 'Status', comp => '/Ticket/Elements/SelectStatus', args => { Name => 'Status', Default => $defaults{Status}, DefaultFromArgs => 0, TicketObj => $TicketObj, }, }, { name => 'Queue', comp => '/Elements/SelectQueue', args => { Name => 'Queue', Default => $defaults{'Queue'} || $QueueObj->Id, ShowNullOption => 0, } }, { name => 'Owner', comp => '/Elements/SelectOwner', args => { Name => 'Owner', QueueObj => $QueueObj, TicketObj => $TicketObj, Default => $defaults{'Owner'} || $TicketObj->OwnerObj->Id, DefaultValue => 0, } }, { special => 'roles' }, $QueueObj->SLADisabled ? () : ( { name => 'SLA', comp => '/Elements/SelectSLA', args => { Name => 'SLA', Default => $defaults{SLA}, DefaultFromArgs => 0, TicketObj => $TicketObj, }, }), # Time Estimated, Worked, and Left ( map { (my $field = $_) =~ s/ //g; { name => $_, comp => '/Elements/EditTimeValue', args => { Name => $field, Default => $defaults{$field} || $TicketObj->$field, } } } ('Time Estimated', 'Time Worked', 'Time Left') ), # Priority and Final Priority ( map { (my $field = $_) =~ s/ //g; { name => $_, comp => '/Elements/SelectPriority', args => { Name => $field, Default => $defaults{$field} || $TicketObj->$field, } } } ('Priority', 'Final Priority') ), ); } my @role_fields; unless ($ExcludeCustomRoles) { my $roles = $QueueObj->CustomRoles; $roles->LimitToSingleValue; while (my $role = $roles->Next) { push @role_fields, { name => $role->Name, comp => '/Elements/SingleUserRoleInput', args => { role => $role, Ticket => $TicketObj, Default => $defaults{$role->GroupType}, } }; } } # inflate the marker for custom roles into the field specs for each one @fields = map { ($_->{special}||'') eq 'roles' ? @role_fields : $_ } @fields; $m->callback( CallbackName => 'MassageFields', %ARGS, TicketObj => $TicketObj, Fields => \@fields ); # Process the field list, skipping if html is provided and running the # components otherwise for my $field (@fields) { next if defined $field->{'html'}; if ( $field->{'comp'} ) { $field->{'html'} = $m->scomp($field->{'comp'}, %{$field->{'args'} || {}}); } } % unless ($InTable) { % } % for my $field (@fields) { \ \ \ % } % $m->callback( CallbackName => 'EndOfList', TicketObj => $TicketObj, %ARGS, Fields => \@fields ); % unless ($InTable) {
    <% loc($field->{'name'}) %>:<% $field->{'html'} |n %>
    % } rt-4.4.2/share/html/Ticket/Display.html0000664000175000017500000002237713131430353017631 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title, LinkRel => \%link_rel &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', %ARGS, Actions => \@Actions, ARGSRef => \%ARGS, Ticket => $TicketObj); <& /Elements/ListActions, actions => \@Actions &> <& Elements/ShowUpdateStatus, Ticket => $TicketObj &> <& Elements/ShowDependencyStatus, Ticket => $TicketObj &> % $m->callback( %ARGS, Ticket => $TicketObj, Transactions => $transactions, Attachments => $attachments, CallbackName => 'BeforeShowSummary' ); <%PERL> my $show_label = $m->interp->apply_escapes( loc("Show unset fields"), 'h' ); my $hide_label = $m->interp->apply_escapes( loc("Hide unset fields"), 'h' ); my $initial_label = $HideUnsetFields ? $show_label : $hide_label; my $url = "?HideUnsetFields=" . ($HideUnsetFields ? 0 : 1) . ";id=$id"; my $url_html = $m->interp->apply_escapes($url, 'h'); my $titleright = qq{$initial_label};
    <&| /Widgets/TitleBox, title => loc('Ticket metadata'), titleright_raw => $titleright &> <& /Ticket/Elements/ShowSummary, Ticket => $TicketObj, Attachments => $attachments &>

    % $m->callback( Ticket => $TicketObj, %ARGS, Transactions => $transactions, Attachments => $attachments, CallbackName => 'BeforeShowHistory' ); % my $ShowHistory = RT->Config->Get("ShowHistory", $session{'CurrentUser'}); % if ($ShowHistory eq "scroll") { <& /Ticket/Elements/ScrollShowHistory, Ticket => $TicketObj &> % } elsif ($ShowHistory eq "delay") { <& /Ticket/Elements/DelayShowHistory, Ticket => $TicketObj, ShowHeaders => $ARGS{'ShowHeaders'}, &> % } elsif (not $ForceShowHistory and $ShowHistory eq "click") { <& /Ticket/Elements/ClickToShowHistory, Ticket => $TicketObj, ShowHeaders => $ARGS{'ShowHeaders'}, &> % } else { <& /Elements/ShowHistory , Object => $TicketObj, Transactions => $transactions, ShowHeaders => $ARGS{'ShowHeaders'}, Attachments => $attachments, AttachmentContent => $attachment_content &> % } % $m->callback( %ARGS, % Ticket => $TicketObj, % Transactions => $transactions, % Attachments => $attachments, % CallbackName => 'AfterShowHistory', % ); <%ARGS> $id => undef $TicketObj => undef $ShowHeaders => 0 $HideUnsetFields => RT->Config->Get('HideUnsetFieldsOnDisplay', $session{CurrentUser}) $ForceShowHistory => 0 <%INIT> $m->callback( TicketObj => $TicketObj, ARGSRef => \%ARGS, CallbackName => 'Initial' ); if ( ! $ARGS{'NoRedirect'} && RT::Interface::Web->MobileClient()) { $id ||= $TicketObj->id if $TicketObj; RT::Interface::Web::Redirect(RT->Config->Get('WebURL').'m/ticket/show?id='.$id); $m->abort; } my (@Actions, $title); unless ($id || $TicketObj) { Abort('No ticket specified'); } if ($ARGS{'id'} eq 'new') { # Create a new ticket my $Queue = RT::Queue->new( $session{'CurrentUser'} ); $Queue->Load($ARGS{'Queue'}); unless ( $Queue->id ) { Abort('Queue not found'); } unless ( $Queue->CurrentUserHasRight('CreateTicket') ) { Abort('You have no permission to create tickets in that queue.'); } ($TicketObj, @Actions) = CreateTicket( %ARGS ); unless ( $TicketObj->CurrentUserHasRight('ShowTicket') ) { Abort("No permission to view newly created ticket #".$TicketObj->id."."); } } else { $TicketObj ||= LoadTicket($ARGS{'id'}); $TicketObj->CurrentUser->PrincipalObj->HasRights( Object => $TicketObj ); my $SkipProcessing; $TicketObj->Atomic(sub{ $m->callback( CallbackName => 'BeforeProcessArguments', TicketObj => $TicketObj, ActionsRef => \@Actions, ARGSRef => \%ARGS, SkipProcessing => \$SkipProcessing ); return if $SkipProcessing; if ( defined $ARGS{'Action'} ) { if ($ARGS{'Action'} =~ /^(Steal|Delete|Take|SetTold)$/) { my $action = $1; my ($res, $msg) = $TicketObj->$action(); push(@Actions, $msg); } } $m->callback(CallbackName => 'ProcessArguments', Ticket => $TicketObj, ARGSRef => \%ARGS, Actions => \@Actions); push @Actions, ProcessUpdateMessage( ARGSRef => \%ARGS, Actions => \@Actions, TicketObj => $TicketObj, ); #Process status updates push @Actions, ProcessTicketWatchers(ARGSRef => \%ARGS, TicketObj => $TicketObj ); push @Actions, ProcessTicketBasics( ARGSRef => \%ARGS, TicketObj => $TicketObj ); push @Actions, ProcessTicketLinks( ARGSRef => \%ARGS, TicketObj => $TicketObj ); push @Actions, ProcessTicketDates( ARGSRef => \%ARGS, TicketObj => $TicketObj ); push @Actions, ProcessObjectCustomFieldUpdates(ARGSRef => \%ARGS, TicketObj => $TicketObj ); push @Actions, ProcessTicketReminders( ARGSRef => \%ARGS, TicketObj => $TicketObj ); }); if ( !$SkipProcessing ) { unless ($TicketObj->CurrentUserHasRight('ShowTicket')) { if (@Actions) { Abort("A change was applied successfully, but you no longer have permissions to view the ticket", Actions => \@Actions); } else { Abort("No permission to view ticket"); } } if ( $ARGS{'MarkAsSeen'} ) { $TicketObj->SetAttribute( Name => 'User-'. $TicketObj->CurrentUser->id .'-SeenUpTo', Content => $TicketObj->LastUpdated, ); push @Actions, loc('Marked all messages as seen'); } $TicketObj->CurrentUser->AddRecentlyViewedTicket($TicketObj); } } $title = loc("#[_1]: [_2]", $TicketObj->Id, $TicketObj->Subject || ''); $m->callback( CallbackName => 'BeforeDisplay', TicketObj => \$TicketObj, Actions => \@Actions, title => \$title, ARGSRef => \%ARGS, ); # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@Actions, $TicketObj->Type eq 'approval' && RT->Config->Get('ForceApprovalsView') ? (Path => "/Approvals/Display.html", Force => 1) : (Path => "/Ticket/Display.html") , Anchor => $ARGS{'Anchor'}, Arguments => { id => $TicketObj->id }, ); my $transactions = $TicketObj->SortedTransactions; my $attachments = $TicketObj->Attachments; my $attachment_content = $TicketObj->TextAttachments; my %link_rel; if (defined $session{'tickets'} and ($ARGS{'Query'} or $session{'CurrentSearchHash'}->{'Query'})) { my $item_map = $session{'tickets'}->ItemMap; $link_rel{first} = "/Ticket/Display.html?id=" . $item_map->{first} if $item_map->{$TicketObj->Id}{prev}; $link_rel{prev} = "/Ticket/Display.html?id=" . $item_map->{$TicketObj->Id}{prev} if $item_map->{$TicketObj->Id}{prev}; $link_rel{next} = "/Ticket/Display.html?id=" . $item_map->{$TicketObj->Id}{next} if $item_map->{$TicketObj->Id}{next}; $link_rel{last} = "/Ticket/Display.html?id=" . $item_map->{last} if $item_map->{$TicketObj->Id}{next} && $item_map->{last}; } rt-4.4.2/share/html/Ticket/Reminders.html0000664000175000017500000000561713131430353020152 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Reminders for ticket #[_1]", $Ticket->Id) &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', ARGSRef => \%ARGS, Ticket => $Ticket); <& /Elements/ListActions, actions => \@actions &>
    <&|/Widgets/TitleBox, title => loc("Reminders"), class=>'ticket-info-reminders' &> <& /Ticket/Elements/Reminders, Ticket => $Ticket, ShowCompleted => 1, Edit => 1, ShowSave => 0 &> <& /Elements/Submit, Label => loc('Save Changes') &>
    <%INIT> my $Ticket = LoadTicket($id); my @actions = $Ticket->Atomic(sub{ ProcessTicketReminders( TicketObj => $Ticket, ARGSRef => \%ARGS ); }); $Ticket->CurrentUser->AddRecentlyViewedTicket($Ticket); <%ARGS> $id => undef rt-4.4.2/share/html/Ticket/Attachment/0000775000175000017500000000000013131430353017413 5ustar vagrantvagrantrt-4.4.2/share/html/Ticket/Attachment/WithHeaders/0000775000175000017500000000000013131430353021622 5ustar vagrantvagrantrt-4.4.2/share/html/Ticket/Attachment/WithHeaders/dhandler0000664000175000017500000000562113131430353023332 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%perl> # we don't need transaction id my ($id) = $m->dhandler_arg =~ /^(\d+)/; unless ( $id ) { # wrong url format Abort("Corrupted attachment URL"); } my $AttachmentObj = RT::Attachment->new( $session{'CurrentUser'} ); $AttachmentObj->Load( $id ); unless ( $AttachmentObj->id ) { Abort("Couldn't load attachment #$id"); } my $content_type = 'text/plain'; my $enc = $AttachmentObj->OriginalEncoding || 'utf-8'; my $iana = Encode::find_encoding($enc); $iana = $iana ? $iana->mime_name : $enc; $content_type .= ";charset=$iana"; # XXX: should we check handle html here and integrate headers into html? $r->content_type( $content_type ); $m->clear_buffer; $m->out( $AttachmentObj->EncodedHeaders( $enc ) ); $m->out( "\n\n" ); $m->out( $AttachmentObj->OriginalContent ); $m->abort; <%attr> AutoFlush => 0 rt-4.4.2/share/html/Ticket/Attachment/dhandler0000664000175000017500000000775513131430353021135 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%perl> my ( $ticket, $trans, $attach, $filename ); my $arg = $m->dhandler_arg; # get rest of path if ( $arg =~ m{^(\d+)/(\d+)} ) { $trans = $1; $attach = $2; } else { Abort("Corrupted attachment URL."); } my $AttachmentObj = RT::Attachment->new( $session{'CurrentUser'} ); $AttachmentObj->Load($attach) || Abort("Attachment '$attach' could not be loaded"); unless ( $AttachmentObj->id ) { Abort("Bad attachment id. Couldn't find attachment '$attach'\n"); } unless ( $AttachmentObj->TransactionId() == $trans ) { Abort("Bad transaction number for attachment. $trans should be". $AttachmentObj->TransactionId() . "\n"); } my $content = $AttachmentObj->OriginalContent; my $content_type = $AttachmentObj->ContentType || 'text/plain'; my $attachment_regex = qr{^(image/svg\+xml|application/pdf)}i; if ( RT->Config->Get('AlwaysDownloadAttachments') || ($content_type =~ $attachment_regex) ) { $r->headers_out->{'Content-Disposition'} = "attachment"; } elsif ( !RT->Config->Get('TrustHTMLAttachments') ) { my $text_plain_regex = qr{^(text/html|application/xhtml\+xml|text/xml|application/xml)}i; $content_type = 'text/plain' if ( $content_type =~ $text_plain_regex ); } elsif (lc $content_type eq 'text/html') { # If we're trusting and serving HTML for display not download, try to do # inline rewriting to be extra helpful. my $count = RT::Interface::Web::RewriteInlineImages( Content => \$content, Attachment => $AttachmentObj, ); RT->Logger->debug("Rewrote $count CID images when displaying original HTML attachment #$attach"); } my $enc = $AttachmentObj->OriginalEncoding || 'utf-8'; my $iana = Encode::find_encoding($enc); $iana = $iana ? $iana->mime_name : $enc; require MIME::Types; my $mimetype = MIME::Types->new->type($content_type); unless ( $mimetype && $mimetype->isBinary ) { $content_type .= ";charset=$iana"; } $r->content_type($content_type); $m->clear_buffer(); $m->out($content); $m->abort; <%attr> AutoFlush => 0 rt-4.4.2/share/html/Ticket/autohandler0000664000175000017500000000503313131430353017555 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> # Redirect to the approvals view if we're trying to get an approvals ticket # Exceptions: # - Display handles redirecting for approvals itself after mobile redirect/processing # - Create doesn't have an existing ticket # - Forward and ShowEmailRecord are used by the approvals view # - anything not ending in a .html my $whitelist = qr{ (?:/(?:Display|Create|Forward|ShowEmailRecord)\.html |(? $whitelist, ARGSRef => \%ARGS, ); $m->call_next; rt-4.4.2/share/html/Ticket/Forward.html0000664000175000017500000001363513131430353017625 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $Title &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', Actions => \@results, ARGSRef => \%ARGS, Ticket => $TicketObj); <& /Elements/ListActions, actions => \@results &>
    % $m->callback( CallbackName => 'FormStart', ARGSRef => \%ARGS );
    <& /Elements/Crypt/SignEncryptWidget:ShowIssues, self => $gnupg_widget &> % if ( $gnupg_widget ) { % }
    <&|/l&>From: <% $from %>
    <&|/l&>Subject:
    <&|/l&>To: <& /Elements/EmailInput, Name => "To", AutocompleteMultiple => 1, Default => $ARGS{'To'} &>
    <&|/l&>Cc: <& /Elements/EmailInput, Name => "Cc", AutocompleteMultiple => 1, Default => $ARGS{'Cc'} &>
    <&|/l&>Bcc: <& /Elements/EmailInput, Name => "Bcc", AutocompleteMultiple => 1, Default => $ARGS{'Bcc'} &>
      <& /Elements/Crypt/SignEncryptWidget, self => $gnupg_widget, TicketObj => $TicketObj, &>
    <&|/l&>Content: % if (exists $ARGS{Content}) { <& /Elements/MessageBox, Default => $ARGS{Content}, IncludeSignature => 0, SuppressAttachmentWarning => 1 &> % } else { <& /Elements/MessageBox, SuppressAttachmentWarning => 1 &> %}
    <& /Ticket/Elements/ShowAttachments, Ticket => $TicketObj, Attachments => $attachments, Count => RT->Config->Get('AttachmentListCount') &> <& /Elements/Submit, Label => loc('Forward Message and Return'), Name => 'ForwardAndReturn' &> <& /Elements/Submit, Label => loc('Forward Message'), Name => 'Forward' &>
    <%INIT> my ($status, $msg); my $checks_failure = 0; my $TicketObj = LoadTicket($id); $id = $ARGS{'id'} = $TicketObj->id; my $gnupg_widget = $m->comp('/Elements/Crypt/SignEncryptWidget:new', Arguments => \%ARGS ); $m->comp( '/Elements/Crypt/SignEncryptWidget:Process', self => $gnupg_widget, TicketObj => $TicketObj, ); Abort( loc("Permission Denied") ) unless $TicketObj->CurrentUserHasRight('ForwardMessage'); my $txn; if ( $QuoteTransaction ) { $txn = RT::Transaction->new( $session{'CurrentUser'} ); $txn->Load( $QuoteTransaction ); Abort( loc("Couldn't load transaction #[_1]", $QuoteTransaction) ) unless $txn->id; } if ( $Forward || $ForwardAndReturn ) { $status = $m->comp('/Elements/Crypt/SignEncryptWidget:Check', self => $gnupg_widget, TicketObj => $TicketObj, Operation => 'Forward', ); $checks_failure = 1 unless $status; } my @results; if ( !$checks_failure && ($Forward || $ForwardAndReturn) ) { ( $status, $msg ) = $TicketObj->Forward( Transaction => $txn, %ARGS ); push @results, $msg; if ( $ForwardAndReturn ) { $session{'i'}++; my $key = Digest::MD5::md5_hex(rand(1024)); push @{ $session{"Actions"}->{$key} ||= [] }, @results; RT::Interface::Web::Redirect( RT->Config->Get('WebURL') ."Ticket/Display.html?id=". $id."&results=".$key); } } my $Title = $txn ? loc('Forward transaction #[_1]', $txn->id) : loc('Forward ticket #[_1]', $TicketObj->id); my $from = RT::Interface::Email::GetForwardFrom( $txn ? ( Transaction => $txn ) : ( Ticket => $TicketObj ) ); my $subject = "Fwd: ".($txn || $TicketObj)->Subject; my $attachments = RT::Interface::Email::GetForwardAttachments( Ticket => $TicketObj, $txn ? ( Transaction => $txn ) : (), ); <%ARGS> $id => undef $QuoteTransaction => undef $ForwardAndReturn => 0, $Forward => $ForwardAndReturn, rt-4.4.2/share/html/Ticket/Create.html0000664000175000017500000004174113131430353017423 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title, onload => "function () { hide('Ticket-Create-details') }" &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    % $m->callback( CallbackName => 'FormStart', QueueObj => $QueueObj, ARGSRef => \%ARGS ); % if ($gnupg_widget) { <& /Elements/Crypt/SignEncryptWidget:ShowIssues, self => $gnupg_widget &> % }
    <&| /Widgets/TitleBox, title => loc("Basics"), class=>'ticket-info-basics' &> <& /Ticket/Elements/EditBasics, InTable => 1, QueueObj => $QueueObj, defaults => \%ARGS, fields => [ { name => 'Queue', comp => '/Ticket/Elements/ShowQueue', args => { QueueObj => $QueueObj, }, }, { name => 'Status', comp => '/Ticket/Elements/SelectStatus', args => { Name => "Status", QueueObj => $QueueObj, }, }, { name => 'Owner', comp => '/Elements/SelectOwner', args => { Name => "Owner", Default => $ARGS{Owner} || RT->Nobody->Id, DefaultValue => 0, QueueObj => $QueueObj, }, }, { special => 'roles' }, $QueueObj->SLADisabled ? () : ( { name => 'SLA', comp => '/Elements/SelectSLA', args => { Name => "SLA", Default => $ARGS{SLA} || RT::SLA->GetDefaultServiceLevel(Queue => $QueueObj), DefaultValue => RT::SLA->GetDefaultServiceLevel(Queue => $QueueObj) ? 0 : 1, QueueObj => $QueueObj, }, }), ] &> % $m->callback( CallbackName => 'AfterOwner', ARGSRef => \%ARGS ); <& /Elements/EditCustomFields, %ARGS, Object => $ticket, CustomFields => $QueueObj->TicketCustomFields, Grouping => 'Basics', InTable => 1, ForCreation => 1, &> <& /Ticket/Elements/EditTransactionCustomFields, %ARGS, QueueObj => $QueueObj, InTable => 1 &>
    <& /Ticket/Elements/ShowAssetsOnCreate, QueueObj => $QueueObj, ARGSRef => \%ARGS &> % $m->callback( CallbackName => 'AfterBasics', QueueObj => $QueueObj, ARGSRef => \%ARGS ); <& /Elements/EditCustomFieldCustomGroupings, %ARGS, Object => $ticket, CustomFieldGenerator => sub { $QueueObj->TicketCustomFields }, ForCreation => 1, &>
    <&| /Widgets/TitleBox, title => $title, class => 'messagedetails' &> % $m->callback(CallbackName => 'BeforeRequestors', QueueObj => $QueueObj, ARGSRef => \%ARGS); % my $roles = $QueueObj->CustomRoles; % $roles->LimitToMultipleValue; % while (my $role = $roles->Next) { % if ($role->EntryHint) { % } % } <& /Elements/EditCustomFields, %ARGS, Object => $ticket, CustomFields => $QueueObj->TicketCustomFields, Grouping => 'People', InTable => 1, ForCreation => 1, &> % if ( $gnupg_widget ) { % } <& /Ticket/Elements/AddAttachments, %ARGS, QueueObj => $QueueObj &>
    <&|/l&>Requestors: <& /Elements/EmailInput, Name => 'Requestors', Size => undef, Default => $ARGS{Requestors} // $session{CurrentUser}->EmailAddress, AutocompleteMultiple => 1 &> % $m->callback( CallbackName => 'AfterRequestors', QueueObj => $QueueObj, ARGSRef => \%ARGS );
    <&|/l&>Cc: <& /Elements/EmailInput, Name => 'Cc', Size => undef, Default => $ARGS{Cc}, AutocompleteMultiple => 1 &>
      <&|/l&>(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)
    <&|/l&>Admin Cc: <& /Elements/EmailInput, Name => 'AdminCc', Size => undef, Default => $ARGS{AdminCc}, AutocompleteMultiple => 1 &>
      <&|/l&>(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)
    <% $role->Name %>: <& /Elements/EmailInput, Name => $role->GroupType, Size => undef, Default => $ARGS{$role->GroupType}, AutocompleteMultiple => 1 &>
      <% $role->EntryHint %>
    <&|/l&>Subject: % $m->callback( %ARGS, CallbackName => 'AfterSubject' );
      <& /Elements/Crypt/SignEncryptWidget, self => $gnupg_widget, QueueObj => $QueueObj &>
    <&|/l&>Describe the issue below:
    % if ( RT->Config->Get('ArticleOnTicketCreate')) { <& /Articles/Elements/BeforeMessageBox, %ARGS, QueueObj => $QueueObj &> % } % $m->callback( %ARGS, QueueObj => $QueueObj, CallbackName => 'BeforeMessageBox' ); % if (exists $ARGS{Content}) { <& /Elements/MessageBox, Default => $ARGS{Content}, IncludeSignature => 0 &> % } else { <& /Elements/MessageBox, QuoteTransaction => $QuoteTransaction &> %} % $m->callback( %ARGS, QueueObj => $QueueObj, CallbackName => 'AfterMessageBox' );
    <& /Elements/Submit, Label => loc("Create"), id => 'SubmitTicket' &>
    <&| /Widgets/TitleBox, title => loc('The Basics'), title_class=> 'inverse', color => "#993333" &>
    <&|/l&>Priority: <& /Elements/SelectPriority, Name => "InitialPriority", Default => $ARGS{InitialPriority} ? $ARGS{InitialPriority} : $QueueObj->DefaultValue('InitialPriority'), &>
    <&|/l&>Final Priority: <& /Elements/SelectPriority, Name => "FinalPriority", Default => $ARGS{FinalPriority} ? $ARGS{FinalPriority} : $QueueObj->DefaultValue('FinalPriority'), &>
    <&|/l&>Time Estimated: <& /Elements/EditTimeValue, Name => 'TimeEstimated', Default => $ARGS{TimeEstimated} || '' &>
    <&|/l&>Time Worked: <& /Elements/EditTimeValue, Name => 'TimeWorked', Default => $ARGS{TimeWorked} || '' &>
    <&|/l&>Time Left: <& /Elements/EditTimeValue, Name => 'TimeLeft', Default => $ARGS{TimeLeft} || '' &>

    <&|/Widgets/TitleBox, title => loc("Dates"), title_class=> 'inverse', color => "#663366" &> <& /Elements/EditCustomFields, %ARGS, Object => $ticket, CustomFields => $QueueObj->TicketCustomFields, Grouping => 'Dates', InTable => 1, ForCreation => 1, &>
    <&|/l&>Starts: <& /Elements/SelectDate, Name => 'Starts', Default => $ARGS{Starts} || $QueueObj->DefaultValue('Starts') || '', Object => $ticket, ARGSRef => \%ARGS, &>
    <&|/l&>Due: <& /Elements/SelectDate, Name => 'Due', Default => $ARGS{Due} || $QueueObj->DefaultValue('Due') || '', Object => $ticket, ARGSRef => \%ARGS, &>


    <& /Elements/Submit, Label => loc("Create") &>
    <%INIT> $m->callback( CallbackName => "Init", ARGSRef => \%ARGS ); my $Queue = $ARGS{Queue}; $session{DefaultQueue} = $Queue; my $current_user = $session{'CurrentUser'}; if ($CloneTicket) { my $CloneTicketObj = RT::Ticket->new( $session{CurrentUser} ); $CloneTicketObj->Load($CloneTicket) or Abort( loc("Ticket could not be loaded") ); my $clone = { Requestors => join( ',', $CloneTicketObj->RequestorAddresses ), Cc => join( ',', $CloneTicketObj->CcAddresses ), AdminCc => join( ',', $CloneTicketObj->AdminCcAddresses ), InitialPriority => $CloneTicketObj->Priority, }; $clone->{$_} = $CloneTicketObj->$_() for qw/Owner Subject FinalPriority Status/; $clone->{$_} = $CloneTicketObj->$_->AsString for grep { $CloneTicketObj->$_->IsSet } map { $_ . "Obj" } qw/Starts Started Due Resolved/; my $get_link_value = sub { my ($link, $type) = @_; my $uri_method = $type . 'URI'; my $local_method = 'Local' . $type; my $uri = $link->$uri_method; return if $uri->IsLocal and $uri->Object and $uri->Object->isa('RT::Ticket') and $uri->Object->__Value('Type') eq 'reminder'; return $link->$local_method || $uri->URI; }; my (@refers, @refers_by); my $refers = $CloneTicketObj->RefersTo; while ( my $refer = $refers->Next ) { my $refer_value = $get_link_value->($refer, 'Target'); push @refers, $refer_value if defined $refer_value; } $clone->{'new-RefersTo'} = join ' ', @refers; my $refers_by = $CloneTicketObj->ReferredToBy; while ( my $refer_by = $refers_by->Next ) { my $refer_by_value = $get_link_value->($refer_by, 'Base'); push @refers_by, $refer_by_value if defined $refer_by_value; } $clone->{'RefersTo-new'} = join ' ', @refers_by; my $cfs = $CloneTicketObj->QueueObj->TicketCustomFields(); while ( my $cf = $cfs->Next ) { my $cf_id = $cf->id; my $cf_values = $CloneTicketObj->CustomFieldValues( $cf->id ); my @cf_values; while ( my $cf_value = $cf_values->Next ) { push @cf_values, $cf_value->Content; } if ( @cf_values > 1 && $cf->Type eq 'Select' ) { $clone->{GetCustomFieldInputName( CustomField => $cf )} = \@cf_values; } else { $clone->{GetCustomFieldInputName( CustomField => $cf )} = join "\n", @cf_values; } } $m->callback( CallbackName => 'MassageCloneArgs', ARGSRef => $clone, Queue => $Queue ); for ( keys %$clone ) { $ARGS{$_} = $clone->{$_} if not defined $ARGS{$_}; } } my @results; my $QueueObj = RT::Queue->new($current_user); $QueueObj->Load($Queue) || Abort(loc("Queue [_1] could not be loaded.", $Queue||'')); my $title = loc("Create a new ticket in [_1]", $m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)); $m->callback( QueueObj => $QueueObj, title => \$title, results => \@results, ARGSRef => \%ARGS ); $m->scomp( '/Articles/Elements/SubjectOverride', ARGSRef => \%ARGS, QueueObj => $QueueObj, results => \@results ); $QueueObj->Disabled && Abort(loc("Cannot create tickets in a disabled queue.")); my $ticket = RT::Ticket->new($current_user); # empty ticket object ProcessAttachments(ARGSRef => \%ARGS); my $checks_failure = 0; { my ($status, @msg) = $m->comp( '/Elements/ValidateCustomFields', CustomFields => $QueueObj->TicketCustomFields, ARGSRef => \%ARGS ); unless ($status) { $checks_failure = 1; push @results, @msg; } } my $gnupg_widget = $m->comp('/Elements/Crypt/SignEncryptWidget:new', Arguments => \%ARGS ); $m->comp( '/Elements/Crypt/SignEncryptWidget:Process', self => $gnupg_widget, QueueObj => $QueueObj, ); if ( !exists $ARGS{'AddMoreAttach'} && ($ARGS{'id'}||'') eq 'new' ) { my $status = $m->comp('/Elements/Crypt/SignEncryptWidget:Check', self => $gnupg_widget, Operation => 'Create', QueueObj => $QueueObj, ); $checks_failure = 1 unless $status; } # check email addresses for RT's { foreach my $field ( qw(Requestors Cc AdminCc) ) { my $value = $ARGS{ $field }; next unless defined $value && length $value; my @emails = Email::Address->parse( $value ); foreach my $email ( grep RT::EmailParser->IsRTAddress($_->address), @emails ) { push @results, loc("[_1] is an address RT receives mail at. Adding it as a '[_2]' would create a mail loop", $email->format, loc($field =~ /^(.*?)s?$/) ); $checks_failure = 1; $email = undef; } $ARGS{ $field } = join ', ', map $_->format, grep defined, @emails; } } my $skip_create = 0; $m->callback( CallbackName => 'BeforeCreate', ARGSRef => \%ARGS, skip_create => \$skip_create, checks_failure => $checks_failure, results => \@results ); $m->comp( '/Articles/Elements/CheckSkipCreate', ARGSRef => \%ARGS, skip_create => \$skip_create, checks_failure => $checks_failure, results => \@results ); if ((!exists $ARGS{'AddMoreAttach'}) and (defined($ARGS{'id'}) and $ARGS{'id'} eq 'new')) { # new ticket? if ( !$checks_failure && !$skip_create ) { $m->comp('Display.html', %ARGS); $RT::Logger->crit("After display call; error is $@"); $m->abort(); } } PageMenu->child( basics => raw_html => q[] . loc('Basics') . q[]); PageMenu->child( details => raw_html => q[] . loc('Details') . q[]); <%ARGS> $DependsOn => undef $DependedOnBy => undef $MemberOf => undef $QuoteTransaction => undef $CloneTicket => undef rt-4.4.2/share/html/Ticket/ShowEmailRecord.html0000664000175000017500000001062313131430353021242 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Attachment => undef $Transaction => undef <%INIT> my $plain_text_mono = RT->Config->Get( 'PlainTextMono', $session{'CurrentUser'} ); my $use_brs = !$plain_text_mono; my $show_content = sub { my $attach = shift; if ( $attach->ContentType =~ m{^(?:text|message)/}i ) { my $content = $m->interp->apply_escapes( $attach->Content, 'h' ); $content =~ s{(\r?\n)}{
    }g if $use_brs; $m->out( $content ); return; } my $href = RT->System->ExternalStorageURLFor($attach) || RT->Config->Get('WebPath') .'/Ticket/Attachment/' . $attach->TransactionId .'/'. $attach->id .'/' . $m->interp->apply_escapes( $attach->Filename, 'u' ); $m->out( ''. loc('download') .'' ); }; my $show; $show = sub { my $attach = shift; $m->out('
    '); $m->out('
    ') if $plain_text_mono; my $headers = $m->interp->apply_escapes( $attach->Headers, 'h' ); $headers =~ s{(\r?\n)}{
    }g if $use_brs; $m->out( $headers ); $m->out( $use_brs ? "

    " : "\n\n" ); if ( $attach->ContentType =~ m{^multipart/}i ) { my $children = $attach->Children; while ( my $child = $children->Next ) { $show->( $child ); } } else { $show_content->( $attach ); } $m->out('
    ') if $plain_text_mono; $m->out('
    '); }; # Set error for error message below. Abort doesn't display well # because ShowEmailRecord doesn't use the standard RT menus # and headers. my ($title, $error); my $AttachmentObj = RT::Attachment->new($session{'CurrentUser'}); $AttachmentObj->Load($Attachment); if ( not $AttachmentObj->id or not $AttachmentObj->TransactionId() == $Transaction ) { $title = loc("Error loading attachment"); $error = loc("Attachment '[_1]' could not be loaded", $Attachment); } elsif ( not $AttachmentObj->TransactionObj->CurrentUserCanSee("Transaction")){ $title = loc("Permission Denied"); $error = loc("Permission Denied"); } else{ $title = loc("Email Source for Ticket [_1], Attachment [_2]", $AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id); } <& /Elements/Header, ShowBar => 0, Title => $title &> % if ( $error ){
    <% $error %>
    % } % else{ % $show->( $AttachmentObj ); % } % $m->abort; rt-4.4.2/share/html/Reports/0000775000175000017500000000000013131430353015536 5ustar vagrantvagrantrt-4.4.2/share/html/Reports/ResolvedByOwner.html0000664000175000017500000000514413131430353021521 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Queue => undef <%INIT> my $title = loc("Resolved tickets, grouped by owner"); my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($Queue) if $Queue; my $query = $Queue ? "Status = 'resolved' AND Queue = '$Queue'" : ""; <& /Elements/Header, Title => $title &> <& /Elements/Tabs &>
    % if ($query) { <& /Search/Elements/Chart, Query => $query, GroupBy => 'Owner.Name' &> % }

    <&|/l&>Queue: <& /Elements/SelectQueue, Name => 'Queue', NamedValues => 1, Default => $QueueObj->id &> <& /Elements/Submit &>
    rt-4.4.2/share/html/Reports/CreatedByDates.html0000664000175000017500000000661113131430353021253 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Queue => undef $CreatedBefore => '' $CreatedAfter => '' <%INIT> my $title = loc("Created tickets in period, grouped by status"); my @clauses; my $QueueObj = RT::Queue->new($session{CurrentUser}); if ($Queue) { push @clauses, "Queue = '$Queue'"; $QueueObj->Load($Queue); } if ($CreatedAfter) { my $after = RT::Date->new($session{'CurrentUser'}); $after->Set(Format => 'unknown', Value => $CreatedAfter); $CreatedAfter = $after->ISO(Timezone => 'user'); push @clauses, "Created > '$CreatedAfter'"; } if ($CreatedBefore) { my $before = RT::Date->new($session{'CurrentUser'}); $before->Set(Format => 'unknown', Value => $CreatedBefore); $CreatedBefore = $before->ISO(Timezone => 'user'); push @clauses, "Created < '$CreatedBefore'"; } my $query = join ' AND ', @clauses; <& /Elements/Header, Title => $title &> <& /Elements/Tabs &>
    % if ($query) { <& /Search/Elements/Chart, Query => $query, GroupBy => 'Status' &> % }

    <&|/l&>Queue: <& /Elements/SelectQueue, Name => 'Queue', NamedValues => 1, Default => $QueueObj->id &>
    <&|/l&>Tickets created after: <& /Elements/SelectDate, Name => 'CreatedAfter', Default => $CreatedAfter &>
    <&|/l&>Tickets created before: <& /Elements/SelectDate, Name => 'CreatedBefore', Default => $CreatedBefore &> <& /Elements/Submit &>
    rt-4.4.2/share/html/Reports/ResolvedByDates.html0000664000175000017500000000667013131430353021474 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Queue => undef $ResolvedBefore => '' $ResolvedAfter => '' <%INIT> my $title = loc("Resolved tickets in period, grouped by owner"); my @clauses = "Status = 'resolved'"; my $QueueObj = RT::Queue->new($session{CurrentUser}); if ($Queue) { push @clauses, "Queue = '$Queue'"; $QueueObj->Load($Queue); } if ($ResolvedAfter) { my $after = RT::Date->new($session{'CurrentUser'}); $after->Set(Format => 'unknown', Value => $ResolvedAfter); $ResolvedAfter = $after->ISO(Timezone => 'user'); push @clauses, "Resolved > '$ResolvedAfter'"; } if ($ResolvedBefore) { my $before = RT::Date->new($session{'CurrentUser'}); $before->Set(Format => 'unknown', Value => $ResolvedBefore); $ResolvedBefore = $before->ISO(Timezone => 'user'); push @clauses, "Resolved < '$ResolvedBefore'"; } my $query = join ' AND ', @clauses; <& /Elements/Header, Title => $title &> <& /Elements/Tabs &>
    % if ($query) { <& /Search/Elements/Chart, Query => $query, GroupBy => 'Owner.Name' &> % }

    <&|/l&>Queue: <& /Elements/SelectQueue, Name => 'Queue', NamedValues => 1, Default => $QueueObj->id &>
    <&|/l&>Tickets resolved after: <& /Elements/SelectDate, Name => 'ResolvedAfter', Default => $ResolvedAfter &>
    <&|/l&>Tickets resolved before: <& /Elements/SelectDate, Name => 'ResolvedBefore', Default => $ResolvedBefore &> <& /Elements/Submit &>
    rt-4.4.2/share/html/Reports/index.html0000664000175000017500000000416213131430353017536 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Reports') &> <& /Elements/Tabs &> <& /Elements/ListMenu, menu => Menu()->child('reports') &> rt-4.4.2/share/html/Errors/0000775000175000017500000000000013131430353015354 5ustar vagrantvagrantrt-4.4.2/share/html/Errors/WebRemoteUser/0000775000175000017500000000000013131430353020104 5ustar vagrantvagrantrt-4.4.2/share/html/Errors/WebRemoteUser/NoRemoteUser0000664000175000017500000000413713131430353022423 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Wrapper, %ARGS, Title => loc("Unauthorized") &>

    <&|/l&>You are not authorized to use RT.

    rt-4.4.2/share/html/Errors/WebRemoteUser/NoInternalUser0000664000175000017500000000416413131430353022744 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Wrapper, %ARGS, Title => loc("Unauthorized") &>

    <&|/l, $ARGS{User} &>You ([_1]) are not authorized to use RT.

    rt-4.4.2/share/html/Errors/WebRemoteUser/Wrapper0000664000175000017500000000566613131430353021464 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Title => loc("An error occurred") $Error => '' <%init> my $login_url = $m->interp->apply_escapes(RT::Interface::Web::TangentForLoginURL(\%ARGS), 'h'); <% $Title %>

    <% $Title %>

    <% $m->content |n%>

    % if (my $owner = RT->Config->Get('OwnerEmail')) { % $owner = $m->interp->apply_escapes($owner, 'h'); <&|/l_unsafe, qq[], $owner, '' &>Contact your RT administrator via [_1]email to [_2][_3]. % } else { <&|/l&>Contact your RT administrator. % }

    % if (RT->Config->Get('WebRemoteUserAuth') and RT->Config->Get('WebFallbackToRTLogin')) {

    <&|/l_unsafe, qq[], '' &>If you have an internal RT login, you may [_1]try it instead[_2].

    % }

    rt-4.4.2/share/html/Errors/WebRemoteUser/Deauthorized0000664000175000017500000000431413131430353022460 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Wrapper, %ARGS, Title => loc("No longer authorized") &>

    <&|/l&>You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help.

    rt-4.4.2/share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin0000664000175000017500000000431713131430353025745 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Wrapper, %ARGS, Title => loc("Automatic account setup failed") &>

    <&|/l&>Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs.

    rt-4.4.2/share/html/Tools/0000775000175000017500000000000013131430353015200 5ustar vagrantvagrantrt-4.4.2/share/html/Tools/MyDay.html0000664000175000017500000001054413131430353017115 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>

    <&|/l, $session{'CurrentUser'}->Name &>Active tickets for [_1]

    % while ( my $Ticket = $Tickets->Next()) { % $i++; % my $class = $i % 2 ? 'class="evenline"' : 'class="oddline"'; >>> % }

    <%$Ticket->Id%>: <%$Ticket->Subject%>

    <&|/l&>Worked: <&|/l&>minutes <&|/l&>Comments:
    <&|/l&>Status: <& /Ticket/Elements/SelectStatus, Name=> 'UpdateStatus-'.$Ticket->Id, TicketObj => $Ticket &>
    <& /Elements/Submit, Label => loc('Record all updates') , Reset => 1, ResetLabel => loc('Clear')&>
    <%INIT> my $title = loc("What I did today"); my $i = 0; my @results; foreach my $arg ( keys %ARGS ) { next unless ( $arg =~ /^UpdateStatus-(\d*)$/ ); my $id = $1; my $ticket = LoadTicket($id); next unless ( $ticket->id ); if ( my $content = $ARGS{'UpdateContent-'.$id} ) { my ( $val, $msg ) = $ticket->Comment( Content => $content, TimeTaken => $ARGS{ 'UpdateTimeWorked-' . $id } ); push @results, loc( "Ticket [_1]: [_2]", $id, $msg ); } elsif ( my $worked = $ARGS{ 'UpdateTimeWorked-' . $id } ) { my ( $val, $msg ) = $ticket->SetTimeWorked( $worked + $ticket->TimeWorked ); push @results, loc( "Ticket [_1]: [_2]", $id, $msg ); } if ( my $status = $ARGS{ 'UpdateStatus-' . $id } ) { if ( $status ne $ticket->Status ) { my ( $val, $msg ) = $ticket->SetStatus($status); push @results, loc( "Ticket [_1]: [_2]", $id, $msg ); } } } my $Tickets = RT::Tickets->new($session{'CurrentUser'}); $Tickets->LimitOwner(VALUE => $session{'CurrentUser'}->Id); $Tickets->LimitToActiveStatus; $Tickets->OrderBy ( FIELD => 'Priority', ORDER => 'DESC'); rt-4.4.2/share/html/Tools/index.html0000664000175000017500000000415613131430353017203 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Tools") &> <& /Elements/Tabs &> <& /Elements/ListMenu, menu => Menu()->child('tools') &> rt-4.4.2/share/html/Tools/MyReminders.html0000664000175000017500000000426113131430353020327 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('My reminders') &> <& /Elements/Tabs &> <& /Elements/ShowReminders, OnlyOverdue => 0 &> <%INIT> return unless RT->Config->Get('EnableReminders'); rt-4.4.2/share/html/Approvals/0000775000175000017500000000000013131430353016047 5ustar vagrantvagrantrt-4.4.2/share/html/Approvals/Elements/0000775000175000017500000000000013131430353017623 5ustar vagrantvagrantrt-4.4.2/share/html/Approvals/Elements/ShowDependency0000664000175000017500000000763613131430353022501 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $approving = $Ticket->DependedOnBy(); % if ($approving->Count) {

    <&|/l&>Tickets which depend on this approval:

      <%PERL> my %show; while (my $link = $approving->Next()) { next unless ($link->BaseURI->IsLocal()); my $text = ''; my $head = ''; my $type = $link->BaseObj->Type; my $dep = $m->scomp('ShowDependency', Ticket => $link->BaseObj, _seen => $_seen); if ($type eq 'approval') { $head .= $m->scomp('/Widgets/TitleBoxStart', title => loc("Approval #[_1]: [_2]", $link->BaseObj->Id, $link->BaseObj->Subject)); $text .= $head; $text .= $m->scomp('/Ticket/Elements/ShowCustomFields', Ticket => $link->BaseObj); } elsif ($type eq 'ticket') { $head .= $m->scomp('/Widgets/TitleBoxStart', title => loc("Ticket #[_1]: [_2]", $link->BaseObj->Id, $link->BaseObj->Subject)); $text .= $head; $text .= $m->scomp('/Ticket/Elements/ShowSummary', Ticket => $link->BaseObj); } else { $head .= $m->scomp('/Widgets/TitleBoxStart', title => loc("#[_1]: [_2]", $link->BaseObj->Id, $link->BaseObj->Subject)); $text .= $head; } $text .= $m->scomp('/Elements/ShowHistory' , Object => $link->BaseObj, ShowTitle => 0, ShowHeaders => 0, ShowDisplayModes => 0, ShowActions => 0, PathPrefix => RT->Config->Get('WebPath')."/Ticket/"); $head .= $m->scomp('/Widgets/TitleBoxEnd'); $text .= $m->scomp('/Widgets/TitleBoxEnd'); $text .= $dep; $text .= ''; $show{$link->BaseObj->Id} = { text => $text, head => $head, }; } my $refer; foreach my $id (sort keys %show) { if ($_seen->{$id}++) { $refer .= "" . $show{$id}{head} . ""; next; } $m->print($show{$id}{text}); } $m->print($refer);
    % } <%ARGS> $Ticket $_seen => {} rt-4.4.2/share/html/Approvals/Elements/PendingMyApproval0000664000175000017500000001236513131430353023154 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my %done; % foreach ($tickets, $group_tickets) { % while (my $ticket = $_->Next() ) { % next if !$ARGS{'ShowDependent'} and $ticket->HasUnresolvedDependencies( Type => 'approval' ); % next if $done{$ticket->Id}++; # don't show duplicate tickets <& Approve, ticket => $ticket &> % } % } <&| /Widgets/TitleBox, title => loc("Search for approvals") &> />
    />
    />
    />
    <&|/l_unsafe, qq{"&>Only show approvals for requests created before [_1]
    <&|/l_unsafe, qq{"&>Only show approvals for requests created after [_1] <%init> my $tickets = RT::Tickets->new( $session{'CurrentUser'} ); $tickets->LimitOwner( VALUE => $session{'CurrentUser'}->Id ); # also consider AdminCcs as potential approvers. my $group_tickets = RT::Tickets->new( $session{'CurrentUser'} ); $group_tickets->LimitWatcher( VALUE => $session{'CurrentUser'}->EmailAddress, TYPE => 'AdminCc' ); my $created_before = RT::Date->new( $session{'CurrentUser'} ); my $created_after = RT::Date->new( $session{'CurrentUser'} ); foreach ($tickets, $group_tickets) { $_->LimitType( VALUE => 'approval' ); if ( $ARGS{'ShowResolved'} ) { $_->LimitStatus( VALUE => 'resolved' ); } if ( $ARGS{'ShowRejected'} ) { $_->LimitStatus( VALUE => 'rejected' ); } if ( $ARGS{'ShowPending'} || ( !$ARGS{'ShowRejected'} && !$ARGS{'Resolved'} ) ) { $_->LimitStatus( VALUE => 'open' ); $_->LimitStatus( VALUE => 'new' ); $_->LimitStatus( VALUE => 'stalled' ); } if ( $ARGS{'CreatedBefore'} ) { $created_before->Set( Format => 'unknown', Value => $ARGS{'CreatedBefore'} ); $_->LimitCreated( OPERATOR => "<=", VALUE => $created_before->ISO ); } if ( $ARGS{'CreatedAfter'} ) { $created_after->Set( Format => 'unknown', Value => $ARGS{'CreatedAfter'} ); $_->LimitCreated( OPERATOR => ">=", VALUE => $created_after->ISO ); } $_->OrderBy( FIELD => 'id' ); } rt-4.4.2/share/html/Approvals/Elements/Approve0000664000175000017500000001154213131430353021165 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    % if ($ShowApproving) { % foreach my $approving ( $ticket->AllDependedOnBy( Type => 'ticket' ) ) {
    <&|/l, $approving->Id, $approving->Subject &>Originating ticket: #[_1]
    % if ($ShowCustomFields) { <& /Ticket/Elements/ShowCustomFields, Ticket => $approving &> % } % if ($ShowHistory) { <& /Elements/ShowHistory, Object => $approving, ShowTitle => 0, ShowHeaders => 0, ShowDisplayModes => 0, ShowActions => 0, PathPrefix => RT->Config->Get('WebPath')."/Ticket/" &> % }
    % } % }
    % if ( $inactive && $status eq 'resolved' ) { % } else { % }
    % if ( $inactive && $status ne 'resolved' ) { % } else { % }
    % unless ( $inactive ) {
    % }
    <%ARGS> $ShowApproving => 1 $ShowCustomFields => 1 $ShowHistory => 1 $ticket => undef <%INIT> my $status = $ticket->Status; my $inactive = $ticket->LifecycleObj->IsInactive( $status ); rt-4.4.2/share/html/Approvals/Display.html0000664000175000017500000000521613131430353020346 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &>
    <&| /Widgets/TitleBox, title => $title &> <& /Elements/ShowHistory , Object => $Ticket, ShowTitle => 0, ShowHeaders => 0, ShowDisplayModes => 0, ShowActions => 0, PathPrefix => RT->Config->Get('WebPath')."/Ticket/" &>
    <& Elements/Approve, ticket => $Ticket, ShowApproving => 0 &> <& /Elements/Submit&>
    <& Elements/ShowDependency, Ticket => $Ticket &> <%init> my $Ticket = LoadTicket($id); my $title = loc("Approval #[_1]: [_2]", $Ticket->Id, $Ticket->Subject); <%ARGS> $id => undef rt-4.4.2/share/html/Approvals/index.html0000664000175000017500000000675013131430353020054 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("My approvals") &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@actions &>
    <& Elements/PendingMyApproval, %ARGS &> <& /Elements/Submit, Label => loc('Go!') &>
    <%init> my (@actions); foreach my $arg ( keys %ARGS ) { next unless ( $arg =~ /Approval-(\d+)-Action/ ); my ( $notesval, $notesmsg ); my $ticket = LoadTicket($1); my $skip_update = 0; $m->callback( CallbackName => 'BeforeApproval', skip_update => \$skip_update, Ticket => $ticket, actions => \@actions); next if $skip_update; if ( $ARGS{ "Approval-" . $ticket->Id . "-Notes" } ) { my ( $notesval, $notesmsg ) = $ticket->Correspond( Content => $ARGS{ "Approval-" . $ticket->Id . "-Notes" } ); if ($notesval) { push ( @actions, loc("Approval #[_1]: Notes recorded",$ticket->Id )); } else { push ( @actions, loc("Approval #[_1]: Notes not recorded due to a system error",$ticket->Id )); } } my ($val, $msg); if ( $ARGS{$arg} eq 'deny' && $ticket->Status !~ /^(rejected|deleted)/ ) { ( $val, $msg ) = $ticket->SetStatus('rejected'); } elsif ( $ARGS{$arg} eq 'approve' && $ticket->Status ne 'resolved') { ( $val, $msg ) = $ticket->SetStatus('resolved'); } push ( @actions, loc("Approval #[_1]: [_2]",$ticket->id, $msg )) if ($msg); } rt-4.4.2/share/html/Approvals/autohandler0000664000175000017500000000431013131430353020276 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> if ( $session{'CurrentUser'}->UserObj->HasRight( Right => 'ShowApprovalsTab', Object => $RT::System, ) ) { $m->call_next(%ARGS); } else { Abort("No permission to view approval"); } rt-4.4.2/share/html/l_unsafe0000664000175000017500000000421413131430353015620 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $hand = ($session{'CurrentUser'} ||= RT::CurrentUser->new)->LanguageHandle; $m->print($hand->maketext($m->content,@_)); return(1); rt-4.4.2/share/html/Admin/0000775000175000017500000000000013131430353015130 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/CustomRoles/0000775000175000017500000000000013131430353017407 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/CustomRoles/Modify.html0000664000175000017500000001435713131430353021536 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    % $m->callback( CallbackName => 'FormStart', Create => $Create, ARGSRef => \%ARGS );
    <&|/l&>Role Name: Name || $Name %>" />
    <&|/l&>Description: Description || $Description || '' %>" size="60" />
    <&|/l&>Entry Hint: EntryHint || $EntryHint || '' %>" size="60" />
    UnlimitedValues ) { checked="checked" % } % if ( !$Create ) { disabled="disabled" % } />
    />
    % $m->callback( %ARGS, RoleObj => $RoleObj, results => \@results );
    % if ( $Create ) { <& /Elements/Submit, Label => loc('Create') &> % } else { <& /Elements/Submit, Label => loc('Save Changes') &> % }
    <%INIT> my ($title, @results, @no_redirect_results, $Disabled, $EnabledChecked); my $RoleObj = RT::CustomRole->new( $session{'CurrentUser'} ); $RoleObj->Load( $id ) if !$id || $id eq 'new'; $EnabledChecked = 'checked="checked"'; unless ($Create) { if ( defined $id && $id eq 'new' ) { my ($val, $msg) = $RoleObj->Create( Name => $Name ); if (!$val) { $Create = 1; # Create failed, so bring us back to step 1 push @results, $msg; } else { push @results, loc("Custom role created"); } } else { $RoleObj->Load($id) || $RoleObj->Load($Name) || Abort(loc("Couldn't load custom role '[_1]'", $Name)); } } if ( $RoleObj->Id ) { $title = loc('Configuration for role [_1]', $RoleObj->Name ); my @attribs = qw(Description Name EntryHint Disabled); # we just created the role if (!$id || $id eq 'new') { push @attribs, 'MaxValues'; if ( $SetMultiple ) { $ARGS{'MaxValues'} = $Multiple ? 0 : 1; } } # we're asking about enabled on the page but really care about disabled if ( $SetEnabled ) { $Disabled = $ARGS{'Disabled'} = $Enabled? 0: 1; } $m->callback( CallbackName => 'BeforeUpdate', Role => $RoleObj, AttributesRef => \@attribs, ARGSRef => \%ARGS, ); my @update_results = UpdateRecordObject( AttributesRef => \@attribs, Object => $RoleObj, ARGSRef => \%ARGS ); # if we're creating, then don't bother listing updates since it's just # noise for finishing the setup of the newly created record if ($id && $id ne 'new') { push @results, @update_results; } $Disabled = $ARGS{'Disabled'} = $Enabled? 0: 1; $EnabledChecked = "" if $RoleObj->Disabled; } else { $title = loc("Create a custom role"); } MaybeRedirectForResults( Actions => \@results, Arguments => { id => $RoleObj->Id }, ) if $RoleObj->id; push @results, @no_redirect_results; <%ARGS> $id => undef $result => undef $Name => undef $Create => undef $Description => undef $EntryHint => undef $SetEnabled => undef $SetMultiple => undef $Multiple => undef $Enabled => undef rt-4.4.2/share/html/Admin/CustomRoles/Objects.html0000664000175000017500000001055113131430353021670 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions &>

    <&|/l&>Selected objects

    <& /Elements/CollectionList, OrderBy => 'id', Order => 'ASC', %ARGS, Collection => $added, Rows => 0, Page => 1, Format => $format, DisplayFormat => "'__CheckBox.{RemoveRole-$id}__',". $format, AllowSorting => 0, ShowEmpty => 0, PassArguments => [ qw(id Format Rows Page Order OrderBy), ], &>

    <&|/l&>Unselected objects

    <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', %ARGS, Collection => $not_added, Rows => $rows, Format => $format, DisplayFormat => "'__CheckBox.{AddRole-". $id ."}__',". $format, AllowSorting => 1, ShowEmpty => 0, PassArguments => [ qw(id Format Rows Page Order OrderBy), ], &> <& /Elements/Submit, Name => 'Update' &>
    <%ARGS> $id => undef $Update => 0 $From => undef <%INIT> my $role = RT::CustomRole->new( $session{'CurrentUser'} ); $role->Load($id) or Abort(loc("Could not load custom role #[_1]", $id)); $id = $role->id; if ($role->Disabled) { Abort(loc("Cannot modify objects of disabled custom role #[_1]", $id)); } if ( $Update ) { my (@results); if ( defined (my $del = $ARGS{"RemoveRole-$id"}) ) { foreach my $id ( ref $del ? (@$del) : ($del) ) { my ($status, $msg) = $role->RemoveFromObject( $id ); push @results, $msg; } } if ( defined (my $add = $ARGS{"AddRole-$id"}) ) { foreach my $id ( ref $add ? (@$add) : ($add) ) { my ($status, $msg) = $role->AddToObject( $id ); push @results, $msg; } } MaybeRedirectForResults( Actions => \@results, Arguments => { id => $id, From => $From, }, ); } my $added = $role->AddedTo; my $not_added = $role->NotAddedTo; my $format = RT->Config->Get('AdminSearchResultFormat')->{'Queues'}; my $rows = RT->Config->Get('AdminSearchResultRows')->{'Queues'} || 50; my $title = loc('Modify associated objects for [_1]', $role->Name); rt-4.4.2/share/html/Admin/CustomRoles/index.html0000664000175000017500000001040113131430353021400 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &>

    <%$title%>

    % foreach my $field( qw(Format Rows Page Order OrderBy) ) { % next unless defined $ARGS{ $field } && length $ARGS{ $field }; % } <& /Elements/SelectMatch, Name => 'SearchOp', Default => $SearchOp &>
    />

    <&|/l&>Select a custom role:

    % unless ( $roles->Count ) { <&|/l&>No custom roles matching search criteria found. % } else { <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', Rows => $Rows, %ARGS, Format => $Format, Collection => $roles, AllowSorting => 1, PassArguments => [qw( Format Rows Page Order OrderBy FindDisabled SearchString SearchOp SearchField )], &> % } <%INIT> my $title = loc("Select a Custom Role"); my $roles = RT::CustomRoles->new($session{'CurrentUser'}); $roles->FindAllRows if $FindDisabled; if ( defined $SearchString && length $SearchString ) { $roles->Limit( FIELD => $SearchField, OPERATOR => $SearchOp, VALUE => $SearchString, ); RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."Admin/CustomRoles/Modify.html?id=".$roles->First->id) if $roles->Count == 1; } else { $roles->UnLimit; } $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'CustomRoles'}; my $Rows = RT->Config->Get('AdminSearchResultRows')->{'CustomRoles'} || 50; <%ARGS> $FindDisabled => 0 $Format => undef $SearchField => 'Name' $SearchOp => 'LIKE' $SearchString => '' rt-4.4.2/share/html/Admin/Assets/0000775000175000017500000000000013131430353016372 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Assets/index.html0000664000175000017500000000421613131430353020372 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Asset Administration') &> <& /Elements/Tabs &> <& /Elements/ListMenu, menu => Menu()->child('admin')->child('assets') &> rt-4.4.2/share/html/Admin/Assets/Catalogs/0000775000175000017500000000000013131430353020127 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Assets/Catalogs/Roles.html0000664000175000017500000000574613131430353022115 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Catalog [_1]: Modify roles", $catalog->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc("Roles"), class => "catalog-roles" &>
    <& /Asset/Elements/EditCatalogPeople, %ARGS, Object => $catalog &> <& /Asset/Elements/AddCatalogPeople, Object => $catalog &>
    <& /Elements/Submit, Label => loc('Save'), Name => "Update" &>
    <%args> $id => undef $Update => 0 <%init> my $catalog = LoadCatalog($id); my @results; if ($Update) { push @results, ProcessAssetRoleMembers( $catalog => %ARGS ); MaybeRedirectForResults( Actions => \@results, Arguments => { id => $catalog->id }, ); } rt-4.4.2/share/html/Admin/Assets/Catalogs/Modify.html0000664000175000017500000000622213131430353022246 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Catalog [_1]: Modify basics", $catalog->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc("Basics"), class => "catalog-basics" &> <& Elements/EditBasics, %ARGS, CatalogObj => $catalog &> <& /Elements/Submit, Label => loc('Save'), Name => "Update" &>
    <%args> $id => undef $Update => 0 <%init> my @results; my $catalog = LoadCatalog($id); if ($Update) { my @attributes = $catalog->WritableAttributes; # Disabled isn't submitted if unchecked, so use our hidden field to know if # it was included in the form. $ARGS{Disabled} = $ARGS{Disabled} ? 1 : 0 if $ARGS{SetDisabled}; push @results, UpdateRecordObject( Object => $catalog, AttributesRef => \@attributes, ARGSRef => \%ARGS, ); MaybeRedirectForResults( Actions => \@results, Arguments => { id => $catalog->id }, ); } rt-4.4.2/share/html/Admin/Assets/Catalogs/GroupRights.html0000664000175000017500000000523013131430353023272 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Catalog [_1]: Modify group rights", $Catalog->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <& /Admin/Elements/EditRights, Context => $Catalog, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
    <%init> my $Catalog = LoadCatalog($id); my @results = ProcessACLs(\%ARGS); my @principals = GetPrincipalsMap($Catalog, qw(System Roles Groups)); <%args> $id => undef rt-4.4.2/share/html/Admin/Assets/Catalogs/CustomFields.html0000664000175000017500000000450513131430353023422 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Catalog [_1]: Edit Custom Fields", $Catalog->Name) &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, Object => $Catalog, ObjectType => 'RT::Catalog', SubType => 'RT::Asset', &> <%init> my $Catalog = LoadCatalog($id); <%args> $id => undef rt-4.4.2/share/html/Admin/Assets/Catalogs/Elements/0000775000175000017500000000000013131430353021703 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Assets/Catalogs/Elements/EditBasics0000664000175000017500000000623213131430353023643 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <& /Widgets/Form/Select:InputOnly, Name => 'Lifecycle', Values => [ sort { loc($a) cmp loc($b) } RT::Lifecycle->List( $CatalogObj->LifecycleType ) ], CurrentValue => $current{Lifecycle}, Default => 0, &>
    >
    <%args> $CatalogObj <%init> my %current = map { $_ => ($ARGS{$_} || $CatalogObj->$_ || '') } $CatalogObj->WritableAttributes; rt-4.4.2/share/html/Admin/Assets/Catalogs/index.html0000664000175000017500000001056013131430353022126 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Admin Catalogs") &> <& /Elements/Tabs &>

    <% $caption %>

    <&|/l&>Select a catalog:

    % unless ( $catalogs->Count ) { <&|/l&>No catalogs matching search criteria found. % } else { <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', Rows => $Rows, %ARGS, Format => $Format, Collection => $catalogs, AllowSorting => 1, PassArguments => [qw( Rows Page Order OrderBy FindDisabled String Op Field )], &> % }
    % foreach my $field( qw(Rows Page Order OrderBy) ) { % next unless defined $ARGS{ $field } && length $ARGS{ $field }; % } <& /Elements/SelectMatch, Name => 'Op', Default => $Op &>
    />
    <%INIT> my $catalogs = RT::Catalogs->new($session{'CurrentUser'}); $catalogs->FindAllRows if $FindDisabled; my ($caption); if ( defined $String && length $String ) { $caption = $FindDisabled ? loc("All catalogs matching search criteria") : loc("Enabled catalogs matching search criteria"); $catalogs->Limit( FIELD => $Field, OPERATOR => $Op, VALUE => $String, ); RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."Admin/Assets/Catalogs/Modify.html?id=".$catalogs->First->id) if $catalogs->Count == 1; } else { $catalogs->UnLimit; $caption = $FindDisabled ? loc("All Catalogs") : loc("Enabled Catalogs"); } my $Format = RT->Config->Get('AdminSearchResultFormat')->{'Catalogs'}; my $Rows = RT->Config->Get('AdminSearchResultRows')->{'Catalogs'} || 50; <%ARGS> $FindDisabled => 0 $Field => 'Name' $Op => '=' $String => '' rt-4.4.2/share/html/Admin/Assets/Catalogs/UserRights.html0000664000175000017500000000520613131430353023117 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Catalog [_1]: Modify user rights", $Catalog->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <& /Admin/Elements/EditRights, Context => $Catalog, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
    <%init> my $Catalog = LoadCatalog($id); my @results = ProcessACLs(\%ARGS); my @principals = GetPrincipalsMap($Catalog, qw(Users)); <%args> $id => undef rt-4.4.2/share/html/Admin/Assets/Catalogs/Create.html0000664000175000017500000000622413131430353022224 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Create catalog") &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc("Basics"), class => "catalog-basics" &> <& Elements/EditBasics, %ARGS, CatalogObj => $catalog &> <& /Elements/Submit, Label => loc('Create catalog'), Name => "Update" &>
    <%args> $id => "" <%init> my @results; my $catalog = RT::Catalog->new( $session{CurrentUser} ); if ($id eq "new") { my %create; for ($catalog->WritableAttributes) { $create{$_} = $ARGS{$_} if exists $ARGS{$_}; } $m->callback( %ARGS, CatalogObj => $catalog, Create => \%create, CallbackName => 'MassageCreate' ); my ($ok, $msg, $nonfatal) = $catalog->Create( %create ); push @results, $msg, @{$nonfatal || []}; if ($ok) { MaybeRedirectForResults( Actions => \@results, Path => "/Admin/Assets/Catalogs/Modify.html", Arguments => { id => $catalog->id }, ); } } rt-4.4.2/share/html/Admin/Assets/Catalogs/DefaultValues.html0000664000175000017500000001002513131430353023557 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <& /Elements/EditCustomFieldCustomGroupings, CustomFieldGenerator => sub { $catalog->AssetCustomFields->LimitToDefaultValuesSupportedTypes }, TitleBoxARGS => { title_class => "inverse" }, Object => RT::Asset->new($session{CurrentUser}) &> <& /Elements/Submit, Name => 'Update', Label => loc('Save Changes') &> <& /Elements/Submit, Name => 'Reset', Label => loc('Reset Custom Field Values to Default') &>
    <%INIT> my $catalog = RT::Catalog->new( $session{CurrentUser} ); $catalog->Load($id) || Abort( loc( "Couldn't load asset [_1]", $id ) ); my $title = loc( 'Default Values for catalog [_1]', $catalog->Name ); my @results; if ( $ARGS{Reset} ) { my $attr = $catalog->FirstAttribute( 'CustomFieldDefaultValues' ); if ( $attr ) { $attr->Delete; push @results, "Custom Field default values are reset"; } } elsif ( $ARGS{Update} ) { my $cfs = _ParseObjectCustomFieldArgs(\%ARGS)->{'RT::Asset'}{0}; for my $cf_id (keys %$cfs) { # In the case of inconsistent CFV submission, # we'll get the 1st grouping in the hash, alphabetically my ($ret, $grouping_name) = _ValidateConsistentCustomFieldValues($cf_id, $cfs->{$cf_id}); my $grouping = $cfs->{$cf_id}{$grouping_name}; my $value = $grouping->{Value} // $grouping->{Values}; my $cf = RT::CustomField->new($session{CurrentUser}); $cf->Load($cf_id); if ( $cf->id && $cf->SupportDefaultValues ) { my ($ret, $msg) = $cf->SetDefaultValues( Object => $catalog, Values => $value, ); push @results, $msg; } } } MaybeRedirectForResults( Actions => \@results, Arguments => { id => $catalog->id }, ); <%ARGS> $id => undef rt-4.4.2/share/html/Admin/Actions/0000775000175000017500000000000013131430353016530 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Actions/Modify.html0000664000175000017500000000664713131430353020662 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Modify action #[_1]", $id) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc('Basics') &> <& Elements/EditBasics, %ARGS, Action => $action, &>
    <& /Elements/Submit, Label => loc('Copy Action'), Name => 'Copy' &> <& /Elements/Submit, Label => loc('Save Changes'), Name => 'Update', Reset => 1 &>
    <%ARGS> $id => undef $Update => undef $Copy => undef <%INIT> my $action = RT::ScripAction->new( $session{'CurrentUser'} ); $action->Load( $id ); Abort(loc("Couldn't load action #[_1]", $id)) unless $action->id; if ( $action->Creator == RT->SystemUser->id ) { RT::Interface::Web::Redirect( RT->Config->Get('WebURL') ."Admin/Actions/Display.html?id=$id" ); } my @results; if ( $Update ) { my @attribs = qw( Name Description ExecModule Argument ); @results = UpdateRecordObject( AttributesRef => \@attribs, Object => $action, ARGSRef => \%ARGS ); MaybeRedirectForResults( Actions => \@results, Arguments => { id => $action->id }, ); } elsif ( $Copy ) { RT::Interface::Web::Redirect( RT->Config->Get('WebURL') ."Admin/Actions/Create.html?id=$id" ); } rt-4.4.2/share/html/Admin/Actions/Elements/0000775000175000017500000000000013131430353020304 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Actions/Elements/ShowBasics0000664000175000017500000000512213131430353022274 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/l&>Name: <% $ARGS{"Name"} || $Action->Name || '' %> <&|/l&>Description: <% $ARGS{"Description"} || $Action->Description || '' %> <&|/l&>Action Module: <% $ARGS{"ExecModule"} || $Action->ExecModule || ''%> <&|/l&>Parameters to Pass: <% $ARGS{"Argument"} || $Action->Argument || '' %> <%ARGS> $Action rt-4.4.2/share/html/Admin/Actions/Elements/EditBasics0000664000175000017500000000540213131430353022242 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/l&>Name: Name || '' %>" /> <&|/l&>Description: Description || '' %>" /> <&|/l&>Action Module: ExecModule || ''%>" /> <&|/l&>Parameters to Pass: Argument || '' %>"/> <%ARGS> $Action rt-4.4.2/share/html/Admin/Actions/Display.html0000664000175000017500000000526313131430353021031 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Display action #[_1]", $id) &> <& /Elements/Tabs &> <&| /Widgets/TitleBox, title => loc('Basics') &> <& Elements/ShowBasics, %ARGS, Action => $action, &>
    <& /Elements/Submit, Label => loc('Copy Action'), Name => 'Copy' &>
    <%ARGS> $id => undef $Copy => undef <%INIT> if ( $Copy ) { RT::Interface::Web::Redirect( RT->Config->Get('WebURL') ."Admin/Actions/Create.html?id=$id" ); } my $action = RT::ScripAction->new( $session{'CurrentUser'} ); $action->Load( $id ); Abort(loc("Couldn't load action #[_1]", $id)) unless $action->id; rt-4.4.2/share/html/Admin/Actions/autohandler0000664000175000017500000000441313131430353020763 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> return $m->call_next(%ARGS) if $session{'CurrentUser'}->UserObj->HasRight( Right => 'ShowScrips', Object => $RT::System, ) && $session{'CurrentUser'}->UserObj->HasRight( Right => 'ModifyScrips', Object => $RT::System, ); $m->clear_and_abort(403); rt-4.4.2/share/html/Admin/Actions/Create.html0000664000175000017500000000644213131430353020627 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => "Create a global action" &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc('Basics') &> <& Elements/EditBasics, %ARGS, Action => $action, &>
    <& /Elements/Submit, Label => loc('Create'), Name => 'Create', &>
    <%ARGS> $Create => undef $id => undef <%INIT> my @results; if ( $id ) { my $action = RT::ScripAction->new( $session{'CurrentUser'} ); $action->Load( $id ); if ( $action ) { for my $item ( qw/Name Description ExecModule Argument/ ) { $ARGS{$item} ||= $action->$item; } } } my $action = RT::ScripAction->new( $session{'CurrentUser'} ); if ( $Create ) { my ($status, $msg) = $action->Create( Name => $ARGS{"Name"}, Description => $ARGS{"Description"}, ExecModule => $ARGS{"ExecModule"}, Argument => $ARGS{"Argument"}, ); MaybeRedirectForResults( Force => 1, Actions => [ $msg ], Path => 'Admin/Actions/Modify.html', Arguments => { id => $action->id }, ) if $status; push @results, $msg; } rt-4.4.2/share/html/Admin/Conditions/0000775000175000017500000000000013131430353017241 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Conditions/Modify.html0000664000175000017500000000675313131430353021371 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Modify condition #[_1]", $id) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc('Basics') &> <& Elements/EditBasics, %ARGS, Condition => $condition, &>
    <& /Elements/Submit, Label => loc('Copy Condition'), Name => 'Copy' &> <& /Elements/Submit, Label => loc('Save Changes'), Name => 'Update', Reset => 1 &>
    <%ARGS> $id => undef $Update => undef $Copy => undef <%INIT> my $condition = RT::ScripCondition->new( $session{'CurrentUser'} ); $condition->Load( $id ); Abort(loc("Couldn't load condition #[_1]", $id)) unless $condition->id; if ( $condition->Creator == RT->SystemUser->id ) { RT::Interface::Web::Redirect( RT->Config->Get('WebURL') ."Admin/Conditions/Display.html?id=$id" ); } my @results; if ( $Update ) { my @attribs = qw( Name Description ExecModule Argument ApplicableTransTypes ); @results = UpdateRecordObject( AttributesRef => \@attribs, Object => $condition, ARGSRef => \%ARGS ); MaybeRedirectForResults( Actions => \@results, Arguments => { id => $condition->id }, ); } elsif ( $Copy ) { RT::Interface::Web::Redirect( RT->Config->Get('WebURL') ."Admin/Conditions/Create.html?id=$id" ); } rt-4.4.2/share/html/Admin/Conditions/Elements/0000775000175000017500000000000013131430353021015 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Conditions/Elements/ShowBasics0000664000175000017500000000544113131430353023011 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/l&>Name: <% $ARGS{"Name"} || $Condition->Name || '' %> <&|/l&>Description: <% $ARGS{"Description"} || $Condition->Description || '' %> <&|/l&>Condition Module: <% $ARGS{"ExecModule"} || $Condition->ExecModule || ''%> <&|/l&>Parameters to Pass: <% $ARGS{"Argument"} || $Condition->Argument || '' %> <&|/l&>Applicable Transaction Types: <% $ARGS{"ApplicableTransTypes"} || $Condition->ApplicableTransTypes || '' %> <%ARGS> $Condition rt-4.4.2/share/html/Admin/Conditions/Elements/EditBasics0000664000175000017500000000601113131430353022750 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/l&>Name: Name || '' %>" /> <&|/l&>Description: Description || '' %>" /> <&|/l&>Condition Module: ExecModule || ''%>" /> <&|/l&>Parameters to Pass: Argument || '' %>"/> <&|/l&>Applicable Transaction Types: ApplicableTransTypes || '' %>" /> <%ARGS> $Condition rt-4.4.2/share/html/Admin/Conditions/Display.html0000664000175000017500000000531713131430353021542 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Display condition #[_1]", $id) &> <& /Elements/Tabs &> <&| /Widgets/TitleBox, title => loc('Basics') &> <& Elements/ShowBasics, %ARGS, Condition => $condition, &>
    <& /Elements/Submit, Label => loc('Copy Condition'), Name => 'Copy' &>
    <%ARGS> $id => undef $Copy => undef <%INIT> if ( $Copy ) { RT::Interface::Web::Redirect( RT->Config->Get('WebURL') ."Admin/Conditions/Create.html?id=$id" ); } my $condition = RT::ScripCondition->new( $session{'CurrentUser'} ); $condition->Load( $id ); Abort(loc("Couldn't load condition #[_1]", $id)) unless $condition->id; rt-4.4.2/share/html/Admin/Conditions/autohandler0000664000175000017500000000441313131430353021474 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> return $m->call_next(%ARGS) if $session{'CurrentUser'}->UserObj->HasRight( Right => 'ShowScrips', Object => $RT::System, ) && $session{'CurrentUser'}->UserObj->HasRight( Right => 'ModifyScrips', Object => $RT::System, ); $m->clear_and_abort(403); rt-4.4.2/share/html/Admin/Conditions/Create.html0000664000175000017500000000665113131430353021342 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => "Create a global condition" &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc('Basics') &> <& Elements/EditBasics, %ARGS, Condition => $condition, &>
    <& /Elements/Submit, Label => loc('Create'), Name => 'Create', &>
    <%ARGS> $Create => undef $id => undef <%INIT> my @results; if ( $id ) { my $condition = RT::ScripCondition->new( $session{'CurrentUser'} ); $condition->Load( $id ); if ( $condition ) { for my $item ( qw/Name Description ExecModule Argument ApplicableTransTypes/ ) { $ARGS{$item} ||= $condition->$item; } } } my $condition = RT::ScripCondition->new( $session{'CurrentUser'} ); if ( $Create ) { my ($status, $msg) = $condition->Create( Name => $ARGS{"Name"}, Description => $ARGS{"Description"}, ExecModule => $ARGS{"ExecModule"}, Argument => $ARGS{"Argument"}, ApplicableTransTypes => $ARGS{"ApplicableTransTypes"}, ); MaybeRedirectForResults( Force => 1, Actions => [ $msg ], Path => 'Admin/Conditions/Modify.html', Arguments => { id => $condition->id }, ) if $status; push @results, $msg; } rt-4.4.2/share/html/Admin/Articles/0000775000175000017500000000000013131430353016676 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Articles/Elements/0000775000175000017500000000000013131430353020452 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Articles/Elements/Topics0000664000175000017500000001544113131430353021643 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@results &>
    % if (!$Modify) {
    <&|/l&>Topic Name
    <&|/l&>Description
    % } else { New topic % } <& .tree, Element => $tree, Action => $Modify ? "Move" : "Add", Prefix => $Modify ? "Topic-$Modify-Parent" : "Insert", RootObj => $RootObj, Modify => $Modify &>
    <%def .edit>  
    Topic Name:
    Description:
    <%args> $topic <%def .tree> % my $topic = $Element->getNodeValue; % unless ($Element->isRoot) { % if ($Modify and $topic->Id == $Modify) { % $Action = ""; <& .edit, topic => $topic &> % } else { <%$topic->Name || loc("(no name)") %> % } % }
      % for my $e (sort {$a->getNodeValue->Name cmp $b->getNodeValue->Name} $Element->getAllChildren) {
    • <& .tree, Element => $e, Action => $Action, Prefix => $Prefix, RootObj => $RootObj, Modify => $Modify &>
    • % } % if ($Action) { % unless ($Action eq "Move" and grep {$_->getNodeValue->Id == $Modify} $Element->getAllChildren) {
    • Id%>" value="<% $Action eq 'Move' ? loc('Move here') : loc('Add here') %>" />
    • % } % }
    <%args> $Element $Action $Prefix $RootObj $Modify <%INIT> my @results; for my $k (keys %ARGS) { if ($k =~ /^Topic-(\d+)-(Name|Description)/) { my $topic = RT::Topic->new($session{'CurrentUser'}); $topic->Load($1); if ($topic->Id) { next if $ARGS{$k} eq $topic->$2; my $proc = "Set$2"; my ($val, $msg) = $topic->$proc($ARGS{$k}); push @results, $msg; } else { $m->comp("/Elements/Error", Why => loc("Topic not found")); } } elsif ($k =~ /^Topic-(\d+)-Parent-(\d+)/) { my $topic = RT::Topic->new($session{'CurrentUser'}); $topic->Load($1); if ($topic->Id) { next if $2 eq $topic->Parent; my $old = $topic->Parent; my $new = "$2"; my ($val, $msg) = $topic->setParent($new); push @results, $msg; } else { $m->comp("/Elements/Error", Why => loc("Topic not found")); } } elsif ($k =~ /^Insert-(\d+)/) { my $topic = RT::Topic->new($session{'CurrentUser'}); my ($id, $msg) = $topic->Create( Parent => $1, Name => $ARGS{'Name'}, Description => $ARGS{'Description'}, ObjectType => ref($RootObj), ObjectId => $RootObj->Id, ); push @results, $msg; } } for my $k (keys %ARGS) { next unless $k =~ /^Delete-Topic-(\d+)/; my $topic = RT::Topic->new($session{'CurrentUser'}); $topic->Load($1); if ($topic->Id) { my ($val, $msg) = $topic->DeleteAll(); push @results, $msg; } else { $m->comp("/Elements/Error", Why => loc("Topic not found")); } } my $topics = RT::Topics->new($session{'CurrentUser'}); $topics->LimitToObject($RootObj); $topics->OrderByCols({FIELD => 'Parent'}, {FIELD => 'id'}); use Tree::Simple; my $tree = Tree::Simple->new(Tree::Simple->ROOT); my %lookup = (0 => $tree); my @todo; while (my $topic = $topics->Next) { push @todo, $topic; } { my $changed = 0; my @work = @todo; @todo = (); for my $topic (@work) { if (defined $lookup{$topic->Parent}) { $lookup{$topic->Id} = Tree::Simple->new($topic, $lookup{$topic->Parent}); $changed = 1; } else { push @todo, $topic; } } redo unless $changed == 0; } for my $topic (@todo) { $topic->setParent(0); $lookup{$topic->Id} = Tree::Simple->new($topic, $tree); push @results, "Reparented orphan ".$topic->Id." to root"; } <%ARGS> $RootObj => undef $title => "" $Modify => "" rt-4.4.2/share/html/Admin/Articles/index.html0000664000175000017500000000422213131430353020673 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Article Administration') &> <& /Elements/Tabs &> <& /Elements/ListMenu, menu => Menu()->child('admin')->child('articles') &> rt-4.4.2/share/html/Admin/Articles/Classes/0000775000175000017500000000000013131430353020273 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Articles/Classes/Modify.html0000664000175000017500000001762113131430353022417 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    %if ($Create ) { % } else { % }
    <&|/l&>Class Name:
    <&|/l&>Description:
      >
      >

    <&|/l&>When inserting articles in this class into emails:

    • >
    • >
    • % if ( $cfs ) { % while (my $cf = $cfs->Next) {
    • <&|/l, $cf->Name &>Include custom field '[_1]'
      • Id} %> />
      • Id} %> />
    • % } }
    % if ( @$subject_cfs ) {

    <&|/l&>Change email subject:

    <&|/l&>If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article.

    <& /Widgets/Form/Select, Name => 'SubjectOverride', DefaultLabel => loc('No Subject Override'), Values => $subject_cfs, ValuesLabel => $subject_cf_labels, CurrentValue => $ClassObj->SubjectOverride, &> % } %$m->callback( CallbackName => 'BeforeSubmit', CustomFields => $cfs, ClassObj => $ClassObj ); % if ( $Create ) { <& /Elements/Submit, Label => loc('Create') &> % } else { <& /Elements/Submit, Label => loc('Save Changes') &> % }
    <%INIT> my $ClassObj = RT::Class->new($session{'CurrentUser'}); my ($title, @results, $Disabled); if ($Create) { $title = loc("Create a Class"); } else { my ( $val, $msg ); if ($id eq 'new') { ($val, $msg) = $ClassObj->Create(Name => $Name); if ( $val ) { push @results, $msg; } else { push @results, loc('Class could not be created: [_1]', $msg); } } else { $ClassObj->Load($id) || $ClassObj->Load($Name) || $m->comp("/Elements/Error", Why => "Couldn't load class '$Name'"); $val = $ClassObj->id; } if ( $val ) { $title = loc('Modify the Class [_1]', $ClassObj->Name); } else { $title = loc("Create a Class"); $Create = 1; } } if ($ClassObj->Id()) { if ($ARGS{SubjectOverride}) { $ARGS{SubjectOverride} = $m->comp('/Widgets/Form/Select:Process', Arguments => \%ARGS, Name => 'SubjectOverride', DefaultValue => (''), ); } $ARGS{HotList} ||= 0 if $Submitted; my @attribs= qw(Description Name HotList SubjectOverride); $m->callback( CallbackName => 'AttributeList', Attributes => \@attribs, ARGSRef => \%ARGS ); push @results, UpdateRecordObject( AttributesRef => \@attribs, Object => $ClassObj, ARGSRef => \%ARGS); } #we're asking about enabled on the web page but really care about disabled. if ((defined $Enabled && $Enabled == 1) or (not defined $Enabled and $Create)) { $Disabled = 0; } else { $Disabled = 1; } my %include = (Name => 1, Summary => 1); my $subject_cfs = []; my $subject_cf_labels = {}; my $cfs; if ( $ClassObj->id ) { $cfs = $ClassObj->ArticleCustomFields; while ( my $cf = $cfs->Next ) { $include{"CF-Title-".$cf->Id} = $include{"CF-Value-".$cf->Id} = 1; push @$subject_cfs,$cf->Id; $subject_cf_labels->{$cf->Id} = $cf->Name; } } if ( $ClassObj->id && $Submitted ) { if ( $Disabled != $ClassObj->Disabled) { my ($code, $msg) = $ClassObj->SetDisabled($Disabled); push @results, loc('Enabled status [_1]', loc_fuzzy($msg)); } for (keys %include) { if ($ARGS{"Include-$_"}) { $ClassObj->DeleteAttribute("Skip-$_"); } else { $ClassObj->SetAttribute(Name => "Skip-$_", Content => 1); } } } # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@results, Arguments => { id => $ClassObj->Id }, ) if $ClassObj->id; if ( $ClassObj->id ) { $include{$_} = not $ClassObj->FirstAttribute("Skip-$_") for keys %include; } $include{$_} = $include{$_} ? " CHECKED" : "" for keys %include; my $EnabledChecked = ($Create ? $Disabled : $ClassObj->Disabled()) ? "" : "CHECKED"; my $HotListChecked = $ClassObj->id && $ClassObj->HotList ? "CHECKED" : ""; <%ARGS> $id => undef $result => undef $Name => undef $Create => undef $Description => undef $Submitted => undef $Enabled => undef rt-4.4.2/share/html/Admin/Articles/Classes/GroupRights.html0000664000175000017500000000552613131430353023446 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify group rights for Class [_1]', $ClassObj->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <& /Admin/Elements/EditRights, Context => $ClassObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
    <%INIT> if (!defined $id) { $m->comp("/Elements/Error", Why => loc("No Class defined")); } my $ClassObj = RT::Class->new($session{'CurrentUser'}); $ClassObj->Load($id) || $m->comp("/Elements/Error", Why => loc("Couldn't load Class [_1]",$id)); my @results = ProcessACLs(\%ARGS); my @principals = GetPrincipalsMap($ClassObj, qw(System Groups)); <%ARGS> $id => undef rt-4.4.2/share/html/Admin/Articles/Classes/CustomFields.html0000664000175000017500000000505413131430353023566 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, Object => $Object, ObjectType => 'RT::Class', SubType => 'RT::Article' &> <%INIT> my $Object = RT::Class->new( $session{'CurrentUser'} ); $Object->Load($id) || Abort( loc( "Couldn't load object [_1]", $id ) ); my $FriendlySubTypes = RT::CustomField->new( $session{'CurrentUser'} ) ->FriendlyLookupType( $Object->CustomFieldLookupType ); my $title = loc( 'Edit Custom Fields for [_1]', $Object->Name ); <%ARGS> $id => undef rt-4.4.2/share/html/Admin/Articles/Classes/Objects.html0000664000175000017500000001231113131430353022550 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    % if ( $is_global ) {

    <&|/l&>Applies to all objects

    % } else {

    <&|/l&>Apply globally

    <&|/l&>Selected Queues

    <& /Elements/CollectionList, OrderBy => ['SortOrder','Name'], Order => ['ASC', 'ASC'], %ARGS, Collection => $applied, Rows => 0, Page => 1, Format => $format, DisplayFormat => "'__CheckBox.{RemoveClass-". $Class->id ."}__',". $format, AllowSorting => 0, ShowEmpty => 0, PassArguments => [ qw(id Format Rows Page Order OrderBy), ], &>

    <&|/l&>Unselected Queues

    <& /Elements/CollectionList, OrderBy => ['SortOrder','Name'], Order => ['ASC', 'ASC'], %ARGS, Collection => $not_applied, Rows => $rows, Format => $format, DisplayFormat => "'__CheckBox.{AddClass-". $Class->id ."}__',". $format, AllowSorting => 1, ShowEmpty => 0, PassArguments => [ qw(id Format Rows Page Order OrderBy), ], &> % } <& /Elements/Submit, Name => 'UpdateObjs' &>
    <%INIT> my $Class = RT::Class->new($session{'CurrentUser'}); $Class->Load($id) or Abort(loc("Could not load Class [_1]"), $id); my (@results); if ( $UpdateObjs ) { if ( defined (my $del = $ARGS{'RemoveClass-'.$Class->id}) ) { foreach my $id ( ref $del? (@$del) : ($del) ) { my $object = RT::Queue->new( $session{'CurrentUser'} ); if ( $id ) { $object->Load( $id ); next unless $object->id; } my ($status, $msg) = $Class->RemoveFromObject( $object ); push @results, $msg; } } if ( defined (my $add = $ARGS{'AddClass-'.$Class->id}) ) { foreach my $id ( ref $add? (@$add) : ($add) ) { my $object = RT::Queue->new( $session{'CurrentUser'} ); if ( $id ) { $object->Load( $id ); next unless $object->id; } my ($status, $msg) = $Class->AddToObject( $object ); push @results, $msg; } } } my $is_global = $Class->IsApplied(0); my $applied = $Class->AppliedTo; my $not_applied = $Class->NotAppliedTo; my $collection_class = ref($applied); $collection_class =~ s/^RT:://; my $format = RT->Config->Get('AdminSearchResultFormat')->{$collection_class} || '__id__,__Name__'; my $rows = RT->Config->Get('AdminSearchResultRows')->{$collection_class} || 50; my $title = loc('Modify associated objects for [_1]', $Class->Name); <%ARGS> $id => undef $FindDisabledObjects => 0 $UpdateObjs => 0 rt-4.4.2/share/html/Admin/Articles/Classes/index.html0000664000175000017500000000652213131430353022275 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Select a Class") &> <& /Elements/Tabs &>

    <%$caption%>:

    <&|/l&>Select a Class:

    % unless ($Classes->Count) { <&|/l&>No Classes matching search criteria found. % } else { <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', Rows => $Rows, %ARGS, Format => $Format, Collection => $Classes, AllowSorting => 1, PassArguments => [qw( Format Rows Page Order OrderBy FindDisabledClasses )], &> % }

    <%INIT> my $caption; my $Classes = RT::Classes->new($session{'CurrentUser'}); if ($FindDisabledClasses) { $caption = loc("All Classes"); $Classes->{'find_disabled_rows'} = 1; $Classes->UnLimit(); } else { $caption = loc("Enabled Classes"); $Classes->LimitToEnabled(); } $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Classes'}; my $Rows = RT->Config->Get('AdminSearchResultRows')->{'Classes'} || 50; <%ARGS> $FindDisabledClasses => 0 $Format => undef rt-4.4.2/share/html/Admin/Articles/Classes/UserRights.html0000664000175000017500000000550113131430353023261 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify user rights for class [_1]', $ClassObj->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <& /Admin/Elements/EditRights, Context => $ClassObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &> <%INIT> my @results = ProcessACLs(\%ARGS); if (!defined $id) { $m->comp("/Elements/Error", Why => loc("No Class defined")); } my $ClassObj = RT::Class->new($session{'CurrentUser'}); $ClassObj->Load($id) || $m->comp("/Elements/Error", Why => loc("Couldn't load Class [_1]",$id)); my @principals = GetPrincipalsMap($ClassObj, 'Users'); <%ARGS> $id => undef rt-4.4.2/share/html/Admin/Articles/Classes/Topics.html0000664000175000017500000000475113131430353022431 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Articles/Elements/Topics, title => $title, RootObj => $ClassObj, %ARGS &> <%INIT> my $ClassObj = RT::Class->new($session{'CurrentUser'}); $ClassObj->Load($ARGS{'id'}) || $m->comp("/Elements/Error", Why => "Couldn't load class '$id'"); my $title = $Modify ? loc("Modify topic for [_1]", $ClassObj->Name) : loc("Edit topic hierarchy for [_1]", $ClassObj->Name); <%ARGS> $id => undef $Modify => "" rt-4.4.2/share/html/Admin/Tools/0000775000175000017500000000000013131430353016230 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Tools/Shredder/0000775000175000017500000000000013131430353017770 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Tools/Shredder/Dumps/0000775000175000017500000000000013131430353021060 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Tools/Shredder/Dumps/dhandler0000664000175000017500000000457713131430353022601 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ATTR> AutoFlush => 0 <%INIT> my $arg = $m->dhandler_arg; $m->abort(404) if $arg =~ m{\.\.|/|\\}; use File::Spec (); use RT::Shredder (); my $File = File::Spec->catfile( RT::Shredder->StoragePath, $arg ); $r->content_type('application/octets-stream'); open my $fh, "<:raw", $File or $m->abort(404); my $buf; while( read $fh, $buf, 1024*1024 ) { $m->out($buf); } $m->abort; rt-4.4.2/share/html/Admin/Tools/Shredder/Elements/0000775000175000017500000000000013131430353021544 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Tools/Shredder/Elements/PluginArguments0000664000175000017500000000512613131430353024617 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Plugin => ''
    <% loc('Fill arguments') %>:
    % for my $a ( $plugin_obj->SupportArgs ) { % }
    " id="<% "$Plugin:$a" %>" value="<% $ARGS{ "$Plugin:$a" } || '' %>" />
    <%INIT> use RT::Shredder::Plugin; my $plugin_obj = RT::Shredder::Plugin->new; my ($status, $msg) = $plugin_obj->LoadByName( $Plugin ); die $msg unless $status; rt-4.4.2/share/html/Admin/Tools/Shredder/Elements/SelectObjects0000664000175000017500000000505113131430353024221 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> @Objects => ()
    % unless( @Objects ) { <& /Elements/ListActions, actions => [loc("Objects list is empty")] &> % } else {
    <% loc("click to check/uncheck all objects at once") %>
    % foreach my $o( @Objects ) { <& ObjectCheckBox, Object => $o &> % }
    <& /Elements/Submit, Name => 'Wipeout', Label => loc('Wipeout') &> % }
    <%INIT> rt-4.4.2/share/html/Admin/Tools/Shredder/Elements/Error/0000775000175000017500000000000013131430353022635 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Tools/Shredder/Elements/Error/NoStorage0000664000175000017500000000456613131430353024474 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Path => '' <& /Admin/Elements/Header, Title => 'Error' &> <& /Elements/Tabs &>
    % my $path_tag = q{} . $m->interp->apply_escapes($Path, 'h') . q{}; <&|/l_unsafe, $path_tag &>Shredder needs a directory to write dumps to. Please ensure that the directory [_1] exists and that it is writable by your web server.
    rt-4.4.2/share/html/Admin/Tools/Shredder/Elements/Error/NoRights0000664000175000017500000000420613131430353024317 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => 'Error' &> <& /Elements/Tabs &>
    <% loc("You don't have SuperUser right.") |n%>
    rt-4.4.2/share/html/Admin/Tools/Shredder/Elements/DumpFileLink0000664000175000017500000000460413131430353024016 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $File => '' <%INIT> return unless $File; use File::Spec (); use RT::Shredder (); $File = File::Spec->abs2rel( $File, RT::Shredder->StoragePath ) if File::Spec->file_name_is_absolute($File); rt-4.4.2/share/html/Admin/Tools/Shredder/Elements/SelectPlugin0000664000175000017500000000540013131430353024064 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Plugin => '' <& PluginHelp, %ARGS, Plugin => 'Base' &>
    Select plugin:
    % foreach my $p( keys %plugins ) {
    <& PluginHelp, %ARGS, Plugin => $p &> <& PluginArguments, %ARGS, Plugin => $p &>
    % }
    <%ONCE> use RT::Shredder::Plugin; my $plugin_obj = RT::Shredder::Plugin->new; my %plugins = $plugin_obj->List('Search'); rt-4.4.2/share/html/Admin/Tools/Shredder/Elements/PluginHelp0000664000175000017500000000525713131430353023547 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Plugin => ''
    <% $text |n%>
    <%ONCE> use RT::Shredder::Plugin; my $plugin_obj = RT::Shredder::Plugin->new; my %plugins = $plugin_obj->List; <%INIT> my $file = $plugins{ $Plugin }; unless( $file ) { $RT::Logger->error( "Couldn't find plugin '$Plugin'" ); return; } use RT::Shredder::POD qw(); my $text = ''; open( my $io_handle, ">:scalar", \$text ) or die "Can't open scalar for write: $!"; RT::Shredder::POD::plugin_html( $file, $io_handle ); if ( $Plugin eq 'Base' ) { $file =~ s/\.pm$/\/Search.pm/; RT::Shredder::POD::plugin_html( $file, $io_handle ); } close $io_handle; rt-4.4.2/share/html/Admin/Tools/Shredder/Elements/ObjectCheckBox0000664000175000017500000000456013131430353024311 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Object => undef % if( $m->comp_exists( $path ) ) { % $m->comp( $path, Object => $Object ); % } else { <% $Object->UID %> % }
    <%ONCE> require File::Spec; <%INIT> my $path = ref $Object; $path =~ s/:/-/g; $path = File::Spec->catfile( 'Object', $path ); rt-4.4.2/share/html/Admin/Tools/Shredder/Elements/Object/0000775000175000017500000000000013131430353022752 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment0000664000175000017500000000456013131430353025372 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Object => undef % my $name = (defined $Object->Filename and length $Object->Filename) ? $Object->Filename : loc("(no value)"); <% loc('Attachment') %>(<% loc('id') %>:<% $Object->id %>, <% loc('Filename') %>: <% $name %>) rt-4.4.2/share/html/Admin/Tools/Shredder/Elements/Object/RT--User0000664000175000017500000000431713131430353024220 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Object => undef <% loc('User') %>(<% loc('id') %>:<% $Object->id %>, <% loc('Name') %>: <% $Object->Name %>) rt-4.4.2/share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket0000664000175000017500000000434513131430353024526 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Object => undef <% loc('Ticket') %>(<% loc('id') %>:<% $Object->id %>, <% loc('Subject') %>: <% substr($Object->Subject, 0, 30) %>...) rt-4.4.2/share/html/Admin/Tools/Shredder/index.html0000664000175000017500000001374013131430353021772 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Plugin => '' $Search => '' $Wipeout => '' @WipeoutObject => () <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &>
    <& /Elements/ListActions, actions => $messages{'Errors'} &> <& /Elements/ListActions, actions => $messages{'Success'} &> <& Elements/DumpFileLink, File => $dump_file &> <& Elements/SelectPlugin, Plugin => $Plugin, %ARGS &>
    <& /Elements/Submit, Name => 'Search', Label => loc('Search') &>

    % if( $Search || $Wipeout ) { <& Elements/SelectObjects, Objects => \@objs &> % } <%INIT> require RT::Shredder; my $title = loc('Shredder'); my %messages = ( Errors => [], Success => [] ); my ($plugin_obj, @objs); my $catch_non_fatals = sub { require RT::Shredder::Exceptions; if ( my $e = RT::Shredder::Exception::Info->caught ) { push @{ $messages{Errors} }, "$e"; $Search = ''; @objs = (); return 1; } if ( UNIVERSAL::isa( $@, 'Class::Exception' ) ) { $@->rethrow; } else { die $@; } }; if( $Plugin ) { { # use additional block({}) to effectively exit block on errors use RT::Shredder::Plugin; $plugin_obj = RT::Shredder::Plugin->new; my( $status, $msg ) = $plugin_obj->LoadByName( $Plugin ); unless( $status ) { push @{ $messages{Errors} }, $msg; $Search = ''; last; } my %args; foreach my $k( keys %ARGS ) { next unless $k =~ /^\Q$Plugin\E:(.*)$/; $args{ $1 } = $ARGS{$k}; } ( $status, $msg ) = $plugin_obj->HasSupportForArgs( keys %args ); unless( $status ) { push @{ $messages{Errors} }, $msg; $Search = ''; last; } ($status, $msg) = eval { $plugin_obj->TestArgs( %args ) }; $catch_non_fatals->() && last if $@; unless( $status ) { push @{ $messages{Errors} }, $msg; $Search = ''; last; } } } my $dump_file = ''; if( $Plugin && $Wipeout ) { { # use additional block({}) to effectively exit block on errors my $shredder = RT::Shredder->new( force => 1 ); my $backup_plugin = RT::Shredder::Plugin->new; my ($status, $msg) = $backup_plugin->LoadByName('SQLDump'); unless( $status ) { push @{ $messages{Errors} }, $msg; $Search = ''; @objs = (); last; } ($status, $msg) = $backup_plugin->TestArgs; unless( $status ) { push @{ $messages{Errors} }, $msg; $Search = ''; @objs = (); last; } ($dump_file) = $backup_plugin->FileName; push @{ $messages{'Success'} }, "SQL dump file is '$dump_file'"; $shredder->AddDumpPlugin( Object => $backup_plugin ); $shredder->PutObjects( Objects => \@WipeoutObject ); ($status, $msg) = $plugin_obj->SetResolvers( Shredder => $shredder ); unless( $status ) { push @{ $messages{Errors} }, $msg; $Search = ''; @objs = (); last; } eval { $shredder->WipeoutAll }; $catch_non_fatals->() && last if $@; push @{ $messages{Success} }, loc('objects were successfuly removed'); } } if( $Plugin && ( $Search || $Wipeout ) ) { { # use additional block({}) to effectively exit block on errors my $status; ($status, @objs) = eval { $plugin_obj->Run }; $catch_non_fatals->() && last if $@; unless( $status ) { push @{ $messages{Errors} }, $objs[0]; $Search = ''; @objs = (); last; } push @{ $messages{Success} }, loc('executed plugin successfuly'); my $shredder = RT::Shredder->new; foreach my $o( grep defined, splice @objs ) { eval { push @objs, $shredder->CastObjectsToRecords( Objects => $o ) }; $catch_non_fatals->() && last if $@; } unless( @objs ) { push @{ $messages{Success} }, loc('plugin returned empty list'); } else { push @{ $messages{Success} }, loc('see object list below'); } } } rt-4.4.2/share/html/Admin/Tools/Shredder/autohandler0000664000175000017500000000451013131430353022221 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> unless( $session{'CurrentUser'}->HasRight( Right => 'SuperUser', Object => $RT::System ) ) { return $m->comp( 'Elements/Error/NoRights' ); } use RT::Shredder (); my $path = RT::Shredder->StoragePath; unless( -d $path && -w _ ) { return $m->comp( 'Elements/Error/NoStorage', Path => $path ); } $m->call_next(%ARGS); rt-4.4.2/share/html/Admin/Tools/Queries.html0000664000175000017500000001372313131430353020541 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Undup => 1 $ShowElem => 0 <%init> my $title = loc('SQL Queries'); unless ($session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser')) { Abort(loc('This feature is only available to system administrators.')); } <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <&|/Widgets/TitleBox, title => loc('SQL Queries') &> % my $history = $RT::Handle->QueryHistory; % if (!RT->Config->Get('StatementLog')) {

    <&|/l&>You must set StatementLog to true to enable this query history page.

    % } elsif (!$history) {

    <&|/l&>This server process has recorded no SQL queries.

    % } else {
      % my $r = 0; % for my $request (@$history) { % ++$r; % my ($seconds, $count) = (0, 0); % for my $statement (@{ $request->{Queries} }) { % $seconds += $statement->[3]; % $count++; % }
    1. <% $request->{Path} %> - <&|/l, sprintf('%.4f', $seconds) &>[_1]s );"><&|/l, $count &>Toggle [quant,_1,query,queries] % my $s = 0; % my @undup; % for my $statement (@{ $request->{Queries} }) { % my ($dup) = grep {$_->[1] eq $statement->[1]} @undup[-(@undup > 3?3:@undup)..-1]; % if ($Undup and $dup) { % $dup->[2] = [$dup->[2]] unless $dup->[5]; % push @{$dup->[2]}, $statement->[2]; % $dup->[3] += $statement->[3]; % $dup->[5] ||= 1; $dup->[5]++; % } else { % push @undup, $statement; % } % } % my $element = ''; % for my $statement (@undup) { % my ( $time, $sql, $bind, $duration, $trace, $dup ) = @$statement; % if ($ShowElem) { % my($cur_element) = $trace =~ m{called at (.*?) line \d+\n\s+HTML::Mason::Commands::__ANON__}; % if ($element ne $cur_element) { % $element = $cur_element; % } % } % $sql = $RT::Handle->FillIn($sql, $bind) unless $dup; % }
    2. % }
    % } rt-4.4.2/share/html/Admin/Tools/Configuration.html0000664000175000017500000002741413131430353021735 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> require Module::Versions::Report; my $title = loc('System Configuration'); unless ($session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser')) { Abort(loc('This feature is only available to system administrators')); } <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <&|/Widgets/TitleBox, title => loc("RT Configuration") &> <%PERL> my $index_conf; foreach my $key ( RT->Config->Options( Overridable => undef, Sorted => 0 ) ) { my $val = RT->Config->GetObfuscated( $key, $session{'CurrentUser'} ); next unless defined $val; my $meta = RT->Config->Meta( $key ); my $description = ''; if ( $meta->{'Source'}{'Extension'} && $meta->{'Source'}{'SiteConfig'} ) { $description = loc("[_1] site config", $meta->{'Source'}{'Extension'}); } elsif ( $meta->{'Source'}{'Extension'} ) { $description = loc("[_1] core config", $meta->{'Source'}{'Extension'}); } elsif ( $meta->{'Source'}{'SiteConfig'} ) { $description = loc("site config"); } else { $description = loc("core config"); } $index_conf++; % }
    <&|/l&>Option <&|/l&>Value <&|/l&>Source
    <% $key %> % if ( $key =~ /Password/i and $key !~ /MinimumPasswordLength|AllowLoginPasswordAutoComplete/ ) { <% loc('Password not printed' ) %>\ % } else { <% stringify($val) |n %>\ % } % if ( $meta->{'Source'}{'SiteConfig'} ) { <% $description %> % } else { <% $description %> % }
    <&|/Widgets/TitleBox, title=> loc("RT core variables") &> <%PERL> { no strict qw/refs/; my %config_opt = map { $_ => 1 } RT->Config->Options( Overridable => undef ); my $index_var; foreach my $key ( sort keys %{*RT::} ) { next if !${'RT::'.$key} || ref ${'RT::'.$key} || $config_opt{ $key }; $index_var++; % } % }
    <&|/l&>Variable <&|/l&>Value
    RT::<% $key %> % if ( $key =~ /Password(?!Length)/i ) { <% loc('Password not printed' ) %>\ % } else { <% ${'RT::'.$key} %> % }
    <&|/Widgets/TitleBox, title => loc("RT Size") &> <%PERL> my ($index_size, $user_count, $privileged_count); for my $type (qw/Tickets Queues Transactions Groups PrivilegedUsers UnprivilegedUsers/) { my $count; my $class = 'RT::' . $type; $class =~ s/Privileged|Unprivileged//; my $collection = $class->new(RT->SystemUser); $collection->UnLimit; $collection->FindAllRows; # find disabled if ($type =~ /PrivilegedUsers/) { $user_count = $collection->CountAll; $collection->LimitToPrivileged; $count = $privileged_count = $collection->CountAll; } elsif ($type =~ /UnprivilegedUsers/) { $count = $user_count - $privileged_count; } else { $count = $collection->CountAll; } $index_size++; % }
    <&|/l&>Object <&|/l&>Size
    <% $type %> <% $count %>
    <&|/Widgets/TitleBox, title => loc("Mason template search order") &>
      % foreach my $path ( RT::Interface::Web->ComponentRoots ) {
    1. <% $path %>
    2. % }
    <&|/Widgets/TitleBox, title => loc("Static file search order") &>
      % foreach my $path ( (map {$_->{root}} RT->Config->Get('StaticRoots')), % RT::Interface::Web->StaticRoots ) {
    1. <% $path %>
    2. % }
    <&|/Widgets/TitleBox, title => loc("Perl library search order") &>
      % foreach my $inc (@INC) {
    1. <% $inc %>
    2. % }
    <&|/Widgets/TitleBox, title=> loc("Loaded config files") &>
      % foreach my $config (RT->Config->LoadedConfigs) { % if ($config->{site}) {
    1. <% $config->{filename} %>
    2. % } else {
    3. <% $config->{filename} %>
    4. % } % }
    <&|/Widgets/TitleBox, title=> loc("Logging summary") &> <& /Admin/Elements/LoggingSummary &>
    <&|/Widgets/TitleBox, title => loc("Global Attributes") &> % my $attrs = $RT::System->Attributes; % my $index_size = 0; % while ( my $attr = $attrs->Next ) { % next if $attr->Name eq 'UpgradeHistory'; % if ($attr->Name eq 'UserLogo') { % my $content = $attr->Content; % $content->{data} = defined $content->{data} ? 'DATA' : 'undef' % if exists $content->{data}; % } else { % } % $index_size++; % }
    <&|/l&>Name <&|/l&>Value
    <% $attr->Name %><% stringify($content) |n %><% $attr->Name %><% stringify($attr->Content) |n %>
    <&|/Widgets/TitleBox, title => loc("Loaded RT Extensions")&> % my $row = 0; % foreach my $pluginName (grep $_, RT->Config->Get('Plugins')) { % my $plugin = RT::Plugin->new( name => $pluginName ); % }
    <&|/l&>Extension <&|/l&>Version
    <%$plugin->Name%> <%$plugin->Version%>
    <&|/Widgets/TitleBox, title => loc("Loaded perl modules")&> <%perl> my $i = 0; my $report = Module::Versions::Report::report(); my @report = grep /v\d/, split("\n",$report); shift @report; # throw away the perl version my ($ver, $source, $distfile); foreach my $item (@report) { if ($item =~ /^\s*(.*?)\s*v(\S+);/) { $item = $1; $ver = $2; $distfile = $item.".pm"; $distfile =~ s|::|/|g; } % }
    <&|/l&>Module <&|/l&>Version <&|/l&>Source
    <% $item %> <%$ver%> <% $INC{$distfile} || '' %>
    <&|/Widgets/TitleBox, title => loc("RT upgrade history")&> <& /Admin/Elements/UpgradeHistory &> <&|/Widgets/TitleBox, title => loc("Perl configuration") &> % require Config;
    <% Config::myconfig() %>
    
    <&|/Widgets/TitleBox, title=> loc("Environment variables") &> % my $row = 0; % for my $key (sort keys %ENV) { % }
    <&|/l&>Variable <&|/l&>Value
    <% $key %> <% $ENV{$key} %>
    <&|/Widgets/TitleBox, title => loc("Operating System") &> <%perl> my @os = ( "Distribution" => 'lsb_release --all', "uname -a" => 'uname -a', "SELinux status" => 'getenforce', "Apache" => [map { "$_ -V" } qw(apache2ctl apachectl httpdctl)], "nginx" => 'nginx -V 2>&1', "lighttpd" => 'lighttpd -V', ); my @os_info; while (my ($name, $cmd) = splice @os, 0, 2) { $cmd = [$cmd] unless ref $cmd eq 'ARRAY'; for my $run (@$cmd) { $run .= " /; my $result = `$run`; if (defined $result and $result =~ /\S/) { push @os_info, $name => $result; last; } } } my $row = 1; % while (my ($name, $output) = splice @os_info, 0, 2) { "> % }
    Deployment type <% $INC{'mod_perl.pm'} ? "mod_perl" : $INC{'FCGI.pm'} ? "fastcgi" : "standalone" %>
    <% $name %> <% $output %>
    <%INIT> use Data::Dumper; local $Data::Dumper::Terse = 1; local $Data::Dumper::Indent = 2; sub stringify { my $value = shift; my $output = Dumper $value; RT::Interface::Web::EscapeHTML(\$output); $output =~ s/ / /g; $output =~ s!\n!
    !g; return $output; } rt-4.4.2/share/html/Admin/Tools/index.html0000664000175000017500000000421313131430353020225 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('System Tools') &> <& /Elements/Tabs &> <& /Elements/ListMenu, menu => Menu()->child('admin')->child('tools') &> rt-4.4.2/share/html/Admin/Tools/Theme.html0000664000175000017500000003235513131430353020170 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Theme"), &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>

    <&|/l&>Customize the RT theme

    1. <&|/l&>Select a color for the section:
      % if ($colors) {
      % for (@$colors) { % my $fg = $_->{l} >= $text_threshold ? 'black' : 'white'; % }
      % }

    <&|/l&>Custom CSS (Advanced)


    <%ONCE> my @sections = ( ['Page' => ['body', 'div#body']], ['Menu bar' => ['div#quickbar', '#main-navigation #app-nav.sf-shadow > li, #main-navigation #app-nav.sf-shadow > li > a, #prefs-menu > li, #prefs-menu > li > a, #logo .rtname']], ['Title bar' => ['div#header']], ['Page title' => ['div#header h1']], ['Page content' => ['div#body']], ['Buttons' => ['input[type="reset"], input[type="submit"], input[class="button"]']], ['Button hover' => ['input[type="reset"]:hover, input[type="submit"]:hover, input[class="button"]:hover']], ); <%INIT> unless ($session{'CurrentUser'}->HasRight( Object=> RT->System, Right => 'SuperUser')) { Abort(loc('This feature is only available to system administrators.')); } use Digest::MD5 'md5_hex'; my $text_threshold = 0.6; my @results; my $imgdata; my $colors; my $valid_image_types; if (not RT->Config->Get('DisableGD') and Convert::Color->require) { require GD; # Always find out what GD can read... my %gd_can; for my $type (qw(Png Jpeg Gif)) { $gd_can{$type}++ if GD::Image->can("newFrom${type}Data"); } $valid_image_types = join(", ", map { uc } sort { lc $a cmp lc $b } keys %gd_can); } my $analyze_img = sub { return undef unless $valid_image_types; my $imgdata = shift; return undef unless $imgdata; # ...but only analyze the image if we have data my $img = GD::Image->new($imgdata); unless ($img) { # This has to be one damn long line because the loc() needs to be # source parsed correctly. push @results, loc("Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: [_1]. You can recompile libgd and GD.pm to include support for other image types.", $valid_image_types); return undef; } my %colors; my @wsamples; my @hsamples; if ($img->width > 200) { @wsamples = map { int($img->width*($_/200)) } (0..199); } else { @wsamples = ( 0 .. $img->width - 1 ); } if ($img->height > 200) { @hsamples = map { int($img->height*($_/200)) } (0..199); } else { @hsamples = ( 0 .. $img->height - 1 ); } for my $i (@wsamples) { for my $j (@hsamples) { my @color = $img->rgb( $img->getPixel($i,$j) ); my $hsl = Convert::Color->new('rgb:'.join(',',map { $_ / 255 } @color))->convert_to('hsl'); my $c = join(',',@color); next if $hsl->lightness < 0.1; $colors{$c} ||= { h => $hsl->hue, s => $hsl->saturation, l => $hsl->lightness, cnt => 0, c => $c}; $colors{$c}->{cnt}++; } } for (values %colors) { $_->{rank} = $_->{s} * $_->{cnt}; } my @top5 = grep { defined and $_->{'l'} and $_->{'c'} } (sort { $b->{rank} <=> $a->{rank} } values %colors)[0..5]; return \@top5; }; if (my $file_hash = _UploadedFile( 'logo-upload' )) { $colors = $analyze_img->($file_hash->{LargeContent}); my $my_system = RT::System->new( $session{CurrentUser} ); my ( $id, $msg ) = $my_system->SetAttribute( Name => "UserLogo", Description => "User-provided logo", Content => { type => $file_hash->{ContentType}, data => $file_hash->{LargeContent}, hash => md5_hex($file_hash->{LargeContent}), colors => $colors, }, ); push @results, loc("Unable to set UserLogo: [_1]", $msg) unless $id; $imgdata = $file_hash->{LargeContent}; } elsif ($ARGS{'reset_logo'}) { RT->System->DeleteAttribute('UserLogo'); } else { if (my $attr = RT->System->FirstAttribute('UserLogo')) { my $content = $attr->Content; if (ref($content) eq 'HASH') { $imgdata = $content->{data}; $colors = $content->{colors}; unless ($colors) { # No colors cached; attempt to generate them $colors = $content->{colors} = $analyze_img->($content->{data}); if ($content->{colors}) { # Found colors; update the attribute RT->System->SetAttribute( Name => "UserLogo", Description => "User-provided logo", Content => $content, ); } } } else { RT->System->DeleteAttribute('UserLogo'); } } } if ($user_css) { if ($ARGS{'reset_css'}) { RT->System->DeleteAttribute('UserCSS'); undef $user_css; } else { my ($id, $msg) = RT->System->SetAttribute( Name => "UserCSS", Description => "User-provided css", Content => $user_css ); push @results, loc("Unable to set UserCSS: [_1]", $msg) unless $id; } } if (!$user_css) { my $attr = RT->System->FirstAttribute('UserCSS'); $user_css = $attr ? $attr->Content : join( "\n\n" => map { join "\n" => "/* ". $_->[0] ." */", map { "$_ {}" } @{$_->[1]} } @sections ); } <%ARGS> $user_css => '' rt-4.4.2/share/html/Admin/Groups/0000775000175000017500000000000013131430353016407 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Groups/History.html0000664000175000017500000000463613131430353020747 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ShowHistory, Object => $GroupObj, ShowDisplayModes => 0, DisplayPath => 'History.html', &> <%INIT> my $GroupObj = RT::Group->new($session{'CurrentUser'}); $GroupObj->Load($id) || Abort("Couldn't load group '$id'"); my $title = loc("History of the group [_1]", $GroupObj->Name); <%ARGS> $id => '' unless defined $id rt-4.4.2/share/html/Admin/Groups/Modify.html0000664000175000017500000001420313131430353020524 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    %unless ($Group->Id) { % } else { % } % $m->callback( %ARGS, GroupObj => $Group, results => \@results );
    <&| /Widgets/TitleBox, title => loc('Basics'), class => 'group-info-basics' &> <& /Elements/EditCustomFields, Object => $Group, Grouping => 'Basics', InTable => 1 &>
    <&|/l&>Name:
    <&|/l&>Description:
    />
    <& /Elements/EditCustomFieldCustomGroupings , Object => $Group, &>
    % if ( $Create ) { <& /Elements/Submit, Label => loc('Create'), Reset => 1 &> % } else { <& /Elements/Submit, Label => loc('Save Changes'), Reset => 1 &> % }
    <%INIT> my ($title, @results, @warnings, $Disabled, $EnabledChecked); my $Group = RT::Group->new($session{'CurrentUser'}); if ($Create) { $title = loc("Create a new group"); } else { if ($id eq 'new' ) { my ($create_id, $create_msg) = $Group->CreateUserDefinedGroup(Name => $Name ); if ($create_id) { $id = $Group->Id; push @results, $create_msg; } else { push @results, loc("Group could not be created: [_1]", $create_msg); } } else { $Group->Load($id) || Abort('Could not load group'); } if ($Group->Id) { $title = loc("Modify the group [_1]", $Group->Name); } # If the create failed else { $title = loc("Create a new group"); $Create = 1; } } if ($Group->Id) { my @fields = qw(Description Name ); my @fieldresults = UpdateRecordObject ( AttributesRef => \@fields, Object => $Group, ARGSRef => \%ARGS ); push (@results,@fieldresults); push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $Group ); # Warn about duplicate groups my $dupcheck = RT::Groups->new(RT->SystemUser); $dupcheck->LimitToUserDefinedGroups(); $dupcheck->Limit( FIELD => 'Name', VALUE => $Group->Name, CASESENSITIVE => 0 ); if ($dupcheck->Count > 1) { push @warnings, loc("There is more than one group with the name '[_1]'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups.", $Group->Name); } } #we're asking about enabled on the web page but really care about disabled. if (defined $Enabled && $Enabled == 1) { $Disabled = 0; } else { $Disabled = 1; } if ( $Group->Id and ($SetEnabled) and ( $Disabled != $Group->Disabled) ) { my ($code, $msg) = $Group->SetDisabled($Disabled); push @results, $msg; } # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@results, Arguments => { id => $Group->id }, ) if $Group->Id; push @results, @warnings; $EnabledChecked = ( $Group->Disabled() ? '' : 'checked="checked"' ); <%ARGS> $Create => undef $Name => undef $Description => undef $SetEnabled => undef $Enabled => undef $id => '' unless defined $id rt-4.4.2/share/html/Admin/Groups/GroupRights.html0000664000175000017500000000551113131430353021554 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify group rights for group [_1]', $GroupObj->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <& /Admin/Elements/EditRights, Context => $GroupObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
    <%INIT> # Update the acls. my @results = ProcessACLs(\%ARGS); if (!defined $id) { Abort(loc("No Group defined")); } my $GroupObj = RT::Group->new($session{'CurrentUser'}); $GroupObj->Load($id) || Abort(loc("Couldn't load group [_1]",$id)); my @principals = GetPrincipalsMap($GroupObj, 'System', 'Groups'); <%ARGS> $id => undef rt-4.4.2/share/html/Admin/Groups/Memberships.html0000664000175000017500000000403713131430353021557 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/MembershipsPage, %ARGS &> rt-4.4.2/share/html/Admin/Groups/index.html0000664000175000017500000001136613131430353020413 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &>

    <% $caption %>

    <&|/l&>Go to group
    <&|/l&>Find groups whose <& /Elements/SelectGroups &>
    />
    % unless ( $Groups->Count ) { <&|/l&>No groups matching search criteria found. % } else {

    <&|/l&>Select a group:

    <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', Rows => $Rows, %ARGS, Format => $Format, Collection => $Groups, AllowSorting => 1, PassArguments => [qw(Format Rows Page Order OrderBy GroupString GroupOp GroupField FindDisabledGroups)], &> % } <%INIT> my $Groups = RT::Groups->new($session{'CurrentUser'}); $Groups->LimitToUserDefinedGroups(); my $title = loc('Select a group'); my $caption; if ($FindDisabledGroups) { $Groups->FindAllRows(); } if (length $GroupString) { $caption = loc("Groups matching search criteria"); if ($GroupField =~ /^CustomField-(\d+)/) { $Groups->LimitCustomField( CUSTOMFIELD => $1, OPERATOR => $GroupOp, VALUE => $GroupString, ); } else { $Groups->Limit( FIELD => $GroupField, OPERATOR => $GroupOp, VALUE => $GroupString, ); } RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."Admin/Groups/Modify.html?id=".$Groups->First->id) if $Groups->Count == 1 and $Groups->First; } else { $caption = loc("User-defined groups"); } $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Groups'}; my $Rows = RT->Config->Get('AdminSearchResultRows')->{'Groups'} || 50; <%ARGS> $Format => undef, $GroupString => '' unless defined $GroupString $GroupOp => '=' $GroupField => 'Name' $FindDisabledGroups => 0 rt-4.4.2/share/html/Admin/Groups/UserRights.html0000664000175000017500000000547313131430353021405 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify user rights for group [_1]', $GroupObj->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <& /Admin/Elements/EditRights, Context => $GroupObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
    <%INIT> # Update the acls. my @results = ProcessACLs(\%ARGS); if (!defined $id) { Abort(loc("No Group defined")); } my $GroupObj = RT::Group->new($session{'CurrentUser'}); $GroupObj->Load($id) || Abort(loc("Couldn't load group [_1]",$id)); my @principals = GetPrincipalsMap($GroupObj, 'Users'); <%ARGS> $id => undef rt-4.4.2/share/html/Admin/Groups/Members.html0000664000175000017500000001254013131430353020671 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc('Editing membership for group [_1]', $Group->Label) &>

    <&|/l&>Current members

    <&|/l&>Add members

    % if ($Group->MembersObj->Count == 0 ) { <&|/l&>(No members) % } else { <&|/l&>Users % my $Users = $Group->UserMembersObj( Recursively => 0 ); <%perl> my @users = sort { lc($a->[0]) cmp lc($b->[0]) } map { [$m->scomp("/Elements/ShowUser", User => $_), $_] } @{ $Users->ItemsArrayRef };
      % for (@users) { % my ($rendered, $user) = @$_; % $UsersSeen{ $user->id } = 1 if $SkipSeenUsers;
    • <% $rendered |n%>
    • % }
    <&|/l&>Groups
      % my $GroupMembers = $Group->MembersObj; % $GroupMembers->LimitToGroups(); % while ( my $member = $GroupMembers->Next ) { % $GroupsSeen{ $member->MemberId } = 1 if $SkipSeenGroups;
    • <% $member->MemberObj->Object->Name %> % }
    % }
    <& /Admin/Elements/SelectNewGroupMembers, Name => "AddMembers", Group => $Group, SkipUsers => \%UsersSeen, SkipGroups => \%GroupsSeen &>
    <&|/l&>(Check box to delete) <& /Elements/Submit, Label => loc('Modify Members'), Reset => 1 &>
    <%INIT> my $Group = RT::Group->new($session{'CurrentUser'}); $Group->Load($id) || Abort(loc('Could not load group')); my $title = loc("Modify the group [_1]", $Group->Label); my (%UsersSeen, %GroupsSeen); $GroupsSeen{ $Group->id } = 1; # can't be a member of ourself my (@results); # XXX: safe member id in value instead of name foreach my $key (keys %ARGS) { next unless $key =~ /^DeleteMember-(\d+)$/; my ($val,$msg) = $Group->DeleteMember($1); push (@results, $msg); } # Process new users foreach my $member (grep $_, @AddMembersUsers) { my $principal = RT::User->new($session{'CurrentUser'}); if ($member =~ /^User-(\d+)$/) { # Old style, using id $principal->Load($1); } else { # New style, just a username $principal->Load($member); } my ($val, $msg) = $Group->AddMember($principal->PrincipalId); push (@results, $msg); } # Process new groups foreach my $member (grep $_, @AddMembersGroups) { my $principal = RT::Group->new($session{'CurrentUser'}); if ($member =~ /^Group-(\d+)$/) { # Old style, using id $principal->Load($1); } else { # New style, just a group name $principal->LoadUserDefinedGroup($member); } my ($val, $msg) = $Group->AddMember($principal->PrincipalId); push (@results, $msg); } <%ARGS> @AddMembersUsers => () @AddMembersGroups => () $id => undef $SkipSeenUsers => 1 $SkipSeenGroups => 1 rt-4.4.2/share/html/Admin/Elements/0000775000175000017500000000000013131430353016704 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Elements/SelectUsers0000664000175000017500000000472613131430353021101 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $users = RT::Users->new($session{'CurrentUser'}); $users->Limit(FIELD => 'id', VALUE => RT->SystemUser->id, OPERATOR => '!=' ); $users->Limit(FIELD => 'id', VALUE => RT->Nobody->id, OPERATOR => '!=' ); $users->LimitToPrivileged(); <%ARGS> $Name => 'Users' rt-4.4.2/share/html/Admin/Elements/SelectCustomFieldLookupType0000664000175000017500000000452713131430353024251 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $cf = RT::CustomField->new($session{'CurrentUser'}); <%ARGS> $Default=> '' $Name => 'LookupType' rt-4.4.2/share/html/Admin/Elements/SelectCustomField0000664000175000017500000000552313131430353022212 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $CustomFields = RT::CustomFields->new($session{'CurrentUser'}); $CustomFields->UnLimit; $CustomFields->LimitToLookupType( $LookupType ) if $LookupType; $CustomFields->OrderByCols( { FIELD => 'LookupType' }, { FIELD => 'Name' } ); $Default = $Default->id || 0 if ref $Default; <%ARGS> $None => 1 $Name => 'BasedOn' $Default => 0 $LookupType => 'RT::Queue-RT::Ticket' $OnlySelectionType => 1 $Not => 0 rt-4.4.2/share/html/Admin/Elements/EditCustomFieldValuesSource0000664000175000017500000000571313131430353024222 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <%INIT> return unless $CustomField->IsSelectionType; my @sources; foreach my $class( 'RT::CustomFieldValues', RT->Config->Get('CustomFieldValuesSources') ) { next unless $class; unless ($class->require) { $RT::Logger->crit("Couldn't load class '$class': $@"); next; } my %res = ( Class => $class ); $res{'Description'} = $class->SourceDescription if $class->can('SourceDescription'); $res{'Description'} ||= $class; $res{'Description'} = 'Provide list of values below' if $class eq 'RT::CustomFieldValues'; push @sources, \%res; } return unless grep $_->{'Class'} ne 'RT::CustomFieldValues', @sources; <%ARGS> $CustomField => undef rt-4.4.2/share/html/Admin/Elements/EditQueueWatchers0000664000175000017500000000523113131430353022223 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %if ($Members->Count == 0 ) {
    • <&|/l&>none % } else {
        % while (my $watcher=$Members->Next) {
      • % if ($watcher->MemberObj->IsUser) { <& /Elements/ShowUser, User => $watcher->MemberObj->Object &> % } else { <%$watcher->MemberObj->Object->Name%> % } % } % }
      <%INIT> my $Members = $Watchers->MembersObj; <%ARGS> $QueueObj => undef $Watchers => undef rt-4.4.2/share/html/Admin/Elements/EditCustomField0000664000175000017500000001257613131430353021666 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@results &>
      <&|/l&>Name:
      <&|/l&>Description:
      <&|/l&>Type: <& /Admin/Elements/SelectCustomFieldType, Name => "Type", Default => $CustomFieldObj->Type &>
      />

      % if ($CustomFieldObj->Id and $CustomFieldObj->Type =~ /Select/) {

      <&|/l&>Values

      <& /Admin/Elements/EditCustomFieldValues, CustomField => $CustomFieldObj &> <& /Admin/Elements/AddCustomFieldValue, CustomField => $CustomFieldObj &> % } <&/Elements/Submit, Label => loc('Create') &>
      <%INIT> my $CustomFieldObj = RT::CustomField->new($session{'CurrentUser'}); my $EnabledChecked = 'checked="checked"'; my (@results); if (! $CustomField ) { $title = loc("Create a CustomField"); $id = 'new'; } else { if ($CustomField eq 'new') { my ($val, $msg) = $CustomFieldObj->Create(Queue => $Queue, Name => $Name, Type => $Type, Description => $Description, ); # if there is an error, then abort. But since at this point there's # stuff already printed, clear it out. # (This only works in conjunction with temporarily turning autoflush # off in the files that use this component.) unless ($val) { $m->clear_buffer; Abort(loc("Could not create CustomField: [_1]", $msg), SuppressHeader => 1); } push @results, $msg; $CustomFieldObj->SetSortOrder($CustomFieldObj->id); $title = loc('Created CustomField [_1]', $CustomFieldObj->Name()); } else { $CustomFieldObj->Load($CustomField) || Abort(loc('No CustomField'), SuppressHeader => 1); $title = loc('Editing CustomField [_1]', $CustomFieldObj->Name()); my @aresults = ProcessCustomFieldUpdates ( CustomFieldObj => $CustomFieldObj, ARGSRef => \%ARGS ); push @results, @aresults; } $id = $CustomFieldObj->id; #we're asking about enabled on the web page but really care about disabled. my $Disabled = ($Enabled ? 0 : 1); if ( ($SetEnabled) and ( $Disabled != $CustomFieldObj->Disabled) ) { my ($code, $msg) = $CustomFieldObj->SetDisabled($Disabled); push @results, loc('Enabled status [_1]', loc_fuzzy($msg)); } if ($CustomFieldObj->Disabled()) { $EnabledChecked =""; } } <%ARGS> $id => undef $title => undef $Queue => undef $CustomField => undef $Type => undef $Description => undef $Name => undef $SetEnabled => undef $Enabled => undef rt-4.4.2/share/html/Admin/Elements/SelectCustomFieldRenderType0000664000175000017500000000465713131430353024223 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $cf = RT::CustomField->new($session{'CurrentUser'}); $Default ||= $cf->DefaultRenderType($TypeComposite); my @types = $cf->RenderTypes($TypeComposite); <%ARGS> $Default => undef $TypeComposite => 'Select-0' $Name => 'RenderType' $BasedOn => 0 rt-4.4.2/share/html/Admin/Elements/EditRightsCategoryTabs0000664000175000017500000001176613131430353023220 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Context $Principal => undef $id $acldesc => '' <%init> # Find all our available rights... my (%available_rights, %categories); if ( blessed($Context) and $Context->can('AvailableRights') ) { %available_rights = %{$Context->AvailableRights( $Principal ? $Principal->PrincipalObj : undef )}; } else { %available_rights = ( loc('System Error') => loc("No rights found") ); } # ...and their categories if ( blessed($Context) and $Context->can('RightCategories') ) { my %right_categories = %{$Context->RightCategories}; for my $right (keys %available_rights) { my $category = $right_categories{$right} || 'Miscellaneous'; # loc push @{$categories{$category}}, $right; } } # Find all the current rights for this principal my %current_rights; if ($Principal) { my $acls = RT::ACL->new($session{'CurrentUser'}); $acls->LimitToObject( $Context ); $acls->LimitToPrincipal( Id => $Principal->PrincipalId ); while ( my $ace = $acls->Next ) { my $right = $ace->RightName; $current_rights{$right} = 1; } } my %category_desc = ( 'General' => loc('General rights'), 'Staff' => loc('Rights for Staff'), 'Admin' => loc('Rights for Administrators'), 'Status' => loc('Status changes'), ); my %catsort = ( General => 1, Staff => 2, Admin => 3, Status => 4, Miscellaneous => 999 ); my $i = 5; for my $category ( sort keys %categories ) { next if $catsort{$category}; $catsort{$category} = $i++; } $acldesc ||= join '-', ($Principal ? $Principal->PrincipalId : 'addprincipal'), ref($Context), $Context->Id; $available_rights{$_} = loc( $available_rights{$_} ) for keys %available_rights;
      % for my $category (sort { $catsort{$a} <=> $catsort{$b} } keys %categories) {
      ">
        % for my $right (sort { $available_rights{$a} cmp $available_rights{$b} } @{$categories{$category}}) {
      • " data-principal-tab="<% "principal-tab-$id" %>" <% $current_rights{$right} ? 'checked' : '' %> />
      • % }
      % }
      rt-4.4.2/share/html/Admin/Elements/EditConditions0000664000175000017500000001040413131430353021545 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@actions &>

      <&|/l&>System Conditions

      % if ( $system_conditions->Count ){ <& /Elements/CollectionList, %common_applied_args, DisplayFormat => $Format, Collection => $system_conditions &> % } else {

      <&|/l&>Click Create to add a new custom condition.

      % }

      <&|/l&>Custom Conditions

      % if ( $conditions->Count ){ <& /Elements/CollectionList, %common_applied_args, Collection => $conditions &> % } else {

      <&|/l&>Click Create to add a new custom condition.

      % } <& /Elements/Submit, Name => 'RemoveConditions', Caption => loc("Delete selected conditions"), Label => loc("Delete"), &>
      <%init> unless ( $session{CurrentUser}->HasRight( Object => RT->System, Right => 'ShowScrips' ) && $session{CurrentUser}->HasRight( Object => RT->System, Right => 'ModifyScrips' ) ) { Abort( loc('You must have ShowScrips/ModifyScrips rights to work with conditions.') ); } my (@actions); my $system_conditions = RT::ScripConditions->new($session{'CurrentUser'}); $system_conditions->Limit( FIELD => 'Creator', VALUE => RT->SystemUser->id ); my $conditions = RT::ScripConditions->new($session{'CurrentUser'}); $conditions->Limit( FIELD => 'Creator', VALUE => RT->SystemUser->id, OPERATOR => '!=' ); my $Format = RT->Config->Get('AdminSearchResultFormat')->{'Conditions'} || q{'__id__/TITLE:#'} . q{,'__Name__/TITLE:Name'} . q{,'__Description__','__UsedBy__}; my $DisplayFormat = "__CheckBox.{RemoveCondition}__, $Format"; my %common_applied_args = ( %ARGS, Format => $Format, DisplayFormat => $DisplayFormat, Rows => 0, Page => 1, AllowSorting => 1, ); if ( $RemoveConditions ) { foreach my $id ( @RemoveCondition ) { my $condition = RT::ScripCondition->new( $session{'CurrentUser'} ); $condition->Load( $id ); next unless $condition->id; my ($status, $msg) = $condition->Delete(); push @actions, $msg; } } <%ARGS> @RemoveCondition => () $RemoveConditions => undef rt-4.4.2/share/html/Admin/Elements/Portal0000664000175000017500000000431313131430353020071 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      <&| /Widgets/TitleBox, title => loc('RT Portal') &>
      rt-4.4.2/share/html/Admin/Elements/EditActions0000664000175000017500000001024713131430353021041 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@actions &>

      <&|/l&>System Actions

      % if ( $system_actions->Count ){ <& /Elements/CollectionList, %common_applied_args, DisplayFormat => $Format, Collection => $system_actions &> % } else {

      <&|/l&>Click Create to add a new custom action.

      % }

      <&|/l&>Custom Actions

      % if ( $actions->Count ){ <& /Elements/CollectionList, %common_applied_args, Collection => $actions &> % } else {

      <&|/l&>Click Create to add a new custom action.

      % } <& /Elements/Submit, Name => 'RemoveActions', Caption => loc("Delete selected actions"), Label => loc("Delete"), &>
      <%init> unless ( $session{CurrentUser}->HasRight( Object => RT->System, Right => 'ShowScrips' ) && $session{CurrentUser}->HasRight( Object => RT->System, Right => 'ModifyScrips' ) ) { Abort( loc('You must have ShowScrips/ModifyScrips rights to work with actions.') ); } my (@actions); my $system_actions = RT::ScripActions->new($session{'CurrentUser'}); $system_actions->Limit( FIELD => 'Creator', VALUE => RT->SystemUser->id ); my $actions = RT::ScripActions->new($session{'CurrentUser'}); $actions->Limit( FIELD => 'Creator', VALUE => RT->SystemUser->id, OPERATOR => '!=' ); my $Format = RT->Config->Get('AdminSearchResultFormat')->{'Actions'} || q{'__id__/TITLE:#'} . q{,'__Name__/TITLE:Name'} . q{,'__Description__','__UsedBy__}; my $DisplayFormat = "__CheckBox.{RemoveAction}__, $Format"; my %common_applied_args = ( %ARGS, Format => $Format, DisplayFormat => $DisplayFormat, Rows => 0, Page => 1, AllowSorting => 1, ); if ( $RemoveActions ) { foreach my $id ( @RemoveAction ) { my $action = RT::ScripAction->new( $session{'CurrentUser'} ); $action->Load( $id ); next unless $action->id; my ($status, $msg) = $action->Delete(); push @actions, $msg; } } <%ARGS> @RemoveAction => () $RemoveActions => undef rt-4.4.2/share/html/Admin/Elements/SelectStageForAdded0000664000175000017500000000421313131430353022423 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      <% $Label %> <& SelectStage, %ARGS &>
      <%args> $Label => loc('Select scrip stage for newly added queues:') rt-4.4.2/share/html/Admin/Elements/SelectGroups0000664000175000017500000000456013131430353021253 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $groups = RT::Groups->new($session{'CurrentUser'}); $groups->Limit(FIELD => 'Domain', OPERATOR => '=', VALUE => $Domain, CASESENSITIVE => 0 ); <%ARGS> $Name => 'groups' $Domain => 'UserDefined'; rt-4.4.2/share/html/Admin/Elements/EditRights0000664000175000017500000002346313131430353020705 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Context $Principals $AddPrincipal => undef <%init> # Let callbacks get at principals and context before we do anything with them $m->callback( Principals => $Principals, Context => $Context ); # Try to detect if we want to include an add user/group box unless ( $AddPrincipal ) { my $last = $Principals->[-1]; if ( $last->[0] =~ /Groups/i ) { $AddPrincipal = 'group'; # loc } elsif ( $last->[0] =~ /Users/i ) { $AddPrincipal = 'user'; # loc } } my $anchor = $DECODED_ARGS->{Anchor} || ''; if ($anchor =~ /AddPrincipal/) { for my $type ("group", "user") { my $record = _ParseACLNewPrincipal($DECODED_ARGS, $type) or next; if ($record->PrincipalId) { $anchor = "#acl-" . $record->PrincipalId; last; } } } %# Principals is an array of arrays, where the inner arrays are like: %# [ 'Category name' => $CollectionObj => 'DisplayColumn' => 1 ] %# The last value is a boolean determining if the value of DisplayColumn %# should be loc()-ed before display.
      <%perl> # Now generate our rights panels for each principal for my $category (@$Principals) { my ($name, $collection, $col, $loc) = @$category; while ( my $obj = $collection->Next ) { my $display = ref $col eq 'CODE' ? $col->($obj) : $obj->$col; my $id = "acl-" . $obj->PrincipalId;

      <% $loc ? loc($display) : $display %> <%perl> if ($obj->isa('RT::Group') and $obj->Domain eq 'UserDefined') { my $subgroups = $obj->GroupMembersObj( Recursively => 1 ); $subgroups->LimitToUserDefinedGroups; $subgroups->Limit( FIELD => 'Name', OPERATOR => '!=', VALUE => $obj->Name, CASESENSITIVE => 0 ); if ( $subgroups->Count ) { my $inc = join ", ", map $_->Name, @{$subgroups->ItemsArrayRef}; <&|/l, $inc &>includes [_1]\ <%perl> } }

      <& EditRightsCategoryTabs, Context => $Context, Principal => $obj, id => $id &>
      <%perl> } } if ( $AddPrincipal ) {

      <&|/l, loc($AddPrincipal) &>Add rights for this [_1]

      <& EditRightsCategoryTabs, Context => $Context, id => 'acl-AddPrincipal' &>
      % }
      rt-4.4.2/share/html/Admin/Elements/SelectScripAction0000664000175000017500000000546213131430353022214 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $ScripActions = RT::ScripActions->new($session{'CurrentUser'}); # hide user-defined if the user can't execute code if ($session{CurrentUser}->HasRight(Object => $RT::System, Right => 'ExecuteCode')) { $ScripActions->UnLimit; } else { $ScripActions->Limit( FIELD => 'ExecModule', OPERATOR => '!=', VALUE => 'UserDefined', ); } $ScripActions->OrderBy(FIELD => 'Name'); <%ARGS> $Default => undef $Name => 'ScripAction' rt-4.4.2/share/html/Admin/Elements/ConfigureDashboardsInMenu0000664000175000017500000000503713131430353023664 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Action $OnSave $items $panes $current_portlets $ReadOnly => 0 <%init> my $portlets = $current_portlets; my @panes; for my $pane (@$panes) { push @panes, $m->comp( '/Widgets/SelectionBox:new', Action => $Action, Name => $pane, Available => $items, AutoSave => 1, ReadOnly => $ReadOnly, OnSubmit => sub { my $sel = shift; $OnSave->( { dashboards => $sel->{Current} } ); }, Selected => $portlets, ); } return @panes; rt-4.4.2/share/html/Admin/Elements/Header0000664000175000017500000000406213131430353020021 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, %ARGS &> <%ARGS> $Title => undef rt-4.4.2/share/html/Admin/Elements/UpgradeHistory0000664000175000017500000000547613131430353021614 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % for my $package (@packages) { % my ($version_status, @lines) = RT->System->ParsedUpgradeHistory($package);

      <% $package %> (<% $version_status %>)

      % my $i = 0; % for my $upgrade (@lines) { <& UpgradeHistoryRow, i => \$i, row => $upgrade &> % }
        <&|/l&>Action <&|/l&>Date <&|/l&>Elapsed <&|/l, $package &>[_1] Version
      % } <%init> my $upgrade_history = RT->System->UpgradeHistory; my @packages = ('RT', sort grep { $_ ne 'RT' } keys %$upgrade_history); rt-4.4.2/share/html/Admin/Elements/EditCustomFieldValuesCanonicalizer0000664000175000017500000000532613131430353025543 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      <%INIT> return unless $CustomField->IsCanonicalizeType; my @canonicalizers; foreach my $class( RT->Config->Get('CustomFieldValuesCanonicalizers') ) { next unless $class; unless ($class->require) { $RT::Logger->crit("Couldn't load class '$class': $@"); next; } push @canonicalizers, $class; } return if !@canonicalizers; <%ARGS> $CustomField => undef rt-4.4.2/share/html/Admin/Elements/EditCustomFields0000664000175000017500000001443313131430353022043 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@results &>

      <&|/l&>Selected Custom Fields

      <& /Elements/CollectionList, %ARGS, Collection => $added_cfs, Rows => 0, Page => 1, Format => $format, DisplayFormat => $display_format, AllowSorting => 0, ShowEmpty => 0, PassArguments => [ qw(Page Order OrderBy), qw(id ObjectType SubType), ], &>

      <&|/l&>Unselected Custom Fields

      <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', %ARGS, Collection => $not_added_cfs, Rows => $rows, Format => $format, DisplayFormat => "'__CheckBox.{AddCustomField}__',". $format, AllowSorting => 1, ShowEmpty => 0, PassArguments => [ qw(Page Order OrderBy), qw(id ObjectType SubType), ], &> <& /Elements/Submit, Name => 'UpdateCFs' &>
      <%INIT> my $id = $Object->Id || 0; if ($id and !$Object->CurrentUserHasRight('AssignCustomFields')) { $m->out('

      ', loc('(No custom fields)'), '

      '); return; } my @results; my $lookup = $ObjectType; $lookup .= "-$SubType" if $SubType; ## deal with moving sortorder of custom fields if ( $MoveCustomFieldUp ) { { my $record = RT::ObjectCustomField->new( $session{'CurrentUser'} ); $record->LoadByCols( ObjectId => $id, CustomField => $MoveCustomFieldUp ); unless ( $record->id ) { push @results, loc("Custom field #[_1] is not applied to this object", $MoveCustomFieldUp); last; } my ($status, $msg) = $record->MoveUp; push @results, $msg; } } if ( $MoveCustomFieldDown ) { { my $record = RT::ObjectCustomField->new( $session{'CurrentUser'} ); $record->LoadByCols( ObjectId => $id, CustomField => $MoveCustomFieldDown ); unless ( $record->id ) { push @results, loc("Custom field #[_1] is not applied to this object", $MoveCustomFieldDown); last; } my ($status, $msg) = $record->MoveDown; push @results, $msg; } } if ( $UpdateCFs ) { foreach my $cf_id ( @AddCustomField ) { my $CF = RT::CustomField->new( $session{'CurrentUser'} ); $CF->SetContextObject( $Object ); $CF->Load( $cf_id ); unless ( $CF->id ) { push @results, loc("Couldn't load CustomField #[_1]", $cf_id); next; } my ($status, $msg) = $CF->AddToObject( $Object ); push @results, $msg; } foreach my $cf_id ( @RemoveCustomField ) { my $CF = RT::CustomField->new( $session{'CurrentUser'} ); $CF->SetContextObject( $Object ); $CF->Load( $cf_id ); unless ( $CF->id ) { push @results, loc("Couldn't load CustomField #[_1]", $cf_id); next; } my ($status, $msg) = $CF->RemoveFromObject( $Object ); push @results, $msg; } } $m->callback(CallbackName => 'UpdateExtraFields', Results => \@results, Object => $Object, %ARGS); my $added_cfs = RT::CustomFields->new( $session{'CurrentUser'} ); $added_cfs->LimitToLookupType($lookup); $added_cfs->LimitToGlobalOrObjectId($id); $added_cfs->SetContextObject( $Object ); $added_cfs->ApplySortOrder; my $not_added_cfs = RT::CustomFields->new( $session{'CurrentUser'} ); $not_added_cfs->LimitToLookupType($lookup); $not_added_cfs->LimitToNotAdded( $id ? ($id, 0) : (0) ); my $format = RT->Config->Get('AdminSearchResultFormat')->{'CustomFields'}; my $rows = RT->Config->Get('AdminSearchResultRows')->{'CustomFields'} || 50; my $display_format = $id ? ("'__RemoveCheckBox.{$id}__',". $format .", '__MoveCF.{$id}__'") : ("'__CheckBox.{RemoveCustomField}__',". $format .", '__MoveCF.{$id}__'"); $m->callback(CallbackName => 'EditDisplayFormat', DisplayFormat => \$display_format, id => $id); <%ARGS> $Object $ObjectType $SubType => '' $UpdateCFs => undef @RemoveCustomField => () @AddCustomField => () $MoveCustomFieldUp => undef $MoveCustomFieldDown => undef rt-4.4.2/share/html/Admin/Elements/SelectStage0000664000175000017500000000501413131430353021032 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> if ( !defined $Default || $Default eq '') { $Default = 'TransactionCreate'; } my @stages = ('TransactionCreate', 'TransactionBatch'); <%ARGS> $Default => 'TransactionCreate' $Name => 'Stage' rt-4.4.2/share/html/Admin/Elements/EditQueueWatcherGroup0000664000175000017500000000422113131430353023053 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Label $QueueObj $Watchers <% $Label %>: <& /Admin/Elements/EditQueueWatchers, QueueObj => $QueueObj, Watchers => $Watchers &> rt-4.4.2/share/html/Admin/Elements/SelectCustomFieldType0000664000175000017500000000456613131430353023062 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $cf = RT::CustomField->new($session{'CurrentUser'}); $Default = "Freeform-1" if $Default eq "-0"; <%ARGS> $Default=>undef $Name => 'TypeComposite' rt-4.4.2/share/html/Admin/Elements/EditScrips0000664000175000017500000001367513131430353020714 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@actions &>

      <&|/l&>Scrips

      <&|/l&>Scrips normally run after each individual change to a ticket.
      % my $scrips = $find_scrips->(Stage => 'TransactionCreate'); <& /Elements/CollectionList, %common_applied_args, Collection => $scrips &> % unless ( $scrips->Count ) {

      <&|/l&>(No scrips)

      % }

      <&|/l&>Batch scrips

      <&|/l&>Batch scrips run after a set of related changes to a ticket.
      % $scrips = $find_scrips->(Stage => 'TransactionBatch'); <& /Elements/CollectionList, %common_applied_args, Collection => $scrips &> % unless ( $scrips->Count ) {

      <&|/l&>(No scrips)

      % } <& /Elements/Submit, Name => 'RemoveScrips', Caption => loc("Un-apply selected scrips"), Label => loc("Update"), &>

      <&|/l&>Not applied scrips

      % $scrips = $find_scrips->(Added => 0); <& /Elements/CollectionList, Rows => $Rows, Page => 1, %ARGS, Collection => $scrips, Format => $Format, DisplayFormat => "__CheckBox.{AddScrip}__, $Format", AllowSorting => 1, PassArguments => [ qw(Format Rows Page Order OrderBy id) ], &> % unless ( $scrips->Count ) {

      <&|/l&>(No scrips)

      % } <& SelectStageForAdded &> <& /Elements/Submit, Name => 'AddScrips', Caption => loc("Apply selected scrips"), Label => loc("Update"), &>
      <%init> my (@actions); if ( $id ) { my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load( $id ); Abort(loc("Couldn't load queue #[_1]", $id)) unless $QueueObj->id; } $id ||= 0; my $find_scrips = sub { my %args = (Added => 1, @_); my $scrips = RT::Scrips->new($session{'CurrentUser'}); $scrips->LimitByStage( $args{'Stage'} ) if $args{'Stage'}; my $method = $args{'Added'}? 'LimitToAdded' : 'LimitToNotAdded'; $scrips->$method(0, $id); $scrips->ApplySortOrder if $args{'Added'}; $scrips->FindAllRows; return $scrips; }; $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Scrips'}; my $Rows = RT->Config->Get('AdminSearchResultRows')->{'Scrips'} || 50; my $DisplayFormat = $Format; if ( $id ) { $DisplayFormat = "__RemoveCheckBox__, $DisplayFormat"; } else { $DisplayFormat = "__CheckBox.{RemoveScrip}__, $DisplayFormat"; } $DisplayFormat .= ", __Move.{$id}__"; my %common_applied_args = ( %ARGS, Format => $Format, DisplayFormat => $DisplayFormat, Rows => 0, Page => 1, AllowSorting => 0, PassArguments => [ qw(Format id) ], ); if ( $RemoveScrips ) { foreach my $sid ( @RemoveScrip ) { my $scrip = RT::Scrip->new( $session{'CurrentUser'} ); $scrip->Load( $sid ); next unless $scrip->id; my ($status, $msg) = $scrip->RemoveFromObject( $id ); push @actions, $msg; } } if ( $AddScrips ) { foreach my $sid ( @AddScrip ) { my $scrip = RT::Scrip->new( $session{'CurrentUser'} ); $scrip->Load( $sid ); next unless $scrip->id; my ($status, $msg) = $scrip->AddToObject( $id, Stage => $Stage ); push @actions, $msg; } } if ( $MoveScripUp ) { my $scrip = RT::ObjectScrip->new( $session{'CurrentUser'} ); $scrip->LoadByCols( Scrip => $MoveScripUp, ObjectId => $id ); if ( $scrip->id ) { my ($status, $msg) = $scrip->MoveUp; push @actions, $msg; } } if ( $MoveScripDown ) { my $scrip = RT::ObjectScrip->new( $session{'CurrentUser'} ); $scrip->LoadByCols( Scrip => $MoveScripDown, ObjectId => $id ); if ( $scrip->id ) { my ($status, $msg) = $scrip->MoveDown; push @actions, $msg; } } <%ARGS> $id => undef $title => undef $Format => undef @RemoveScrip => () $RemoveScrips => undef @AddScrip => () $AddScrips => undef $Stage => 'TransactionCreate' $MoveScripUp => undef $MoveScripDown => undef rt-4.4.2/share/html/Admin/Elements/LoggingSummary0000664000175000017500000000732113131430353021576 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my @summary; if (my $level = RT->Config->Get("LogToSTDERR")) { push @summary, loc("Logging [_1] level messages and higher to STDERR, which will usually end up in your webserver's error logs.", $level); } if (my $level = RT->Config->Get("LogToFile") and my $logger = RT->Logger->output("file")) { # Using the Log::Dispatch::File object let's us avoid duplicating # filename logic from RT::InitLogging() push @summary, loc("Logging [_1] level messages and higher to [_2]", $level, $logger->{filename}); } if (my $level = RT->Config->Get("LogToSyslog")) { my %conf = RT->Config->Get("LogToSyslogConf"); my $conf = join ", ", map { "$_=$conf{$_}" } keys %conf; if ($conf) { push @summary, loc("Logging [_1] level messages and higher to syslog with the following configuration: [_2]", $level, $conf); } else { push @summary, loc("Logging [_1] level messages and higher to syslog.", $level); } } if (my $level = RT->Config->Get("LogStackTraces")) { push @summary, loc("Stack traces are added to message levels [_1] and higher.", $level); } else { push @summary, loc("Stack traces are not logged."); } if (my $level = RT->Config->Get("StatementLog")) { my $url = RT->Config->Get("WebPath") . "/Admin/Tools/Queries.html"; push @summary, \loc("SQL queries are logged at the [_1] level and also available in the [_2]query tool[_3].", $m->interp->apply_escapes($level, 'h'), qq[], ''); } else { push @summary, loc("SQL queries are not logged."); }

      <&|/l&>RT's logging configuration is summarized below:

        % for my $msg (@summary) {
      • <% ref($msg) ? $$msg : $m->interp->apply_escapes($msg, 'h') |n %>
      • % }

      rt-4.4.2/share/html/Admin/Elements/SelectScripCondition0000664000175000017500000000551513131430353022724 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $ScripConditions = RT::ScripConditions->new($session{'CurrentUser'}); # hide user-defined if the user can't execute code if ($session{CurrentUser}->HasRight(Object => $RT::System, Right => 'ExecuteCode')) { $ScripConditions->UnLimit; } else { $ScripConditions->Limit( FIELD => 'ExecModule', OPERATOR => '!=', VALUE => 'UserDefined', ); } $ScripConditions->OrderBy(FIELD => 'Name'); <%ARGS> $Default => undef $Name => 'ScripCondition' rt-4.4.2/share/html/Admin/Elements/EditTemplates0000664000175000017500000000766113131430353021405 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@actions &>
      % unless ( $Templates->Count ) {

      <&|/l&>(No templates)

      % } else { <& /Elements/CollectionList, OrderBy => 'id', Order => 'ASC', Rows => $Rows, %ARGS, DisplayFormat => '__CheckBox.{DeleteTemplates}__,'. $Format, Format => $Format, Collection => $Templates, AllowSorting => 1, PassArguments => [qw(Format Rows Page Order OrderBy FindDisabledQueues)], &> <&|/l&>(Check box to delete) % } <& /Elements/Submit, Label => loc('Delete Template') &>
      <%INIT> $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Templates'}; my $Rows = RT->Config->Get('AdminSearchResultRows')->{'Templates'} || 50; my $QueueObj = RT::Queue->new( $session{'CurrentUser'} ); $QueueObj->Load( $id ) if $id; my $Templates = RT::Templates->new($session{'CurrentUser'}); if ( $QueueObj->id ) { $Templates->LimitToQueue( $id ); } else { $Templates->LimitToGlobal; } # Now let callbacks add their extra limits $m->callback( %ARGS, Templates => $Templates ); $Templates->RedoSearch; # deal with deleting existing templates my @actions; # backwards compatibility, use DeleteTemplates array for this foreach my $key (keys %ARGS) { next unless $key =~ /^DeleteTemplate-(\d+)/; push @DeleteTemplates, $1; } foreach my $id( @DeleteTemplates ) { my $TemplateObj = RT::Template->new( $session{'CurrentUser'} ); $TemplateObj->Load( $id ); unless ( $TemplateObj->id ) { push @actions, loc("Couldn't load template #[_1]", $id); next; } my ($retval, $msg) = $TemplateObj->Delete; if ( $retval ) { push @actions, loc("Template #[_1] deleted", $id); } else { push @actions, $msg; } } <%ARGS> $id => 0 $Format => undef @DeleteTemplates => () rt-4.4.2/share/html/Admin/Elements/ShowKeyInfo0000664000175000017500000001021013131430353021026 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => $title &> % while ( my $protocol = shift @protocols ) { % my %res = RT::Crypt->GetKeyInfo( % Protocol => $protocol, % Key => $EmailAddress, % Type => $Type, % ); % if ( $res{'exit_code'} ) { % } elsif ( !keys %{ $res{'info'} } ) { % } else { % if ( $Type ne 'private' && $res{'info'}{'Trust'} ) { % } % $_->CurrentUser( $session{CurrentUser} ) for grep {$_} (@{$res{'info'}}{qw|Created Expire|}); % foreach my $uinfo( @{ $res{'info'}{'User'} } ) { % if ($uinfo->{'Created'} or $uinfo->{'Expire'}) { % $_->CurrentUser( $session{CurrentUser} ) for grep {$_} ($uinfo->{'Created'}, $uinfo->{'Expire'}); % } else { % } % } % } % if ( @protocols ) { % } % }
      <% loc("Couldn't get [_1] keys information", $protocol) %>
      <% loc('No [_1] keys for this address', $protocol) %>
      <% loc("[_1] key '[_2]'", $protocol, $res{'info'}{'Formatted'} ) %>
      <% loc('Trust') %>: <% loc( $res{'info'}{'Trust'} ) %>
      <% loc('Fingerprint') %>: <% $res{'info'}{'Fingerprint'} %>
      <% loc('Created') %>: <% $res{'info'}{'Created'}? $res{'info'}{'Created'}->AsString( Time => 0 ): loc('never') %>
      <% loc('Expire') %>: <% $res{'info'}{'Expire'}? $res{'info'}{'Expire'}->AsString( Time => 0 ): loc('never') %>
      <% loc('User (created - expire)') %>: <% $uinfo->{'String'} %> \ (<% $uinfo->{'Created'}? $uinfo->{'Created'}->AsString( Time => 0 ): loc('never') %> - \ <% $uinfo->{'Expire'}? $uinfo->{'Expire'}->AsString( Time => 0 ): loc('never') %>)
      <% loc('User') %>: <% $uinfo->{'String'} %>
       
      <%ARGS> $EmailAddress $Type => 'public' <%INIT> my @protocols = RT::Crypt->EnabledProtocols; my $title; unless ( $Type eq 'private' ) { $title = loc('Public key(s) for [_1]', $EmailAddress); } else { $title = loc('Private key(s) for [_1]', $EmailAddress); } rt-4.4.2/share/html/Admin/Elements/MembershipsPage0000664000175000017500000001171213131430353021704 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions &>

      <&|/l&>Groups the principal is member of (check box to delete)

      <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', %ARGS, Rows => $Rows, DisplayFormat => "__CheckBox.{Delete}__,$Format", Format => $Format, Collection => $is_member, AllowSorting => 1, PassArguments => [qw(Format Rows Page Order OrderBy id)], &>

      <&|/l&>Groups the principal is not member of (check box to add)

      <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', Rows => $Rows, %ARGS, DisplayFormat => "__CheckBox.{Add}__,'__HasMemberRecursively.{$id}__/TITLE:Recursive member',$Format", Format => $Format, Collection => $is_not_member, AllowSorting => 1, PassArguments => [qw(Format Rows Page Order OrderBy id)], &> <& /Elements/Submit, Label => loc('Update'), Name => 'Update' &>
      <%INIT> my $principal = RT::Principal->new( $session{'CurrentUser'} ); $principal->Load( $id ) || Abort(loc("Couldn't load principal #[_1]", $id)); my $object = $principal->Object; $id = $object->id; if ( $Update ) { my @results; foreach my $gid( @Add ) { my $group = RT::Group->new( $session{'CurrentUser'} ); $group->LoadUserDefinedGroup( $gid ); unless ( $group->id ) { push @results, loc( "Couldn't load group #[_1]", $gid ); next; } my ($status, $msg) = $group->AddMember( $id ); push @results, $msg; } foreach my $gid( @Delete ) { my $group = RT::Group->new( $session{'CurrentUser'} ); $group->LoadUserDefinedGroup( $gid ); unless ( $group->id ) { push @results, loc( "Couldn't load group #[_1]", $gid ); next; } my ($status, $msg) = $group->DeleteMember( $id ); push @results, $msg; } MaybeRedirectForResults( Arguments => { id => $id }, Actions => \@results, ); } my $is_member = RT::Groups->new( $session{'CurrentUser'} ); $is_member->LimitToUserDefinedGroups; $is_member->WithMember( PrincipalId => $id ); my $is_not_member = RT::Groups->new( $session{'CurrentUser'} ); $is_not_member->LimitToUserDefinedGroups; $is_not_member->WithoutMember( PrincipalId => $id ); $is_not_member->Limit( FIELD => 'id', OPERATOR => '!=', VALUE => $id ); $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Groups'}; my $Rows = RT->Config->Get('AdminSearchResultRows')->{'Groups'} || 50; my $title; if ( $principal->IsUser ) { $title = loc("Memberships of the user [_1]", $object->Name); } elsif ( $principal->IsGroup ) { $title = loc("Memberships of the group [_1]", $object->Name); } else { $title = loc("Memberships of the principal #[_1]", $id); } <%ARGS> $id => undef $Update => 0, @Add => (), @Delete => (), $Format => undef rt-4.4.2/share/html/Admin/Elements/SelectNewGroupMembers0000664000175000017500000000675413131430353023064 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $Show ne 'Groups' ) { % } % if ( $Show ne 'Users' ) { % }
      <%INIT> my $user_ids = join(',', grep { $SkipUsers->{$_} } keys %$SkipUsers); my $group_ids = join(',', grep { $SkipGroups->{$_} } keys %$SkipGroups); <%ARGS> $Name => 'Users' $Show => 'All' $Group $SkipUsers => {} $SkipGroups => {} rt-4.4.2/share/html/Admin/Elements/AddCustomFieldValue0000664000175000017500000000623013131430353022454 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}

      <&|/l&>Add Value

      % if ( $CustomField->Type ne 'Combobox' && $Categories ) { % } % my $paramtag = "CustomField-". $CustomField->Id ."-Value-new"; % if ( $CustomField->Type ne 'Combobox' && $Categories ) { % } % $m->callback(CallbackName => 'AfterCustomFieldValueInput', CustomFieldObj => $CustomField, ARGSRef => \%ARGS );
      <&|/l&>Sort <&|/l&>Name <&|/l&>Description<&|/l&>Category
      <%init> my $BasedOnObj = $CustomField->BasedOnObj; my $Categories; if ($BasedOnObj and $BasedOnObj->Id) { $Categories = $BasedOnObj->Values; } <%args> $CustomField => undef rt-4.4.2/share/html/Admin/Elements/UpgradeHistoryRow0000664000175000017500000000773113131430353022300 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($top) { % } % if ($row->{'action'} eq 'upgrade') { # type is more specific for upgrades <&|/l, $row->{'from'}, $row->{'to'} &>Upgrade from [_1] to [_2] % } elsif ( $row->{'action'} eq 'insert' ) { <&|/l, $row->{filename} &>Insert from [_1] % } elsif ( $row->{'action'} eq 'schema' ) { <&|/l, $row->{filename} &>Schema updates from [_1] % } elsif ( $row->{'action'} eq 'acl' ) { <&|/l, $row->{filename} &>ACL updates from [_1] % } elsif ( $row->{'action'} eq 'indexes' ) { <&|/l, $row->{filename} &>Index updates from [_1] % } else { <% ucfirst($row->{action}) %> % } % if (not $complete) { <&|/l&>(Incomplete) % } <% $timestamp->AsString %> <% $duration %> <% $row->{ext_version} || $row->{rt_version} %> % for (@{$kids || []}) { <& UpgradeHistoryRow, row => $_, indent => $indent+1, i => $i &> % } <%args> $indent => 0 $i $row <%init> my $complete = $row->{return_value} ? $row->{return_value}[0] : $row->{end}; my $kids = $row->{sub_events}; my $top = $row->{full_id} eq $row->{individual_id}; my @classes; push @classes, $complete ? 'complete' : 'incomplete'; push @classes, $$i++ % 2 ? 'oddline' : 'evenline'; push @classes, 'upgrade-history-'.$row->{full_id} unless $top; my $timestamp = RT::Date->new($session{CurrentUser}); $timestamp->Set(Value => $row->{timestamp}); my $duration = $row->{end} ? $timestamp->DurationAsString($row->{end} - $row->{timestamp}) : ''; rt-4.4.2/share/html/Admin/Elements/EditCustomFieldValues0000664000175000017500000000747513131430353023050 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % unless ( $values->Count ) {

      <&|/l&>(no values)

      % return; % } % if ( $CustomField->Type ne 'Combobox' && $Categories ) { % } % while ( my $value = $values->Next ) { % my $paramtag = "CustomField-". $CustomField->Id ."-Value-". $value->Id; % if ( $CustomField->Type ne 'Combobox' && $Categories ) { % } % $m->callback(CallbackName => 'AfterCustomFieldValueInput', CustomFieldObj => $CustomField, CustomFieldValueObj => $value, ARGSRef => \%ARGS ); % }
      <&|/l&>Sort <&|/l&>Name <&|/l&>Description<&|/l&>Category
      % my $selected = $value->Category; % $selected = '' unless defined $selected;
      <&|/l&>(Check box to delete) <%init> my $values = $CustomField->ValuesObj(); my $BasedOnObj = $CustomField->BasedOnObj; my $Categories; if ($BasedOnObj and $BasedOnObj->Id) { $Categories = $BasedOnObj->Values; } <%args> $CustomField => undef rt-4.4.2/share/html/Admin/Elements/ConfigureMyRT0000664000175000017500000000542713131430353021334 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Action $OnSave $items $panes $current_portlets $ReadOnly => 0 <%init> my $portlets = $current_portlets; my @panes; for my $pane (@$panes) { push @panes, $m->comp( '/Widgets/SelectionBox:new', Action => $Action, Name => $pane, Available => $items, AutoSave => 1, ReadOnly => $ReadOnly, OnSubmit => sub { my $sel = shift; $portlets->{$pane} = [ map { m/(\w+)-(.*)$/; { type => $1, name => $2 } } @{ $sel->{Current} } ]; $OnSave->( $portlets, $pane ); }, Selected => [ map { join( '-', @{$_}{qw/type name/} ) } @{ $portlets->{$pane} } ] ); } return @panes; rt-4.4.2/share/html/Admin/Elements/ModifyTemplate0000664000175000017500000000614213131430353021555 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      <&|/l&>Name:
      <&|/l&>Description:
      <&|/l&>Type: >
      >
      <&|/l&>Content:
      <%INIT> unless ($Type) { $Type = $session{'CurrentUser'}->HasRight(Right => 'ExecuteCode', Object => $RT::System) ? 'Perl' : 'Simple'; } <%ARGS> $Name => '' $Description => '' $Content => '' $Type => '' rt-4.4.2/share/html/Admin/index.html0000664000175000017500000000431313131430353017126 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('RT Administration') &> <& /Elements/Tabs &> <& /Elements/ListMenu, menu => Menu()->child('admin') &> % if (RT->Config->Get('ShowRTPortal')) { <& /Admin/Elements/Portal &> % } rt-4.4.2/share/html/Admin/Queues/0000775000175000017500000000000013131430353016377 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Queues/History.html0000664000175000017500000000463613131430353020737 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ShowHistory, Object => $QueueObj, ShowDisplayModes => 0, DisplayPath => 'History.html', &> <%INIT> my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($id) || Abort("Couldn't load queue '$id'"); my $title = loc("History of the queue [_1]", $QueueObj->Name); <%ARGS> $id => '' unless defined $id rt-4.4.2/share/html/Admin/Queues/Templates.html0000664000175000017500000000464113131430353021230 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditTemplates, title => $title, %ARGS &> <%INIT> my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($id); if (!$QueueObj->id) { Abort(loc("Queue [_1] not found",$id)); } my $title = loc("Templates for queue [_1]", $QueueObj->Name); <%ARGS> $id => undef #some identifier that a Queue could rt-4.4.2/share/html/Admin/Queues/Modify.html0000664000175000017500000002504713131430353020524 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      % $m->callback( CallbackName => 'FormStart', Create => $Create, ARGSRef => \%ARGS ); % my $CFs = $QueueObj->CustomFields; % while (my $CF = $CFs->Next) { % } % if ( RT->Config->Get('Crypt')->{'Enable'} ) { % } % unless ($InternalQueue) { % } % if ( RT->Config->Get('Crypt')->{'Enable'} ) { % }
      <&|/l&>Queue Name: % if ($InternalQueue) { <% $QueueObj->Name %> % } else { Name || $Name %>" /> % }
      <&|/l&>Description: Description || $Description || '' %>" size="60" />
      <&|/l&>Lifecycle: % if ($InternalQueue) { <% $QueueObj->Lifecycle %> % } else { <& /Widgets/Form/Select:InputOnly, Name => 'Lifecycle', Values => [ sort { loc($a) cmp loc($b) } RT::Lifecycle->List ], CurrentValue => $Create ? "default" : $QueueObj->Lifecycle || $ARGS{'Lifecycle'}, Default => 0, &> % }
      <&|/l&>Subject Tag: SubjectTag || '' ) %>" size="60" />
      <&|/l&>Sort Order:
      <&|/l&>Reply Address: CorrespondAddress || $CorrespondAddress || '' %>" />
      <&|/l , RT->Config->Get('CorrespondAddress')&>(If left blank, will default to [_1])
      <&|/l&>Comment Address: CommentAddress || $CommentAddress || '' %>" />
      <&|/l , RT->Config->Get('CommentAddress')&>(If left blank, will default to [_1])
      id && !$QueueObj->SLADisabled ) { checked="checked" % } />
      <% $CF->Name %>: <& /Elements/EditCustomField, CustomField => $CF, Object => $QueueObj, &>
      Sign? 'checked="checked"': '' |n%> /> Encrypt? 'checked="checked"': '' |n%> />
      SignAuto? 'checked="checked"': '' |n%> />
      />
      % $m->callback( %ARGS, QueueObj => $QueueObj, results => \@results );
      % if ( my $email = $QueueObj->CorrespondAddress || RT->Config->Get('CorrespondAddress') ) { <& /Admin/Elements/ShowKeyInfo, Type => 'private', EmailAddress => $email &> % } else { <&|/Widgets/TitleBox, title => loc( 'Private keys') &> <&|/l&>You have enabled encryption support but have not set a correspondence address for this queue. <&|/l&>You must set a correspondence address for this queue in order to configure a private key. % }
      % if ( my $email = $QueueObj->CommentAddress || RT->Config->Get('CommentAddress') ) { <& /Admin/Elements/ShowKeyInfo, Type => 'private', EmailAddress => $email &> % } else { <&|/Widgets/TitleBox, title => loc( 'Private keys') &> <&|/l&>You have enabled encryption support but have not set a comment address for this queue. <&|/l&>You must set a comment address for this queue in order to configure a private key. %}
      % if ( $Create ) { <& /Elements/Submit, Label => loc('Create') &> % } else { <& /Elements/Submit, Label => loc('Save Changes') &> % }
      <%INIT> my ($title, @results, @no_redirect_results, $Disabled, $EnabledChecked); my $QueueObj = RT::Queue->new( $session{'CurrentUser'} ); $QueueObj->Load( $id ) if !$id || $id eq 'new'; $EnabledChecked = 'checked="checked"'; unless ($Create) { if ( defined $id && $id eq 'new' ) { my ($val, $msg) = $QueueObj->Create( Name => $Name ); if (!$val) { $Create = 1; # Create failed, so bring us back to step 1 } push @results, $msg; } else { $QueueObj->Load($id) || $QueueObj->Load($Name) || Abort(loc("Couldn't load queue '[_1]'", $Name)); } } if ( $QueueObj->Id ) { $title = loc('Configuration for queue [_1]', $QueueObj->Name ); my @attribs= qw(Description CorrespondAddress CommentAddress Name SortOrder Sign SignAuto Encrypt Lifecycle SubjectTag SLADisabled Disabled); # we're asking about enabled on the web page but really care about disabled if ( $SetEnabled ) { $Disabled = $ARGS{'Disabled'} = $Enabled? 0: 1; } if ( $SetSLAEnabled ) { $ARGS{'SLADisabled'} = $SLAEnabled? 0: 1; } if ( $SetCrypt ) { $ARGS{$_} = 0 foreach grep !defined $ARGS{$_} || !length $ARGS{$_}, qw(Sign SignAuto Encrypt); } $m->callback( CallbackName => 'BeforeUpdate', Queue => $QueueObj, AttributesRef => \@attribs, ARGSRef => \%ARGS, ); push @results, UpdateRecordObject( AttributesRef => \@attribs, Object => $QueueObj, ARGSRef => \%ARGS ); $Disabled = $ARGS{'Disabled'} = $Enabled? 0: 1; $EnabledChecked = "" if $QueueObj->Disabled; my @linkresults; $m->callback( results => \@linkresults, RecordObj => $QueueObj, ARGSRef => \%ARGS, CallbackName => 'ProcessLinks' ); push @results, @linkresults; push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $QueueObj ); if ( RT->Config->Get('RTAddressRegexp') ) { foreach my $address ( $QueueObj->CorrespondAddress, $QueueObj->CommentAddress ) { next unless defined $address && length $address; next if RT::EmailParser->IsRTAddress( $address ); push @no_redirect_results, loc("RTAddressRegexp option in the config doesn't match [_1]", $address ); } } if ( !$QueueObj->SLADisabled && !( RT->Config->Get('ServiceAgreements') && keys %{RT->Config->Get('ServiceAgreements')}) ) { push @no_redirect_results, loc("You enabled [_1] but [_2] hasn't been configured in RT_SiteConfig.pm, please check '[_3]' for more help", 'SLA', '%ServiceAgreements', 'docs/customizing/sla.pod'); } } else { $title = loc("Create a queue"); } my $InternalQueue = ($QueueObj->Id and $QueueObj->Disabled == 2); # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@results, Arguments => { id => $QueueObj->Id }, ) if $QueueObj->id; push @results, @no_redirect_results; <%ARGS> $id => undef $result => undef $Name => undef $Create => undef $Description => undef $CorrespondAddress => undef $CommentAddress => undef $SetSLAEnabled => undef $SetEnabled => undef $SetCrypt => undef $SLAEnabled => undef $Enabled => undef $SortOrder => undef rt-4.4.2/share/html/Admin/Queues/People.html0000664000175000017500000001364113131430353020516 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>

      <&|/l&>Current watchers

      <&|/l&>(Check box to delete)

      % for my $Name ($QueueObj->ManageableRoleGroupTypes) { <& /Admin/Elements/EditQueueWatcherGroup, Label => loc($QueueObj->LabelForRole($Name)), QueueObj => $QueueObj, Watchers => $QueueObj->RoleGroup($Name, CheckRight => 'SeeQueue') &> % } % $m->callback(CallbackName => 'CurrentWatchers', QueueObj => $QueueObj);

      <&|/l&>New watchers

      <&|/l&>Find people whose
      <& /Elements/SelectUsers &>
      <&|/l&>Find groups whose
      <& /Elements/SelectGroups &>

      <&|/l&>Add new watchers:

      <&|/l&>Users % if ($user_msg) {
      <%$user_msg%> % } elsif ($Users) {

        % while (my $u = $Users->Next ) {
      • <& /Elements/SelectWatcherType, Scope => 'queue', Name => "Queue-AddWatcher-Principal-". $u->PrincipalId, Queue => $QueueObj, &> <& /Elements/ShowUser, User => $u &>
      • % }
      % }

      <&|/l&>Groups % if ($group_msg) {
      <%$group_msg%> % } elsif ($Groups) {

        % while (my $g = $Groups->Next ) {
      • <& /Elements/SelectWatcherType, Scope => 'queue', Name => "Queue-AddWatcher-Principal-".$g->PrincipalId, Queue => $QueueObj, &> <%$g->Name%> (<%$g->Description%>) % }
      % }
      <& /Elements/Submit, Label => loc('Save Changes'), Caption => loc("If you've updated anything above, be sure to"), Reset => 1 &>
      <%INIT> my ($field, @results, $User, $Users, $Groups, $watcher, $user_msg, $group_msg); my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($id) || Abort(loc("Couldn't load queue", $id)); unless ($OnlySearchForPeople or $OnlySearchForGroup) { # Delete deletable watchers foreach my $key (keys %ARGS) { my $id = $QueueObj->Id; if (($key =~ /^Queue-$id-DeleteWatcher-Type-(.*?)-Principal-(\d*)$/)) {; my ($code, $msg) = $QueueObj->DeleteWatcher(Type => $1, PrincipalId => $2); push @results, $msg; } } # Add new watchers foreach my $key (keys %ARGS) { my $type = $ARGS{$key}; next unless $key =~ /^Queue-AddWatcher-Principal-(\d*)$/; my $id = $1; next unless $QueueObj->IsManageableRoleGroupType($type); my ($code, $msg) = $QueueObj->AddWatcher( Type => $type, PrincipalId => $id, ); push @results, $msg; } } if ( $ARGS{'UserString'} ) { $Users = RT::Users->new( $session{'CurrentUser'} ); $Users->Limit( FIELD => $ARGS{'UserField'}, VALUE => $ARGS{'UserString'}, OPERATOR => $ARGS{'UserOp'} ); } else { $user_msg = loc("No principals selected."); } if ( $ARGS{'GroupString'} ) { $Groups = RT::Groups->new( $session{'CurrentUser'} ); $Groups->LimitToUserDefinedGroups; $Groups->Limit( FIELD => $ARGS{'GroupField'}, VALUE => $ARGS{'GroupString'}, OPERATOR => $ARGS{'GroupOp'} ); } else { $group_msg = loc("No principals selected."); } my $title = loc('People related to queue [_1]', $QueueObj->Name); <%ARGS> $OnlySearchForPeople => undef $OnlySearchForGroup => undef $UserField => 'Name' $UserOp => '=' $UserString => undef $GroupField => 'Name' $GroupOp => '=' $GroupString => undef $Type => undef $id => undef rt-4.4.2/share/html/Admin/Queues/GroupRights.html0000664000175000017500000000570113131430353021545 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify group rights for queue [_1]', $QueueObj->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      % $m->callback( %ARGS, QueueObj => $QueueObj, results => \@results, principals => \@principals ); <& /Admin/Elements/EditRights, Context => $QueueObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> # Update the acls. my @results = ProcessACLs(\%ARGS); if (!defined $id) { Abort(loc("No Queue defined")); } my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($id) || Abort(loc("Couldn't load queue [_1]",$id)); # Principal collections my @principals = GetPrincipalsMap($QueueObj, qw(System Roles Groups)); <%ARGS> $id => undef rt-4.4.2/share/html/Admin/Queues/CustomFields.html0000664000175000017500000000511013131430353021663 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, Object => $Object, ObjectType => 'RT::Queue' &> <%INIT> my $Object = RT::Queue->new( $session{'CurrentUser'} ); $Object->Load($id) || Abort( loc( "Couldn't load object [_1]", $id ) ); my $FriendlySubTypes = RT::CustomField->new( $session{'CurrentUser'} ) ->FriendlyLookupType( $Object->CustomFieldLookupType ); my $title = loc( 'Custom Fields for queue [_1]', $Object->Name ); <%ARGS> $id => undef $SubType => 'RT::Queue-RT::Ticket' rt-4.4.2/share/html/Admin/Queues/CustomField.html0000664000175000017500000000507313131430353021510 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomField, title => $title, %ARGS &> <%INIT> my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($Queue); my ($title); unless($QueueObj->id) { Abort(loc("Queue [_1] not found", $Queue)); } if ($CustomField) { $title = loc('Modify a CustomField for queue [_1]', $QueueObj->Name()); }else { $title = loc('Create a CustomField for queue [_1]', $QueueObj->Name()); } <%ARGS> $CustomField => undef $Queue => 0 <%ATTR> AutoFlush => 0 rt-4.4.2/share/html/Admin/Queues/index.html0000664000175000017500000001106713131430353020401 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Admin queues") &> <& /Elements/Tabs &>

      <%$caption%>

      % foreach my $field( qw(Format Rows Page Order OrderBy) ) { % next unless defined $ARGS{ $field } && length $ARGS{ $field }; % } <& /Elements/SelectMatch, Name => 'QueueOp', Default => $QueueOp &>
      />

      <&|/l&>Select a queue:

      % unless ( $queues->Count ) { <&|/l&>No queues matching search criteria found. % } else { <& /Elements/CollectionList, OrderBy => ['SortOrder','Name'], Order => ['ASC','ASC'], Rows => $Rows, %ARGS, Format => $Format, Collection => $queues, AllowSorting => 1, PassArguments => [qw( Format Rows Page Order OrderBy FindDisabledQueues QueueString QueueOp QueueField )], &> % } <%INIT> my $queues = RT::Queues->new($session{'CurrentUser'}); $queues->FindAllRows if $FindDisabledQueues; my ($caption); if ( defined $QueueString && length $QueueString ) { $caption = $FindDisabledQueues ? loc("All queues matching search criteria") : loc("Enabled queues matching search criteria"); $queues->Limit( FIELD => $QueueField, OPERATOR => $QueueOp, VALUE => $QueueString, ); RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."Admin/Queues/Modify.html?id=".$queues->First->id) if $queues->Count == 1; } else { $queues->UnLimit; $caption = $FindDisabledQueues ? loc("All Queues") : loc("Enabled Queues"); } $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Queues'}; my $Rows = RT->Config->Get('AdminSearchResultRows')->{'Queues'} || 50; <%ARGS> $FindDisabledQueues => 0 $Format => undef $QueueField => 'Name' $QueueOp => 'LIKE' $QueueString => '' rt-4.4.2/share/html/Admin/Queues/UserRights.html0000664000175000017500000000575313131430353021376 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify user rights for queue [_1]', $QueueObj->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      %# XXX TODO put this somewhere more reasonable % $m->callback( %ARGS, QueueObj => $QueueObj, results => \@results ); <& /Admin/Elements/EditRights, Context => $QueueObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> # Update the acls. my @results = ProcessACLs(\%ARGS); if (!defined $id) { Abort(loc("No Queue defined")); } my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($id) || Abort(loc("Couldn't load queue [_1]",$id)); my @principals = GetPrincipalsMap($QueueObj, 'Users'); <%ARGS> $id => undef $UserString => undef $UserOp => undef $UserField => undef rt-4.4.2/share/html/Admin/Queues/Scrips.html0000664000175000017500000000463113131430353020534 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditScrips, title => $title, %ARGS &> <%init> my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load($id); Abort(loc("Queue [_1] not found",$id)) unless $QueueObj->id; my $title = loc("Modify scrips for queue [_1]", $QueueObj->Name); <%ARGS> $id => undef #some identifier that a Queue could rt-4.4.2/share/html/Admin/Queues/Template.html0000664000175000017500000001031213131430353021035 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      %if ($Create ) { % } else { % } %# hang onto the queue id <& /Admin/Elements/ModifyTemplate, Name => $TemplateObj->Name // $ARGS{Name}, Description => $TemplateObj->Description // $ARGS{Description}, Content => $TemplateObj->Content // $ARGS{Content}, Type => $TemplateObj->Type // $ARGS{Type}, &> <& /Elements/Submit, Label => $SubmitLabel, Reset => 1 &>
      <%INIT> my $TemplateObj = RT::Template->new( $session{'CurrentUser'} ); my $QueueObj; my $SubmitLabel; my $title; my @results; if ( !$Create ) { if ( $Template eq 'new' ) { my ( $val, $msg ) = $TemplateObj->Create( Queue => $Queue, Name => $Name, Type => $Type ); push @results, $msg; } else { $TemplateObj->Load($Template) || Abort( loc('No Template') ); } } if ( $TemplateObj->Id() ) { $Queue = $TemplateObj->Queue; $QueueObj = $TemplateObj->QueueObj; my @attribs = qw( Name Description Queue Type Content ); my @aresults = UpdateRecordObject( AttributesRef => \@attribs, Object => $TemplateObj, ARGSRef => \%ARGS ); push @results, @aresults; my ( $ok, $msg ) = $TemplateObj->CompileCheck; push @results, $msg if !$ok; } else { $Create = 1; $QueueObj = RT::Queue->new( $session{'CurrentUser'} ); $QueueObj->Load($Queue); } if ($Create) { $title = loc( 'Create a new template for queue [_1]', $QueueObj->Name ); $SubmitLabel = loc('Create'); } else { $title = loc( 'Modify template [_1] for queue [_2]', loc( $TemplateObj->Name()), $QueueObj->Name ); $SubmitLabel = loc('Save Changes'); } <%ARGS> $Queue => '' $Template => '' $Create => undef $Name => undef $Type => undef rt-4.4.2/share/html/Admin/Queues/DefaultValues.html0000664000175000017500000001571213131430353022037 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <&| /Widgets/TitleBox, title => loc('Basics') &> <& /Elements/EditCustomFields, Object => RT::Ticket->new($session{CurrentUser}), CustomFields => $queue->TicketCustomFields->LimitToDefaultValuesSupportedTypes, Grouping => 'Basics', InTable => 1, &>
      <&|/l&>Priority: <& /Elements/SelectPriority, Name => "InitialPriority", Default => $queue->DefaultValue('InitialPriority'), &>
      <&|/l&>Final Priority: <& /Elements/SelectPriority, Name => "FinalPriority", Default => $queue->DefaultValue('FinalPriority'), &>
      <&|/l&>requires running rt-crontool
      <&|/Widgets/TitleBox, title => loc("Dates") &> <& /Elements/EditCustomFields, Object => RT::Ticket->new($session{CurrentUser}), CustomFields => $queue->TicketCustomFields->LimitToDefaultValuesSupportedTypes, Grouping => 'Dates', InTable => 1, &>
      <&|/l&>Starts:<& /Elements/SelectDate, Name => "Starts", Default => $queue->DefaultValue('Starts') || '' &>
      <&|/l&>Due:<& /Elements/SelectDate, Name => "Due", Default => $queue->DefaultValue('Due') || '' &>
      % if ( RT->Config->ObjectHasCustomFieldGrouping(Object => RT::Ticket->new($session{CurrentUser}), Grouping => 'People') ) {
      <&|/Widgets/TitleBox, title => loc("People") &> <& /Elements/EditCustomFields, Object => RT::Ticket->new($session{CurrentUser}), CustomFields => $queue->TicketCustomFields->LimitToDefaultValuesSupportedTypes, Grouping => 'People', InTable => 1, &>
      % } % if ( RT->Config->ObjectHasCustomFieldGrouping(Object => RT::Ticket->new($session{CurrentUser}), Grouping => 'Links') ) { % } <& /Elements/EditCustomFieldCustomGroupings, CustomFieldGenerator => sub { $queue->TicketCustomFields->LimitToDefaultValuesSupportedTypes }, Object => RT::Ticket->new($session{CurrentUser}) &>
      <&|/Widgets/TitleBox, title => loc("Transaction Custom Fields") &> <& /Elements/EditCustomFields, CustomFields => $queue->TicketTransactionCustomFields->LimitToDefaultValuesSupportedTypes, Object => RT::Transaction->new($session{CurrentUser}), QueueObj => $queue, InTable => 1 &>
      <& /Elements/Submit, Name => 'Update', Label => loc('Save Changes') &> <& /Elements/Submit, Name => 'Reset', Label => loc('Reset Custom Field Values to Default') &>
      <%INIT> my $queue = RT::Queue->new( $session{CurrentUser} ); $queue->Load($id) || Abort( loc( "Couldn't load object [_1]", $id ) ); my $title = loc( 'Default Values for queue [_1]', $queue->Name ); my @results; if ( $ARGS{Reset} ) { my $attr = $queue->FirstAttribute( 'CustomFieldDefaultValues' ); if ( $attr ) { $attr->Delete; push @results, "Custom Field default values are reset"; } } elsif ( $ARGS{Update} ) { for my $field ( qw/InitialPriority FinalPriority Starts Due/ ) { my ($ret, $msg) = $queue->SetDefaultValue( Name => $field, Value => $ARGS{$field}, ); push @results, $msg; } my $cfs = _ParseObjectCustomFieldArgs(\%ARGS)->{'RT::Ticket'}{0}; for my $cf_id (keys %$cfs) { # In the case of inconsistent CFV submission, # we'll get the 1st grouping in the hash, alphabetically my ($ret, $grouping_name) = _ValidateConsistentCustomFieldValues($cf_id, $cfs->{$cf_id}); my $grouping = $cfs->{$cf_id}{$grouping_name}; my $value = $grouping->{Value} // $grouping->{Values}; my $cf = RT::CustomField->new($session{CurrentUser}); $cf->Load($cf_id); if ( $cf->id && $cf->SupportDefaultValues ) { my ($ret, $msg) = $cf->SetDefaultValues( Object => $queue, Values => $value, ); push @results, $msg; } } } MaybeRedirectForResults( Actions => \@results, Arguments => { id => $queue->id }, ); <%ARGS> $id => undef rt-4.4.2/share/html/Admin/autohandler0000664000175000017500000000424513131430353017366 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> return $m->call_next(%ARGS) if $session{'CurrentUser'}->UserObj->HasRight( Right => 'ShowConfigTab', Object => $RT::System, ); $m->clear_and_abort(403); rt-4.4.2/share/html/Admin/Users/0000775000175000017500000000000013131430353016231 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Users/History.html0000664000175000017500000000460413131430353020564 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ShowHistory, Object => $UserObj, ShowDisplayModes => 0, DisplayPath => 'History.html', &> <%INIT> my $UserObj = RT::User->new($session{'CurrentUser'}); $UserObj->Load($id) || Abort("Couldn't load user '$id'"); my $title = loc("History of the user [_1]", $UserObj->Name); <%ARGS> $id => '' rt-4.4.2/share/html/Admin/Users/Keys.html0000664000175000017500000001102513131430353020031 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("[_1]'s encryption keys",$UserObj->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &> % if ( $email ) { <& /Admin/Elements/ShowKeyInfo, EmailAddress => $email &> % } else {

      <% loc("User has empty email address") %>

      % }
      % if (RT::Crypt->UseForOutgoing eq 'GnuPG') { <&|/Widgets/TitleBox, title => loc('GnuPG private key') &> <& /Widgets/Form/Select, Name => 'PrivateKey', Description => loc('Private Key'), Values => \@potential_keys, CurrentValue => $UserObj->PrivateKey, DefaultLabel => loc('No private key'), &> % } % if (RT::Crypt->UseForOutgoing eq 'SMIME') { <&|/Widgets/TitleBox, title => loc('SMIME Certificate') &> % } <& /Elements/Submit, Name => 'Update', Label => loc('Save Changes') &>
      <%ARGS> $id => undef $Update => undef <%INIT> return unless RT->Config->Get('Crypt')->{'Enable'}; my @results; my $UserObj = RT::User->new( $session{'CurrentUser'} ); $UserObj->Load( $id ); unless ( $UserObj->id ) { Abort( loc("Couldn't load user #[_1]", $id) ); } $id = $ARGS{'id'} = $UserObj->id; my @potential_keys; my $email = $UserObj->EmailAddress; if (RT::Crypt->UseForOutgoing eq 'GnuPG') { my %keys_meta = RT::Crypt->GetKeysForSigning( Signer => $email, Protocol => 'GnuPG' ); @potential_keys = map $_->{'Key'}, @{ $keys_meta{'info'} || [] }; $ARGS{'PrivateKey'} = $m->comp('/Widgets/Form/Select:Process', Name => 'PrivateKey', Arguments => \%ARGS, Default => 1, ); if ( $Update ) { if (not $ARGS{'PrivateKey'} or grep {$_ eq $ARGS{'PrivateKey'}} @potential_keys) { if (($ARGS{'PrivateKey'}||'') ne ($UserObj->PrivateKey||'')) { my ($status, $msg) = $UserObj->SetPrivateKey( $ARGS{'PrivateKey'} ); push @results, $msg; } } else { push @results, loc("Invalid key [_1] for address '[_2]'", $ARGS{'PrivateKey'}, $email); } } } if (RT::Crypt->UseForOutgoing eq 'SMIME') { if ( $Update and ($ARGS{'SMIMECertificate'}||'') ne ($UserObj->SMIMECertificate||'') ) { my ($status, $msg) = $UserObj->SetSMIMECertificate( $ARGS{'SMIMECertificate'} ); push @results, $msg; } } rt-4.4.2/share/html/Admin/Users/Modify.html0000664000175000017500000002533113131430353020352 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      %if ($Create) { % } else { % }
      <&| /Widgets/TitleBox, title => loc('Identity'), class => 'user-info-identity' &> <& /Elements/EditCustomFields, Object => $UserObj, Grouping => 'Identity', InTable => 1 &>
      <&|/l&>Username: <&|/l&>(required)
      <&|/l&>Email:
      <&|/l&>Real Name:
      <&|/l&>Nickname:
      <&|/l&>Unix login:
      <&|/l&>Language: <& /Elements/SelectLang, Name => 'Lang', Default => $UserObj->Lang//$ARGS{Lang} &>
      <&|/l&>Timezone: <& /Elements/SelectTimezone, Name => 'Timezone', Default => $UserObj->Timezone &>
      <&|/l&>Extra info:

      <&| /Widgets/TitleBox, title => loc('Access control'), class => 'user-info-access-control' &> Id && $UserObj->Disabled) ? '' : 'checked="checked"' |n%> />
      % my $PrivilegedChecked = ((!$Create && $UserObj->Privileged()) or (!$UserObj->Id and $ARGS{Privileged})) ? 'checked="checked"' : ''; />
      <& /Elements/EditPassword, User => $UserObj, Name => [qw(CurrentPass Pass1 Pass2)], &> <& /Elements/EditCustomFields, Object => $UserObj, Grouping => 'Access control' &> % $m->callback( %ARGS, CallbackName => 'LeftColumnBottom', UserObj => $UserObj );
      <&| /Widgets/TitleBox, title => loc('Location'), class => 'user-info-location' &> <& /Elements/EditCustomFields, Object => $UserObj, Grouping => 'Location', InTable => 1 &>
      <&|/l&>Organization:
      <&|/l&>Address1:
      <&|/l&>Address2:
      <&|/l&>City:
      <&|/l&>State:
      <&|/l&>Zip:
      <&|/l&>Country:

      <&| /Widgets/TitleBox, title => loc('Phone numbers'), class => 'user-info-phones' &> <& /Elements/EditCustomFields, Object => $UserObj, Grouping => 'Phones', InTable => 1 &>
      <&|/l&>Residence:
      <&|/l&>Work:
      <&|/l&>Mobile:
      <&|/l&>Pager:

      <& /Elements/EditCustomFieldCustomGroupings, Object => $UserObj &> % $m->callback( %ARGS, CallbackName => 'RightColumnBottom', UserObj => $UserObj );
      <&| /Widgets/TitleBox, title => loc('Comments about this user'), class => 'user-info-comments' &> %if (!$Create && $UserObj->Privileged) {
      <&| /Widgets/TitleBox, title => loc('Signature'), class => 'user-info-signature' &> % }
      % if ( $Create ) { <& /Elements/Submit, Label => loc('Create') &> % } else { <& /Elements/Submit, Label => loc('Save Changes') &> % }
      <%INIT> my $UserObj = RT::User->new($session{'CurrentUser'}); my ($title, @results); my ($val, $msg); $ARGS{Privileged} = $ARGS{Privileged} ? 1 : 0; delete $ARGS{Privileged} unless $ARGS{SetPrivileged}; $ARGS{Disabled} = $ARGS{Enabled} ? 0 : 1; delete $ARGS{Disabled} unless $ARGS{SetEnabled}; my @fields = qw(Name Comments Signature EmailAddress FreeformContactInfo Organization RealName NickName Lang Gecos HomePhone WorkPhone MobilePhone PagerPhone Address1 Address2 City State Zip Country Timezone ); if ($Create) { $title = loc("Create a new user"); } elsif ( defined $id && $id eq 'new') { ( $val, $msg ) = $UserObj->Create( (map {($_ => $ARGS{$_})} @fields), Privileged => $ARGS{'Privileged'}, Disabled => $ARGS{'Disabled'}, ); if ($val) { push @results, $msg; push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $UserObj ); $title = loc("Modify the user [_1]", $UserObj->Name); } else { push @results, loc('User could not be created: [_1]', $msg); $title = loc("Create a new user"); $Create = 1; } } else { $UserObj->Load($id) || $UserObj->Load($ARGS{Name}) || Abort("Couldn't load user '" . ( $ARGS{Name} || '') . "'"); $title = loc("Modify the user [_1]", $UserObj->Name); $m->callback( %ARGS, CallbackName => 'BeforeUpdate', User => $UserObj, ARGSRef => \%ARGS, Results => \@results ); my @fieldresults = UpdateRecordObject ( AttributesRef => \@fields, Object => $UserObj, ARGSRef => \%ARGS ); push (@results,@fieldresults); push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $UserObj ); if ( defined $ARGS{Privileged} and $ARGS{Privileged} != ($UserObj->Privileged || 0) ) { my ($code, $msg) = $UserObj->SetPrivileged($ARGS{Privileged}); push @results, loc('Privileged status: [_1]', loc_fuzzy($msg)); } if ( defined $ARGS{Disabled} and $ARGS{Disabled} != $UserObj->Disabled ) { my ($code, $msg) = $UserObj->SetDisabled($ARGS{Disabled}); push @results, $msg; } } if ( $UserObj->Id ) { # Deal with Password field my ($status, $msg) = $UserObj->SafeSetPassword( Current => $CurrentPass, New => $Pass1, Confirmation => $Pass2, ); push @results, $msg; if ( $id eq 'new' && !$status ) { push @results, loc("A password was not set, so user won't be able to login."); } } # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@results, Arguments => { id => $UserObj->Id }, ) if $UserObj->Id; <%ARGS> $id => undef $CurrentPass => undef $Pass1 => undef $Pass2 => undef $Create=> undef rt-4.4.2/share/html/Admin/Users/Memberships.html0000664000175000017500000000403713131430353021401 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/MembershipsPage, %ARGS &> rt-4.4.2/share/html/Admin/Users/CustomFields.html0000664000175000017500000000504213131430353021521 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, Object => $Object, ObjectType => 'RT::User' &> <%INIT> my $Object = RT::User->new( $session{'CurrentUser'} ); $Object->Load($id) || Abort( loc( "Couldn't load object [_1]", $id ) ); my $FriendlySubTypes = RT::CustomField->new( $session{'CurrentUser'} ) ->FriendlyLookupType( $Object->CustomFieldLookupType ); my $title = loc( 'Edit Custom Fields for [_1]', $Object->Name ); <%ARGS> $id => undef rt-4.4.2/share/html/Admin/Users/MyRT.html0000664000175000017500000001116413131430353017755 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@actions &>

      % for my $pane (@panes) { <&|/Widgets/TitleBox, title => loc('RT at a glance').': '.loc($pane->{Name}), bodyclass => "" &> <& /Widgets/SelectionBox:show, self => $pane &>
      % } <%init> my @actions; my $UserObj = RT::User->new($session{'CurrentUser'}); $UserObj->Load($id) || Abort("Couldn't load user '" . ($id || '') . "'"); my $title = loc("RT at a glance for the user [_1]", $UserObj->Name); if ($ARGS{Reset}) { my ($ok, $msg) = $UserObj->SetPreferences('HomepageSettings', {}); push @actions, $ok ? loc('Preferences saved for user [_1].', $UserObj->Name) : $msg; } my ($default_portlets) = RT::System->new($session{'CurrentUser'})->Attributes->Named('HomepageSettings'); my $portlets = $UserObj->Preferences('HomepageSettings', $default_portlets ? $default_portlets->Content : {}); my %allowed_components = map {$_ => 1} @{ RT->Config->Get('HomepageComponents') }; my @items; push @items, map {["component-$_", loc($_)]} sort keys %allowed_components; my $sys = RT::System->new( RT::CurrentUser->new($UserObj) ); my @objs = ($sys); push @objs, RT::SavedSearch->new( RT::CurrentUser->new( $UserObj ) )->ObjectsForLoading; for my $object (@objs) { for ($m->comp("/Search/Elements/SearchesForObject", Object => $object)) { my ($desc, $loc_desc, $search) = @$_; my $SearchType = $search->Content->{'SearchType'} || 'Ticket'; if ($object eq $sys && $SearchType eq 'Ticket') { push @items, ["system-$desc", $loc_desc]; } else { my $oid = ref($object).'-'.$object->Id.'-SavedSearch-'.$search->Id; my $type = ($SearchType eq 'Ticket') ? 'Saved Search' # loc : $SearchType; push @items, ["saved-$oid", loc($type).": $loc_desc"]; } } } my @panes = $m->comp( '/Admin/Elements/ConfigureMyRT', panes => ['body', 'sidebar'], Action => "MyRT.html?id=$id", items => \@items, current_portlets => $portlets, OnSave => sub { my ( $conf, $pane ) = @_; my ($ok, $msg) = $UserObj->SetPreferences( 'HomepageSettings', $conf ); push @actions, $ok ? loc('Preferences [_1] for user [_2].', $pane, $UserObj->Name) : $msg; } ); $m->comp( '/Widgets/SelectionBox:process', %ARGS, self => $_ ) for @panes; <%ARGS> $id => undef rt-4.4.2/share/html/Admin/Users/index.html0000664000175000017500000001355513131430353020237 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Select a user') &> <& /Elements/Tabs &>

      <% $caption %>

      % foreach my $field( qw(Format Rows Page Order OrderBy) ) { % next unless defined $ARGS{ $field } && length $ARGS{ $field }; % } <&|/l&>Go to user
      % foreach my $field( qw(Format Rows Page Order OrderBy) ) { % next unless defined $ARGS{ $field } && length $ARGS{ $field }; % } <&|/l&>Find all users whose <& /Elements/SelectUsers, %ARGS, Fields => \@fields &>
      />
      % unless ( $users->Count ) { <&|/l&>No users matching search criteria found. % } else {

      <&|/l&>Select a user:

      <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', Rows => $Rows, %ARGS, Format => $Format, Collection => $users, AllowSorting => 1, PassArguments => [qw(Format Rows Page Order OrderBy UserString UserOp UserField IdLike EmailLike FindDisabledUsers)], &> % } <%INIT> my $caption; my $users = RT::Users->new( $session{'CurrentUser'} ); $users->FindAllRows if $FindDisabledUsers; if ( defined($UserString) && length $UserString ) { $caption = loc("Users matching search criteria"); if ( $UserField =~ /^CustomField-(\d+)/ ) { $users->LimitCustomField( CUSTOMFIELD => $1, OPERATOR => $UserOp, VALUE => $UserString, ); } else { $users->Limit( FIELD => $UserField, OPERATOR => $UserOp, VALUE => $UserString, ); } RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."Admin/Users/Modify.html?id=".$users->First->id) if $users->Count == 1; } else { $caption = loc("Privileged users"); $users->LimitToPrivileged; } $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Users'}; my $Rows = RT->Config->Get('AdminSearchResultRows')->{'Users'} || 50; # Build up the list of fields to display for searching my $i = 0; my %sorted = map { $_ => $i++ } qw( Name EmailAddress RealName Organization NickName WorkPhone HomePhone MobilePhone PagerPhone Address1 Address2 City State Zip Country Timezone Lang Gecos SMIMECertificate Comments ); my @attrs = sort { $sorted{$a} <=> $sorted{$b} } grep { !/(?:^id$|ContactInfo|AuthToken|^Last|^Creat(?:ed|or)$|^Signature$)/ } RT::User->ReadableAttributes; my @fields; for my $name (@attrs) { my $label = $m->comp( '/Elements/ColumnMap', Class => 'RT__User', Name => $name, Attr => 'title' ); push @fields, [ $name, $label || $name ]; } <%ARGS> $Format => undef, $UserString => undef $UserOp => '=' $UserField => 'Name' $IdLike => undef $EmailLike => undef $FindDisabledUsers => 0 rt-4.4.2/share/html/Admin/Users/DashboardsInMenu.html0000664000175000017500000001011413131430353022302 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@actions &>

      % for my $pane (@panes) { <&|/Widgets/TitleBox, title => loc('Dashboards in menu'), bodyclass => "" &> <& /Widgets/SelectionBox:show, self => $pane &>
      % } <%init> my @actions; my $UserObj = RT::User->new($session{'CurrentUser'}); $UserObj->Load($id) || Abort("Couldn't load user '" . ($id || '') . "'"); my $title = loc("Dashboards in menu for the user [_1]", $UserObj->Name); if ($ARGS{Reset}) { my ($ok, $msg) = $UserObj->SetPreferences('DashboardsInMenu', {}); push @actions, $ok ? loc('Preferences saved for user [_1].', $UserObj->Name) : $msg; } my ($default_dashboards) = RT::System->new($session{'CurrentUser'})->Attributes->Named('DashboardsInMenu'); my $user = RT::CurrentUser->new( $session{CurrentUser} ); $user->Load( $UserObj->id ); my @dashboards = map { [ $_->id, $_->Name ] } $m->comp( "/Dashboards/Elements/ListOfDashboards", User => $user, IncludeSuperuserGroups => 0 ); my $current_pref = $UserObj->Preferences( 'DashboardsInMenu', $default_dashboards ? $default_dashboards->Content : () ); my $current_portlets = $current_pref && $current_pref->{dashboards} ? $current_pref->{dashboards} : []; my @panes = $m->comp( '/Admin/Elements/ConfigureDashboardsInMenu', Action => "DashboardsInMenu.html?id=$id", panes => ['dashboards_in_menu'], items => \@dashboards, current_portlets => $current_portlets, OnSave => sub { my ($conf) = @_; my ( $ok, $msg ) = $UserObj->SetPreferences( 'DashboardsInMenu', $conf ); push @actions, $ok ? loc('Preferences saved for dashboards in menu.') : $msg; } ); $m->comp( '/Widgets/SelectionBox:process', %ARGS, self => $_ ) for @panes; <%ARGS> $id => undef rt-4.4.2/share/html/Admin/Scrips/0000775000175000017500000000000013131430353016373 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Scrips/Modify.html0000664000175000017500000001137013131430353020512 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Modify scrip #[_1]", $id) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <&| /Widgets/TitleBox, title => loc('Basics') &> <& Elements/EditBasics, %ARGS, Scrip => $scrip &> % if ( not $disabled ) { % }
      <&|/l&>Applies to: \ % if ( $scrip->IsGlobal ) { <% loc('Global') %> % } else { % my $added_to = $scrip->AddedTo; % my $found = 0; % while ( my $queue = $added_to->Next ) { % $m->out(', ') if $found++; \ <% $queue->Name %>\ % last if $found == 10; % } % $m->out(', ...') if $found == 10; % }
        />
      <& /Elements/Submit, Label => loc('Save Changes'), Name => 'Update', Reset => 1 &> % if ($session{CurrentUser}->HasRight(Object => $RT::System, Right => 'ExecuteCode')) { <& Elements/EditCustomCode, %ARGS, Scrip => $scrip &> <& /Elements/Submit, Label => loc('Save Changes'), Name => 'Update', Reset => 1 &> % }
      <%ARGS> $id => undef $Update => undef $From => undef <%INIT> my $scrip = RT::Scrip->new( $session{'CurrentUser'} ); $scrip->Load( $id ); Abort(loc("Couldn't load scrip #[_1]", $id)) unless $scrip->id; my $disabled = $scrip->Disabled; if ( $Update ) { my @attribs = qw( Description ScripAction ScripCondition CustomPrepareCode CustomCommitCode CustomIsApplicableCode ); push @attribs, "Template" if defined $ARGS{Template} and length $ARGS{Template}; if ($ARGS{"SetEnabled"}) { push @attribs, "Disabled"; $ARGS{"Disabled"} = not $ARGS{"Enabled"}; } my @results = UpdateRecordObject( AttributesRef => \@attribs, Object => $scrip, ARGSRef => \%ARGS ); MaybeRedirectForResults( Actions => \@results, Arguments => { id => $scrip->id, From => $From, }, ); } my $EnabledChecked = qq[checked="checked"]; $EnabledChecked = '' if $disabled; my @results; my ($ok, $msg) = $scrip->CompileCheck; push @results, $msg if !$ok; rt-4.4.2/share/html/Admin/Scrips/Elements/0000775000175000017500000000000013131430353020147 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Scrips/Elements/SelectTemplate0000664000175000017500000000707113131430353023012 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => 'Template' $Queue => undef $Scrip => undef $Default => undef <%INIT> my $current; $current = $Scrip->Template if $Scrip; my @list; if ( $Scrip && $Scrip->id && !$Scrip->IsAddedToAny ) { my $templates = RT::Templates->new($session{'CurrentUser'}); $templates->UnLimit; @list = $templates->DistinctFieldValues('Name'); } else { my $global = RT::Templates->new($session{'CurrentUser'}); $global->LimitToGlobal; my %global; while (my $t = $global->Next) { $global{ lc $t->Name } = $t->Name } my @queues; push @queues, @{ $Scrip->AddedTo->ItemsArrayRef } if $Scrip && $Scrip->id; push @queues, $Queue if $Queue && $Queue->id; my (%names, %counters); foreach my $queue ( @queues ) { my $templates = RT::Templates->new($session{'CurrentUser'}); $templates->LimitToQueue( $queue->id ); foreach my $name ( map $_->Name, @{ $templates->ItemsArrayRef } ) { next if $global{ lc $name }; $counters{ lc $name }++; $names{lc $name} = $name; } } delete $counters{ $_ } foreach grep $counters{$_} != @queues, keys %counters; @list = map $global{$_} || $names{$_}, keys %global, keys %counters; } @list = sort { lc loc($a) cmp lc loc($b) } @list if @list; rt-4.4.2/share/html/Admin/Scrips/Elements/EditCustomCode0000664000175000017500000000553213131430353022752 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => loc('User Defined conditions and results') &> % while ( my ($method, $desc) = splice @list, 0, 2 ) { % }
      <&|/l&>(Use these fields when you choose 'User Defined' for a condition or action)
      <% $desc %>: % my $code = $ARGS{ $method } || $Scrip->$method() || ''; % my $lines = @{[ $code =~ /\n/gs ]} + 3; % $lines = $min_lines if $lines < $min_lines;
      <%ARGS> $Scrip <%INIT> my @list = ( CustomIsApplicableCode => loc('Custom condition'), CustomPrepareCode => loc('Custom action preparation code'), CustomCommitCode => loc('Custom action commit code'), ); my $min_lines = 10; rt-4.4.2/share/html/Admin/Scrips/Elements/EditBasics0000664000175000017500000000541213131430353022106 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/l&>Description:\ Description || '' %>" /> <&|/l&>Condition:\ <& /Admin/Elements/SelectScripCondition, Default => $ARGS{"ScripCondition"} || $Scrip->ConditionObj->Id, &> <&|/l&>Action:\ <& /Admin/Elements/SelectScripAction, Default => $ARGS{"ScripAction"} || $Scrip->ActionObj->Id, &> <&|/l&>Template:\ <& SelectTemplate, Default => $ARGS{"Template"}, Scrip => $Scrip, Queue => $Queue, &> <%ARGS> $Scrip $Queue => undef <%INIT> rt-4.4.2/share/html/Admin/Scrips/Objects.html0000664000175000017500000001272013131430353020654 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions &>
      % if ( $global ) {

      <&|/l&>Applies to all objects

      <& /Admin/Elements/SelectStageForAdded, Default => $Stage || $global->Stage, Label => loc("Select global scrip stage:") &> % } else {

      <&|/l&>Apply globally

      <&|/l&>Selected objects

      <& /Elements/CollectionList, OrderBy => ['SortOrder','Name'], Order => ['ASC', 'ASC'], %ARGS, Collection => $added, Rows => 0, Page => 1, Format => $format, DisplayFormat => "'__CheckBox.{RemoveScrip-$id}__','__ScripStage.{$id}__',". $format, AllowSorting => 0, ShowEmpty => 0, PassArguments => [ qw(id Stage Format Rows Page Order OrderBy), ], &>

      <&|/l&>Unselected objects

      <& /Elements/CollectionList, OrderBy => ['SortOrder','Name'], Order => ['ASC', 'ASC'], %ARGS, Collection => $not_added, Rows => $rows, Format => $format, DisplayFormat => "'__CheckBox.{AddScrip-". $id ."}__',". $format, AllowSorting => 1, ShowEmpty => 0, PassArguments => [ qw(id Stage Format Rows Page Order OrderBy), ], &> <& /Admin/Elements/SelectStageForAdded, Default => $Stage &>
      <% loc('You can change template if needed') %>: <& Elements/SelectTemplate, Scrip => $scrip, Default => $Template &>
      % } <& /Elements/Submit, Name => 'Update' &>
      <%ARGS> $id => undef $Stage => undef $Template => '' $Update => 0 $From => undef <%INIT> my $scrip = RT::Scrip->new( $session{'CurrentUser'} ); $scrip->Load($id) or Abort(loc("Could not load scrip #[_1]", $id)); $id = $scrip->id; my $global = $scrip->IsGlobal; if ( $Update ) { my (@results); if ( $Template ) { my ($status, $msg) = $scrip->SetTemplate( $Template ); push @results, loc('Template: [_1]', $msg); } if ( defined (my $del = $ARGS{"RemoveScrip-$id"}) ) { foreach my $id ( ref $del? (@$del) : ($del) ) { my ($status, $msg) = $scrip->RemoveFromObject( $id ); push @results, $msg; } } if ( defined (my $add = $ARGS{"AddScrip-$id"}) ) { foreach my $id ( ref $add? (@$add) : ($add) ) { my ($status, $msg) = $scrip->AddToObject( $id, Stage => $Stage ); push @results, $msg; } } if ($global and $global->Stage ne $Stage) { my ($status, $msg) = $global->SetStage($Stage); push @results, $msg; } MaybeRedirectForResults( Actions => \@results, Arguments => { id => $id, From => $From, }, ); } my $added = $scrip->AddedTo; my $not_added = $scrip->NotAddedTo; my $format = RT->Config->Get('AdminSearchResultFormat')->{'Queues'}; my $rows = RT->Config->Get('AdminSearchResultRows')->{'Queues'} || 50; my $title = loc('Modify associated objects for scrip #[_1]', $id); rt-4.4.2/share/html/Admin/Scrips/index.html0000664000175000017500000000642213131430353020374 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Select a Scrip') &> <& /Elements/Tabs &>

      <%$caption%>

      />
      <& /Elements/CollectionList, OrderBy => 'Description', Order => 'ASC', Rows => $Rows, %ARGS, Collection => $scrips, Format => $Format, AllowSorting => 1, PassArguments => [qw( FindDisabledScrips )], &> <%INIT> my $scrips = RT::Scrips->new( $session{'CurrentUser'} ); $scrips->FindAllRows if $FindDisabledScrips; $scrips->UnLimit; my ($caption); $caption = $FindDisabledScrips ? loc("All Scrips") : loc("Enabled Scrips"); $m->callback(CallbackName => 'Massage', Scrips => $scrips); $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Scrips'}; my $Rows = RT->Config->Get('AdminSearchResultRows')->{'Scrips'} || 50; <%ARGS> $FindDisabledScrips => 0 $Format => undef rt-4.4.2/share/html/Admin/Scrips/Create.html0000664000175000017500000001142113131430353020463 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <&| /Widgets/TitleBox, title => loc('Basics') &> <& Elements/EditBasics, %ARGS, Scrip => $scrip, Queue => $queue_obj &>
      <&|/l&>Stage:\ <& /Admin/Elements/SelectStage, Default => $ARGS{"Stage"} &>
        />
      <& /Elements/Submit, Label => loc('Create'), Name => 'Create', &> % if ($session{CurrentUser}->HasRight(Object => $RT::System, Right => 'ExecuteCode')) { <& Elements/EditCustomCode, %ARGS, Scrip => $scrip &> <& /Elements/Submit, Label => loc('Create'), Name => 'Create', &> % }
      <%ARGS> $Queue => 0 $Create => undef $Global => undef <%INIT> my @results; $ARGS{'Enabled'} = 1 unless $ARGS{'SetEnabled'}; my $queue_obj; if ( $Queue ) { $queue_obj = RT::Queue->new( $session{'CurrentUser'} ); $queue_obj->Load( $Queue ); Abort( loc("Couldn't load queue [_1]", $Queue) ) unless $queue_obj->id; } my $title; if ( $queue_obj ) { $title = loc('Create a scrip and add to queue [_1]', $queue_obj->Name ); } else { $title = loc('Create a global scrip'); } my $scrip = RT::Scrip->new( $session{'CurrentUser'} ); if ( $Create ) { my ($status, $msg) = $scrip->Create( Description => $ARGS{"Description"}, Queue => $Queue || 0, Stage => $ARGS{"Stage"}, Disabled => $ARGS{"Disabled"}, ScripAction => $ARGS{"ScripAction"}, ScripCondition => $ARGS{"ScripCondition"}, Template => $ARGS{"Template"}, CustomPrepareCode => $ARGS{"CustomPrepareCode"}, CustomCommitCode => $ARGS{"CustomCommitCode"}, CustomIsApplicableCode => $ARGS{"CustomIsApplicableCode"}, ); MaybeRedirectForResults( Force => 1, Actions => [ $msg ], Path => 'Admin/Scrips/Modify.html', Arguments => { id => $scrip->id, $Queue ? ( From => $Queue, ) : $Global ? ( From => 'Global', ) : () }, ) if $status; push @results, $msg; } rt-4.4.2/share/html/Admin/Global/0000775000175000017500000000000013131430353016330 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Global/Templates.html0000664000175000017500000000441613131430353021161 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title, FeedURI => 'templates' &> <& /Elements/Tabs &> <& /Admin/Elements/EditTemplates, title => $title, %ARGS &> <%init> my $title = loc("Modify templates which apply to all queues"); my (@actions); <%ARGS> $id => undef rt-4.4.2/share/html/Admin/Global/GroupRights.html0000664000175000017500000000504413131430353021476 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify global group rights') &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <& /Admin/Elements/EditRights, Context => $RT::System, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> # Update the acls. my @results = ProcessACLs(\%ARGS); # Principal collections my @principals = GetPrincipalsMap($RT::System, qw(System Roles Groups)); rt-4.4.2/share/html/Admin/Global/Conditions.html0000664000175000017500000000432413131430353021332 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditConditions, title => $title, %ARGS &> <%init> my $title = loc("Conditions"); my (@actions); <%ARGS> $id => 0 rt-4.4.2/share/html/Admin/Global/MyRT.html0000664000175000017500000000760013131430353020054 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("RT at a glance") &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@actions &>
      % for my $pane (@panes) { <&|/Widgets/TitleBox, title => loc('RT at a glance').': '.loc($pane->{Name}), bodyclass => "" &> <& /Widgets/SelectionBox:show, self => $pane &>
      % } <%init> my @actions; my @items = map { [ "component-$_", loc($_) ] } sort @{ RT->Config->Get('HomepageComponents') }; my $sys = RT::System->new( $session{'CurrentUser'} ); # XXX: put this in savedsearches_to_portlet_items for ( $m->comp( "/Search/Elements/SearchesForObject", Object => $sys )) { my ( $desc, $loc_desc, $search ) = @$_; my $SearchType = $search->Content->{'SearchType'} || 'Ticket'; if ( $SearchType eq 'Ticket' ) { push @items, [ "system-$desc", $loc_desc ]; } else { my $oid = ref($sys) . '-' . $sys->Id . '-SavedSearch-' . $search->Id; my $type = ( $SearchType eq 'Ticket' ) ? 'Saved Search' # loc : $SearchType; push @items, [ "saved-$oid", loc($type) . ": $loc_desc" ]; } } my ($default_portlets) = $sys->Attributes->Named('HomepageSettings'); my $has_right = $session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser'); my @panes = $m->comp( '/Admin/Elements/ConfigureMyRT', panes => [ 'body', #loc 'sidebar', #loc ], Action => 'MyRT.html', items => \@items, ReadOnly => !$has_right, current_portlets => $default_portlets->Content, OnSave => sub { my ( $conf, $pane ) = @_; if (!$has_right) { push @actions, loc( 'Permission Denied' ); } else { $default_portlets->SetContent( $conf ); push @actions, loc( 'Global portlet [_1] saved.', $pane ); } } ); $m->comp( '/Widgets/SelectionBox:process', %ARGS, self => $_ ) for @panes; rt-4.4.2/share/html/Admin/Global/index.html0000664000175000017500000000423213131430353020326 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Admin/Global configuration') &> <& /Elements/Tabs &> <& /Elements/ListMenu, menu => Menu()->child('admin')->child('global') &> rt-4.4.2/share/html/Admin/Global/DashboardsInMenu.html0000664000175000017500000000762213131430353022413 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc("Dashboards in menu") &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@actions &>
      % for my $pane (@panes) { <&|/Widgets/TitleBox, title => loc('Dashboards in menu'), bodyclass => "" &> <& /Widgets/SelectionBox:show, self => $pane &>
      % } <%init> my @actions; my $sys = RT::System->new( $session{'CurrentUser'} ); my $has_right = $session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser'); my ($dashboard_attr) = $sys->Attributes->Named('DashboardsInMenu'); my $default_dashboards_in_menu = $dashboard_attr && $dashboard_attr->Content->{dashboards} ? $dashboard_attr->Content->{dashboards} : []; use RT::Dashboards; my $dashboards = RT::Dashboards->new( $RT::SystemUser ); $dashboards->LimitToPrivacy('RT::System-' . $sys->id); my @dashboards; while ( my $dashboard = $dashboards->Next ) { push @dashboards, [$dashboard->id, $dashboard->Name]; } my @panes = $m->comp( '/Admin/Elements/ConfigureDashboardsInMenu', Action => 'DashboardsInMenu.html', panes => ['dashboards_in_menu'], ReadOnly => !$has_right, items => \@dashboards, current_portlets => $default_dashboards_in_menu, OnSave => sub { my ( $conf ) = @_; my ( $status, $msg ); if (!$has_right) { push @actions, loc( 'Permission Denied' ); } elsif ( $dashboard_attr ) { ($status, $msg) = $dashboard_attr->SetContent($conf); } else { $dashboard_attr = RT::Attribute->new($RT::SystemUser); ( $status, $msg ) = $dashboard_attr->Create( Name => 'DashboardsInMenu', Object => $sys, Content => $conf, ); } push @actions, $status ? loc('Global dashboards in menu saved.') : $msg; } ); $m->comp( '/Widgets/SelectionBox:process', %ARGS, self => $_ ) for @panes; rt-4.4.2/share/html/Admin/Global/UserRights.html0000664000175000017500000000474113131430353021323 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => loc('Modify global user rights') &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <& /Admin/Elements/EditRights, Context => $RT::System, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> my @results = ProcessACLs(\%ARGS); my @principals = GetPrincipalsMap($RT::System, 'Users'); rt-4.4.2/share/html/Admin/Global/Topics.html0000664000175000017500000000445113131430353020463 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Articles/Elements/Topics, RootObj => $RT::System, title => $title, %ARGS &> <%INIT> my $title = $Modify ? loc("Modify global topics") : loc("Edit global topic hierarchy"); <%ARGS> $id => undef $Modify => "" rt-4.4.2/share/html/Admin/Global/Actions.html0000664000175000017500000000433113131430353020617 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditActions, title => $title, id => $id, %ARGS &> <%init> my $title = loc("Actions"); my (@actions); <%ARGS> $id => 0 rt-4.4.2/share/html/Admin/Global/Scrips.html0000664000175000017500000000437013131430353020465 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditScrips, title => $title, id => $id, %ARGS &> <%init> my $title = loc("Modify scrips which apply to all queues"); my (@actions); <%ARGS> $id => 0 rt-4.4.2/share/html/Admin/Global/Template.html0000664000175000017500000000761013131430353020775 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      %if ($Create ) { % } else { % } %# hang onto the queue id <& /Admin/Elements/ModifyTemplate, Name => $TemplateObj->Name // $ARGS{Name}, Description => $TemplateObj->Description // $ARGS{Description}, Content => $TemplateObj->Content // $ARGS{Content}, Type => $TemplateObj->Type // $ARGS{Type}, &> <& /Elements/Submit, Label => $SubmitLabel, Reset => 1 &>
      <%INIT> my $TemplateObj = RT::Template->new($session{'CurrentUser'}); my ($title, @results, $SubmitLabel); if (!$Create) { if (defined ($Template) && $Template eq 'new') { my ($val, $msg) = $TemplateObj->Create(Queue => $Queue, Name => $Name, Type => $Type); push @results, $msg; } else { $TemplateObj->Load($Template) || Abort(loc('No Template')); } } if ($TemplateObj->Id()) { my @attribs = qw( Name Description Queue Type Content ); my @aresults = UpdateRecordObject( AttributesRef => \@attribs, Object => $TemplateObj, ARGSRef => \%ARGS); push @results, @aresults; my ($ok, $msg) = $TemplateObj->CompileCheck; push @results, $msg if !$ok; } else { $Create = 1; } if ($Create) { $title = loc("Create a template"); $SubmitLabel = loc('Create'); } else { $title = loc('Modify template [_1]', loc($TemplateObj->Name())); $SubmitLabel = loc('Save Changes'); } <%ARGS> $Queue => '' $Template => '' $Create => '' $Name => '' $Type => '' rt-4.4.2/share/html/Admin/Global/CustomFields/0000775000175000017500000000000013131430353020731 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/Global/CustomFields/Queue-Tickets.html0000664000175000017500000000451713131430353024316 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, ObjectType => 'RT::Queue', Object=> $object, SubType => 'RT::Ticket' &> <%INIT> my $title = loc( 'Edit Custom Fields for tickets in all queues'); my $object = RT::Queue->new($session{'CurrentUser'}); rt-4.4.2/share/html/Admin/Global/CustomFields/Queues.html0000664000175000017500000000445313131430353023074 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, ObjectType => 'RT::Queue', Object=> $object &> <%INIT> my $title = loc( 'Edit Custom Fields for all queues'); my $object = RT::Queue->new($session{'CurrentUser'}); rt-4.4.2/share/html/Admin/Global/CustomFields/Class-Article.html0000664000175000017500000000451313131430353024250 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, ObjectType => 'RT::Class', Object => $object, SubType => 'RT::Article' &> <%INIT> my $title = loc( 'Edit Custom Fields for articles in all classes'); my $object = RT::Class->new($session{'CurrentUser'}); rt-4.4.2/share/html/Admin/Global/CustomFields/index.html0000664000175000017500000000651413131430353022734 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( %ARGS, tabs => $tabs ); <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <%INIT> my $title = loc("Global custom field configuration"); my $tabs = { A => { title => loc('Users'), text => loc('Select custom fields for all users'), path => 'Users.html', }, B => { title => loc('Groups'), text => loc('Select custom fields for all user groups'), path => 'Groups.html', }, C => { title => loc('Queues'), text => loc('Select custom fields for all queues'), path => 'Queues.html', }, F => { title => loc('Tickets'), text => loc('Select custom fields for tickets in all queues'), path => 'Queue-Tickets.html', }, G => { title => loc('Ticket Transactions'), text => loc('Select custom fields for transactions on tickets in all queues'), path => 'Queue-Transactions.html', }, H => { title => loc('Articles'), text => loc('Select Custom Fields for Articles in all Classes'), path => 'Class-Article.html' }, }; $m->callback( tabs => $tabs ); rt-4.4.2/share/html/Admin/Global/CustomFields/Queue-Transactions.html0000664000175000017500000000453713131430353025362 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, ObjectType => 'RT::Queue', Object=> $object, SubType => 'RT::Ticket-RT::Transaction' &> <%INIT> my $title = loc( 'Edit Custom Fields for tickets in all queues'); my $object = RT::Queue->new($session{'CurrentUser'}); rt-4.4.2/share/html/Admin/Global/CustomFields/Catalog-Assets.html0000664000175000017500000000450613131430353024436 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, ObjectType => "RT::Catalog", Object=> $object, SubType => "RT::Asset" &> <%init> my $title = loc('Edit Custom Fields for Assets in all Catalogs'); my $object = RT::Catalog->new($session{'CurrentUser'}); rt-4.4.2/share/html/Admin/Global/CustomFields/Groups.html0000664000175000017500000000445313131430353023104 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, ObjectType => 'RT::Group', Object=> $object &> <%INIT> my $title = loc( 'Edit Custom Fields for all groups'); my $object = RT::Group->new($session{'CurrentUser'}); rt-4.4.2/share/html/Admin/Global/CustomFields/Users.html0000664000175000017500000000445013131430353022723 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Admin/Elements/EditCustomFields, %ARGS, title => $title, ObjectType => 'RT::User', Object=> $object &> <%INIT> my $title = loc( 'Edit Custom Fields for all users'); my $object = RT::User->new($session{'CurrentUser'}); rt-4.4.2/share/html/Admin/CustomFields/0000775000175000017500000000000013131430353017531 5ustar vagrantvagrantrt-4.4.2/share/html/Admin/CustomFields/Modify.html0000664000175000017500000004125513131430353021655 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title, Focus => (($added_cfv or $ARGS{FocusAddValue}) ? "input[name=CustomField-$id-Value-new-Name]" : undef), &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      % if ( $CustomFieldObj->Id and $CustomFieldObj->HasRenderTypes ) { % } % if ( $CustomFieldObj->Id and $CustomFieldObj->IsSelectionType and RT->Config->Get('CustomFieldValuesSources') and ( scalar(@{RT->Config->Get('CustomFieldValuesSources')}) > 0 ) ) { % } % if ( $CustomFieldObj->Id and $CustomFieldObj->IsCanonicalizeType and RT->Config->Get('CustomFieldValuesCanonicalizers') and ( scalar(@{RT->Config->Get('CustomFieldValuesCanonicalizers')}) > 0 ) ) { % } % if ( $CustomFieldObj->SupportDefaultValues ) { % } % if ( $CustomFieldObj->Id && $CustomFieldObj->IsSelectionType ) { % } % $m->callback(CallbackName => 'BeforeEnabled', CustomField => $CustomFieldObj, CFvalidations => \@CFvalidations); % $m->callback(CallbackName => 'EndOfTable', CustomField => $CustomFieldObj, CFvalidations => \@CFvalidations);
      <&|/l&>Name
      <&|/l&>Description
      <&|/l&>Type <& /Admin/Elements/SelectCustomFieldType, Name => "TypeComposite", Default => $CustomFieldObj->TypeComposite, &>
      <&|/l&>Render Type <& /Admin/Elements/SelectCustomFieldRenderType, Name => "RenderType", TypeComposite => $CustomFieldObj->TypeComposite, Default => $CustomFieldObj->RenderType, BasedOn => $CustomFieldObj->BasedOnObj->id, &>
      <&|/l&>Field values source: <& /Admin/Elements/EditCustomFieldValuesSource, CustomField => $CustomFieldObj &>
      <&|/l&>Canonicalizer: <& /Admin/Elements/EditCustomFieldValuesCanonicalizer, CustomField => $CustomFieldObj &>
      <&|/l&>Applies to <& /Admin/Elements/SelectCustomFieldLookupType, Name => "LookupType", Default => $CustomFieldObj->LookupType || $LookupType, &>
      <&|/l&>Entry Hint
      <&|/l&>Validation <& /Widgets/ComboBox, Name => 'Pattern', Default => $CustomFieldObj->Pattern || $Pattern, Size => 20, Values => \@CFvalidations, &>
      <&|/l, $CustomFieldObj->MaxValues &>Default [numerate,_1,value,values] <& /Elements/EditCustomField, NamePrefix => 'Default-', CustomField => $CustomFieldObj, ShowEmptyOption => 1 &>
      <&|/l&>Link values to
      <&|/l&>RT can make this custom field's values into hyperlinks to another service. <&|/l&>Fill in this field with a URL. <&|/l_unsafe, '__id__', '__CustomField__' &>RT will replace [_1] and [_2] with the record's id and the custom field's value, respectively.
      <&|/l&>Include page
      <&|/l&>RT can include content from another web service when showing this custom field. <&|/l&>Fill in this field with a URL. <&|/l_unsafe, '__id__', '__CustomField__' &>RT will replace [_1] and [_2] with the record's id and the custom field's value, respectively. <&|/l&>Some browsers may only load content from the same domain as your RT server.
      <&|/l&>Categories are based on <& /Admin/Elements/SelectCustomField, Name => "BasedOn", LookupType => $CustomFieldObj->LookupType, Default => $CustomFieldObj->BasedOnObj || $BasedOn, Not => $CustomFieldObj->id, &>
        />
        />
      % if ( $CustomFieldObj->Id && $CustomFieldObj->IsSelectionType && !$CustomFieldObj->IsExternalValues ) {

      <&|/l&>Values

      <& /Admin/Elements/EditCustomFieldValues, CustomField => $CustomFieldObj &> <& /Admin/Elements/AddCustomFieldValue, CustomField => $CustomFieldObj &>
      % } <& /Elements/Submit, Name => 'Update', Label => $id eq 'new'? loc('Create'): loc('Save Changes') &>
      % $m->callback(%ARGS, CallbackName => 'EndOfPage', CustomFieldObj => $CustomFieldObj); <%INIT> my ($title, @results, $added_cfv); my $CustomFieldObj = RT::CustomField->new( $session{'CurrentUser'} ); $m->callback(CallbackName => 'Initial', Pattern => \$Pattern, Results => \@results, ARGSRef => \%ARGS); unless ( $id ) { $title = loc("Create a CustomField"); $id = 'new'; } else { if ( $id eq 'new' ) { my ( $val, $msg ) = $CustomFieldObj->Create( Name => $Name, TypeComposite => $TypeComposite, LookupType => $LookupType, Description => $Description, Pattern => $Pattern, LinkValueTo => $LinkValueTo, IncludeContentForValue => $IncludeContentForValue, BasedOn => $BasedOn, Disabled => ($Enabled ? 0 : 1), EntryHint => $EntryHint, UniqueValues => $UniqueValues, ); if (!$val) { push @results, loc("Could not create CustomField: [_1]", $msg); $title = loc( 'Create a CustomField'); } else { push @results, loc("Object created"); $title = loc( 'Created CustomField [_1]', $CustomFieldObj->Name ); } } else { push @results, loc('No CustomField') unless $CustomFieldObj->Load( $id ); $title = loc( 'Editing CustomField [_1]', $CustomFieldObj->Name ); } } if ( $ARGS{'Update'} && $id ne 'new' ) { #we're asking about enabled on the web page but really care about disabled. $ARGS{'Disabled'} = $Enabled? 0 : 1; # make sure the unchecked checkbox still causes an update $ARGS{UniqueValues} ||= 0 if $SetUniqueValues; my @attribs = qw(Disabled Pattern Name TypeComposite LookupType Description LinkValueTo IncludeContentForValue EntryHint UniqueValues); push @results, UpdateRecordObject( AttributesRef => \@attribs, Object => $CustomFieldObj, ARGSRef => \%ARGS ); if ( ($ValuesClass||'RT::CustomFieldValues') ne $CustomFieldObj->ValuesClass ) { my $original = $CustomFieldObj->ValuesClass; my ($good, $msg) = $CustomFieldObj->SetValuesClass( $ValuesClass ); if ( $good ) { $msg = loc("[_1] changed from '[_2]' to '[_3]'", loc("Field values source"), $original, $ValuesClass ); } else { RT->Logger->debug("Unable to SetValuesClass to '$ValuesClass': $msg"); } push @results, $msg; } if ( ($CanonicalizeClass||'') ne ($CustomFieldObj->CanonicalizeClass||'') ) { my $original = $CustomFieldObj->CanonicalizeClass; my ($good, $msg) = $CustomFieldObj->SetCanonicalizeClass( $CanonicalizeClass ); if ( $good ) { # Improve message from class names to their friendly descriptions $original = $original->Description if $original && $original->require; $CanonicalizeClass = $CanonicalizeClass->Description if $CanonicalizeClass && $CanonicalizeClass->require; if (!$original) { $msg = loc("[_1] '[_2]' added", loc("Canonicalizer"), $CanonicalizeClass); } elsif (!$CanonicalizeClass) { $msg = loc("[_1] '[_2]' removed", loc("Canonicalizer"), $original); } else { $msg = loc("[_1] changed from '[_2]' to '[_3]'", loc("Canonicalizer"), $original, $CanonicalizeClass ); } } else { RT->Logger->debug("Unable to SetCanonicalizeClass to '$CanonicalizeClass': $msg"); } push @results, $msg; } # Set the render type if we have it, but unset it if the new type doesn't # support render types if ( $CustomFieldObj->HasRenderTypes($TypeComposite) ) { my $original = $CustomFieldObj->RenderType; if ( defined $RenderType and $RenderType ne $original ) { # It's changed! Let's update it. my ($good, $msg) = $CustomFieldObj->SetRenderType( $RenderType ); if ( $good ) { $msg = loc("[_1] changed from '[_2]' to '[_3]'", loc("Render Type"), $original, $RenderType ); } else { RT->Logger->debug("Unable to SetRenderType to '$RenderType': $msg"); } push @results, $msg; } } else { # Delete it if we no longer support render types $CustomFieldObj->SetRenderType( undef ); } if (($CustomFieldObj->BasedOn||'') ne ($BasedOn||'')) { my ($good, $msg) = $CustomFieldObj->SetBasedOn( $BasedOn ); push @results, $msg; } if ( $CustomFieldObj->SupportDefaultValues ) { my ($ret, $msg) = $CustomFieldObj->SetDefaultValues( Object => RT->System, Values => $ARGS{'Default-' . $CustomFieldObj->id . '-Value'} // $ARGS{'Default-' . $CustomFieldObj->id . '-Values'}, ); push @results, $msg; } my $paramtag = "CustomField-". $CustomFieldObj->Id ."-Value"; # Delete any fields that want to be deleted foreach my $key ( keys %ARGS ) { next unless $key =~ /^Delete-$paramtag-(\d+)$/; my ($val, $msg) = $CustomFieldObj->DeleteValue( $1 ); push (@results, $msg); } # Update any existing values my $values = $CustomFieldObj->ValuesObj; while ( my $value = $values->Next ) { foreach my $attr (qw(Name Description SortOrder Category)) { my $param = join("-", $paramtag, $value->Id, $attr); next unless exists $ARGS{$param}; $ARGS{$param} =~ s/^\s+//; $ARGS{$param} =~ s/\s+$//; next if ($value->$attr()||'') eq ($ARGS{$param}||''); my $mutator = "Set$attr"; my ($id, $msg) = $value->$mutator( $ARGS{$param} ); push (@results, $msg); } $m->callback(CallbackName => 'AfterUpdateCustomFieldValue', CustomFieldObj => $CustomFieldObj, CustomFieldValueObj => $value, ARGSRef => \%ARGS ); } # Add any new values if ( defined $ARGS{ $paramtag ."-new-Name" } && length $ARGS{ $paramtag ."-new-Name" } ) { my ($id, $msg) = $CustomFieldObj->AddValue( map { $ARGS{$paramtag."-new-$_"} =~ s/^\s+//; $ARGS{$paramtag."-new-$_"} =~ s/\s+$//; $_ => $ARGS{ $paramtag ."-new-$_" } } grep { defined $ARGS{ $paramtag ."-new-$_" } } qw/ Name Description SortOrder Category/ ); push (@results, $msg); $added_cfv = 1 if $id; my $cfv = RT::CustomFieldValue->new( $session{CurrentUser} ); $cfv->Load($id); $m->callback(CallbackName => 'AfterCreateCustomFieldValue', CustomFieldObj => $CustomFieldObj, CustomFieldValueObj => $cfv, ARGSRef => \%ARGS ); } } if ( $CustomFieldObj->id && $CustomFieldObj->IsOnlyGlobal ) { my ( $ret, $msg ); my $object = $CustomFieldObj->RecordClassFromLookupType->new( $session{'CurrentUser'} ); if ( $CustomFieldObj->Disabled && $CustomFieldObj->IsGlobal ) { ( $ret, $msg ) = $CustomFieldObj->RemoveFromObject($object); } elsif ( !$CustomFieldObj->Disabled && !$CustomFieldObj->IsGlobal ) { ( $ret, $msg ) = $CustomFieldObj->AddToObject($object); } # successful msg("object created" or "object deleted ) is useless here push @results, $msg unless $ret; } $id = $CustomFieldObj->id if $CustomFieldObj->id; # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@results, Arguments => { id => $id, FocusAddValue => ($added_cfv ? 1 : 0) }, ) if $CustomFieldObj->id; my $EnabledChecked = qq[checked="checked"]; $EnabledChecked = '' if $CustomFieldObj->Disabled; my $UniqueValuesChecked = qq[checked="checked"]; $UniqueValuesChecked = '' if !$CustomFieldObj->UniqueValues; my @CFvalidations = ( '(?#Mandatory).', '(?#Digits)^[\d.]+$', '(?#Year)^[12]\d{3}$', ); $m->callback(CallbackName => 'ValidationPatterns', Values => \@CFvalidations); <%ARGS> $id => undef $TypeComposite => undef $LookupType => RT::Ticket->CustomFieldLookupType $MaxValues => undef $SortOrder => undef $Description => undef $Pattern => undef $Name => undef $SetEnabled => undef $Enabled => 0 $SetUniqueValues => undef $UniqueValues => 0 $ValuesClass => 'RT::CustomFieldValues' $CanonicalizeClass => undef $RenderType => undef $LinkValueTo => undef $IncludeContentForValue => undef $BasedOn => undef $EntryHint => undef rt-4.4.2/share/html/Admin/CustomFields/GroupRights.html0000664000175000017500000000574413131430353022706 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <& /Admin/Elements/EditRights, Context => $CustomFieldObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> if (!defined $id) { $m->comp("/Elements/Error", Why => loc("No CustomField defined")); } my $CustomFieldObj = RT::CustomField->new($session{'CurrentUser'}); $CustomFieldObj->Load($id) || $m->comp("/Elements/Error", Why => loc("Couldn't load CustomField [_1]",$id)); my @results = ProcessACLs( \%ARGS ); my $title = loc('Modify group rights for custom field [_1]', $CustomFieldObj->Name); # Principal collections my @principals = GetPrincipalsMap($CustomFieldObj, qw(System Roles Groups)); <%ARGS> $id => undef rt-4.4.2/share/html/Admin/CustomFields/Objects.html0000664000175000017500000001274213131430353022016 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      % if ( $CF->IsGlobal ) {

      <&|/l&>Applies to all objects

      % } else {

      <&|/l&>Apply globally

      % unless ( $CF->IsOnlyGlobal ) {

      <&|/l&>Selected objects

      <& /Elements/CollectionList, OrderBy => $class->isa('RT::Queue') ? ['SortOrder', 'Name'] : 'id', Order => $class->isa('RT::Queue') ? ['ASC', 'ASC'] : 'ASC', %ARGS, Collection => $added, Rows => 0, Page => 1, Format => $format, DisplayFormat => "'__CheckBox.{RemoveCustomField-". $CF->id ."}__',". $format, AllowSorting => 0, ShowEmpty => 0, PassArguments => [ qw(id Format Rows Page Order OrderBy), ], &>

      <&|/l&>Unselected objects

      <& /Elements/CollectionList, OrderBy => $class->isa('RT::Queue') ? ['SortOrder', 'Name'] : 'id', Order => $class->isa('RT::Queue') ? ['ASC', 'ASC'] : 'ASC', %ARGS, Collection => $not_added, Rows => $rows, Format => $format, DisplayFormat => "'__CheckBox.{AddCustomField-". $CF->id ."}__',". $format, AllowSorting => 1, ShowEmpty => 0, PassArguments => [ qw(id Format Rows Page Order OrderBy), ], &> % } % } <& /Elements/Submit, Name => 'UpdateObjs' &>
      <%INIT> my $CF = RT::CustomField->new($session{'CurrentUser'}); $CF->Load($id) or Abort(loc("Could not load CustomField [_1]", $id)); my $class = $CF->RecordClassFromLookupType; Abort(loc("Something wrong. Contact system administrator")) unless $class; my (@results); if ( $UpdateObjs ) { if ( defined (my $del = $ARGS{'RemoveCustomField-'.$CF->id}) ) { foreach my $id ( ref $del? (@$del) : ($del) ) { my $object = $class->new( $session{'CurrentUser'} ); if ( $id ) { $object->Load( $id ); next unless $object->id; } my ($status, $msg) = $CF->RemoveFromObject( $object ); push @results, $msg; } } if ( defined (my $add = $ARGS{'AddCustomField-'.$CF->id}) ) { foreach my $id ( ref $add? (@$add) : ($add) ) { my $object = $class->new( $session{'CurrentUser'} ); if ( $id ) { $object->Load( $id ); next unless $object->id; } my ($status, $msg) = $CF->AddToObject( $object ); push @results, $msg; } } } my $added = $CF->AddedTo; my $not_added = $CF->NotAddedTo; my $collection_class = ref($added); $collection_class =~ s/^RT:://; my $format = RT->Config->Get('AdminSearchResultFormat')->{$collection_class} || '__id__,__Name__'; my $rows = RT->Config->Get('AdminSearchResultRows')->{$collection_class} || 50; my $title = loc('Modify associated objects for [_1]', $CF->Name); <%ARGS> $id => undef $FindDisabledObjects => 0 $UpdateObjs => 0 rt-4.4.2/share/html/Admin/CustomFields/index.html0000664000175000017500000000763213131430353021536 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> % my $tmp = RT::CustomField->new( $session{'CurrentUser'} );

      <% $Type ? loc("Custom Fields for [_1]", $Type) : loc('All Custom Fields') %>

      <&|/l&>Only show custom fields for:
      />
      % $m->callback(CallbackName => 'BeforeSubmit');
      <& /Elements/CollectionList, OrderBy => 'LookupType|Name', Order => 'ASC|ASC', Rows => $Rows, %ARGS, Collection => $CustomFields, Format => $Format, DisplayFormat => ($Type? '' : '__FriendlyLookupType__,'). $Format, AllowSorting => 1, PassArguments => [ qw(Format Rows Page Order OrderBy), qw(Type ShowDisabled) ], &> <%args> $Type => '' $ShowDisabled => 0 $Format => undef <%INIT> my $title = loc('Select a Custom Field'); my $CustomFields = RT::CustomFields->new($session{'CurrentUser'}); $CustomFields->UnLimit; $CustomFields->FindAllRows if $ShowDisabled; $CustomFields->LimitToLookupType( $Type ) if $Type; $m->callback(CallbackName => 'MassageCustomFields', CustomFields => $CustomFields); $Format ||= RT->Config->Get('AdminSearchResultFormat')->{'CustomFields'}; my $Rows = RT->Config->Get('AdminSearchResultRows')->{'CustomFields'} || 50; rt-4.4.2/share/html/Admin/CustomFields/UserRights.html0000664000175000017500000000572613131430353022530 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Admin/Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
      <& /Admin/Elements/EditRights, Context => $CustomFieldObj, Principals => \@principals &> <& /Elements/Submit, Label => loc('Save Changes') &>
      <%INIT> # Update the acls. my @results = ProcessACLs( \%ARGS ); if (!defined $id) { $m->comp("/Elements/Error", Why => loc("No Class defined")); } my $CustomFieldObj = RT::CustomField->new($session{'CurrentUser'}); $CustomFieldObj->Load($id) || $m->comp("/Elements/Error", Why => loc("Couldn't load Class [_1]",$id)); my $title = loc('Modify user rights for custom field [_1]', $CustomFieldObj->Name); # Principal collections my @principals = GetPrincipalsMap($CustomFieldObj, qw(Users)); <%ARGS> $id => undef rt-4.4.2/share/html/Install/0000775000175000017500000000000013131430353015506 5ustar vagrantvagrantrt-4.4.2/share/html/Install/DatabaseType.html0000664000175000017500000000712213131430353020744 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|Elements/Wrapper, Title => loc('Step [_1] of [_2]', 1, 7 ) .': '. loc('Choose Database Engine') &>

      <&|/l&>RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported.

      <&|/l&>You should choose the database you or your local database administrator is most comfortable with.

      <&|/l&>SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server.

      <&|/l_unsafe, 'CPAN' &>If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using [_1] to download and install DBD::MySQL, DBD::Oracle or DBD::Pg.

      <& /Widgets/BulkEdit, Types => \@Types, Meta => $RT::Installer->{Meta}, CurrentValue => RT::Installer->CurrentValues(@Types) &> <& /Elements/Submit, Label => loc('Next') .': '. loc( 'Check Database Credentials') &>
      <%init> my @Types = 'DatabaseType'; if ( $Run ) { $m->comp('/Widgets/BulkProcess', Types => \@Types, Arguments => \%ARGS, Meta => $RT::Installer->{Meta}, Store => $RT::Installer->{InstallConfig} ); RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/DatabaseDetails.html'); } <%args> $Run => undef rt-4.4.2/share/html/Install/Finish.html0000664000175000017500000000653713131430353017627 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Elements/Wrapper, Title => loc('Step [_1] of [_2]', 7, 7) .': '. loc('Finish') &>

      <&|/l&>Click "Finish Installation" below to complete this wizard.

      <&|/l_unsafe, 'root' &>You should be taken directly to a login page. You'll be able to log in with username of [_1] and the password you set earlier.

      <&|/l&>If you've changed the Port that RT runs on, you'll need to restart the server in order to log in.

      <&|/l, RT::Installer->ConfigFile &>The settings you've chosen are stored in [_1].

      <& /Elements/Submit, Label => 'Finish Installation' &>
      <%init> if ( $Run ) { RT->InstallMode(0); RT->ConnectToDatabase(); RT->InitSystemObjects(); RT->InitClasses(); RT->InitPlugins(); my $ret = chmod 0440, RT::Installer->ConfigFile; if ( !$ret ) { $RT::Logger->error( 'failed to make ' . RT::Installer->ConfigFile . ' readonly' ); } my $root = RT::User->new( RT->SystemUser ); $root->Load('root'); my ($ok, $val) = $root->SetPassword( $RT::Installer->{InstallConfig}{Password} ); $RT::Logger->warning("Unable to set root password: $val") if !$ok; RT::Interface::Web::Redirect(RT->Config->Get('WebURL')); } <%args> $Run => undef rt-4.4.2/share/html/Install/Sendmail.html0000664000175000017500000000733713131430353020142 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|Elements/Wrapper, Title => loc('Step [_1] of [_2]', 4, 7 ) .': '. loc('Customize Email Configuration') &> <& Elements/Errors, Errors => \@errors &>

      <&|/l&>RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT.

      <& /Widgets/BulkEdit, Types => \@Types,Meta => $RT::Installer->{Meta}, CurrentValue => RT::Installer->CurrentValues(@Types) &> <& /Elements/Submit, Label => loc('Next') .': '. loc('Customize Email Addresses'), Back => 1, BackLabel => loc('Back' ) .': '. loc('Customize Basics'), &>
      <%init> my @errors; my @Types = qw/SendmailPath OwnerEmail/; if ( $Run ) { $m->comp('/Widgets/BulkProcess', Types => \@Types, Arguments => \%ARGS, Store => $RT::Installer->{InstallConfig}, Meta => $RT::Installer->{Meta}, KeepUndef => 1); if ( $Back ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Basics.html'); } unless ( -e $ARGS{SendmailPath} ) { push @errors, loc( "[_1] doesn't exist.", $ARGS{SendmailPath} ); } if ( ! $ARGS{OwnerEmail} || $ARGS{OwnerEmail} !~ /.+@.+/ ) { push @errors, loc("Invalid [_1]: '[_2]' doesn't look like an email address", 'Administrator Email', $ARGS{OwnerEmail} ); } unless ( @errors ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Global.html'); } } <%args> $Run => undef $Back => undef rt-4.4.2/share/html/Install/Elements/0000775000175000017500000000000013131430353017262 5ustar vagrantvagrantrt-4.4.2/share/html/Install/Elements/Wrapper0000664000175000017500000000436113131430353020631 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&/Elements/Header, title => $Title &> <& /Elements/PageLayout, title => $Title, show_menu => 1 &> <% $m->content() |n%> <& /Elements/Footer &> % $m->abort; <%args> $Title => 'Install RT' rt-4.4.2/share/html/Install/Elements/Errors0000664000175000017500000000430013131430353020456 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if (@Errors) { <&| "/Widgets/TitleBox", title => loc('Error'), hideable => 0, class => 'error' &>
        % for my $Error ( @Errors ) {
      • <% $Error %>
      • % }
      % } <%args> @Errors rt-4.4.2/share/html/Install/index.html0000664000175000017500000001167113131430353017511 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Elements/Wrapper, Title => loc('Welcome to RT!') &> <& Elements/Errors, Errors => \@errors &> % return if $locked;

      <% loc('Language') %>

      <&|/l&>Select another language: <& /Elements/SelectLang, Name => 'Lang', Default => $lang_handle? $lang_handle->language_tag : undef, &>

      <% loc('What is RT?') %>

      <&|/l&>RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an "action item."

      <&|/l&>RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)

      <% loc('Getting started') %>

      <&|/l, loc("Let's go!") &>You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click "[_1]" below, RT will guide you through setting up your RT server and database.

      <&|/l&>If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server.

      <& /Elements/Submit, Label => loc( "Let's go!"), Name => 'Run' &>
      <%init> my @errors; my $locked; my $file = RT::Installer->ConfigFile; if ( ! -e $file ) { # write a blank RT_SiteConfig.pm open( my $fh, '>', $file ) or die $!; close $fh; } elsif ( ! -w $file ) { $locked = 1; } if ( $locked ) { push @errors, loc("Config file [_1] is locked", $file); } elsif ( $Run ) { $RT::Installer->{InstallConfig} ||= {}; for my $field ( qw/DatabaseType DatabaseName DatabaseHost DatabasePort DatabaseUser rtname Organization CommentAddress CorrespondAddress SendmailPath WebDomain WebPort/ ) { $RT::Installer->{InstallConfig}{$field} ||= RT->Config->Get($field); } for my $field ( qw/OwnerEmail Password DatabasePassword DatabaseAdminPassword/ ) { # stuff we don't want to keep null $RT::Installer->{InstallConfig}{$field} = ''; } RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/DatabaseType.html'); } elsif ( $ChangeLang && $Lang ) { # hackish, but works $session{'CurrentUser'} = RT::CurrentUser->new; $session{'CurrentUser'}->LanguageHandle( $Lang ); } my $lang_handle = do { local $@; eval { ($session{'CurrentUser'} || RT::CurrentUser->new(RT->SystemUser->Id)) ->LanguageHandle } }; <%args> $Run => 0 $ChangeLang => undef $Lang => undef rt-4.4.2/share/html/Install/autohandler0000664000175000017500000000461513131430353017745 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%flags> inherit => undef <%init> if (RT->InstallMode) { $r->content_type("text/html; charset=utf-8"); require RT::Installer; $RT::Installer->{'CurrentUser'} = RT::CurrentUser->new(); $RT::Installer->{Meta} = RT::Installer->Meta; $m->call_next; } else { # redirect to login page if not in install mode RT::Interface::Web::Redirect(RT->Config->Get('WebURL')) } rt-4.4.2/share/html/Install/Initialize.html0000664000175000017500000001207013131430353020475 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|Elements/Wrapper, Title => loc('Step [_1] of [_2]', 6, 7) .': '. loc('Initialize Database') &> <& Elements/Errors, Errors => \@errors &> % unless ( @errors ) {
      <&|/l&>Click "Initialize Database" to create RT's database and insert initial metadata. This may take a few moments
      % }
      <& /Elements/Submit, Label => loc('Initialize Database'), Back => 1, BackLabel => loc('Back') .': '. loc('Customize Email Addresses'), &>
      <%init> my @errors; if ( $Run ) { if ( $Back ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Global.html'); } my @actions = split /,/, $RT::Installer->{DatabaseAction}; # RT::Handle's ISA is dynamical, so we need to unshift the right one. my $class = 'DBIx::SearchBuilder::Handle::' . RT->Config->Get('DatabaseType'); $class->require or die $UNIVERSAL::require::ERROR; unshift @RT::Handle::ISA, $class; my $sysdbh = DBI->connect( RT::Handle->SystemDSN, $RT::Installer->{InstallConfig}{DatabaseAdmin}, $RT::Installer->{InstallConfig}{DatabaseAdminPassword}, { RaiseError => 0, PrintError => 0 }, ); die $DBI::errstr unless $sysdbh; my ( $status, $msg ) = ( 1, '' ); if ( $actions[0] eq 'create' ) { ($status, $msg) = RT::Handle->CreateDatabase( $sysdbh ); unless ( $status ) { push @errors, loc('ERROR: [_1]', $msg ); } shift @actions; # shift the 'create' action since its job is done. } if ( $status ) { my $dbh = DBI->connect( RT::Handle->DSN, $RT::Installer->{InstallConfig}{DatabaseAdmin}, $RT::Installer->{InstallConfig}{DatabaseAdminPassword}, { RaiseError => 0, PrintError => 0 }, ); die $DBI::errstr unless $dbh; foreach my $action ( @actions ) { ($status, $msg) = (1, ''); if ( $action eq 'schema' ) { ($status, $msg) = RT::Handle->InsertSchema( $dbh ); } elsif ( $action eq 'acl' ) { ($status, $msg) = RT::Handle->InsertACL( $dbh ); } elsif ( $action eq 'coredata' ) { $RT::Handle = RT::Handle->new; $RT::Handle->dbh( undef ); RT::ConnectToDatabase(); RT::InitLogging(); RT::InitClasses(); ($status, $msg) = $RT::Handle->InsertInitialData; } elsif ( $action eq 'insert' ) { $RT::Handle = RT::Handle->new; RT::Init(); my $file = $RT::EtcPath . "/initialdata"; ($status, $msg) = $RT::Handle->InsertData( $file, undef, disconnect_after => 0 ); } unless ( $status ) { push @errors, loc('ERROR: [_1]', $msg); last; } } } unless ( @errors ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Finish.html'); } } <%args> $Run => undef $Back => undef rt-4.4.2/share/html/Install/DatabaseDetails.html0000664000175000017500000002010413131430353021403 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Elements/Wrapper, Title => loc('Step [_1] of [_2]', 2, 7 ) .': '. loc('Check Database Credentials') &> % if ( @errors ) { <& Elements/Errors, Errors => \@errors &>

      <&|/l&>Tell us a little about how to find the database RT will be using

      <&|/l&>We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database.

      <&|/l&>When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database % } elsif ( @results ) { <& /Elements/ListActions, actions => \@results &>

      <&|/l&>We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT. % }

      % if ( @results && !@errors ) { <& /Elements/Submit, Label => loc('Next') .': '. loc('Customize Basics'), Back => 1, BackLabel => loc('Back') .': '. loc('Select Database Type'), Name => 'Next', &> % } else { <& /Widgets/BulkEdit, Types => \@Types, Meta => $RT::Installer->{Meta}, CurrentValue => { %{RT::Installer->CurrentValues(@Types)}, DatabaseAdmin => RT::Installer->CurrentValue( 'DatabaseAdmin' ) || $RT::Installer->{InstallConfig}{DatabaseAdmin} || ( $db_type eq 'mysql' ? 'root' : $db_type eq 'Pg' ? 'postgres' : '' ), } &> <& /Elements/Submit, Label => loc('Check Database Connectivity'), Back => 1, BackLabel => loc('Back') .': '. loc('Choose Database Engine'), &> % }
      <%init> my (@results, @errors); my $ConnectionSucceeded; my @Types = 'DatabaseName'; my $db_type = $RT::Installer->{InstallConfig}{DatabaseType}; unless ( $db_type eq 'SQLite' ) { push @Types, 'DatabaseHost', 'DatabasePort', 'DatabaseAdmin', 'DatabaseAdminPassword', 'DatabaseUser', 'DatabasePassword'; } if ( $Run ) { if ( $Back ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/DatabaseType.html'); } if ( $ARGS{Next} ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Basics.html'); } $m->comp('/Widgets/BulkProcess', Types => \@Types, Arguments => \%ARGS, Store => $RT::Installer->{InstallConfig}, Meta => $RT::Installer->{Meta}, KeepUndef => 1 ); my ( $status, $msg ) = RT::Installer->SaveConfig; if ( $status ) { RT->LoadConfig; RT::Handle->FinalizeDatabaseType(); # dba connect systemdsn my $dbh = DBI->connect( RT::Handle->SystemDSN, $ARGS{DatabaseAdmin}, $ARGS{DatabaseAdminPassword}, { RaiseError => 0, PrintError => 0 }, ); if ( $dbh ) { push @results, loc('Connection succeeded'); # dba connect dsn, which has table info $dbh = DBI->connect( RT::Handle->DSN, $ARGS{DatabaseAdmin}, $ARGS{DatabaseAdminPassword}, { RaiseError => 0, PrintError => 0 }, ); if ( $dbh and $db_type eq "Oracle") { # The database _existing_ is itself insufficient for Oracle -- we need to check for the RT user my $sth = $dbh->prepare('SELECT username FROM dba_users WHERE username = ?'); $sth->execute( $ARGS{DatabaseUser} ); undef $dbh unless $sth->fetchrow_array; push @errors, loc("Oracle users cannot have empty passwords") unless $ARGS{DatabasePassword}; } if ( $dbh ) { # check if table Users exists eval { my $dbh = DBI->connect( RT::Handle->DSN, $ARGS{DatabaseAdmin}, $ARGS{DatabaseAdminPassword}, { RaiseError => 1, PrintError => 0 }, ); my $sth = $dbh->prepare('select * from Users'); $sth->execute(); }; unless ( $@ ) { my $sth = $dbh->prepare('select id from Users where Name=?'); $sth->execute('RT_System'); if ( $sth->fetchrow_array ) { $RT::Installer->{DatabaseAction} = 'none'; push @results, loc("[_1] appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below", $RT::DatabaseName); } else { $RT::Installer->{DatabaseAction} = 'acl,coredata,insert'; push @results, loc("[_1] already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT.", $RT::DatabaseName); } } else { $RT::Installer->{DatabaseAction} = 'schema,acl,coredata,insert'; push @results, loc("[_1] already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT.", $RT::DatabaseName ); } } else { $RT::Installer->{DatabaseAction} = 'create,schema,acl,coredata,insert'; } } else { $RT::Installer->{DatabaseAction} = 'error'; push @errors, loc("Failed to connect to database: [_1]", $DBI::errstr ); } } else { push @results, loc($msg); } } <%args> $Run => undef $Back => undef rt-4.4.2/share/html/Install/Global.html0000664000175000017500000001031513131430353017574 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Elements/Wrapper, Title => loc('Step [_1] of [_2]', 5, 7 ) .': '. loc('Customize Email Addresses') &> <& Elements/Errors, Errors => \@errors &>

      <&|/l&>Help us set up some useful defaults for RT.

      <&|/l&>When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program.

      <& /Widgets/BulkEdit, Types => \@Types,Meta => $RT::Installer->{Meta}, CurrentValue => RT::Installer->CurrentValues(@Types) &> <& /Elements/Submit, Label => $RT::Installer->{DatabaseAction} eq 'none' ? loc('Next') .': '. loc('Finish') : loc('Next') .': '. loc('Initialize Database'), Back => 1, BackLabel => loc('Back') .': '. loc('Customize Email Configuration'), &>
      <%init> my @errors; my @Types = qw/CommentAddress CorrespondAddress/; if ( $Run ) { $m->comp('/Widgets/BulkProcess', Types => \@Types, Arguments => \%ARGS, Store => $RT::Installer->{InstallConfig}, Meta => $RT::Installer->{Meta}, KeepUndef => 1 ); if ( $Back ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Sendmail.html'); } for ( qw/CommentAddress CorrespondAddress/ ) { if ( $ARGS{$_} && $ARGS{$_} !~ /.+@.+/ ) { push @errors, loc("Invalid [_1]: '[_2]' doesn't look like an email address", $_, $ARGS{$_}); } } unless ( @errors ) { my ( $status, $msg ) = RT::Installer->SaveConfig; if ( $status ) { RT->LoadConfig; if ( $RT::Installer->{DatabaseAction} ne 'none' ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Initialize.html'); } else { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Finish.html'); } } else { push @errors, loc($msg); } } } <%args> $Run => undef $Back => undef rt-4.4.2/share/html/Install/Basics.html0000664000175000017500000000744513131430353017612 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| Elements/Wrapper, Title => loc('Step [_1] of [_2]', 3, 7) .': '. loc('Customize Basics') &> <& Elements/Errors, Errors => \@errors &>

      <&|/l&>These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user.

      <& /Widgets/BulkEdit, Types => \@Types,Meta => $RT::Installer->{Meta}, CurrentValue => RT::Installer->CurrentValues(@Types) &> <& /Elements/Submit, Label => loc('Next') .': '. loc('Customize Email Configuration'), Back => 1, BackLabel => loc('Back') .': '. loc('Check Database Credentials'), &>
      <%init> my @errors; my @Types = qw/rtname WebDomain WebPort Password/; if ( $Run ) { $m->comp('/Widgets/BulkProcess', Types => \@Types, Arguments => \%ARGS, Store => $RT::Installer->{InstallConfig}, Meta => $RT::Installer->{Meta} ); if ( $ARGS{WebPort} && $ARGS{WebPort} !~ /^\d+$/ ) { push @errors, loc("Invalid [_1]: it should be a number", 'WebPort'); } if ( !$ARGS{Password} ) { push @errors, loc("You must enter an Administrative password"); } else { my $dummy_user = RT::User->new($session{CurrentUser}); my ($ok, $msg) = $dummy_user->ValidatePassword($ARGS{Password}); unless ($ok) { push @errors, $msg; } } if ( $Back ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/DatabaseDetails.html'); } unless ( @errors ) { RT::Interface::Web::Redirect(RT->Config->Get('WebURL') . 'Install/Sendmail.html'); } } <%args> $Run => undef $Back => undef rt-4.4.2/share/html/Elements/0000775000175000017500000000000013131430353015654 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/SelectUsers0000664000175000017500000000577213131430353020053 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/SelectMatch, Name => 'UserOp', Default => $UserOp &> <%INIT> my $CFs = RT::CustomFields->new($session{'CurrentUser'}); $CFs->LimitToChildType('RT::User'); $CFs->OrderBy( FIELD => 'Name' ); my @fields = RT::User->BasicColumns; if ( $Fields and ref $Fields eq 'ARRAY' ) { if ( ref $Fields->[0] eq 'ARRAY' ) { @fields = @$Fields; } else { # make the name equal the label @fields = [ @$Fields, @$Fields ]; } } <%ARGS> $UserField => '' $UserOp => '' $UserString => '' $Fields => undef rt-4.4.2/share/html/Elements/RT__SavedSearch/0000775000175000017500000000000013131430353020610 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__SavedSearch/ColumnMap0000664000175000017500000000576013131430353022436 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP = { Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name()||loc("Unnamed search") }, }, Query => { title => 'Query', # loc attribute => 'Query', value => sub { return $_[0]->GetParameter('Query') }, }, ResultsURL => { title => '', attribute => 'ResultsURL', value => sub { my $search = shift; return $m->comp('/Elements/QueryString', map { $_ => $search->GetParameter($_) } qw(Query Format Rows Order OrderBy)); }, } }; <%INIT> $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/ShowCustomFieldText0000664000175000017500000000430313131430353021523 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $content = $Object->LargeContent || $Object->Content; $content = $m->comp('/Elements/ScrubHTML', Content => $content); $content =~ s|\n|
      |g; <%$content|n%> <%ARGS> $Object rt-4.4.2/share/html/Elements/FindUser0000664000175000017500000000410413131430353017315 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc('Find a user')&> <& /Elements/GotoUser &> rt-4.4.2/share/html/Elements/ShowHistoryHeader0000664000175000017500000001000013131430353021201 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Object $ShowHeaders => 0 $ShowTitle => 1 $ShowDisplayModes => 1 $ScrollShowHistory => 0 <%INIT> my $record_type = $Object->RecordType; my $histid = "\L$record_type\E-" . $Object->id . "-history";
      <%perl> if ( $ShowDisplayModes or $ShowTitle ) { my $title = $ShowTitle ? loc('History') : ' '; my $titleright = ''; if ( $ScrollShowHistory ) { $titleright .= qq{} . qq{} . loc('Load all history') . qq{} . ($ShowDisplayModes ? '—' : '') . qq{}; } if ( $ShowDisplayModes ) { if ( RT->Config->Get( 'QuoteFolding', $session{CurrentUser} ) ) { my $open_all = $m->interp->apply_escapes( loc("Show all quoted text"), 'j' ); my $open_html = $m->interp->apply_escapes( loc("Show all quoted text"), 'h' ); my $close_all = $m->interp->apply_escapes( loc("Hide all quoted text"), 'j' ); $titleright .= '$open_html — "; } if ($ShowHeaders) { $titleright .= qq{} . loc("Show brief headers") . qq{}; } else { $titleright .= qq{} . loc("Show full headers") . qq{}; } } <& /Widgets/TitleBoxStart, title => $title, titleright_raw => $titleright &> % }
      rt-4.4.2/share/html/Elements/SingleUserRoleInput0000664000175000017500000000535313131430353021527 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/EmailInput, Name => $role->GroupType, Size => $Size, ($ShowPlaceholder ? (Placeholder => loc(RT->Nobody->Name)) : ()), ($ShowEntryHint ? (EntryHint => $role->EntryHint) : ()), Default => $Default, Autocomplete => 1, AutocompleteReturn => "Name", AutocompleteNobody => 1, &> <%INIT> if (!defined($Default)) { if (!$User && $Ticket) { my $group = $Ticket->RoleGroup($role->GroupType); my $users = $group->UserMembersObj( Recursively => 0 ); $User = $users->First; } $Default = (!$User || $User->Id == RT->Nobody->id ? "" : $User->Name); } <%ARGS> $role $Size => undef $Default => undef $User => undef $Ticket => undef $ShowEntryHint => 1 $ShowPlaceholder => 1 rt-4.4.2/share/html/Elements/EditCustomFieldFreeform0000664000175000017500000000560013131430353022312 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $name = $Name || $NamePrefix . $CustomField->Id . ( $Multiple ? '-Values' : '-Value' ); % if ($Multiple) { % } else { % } <%INIT> if ( $Multiple and $Values ) { $Default = join "\n", map $_->Content, @{ $Values->ItemsArrayRef }; } unless ( $Multiple ) { $Default =~ s/\s*\n+\s*/ /g if $Default; } <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Name => undef $Default => undef $Values => undef $Multiple => undef $Cols $Rows rt-4.4.2/share/html/Elements/RT__User/0000775000175000017500000000000013131430353017336 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__User/ColumnMap0000664000175000017500000001223313131430353021155 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP = { Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name() }, }, RealName => { title => 'Real Name', # loc attribute => 'RealName', value => sub { return $_[0]->RealName() }, }, NickName => { title => 'Nickname', # loc attribute => 'NickName', value => sub { return $_[0]->NickName() }, }, EmailAddress => { title => 'Email Address', # loc attribute => 'EmailAddress', value => sub { return $_[0]->EmailAddress() }, }, Organization => { title => 'Organization', # loc attribute => 'Organization', value => sub { return $_[0]->Organization() }, }, HomePhone => { title => 'Home Phone', # loc attribute => 'HomePhone', value => sub { return $_[0]->HomePhone() }, }, WorkPhone => { title => 'Work Phone', # loc attribute => 'WorkPhone', value => sub { return $_[0]->WorkPhone() }, }, MobilePhone => { title => 'Mobile Phone', # loc attribute => 'MobilePhone', value => sub { return $_[0]->MobilePhone() }, }, PagerPhone => { title => 'Pager Phone', # loc attribute => 'PagerPhone', value => sub { return $_[0]->PagerPhone() }, }, Address1 => { title => 'Address', # loc attribute => 'Address1', value => sub { return $_[0]->Address1() }, }, Address2 => { title => 'Address 2', # loc attribute => 'Address2', value => sub { return $_[0]->Address2() }, }, City => { title => 'City', # loc attribute => 'City', value => sub { return $_[0]->City() }, }, State => { title => 'State', # loc attribute => 'State', value => sub { return $_[0]->State() }, }, Zip => { title => 'Zip', # loc attribute => 'Zip', value => sub { return $_[0]->Zip() }, }, Country => { title => 'Country', # loc attribute => 'Country', value => sub { return $_[0]->Country() }, }, Gecos => { title => 'Unix login', #loc attribute => 'Gecos', value => sub { return $_[0]->Gecos() }, }, Lang => { title => 'Language', #loc attribute => 'Lang', value => sub { return $_[0]->Lang() }, }, FreeformContactInfo => { title => 'Extra Info', #loc attribute => 'FreeformContactInfo', value => sub { return $_[0]->FreeformContactInfo() }, }, Disabled => { title => 'Status', # loc value => sub { return $_[0]->Disabled? $_[0]->loc('Disabled'): $_[0]->loc('Enabled') }, }, }; <%INIT> $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/LoginRedirectWarning0000664000175000017500000000535113131430353021663 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $next => undef <%init> return unless $next; my $destination = RT::Interface::Web::FetchNextPage($next); return unless ref $destination and $destination->{'HasSideEffects'}; my $consequence = RT::Interface::Web::PotentialPageAction($destination->{'url'}) || loc("perform actions"); $consequence = $m->interp->apply_escapes($consequence => "h");

      <&|/l&>After logging in you'll be sent to your original destination: <% $destination->{'url'} %> <&|/l_unsafe, "$consequence" &>which may [_1] on your behalf.

      <&|/l&>If this is not what you expect, leave this page now without logging in.

      rt-4.4.2/share/html/Elements/SelectWatcherType0000664000175000017500000000500313131430353021174 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my @types; if ($Scope =~ /queue/) { @types = $Queue->ManageableRoleGroupTypes; } else { @types = $Queue->Roles(Single => 0); } <%ARGS> $AllowNull => 1 $Default=>undef $Scope => 'ticket' $Name => 'WatcherType' $Queue => undef rt-4.4.2/share/html/Elements/ShowHistoryPage0000664000175000017500000001333513131430353020703 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Object $Transactions => $Object->SortedTransactions $Attachments => $Object->Attachments( WithHeaders => 1 ) $AttachmentContent => $Object->TextAttachments $ShowHeaders => 0 $PathPrefix => '' <%INIT> my $trans_content = {}; my $trans_attachments = {}; for my $content (@{$AttachmentContent->ItemsArrayRef()}) { $trans_content->{$content->TransactionId}->{$content->Id} = $content; } for my $attachment (@{$Attachments->ItemsArrayRef()}) { my $tmp = $trans_attachments->{ $attachment->TransactionId } ||= {}; push @{ $tmp->{ $attachment->Parent || 0 } ||= [] }, $attachment; } { my %tmp = ( DisplayPath => 'Display.html', AttachmentPath => 'Attachment', UpdatePath => 'Update.html', ForwardPath => 'Forward.html', EmailRecordPath => 'ShowEmailRecord.html', EncryptionPath => 'Crypt.html', ); my $prefix = $ARGS{PathPrefix}||''; while ( my ($arg, $path) = each %tmp ) { next if defined $ARGS{ $arg }; $ARGS{ $arg } = $prefix.$path; } } my $HasTxnCFs = ($Object->can("TransactionCustomFields") and $Object->TransactionCustomFields->Count); <%perl> my $i = 1; while ( my $Transaction = $Transactions->Next ) { my $skip = 0; # Skip display of SetWatcher transactions for ticket Owner groups. Owner # was a single member role group and denormalized into a column well before # the generic role group handling and transactions came about. For # tickets, we rely on rendering ownership changes using the Set-Owner # transaction. For all other record types, or even potential ticket single # role groups which aren't Owner, we use SetWatcher to render history and # skip the Set transactions. This complication is necessary to avoid # creating backdated transactions on upgrade which normalize to one type or # another. # # These conditions assumes ticket Owner is a single-member denormalized # role group, which is safe since that is unlikely to ever change in the # future. if ($Object->isa("RT::Ticket") and ($Transaction->Field || '') eq "Owner") { $skip = 1 if $Transaction->Type eq "SetWatcher"; } else { $skip = 1 if $Transaction->Type eq "Set" and $Transaction->Field and $Object->DOES("RT::Record::Role::Roles") and $Object->HasRole( $Transaction->Field ) and $Object->RoleGroup( $Transaction->Field )->SingleMemberRoleGroupColumn; } # Skip Time Worked fields if user is unprivileged and # HideTimeFieldsFromUnprivilegedUsers is set. $skip = 1 if $Object->isa("RT::Ticket") and not $Object->CurrentUserCanSeeTime and ($Transaction->Field || '') =~ /^Time(?:Estimated|Worked|Left)$/; $skip = 1 if $m->request_path =~ m{^/SelfService/} and RT::Config->Get('SelfServiceCorrespondenceOnly') and ($Transaction->Type ne "Correspond" && $Transaction->Type ne "Create"); $m->callback( %ARGS, Transaction => $Transaction, skip => \$skip, CallbackName => 'SkipTransaction', ); next if $skip; # ARGS is first because we're clobbering the "Attachments" parameter $m->comp( 'ShowTransaction', %ARGS, Object => $Object, Transaction => $Transaction, ShowHeaders => $ShowHeaders, RowNum => $i, Attachments => $trans_attachments->{$Transaction->id} || {}, AttachmentContent => $trans_content, HasTxnCFs => $HasTxnCFs, ); # manually flush the content buffer after each txn, # so the user sees some update $m->flush_buffer; $i++; } rt-4.4.2/share/html/Elements/ShowLinks0000664000175000017500000001147413131430353017527 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % for my $type (@display) { % } % # Allow people to add more rows to the table % $m->callback( %ARGS ); <& /Elements/ShowCustomFields, Object => $Object, Grouping => 'Links', Table => 0 &>
      <& ShowRelationLabel, Object => $Object, Label => $labels{$type}.':', Relation => $type &> % if ($clone{$type}) { (<% loc('Create') %>) % } <& ShowLinksOfType, Object => $Object, Type => $type, Recurse => ($type eq 'Members') &>
      % if ($Object->isa('RT::Ticket')) {
      " name="SpawnLinkedTicket"> <&|/l&>Ticket in <& /Elements/SelectQueue, ShowNullOption => 0, Name => 'CloneQueue' &>
      % } <%INIT> my @display = qw(DependsOn DependedOnBy MemberOf Members RefersTo ReferredToBy); $m->callback( %ARGS, CallbackName => 'ChangeDisplay', display => \@display ); my %labels = ( DependsOn => loc('Depends on'), DependedOnBy => loc('Depended on by'), MemberOf => loc('Parents'), Members => loc('Children'), RefersTo => loc('Refers to'), ReferredToBy => loc('Referred to by'), ); my %clone; if ( $Object->isa("RT::Ticket") and $Object->QueueObj->CurrentUserHasRight('CreateTicket')) { my $id = $Object->id; my $path = RT->Config->Get('WebPath') . '/Ticket/Create.html?Queue=' . $Object->Queue . '&CloneTicket=' . $id; for my $relation (@display) { my $mode = $RT::Link::TYPEMAP{$relation}->{Mode}; my $type = $RT::Link::TYPEMAP{$relation}->{Type}; my $field = $mode eq 'Base' ? 'new-' . $type : $type . '-new'; my @copy = ($id); # Canonicalized type captures both directions if ($type eq "RefersTo") { my $other = "Local" . $mode; push @copy, map { $_->$other() } @{ $Object->$relation->ItemsArrayRef }; } $clone{$relation} = "$path&$field=" . join('%20', grep { $_ } @copy); } } <%ARGS> $Object rt-4.4.2/share/html/Elements/ShowRecord0000664000175000017500000000727413131430353017670 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Object $Format $TrustFormat => 0 $Class => "" <%init> $Format = ScrubHTML($Format) unless $TrustFormat; my @columns = $m->comp('/Elements/CollectionAsTable/ParseFormat', Format => $Format); my $fetch_columnmap = sub { my ($name, $attr, $arguments, $no_escape) = @_; my $tmp = $m->comp( '/Elements/ColumnMap', Class => $Object->ColumnMapClassName, Name => $name, Attr => $attr, ); return ProcessColumnMapValue( $tmp, Arguments => $arguments, Escape => !$no_escape ); };
      <%perl> for my $column (@columns) { my $title = $m->interp->apply_escapes($column->{title} || '', 'h'); my $attr = $column->{'attribute'} || $column->{'last_attribute'}; unless (defined $column->{title}) { # No format-supplied title, so use the one from the column map as-is. It's # trustworthy. $title = $fetch_columnmap->($attr,'title',[$attr]); }
      <% CSSClass($fetch_columnmap->($attr,'attribute',[$attr],'no_escape')) %>"> <% loc($title) |n %> <%perl> my @out; foreach my $subcol ( @{ $column->{output} } ) { my ($col) = ($subcol =~ /^__(.*?)__$/); unless ( $col ) { push @out, $subcol; next; } push @out, $fetch_columnmap->($col, 'value', [$Object]); } @out = grep { defined $_ and length $_ } @out; <% join('',@out) |n %> % $m->callback(CallbackName => 'AfterValue', Object => $Object, attribute => $attr, column => $column );
      % }
      rt-4.4.2/share/html/Elements/ShowCustomFieldDate0000664000175000017500000000442213131430353021456 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $content = $Object->Content; my $DateObj = RT::Date->new ( $session{'CurrentUser'} ); $DateObj->Set( Format => 'unknown', Value => $content, Timezone => 'utc' ); $content = $DateObj->AsString(Time => 0, Timezone => 'utc'); <%$content|n%> <%ARGS> $Object rt-4.4.2/share/html/Elements/CollectionAsTable/0000775000175000017500000000000013131430353021203 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/CollectionAsTable/ParseFormat0000664000175000017500000000742213131430353023356 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Format <%init> use Regexp::Common qw/delimited/; my @Columns; while ($Format =~ /($RE{delimited}{-delim=>qq{\'"}}|[{}\w.]+)/go) { my $col = $1; my $colref = { original_string => $col }; if ($col =~ /^$RE{quoted}$/o) { substr($col,0,1) = ""; substr($col,-1,1) = ""; $col =~ s/\\(.)/$1/g; } $m->callback(CallbackName => 'PreColumn', Column => $colref, col => \$col); while ( $col =~ s{/(STYLE|CLASS|TITLE|ALIGN|SPAN|ATTRIBUTE):([^/]*)}{}i ) { $colref->{ lc $1 } = $2; } $colref->{'last_attribute'} = $colref->{'attribute'}; unless ( length $col ) { $colref->{'output'} = []; $colref->{'last_attribute'} = $colref->{'attribute'} = '' unless defined $colref->{'attribute'}; } elsif ( $col =~ /^__(NEWLINE|NBSP)__$/ || $col =~ /^(NEWLINE|NBSP)$/ ) { $colref->{'title'} = $1; $colref->{'last_attribute'} = ''; } elsif ( $col =~ /__(.*?)__/io ) { my @subcols; while ( $col =~ s/^(.*?)__(.*?)__//o ) { push ( @subcols, $1 ) if $1; push ( @subcols, "__$2__" ); $colref->{'last_attribute'} = $2; } push @subcols, $col; $colref->{'output'} = \@subcols; $colref->{'attribute'} = $colref->{'last_attribute'} unless defined $colref->{'attribute'}; } else { $colref->{'output'} = [ "__" . $col . "__" ]; $colref->{'last_attribute'} = $col; $colref->{'attribute'} = $col unless defined $colref->{'attribute'}; } $m->callback(CallbackName => 'PostColumn', Column => $colref, col => \$col); push @Columns, $colref; } $m->callback(CallbackName => 'PostProcess', Columns => \@Columns, Format => $Format); return(@Columns); rt-4.4.2/share/html/Elements/CollectionAsTable/Header0000664000175000017500000001253213131430353022321 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Class => 'RT__Ticket' @Format => undef $FormatString => undef @OrderBy => () @Order => () $Query => undef $Rows => undef $Page => undef $GenericQueryArgs => undef $maxitems => undef $AllowSorting => undef $BaseURL => undef @PassArguments => qw(Query Format Rows Page Order OrderBy) <%PERL> my $generic_query_args = $GenericQueryArgs || {map { $_ => $ARGS{$_} } @PassArguments}; # backward compatibility workaround $generic_query_args->{'Format'} = $FormatString if grep $_ eq 'Format', @PassArguments; my $item = 0; foreach my $col ( @Format ) { my $attr = $col->{'attribute'} || $col->{'last_attribute'}; my $title = $col->{'title'} || ''; if ( $title eq 'NEWLINE' ) { while ( $item < $maxitems ) { $m->out(qq{ \n}); $item++; } $item = 0; $m->out(qq{\n}); next; } elsif ( $title eq 'NBSP' ) { $item++; $m->out(qq{ \n}); next; } my $span = $col->{'span'}; $item += ($span || 1); $m->out('out(' colspan="' . $m->interp->apply_escapes($span => 'h') . '"') if $span; my $align = $col->{'align'} || do { my $tmp_columnmap = $m->comp( '/Elements/ColumnMap', Class => $Class, Name => $attr, Attr => 'align', ); ProcessColumnMapValue( $tmp_columnmap, Arguments => [ $attr ] ); }; $m->out(qq{ style="text-align: $align"}) if $align; $m->out('>'); my $loc_title; # if title is not defined then use defined attribute or last # one we saw in the format unless ( defined $col->{'title'} ) { my $tmp = $m->comp( '/Elements/ColumnMap', Class => $Class, Name => $attr, Attr => 'title', ); $title = ProcessColumnMapValue( $tmp, Arguments => [ $attr ] ); # in case title is not defined in ColumnMap # the following regex changes $attr like from "ReferredToBy" to "Referred To By" $title = join ' ', split /(?<=[a-z])(?=[A-Z])/, $attr unless defined $title; $loc_title = $attr =~ /^(?:CustomField|CF)\./ ? $title : loc($title); } else { $loc_title = loc($m->comp('/Elements/ScrubHTML', Content => $title)); } if ( $AllowSorting and $col->{'attribute'} and my $attr = $m->comp( "/Elements/ColumnMap", Class => $Class, Name => $col->{'attribute'}, Attr => 'attribute' ) ) { $attr = ProcessColumnMapValue( $attr, Arguments => [ $col->{'attribute'} ], Escape => 0 ); my $new_order = 'ASC'; $new_order = $Order[0] eq 'ASC'? 'DESC': 'ASC' if $OrderBy[0] && ($OrderBy[0] eq $attr or "$attr|$OrderBy[0]" =~ /^(Created|id)\|(Created|id)$/); $m->out( ''. $loc_title .'' ); } else { $m->out( $loc_title ); } $m->out(''); } rt-4.4.2/share/html/Elements/CollectionAsTable/Row0000664000175000017500000001206613131430353021702 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $i => undef @Format => undef $record => undef $maxitems => undef $Depth => undef $Warning => undef $ColumnMap => {} $Class => 'RT__Ticket' $Classes => '' <%init> $m->out( 'can('id') ? ' data-record-id="'.$record->id.'"' : '' ) . '>' ); $m->out( '' . "\n" ); my $item; foreach my $column (@Format) { if ( defined $column->{title} && $column->{title} eq 'NEWLINE' ) { while ( $item < $maxitems ) { $m->out(qq{ \n}); $item++; } $item = 0; $m->out( '' . "\n" ); $m->out( '' . "\n" ); next; } my $class = $column->{class} ? $m->interp->apply_escapes($column->{class}, 'h') : 'collection-as-table'; my %attrs; foreach my $attr (qw(style align)) { if ( defined $column->{ $attr } ) { $attrs{ $attr } = $column->{ $attr }; next; } # if it's not defined then use column map my $col = $column->{'attribute'} || $column->{'last_attribute'}; unless ( exists $ColumnMap->{$col}{$attr} ) { next unless $col; $ColumnMap->{$col}{$attr} = $m->comp( "/Elements/ColumnMap", Class => $Class, Name => $col, Attr => $attr, ); } $attrs{ $attr } = ProcessColumnMapValue( $ColumnMap->{$col}{$attr}, Arguments => [$record, $i], Escape => 0, ); } $attrs{colspan} = $column->{span}; $item += ($attrs{'colspan'} || 1); my @out; foreach my $subcol ( @{ $column->{output} } ) { my ($col) = ($subcol =~ /^__(.*?)__$/); unless ( $col ) { push @out, $subcol; next; } unless ( exists $ColumnMap->{$col}{'value'} ) { $ColumnMap->{$col}{'value'} = $m->comp( "/Elements/ColumnMap", Class => $Class, Name => $col, Attr => 'value' ); } push @out, ProcessColumnMapValue( $ColumnMap->{$col}{'value'}, Arguments => [$record, $i], ); } $m->callback( CallbackName => 'EachField', Record => $record, Format => \@Format, Column => $column, Classes => \$class, Align => \$attrs{align}, Style => \$attrs{style}, Colspan => \$attrs{colspan}, Out => \@out, ); $m->out(qq{out( $_ .'="'. $m->interp->apply_escapes( $attrs{$_} => 'h' ) .'"' ) foreach grep $attrs{$_}, qw(align style colspan); $m->out('>'); $m->out(@out) if @out; $m->out( '' . "\n" ); } $m->out(''); $m->out(''); rt-4.4.2/share/html/Elements/ShowCustomFields0000664000175000017500000001261613131430353021047 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( CallbackName => 'BeforeCustomFields', Object => $Object, % Grouping => $Grouping, ARGSRef => \%ARGS, CustomFields => $CustomFields, Table => $Table ); % if ($Table) { % } % while ( my $CustomField = $CustomFields->Next ) { % my $Values = $Object->CustomFieldValues( $CustomField->Id ); % my $count = $Values->Count; % next if $HideEmpty and not $count; % my @classes = ( % 'custom-field', % 'custom-field-'.$CustomField->id, % ); % push @classes, 'unset-field' if not $count; % $m->callback( CallbackName => 'ModifyFieldClasses', CustomField => $CustomField, % Object => $Object, Classes => \@classes, Grouping => $Grouping ); % $m->callback( CallbackName => 'AfterCustomFieldValue', CustomField => $CustomField, % Object => $Object, Grouping => $Grouping, Table => $Table ); % } % if ($Table) {
      <% $CustomField->Name %>: % unless ( $count ) { <&|/l&>(no value) % } elsif ( $count == 1 ) { % $print_value->( $CustomField, $Values->First ); % } else {
        % while ( my $Value = $Values->Next ) {
      • % $print_value->( $CustomField, $Value );
      • % }
      % }
      % } % $m->callback( CallbackName => 'AfterCustomFields', Object => $Object, % Grouping => $Grouping, ARGSRef => \%ARGS, Table => $Table ); <%INIT> $m->callback( %ARGS, CallbackName => 'MassageCustomFields', Object => $Object, CustomFields => $CustomFields, Table => $Table, ); $CustomFields->LimitToGrouping( $Object => $Grouping ) if defined $Grouping; # don't print anything if there is no custom fields return unless $CustomFields->First; $CustomFields->GotoFirstItem; my $print_value = sub { my ($cf, $value) = @_; my $linked = $value->LinkValueTo; if ( defined $linked && length $linked ) { my $linked = $m->interp->apply_escapes( $linked, 'h' ); $m->out(''); } my $comp = "ShowCustomField". $cf->Type; $m->callback( CallbackName => 'ShowComponentName', Name => \$comp, CustomField => $cf, Object => $Object, Table => $Table, ); if ( $m->comp_exists( $comp ) ) { $m->comp( $comp, Object => $value ); } else { $m->out( $m->interp->apply_escapes( $value->Content, 'h' ) ); } $m->out('') if defined $linked && length $linked; # This section automatically populates a div with the "IncludeContentForValue" for this custom # field if it's been defined if ( $cf->IncludeContentForValue ) { my $vid = $value->id; $m->out( '\n} ); $m->out( qq{\n} ); } }; <%ARGS> $Object => undef $CustomFields => $Object->CustomFields $Grouping => undef $Table => 1 $HideEmpty => 0 rt-4.4.2/share/html/Elements/RT__Article/0000775000175000017500000000000013131430353020003 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__Article/ColumnMap0000664000175000017500000000653213131430353021627 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP; $COLUMN_MAP = { Name => { attribute => 'Name', title => 'Name', # loc value => sub { $_[0]->Name }, }, Summary => { attribute => 'Summary', title => 'Summary', # loc value => sub { $_[0]->Summary }, }, Class => { attribute => 'Class', title => 'Class id', # loc value => sub { $_[0]->Class }, }, ClassName => { attribute => 'Class', title => 'Class', # loc value => sub { $_[0]->ClassObj->Name }, }, Topics => { title => 'Topics', # loc value => sub { my $topics = ''; my $Topics = $_[0]->Topics; while ( my $t = $Topics->Next ) { $topics .= $m->scomp( '/Articles/Elements/ShowTopic', topic => $t->TopicObj ) . '
      '; } return \$topics; }, } }; <%init> $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'Once', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/EditCustomField0000664000175000017500000001346313131430353020632 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $Type = $CustomField->Type; unless ( $Type ) { # if we can't see the type, all hell will break loose. $RT::Logger->error( "Custom field #". $CustomField->id ." has empty type" ); return; } my $Values; if ( $Object ) { $Grouping =~ s/\W//g if $Grouping; if ( $Object->Id ) { $Values = $Object->CustomFieldValues( $CustomField->id ); $Values->Columns( qw( id CustomField ObjectType ObjectId Disabled Content ContentType ContentEncoding SortOrder Creator Created LastUpdatedBy LastUpdated ) ); # Don't take care of $Values if there isn't values inside undef ( $Values ) unless ( $Values->Count ); } } my $Name; if ( !$NamePrefix ) { $Name = GetCustomFieldInputName(Object => $Object, CustomField => $CustomField, Grouping => $Grouping ); } # Always fill $Default with submited values if it's empty if ( ( !defined $Default || !length $Default ) && $DefaultsFromTopArguments ) { my %TOP = %$DECODED_ARGS; $Default = $TOP{ $Name } if $Name; # check both -Values and -Value for back compatibility if ( $NamePrefix ) { $Default //= $TOP{ $NamePrefix . $CustomField->Id . '-Values' } // $TOP{ $NamePrefix . $CustomField->Id . '-Value' }; } else { my $prefix = GetCustomFieldInputNamePrefix(Object => $Object, CustomField => $CustomField, Grouping => $Grouping ); $Default //= $TOP{ $prefix . 'Values' } // $TOP{ $prefix . 'Value' }; } } if ( (!$Object || !$Object->id) && ( !defined $Default || !length $Default ) && $CustomField->SupportDefaultValues ) { my ( $on ) = grep {$_->isa($CustomField->RecordClassFromLookupType)} $CustomField->ACLEquivalenceObjects; $Default = $CustomField->DefaultValues(Object => $on || RT->System); } my $MaxValues = $CustomField->MaxValues; if ($MaxValues == 1 && $Values) { # what exactly is this doing? Without the "unless" it breaks RTFM # transaction extraction into articles. unless ( $Default ) { if ( $Values->First ) { if ( $CustomField->Type eq 'DateTime' ) { my $date = RT::Date->new($session{CurrentUser}); $date->Set(Format => 'ISO', Value => $Values->First->Content); $Default = $date->ISO(Timezone => 'user'); } else { $Default = $Values->First->Content; } } else { $Default = ''; } } $Values->GotoFirstItem; } # The "Magic" hidden input causes RT to know that we were trying to edit the field, even if # we don't see a value later, since browsers aren't compelled to submit empty form fields $m->out("\n".''."\n"); my $EditComponent = "EditCustomField$Type"; $m->callback( %ARGS, CallbackName => 'EditComponentName', Name => \$EditComponent, CustomField => $CustomField, Object => $Object, Rows => \$Rows, Cols => \$Cols); $EditComponent = "EditCustomField$Type" unless $m->comp_exists($EditComponent); return $m->comp( $EditComponent, %ARGS, Rows => $Rows, Cols => $Cols, Default => $Default, Object => $Object, Values => $Values, MaxValues => $MaxValues, Multiple => ($MaxValues != 1), NamePrefix => $NamePrefix, CustomField => $CustomField, Name => $Name, $CustomField->BasedOn && $Name ? ( BasedOnName => GetCustomFieldInputName(Object => $Object, CustomField => $CustomField->BasedOnObj, Grouping => $Grouping) ) : (), ); <%ARGS> $Grouping => undef $Object => undef $CustomField => undef $NamePrefix => undef $Rows => 5 $Cols => 15 $Default => undef $DefaultsFromTopArguments => 1, rt-4.4.2/share/html/Elements/ShowMessageStanza0000664000175000017500000001532413131430353021212 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $plain_text_mono = RT->Config->Get( 'PlainTextMono', $session{'CurrentUser'} ); my $Depth = 0; my $object = $Transaction ? $Transaction->Object : undef; my $print_content = sub { my $ref = shift; return unless defined $$ref && length $$ref; $m->callback( content => $ref, %ARGS ); if ( $ContentType eq 'text/plain' ) { $m->comp( '/Elements/MakeClicky', content => $ref, object => $object, %ARGS ); if ( defined $$ref && !$plain_text_mono ) { $$ref =~ s{(\r?\n)}{
      }g; } } else { if ( defined $$ref ) { $$ref =~ s/^[\r\n]+//g; } } $m->out($$ref); }; $m->out( '
      ' ); if ( ref $Message ) { my @stack; my $para = ''; my $i = 0; AGAIN: foreach ( ; $i < @$Message; $i++ ) { my $stanza = $Message->[$i]; if ( ref $stanza eq "HASH" ) { # Fix message stanza nesting for Outlook's quoting styles if ( $stanza->{raw} and not $stanza->{_outlooked} and $stanza->{raw} =~ /^ # start of an internal line \s* # optional whitespace (?: -{3,} # at least three hyphens \s* # whitespace varies between Outlook versions # don't trigger on PGP signed message or signature blocks (?!(?:BEGIN|END)\s+PGP) \w # at least one word character [\w\s]{3,}? # the rest of the word(s), totalling at least 5 characters, # loose to get different languages \w # at least one ending word character \s* # whitespace varies between Outlook versions -{3,} # at least three hyphens again | _{6,} # OR: six or more underscores ) \s*$ # optional whitespace until the end of the line /xm ) { # There's content before the quoted message, but in the # same stanza. Break it out! if ( my $start = $-[0] ) { my %preceding = %$stanza; # We don't process $stanza->{text} because we don't use it # and it isn't given to us by HTML::Quoted. If we ever # need to, we can process it the same way as 'raw'. $preceding{raw} = substr($stanza->{raw}, 0, $start, ''); # Replace the current stanza with the two we just created splice @$Message, $i, 1, \%preceding, $stanza; # Try it again from the top now that we've rejiggered our # stanzas. We'll process the Outlook stanza again, and hit # the else below this time. redo; } else { # Nest the current stanza and everything that follows $stanza->{_outlooked}++; $stanza = $Message->[ $i ] = [ splice @$Message, $i ]; } } else { $para .= ( defined $stanza->{raw} ? $stanza->{raw} : '' )."\n"; } } next unless ref $stanza eq "ARRAY"; $print_content->( \$para ); $para = ''; $Depth++; push @stack, [ $Message, $i + 1 ]; ( $Message, $i ) = ( $stanza, -1 ); if ( $Depth == 1 ) { $m->comp('FoldStanzaJS'); } my @classes = ('message-stanza'); push @classes, $Depth == 1 ? 'closed' : 'open'; $m->out( '
      ' ); } if ( length $para ) { $print_content->( \$para ); $para = ''; } if (@stack) { ( $Message, $i ) = @{ pop @stack }; $Depth--; $m->out('
      '); goto AGAIN; } } else { $print_content->( \$Message ); } $m->out('
      '); <%ARGS> $Message => undef $Transaction => undef $ContentType => 'text/plain' rt-4.4.2/share/html/Elements/SelectMatch0000664000175000017500000000553613131430353020004 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Like => loc('matches') $NotLike => loc("doesn't match") $True => loc('is') $False => loc("isn't") $Default => undef <%INIT> my $TrueDefault = ''; my $FalseDefault=''; my $LikeDefault=''; my $NotLikeDefault =''; if ($Default && $Default =~ /false|!=/i) { $FalseDefault = qq[ selected="selected"]; } elsif ($Default && $Default =~ /true|=/i) { $TrueDefault = qq[ selected="selected"]; } elsif ($Default && $Default =~ /notlike|NOT LIKE/i) { $NotLikeDefault = qq[ selected="selected"]; } else { $LikeDefault = qq[ selected="selected"]; } rt-4.4.2/share/html/Elements/QueueSummaryByLifecycle0000664000175000017500000001204313131430353022354 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%perl> foreach my $lifecycle ( map $lifecycle{$_}, sort keys %lifecycle ) { my @cur_statuses = grep $lifecycle->IsValid($_), @statuses; next unless @cur_statuses; % for my $status ( @cur_statuses ) { % } <%PERL> my $i = 0; for my $queue (@queues) { next if lc($queue->{Lifecycle} || '') ne lc $lifecycle->Name; $i++; % for my $status (@cur_statuses) { % } % }
      <&|/l&>Queue<% loc($status) %>
      <% $queue->{Name} %> <% $data->{$queue->{id}}->{lc $status} || '-' %>
      % } <%INIT> my $build_search_link = sub { my ($queue_name, $extra_query) = @_; $queue_name =~ s/(['\\])/\\$1/g; #' return RT->Config->Get('WebPath') . "/Search/Results.html?Query=" . $m->interp->apply_escapes("Queue = '$queue_name' AND $extra_query", 'u'); }; my $link_all = sub { my ($queue) = @_; return $build_search_link->($queue->{Name}, "Status = '__Active__'"); }; my $link_status = sub { my ($queue, $status) = @_; $status =~ s{(['\\])}{\\$1}g; return $build_search_link->($queue->{Name}, "Status = '$status'"); }; $m->callback( CallbackName => 'LinkBuilders', build_search_link => \$build_search_link, link_all => \$link_all, link_status => \$link_status, ); my $Queues = RT::Queues->new( $session{'CurrentUser'} ); $Queues->UnLimit(); $m->callback( CallbackName => 'SQLFilter', Queues => $Queues ); my @queues = grep $queue_filter->($_), @{ $Queues->ItemsArrayRef }; $m->callback( CallbackName => 'Filter', Queues => \@queues ); @queues = map { { id => $_->Id, Name => $_->Name, Description => $_->Description || '', Lifecycle => $_->Lifecycle, } } grep $_, @queues; my %lifecycle; for my $queue (@queues) { my $cycle = RT::Lifecycle->Load( Name => $queue->{'Lifecycle'} ); $lifecycle{ lc $cycle->Name } = $cycle; } my @statuses; my %seen; foreach my $set ( 'initial', 'active' ) { foreach my $lifecycle ( map $lifecycle{$_}, sort keys %lifecycle ) { push @statuses, grep !$seen{ lc $_ }++, $lifecycle->Valid($set); } } my $data = {}; my $statuses = {}; use RT::Report::Tickets; my $report = RT::Report::Tickets->new( RT->SystemUser ); my $query = "(Status = '__Active__') AND (". join(' OR ', map "Queue = ".$_->{id}, @queues) .")"; $query = 'id < 0' unless @queues; $report->SetupGroupings( Query => $query, GroupBy => [qw(Status Queue)] ); while ( my $entry = $report->Next ) { $data->{ $entry->__Value("Queue") }->{ $entry->__Value("Status") } = $entry->__Value('id'); $statuses->{ $entry->__Value("Status") } = 1; } <%ARGS> $queue_filter => undef rt-4.4.2/share/html/Elements/SavedSearches0000664000175000017500000000607613131430353020330 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc('Saved Searches') &> % foreach my $Object (@Objects) { % my $SavedSearches = RT::SavedSearches->new($session{CurrentUser}); % $SavedSearches->LimitToPrivacy(join('-',ref($Object),$Object->Id),'Ticket'); % my $title; % if (ref $Object eq 'RT::User' && $Object->Id == $session{CurrentUser}->Id) { % $title = loc("My saved searches"); % } else { % $title = loc("[_1]'s saved searches",$Object->Name); % } % $title = $m->interp->apply_escapes($title, 'h'); <& /Elements/CollectionList, %ARGS, Class => 'RT::SavedSearch', Format => qq{'__Name__/TITLE:$title'}, Collection => $SavedSearches, PassArguments => [qw(Format Name id)], &> % } <%init> my @Objects = RT::SavedSearch->new($session{CurrentUser})->ObjectsForLoading; push @Objects, RT::System->new( $session{'CurrentUser'} ) if $session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser' ); <%ARGS> $user_attrs => undef rt-4.4.2/share/html/Elements/SelectTimeUnits0000664000175000017500000000476013131430353020667 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> $Name .= '-TimeUnits' unless $Name =~ /-TimeUnits$/io; <%ARGS> $Name => '' $Default => RT->Config->Get('DefaultTimeUnitsToHours', $session{'CurrentUser'}) ? 'hours' : 'minutes' rt-4.4.2/share/html/Elements/Section0000664000175000017500000000404713131430353017210 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}

      <%$title%>

      <%ARGS> $title => undef rt-4.4.2/share/html/Elements/ColumnMap0000664000175000017500000002370213131430353017476 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Class => 'RT__Ticket' $Name $Attr => undef <%ONCE> use Scalar::Util; # This is scary and should totally be refactored -- jesse my ($COLUMN_MAP, $WCOLUMN_MAP); $WCOLUMN_MAP = $COLUMN_MAP = { id => { attribute => 'id', title => '#', # loc align => 'right', value => sub { return $_[0]->id } }, Created => { attribute => 'Created', title => 'Created', # loc value => sub { return $_[0]->CreatedObj->AsString } }, CreatedRelative => { attribute => 'Created', title => 'Created', # loc value => sub { return $_[0]->CreatedObj->AgeAsString } }, CreatedBy => { attribute => 'Creator', title => 'Created By', # loc value => sub { return $_[0]->CreatorObj->Name } }, LastUpdated => { attribute => 'LastUpdated', title => 'Last Updated', # loc value => sub { return $_[0]->LastUpdatedObj->AsString } }, LastUpdatedRelative => { attribute => 'LastUpdated', title => 'Last Updated', # loc value => sub { return $_[0]->LastUpdatedObj->AgeAsString } }, LastUpdatedBy => { attribute => 'LastUpdatedBy', title => 'Last Updated By', # loc value => sub { return $_[0]->LastUpdatedByObj->Name } }, CustomField => { attribute => sub { return shift @_ }, title => sub { return pop @_ }, value => sub { my $self = $WCOLUMN_MAP->{CustomField}; my $cf = $self->{load}->(@_); return unless $cf->Id; return $self->{render}->( $cf, $cf->ValuesForObject($_[0])->ItemsArrayRef ); }, load => sub { # Cache the CF object on a per-request basis, to avoid # having to load it for every row my $key = join("-","CF", $_[0]->CustomFieldLookupType, $_[0]->CustomFieldLookupId, $_[-1]); my $cf = $m->notes($key); unless ($cf) { $cf = $_[0]->LoadCustomFieldByIdentifier($_[-1]); RT->Logger->debug("Unable to load $_[-1] for ".$_[0]->CustomFieldLookupType." ".$_[0]->CustomFieldLookupId) unless $cf->Id; $m->notes($key, $cf); } return $cf; }, render => sub { my ($cf, $ocfvs) = @_; my $comp = $m->comp_exists("/Elements/ShowCustomField".$cf->Type) ? "/Elements/ShowCustomField".$cf->Type : undef; my @values = map { $comp ? \($m->scomp( $comp, Object => $_ )) : $_->Content } @$ocfvs; if (@values > 1) { for my $value (splice @values) { push @values, \"
    • ", $value, \"
    • \n"; } @values = (\"
        ", @values, \"
      "); } return @values; }, }, CustomRole => { attribute => sub { return shift @_ }, title => sub { return pop @_ }, value => sub { my $object = shift; my $role_name = pop; my $role_type = do { # Cache the role object on a per-request basis, to avoid # having to load it for every row my $key = "RT::CustomRole-" . $role_name; my $role_type = $m->notes($key); if (!$role_type) { my $role_obj = RT::CustomRole->new($object->CurrentUser); $role_obj->Load($role_name); RT->Logger->notice("Unable to load custom role $role_name") unless $role_obj->Id; $role_type = $role_obj->GroupType; $m->notes($key, $role_type); } $role_type; }; return if !$role_type; return \($m->scomp("/Elements/ShowPrincipal", Object => $object->RoleGroup($role_type) ) ); }, }, CheckBox => { title => sub { my $name = $_[1] || 'SelectedTickets'; my $checked = $DECODED_ARGS->{ $name .'All' }? 'checked="checked"': ''; return \qq{}; }, value => sub { my $id = $_[0]->id; my $name = $_[2] || 'SelectedTickets'; return \qq{} if $DECODED_ARGS->{ $name . 'All'}; my $arg = $DECODED_ARGS->{ $name }; my $checked = ''; if ( $arg && ref $arg ) { $checked = 'checked="checked"' if grep $_ == $id, grep { defined and length } @$arg; } elsif ( $arg ) { $checked = 'checked="checked"' if $arg == $id; } return \qq{} }, }, RadioButton => { title => \' ', value => sub { my $id = $_[0]->id; my $name = $_[2] || 'SelectedTicket'; my $arg = $DECODED_ARGS->{ $name }; my $checked = ''; $checked = 'checked="checked"' if $arg && $arg == $id; return \qq{}; }, }, (map { my $value = RT->Config->Get($_); $_ => { value => sub { return \$value } }; } qw(WebPath WebBaseURL WebURL)), WebRequestPath => { value => sub { substr( $m->request_path, 1 ) } }, WebRequestPathDir => { value => sub { substr( $m->request_comp->dir_path, 1 ) } }, WebHomePath => { value => sub { my $path = RT->Config->Get("WebPath"); if (not $session{CurrentUser}->Privileged) { $path .= "/SelfService"; } return \$path; }, }, CurrentUser => { value => sub { $session{CurrentUser}->id } }, CurrentUserName => { value => sub { $session{CurrentUser}->Name } }, }; $COLUMN_MAP->{'CF'} = $COLUMN_MAP->{'CustomField'}; Scalar::Util::weaken($WCOLUMN_MAP); my $ROLE_MAP = {}; <%INIT> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'Once', CallbackOnce => 1 ); my $generic_with_roles; # Add in roles my $RecordClass = $Class; $RecordClass =~ s/_/:/g; if ($RecordClass->DOES("RT::Record::Role::Roles")) { unless ($ROLE_MAP->{$RecordClass}) { # UserDefined => 1 is handled by the CustomRole mapping for my $role ($RecordClass->Roles(UserDefined => 0)) { my $attrs = $RecordClass->Role($role); $ROLE_MAP->{$RecordClass}{$role} = { title => $role, attribute => $attrs->{Column} || "$role.EmailAddress", value => sub { return \($m->scomp("/Elements/ShowPrincipal", Object => $_[0]->RoleGroup($role) ) ) }, }; $ROLE_MAP->{$RecordClass}{$role . "s"} = $ROLE_MAP->{$RecordClass}{$role} unless $attrs->{Single}; } } $generic_with_roles = { %{$COLUMN_MAP}, %{$ROLE_MAP->{$RecordClass}} }; } else { $generic_with_roles = { %{$COLUMN_MAP} }; } $m->callback( COLUMN_MAP => $generic_with_roles ); # first deal with class specific things if (RT::Interface::Web->ComponentPathIsSafe($Class) and $m->comp_exists("/Elements/$Class/ColumnMap")) { my $class_map = $m->comp("/Elements/$Class/ColumnMap", Attr => $Attr, Name => $Name, GenericMap => $generic_with_roles ); return $class_map if defined $class_map; } return GetColumnMapEntry( Map => $generic_with_roles, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/RT__Class/0000775000175000017500000000000013131430353017465 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__Class/ColumnMap0000664000175000017500000000543413131430353021311 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP = { Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name() }, }, Description => { title => 'Description', # loc attribute => 'Description', value => sub { return $_[0]->Description() }, }, Disabled => { title => 'Status', # loc attribute => 'Disabled', value => sub { return $_[0]->Disabled? $_[0]->loc('Disabled'): $_[0]->loc('Enabled') }, }, }; <%INIT> $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/RT__Scrip/0000775000175000017500000000000013131430353017500 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__Scrip/ColumnMap0000664000175000017500000001475413131430353021331 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP = { Queue => { title => 'Queue', # loc value => sub { return $_[0]->loc('Global') if $_[0]->IsGlobal; return join(", ", map {$_->Name} @{$_[0]->AddedTo->ItemsArrayRef}); }, }, QueueId => { title => 'Queue', # loc value => sub { return 0 if $_[0]->IsGlobal; return join(", ", map {$_->Id} @{$_[0]->AddedTo->ItemsArrayRef}); }, }, From => { title => 'Queue', value => sub { my $request_path = $HTML::Mason::Commands::r->path_info; my $queue_id = $m->request_args->{'id'}; if ( $request_path =~ m{/Admin/Queues/Scrips\.html} and $queue_id ) { return '&From=' . $queue_id; } elsif ( $request_path =~ m{/Admin/Global/Scrips\.html} ) { return '&From=Global'; } else { return q{}; } }, }, Condition => { title => 'Condition', # loc value => sub { return $_[0]->loc( $_[0]->ScripConditionObj->Name ) }, }, Action => { title => 'Action', # loc value => sub { return $_[0]->loc( $_[0]->ScripActionObj->Name ) }, }, Template => { title => 'Template', # loc value => sub { return $_[0]->loc( $_[0]->Template ) }, }, AutoDescription => { title => 'Condition, Action and Template', # loc value => sub { return $_[0]->loc( "[_1] [_2] with template [_3]", $_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template), ) }, }, Description => { title => 'Description', # loc attribute => 'Description', value => sub { return $_[0]->Description() }, }, Disabled => { title => 'Status', # loc attribute => 'Disabled', value => sub { return $_[0]->Disabled? $_[0]->loc('Disabled'): $_[0]->loc('Enabled') }, }, RemoveCheckBox => { title => sub { my $name = 'RemoveScrip'; my $checked = $m->request_args->{ $name .'All' }? 'checked="checked"': ''; return \qq{}; }, value => sub { my $id = $_[0]->id; return '' if $_[0]->IsGlobal; my $name = 'RemoveScrip'; my $arg = $m->request_args->{ $name }; my $checked = ''; if ( $arg && ref $arg ) { $checked = 'checked="checked"' if grep $_ == $id, @$arg; } elsif ( $arg ) { $checked = 'checked="checked"' if $arg == $id; } return \qq{} }, }, Move => { title => 'Move', # loc value => sub { my $id = $_[0]->id; my $context = $_[2] || 0; return '' unless $_[0]->IsAdded( $context ); my $name = 'MoveScrip'; my $args = $m->caller_args( 1 ); my @pass = ref $args->{'PassArguments'} ? @{$args->{'PassArguments'}} : ($args->{'PassArguments'}); my %pass = map { $_ => $args->{$_} } grep exists $args->{$_}, @pass; my $uri = RT->Config->Get('WebPath') . $m->request_path; my @res = ( \' $id ), \'">', loc('[Up]'), \'', \' $id ), \'">', loc('[Down]'), \'' ); return @res; }, }, Stage => { title => 'Stage', # loc value => sub { my $os = RT::ObjectScrip->new( $_[0]->CurrentUser ); my $id = $_[0]->IsGlobal ? 0 : $_[-1]; $os->LoadByCols( Scrip => $_[0]->id, ObjectId => $id ); return $_[0]->loc( $os->FriendlyStage ); }, }, }; <%INIT> $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/ShowTransactionAttachments0000664000175000017500000002646413131430353023135 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%PERL> # Find all the attachments which have parent $Parent # For each of these attachments foreach my $message ( @{ $Attachments->{ $Parent || 0 } || [] } ) { $m->comp( 'ShowMessageHeaders', WarnUnsigned => $WarnUnsigned, Message => $message, DisplayHeaders => \@DisplayHeaders, ); my $name = defined $message->Filename && length $message->Filename ? $message->Filename : ''; my $should_render_download = $message->ContentLength || $name; $m->callback(CallbackName => 'BeforeAttachment', ARGSRef => \%ARGS, Object => $Object, Transaction => $Transaction, Attachment => $message, Name => $name, ShouldRenderDownload => \$should_render_download); if ($should_render_download) {
      % if (my $url = RT->System->ExternalStorageURLFor($message)) { % } else { % } <&|/l&>Download <% length $name ? $name : loc('(untitled)') %>\ % if ( $DownloadableHeaders && ! length $name && $message->ContentType =~ /text/ ) { / <% loc('with headers') %> % } % $m->callback(CallbackName => 'AfterDownloadLinks', ARGSRef => \%ARGS, Object => $Object, Transaction => $Transaction, Attachment => $message);
      <% $message->ContentType %> <% $message->FriendlyContentLength %>
      % } %# If there is sub-messages, open a dedicated div % if ( $Attachments->{ $message->id } ) {
      % } else {
      % } <%PERL> $render_attachment->( $message ); $m->comp( $m->current_comp, %ARGS, Parent => $message->id, ParentObj => $message, displayed_inline => $displayed_inline, );
      % } <%ARGS> $Transaction $Object => $Transaction->Object $ShowHeaders => 0 $DownloadableHeaders => 1 $AttachmentPath => undef $Attachments => {} $AttachmentContent => {} $Parent => 0 $ParentObj => undef $WarnUnsigned => 0 # Keep track of CID images we display inline $displayed_inline => {} <%INIT> my @DisplayHeaders=qw(_all); if ( $Transaction->Type =~ /EmailRecord$/ ) { @DisplayHeaders = qw(To Cc Bcc); } # If the transaction has anything attached to it at all elsif (!$ShowHeaders) { @DisplayHeaders = qw(To From RT-Send-Cc Cc Bcc RT-Attach Date Subject); push @DisplayHeaders, 'RT-Send-Bcc' if RT->Config->Get('ShowBccHeader'); } $m->callback(CallbackName => 'MassageDisplayHeaders', DisplayHeaders => \@DisplayHeaders, Transaction => $Transaction, ShowHeaders => $ShowHeaders); my $render_attachment = sub { my $message = shift; my $name = defined $message->Filename && length $message->Filename ? $message->Filename : ''; my $content_type = lc $message->ContentType; # if it has a content-disposition: attachment, don't show inline my $disposition = $message->GetHeader('Content-Disposition'); if ( $disposition && $disposition =~ /^\s*attachment/i ) { $disposition = 'attachment'; } else { $disposition = 'inline'; } # If it's text if ( $content_type =~ m{^(text|message)/} ) { my $max_size = RT->Config->Get( 'MaxInlineBody', $session{'CurrentUser'} ); if ( $disposition ne 'inline' ) { $m->out('

      '. loc( 'Message body is not shown because sender requested not to inline it.' ) .'

      '); return; } elsif ( length $name && RT->Config->Get('SuppressInlineTextFiles', $session{'CurrentUser'} ) ) { $m->out('

      '. loc( 'Text file is not shown because it is disabled in preferences.' ) .'

      '); return; } elsif ( $max_size && $message->ContentLength > $max_size ) { $m->out('

      '. loc( 'Message body is not shown because it is too large.' ) .'

      '); return; } if ( # it's a toplevel object !$ParentObj # or its parent isn't a multipart alternative || ( $ParentObj->ContentType !~ m{^multipart/(?:alternative|related)$}i ) # or it's of our prefered alterative type || ( ( RT->Config->Get('PreferRichText', $session{CurrentUser}) && ( $content_type =~ m{^text/(?:html|enriched)$} ) ) || ( !RT->Config->Get('PreferRichText', $session{CurrentUser}) && ( $content_type !~ m{^text/(?:html|enriched)$} ) ) ) ) { my $content; # If we've cached the content, use it from there if (my $x = $AttachmentContent->{ $Transaction->id }->{$message->id}) { $content = $x->Content; } else { $content = $message->Content; } $RT::Logger->debug( "Rendering attachment #". $message->id ." of '$content_type' type" ); # if it's a text/html clean the body and show it if ( $content_type eq 'text/html' ) { $content = $m->comp( '/Elements/ScrubHTML', Content => $content ); if (RT->Config->Get('ShowTransactionImages')) { my @rewritten = RT::Interface::Web::RewriteInlineImages( Content => \$content, Attachment => $message, # Not technically correct to search all parts of the # MIME structure, but it saves having to go to the # database again and is unlikely to break display. Related => [ map { @$_ } values %$Attachments ], AttachmentPath => $AttachmentPath, ); $displayed_inline->{$_}++ for @rewritten; } $m->comp( '/Elements/MakeClicky', content => \$content, html => 1, object => $Object, ); if ( !length $name && RT->Config->Get( 'QuoteFolding', $session{CurrentUser} ) ) { eval { require HTML::Quoted; $content = HTML::Quoted->extract($content) }; if ($@) { RT->Logger->error( "HTML::Quoted couldn't process attachment #@{[$message->id]}: $@." . " This is a bug, please report it to rt-bugs\@bestpractical.com."); } } $m->comp( 'ShowMessageStanza', Message => $content, Transaction => $Transaction, ContentType => 'text/html', ); } elsif ( $content_type eq 'text/enriched' ) { $content = $m->comp( '/Elements/ScrubHTML', Content => $content ); $m->out( $content ); } # It's a text type we don't have special handling for else { if ( !length $name && RT->Config->Get( 'QuoteFolding', $session{CurrentUser} ) ) { eval { require Text::Quoted; Text::Quoted::set_quote_characters(undef); $content = Text::Quoted::extract($content); }; if ($@) { RT->Logger->error( "Text::Quoted couldn't process attachment #@{[$message->id]}: $@." . " This is a bug, please report it to rt-bugs\@bestpractical.com."); } } $m->comp( 'ShowMessageStanza', Message => $content, Transaction => $Transaction, ContentType => 'text/plain', ); } } } # if it's an image, show it as an image elsif ( $content_type =~ m{^image/} ) { if (not RT->Config->Get('ShowTransactionImages')) { $m->out('

      '. loc( 'Image not shown because display is disabled in system configuration.' ) .'

      '); return; } elsif ( $displayed_inline->{$message->Id} ) { $m->out('

      '. loc( 'Image displayed inline above' ) .'

      '); return; } elsif ( $disposition ne 'inline' ) { $m->out('

      '. loc( 'Image not shown because sender requested not to inline it.' ) .'

      '); return; } my $filename = length $name ? $name : loc('(untitled)'); my $efilename = $m->interp->apply_escapes( $filename, 'h' ); my $url = RT->System->ExternalStorageURLFor($message) || $AttachmentPath .'/'. $Transaction->Id .'/'. $message->Id .'/' . $m->interp->apply_escapes( $filename, 'u', 'h' ); $m->out( qq{$efilename} ); } elsif ( $message->ContentLength && $message->ContentLength > 0 ) { $m->out( '

      ' . loc( 'Message body not shown because it is not plain text.' ) . '

      ' ); } }; rt-4.4.2/share/html/Elements/TSVExport0000664000175000017500000001013413131430353017454 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Class => undef $Collection $Format $PreserveNewLines => 0 <%ONCE> my $no_html = HTML::Scrubber->new( deny => '*' ); <%INIT> require HTML::Entities; $Class ||= $Collection->ColumnMapClassName; $r->content_type('application/vnd.ms-excel'); my $DisplayFormat = $m->comp('/Elements/ScrubHTML', Content => $Format); my @Format = $m->comp('/Elements/CollectionAsTable/ParseFormat', Format => $DisplayFormat); my @columns; my $should_loc = { map { $_ => 1 } qw(Status) }; my $col_entry = sub { my $col = shift; # in tsv output, "#" is often a comment character but we use it for "id" delete $col->{title} if $col->{title} and $col->{title} =~ /^\s*#\s*$/; return { header => loc($col->{title} || $col->{attribute}), map => $m->comp( "/Elements/ColumnMap", Name => $col->{attribute}, Attr => 'value', Class => $Class, ), should_loc => $should_loc->{$col->{attribute}}, } }; if ($PreserveNewLines) { my $col = []; push @columns, $col; for (@Format) { if ($_->{title} eq 'NEWLINE') { $col = []; push @columns, $col; } else { push @$col, $col_entry->($_); } } } else { push @columns, [map { $_->{attribute} ? $col_entry->($_) : () } @Format]; } for (@columns) { $m->out(join("\t", map { $_->{header} } @$_)."\n"); } my $i = 0; my $ii = 0; while (my $row = $Collection->Next) { for my $col (@columns) { $m->out(join("\t", map { my $val = ProcessColumnMapValue($_->{map}, Arguments => [$row, $ii++], Escape => 0); $val = loc($val) if $_->{should_loc}; # remove tabs from all field values, they screw up the tsv $val = '' unless defined $val; $val =~ s/(?:\n|\r)+/ /g; $val =~ s{\t}{ }g; $val = $no_html->scrub($val); $val = HTML::Entities::decode_entities($val); $val; } @$col)."\n"); } $m->flush_buffer unless ++$i % 10; } $m->abort(); rt-4.4.2/share/html/Elements/CollectionListPaging0000664000175000017500000000660113131430353021657 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $BaseURL => undef $Rows => undef $TotalFound => undef $CurrentPage => undef $Pages => undef $URLParams => undef <%INIT> $BaseURL = $m->interp->apply_escapes($BaseURL, 'h'); $m->out(qq{
      }); if ($Pages == 1) { $m->out(loc('Page 1 of 1')); } else{ $m->out(loc('Page') . ' '); use Data::Page; use Data::Page::Pageset; my $pager = Data::Page->new($TotalFound, $Rows, $CurrentPage); my $pageset = Data::Page::Pageset->new($pager); for my $chunk ( $pageset->total_pagesets ) { $m->out(qq{}); if ( $chunk->is_current ) { for my $number ( $chunk->first .. $chunk->last ) { if ( $number == $CurrentPage ) { $m->out(qq{$number }); } else { my $qs = $m->interp->apply_escapes( $m->comp('/Elements/QueryString', %$URLParams, Page => $number ), 'h', ); $m->out(qq{$number }); } } } else { my $qs = $m->interp->apply_escapes( $m->comp('/Elements/QueryString', %$URLParams, Page => $chunk->first, ), 'h', ); $m->out(qq{$chunk}); } $m->out(qq{}); } } $m->out(qq{
      }); rt-4.4.2/share/html/Elements/SelectObject0000664000175000017500000001175213131430353020153 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($Lite) { % my $d = $ObjectType->new($session{'CurrentUser'}); % $d->Load($Default); % } % else { % } <%args> $ObjectType $CheckRight => undef $ShowNullOption => 1 $ShowAll => 1 $Name => undef $Verbose => undef $NamedValues => 0 $DefaultLabel => "-" $Default => 0 $Lite => 0 $OnChange => undef $Multiple => 0 $Size => 6 $Class => "" $CacheNeedsUpdate => undef <%init> $ObjectType = "RT::$ObjectType" unless $ObjectType =~ /::/; $Class ||= "select-" . CSSClass("\L$1") if $ObjectType =~ /RT::(.+)$/; my $cache_key = join "---", "SelectObject", $ObjectType, $session{'CurrentUser'}->Id, $CheckRight || "", $ShowAll; if ( defined $session{$cache_key} && ref $session{$cache_key} eq 'ARRAY') { delete $session{$cache_key}; } if ( defined $session{$cache_key} && defined $CacheNeedsUpdate && $session{$cache_key}{lastupdated} <= $CacheNeedsUpdate ) { delete $session{$cache_key}; } if ( not defined $session{$cache_key} and not $Lite ) { my $collection = "${ObjectType}s"->new($session{'CurrentUser'}); $collection->UnLimit; $m->callback( CallbackName => 'ModifyCollection', ARGSRef => \%ARGS, Collection => $collection, ObjectType => $ObjectType ); if ( $Default ) { my $object = $ObjectType->new($session{'CurrentUser'}); $object->Load( $Default ); unless ( $ShowAll or not $CheckRight or $session{CurrentUser}->HasRight( Object => $object, Right => $CheckRight ) ) { if ( $object->id ) { push @{$session{$cache_key}{objects}}, { Id => $object->id, Name => '#' . $object->id, Description => '#' . $object->id, }; } } } while (my $object = $collection->Next) { if ($ShowAll or not $CheckRight or $session{CurrentUser}->HasRight( Object => $object, Right => $CheckRight )) { push @{$session{$cache_key}{objects}}, { Id => $object->Id, Name => $object->Name, Description => $object->_Accessible("Description" => "read") ? $object->Description : undef, }; } } $session{$cache_key}{lastupdated} = time(); } rt-4.4.2/share/html/Elements/RT__ScripCondition/0000775000175000017500000000000013131430353021347 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__ScripCondition/ColumnMap0000664000175000017500000000640713131430353023174 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP = { id => { title => '#', # loc attribute => 'id', align => 'right', value => sub { return $_[0]->id }, }, Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name() }, }, Description => { title => 'Description', # loc attribute => 'Description', value => sub { return $_[0]->Description() }, }, UsedBy => { title => 'Used by scrips', # loc value => sub { my @res; my $scrips = $_[0]->UsedBy; while ( my $scrip = $scrips->Next ) { push @res, ', ' if @res; push @res, \'', $scrip->id, \''; } return @res; }, }, }; <%INIT> $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/CollectionList0000664000175000017500000001553513131430353020537 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> if (!$Collection && $Class eq 'RT::Tickets') { $Collection = RT::Tickets->new( $session{'CurrentUser'} ); $Collection->FromSQL($Query); } # flip HasResults from undef to 0 to indicate there was a search, so # dashboard mail can be suppressed if there are no results $$HasResults = 0 if $HasResults && !defined($$HasResults); $TotalFound = $Collection->CountAll() unless defined $TotalFound; return '' if !$TotalFound && !$ShowEmpty; if ( $Rows ) { if ( $TotalFound <= $Rows ) { $Page = 1; } else { my $MaxPage = int( $TotalFound / $Rows ) + ( $TotalFound % $Rows ? 1 : 0 ); $Page = $MaxPage if $Page > $MaxPage; } } # XXX: ->{'order_by'} is hacky, but there is no way to check if # collection is ordered or not if ( @OrderBy && ($AllowSorting || $PreferOrderBy || !$Collection->{'order_by'}) ) { if ( $OrderBy[0] =~ /\|/ ) { @OrderBy = split /\|/, $OrderBy[0]; @Order = split /\|/,$Order[0]; } @OrderBy = grep length, @OrderBy; $Collection->OrderByCols( map { { FIELD => $OrderBy[$_], ORDER => $Order[$_] } } ( 0 .. $#OrderBy ) ); } $Collection->RowsPerPage( $Rows ) if $Rows; $Page = 1 unless $Page && $Page > 0; # workaround problems with $Page = '' or undef $Collection->GotoPage( $Page - 1 ); # SB uses page 0 as the first page # DisplayFormat lets us use a "temporary" format for display, while # still using our original format for next/prev page links. # bulk update uses this feature to add checkboxes $DisplayFormat ||= $Format; # Scrub the html of the format string to remove any potential nasties. $Format = $m->comp('/Elements/ScrubHTML', Content => $Format); $DisplayFormat = $m->comp('/Elements/ScrubHTML', Content => $DisplayFormat); my @Format = $m->comp('/Elements/CollectionAsTable/ParseFormat', Format => $DisplayFormat); # Find the maximum number of items in any row, so we can pad the table. my ($maxitems, $item) = (0, 0); foreach my $col (@Format) { $item++; if ( $col->{title} && ($col->{title} eq 'NEWLINE') ) { $item = 0; } else { $maxitems = $item if $item > $maxitems; } } $Class ||= $Collection->ColumnMapClassName; if ($Class =~ /::/) { # older passed in value $Class =~ s/s$//; $Class =~ s/:/_/g; } $m->out(''); if ( $ShowHeader ) { $m->comp('/Elements/CollectionAsTable/Header', %ARGS, Class => $Class, Format => \@Format, FormatString => $Format, Order => \@Order, OrderBy => \@OrderBy, Rows => $Rows, Page => $Page, AllowSorting => $AllowSorting, BaseURL => $BaseURL, GenericQueryArgs => $GenericQueryArgs, maxitems => $maxitems, PassArguments => \@PassArguments, ); } my ($i, $column_map) = (0, {}); while ( my $record = $Collection->Next ) { # Every ten rows, flush the buffer and put something on the page. $m->flush_buffer unless ++$i % 10; my $warning = 0; my $Classes = ''; $m->callback( CallbackName => 'EachRow', Record => $record, Warning => \$warning, Classes => \$Classes, Format => \@Format, ); $m->comp('/Elements/CollectionAsTable/Row', i => $i, Format => \@Format, record => $record, maxitems => $maxitems, ColumnMap => $column_map, Class => $Class, Warning => $warning, Classes => $Classes, ); $$HasResults++ if $HasResults; } $m->out('
      '); if ( $Rows && $ShowNavigation && $TotalFound > $Rows ) { my $oddRows = ($TotalFound && $TotalFound % $Rows == 0 )? 0 : 1; my $pages = int( $TotalFound / $Rows ) + $oddRows; $pages = 1 if $pages < 1; my %query_args = map { $_ => $ARGS{$_} } @PassArguments; $m->comp( '/Elements/CollectionListPaging', BaseURL => $BaseURL, Rows => $Rows, TotalFound => $TotalFound, CurrentPage => $Page, Pages => $pages, URLParams => \%query_args ); } <%ARGS> $Class => '' $Collection => undef $TotalFound => undef $Format => undef $DisplayFormat => undef @Order => () @OrderBy => () $GenericQueryArgs => undef $Rows => undef $Page => 1 $Title => loc('Ticket Search') $BaseURL => RT->Config->Get('WebPath') . $m->request_comp->path .'?' @PassArguments => qw( Query Format Rows Page Order OrderBy) $AllowSorting => 0 # Make headers in table links that will resort results $PreferOrderBy => 0 # Prefer the passed-in @OrderBy to the collection default $ShowNavigation => 1 $ShowHeader => 1 $ShowEmpty => 0 $Query => 0 $HasResults => undef rt-4.4.2/share/html/Elements/EditCustomFieldDate0000664000175000017500000000475113131430353021430 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $name = $Name || $NamePrefix.$CustomField->Id.'-Values'; <& /Elements/SelectDate, Name => $name, Default => $Default, current => 0, ShowTime => 0 &> (<%$DateObj->AsString(Time => 0, Timezone => 'utc')%>) <%INIT> my $DateObj = RT::Date->new ( $session{'CurrentUser'} ); $DateObj->Set( Format => 'unknown', Value => $Default, Timezone => 'utc' ); <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Default => undef $Values => undef $MaxValues => 1 $Name => undef rt-4.4.2/share/html/Elements/MyAssets0000664000175000017500000000425613131430353017356 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /User/Elements/AssetList, User => $session{'CurrentUser'}->UserObj, Roles => [qw(HeldBy)], Title => loc('My Assets'), HasResults => $HasResults &> <%ARGS> $HasResults => undef rt-4.4.2/share/html/Elements/SelectOwnerDropdown0000664000175000017500000001103113131430353021542 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my %user_uniq_hash; my $isSU = $session{CurrentUser} ->HasRight( Right => 'SuperUser', Object => $RT::System ); foreach my $object (@$Objects) { my $Users = RT::Users->new( $session{CurrentUser} ); $Users->LimitToPrivileged; $Users->WhoHaveRight( Right => 'OwnTicket', Object => $object, IncludeSystemRights => 1, IncludeSuperusers => $isSU ); while ( my $User = $Users->Next() ) { $user_uniq_hash{ $User->Id() } = $User; } } my $dropdown_limit = 50; $m->callback( CallbackName => 'ModifyDropdownLimit', DropdownLimit => \$dropdown_limit ); if (keys(%user_uniq_hash) > $dropdown_limit ) { if ($Objects->[0]->id) { my $desc = $Objects->[0]->RecordType." ".$Objects->[0]->id; RT->Logger->notice("More than $dropdown_limit possible Owners found for $desc; switching to autocompleter. See the \$AutocompleteOwners configuration option"); } $m->comp("/Elements/SelectOwnerAutocomplete", %ARGS); return; } $m->callback( CallbackName => 'ModifyOwnerListRaw', ARGSRef => \%ARGS, UserHashRef => \%user_uniq_hash, DefaultRef => \$Default, Objects => $Objects ); if ($Default && $Default != RT->Nobody->id && !$user_uniq_hash{$Default}) { $user_uniq_hash{$Default} = RT::User->new($session{CurrentUser}); $user_uniq_hash{$Default}->Load($Default); } $Default = 0 unless defined $Default && $Default =~ /^\d+$/; my @formatednames = sort {lc $a->[1] cmp lc $b->[1]} map {[$_, $_->Format]} grep { $_->id != RT->Nobody->id } values %user_uniq_hash; my $nobody_user = RT::User->new( $session{CurrentUser} ); $nobody_user->Load( RT->Nobody->id ); my $nobody = [$nobody_user, $nobody_user->Format]; unshift @formatednames, $nobody; $m->callback( CallbackName => 'ModifyOwnerListSorted', ARGSRef => \%ARGS, NamesRef => \@formatednames, DefaultRef => \$Default, Objects => $Objects ); <%ARGS> $Name => undef $Objects => [] $Default => 0 $DefaultValue => 1 $DefaultLabel => "-" $ValueAttribute => 'id' rt-4.4.2/share/html/Elements/ShowUserEmailFrequency0000664000175000017500000000423113131430353022210 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} (<% loc($frequency) %>) <%INIT> my $frequency = $User->EmailFrequency( Ticket => $Ticket ); return unless $frequency; <%ARGS> $User $Ticket => undef rt-4.4.2/share/html/Elements/SelectNewTicketQueue0000664000175000017500000000502413131430353021642 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $queue = delete $ARGS{Default}; if ( !$queue ) { $queue = RT->Config->Get("DefaultQueue", $session{'CurrentUser'}); if (RT->Config->Get("RememberDefaultQueue", $session{'CurrentUser'})) { if (my $session_default = $session{'DefaultQueue'}) { $queue = $session_default; } } } $m->callback(Queue => \$queue, CallbackName => 'DefaultQueue'); rt-4.4.2/share/html/Elements/QueriesAsComment0000664000175000017500000000453613131430353021033 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> return unless RT->Config->Get('StatementLog') && $session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser'); rt-4.4.2/share/html/Elements/FindAsset0000664000175000017500000000433113131430353017460 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc('Find an asset') &>
      rt-4.4.2/share/html/Elements/ShowCustomFieldImage0000664000175000017500000000454213131430353021626 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <% $Object->Content %>
      <%ARGS> $Object <%INIT> my $url = RT->System->ExternalStorageURLFor($Object) || RT->Config->Get('WebPath') . "/Download/CustomFieldValue/".$Object->Id.'/'.$m->interp->apply_escapes($Object->Content, 'u'); rt-4.4.2/share/html/Elements/RT__CustomField/0000775000175000017500000000000013131430353020636 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__CustomField/ColumnMap0000664000175000017500000001401613131430353022456 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP = { Disabled => { title => 'Status', # loc attribute => 'Disabled', value => sub { return $_[0]->Disabled? $_[0]->loc('Disabled'): $_[0]->loc('Enabled') }, }, map( { my $c = $_; $c => { title => $c, attribute => $c, value => sub { return $_[0]->$c() }, } } qw(Name Description Type LookupType Pattern EntryHint) ), map( { my $c = $_; my $short = $c; $short =~ s/^Friendly//; $c => { title => $short, attribute => $short, value => sub { return $_[0]->$c() }, } } qw(FriendlyLookupType FriendlyType FriendlyPattern) ), MaxValues => { title => 'MaxValues', # loc attribute => 'MaxValues', value => sub { my $v = $_[0]->MaxValues; return !$v ? $_[0]->loc('unlimited') : $v == 0 ? $_[0]->loc('one') : $v; }, }, AddedTo => { title => 'Added', # loc value => sub { if ( $_[0]->IsGlobal ) { return $_[0]->loc('Global'); } my $collection = $_[0]->AddedTo; return '' unless $collection; $collection->RowsPerPage(10); my $found = 0; my $res = ''; while ( my $record = $collection->Next ) { $res .= ', ' if $res; my $id = ''; $id = $record->Name if $record->_Accessible('Name','read'); $id ||= "#". $record->id; $res .= $id; $found++; } $res .= ', ...' if $found >= 10; return $res; }, }, RemoveCheckBox => { title => sub { my $name = 'RemoveCustomField'; my $checked = $DECODED_ARGS->{ $name .'All' }? 'checked="checked"': ''; return \qq{}; }, value => sub { my $id = $_[0]->id; return '' if $_[0]->IsGlobal; my $name = 'RemoveCustomField'; my $arg = $DECODED_ARGS->{ $name }; my $checked = ''; if ( $arg && ref $arg ) { $checked = 'checked="checked"' if grep $_ == $id, @$arg; } elsif ( $arg ) { $checked = 'checked="checked"' if $arg == $id; } return \qq{} }, }, MoveCF => { title => 'Move', value => sub { my $id = $_[0]->id; my $context = $_[2] || 0; return '' unless $_[0]->IsAdded( $context ); my $name = 'MoveCustomField'; my $args = $m->caller_args( 1 ); my @pass = ref $args->{'PassArguments'} ? @{$args->{'PassArguments'}} : ($args->{'PassArguments'}); my %pass = map { $_ => $args->{$_} } grep exists $args->{$_}, @pass; my $uri = RT->Config->Get('WebPath') . $m->request_path; my @res = ( \' $id ), \'">', loc('~[Up~]'), \'', \' $id ), \'">', loc('~[Down~]'), \'' ); return @res; }, }, }; $COLUMN_MAP->{'AppliedTo'} = $COLUMN_MAP->{'AddedTo'}; <%INIT> $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/SetupSessionCookie0000664000175000017500000000426113131430353021400 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> return if $m->is_subrequest; # avoid reentrancy, as suggested by masonbook RT::Interface::Web::LoadSessionFromCookie(); return (); <%ARGS> $SessionCookie => undef rt-4.4.2/share/html/Elements/QuickCreate0000664000175000017500000000732013131430353020001 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      <&| /Widgets/TitleBox, title => loc('Quick ticket creation') &>
      callback(CallbackName => 'InFormElement'); >
      <&|/l&>Subject:
      <&|/l&>Queue:<& /Elements/SelectNewTicketQueue, Name => 'Queue', Default => $args->{Queue} &> <&|/l&>Owner:
      <&|/l&>Requestors: <& /Elements/EmailInput, Name => 'Requestors', Size => '40', Default => $args->{Requestors} || $session{CurrentUser}->EmailAddress, AutocompleteMultiple => 1 &>
      <&|/l&>Content:
      <& /Elements/Submit, Label => loc('Create') &>
      <%INIT> my $args = delete $session{QuickCreate} || {}; rt-4.4.2/share/html/Elements/ScrubHTML0000664000175000017500000000410213131430353017337 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> return ScrubHTML($Content); <%args> $Content => undef rt-4.4.2/share/html/Elements/SelectCustomFieldOperator0000664000175000017500000000464313131430353022700 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef @Options => ( loc('matches'), loc("doesn't match"), loc('is'), loc("isn't"), loc('less than'), loc('greater than')) @Values => ('LIKE', 'NOT LIKE', '=', '!=', '<', '>') $Default => '' rt-4.4.2/share/html/Elements/SelectGroups0000664000175000017500000000536713131430353020231 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/SelectMatch, Name => 'GroupOp', Default => $GroupOp &> <%INIT> my $CFs = RT::CustomFields->new($session{'CurrentUser'}); $CFs->LimitToChildType('RT::Group'); $CFs->OrderBy( FIELD => 'Name' ); <%ARGS> $GroupField => '' $GroupOp => '' $GroupString => '' rt-4.4.2/share/html/Elements/RT__Asset/0000775000175000017500000000000013131430353017477 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__Asset/ColumnMap0000664000175000017500000001063213131430353021317 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Attr => undef <%ONCE> my $linkUsers; $linkUsers = sub { my ($what, $more) = @_; if ($what->isa("RT::Group")) { # Link the users (non-recursively) my @ret = map {$linkUsers->($_->[1], $more), ", "} sort {$a->[0] cmp $b->[0]} map {+[($_->EmailAddress||''), $_]} @{ $what->UserMembersObj( Recursively => 0 )->ItemsArrayRef }; # But don't link the groups push @ret, map {+("Group: $_", ",")} sort map {$_->Name} @{ $what->GroupMembersObj( Recursively => 0)->ItemsArrayRef }; pop @ret; # Remove ending ", " return @ret; } else { my @ret = \($m->scomp("/Elements/ShowUser", User => $what)); push @ret, $more->($what) if $more; return @ret; } }; my $COLUMN_MAP = { Name => { attribute => 'Name', title => 'Name', value => sub { $_[0]->Name }, }, Description => { attribute => 'Description', title => 'Description', value => sub { $_[0]->Description }, }, Catalog => { attribute => 'Catalog', title => 'Catalog', # loc value => sub { $_[0]->CatalogObj->Name }, }, Status => { title => 'Status', attribute => 'Status', value => sub { loc($_[0]->Status) } }, ActiveTickets => { title => 'Active tickets', # loc value => sub { my $Asset = shift; my $Query = "RefersTo = 'asset:" . $Asset->id . "' AND Status = '__Active__'"; my $SearchURL = RT->Config->Get('WebPath') . '/Search/Results.html?' . $m->comp('/Elements/QueryString', Query => $Query); return \'[ Active ]'; } }, InactiveTickets => { title => 'Inactive tickets', # loc value => sub { my $Asset = shift; my $Query = "RefersTo = 'asset:" . $Asset->id . "' AND Status = '__Inactive__'"; my $SearchURL = RT->Config->Get('WebPath') . '/Search/Results.html?' . $m->comp('/Elements/QueryString', Query => $Query); return \'[ Inactive ]'; } }, }; <%init> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'Once', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/ShowMessageHeaders0000664000175000017500000001010213131430353021312 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( @headers ) { % foreach my $header (@headers) { % }
      <% $header->{'Tag'} %>: <% $header->{'Value'} | n %>
      % $m->callback( CallbackName => 'AfterHeaders', message => $Message ); % } <%INIT> my @headers; foreach my $field( RT->Config->Get('ShowBccHeader')? $Message->_SplitHeaders : $Message->SplitHeaders ) { my ($tag, $value) = split /:/, $field, 2; next unless $tag && $value; push @headers, { Tag => $tag, Value => $value }; } my %display_headers = map { lc($_) => 1 } @DisplayHeaders; $m->callback( message => $Message, headers => \@headers, display_headers => \%display_headers, ); unless ( $display_headers{'_all'} ) { @headers = grep $display_headers{ lc $_->{'Tag'} }, @headers; } my $object = $Message->TransactionObj->Object; foreach my $f (@headers) { $m->comp('/Elements/MakeClicky', content => \$f->{'Value'}, object => $object, %ARGS); if ($f->{'Tag'} eq 'RT-Attach') { $f->{'Value'} =~ s/(?:^\s*|\s*$)//g; # Blat in the filename and linkify my $att = RT::Attachment->new( $session{'CurrentUser'} ); $att->Load($f->{'Value'}); next unless $att->Id and $att->TransactionObj->CurrentUserCanSee; $f->{'Value'} = sprintf '%s', RT->Config->Get('WebPath'), $att->TransactionObj->Id, $att->Id, $m->interp->apply_escapes($att->Filename, qw(u h)), $m->interp->apply_escapes($att->Filename, 'h'); } } unshift @headers, $m->comp( 'CryptStatus', Message => $Message, WarnUnsigned => $WarnUnsigned ); $m->callback( CallbackName => 'BeforeLocalization', headers => \@headers, ); if ( $Localize ) { $_->{'Tag'} = loc($_->{'Tag'}) foreach @headers; } <%ARGS> $WarnUnsigned => 0 $Message => undef $Localize => 1 @DisplayHeaders => ('_all') rt-4.4.2/share/html/Elements/RT__Queue/0000775000175000017500000000000013131430353017504 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__Queue/ColumnMap0000664000175000017500000001105413131430353021323 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP = { Disabled => { title => 'Status', # loc attribute => 'Disabled', value => sub { return $_[0]->Disabled? $_[0]->loc('Disabled'): $_[0]->loc('Enabled') }, }, InitialPriority => { title => 'InitialPriority', # loc value => sub { $_[0]->DefaultValue('InitialPriority') || '' }, }, FinalPriority => { title => 'FinalPriority', # loc value => sub { $_[0]->DefaultValue('FinalPriority') || '' }, }, Priority => { title => 'Priority', # loc value => sub { return join '-', $_[0]->DefaultValue('InitialPriority') || '', $_[0]->DefaultValue('FinalPriority') || '' }, }, DefaultDueIn => { title => 'DefaultDueIn', # loc value => sub { return $_[0]->DefaultValue('Due') || '' }, }, DefaultStarts => { title => 'DefaultStarts', # loc value => sub { return $_[0]->DefaultValue('Starts') || '' }, }, Address => { title => 'Address', # loc value => sub { return ($_[0]->CorrespondAddress||'-') .'/'. ($_[0]->CommentAddress||'-') }, }, # SubjectTag is special as we can not sort SubjectTag => { title => 'SubjectTag', # loc attribute => 'SubjectTag', value => sub { return $_[0]->SubjectTag }, }, Sign => { title => 'Sign', # loc value => sub { return $_[0]->Sign? $_[0]->loc('yes') : $_[0]->loc('no') }, }, Encrypt => { title => 'Encrypt', # loc value => sub { return $_[0]->Encrypt? $_[0]->loc('yes') : $_[0]->loc('no') }, }, Lifecycle => { title => 'Lifecycle', attribute => 'Lifecycle', value => sub { return $_[0]->Lifecycle }, }, ScripStage => { title => 'Stage', # loc value => sub { my $os = RT::ObjectScrip->new( $_[0]->CurrentUser ); $os->LoadByCols( Scrip => $_[-1], ObjectId => $_[0]->id ); return $_[0]->loc( $os->FriendlyStage ); }, }, }; foreach my $field (qw( Name Description CorrespondAddress CommentAddress SortOrder )) { $COLUMN_MAP->{$field} = { title => $field, attribute => $field, value => sub { return $_[0]->$field() }, }, } <%INIT> $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/ValidateCustomFields0000664000175000017500000001205613131430353021656 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my ($valid, @res) = (1, ()); $CustomFields->GotoFirstItem; my $CFArgs = _ParseObjectCustomFieldArgs( $ARGSRef )->{ref($Object)}{$Object->Id || 0} || {}; while ( my $CF = $CustomFields->Next ) { my $submitted = $CFArgs->{$CF->Id}; # Pick the first grouping $submitted = $submitted ? $submitted->{(keys %$submitted)[0]} : {}; # If we don't have a value and we don't see the Magic, then we're not # submitting a field. next if not $ValidateUnsubmitted and not exists $submitted->{"Value"} and not exists $submitted->{"Upload"} and not exists $submitted->{"Values"} and not $submitted->{"Values-Magic"}; # We only validate Single Combos -- multis can never be user input next if $submitted->{"Values-Magic"} and exists $submitted->{"Values"} and ref $submitted->{"Values"}; $m->notes(('Field-' . $CF->Id) => $submitted->{Values} // $submitted->{Value}); my @values = _NormalizeObjectCustomFieldValue( CustomField => $CF, Value => ($submitted->{Values} // $submitted->{Value} // $submitted->{Upload}), ); if ($CF->Type =~ /^Date(?:Time)?$/) { @values = grep { my $DateObj = RT::Date->new ( $session{'CurrentUser'} ); $DateObj->Set( Format => 'unknown', Value => $_, ($CF->Type eq "Date" ? (Timezone => 'utc') : ()) ); $DateObj->IsSet } @values; } push @values, '' unless @values; for my $value( @values ) { if ($value) { my $ref = { Content => $value }; my ($ok, $msg) = $CF->_CanonicalizeValue( $ref ); unless ($ok) { $m->notes( ( 'InvalidField-' . $CF->Id ) => $msg ); push @res, $CF->Name .': '. $msg; $valid = 0; } } if (!$CF->MatchPattern($value)) { my $msg = loc("Input must match [_1]", $CF->FriendlyPattern); $m->notes( ('InvalidField-' . $CF->Id) => $msg ); push @res, $CF->Name .': '. $msg; $valid = 0; } if ($CF->UniqueValues) { my $existing = RT::ObjectCustomFieldValues->new(RT->SystemUser); $existing->LimitToCustomField($CF->Id); $existing->LimitToEnabled; $existing->Limit(FIELD => 'ObjectType', VALUE => ref($Object)); $existing->Limit(FIELD => 'ObjectId', VALUE => $Object->id, OPERATOR => '!='); $existing->Limit( FIELD => 'Content', VALUE => $value, ); while (my $ocfv = $existing->Next) { my $msg = loc("That is not a unique value"); $m->notes( ('InvalidField-' . $CF->Id) => $msg ); push @res, $CF->Name .': '. $msg; $valid = 0; last; } } } } $m->notes('ValidFields', $valid); return wantarray? ($valid, @res): $valid; <%ARGS> $Object => RT::Ticket->new( $session{'CurrentUser'}) $CustomFields $ARGSRef $ValidateUnsubmitted => 0 rt-4.4.2/share/html/Elements/EditCustomFieldIPAddressRange0000664000175000017500000000407013131430353023340 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> return $m->comp( 'EditCustomFieldFreeform', %ARGS ); rt-4.4.2/share/html/Elements/HeaderJavascript0000664000175000017500000000522013131430353021015 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $focus => undef $onload => undef % for my $jsfile ( @js_files ) { % } <%INIT> my @js_files; if ( RT->Config->Get('DevelMode') ) { @js_files = map { $_ =~ m{^/} ? $_ : "/static/js/$_" } RT::Interface::Web->JSFiles(); } else { my $key = RT::Interface::Web::SquishedJS()->Key; @js_files = "/NoAuth/js/squished-$key.js"; } rt-4.4.2/share/html/Elements/SelectPriority0000664000175000017500000000423313131430353020562 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => 'Priority' $Default => '' <%INIT> $Default = '' unless defined $Default; rt-4.4.2/share/html/Elements/SelectDateType0000664000175000017500000000474013131430353020463 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => 'DateType' rt-4.4.2/share/html/Elements/Crypt/0000775000175000017500000000000013131430353016755 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/Crypt/SignEncryptWidget0000664000175000017500000001332713131430353022317 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $columnsplit = " % } else { % }
      "; % if ( RT->Config->Get('Crypt')->{'Outgoing'} eq 'GnuPG' ) { <% loc( 'Sign[_1][_2] using [_3]', $columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ), ) |n %><% loc( 'Sign[_1][_2]', $columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), ) |n %><% loc('Encrypt')%> <& /Widgets/Form/Boolean:InputOnly, Name => 'Encrypt', CurrentValue => $self->{'Encrypt'} &>
      <%ARGS> $self => undef, <%INIT> return unless $self; <%METHOD new> <%ARGS> $Arguments => {} <%INIT> return undef unless RT->Config->Get('Crypt')->{'Enable'}; return { %$Arguments }; <%METHOD ShowIssues> <%ARGS> $self => undef, <%INIT> return unless $self; return $m->comp( '/Elements/Crypt/KeyIssues', Issues => $self->{'GnuPGRecipientsKeyIssues'} || [], SignAddresses => $self->{'GnuPGCanNotSignAs'} || [], ); <%METHOD Process> <%ARGS> $self => undef $QueueObj => undef $TicketObj => undef <%INIT> return unless $self; $QueueObj ||= $TicketObj->QueueObj if $TicketObj; foreach ( qw(Sign Encrypt) ) { $self->{ $_ } = $m->comp( '/Widgets/Form/Boolean:Process', Name => $_, DefaultValue => $QueueObj->$_, Arguments => $self, ); } <%METHOD Check> <%ARGS> $self => undef $Operation => 'Update' $TicketObj => undef $QueueObj => undef <%INIT> return 1 unless $self; my $checks_failure = 0; if ( $self->{'Sign'} ) { $QueueObj ||= $TicketObj->QueueObj if $TicketObj; my $private = $session{'CurrentUser'}->UserObj->PrivateKey || ''; my $queue = ($self->{'UpdateType'} && $self->{'UpdateType'} eq "private") ? ( $QueueObj->CommentAddress || RT->Config->Get('CommentAddress') ) : ( $QueueObj->CorrespondAddress || RT->Config->Get('CorrespondAddress') ); my $address = $self->{'SignUsing'} || $queue; if ($address ne $private and $address ne $queue) { push @{ $self->{'GnuPGCanNotSignAs'} ||= [] }, $address; $checks_failure = 1; } elsif ( not RT::Crypt->DrySign( Signer => $address ) ) { push @{ $self->{'GnuPGCanNotSignAs'} ||= [] }, $address; $checks_failure = 1; } else { RT::Crypt->UseKeyForSigning( $self->{'SignUsing'} ) if $self->{'SignUsing'}; } } if ( $self->{'Encrypt'} ) { my @recipients; if ( $Operation eq 'Update' ) { @recipients = map {$_->Recipients} $TicketObj->DryRun( sub { ProcessUpdateMessage( ARGSRef => {%$self}, TicketObj => $TicketObj ) } ); } elsif ( $Operation eq 'Create' ) { $TicketObj = RT::Ticket->new( $session{'CurrentUser'} ); @recipients = map {$_->Recipients} $TicketObj->DryRun( sub { CreateTicket( %$self, TicketObj => $TicketObj ); } ); } elsif ( $Operation eq 'Forward' ) { push @recipients, RT::EmailParser->ParseEmailAddress( $self->{$_} || '' ) for qw(To Cc Bcc); } else { $RT::Logger->crit('Incorrect operation: '. $Operation ); } my %seen; @recipients = grep !$seen{ lc $_ }++, @recipients; RT::Crypt->UseKeyForEncryption( map { (/^UseKey-(.*)$/)[0] => $self->{ $_ } } grep $self->{ $_ } && /^UseKey-/, keys %$self ); my ($status, @issues) = RT::Crypt->CheckRecipients( @recipients ); push @{ $self->{'GnuPGRecipientsKeyIssues'} ||= [] }, @issues; $checks_failure = 1 unless $status; } return $checks_failure ? 0 : 1; rt-4.4.2/share/html/Elements/Crypt/SelectKeyForEncryption0000664000175000017500000000537413131430353023323 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if (!@keys) { <% loc("No usable keys.") %> % } else { % } <%INIT> my $d; my %res = RT::Crypt->GetKeysForEncryption($EmailAddress); # move the preferred key to the top of the list my @keys = map { $_->{'Fingerprint'} eq ( $Default || '' ) ? do { $d = $_; () } : $_ } @{ $res{'info'} }; @keys = sort { $b->{'TrustLevel'} <=> $a->{'TrustLevel'} } @keys; unshift @keys, $d if defined $d; <%ARGS> $Name => 'PreferredKey' $EmailAddress => undef $Default => undef rt-4.4.2/share/html/Elements/Crypt/SelectKeyForSigning0000664000175000017500000000474213131430353022565 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $user_key ) { % } else { <% loc("Queue's key") %> % } <%ARGS> $Name => 'SignUsing', $User => undef, <%INIT> return unless RT->Config->Get('Crypt')->{'Enable'}; # XXX: Only GnuPG at this moment supports user's private keys my $user_key; $user_key = $User->PrivateKey if RT->Config->Get('Crypt')->{'Outgoing'} eq 'GnuPG'; rt-4.4.2/share/html/Elements/Crypt/KeyIssues0000664000175000017500000000750413131430353020632 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( @$Issues || @$SignAddresses ) {
      <&| /Widgets/TitleBox, title => loc('[_1] issues', RT->Config->Get('Crypt')->{'Outgoing'}) &> % if ( @$SignAddresses ) { <% loc("The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:") %>
        % for my $address (@$SignAddresses) {
      • <% $address %>
      • % }
      % } % if (@$Issues == 1) { <% loc("You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption.") %> % } elsif (@$Issues > 1) { <% loc("You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption.") %> % }
        % foreach my $issue ( @$Issues ) {
      • % if ( $issue->{'User'} ) { User <&/Elements/ShowUser, User => $issue->{'User'} &> has a problem. % } else { There is a problem with key/certificate(s) for address <% $issue->{'EmailAddress'} %>, but there is no user in the DB for this address. % } <% $issue->{'Message'} %>
        Select a key/certificate you want to use for encryption: <& /Elements/Crypt/SelectKeyForEncryption, Name => 'UseKey-'. $issue->{'EmailAddress'}, EmailAddress => $issue->{'EmailAddress'}, Default => ( $issue->{'User'}? $issue->{'User'}->PreferredKey : undef ), &>
      • % }
      % } <%ARGS> $Issues => [] $SignAddresses => [] rt-4.4.2/share/html/Elements/EditCustomFieldBinary0000664000175000017500000000574713131430353022005 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % while ( $Values and my $value = $Values->Next ) { %# XXX - let user download the file(s) here? % if (my $url = RT->System->ExternalStorageURLFor($value)) { % } else { % } <% $value->Content %>
      % } % if ($MaxValues && $Values && $Values->Count >= $MaxValues ) {
      <&|/l&>Reached maximum number, so new values will override old ones.
      % } <%INIT> my $name = $Name || $NamePrefix . $CustomField->Id . '-Upload'; my $delete_name = $name; $delete_name =~ s!-Upload$!-DeleteValueIds!; <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Name => undef $Default => undef $Values => undef $MaxValues => undef rt-4.4.2/share/html/Elements/RT__Template/0000775000175000017500000000000013131430353020173 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__Template/ColumnMap0000664000175000017500000000704513131430353022017 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP = { Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name() }, }, Description => { title => 'Description', # loc attribute => 'Description', value => sub { return $_[0]->Description() }, }, Queue => { title => 'Queue', # loc value => sub { return $_[0]->QueueObj->Name if $_[0]->Queue; return $_[0]->loc('Global'); }, }, QueueId => { title => 'Queue', # loc value => sub { $_[0]->Queue }, }, IsEmpty => { title => 'Empty', # loc value => sub { $_[0]->IsEmpty? $_[0]->loc('Yes') : $_[0]->loc('No') }, }, UsedBy => { title => 'Used by scrips', # loc value => sub { my @res; my $scrips = $_[0]->UsedBy; while ( my $scrip = $scrips->Next ) { push @res, ', ' if @res; push @res, \'', $scrip->id, \''; } return @res; }, }, }; <%INIT> $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/SelectDateRelation0000664000175000017500000000440013131430353021310 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Default => undef $Before => loc('before') $On => loc('on') $After => loc('after') rt-4.4.2/share/html/Elements/Footer0000664000175000017500000000613013131430353017035 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# End of div#body from /Elements/PageLayout
      % $m->callback( %ARGS ); % if ($Debug >= 2 ) { % require Data::Dumper; % my $d = Data::Dumper->new([\%ARGS], [qw(%ARGS)]);
      <%$d->Dump() %>
      
      % } <%ARGS> $Debug => 0 $Menu => 1 rt-4.4.2/share/html/Elements/ShowCustomFieldWikitext0000664000175000017500000000510513131430353022410 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%$wiki_content|n%> <%init> my $content = $Object->LargeContent || $Object->Content; $content = $m->comp('/Elements/ScrubHTML', Content => $content); my $base = $Object->Object->WikiBase; my %wiki_args = ( extended => 1, absolute_links => 1, implicit_links => RT->Config->Get('WikiImplicitLinks'), prefix => $base, ); $m->callback( CallbackName => 'WikiFormatArgs', ARGSRef => \%ARGS, WikiArgsRef => \%wiki_args, ContentRef => \$content); use Text::WikiFormat; my $wiki_content = Text::WikiFormat::format( $content."\n" , {}, { %wiki_args } ); <%ARGS> $Object rt-4.4.2/share/html/Elements/RT__Group/0000775000175000017500000000000013131430353017514 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__Group/ColumnMap0000664000175000017500000000644013131430353021336 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP = { HasMember => { title => 'Member', # loc value => sub { my $group = $_[0]; my $uid = $_[2] || return ''; return $group->HasMember( $uid )? $_[0]->loc('yes'): $_[0]->loc('no'); }, }, HasMemberRecursively => { title => 'Recursive member', # loc value => sub { my $group = $_[0]; my $uid = $_[2] || return ''; return $group->HasMemberRecursively( $uid )? $_[0]->loc('yes'): $_[0]->loc('no'); }, }, Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name() }, }, Description => { title => 'Description', # loc attribute => 'Description', value => sub { return $_[0]->Description() }, }, Disabled => { title => 'Status', # loc value => sub { return $_[0]->Disabled? $_[0]->loc('Disabled'): $_[0]->loc('Enabled') }, }, }; <%INIT> $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/EditPassword0000664000175000017500000000541513131430353020214 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % unless ( $cond{'CanSet'} ) { <% $cond{'Reason'} %>
      % } else { % if ( $cond{'RequireCurrent'} ) { % }
      <&|/l, $session{'CurrentUser'}->Name()&>[_1]'s current password:
      <&|/l&>New password:
      <&|/l&>Retype Password:
      % } <%ARGS> $User @Name => qw(CurrentPass NewPass1 NewPass2) <%INIT> my %cond = $User->CurrentUserRequireToSetPassword; rt-4.4.2/share/html/Elements/MyAdminQueues0000664000175000017500000000425513131430353020333 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc("Queues I administer"), bodyclass => "" &> <& /Elements/QueueSummaryByStatus, queue_filter => sub { $_->CurrentUserHasRight('AdminQueue') }, &> rt-4.4.2/share/html/Elements/ShowLink0000664000175000017500000000540213131430353017336 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $member = $URI->Object; % if (blessed($member) and $member->isa("RT::Ticket") and $member->CurrentUserHasRight('ShowTicket')) { % my $class = $member->QueueObj->IsInactiveStatus($member->Status) % ? 'ticket-inactive' % : 'ticket-active'; % $class .= ' '.CSSClass($member->Status); <%$member->Id%>: <%$member->Subject || ''%> [<% loc($member->Status) %>] (<& /Elements/ShowUser, User => $member->OwnerObj &>) % } else { <%$URI->AsString%> % } <%ARGS> $URI => undef <%INIT> my $href = $URI->AsHREF; if ( $URI->IsLocal ) { my $base = RT->Config->Get('WebBaseURL'); # URI->rel doesn't contain the leading '/' $href = '/' . URI->new($href)->rel($base); } rt-4.4.2/share/html/Elements/GotoTicket0000664000175000017500000000426513131430353017662 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
       
      rt-4.4.2/share/html/Elements/ListActions0000664000175000017500000000634113131430353020037 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->out($$_) for grep {ref $_} @actions; % if (grep {not ref $_} @actions) {
      <&| /Widgets/TitleBox, title => loc('Results'), %{$titlebox || {}} &>
        % foreach my $action (grep {not ref $_} @actions) {
      • <%$action%>
      • % }
      % } <%init> # backward compatibility, don't use array in new code, but use keyed hash if ( ref( $session{'Actions'} ) eq 'ARRAY' ) { unshift @actions, @{ delete $session{'Actions'} }; $session{'i'}++; } if ( ref( $session{'Actions'}{''} ) eq 'ARRAY' ) { unshift @actions, @{ delete $session{'Actions'}{''} }; $session{'i'}++; } my $actions_pointer = $DECODED_ARGS->{'results'}; if ($actions_pointer && ref( $session{'Actions'}->{$actions_pointer} ) eq 'ARRAY' ) { unshift @actions, @{ delete $session{'Actions'}->{$actions_pointer} }; $session{'i'}++; } # XXX: run callbacks per row really crazy idea @actions = grep $_, grep { my $skip; $m->callback( %ARGS, row => \$_, skip => \$skip, CallbackName => 'ModifyRow', ); !$skip; } grep $_, @actions; return unless @actions; <%ARGS> $titlebox => {} @actions => undef rt-4.4.2/share/html/Elements/SelectQueueAutocomplete0000664000175000017500000000537513131430353022417 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Name => 'Queue' $Default => 0 $Class => 'select-queue field' $Placeholder => '' $ShowAllQueues => 1 $CheckQueueRight => 'CreateTicket' $AutoSubmit => 0 $Return => 'Name' <%init> my $DefaultQueue = RT::Queue->new($session{'CurrentUser'}); $DefaultQueue->Load( $Default ); undef $CheckQueueRight if $ShowAllQueues; " class="<% $Class %>" data-autocomplete="Queues" placeholder="<% $Placeholder %>" data-autocomplete-checkright="<% $CheckQueueRight %>" data-autocomplete-return="<% $Return %>" <% $AutoSubmit ? 'data-autocomplete-autosubmit=1' : '' %> /> rt-4.4.2/share/html/Elements/EditCustomFieldIPAddress0000664000175000017500000000407013131430353022363 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> return $m->comp( 'EditCustomFieldFreeform', %ARGS ); rt-4.4.2/share/html/Elements/Error0000664000175000017500000000537013131430353016675 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( %ARGS, error => $error ); % unless ($SuppressHeader) { <& /Elements/Header, Title => $Title &> <& /Elements/Tabs &> % } <& /Elements/ListActions, actions => $Actions &>
      <%$Why%>
      <%$Details%>
      <& /Elements/Footer &> % $m->abort; <%args> $Actions => [] $Details => '' $Title => loc("RT Error") $Why => loc("the calling component did not specify why"), $SuppressHeader => 0, <%INIT> my $error = $Why; $error .= " ($Details)" if defined $Details && length $Details; $RT::Logger->error( $error ); if ( $session{'REST'} ) { $r->content_type('text/plain; charset=utf-8'); $m->out( "Error: " . $Why . "\n" ); $m->out( $Details . "\n" ) if defined $Details && length $Details; $m->abort(); } rt-4.4.2/share/html/Elements/Header0000664000175000017500000001250313131430353016770 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# index.html gets two doctypes unless we can skip it here % unless ($SkipDoctype) { % } <%$Title%> % if ($Refresh && $Refresh =~ /^(\d+)/ && $1 > 0) { % my $URL = $m->notes->{RefreshURL}; $URL = $URL ? ";URL=$URL" : ""; " /> % } <& JavascriptConfig &> % for my $cssfile ( @css_files ) { % } % for (keys %{$LinkRel || {}}) { % } % if ( $RSSAutoDiscovery ) { % } % my $stylesheet_plugin = "/NoAuth/css/".$style."/InHeader"; % if ($m->comp_exists($stylesheet_plugin) ) { <& $stylesheet_plugin &> % } % # Leave %ARGS for backward compatibility % $m->callback( %ARGS, CallbackName => 'Head', ARGSRef => \%ARGS ); <& HeaderJavascript, focus => $Focus, onload => $onload, RichText => $RichText &> <& /Elements/Framekiller &> > % if ($ShowBar) { <& /Elements/Logo, %ARGS &>
      <& /Elements/PersonalQuickbar, %ARGS &>
      % } % if ($ShowTitle) { % } <%INIT> my $lang = 'en'; $lang = $session{'CurrentUser'}->LanguageHandle->language_tag if $session{'CurrentUser'} && $session{'CurrentUser'}->LanguageHandle && $session{'CurrentUser'}->LanguageHandle->language_tag; $r->headers_out->{'Pragma'} = 'no-cache'; $r->headers_out->{'Cache-control'} = 'no-cache'; my $id = $m->request_comp->path; $id =~ s|^/||g; $id =~ s|/|-|g; $id =~ s|\.html$||g; $id =~ s|index$||g if $id ne 'index'; $id =~ s|-$||g; my $style = $session{'CurrentUser'} ? $session{'CurrentUser'}->Stylesheet : RT->Config->Get('WebDefaultStylesheet'); my @css_files; if ( RT->Config->Get('DevelMode') ) { @css_files = map { "/static/css/$_" } "$style/main.css", RT->Config->Get('CSSFiles'); } else { my $key = RT::Interface::Web::SquishedCSS( $style )->Key; @css_files = "/NoAuth/css/$style/squished-$key.css"; } # We use BodyClass in its $ARGS form so that callbacks have a chance to # massage it push @{$ARGS{'BodyClass'}}, lc $style; if (RT->Config->Get("UseSideBySideLayout", $session{'CurrentUser'})) { push @{$ARGS{'BodyClass'}}, 'sidebyside'; } <%ARGS> #$Focus => 'focus' $Focus => '' $Title => 'RT' $Refresh => 0 $ShowBar => 1 $ShowTitle => 1 $URL => undef $RSSAutoDiscovery => undef $onload => undef $LinkRel => undef $SkipDoctype => 0 $RichText => 1 $BodyClass => undef rt-4.4.2/share/html/Elements/SelectOwner0000664000175000017500000000570013131430353020033 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& "SelectOwner$Widget", %ARGS, Objects => \@objects &> <%INIT> my $Widget; if ( !$QueueObj && !$TicketObj && RT->Config->Get('AutocompleteOwnersForSearch') ) { $Widget = 'Autocomplete'; } $Widget ||= RT->Config->Get('AutocompleteOwners', $session{'CurrentUser'}) ? 'Autocomplete' : 'Dropdown'; my @objects; if ($TicketObj) { @objects = ($TicketObj); } elsif ($QueueObj) { @objects = ($QueueObj); } elsif (%Queues) { for my $name (keys %Queues) { my $q = RT::Queue->new($session{'CurrentUser'}); $q->Load($name); push @objects, $q; } } else { # Let's check rights on an empty queue object. that will do a search # for any queue. my $queue = RT::Queue->new( $session{'CurrentUser'} ); push( @objects, $queue ); } $m->callback( %ARGS, objects => \@objects, CallbackName => 'UpdateObjectList' ); <%ARGS> $TicketObj => undef $QueueObj => undef %Queues => () rt-4.4.2/share/html/Elements/SelectDate0000664000175000017500000000572213131430353017622 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( %ARGS, Name => $Name, CallbackName => 'BeforeDateInput', Object => $Object, ARGSRef => $ARGSRef, ShowTimeRef => \$ShowTime, ); % $m->callback( %ARGS, Name => $Name, CallbackName => 'AfterDateInput', Object => $Object, ARGSRef => $ARGSRef, ); <%init> unless ((defined $Default) or ($current <= 0)) { my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($current); $Default = sprintf("%04d-%02d-%02d %02d:%02d", $year+1900,$mon+1,$mday, $hour,$min); } $Default ||= ''; unless ($Name) { $Name = $menu_prefix. "_Date"; } <%args> $ShowTime => 1 $menu_prefix => '' $current => time $Default => '' $Name => undef $Size => 16 $Object => undef $ARGSRef => undef rt-4.4.2/share/html/Elements/QueueList0000664000175000017500000000506213131430353017522 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      <&|/Widgets/TitleBox, title => loc("Queue list"), bodyclass => "", titleright => loc("Edit"), titleright_href => RT->Config->Get('WebPath').'/Prefs/QueueList.html', &> <& $comp, queue_filter => sub { $_->CurrentUserHasRight('ShowTicket') && !exists $unwanted->{$_->Name} }, &>
      <%INIT> my $unwanted = $session{'CurrentUser'}->UserObj->Preferences('QueueList', {}); my $comp = $SplitByLifecycle? '/Elements/QueueSummaryByLifecycle' : '/Elements/QueueSummaryByStatus'; <%ARGS> $SplitByLifecycle => 1 rt-4.4.2/share/html/Elements/QueueSummaryByStatus0000664000175000017500000001167513131430353021752 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % for my $status ( @statuses ) { % } <%PERL> my $i = 0; for my $queue (@queues) { $i++; my $lifecycle = $lifecycle{ lc $queue->{'Lifecycle'} }; <%perl> for my $status (@statuses) { if ( $lifecycle->IsValid( $status ) ) { % } else { % } % } % }
      <&|/l&>Queue<% loc($status) %>
      <% $queue->{Name} %> <% $data->{$queue->{id}}->{lc $status} || '-' %> -
      <%INIT> my $build_search_link = sub { my ($queue_name, $extra_query) = @_; $queue_name =~ s/(['\\])/\\$1/g; #' return RT->Config->Get('WebPath') . "/Search/Results.html?Query=" . $m->interp->apply_escapes("Queue = '$queue_name' AND $extra_query", 'u'); }; my $link_all = sub { my ($queue) = @_; return $build_search_link->($queue->{Name}, "Status = '__Active__'"); }; my $link_status = sub { my ($queue, $status) = @_; $status =~ s{(['\\])}{\\$1}g; return $build_search_link->($queue->{Name}, "Status = '$status'"); }; $m->callback( CallbackName => 'LinkBuilders', build_search_link => \$build_search_link, link_all => \$link_all, link_status => \$link_status, ); my $Queues = RT::Queues->new( $session{'CurrentUser'} ); $Queues->UnLimit(); $m->callback( CallbackName => 'SQLFilter', Queues => $Queues ); my @queues = grep $queue_filter->($_), @{ $Queues->ItemsArrayRef }; $m->callback( CallbackName => 'Filter', Queues => \@queues ); @queues = map { { id => $_->Id, Name => $_->Name, Description => $_->Description || '', Lifecycle => $_->Lifecycle, } } grep $_, @queues; my %lifecycle; for my $queue (@queues) { my $cycle = RT::Lifecycle->Load( Name => $queue->{'Lifecycle'} ); $lifecycle{ lc $cycle->Name } = $cycle; } my @statuses; my %seen; foreach my $set ( 'initial', 'active' ) { foreach my $lifecycle ( map $lifecycle{$_}, sort keys %lifecycle ) { push @statuses, grep !$seen{ lc $_ }++, $lifecycle->Valid($set); } } my $data = {}; my $statuses = {}; use RT::Report::Tickets; my $report = RT::Report::Tickets->new( RT->SystemUser ); my $query = "(Status = '__Active__') AND (". join(' OR ', map "Queue = ".$_->{id}, @queues) .")"; $query = 'id < 0' unless @queues; $report->SetupGroupings( Query => $query, GroupBy => [qw(Status Queue)] ); while ( my $entry = $report->Next ) { $data->{ $entry->__Value("Queue") }->{ $entry->__Value("Status") } = $entry->__Value('id'); $statuses->{ $entry->__Value("Status") } = 1; } <%ARGS> $queue_filter => undef rt-4.4.2/share/html/Elements/LoginHelp0000664000175000017500000000434513131430353017466 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $source = RT->Config->Meta('OwnerEmail')->{Source}; return unless $source->{SiteConfig} or $source->{Extension}; rt-4.4.2/share/html/Elements/SelectAttachmentField0000664000175000017500000000453213131430353021777 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => 'AttachmentField' rt-4.4.2/share/html/Elements/MySupportQueues0000664000175000017500000000427013131430353020754 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc("Queues I'm an AdminCc for"), bodyclass => "" &> <& /Elements/QueueSummaryByStatus, queue_filter => sub { $_->IsAdminCc($session{'CurrentUser'}->Id) }, &> rt-4.4.2/share/html/Elements/ShowRelationLabel0000664000175000017500000000535713131430353021167 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($SearchURL) { <% $Label %> % } else { <% $Label %> % } <%INIT> my $typemap = $RT::Link::TYPEMAP{$Relation}; my $search_mode = $typemap->{Mode}; my $search_type = $typemap->{Type}; my $search_relation = $RT::Link::DIRMAP{$search_type}->{$search_mode}; my $SearchURL; if ($Object and $Object->id) { my $id = $Object->id; if ($Object->isa("RT::Ticket")) { $SearchURL = RT->Config->Get('WebPath') . '/Search/Results.html?' . $m->comp('/Elements/QueryString', Query => "$search_relation = $id"); } } $m->callback( CallbackName => "ModifySearchURL", SearchURL => \$SearchURL, ARGSRef => \%ARGS, ); <%ARGS> $Object => undef $Label $Relation rt-4.4.2/share/html/Elements/EditCustomFields0000664000175000017500000001167313131430353021016 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( CallbackName => 'BeforeCustomFields', Object => $Object, % Grouping => $Grouping, ARGSRef => \%ARGS, CustomFields => $CustomFields); %# only show the wrapper if there are editable custom fields, so we can %# suppress the empty titlebox. we do this in such a way that we still call the %# BeforeCustomFields and AfterCustomFields callbacks (rather than returning %# from the INIT block) to maintain compatibility with old behavior % if (@CustomFields) { % if ( $WRAP ) { <<% $WRAP %> class="edit-custom-fields"> % } % for my $CustomField (@CustomFields) { % my $Type = $CustomField->Type || 'Unknown'; % my @classes = ( % 'edit-custom-field', % "cftype-$Type", % ); % $m->callback( CallbackName => 'ModifyFieldClasses', CustomField => $CustomField, % Object => $Object, Classes => \@classes, Grouping => $Grouping ); <<% $FIELD %> class="<% join(' ', @classes) %>"> <<% $CELL %> class="cflabel"> <% $CustomField->Name %>:
      <% $CustomField->EntryHint // '' %> > <<% $CELL %> class="entry"> % my $default = $m->notes('Field-' . $CustomField->Id); % $default ||= $ARGS{"CustomField-". $CustomField->Id }; <& /Elements/EditCustomField, %ARGS, CustomField => $CustomField, Default => $default, Object => $Object, &> % if (my $msg = $m->notes('InvalidField-' . $CustomField->Id)) {
      <% $msg %> % } elsif ($ShowHints and $CustomField->FriendlyPattern) {
      <&|/l, $CustomField->FriendlyPattern &>Input must match [_1] % } > % $m->callback( CallbackName => 'AfterCustomFieldValue', CustomField => $CustomField, Object => $Object, Grouping => $Grouping ); > % } % if ( $WRAP ) { > % } % } % $m->callback( CallbackName => 'AfterCustomFields', Object => $Object, % Grouping => $Grouping, ARGSRef => \%ARGS ); <%INIT> $CustomFields ||= $Object->CustomFields; $CustomFields->{include_set_initial} = 1 if $ForCreation; $CustomFields->LimitToGrouping( $Object => $Grouping ) if defined $Grouping; $m->callback( %ARGS, CallbackName => 'MassageCustomFields', CustomFields => $CustomFields ); $CustomFields->GotoFirstItem; my @CustomFields; while ( my $CustomField = $CustomFields->Next ) { next unless $CustomField->CurrentUserHasRight('ModifyCustomField') || ($ForCreation && $CustomField->CurrentUserHasRight('SetInitialCustomField')); push @CustomFields, $CustomField; } $AsTable ||= $InTable; my $FIELD = $AsTable ? 'tr' : 'div'; my $CELL = $AsTable ? 'td' : 'div'; my $WRAP = ''; if ( $AsTable ) { $WRAP = 'table' unless $InTable; } else { $WRAP = 'div'; } <%ARGS> $Object $CustomFields => undef $Grouping => undef $AsTable => 1 $InTable => 0 $ShowHints => 1 $ForCreation => 0 rt-4.4.2/share/html/Elements/Submit0000664000175000017500000001013713131430353017044 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      % if ($CheckAll) { % } % if ($ClearAll) { % } % if ($Reset) { % }
      % if ( $Back ) { % } % if ( $Back ) {
      <%$BackCaption%> <% $BackName ? qq[ name="$BackName"] : '' | n %> value="<%$BackLabel%>" class="button" />
      % }
      <%ARGS> $color => undef $Caption => '' $AlternateCaption => undef $AlternateLabel => undef $Label => loc('Submit') $Name => undef $CheckAll => undef $CheckAllLabel => loc('Check All') $ClearAll => undef $ClearAllLabel => loc('Clear All') $CheckboxName => '' $CheckboxNameRegex => '' $Back => undef $BackName => 'Back' $BackLabel => loc('Back') $BackCaption => '' $BackOnClick => undef $OnClick => undef $Reset => undef $ResetLabel => loc('Reset') $SubmitId => undef $id => undef <%init> my $match; if (length $CheckboxName) { $match = $m->interp->apply_escapes($CheckboxName,'j'); } elsif (length $CheckboxNameRegex) { $match = $CheckboxNameRegex; } else { $match = q{''}; } rt-4.4.2/share/html/Elements/SelectEqualityOperator0000664000175000017500000000454613131430353022261 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef @Options => (loc('less than'), loc('equal to'), loc('greater than'), loc('not equal to')) @Values => qw(< = > !=) $Default =>'' rt-4.4.2/share/html/Elements/EditCustomFieldText0000664000175000017500000000550113131430353021471 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % while ($Values and my $value = $Values->Next ) {
      % } % if (!$MaxValues or !$Values or $Values->Count < $MaxValues) { % } <%INIT> # XXX - MultiValue textarea is for now outlawed. $MaxValues = 1; my $name = $Name || $NamePrefix . $CustomField->Id . '-Values'; <%ARGS> $Object => undef $CustomField => undef $NamePrefix => '' $Name => undef $Default => undef $Values => undef $MaxValues => undef $Cols $Rows rt-4.4.2/share/html/Elements/RT__ScripAction/0000775000175000017500000000000013131430353020636 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__ScripAction/ColumnMap0000664000175000017500000000640713131430353022463 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP = { id => { title => '#', # loc attribute => 'id', align => 'right', value => sub { return $_[0]->id }, }, Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name() }, }, Description => { title => 'Description', # loc attribute => 'Description', value => sub { return $_[0]->Description() }, }, UsedBy => { title => 'Used by scrips', # loc value => sub { my @res; my $scrips = $_[0]->UsedBy; while ( my $scrip = $scrips->Next ) { push @res, ', ' if @res; push @res, \'', $scrip->id, \''; } return @res; }, }, }; <%INIT> $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/ShowLinksOfType0000664000175000017500000000746713131430353020665 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
        % for my $link (@not_tickets, @active, @inactive) {
      • <& ShowLink, URI => $link->$ModeURI &> <%perl> next unless $Recurse; my $ToObj = $link->$ModeObj; next if $ToObj and $checked->{$ToObj->id}; if ($depth <= $MaxDepth) { <& ShowLinksOfType, %ARGS, Object => $ToObj, depth => ($depth + 1), checked => $checked &> % }
      • % }
      <%INIT> return unless $Object; unless ($RT::Link::TYPEMAP{$Type}) { RT->Logger->error("Unknown link Type '$ARGS{Type}'"); return; } unless ($Object->can($Type)) { RT->Logger->error("Don't know how to fetch links of '$Type' for object '$Object'"); return; } my $links = $Object->$Type; return unless $links->Count; return if $checked->{$Object->id}; $checked->{$Object->id} = 1; my $mode = $RT::Link::TYPEMAP{$Type}->{'Mode'}; my $ModeURI = "${mode}URI"; my $ModeObj = "${mode}Obj"; # Filter and bucket my (@active, @inactive, @not_tickets); while (my $link = $links->Next) { my $ToObj = $link->$ModeObj; next if UNIVERSAL::isa($ToObj,'RT::Article') && $ToObj->Disabled; if ($ToObj and $ToObj->isa('RT::Ticket')) { next if $Type eq "ReferredToBy" and $ToObj->__Value('Type') eq 'reminder'; if ( $ToObj->QueueObj->IsInactiveStatus( $ToObj->Status ) ) { push @inactive, $link; } else { push @active, $link; } } else { push @not_tickets, $link; } } $m->callback( CallbackName => "Init", ARGSRef => \%ARGS, Object => $Object, $Type => $Type, $Recurse => \$Recurse, $MaxDepth => \$MaxDepth, active => \@active, inactive => \@inactive, not_tickets => \@not_tickets, ); <%ARGS> $Object => undef $Type $Recurse => 0 $MaxDepth => 7 $depth => 1 $checked => {} rt-4.4.2/share/html/Elements/MyReminders0000664000175000017500000000447213131430353020044 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, class => 'reminders', title => loc("My reminders"), title_href => RT->Config->Get('WebPath') . '/Tools/MyReminders.html' &> <& /Elements/ShowReminders, HasResults => $HasResults &> <%init> return unless RT->Config->Get('EnableReminders'); <%ARGS> $HasResults => undef rt-4.4.2/share/html/Elements/ShowTransaction0000664000175000017500000002005413131430353020726 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      <%PERL> $m->comp('/Elements/ShowCustomFields', Object => $Transaction, HideEmpty => 1 ) if $HasTxnCFs; $m->comp( 'ShowTransactionAttachments', %ARGS, Parent => 0 ) if $ShowBody;
      % $m->callback( %ARGS, Transaction => $Transaction, CallbackName => 'AfterContent' );
      <%ARGS> $Transaction $Object => $Transaction->Object $Attachments => undef $AttachmentContent => undef $HasTxnCFs => 1 $ShowBody => 1 $ShowActions => 1 $RowNum => 1 $DisplayPath => undef $AttachmentPath => undef $UpdatePath => undef $ForwardPath => undef $EncryptionPath => undef $EmailRecordPath => undef <%ONCE> <%INIT> my $record_type = $Object->RecordType; my $type_class = $Object->ClassifyTransaction( $Transaction ); $m->callback( CallbackName => 'MassageTypeClass', Transaction => $Transaction, TypeClassRef => \$type_class, ARGSRef => \%ARGS, ); my @classes = ( "transaction", "$record_type-transaction", $type_class, ($RowNum % 2 ? 'odd' : 'even') ); my $desc = $Transaction->BriefDescriptionAsHTML; if ( $Object->id != $Transaction->ObjectId ) { # merged objects $desc = join " - ", $m->interp->apply_escapes( loc("[_1] #[_2]:", loc($record_type), $Transaction->ObjectId), 'h'), $desc; } my $date = $Transaction->CreatedAsString; my $time = ''; $time = loc('[quant,_1,minute,minutes]', $Transaction->TimeTaken) if $Transaction->TimeTaken; if ( $ShowBody && !$Attachments ) { $ARGS{'Attachments'} = $Attachments = {}; my $attachments = $Transaction->Attachments( WithHeaders => 1 ); push @{ $Attachments->{ $_->Parent || 0 } ||= [] }, $_ foreach @{ $attachments->ItemsArrayRef }; } my @actions = (); my $txn_type = $Transaction->Type; if ( $txn_type =~ /EmailRecord$/ ) { push @actions, { title => loc('Show'), target => '_blank', path => $EmailRecordPath .'?id='. $Object->id .'&Transaction='. $Transaction->id .'&Attachment='. ( $Attachments->{0}[0] && $Attachments->{0}[0]->id ), } if $EmailRecordPath; $ShowBody = 0; } # If the transaction has anything attached to it at all elsif ( %$Attachments && $ShowActions ) { my %has_right = map { $_ => RT::ACE->CanonicalizeRightName( $_ . $record_type ) } qw(Modify CommentOn ReplyTo); $has_right{'Forward'} = RT::ACE->CanonicalizeRightName('ForwardMessage'); my $can_modify = $has_right{'Modify'} && $Object->CurrentUserHasRight( $has_right{'Modify'} ); if ( $UpdatePath && $has_right{'ReplyTo'} && ( $can_modify || $Object->CurrentUserHasRight( $has_right{'ReplyTo'} ) ) ) { push @actions, { class => "reply-link", title => loc('Reply'), path => $UpdatePath .'?id='. $Object->id .'&QuoteTransaction='. $Transaction->id .'&Action=Respond' , }; } if ( $UpdatePath && $has_right{'CommentOn'} && ( $can_modify || $Object->CurrentUserHasRight( $has_right{'CommentOn'} ) ) ) { push @actions, { class => "comment-link", title => loc('Comment'), path => $UpdatePath .'?id='. $Object->id .'&QuoteTransaction='. $Transaction->id .'&Action=Comment' , }; } if ( $ForwardPath && $has_right{'Forward'} && $Object->CurrentUserHasRight( $has_right{'Forward'} ) ) { push @actions, { class => "forward-link", title => loc('Forward'), path => $ForwardPath .'?id='. $Object->id .'&QuoteTransaction='. $Transaction->id , }; } if ( $EncryptionPath && $can_modify && RT->Config->Get('Crypt')->{'Enable'} && RT->Config->Get('Crypt')->{'AllowEncryptDataInDB'} ) { push @actions, { class => "encryption-link", title => loc('Encrypt/Decrypt'), path => $EncryptionPath .'?id='. $Transaction->id .'&QuoteTransaction='. $Transaction->id , }; } } my $CreatorObj = $Transaction->CreatorObj; $m->callback( %ARGS, Transaction => $Transaction, Object => $Object, Classes => \@classes, Actions => \@actions, Created => \$date, TimeTaken => \$time, Description => \$desc, ShowBody => \$ShowBody, CreatorObj => \$CreatorObj, ); my $actions = ''; if ( @actions ) { my $i = $m->interp; foreach my $a ( @actions ) { $a = '{'target'} ? ' target="'. $i->apply_escapes( $a->{'target'}, 'h' ) .'"' : '' ) . ($a->{'class'} ? ' class="'. $i->apply_escapes( $a->{'class'}, 'h' ) .'"' : '' ) .'>'. $i->apply_escapes( $a->{'title'}, 'h' ) .'' ; } $actions = join ' ', map "[$_]", @actions; } # make date unbreakable $date = $m->interp->apply_escapes( $date, 'h' ); $date =~ s/\s/ /g; rt-4.4.2/share/html/Elements/BulkLinks0000664000175000017500000001473713131430353017511 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}

      <&|/l&>Current Links

      <&|/l&>Depends on: % if ( $hash{DependsOn} ) { % for my $link ( values %{$hash{DependsOn}} ) { <& EditLink, Link => $link, Mode => 'Target' &> % } }
      <&|/l&>Depended on by: % if ( $hash{DependedOnBy} ) { % for my $link ( values %{$hash{DependedOnBy}} ) { <& EditLink, Link => $link, Mode => 'Base' &> % } }
      <&|/l&>Parents: % if ( $hash{MemberOf} ) { % for my $link ( values %{$hash{MemberOf}} ) { <& EditLink, Link => $link, Mode => 'Target' &> % } }
      <&|/l&>Children: % if ( $hash{Members} ) { % for my $link ( values %{$hash{Members}} ) { <& EditLink, Link => $link, Mode => 'Base' &> % } }
      <&|/l&>Refers to: % if ( $hash{RefersTo} ) { % for my $link ( values %{$hash{RefersTo}} ) { <& EditLink, Link => $link, Mode => 'Target' &> % } }
      <&|/l&>Referred to by: % if ( $hash{ReferredToBy} ) { % for my $link ( values %{$hash{ReferredToBy}} ) { <& EditLink, Link => $link, Mode => 'Base' &> % } }
      <&|/l&>(Check box to delete)

      <&|/l&>New Links

      <&|/l&>Enter tickets or URIs to link to. Separate multiple entries with spaces.
      <&|/l&>Depends on:
      <&|/l&>Depended on by:
      <&|/l&>Parents:
      <&|/l&>Children:
      <&|/l&>Refers to:
      <&|/l&>Referred to by:
      <%ARGS> $Collection <%INIT> my @types = qw/DependsOn DependedOnBy Members MemberOf RefersTo ReferredToBy/; my $record_type = $Collection->RecordClass; $record_type =~ s/^RT:://; $record_type =~ s/::/-/g; my %hash; if ( $Collection->Count ) { my $first_record = $Collection->Next; # we only show current links that exist on all the records for my $type ( @types ) { my $target_or_base = $type =~ /DependsOn|MemberOf|RefersTo/ ? 'Target' : 'Base'; my $links = $first_record->$type; while ( my $link = $links->Next ) { $hash{$type}{$link->$target_or_base} = $link; } } while ( my $record = $Collection->Next ) { for my $type ( @types ) { my $target_or_base = $type =~ /DependsOn|MemberOf|RefersTo/ ? 'Target' : 'Base'; # if $hash{$type} is empty, no need to check any more next unless $hash{$type} && keys %{$hash{$type}}; my %exists; while ( my $link = $record->$type->Next ) { $exists{$link->$target_or_base}++; } for ( keys %{$hash{$type}} ) { delete $hash{$type}{$_} unless $exists{$_}; } } } } rt-4.4.2/share/html/Elements/SelectTimezone0000664000175000017500000000503113131430353020530 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ONCE> use DateTime; my @names = DateTime::TimeZone->all_names; my %label; my $dt = DateTime->now; for ( @names ) { $dt->set_time_zone( $_ ); $label{$_} = $_ . ' ' . $dt->strftime('%z'); } <%ARGS> $ShowNullOption => 1 $Name => undef $Default => 0 rt-4.4.2/share/html/Elements/RT__Ticket/0000775000175000017500000000000013131430353017643 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__Ticket/ColumnMap0000664000175000017500000003033713131430353021467 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP; my $LinkCallback = sub { my $method = shift; my $mode = $RT::Link::TYPEMAP{$method}{Mode}; my $type = $RT::Link::TYPEMAP{$method}{Type}; my $other_mode = ($mode eq "Target" ? "Base" : "Target"); my $mode_uri = $mode.'URI'; return sub { my $ObjectType = $_[2]||''; map { \'', ( $_->$mode_uri->AsString ), \'
      ', } # if someone says __RefersTo.{Ticket}__ filter for only local links that are tickets grep { $ObjectType ? ( $_->$mode_uri->IsLocal && ( $_->$mode_uri->Object->RecordType eq $ObjectType )) : 1 } @{ $_[0]->Links($other_mode,$type)->ItemsArrayRef } } }; my $trustSub = sub { my $user = shift; my %key = RT::Crypt->GetKeyInfo( Key => $user->EmailAddress ); if (!defined $key{'info'}) { return $m->interp->apply_escapes(' ' . loc("(no pubkey!)"), "h"); } elsif ($key{'info'}{'TrustLevel'} == 0) { return $m->interp->apply_escapes(' ' . loc("(untrusted!)"), "h"); } }; $COLUMN_MAP = { Queue => { attribute => 'Queue', title => 'Queue id', # loc value => sub { return $_[0]->Queue } }, QueueName => { attribute => 'Queue', title => 'Queue', # loc value => sub { return $_[0]->QueueObj->Name } }, OwnerName => { title => 'Owner', # loc attribute => 'Owner', value => sub { return $_[0]->OwnerObj->Name } }, Status => { title => 'Status', # loc attribute => 'Status', value => sub { return loc($_[0]->Status) } }, Subject => { title => 'Subject', # loc attribute => 'Subject', value => sub { return $_[0]->Subject || "(" . loc('No subject') . ")" } }, ExtendedStatus => { title => 'Status', # loc attribute => 'Status', value => sub { my $Ticket = shift; my $unresolved_dependencies = $Ticket->UnresolvedDependencies; my $count = $unresolved_dependencies->Count; if ( $count ) { if ( $Ticket->HasUnresolvedDependencies( Type => 'approval' ) or $Ticket->HasUnresolvedDependencies( Type => 'code' ) ) { return \'', loc('(pending approval)'), \''; } else { my $Query = "DependedOnBy = " . $Ticket->id . " AND Status = '__Active__'"; my $SearchURL = RT->Config->Get('WebPath') . '/Search/Results.html?' . $m->comp('/Elements/QueryString', Query => $Query); if ($count == 1) { my $pending_ticket = $unresolved_dependencies->Next; my $pending_ticket_url = RT->Config->Get('WebPath') . '/Ticket/Display.html?id=' . $pending_ticket->id; return \'', loc('(pending ticket #[_1])',$pending_ticket->id), \''; } return \'', loc('(pending [quant,_1,other ticket,other tickets])',$count), \''; } } else { return loc( $Ticket->Status ); } } }, Priority => { title => 'Priority', # loc attribute => 'Priority', value => sub { return $_[0]->Priority } }, InitialPriority => { title => 'InitialPriority', # loc attribute => 'InitialPriority', name => 'Initial Priority', value => sub { return $_[0]->InitialPriority } }, FinalPriority => { title => 'FinalPriority', # loc attribute => 'FinalPriority', name => 'Final Priority', value => sub { return $_[0]->FinalPriority } }, EffectiveId => { title => 'EffectiveId', # loc attribute => 'EffectiveId', value => sub { return $_[0]->EffectiveId } }, Type => { title => 'Type', # loc attribute => 'Type', value => sub { return $_[0]->Type } }, TimeWorked => { attribute => 'TimeWorked', title => 'Time Worked', # loc value => sub { return $_[0]->TimeWorkedAsString } }, TimeLeft => { attribute => 'TimeLeft', title => 'Time Left', # loc value => sub { return $_[0]->TimeLeftAsString } }, TimeEstimated => { attribute => 'TimeEstimated', title => 'Time Estimated', # loc value => sub { return $_[0]->TimeEstimatedAsString } }, StartsRelative => { title => 'Starts', # loc attribute => 'Starts', value => sub { return $_[0]->StartsObj->AgeAsString } }, StartedRelative => { title => 'Started', # loc attribute => 'Started', value => sub { return $_[0]->StartedObj->AgeAsString } }, ToldRelative => { title => 'Told', # loc attribute => 'Told', value => sub { return $_[0]->ToldObj->AgeAsString } }, DueRelative => { title => 'Due', # loc attribute => 'Due', value => sub { my $date = $_[0]->DueObj; # Highlight the date if it was due in the past, and it's still active if ( $date && $date->IsSet && $date->Diff < 0 && $_[0]->QueueObj->IsActiveStatus($_[0]->Status)) { return (\'' , $date->AgeAsString , \''); } else { return $date->AgeAsString; } } }, ResolvedRelative => { title => 'Resolved', # loc attribute => 'Resolved', value => sub { return $_[0]->ResolvedObj->AgeAsString } }, Starts => { title => 'Starts', # loc attribute => 'Starts', value => sub { return $_[0]->StartsObj->AsString } }, Started => { title => 'Started', # loc attribute => 'Started', value => sub { return $_[0]->StartedObj->AsString } }, Told => { title => 'Told', # loc attribute => 'Told', value => sub { return $_[0]->ToldObj->AsString } }, Due => { title => 'Due', # loc attribute => 'Due', value => sub { my $date = $_[0]->DueObj; # Highlight the date if it was due in the past, and it's still active if ( $date && $date->IsSet && $date->Diff < 0 && $_[0]->QueueObj->IsActiveStatus($_[0]->Status)) { return (\'' , $date->AsString , \''); } else { return $date->AsString; } } }, Resolved => { title => 'Resolved', # loc attribute => 'Resolved', value => sub { return $_[0]->ResolvedObj->AsString } }, SLA => { attribute => 'SLA', title => 'SLA', # loc value => sub { return $_[0]->SLA } }, UpdateStatus => { title => 'New messages', # loc value => sub { my $txn = $_[0]->SeenUpTo or return $_[0]->loc('No'); return \(''), $_[0]->loc('New'), \''; }, }, KeyRequestors => { title => 'Requestors', # loc attribute => 'Requestor.EmailAddress', value => sub { return \($m->scomp("/Elements/ShowPrincipal", Object => $_[0]->Requestor, PostUser => $trustSub ) ) } }, KeyOwnerName => { title => 'Owner', # loc attribute => 'Owner', value => sub { my $t = shift; my $name = $t->OwnerObj->Name; my %key = RT::Crypt->GetKeyInfo( Key => $t->OwnerObj->EmailAddress ); if (!defined $key{'info'}) { $name .= ' '. loc("(no pubkey!)"); } elsif ($key{'info'}{'TrustLevel'} == 0) { $name .= ' '. loc("(untrusted!)"); } return $name; } }, KeyOwner => { title => 'Owner', # loc attribute => 'Owner', value => sub { return \($m->scomp("/Elements/ShowPrincipal", Object => $_[0]->OwnerObj, PostUser => $trustSub ) ) } }, # Everything from LINKTYPEMAP (map { $_ => { value => $LinkCallback->( $_ ) } } keys %RT::Link::TYPEMAP), '_CLASS' => { value => sub { return $_[1] % 2 ? 'oddline' : 'evenline' } }, '_CHECKBOX' => { attribute => 'checkbox', title => 'Update', # loc align => 'right', value => sub { return \('') } }, Bookmark => { title => ' ', value => sub { my $bookmark = $m->scomp( '/Ticket/Elements/Bookmark', id => $_[0]->id ); # the CollectionAsTable/Row template replaces newlines with
      $bookmark =~ s/\n//g; return \$bookmark; }, }, Timer => { title => ' ', value => sub { return \($m->scomp("/Ticket/Elements/PopupTimerLink", id => $_[0]->id ) ); }, }, }; <%init> # if no encryption support, then KeyOwnerName and KeyRequestors fall back to the regular # versions unless (RT->Config->Get('Crypt')->{'Enable'}) { $COLUMN_MAP->{KeyOwnerName} = $COLUMN_MAP->{OwnerName}; $COLUMN_MAP->{KeyRequestors} = $GenericMap->{Requestors}; } if(RT->Config->Get('DisplayTotalTimeWorked')) { $COLUMN_MAP->{TotalTimeWorked} = { attribute => 'TotalTimeWorked', title => 'Total Time Worked', value => sub { return $_[0]->TotalTimeWorkedAsString; }, } } $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'Once', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/Login0000664000175000017500000000736513131430353016662 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( %ARGS, CallbackName => 'Header' ); <& /Elements/Header, Title => loc('Login'), Focus => '#user', RichText => 0 &> <& /Elements/Footer, Menu => 0 &> <%ARGS> $next => '' $user => "" $actions => undef rt-4.4.2/share/html/Elements/ShowHistory0000664000175000017500000000501113131430353020076 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ShowHistoryHeader, %ARGS &> % $m->callback( %ARGS, Object => $Object, CallbackName => 'BeforeTransactions' ); <& /Elements/ShowHistoryPage, %ARGS &>
    % if ($ShowDisplayModes or $ShowTitle) { <& /Widgets/TitleBoxEnd &> % }
    <%ARGS> $Object $Transactions => $Object->SortedTransactions $Attachments => $Object->Attachments( WithHeaders => 1 ) $AttachmentContent => $Object->TextAttachments $ShowHeaders => 0 $ShowTitle => 1 $ShowDisplayModes => 1 $PathPrefix => '' rt-4.4.2/share/html/Elements/EditCustomFieldAutocomplete0000664000175000017500000000775213131430353023220 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $Multiple ) { <%INIT> my $name = $Name || $NamePrefix . $CustomField->Id . ( $Multiple ? '-Values' : '-Value' ); if ( $Default && !$Multiple ) { $Default =~ s/\s*\r*\n\s*/ /g; } if ( $Multiple and $Values ) { $Default = ''; while (my $value = $Values->Next ) { $Default .= $value->Content ."\n"; } } my $Context = ""; if ($CustomField->ContextObject) { $Context .= "ContextId=" . $CustomField->ContextObject->Id . "&"; $Context .= "ContextType=". ref($CustomField->ContextObject) . "&"; } <%ARGS> $CustomField => undef $NamePrefix => undef $Name => undef $Default => undef $Values => undef $Multiple => undef $Rows => undef $Cols => undef rt-4.4.2/share/html/Elements/RefreshHomepage0000664000175000017500000000453413131430353020651 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc('Refresh')&>
    <& /Elements/Refresh, Name => 'HomeRefreshInterval', Default => $session{'home_refresh_interval'}||RT->Config->Get('HomePageRefreshInterval', $session{'CurrentUser'}) &> <& /Elements/Submit, Label => loc('Go!') &>
    rt-4.4.2/share/html/Elements/BulkCustomFields0000664000175000017500000001075513131430353021026 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $i = 0; % while (my $cf = $CustomFields->Next) { % my $rows = 5; % my $cf_id = $cf->id; % my @add = (NamePrefix => 'Bulk-Add-CustomField-', CustomField => $cf, Rows => $rows, % MaxValues => $cf->MaxValues, Multiple => ($cf->MaxValues == 1 ? 0 : 1) , Cols => 25, % Default => $ARGS{"Bulk-Add-CustomField-$cf_id-Values"} || $ARGS{"Bulk-Add-CustomField-$cf_id-Value"}, ); % my @del = (NamePrefix => 'Bulk-Delete-CustomField-', CustomField => $cf, % MaxValues => 0, Rows => $rows, Multiple => 1, Cols => 25, % Default => $ARGS{"Bulk-Delete-CustomField-$cf_id-Values"} || $ARGS{"Bulk-Delete-CustomField-$cf_id-Value"}, ); % if ($cf->Type eq 'Select') { % $RT::Logger->info("Unknown CustomField type: " . $cf->Type); % next % } % }
    <&|/l&>Name <&|/l&>Add values <&|/l&>Delete values
    <% $cf->Name %>
    (<% $cf->EntryHint // '' %>)
    <& /Elements/EditCustomFieldSelect, @add &> <& /Elements/EditCustomFieldSelect, @del &>
    % } elsif ($cf->Type eq 'Combobox') {
    <& /Elements/EditCustomFieldCombobox, @add &> <& /Elements/EditCustomFieldCombobox, @del &>
    % } elsif ($cf->Type eq 'Freeform') {
    <& /Elements/EditCustomFieldFreeform, @add &> <& /Elements/EditCustomFieldFreeform, @del &>
    % } elsif ($cf->Type eq 'Text') {
    <& /Elements/EditCustomFieldText, @add &> % } elsif ($cf->Type eq 'Wikitext') { <& /Elements/EditCustomFieldWikitext, @add &> % } elsif ($cf->Type eq 'Date') { <& /Elements/EditCustomFieldDate, @add &> <& /Elements/EditCustomFieldDate, @del &>
    % } elsif ($cf->Type eq 'DateTime') { % # Pass datemanip format to prevent another tz date conversion
    <& /Elements/EditCustomFieldDateTime, @add, Default => undef, Format => 'datemanip' &> <& /Elements/EditCustomFieldDateTime, @del, Default => undef, Format => 'datemanip' &>
    % } elsif ($cf->Type eq 'Autocomplete') {
    <& /Elements/EditCustomFieldAutocomplete, @add &> <& /Elements/EditCustomFieldAutocomplete, @del &>
    % } else {
    <&|/l&>(Unsupported custom field type)
    <%ARGS> $CustomFields <%INIT> return unless $CustomFields->Count; rt-4.4.2/share/html/Elements/CSRF0000664000175000017500000000625213131430353016341 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('Possible cross-site request forgery') &> <& /Elements/Tabs &>

    <&|/l&>Possible cross-site request forgery

    % my $strong_start = ""; % my $strong_end = "";

    <&|/l_unsafe, $strong_start, $strong_end, $Reason, $action &>RT has detected a possible [_1]cross-site request forgery[_2] for this request, because [_3]. A malicious attacker may be trying to [_1][_4][_2] on your behalf. If you did not initiate this request, then you should alert your security team.

    % my $start = qq||; % my $end = qq||;

    <&|/l_unsafe, $escaped_path, $action, $start, $end &>If you really intended to visit [_1] and [_2], then [_3]click here to resume your request[_4].

    <& /Elements/Footer, %ARGS &> % $m->abort; <%ARGS> $OriginalURL => '' $Reason => '' $Token => '' <%INIT> my $escaped_path = $m->interp->apply_escapes($OriginalURL, 'h'); $escaped_path = "$escaped_path"; my $url_with_token = URI->new($OriginalURL); $url_with_token->query_form([CSRF_Token => $Token]); my $action = RT::Interface::Web::PotentialPageAction($OriginalURL) || loc("perform actions"); rt-4.4.2/share/html/Elements/EditCustomFieldSelect0000664000175000017500000001655313131430353021775 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# Build up the set of cascading select boxes as "guides" %# each one limits the options of the final one a bit %# (perhaps by tweaking the .display style?) % my $selected = 0; % my @category; % my $out = $m->scomp('SELF:options', %ARGS, SelectedRef => \$selected, CategoryRef => \@category); % if ( $RenderType eq 'List' ) {
    BasedOnObj->id) { data-cascade-based-on-name="<% $BasedOnName || $NamePrefix . $CustomField->BasedOnObj->id . '-Value' |n %>" % } > % if ( $checktype eq 'radio' ) { % if ( $show_empty_option ) {
    />
    % } % } % my $CFVs = $CustomField->Values; % while ( my $value = $CFVs->Next ) { % my $content = $value->Name; % my $labelid = "$name-". $value->id;
    />
    % }
    % } else { % if (@category) { %# this hidden select is to supply a full list of values, %# see filter_cascade_select() in js/cascaded.js % } % } <%init> # Handle render types $RenderType ||= $CustomField->RenderType; if ( $RenderType eq 'Dropdown' ) { # Turn it into a dropdown $Rows = 0; } # Process scalar values for Default if ( $Default and !@Default ){ push @Default, $Default; } my ($checktype, $name); if ( $MaxValues == 1 and $RenderType eq 'List' ) { ($checktype, $name) = ('radio', $Name || $NamePrefix . $CustomField->Id . '-Value'); } else { ($checktype, $name) = ('checkbox', $Name || $NamePrefix . $CustomField->Id . '-Values'); } @Default = grep defined && length, @Default; if ( !@Default && $Values ) { @Default = map $_->Content, @{ $Values->ItemsArrayRef }; } my %default = map {lc $_ => 1} @Default; my $show_empty_option; if ( exists $ARGS{ShowEmptyOption} ) { $show_empty_option = $ARGS{ShowEmptyOption}; } else { if ( $CustomField->MatchPattern('') ) { $show_empty_option = 1; } elsif ( $CustomField->SupportDefaultValues ) { my ( $on ) = grep { $_->isa( $CustomField->RecordClassFromLookupType ) } $CustomField->ACLEquivalenceObjects; my $default_values = $CustomField->DefaultValues( Object => $on || RT->System ); $show_empty_option = 1 unless defined $default_values && length $default_values; } } my $use_chosen = $CustomField->Values->Count >= 10 ? 1 : 0; $m->callback( CallbackName => 'Chosen', UseChosen => \$use_chosen, CustomField => $CustomField ); # it's weird to see "(no value) X" in the input when selecting multiple values $show_empty_option = 0 if $use_chosen && $Multiple; <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Name => undef $BasedOnName => undef @Default => () $Default => undef $Values => undef $Multiple => 0 $Rows => undef $HideCategory => 0 $RenderType => undef $MaxValues => 1 <%METHOD options> % @Default = grep defined && length, @Default; % # $Values->HasEntry is too slow here % if ( !@Default && $Values ) { % @Default = map $_->Content, @{$Values->ItemsArrayRef}; % } % $_ = lc $_ foreach @Default; % my $selected; % my $CFVs = $CustomField->Values; % my @levels; % while ( my $value = $CFVs->Next ) { % my $name = $value->Name; % my $category = $value->Category || ''; % my $level = (split /:/, $category, 2)[0] || ''; % while (@levels) { % if ($levels[-1] eq $level) { % $level = ''; % last; % } elsif (index($level, $levels[-1]) != 0) { % $m->out(''); % pop @levels; % } else { % last; % } % } % if ( length $level ) { % push @$CategoryRef, [0+@levels, $level]; % push @levels, $level; % } % } % for (@levels) { % } <%ARGS> $CustomField => undef @Default => () $Values => undef $SelectedRef => undef $CategoryRef => undef rt-4.4.2/share/html/Elements/Framekiller0000664000175000017500000000475413131430353020046 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( RT->Config->Get('Framebusting') ) { %# This is defeatable. The current best known implemention uses CSS to hide %# the content and JS to re-show it, but that fails poorly for clients that %# don't run JS. % } rt-4.4.2/share/html/Elements/ShowCustomFieldCustomGroupings0000664000175000017500000000602513131430353023752 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%perl> for my $group ( @Groupings ) { my %grouping_args = ( title => $group? loc($group) : loc('Custom Fields'), class => $css_class .' '. ($group? CSSClass("$css_class-$group") : ''), hide_empty => 1, title_href => $title_href ? "$title_href?id=".$Object->id.($group?";Grouping=".$m->interp->apply_escapes($group,'u')."#".CSSClass("$css_class-$group") : "#".$css_class) : undef, %$TitleBoxARGS, ); $m->callback( CallbackName => 'TitleBox', Object => $Object, Grouping => $group, ARGSRef => \%grouping_args ); <&| /Widgets/TitleBox, %grouping_args &> <& ShowCustomFields, %ARGS, Object => $Object, Grouping => $group &> % } <%ARGS> $Object $title_href => "" @Groupings => () <%INIT> my $css_class = lc(ref($Object)||$Object); $css_class =~ s/^rt:://; $css_class =~ s/::/-/g; $css_class = CSSClass($css_class); $css_class .= '-info-cfs'; my $TitleBoxARGS = delete $ARGS{TitleBoxARGS} || {}; @Groupings = (RT::CustomField->CustomGroupings( $Object ), '') unless @Groupings; rt-4.4.2/share/html/Elements/RT__Dashboard/0000775000175000017500000000000013131430353020307 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__Dashboard/ColumnMap0000664000175000017500000001104013131430353022121 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP = { Name => { title => 'Name', # loc attribute => 'Name', value => sub { return $_[0]->Name()||loc("Unnamed dashboard") }, }, Subscription => { title => 'Subscription', # loc attribute => 'Subscription', value => sub { my $Dashboard = shift; my $Subscription = $Dashboard->Subscription; my $url = sprintf '%s/Dashboards/Subscription.html?id=%d', RT->Config->Get('WebPath'), $Dashboard->Id; my $frequency = loc("None"); if (defined $Subscription) { my $freq = $Subscription->SubValue('Frequency'); my $hour = $Subscription->SubValue('Hour'); if (my ($integer_hour) = $hour =~ /^(\d\d):00$/) { my $formatter = RT::Date->new($session{CurrentUser})->LocaleObj; my $dt = DateTime->now; $dt->set_minute(0); $dt->set_second(0); $dt->set_hour($integer_hour); # use the formatted hour instead $hour = $dt->format_cldr($formatter->time_format_short); } if ($freq eq 'weekly') { my $day = $Subscription->SubValue('Dow'); $frequency = loc("weekly (on [_1]) at [_2]", loc($day), $hour); } elsif ($freq eq 'monthly') { $frequency = loc("monthly (day [_1]) at [_2]", $Subscription->SubValue('Dom'), $hour); } elsif ($freq eq 'daily') { $frequency = loc("daily at [_1]", $hour); } elsif ($freq eq 'never') { $frequency = loc("Never"); } else { $frequency = loc($freq); } } return \'', $frequency, \''; }, }, ShowURL => { title => '', attribute => 'ShowURL', value => sub { my $dashboard = shift; my $id = $dashboard->Id; my $name = $dashboard->Name; return "Dashboards/$id/$name"; }, } }; <%INIT> $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/RT__Catalog/0000775000175000017500000000000013131430353017772 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__Catalog/ColumnMap0000664000175000017500000000553213131430353021615 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Attr => undef <%ONCE> my $COLUMN_MAP = { Name => { attribute => 'Name', title => 'Name', value => sub { $_[0]->Name }, }, Description => { attribute => 'Description', title => 'Description', value => sub { $_[0]->Description }, }, Disabled => { title => \' ', attribute => 'Disabled', value => sub { return $_[0]->Disabled? $_[0]->loc('Disabled'): $_[0]->loc('Enabled') }, }, Lifecycle => { title => 'Lifecycle', attribute => 'Lifecycle', value => sub { return $_[0]->Lifecycle }, }, }; <%init> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'Once', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/QueryString0000664000175000017500000000473313131430353020102 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my @params; for my $key (sort keys %ARGS) { my $value = $ARGS{$key}; next unless defined $value; $key = $m->interp->apply_escapes( $key, 'u' ); if( UNIVERSAL::isa( $value, 'ARRAY' ) ) { push @params, map $key ."=". $m->interp->apply_escapes( $_, 'u' ), map defined $_? $_ : '', @$value; } else { push @params, $key ."=". $m->interp->apply_escapes($value, 'u'); } } return join '&', @params; rt-4.4.2/share/html/Elements/PersonalQuickbar0000664000175000017500000000442313131430353021047 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Prefs => '/Prefs/Other.html'
    <&|/l&>Skip Menu | % unless ($session{'CurrentUser'}->Id) { <&|/l&>Not logged in. % } % $m->callback( %ARGS );
    rt-4.4.2/share/html/Elements/EditCustomFieldWikitext0000664000175000017500000000545313131430353022363 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % while ($Values and my $value = $Values->Next ) {
    % } % if (!$MaxValues or !$Values or $Values->Count < $MaxValues) { % } <%INIT> # XXX - MultiValue textarea is for now outlawed. $MaxValues = 1; my $name = $Name || $NamePrefix . $CustomField->Id . '-Values'; <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Name => undef $Default => undef $Values => undef $MaxValues => undef $Cols $Rows rt-4.4.2/share/html/Elements/EditTimeValue0000664000175000017500000000513713131430353020306 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/SelectTimeUnits, Name => $UnitName, Default => $InUnits &> <%ARGS> $Default => '' $Name => '' $ValueName => '' $UnitName => '' $InUnits => '' <%INIT> $ValueName ||= $Name; $UnitName ||= ($Name||$ValueName) . '-TimeUnits'; $InUnits ||= $m->request_args->{ $UnitName }; $InUnits ||= RT->Config->Get('DefaultTimeUnitsToHours', $session{'CurrentUser'}) ? 'hours' : 'minutes'; if ($Default && $InUnits eq 'hours') { # 0+ here is to remove the ending 0s $Default = 0 + sprintf '%.2f', $Default / 60; } rt-4.4.2/share/html/Elements/SelectBoolean0000664000175000017500000000474113131430353020324 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $True => loc("is") $Default => 'true' $TrueVal => 1 $FalseVal => 0 $False => loc("isn't") <%INIT> my $TrueDefault = ''; my $FalseDefault = ''; if ($Default && $Default !~ /true/i) { $FalseDefault = 'selected="selected"'; } else { $TrueDefault = 'selected="selected"'; } rt-4.4.2/share/html/Elements/Refresh0000664000175000017500000000503613131430353017201 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Default => 0 rt-4.4.2/share/html/Elements/EditCustomFieldCombobox0000664000175000017500000000563613131430353022326 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % while ($Values and my $value = $Values->Next and $Multiple) {
    % } % (!$Multiple or !$MaxValues or !$Values or $Values->Count < $MaxValues) or return; <& /Widgets/ComboBox, Name => $name, Default => $Default, Rows => $Rows, Class => "CF-".$CustomField->id."-Edit", Values => [map {$_->Name} @{$CustomField->Values->ItemsArrayRef}], &> <%INIT> my $name = $Name || $NamePrefix . $CustomField->Id . '-Value'; my $delete_name = $name; $delete_name =~ s!-Value$!-DeleteValueIds!; <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Default => undef $Values => undef $Multiple => 0 $Rows => undef $MaxValues => undef $Name => undef rt-4.4.2/share/html/Elements/EditCustomFieldDateTime0000664000175000017500000000467413131430353022253 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $name = $Name || $NamePrefix.$CustomField->Id.'-Values'; <& /Elements/SelectDate, Name => $name, Default => $Default, current => 0 &> (<%$DateObj->AsString%>) <%INIT> my $DateObj = RT::Date->new ( $session{'CurrentUser'} ); $DateObj->Set( Format => $Format, Value => $Default ); <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Default => undef $Values => undef $MaxValues => 1 $Name => undef $Format => 'unknown' rt-4.4.2/share/html/Elements/SelectStatus0000664000175000017500000001163113131430353020224 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> ### XXX: no cover for Tools/MyDay.html my %statuses_by_lifecycle; if ( @Statuses ) { $statuses_by_lifecycle{''} = \@Statuses; } else { if ( $Object ) { my $lifecycle = $Object->LifecycleObj; if ($Object->_Accessible("Status", "read")) { my $current = $Object->Status; my @status; push @status, $current; my %has = (); foreach my $next ( $lifecycle->Transitions( $current ) ) { my $check = $lifecycle->CheckRight( $current => $next ); $has{ $check } = $Object->CurrentUserHasRight( $check ) unless exists $has{ $check }; push @status, $next if $has{ $check }; } $statuses_by_lifecycle{$lifecycle->Name} = \@status; } else { $statuses_by_lifecycle{$lifecycle->Name} = [ $lifecycle->Transitions('') ]; } } for my $lifecycle ( @Lifecycles ) { $statuses_by_lifecycle{$lifecycle->Name} ||= [ $lifecycle->Valid ]; } if (not keys %statuses_by_lifecycle) { for my $lifecycle (map { RT::Lifecycle->Load(Type => $Type, Name => $_) } RT::Lifecycle->List($Type)) { $statuses_by_lifecycle{$lifecycle->Name} = [ $lifecycle->Valid ]; } } } if (keys %statuses_by_lifecycle) { my %simplified; my $key = sub { join "\0", sort @{$_[0]}; }; for my $name (sort keys %statuses_by_lifecycle) { my $matched; my $statuses = $statuses_by_lifecycle{$name}; for my $simple (sort keys %simplified) { if ($key->($statuses) eq $key->($simplified{$simple})) { # Statuses are the same, join 'em! $simplified{"$simple, $name"} = delete $simplified{$simple}; $matched++; last; } } unless ($matched) { $simplified{$name} = $statuses; } } %statuses_by_lifecycle = %simplified; } my $group_by_lifecycle = keys %statuses_by_lifecycle > 1; <%ARGS> $Name => undef $Type => undef, @Statuses => () $Object => undef, @Lifecycles => (), $Default => '' $SkipDeleted => 0 $DefaultValue => 1 $DefaultLabel => "-" $Multiple => 0 $Size => 6 rt-4.4.2/share/html/Elements/SelectLang0000664000175000017500000000560413131430353017625 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $ShowNullOption => 1 $Name => undef $Verbose => undef $Default => 0 <%ONCE> use I18N::LangTags::List; my (@lang, %lang_to_desc); foreach my $lang (map { s/:://; s/_/-/g; $_ } grep { /^\w+::$/ } keys %RT::I18N::) { next if $lang =~ /i-default|en-us/; my $desc = I18N::LangTags::List::name($lang); next unless ($desc); $desc =~ s/(.*) (.*)/$2 ($1)/ unless ( $desc =~ /.* \(.*\)/ ); $lang_to_desc{$lang} = $desc; } @lang = sort { $lang_to_desc{$a} cmp $lang_to_desc{$b} } keys %lang_to_desc; rt-4.4.2/share/html/Elements/AddLinks0000664000175000017500000001150413131430353017271 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Object => undef $CustomFields => undef $ARGSRef => $DECODED_ARGS <%init> my $id = ($Object and $Object->id) ? $Object->id : "new"; my $exclude = qq| data-autocomplete="Tickets" data-autocomplete-multiple="1"|; $exclude .= qq| data-autocomplete-exclude="$id"| if $Object->id; % if (ref($Object) eq 'RT::Ticket') { <&|/l&>Enter tickets or URIs to link tickets to. Separate multiple entries with spaces.
    <&|/l&>You may enter links to Articles as "a:###", where ### represents the number of the Article.
    <&|/l&>Enter links to assets as "asset:###", where ### represents the asset ID. % $m->callback( CallbackName => 'ExtraLinkInstructions' );

    % } elsif (ref($Object) eq 'RT::Queue') { <&|/l&>Enter queues or URIs to link queues to. Separate multiple entries with spaces.
    % } else { <&|/l&>Enter objects or URIs to link objects to. Separate multiple entries with spaces.
    % } <& /Elements/EditCustomFields, Object => $Object, Grouping => 'Links', InTable => 1, ($CustomFields ? (CustomFields => $CustomFields) : ()), &> % $m->callback( CallbackName => 'NewLink' );
    <& ShowRelationLabel, Object => $Object, Label => loc('Depends on').':', Relation => 'DependsOn' &> " <% $exclude |n%>/>
    <& ShowRelationLabel, Object => $Object, Label => loc('Depended on by').':', Relation => 'DependedOnBy' &> " <% $exclude |n%>/>
    <& ShowRelationLabel, Object => $Object, Label => loc('Parents').':', Relation => 'Parents' &> " <% $exclude |n%>/>
    <& ShowRelationLabel, Object => $Object, Label => loc('Children').':', Relation => 'Children' &> " <% $exclude |n%>/>
    <& ShowRelationLabel, Object => $Object, Label => loc('Refers to').':', Relation => 'RefersTo' &> " <% $exclude |n%>/>
    <& ShowRelationLabel, Object => $Object, Label => loc('Referred to by').':', Relation => 'ReferredToBy' &> " <% $exclude |n%>/>
    rt-4.4.2/share/html/Elements/EditLink0000664000175000017500000000562213131430353017307 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $Mode eq 'Target' ) { % } else { % }
    <%INIT> my $ModeObj = $Mode . 'Obj'; return if UNIVERSAL::isa($Link->$ModeObj, 'RT::Article') && $Link->$ModeObj->Disabled; # Skip reminders return if $Mode eq 'Base' && $Link->Type eq 'RefersTo' && UNIVERSAL::isa($Link->BaseObj, 'RT::Ticket') && $Link->BaseObj->__Value('Type') eq 'reminder'; <%ARGS> $Link $Mode rt-4.4.2/share/html/Elements/ShowSearch0000664000175000017500000001412013131430353017643 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc(RT::SavedSearch->EscapeDescription($search->Description), $ProcessedSearchArg->{'Rows'}), title_raw => $title_raw, title_href => $query_link_url.$QueryString, titleright => $customize ? loc('Edit') : '', titleright_href => $customize, hideable => $hideable &> <& $query_display_component, hideable => $hideable, %$ProcessedSearchArg, ShowNavigation => 0, Class => 'RT::Tickets', HasResults => $HasResults, PreferOrderBy => 1 &> <%init> my $search; my $user = $session{'CurrentUser'}->UserObj; my $SearchArg; my $customize; my $query_display_component = '/Elements/CollectionList'; my $query_link_url = RT->Config->Get('WebPath').'/Search/Results.html'; if ($SavedSearch) { my ( $container_object, $search_id ) = _parse_saved_search($SavedSearch); unless ( $container_object ) { $m->out(loc("Either you have no rights to view saved search [_1] or identifier is incorrect", $m->interp->apply_escapes($SavedSearch, 'h'))); return; } $search = RT::Attribute->new( $session{'CurrentUser'} ); $search->Load($search_id); unless ( $search->Id && ref( $SearchArg = $search->Content ) eq 'HASH' ) { $m->out(loc("Saved search [_1] not found", $m->interp->apply_escapes($SavedSearch, 'h'))) unless $IgnoreMissing; return; } $SearchArg->{'SavedSearchId'} ||= $SavedSearch; $SearchArg->{'SearchType'} ||= 'Ticket'; if ( $SearchArg->{SearchType} ne 'Ticket' ) { # XXX: dispatch to different handler here $query_display_component = '/Search/Elements/' . $SearchArg->{SearchType}; $query_link_url = RT->Config->Get('WebPath') . "/Search/$SearchArg->{SearchType}.html"; $ShowCount = 0; } elsif ($ShowCustomize) { $customize = RT->Config->Get('WebPath') . '/Search/Build.html?' . $m->comp( '/Elements/QueryString', SavedSearchLoad => $SavedSearch ); } } else { ($search) = RT::System->new( $session{'CurrentUser'} ) ->Attributes->Named( 'Search - ' . $Name ); unless ( $search && $search->Id ) { my (@custom_searches) = RT::System->new( $session{'CurrentUser'} )->Attributes->Named('SavedSearch'); foreach my $custom (@custom_searches) { if ($custom->Description eq $Name) { $search = $custom; last } } unless ($search && $search->id) { $m->out(loc("Predefined search [_1] not found", $m->interp->apply_escapes($Name, 'h'))); return; } } $SearchArg = $user->Preferences( $search, $search->Content ); if ($ShowCustomize) { $customize = RT->Config->Get('WebPath') . '/Prefs/Search.html?' . $m->comp( '/Elements/QueryString', name => ref($search) . '-' . $search->Id ); } } # ProcessedSearchArg is a search with overridings, but for link we use # orginal search's poperties my $ProcessedSearchArg = $SearchArg; $ProcessedSearchArg = { %$SearchArg, %Override } if keys %Override; $m->callback( %ARGS, CallbackName => 'ModifySearch', OriginalSearch => $SearchArg, Search => $ProcessedSearchArg, ); foreach ( $SearchArg, $ProcessedSearchArg ) { $_->{'Format'} ||= ''; $_->{'Query'} ||= ''; # extract-message-catalog would "$1", so we avoid quotes for loc calls $_->{'Format'} =~ s/__loc\(["']?(\w+)["']?\)__/my $f = "$1"; loc($f)/ge; } my $QueryString = '?' . $m->comp( '/Elements/QueryString', %$SearchArg ); my $title_raw; if ($ShowCount) { my $tickets = RT::Tickets->new( $session{'CurrentUser'} ); $tickets->FromSQL($ProcessedSearchArg->{Query}); my $count = $tickets->CountAll(); $title_raw = '' . loc('(Found [quant,_1,ticket,tickets])', $count) . ''; # don't repeat the search in CollectionList $ProcessedSearchArg->{Collection} = $tickets; $ProcessedSearchArg->{TotalFound} = $count; } <%ARGS> $Name => undef $SavedSearch => undef %Override => () $IgnoreMissing => undef $hideable => 1 $ShowCustomize => 1 $ShowCount => RT->Config->Get('ShowSearchResultCount') $HasResults => undef rt-4.4.2/share/html/Elements/SelectIPRelation0000664000175000017500000000455113131430353020752 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef @Options => ( loc('is'), loc("isn't"), loc('less than'), loc('greater than')) @Values => ('=', '!=', '<', '>') $Default => '' rt-4.4.2/share/html/Elements/Dashboards0000664000175000017500000000445313131430353017657 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&|/Widgets/TitleBox, title => loc('Dashboards'), title_href => RT->Config->Get('WebPath').'/Dashboards/index.html', titleright => loc("Edit"), titleright_href => RT->Config->Get('WebPath').'/Dashboards/index.html', &> <& /Dashboards/Elements/ShowDashboards, IncludeSuperuserGroups => 0 &> rt-4.4.2/share/html/Elements/PageLayout0000664000175000017500000000543213131430353017655 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $show_menu ) { % }
    <& /Elements/WidgetBar, menu => PageWidgets() &>
    % if ($m->comp_exists($stylesheet_plugin) ) { <& $stylesheet_plugin &> % }
    % $m->callback( %ARGS, CallbackName => 'BeforeBody' ); % $m->flush_buffer(); # we've got the page laid out, let's flush the buffer; <%ARGS> $title => $m->callers(-1)->path $show_menu => 1 <%init> my $style = $session{'CurrentUser'} ? $session{'CurrentUser'}->Stylesheet : RT->Config->Get('WebDefaultStylesheet'); my $stylesheet_plugin = "/NoAuth/css/".$style."/AfterMenus"; rt-4.4.2/share/html/Elements/ListMenu0000664000175000017500000000607713131430353017351 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $menu $show_children => undef
      % for my $child ($menu->children) {
    • <% $show_link->( $child ) |n %>
      % if ( my $description = $child->description ) { <% $description %>\ % }
    • % if ($show_children && $child->children) { <& /Elements/ListMenu, menu => $child &> % } % }
    <%INIT> my $web_path = RT->Config->Get('WebPath'); my $interp = $m->interp; my $show_link = sub { my $e = shift; my $res = ''; if ( $e->path) { $res .= 'path or $e->path =~ m{^\w+:/}) ? $e->path : $web_path . $e->path; $res .= ' href="'. $interp->apply_escapes($url, 'h') .'"' if $url; if ( $e->target ) { $res .= ' target="'. $interp->apply_escapes( $e->target, 'h' ) .'"'; } $res .= '>'; } my $title = $e->title; $title = $interp->apply_escapes( $title, 'h' ); $res .= $title; if ( $e->path) { $res .= ''; } return $res; }; rt-4.4.2/share/html/Elements/EditLinks0000664000175000017500000000774713131430353017504 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}

    <&|/l&>Current Links

    <& ShowRelationLabel, Object => $Object, Label => loc('Depends on').':', Relation => 'DependsOn' &> % while (my $link = $Object->DependsOn->Next) { <& EditLink, Link => $link, Mode => 'Target' &> % }
    <& ShowRelationLabel, Object => $Object, Label => loc('Depended on by').':', Relation => 'DependedOnBy' &> % while (my $link = $Object->DependedOnBy->Next) { <& EditLink, Link => $link, Mode => 'Base' &> % }
    <& ShowRelationLabel, Object => $Object, Label => loc('Parents').':', Relation => 'Parents' &> % while (my $link = $Object->MemberOf->Next) { <& EditLink, Link => $link, Mode => 'Target' &> % }
    <& ShowRelationLabel, Object => $Object, Label => loc('Children').':', Relation => 'Children' &> % while (my $link = $Object->Members->Next) { <& EditLink, Link => $link, Mode => 'Base' &> % }
    <& ShowRelationLabel, Object => $Object, Label => loc('Refers to').':', Relation => 'RefersTo' &> % while (my $link = $Object->RefersTo->Next) { <& EditLink, Link => $link, Mode => 'Target' &> %}
    <& ShowRelationLabel, Object => $Object, Label => loc('Referred to by').':', Relation => 'ReferredToBy' &> % while (my $link = $Object->ReferredToBy->Next) { <& EditLink, Link => $link, Mode => 'Base' &> % }
    <&|/l&>(Check box to delete)

    <&|/l&>New Links

    <& AddLinks, %ARGS &>
    <%ARGS> $Object => undef rt-4.4.2/share/html/Elements/Quicksearch0000664000175000017500000000413713131430353020046 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& QueueList, %ARGS &> <%INIT> RT->Deprecated( Remove => '4.6', Instead => 'QueueList', ); rt-4.4.2/share/html/Elements/RT__Transaction/0000775000175000017500000000000013131430353020705 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__Transaction/ColumnMap0000664000175000017500000000771213131430353022532 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name $Attr => undef <%ONCE> my $COLUMN_MAP = { ObjectType => { title => 'Object Type', # loc attribute => 'ObjectType', value => sub { return $_[0]->ObjectType() }, }, ObjectId => { title => 'Object Id', # loc attribute => 'ObjectId', value => sub { return $_[0]->ObjectId() }, }, Type => { title => 'Type', # loc attribute => 'Type', value => sub { return $_[0]->Type() }, }, Field => { title => 'Field', # loc attribute => 'Field', value => sub { return $_[0]->Field() }, }, OldValue => { title => 'Old Value', # loc attribute => 'OldValue', value => sub { return $_[0]->OldValue() }, }, NewValue => { title => 'New Value', # loc attribute => 'NewValue', value => sub { return $_[0]->NewValue() }, }, TimeTaken => { title => 'Time Taken', # loc attribute => 'TimeTaken', value => sub { return $_[0]->TimeTaken() }, }, Description => { title => 'Description', # loc value => sub { my $html = $_[0]->BriefDescriptionAsHTML(); return \$html }, }, ObjectName => { title => 'Name', # loc value => sub { # Since ->can() is unreliable (due to AUTOLOAD), use # _Accessible to check for methods my $object = $_[0]->Object; if ( $object->_Accessible('Name','read') ) { return $object->Name; } elsif ( $object->_Accessible('Subject','read') ) { return $object->Subject; } else { return loc('No Name'); } }, }, }; <%INIT> $m->callback( COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/AttachmentWarning0000664000175000017500000000441413131430353021220 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <% $QuotedMessage %> <% $Signature %>

    <&|/l&>It looks like you may have forgotten to add an attachment.

    <%ARGS> $QuotedMessage => '' $Signature => '' rt-4.4.2/share/html/Elements/SimpleSearch0000664000175000017500000000461113131430353020160 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $value = defined $DECODED_ARGS->{q} ? $DECODED_ARGS->{q} : ''; <%ARGS> $SendTo => '/Search/Simple.html' $Placeholder => loc('Search') rt-4.4.2/share/html/Elements/ShowReminders0000664000175000017500000001007113131430353020367 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $reminders->Count ) { <%PERL> my $i =0; while ( my $reminder = $reminders->Next ) { $i++; my $dueobj = $reminder->DueObj; my $overdue = $dueobj->IsSet && $dueobj->Diff < 0 ? 1 : 0; my $targets = RT::Tickets->new($session{'CurrentUser'}); $targets->{'allow_deleted_search'} = 1; $targets->FromSQL( "ReferredToBy = " . $reminder->id ); if ( my $ticket= $targets->First ) { $$HasResults++ if $HasResults; % } else { % } % }
    <&|/l&>Reminder <&|/l&>Due <&|/l&>Ticket
    <% $reminder->Subject %> <% $overdue ? '' : '' |n %><% $dueobj->AgeAsString || loc('Not set') %><% $overdue ? '' : '' |n %> #<% $ticket->Id %>: <% $ticket->Subject %>
    Couldn't find Ticket for reminder <% $reminder->id %>. Please contact administrator.
    % } <%INIT> my $reminders = RT::Tickets->new($session{'CurrentUser'}); my $tsql = 'Type = "reminder"' . ' AND ( Owner = "Nobody" OR Owner ="' . $session{'CurrentUser'}->id . '")' . ' AND Status = "__Active__"'; $tsql .= ' AND ( Due < "now" OR Due IS NULL )' if $OnlyOverdue; $reminders->FromSQL($tsql); $reminders->OrderBy( FIELD => 'Due', ORDER => 'ASC' ); # flip HasResults from undef to 0 to indicate there was a search, so # dashboard mail can be suppressed if there are no results $$HasResults = 0 if $HasResults && !defined($$HasResults); <%ARGS> $OnlyOverdue => 0 $HasResults => undef rt-4.4.2/share/html/Elements/SelectResultsPerPage0000664000175000017500000000462013131430353021646 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# TODO: Better default handling <%INIT> my @values = qw(0 10 25 50 100); my @labels = (loc('Unlimited'), qw(10 25 50 100)); $Default = 50 unless defined $Default; <%ARGS> $Name => undef $Default => 50 rt-4.4.2/share/html/Elements/Menu0000664000175000017500000000415013131430353016503 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $menu $id => undef $toplevel => 1 $parent_id => '' $depth => 0 <%INIT> RenderMenu( %ARGS ); rt-4.4.2/share/html/Elements/DoAuth0000664000175000017500000000557313131430353016775 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> # return as quickly as possible if the user is logged in return if $session{CurrentUser} && $session{'CurrentUser'}->id; # It's important to nab the next page from the session before we # potentially blow the session away below. my $next = $session{'NextPage'}->{ $ARGS{'next'} || "" }; $next = $next->{'url'} if ref $next; my ($val,$msg) = RT::Authen::ExternalAuth::DoAuth(\%session,$user,$pass); $RT::Logger->debug("Autohandler called ExternalAuth. Response: ($val, $msg)"); if ( $val ) { $m->callback( %ARGS, CallbackName => 'SuccessfulLogin', CallbackPage => '/autohandler', RedirectTo => \$next ); } # Redirect to the relevant page if the above succeeded RT::Interface::Web::Redirect( $next ) if $val and $next and $m->request_comp->path eq '/NoAuth/Login.html'; # this component should never generate content return; <%ARGS> $user => undef $pass => undef rt-4.4.2/share/html/Elements/CreateTicket0000664000175000017500000000511113131430353020144 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    callback(CallbackName => 'InFormElement'); > % my $button_start = ''; % my $queue_selector = $m->scomp('/Elements/SelectNewTicketQueue', AutoSubmit => 1, SendTo => $SendTo, Placeholder => loc('Queue') ); <&|/l_unsafe, $button_start, $button_end, $queue_selector &>[_1]New ticket in[_2] [_3] % $m->callback(CallbackName => 'BeforeFormEnd');
    <%ARGS> $SendTo => '/Ticket/Create.html', rt-4.4.2/share/html/Elements/EditCustomFieldImage0000664000175000017500000000537513131430353021600 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % while ($Values and my $value = $Values->Next ) { <& ShowCustomFieldImage, Object => $value &>
    % } % if ($MaxValues && $Values && $Values->Count >= $MaxValues ) {
    <&|/l&>Reached maximum number, so new values will override old ones.
    % } <%INIT> my $name = $Name || $NamePrefix . $CustomField->Id . '-Upload'; my $delete_name = $name; $delete_name =~ s!-Upload$!-DeleteValueIds!; <%ARGS> $Object => undef $CustomField => undef $NamePrefix => undef $Name => undef $Default => undef $Values => undef $MaxValues => undef rt-4.4.2/share/html/Elements/ShowCustomFieldDateTime0000664000175000017500000000433413131430353022277 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> my $content = $Object->Content; my $DateObj = RT::Date->new ( $session{'CurrentUser'} ); $DateObj->Set( Format => 'ISO', Value => $content ); $content = $DateObj->AsString; <%$content|n%> <%ARGS> $Object rt-4.4.2/share/html/Elements/ShortcutHelp0000664000175000017500000001112413131430353020222 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $show_search => 0 $show_bulk_update => 0

    <&|/l&>Keyboard Shortcuts

    <&|/l&>Global

    / <&|/l&>Quick search
    gh <&|/l&>Return home
    gb / gf <&|/l&>Go back / forward
    % if($show_search) {
    <&|/l&>Search

    % if($show_bulk_update) { % }
    k / j <&|/l&>Move up / down the list of results
    o or <<&|/l&>Enter> <&|/l&>View highlighted ticket
    r <&|/l&>Reply to ticket
    c <&|/l&>Comment on ticket
    x <&|/l&>Toggle highlighted ticket's checkbox
    % }
    rt-4.4.2/share/html/Elements/SelectQueue0000664000175000017500000000477113131430353020034 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %if (RT->Config->Get("AutocompleteQueues", $session{'CurrentUser'})) { <& SelectQueueAutocomplete, %ARGS, &> %} else { <& SelectObject, %ARGS, ObjectType => "Queue", CheckRight => $CheckQueueRight, ShowAll => $ShowAllQueues, CacheNeedsUpdate => RT->System->QueueCacheNeedsUpdate, &> %} <%args> $CheckQueueRight => 'CreateTicket' $ShowAllQueues => 1 $AutoSubmit => 0 <%init> $ARGS{OnChange} = "jQuery(this).closest('form').submit();" if $AutoSubmit; rt-4.4.2/share/html/Elements/GotoUser0000664000175000017500000000522213131430353017347 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <%ARGS> $Default => '' rt-4.4.2/share/html/Elements/FoldStanzaJS0000664000175000017500000000425713131430353020111 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <%loc('Show quoted text')%>
    rt-4.4.2/share/html/Elements/SelectSLA0000664000175000017500000000516413131430353017364 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> $Default ||= $DECODED_ARGS->{SLA} if $DefaultFromArgs; $Default ||= $TicketObj->SLA if $TicketObj; <%ARGS> $DefaultFromArgs => 1 $TicketObj => undef $QueueObj => undef $Name => 'SLA' $Default => undef $DefaultValue => 1 $DefaultLabel => '-' rt-4.4.2/share/html/Elements/SelectCustomFieldValue0000664000175000017500000000650313131430353022156 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( Name => $Name, CustomField => $CustomField, Default => \$Default ); % $Default = "" unless defined $Default; % if ($CustomField->Type =~ /Select/i) { % my $values = $CustomField->Values; % } elsif ($CustomField->Type =~ /^Date(Time)?$/) { <& /Elements/SelectDate, ShowTime => ($1 ? 1 : 0), Name => $Name, Value => $Default &> % } elsif ( $CustomField->Type eq 'Autocomplete' ) { % } else { % } <%args> $Name => undef $CustomField => undef $Default => undef rt-4.4.2/share/html/Elements/MyRT0000664000175000017500000001021413131430353016430 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % $m->callback( ARGSRef => \%ARGS, CallbackName => 'BeforeTable' ); % if ( $sidebar ) { % }
    % $show_cb->($_) foreach @$body; % $show_cb->($_) foreach @$sidebar;
    % $m->callback( ARGSRef => \%ARGS, CallbackName => 'AfterTable' ); <%INIT> my %allowed_components = map {$_ => 1} @{RT->Config->Get('HomepageComponents')}; my $user = $session{'CurrentUser'}->UserObj; unless ( $Portlets ) { my ($defaults) = RT::System->new($session{'CurrentUser'})->Attributes->Named('HomepageSettings'); $Portlets = $user->Preferences( HomepageSettings => $defaults ? $defaults->Content : {} ); } $m->callback( CallbackName => 'MassagePortlets', Portlets => $Portlets ); my ($body, $sidebar) = @{$Portlets}{qw(body sidebar)}; unless( $body && @$body ) { $body = $sidebar || []; $sidebar = undef; } $sidebar = undef unless $sidebar && @$sidebar; my $Rows = $user->Preferences( 'SummaryRows', ( RT->Config->Get('DefaultSummaryRows') || 10 ) ); my $show_cb = sub { my $entry = shift; my $type = $entry->{type}; my $name = $entry->{'name'}; if ( $type eq 'component' ) { if (!$allowed_components{$name}) { $m->out( $m->interp->apply_escapes( loc("Invalid portlet [_1]", $name), "h" ) ); RT->Logger->info("Invalid portlet $name found on user " . $user->Name . "'s homepage"); if ($name eq 'QueueList' && $allowed_components{Quicksearch}) { RT->Logger->warning("You may need to replace the component 'Quicksearch' in the HomepageComponents config with 'QueueList'. See the UPGRADING-4.4 document."); } } else { $m->comp( $name, %{ $entry->{arguments} || {} } ); } } elsif ( $type eq 'system' ) { $m->comp( '/Elements/ShowSearch', Name => $name, Override => { Rows => $Rows } ); } elsif ( $type eq 'saved' ) { $m->comp( '/Elements/ShowSearch', SavedSearch => $name, Override => { Rows => $Rows } ); } else { $RT::Logger->error("unknown portlet type '$type'"); } }; <%ARGS> $Portlets => undef rt-4.4.2/share/html/Elements/Tabs0000664000175000017500000017107713131430353016505 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/PageLayout, show_menu => $show_menu &> <%INIT> my $request_path = $HTML::Mason::Commands::r->path_info; $request_path =~ s!/{2,}!/!g; my $query_string = sub { my %args = @_; my $u = URI->new(); $u->query_form(map { $_ => $args{$_} } sort keys %args); return $u->query; }; my $build_admin_menu = sub { my $top = shift; my $admin = $top->child( admin => title => loc('Admin'), path => '/Admin/' ); if ( $session{'CurrentUser'}->HasRight( Object => RT->System, Right => 'AdminUsers' ) ) { my $users = $admin->child( users => title => loc('Users'), description => loc('Manage users and passwords'), path => '/Admin/Users/', ); $users->child( select => title => loc('Select'), path => "/Admin/Users/" ); $users->child( create => title => loc('Create'), path => "/Admin/Users/Modify.html?Create=1" ); } my $groups = $admin->child( groups => title => loc('Groups'), description => loc('Manage groups and group membership'), path => '/Admin/Groups/', ); $groups->child( select => title => loc('Select'), path => "/Admin/Groups/" ); $groups->child( create => title => loc('Create'), path => "/Admin/Groups/Modify.html?Create=1" ); my $queues = $admin->child( queues => title => loc('Queues'), description => loc('Manage queues and queue-specific properties'), path => '/Admin/Queues/', ); $queues->child( select => title => loc('Select'), path => "/Admin/Queues/" ); $queues->child( create => title => loc('Create'), path => "/Admin/Queues/Modify.html?Create=1" ); if ( $session{'CurrentUser'}->HasRight( Object => RT->System, Right => 'AdminCustomField' ) ) { my $cfs = $admin->child( 'custom-fields' => title => loc('Custom Fields'), description => loc('Manage custom fields and custom field values'), path => '/Admin/CustomFields/', ); $cfs->child( select => title => loc('Select'), path => "/Admin/CustomFields/" ); $cfs->child( create => title => loc('Create'), path => "/Admin/CustomFields/Modify.html?Create=1" ); } if ( $session{'CurrentUser'}->HasRight( Object => RT->System, Right => 'AdminCustomRoles' ) ) { my $roles = $admin->child( 'custom-roles' => title => loc('Custom Roles'), description => loc('Manage custom roles'), path => '/Admin/CustomRoles/', ); $roles->child( select => title => loc('Select'), path => "/Admin/CustomRoles/" ); $roles->child( create => title => loc('Create'), path => "/Admin/CustomRoles/Modify.html?Create=1" ); } if ( $session{'CurrentUser'}->HasRight( Object => RT->System, Right => 'ModifyScrips' ) ) { my $scrips = $admin->child( 'scrips' => title => loc('Scrips'), description => loc('Manage scrips'), path => '/Admin/Scrips/', ); $scrips->child( select => title => loc('Select'), path => "/Admin/Scrips/" ); $scrips->child( create => title => loc('Create'), path => "/Admin/Scrips/Create.html" ); } my $admin_global = $admin->child( global => title => loc('Global'), description => loc('Manage properties and configuration which apply to all queues'), path => '/Admin/Global/', ); my $scrips = $admin_global->child( scrips => title => loc('Scrips'), description => loc('Modify scrips which apply to all queues'), path => '/Admin/Global/Scrips.html', ); $scrips->child( select => title => loc('Select'), path => "/Admin/Global/Scrips.html" ); $scrips->child( create => title => loc('Create'), path => "/Admin/Scrips/Create.html?Global=1" ); my $conditions = $admin_global->child( conditions => title => loc('Conditions'), description => loc('Edit system conditions'), path => '/Admin/Global/Conditions.html', ); $conditions->child( select => title => loc('Select'), path => "/Admin/Global/Conditions.html" ); $conditions->child( create => title => loc('Create'), path => "/Admin/Conditions/Create.html" ); my $actions = $admin_global->child( actions => title => loc('Actions'), description => loc('Edit system actions'), path => '/Admin/Global/Actions.html', ); $actions->child( select => title => loc('Select'), path => "/Admin/Global/Actions.html" ); $actions->child( create => title => loc('Create'), path => "/Admin/Actions/Create.html" ); my $templates = $admin_global->child( templates => title => loc('Templates'), description => loc('Edit system templates'), path => '/Admin/Global/Templates.html', ); $templates->child( select => title => loc('Select'), path => "/Admin/Global/Templates.html" ); $templates->child( create => title => loc('Create'), path => "/Admin/Global/Template.html?Create=1" ); my $cfadmin = $admin_global->child( 'custom-fields' => title => loc('Custom Fields'), description => loc('Modify global custom fields'), path => '/Admin/Global/CustomFields/index.html', ); $cfadmin->child( users => title => loc('Users'), description => loc('Select custom fields for all users'), path => '/Admin/Global/CustomFields/Users.html', ); $cfadmin->child( groups => title => loc('Groups'), description => loc('Select custom fields for all user groups'), path => '/Admin/Global/CustomFields/Groups.html', ); $cfadmin->child( queues => title => loc('Queues'), description => loc('Select custom fields for all queues'), path => '/Admin/Global/CustomFields/Queues.html', ); $cfadmin->child( tickets => title => loc('Tickets'), description => loc('Select custom fields for tickets in all queues'), path => '/Admin/Global/CustomFields/Queue-Tickets.html', ); $cfadmin->child( transactions => title => loc('Ticket Transactions'), description => loc('Select custom fields for transactions on tickets in all queues'), path => '/Admin/Global/CustomFields/Queue-Transactions.html', ); $cfadmin->child( 'custom-fields' => title => loc('Articles'), description => loc('Select Custom Fields for Articles in all Classes'), path => '/Admin/Global/CustomFields/Class-Article.html', ); $cfadmin->child( 'assets' => title => loc('Assets'), description => loc('Select Custom Fields for Assets in all Catalogs'), path => '/Admin/Global/CustomFields/Catalog-Assets.html', ); my $article_admin = $admin->child( articles => title => loc('Articles'), path => "/Admin/Articles/index.html" ); my $class_admin = $article_admin->child(classes => title => loc('Classes'), path => '/Admin/Articles/Classes/' ); $class_admin->child( select => title => loc('Select'), description => loc('Modify and Create Classes'), path => '/Admin/Articles/Classes/', ); $class_admin->child( create => title => loc('Create'), description => loc('Modify and Create Custom Fields for Articles'), path => '/Admin/Articles/Classes/Modify.html?Create=1', ); my $cfs = $article_admin->child( 'custom-fields' => title => loc('Custom Fields'), path => '/Admin/CustomFields/index.html?'.$m->comp('/Elements/QueryString', Type => 'RT::Class-RT::Article'), ); $cfs->child( select => title => loc('Select'), path => '/Admin/CustomFields/index.html?'.$m->comp('/Elements/QueryString', Type => 'RT::Class-RT::Article'), ); $cfs->child( create => title => loc('Create'), path => '/Admin/CustomFields/Modify.html?'.$m->comp("/Elements/QueryString", Create=>1, LookupType=> "RT::Class-RT::Article" ), ); my $assets_admin = $admin->child( assets => title => loc("Assets"), path => '/Admin/Assets/' ); my $catalog_admin = $assets_admin->child( catalogs => title => loc("Catalogs"), description => loc("Modify asset catalogs"), path => "/Admin/Assets/Catalogs/" ); $catalog_admin->child( "select", title => loc("Select"), path => $catalog_admin->path ); $catalog_admin->child( "create", title => loc("Create"), path => "Create.html" ); my $assets_cfs = $assets_admin->child( "cfs", title => loc("Custom Fields"), description => loc("Modify asset custom fields"), path => "/Admin/CustomFields/?Type=" . RT::Asset->CustomFieldLookupType ); $assets_cfs->child( "select", title => loc("Select"), path => $assets_cfs->path ); $assets_cfs->child( "create", title => loc("Create"), path => "/Admin/CustomFields/Modify.html?Create=1&LookupType=" . RT::Asset->CustomFieldLookupType); $admin_global->child( 'group-rights' => title => loc('Group Rights'), description => loc('Modify global group rights'), path => '/Admin/Global/GroupRights.html', ); $admin_global->child( 'user-rights' => title => loc('User Rights'), description => loc('Modify global user rights'), path => '/Admin/Global/UserRights.html', ); $admin_global->child( 'my-rt' => title => loc('RT at a glance'), description => loc('Modify the default "RT at a glance" view'), path => '/Admin/Global/MyRT.html', ); $admin_global->child( 'dashboards-in-menu' => title => loc('Dashboards in menu'), description => loc('Customize dashboards in menu'), path => '/Admin/Global/DashboardsInMenu.html', ); $admin_global->child( 'topics' => title => loc('Topics'), description => loc('Modify global article topics'), path => '/Admin/Global/Topics.html', ); my $admin_tools = $admin->child( tools => title => loc('Tools'), description => loc('Use other RT administrative tools'), path => '/Admin/Tools/', ); $admin_tools->child( configuration => title => loc('System Configuration'), description => loc('Detailed information about your RT setup'), path => '/Admin/Tools/Configuration.html', ); $admin_tools->child( theme => title => loc('Theme'), description => loc('Customize the look of your RT'), path => '/Admin/Tools/Theme.html', ); if (RT->Config->Get('StatementLog') && $session{'CurrentUser'}->HasRight( Right => 'SuperUser', Object => RT->System )) { $admin_tools->child( 'sql-queries' => title => loc('SQL Queries'), description => loc('Browse the SQL queries made in this process'), path => '/Admin/Tools/Queries.html', ); } $admin_tools->child( shredder => title => loc('Shredder'), description => loc('Permanently wipeout data from RT'), path => '/Admin/Tools/Shredder', ); if ( $request_path =~ m{^/Admin/(Queues|Users|Groups|CustomFields|CustomRoles)} ) { my $type = $1; my $tabs = PageMenu(); my %labels = ( Queues => loc("Queues"), Users => loc("Users"), Groups => loc("Groups"), CustomFields => loc("Custom Fields"), CustomRoles => loc("Custom Roles"), ); my $section; if ( $request_path =~ m|^/Admin/$type/?(?:index.html)?$| || ( $request_path =~ m|^/Admin/$type/(?:Modify.html)$| && $DECODED_ARGS->{'Create'} ) ) { $section = $tabs; } else { $section = $tabs->child( select => title => $labels{$type}, path => "/Admin/$type/" ); } $section->child( select => title => loc('Select'), path => "/Admin/$type/" ); $section->child( create => title => loc('Create'), path => "/Admin/$type/Modify.html?Create=1" ); } if ( $request_path =~ m{^/Admin/Queues} ) { if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ || $DECODED_ARGS->{'Queue'} && $DECODED_ARGS->{'Queue'} =~ /^\d+$/ ) { my $id = $DECODED_ARGS->{'Queue'} || $DECODED_ARGS->{'id'}; my $queue_obj = RT::Queue->new( $session{'CurrentUser'} ); $queue_obj->Load($id); if ( $queue_obj and $queue_obj->id ) { my $queue = PageMenu(); $queue->child( basics => title => loc('Basics'), path => "/Admin/Queues/Modify.html?id=" . $id ); $queue->child( people => title => loc('Watchers'), path => "/Admin/Queues/People.html?id=" . $id ); my $templates = $queue->child(templates => title => loc('Templates'), path => "/Admin/Queues/Templates.html?id=" . $id); $templates->child( select => title => loc('Select'), path => "/Admin/Queues/Templates.html?id=".$id); $templates->child( create => title => loc('Create'), path => "/Admin/Queues/Template.html?Create=1;Queue=".$id); my $scrips = $queue->child( scrips => title => loc('Scrips'), path => "/Admin/Queues/Scrips.html?id=" . $id); $scrips->child( select => title => loc('Select'), path => "/Admin/Queues/Scrips.html?id=" . $id ); $scrips->child( create => title => loc('Create'), path => "/Admin/Scrips/Create.html?Queue=" . $id); my $cfs = $queue->child( 'custom-fields' => title => loc('Custom Fields') ); my $ticket_cfs = $cfs->child( 'tickets' => title => loc('Tickets'), path => '/Admin/Queues/CustomFields.html?SubType=RT::Ticket&id=' . $id ); my $txn_cfs = $cfs->child( 'transactions' => title => loc('Transactions'), path => '/Admin/Queues/CustomFields.html?SubType=RT::Ticket-RT::Transaction&id='.$id ); $queue->child( 'group-rights' => title => loc('Group Rights'), path => "/Admin/Queues/GroupRights.html?id=".$id ); $queue->child( 'user-rights' => title => loc('User Rights'), path => "/Admin/Queues/UserRights.html?id=" . $id ); $queue->child( 'history' => title => loc('History'), path => "/Admin/Queues/History.html?id=" . $id ); $queue->child( 'default-values' => title => loc('Default Values'), path => "/Admin/Queues/DefaultValues.html?id=" . $id ); $m->callback( CallbackName => 'PrivilegedQueue', queue_id => $id, page_menu => $queue); } } } if ( $request_path =~ m{^(/Admin/Users|/User/(Summary|History)\.html)} and $admin->child("users") ) { if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ ) { my $id = $DECODED_ARGS->{'id'}; my $obj = RT::User->new( $session{'CurrentUser'} ); $obj->Load($id); if ( $obj and $obj->id ) { my $tabs = PageMenu(); $tabs->child( basics => title => loc('Basics'), path => "/Admin/Users/Modify.html?id=" . $id ); $tabs->child( memberships => title => loc('Memberships'), path => "/Admin/Users/Memberships.html?id=" . $id ); $tabs->child( history => title => loc('History'), path => "/Admin/Users/History.html?id=" . $id ); $tabs->child( 'my-rt' => title => loc('RT at a glance'), path => "/Admin/Users/MyRT.html?id=" . $id ); $tabs->child( 'dashboards-in-menu' => title => loc('Dashboards in menu'), path => '/Admin/Users/DashboardsInMenu.html?id=' . $id, ); if ( RT->Config->Get('Crypt')->{'Enable'} ) { $tabs->child( keys => title => loc('Private keys'), path => "/Admin/Users/Keys.html?id=" . $id ); } $tabs->child( 'summary' => title => loc('User Summary'), path => "/User/Summary.html?id=" . $id ); } } } if ( $request_path =~ m{^/Admin/Groups} ) { if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ ) { my $id = $DECODED_ARGS->{'id'}; my $obj = RT::Group->new( $session{'CurrentUser'} ); $obj->Load($id); if ( $obj and $obj->id ) { my $tabs = PageMenu(); $tabs->child( basics => title => loc('Basics'), path => "/Admin/Groups/Modify.html?id=" . $obj->id ); $tabs->child( members => title => loc('Members'), path => "/Admin/Groups/Members.html?id=" . $obj->id ); $tabs->child( memberships => title => loc('Memberships'), path => "/Admin/Groups/Memberships.html?id=" . $obj->id ); $tabs->child( 'group-rights' => title => loc('Group Rights'), path => "/Admin/Groups/GroupRights.html?id=" . $obj->id ); $tabs->child( 'user-rights' => title => loc('User Rights'), path => "/Admin/Groups/UserRights.html?id=" . $obj->id ); $tabs->child( history => title => loc('History'), path => "/Admin/Groups/History.html?id=" . $obj->id ); } } } if ( $request_path =~ m{^/Admin/CustomFields/} ) { if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ ) { my $id = $DECODED_ARGS->{'id'}; my $obj = RT::CustomField->new( $session{'CurrentUser'} ); $obj->Load($id); if ( $obj and $obj->id ) { my $tabs = PageMenu(); $tabs->child( basics => title => loc('Basics'), path => "/Admin/CustomFields/Modify.html?id=".$id ); $tabs->child( 'group-rights' => title => loc('Group Rights'), path => "/Admin/CustomFields/GroupRights.html?id=" . $id ); $tabs->child( 'user-rights' => title => loc('User Rights'), path => "/Admin/CustomFields/UserRights.html?id=" . $id ); unless ( $obj->IsOnlyGlobal ) { $tabs->child( 'applies-to' => title => loc('Applies to'), path => "/Admin/CustomFields/Objects.html?id=" . $id ); } } } } if ( $request_path =~ m{^/Admin/CustomRoles} ) { if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ ) { my $id = $DECODED_ARGS->{'id'}; my $obj = RT::CustomRole->new( $session{'CurrentUser'} ); $obj->Load($id); if ( $obj and $obj->id ) { my $tabs = PageMenu(); $tabs->child( basics => title => loc('Basics'), path => "/Admin/CustomRoles/Modify.html?id=".$id ); $tabs->child( 'applies-to' => title => loc('Applies to'), path => "/Admin/CustomRoles/Objects.html?id=" . $id ); } } } if ( $request_path =~ m{^/Admin/Scrips/} ) { if ( $m->request_args->{'id'} && $m->request_args->{'id'} =~ /^\d+$/ ) { my $id = $m->request_args->{'id'}; my $obj = RT::Scrip->new( $session{'CurrentUser'} ); $obj->Load($id); my $tabs = PageMenu(); my ( $admin_cat, $create_path_arg, $from_query_param ); my $from_arg = $DECODED_ARGS->{'From'} || q{}; my ($from_queue) = $from_arg =~ /^(\d+)$/; if ( $from_queue ) { $admin_cat = "Queues/Scrips.html?id=$from_queue"; $create_path_arg = "?Queue=$from_queue"; $from_query_param = "&From=$from_queue"; } elsif ( $from_arg eq 'Global' ) { $admin_cat = 'Global/Scrips.html'; $create_path_arg = '?Global=1'; $from_query_param = '&From=Global'; } else { $admin_cat = 'Scrips'; $from_query_param = $create_path_arg = q{}; } my $scrips = $tabs->child( scrips => title => loc('Scrips'), path => "/Admin/${admin_cat}" ); $scrips->child( select => title => loc('Select'), path => "/Admin/${admin_cat}" ); $scrips->child( create => title => loc('Create'), path => "/Admin/Scrips/Create.html${create_path_arg}" ); $tabs->child( basics => title => loc('Basics') => path => "/Admin/Scrips/Modify.html?id=" . $id . $from_query_param ); $tabs->child( 'applies-to' => title => loc('Applies to'), path => "/Admin/Scrips/Objects.html?id=" . $id . $from_query_param ); } elsif ( $request_path =~ m{^/Admin/Scrips/(index\.html)?$} ) { PageMenu->child( select => title => loc('Select') => path => "/Admin/Scrips/" ); PageMenu->child( create => title => loc('Create') => path => "/Admin/Scrips/Create.html" ); } elsif ( $request_path =~ m{^/Admin/Scrips/Create\.html$} ) { my ($queue) = $DECODED_ARGS->{'Queue'} && $DECODED_ARGS->{'Queue'} =~ /^(\d+)$/; my $global_arg = $DECODED_ARGS->{'Global'}; if ($queue) { PageMenu->child( select => title => loc('Select') => path => "/Admin/Queues/Scrips.html?id=$queue" ); PageMenu->child( create => title => loc('Create') => path => "/Admin/Scrips/Create.html?Queue=$queue" ); } elsif ($global_arg) { PageMenu->child( select => title => loc('Select') => path => "/Admin/Global/Scrips.html" ); PageMenu->child( create => title => loc('Create') => path => "/Admin/Scrips/Create.html?Global=1" ); } else { PageMenu->child( select => title => loc('Select') => path => "/Admin/Scrips" ); PageMenu->child( create => title => loc('Create') => path => "/Admin/Scrips/Create.html" ); } } } if ( $request_path =~ m{^/Admin/Global/Scrips\.html} ) { my $tabs = PageMenu(); $tabs->child( select => title => loc('Select'), path => "/Admin/Global/Scrips.html" ); $tabs->child( create => title => loc('Create'), path => "/Admin/Scrips/Create.html?Global=1" ); } if ( $request_path =~ m{^/Admin(?:/Global)?/Conditions} ) { my $tabs = PageMenu(); $tabs->child( select => title => loc('Select'), path => "/Admin/Global/Conditions.html" ); $tabs->child( create => title => loc('Create'), path => "/Admin/Conditions/Create.html" ); } if ( $request_path =~ m{^/Admin(?:/Global)?/Actions} ) { my $tabs = PageMenu(); $tabs->child( select => title => loc('Select'), path => "/Admin/Global/Actions.html" ); $tabs->child( create => title => loc('Create'), path => "/Admin/Actions/Create.html" ); } if ( $request_path =~ m{^/Admin/Global/Templates?\.html} ) { my $tabs = PageMenu(); $tabs->child( select => title => loc('Select'), path => "/Admin/Global/Templates.html" ); $tabs->child( create => title => loc('Create'), path => "/Admin/Global/Template.html?Create=1" ); } if ( $request_path =~ m{^/Admin/Articles/Classes/} ) { my $tabs = PageMenu(); if ( my $id = $DECODED_ARGS->{'id'} ) { my $obj = RT::Class->new( $session{'CurrentUser'} ); $obj->Load($id); if ( $obj and $obj->id ) { my $section = $tabs->child( select => title => loc("Classes"), path => "/Admin/Articles/Classes/" ); $section->child( select => title => loc('Select'), path => "/Admin/Articles/Classes/" ); $section->child( create => title => loc('Create'), path => "/Admin/Articles/Classes/Modify.html?Create=1" ); $tabs->child( basics => title => loc('Basics'), path => "/Admin/Articles/Classes/Modify.html?id=".$id ); $tabs->child( topics => title => loc('Topics'), path => "/Admin/Articles/Classes/Topics.html?id=".$id ); $tabs->child( 'custom-fields' => title => loc('Custom Fields'), path => "/Admin/Articles/Classes/CustomFields.html?id=".$id ); $tabs->child( 'group-rights' => title => loc('Group Rights'), path => "/Admin/Articles/Classes/GroupRights.html?id=".$id ); $tabs->child( 'user-rights' => title => loc('User Rights'), path => "/Admin/Articles/Classes/UserRights.html?id=".$id ); $tabs->child( 'applies-to' => title => loc('Applies to'), path => "/Admin/Articles/Classes/Objects.html?id=$id" ); } } else { $tabs->child( select => title => loc('Select'), path => "/Admin/Articles/Classes/" ); $tabs->child( create => title => loc('Create'), path => "/Admin/Articles/Classes/Modify.html?Create=1" ); } } }; my $build_main_nav = sub { if ($request_path =~ m{^/Asset/}) { PageWidgets()->child( asset_search => raw_html => $m->scomp('/Asset/Elements/Search') ); } else { PageWidgets()->child( simple_search => raw_html => $m->scomp('SimpleSearch') ); PageWidgets()->child( create_ticket => raw_html => $m->scomp('CreateTicket') ); } my $home = Menu->child( home => title => loc('Homepage'), path => '/' ); unless ($session{'dashboards_in_menu'}) { my $dashboards_in_menu = $session{CurrentUser}->UserObj->Preferences( 'DashboardsInMenu', {}, ); unless ($dashboards_in_menu->{dashboards}) { my ($default_dashboards) = RT::System->new( $session{'CurrentUser'} ) ->Attributes ->Named('DashboardsInMenu'); if ($default_dashboards) { $dashboards_in_menu = $default_dashboards->Content; } } $session{'dashboards_in_menu'} = $dashboards_in_menu->{dashboards} || []; } my @dashboards; for my $id ( @{$session{'dashboards_in_menu'}} ) { my $dash = RT::Dashboard->new( $session{CurrentUser} ); my ( $status, $msg ) = $dash->LoadById($id); if ( $status ) { push @dashboards, $dash; } else { $RT::Logger->debug( "Failed to load dashboard $id: $msg, removing from menu" ); $home->RemoveDashboardMenuItem( DashboardId => $id, CurrentUser => $session{CurrentUser}->UserObj ); @{$session{'dashboards_in_menu'}} = grep { $_ != $id } @{$session{'dashboards_in_menu'}}; } } my $dashes = Menu()->child('home'); if (@dashboards) { for my $dash (@dashboards) { $home->child( 'dashboard-' . $dash->id, title => $dash->Name, path => '/Dashboards/' . $dash->id . '/' . $dash->Name ); } } $dashes->child( edit => title => loc('Update This Menu'), path => 'Prefs/DashboardsInMenu.html' ); $dashes->child( more => title => loc('All Dashboards'), path => 'Dashboards/index.html' ); my $dashboard = RT::Dashboard->new( $session{CurrentUser} ); if ( $dashboard->CurrentUserCanCreateAny ) { $dashes->child('dashboard_create' => title => loc('New Dashboard'), path => "/Dashboards/Modify.html?Create=1" ); } my $search = Menu->child( search => title => loc('Search'), path => '/Search/Simple.html' ); my $tickets = $search->child( tickets => title => loc('Tickets'), path => '/Search/Build.html' ); $tickets->child( simple => title => loc('Simple Search'), path => "/Search/Simple.html" ); $tickets->child( new => title => loc('New Search'), path => "/Search/Build.html?NewQuery=1" ); my $recents = $tickets->child( recent => title => loc('Recently Viewed')); for ($session{CurrentUser}->RecentlyViewedTickets) { my ($ticketId, $timestamp) = @$_; my $ticket = RT::Ticket->new($session{CurrentUser}); $ticket->Load($ticketId); if ($ticket->Id) { my $title = $ticket->Subject || loc("(No subject)"); if (length $title > 50) { $title = substr($title, 0, 47); $title =~ s/\s+$//; $title .= "..."; } $title = "#$ticketId: " . $title; $recents->child( "$ticketId" => title => $title, path => "/Ticket/Display.html?id=" . $ticket->Id ); } } $search->child( articles => title => loc('Articles'), path => "/Articles/Article/Search.html" ) if $session{CurrentUser}->HasRight( Right => 'ShowArticlesMenu', Object => RT->System ); $search->child( users => title => loc('Users'), path => "/User/Search.html" ); $search->child( assets => title => loc("Assets"), path => "/Asset/Search/" ) if $session{CurrentUser}->HasRight( Right => 'ShowAssetsMenu', Object => RT->System ); my $reports = Menu->child( reports => title => loc('Reports'), description => loc('Reports summarizing ticket resolution and status'), path => loc('/Reports'), ); $reports->child( resolvedbyowner => title => loc('Resolved by owner'), path => '/Reports/ResolvedByOwner.html', description => loc('Examine tickets resolved in a queue, grouped by owner'), ); $reports->child( resolvedindaterange => title => loc('Resolved in date range'), path => '/Reports/ResolvedByDates.html', description => loc('Examine tickets resolved in a queue between two dates'), ); $reports->child( createdindaterange => title => loc('Created in a date range'), path => '/Reports/CreatedByDates.html', description => loc('Examine tickets created in a queue between two dates'), ); if ($session{CurrentUser}->HasRight( Right => 'ShowArticlesMenu', Object => RT->System )) { my $articles = Menu->child( articles => title => loc('Articles'), path => "/Articles/index.html"); $articles->child( articles => title => loc('Overview'), path => "/Articles/index.html" ); $articles->child( topics => title => loc('Topics'), path => "/Articles/Topics.html" ); $articles->child( create => title => loc('Create'), path => "/Articles/Article/PreCreate.html" ); $articles->child( search => title => loc('Search'), path => "/Articles/Article/Search.html" ); } if ($session{CurrentUser}->HasRight( Right => 'ShowAssetsMenu', Object => RT->System )) { my $assets = Menu->child( "assets", title => loc("Assets"), path => "/Asset/Search/" ); $assets->child( "create", title => loc("Create"), path => "/Asset/CreateInCatalog.html" ); $assets->child( "search", title => loc("Search"), path => "/Asset/Search/" ); } my $tools = Menu->child( tools => title => loc('Tools'), path => '/Tools/index.html' ); $tools->child( my_day => title => loc('My Day'), description => loc('Easy updating of your open tickets'), path => '/Tools/MyDay.html', ); if ( RT->Config->Get('EnableReminders') ) { $tools->child( my_reminders => title => loc('My Reminders'), description => loc('Easy viewing of your reminders'), path => '/Tools/MyReminders.html', ); } if ( $session{'CurrentUser'}->HasRight( Right => 'ShowApprovalsTab', Object => RT->System ) ) { $tools->child( approval => title => loc('Approval'), description => loc('My Approvals'), path => '/Approvals/', ); } if ( $session{'CurrentUser'}->HasRight( Right => 'ShowConfigTab', Object => RT->System ) ) { $build_admin_menu->(Menu()); } my $username = '' . $m->interp->apply_escapes($session{'CurrentUser'}->Name, 'h') . ''; my $about_me = Menu->child( 'preferences' => title => loc('Logged in as [_1]', $username), escape_title => 0, path => '/User/Summary.html?id=' . $session{CurrentUser}->id, sort_order => 99, ); if ( $session{'CurrentUser'}->UserObj && $session{'CurrentUser'}->HasRight( Right => 'ModifySelf', Object => RT->System )) { my $settings = $about_me->child( settings => title => loc('Settings'), path => '/Prefs/Other.html' ); $settings->child( options => title => loc('Preferences'), path => '/Prefs/Other.html' ); $settings->child( about_me => title => loc('About me'), path => '/Prefs/AboutMe.html' ); $settings->child( search_options => title => loc('Search options'), path => '/Prefs/SearchOptions.html' ); $settings->child( myrt => title => loc('RT at a glance'), path => '/Prefs/MyRT.html' ); $settings->child( dashboards_in_menu => title => loc('Dashboards in menu'), path => '/Prefs/DashboardsInMenu.html', ); $settings->child( queue_list => title => loc('Queue list'), path => '/Prefs/QueueList.html' ); my $search_menu = $settings->child( 'saved-searches' => title => loc('Saved Searches') ); my $searches = [ $m->comp( "/Search/Elements/SearchesForObject", Object => RT::System->new( $session{'CurrentUser'} )) ]; my $i = 0; for my $search (@$searches) { $search_menu->child( "search-" . $i++ => title => $search->[1], path => "/Prefs/Search.html?" . $query_string->( name => ref( $search->[2] ) . '-' . $search->[2]->Id ), ); } } if ( $session{'CurrentUser'}->Name && ( !RT->Config->Get('WebRemoteUserAuth') || RT->Config->Get('WebFallbackToRTLogin') )) { $about_me->child( logout => title => loc('Logout'), path => '/NoAuth/Logout.html' ); } if ( $request_path =~ m{^/Dashboards/(\d+)?}) { if ( my $id = ( $1 || $DECODED_ARGS->{'id'} ) ) { my $obj = RT::Dashboard->new( $session{'CurrentUser'} ); $obj->LoadById($id); if ( $obj and $obj->id ) { my $tabs = PageMenu; $tabs->child( basics => title => loc('Basics'), path => "/Dashboards/Modify.html?id=" . $obj->id); $tabs->child( content => title => loc('Content'), path => "/Dashboards/Queries.html?id=" . $obj->id); $tabs->child( subscription => title => loc('Subscription'), path => "/Dashboards/Subscription.html?id=" . $obj->id) if $obj->CurrentUserCanSubscribe; $tabs->child( show => title => loc('Show'), path => "/Dashboards/" . $obj->id . "/" . $obj->Name) } } } if ( $request_path =~ m{^/Ticket/} ) { if ( ( $DECODED_ARGS->{'id'} || '' ) =~ /^(\d+)$/ ) { my $id = $1; my $obj = RT::Ticket->new( $session{'CurrentUser'} ); $obj->Load($id); if ( $obj and $obj->id ) { my $actions = PageMenu()->child( actions => title => loc('Actions'), sort_order => 95 ); my %can = %{ $obj->CurrentUser->PrincipalObj->HasRights( Object => $obj ) }; $can{'_ModifyOwner'} = $obj->CurrentUserCanSetOwner(); my $can = sub { unless ($_[0] eq 'ExecuteCode') { return $can{$_[0]} || $can{'SuperUser'}; } else { return !RT->Config->Get('DisallowExecuteCode') && ( $can{'ExecuteCode'} || $can{'SuperUser'} ); } }; my $tabs = PageMenu(); $tabs->child( bookmark => raw_html => $m->scomp( '/Ticket/Elements/Bookmark', id => $id ), sort_order => 98 ); if ($can->('ModifyTicket')) { $tabs->child( timer => raw_html => $m->scomp( '/Ticket/Elements/PopupTimerLink', id => $id ), sort_order => 99 ); } $tabs->child( display => title => loc('Display'), path => "/Ticket/Display.html?id=" . $id ); $tabs->child( history => title => loc('History'), path => "/Ticket/History.html?id=" . $id ); # comment out until we can do it for an individual custom field #if ( $can->('ModifyTicket') || $can->('ModifyCustomField') ) { $tabs->child( basics => title => loc('Basics'), path => "/Ticket/Modify.html?id=" . $id ); #} if ( $can->('ModifyTicket') || $can->('_ModifyOwner') || $can->('Watch') || $can->('WatchAsAdminCc') ) { $tabs->child( people => title => loc('People'), path => "/Ticket/ModifyPeople.html?id=" . $id ); } if ( $can->('ModifyTicket') ) { $tabs->child( dates => title => loc('Dates'), path => "/Ticket/ModifyDates.html?id=" . $id ); $tabs->child( links => title => loc('Links'), path => "/Ticket/ModifyLinks.html?id=" . $id ); } #if ( $can->('ModifyTicket') || $can->('ModifyCustomField') || $can->('_ModifyOwner') ) { $tabs->child( jumbo => title => loc('Jumbo'), path => "/Ticket/ModifyAll.html?id=" . $id ); #} if ( RT->Config->Get('EnableReminders') ) { $tabs->child( reminders => title => loc('Reminders'), path => "/Ticket/Reminders.html?id=" . $id ); } if ( $can->('ModifyTicket') or $can->('ReplyToTicket') ) { $actions->child( reply => title => loc('Reply'), path => "/Ticket/Update.html?Action=Respond;id=" . $id ); } if ( $can->('ModifyTicket') or $can->('CommentOnTicket') ) { $actions->child( comment => title => loc('Comment'), path => "/Ticket/Update.html?Action=Comment;id=" . $id ); } if ( $can->('ForwardMessage') ) { $actions->child( forward => title => loc('Forward'), path => "/Ticket/Forward.html?id=" . $id ); } my $hide_resolve_with_deps = RT->Config->Get('HideResolveActionsWithDependencies') && $obj->HasUnresolvedDependencies; my $current = $obj->Status; my $lifecycle = $obj->LifecycleObj; my $i = 1; foreach my $info ( $lifecycle->Actions($current) ) { my $next = $info->{'to'}; next unless $lifecycle->IsTransition( $current => $next ); my $check = $lifecycle->CheckRight( $current => $next ); next unless $can->($check); next if $hide_resolve_with_deps && $lifecycle->IsInactive($next) && !$lifecycle->IsInactive($current); my $action = $info->{'update'} || ''; my $url = '/Ticket/'; $url .= "Update.html?". $query_string->( $action ? (Action => $action) : (SubmitTicket => 1, Status => $next), DefaultStatus => $next, id => $id, ); my $key = $info->{'label'} || ucfirst($next); $actions->child( $key => title => loc( $key ), path => $url); } my ($can_take, $tmsg) = $obj->CurrentUserCanSetOwner( Type => 'Take' ); my ($can_steal, $smsg) = $obj->CurrentUserCanSetOwner( Type => 'Steal' ); if ( $can_take ){ $actions->child( take => title => loc('Take'), path => "/Ticket/Display.html?Action=Take;id=" . $id ); } elsif ( $can_steal ){ $actions->child( steal => title => loc('Steal'), path => "/Ticket/Display.html?Action=Steal;id=" . $id ); } # TODO needs a "Can extract article into a class applied to this queue" check $actions->child( 'extract-article' => title => loc('Extract Article'), path => "/Articles/Article/ExtractIntoClass.html?Ticket=".$obj->id, ) if $session{CurrentUser}->HasRight( Right => 'ShowArticlesMenu', Object => RT->System ); if ( defined $session{"tickets"} ) { # we have to update session data if we get new ItemMap my $updatesession = 1 unless ( $session{"tickets"}->{'item_map'} ); my $item_map = $session{"tickets"}->ItemMap; if ($updatesession) { $session{"tickets"}->PrepForSerialization(); } my $search = Menu()->child('search')->child('tickets'); # Don't display prev links if we're on the first ticket if ( $item_map->{$id}->{prev} ) { $search->child( first => title => '<< ' . loc('First'), class => "nav", path => "/Ticket/Display.html?id=" . $item_map->{first}); $search->child( prev => title => '< ' . loc('Prev'), class => "nav", path => "/Ticket/Display.html?id=" . $item_map->{$id}->{prev}); } # Don't display next links if we're on the last ticket if ( $item_map->{$id}->{next} ) { $search->child( next => title => loc('Next') . ' >', class => "nav", path => "/Ticket/Display.html?id=" . $item_map->{$id}->{next}); if ( $item_map->{last} ) { $search->child( last => title => loc('Last') . ' >>', class => "nav", path => "/Ticket/Display.html?id=" . $item_map->{last}); } } } } } } # Scope here so we can share in the Privileged callback my $args = ''; my $has_query = ''; if ( ( $request_path =~ m{^/(?:Ticket|Search)/} && $request_path !~ m{^/Search/Simple\.html} ) || ( $request_path =~ m{^/Search/Simple\.html} && $DECODED_ARGS->{'q'} ) ) { my $search = Menu()->child('search')->child('tickets'); my $current_search = $session{"CurrentSearchHash"} || {}; my $search_id = $DECODED_ARGS->{'SavedSearchLoad'} || $DECODED_ARGS->{'SavedSearchId'} || $current_search->{'SearchId'} || ''; my $chart_id = $DECODED_ARGS->{'SavedChartSearchId'} || $current_search->{SavedChartSearchId}; $has_query = 1 if ( $DECODED_ARGS->{'Query'} or $current_search->{'Query'} ); my %query_args; my %fallback_query_args = ( SavedSearchId => ( $search_id eq 'new' ) ? undef : $search_id, SavedChartSearchId => $chart_id, ( map { my $p = $_; $p => $DECODED_ARGS->{$p} || $current_search->{$p} } qw(Query Format OrderBy Order Page) ), RowsPerPage => ( defined $DECODED_ARGS->{'RowsPerPage'} ? $DECODED_ARGS->{'RowsPerPage'} : $current_search->{'RowsPerPage'} ), ); if ($QueryString) { $args = '?' . $QueryString; } else { my %final_query_args = (); # key => callback to avoid unnecessary work for my $param (keys %fallback_query_args) { $final_query_args{$param} = defined($QueryArgs->{$param}) ? $QueryArgs->{$param} : $fallback_query_args{$param}; } for my $field (qw(Order OrderBy)) { if ( ref( $final_query_args{$field} ) eq 'ARRAY' ) { $final_query_args{$field} = join( "|", @{ $final_query_args{$field} } ); } elsif (not defined $final_query_args{$field}) { delete $final_query_args{$field}; } else { $final_query_args{$field} ||= ''; } } $args = '?' . $query_string->(%final_query_args); } my $current_search_menu; if ( $request_path =~ m{^/Ticket} ) { $current_search_menu = $search->child( current_search => title => loc('Current Search') ); $current_search_menu->path("/Search/Results.html$args") if $has_query; } else { $current_search_menu = PageMenu(); } $current_search_menu->child( edit_search => title => loc('Edit Search'), path => "/Search/Build.html" . ( ($has_query) ? $args : '' ) ); $current_search_menu->child( advanced => title => loc('Advanced'), path => "/Search/Edit.html$args" ); if ($has_query) { $current_search_menu->child( results => title => loc('Show Results'), path => "/Search/Results.html$args" ); } if ( $has_query ) { $current_search_menu->child( bulk => title => loc('Bulk Update'), path => "/Search/Bulk.html$args" ); $current_search_menu->child( chart => title => loc('Chart'), path => "/Search/Chart.html$args" ); my $more = $current_search_menu->child( more => title => loc('Feeds') ); $more->child( spreadsheet => title => loc('Spreadsheet'), path => "/Search/Results.tsv$args" ); my %rss_data = map { $_ => $QueryArgs->{$_} || $fallback_query_args{$_} || '' } qw(Query Order OrderBy); my $RSSQueryString = "?" . $query_string->( Query => $rss_data{Query}, Order => $rss_data{Order}, OrderBy => $rss_data{OrderBy} ); my $RSSPath = join '/', map $m->interp->apply_escapes( $_, 'u' ), $session{'CurrentUser'}->UserObj->Name, $session{'CurrentUser'} ->UserObj->GenerateAuthString( $rss_data{Query} . $rss_data{Order} . $rss_data{OrderBy} ); $more->child( rss => title => loc('RSS'), path => "/NoAuth/rss/$RSSPath/$RSSQueryString"); my $ical_path = join '/', map $m->interp->apply_escapes($_, 'u'), $session{'CurrentUser'}->UserObj->Name, $session{'CurrentUser'}->UserObj->GenerateAuthString( $rss_data{Query} ), $rss_data{Query}; $more->child( ical => title => loc('iCal'), path => '/NoAuth/iCal/'.$ical_path); if ($request_path =~ m{^/Search/Results.html} && #XXX TODO better abstraction $session{'CurrentUser'}->HasRight( Right => 'SuperUser', Object => RT->System )) { my $shred_args = $query_string->( Search => 1, Plugin => 'Tickets', 'Tickets:query' => $rss_data{'Query'}, 'Tickets:limit' => $QueryArgs->{'Rows'}, ); $more->child( shredder => title => loc('Shredder'), path => '/Admin/Tools/Shredder/?' . $shred_args); } } } if ( $request_path =~ m{^/Article/} ) { if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ ) { my $id = $DECODED_ARGS->{'id'}; my $tabs = PageMenu(); $tabs->child( display => title => loc('Display'), path => "/Articles/Article/Display.html?id=".$id ); $tabs->child( history => title => loc('History'), path => "/Articles/Article/History.html?id=".$id ); $tabs->child( modify => title => loc('Modify'), path => "/Articles/Article/Edit.html?id=".$id ); } } if ( $request_path =~ m{^/Articles/} ) { PageWidgets()->child( article_search => raw_html => $m->scomp('/Articles/Elements/GotoArticle') ); PageWidgets()->delete('create_ticket'); PageWidgets()->delete('simple_search'); my $tabs = PageMenu(); $tabs->child( search => title => loc("Search"), path => "/Articles/Article/Search.html" ); $tabs->child( create => title => loc("New Article" ), path => "/Articles/Article/PreCreate.html" ); if ( $request_path =~ m{^/Articles/Article/} and ( $DECODED_ARGS->{'id'} || '' ) =~ /^(\d+)$/ ) { my $id = $1; my $obj = RT::Article->new( $session{'CurrentUser'} ); $obj->Load($id); if ( $obj and $obj->id ) { $tabs->child( display => title => loc("Display"), path => "/Articles/Article/Display.html?id=" . $id ); $tabs->child( history => title => loc('History'), path => '/Articles/Article/History.html?id=' . $id ); if ( $obj->CurrentUserHasRight('ModifyArticle') ) { $tabs->child(modify => title => loc('Modify'), path => '/Articles/Article/Edit.html?id=' . $id ); } } } } if ($request_path =~ m{^/Asset/} and $DECODED_ARGS->{id} and $DECODED_ARGS->{id} !~ /\D/) { my $page = PageMenu(); my $id = $DECODED_ARGS->{id}; my $asset = RT::Asset->new( $session{CurrentUser} ); $asset->Load($id); if ($asset->id) { $page->child("display", title => loc("Display"), path => "/Asset/Display.html?id=$id"); $page->child("history", title => loc("History"), path => "/Asset/History.html?id=$id"); $page->child("basics", title => loc("Basics"), path => "/Asset/Modify.html?id=$id"); $page->child("links", title => loc("Links"), path => "/Asset/ModifyLinks.html?id=$id"); $page->child("people", title => loc("People"), path => "/Asset/ModifyPeople.html?id=$id"); $page->child("dates", title => loc("Dates"), path => "/Asset/ModifyDates.html?id=$id"); for my $grouping (RT::CustomField->CustomGroupings($asset)) { my $cfs = $asset->CustomFields; $cfs->LimitToGrouping( $asset => $grouping ); next unless $cfs->Count; $page->child( "cf-grouping-$grouping", title => loc($grouping), path => "/Asset/ModifyCFs.html?id=$id;Grouping=" . $m->interp->apply_escapes($grouping, 'u'), ); } my $actions = $page->child("actions", title => loc("Actions")); $actions->child("create-linked-ticket", title => loc("Create linked ticket"), path => "/Asset/CreateLinkedTicket.html?Asset=$id"); my $status = $asset->Status; my $lifecycle = $asset->LifecycleObj; for my $action ( $lifecycle->Actions($status) ) { my $next = $action->{'to'}; next unless $lifecycle->IsTransition( $status => $next ); my $check = $lifecycle->CheckRight( $status => $next ); next unless $asset->CurrentUserHasRight($check); my $label = $action->{'label'} || ucfirst($next); $actions->child( $label, title => loc($label), path => "/Asset/Modify.html?id=$id;Update=1;DisplayAfter=1;Status=" . $m->interp->apply_escapes($next, 'u'), class => "asset-lifecycle-action", attributes => { 'data-current-status' => $status, 'data-next-status' => $next, }, ); } } } elsif ($request_path =~ m{^/Asset/Search/}) { my $page = PageMenu(); my %search = map @{$_}, grep defined $_->[1] && length $_->[1], map {ref $DECODED_ARGS->{$_} ? [$_, $DECODED_ARGS->{$_}[0]] : [$_, $DECODED_ARGS->{$_}] } grep /^(?:q|SearchAssets|!?(Name|Description|Catalog|Status|Role\..+|CF\..+)|Order(?:By)?|Page)$/, keys %$DECODED_ARGS; if ( $request_path =~ /Bulk/) { $page->child('search', title => loc('Show Results'), path => '/Asset/Search/?' . (keys %search ? $query_string->(%search) : ''), ); } else { $page->child('bulk', title => loc('Bulk Update'), path => '/Asset/Search/Bulk.html?' . (keys %search ? $query_string->(%search) : ''), ); } $page->child('csv', title => loc('Download Spreadsheet'), path => '/Asset/Search/Results.tsv?' . (keys %search ? $query_string->(%search) : ''), ); } elsif ($request_path =~ m{^/Admin/Global/CustomFields/Catalog-Assets\.html$}) { my $page = PageMenu(); $page->child("create", title => loc("Create New"), path => "/Admin/CustomFields/Modify.html?Create=1;LookupType=" . RT::Asset->CustomFieldLookupType); } elsif ($request_path =~ m{^/Admin/CustomFields(/|/index\.html)?$} and $DECODED_ARGS->{'Type'} and $DECODED_ARGS->{'Type'} eq RT::Asset->CustomFieldLookupType) { my $page = PageMenu(); $page->child("create")->path( $page->child("create")->path . "&LookupType=" . RT::Asset->CustomFieldLookupType ); } elsif ($request_path =~ m{^/Admin/Assets/Catalogs/}) { my $page = PageMenu(); my $actions = $request_path =~ m{/((index|Create)\.html)?$} ? $page : $page->child("catalogs", title => loc("Catalogs"), path => "/Admin/Assets/Catalogs/"); $actions->child("select", title => loc("Select"), path => "/Admin/Assets/Catalogs/"); $actions->child("create", title => loc("Create"), path => "/Admin/Assets/Catalogs/Create.html"); my $catalog = RT::Catalog->new( $session{CurrentUser} ); $catalog->Load($DECODED_ARGS->{id}) if $DECODED_ARGS->{id}; if ($catalog->id and $catalog->CurrentUserCanSee) { my $query = "id=" . $catalog->id; $page->child("modify", title => loc("Basics"), path => "/Admin/Assets/Catalogs/Modify.html?$query"); $page->child("people", title => loc("Roles"), path => "/Admin/Assets/Catalogs/Roles.html?$query"); $page->child("cfs", title => loc("Asset Custom Fields"), path => "/Admin/Assets/Catalogs/CustomFields.html?$query"); $page->child("group-rights", title => loc("Group Rights"), path => "/Admin/Assets/Catalogs/GroupRights.html?$query"); $page->child("user-rights", title => loc("User Rights"), path => "/Admin/Assets/Catalogs/UserRights.html?$query"); $page->child("default-values", title => loc('Default Values'), path => "/Admin/Assets/Catalogs/DefaultValues.html?$query"); } } if ( $request_path =~ m{^/User/(Summary|History)\.html} ) { if (PageMenu()->child('summary')) { # Already set up from having AdminUser and ShowConfigTab; # but rename "Basics" to "Edit" in this context PageMenu()->child( 'basics' )->title( loc('Edit') ); } elsif ( $session{'CurrentUser'}->HasRight( Object => $RT::System, Right => 'ShowUserHistory' ) ) { PageMenu()->child( display => title => loc('Summary'), path => '/User/Summary.html?id=' . $DECODED_ARGS->{'id'} ); PageMenu()->child( history => title => loc('History'), path => '/User/History.html?id=' . $DECODED_ARGS->{'id'} ); } } if ( $request_path =~ /^\/(?:index.html|$)/ ) { PageMenu()->child( edit => title => loc('Edit'), path => '/Prefs/MyRT.html' ); } $m->callback( CallbackName => 'Privileged', Path => $request_path, Search_Args => $args, Has_Query => $has_query, ARGSRef => \%ARGS ); }; my $build_selfservice_nav = sub { my $queues = RT::Queues->new( $session{'CurrentUser'} ); $queues->UnLimit; my $queue_count = 0; my $queue_id; while ( my $queue = $queues->Next ) { next unless $queue->CurrentUserHasRight('CreateTicket'); $queue_id = $queue->id; $queue_count++; last if ( $queue_count > 1 ); } if ( $queue_count > 1 ) { Menu->child( new => title => loc('New ticket'), path => '/SelfService/CreateTicketInQueue.html' ); } elsif ( $queue_id ) { Menu->child( new => title => loc('New ticket'), path => '/SelfService/Create.html?Queue=' . $queue_id ); } my $tickets = Menu->child( tickets => title => loc('Tickets'), path => '/SelfService/' ); $tickets->child( open => title => loc('Open tickets'), path => '/SelfService/' ); $tickets->child( closed => title => loc('Closed tickets'), path => '/SelfService/Closed.html' ); Menu->child( "assets", title => loc("Assets"), path => "/SelfService/Asset/" ) if $session{CurrentUser}->HasRight( Right => 'ShowAssetsMenu', Object => RT->System ); my $username = '' . $m->interp->apply_escapes($session{'CurrentUser'}->Name, 'h') . ''; my $about_me = Menu->child( preferences => title => loc('Logged in as [_1]', $username), escape_title => 0, sort_order => 99, ); if ( $session{'CurrentUser'}->HasRight( Right => 'ModifySelf', Object => RT->System ) ) { $about_me->child( prefs => title => loc('Preferences'), path => '/SelfService/Prefs.html' ); } if ( $session{'CurrentUser'}->Name && ( !RT->Config->Get('WebRemoteUserAuth') || RT->Config->Get('WebFallbackToRTLogin') )) { $about_me->child( logout => title => loc('Logout'), path => '/NoAuth/Logout.html' ); } if ($session{'CurrentUser'}->HasRight( Right => 'ShowArticle', Object => RT->System )) { PageWidgets->child( 'goto-article' => raw_html => $m->scomp('/SelfService/Elements/SearchArticle') ); } PageWidgets->child( goto => raw_html => $m->scomp('/SelfService/Elements/GotoTicket') ); if ($request_path =~ m{^/SelfService/Asset/} and $DECODED_ARGS->{id}) { my $page = PageMenu(); my $id = $DECODED_ARGS->{id}; $page->child("display", title => loc("Display"), path => "/SelfService/Asset/Display.html?id=$id"); $page->child("history", title => loc("History"), path => "/SelfService/Asset/History.html?id=$id"); if (Menu->child("new")) { my $actions = $page->child("actions", title => loc("Actions")); $actions->child("create-linked-ticket", title => loc("Create linked ticket"), path => "/SelfService/Asset/CreateLinkedTicket.html?Asset=$id"); } } $m->callback( CallbackName => 'SelfService', Path => $request_path, ARGSRef => \%ARGS ); }; if ( $request_path !~ m{^/SelfService/} ) { $build_main_nav->(); } else { $build_selfservice_nav->(); } <%ARGS> $show_menu => 1 $QueryString => '' $QueryArgs => {} rt-4.4.2/share/html/Elements/ShowMemberships0000664000175000017500000000636513131430353020730 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
      % while ( my $GroupMember = $GroupMembers->Next ) { % my $Group = RT::Group->new($session{'CurrentUser'}); % $Group->Load($GroupMember->GroupId) or next; % if ($Group->Domain eq 'UserDefined') {
    • <% $Group->Label %>
    • % } elsif ($Group->Domain eq 'SystemInternal') {
    • <% $Group->Label %>
    • % } % }
    <%INIT> my $GroupMembers = RT::GroupMembers->new($session{'CurrentUser'}); $GroupMembers->Limit( FIELD => 'MemberId', VALUE => $UserObj->Id ); my $alias = $GroupMembers->Join( TYPE => 'left', ALIAS1 => 'main', FIELD1 => 'GroupId', TABLE2 => 'Groups', FIELD2 => 'id' ); $GroupMembers->Limit( ALIAS => $alias, FIELD => 'Domain', OPERATOR => '=', VALUE => 'SystemInternal', CASESENSITIVE => 0, ); $GroupMembers->Limit( ALIAS => $alias, FIELD => 'Domain', OPERATOR => '=', VALUE => 'UserDefined', CASESENSITIVE => 0, ); $GroupMembers->OrderByCols( { ALIAS => $alias, FIELD => 'Domain' }, { ALIAS => $alias, FIELD => 'Name' }, ); $GroupMembers->RowsPerPage($Limit) if $Limit; <%ARGS> $UserObj $Limit => undef rt-4.4.2/share/html/Elements/EmailInput0000664000175000017500000000554113131430353017653 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($EntryHint) {
    <&|/l&><% $EntryHint %> % } <%ARGS> $Name $Size => 40 $Default => '' $Autocomplete => 1 $AutocompleteMultiple => 0 $AutocompleteReturn => '' $AutocompleteNobody => 0 $AutocompleteSystem => 0 $EntryHint => '' $Placeholder => '' rt-4.4.2/share/html/Elements/SelectOwnerAutocomplete0000664000175000017500000000711613131430353022420 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Objects => [] $Default => 0 $ValueAttribute => 'Name' $TicketObj => undef <%INIT> $ValueAttribute = 'Name' unless $ValueAttribute =~ /^(?:id|Name)$/; my $value = ''; if ( $Default and not $Default =~ /\D/ ) { my $user = RT::User->new( $session{'CurrentUser'} ); $user->Load($Default); $value = $user->$ValueAttribute; } elsif (defined $TicketObj) { $value = $TicketObj->OwnerObj->$ValueAttribute; } # Map to a string of RT::Ticket-1|RT::Queue-5|... my $limit = join '|', map { join '-', ref($_), ($_->id || '') } @$Objects; my $query = $m->comp('/Elements/QueryString', return => $ValueAttribute, limit => $limit, ); rt-4.4.2/share/html/Elements/EditCustomFieldCustomGroupings0000664000175000017500000000542713131430353023724 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % foreach my $group ( @Groupings ) { <&| /Widgets/TitleBox, title => $group? loc($group) : loc('Custom Fields'), class => $css_class .' '. ($group? CSSClass("$css_class-$group") : ''), id => ($group ? CSSClass("$css_class-$group") : $css_class), hide_empty => 1, %$TitleBoxARGS, &> % $ARGS{CustomFields} = $CustomFieldGenerator->() if $CustomFieldGenerator; <& EditCustomFields, %ARGS, Object => $Object, Grouping => $group &> % } <%ARGS> $Object $CustomFieldGenerator => undef, @Groupings => (RT::CustomField->CustomGroupings( $Object ), '') <%INIT> my $css_class = lc(ref($Object)||$Object); $css_class =~ s/^rt:://; $css_class =~ s/::/-/g; $css_class = CSSClass($css_class); $css_class .= '-info-cfs'; my $TitleBoxARGS = delete $ARGS{TitleBoxARGS} || {}; rt-4.4.2/share/html/Elements/Logo0000664000175000017500000000650713131430353016507 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    % if ($user_logo) { <%loc($ARGS{'LogoAltText'}||RT->Config->Get('LogoAltText'))%> % } else { <%loc($ARGS{'LogoAltText'}||RT->Config->Get('LogoAltText'))%> % } % if ( $ShowName ) { <% $Name || loc("RT for [_1]", RT->Config->Get('rtname')) %> % }
    <%INIT> if ( exists $ARGS{'show_name'} ) { $RT::Logger->warning('show_name argument was renamed, use ShowName'); $ShowName = delete $ARGS{'show_name'}; } my $user_logo = blessed $RT::System ? $RT::System->FirstAttribute('UserLogo') : undef; # If we have the attribute, but no content, we don't really have a user logo if ($user_logo) { my $content = $user_logo->Content; undef $user_logo unless ref $content eq 'HASH' and defined $content->{'data'}; } if ($OnlyCustom and not $user_logo and ($ARGS{LogoURL}||RT->Config->Get('LogoURL')) =~ /request-tracker-logo\.png$/) { return; } <%ARGS> $ShowName => 1 $OnlyCustom => 0 $Name => undef $id => 'logo' rt-4.4.2/share/html/Elements/WidgetBar0000664000175000017500000000425213131430353017452 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % return unless ($menu); % for my $child ($menu->children) { % if (defined $child->raw_html) { <% $child->raw_html |n %> % } else { <% $child->title %>\ % } % } <%ARGS> $menu rt-4.4.2/share/html/Elements/RT__CustomRole/0000775000175000017500000000000013131430353020514 5ustar vagrantvagrantrt-4.4.2/share/html/Elements/RT__CustomRole/ColumnMap0000664000175000017500000000713613131430353022341 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Name => undef $Attr => undef $GenericMap => {} <%ONCE> my $COLUMN_MAP = { Disabled => { title => 'Status', # loc attribute => 'Disabled', value => sub { return $_[0]->Disabled ? $_[0]->loc('Disabled') : $_[0]->loc('Enabled') }, }, map( { my $c = $_; $c => { title => $c, attribute => $c, value => sub { return $_[0]->$c() }, } } qw(Name Description EntryHint) ), MaxValues => { title => 'Number', # loc attribute => 'MaxValues', value => sub { my $v = $_[0]->MaxValues; return !$v ? $_[0]->loc('Multiple') : $v == 1 ? $_[0]->loc('Single') : $v; }, }, AddedTo => { title => 'Added', # loc value => sub { my $collection = $_[0]->AddedTo; return '' unless $collection; $collection->RowsPerPage(10); my $found = 0; my $res = ''; while ( my $record = $collection->Next ) { $res .= ', ' if $res; my $id = ''; $id = $record->Name if $record->_Accessible('Name','read'); $id ||= "#". $record->id; $res .= $id; $found++; } $res .= ', ...' if $found >= 10; return $res; }, }, }; <%INIT> $m->callback( GenericMap => $GenericMap, COLUMN_MAP => $COLUMN_MAP, CallbackName => 'ColumnMap', CallbackOnce => 1 ); return GetColumnMapEntry( Map => $COLUMN_MAP, Name => $Name, Attribute => $Attr ); rt-4.4.2/share/html/Elements/Checkbox0000664000175000017500000000443113131430353017327 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} /> <%ARGS> $Name => undef $Default => undef $True => undef $False => undef $IsChecked => undef <%INIT> $IsChecked = ($Default && $Default =~ /checked/i) ? ' checked="checked" ' : ""; 1; rt-4.4.2/share/html/Elements/ShowPrincipal0000664000175000017500000000550413131430353020365 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# Released under the terms of version 2 of the GNU Public License <%args> $Object $PostUser => undef $Separator => ", " $Link => 1 <%init> if ($Object->isa("RT::Group")) { # Link the users (non-recursively) my @ret = map {$m->scomp("ShowPrincipal", Object => $_->[1], PostUser => $PostUser, Link => $Link)} sort {$a->[0] cmp $b->[0]} map {+[($_->EmailAddress||''), $_]} @{ $Object->UserMembersObj( Recursively => 0 )->ItemsArrayRef }; # But don't link the groups push @ret, sort map {$m->interp->apply_escapes( loc("Group: [_1]", $_->Name), 'h' )} @{ $Object->GroupMembersObj( Recursively => 0)->ItemsArrayRef }; $m->out( join($Separator, @ret) ); } else { $m->comp("/Elements/ShowUser", User => $Object, Link => $Link); $m->out( $PostUser->($Object) ) if $PostUser; } rt-4.4.2/share/html/Elements/MakeClicky0000664000175000017500000001333713131430353017622 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ONCE> use Regexp::Common qw(URI); my $escaper = sub { my $content = shift; RT::Interface::Web::EscapeHTML( \$content ); return $content; }; my %actions = ( default => sub { my %args = @_; return $escaper->($args{value}); }, url => sub { my %args = @_; my $post = ""; $post = ")" if $args{value} !~ /\(/ and $args{value} =~ s/\)$//; $args{value} = $escaper->($args{value}) unless $args{html}; my $result = qq{[}. loc('Open URL') .qq{]}; return $args{value} . qq{ $result$post}; }, url_overwrite => sub { my %args = @_; my $post = ""; $post = ")" if $args{value} !~ /\(/ and $args{value} =~ s/\)$//; $args{value} = $escaper->($args{value}) unless $args{html}; my $result = qq{$args{value}}; return qq{$result$post}; }, ); my @types = ( { name => "httpurl", regex => qr/$RE{URI}{HTTP}{-keep}{-scheme => 'https?'}(?:#[^\s<]+)?(? "url", }, { name => "httpurl_overwrite", regex => qr/$RE{URI}{HTTP}{-keep}{-scheme => 'https?'}(?:#[^\s<]+)?(? "url_overwrite", }, ); my $handle = sub { my %args = @_; for my $rec( @types ) { return $rec->{action}->( %args, all_matches => [ $args{value}, $1, $2, $3, $4, $5, $6, $7, $8, $9 ], ) if $args{value} =~ $rec->{regex}; } }; my $cache; # only defined via callback # Hook to add more Clicky types # XXX Have to have Page argument, as Mason gets caller wrong in Callback? # This happens as we are in <%ONCE> block $m->callback( CallbackPage => "/Elements/MakeClicky", types => \@types, actions => \%actions, handle => \$handle, cache => \$cache, ); # Filter my %active; $active{$_}++ for RT->Config->Get('Active_MakeClicky'); @types = grep $active{$_->{name}}, @types; # Build up the whole match my $regexp = join "|", map $_->{regex}, @types; # Make sure we have a default $actions{default} ||= sub {}; # Anchor the regexes and look up the actions foreach my $type ( @types ) { $type->{regex} = qr/^$type->{regex}$/; $type->{action} = $actions{$type->{action}} || $actions{default}; } <%ARGS> $content => undef $html => undef <%INIT> return unless defined $$content; if ( defined $cache ) { my $cached_content = $cache->(fetch => $content); if ( $cached_content ) { RT->Logger->debug("Found MakeClicky cache"); $$content = $cached_content; return; } } unless ( $regexp ) { RT::Interface::Web::EscapeHTML( $content ) unless $html; return; } my $pos = 0; while ( $$content =~ /($regexp)/gsio ) { my $match = $1; next if $` =~ /\w+=(?:"|")$/; my $skipped_len = pos($$content) - $pos - length($match); if ( $skipped_len > 0 ) { my $plain; if ( $html ) { $plain = substr( $$content, $pos, $skipped_len ); } else { $plain = $escaper->( substr( $$content, $pos, $skipped_len ) ) } substr( $$content, $pos, $skipped_len ) = $plain; $pos += length($plain); } my $plain = $handle->( %ARGS, value => $match, all_matches => [ $1, $2, $3, $4, $5, $6, $7, $8, $9 ], ); substr( $$content, $pos, length($match) ) = $plain; pos($$content) = ( $pos += length($plain) ); } substr( $$content, $pos ) = $escaper->( substr( $$content, $pos ) ) unless ($pos == length $$content) || $html; pos($$content) = 0; $cache->(store => $content) if defined $cache; rt-4.4.2/share/html/Elements/JavascriptConfig0000664000175000017500000000663313131430353021043 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $Config = {}; $Config->{$_} = RT->Config->Get( $_, $session{CurrentUser} ) for qw(rtname WebPath MessageBoxRichText MessageBoxRichTextHeight MessageBoxUseSystemContextMenu); my $CurrentUser = {}; if ($session{CurrentUser} and $session{CurrentUser}->id) { $CurrentUser->{$_} = $session{CurrentUser}->$_ for qw(id Name EmailAddress RealName); $CurrentUser->{Privileged} = $session{CurrentUser}->Privileged ? JSON::true : JSON::false; $Config->{WebHomePath} = RT->Config->Get("WebPath") . (!$session{CurrentUser}->Privileged ? "/SelfService" : ""); } my $Catalog = { quote_in_filename => "Filenames with double quotes can not be uploaded.", #loc attachment_warning_regex => "\\b(re)?attach", #loc shortcut_help_error => "Unable to open shortcut help. Reason:", #loc error => "Error", #loc check => "Check", #loc remove => "Remove", #loc loading => "Loading...", #loc try_again => "Try again", #loc history_scroll_error => "Could not load ticket history. Reason:", #loc }; $_ = loc($_) for values %$Catalog; $m->callback( CallbackName => "Data", CurrentUser => $CurrentUser, Config => $Config, Catalog => $Catalog, ); rt-4.4.2/share/html/Elements/ShowUser0000664000175000017500000000633213131430353017362 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> # $User is an RT::User object # $Address is Email::Address object my $display = RT::User->Format( User => $User, Address => $Address, CurrentUser => $session{CurrentUser}, Format => $style, ); # RT::User->Format does this itself, but we want to make sure we have a $User # if at all possible for the rest of our code below. if ($Address and not $User) { $User = RT::User->new( $session{CurrentUser} ); $User->LoadByEmail( $Address->address ); undef $User unless $User->id; } my %system_user = ( RT->Nobody->id => 1, RT->SystemUser->id => 1, ); $m->callback( ARGSRef => \%ARGS, User => $User, Address => $Address, display => \$display, system_user => \%system_user, CallbackName => 'Modify', ); <%ARGS> $User => undef $Address => undef $style => undef $Link => 1 id ? 'data-user-id="'.$User->id.'"' : "" |n %>>\ % if ($Link and $User and $User->id and not $system_user{$User->id} and $session{CurrentUser}->Privileged) { /User/Summary.html?id=<% $User->id %>">\ <% $display %>\ \ % } else { <% $display %>\ % } \ rt-4.4.2/share/html/Elements/MessageBox0000664000175000017500000001171613131430353017642 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % } % else { <% $Default || '' %><% $message %><% $signature %> % } % $m->callback( %ARGS, CallbackName => 'AfterTextArea' ); % if (!$SuppressAttachmentWarning) { % $m->comp('/Elements/AttachmentWarning', QuotedMessage => $message, Signature => $signature, %ARGS); % } % if ($Type eq 'text/html') { " /> % } <%INIT> my $message = ''; if ( $QuoteTransaction ) { my $transaction = RT::Transaction->new( $session{'CurrentUser'} ); $transaction->Load( $QuoteTransaction ); $message = $transaction->Content( Quote => 1, Type => $Type ); } my $signature = $session{'CurrentUser'}->UserObj->Signature // ""; if ( $IncludeSignature and $signature =~ /\S/ ) { $signature =~ s/\n*$//; if ($Type eq 'text/html') { $signature =~ s/&/&/g; $signature =~ s//>/g; $signature =~ s/"/"/g; # "//; $signature =~ s/'/'/g; # '//; $signature =~ s{\n}{
    }g; $signature = "

    -- 
    $signature

    "; } else { $signature = "\n\n-- \n". $signature . "\n"; } if ($message =~ /\S/) { if (RT->Config->Get('SignatureAboveQuote', $session{CurrentUser})) { $signature .= $Type eq 'text/html' ? "
    " : "\n"; } else { $signature = ($Type eq 'text/html' ? "" : "\n") . $signature; } } } else { $signature = ''; } # wrap="something" seems to really break IE + richtext my $wrap_type = $Type eq 'text/html' ? '' : 'wrap="soft"'; # If there's no cols specified, we want to set the width to 100% in CSS my $width_attr; if ($Width) { $width_attr = 'cols'; } else { $width_attr = 'style'; $Width = 'width: 100%'; } <%ARGS> $QuoteTransaction => undef $Name => 'Content' $Default => '' $Width => RT->Config->Get('MessageBoxWidth', $session{'CurrentUser'} ) $Height => RT->Config->Get('MessageBoxHeight', $session{'CurrentUser'} ) || 15 $IncludeSignature => RT->Config->Get('MessageBoxIncludeSignature'); $IncludeArticle => 1; $Type => RT->Config->Get('MessageBoxRichText', $session{'CurrentUser'}) ? 'text/html' : 'text/plain'; $SuppressAttachmentWarning => 0 $Placeholder => '' rt-4.4.2/share/html/Elements/CryptStatus0000664000175000017500000001621213131430353020106 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Message $WarnUnsigned => undef $Reverify => 1 <%INIT> my @runs; my $needs_unsigned_warning = $WarnUnsigned; my @protocols = RT::Crypt->EnabledProtocols; my $re_protocols = join '|', map "\Q$_\E", @protocols; foreach ( $Message->SplitHeaders ) { if ( s/^X-RT-($re_protocols)-Status:\s*//io ) { push @runs, [ $1, RT::Crypt->ParseStatus( Protocol => "$1", Status => $_ ) ]; } $needs_unsigned_warning = 0 if /^X-RT-Incoming-Signature:/; # if this is not set, then the email is generated by RT, and so we don't # need "email is unsigned" warnings $needs_unsigned_warning = 0 if not /^Received:/; } return unless @runs or $needs_unsigned_warning; my $reverify_cb = sub { my $top = shift; my $txn = $top->TransactionObj; unless ( $txn && $txn->id ) { return (0, "Couldn't get transaction of attachment #". $top->id); } my $attachments = $txn->Attachments->Clone; $attachments->Limit( FIELD => 'ContentType', VALUE => 'application/x-rt-original-message' ); my $original = $attachments->First; unless ( $original ) { return (0, "Couldn't find attachment with original email of transaction #". $txn->id); } my $parser = RT::EmailParser->new(); $parser->SmartParseMIMEEntityFromScalar( Message => $original->Content, Decode => 0, Exact => 1, ); my $entity = $parser->Entity; unless ( $entity ) { return (0, "Couldn't parse content of attachment #". $original->id); } my @res = RT::Crypt->VerifyDecrypt( Entity => $entity ); return (0, "Content of attachment #". $original->id ." is not signed and/or encrypted") unless @res; $top->DelHeader("X-RT-$_-Status") for RT::Crypt->Protocols; $top->AddHeader(map { ("X-RT-". $_->{Protocol} ."-Status" => $_->{'status'} ) } @res); $top->DelHeader("X-RT-Privacy"); my %protocols; $protocols{$_->{Protocol}}++ for @res; $top->AddHeader('X-RT-Privacy' => $_ ) for sort keys %protocols; $top->DelHeader('X-RT-Incoming-Signature'); my @status = RT::Crypt->ParseStatus( Protocol => $res[0]{'Protocol'}, Status => $res[0]{'status'}, ); for ( @status ) { if ( $_->{'Operation'} eq 'Verify' && $_->{'Status'} eq 'DONE' ) { $top->AddHeader( 'X-RT-Incoming-Signature' => $_->{'UserString'} ); $needs_unsigned_warning = 0; } } return (1, "Reverified original message"); }; my @messages; foreach my $run ( @runs ) { my $protocol = shift @$run; $protocol = $RT::Crypt::PROTOCOLS{lc $protocol}; foreach my $line ( @$run ) { if ( $line->{'Operation'} eq 'KeyCheck' ) { next unless $Reverify; # if a public key was missing during verification then we want try again next unless $line->{'KeyType'} eq 'public' && $line->{'Status'} eq 'MISSING'; # but only if we have key my %key = RT::Crypt->GetPublicKeyInfo( Protocol => $protocol, Key => $line->{'Key'} ); if ( $key{'info'} ) { my ($status, $msg) = $reverify_cb->($Message); unless ($status) { $RT::Logger->error($msg); } else { return $m->comp('SELF', %ARGS, Reverify => 0); } } else { push @messages, { Tag => $protocol, Classes => [qw/keycheck bad/], Value => $m->interp->apply_escapes( loc( "Public key '0x[_1]' is required to verify signature", $line->{'Key'} ), 'h'), }; } } elsif ( $line->{'Operation'} eq 'PassphraseCheck' ) { next if $line->{'Status'} eq 'DONE'; push @messages, { Tag => $protocol, Classes => ['passphrasecheck', lc $line->{Status}], Value => $m->interp->apply_escapes( loc( $line->{'Message'} ), 'h'), }; } elsif ( $line->{'Operation'} eq 'Decrypt' ) { push @messages, { Tag => $protocol, Classes => ['decrypt', lc $line->{Status}], Value => $m->interp->apply_escapes( loc( $line->{'Message'} ), 'h'), }; } elsif ( $line->{'Operation'} eq 'Verify' ) { push @messages, { Tag => $protocol, Classes => ['verify', lc $line->{Status}, 'trust-'.($line->{Trust} || 'UNKNOWN')], Value => $m->interp->apply_escapes( loc( $line->{'Message'} ), 'h'), }; } else { next if $line->{'Status'} eq 'DONE'; push @messages, { Tag => $protocol, Classes => [lc $line->{Operation}, lc $line->{Status}], Value => $m->interp->apply_escapes( loc( $line->{'Message'} ), 'h'), } } } } push @messages, { Tag => "Signing", Classes => ['verify', 'bad'], Value => loc('Warning! This is NOT signed!') } if $needs_unsigned_warning; return unless @messages; my %seen; @messages = grep !$seen{$_->{Value}}++, @messages; return @messages; rt-4.4.2/share/html/Elements/ShowCustomFieldBinary0000664000175000017500000000440313131430353022024 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if (my $url = RT->System->ExternalStorageURLFor($Object)) { % } else { % } <% $Object->Content %> <%ARGS> $Object => undef rt-4.4.2/share/html/dhandler0000664000175000017500000000435513131430353015613 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title=>loc("Page not found")&> <& /Elements/Tabs &>

    <&|/l&>The page you requested could not be found

    <&|/l&>Please check the URL and try again. <%init> $r->headers_out->{'Status'} = '404 File not found'; rt-4.4.2/share/html/REST/0000775000175000017500000000000013131430353014655 5ustar vagrantvagrantrt-4.4.2/share/html/REST/1.0/0000775000175000017500000000000013131430353015153 5ustar vagrantvagrantrt-4.4.2/share/html/REST/1.0/NoAuth/0000775000175000017500000000000013131430353016351 5ustar vagrantvagrantrt-4.4.2/share/html/REST/1.0/NoAuth/mail-gateway0000664000175000017500000000603513131430353020661 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%flags> inherit => undef # inhibit UTF8 conversion done in /autohandler <%ARGS> $queue => 1 $action => "correspond" $ticket => undef <%init> $m->callback( %ARGS, CallbackName => 'Pre' ); use RT::Interface::Email; $r->content_type('text/plain; charset=utf-8'); $m->error_format('text'); my ( $status, $error, $Ticket ) = RT::Interface::Email::Gateway( \%ARGS ); if ( $status == 1 ) { $m->out("ok\n"); if ( $Ticket && $Ticket->Id ) { $m->out( 'Ticket: ' . ($Ticket->Id || '') . "\n" ); $m->out( 'Queue: ' . ($Ticket->QueueObj->Name || '') . "\n" ); $m->out( 'Owner: ' . ($Ticket->OwnerObj->Name || '') . "\n" ); $m->out( 'Status: ' . ($Ticket->Status || '') . "\n" ); $m->out( 'Subject: ' . ($Ticket->Subject || '') . "\n" ); $m->out( 'Requestor: ' . ($Ticket->Requestors->MemberEmailAddressesAsString || '') . "\n" ); } } else { if ( $status == -75 ) { $m->out( "temporary failure - $error\n" ); } else { $m->out( "not ok - $error\n" ); } } $m->abort(); rt-4.4.2/share/html/REST/1.0/search/0000775000175000017500000000000013131430353016420 5ustar vagrantvagrantrt-4.4.2/share/html/REST/1.0/search/dhandler0000664000175000017500000002174513131430353020135 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/search/dhandler %# <%ARGS> $query $format => undef $orderby => undef $fields => undef <%INIT> my $type = $m->dhandler_arg; my ( $status, $output ); if ( $type =~ /^(ticket|queue|user|group)$/i ) { $status = "200 Ok"; $output = ''; my $type = lc $1; if ( $type eq 'user' && !$session{CurrentUser}->HasRight( Object => $RT::System, Right => 'AdminUsers', ) ) { $status = "403 Forbidden"; $output = "Permission denied"; goto OUTPUT; } my $class = 'RT::' . ucfirst $type . 's'; my $objects = $class->new( $session{CurrentUser} ); # Parse and validate any field specifications. require RT::Interface::REST; my $field = RT::Interface::REST->field_spec; my ( %fields, @fields ); if ($fields) { $format ||= "l"; unless ( $fields =~ /^(?:$field,)*$field$/ ) { $status = "400 Bad Request"; $output = "Invalid field specification: $fields"; goto OUTPUT; } @fields = map lc, split /\s*,\s*/, $fields; @fields{@fields} = (); unless ( exists $fields{id} ) { unshift @fields, "id"; $fields{id} = (); } } $format ||= "s"; if ( $format !~ /^[isl]$/ ) { $status = "400 Bad request"; $output = "Unknown listing format: $format. (Use i, s, or l.)\n"; goto OUTPUT; } my ( $n, $s ); $n = 0; my @output; if ( $type eq 'group' ) { $objects->LimitToUserDefinedGroups; } if ( defined $query && length $query ) { if ( $type eq 'ticket' ) { my ( $n, $s ); eval { ( $n, $s ) = $objects->FromSQL($query); }; if ( $@ || $n == 0 ) { $s ||= $@; $status = "400 Bad request"; $output = "Invalid query: '$s'.\n"; goto OUTPUT; } } else { require Text::ParseWords; my ( $field, $op, $value ) = Text::ParseWords::shellwords($query); if ( $op !~ /^(?:[!<>]?=|[<>]|(NOT )?LIKE|STARTSWITH|ENDSWITH|MATCHES)$/i ) { $status = "400 Bad Request"; $output = "Invalid operator specification: $op"; goto OUTPUT; } if ( ! $search_whitelist{$type}{lc $field} ) { $status = "400 Bad Request"; $output = "Invalid field specification: $field"; goto OUTPUT; } if ( $field && $op && defined $value ) { if ( $field eq 'Disabled' ) { if ($value) { if ( $type eq 'queue' ) { $objects->FindAllRows; $objects->Limit( FIELD => $field, OPERATOR => uc $op, VALUE => $value ); } else { $objects->LimitToDeleted; } } else { if ( $type eq 'queue' ) { $objects->UnLimit; } else { $objects->LimitToEnabled; } } } else { $objects->Limit( FIELD => $field, OPERATOR => uc $op, VALUE => $value, CASESENSITIVE => 0, ); } } else { $output = "Invalid query specification: $query"; goto OUTPUT; } } } else { if ( $type eq 'queue' ) { $objects->UnLimit; } elsif ( $type eq 'user' ) { $objects->LimitToPrivileged; } } if ($orderby) { my ( $order, $field ) = $orderby =~ /^([\+\-])?(.+)/; $order = $order && $order eq '-' ? 'DESC' : 'ASC'; $objects->OrderBy( FIELD => $field, ORDER => $order ); } while ( my $object = $objects->Next ) { next if $type eq 'user' && ( $object->id == RT->SystemUser->id || $object->id == RT->Nobody->id ); $n++; my $id = $object->Id; if ( $format eq "i" ) { $output .= "$type/" . $id . "\n"; } elsif ( $format eq "s" ) { if ($fields) { my $result = $m->comp( "/REST/1.0/Forms/$type/default", id => $id, format => $format, fields => \%fields ); my ( $notes, $order, $key_values, $errors ) = @$result; # If it's the first time through, add our header if ( $n == 1 ) { $output .= join( "\t", @$order ) . "\n"; } # Cut off the annoying $type/ before the id; $key_values->{'id'} = $id; $output .= join( "\t", map { ref $key_values->{$_} eq 'ARRAY' ? join( ', ', @{ $key_values->{$_} } ) : $key_values->{$_} } @$order ) . "\n"; } else { if ( $type eq 'ticket' ) { $output .= $object->Id . ": " . $object->Subject . "\n"; } else { $output .= $object->Id . ": " . $object->Name . "\n"; } } } else { my $d = $m->comp( "/REST/1.0/Forms/$type/default", id => $id, format => $format, fields => \%fields ); my ( $c, $o, $k, $e ) = @$d; push @output, [ $c, $o, $k ]; } } if ( $n == 0 && $format ne "i" ) { $output = "No matching results.\n"; } $output = form_compose( \@output ) if @output; } else { $status = "500 Server Error"; $output = "Unsupported object type."; goto OUTPUT; } OUTPUT: $m->out("RT/". $RT::VERSION . " " . $status ."\n\n"); $m->out($output ); <%ONCE> my %search_whitelist = ( queue => { map { lc $_ => 1 } grep { $RT::Record::_TABLE_ATTR->{'RT::Queue'}{$_}{read} } keys %{ $RT::Record::_TABLE_ATTR->{'RT::Queue'} } }, user => { disabled => 1, map { lc $_ => 1 } grep { $RT::Record::_TABLE_ATTR->{'RT::User'}{$_}{read} } keys %{ $RT::Record::_TABLE_ATTR->{'RT::User'} } }, group => { disabled => 1, map { lc $_ => 1 } grep { $RT::Record::_TABLE_ATTR->{'RT::Group'}{$_}{read} } keys %{ $RT::Record::_TABLE_ATTR->{'RT::Group'} } } ); rt-4.4.2/share/html/REST/1.0/dhandler0000664000175000017500000002501013131430353016655 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/dhandler %# <%ARGS> @id => () $fields => undef $format => undef $content => undef <%INIT> use RT::Interface::REST; my $output = ""; my $status = "200 Ok"; my $object = $m->dhandler_arg; my $name = qr{[\w.-]+}; my $list = '(?:(?:\d+-)?\d+,)*(?:\d+-)?\d+'; my $label = '[^,\\/]+'; my $field = RT::Interface::REST->field_spec; my $labels = "(?:$label,)*$label"; # We must handle requests such as the following: # # 1. http://.../REST/1.0/show (with a list of object specifications). # 2. http://.../REST/1.0/edit (with a self-contained list of forms). # 3. http://.../REST/1.0/ticket/show (implicit type specification). # http://.../REST/1.0/ticket/edit # 4. http://.../REST/1.0/ticket/nn (all possibly with a single form). # http://.../REST/1.0/ticket/nn/history # http://.../REST/1.0/ticket/nn/comment # http://.../REST/1.0/ticket/nn/attachment/1 # # Objects are specified by their type, and either a unique numeric ID, # or a unique name (e.g. ticket/1, queue/foo). Multiple objects of the # same type may be specified by a comma-separated list of identifiers # (e.g., user/ams,rai or ticket/1-3,5-7). # # Ultimately, we want a list of object specifications to operate upon. # The URLs in (4) provide enough information to identify an object. We # will assemble submitted information into that format in other cases. # my (@objects, $forms); my $utype; if ($object eq 'show' || # $REST/show (($utype) = ($object =~ m{^($name)/show$}))) # $REST/ticket/show { # We'll convert type/range specifications ("ticket/1-3,7-9/history") # into a list of singular object specifications ("ticket/1/history"). # If the URL specifies a type, we'll accept only that one. foreach my $id (@id) { $id =~ s|^(?:$utype/)?|$utype/| if $utype; if (my ($type, $oids, $extra) = ($id =~ m#^($name)/($list|$labels)(?:(/.*))?$#o)) { $extra ||= ''; my ($attr, $args) = $extra =~ m{^(?:/($name)(?:/(.*))?)?$}o; my $tids; if ($attr and $attr eq 'history' and $args) { ($tids) = $args =~ m#id/(\d.*)#o; } # expand transaction and attachment range specifications # (if applicable) foreach my $oid (expand_list($oids)) { if ($tids) { push(@objects, "$type/$oid/$attr/id/$_") for expand_list($tids); } else { push(@objects, "$type/$oid$extra"); } } } else { $status = "400 Bad Request"; $output = "Invalid object ID specified: '$id'"; goto OUTPUT; } } } elsif ($object eq 'edit' || # $REST/edit (($utype) = ($object =~ m{^($name)/edit$}))) # $REST/ticket/edit { # We'll make sure each of the submitted forms is syntactically valid # and sufficiently identifies an object to operate upon, then add to # the object list as above. my @output; $forms = form_parse($content); foreach my $form (@$forms) { my ($c, $o, $k, $e) = @$form; if ($e) { push @output, [ "# Syntax error.", $o, $k, $e ]; } else { my ($type, $id); # Look for matching types in the ID, form, and URL. $type = $utype || $k->{id}; $type =~ s|^([^/]+)/\d+$|$1| if !$utype; $type =~ s|^(?:$utype)?|$utype/| if $utype; $type =~ s|/$|| if $type; if (exists $k->{id}) { $id = $k->{id}; $id =~ s|^(?:$type/)?|$type/| if $type; if ($id =~ m#^$name/(?:$label|\d+)(?:/.*)?#o) { push @objects, $id; } else { push @output, [ "# Invalid object ID: '$id'", $o, $k, $e ]; } } else { push @output, [ "# No object ID specified.", $o, $k, $e ]; } } } # If we saw any errors at this stage, we won't process any part of # the submitted data. if (@output) { unshift @output, [ "# Please resubmit with errors corrected." ]; $status = "409 Syntax Error"; $output = form_compose(\@output); goto OUTPUT; } } else { # We'll assume that this is in the correct format already. Otherwise # it will be caught by the loop below. push @objects, $object; if ($content) { $forms = form_parse($content); if (@$forms > 1) { $status = "400 Bad Request"; $output = "You may submit only one form to this object."; goto OUTPUT; } my ($c, $o, $k, $e) = @{ $forms->[0] }; if ($e) { $status = "409 Syntax Error"; $output = form_compose([ ["# Syntax error.", $o, $k, $e] ]); goto OUTPUT; } } } # Make sure we have something to do. unless (@objects) { $status = "400 Bad Request"; $output = "No objects specified."; goto OUTPUT; } # Parse and validate any field specifications. my (%fields, @fields); if ($fields) { unless ($fields =~ /^(?:$field,)*$field$/) { $status = "400 Bad Request"; $output = "Invalid field specification: $fields"; goto OUTPUT; } @fields = map lc, split /\s*,\s*/, $fields; @fields{@fields} = (); unless (exists $fields{id}) { unshift @fields, "id"; $fields{id} = (); } # canonicalize cf-foo to cf.{foo} for my $field (@fields) { if ($field =~ /^(c(?:ustom)?f(?:ield)?)-(.+)/) { $fields{"cf.{$2}"} = delete $fields{"$1-$2"}; # overwrite the element in @fields $field = "cf.{$2}"; } } } my (@comments, @output); foreach $object (@objects) { my ($handler, $type, $id, $attr, $args); my ($c, $o, $k, $e) = ("", ["id"], {id => $object}, 0); my $i = 0; if ($object =~ m{^($name)/(\d+|$label)(?:/($name)(?:/(.*))?)?$}o || $object =~ m{^($name)/(new)$}o) { ($type, $id, $attr, $args) = ($1, $2, ($3 || 'default'), $4); $handler = "Forms/$type/$attr"; unless ($m->comp_exists($handler)) { $args = defined $args ? "$attr/$args" : $attr; $handler = "Forms/$type/default"; unless ($m->comp_exists($handler)) { $i = 2; $c = "# Unknown object type: $type"; } } elsif ($id ne 'new' && $id !~ /^\d+$/) { my $ns = "Forms/$type/ns"; # Can we resolve named objects? unless ($m->comp_exists($ns)) { $i = 3; $c = "# Objects of type $type must be specified by numeric id."; } else { my ($n, $s) = $m->comp("Forms/$type/ns", id => $id); if ($n <= 0) { $i = 4; $c = "# $s"; } else { $i = 0; $id = $n; } } } else { $i = 0; } } else { $i = 1; $c = "# Invalid object specification: '$object'"; } if ($i != 0) { if ($content) { (undef, $o, $k, $e) = @{ shift @$forms }; } push @output, [ $c, $o, $k ]; next; } unless ($content) { my $d = $m->comp($handler, id => $id, args => $args, format => $format, fields => \%fields); my ($c, $o, $k, $e) = @$d; if (!$e && @$o && keys %fields) { my %lk = map { lc $_ => $_ } keys %$k; @$o = map { $lk{$_} } @fields; foreach my $key (keys %$k) { delete $k->{$key} unless exists $fields{lc $key}; } } push(@output, [ $c, $o, $k ]) if ($c || @$o || keys %$k); } else { my ($c, $o, $k, $e) = @{ shift @$forms }; my $d = $m->comp($handler, id => $id, args => $args, format => $format, changes => $k); ($c, $o, $k, $e) = @$d; # We won't pass $e through to compose, trusting instead that the # handler added suitable comments for the user. if ($e) { if (@$o) { $status = "409 Syntax Error"; } else { $status = "400 Bad Request"; } push @output, [ $c, $o, $k ]; } else { push @comments, $c; } } } unshift(@output, [ join "\n", @comments ]) if @comments; $output = form_compose(\@output); OUTPUT: $m->out("RT/".$RT::VERSION ." ".$status ."\n\n$output\n") if ($output || $status !~ /^200/); return; rt-4.4.2/share/html/REST/1.0/logout0000664000175000017500000000423413131430353016412 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%PERL> if (keys %session) { RT::Interface::Web::InstantiateNewSession(); $session{CurrentUser} = RT::CurrentUser->new(); } RT/<% $RT::VERSION %> 200 Ok rt-4.4.2/share/html/REST/1.0/ticket/0000775000175000017500000000000013131430353016436 5ustar vagrantvagrantrt-4.4.2/share/html/REST/1.0/ticket/merge0000664000175000017500000000622513131430353017465 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/ticket/merge %# <%ARGS> $id => undef $into <%INIT> use RT::Interface::REST; my $output; my $status = "200 Ok"; my $ticket = RT::Ticket->new($session{CurrentUser}); my $object = $r->path_info; # http://.../REST/1.0/ticket/merge/1 $object =~ s#^/##; if ($id && $object && $id != $object) { $output = "Different ids in URL (`$object') and submitted form (`$id').\n"; $status = "400 Bad Request"; goto OUTPUT; } $id ||= $object; unless ($id =~ /^\d+$/ && $into =~ /^\d+$/) { my $bad = ($id !~ /^\d+$/) ? $id : $into; $output = $r->path_info. "\n"; $output .= "Invalid ticket id: `$bad'.\n"; $status = "400 Bad Request"; goto OUTPUT; } $ticket->Load($id); unless ($ticket->Id) { $output = "Couldn't load ticket id: `$id'.\n"; $status = "404 Ticket not found"; goto OUTPUT; } unless ($ticket->CurrentUserHasRight('ModifyTicket')) { $output = "You are not allowed to modify ticket $id.\n"; $status = "403 Permission denied"; goto OUTPUT; } my ($n, $s) = $ticket->MergeInto($into); if ($n == 0) { $status = "500 Error"; } $output = $s; OUTPUT: RT/<% $RT::VERSION %> <% $status %> <% $output |n %> rt-4.4.2/share/html/REST/1.0/ticket/comment0000664000175000017500000001140113131430353020020 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/ticket/comment %# <%ARGS> $content <%INIT> use MIME::Entity; use RT::Interface::REST; my $ticket = RT::Ticket->new($session{CurrentUser}); my $object = $r->path_info; my $status = "200 Ok"; my $output; my $action; # http://.../REST/1.0/ticket/1/comment my ($c, $o, $k, $e) = @{ form_parse($content)->[0] }; if ($e || !$o) { if (!$o) { $output = "Empty form submitted.\n"; } else { $c = "# Syntax error."; $output = form_compose([[$c, $o, $k, $e]]); } $status = "400 Bad Request"; goto OUTPUT; } $object =~ s#^/##; $object ||= $k->{Ticket}; unless ($object =~ /^\d+/) { $output = "Invalid ticket id: `$object'.\n"; $status = "400 Bad Request"; goto OUTPUT; } if ($k->{Ticket} && $object ne $k->{Ticket}) { $output = "The submitted form and URL specify different tickets.\n"; $status = "400 Bad Request"; goto OUTPUT; } ($action = $k->{Action}) =~ s/^(.)(.*)$/\U$1\L$2\E/; unless ($action =~ /^(?:Comment|Correspond)$/) { $output = "Invalid action: `$action'.\n"; $status = "400 Bad Request"; goto OUTPUT; } my $text = $k->{Text}; my @atts = @{ vsplit($k->{Attachment}) }; if (!$k->{Text} && @atts == 0) { $status = "400 Bad Request"; $output = "Empty comment with no attachments submitted.\n"; goto OUTPUT; } my $cgi = $m->cgi_object; my $ent = MIME::Entity->build( Type => "multipart/mixed", 'X-RT-Interface' => 'REST', ); $ent->attach( Type => "text/plain", Charset => "UTF-8", Data => Encode::encode( "UTF-8", $k->{Text} ), ) if $k->{Text}; { my ($res, $msg) = process_attachments($ent, @atts); unless ( $res ) { $status = "400 Bad Request"; $output = "$msg\n"; goto OUTPUT; } } $ticket->Load($object); unless ($ticket->Id) { $output = "Couldn't load ticket id: `$object'.\n"; $status = "404 Ticket not found"; goto OUTPUT; } unless ($ticket->CurrentUserHasRight('ModifyTicket') || ($action eq "Comment" && $ticket->CurrentUserHasRight("CommentOnTicket")) || ($action eq "Correspond" && $ticket->CurrentUserHasRight("ReplyToTicket"))) { $output = "You are not allowed to $action on ticket $object.\n"; $status = "403 Permission denied"; goto OUTPUT; } my $cc = join ", ", @{ vsplit($k->{Cc}) }; my $bcc = join ", ", @{ vsplit($k->{Bcc}) }; my ($n, $s) = $ticket->$action(MIMEObj => $ent, CcMessageTo => $cc, BccMessageTo => $bcc, TimeTaken => $k->{TimeWorked} || 0); $output = $s; if ($k->{Status}) { my ($status_n, $status_s) = $ticket->SetStatus($k->{'Status'} ); $output .= "\n".$status_s; } OUTPUT: RT/<% $RT::VERSION %> <% $status %> <% $output |n %> rt-4.4.2/share/html/REST/1.0/ticket/link0000664000175000017500000000753213131430353017325 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/ticket/link %# <%ARGS> $id => undef $del => 0 $rel $to <%INIT> use RT::Interface::REST; my $output; my $status = "200 Ok"; my $ticket = RT::Ticket->new($session{CurrentUser}); my $object = $r->path_info; my @fields = qw(DependsOn DependedOnBy RefersTo ReferredToBy HasMember MemberOf); my %fields = map { lc $_ => $_ } @fields; my %lfields = ( HasMember => { Type => 'MemberOf', Mode => 'Base' }, ReferredToBy => { Type => 'RefersTo', Mode => 'Base' }, DependedOnBy => { Type => 'DependsOn', Mode => 'Base' }, MemberOf => { Type => 'MemberOf', Mode => 'Target' }, RefersTo => { Type => 'RefersTo', Mode => 'Target' }, DependsOn => { Type => 'DependsOn', Mode => 'Target' }, ); # http://.../REST/1.0/ticket/link/1 $object =~ s#^/REST/1.0/ticket/link##; if ($id && $object && $id != $object) { $output = "Different ids in URL (`$object') and submitted form (`$id').\n"; $status = "400 Bad Request"; goto OUTPUT; } $id ||= $object; unless ($id =~ /^\d+$/) { $output = $r->path_info. "\n"; $output .= "Invalid ticket id: '$id'.\n"; $status = "400 Bad Request"; goto OUTPUT; } unless (exists $fields{lc $rel}) { $output = "Invalid link: '$rel'.\n"; $status = "400 Bad Request"; goto OUTPUT; } $rel = $fields{lc $rel}; $ticket->Load($id); unless ($ticket->Id) { $output = "Couldn't load ticket id: '$id'.\n"; $status = "404 Ticket not found"; goto OUTPUT; } my $type = $lfields{$rel}->{Type}; my $mode = $lfields{$rel}->{Mode}; my $n = 1; my $op = $del ? "DeleteLink" : "AddLink"; ($n, $output) = $ticket->$op(Type => $type, $mode => $to); if ($n == 0) { $status = "500 Error"; } else { my $action = $del ? "Deleted" : "Created"; $output .= " $action link " . $ticket->Id . " $rel $to"; } OUTPUT: RT/<% $RT::VERSION %> <% $status %> <% $output |n %> rt-4.4.2/share/html/REST/1.0/autohandler0000664000175000017500000000423613131430353017411 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/autohandler %# <%INIT> use RT::Interface::REST; $r->content_type('text/plain; charset=utf-8'); $m->error_format('text'); $m->call_next(); $m->abort(); rt-4.4.2/share/html/REST/1.0/Forms/0000775000175000017500000000000013131430353016241 5ustar vagrantvagrantrt-4.4.2/share/html/REST/1.0/Forms/attachment/0000775000175000017500000000000013131430353020371 5ustar vagrantvagrantrt-4.4.2/share/html/REST/1.0/Forms/attachment/default0000664000175000017500000000746013131430353021747 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/attachment/default %# <%ARGS> $id $args => undef <%INIT> my @data; my ($c, $o, $k, $e) = ("", [], {}, ""); my $attachment = RT::Attachment->new($session{CurrentUser}); $attachment->Load($id); unless ( $attachment->Id ) { return [ "# Attachment $id does not exist.", [], {}, 1 ]; } unless ( $attachment->Id eq $id ) { return [ "# Invalid attachment id: $id", [], {}, 1 ]; } my @arglist = split( '/', $args || "" ); my $content; if ( @arglist and $arglist[0] eq 'content' ) { $c = $attachment->OriginalContent; $r->content_type($attachment->ContentType) if $attachment->ContentType !~ /^text\//; } else { my @data; push @data, [ id => "attachment/" . $attachment->Id ]; push @data, [ Subject => $attachment->Subject ]; push @data, [ Creator => $attachment->Creator ]; push @data, [ Created => $attachment->Created ]; push @data, [ Transaction => $attachment->TransactionId ]; push @data, [ Parent => "attachment/" . $attachment->Parent ]; push @data, [ MessageId => $attachment->MessageId ]; push @data, [ Filename => $attachment->Filename ]; push @data, [ ContentType => $attachment->ContentType ]; push @data, [ ContentEncoding => $attachment->ContentEncoding ]; push @data, [ Headers => $attachment->Headers ]; if ( $attachment->ContentType =~ m|^text/| ) { push @data, [ Content => $attachment->Content ]; } else { push @data, [ Content => "Content is not text and will not be displayed!\n" . "Use \"rt show attachment//content [> file.ext]\" to get the content." ]; } my %k = map {@$_} @data; $o = [ map { $_->[0] } @data ]; $k = \%k; } return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/REST/1.0/Forms/queue/0000775000175000017500000000000013131430353017365 5ustar vagrantvagrantrt-4.4.2/share/html/REST/1.0/Forms/queue/ns0000664000175000017500000000446613131430353017742 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/queue/ns %# <%ARGS> $id <%perl> use RT::Queues; my $queues = RT::Queues->new($session{CurrentUser}); $queues->Limit(FIELD => 'Name', OPERATOR => '=', VALUE => $id, CASESENSITIVE => 0 ); if ($queues->Count == 0) { return (0, "No queue named $id exists."); } return $queues->Next->Id; rt-4.4.2/share/html/REST/1.0/Forms/queue/ticketcustomfields0000664000175000017500000000611613131430353023221 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/queue/ticketcustomfields %# <%ARGS> $id $format => 's' $changes => {} <%perl> my @comments; my ($c, $o, $k, $e) = ("", [], {}, 0); my $queue = RT::Queue->new($session{CurrentUser}); $queue->Load($id); if (!$queue->Id) { return [ "# Queue $id does not exist.", [], {}, 1 ]; } if (%$changes) { $e = 1; $c = "Cannot modify Queue CF definitions via REST"; goto DONE; } my @data; push @data, [ id => "queue/" . $queue->Id ]; my $qcfs = RT::CustomFields->new($session{CurrentUser});; $qcfs->LimitToGlobalOrQueue($id); while ( my $qcf = $qcfs->Next() ) { if ( $format eq "l" ) { my $cfadmin = ( $qcf->SingleValue ? 'SingleValue' : 'MultiValue' ) . $qcf->Type . ( $qcf->Pattern ? ( ' ' . $qcf->FriendlyPattern ) : '' ); push @data, [ $qcf->Name . ' (' . $qcf->Description . ')' => $cfadmin ]; } else { push @data, [ $qcf->Name => "" ]; } } my %k = map {@$_} @data; $o = [ map {$_->[0]} @data ]; $k = \%k; DONE: $c ||= join("\n", @comments) if @comments; return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/REST/1.0/Forms/queue/customfields0000664000175000017500000000601713131430353022015 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/queue/customfields %# <%ARGS> $id $format => 's' $changes => {} <%perl> my @comments; my ($c, $o, $k, $e) = ("", [], {}, 0); my $queue = RT::Queue->new($session{CurrentUser}); $queue->Load($id); if (!$queue->Id) { return [ "# Queue $id does not exist.", [], {}, 1 ]; } if (%$changes) { $e = 1; $c = "Cannot modify Queue CF definitions via REST"; goto DONE; } my @data; push @data, [ id => "queue/" . $queue->Id ]; my $qcfs = $queue->CustomFields; while ( my $qcf = $qcfs->Next() ) { if ( $format eq "l" ) { my $cfadmin = ( $qcf->SingleValue ? 'SingleValue' : 'MultiValue' ) . $qcf->Type . ( $qcf->Pattern ? ( ' ' . $qcf->FriendlyPattern ) : '' ); push @data, [ $qcf->Name . ' (' . $qcf->Description . ')' => $cfadmin ]; } else { push @data, [ $qcf->Name => "" ]; } } my %k = map {@$_} @data; $o = [ map { $_->[0] } @data ]; $k = \%k; DONE: $c ||= join("\n", @comments) if @comments; return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/REST/1.0/Forms/queue/default0000664000175000017500000001273313131430353020742 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/queue/default %# <%ARGS> $id $format => 's' $fields => undef # these are the fields passed to the rt "-f" flag. $changes => {} <%perl> my @comments; my ($c, $o, $k, $e) = ("", [], {}, 0); my %data = %$changes; my $queue = RT::Queue->new($session{CurrentUser}); my @fields = qw(Name Description CorrespondAddress CommentAddress Disabled); if ( $fields && %$fields ) { @fields = grep { exists $fields->{ lc $_ } } @fields; } my %fields = map { lc $_ => $_ } @fields; if ($id ne 'new') { $queue->Load($id); if (!$queue->Id) { return [ "# Queue $id does not exist.", [], {}, 1 ]; } } else { if (keys %data == 0) { return [ "# Required: Name", [ "id", @fields ], { id => 'queue/new', Name => '', Description => "", CommentAddress => "", CorrespondAddress => "", }, 0 ]; } else { my %v; my %create = %fields; foreach my $k (keys %data) { if (exists $create{lc $k}) { $v{$create{lc $k}} = delete $data{$k}; } } if ($v{Name} eq '') { my %o = keys %$changes; delete @o{"id", @fields}; return [ "# Please set the queue name.", [ "id", @fields, keys %o ], $changes, 1 ]; } $queue->Create(%v); unless ($queue->Id) { return [ "# Could not create queue.", [], {}, 1 ]; } delete $data{id}; $id = $queue->Id; push(@comments, "# Queue $id created."); goto DONE if keys %data == 0; } } if ( keys %data == 0) { my @data; push @data, [ id => "queue/".$queue->Id ]; foreach my $key (@fields) { push @data, [ $key => $queue->$key ]; } # Custom fields my $CustomFields = $queue->CustomFields; while ( my $CustomField = $CustomFields->Next() ) { next unless ( !%$fields || exists $fields->{ lc "CF-" . $CustomField->Name } ); next unless $CustomField->CurrentUserHasRight('SeeCustomField'); my $CFvalues = $queue->CustomFieldValues( $CustomField->Id ); my @CFvalues; while ( my $CFvalue = $CFvalues->Next() ) { push @CFvalues, $CFvalue->Content; } push @data, [ "CF-" . $CustomField->Name => \@CFvalues ]; } my %k = map {@$_} @data; $o = [ map {$_->[0]} @data ]; $k = \%k; } else { my ($get, $set, $key, $val, $n, $s); my $updated; foreach $key (keys %data) { $val = $data{$key}; $key = lc $key; $n = 1; if (exists $fields{$key}) { $key = $fields{$key}; $set = "Set$key"; next if $val eq $queue->$key; ($n, $s) = $queue->$set($val); } elsif ($key ne 'id') { $n = 0; $s = "Unknown field."; } SET: if ($n == 0) { $e = 1; push @comments, "# $key: $s"; unless (@$o) { my %o = keys %$changes; delete @o{"id", @fields}; @$o = ("id", @fields, keys %o); $k = $changes; } } else { $updated ||= 1; } } push(@comments, "# Queue $id updated.") if $updated; } DONE: $c ||= join("\n", @comments) if @comments; return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/REST/1.0/Forms/ticket/0000775000175000017500000000000013131430353017524 5ustar vagrantvagrantrt-4.4.2/share/html/REST/1.0/Forms/ticket/merge0000664000175000017500000000561013131430353020550 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/ticket/merge %# <%ARGS> $id $args <%INIT> use RT::Interface::REST; my $into = $args; my $ticket = RT::Ticket->new($session{CurrentUser}); my $ticket_into = RT::Ticket->new($session{CurrentUser}); my ($c, $o, $k, $e) = ("", [], {}, 0); # http://.../REST/1.0/ticket/1/merge/6 (merges ticket 1 into ticket 6) $ticket->Load($id); if (!$ticket->Id) { $e = 1; $c = "# Ticket $id does not exist."; goto OUTPUT; } $ticket_into->Load($into); if (!$ticket_into->Id) { $e = 1; $c = "# Ticket $into does not exist."; goto OUTPUT; } if (!$ticket->CurrentUserHasRight('ModifyTicket')) { $e = 1; $c = "# You are not allowed to modify ticket $id."; goto OUTPUT; } my ($n, $s) = $ticket->MergeInto($into); if ($n == 0) { $e = 1; $c = "# Could not complete the merge."; } else { $c = "# Merge completed."; } OUTPUT: return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/REST/1.0/Forms/ticket/take0000664000175000017500000001006613131430353020376 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/ticket/take %# <%ARGS> $id %changes <%INIT> use RT::Interface::REST; my $ticket = RT::Ticket->new($session{CurrentUser}); my ($c, $o, $k, $e) = ("", [], {}, 0); # http://.../REST/1.0/ticket/1/take $ticket->Load( $id ); unless ( $ticket->Id ) { $e = 1; $c = "# Ticket $id does not exist."; goto OUTPUT; } my $action; my @comments; ($action = $changes{Action}) =~ s/^(.)(.*)$/\U$1\L$2\E/; unless ($action =~ /^(?:Take|Steal|Untake)$/) { $e = 1; $c = "# Invalid action: `$action'."; goto OUTPUT; } my ($status, $msg) = $ticket->$action(); $c = "# $msg"; $e = 1 unless $status; goto OUTPUT; #unless ($ticket->CurrentUserHasRight('ModifyTicket') || # ( ($action eq "Take" || $action eq 'Untake') && # $ticket->CurrentUserHasRight("TakeTicket")) || # ($action eq "Steal" && # $ticket->CurrentUserHasRight("StealTicket"))) #{ # $e = 1; # $c = "# You are not allowed to $action ticket $id."; # goto OUTPUT; #} #if ( keys %changes ) { #} #else { # # process the form data structure # my ($key, $val); # # foreach $key (keys %data) { # $val = $data{$key}; # # if ($key =~ /^force$/i) { # if ($val !~ /^(?:0|1)$/) { # push(@comments, "# invalid value for 'force': $val"); # goto DONE; # } # my ($ret_id, $msg); # # ### take # if ($val == 0) { # ($ret_id, $msg) = $ticket->Take; # if (!$ret_id) { # push(@comments, "# Couldn't take ticket $id: $msg"); # goto DONE; # } # push(@comments, "# Ticket $id taken."); # } # ### steal # else { # ($ret_id, $msg) = $ticket->Steal; # if (!$ret_id) { # push(@comments, "# Couldn't steal ticket $id: $msg"); # goto DONE; # } # push(@comments, "# Ticket $id stolen."); # } # } # } #} OUTPUT: return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/REST/1.0/Forms/ticket/comment0000664000175000017500000001011213131430353021104 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/ticket/comment %# <%ARGS> $id %changes <%INIT> use MIME::Entity; use RT::Interface::REST; $RT::Logger->debug("Got ticket id=$id for comment"); $RT::Logger->debug("Got args @{[keys(%changes)]}."); my $ticket = RT::Ticket->new($session{CurrentUser}); my ($c, $o, $k, $e) = ("", [], {}, 0); # http://.../REST/1.0/ticket/1/comment $ticket->Load($id); if (!$ticket->Id) { $e = 1; $c = "# Ticket $id does not exist."; goto OUTPUT; } my $action; ($action = $changes{Action}) =~ s/^(.)(.*)$/\U$1\L$2\E/; unless ($action =~ /^(?:Comment|Correspond)$/) { $e = 1; $c = "# Invalid action: `$action'."; goto OUTPUT; } my $text = $changes{Text}; my @atts = @{ vsplit($changes{Attachment}) }; if (!$changes{Text} && @atts == 0) { $e = 1; $c = "# Empty comment with no attachments submitted."; goto OUTPUT; } my $ent = MIME::Entity->build( Type => "multipart/mixed", 'X-RT-Interface' => 'REST', ); $ent->attach( Type => $changes{'Content-Type'} || 'text/plain', Charset => "UTF-8", Data => Encode::encode("UTF-8", $changes{Text} ), ) if $changes{Text}; { my ($status, $msg) = process_attachments($ent, @atts); unless ( $status ) { $e = 1; $c = "# $msg"; goto OUTPUT; } } unless ($ticket->CurrentUserHasRight('ModifyTicket') || ($action eq "Comment" && $ticket->CurrentUserHasRight("CommentOnTicket")) || ($action eq "Correspond" && $ticket->CurrentUserHasRight("ReplyToTicket"))) { $e = 1; $c = "# You are not allowed to $action on ticket $id."; goto OUTPUT; } my $cc = join ", ", @{ vsplit($changes{Cc}) }; my $bcc = join ", ", @{ vsplit($changes{Bcc}) }; my ($n, $s) = $ticket->$action(MIMEObj => $ent, CcMessageTo => $cc, BccMessageTo => $bcc, TimeTaken => $changes{TimeWorked} || 0); $c = "# ".$s; if ($changes{Status}) { my ($status_n, $status_s) = $ticket->SetStatus($changes{'Status'} ); $c .= "\n# ".$status_s; } OUTPUT: return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/REST/1.0/Forms/ticket/attachments0000664000175000017500000001136713131430353021772 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/ticket/attachments %# <%ARGS> $id $args => undef <%INIT> my @data; my ($c, $o, $k, $e) = ("", [], {}, ""); my $ticket = RT::Ticket->new($session{CurrentUser}); $ticket->Load($id); unless ($ticket->Id) { return [ "# Ticket $id does not exist.", [], {}, 1 ]; } my @arglist = split('/', $args || ''); my ($aid, $content); if ( defined $arglist[1] && $arglist[1] eq 'content') { $aid = $arglist[0]; $content = 1; } else { $aid = $args; $content = 0; } if ($aid) { unless ($aid =~ /^\d+$/) { return [ "# Invalid attachment id: $aid", [], {}, 1 ]; } my $attachment = RT::Attachment->new($session{CurrentUser}); $attachment->Load($aid); unless ($attachment->Id eq $aid) { return [ "# Invalid attachment id: $aid", [], {}, 1 ]; } if ($content) { $c = $attachment->OriginalContent; # if we're sending a binary attachment (and only the attachment) # flag it so bin/rt knows to special case it if ($attachment->ContentType !~ /^text\//) { $r->content_type($attachment->ContentType); } } else { my @data; push @data, [ id => $attachment->Id ]; push @data, [ Subject => $attachment->Subject ]; push @data, [ Creator => $attachment->Creator ]; push @data, [ Created => $attachment->Created ]; push @data, [ Transaction => $attachment->TransactionId ]; push @data, [ Parent => $attachment->Parent ]; push @data, [ MessageId => $attachment->MessageId ]; push @data, [ Filename => $attachment->Filename ]; push @data, [ ContentType => $attachment->ContentType ]; push @data, [ ContentEncoding => $attachment->ContentEncoding ]; push @data, [ Headers => $attachment->Headers ]; push @data, [ Content => $attachment->Content ]; my %k = map {@$_} @data; $o = [ map {$_->[0]} @data ]; $k = \%k; } } else { my @attachments; my $transactions = $ticket->Transactions; while (my $t = $transactions->Next) { my $attachments = $t->Attachments; while (my $a = $attachments->Next) { my $size = length($a->Content || ''); if ($size > 1024) { $size = int($size/102.4)/10 . "k" } else { $size .= "b" } my $name = (defined $a->Filename and length $a->Filename) ? $a->Filename : "(Unnamed)"; push @attachments, $a->Id.": $name (".$a->ContentType . " / $size)"; } } if (@attachments) { $o = [ "id", "Attachments" ]; $k = { id => "ticket/".$ticket->Id."/attachments", Attachments => \@attachments }; } } return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/REST/1.0/Forms/ticket/history0000664000175000017500000001511113131430353021147 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/ticket/history %# <%ARGS> $id $args => undef $format => undef $fields => undef <%INIT> my $ticket = RT::Ticket->new($session{CurrentUser}); my ($c, $o, $k, $e) = ("", [], {}, ""); $ticket->Load($id); unless ($ticket->Id) { return [ "# Ticket $id does not exist.", [], {}, 1 ]; } my $trans = $ticket->Transactions(); my $total = $trans->Count(); if ( $args ) { chomp $args; } else { $args = ''; } my @arglist = split('/', $args ); my ($type, $tid); if (defined $arglist[0] && $arglist[0] eq 'type') { $type = $arglist[1]; } elsif ( defined $arglist[0] && $arglist[0] eq 'id') { $tid = $arglist[1]; } else { $type = $args; } if ($type) { # Create, Set, Status, Correspond, Comment, Give, Steal, Take, Told # CustomField, AddLink, DeleteLink, AddWatcher, DelWatcher if ($args =~ /^links?$/) { $trans->Limit(FIELD => 'Type', OPERATOR => 'LIKE', VALUE => '%Link'); } elsif ($args =~ /^watchers?$/) { $trans->Limit(FIELD => 'Type', OPERATOR => 'LIKE', VALUE => '%Watcher'); } else { $trans->Limit(FIELD => 'Type', OPERATOR => '=', VALUE => $type); } } elsif ($tid) { $trans->Limit(FIELD => 'Id', OPERATOR => '=', VALUE => $tid); } if ($tid) { my @data; my $t = RT::Transaction->new($session{CurrentUser}); # this paragraph limits the transaction ID query to transactions on this ticket. # Otherwise you can query any transaction from any ticket, which makes no sense. my $Transactions = $ticket->Transactions; my $tok=0; while (my $T = $Transactions->Next()) { $tok=1 if ($T->Id == $tid) } if ($tok) { $t->Load($tid); } else { return [ "# Transaction $tid is not related to Ticket $id", [], {}, 1 ]; } push @data, [ id => $t->Id ]; push @data, [ Ticket => $t->Ticket ] if (!%$fields || exists $fields->{lc 'Ticket'}); push @data, [ TimeTaken => $t->TimeTaken ] if (!%$fields || exists $fields->{lc 'TimeTaken'}); push @data, [ Type => $t->Type ] if (!%$fields || exists $fields->{lc 'Type'}); push @data, [ Field => $t->Field ] if (!%$fields || exists $fields->{lc 'Field'}); push @data, [ OldValue => $t->OldValue ] if (!%$fields || exists $fields->{lc 'OldValue'}); push @data, [ NewValue => $t->NewValue ] if (!%$fields || exists $fields->{lc 'NewValue'}); push @data, [ Data => $t->Data ] if (!%$fields || exists $fields->{lc 'Data'}); push @data, [ Description => $t->Description ] if (!%$fields || exists $fields->{lc 'Description'}); push @data, [ Content => $t->Content ] if (!%$fields || exists $fields->{lc 'Content'}); if (!%$fields || exists $fields->{lc 'Content'}) { my $creator = RT::User->new($session{CurrentUser}); $creator->Load($t->Creator); push @data, [ Creator => $creator->Name ]; } push @data, [ Created => $t->Created ] if (!%$fields || exists $fields->{lc 'Created'}); if (!%$fields || exists $fields->{lc 'Attachments'}) { my $attachlist; my $attachments = $t->Attachments; while (my $a = $attachments->Next) { my $size = length($a->Content||''); if ($size > 1024) { $size = int($size/102.4)/10 . "k" } else { $size .= "b" } my $name = (defined $a->Filename and length $a->Filename) ? $a->Filename : "untitled"; $attachlist .= "\n" . $a->Id.": $name ($size)"; } push @data, [Attachments => $attachlist]; } my %k = map {@$_} @data; $o = [ map {$_->[0]} @data ]; $k = \%k; } else { my (@data, $tids); $format ||= "s"; $format = "l" if (%$fields); while (my $t = $trans->Next) { my $tid = $t->Id; if ($format eq "l") { $tids .= "," if $tids; $tids .= $tid; } else { push @$o, $tid; $k->{$tid} = $t->Description; } } if ($format eq "l") { my @tid; push @tid, "ticket/$id/history/id/$tids"; my $fieldstring; foreach my $key (keys %$fields) { $fieldstring .= "," if $fieldstring; $fieldstring .= $key; } my ($content, $forms); $m->subexec("/REST/1.0/show", id => \@tid, format => $format, fields => $fieldstring); return [ $c, $o, $k, $e ]; } } if (!$c) { my $sub = $trans->Count(); $c = "# $sub/$total ($args/total)"; } return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/REST/1.0/Forms/ticket/links0000664000175000017500000001410513131430353020570 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/ticket/links %# <%ARGS> $id $format => 's' $changes => undef <%INIT> my @data; my $ticket = RT::Ticket->new($session{CurrentUser}); $ticket->Load($id); if (!$ticket->Id) { return [ "# Ticket $id does not exist.", [], {}, 1 ]; } my ($c, $o, $k, $e) = ("", [], {}, 0); my @fields = qw(DependsOn DependedOnBy RefersTo ReferredToBy Members MemberOf); my %fields = map { lc $_ => $_ } @fields; my %lfields = ( Members => { Type => 'MemberOf', Mode => 'Base' }, ReferredToBy => { Type => 'RefersTo', Mode => 'Base' }, DependedOnBy => { Type => 'DependsOn', Mode => 'Base' }, MemberOf => { Type => 'MemberOf', Mode => 'Target' }, RefersTo => { Type => 'RefersTo', Mode => 'Target' }, DependsOn => { Type => 'DependsOn', Mode => 'Target' }, ); if ($changes) { my ($get, $set, $key, $val, $n, $s); my %data = %$changes; my @comments; foreach $key (keys %data) { $val = $data{$key}; $key = lc $key; $n = 1; if (exists $fields{$key}) { $key = $fields{$key}; my %old; my $field = $lfields{$key}->{Mode}; my $mode_obj = $field . 'Obj'; while (my $link = $ticket->$key->Next) { next if UNIVERSAL::isa($link->$mode_obj, 'RT::Article') && $link->$mode_obj->Disabled; next if $field eq 'Base' && $link->Type eq 'RefersTo' && $link->BaseObj->__Value('Type') eq 'reminder'; $old{$link->$field} = 1; } my %new; foreach my $nkey (@{vsplit($val)}) { if ($nkey =~ /^\d+$/) { my $uri = RT::URI->new($session{CurrentUser}); my $tick = RT::Ticket->new($session{CurrentUser}); $tick->Load($nkey); if ($tick->Id) { $uri->FromObject($tick); $nkey = $uri->URI; } else { $n = 0; $s = "Ticket $nkey does not exist."; goto SET; } } $new{$nkey} = 1; } foreach my $u (keys %old) { if (exists $new{$u}) { delete $new{$u}; } else { my $type = $lfields{$key}->{Type}; my $mode = $lfields{$key}->{Mode}; ($n, $s) = $ticket->DeleteLink(Type => $type, $mode => $u); goto SET; } } foreach my $u (keys %new) { my $type = $lfields{$key}->{Type}; my $mode = $lfields{$key}->{Mode}; ($n, $s) = $ticket->AddLink(Type => $type, $mode => $u); goto SET; } } elsif ($key ne 'id' && $key ne 'type') { $n = 0; $s = "Unknown field: $key"; } SET: if ($n == 0) { $e = 1; push @comments, "# $key: $s"; unless (@$o) { @$o = ("id", @fields); %$k = %data; } } } push(@comments, "# Links for ticket $id updated.") unless @comments; $c = join("\n", @comments) if @comments; } else { my @data; push @data, [ id => "ticket/".$ticket->Id."/links" ]; foreach my $key (@fields) { my @val; my $field = $lfields{$key}->{Mode}; my $mode_obj = $field . 'Obj'; while (my $link = $ticket->$key->Next) { next if UNIVERSAL::isa($link->$mode_obj, 'RT::Article') && $link->$mode_obj->Disabled; next if $field eq 'Base' && $link->Type eq 'RefersTo' && UNIVERSAL::isa($link->$mode_obj, 'RT::Ticket') && $link->BaseObj->__Value('Type') eq 'reminder'; push @val, $link->$field; } push(@val, "") if (@val == 0 && defined $format && $format eq 'l'); push @data, [ $key => [ @val ] ] if @val; } my %k = map {@$_} @data; $o = [ map {$_->[0]} @data ]; $k = \%k; } return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/REST/1.0/Forms/ticket/default0000664000175000017500000004271013131430353021077 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/ticket/default %# <%ARGS> $id $changes => {} $fields => undef $args => undef <%INIT> use MIME::Entity; use RT::Interface::REST; my $cf_spec = RT::Interface::REST->custom_field_spec(1); my @comments; my ($c, $o, $k, $e) = ("", [], {}, 0); my %data = %$changes; my $ticket = RT::Ticket->new($session{CurrentUser}); my @dates = qw(Created Starts Started Due Resolved Told LastUpdated); my @people = qw(Requestors Cc AdminCc); my @create = qw(Queue Requestor Subject Cc AdminCc Owner Status Priority InitialPriority FinalPriority TimeEstimated TimeWorked TimeLeft Starts Started Due Resolved Content-Type); my @simple = qw(Subject Status Priority Disabled TimeEstimated TimeWorked TimeLeft InitialPriority FinalPriority); my %dates = map {lc $_ => $_} @dates; my %people = map {lc $_ => $_} @people; my %create = map {lc $_ => $_} @create; my %simple = map {lc $_ => $_} @simple; # Are we dealing with an existing ticket? if ($id ne 'new') { $ticket->Load($id); if (!$ticket->Id) { return [ "# Ticket $id does not exist.", [], {}, 1 ]; } elsif ( %data ) { if ( $data{status} && lc $data{status} eq 'deleted' && ! grep { $_ ne 'id' && $_ ne 'status' } keys %data ) { if ( !$ticket->CurrentUserHasRight('DeleteTicket') ) { return [ "# You are not allowed to delete ticket $id.", [], {}, 1 ]; } } elsif ( !$ticket->CurrentUserHasRight('ModifyTicket') ) { return [ "# You are not allowed to modify ticket $id.", [], {}, 1 ]; } } elsif (!$ticket->CurrentUserHasRight('ShowTicket')) { return [ "# You are not allowed to display ticket $id.", [], {}, 1 ]; } } else { if (!keys(%data)) { # GET ticket/new: Return a suitable default form. # We get defaults from queue/1 (XXX: What if it isn't there?). my $due = RT::Date->new($session{CurrentUser}); my $queue = RT::Queue->new($session{CurrentUser}); my $starts = RT::Date->new($session{CurrentUser}); $queue->Load(1); if ( $queue->DefaultValue('Due') ) { $due->Set( Format => 'unknown', Value => $queue->DefaultValue('Due') ); } if ( $queue->DefaultValue('Starts') ) { $starts->Set( Format => 'unknown', Value => $queue->DefaultValue('Starts') ); } else { $starts->SetToNow; } return [ "# Required: id, Queue", [ qw(id Queue Requestor Subject Cc AdminCc Owner Status Priority InitialPriority FinalPriority TimeEstimated Starts Due Attachment Text) ], { id => "ticket/new", Queue => $queue->Name, Requestor => $session{CurrentUser}->Name, Subject => "", Cc => [], AdminCc => [], Owner => "", Status => "new", Priority => $queue->DefaultValue('InitialPriority'), InitialPriority => $queue->DefaultValue('InitialPriority'), FinalPriority => $queue->DefaultValue('FinalPriority'), TimeEstimated => 0, Starts => $starts->ISO(Timezone => 'user'), Due => $due->IsSet ? $due->ISO(Timezone => 'user') : undef, Attachment => '', Text => "", }, 0 ]; } else { # We'll create a new ticket, and fall through to set fields that # can't be set in the call to Create(). my (%v, $text, @atts); foreach my $k (keys %data) { # flexibly parse any dates if ($dates{lc $k}) { my $time = RT::Date->new($session{CurrentUser}); $time->Set(Format => 'unknown', Value => $data{$k}); $data{$k} = $time->ISO; } if (exists $create{lc $k}) { $v{$create{lc $k}} = delete $data{$k}; } # Set custom field elsif ($k =~ /^$cf_spec/) { my $key = $1 || $2; my $cf = RT::CustomField->new( $session{CurrentUser} ); $cf->LoadByName( Name => $key, LookupType => RT::Ticket->CustomFieldLookupType, ObjectId => $data{Queue} || $v{Queue}, IncludeGlobal => 1, ); if (not $cf->id) { push @comments, "# Invalid custom field name ($key)"; delete $data{$k}; next; } my $val = delete $data{$k}; next unless defined $val && length $val; $v{"CustomField-".$cf->Id()} = $cf->SingleValue ? $val : vsplit($val,1); } elsif (lc $k eq 'text') { $text = delete $data{$k}; } elsif (lc $k eq 'attachment') { push @atts, @{ vsplit(delete $data{$k}) }; } elsif ( $k !~ /^(?:id|requestors)$/i ) { $e = 1; push @$o, $k; push(@comments, "# $k: Unknown field"); } } if ( $e ) { unshift @comments, "# Could not create ticket."; $k = \%data; goto DONE; } # people fields allow multiple values $v{$_} = vsplit($v{$_}) foreach ( grep $create{lc $_}, @people ); if ($text || @atts) { $v{MIMEObj} = MIME::Entity->build( Type => "multipart/mixed", From => Encode::encode( "UTF-8", $session{CurrentUser}->EmailAddress ), Subject => Encode::encode( "UTF-8", $v{Subject}), 'X-RT-Interface' => 'REST', ); $v{MIMEObj}->attach( Type => $v{'Content-Type'} || 'text/plain', Charset => "UTF-8", Data => Encode::encode( "UTF-8", $text ), ) if $text; my ($status, $msg) = process_attachments($v{'MIMEObj'}, @atts); unless ($status) { push(@comments, "# $msg"); goto DONE; } $v{MIMEObj}->make_singlepart; } my($tid,$trid,$terr) = $ticket->Create(%v); unless ($tid) { push(@comments, "# Could not create ticket."); push(@comments, "# " . $terr); goto DONE; } delete $data{id}; $id = $ticket->Id; push(@comments, "# Ticket $id created."); # see if the hash is empty goto DONE if ! keys(%data); } } # Now we know we're dealing with an existing ticket. if (!keys(%data)) { my ($time, $key, $val, @data); push @data, [ id => "ticket/".$ticket->Id ]; push @data, [ Queue => $ticket->QueueObj->Name ] if (!%$fields || exists $fields->{lc 'Queue'}); push @data, [ Owner => $ticket->OwnerObj->Name ] if (!%$fields || exists $fields->{lc 'Owner'}); push @data, [ Creator => $ticket->CreatorObj->Name ] if (!%$fields || exists $fields->{lc 'Creator'}); foreach (qw(Subject Status Priority InitialPriority FinalPriority)) { next unless (!%$fields || (exists $fields->{lc $_})); push @data, [$_ => $ticket->$_ ]; } foreach $key (@people) { next unless (!%$fields || (exists $fields->{lc $key})); push @data, [ $key => [ $ticket->$key->MemberEmailAddresses ] ]; } $time = RT::Date->new ($session{CurrentUser}); foreach $key (@dates) { next unless (!%$fields || (exists $fields->{lc $key})); $time->Set(Format => 'sql', Value => $ticket->$key); push @data, [ $key => $time->AsString ]; } $time = RT::Date->new ($session{CurrentUser}); foreach $key (qw(TimeEstimated TimeWorked TimeLeft)) { next unless (!%$fields || (exists $fields->{lc $key})); $val = $ticket->$key || 0; $val = "$val minutes" if $val; push @data, [ $key => $val ]; } # Display custom fields my $CustomFields = $ticket->CustomFields; while (my $cf = $CustomFields->Next()) { next unless !%$fields || exists $fields->{"cf.{".lc($cf->Name)."}"} || exists $fields->{"cf-".lc $cf->Name}; my $vals = $ticket->CustomFieldValues($cf->Id()); my @out = (); if ( $cf->SingleValue ) { my $v = $vals->Next; push @out, $v->Content if $v; } else { while (my $v = $vals->Next()) { my $content = $v->Content; if ( $v->Content =~ /,/ ) { $content =~ s/([\\'])/\\$1/g; push @out, q{'} . $content . q{'}; } else { push @out, $content; } } } push @data, [ ('CF.{' . $cf->Name . '}') => join ',', @out ]; } my %k = map {@$_} @data; $o = [ map {$_->[0]} @data ]; $k = \%k; } else { my ($get, $set, $key, $val, $n, $s); my $updated; foreach $key (keys %data) { $val = $data{$key}; $key = lc $key; $n = 1; if (ref $val eq 'ARRAY') { unless ($key =~ /^(?:Requestors|Cc|AdminCc)$/i) { $n = 0; $s = "$key may have only one value."; goto SET; } } if ($key =~ /^queue$/i) { next if $val eq $ticket->QueueObj->Name; ($n, $s) = $ticket->SetQueue($val); } elsif ($key =~ /^owner$/i) { next if $val eq $ticket->OwnerObj->Name; ($n, $s) = $ticket->SetOwner($val); } elsif (exists $simple{$key}) { $key = $simple{$key}; $set = "Set$key"; my $current = $ticket->$key; $current = '' unless defined $current; next if ($val eq $current) or ($current =~ /^\d+$/ && $val =~ /^\d+$/ && $val == $current); ($n, $s) = $ticket->$set("$val"); } elsif (exists $dates{$key}) { $key = $dates{$key}; # We try to detect whether it should update a field by checking # whether its current value equals the entered value. Since the # LastUpdated field is automatically updated as other columns are # changed, it is not properly skipped. Users cannot update this # field anyway. next if $key eq 'LastUpdated'; $set = "Set$key"; my $time = RT::Date->new($session{CurrentUser}); $time->Set(Format => 'sql', Value => $ticket->$key); next if ($val =~ /^not set$/i || $val eq $time->AsString); $time->Set(Format => 'unknown', Value => $val); ($n, $s) = $ticket->$set($time->ISO); } elsif (exists $people{$key}) { $key = $people{$key}; my ($p, @msgs); my %new = map {$_=>1} @{ vsplit($val) }; my %old; my $members = $ticket->$key->MembersObj; while (my $member = $members->Next) { my $principal = $member->MemberObj; if ($principal->IsGroup) { $old{ $principal->Id } = 1; } else { $old{ $principal->Object->EmailAddress } = 1; } } my $type = $key eq 'Requestors' ? 'Requestor' : $key; foreach $p (keys %old) { unless (exists $new{$p}) { my $key = "Email"; $key = "PrincipalId" if $p =~ /^\d+$/; ($s, $n) = $ticket->DeleteWatcher(Type => $type, $key => $p); push @msgs, [ $s, $n ]; } } foreach $p (keys %new) { my $key = "Email"; $key = "PrincipalId" if $p =~ /^\d+$/; unless ($ticket->IsWatcher(Type => $type, $key => $p)) { ($s, $n) = $ticket->AddWatcher(Type => $type, $key => $p); push @msgs, [ $s, $n ]; } } $n = 1; if (@msgs = grep {$_->[0] == 0} @msgs) { $n = 0; $s = join "\n", map {"# ".$_->[1]} @msgs; $s =~ s/^# //; } } # Set custom field elsif ($key =~ /^$cf_spec/) { $key = $1 || $2; my $cf = RT::CustomField->new( $session{CurrentUser} ); $cf->ContextObject( $ticket ); $cf->LoadByName( Name => $key, LookupType => RT::Ticket->CustomFieldLookupType, ObjectId => $ticket->Queue, IncludeGlobal => 1, ); if (not $cf->id) { $n = 0; $s = "Unknown custom field."; } else { my $vals = $ticket->CustomFieldValues($cf->id); if ( $ticket->CustomFieldValueIsEmpty( Field => $cf, Value => $val ) ) { while ( my $val = $vals->Next ) { ($n, $s) = $ticket->DeleteCustomFieldValue( Field => $cf, ValueId => $val->id, ); $s =~ s/^# // if defined $s; } } elsif ( $cf->SingleValue ) { ($n, $s) = $ticket->AddCustomFieldValue( Field => $cf, Value => $val ); $s =~ s/^# // if defined $s; } else { my @new = @{vsplit($val, 1)}; my %new; $new{$_}++ for @new; while (my $v = $vals->Next()) { my $c = $v->Content; if ( $new{$c} ) { $new{$c}--; } else { $ticket->DeleteCustomFieldValue( Field => $cf, ValueId => $v->id ); } } for ( @new ) { while ( $new{$_} && $new{$_}-- ) { next if $ticket->CustomFieldValueIsEmpty( Field => $cf, Value => $_, ); ($n, $s) = $ticket->AddCustomFieldValue( Field => $cf, Value => $_ ); $s =~ s/^# // if defined $s; } } } } } elsif ($key ne 'id' && $key ne 'type' && $key ne 'creator' && $key ne 'content-type' ) { $n = 0; $s = "Unknown field."; } SET: if ($n == 0) { $e = 1; push @comments, "# $key: $s"; unless (@$o) { # move id forward @$o = ("id", grep { $_ ne 'id' } keys %$changes); $k = $changes; } } else { $updated ||= 1; } } push(@comments, "# Ticket ".$ticket->id." updated.") if $updated; } DONE: $c ||= join("\n", @comments) if @comments; return [$c, $o, $k, $e]; rt-4.4.2/share/html/REST/1.0/Forms/group/0000775000175000017500000000000013131430353017375 5ustar vagrantvagrantrt-4.4.2/share/html/REST/1.0/Forms/group/ns0000664000175000017500000000446513131430353017751 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/group/ns %# <%ARGS> $id <%perl> use RT::Groups; my $groups = RT::Groups->new($session{CurrentUser}); $groups->Limit(FIELD => 'Name', OPERATOR => '=', VALUE => $id, CASESENSITIVE => 0); if ($groups->Count == 0) { return (0, "No group named $id exists."); } return $groups->Next->Id; rt-4.4.2/share/html/REST/1.0/Forms/group/customfields0000664000175000017500000000601713131430353022025 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/group/customfields %# <%ARGS> $id $format => 's' $changes => {} <%perl> my @comments; my ($c, $o, $k, $e) = ("", [], {}, 0); my $group = RT::Group->new($session{CurrentUser}); $group->Load($id); if (!$group->Id) { return [ "# Group $id does not exist.", [], {}, 1 ]; } if (%$changes) { $e = 1; $c = "Cannot modify Group CF definitions via REST"; goto DONE; } my @data; push @data, [ id => "group/" . $group->Id ]; my $gcfs = $group->CustomFields; while ( my $gcf = $gcfs->Next() ) { if ( $format eq "l" ) { my $cfadmin = ( $gcf->SingleValue ? 'SingleValue' : 'MultiValue' ) . $gcf->Type . ( $gcf->Pattern ? ( ' ' . $gcf->FriendlyPattern ) : '' ); push @data, [ $gcf->Name . ' (' . $gcf->Description . ')' => $cfadmin ]; } else { push @data, [ $gcf->Name => "" ]; } } my %k = map {@$_} @data; $o = [ map { $_->[0] } @data ]; $k = \%k; DONE: $c ||= join("\n", @comments) if @comments; return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/REST/1.0/Forms/group/default0000664000175000017500000001457413131430353020757 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/group/default %# <%ARGS> $id $format => 's' $fields => undef # these are the fields passed to the rt "-f" flag. $changes => {} <%perl> my @comments; my ($c, $o, $k, $e) = ("", [], {}, 0); my %data = %$changes; my $group = RT::Group->new($session{CurrentUser}); my @fields = qw(Name Description Disabled); if ( $fields && %$fields ) { @fields = grep { exists $fields->{ lc $_ } } @fields; } my %fields = map { lc $_ => $_ } @fields; if ($id ne 'new') { $group->Load($id); if (!$group->Id) { return [ "# Group $id does not exist.", [], {}, 1 ]; } } else { if (%data == 0) { return [ "# Required: Name", [ qw(id Name Description) ], { id => "group/new", Name => "", Description => "" }, 0 ]; } else { my %v; my %create = %fields; $create{name} = "Name"; $create{description} = "Description"; # Do any fields need to be excluded here? foreach my $k (keys %data) { if (exists $create{lc $k}) { $v{$create{lc $k}} = delete $data{$k}; } } $group->CreateUserDefinedGroup(%v); unless ($group->Id) { return [ "# Could not create group.", [], {}, 1 ]; } $id = $group->Id; delete $data{id}; push(@comments, "# Group $id created."); goto DONE if %data == 0; } } if (%data == 0) { my @data; push @data, [ id => "group/".$group->Id ]; foreach my $key (@fields) { push @data, [ $key => $group->$key ]; } # Members unless ( $fields && !exists $fields->{members} ) { my $gms = []; my $GroupMembers = $group->MembersObj(); while ( my $mo = $GroupMembers->Next() ) { if ( $mo->MemberObj->IsGroup ) { my $us = $mo->MemberObj->Object->UserMembersObj(); my @users; while ( my $u = $us->Next() ) { push @users, $u->RealName . ' <' . $u->EmailAddress . '>'; } push @$gms, 'GROUP [' . $mo->MemberObj->Object->Name . ']' . ' (' . join( ';', @users ) . ')'; } elsif ( $mo->MemberObj->IsUser ) { push @$gms, $mo->MemberObj->Object->RealName . ' <' . $mo->MemberObj->Object->EmailAddress . '>'; } } push @data, [ Members => $gms ]; } # Custom fields my $CustomFields = $group->CustomFields; while ( my $CustomField = $CustomFields->Next() ) { next unless ( !%$fields || exists $fields->{ lc "CF-" . $CustomField->Name } ); next unless $CustomField->CurrentUserHasRight('SeeCustomField'); my $CFvalues = $group->CustomFieldValues( $CustomField->Id ); my @CFvalues; while ( my $CFvalue = $CFvalues->Next() ) { push @CFvalues, $CFvalue->Content; } push @data, [ "CF-" . $CustomField->Name => \@CFvalues ]; } my %k = map {@$_} @data; $o = [ map {$_->[0]} @data ]; $k = \%k; } else { my ($get, $set, $key, $val, $n, $s); my $updated; foreach $key (keys %data) { $val = $data{$key}; $key = lc $key; $n = 1; if ($key eq 'name' || $key eq 'description' || exists $fields{$key}) { if (exists $fields{$key}) { $key = $fields{$key}; } else { $key = "Description" if $key eq 'description'; $key = "Name" if $key eq 'name'; } $set = "Set$key"; next if $val eq $group->$key; ($n, $s) = $group->$set($val); } elsif ($key ne 'id') { $n = 0; $s = "Unknown field."; } SET: if ($n == 0) { $e = 1; push @comments, "# $key: $s"; unless (@$o) { my %o = keys %$changes; delete @o{"id", @fields}; @$o = ("id", @fields, keys %o); $k = $changes; } } else { $updated ||= 1; } } push(@comments, "# Group $id updated.") if $updated; } DONE: $c ||= join("\n", @comments) if @comments; return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/REST/1.0/Forms/transaction/0000775000175000017500000000000013131430353020566 5ustar vagrantvagrantrt-4.4.2/share/html/REST/1.0/Forms/transaction/default0000664000175000017500000001201713131430353022136 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/transaction %# <%ARGS> $id $format => undef $fields => undef <%INIT> my $trans = RT::Transactions->new($session{CurrentUser}); my ($c, $o, $k, $e) = ("", [], {} , ""); my $tid = $id; $trans->Limit(FIELD => 'Id', OPERATOR => '=', VALUE => $tid); if ($tid) { my @data; my $t = RT::Transaction->new($session{CurrentUser}); $t->Load($tid); if ($format eq "l") { push @data, [ id => $t->Id ]; push @data, [ Ticket => $t->Ticket ] if (!%$fields || exists $fields->{lc 'Ticket'}); push @data, [ TimeTaken => $t->TimeTaken ] if (!%$fields || exists $fields->{lc 'TimeTaken'}); push @data, [ Type => $t->Type ] if (!%$fields || exists $fields->{lc 'Type'}); push @data, [ Field => $t->Field ] if (!%$fields || exists $fields->{lc 'Field'}); push @data, [ OldValue => $t->OldValue ] if (!%$fields || exists $fields->{lc 'OldValue'}); push @data, [ NewValue => $t->NewValue ] if (!%$fields || exists $fields->{lc 'NewValue'}); push @data, [ Data => $t->Data ] if (!%$fields || exists $fields->{lc 'Data'}); push @data, [ Description => $t->Description ] if (!%$fields || exists $fields->{lc 'Description'}); push @data, [ Content => $t->Content ] if (!%$fields || exists $fields->{lc 'Content'}); if (!%$fields || exists $fields->{lc 'Content'}) { my $creator = RT::User->new($session{CurrentUser}); $creator->Load($t->Creator); push @data, [ Creator => $creator->Name ]; } push @data, [ Created => $t->Created ] if (!%$fields || exists $fields->{lc 'Created'}); if (!%$fields || exists $fields->{lc 'Attachments'}) { my $attachlist; my $attachments = $t->Attachments; while (my $a = $attachments->Next) { my $size = length($a->Content); if ($size > 1024) { $size = int($size/102.4)/10 . "k"; } else { $size .= "b"; } my $name = (defined $a->Filename and length $a->Filename) ? $a->Filename : "untitled"; $attachlist .= "\n" . $a->Id.": $name ($size)"; } push @data, [Attachments => $attachlist]; } } else { push @data, [ id => $t->Id ]; push @data, [ Description => $t->Description ]; } my %k = map {@$_} @data; $o = [ map {$_->[0]} @data ]; $k = \%k; } #else { # my (@data, $tids); # $format ||= "s"; # $format = "l" if (%$fields); # # while (my $t = $trans->Next) { # my $tid = $t->Id; # if ($format eq "l") { # $tids .= "," if $tids; # $tids .= $tid; # } else { # push @$o, $tid; # $k->{$tid} = $t->Description; # } # } #} return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/REST/1.0/Forms/user/0000775000175000017500000000000013131430353017217 5ustar vagrantvagrantrt-4.4.2/share/html/REST/1.0/Forms/user/ns0000664000175000017500000000455213131430353017570 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/user/ns %# <%ARGS> $id <%perl> use RT::Users; my $field = "Name"; $field = "EmailAddress" if $id =~ /\@/; my $users = RT::Users->new($session{CurrentUser}); $users->Limit(FIELD => $field, OPERATOR => '=', VALUE => $id, CASESENSITIVE => 0); if ($users->Count == 0) { return (0, "No user named $id exists."); } return $users->Next->Id; rt-4.4.2/share/html/REST/1.0/Forms/user/default0000664000175000017500000001500313131430353020565 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# REST/1.0/Forms/user/default %# <%ARGS> $id $format => 's' $changes => {} $fields => undef <%perl> my @comments; my ($c, $o, $k, $e) = ("", [], {}, 0); my %data = %$changes; my $user = RT::User->new($session{CurrentUser}); my @fields = qw(Name EmailAddress RealName NickName Gecos Organization Address1 Address2 City State Zip Country HomePhone WorkPhone MobilePhone PagerPhone FreeformContactInfo Comments Signature Lang Privileged Disabled); if ( $fields && %$fields ) { @fields = grep { exists $fields->{ lc $_ } } @fields; } my %fields = map { lc $_ => $_ } @fields; if ($id ne 'new') { $user->Load($id); if (!$user->Id) { return [ "# User $id does not exist.", [], {}, 1 ]; } } else { if (keys %data == 0) { return [ "# Required: Name, EmailAddress", [ qw(id Name EmailAddress Organization Password Comments) ], { id => "user/new", Name => "", EmailAddress => "", Organization => "", Password => "", Comments => "" }, 0 ]; } else { my %v; my %create = %fields; $create{name} = "Name"; $create{password} = "Password"; $create{emailaddress} = "EmailAddress"; $create{contactinfo} = "FreeformContactInfo"; # Do any fields need to be excluded here? foreach my $k (keys %data) { if (exists $create{lc $k}) { $v{$create{lc $k}} = delete $data{$k}; } } $user->Create(%v); unless ($user->Id) { return [ "# Could not create user.", [], {}, 1 ]; } $id = $user->Id; delete $data{id}; push(@comments, "# User $id created."); goto DONE if keys %data == 0; } } if (keys %data == 0) { my @data; push @data, [ id => "user/".$user->Id ]; unless ( $fields && %$fields && !exists $fields->{'password'} ) { push @data, [ Password => '********' ]; } for my $key (@fields) { my $val = $user->$key; if ( ( $fields && exists $fields->{ lc $key } ) || ( defined $format && $format eq 'l' ) || ( defined $val && $val ne '' ) ) { $key = "ContactInfo" if $key eq 'FreeformContactInfo'; push @data, [ $key => $val ]; } } # Custom fields my $CustomFields = $user->CustomFields; while ( my $CustomField = $CustomFields->Next() ) { # show cf unless there are specified fields that don't include it next unless ( !%$fields || exists $fields->{ lc "CF-" . $CustomField->Name } ); next unless $CustomField->CurrentUserHasRight('SeeCustomField'); my $CFvalues = $user->CustomFieldValues( $CustomField->Id ); my @CFvalues; while ( my $CFvalue = $CFvalues->Next() ) { push @CFvalues, $CFvalue->Content; } push @data, [ "CF-" . $CustomField->Name => \@CFvalues ]; } my %k = map {@$_} @data; $o = [ map {$_->[0]} @data ]; $k = \%k; } else { my ($get, $set, $key, $val, $n, $s); my $updated; foreach $key (keys %data) { $val = $data{$key}; $key = lc $key; $n = 1; if ($key eq 'name' || $key eq 'emailaddress' || $key eq 'contactinfo' || exists $fields{$key}) { if (exists $fields{$key}) { $key = $fields{$key}; } else { $key = "FreeformContactInfo" if $key eq 'contactinfo'; $key = "EmailAddress" if $key eq 'emailaddress'; $key = "Name" if $key eq 'name'; } $set = "Set$key"; next if $val eq $user->$key; ($n, $s) = $user->$set($val); } elsif ($key eq 'password') { ($n, $s) = $user->SetPassword($val) unless $val =~ /^\**$/; } elsif ($key ne 'id') { $n = 0; $s = "Unknown field."; } SET: if ($n == 0) { $e = 1; push @comments, "# $key: $s"; unless (@$o) { my %o = keys %$changes; delete @o{"id", @fields}; @$o = ("id", @fields, keys %o); $k = $changes; } } else { $updated ||= 1; } } push(@comments, "# User $id updated.") if $updated; } DONE: $c ||= join("\n", @comments) if @comments; return [ $c, $o, $k, $e ]; rt-4.4.2/share/html/index.html0000664000175000017500000000716113131430353016102 0ustar vagrantvagrant Almost there!

    You're almost there!

    You haven't yet configured your webserver to run RT. You appear to have installed RT's web interface correctly, but haven't yet configured your web server to "run" the RT server which powers the web interface. The next step is to edit your webserver's configuration file to instruct it to use RT's mod_perl or FastCGI handler. If you need commercial support, please contact us at sales@bestpractical.com. rt-4.4.2/share/html/autohandler0000664000175000017500000000423113131430353016331 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> use RT::Util; $m->callback( ARGSRef => \%ARGS, CallbackName => 'Init', CallbackPage => '/autohandler' ); RT::Interface::Web::HandleRequest(\%ARGS); rt-4.4.2/share/html/Widgets/0000775000175000017500000000000013131430353015506 5ustar vagrantvagrantrt-4.4.2/share/html/Widgets/TitleBox0000664000175000017500000000445213131430353017170 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    % if ($hide_chrome) { <% $content | n %> % } else { <& TitleBoxStart, %ARGS &><% $content | n %><& TitleBoxEnd &> % }
    <%ARGS> $class => '' $hide_empty => 0 $hide_chrome => 0 <%INIT> my $content = $m->content; return if $hide_empty && $content =~ /^\s*$/s; rt-4.4.2/share/html/Widgets/TitleBoxEnd0000664000175000017500000000425513131430353017620 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    % #Manually flush the content buffer after each titlebox is displayed % $m->flush_buffer(); <%ARGS> $title => undef $content => undef rt-4.4.2/share/html/Widgets/ComboBox0000664000175000017500000000617713131430353017154 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%once> # the $z_index here is to fix wrong z-index bug in ie7 my $z_index = 9999; %# reset $z_index. assuming at most 1000 comboboxx in one page % $z_index = 9999 if $z_index < 9000;
    autocomplete="off" />
    <%ARGS> $Name $Size => undef $Rows => 5 $Default => '' @Values => () $Class => '' rt-4.4.2/share/html/Widgets/BulkEdit0000664000175000017500000000476513131430353017150 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % for my $type ( @$Types ) { <& $Meta->{$type}{'Widget'}, Default => $Default, %{ $m->comp('/Widgets/FinalizeWidgetArguments', WidgetArguments => $Meta->{$type}{'WidgetArguments'} ) }, Name => $type, exists $CurrentValue->{$type} ? ( CurrentValue => $CurrentValue->{$type} ) : (), exists $DefaultValue->{$type} ? ( DefaultValue => $DefaultValue->{$type} ) : (), &> % } <%args> $Types $Meta $Default => 0 $CurrentValue => {} $DefaultValue => {} rt-4.4.2/share/html/Widgets/Form/0000775000175000017500000000000013131430353016411 5ustar vagrantvagrantrt-4.4.2/share/html/Widgets/Form/Select0000664000175000017500000001164713131430353017564 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%DOC> see docs/extending/using_forms_widgets.pod
    % if ( $Description ) { <% $Description %> % } <& SELF:InputOnly, %ARGS &> <% $Hints %>
    <%ARGS> $Name $Description => undef, $Hints => '' <%METHOD InputOnly> <%ARGS> $Name $Description => undef, @Values => (), $ValuesCallback => undef, %ValuesLabel => (), @CurrentValue => (), $Default => 1, @DefaultValue => (), $DefaultLabel => undef, $Alternative => 0, $AlternativeLabel => loc('other...'), $Multiple => 0, % if ( $Alternative ) { % } <%INIT> my %CurrentValue = map {$_ => 1} grep defined, @CurrentValue; if ( $ValuesCallback ) { my $values = $ValuesCallback->( CurrentUser => $session{'CurrentUser'}, Name => $Name, ); if ( ref $values eq 'ARRAY' ) { @Values = @$values; } else { %ValuesLabel = %$values; @Values = keys %ValuesLabel; } } unless (defined $DefaultLabel ) { $DefaultLabel = loc('Use system default ([_1])', join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue ); } <%METHOD Process> <%ARGS> $Name $Arguments => {}, @Values => (), %ValuesLabel => (), $Default => 0, @DefaultValue => (), $Alternative => 0, $Multiple => 0, <%INIT> my $value = $Arguments->{ $Name }; if( !defined $value || $value eq '__empty_value__' ) { return undef if $Default; return [ @DefaultValue ] if $Multiple; return $DefaultValue[0]; } $value = [$value] unless ref $value; if ( $Alternative ) { my $alt = $Arguments->{ "Alternative-". $Name }; if( $Multiple ) { push @$value, split /\s*,\s*/, $alt; } else { push @$value, $alt; } } splice @$value, 1 unless $Multiple; # XXX: check values return $value->[0] unless $Multiple; return $value; rt-4.4.2/share/html/Widgets/Form/Boolean0000664000175000017500000000710713131430353017720 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%DOC> see docs/extending/using_forms_widgets.pod
    <% $Description %> <& SELF:InputOnly, %ARGS &> <% $Hints %>
    <%ARGS> $Name => undef, $Description => undef, $Hints => '' <%METHOD InputOnly> <%ARGS> $Name => undef, $Default => 0, $DefaultValue => 0, $DefaultLabel => loc( 'Use default ([_1])', $DefaultValue? loc('Yes'): loc('No') ), $CurrentValue => undef, % unless ( $Default ) { \ />\ % } else { % } <%METHOD Process> <%ARGS> $Name $Arguments => {}, $Default => 0, $DefaultValue => 0, <%INIT> my $value = $Arguments->{ $Name }; if ( $Default ) { return undef if !defined $value || $value eq '__empty_value__'; return $value? 1: 0; } else { return $value? 1: 0 if defined $value; return $DefaultValue; } rt-4.4.2/share/html/Widgets/Form/Integer0000664000175000017500000000614113131430353017733 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%DOC> see docs/extending/using_forms_widgets.pod
    <% $Description %> <& SELF:InputOnly, %ARGS &> % if ( $Default ) { <% $DefaultLabel %> % } <% $Hints %>
    <%INIT> $_ = '' foreach grep !defined, $CurrentValue, $DefaultValue; $DefaultLabel ||= loc( 'Default: [_1]', $DefaultValue ); <%ARGS> $Name $Description => undef, $Hints => '' $CurrentValue => '', $Default => 0, $DefaultValue => 0, $DefaultLabel => undef <%METHOD InputOnly> \ <%ARGS> $Name $CurrentValue => '', <%INIT> $CurrentValue = '' unless defined $CurrentValue; <%METHOD Process> <%ARGS> $Name $Arguments => {}, $Default => 0, $DefaultValue => '', <%INIT> my $value = $Arguments->{ $Name }; if ( !defined $value || $value eq '' ) { return $DefaultValue unless $Default; return undef; } return $value; rt-4.4.2/share/html/Widgets/Form/String0000664000175000017500000000636413131430353017613 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%DOC> see docs/extending/using_forms_widgets.pod
    <% $Description %> <& SELF:InputOnly, %ARGS &> % if ( $Default ) { <% $DefaultLabel %> % } <% $Hints %>
    <%ARGS> $Name $Description => undef, $Hints => '' $CurrentValue => '', $Default => 0, $DefaultValue => '', $DefaultLabel => loc( 'Default: [_1]', $DefaultValue ), <%METHOD InputOnly> \ <%ARGS> $Name $CurrentValue => '', $Type => 'text' <%METHOD Process> <%ARGS> $Name $Arguments => {}, $Default => 0, $DefaultValue => '', <%INIT> my $value = $Arguments->{ $Name }; $value = '' unless defined $value; # canonicalize: delete leading and trailing spaces, replaces newlines # with one space and then replace all continuouse spaces with one ' ' # (including tabs and other fancy things) $value =~ s/^\s+//; $value =~ s/\s+$//; $value =~ s/\r*\n/ /g; $value =~ s/\s+$/ /g; if ( $value eq '' ) { return $DefaultValue unless $Default; return undef; } return $value; rt-4.4.2/share/html/Widgets/FinalizeWidgetArguments0000664000175000017500000000477513131430353022241 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my %args = %$WidgetArguments; %args = (%args, %{ $args{Callback}->() }) if $args{Callback}; $args{'Description'} = loc( $args{'Description'} ) if $args{'Description'}; $args{'Hints'} = loc( $args{'Hints'} ) if $args{'Hints'}; if ( $args{'ValuesLabel'} ) { my %labels; $labels{$_} = loc( $args{'ValuesLabel'}->{$_} ) for keys %{$args{'ValuesLabel'}}; $args{'ValuesLabel'} = \%labels; } return \%args; <%args> $WidgetArguments => {} rt-4.4.2/share/html/Widgets/BulkProcess0000664000175000017500000000503613131430353017671 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> for my $type ( @$Types ) { my $value = $m->comp( $Meta->{$type}{Widget} . ':Process', Name => $type, Arguments => $Arguments, Default => $Default, DefaultValue => $DefaultValue->{$type}, %{ $Meta->{$type}{WidgetArguments} }, ); unless ( $KeepUndef || defined $value ) { delete $Store->{$type}; } else { $Store->{$type} = $value; } } <%args> $Arguments $Types $Store $Meta => {} $KeepUndef => 0 $Default => 0 $DefaultValue => {} rt-4.4.2/share/html/Widgets/SelectionBox0000664000175000017500000001551613131430353020037 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# The SelectionBox Widget %# %# SYNOPSIS %# %# <%init>: %# my $sel = $m->comp ('/Widgets/SelectionBox:new', %# Action => me.html', %# Name => 'my-selection', %# Available => \@items, %# # you can do things with @{$sel->{Current}} in the %# # OnSubmit callback %# OnSubmit => sub { my $sel = shift; }, %# Selected => \@selected); %# %# $m->comp ('/Widgets/SelectionBox:process', %ARGS, self => $sel) %# %# where @items is an arrayref, each element is [value, label], %# and @selected is an arrayref of selected values from @items. %# %# and in html: %# <& /Widgets/SelectionBox:show, self => $sel &> %# %# if the SelectionBox is created with AutoSave option, OnSubmit will be called %# on every button clicked <%method new> <%init> $ARGS{_item_map} = {map {$_->[0] => $_->[1]} @{$ARGS{Available}}}; return \%ARGS; <%method process> <%init> unless ($ARGS{$self->{Name}.'-Submit'}) { # init $self->{Current} = $self->{Selected}; $self->{Selected} = []; return; } $self->{Selected} = $ARGS{$self->{Name}.'-Selected'}; if ($self->{Selected} && !ref($self->{Selected})) { $self->{Selected} = [$self->{Selected}]; } my $current = $self->{Current} = $ARGS{$self->{Name}.'-Current'}; if ($current && !ref ($current)) { $current = [$current]; } unless ($self->{ReadOnly}) { ++$self->{Modified}; if ($ARGS{add}) { my $choosed = $ARGS{$self->{Name}.'-Available'}; for my $add (ref($choosed) ? @$choosed : $choosed) { next if grep { $_ eq $add } @$current; push @$current, $add; } } if ($ARGS{remove}) { my $choosed = $ARGS{$self->{Name}.'-Selected'}; for my $del (ref($choosed) ? @$choosed : $choosed) { @$current = map { $_ eq $del ? () : $_ } @$current; } } if ($ARGS{moveup} or $ARGS{movedown}) { my $offset = $ARGS{moveup} ? 1 : 0; my $choosed = $ARGS{$self->{Name}.'-Selected'}; $choosed = [$choosed] unless ref ($choosed); my $canmove = 0; # not in the cornor for my $i ($ARGS{moveup} ? 0..$#{$current} : reverse 0..$#{$current}) { if (grep {$_ eq $current->[$i]} @$choosed) { if ($canmove) { splice (@$current, $i-$offset, 2, @{$current}[$i+1-$offset,$i-$offset]); } } else { ++$canmove; } } } if ($ARGS{clear}) { $current = []; } $self->{Current} = $current; } @{$self->{Current}} = grep { exists $self->{_item_map}{$_} } @{$self->{Current}}; if ($self->{AutoSave} or $ARGS{$self->{Name}.'-Save'}) { $self->{OnSubmit}->($self); delete $self->{Modified}; } <%ARGS> $self => undef <%method current> % for (@{$self->{Current}}) { % } <%INIT> <%ARGS> $self => undef <%method show>
    <& SelectionBox:current, self => $self &> <&|/l&>Available:
    % unless ($self->{ReadOnly}) { % } % unless ($self->{'ReadOnly'}) { % unless ($ARGS{'NoArrows'}) { % } % if ($ARGS{'Clear'}) { % } % if ( $ARGS{'ShowUpdate'} ) { % } % } % my $caption = ""; % unless ($self->{'AutoSave'}) { % if ($self->{Modified}) { % $caption = loc('Selections modified. Please save your changes'); % } <& /Elements/Submit, Caption => loc($caption), Label => loc('Save'), Name => $name.'-Save' &> % }
    <%ARGS> $self => undef $size => 10 <%INIT> my $name = $self->{Name}; my %selected = map {$_ => 1} @{$self->{Selected}}; rt-4.4.2/share/html/Widgets/TitleBoxStart0000664000175000017500000000702713131430353020207 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    <% $rolledup ? " rolled-up" : ""%>" id="<% $id %>">
    "> % if ($hideable) { % } <% $title_href ? qq[] : '' | n %><% $title %><% $title_raw |n %><% $title_href ? "" : '' |n%> \ <% $titleright_href ? qq[] : '' | n %>\ <% $titleright %><% $titleright_raw |n%><% $titleright_href ? "" : '' |n%>\
    " id="<% $tid %>"> <%ARGS> $class => '' $bodyclass => '' $title_href => '' $title => '' $title_raw => '' $title_class => '' $titleright_href => '' $titleright => '' $titleright_raw => '' $id => '' $hideable => 1 $rolledup => 0 <%init> $hideable = 1 if $rolledup; # # This should be pretty bulletproof # my $page = $m->request_comp->path; my $title_b64 = MIME::Base64::encode_base64(Encode::encode( "UTF-8", $title), ''); my $tid = "TitleBox--$page--" . join '--', ($class, $bodyclass, $title_b64, $id); # Replace anything that ISN'T alphanumeric, a hyphen, or an underscore $tid =~ s{[^A-Za-z0-9\-_]}{_}g; my $i = 0; $i++ while $m->notes("$tid-$i"); $m->notes("$tid-$i" => 1); $tid = "$tid-$i"; rt-4.4.2/share/html/Widgets/SavedSearch0000664000175000017500000001644113131430353017627 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%method new> <%init> return \%ARGS; <%method process> <%init> my @actions; $self->{SearchId} ||= $args->{'SavedChartSearchId'} || 'new'; my $SearchParams = { map { $_ => $args->{$_} } @{$self->{SearchFields}} }; if ( my ( $container_object, $search_id ) = _parse_saved_search( $args->{'SavedSearchLoad'} || $args->{'SavedChartSearchId'} ) ) { my $search = RT::Attribute->new( $session{'CurrentUser'} ); $search->Load($search_id); # We have a $search and now; import the others $self->{SearchId} = $args->{'SavedSearchLoad'} || $args->{'SavedChartSearchId'}; $self->{CurrentSearch}{Object} = $search; if ( $args->{'SavedSearchLoad'} ) { for ( @{ $self->{SearchFields} } ) { $args->{$_} = $search->SubValue($_) } } $args->{SavedChartSearchId} = $args->{'SavedSearchLoad'} if $args->{'SavedSearchLoad'}; # saved search in /Search/Chart.html is different from /Search/Build.html # the former is of type 'Chart', while the latter is of type 'Ticket'. # After loading a saved search from the former after loading one from the # latter, accessing /Search/Build.html will still show the old one, so we # need to delete $session{CurrentSearchHash} to let it not show the old one. # of course, the new one should not be shown there either because it's of # different type delete $session{'CurrentSearchHash'}; } # look for the current one in the available saved searches if ($self->{SearchId} eq 'new') { my @Objects = RT::SavedSearch->new( $session{CurrentUser} )->ObjectsForLoading; push @Objects, RT::System->new($session{'CurrentUser'}) if $session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser' ); for my $obj (@Objects) { for ( $m->comp( "/Search/Elements/SearchesForObject", Object => $obj ) ) { my ( $desc, $loc_desc, $search ) = @$_; use Data::Dumper; # FFS local $Data::Dumper::Sortkeys = 1; if ( Dumper( $search->Content ) eq Dumper( { %$SearchParams, SearchType => $self->{SearchType} } ) ) { $self->{CurrentSearch}{Object} = $search; $self->{SearchId} = $search->Id; } } } } if ( $args->{SavedSearchSave} ) { if ( my $search = $self->{CurrentSearch}{Object} ) { # rename $search->SetDescription( $args->{SavedSearchDescription} ); $search->SetSubValues(%$SearchParams); push @actions, loc( '[_1] [_2] updated.', loc($self->{SearchType}), $args->{SavedSearchDescription} ); } else { # new saved search $SearchParams->{$_} //= $defaults->{$_} for @{$self->{SearchFields}}; my $saved_search = RT::SavedSearch->new( $session{'CurrentUser'} ); my ( $ok, $search_msg ) = $saved_search->Save( Privacy => $args->{'SavedSearchOwner'}, Name => $args->{'SavedSearchDescription'}, Type => $self->{'SearchType'}, SearchParams => $SearchParams ); if ($ok) { $self->{CurrentSearch}{Object} = $saved_search->{Attribute}; $self->{SearchId} = $args->{SavedChartSearchId} = 'RT::User-' . $session{CurrentUser}->id . '-SavedSearch-' . $saved_search->Id; push @actions, loc( '[_1] [_2] saved.', loc($self->{SearchType}), $args->{SavedSearchDescription} ); } else { push @actions, [ loc("Can't save [_1]", loc($self->{SearchType})) . ': ' . loc($search_msg), 0 ]; } } } if ( $args->{SavedSearchDelete} && $self->{CurrentSearch}{Object} ) { my ($ok, $msg) = $self->{CurrentSearch}{Object}->Delete; push @actions, $ok ? loc( '[_1] [_2] deleted.', loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description ) : $msg; delete $self->{CurrentSearch}{Object}; delete $self->{SearchId}; delete $args->{SavedChartSearchId}; } $self->{CurrentSearch}{Description} = $self->{CurrentSearch}{Object}->Description if $self->{CurrentSearch}{Object}; return @actions; <%ARGS> $self $args $defaults => {} <%method show>
    <& /Search/Elements/EditSearches, Id => $self->{SearchId} || 'new', Type => $self->{SearchType}, CurrentSearch => $self->{CurrentSearch}, Title => $Title, AllowCopy => 0, $self->{CurrentSearch}{Object} ? ( Object => $self->{CurrentSearch}{Object}, Description => $self->{CurrentSearch}{Object}->Description, ) : (), &>
    <%PERL> foreach my $field ( @{$self->{SearchFields}} ) { if ( ref($ARGS{$field}) && ref($ARGS{$field}) ne 'ARRAY' ) { $RT::Logger->error("Couldn't store '$field'. it's reference to ". ref($ARGS{$field}) ); next; } foreach my $value ( grep defined, ref($ARGS{$field})? @{ $ARGS{$field} } : $ARGS{$field} ) { % } % }
    <%ARGS> $self => undef $Action => '' $Title => loc('Saved searches') <%init> rt-4.4.2/share/html/Prefs/0000775000175000017500000000000013131430353015157 5ustar vagrantvagrantrt-4.4.2/share/html/Prefs/Search.html0000664000175000017500000001154113131430353017254 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@actions &> % if ($session{'CurrentUser'}->HasRight( Object=> $RT::System, Right => 'SuperUser')) {

    <&|/l&>You can also edit the predefined search itself: <% $search->Name %>

    % }
    <& /Search/Elements/DisplayOptions, %$SearchArg, %ARGS, AvailableColumns => $AvailableColumns, CurrentFormat => $CurrentFormat &> <& /Elements/Submit, Caption => loc("Save Changes"), Label => loc('Save'), Name => 'Save'&>
    <&|/Widgets/TitleBox, title => loc("Reset") &>
    <%INIT> my @actions; my $title = loc("Customize").' '; my @fields = qw(Format Order OrderBy RowsPerPage); $ARGS{name} ||= ''; my ($class, $id) = ( $ARGS{name} =~ m/^(.*)-(\d+)$/ ); Abort('No search specified') unless defined $class and $class eq 'RT::Attribute'; my $search = $class->new ($session{'CurrentUser'}); $search->LoadById ($id); # If we are resetting prefs, do so before attempting to load them if ($ARGS{'Reset'}) { my ($ok, $msg) = $session{'CurrentUser'}->UserObj->DeletePreferences($ARGS{name}); push @actions, $ok ? loc('Preferences reset.') : $msg; } $title .= loc (RT::SavedSearch->EscapeDescription($search->Description), loc ('"N"')); my $user = $session{'CurrentUser'}->UserObj; my $SearchArg = $user->Preferences($search, $search->Content); $ARGS{Order} = (ref $ARGS{Order} ? join('|',grep {/\S/} @{$ARGS{Order}}) : $ARGS{Order}); $ARGS{OrderBy} = (ref $ARGS{OrderBy} ? join('|',grep {/\S/} @{$ARGS{OrderBy}}) : $ARGS{OrderBy}); for (@fields) { $ARGS{$_} = $SearchArg->{$_} unless defined $ARGS{$_}; } $ARGS{'Order'} = join '|', grep defined && /\S/, (ref $ARGS{'Order'})? @{$ARGS{'Order'}}: $ARGS{'Order'}; $ARGS{'OrderBy'} = join '|', grep defined && /\S/, (ref $ARGS{'OrderBy'})? @{$ARGS{'OrderBy'}}: $ARGS{'OrderBy'}; my ( $AvailableColumns, $CurrentFormat ); ( $ARGS{Format}, $AvailableColumns, $CurrentFormat ) = $m->comp( '/Search/Elements/BuildFormatString', %ARGS ); if ($ARGS{'Save'}) { my $hash = {map { $_ => $ARGS{$_}} @fields}; my ($ok, $msg) = $user->SetPreferences($search, $hash); push @actions, $ok ? loc('Preferences saved.') : $msg; } rt-4.4.2/share/html/Prefs/AboutMe.html0000664000175000017500000002356713131430353017416 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title=>loc("Preferences") &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc('Identity'), id => "user-prefs-identity" &> <& /Elements/EditCustomFields, Object => $UserObj, Grouping => 'Identity', InTable => 1 &>
    <&|/l&>Email:
    <&|/l&>Real Name:
    <&|/l&>Nickname:
    <&|/l&>Language: <& /Elements/SelectLang, Name => 'Lang', Default => $UserObj->Lang &>
    <&|/l&>Timezone: <& /Elements/SelectTimezone, Name => 'Timezone', Default => $UserObj->Timezone &>
    <&| /Widgets/TitleBox, title => loc('Phone numbers'), id => "user-prefs-phone" &> <& /Elements/EditCustomFields, Object => $UserObj, Grouping => 'Phones', InTable => 1 &>
    <&|/l&>Residence:
    <&|/l&>Work:
    <&|/l&>Mobile:
    <&|/l&>Pager:
    %if ($UserObj->Privileged) { <&| /Widgets/TitleBox, title => loc('Signature'), id => "user-prefs-signature" &> % } % $m->callback( %ARGS, UserObj => $UserObj, CallbackName => 'FormLeftColumn' );
    <&| /Widgets/TitleBox, title => loc('Access control'), id => "user-prefs-password" &> % if ( $UserObj->__Value('Password') ne '*NO-PASSWORD*' ) { <& /Elements/EditPassword, User => $UserObj, Name => [qw(CurrentPass Pass1 Pass2)], &> % } <& /Elements/EditCustomFields, Object => $UserObj, Grouping => 'Access control' &> <&| /Widgets/TitleBox, title => loc('Location'), id => "user-prefs-location" &> <& /Elements/EditCustomFields, Object => $UserObj, Grouping => 'Location', InTable => 1 &>
    <&|/l&>Organization:
    <&|/l&>Address1:
    <&|/l&>Address2:
    <&|/l&>City:
    <&|/l&>State:
    <&|/l&>Zip:
    <&|/l&>Country:
    <& /Elements/EditCustomFieldCustomGroupings, Object => $UserObj &> <& /Elements/Submit, Label => loc('Save Preferences') &> <&| /Widgets/TitleBox, title => loc('Secret authentication token'), id => "user-prefs-feeds" &> <&|/l&>All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below. <& /Elements/Submit, Label => loc('Reset secret authentication token'), Name => "ResetAuthToken", id => "ResetAuthTokenContainer" &> % $m->callback( %ARGS, UserObj => $UserObj, CallbackName => 'FormRightColumn' );
    % $m->callback( %ARGS, UserObj => $UserObj, CallbackName => 'FormEnd' );
    <%INIT> my $UserObj = RT::User->new( $session{'CurrentUser'} ); $UserObj->Load($id) if $id; $UserObj->Load($Name) if $Name && !$UserObj->id; unless ( $UserObj->id ) { Abort(loc("Couldn't load user #[_1] or user '[_2]'", $id, $Name)) if $id && $Name; Abort(loc("Couldn't load user #[_1]", $id)) if $id; Abort(loc("Couldn't load user '[_1]'", $Name)) if $Name; Abort(loc("Couldn't load user")); } $id = $UserObj->id; my @results; if ( $ARGS{'ResetAuthToken'} ) { my ($status, $msg) = $UserObj->GenerateAuthToken; push @results, $msg; } else { my @fields = qw( Name Comments Signature EmailAddress FreeformContactInfo Organization RealName NickName Lang Gecos HomePhone WorkPhone MobilePhone PagerPhone Address1 Address2 City State Zip Country Timezone ); $m->callback( CallbackName => 'UpdateLogic', fields => \@fields, results => \@results, UserObj => $UserObj, ARGSRef => \%ARGS, ); push @results, UpdateRecordObject ( AttributesRef => \@fields, Object => $UserObj, ARGSRef => \%ARGS, ); push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $UserObj ); # Deal with special fields: Privileged, Enabled, and Password if ( $SetPrivileged and $Privileged != $UserObj->Privileged ) { my ($code, $msg) = $UserObj->SetPrivileged( $Privileged ); push @results, loc('Privileged status: [_1]', loc_fuzzy($msg)); } my %password_cond = $UserObj->CurrentUserRequireToSetPassword; if (defined $Pass1 && length $Pass1 ) { my ($status, $msg) = $UserObj->SafeSetPassword( Current => $CurrentPass, New => $Pass1, Confirmation => $Pass2, ); push @results, loc("Password: [_1]", $msg); } } MaybeRedirectForResults( Actions => \@results, ); <%ARGS> $id => $session{'CurrentUser'}->Id $Name => undef $Comments => undef $Signature => undef $EmailAddress => undef $FreeformContactInfo => undef $Organization => undef $RealName => undef $NickName => undef $Privileged => undef $SetPrivileged => undef $Enabled => undef $SetEnabled => undef $Lang => undef $Gecos => undef $HomePhone => undef $WorkPhone => undef $MobilePhone => undef $PagerPhone => undef $Address1 => undef $Address2 => undef $City => undef $State => undef $Zip => undef $Country => undef $CurrentPass => undef $Pass1 => undef $Pass2 => undef $Create=> undef rt-4.4.2/share/html/Prefs/MyRT.html0000664000175000017500000001345513131430353016710 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    % for my $pane ( @panes ) { <&|/Widgets/TitleBox, title => loc('RT at a glance') .': '. loc( $pane->{Name} ), bodyclass => "" &> <& /Widgets/SelectionBox:show, self => $pane &> % } <&|/Widgets/TitleBox, title => loc('Options'), bodyclass => "" &>
    <&|/l&>Rows per box:
    <&|/Widgets/TitleBox, title => loc("Reset RT at a glance") &>
    <%INIT> my @results; my $title = loc("Customize").' '.loc("RT at a glance"); my $user = $session{'CurrentUser'}->UserObj; if ( $ARGS{'UpdateSummaryRows'} ) { unless ( $ARGS{SummaryRows} && int $ARGS{SummaryRows} > 0 ) { push @results, loc ("Illegal '[_1]' preference value.", loc('summary rows')); $ARGS{SummaryRows} = 0; } else { my ($ok, $msg) = $user->SetPreferences( 'SummaryRows', int $ARGS{SummaryRows} ); push @results, $ok ? loc('Preferences saved for [_1].', loc('summary rows')) : $msg; } } $ARGS{'SummaryRows'} ||= $user->Preferences('SummaryRows', RT->Config->Get('DefaultSummaryRows')); if ($ARGS{Reset}) { for my $pref_name ('HomepageSettings', 'SummaryRows') { next unless $user->Preferences($pref_name); my ($ok, $msg) = $user->DeletePreferences($pref_name); push @results, $msg unless $ok; } push @results, loc('Preferences saved.') unless @results; } my $portlets = $user->Preferences('HomepageSettings'); unless ($portlets) { my ($defaults) = RT::System->new($session{'CurrentUser'})->Attributes->Named('HomepageSettings'); $portlets = $defaults ? $defaults->Content : {}; } my %seen; my @items = map ["component-$_", loc($_)], grep !$seen{$_}++, @{RT->Config->Get('HomepageComponents')}; my $sys = RT::System->new($session{'CurrentUser'}); my @objs = ($sys); push @objs, RT::SavedSearch->new( $session{CurrentUser} )->ObjectsForLoading if $session{'CurrentUser'}->HasRight( Right => 'LoadSavedSearch', Object => $RT::System ); my @sys_searches; for my $object (@objs) { for ($m->comp("/Search/Elements/SearchesForObject", Object => $object)) { my ($desc, $loc_desc, $search) = @$_; my $SearchType = 'Ticket'; if ((ref($search->Content)||'') eq 'HASH') { $SearchType = $search->Content->{'SearchType'} if $search->Content->{'SearchType'}; } else { $RT::Logger->debug("Search ".$search->id." ($desc) appears to have no Content"); } if ($object eq $sys && $SearchType eq 'Ticket') { push @items, ["system-$desc", $loc_desc]; push @sys_searches, [$desc, $search]; } else { my $oid = ref($object).'-'.$object->Id.'-SavedSearch-'.$search->Id; my $type = ($SearchType eq 'Ticket') ? 'Saved Search' # loc : $SearchType; push @items, ["saved-$oid", loc($type).": $loc_desc"]; } } } my @panes = $m->comp( '/Admin/Elements/ConfigureMyRT', panes => ['body', 'sidebar'], Action => 'MyRT.html', items => \@items, current_portlets => $portlets, OnSave => sub { my ( $conf, $pane ) = @_; my ($ok, $msg) = $user->SetPreferences( 'HomepageSettings', $conf ); push @results, $ok ? loc('Preferences saved for [_1].', $pane) : $msg; } ); $m->comp( '/Widgets/SelectionBox:process', %ARGS, self => $_ ) for @panes; rt-4.4.2/share/html/Prefs/SearchOptions.html0000664000175000017500000001001313131430353020621 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Search Preferences") &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@actions &>
    <& /Search/Elements/DisplayOptions, %ARGS, Format=> $Format, AvailableColumns => $AvailableColumns, CurrentFormat => $CurrentFormat, RowsPerPage => $RowsPerPage, OrderBy => $OrderBy, Order => $Order &> <& /Elements/Submit, Name => 'SavePreferences', Label => loc('Save Changes') &>
    <%INIT> my @actions; # If we're saving search preferences, do that now $Order = join '|', grep defined && /\S/, (ref $Order)? @{$Order}: $Order; $OrderBy = join '|', grep defined && /\S/, (ref $OrderBy)? @{$OrderBy}: $OrderBy; $Order = (ref $Order ? join('|',grep {/\S/} @{$Order}) : $Order); $OrderBy = (ref $OrderBy ? join('|',grep {/\S/} @{$OrderBy}) : $OrderBy); if ($ARGS{'SavePreferences'}) { my ($ok, $msg) = $session{'CurrentUser'}->UserObj->SetPreferences("SearchDisplay", { Format => $Format, Order => $Order, OrderBy => $OrderBy, RowsPerPage => $RowsPerPage, }); push @actions, $ok ? loc("Preferences saved.") : $msg; } # Read from user preferences my $prefs = $session{'CurrentUser'}->UserObj->Preferences("SearchDisplay") || {}; $Format ||= $prefs->{'Format'}; $Order ||= ($prefs->{'Order'} || RT->Config->Get('DefaultSearchResultOrder')); $OrderBy ||= ($prefs->{'OrderBy'} || RT->Config->Get('DefaultSearchResultOrderBy')); ($RowsPerPage = defined( $prefs->{'RowsPerPage'} ) ? $prefs->{'RowsPerPage'} : 50) unless defined ($RowsPerPage); my ( $AvailableColumns, $CurrentFormat ); ( $Format, $AvailableColumns, $CurrentFormat ) = $m->comp( '/Search/Elements/BuildFormatString', %ARGS, Format => $Format ); <%ARGS> $Format => undef $Description => undef $Order => undef $OrderBy => undef $RowsPerPage => undef rt-4.4.2/share/html/Prefs/QueueList.html0000664000175000017500000000733113131430353017771 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@actions &>

    <&|/l&>Select queues to be displayed on the "RT at a glance" page

      % for my $queue (@queues) {
    • {$queue->Name}) { checked="checked" % } />
    • % }
    <& /Elements/Submit, Caption => loc("Save Changes"), Label => loc('Save'), Name => 'Save', Reset => 1, CheckAll => 1, ClearAll => 1, CheckboxNameRegex => '/^Want-/', &>
    <%INIT> my @actions; my $title = loc("Customize").' '.loc("Queue list"); my $user = $session{'CurrentUser'}->UserObj; my $unwanted = $user->Preferences('QueueList', {}); my $Queues = RT::Queues->new($session{'CurrentUser'}); $Queues->UnLimit; my $right = 'ShowTicket'; $m->callback( CallbackName => 'ModifyQueues', Queues => \$Queues, Right => \$right, Unwanted => $unwanted, ); my @queues = grep { $right ? $_->CurrentUserHasRight($right) : 1 } @{$Queues->ItemsArrayRef}; if ($ARGS{'Save'}) { for my $queue (@queues) { if ($ARGS{"Want-".$queue->Name}) { delete $unwanted->{$queue->Name}; } else { ++$unwanted->{$queue->Name}; } } my ($ok, $msg) = $user->SetPreferences('QueueList', $unwanted); push @actions, $ok ? loc('Preferences saved.') : $msg; } rt-4.4.2/share/html/Prefs/DashboardsInMenu.html0000664000175000017500000000754213131430353021243 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    % for my $pane ( @panes ) { <&|/Widgets/TitleBox, title => loc('Dashboards in menu'), bodyclass => "" &> <& /Widgets/SelectionBox:show, self => $pane &> % } <&|/Widgets/TitleBox, title => loc("Reset dashboards in menu") &>
    <%INIT> my @results; my $title = loc("Customize").' '.loc("dashboards in menu"); my $user = $session{'CurrentUser'}->UserObj; if ($ARGS{Reset}) { my ($ok, $msg) = $user->SetPreferences('DashboardsInMenu', {}); push @results, $ok ? loc('Preferences saved.') : $msg; delete $session{'dashboards_in_menu'}; } my ($default_dashboards) = RT::System->new($session{'CurrentUser'})->Attributes->Named('DashboardsInMenu'); my $dashboard_pref = $session{CurrentUser}->UserObj->Preferences( 'DashboardsInMenu', $default_dashboards ? $default_dashboards->Content : () ); my $current_dashboards = $dashboard_pref->{dashboards} || []; my @dashboards = map { [$_->id, $_->Name] } $m->comp("/Dashboards/Elements/ListOfDashboards", IncludeSuperuserGroups => 0 ); my @panes = $m->comp( '/Admin/Elements/ConfigureDashboardsInMenu', Action => 'DashboardsInMenu.html', panes => ['dashboards_in_menu'], items => \@dashboards, current_portlets => $current_dashboards, OnSave => sub { my ( $conf ) = @_; my ( $ok, $msg ) = $user->SetPreferences( 'DashboardsInMenu', $conf ); push @results, $ok ? loc('Preferences saved for dashboards in menu.') : $msg; delete $session{'dashboards_in_menu'}; } ); $m->comp( '/Widgets/SelectionBox:process', %ARGS, self => $_ ) for @panes; rt-4.4.2/share/html/Prefs/Other.html0000664000175000017500000001027513131430353017133 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    % foreach my $section( RT->Config->Sections ) { <&|/Widgets/TitleBox, title => loc( $section ) &> % foreach my $option( RT->Config->Options( Section => $section ) ) { % next if $option eq 'EmailFrequency' && !RT->Config->Get('RecordOutgoingEmail'); % my $meta = RT->Config->Meta( $option ); <& $meta->{'Widget'}, Default => 1, %{ $m->comp('/Widgets/FinalizeWidgetArguments', WidgetArguments => $meta->{'WidgetArguments'} ) }, Name => $option, DefaultValue => scalar RT->Config->Get( $option ), CurrentValue => $preferences->{ $option }, &> % } % } % if ( RT->Config->Get('Crypt')->{'Enable'} ) { <&|/Widgets/TitleBox, title => loc( 'Cryptography' ) &> <&|/l&>Preferred key: <& /Elements/Crypt/SelectKeyForEncryption, EmailAddress => $UserObj->EmailAddress, Default => $UserObj->PreferredKey &> % } <& /Elements/Submit, Name => 'Update', Label => loc('Save Changes') &>
    <%INIT> my @results; my $title = loc("Preferences"); my $UserObj = $session{'CurrentUser'}->UserObj; my $preferences = $UserObj->Preferences( $RT::System ); if (defined($PreferredKey) and (not $UserObj->FirstAttribute('PreferredKey') or $PreferredKey ne $UserObj->FirstAttribute('PreferredKey')->Content)) { my ($code, $msg) = $UserObj->SetAttribute(Name => 'PreferredKey', Content => $PreferredKey); push @results, loc('Preferred Key: [_1]', $msg) unless $code; } if ( $Update ) { $preferences ||= {}; $m->comp( '/Widgets/BulkProcess', Meta => { map { $_ => RT->Config->Meta($_) } RT->Config->Options }, Store => $preferences, Types => [RT->Config->Options], Default => 1, Arguments => \%ARGS, DefaultValue => { map { $_ => RT->Config->Get($_) } RT->Config->Options }, ); my ($ok, $msg) = $UserObj->SetPreferences( $RT::System, $preferences ); push @results, $ok ? loc("Preferences saved.") : $msg; } <%ARGS> $Update => 0, $User => undef, $PreferredKey => undef, rt-4.4.2/share/html/Dashboards/0000775000175000017500000000000013131430353016152 5ustar vagrantvagrantrt-4.4.2/share/html/Dashboards/Render.html0000664000175000017500000001316013131430353020260 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title, ShowBar => $Preview, Refresh => $Refresh, &> % if ($Preview) { <& /Elements/Tabs &> % } <& /Elements/ListActions, actions => \@results &> % # honor the chosen language for just the dashboard content % my $original_handle; % if ($SubscriptionObj->id) { % if (my $lang = $SubscriptionObj->SubValue('Language')) { % $original_handle = $session{'CurrentUser'}->{'LangHandle'}; % $session{'CurrentUser'}->{'LangHandle'} = RT::I18N->get_handle($lang); % } % } % $m->callback(CallbackName => 'BeforeTable', Dashboard => $Dashboard, show_cb => $show_cb); % $m->callback(CallbackName => 'BeforePanes', Dashboard => $Dashboard, show_cb => $show_cb); % $m->callback(CallbackName => 'AfterPanes', Dashboard => $Dashboard, show_cb => $show_cb);
    % $show_cb->('body'); % $show_cb->('sidebar');
    % $m->callback(CallbackName => 'AfterTable', Dashboard => $Dashboard, show_cb => $show_cb); % if (!$Preview) { % my $edit = RT->Config->Get('WebPath') . '/Dashboards/Modify.html?id='.$id; % my $subscription = RT->Config->Get('WebPath') . '/Dashboards/Subscription.html?id='.$id;

    <&|/l, $edit, $subscription &>You may edit this dashboard and your subscription to it in RT.

    %# We disable autohandlers when mailing (!$Preview) so /Elements/Footer isn't %# run for us. Tidy up the end of the HTML. We don't use /Elements/Tabs (and %# hence PageLayout) so we don't need to close any other tags. % } % # restore the original language for anything else on the page % if ($original_handle) { % $session{'CurrentUser'}->{'LangHandle'} = $original_handle; % } <%INIT> my @results; my $skip_create = 0; $m->callback(ARGSRef => \%ARGS, results => \@results, CallbackName => 'Initial', skip_create => \$skip_create); use RT::Dashboard; my $Dashboard = RT::Dashboard->new($session{'CurrentUser'}); my ($ok, $msg) = $Dashboard->LoadById($id); $ok || Abort(loc("Couldn't load dashboard [_1]: [_2]", $id, $msg)); my $path = '/Dashboards/' . $Dashboard->id . '/' . $Dashboard->Name; unless ( $skip_create ) { push @results, ProcessQuickCreate( Path => $path, ARGSRef => \%ARGS ); } my $SubscriptionObj = RT::Attribute->new($session{'CurrentUser'}); my $rows; # try to load the subscription to this id to get a better idea of number of rows for my $sub ($session{'CurrentUser'}->UserObj->Attributes->Named('Subscription')) { next unless $sub->SubValue('DashboardId') == $id; $SubscriptionObj = $sub; $rows = $SubscriptionObj->SubValue('Rows'); last; } # otherwise honor their search preferences.. otherwise 50 rows # $rows == 0 means unlimited, which we don't want to ignore from above unless (defined($rows)) { my $prefs = $session{'CurrentUser'}->UserObj->Preferences("SearchDisplay") || {}; $rows = defined($prefs->{'RowsPerPage'}) ? $prefs->{'RowsPerPage'} : 50; } my $title = loc '[_1] Dashboard', $Dashboard->Name; my $show_cb = sub { my $pane = shift; $m->comp('Elements/ShowPortlet/dashboard', Portlet => $Dashboard, Rows => $rows, Preview => $Preview, Dashboard => $Dashboard, Pane => $pane, Depth => 0, HasResults => $HasResults, ); }; my $Refresh = $Preview ? $session{'home_refresh_interval'} || RT->Config->Get('HomePageRefreshInterval', $session{'CurrentUser'}) : 0; <%ARGS> $id => undef $Preview => 1 $HasResults => undef rt-4.4.2/share/html/Dashboards/Modify.html0000664000175000017500000001247713131430353020302 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    %unless ($Dashboard->Id) { % } else { % } <&|/Widgets/TitleBox, title => loc('Basics') &>
    <&|/l&>Name:
    <&|/l&>Privacy: <& /Dashboards/Elements/SelectPrivacy, Name => "Privacy", Objects => \@privacies, Default => $Dashboard->Privacy &>
    <& /Elements/Submit, Name => 'Save', Label =>( $Create ? loc('Create') : loc('Save Changes') ) &> % if ($Dashboard->Id && $can_delete) { <& /Elements/Submit, Name => 'Delete', Label => loc('Delete') &> % }
    <%INIT> my ($title, @results); my $tried_create = 0; # user went directly to Modify.html $Create = 1 if !$id; my $redirect_to ='/Dashboards/Modify.html'; use RT::Dashboard; my $Dashboard = RT::Dashboard->new($session{'CurrentUser'}); my $method = $Create ? 'ObjectsForCreating' : 'ObjectsForModifying'; my @privacies = $Dashboard->$method; Abort(loc("Permission Denied")) if @privacies == 0; if ($Create) { $title = loc("Create a new dashboard"); } else { if ($id eq 'new') { $tried_create = 1; my ($val, $msg) = $Dashboard->Save( Name => $ARGS{'Name'}, Privacy => $ARGS{'Privacy'}, ); if (!$val) { Abort(loc("Dashboard could not be created: [_1]", $msg)); } push @results, $msg; $id = $Dashboard->Id; if (!$Dashboard->id || ! $Dashboard->CurrentUserCanSee) { $redirect_to='/Dashboards/index.html'; } } else { my ($ok, $msg) = $Dashboard->LoadById($id); $ok || Abort(loc("Couldn't load dashboard [_1]: [_2]", $id, $msg)); } if ($id) { $title = loc("Modify the dashboard [_1]", $Dashboard->Name); } # If the create failed else { $Create = 1; $title = loc("Create a new dashboard"); } } if (!$Create && !$tried_create && $id && $ARGS{'Save'}) { my ($ok, $msg) = $Dashboard->Update(Privacy => $ARGS{'Privacy'}, Name => $ARGS{'Name'}); if ($ok) { push @results, loc("Dashboard [_1] updated", $Dashboard->Name); } else { push @results, loc("Dashboard [_1] could not be updated: [_2]", $Dashboard->Name, $msg); } } my $can_delete = $Dashboard->CurrentUserCanDelete; if (!$Create && !$tried_create && $id && $ARGS{'Delete'}) { my ($ok, $msg) = $Dashboard->Delete(); if (!$ok) { Abort(loc("Couldn't delete dashboard [_1]: [_2]", $id, $msg)); } push @results, $msg; $redirect_to = '/Dashboards/index.html'; } # This code does automatic redirection if any updates happen. MaybeRedirectForResults( Actions => \@results, Path => $redirect_to, Arguments => { id => $id }, ); <%ARGS> $Create => undef $Name => undef $id => '' unless defined $id $Delete => undef rt-4.4.2/share/html/Dashboards/Queries.html0000664000175000017500000002213113131430353020454 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &> <& Elements/Deleted, searches => \@deleted, Dashboard => $Dashboard &> <& Elements/HiddenSearches, searches => \@hidden_searches, Dashboard => $Dashboard &> % for my $pane (@panes) { % }
    <&| /Widgets/TitleBox, title => $pane->{DisplayName} &> % my ( $pane_name ) = $pane->{Name} =~ /Searches-(.+)/; <& /Widgets/SelectionBox:show, self => $pane, grep( { $_->{pane} eq $pane_name} @deleted ) ? ( ShowUpdate => 1 ) : () &>
    <%INIT> my @results; use RT::Dashboard; my $Dashboard = RT::Dashboard->new($session{'CurrentUser'}); my ($ok, $msg) = $Dashboard->LoadById($id); $ok || Abort(loc("Couldn't load dashboard [_1]: [_2]", $id, $msg)); my $title = loc("Modify the content of dashboard [_1]", $Dashboard->Name); my %desc_of; my @items; my %selected; my %still_exists; # add portlets (homepage componenets) my @components = @{ RT->Config->Get('HomepageComponents') }; for my $desc (@components) { my $name = "component-$desc"; push @items, [$name, loc($desc)]; $desc_of{$name} = loc($desc); $still_exists{$name} = 1; } # add dashboards my @dashboards = $m->comp("/Dashboards/Elements/ListOfDashboards"); for my $dashboard (@dashboards) { # Users *can* set up mutually recursive dashboards, but don't make it THIS # easy for them to shoot themselves in the foot. next if $dashboard->Id == $Dashboard->Id; my $name = 'dashboard-' . $dashboard->Id . '-' . $dashboard->Privacy; my $type = loc('Dashboard'); # loc my $desc = "$type: " . $dashboard->Name; push @items, [$name, $desc]; $desc_of{$name} = $desc; $still_exists{$name} = 1; } # add saved searches my @objs = RT::System->new($session{'CurrentUser'}); push @objs, RT::SavedSearch->new( $session{CurrentUser} )->ObjectsForLoading if $session{'CurrentUser'}->HasRight( Right => 'LoadSavedSearch', Object => $RT::System ); for my $object (@objs) { for ($m->comp("/Search/Elements/SearchesForObject", Object => $object)) { my ($desc, $loc_desc, $search) = @$_; my $SearchType = $search->Content->{'SearchType'} || 'Ticket'; my $type = ( $SearchType eq 'Ticket' ) ? 'Saved Search' # loc : $SearchType; $desc = loc($type) . ": $loc_desc"; my $privacy = $Dashboard->_build_privacy($object); my $name = 'search-' . $search->Id . '-' . $privacy; push @items, [$name, $desc]; $desc_of{$name} = $desc; $still_exists{$name} = 1; } } # Get the list of portlets already in use my @deleted; do { my $panes = $Dashboard->Panes; for my $pane (keys %$panes) { for my $portlet (@{ $panes->{$pane} }) { my $name; my $type = $portlet->{portlet_type}; if ($type eq 'search' || $type eq 'dashboard') { $name = join '-', $type, $portlet->{id}, $portlet->{privacy}; } elsif ($type eq 'component') { $name = join '-', 'component', $portlet->{component}; } if (!$still_exists{$name}) { push @deleted, { pane => $pane, name => $name, description => $portlet->{description}, }; next; } push @{ $selected{$pane} }, $name; $desc_of{$name} = $portlet->{description}; } } }; $m->callback( CallbackName => 'PopulatePossibilities', Dashboard => $Dashboard, items => \@items, desc_of => \%desc_of, still_exists => \%still_exists, selected => \%selected, ); # Create selectionbox widgets for those portlets my %pane_name = ( 'body' => loc('Body'), 'sidebar' => loc('Sidebar'), ); $m->callback( CallbackName => 'Panes', Dashboard => $Dashboard, panes => \%pane_name, ); my @panes; for my $pane (sort keys %pane_name) { my $sel = $m->comp( '/Widgets/SelectionBox:new', Action => 'Queries.html', Name => "Searches-$pane", DisplayName => $pane_name{$pane}, Available => \@items, Selected => $selected{$pane}, AutoSave => 1, OnSubmit => sub { my $self = shift; $m->callback( CallbackName => 'Submit', Dashboard => $Dashboard, Selected => $self->{Current}, pane => $pane, ); my @portlets; for (@{ $self->{Current} }) { my $item = $_; my $desc = $desc_of{$item}; my $portlet_type = $1 if $item =~ s/^(\w+)-//; if ($portlet_type eq 'search' || $portlet_type eq 'dashboard') { my ($id, $privacy) = split '-', $item, 2; push @portlets, { portlet_type => $portlet_type, privacy => $privacy, id => $id, description => $desc, pane => $pane, }; } elsif ($portlet_type eq 'component') { # Absolute paths stay absolute, relative paths go into # /Elements. This way, extensions that add portlets work. my $path = $item; $path = "/Elements/$path" if substr($path, 0, 1) ne '/'; push @portlets, { portlet_type => $portlet_type, component => $item, path => $path, description => $item, pane => $pane, }; } } # we want to keep all the other panes the same my $panes = $Dashboard->Panes; $panes->{$pane} = \@portlets; # remove "deleted" warnings about this pane @deleted = grep { $_->{pane} ne $pane } @deleted; $m->callback( CallbackName => 'BeforeUpdate', Dashboard => $Dashboard, panes => $panes, ); my ($ok, $msg) = $Dashboard->Update(Panes => $panes); if ($ok) { push @results, loc("Dashboard updated"); } else { push @results, loc("Dashboard could not be updated: [_1]", $msg); } }, ); push @panes, $sel; } $m->comp('/Widgets/SelectionBox:process', %ARGS, self => $_ ) for @panes; my @hidden_searches = $Dashboard->PossibleHiddenSearches; <%ARGS> $id => '' unless defined $id rt-4.4.2/share/html/Dashboards/Elements/0000775000175000017500000000000013131430353017726 5ustar vagrantvagrantrt-4.4.2/share/html/Dashboards/Elements/SelectPrivacy0000664000175000017500000000517713131430353022440 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> @Objects => undef $Name => undef $Default => undef rt-4.4.2/share/html/Dashboards/Elements/ShowDashboards0000664000175000017500000000555113131430353022572 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % foreach my $Object (@Objects) { % my $Dashboards = RT::Dashboards->new($session{CurrentUser}); % $Dashboards->LimitToPrivacy(join('-',ref($Object),$Object->Id)); % my $title; % if (ref $Object eq 'RT::User' && $Object->Id == $session{CurrentUser}->Id) { % $title = loc("My dashboards"); % } else { % $title = loc("[_1]'s dashboards",$Object->Name); % } % $title =~ s/([\\'])/\\$1/g; % $title = $m->interp->apply_escapes($title, 'h'); % $Dashboards->SortDashboards(); <& /Elements/CollectionList, %ARGS, Format => qq{'__Name__/TITLE:$title', __Subscription__}, Collection => $Dashboards, &> % } <%init> use RT::Dashboards; my @Objects = RT::Dashboard->new($session{CurrentUser})->ObjectsForLoading(IncludeSuperuserGroups => $IncludeSuperuserGroups); <%args> $IncludeSuperuserGroups => 1 rt-4.4.2/share/html/Dashboards/Elements/SubscriptionRecipients0000664000175000017500000001656313131430353024376 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $UserField => 'Name' $UserOp => '=' $UserString => undef $PrivilegedOnly => undef $GroupField => 'Name' $GroupOp => '=' $GroupString => undef $Recipients => undef $IsFirstSubscription => undef <%INIT> my ($recipients_users, $recipients_groups); my ($Users, $Groups); if ($Recipients) { $recipients_users = $Recipients->{Users}; $recipients_groups = $Recipients->{Groups}; } if ($UserString) { $Users = RT::Users->new($session{'CurrentUser'}); $Users->Limit(FIELD => $UserField, VALUE => $UserString, OPERATOR => $UserOp, CASESENSITIVE => 0); $Users->LimitToPrivileged if $PrivilegedOnly; my $excluded_users = [ $session{'CurrentUser'}->id ]; push @$excluded_users, @{ $recipients_users || [] }; $Users->Limit(FIELD => 'id', VALUE => $excluded_users, OPERATOR => 'NOT IN'); } if ($GroupString) { $Groups = RT::Groups->new($session{'CurrentUser'}); $Groups->LimitToUserDefinedGroups; $Groups->Limit(FIELD => $GroupField, VALUE => $GroupString, OPERATOR => $GroupOp, CASESENSITIVE => 0); $Groups->Limit(FIELD => 'id', VALUE => $recipients_groups, OPERATOR => 'NOT IN') if @{ $recipients_groups || [] }; }
    <&|/l&>Find people whose
    % if ($UserString) { <& /Elements/SelectUsers, UserString => $UserString, UserField => $UserField, UserOp => $UserOp &> % } else { <& /Elements/SelectUsers &> % }
    <&|/l&>Find groups whose
    % if ($GroupString) { <& /Elements/SelectGroups, GroupString => $GroupString, GroupField => $GroupField, GroupOp => $GroupOp &> % } else { <& /Elements/SelectGroups &> % }

    <&|/l&>Add New Recipients: % if ( $Users && $Users->Count ) { % while ( my $u = $Users->Next ) { % } % } % if ( $Groups && $Groups->Count ) { % while ( my $g = $Groups->Next ) { % } % } % for my $i (1 .. 3) { % }
    <&|/l&>User
    <& '/Elements/ShowUser', User => $u, style=>'verbose' &>
    <&|/l&>Group
    <%$g->Name%> (<%$g->Description%>)
    <&|/l&>Email
    <& /Elements/EmailInput, Name => 'Dashboard-Subscription-Email-' . $i, Size => '20' &>
    <&|/l&>Current Recipients:
      % my $current_user_id = $session{CurrentUser}->id; % my $current_user_subscribed = $recipients_users && grep { $_ == $current_user_id } @$recipients_users;
    • /> % if ( $session{CurrentUser}->HasRight( Right => 'AdminUsers', Object => $RT::System ) && % $session{CurrentUser}->HasRight( Right => 'ShowConfigTab', Object =>$RT::System ) ) { <& /Elements/ShowUser, User => $session{CurrentUser} &> % } else { <& /Elements/ShowUser, User => $session{CurrentUser} &> % } <& /Elements/ShowUserEmailFrequency, User => $session{CurrentUser} &>
    • % for my $user_id (@{ $recipients_users || [] }) { % next if $user_id == $session{'CurrentUser'}->id; # already listed current user % my $user = RT::User->new( $session{'CurrentUser'} ); % $user->Load($user_id); % next unless $user->id;
    • % if ( $session{CurrentUser}->HasRight( Right => 'AdminUsers', Object => $RT::System ) && % $session{CurrentUser}->HasRight( Right => 'ShowConfigTab', Object =>$RT::System ) ) { <& /Elements/ShowUser, User => $user &> % } else { <& /Elements/ShowUser, User => $user &> % } <& /Elements/ShowUserEmailFrequency, User => $user &>
    • % } % for my $group_id (@{ $recipients_groups || [] }) { % my $group = RT::Group->new( $session{'CurrentUser'} ); % $group->Load($group_id); % next unless $group->id;
    • % if ( $session{CurrentUser}->HasRight( Right => 'AdminGroup', Object => $RT::System ) && % $session{CurrentUser}->HasRight( Right => 'ShowConfigTab', Object =>$RT::System ) ) { <% $group->Name %> % } else { <% $group->Name %> % }
    • % }
    rt-4.4.2/share/html/Dashboards/Elements/DashboardsForObject0000664000175000017500000000566013131430353023530 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Object => undef <%init> # Returns a hash of dashboards associated on $Object use RT::Dashboard; my %dashboards; my $privacy = RT::Dashboard->_build_privacy($Object); while (my $attr = $Object->Attributes->Next) { if ($attr->Name =~ /^Dashboard\b/) { my $dashboard = RT::Dashboard->new($User); my ($ok, $msg) = $dashboard->Load($privacy, $attr->id); if (!$ok) { $RT::Logger->debug("Unable to load dashboard $ok (privacy $privacy): $msg"); next; } if ($Object->isa('RT::System')) { push @{ $dashboards{system} }, $dashboard; } elsif ($Object->isa('RT::User')) { push @{ $dashboards{personal} }, $dashboard; } elsif ($Object->isa('RT::Group')) { push @{ $dashboards{group}{$Object->Name} }, $dashboard; } } } return \%dashboards; <%args> $User => $session{'CurrentUser'} rt-4.4.2/share/html/Dashboards/Elements/Deleted0000664000175000017500000000455113131430353021224 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> @searches % if (@searches) { <&| /Widgets/TitleBox, title => loc('Deleted queries') &>

    <% loc("The following queries have been deleted and each will be removed from the dashboard once its pane is updated.") %>

      % for (@searches) {
    • <% loc('[_1] (from pane [_2])', ($_->{description} || $_->{name}), $_->{pane}) %>
    • % }
    % } rt-4.4.2/share/html/Dashboards/Elements/ListOfDashboards0000664000175000017500000000606513131430353023053 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> # put the list of dashboards into the navigation use RT::Dashboard; my @objs = RT::Dashboard->new($User)->ObjectsForLoading( IncludeSuperuserGroups => $IncludeSuperuserGroups ); my %dashboard_map; for my $object (@objs) { my $new_dashboards = $m->comp("/Dashboards/Elements/DashboardsForObject", Object => $object, User => $User ); push @{ $dashboard_map{$_} }, @{ $new_dashboards->{$_} || [] } for qw/personal system/; push @{ $dashboard_map{group}{$_} }, @{ $new_dashboards->{group}{$_} } for keys %{ $new_dashboards->{group} || {} }; } my @dashboards = ( (sort { $a->Id <=> $b->Id } @{ $dashboard_map{personal} || [] }), (sort { $a->Id <=> $b->Id } @{ $dashboard_map{system} || [] }), map { sort { $a->Id <=> $b->Id } @{ $dashboard_map{group}{$_} } } keys %{ $dashboard_map{group} || {} }, ); $m->callback(%ARGS, dashboards => \@dashboards, CallbackName => 'ModifyDashboards'); return @dashboards; <%args> $User => $session{CurrentUser} $IncludeSuperuserGroups => 1 rt-4.4.2/share/html/Dashboards/Elements/ShowPortlet/0000775000175000017500000000000013131430353022220 5ustar vagrantvagrantrt-4.4.2/share/html/Dashboards/Elements/ShowPortlet/component0000664000175000017500000000541613131430353024153 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Dashboard $Portlet $Rows => 20 $Preview => 0 $HasResults <%init> my $full_path = $Portlet->{path}; (my $path = $full_path) =~ s{^/Elements/}{}; my $allowed = grep { $_ eq $path } @{RT->Config->Get('HomepageComponents')}; % if (!$allowed) { % $m->out( $m->interp->apply_escapes( loc("Invalid portlet [_1]", $path), "h" ) ); % RT->Logger->info("Invalid portlet $path found on dashboard #" . $Dashboard->Id); % if ($path eq 'QueueList' && grep { $_ eq 'Quicksearch' } @{RT->Config->Get('HomepageComponents')}) { % RT->Logger->warning("You may need to replace the component 'Quicksearch' in the HomepageComponents config with 'QueueList'. See the UPGRADING-4.4 document."); % } % } else { % $m->comp($full_path, HasResults => $HasResults); % } rt-4.4.2/share/html/Dashboards/Elements/ShowPortlet/dashboard0000664000175000017500000000554713131430353024105 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Dashboard $Pane $Portlet $Rows => 20 $Preview => 0 $Depth => 0 $HasResults <%init> my $current_dashboard; if (blessed($Portlet) && $Portlet->isa('RT::Dashboard')) { $current_dashboard = $Portlet; } else { $current_dashboard = RT::Dashboard->new($session{CurrentUser}); my ($ok, $msg) = $current_dashboard->LoadById($Portlet->{id}); if (!$ok) { $m->out($msg); return; } } my @panes = @{ $current_dashboard->Panes->{$Pane} || [] }; Abort("Possible recursive dashboard detected.") if $Depth > 8; <%perl> for my $portlet (@panes) { $m->comp($portlet->{portlet_type}, Portlet => $portlet, Rows => $Rows, Preview => $Preview, Dashboard => $current_dashboard, Pane => $Pane, Depth => $Depth + 1, HasResults => $HasResults ); } rt-4.4.2/share/html/Dashboards/Elements/ShowPortlet/search0000664000175000017500000000450313131430353023412 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Dashboard $Portlet $Rows => 20 $Preview => 0 $HasResults <%init> my @for_showsearch = $Dashboard->ShowSearchName($Portlet); <& /Elements/ShowSearch, @for_showsearch, Override => { Rows => $Rows }, hideable => $Preview, ShowCustomize => $Preview, HasResults => $HasResults, &> rt-4.4.2/share/html/Dashboards/Elements/HiddenSearches0000664000175000017500000000525413131430353022530 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> @searches $Dashboard <%init> # eliminate deleted searches (id=0) because they confuse this logic @searches = grep { $_->Id } @searches; return if @searches == 0; my @display; for my $search (@searches) { if ($search->Name eq 'SavedSearch') { push @display, $search->Description; } elsif ($search->Name =~ m/^Search - (.*)/) { push @display, $1; } else { push @display, $search->Name; } } <&| /Widgets/TitleBox, title => loc('Possible hidden searches') &>

    <% loc("The following queries may not be visible to all users who can see this dashboard.") %>

      % for (@display) {
    • <% $_ %>
    • % }
    rt-4.4.2/share/html/Dashboards/dhandler0000664000175000017500000000417613131430353017666 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%INIT> if ($m->dhandler_arg =~ /^(\d+)/) { $m->comp('/Dashboards/Render.html', id => $1, %ARGS); } else { $m->decline; } rt-4.4.2/share/html/Dashboards/index.html0000664000175000017500000000420213131430353020145 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Dashboards") &> <& /Elements/Tabs &> <& /Elements/ListActions &> <& /Dashboards/Elements/ShowDashboards &> rt-4.4.2/share/html/Dashboards/Subscription.html0000664000175000017500000003372413131430353021535 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc('Dashboard') &>
    <&|/l&>Dashboard: <% $Dashboard->Name %>
    <&|/l&>Queries: % my @portlets = grep { defined } $Dashboard->Portlets; % if (!@portlets) { (<&|/l&>none) % } else {
      % for my $portlet (@portlets) {
    1. <% loc( RT::SavedSearch->EscapeDescription($portlet->{description}), $fields{'Rows'}) %>
    2. % }
    % }
    <&| /Widgets/TitleBox, title => loc('Subscription') &> % $m->callback( %ARGS, CallbackName => 'SubscriptionFormEnd', FieldsRef => \%fields, % SubscriptionObj => $SubscriptionObj, DashboardObj => $Dashboard );
    <&|/l&>Frequency: > % for my $day ( qw/Monday Tuesday Wednesday Thursday Friday Saturday Sunday/ ) {   % }
    >
    >
    >
    <&|/l&>Hour: (<%$timezone%>)
    <&|/l&>Language: <& /Elements/SelectLang, Name => 'Language', Default => $fields{'Language'}, ShowNullOption => 1, &>
    <&|/l&>Rows:
    />
    <&| /Widgets/TitleBox, title => loc('Recipients') &> <& Elements/SubscriptionRecipients, UserField => $UserField, UserString => $UserString, UserOp => $UserOp, GroupString => $GroupString, GroupOp => $GroupOp, GroupField => $GroupField, Recipients => $fields{Recipients}, IsFirstSubscription => $SubscriptionObj ? 0 : 1 &>
    % if ($SubscriptionObj) { <& /Elements/Submit, Name => "Save", Label => loc('Save Changes') &> % } else { <& /Elements/Submit, Name => "Save", Label => loc('Subscribe') &> % }
    <%INIT> use List::MoreUtils 'uniq'; my ($title, @results); my $Loaded = 0; my $timezone = $session{'CurrentUser'}->UserObj->Timezone || RT->Config->Get('Timezone'); use RT::Dashboard; my $Dashboard = RT::Dashboard->new($session{'CurrentUser'}); my ($ok, $msg) = $Dashboard->LoadById($id); $ok || Abort(loc("Couldn't load dashboard [_1]: [_2]", $id, $msg)); my $SubscriptionObj = $Dashboard->Subscription; $id = $SubscriptionObj ? $SubscriptionObj->SubValue('DashboardId') : $ARGS{'id'}; my %fields = ( DashboardId => $id, Frequency => 'daily', Monday => 1, Tuesday => 1, Wednesday => 1, Thursday => 1, Friday => 1, Saturday => 0, Sunday => 0, Hour => '06:00', Dow => 'Monday', Dom => 1, Rows => 20, Recipients => { Users => [], Groups => [] }, Fow => 1, Counter => 0, Language => '', SuppressIfEmpty => 0, ); $m->callback( %ARGS, CallbackName => 'SubscriptionFields', FieldsRef => \%fields, SubscriptionObj => $SubscriptionObj, DashboardObj => $Dashboard); # update any fields with the values from the subscription object if ($SubscriptionObj) { for my $field (keys %fields) { $fields{$field} = $SubscriptionObj->SubValue($field); } } # finally, update any fields with arguments passed in by the user for my $field (keys %fields) { next if $field eq 'DashboardId'; # but this one is immutable $fields{$field} = $ARGS{$field} if defined($ARGS{$field}) || $ARGS{$field.'-Magic'}; } $m->callback( %ARGS, CallbackName => 'MassageSubscriptionFields', FieldsRef => \%fields, SubscriptionObj => $SubscriptionObj, DashboardObj => $Dashboard); # this'll be defined on submit if (defined $ARGS{Save}) { # update recipients for my $key (keys %ARGS) { my $val = $ARGS{$key}; if ( $key =~ /^Dashboard-Subscription-Email-\d+$/ && $val ) { my @recipients = @{ $fields{Recipients}->{Users} }; for ( RT::EmailParser->ParseEmailAddress( $val ) ) { my $email = $_->address; my $user = RT::User->new(RT->SystemUser); ($ok, $msg) = $user->LoadOrCreateByEmail( EmailAddress => $email, Comments => 'Autocreated when added as a dashboard subscription recipient', ); unless ($ok) { push @results, loc("Could not add [_1] as a recipient: [_2]", $email, $msg); next; } my $is_prev_recipient = grep { $_ == $user->id } @recipients; next if $is_prev_recipient; push @recipients, $user->id; push @results, loc("[_1] added to dashboard subscription recipients", $email); } @{ $fields{Recipients}->{Users} } = uniq @recipients; } elsif ($key =~ /^Dashboard-Subscription-(Users|Groups)-(\d+)$/) { my ($mode, $type, $id) = ('', $1, $2); my @recipients = @{ $fields{Recipients}->{$type} }; # find out proper value for user/group checkbox my $add_keep_recipient = ref $ARGS{$key} eq 'ARRAY' ? grep { $_ } @{ $ARGS{$key} } : $ARGS{$key}; my $record; # hold user/group object if ($type eq 'Users') { my $user = RT::User->new($session{CurrentUser}); $user->Load( $id ); $record = $user; } elsif ($type eq 'Groups') { my $group = RT::Group->new($session{CurrentUser}); $group->Load( $id ); $record = $group; } my $is_prev_recipient = grep { $_ == $id } @recipients; if ($add_keep_recipient and not $is_prev_recipient) { # Add User/Group push @recipients, $id; push @results, loc("[_1] added to dashboard subscription recipients", $record->Name); } elsif (not $add_keep_recipient and $is_prev_recipient) { # Remove User/Group @recipients = grep { $_ != $id } @recipients; push @results, loc("[_1] removed from dashboard subscription recipients", $record->Name); } @{ $fields{Recipients}->{$type} } = uniq @recipients; } } # update if ($SubscriptionObj) { $id = delete $fields{'DashboardId'}; # immutable ($ok, $msg) = $SubscriptionObj->SetSubValues(%fields); $fields{'DashboardId'} = $id; $msg = loc("Subscription updated") if $ok; push @results, $msg; } # create else { Abort(loc("Unable to subscribe to dashboard [_1]: Permission Denied", $id)) unless $Dashboard->CurrentUserCanSubscribe; $SubscriptionObj = RT::Attribute->new($session{CurrentUser}); ($ok, $msg) = $SubscriptionObj->Create( Name => 'Subscription', Description => 'Subscription to dashboard ' . $id, ContentType => 'storable', Object => $session{'CurrentUser'}->UserObj, Content => \%fields, ); if ($ok) { push @results, loc("Subscribed to dashboard [_1]", $Dashboard->Name); } else { push @results, loc('Subscription could not be created: [_1]', $msg); } } push @results, loc("Warning: This dashboard has no recipients") unless @{ $fields{Recipients}->{Users} } || @{ $fields{Recipients}->{Groups} }; } elsif (defined $ARGS{OnlySearchForPeople}) { $GroupString = undef; $GroupField = undef; $GroupOp = undef; } elsif (defined $ARGS{OnlySearchForGroup}) { $UserString = undef; $UserField = undef; $UserOp = undef; } if ($SubscriptionObj) { $title = loc("Modify the subscription to dashboard [_1]", $Dashboard->Name); } else { $title = loc("Subscribe to dashboard [_1]", $Dashboard->Name); } <%ARGS> $id => undef $Frequency => undef $Hour => undef $Dow => undef $Dom => undef $Rows => undef $Recipient => undef $Language => undef $UserField => undef $UserOp => undef $UserString => undef $GroupField => undef $GroupOp => undef $GroupString => undef rt-4.4.2/share/html/Download/0000775000175000017500000000000013131430353015647 5ustar vagrantvagrantrt-4.4.2/share/html/Download/CustomFieldValue/0000775000175000017500000000000013131430353021062 5ustar vagrantvagrantrt-4.4.2/share/html/Download/CustomFieldValue/dhandler0000664000175000017500000000550613131430353022574 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%perl> my $id; my $arg = $m->dhandler_arg; # get rest of path if ($arg =~ /^(\d+)\//) { $id = $1; } else { Abort("Corrupted customfieldvalue URL."); } my $OCFV = RT::ObjectCustomFieldValue->new($session{'CurrentUser'}); $OCFV->Load($id) || Abort("OCFV '$id' could not be loaded"); unless ($OCFV->id) { Abort("Bad OCFV id. Couldn't find OCFV '$id'\n"); } my $content_type = $OCFV->ContentType || 'text/plain; charset=utf-8'; if (RT->Config->Get('AlwaysDownloadAttachments')) { $r->headers_out->{'Content-Disposition'} = "attachment"; } elsif (!RT->Config->Get('TrustHTMLAttachments')) { $content_type = 'text/plain; charset=utf-8' if ($content_type =~ /^text\/html/i); } $r->content_type( $content_type ); $m->clear_buffer(); $m->out($OCFV->LargeContent); $m->abort; <%attr> AutoFlush => 0 rt-4.4.2/share/html/User/0000775000175000017500000000000013131430353015016 5ustar vagrantvagrantrt-4.4.2/share/html/User/History.html0000664000175000017500000000470713131430353017355 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('History of the user [_1]', $User->Format) &> <& /Elements/Tabs &> <& /Elements/ShowHistory, Object => $User, ShowDisplayModes => 0, DisplayPath => 'History.html', &> <%INIT> my $User = RT::User->new( $session{'CurrentUser'} ); my ($status, $msg) = $User->Load($id); unless ($status) { RT->Logger->error("Unable to load user $id: $msg"); Abort("Unable to load User $id"); } <%ARGS> $id => undef rt-4.4.2/share/html/User/Search.html0000664000175000017500000000665213131430353017122 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('User Search'), Focus => '#autocomplete-UserString' &> <& /Elements/Tabs &> <& /Elements/GotoUser, Default => $UserString||'' &>

    <&|/l&>This will search for users by looking in the following fields: <% $search_fields %>

    % if ($UserString) { % unless ( $users->Count ) {

    <&|/l&>No users matching search criteria found.

    % } else {

    <&|/l&>Select a user:

    <& /Elements/CollectionList, OrderBy => 'Name', Order => 'ASC', Rows => 100, %ARGS, Format => $Format, Collection => $users, AllowSorting => 1, PassArguments => [qw(Format Rows Page Order OrderBy UserString)], &> % } % } <%INIT> my $users; my $Format; if ( $UserString ) { my $exclude = [RT->Nobody->Id, RT->System->Id]; $users = RT::Users->new($session{'CurrentUser'}); $users->SimpleSearch( Return => 'Name', Term => $UserString, Max => 100, Exclude => $exclude ); my $first = $users->First; RT::Interface::Web::Redirect(RT->Config->Get('WebURL')."User/Summary.html?id=".$first->Id) if $users->Count == 1; $users->GotoFirstItem; $Format = RT->Config->Get('UserSearchResultFormat'); } my $search_fields = join ", ", sort map {s/^CF\.(?:\{(.*)}|(.*))/$1 || $2/e; loc($_)} keys %{RT->Config->Get('UserSearchFields')}; <%ARGS> $UserString => undef rt-4.4.2/share/html/User/Elements/0000775000175000017500000000000013131430353016572 5ustar vagrantvagrantrt-4.4.2/share/html/User/Elements/TicketList0000664000175000017500000000775513131430353020612 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ( $TitleBox ) { <& /Widgets/TitleBoxStart, title => $Title, title_raw => $title_raw, title_href => $url, class => $Class &> % } else { <% $Title %>: % } <& /Elements/CollectionList, %QueryProperties, Class => 'RT::Tickets', Page => 1, AllowSorting => 0, ShowNavigation => 0, &> % if ( $TitleBox ) { <& /Widgets/TitleBoxEnd &> % } <%INIT> my $sql = ''; $sql = join(' OR ', map { "$_.id = ".$User->Id } @WatcherTypes ); $sql = "( $sql )"; $m->callback( CallbackName => 'ModifyWatcherSQL', %ARGS, sql => \$sql, ); if (@$conditions) { $sql .= " AND (".join( " OR ", map $_->{cond}, @$conditions).")"; } my %QueryProperties = ( Query => $sql, OrderBy => 'Priority|id', Order => 'DESC|DESC', Rows => $Rows || 10, ShowHeader => $ShowHeader, Format => $Format, ); $m->callback( CallbackName => 'ModifyQueryProperties', %ARGS, QueryProperties => \%QueryProperties, ); my $url = RT->Config->Get('WebPath') . '/Search/Results.html?'; $url .= $m->comp('/Elements/QueryString', Query => $QueryProperties{'Query'}, OrderBy => $QueryProperties{'OrderBy'}, Order => $QueryProperties{'Order'}, ); my $title_raw; if ($ShowCount) { my $tickets = RT::Tickets->new( $session{'CurrentUser'} ); $tickets->FromSQL($QueryProperties{Query}); my $count = $tickets->CountAll(); $title_raw = '' . loc('(Found [quant,_1,ticket,tickets])', $count) . ''; # don't repeat the search in CollectionList $QueryProperties{Collection} = $tickets; $QueryProperties{TotalFound} = $count; } <%ARGS> $Title => '' $Class => '' @WatcherTypes => (qw(Watcher)) $User => undef $conditions $Rows => 10 $Description => '' $TitleBox => 0 $Format => '' $ShowHeader => 0 $ShowCount => RT->Config->Get('ShowSearchResultCount') rt-4.4.2/share/html/User/Elements/Portlets/0000775000175000017500000000000013131430353020406 5ustar vagrantvagrantrt-4.4.2/share/html/User/Elements/Portlets/ExtraInfo0000664000175000017500000000443713131430353022240 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => loc('User Information'), class => "user extra-info" &> % $m->callback( User => $User, CallbackName => 'BeforeExtraInfo' ); <& /User/Elements/UserInfo, User => $User, FormatConfig => 'UserSummaryExtraInfo', ClassPrefix => 'user-summary' &> <%ARGS> $User rt-4.4.2/share/html/User/Elements/Portlets/InactiveTickets0000664000175000017500000000472713131430353023434 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /User/Elements/TicketList , User => $User, conditions => $conditions, Rows => $Rows, WatcherTypes => [qw(Watcher)], Class => "user inactive-tickets", Title => loc('Inactive Tickets'), TitleBox => 1, ShowHeader => 1, Format => RT->Config->Get('UserSummaryTicketListFormat'), &> <%INIT> unless ( @$conditions ) { push @$conditions, { cond => "Status = '__Inactive__'" }; } <%ARGS> $User => undef $conditions => [] $Rows => 10 rt-4.4.2/share/html/User/Elements/Portlets/ActiveTickets0000664000175000017500000000472113131430353023077 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /User/Elements/TicketList , User => $User, conditions => $conditions, Rows => $Rows, WatcherTypes => [qw(Watcher)], Class => "user active-tickets", Title => loc('Active Tickets'), TitleBox => 1, ShowHeader => 1, Format => RT->Config->Get('UserSummaryTicketListFormat'), &> <%INIT> unless ( @$conditions ) { push @$conditions, { cond => "Status = '__Active__'" }; } <%ARGS> $User => undef $conditions => [] $Rows => 10 rt-4.4.2/share/html/User/Elements/Portlets/CreateAsset0000664000175000017500000000523613131430353022542 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => loc('Quick asset creation'), class => "user create-asset" &>
    /Asset/Create.html"> % for my $key (keys %ARGS) { % next if grep { lc $key eq $_ } qw(user catalog); % } <&|/l_unsafe, $m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}), &>Create a new asset in the catalog [_1]
    <%INIT> my %default_values = (); $m->callback( CallbackName => 'ModifyDefaultValues', ARGSRef => \%ARGS ); <%ARGS> $User rt-4.4.2/share/html/User/Elements/Portlets/UserAssets0000664000175000017500000000426613131430353022442 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} %# Roles => [''] triggers the magical RoleLimit behavior that matches any role <& /User/Elements/AssetList, User => $User, Roles => [''], Title => loc('Assigned Assets') &> <%ARGS> $User rt-4.4.2/share/html/User/Elements/Portlets/CreateTicket0000664000175000017500000000463013131430353022703 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => loc('Quick ticket creation'), class => "user create-ticket" &>
    <&|/l&>Create a ticket with this user as the Requestor in Queue <& /Elements/SelectNewTicketQueue &>
    <%ARGS> $User rt-4.4.2/share/html/User/Elements/AssetList0000664000175000017500000000574513131430353020443 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $assets = RT::Assets->new($session{CurrentUser}); $m->callback( CallbackName => 'ModifyAssetSearch', %ARGS, Assets => $assets, Roles => \@Roles ); for my $role (@Roles) { $assets->RoleLimit( TYPE => $role, VALUE => $User->PrincipalId, SUBCLAUSE => "Role$role", ); } my $Format = q[ '__id__/TITLE:#', '__Name__/TITLE:Name', Description, ]; $m->callback( CallbackName => 'ModifyFormat', %ARGS, Format => \$Format ); <&| /Widgets/TitleBox, title => $Title, class => "user asset-list" &> <& /Elements/CollectionList, Collection => $assets, OrderBy => 'id', Order => 'ASC', Format => $Format, AllowSorting => 0, HasResults => $HasResults, &> <%args> $User $Title @Roles $HasResults => undef rt-4.4.2/share/html/User/Elements/UserInfo0000664000175000017500000000467213131430353020260 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ShowRecord, Object => $User, Format => $format, TrustFormat => 1, # Only modifiable by the RT server admin, so no need to scrub. Class => "$ClassPrefix-extra", &> <%INIT> return unless blessed($User) and $User->id; return unless $FormatConfig; my $format = RT->Config->Get($FormatConfig); return unless $format; <%ARGS> $User => undef $FormatConfig => undef $ClassPrefix => undef rt-4.4.2/share/html/User/Summary.html0000664000175000017500000000704013131430353017342 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc('User: [_1]', $User->Format) &> <& /Elements/Tabs &> <& /Elements/GotoUser &> <& /Elements/ListActions, actions => \@results &> <%perl> $m->callback( CallbackName => 'BeforePortlets', User => $User ); for my $portlet (@$portlets) { $show_portlet->($portlet); } $m->callback( CallbackName => 'AfterPortlets', User => $User ); <%INIT> my $User = RT::User->new( $session{'CurrentUser'} ); my ($status, $msg) = $User->Load($id); unless ($status) { RT->Logger->error("Unable to load user $id: $msg"); Abort("Unable to load User $id"); } my @results; if ( $User->Disabled ){ if ( $session{'CurrentUser'}->HasRight( Object => RT->System, Right => 'AdminUsers' ) ){ push @results, loc('User [_1] is currently disabled. Edit the user and select "Let this user access RT" to enable.', $User->Name); } else{ push @results, loc('User [_1] is currently disabled.', $User->Name); } } my $portlets = RT->Config->Get('UserSummaryPortlets'); my $show_portlet = sub { my $portlet = shift; my $full_path = "/User/Elements/Portlets/$portlet"; unless ( RT::Interface::Web->ComponentPathIsSafe($full_path) ) { RT->Logger->error("unsafe portlet $portlet specified in UserSummaryPortlets"); return; } unless ( $m->comp_exists($full_path) ) { RT->Logger->error("Unable to find $portlet in /User/Elements/Portlets - specified in UserSummaryPortlets"); return; } $m->comp( $full_path, User => $User ); }; <%ARGS> $id => undef rt-4.4.2/share/html/Asset/0000775000175000017500000000000013131430353015157 5ustar vagrantvagrantrt-4.4.2/share/html/Asset/History.html0000664000175000017500000000456013131430353017513 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("History of Asset #[_1]: [_2]", $asset->id, $asset->Name) &> <& /Elements/Tabs &> <& /Elements/ShowHistory, Object => $asset, ShowDisplayModes => 0, DisplayPath => 'History.html', &> <%args> $id => undef <%init> my $asset = LoadAsset($id); rt-4.4.2/share/html/Asset/Helpers/0000775000175000017500000000000013131430353016561 5ustar vagrantvagrantrt-4.4.2/share/html/Asset/Helpers/CreateLinkedTicket0000664000175000017500000000447513131430353022214 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> @Asset => () $Asset => undef $Requestors => '' <%init> my @asset_objs; if ( @Asset ){ @asset_objs = map { LoadAsset($_) } @Asset; } elsif ( $Asset ){ push @asset_objs, LoadAsset($Asset); } <& /Asset/Elements/CreateLinkedTicket, AssetObj => \@asset_objs, Requestors => $Requestors &> % $m->abort; rt-4.4.2/share/html/Asset/Helpers/CreateInCatalog0000664000175000017500000000404513131430353021474 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Asset/Elements/CreateInCatalog &> % $m->abort; rt-4.4.2/share/html/Asset/ModifyPeople.html0000664000175000017500000000774313131430353020454 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Modify people related to asset #[_1]: [_2]", $asset->id, $asset->Name) &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', ARGSRef => \%ARGS, Asset => $asset, Actions => \@results); <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc("People"), class => "asset-people", title_class => "inverse" &>
    <& /Asset/Elements/EditCatalogPeople, %ARGS, Object => $asset &> <& /Asset/Elements/AddCatalogPeople, Object => $asset &> <& /Elements/EditCustomFields, Object => $asset, Grouping => 'People', AsTable => 1 &>
    <& /Elements/Submit, Label => loc('Save'), Name => "Update" &>
    <%init> my $asset = LoadAsset($id); my @results; $m->callback( Asset => $asset, ARGSRef => \%ARGS, Update => \$Update, results => \@results ); if ($Update) { my $CFs = $asset->CustomFields; $CFs->LimitToGrouping($asset => "People"); my ($cf_ok, @cf_errors) = $m->comp( '/Elements/ValidateCustomFields', Object => $asset, CustomFields => $CFs, ARGSRef => \%ARGS ); if ($cf_ok) { push @results, ProcessAssetRoleMembers( $asset => %ARGS ); push @results, ProcessObjectCustomFieldUpdates( Object => $asset, ARGSRef => \%ARGS ); MaybeRedirectForResults( Actions => \@results, Arguments => { id => $asset->id }, ); } else { push @results, @cf_errors; } } $m->callback(CallbackName => 'BeforeDisplay', ARGSRef => \%ARGS, Asset => $asset); <%args> $id => undef $Update => 0 rt-4.4.2/share/html/Asset/Search/0000775000175000017500000000000013131430353016364 5ustar vagrantvagrantrt-4.4.2/share/html/Asset/Search/index.html0000664000175000017500000001025213131430353020361 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $catalog_obj = LoadDefaultCatalog($ARGS{'Catalog'} || ''); $ARGS{'Catalog'} = $catalog_obj->Id; my $assets = RT::Assets->new($session{CurrentUser}); my %search = ProcessAssetsSearchArguments( Assets => $assets, Catalog => $catalog_obj, ARGSRef => \%ARGS, ); my $title = ( $ARGS{'SearchAssets'} or $ARGS{q} ) ? loc("Found [quant,_1,asset,assets]",$assets->Count) : loc("Assets"); $m->callback( CallbackName => 'Initial', Assets => $assets, ARGSRef => \%ARGS); <& /Elements/Header, Title => $title &> <& /Elements/Tabs &> % if ( $ARGS{'SearchAssets'} or $ARGS{q} ){ <& /Elements/CollectionList, %search, Collection => $assets, AllowSorting => 1, &> % if (not $assets->Count) { <&|/l&>No assets matching search criteria found. % } % }
    <&| /Widgets/TitleBox, title => loc("Search Assets") &> <& /Asset/Elements/AssetSearchBasics, %ARGS, CatalogObj => $catalog_obj &> <& /Asset/Elements/AssetSearchPeople, %ARGS, CatalogObj => $catalog_obj &> <& /Elements/Submit, Label => loc('Search'), Name => 'SearchAssets' &> % my $has_assets_cfs = 0; % foreach my $group ( 'Dates', 'Links', RT::CustomField->CustomGroupings( "RT::Asset" ), '' ) { <& /Asset/Elements/AssetSearchCFs, %ARGS, Grouping => $group, CatalogObj => $catalog_obj, has_assets_cfs => \$has_assets_cfs &> % } % if ( $has_assets_cfs ) { <& /Elements/Submit, Label => loc('Search'), Name => 'SearchAssets' &> % }
    rt-4.4.2/share/html/Asset/Search/Results.tsv0000664000175000017500000000556113131430353020572 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $catalog_obj = LoadDefaultCatalog($ARGS{'Catalog'} || ''); $ARGS{'Catalog'} = $catalog_obj->Id; my $assets = RT::Assets->new($session{CurrentUser}); ProcessAssetsSearchArguments( Assets => $assets, Catalog => $catalog_obj, ARGSRef => \%ARGS, ); my $Format = q|id, Name, Description, Status, Catalog, |; $Format .= "$_, " for RT::Asset->Roles; my $CFs = RT::CustomFields->new( $session{CurrentUser} ); $CFs->LimitToCatalog( $catalog_obj->Id ); $CFs->LimitToObjectId( 0 ); # LimitToGlobal but no LookupType restriction $Format .= "'__CF.{$_}__/TITLE:$_', " for map {$_ = $_->Name; s/['\\]/\\$1/g; $_} @{$CFs->ItemsArrayRef}; $m->callback(CallbackName => "ModifyFormat", Format => \$Format ); my $comp = "/Asset/Elements/TSVExport"; $comp = "/Elements/TSVExport" if $m->comp_exists("/Elements/TSVExport"); $m->comp($comp, Collection => $assets, Format => $Format ); rt-4.4.2/share/html/Asset/Search/Bulk.html0000664000175000017500000002215213131430353020151 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Assets") &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', ARGSRef => \%ARGS, Assets => $assets, Actions => \@results); <& /Elements/ListActions, actions => \@results &>
    % foreach my $var ( @{$search{'PassArguments'}} ) { % } <& /Elements/CollectionList, %search, Collection => $assets, AllowSorting => 1, DisplayFormat => $DisplayFormat, &> % if (not $assets->Count) { <&|/l&>No assets matching search criteria found. % } <& /Elements/Submit, Name => 'Update', Label => loc('Update'), CheckboxNameRegex => '/^UpdateAsset(All)?$/', CheckAll => 1, ClearAll => 1, &>
    <&| /Widgets/TitleBox, title => loc("Basics"), class => "asset-basics asset-bulk-basics", title_class => "inverse" &>
    <& /Asset/Elements/SelectCatalog, Name => 'UpdateCatalog', Default => $catalog_obj->id, UpdateSession => 0, &>
    <& /Asset/Elements/SelectStatus, Name => 'UpdateStatus', DefaultValue => 1, CatalogObj => $catalog_obj &>
    % my $cfs = $catalog_obj->AssetCustomFields; % $cfs->LimitToGrouping( 'RT::Asset' => 'Basics'); % if ( $cfs->Count ) { <& /Elements/BulkCustomFields, CustomFields => $cfs, &> % } <&| /Widgets/TitleBox, title => loc("People"), class => "asset-people asset-bulk-people", title_class => "inverse" &> % for my $rname ( $asset->Roles( ACLOnly => 0 ) ) { % my $role = $asset->Role( $rname ); % if ( $role->{'Single'} ) { % my $input = "SetRoleMember-$rname"; % } else { % my $input = "AddRoleMember-$rname"; % $input = "RemoveRoleMember-$rname"; % } % } % my $cfs = $catalog_obj->AssetCustomFields; % $cfs->LimitToGrouping( 'RT::Asset' => 'People'); % if ( $cfs->Count ) { <& /Elements/BulkCustomFields, CustomFields => $cfs, &> % }
    % my $cfs = $catalog_obj->AssetCustomFields; % $cfs->LimitToGrouping( 'RT::Asset' => 'Dates'); % if ( $cfs->Count ) { <&| /Widgets/TitleBox, title => loc("Dates"), class => "asset-dates asset-bulk-dates", title_class => "inverse" &> <& /Elements/BulkCustomFields, CustomFields => $cfs, &> % } % for my $group ( RT::CustomField->CustomGroupings( 'RT::Asset' ), '' ) { % my $cfs = $catalog_obj->AssetCustomFields; % $cfs->LimitToGrouping( 'RT::Asset' => $group); % if ( $cfs->Count ) { <&| /Widgets/TitleBox, class=>'asset-bulk-grouping asset-info-cfs asset-bulk-cfs', title => loc('Edit [_1]', ($group? loc($group) : loc('Custom Fields')) ), title_class => "inverse" &> <& /Elements/BulkCustomFields, CustomFields => $cfs, &> % } % } <&|/Widgets/TitleBox, title => loc('Edit Links'), class => "asset-links asset-bulk-links", title_class => "inverse" &> <& /Elements/BulkLinks, Collection => $assets, %ARGS &> % my $cfs = $catalog_obj->AssetCustomFields; % $cfs->LimitToGrouping( 'RT::Asset' => 'Links'); % if ( $cfs->Count ) { <& /Elements/BulkCustomFields, CustomFields => $cfs, &> % } <& /Elements/Submit, Label => loc('Update'), Name => 'Update' &>
    <%INIT> my @results; $m->callback(ARGSRef => \%ARGS, Results => \@results, CallbackName => 'Initial'); my $catalog_obj = LoadDefaultCatalog($ARGS{'Catalog'} || ''); $ARGS{'Catalog'} = $catalog_obj->Id; my $assets = RT::Assets->new($session{CurrentUser}); my %search = ProcessAssetsSearchArguments( Assets => $assets, Catalog => $catalog_obj, ARGSRef => \%ARGS, ); my $DisplayFormat = "'__CheckBox.{UpdateAsset}__',". $search{'Format'}; $DisplayFormat =~ s/\s*,\s*('?__NEWLINE__'?)/,$1,''/gi; my $asset = RT::Asset->new( $session{'CurrentUser'} ); delete $ARGS{$_} foreach grep { $ARGS{$_} =~ /^$/ } keys %ARGS; $DECODED_ARGS->{'UpdateAssetAll'} = 1 unless @UpdateAsset; if ( $ARGS{'CreateLinkedTicket'} ){ my $url = RT->Config->Get('WebURL') . "Asset/CreateLinkedTicket.html"; $url .= '?'. $m->comp( '/Elements/QueryString', 'Assets' => \@UpdateAsset ); RT::Interface::Web::Redirect($url); } elsif ( $ARGS{Update} ) { my @attributes = $asset->WritableAttributes; @attributes = grep exists $ARGS{ 'Update'. $_ }, @attributes; my %basics = map { $_ => $ARGS{ 'Update'. $_ } } @attributes; foreach my $aid ( @UpdateAsset ) { my $asset = LoadAsset($aid); my @tmp_res; push @tmp_res, UpdateRecordObject( Object => $asset, AttributesRef => \@attributes, ARGSRef => \%basics, ); push @tmp_res, ProcessAssetRoleMembers( $asset => %ARGS ); push @tmp_res, ProcessObjectCustomFieldUpdates( Object => $asset, ARGSRef => \%ARGS ); push @tmp_res, ProcessRecordLinks( RecordObj => $asset, RecordId => 'Asset', ARGSRef => \%ARGS ); push @tmp_res, ProcessRecordBulkCustomFields( RecordObj => $asset, ARGSRef => \%ARGS ); push @results, map { loc( "Asset #[_1]: [_2]", $asset->id, $_ ) } @tmp_res; } MaybeRedirectForResults( Actions => \@results, Arguments => { map { $_ => $ARGS{$_} } grep { defined $ARGS{$_} } @{$search{'PassArguments'}} }, ); } <%ARGS> @UpdateAsset => () rt-4.4.2/share/html/Asset/Modify.html0000664000175000017500000001132013131430353017271 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Modify asset #[_1]: [_2]", $asset->id, $asset->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc("Basics"), class => "asset-basics", title_class => "inverse" &> <& Elements/EditBasics, %ARGS, AssetObj => $asset &> <&| /Widgets/TitleBox, title => loc("Custom Fields"), class => "asset-info-cfs", title_class => "inverse" &> <& /Elements/EditCustomFields, Object => $asset, Grouping => '' &> <& /Elements/Submit, Label => loc('Save asset'), Name => "Update" &>
    <%args> $id => undef $Update => 0 $DisplayAfter => 0 <%init> my $asset = LoadAsset($id); my @results; $m->callback( Asset => $asset, ARGSRef => \%ARGS, Update => \$Update, results => \@results ); if ($Update) { my $skip_update = 0; my @attributes = $asset->WritableAttributes; # Don't update status unless we have a value; otherwise RT complains @attributes = grep { $_ ne "Status" } @attributes unless $ARGS{Status}; my ($cf_ok, @cf_errors) = $m->comp( '/Elements/ValidateCustomFields', Object => $asset, CustomFields => $asset->CustomFields, ARGSRef => \%ARGS ); $m->callback( CallbackName => 'BeforeUpdate', AssetObj => $asset, UpdatableAttributes => \@attributes, results => \@results, cf_ok => \$cf_ok, skip_update => \$skip_update, ARGSRef => \%ARGS, ); if ($cf_ok and not $skip_update) { push @results, ProcessObjectCustomFieldUpdates( Object => $asset, ARGSRef => \%ARGS ); push @results, UpdateRecordObject( Object => $asset, AttributesRef => \@attributes, ARGSRef => \%ARGS ); $m->callback( CallbackName => 'AfterUpdate', AssetObj => $asset, UpdatableAttributes => \@attributes, results => \@results, ARGSRef => \%ARGS, ); MaybeRedirectForResults( Actions => \@results, Arguments => { id => $asset->id }, $DisplayAfter ? (Path => "/Asset/Display.html") : (), ); } else { push @results, @cf_errors; } } rt-4.4.2/share/html/Asset/ModifyDates.html0000664000175000017500000000662313131430353020264 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Modify dates for asset #[_1]: [_2]", $asset->id, $asset->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => loc("Dates"), class => "asset-dates", title_class => "inverse" &> <& Elements/EditDates, %ARGS, AssetObj => $asset &> <& /Elements/Submit, Label => loc('Save asset'), Name => "Update" &>
    <%init> my $asset = LoadAsset($id); my @results; $m->callback( Asset => $asset, ARGSRef => \%ARGS, Update => \$Update, results => \@results ); if ($Update) { my $CFs = $asset->CustomFields; $CFs->LimitToGrouping($asset => "Dates"); my ($cf_ok, @cf_errors) = $m->comp( '/Elements/ValidateCustomFields', Object => $asset, CustomFields => $CFs, ARGSRef => \%ARGS ); if ($cf_ok) { push @results, ProcessObjectCustomFieldUpdates( Object => $asset, ARGSRef => \%ARGS ); MaybeRedirectForResults( Actions => \@results, Arguments => { id => $asset->id }, ); } else { push @results, @cf_errors; } } <%args> $id => undef $Update => 0 rt-4.4.2/share/html/Asset/ModifyLinks.html0000664000175000017500000000676313131430353020311 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Modify links for asset #[_1]: [_2]", $asset->id, $asset->Name) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &> <%init> my $asset = LoadAsset($id); my @results; $m->callback( Asset => $asset, ARGSRef => \%ARGS, Update => \$Update, results => \@results ); if ($Update) { my $CFs = $asset->CustomFields; $CFs->LimitToGrouping($asset => "Links"); my ($cf_ok, @cf_errors) = $m->comp( '/Elements/ValidateCustomFields', Object => $asset, CustomFields => $CFs, ARGSRef => \%ARGS ); if ($cf_ok) { push @results, ProcessRecordLinks( RecordObj => $asset, ARGSRef => \%ARGS ); push @results, ProcessObjectCustomFieldUpdates( Object => $asset, ARGSRef => \%ARGS ); MaybeRedirectForResults( Actions => \@results, Arguments => { id => $asset->id }, ); } else { push @results, @cf_errors; } } <%args> $id => undef $Update => 0 rt-4.4.2/share/html/Asset/Elements/0000775000175000017500000000000013131430353016733 5ustar vagrantvagrantrt-4.4.2/share/html/Asset/Elements/ShowRoleMembers0000664000175000017500000000640713131430353021742 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % my $users = $Group->UserMembersObj( Recursively => 0 ); % while ( my $user = $users->Next ) { % next if $Skip and $Skip->HasMember( $user->PrincipalId ); % if (not $Title) { % } elsif ($Single) {

    <& /Elements/ShowUser, User => $user, Link => 1 &>

    % next if $user->id == RT->Nobody->id; % } else {

    <& /Elements/ShowUser, User => $user, Link => 0 &> % if ($Note) { <% $Note %> % } % if ( $session{'CurrentUser'}->Privileged ){ <&|/l&>User Summary % }

    % }
    <& /User/Elements/UserInfo, User => $user, FormatConfig => 'UserAssetExtraInfo', ClassPrefix => 'asset-user' &> % $m->callback(CallbackName => 'AfterRecord', User => $user, Group => $Group );
    % } % my $groups = $Group->GroupMembersObj( Recursively => 0 ); % $groups->LimitToUserDefinedGroups; % while (my $g = $groups->Next) { % next if $Skip and $Skip->HasMember( $g->PrincipalId );

    <&|/l, $g->Name &>Group: [_1] % if ($Note) { <% $Note %> % }

    % } <%ARGS> $Group => undef $Note => '' $Skip => undef $Single => 0 $Title => 1 rt-4.4.2/share/html/Asset/Elements/CreateLinkedTicket0000664000175000017500000000777513131430353022374 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $AssetObj $Requestors => '' <%init> my @asset_objs; if ( ref $AssetObj eq 'ARRAY' ){ # Accept an array of asset objects @asset_objs = @$AssetObj; } else{ # Also support passing a single asset object push @asset_objs, $AssetObj; } my @description = map { $m->interp->apply_escapes($_, 'h') } $asset_objs[0]->id, $asset_objs[0]->Name; my $refers_to = join ' ', map { "asset:" . $_->id } @asset_objs; # Find possible requestors my %role_addresses; foreach my $asset (@asset_objs){ for my $role ($asset->Roles) { # Create a hash with email addresses to easily de-dupe the lists from multiple assets map { $role_addresses{$role}{$_} = 1 } $asset->RoleGroup($role)->MemberEmailAddresses; } }
    <% $session{CurrentUser}->Privileged ? "/Ticket" : "/SelfService" %>/Create.html" id="AssetCreateLinkedTicket"> % if ( @asset_objs == 1 ){ <&|/l_unsafe, $m->scomp("/Elements/SelectNewTicketQueue"), @description &>Create a new ticket in the [_1] queue about asset #[_2]: [_3]. % } % else { <&|/l_unsafe, $m->scomp("/Elements/SelectNewTicketQueue"), &>Create a new ticket in the [_1] queue about multiple assets. % } % if ($Requestors) { % } else { % my $first = 1; % for my $role ($asset_objs[0]->Roles) { % my $addr = join ', ', keys %{$role_addresses{$role}}; % next unless defined $addr and length $addr;
    % $first = 0; % } % } <& /Elements/Submit, Label => loc("Go"), Caption => loc("This will take you to a partially prefilled ticket creation form.") &>
    rt-4.4.2/share/html/Asset/Elements/EditRoleMembers0000664000175000017500000000572413131430353021710 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Group => undef $Recursively => 0 <%init> my $field_name = "RemoveRoleMember-" . $Group->Name;
      % my $Users = $Group->UserMembersObj( Recursively => $Recursively ); % if ($Group->SingleMemberRoleGroup) {
      % } else { % while ( my $user = $Users->Next ) {
    • % } % my $Groups = $Group->GroupMembersObj( Recursively => $Recursively ); % $Groups->LimitToUserDefinedGroups; % while (my $group = $Groups->Next) {
    • % } % }
    rt-4.4.2/share/html/Asset/Elements/ShowLinks0000664000175000017500000000406513131430353020604 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ShowLinks, Object => delete $ARGS{AssetObj}, %ARGS &> rt-4.4.2/share/html/Asset/Elements/AssetSearchPeople0000664000175000017500000000707313131430353022237 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, class => "asset-search-people", title => loc('People') &> % for my $role (RT::Asset->Roles) { % } % my $CFs = RT::CustomFields->new( $session{CurrentUser} ); % $CFs->LimitToCatalog( $CatalogObj->Id ); % $CFs->LimitToObjectId(0); # LimitToGlobal but no LookupType restriction % $CFs->LimitToGrouping( "RT::Asset" => "People" ); % while (my $cf = $CFs->Next) { % my $name = "CF.{" . $cf->Name . "}"; % my $value = ref($ARGS{$name}) ? $ARGS{$name}[0] : $ARGS{$name} || ''; % my $negval = ref($ARGS{"!$name"}) ? $ARGS{"!$name"}[0] : $ARGS{"!$name"} || ''; % }
    " /> " />
    <& /Elements/SelectCustomFieldValue, CustomField => $cf, Name => $name, Default => $value &> <& /Elements/SelectCustomFieldValue, CustomField => $cf, Name => "!$name", Default => $negval &>
    <%args> $CatalogObj => undef rt-4.4.2/share/html/Asset/Elements/Search0000664000175000017500000000450213131430353020064 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $value = defined $DECODED_ARGS->{q} ? $DECODED_ARGS->{q} : ''; rt-4.4.2/share/html/Asset/Elements/TSVExport0000664000175000017500000001003213131430353020530 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%ARGS> $Collection $Format $PreserveNewLines => 0 <%ONCE> my $no_html = HTML::Scrubber->new( deny => '*' ); <%INIT> require HTML::Entities; $r->content_type('application/vnd.ms-excel'); my $DisplayFormat = $m->comp('/Elements/ScrubHTML', Content => $Format); my @Format = $m->comp('/Elements/CollectionAsTable/ParseFormat', Format => $DisplayFormat); my @columns; my $should_loc = { map { $_ => 1 } qw(Status) }; my $col_entry = sub { my $col = shift; # in tsv output, "#" is often a comment character but we use it for "id" delete $col->{title} if $col->{title} and $col->{title} =~ /^\s*#\s*$/; return { header => Encode::encode_utf8(loc($col->{title} || $col->{attribute})), map => $m->comp( "/Elements/ColumnMap", Class => "RT__Asset", Name => $col->{attribute}, Attr => 'value' ), should_loc => $should_loc->{$col->{attribute}}, } }; if ($PreserveNewLines) { my $col = []; push @columns, $col; for (@Format) { if ($_->{title} eq 'NEWLINE') { $col = []; push @columns, $col; } else { push @$col, $col_entry->($_); } } } else { push @columns, [map { $_->{attribute} ? $col_entry->($_) : () } @Format]; } for (@columns) { $m->out(join("\t", map { $_->{header} } @$_)."\n"); } my $ii = 0; while (my $row = $Collection->Next) { for my $col (@columns) { $m->out(join("\t", map { my $val = ProcessColumnMapValue($_->{map}, Arguments => [$row, $ii++], Escape => 0); $val = loc($val) if $_->{should_loc}; # remove tabs from all field values, they screw up the tsv $val = '' unless defined $val; $val =~ s/(?:\n|\r)//g; $val =~ s{\t}{ }g; $val = $no_html->scrub($val); $val = HTML::Entities::decode_entities($val); Encode::encode_utf8($val); } @$col)."\n"); } } $m->abort(); rt-4.4.2/share/html/Asset/Elements/ShowCatalog0000664000175000017500000000517213131430353021076 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <% $value %> <%ARGS> $Asset => undef $Catalog => undef <%INIT> $Catalog ||= $Asset->CatalogObj if $Asset; return unless $Catalog; my $value = $Catalog->Name; if ( $Asset and $Asset->CurrentUserHasRight('ShowCatalog') ) { # Grab the name anyway if the current user can see the catalog based on his # role for this asset. Simply checking ShowCatalog on the catalog itself # won't work since the role membership is on the asset. We need to # implement context objects (like CFs do) for catalogs. $value = $Catalog->__Value('Name'); } $value = '#'. $Catalog->id unless defined $value and length $value; rt-4.4.2/share/html/Asset/Elements/ShowDates0000664000175000017500000000533213131430353020562 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ShowCustomFields, Object => $AssetObj, Grouping => 'Dates', Table => 0 &> % $m->callback(%ARGS, CallbackName => "AfterFields");
    <&|/l&>Created: <&|/l_unsafe, $m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj) &>[_1] by [_2]
    <&|/l&>Last Updated: <&|/l_unsafe, $m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj) &>[_1] by [_2]
    <%args> $AssetObj rt-4.4.2/share/html/Asset/Elements/AssetSearchCFs0000664000175000017500000000624513131430353021466 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => $Grouping ? loc($Grouping) : loc('Custom Fields'), hide_empty => 1, class=>'asset-search-grouping asset-search-cfs' &> % my $CFs = RT::CustomFields->new( $session{CurrentUser} ); % $CFs->LimitToCatalog( $CatalogObj->Id ); % $CFs->LimitToObjectId(0); # LimitToGlobal but no LookupType restriction % $CFs->LimitToGrouping( "RT::Asset" => $Grouping ); % if ( $CFs->Count > 0 ){ % while (my $cf = $CFs->Next) { % $$has_assets_cfs = 1 if $has_assets_cfs; % my $name = "CF.{" . $cf->Name . "}"; % my $value = ref($ARGS{$name}) ? $ARGS{$name}[0] : $ARGS{$name} || ''; % my $negval = ref($ARGS{"!$name"}) ? $ARGS{"!$name"}[0] : $ARGS{"!$name"} || ''; % }
    <& /Elements/SelectCustomFieldValue, CustomField => $cf, Name => $name, Default => $value &> <& /Elements/SelectCustomFieldValue, CustomField => $cf, Name => "!$name", Default => $negval &>
    % } <%args> $Grouping $CatalogObj => undef $has_assets_cfs => undef rt-4.4.2/share/html/Asset/Elements/EditCatalogPeople0000664000175000017500000000441113131430353022203 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Object <%init> % for my $role ($Object->Roles( ACLOnly => 0 )) {

    <% loc($role) %>

    <& EditRoleMembers, Group => $Object->RoleGroup($role) &>
    % } <&|/l&>(Check box to delete) rt-4.4.2/share/html/Asset/Elements/EditDates0000664000175000017500000000533413131430353020531 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/EditCustomFields, Object => $AssetObj, Grouping => 'Dates', InTable => 1 &> % $m->callback(%ARGS, CallbackName => "AfterFields");
    <&|/l&>Created: <&|/l_unsafe, $m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj) &>[_1] by [_2]
    <&|/l&>Last Updated: <&|/l_unsafe, $m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj) &>[_1] by [_2]
    <%args> $AssetObj rt-4.4.2/share/html/Asset/Elements/EditPeople0000664000175000017500000000454013131430353020713 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % for my $role ( $AssetObj->Roles ) { % }
    <% loc($role) %>: <& /Elements/EmailInput, Name => $role, Size => undef, Default => $ARGS{$role}, Autocomplete => 1 &>
    <%args> $AssetObj rt-4.4.2/share/html/Asset/Elements/AddCatalogPeople0000664000175000017500000000515613131430353022015 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Object

    <&|/l&>Add a person

    <& SelectRoleType, Object => $Object, Name => "AddUserRoleMember-Role" &> ">

    <&|/l&>Add a group

    <& SelectRoleType, Object => $Object, Name => "AddGroupRoleMember-Role" &> ">
    rt-4.4.2/share/html/Asset/Elements/AssetSearchBasics0000664000175000017500000001056013131430353022212 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <&| /Widgets/TitleBox, title => loc('Basics'), class=>'asset-search-grouping asset-search-basics' &> % my $CFs = RT::CustomFields->new( $session{CurrentUser} ); % $CFs->LimitToCatalog( $CatalogObj->Id ); % $CFs->LimitToObjectId(0); # LimitToGlobal but no LookupType restriction % $CFs->LimitToGrouping( "RT::Asset" => "Basics" ); % while (my $cf = $CFs->Next) { % my $name = "CF.{" . $cf->Name . "}"; % my $value = ref($ARGS{$name}) ? $ARGS{$name}[0] : $ARGS{$name} || ''; % my $negval = ref($ARGS{"!$name"}) ? $ARGS{"!$name"}[0] : $ARGS{"!$name"} || ''; % }
    <& /Asset/Elements/SelectCatalog, Name => 'Catalog', CheckRight => "ShowCatalog", Default => $ARGS{'Catalog'}, OnChange => "jQuery('#AssetSearch').submit()" &>
    <& /Asset/Elements/SelectStatus, Name => 'Status', Catalogs => { $CatalogObj->id => 1 }, DefaultValue => 1, Default => ($ARGS{'Status'} || '') &>
    " />
    " />
    <& /Elements/SelectCustomFieldValue, CustomField => $cf, Name => $name, Default => $value &> <& /Elements/SelectCustomFieldValue, CustomField => $cf, Name => "!$name", Default => $negval &>
    <%args> $CatalogObj => undef rt-4.4.2/share/html/Asset/Elements/ShowPeople0000664000175000017500000000572313131430353020752 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $AssetObj <%init> my $CatalogObj = $AssetObj->CatalogObj; % for my $role ($AssetObj->Roles) { % next if $user->id == RT->Nobody->id; % } else { % } % } <& /Elements/ShowCustomFields, Object => $AssetObj, Grouping => 'People', Table => 0 &>
    <% loc($role) %>: % if ($AssetObj->Role($role)->{Single}) { % my $users = $AssetObj->RoleGroup($role)->UserMembersObj(Recursively => 0); % $users->FindAllRows; % my $user = $users->Next; <& /Elements/ShowUser, User => $user, Link => 1 &>
    <& ShowRoleMembers, Group => $AssetObj->RoleGroup($role), Title => 0 &>
    <& ShowRoleMembers, Group => $AssetObj->RoleGroup($role) &> <& ShowRoleMembers, Group => $CatalogObj->RoleGroup($role), Skip => $AssetObj->RoleGroup($role), Note => loc("(via this asset's catalog)") &>
    % $m->callback( %ARGS, CallbackName => 'AfterPeople' ); rt-4.4.2/share/html/Asset/Elements/ShowSummary0000664000175000017500000000570313131430353021161 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $AssetObj <%init> my @sections = ( "Basics", #loc "People", #loc "Dates", #loc "Links", #loc ); my $can_edit = $session{CurrentUser}->Privileged && $AssetObj->CurrentUserHasRight("ModifyAsset"); my %link; for my $section (@sections) { my $page = $section eq 'Basics' ? "Modify.html" : "Modify$section.html"; $link{$section} = RT->Config->Get("WebPath") . "/Asset/$page?id=" . $AssetObj->id; } rt-4.4.2/share/html/Asset/Elements/SelectStatus0000664000175000017500000000537113131430353021307 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/SelectStatus, %ARGS, Type => 'asset', Object => $AssetObj && $AssetObj->id ? $AssetObj : $CatalogObj, Lifecycles => \@Lifecycles &> <%init> my @Lifecycles; for my $id (keys %Catalogs) { my $catalog = RT::Catalog->new($session{'CurrentUser'}); $catalog->Load($id); push @Lifecycles, $catalog->LifecycleObj if $catalog->id; } if ($AssetObj && $AssetObj->id) { $ARGS{DefaultValue} = 0; $ARGS{Default} = $DECODED_ARGS->{Status} || $ARGS{Default}; $ARGS{Object} = $AssetObj; } elsif ( $CatalogObj ) { my $lifecycle = $CatalogObj->LifecycleObj; $ARGS{DefaultValue} = 0; $ARGS{Default} ||= $DECODED_ARGS->{Status} || $lifecycle->DefaultOnCreate; } <%args> $AssetObj => undef $CatalogObj => undef %Catalogs => () rt-4.4.2/share/html/Asset/Elements/SelectCatalog0000664000175000017500000000510613131430353021372 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/SelectObject, Name => "Catalog", ShowAll => $ShowAll, ShowNullOption => $ShowNullOption, CheckRight => "CreateAsset", %ARGS, ObjectType => "Catalog", CacheNeedsUpdate => RT::Catalog->CacheNeedsUpdate, Default => $Default, &> <%args> $ShowAll => 0 $Default => undef $UpdateSession => 1 $ShowNullOption => 0 <%init> my $catalog_obj = LoadDefaultCatalog($Default || ''); if ( $UpdateSession && $catalog_obj->Id ){ $session{'DefaultCatalog'} = $catalog_obj->Id; $Default = $catalog_obj->Id; } rt-4.4.2/share/html/Asset/Elements/ShowBasics0000664000175000017500000000530213131430353020723 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/ShowCustomFields, Object => $AssetObj, Grouping => 'Basics', Table => 0 &> % $m->callback(%ARGS, CallbackName => "AfterFields");
    <&|/l&>Catalog: <& ShowCatalog, Asset => $AssetObj &>
    <&|/l&>Name: <% $AssetObj->Name || '' %>
    <&|/l&>Description: <% $AssetObj->Description || '' %>
    <&|/l&>Status: <% loc($AssetObj->Status) %>
    <%args> $AssetObj rt-4.4.2/share/html/Asset/Elements/CreateInCatalog0000664000175000017500000000451213131430353021645 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}}
    /Asset/Create.html" id="AssetCreateInCatalog"> <&|/l_unsafe, $m->scomp("/Asset/Elements/SelectCatalog"), &>Create a new asset in the catalog [_1]. <& /Elements/Submit, Label => loc("Go"), Caption => loc("This will take you to a partially prefilled asset creation form.") &>
    rt-4.4.2/share/html/Asset/Elements/SelectRoleType0000664000175000017500000000437013131430353021565 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Object $Name $AllowNull => 0 rt-4.4.2/share/html/Asset/Elements/EditBasics0000664000175000017500000000703313131430353020673 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} % if ($AssetObj->id) { % } % if ( $AssetObj->id ) { <& /Elements/EditCustomFields, Object => $AssetObj, Grouping => 'Basics', InTable => 1 &> % } elsif ( my @cf_names = grep { defined } @{RT->Config->Get('AssetBasicCustomFieldsOnCreate') || []} ) { % my $cfs = $CatalogObj->AssetCustomFields; % for my $name ( @cf_names ) { % $cfs->Limit( FIELD => 'Name', VALUE => $name, CASESENSITIVE => 0 ); % } <& /Elements/EditCustomFields, Object => $AssetObj, CustomFields => $cfs, InTable => 1, KeepValue => 1 &> % } % $m->callback(%ARGS, CallbackName => "AfterFields");
    <& /Asset/Elements/SelectCatalog, Default => $current{Catalog} &>
    <& /Asset/Elements/SelectStatus, Name => 'Status', AssetObj => $AssetObj, CatalogObj => $CatalogObj &>
    <%args> $AssetObj $CatalogObj => undef <%init> my %current = map { $_ => ($ARGS{$_} || $AssetObj->$_ || '') } $AssetObj->WritableAttributes; rt-4.4.2/share/html/Asset/Display.html0000664000175000017500000000542013131430353017453 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Asset #[_1]: [_2]", $asset->id, $asset->Name) &> <& /Elements/Tabs &> % $m->callback(CallbackName => 'BeforeActionList', ARGSRef => \%ARGS, Asset => $asset); <& /Elements/ListActions &> <& Elements/ShowSummary, AssetObj => $asset &> % $m->callback(CallbackName => 'AfterShowSummary', ARGSRef => \%ARGS, Asset => $asset); <& /Elements/ShowHistory, Object => $asset, ShowDisplayModes => 0, DisplayPath => 'History.html', &> % $m->callback(CallbackName => 'AfterShowHistory', ARGSRef => \%ARGS, Asset => $asset); <%args> $id => undef <%init> my $asset = LoadAsset($id); $m->callback(CallbackName => 'BeforeDisplay', ARGSRef => \%ARGS, Asset => $asset); rt-4.4.2/share/html/Asset/index.html0000664000175000017500000000504513131430353017160 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%init> my $assets = RT::Assets->new($session{CurrentUser}); $assets->UnLimit; <& /Elements/Header, Title => loc("Assets") &> <& /Elements/Tabs &> <& /Elements/CollectionList, Collection => $assets, OrderBy => 'Name', Order => 'ASC', Format => q[ '__id__/TITLE:#', '__Name__/TITLE:Name', Description, Status, ], AllowSorting => 0, &> rt-4.4.2/share/html/Asset/CreateLinkedTicket.html0000664000175000017500000000541613131430353021551 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <%args> $Asset => undef @Assets => () $Requestors => '' <%init> my @asset_objs; my $single_asset; # Support passing a single asset or many, as with bulk update. if ( $Asset ){ push @asset_objs, LoadAsset($Asset); $single_asset = 1; } elsif ( @Assets ){ @asset_objs = map { LoadAsset($_) } @Assets; $single_asset = 1 if @asset_objs == 1; } else { Abort('No asset specified'); } % if ($single_asset){ <& /Elements/Header, Title => loc("Create linked ticket for asset #[_1]: [_2]", $asset_objs[0]->id, $asset_objs[0]->Name) &> %} %else{ <& /Elements/Header, Title => loc("Create linked ticket for multiple assets") &> %} <& /Elements/Tabs &> <& /Asset/Elements/CreateLinkedTicket, AssetObj => \@asset_objs, Requestors => $Requestors &> rt-4.4.2/share/html/Asset/CreateInCatalog.html0000664000175000017500000000415213131430353021034 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Create new asset") &> <& /Elements/Tabs &> <& /Asset/Elements/CreateInCatalog &> rt-4.4.2/share/html/Asset/Create.html0000664000175000017500000001433713131430353017260 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Create a new asset in catalog [_1]", $catalog->Name), RT->Config->Get('AssetBasicCustomFieldsOnCreate') ? ( onload => "function () { hide('Asset-Create-details') }" ) : (), &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <& /Elements/EditCustomFieldCustomGroupings, Object => $asset, TitleBoxARGS => { title_class => "inverse" }, KeepValue => 1, CustomFieldGenerator => sub { $catalog->AssetCustomFields }, ForCreation => 1, &>
    <& /Elements/Submit, Label => loc('Create asset') &>
    <%args> $id => "" $Catalog => undef <%init> my $asset = RT::Asset->new( $session{CurrentUser} ); my $catalog = RT::Catalog->new( $session{CurrentUser} ); $catalog->Load($Catalog); Abort(loc("Unable to find catalog '[_1]'", $Catalog)) unless $catalog->id; Abort(loc("You don't have permission to create assets in catalog [_1].", $catalog->Name || $catalog->id)) unless $catalog->CurrentUserHasRight("CreateAsset"); # Update the current default with the latest selection $session{'DefaultCatalog'} = $catalog->Id; my @results; if ($id eq "new") { my $skip_create = 0; my ($cf_ok, @cf_errors) = $m->comp( '/Elements/ValidateCustomFields', Object => $asset, CustomFields => $catalog->AssetCustomFields, ARGSRef => \%ARGS ); $m->callback( CallbackName => 'BeforeCreate', AssetObj => $asset, CatalogObj => $catalog, results => \@results, cf_ok => \$cf_ok, skip_create => \$skip_create, ARGSRef => \%ARGS ); if ($cf_ok and not $skip_create) { # Handle CFs and links my %create = ( ProcessObjectCustomFieldUpdatesForCreate( ARGSRef => \%ARGS, ContextObject => $catalog, ), ProcessLinksForCreate( ARGSRef => \%ARGS ), map { $_ => $ARGS{$_} } $asset->Roles, ); # Handle basic fields for ($asset->WritableAttributes) { $create{$_} = $ARGS{$_} if exists $ARGS{$_}; } $m->callback( %ARGS, AssetObj => $asset, CatalogObj => $catalog, Create => \%create, CallbackName => 'MassageCreate' ); my ($ok, $msg, $nonfatal) = $asset->Create( %create ); push @results, $msg, @{$nonfatal || []}; if ($ok) { MaybeRedirectForResults( Actions => \@results, Path => "/Asset/Display.html", Arguments => { id => $asset->id }, ); } } else { push @results, @cf_errors; } } if ( RT->Config->Get('AssetBasicCustomFieldsOnCreate') ) { PageMenu->child( basics => raw_html => q[] . loc('Basics') . q[]); PageMenu->child( details => raw_html => q[] . loc('Details') . q[]); } rt-4.4.2/share/html/Asset/ModifyCFs.html0000664000175000017500000000747213131430353017702 0ustar vagrantvagrant%# BEGIN BPS TAGGED BLOCK {{{ %# %# COPYRIGHT: %# %# This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) %# %# %# LICENSE: %# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. %# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: %# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) %# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that %# you are the copyright holder for those contributions and you grant %# Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} <& /Elements/Header, Title => loc("Modify [_3] for asset #[_1]: [_2]", $asset->id, $asset->Name, $Grouping || loc("Custom Fields") ) &> <& /Elements/Tabs &> <& /Elements/ListActions, actions => \@results &>
    <&| /Widgets/TitleBox, title => $Grouping ? loc($Grouping) : loc("Custom Fields"), class => "asset-info-cfs ".($Grouping ? CSSClass("asset-info-cfs-\L$Grouping") : ""), title_class => "inverse" &> <& /Elements/EditCustomFields, Object => $asset, Grouping => $Grouping &> <& /Elements/Submit, Label => loc('Save asset'), Name => "Update" &>
    <%args> $id => undef $Update => 0 $Grouping => '' <%init> my $asset = LoadAsset($id); my @results; my $CFs = $asset->CustomFields; $CFs->LimitToGrouping($asset => $Grouping); Abort(loc("No custom fields found for grouping '[_1]'", $Grouping)) if $Grouping and not $CFs->Count; $m->callback( Asset => $asset, ARGSRef => \%ARGS, Update => \$Update, results => \@results ); if ($Update) { my ($cf_ok, @cf_errors) = $m->comp( '/Elements/ValidateCustomFields', Object => $asset, CustomFields => $CFs, ARGSRef => \%ARGS ); if ($cf_ok) { push @results, ProcessObjectCustomFieldUpdates( Object => $asset, ARGSRef => \%ARGS ); MaybeRedirectForResults( Actions => \@results, Arguments => { id => $asset->id, Grouping => $Grouping, }, ); } else { push @results, @cf_errors; } } rt-4.4.2/share/fonts/0000775000175000017500000000000013131430353014265 5ustar vagrantvagrantrt-4.4.2/share/fonts/Droid.README0000664000175000017500000000071113131430353016204 0ustar vagrantvagrantDroid is a font family created by Ascender Corporation for use by the Open Handset Alliance platform Android and licensed under the Apache license. The fonts are intended for use on the small screens of mobile handsets and were designed by Steve Matteson of Ascender Corporation. The name was derived from the Open Handset Alliance platform name Android. Droid Sans Fallback is a font with CJK support. See Also: http://en.wikipedia.org/wiki/Droid_(font) rt-4.4.2/share/fonts/DroidSans.ttf0000664000175000017500000044312413131430353016702 0ustar vagrantvagrantLTSH"mý tcOS/2Ÿƒ•[˜`cmapÕeA;L8cvt 9’=ÀIlüfpgmsÓ#°?„gaspFH glyf÷àÜP( @hdmxV‚ý Ø-theadëÑWû6hheaxT$hmtxe…ðûø zkernÙ‰æ]hËîloca>É‚>KhÀmaxpx nameùȤ)X jpostJœOÖ4Ä„prep;ùî©FŒÝÁ=ØÍ_<õÁš3ÃuÚRþ ýÕôÙmþ Zþ þ¢ô^_‘z/ZÝkš3š3Ðfò à¯@ [(1ASC@ ÿýþ„mã ŸJ¶ ÍÁ'“7…+3h{šfžmÏ…hRh=hRhf?“R%“ühbh²h`hRhhƒhqhZhjhj%“%?hfhfhfh%îmÝøÇÓ}yÇ9ÇîÇ…}œÇ¶R+ÿH¢ÇîÇöÇÕÇð}œÇî}¸Ç'h'–¸‹`7PRm¤üm3B)Jÿüž‰?^°®´q°qHq¢%%¶® ÿ¼ø®®+®¶®žq°®°q1®œZ¶!¶¤Õø#é ‡RÕ=héÕ3hf'“h¼hDh{hhéãyž3¨d¦DåRhf“R¨dÿúm{hf¦1¦ž‰Á®=q%“¤#¦?ÍBåTå?å,åhDÝÝÝÝÝÝÑÿþÓ}9Ç9Ç9Ç9Ƕ>¶R¶¶@y/ÕÇð}ð}ð}ð}ð}hð}–¸–¸–¸–¸7œÇÑ®?^?^?^?^?^?^ª^´qHqHqHqHqÿÞ®ÿ½ÿîžo¶®žqžqžqžqžqhfžs¶¤¶¤¶¤¶¤é °®é Ý?^Ý?^Ý?^Ó}´qÓ}´qÓ}´qÓ}´qyǰqy/°q9ÇHq9ÇHq9ÇHq9ÇHq9ÇHq…}%%…}%%…}%%…}%%œÇ¶®œ¶¶ÿõÿ£¶=ÿë¶0ÿÞ¶RD¶R®áR% +ÿHÿ¼¢Çø®ø®îÇ«îÇfîÇ®îÇf®îÿöÕǶ®ÕǶ®ÕǶ®FÿÿÕǶ®ð}žqð}žqð}žq}Hq¸Ç1®¸Ç1`¸Ç1r'hœZ'hœZ'hœZ'hœZ'¶!'¶!'¶!–¸¶¤–¸¶¤–¸¶¤–¸¶¤–¸¶¤–¸¶¤ø7é 7PR‡RPR‡RPR‡RL®hËÝ?^Ñÿþª^ð}žs'hœZžžuž! žm{žžßžøžÝÿé%“Éÿçÿç²ÿçBÿçTÿçJÿçžÿäÝøÇîÇ‹%9ÇPRœÇð}¶R¢Ç‹öÇÕÇ?Rð}‡ÇœÇBN'7#h`#hðN¶@7°q Z¶®ž¤¸¤°qÑ®é žo Z¤q¶®‡qž¤ø®ÿòÁ®#¤qžq ž¤¤q´q˜¸¤–q1ÿìì¤qž¸¤žq¸¤q9Ç îÇÓ}'h¶R¶@+ÿHHuÇ ¢Ç®‡ÇÝœÇøÇîÇ39Ç…\HÕÉÕÉ¢ÇZöÇœÇð}‡ÇœÇÓ}'®#h`šÇH¦úÇúÇ=–ÇœÇÁ;Ǹ?^u‰®3®`)HqîDé®é®î®^¾®é®žqÁ®°®´q‡)é “q#Ñ®¬šô®®m)þ®‰®²7y®?#Hq¶3®´qœZ ÿîÿ¼ƒå®¶î®é Á®îÇ3®øøø7é RRRJÿüff?fçç?ã{ø{–o“ ZfÏ…7…NRNRö“ þ øjh`hD–h?hwçÇþ%ðNôfS3Oq¦b‹)îÇ Jhfd%¨whfhfhfhfªm´´žÏÿ¼‡o}¦%¦ ¦;¦%¦/¦1¦!«Uh%šÍTTÿ¼fÍ R öÇ+®Ý?^BþÓªs3“V_( +    &"  "&   *. . * .  ( '    ' &&&&&& """"" "& . .... &&&     ..          $ ...."""*(****   ...... &&0 &"*$&-  &""" &"& . . -(0&""0$  .* .    &+   *" &+  . &d                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ,~@>~’ðÿ¼ÇÉÝ󊌡ÎÒÖ O\_‘?…óM   " & 0 3 : < D  ¤ § ¬!!!!"!&!.!^"""""""+"H"`"e%Êûþÿÿýÿÿ  ’ðú¼ÆÉØó„ŒŽ£ÑÖQ^>€òM   & 0 2 9 < D  £ § ¬!!!!"!&!.!["""""""+"H"`"d%ÊûþÿÿüÿÿÿãÿÂÿ°aÿIÿ1ÿ–þ…þ„þvÿhýÐýÏýÎýÍþ‚þý›ýšý™ý˜ýhäXäãzãã âBáïáîáíáêáááàáÛáÚáÓá™ávátápáá á àþàûàôàÈà%à"àààààßçßÐßÍÜiOS45]^   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a†‡‰‹“˜ž£¢¤¦¥§©«ª¬­¯®°±³µ´¶¸·¼»½¾ rdeix¡pk vj0ˆš-s12gw'*).l|!¨ºcn,B/(m}‚…—  ¹3Á:f45y „ŒƒŠ‘Ž•–”œ›óKRqNOPzSQL@EYXUTSRQPONMLKJIHGFEDCBA@?>=<;:9876510/.-,('&%$#"! ,E#F` °&`°&#HH-,E#F#a °&a°&#HH-,E#F`° a °F`°&#HH-,E#F#a° ` °&a° a°&#HH-,E#F`°@a °f`°&#HH-,E#F#a°@` °&a°@a°&#HH-, <<-, E# °ÍD# ¸ZQX# °D#Y °íQX# °MD#Y °&QX# ° D#Y!!-, EhD °` E°FvhŠE`D-,± C#Ce -,± C#C -,°(#p±(>°(#p±(E:± -, E°%Ead°PQXED!!Y-,I°#D-, E°C`D-,°C°Ce -, i°@a°‹ ±,ÀŠŒ¸b`+ d#da\X°aY-,ŠEŠŠ‡°+°)#D°)zä-,Ee°,#DE°+#D-,KRXED!!Y-,KQXED!!Y-,°%# Šõ°`#íì-,°%# Šõ°a#íì-,°%õíì-,F#F`ŠŠF# FŠ`Ša¸ÿ€b# #б ŠpE` °PX°a¸ÿº‹°FŒY°`h:-, E°%FRK°Q[X°%F ha°%°%?#!8!Y-, E°%FPX°%F ha°%°%?#!8!Y-,°C°C -,!! d#d‹¸@b-,!°€QX d#d‹¸ b²@/+Y°`-,!°ÀQX d#d‹¸Ub²€/+Y°`-, d#d‹¸@b`#!-,KSXа%Id#Ei°@‹a°€b° aj°#D#°ö!#Š 9/Y-,KSX °%Idi °&°%Id#a°€b° aj°#D°&°öа#D°ö°#D°íа& 9# 9//Y-,E#E`#E`#E`#vh°€b -,°H+-, E°TX°@D E°@aD!!Y-,E±0/E#Ea`°`iD-,KQX°/#p°#B!!Y-,KQX °%EiSXD!!Y!!Y-,E°C°`c°`iD-,°/ED-,E# EŠ`D-,E#E`D-,K#QX¹3ÿà±4 ³34YDD-,°CX°&EŠXdf°`d° `f X!°@Y°aY#XeY°)#D#°)à!!!!!Y-,°CTXKS#KQZX8!!Y!!!!Y-,°CX°%Ed° `f X!°@Y°a#XeY°)#D°%°% XY°%°% F°%#B<°%°%°%°% F°%°`#B< XY°%°%°)à°) EeD°%°%°)à°%°% XY°%°%CH°%°%°%°%°`CH!Y!!!!!!!-,°% F°%#B°%°%EH!!!!-,°% °%°%CH!!!-,E# E °P X#e#Y#h °@PX!°@Y#XeYŠ`D-,KS#KQZX EŠ`D!!Y-,KTX EŠ`D!!Y-,KS#KQZX8!!Y-,°!KTX8!!Y-,°CTX°F+!!!!Y-,°CTX°G+!!!Y-,°CTX°H+!!!!Y-,°CTX°I+!!!Y-, Š#KSŠKQZX#8!!Y-,°%I°SX °@8!Y-,F#F`#Fa#  FŠa¸ÿ€bб@@ŠpE`h:-, Š#IdŠ#SX<!Y-,KRX}zY-,°KKTB-,±B±#ˆQ±@ˆSZX¹ ˆTX²C`BY±$ˆQX¹ @ˆTX²C`B±$ˆTX² C`BKKRX²C`BY¹@€ˆTX²C`BY¹@€c¸ˆTX²C`BY¹@c¸ˆTX²C`BY¹@c¸ˆTX²@C`BYYYYY-,Eh#KQX# E d°@PX|YhŠ`YD-,°°%°%°#>°#>± ° #eB° #B°#?°#?± °#eB°#B°-,zŠE#õ-@ øÿ÷Ÿ÷ó`ò¸ÿè@+ë Fß3ÝUÞÿÜU0ÝÝUÜú0ÂoÀïÀü¶0·`·€·¸ÿÀ@8·F籯/¯?¯O¯_¯o¯@¯F¬Qœ_œà›+ššš šsšƒš¸ÿê@š F¯—¿—+––Ÿ–¯–|–¸ÿê@…– F/’?’O’@’ F/‘Ÿ‘‡†@|P|t t0ttòt oÿo©o—ouo…oKo nÿn©n—nKnUÿÿÿ?gg/g?gÿg@fPf f°f?ee¯e dàd¸ÿÀ@Kd F`_G_P"÷[ì[T[„[I[;[ùZïZkZKZ;Z3UU3U?¯WW/W¸ÿÀ³VF¸ÿà³V F¸ÿÀ³TF¸ÿÀ@eT F?POP_PúHïH‡HeHVH:HúGïG‡G;Gÿ3UU3UUGUúÏÿo¯ï€¸±TS++K¸ÿRK°P[°ˆ°%S°ˆ°@QZ°ˆ°UZ[X±ŽY…BK°2SX°`YK°dSX°@YK°€SX°±BYss^stu+++++++_sssssssssss++++_sst+++_ssssssssss+++_s^stsst++++_sssstssssststt_s+st+s+_sstt_s+_sstt_ss++sts+st+ss++s+++sss+^ N¶u¶ÍJÿìÿìÿìþþ¬¶¼ÕUƒ—Ÿ}å®®qqºÅº¤ŸÇÇ}}°¹Š›¦w–in´ÁÕfox–ÀÕGþ:Åxþöî–ˆ®–‰ –”Z‚–¨ŒyÙ´ ƒm mˆ“ ‚‰¶ü”ÿïƒm{¼ªT¼¶×•–®¶þ¼þoþƒo­****o¡)âq)M|¬âD[•´?”eÌ?g‚Ú = y » ÷ j 4    t ³ ì 9 — ÍI—·+|Õ"‹üf§å8îMžÑ÷;Yp•i®k΢ã_¯È9wÀ"ƒÉ9ŽÏ'ÔeÎu™õHHô j!!t!¤"]"¡#J#´$$5$=% %#%~%º& &&¤&î'+'e'«'â(*(z(£(È(÷)m)…)œ)´)Ë)ä* *r*…**´*Ì*å*ý++++D+¨+¿+×+î,,,6,›--4-K-c-|-“-Ý.x..¥.».Ñ.é//±/Ä/Û/ñ00070N0e0~11$1;1Q1h11˜2 2‚2™2¯2Å2Þ2ô3Y3q3‰3Ÿ3¶3Ì3ã444/4F4^4u4Ž4¥4½4Õ4è4ð5i5€5–5­5Ã5Ú5ñ66&6=6S6j6€6—6®6Å6Ý6ð777;7Œ7ç7þ88,8C8Z8q8„8˜8¯8È8ñ99,9C9V9i9²9Ê9ç9ú::&:>:Q:t:Á;;%;;;O;b;y;;²<>%>8>L>d>|>“>©>À>Ö>ê>ý??*?=?Q?h?z?Ñ@;@S@i@@—@®@Ä@Ý@õAA&A9ALAcAzA‘A§AÀA×AíBBB2BHB{BßCÁD–D®DÅDÜDòEEENE„EœE×EþFNF{FÂGG2G£G¼GöHHAH‚H³HçII(I0I8IjI¶I¾IÆIÎJ=JEJMJ™J¡J©JöJþK)K1KyKK‰LL LŽMM)MBMXMnM„MœM±N#N¥OOŒPPnP®Q Q^QfQâR0RrSSSnSÈT7TTÚUUšV.VWW2WKWaWwW•W®X(X?XªX²XºXÓXÛYrYÑZ/ZFZ]Z¦Z®[[ [[„[Œ\\œ\û]][]¿]Ç]Ï]×]ß]ç]ï]÷^g^o^w^¬^ó_;_‘_ç`=`‹`îaeaâaêbeb×bÿcecmcâd`d¤d»dõe@e¥eëeóff$f,fkfsfðføg2grg½hhshÕiiˆiüjSjkjÚjðkLkTk\kuk}kõlTl®lÄlÚmmTmm—m®mÅmÜmönn(n@n[nvn‘nºnåooDoroÎp*p”pïquq¸r]s*s2s:sms¢s´sÒttpt÷uvvÃwAw÷x~x†xéyyAypy›zzbz‘zÛ{{-{É||£}}`}¤}ð~~-~p~£~É~îVŸü€[€Š'‘‘‘‘‘‘‘‘‘‘‘‘‘‘‚ÛƒNƒZƒb„ „ˆ…$…;…R…f…z…§…ô†G†t† Á ¶+@  p€¸ÿÀ@  H?2/3/+]33/310!!7!!ÁIü·hyý‡¶úJhæ“ÿã‘¶:¹ÿð@ H€ š¸ÿÀ@  H ›?/õÎ/+3/á2]10+#34>32#".Py3ßð"./""/."žú¹&5!!5&%5""5…¦²¶7@#˜ Ð à / o  ˜àð?33/3/]á]]9/á10#!#J)s)-)r)¶ýðýð3ø¶™@X±!  ± P P  H  ®  ®?Oß   /3?399//]33á2233á]22/]33/3/]ä9293/ä92393/3/10!!#!#!5!!5!3!3!!!×?þÍR“TþÝRNþþAþî+R“R%TTüë#@þÝ}þ¸‰þT¬þT¬‰H‰°þP°þP‰þ¸H{ÿ‰Ù-6?´@34/))/!!p/<753&&'4.'66Ù2]…TŠ2f`T !W`e/YƒV*1[OŠd©CB8ŒJX‡[.°+F3][þ(B1YS¾FrT7 æÝ ¬!²BUnJCoS5 ´°*‘)þZBSkH!7-&þ‹b£$9/&qYfÿì3Ë ';?]²<>¸ÿð@3<><>(´2µ#´(AA´ µ´ 0?>%¶7·!¶-¶·¶?áôá?áôá??/]áôá]Þáôá99//881032#"#".54>3232#"#".54>32#úGPœœPGÇ$JsOIpL&#IqNKqM'¬GPœœPGÆ#JsOJpK&#IqNKqL'ÿüÕž,¥¥JH£¥l¬v??v¬llªu>>uªýJ¥¤IH£¥l«v??v«llªu>>uª’úJ¶mÿì}Í!S€@M'JI,IH G6AGB B6B6B;54.#"2>7%4>7.54>32>73#'#".¦!4$;V8/B*Vd‡:bTH þ}4P7#B`þ}(MoG<-2^ŠXSƒ[02Tm<`+" ¸)5A'á¨1`l|Ni§s="AAC%#>@F)$=,Yû¯(6—!?HU86[A$ðNzdV*$MWc9KwS++SwK@m]O$þŒ73#.R$JqN¬Œ‘%GjEªNqJ$1}óåÓ]Áþ2ôwìâÔ^ZÎáð=þ¼¶@ò ð°øù??Þ]áä210#>54'3$KqNªEjH$¬NqK$1|ðáÎZ^ÔâìwôÎÁ]ÓåóRw$@˜€?2/]/^]å]10%'%7˜+þ†õ²°ž¸òþ‰‡+þwoÁþº`fþš`FÁo‰f¢ )@  ªï `  ­³?3á2/]]2á2]10!5!3!!#éþ}ƒ–ƒþ}–‡–…þ{–þ?þøyî 8@Ï  +  —¸ÿÀ@ H_œ /í/]]+3í2]]]10%#>7j'/3Šî6z|{8=„ƒ}5RÑBy@ @¹/á/]Î105!RðѨ¨“ÿã‘ú5@€  –ÀÐ4Ddt¸ÿÀ¶ H›/í/+]]í]]1074>32#".“"./""/."o&5!!5&%5""5ç¶±¸ÿð@ ?/382/8310#çýà³!¶úJ¶bÿìÍ'&@o))o  #ss?á?á/]á]Þá10#"&&54663232>54.#"3q²v¯s93o±~w°t:ýBkMMlEElMMkBݱþèÂff±±ÁfeÁþè²–à•KJ”á—–à”JJ”à²Ç¶5@!@n¿ÿ~ @ ??Í/^]]]á3/3]10!#4>7'3ǰ”`–‘+baY"y{+`ðË#<@ #o%%"o! " s"t?á2?á39/]3/3í]3/á310!!5>54.#"'>32!ðüp^KvS,"?V5_™Ef(\jvA`›l;5]Kþ籜}Q†€L;Z? M54.##532>54.#"'>32Á.StG±¸A„ÊŠmÁUWË]\†W)5bY……Q~U,$B\8k£J\&]n}Fl£n8`IxX9 µ‘` t@"-ª.2(JlCDa?—(Jf=4R9C6}6)6a…?¾ N@, Vn  w‡_ t??39/3á22/]3]]9/]3333á2/]210##!533!4>7#?Õ°ý]—¼Õþ{  þeHþ¸HŸ×ü0d8{uf"11.ý ƒÿìö¶*N@&o,,'$$(h#Y###ð¸ÿÀ@ Hs't$s ?3á?á9/á/+]3/]]333]Þá3102#".'532>54&#"'!!66!c«HD†Å€3c[R!!Ybc*O|V.°¨??9Z7²ýì' i7l ir¶~C ¬$ %NvQ— 9°¦þ]qÿì Ë+?7@ 1n "AA;o 6u,s's?á?á9/á/]á2]Þ2á104>32&&#"3>32#".2>54.#"q5\ŽÆ…./+#X+Z‰dC* 9L_;_šl;>t¤fd¯€JÛnÕ#Ì#º###  h8˜8Y8(888H88“C&CVCCC-s;s?á?á9/]]Á]]]99/]3/]]]áá]Î2/]]á9á9102#".54>7.54>32>54.''">54&5T•qB(F`8:oW5Cy©fn«u=-Lh:1V?%Cr•Ç DhHFkH$'If?~€j}#>W30U?$~Í,X„XClWEL_vI\•h86e’\Kx`JIZmBWƒX,û¦5Y?##A\84TH@<›Tje9R@34BT6ejjÿìË)=5@9o??/n   4u*s%u?á?á9/á/]3á]Þá210#".'532>7##".54>32"32>54.5\ŽÆ…..,#X+‡®f+ 8L`;_šl;?s¥fe®€Jþ%.;r¥jr·DN óG(TWFoN*/K`0C…kB“ÿã‘f'>@)€)) ) –ÀÐ4Ddt¸ÿÀ@  H#››/í?í/+]]3å2]1074>32#".4>32#".“"./""/.""./""/."o&5!!5&%5""5‘'5!!5'%4""4?þø‘f a@/"€"" "–À Ð d t P D ;  /   +  —¸ÿÀ@H_›œ /í?í/]]+3í2]3/]]]]]]å]10%#>74>32#".j'/3Š"./""/."î6z|{8=„ƒ}5í'5!!5'%4""4fîÝN@0@@o0 Pp€Ðð?/^]]]q33/]]29=/33/]]Î10%5üdœý!ßî¨fá þ”þ¾fºé\@= @ Æ»©†{hB9­/­ðo/]]á3/^]]qá/]]]]]]]]3]Î2105!5!fœüdœT••þf––fîÝN@0@@o0 Pp€Ðð?/^]]]q33/]]39=/33/]]Î105fàý œüdBl þfþX%ÿã%Ë';>@!2š(('F F=/= -›7Q?á3/å2/^]9/]Þá9/á3/á1054>7>54.#"'66324>32#".'B20D+9U8S–F?Q¼a]•h86P64B&»"./""/."ž%9\PM*)CEO50O94"‘*;3`‹WCiZT/-C?B,þÑ&5!!5&%5""5mÿJ¶Who@?X`'''FF'N1 j@j;@NN, [d¿@6S@EI/3Á?Á99//^]^]Á3Á22/]Á]ÞqÁ9///]]ÁÁ10#".'##".54>3232>54.#"32>7#"$&546$3232>77&&#"%9La:-I4!6GY5MwR+;ožb-ZRE"+.F/V˜Ñ{©þþ¯ZO™ã“=wod+VØ‚³þçÃfvÛ7Áœ¿jüeU7N2M*Je?Û>}qaH)2A#%B18eŽVe¨zDþ`5D(=hŒNŽÝ˜OoÇþê R&,fó¼Eîˆe½þñþÕ…w-SsEý :^xݼ„@$FFII€Ð¸ÿÀ@ H/Ÿß¸ÿð@_ H?2?9/9+á/83^]3/8+]q39=/99]]99]]3310!!#3.' ýߢ¼ªþg”‘Åþ;¼úDj¨4 ZåõÖ$*[p€g1111$Zd0 #`y $`"`?á?á9/^]]á9öá2]]ö]á9/]]qá210!2#!32>54&##!2>54.#ǀÃB'JmEEyZ4A{°oþºôTrFš¦ß XwI !K|\¶'Wg>lR7 -OxVdm:J;Y;xhý—ýð(He=8^C%}ÿì˜Ë#L@¯@Hº ` p  ¸ÿÀ@ H %¯%[f$!_ _?á3?á3öá]3/+]]9/+]10"3267#"&&546632&&k®{C;v°vY N'NUa;¤ðLW©ú¢lÄON?”'Q˜Ú‰Û–N#¢lÆ©¦Æn,*œ .Çü¶ &@ [gZd``?á?áöá]öá10#!!24.##3 ü`¶þ÷¨þ’—™ø®_ÅB~¸uÉ¢ é¹þé»^¶\µþô¶’ÕŠCû‰$Ǿ¶ B@&g  Zd _O¯ _ _?á?á9/^]qáöá2æ29/]10!!!!!!!¾ý ÷ýÃýé=¶¤þ<¢ýøÇ¾¶ p@ÿ€Ð¸ÿÀ@8 H  / ¯ Zd _?oÿ@H@H_??á9/++^]qáöá2^]3/+]]q9/10!#!!!!º÷ýÃý鶤ýü¤}ÿìòË+7@++ )Zg--[ f,+_$_$_?á?á9/áöá]ö2á9/10!#"&&546$32.#"32>7!ä7pv‚Kò¦V_¶ «oÌXH$SX].z¼B7x¾†,I>7þÕý3 iî¬Ãi,*¢Q˜Ú‰‚ØœV ´ÇÕ¶ =@# Ze À ¿  Zd _ ?2?39/^]áöá2]]]öá210!#!#3!3ÕºýfººšºªýV¶ý˜hRd¶ W@& + { › « û T + ; K   Zɸÿø@ H  ?Á2?Á2/^]+]Á2ñÁ2_]]]]q10!!57'5!dý¬¬f)˜)ff)ûh)ÿHþ{s¶/@ß`p/Z    _/á?/^]3/á]]]10"&'532>533L"N-%K=&»;i“þ{   2XD¶ú^iše1Ç¢¶ d@- f   °/Zd  H¸ÿð@ H ?3?399++öá2]]]3/8^]33/839]310!##373¢Óþ=‹ººyÄÑýøºrý¸¶ý%¨3ýƒÇ¾¶#@¯Zd_?á?öá]]31033!Ǻ=¶úð¦Ç/¶‹@69 H9Z¸ÿø@ H H eO  ¸ÿø@ H&  Z d H  ¸ÿð¶ H ?22+2?33+3öá22]+^]]]ö993+3+á2]+210]]!##!3!#46767##þE¬œžºþAJI?‹9ü–¶ûX¨úJw4†=GIûǶQ@)(Ze°'   Z dH  ¸ÿð¶H ?22+?3+3öá22]]]]öá2]210!###33&'.53×ý1¬ÕÌ®ºMLAŽ9üç¶ûLLJ CC> }ÿìqÍ'4@ [g)À)¿)p)/)_)[ f(#__?á?áöá]]]]öá10#"&&54663232>54.#"qQ í›£ïLLžð£›ë QûÑ4k¥rr¥k22j¤rr¦l4Ý©þêÆllƪªÄkkÅþ뫉ۙQQ™Û‰ŠÚ—QQ—ÚÇ3¶F@,[(8HgÏ@Zd`0@` ??á9/]áöá2^]]]ö]á10###!232>54&##37~Ϙ–ºj†Â~<ýN]‹[.¤®  [¨MýǶ9m þg GqQމ}þbqÍ18@"([g3À3¿3p3/3_3[f2-_#_ /?3á?áöá]]]]öá10&&'#"&&54663232>54.#"q1_Ž]+‰Zyg­3)£ïLLžð£›ë QûÑ4k¥rr¥k22j¤rr¦l4݃ⵄ&^<ŽIÆlƪªÄkkÅþ뫉ۙQQ™Û‰ŠÚ—QQ—ÚÇ ¶‚@V ù H  [ éù H  ?Ÿ¿ß Zd ``?3?á9/^]á9öá2]]Î82+]q2/]á9^]3+]q10#! #'32>54.##ºd þ1Qh7ŽÛþ¡å¤Z~Q%)SW \ý¤¶ÎÑW‚]>ýq\ž#EgEHd@hÿìÉË3B@'Y##Zg5¿5ÿ5`5?5*Z f4*'_$ ` ?3á?3á99ö2á]]]öá3]10#"&'532654.'.54>32&&#"ÉE€¸soÁA"W`f2 ™Iz]YƒU)@t¡aw¾JCA¥Xz†FsT[‰\/‡a™j7#"²xp6PC?%#Sh„TXŠ_2-#œ+q`9SC;!$L`~¶^@2 Ð O Ï  0 ¯ï„Z@àWgw¸ÿÀ@  H_??á2/+]3/^]]á2/]]]]]q10!#!5!!q»þ^þþ_¤¤¸ÿìݸ/@Ze°o¯Z d_ ?2?áöá]]]öá10#".5332>7ÝB…Ɉ€Ä…D»­¯Y€R(¸üLrÄRMŽÇz®üH¯À6bˆQ¸‹¶ l@ `p°ð¸ÿÀ@ H/¿@ H¸ÿð´ ¸ÿà³ H ¸ÿð@  H ?3?33++?3/83+]3/8+]39=/33103#3667ÅÆþ»þÅ'*.¶úJ¶üa[©JJ©aþ¶*ß¶H¸ÿøµH¸ÿø@HHH¸ÿø@/H%D´%%$%D%T%%% p€À¸ÿÀ@ H,o,, ,0,,¸ÿð@ H H %%¸ÿà³ H%¸ÿð¶ H%?33++3?333++/83^]]]3/8+]q39=///]^]q3+3+3+3+3+3+103>73#&&'&'#3>7)Åå  ÈÇþ‘¼þ ò¼þ~Åß  ¶ü¨8pi^&&Zcg1rúJª3l/7437/p6ü\¶ü‡.cb[&%blo1`¶ @  7  8p€À¸ÿÀ@ H   /  ¸ÿð³¸ÿð@(' ?2?399]]/822/83^]3/8+]q39=/3]33]3/8310!##33`Óþžþ‘¼ÅþZÆLN¾þ[{ý…üºýÑ/ýL7¶s@ï  @ H«˜@¸ÿð@/€OZw‡—O6?3?9]/^]]]á92/8]]]33/8]]]]]3+]103#3TÈþB»þBËÓãüƒýÇ/‡Rþ¶ 8@ g  ? O Ÿ f __?á9?á9æ2/2^]æ22/10!!5!5!!þüTÇýMƒý:Û‘¦‘û¤þ¼9¶&@óñ°Àõøõù?á?á/]áí210!!#39þk•ßßþ¼ú•ú1é¶!·¸ÿð´?///8338310#É ²ýà¶úJ¶3þ¼É¶$@óñ`p õùõø?á?áÖ]áí2103#5!!3ßß–þj®Ï•ù)%Á¶?Í/3/103#)Ëf¿¡þ¯þ£%œüdßý!ÿüþ¼NÿH¶º/á/3/10!5!Nü®Rþ¼Œ‰Ù! @ €_/]Ì/Í10#.'53x#RM?Û+.0ÙSXQ"QQL^ÿìœ^#2T@)G#U44o40H ¸ÿÐ@ H H V3P*R$P??3á?9/áá2æ2/++á^]öá2210!'##".5467754.#"'6632%2>55%!BN`?EtU0çì¸7Q4SB@J¶df•a0þ/=hL+ZzI a˜-A*'Q{T¤°ECZ70"‰(8)YŠbý&MuOc 9Q3\V®ÿì?/8µ-HW11¸ÿ¸@ I%GT0*P  P?2á?3á??öá22+öá102#".'##33>"32654&ž^šm<32.#"3267Re°‚JL…²fN•268<:‘”Qƒ66{?‰Õ–Û‰>"š  ÉÔÓÃ%¢qÿì04@&GU22.H V1+P P?3á?3á??öá]öá2210%##".54>323&'&&53#%2>754.#"T;M`<]šn<32!32>7"!4.`n¶ƒHBx§ecžn;ýL™—3WQL'(MQW`r… ì9XJŽÒ‡ˆÖ•NGµnqÁ¶ ¢Ûœ•DqP,ðp@NÏß`€ ?O¿G/¯ € OP ??á?^]3á2/^]3/]3á22/]9/]]]10###5754>32&&#"3‹õ·ÂÂ-U|N;c'/I((:&õÁü?ÁKD`kT# 0SAh%þü^?R^§@ 2SG7/`7p7€77/7/'HYG¸ÿÀ@M H ý°ˆ 0@``¿`ß` `@'@ H'2 7&&5467.54>3232654.##"32654&#"üÅ&/_Œ],!)8°]€Q$A†Í‹k j5'BW/*6@E+G12b’a%Oþ@;aHº¹7ZA°#L?)\lcdgidcjJq#mEL^5  (!/Pm=XŒa4*PqG<[B* R5=Y*?Q`3YŒb4 û%@.sl.:! ,M`spow{tx®2@GU`€ G TP ?2??á3öá22]öá10!4&#"#33>32\ipQnC¶¶ ER\0·¹‚4f”`ýÇþ2+?*¿Òý3 uå%@  GTS??3/åö2á2]10!#34632#"&d¶¶Ä=-'?,-=J)<6 +:98ÿ¼þuå!.@# #G  T"S P?á?3/åæ2/2á2]10"&'532>534632#"&B0?6#.#¶"Hm=-'?,-=þ ” 'A3ôûM{W/_<6 +:98®ð^@ D¸ÿÀ@ H/ G T ¸ÿø@ H H ??399++?öá2^]3/8+]333931073##3V‡%Óþo¬Ñþ°m´´7ªiþ%ý‘øRþZý6þí®d@ GT??öá]10!#3d¶¶®‡^,e@?# G¹ – ¦ ‰ g w  G,U.ð.Ï. .P..GT-#P( ?22??3á223öá2^]]]]öá9/]]]]á210!4&#"#4&#"#33>323>32ÑdiIfA·ciMh?¶” BOY.xŸ&IW`2¯±‚/[‡Xý¢‚4f”`ýÇJ”+?*X^/D-¿Òý3®^0@GU`€ G TP  ?2??á3öá2]öá10!4&#"#33>32\ipQnC¶” ER\0·¹‚4f”`ýÇJ”+?*¿Òý3qÿì-^0@HW!@!Ð!à!!H V PP?á?áöá^]]öá10#".54>3232654&#"-C}²og®GC|³og®Gý‰šš‡‰šš‡'‰Õ‘LL‘Õ‰ˆÓ‘KK‘ÓˆÑÓÓÑÑÏÏ®þ?^06@.HW22& G T1 P +P?2á???3áöá222]öá10".'##33>32"32654&ž;`M; ¶”:M`<^šm<754.#"".54>32373#46767#5LiAAlQ‡f]šn<‰H;?hK)¶”9GX^¨3_…Qý°JÉ+P=%Zÿì?^5H@-%G W7?7_7Ÿ77,G Ÿ¯V6&)P," P?á2?99á2ö]2á]]ö]á310#"&'532>54.'.54>32&&#"?:mš`mœ;LTY,A[95\HHsP+7dŒVa¡H?A‰Gfb8^FHqP*-PxQ(#"¦);$212#4./7#".5#5773!!ú-*# (04>jM,››Niþì?Š  N…e}QNæü‰ýƒab¤ÿìJ0@GU`€G T P??3á?3öá]öá210!'##".5332>53u ER\0[Š\/¶joQnC¶“+?).b˜iÍý=‚‚4e”`:û¶ÕJm¹ÿø@ H H ¸ÿÀ³H¸ÿÀ@ H¿ÏïP/O¸ÿð@ G  ??39]/8Á^]]]3/8++Á9=/3+3+10!33>73wþ‰¼Ç  Ǽþ‰Jý!hl``lh!cû¶ãJ/ù/ÿø@ H/ H' ¸ÿø@ H  H  H¸ÿø@ HT''¸ÿà@ H[  H'  '-.¸ÿÀ³H.¸ÿÀ@ H...1 1011¸ÿð@-  'fv?33]3?3]33/83^]]3/8++39=///+]+]3+3+3+3+3+3+10!.'&'##33>733>73ð¨   ¬Óþ翃  ³Ä¬   ‰ºþäh-24:>?:2j%ýœJý¸-ig[Wa_!ký•"\_XWhm/Hû¶#ÛJ å@¡‰ †÷å6èç øê9k{W:JdtX5E   ÷å6@H@Hk{W:J  0  °  Ù È º   ; K (    ??/]]]Á]]]]^]]qÞ]]]++Á]]]q9=///]]]]]]Á]]]q3]33]Á]]]q10]]33##˜þŸÏúúÏþuÏþôþòÏ3þfšýéýÍ´þL þßJ"d¶"¸ÿÀ³H¸ÿÀ@ H$¿$Ï$ï$P$$/$O$¸ÿð@ "#P?2?á333/8Á3^]]]3/8++Á9=/331033>73#"&'532>77 ½× ǼþNAVtP4L@#0F4%9Jý›(XXR#Va^!cû'QZ1 ‘,@) R5J l@ — H¸ÿÀ@ H ? _  ˜¸ÿøµ H¸ÿÀ·H?¸ÿð@ HO HO?á2+?á2+/]+33+]]3/+3+]310!!5!5!!5ýþ °ýô}D‰’üÑ=þ¼¢¶'@@%÷ 'ñ#ö  #õÙ_)õøõù?á?á9/]]á9/]æ33ñ2â/210.54ᒑ4>7ô-A(Mƒ_6ƒ}}ƒ6_ƒM(A-wssw0=# –!GnNNgV›VgMNnG!• #=0þ´i{ zjéþ-@0@p€ª@€À??/^]á]q103#é––ø3þ¼˜¶)@@% $$÷ñöõïÿÙ$õ#ù õø?á?á9/]]á9/]33æñ2â/2104675&&54.'53"5>5áwssw-A(Mƒ_6!A`>}ƒ6_ƒM(A-;jz {iL0=# •!GnNþ³4H-›Vgþ²NnG!– #=0fJZ#<@ %%  ­ ¸ÿÀ@H­  ? O o  /]3ñÈ/+2á/]]Î10.#"563232>7#".%7-)<;8d”27C/%7/(<;8c•27C‹ !,¢l  !,¢l “þ‹‘^A¹ÿð@ H0 °Àš¸ÿÀ@ H ›/^]/õÎ/+3/á2]10+3##".54>32Õy3ßï#..##..#¤ûçH&5!!5&%4""4¼ÿìºË%Z@%F %'@'H 0 @ Ð  s!s¸ÿÀ@ H??99//+3á3á/^]á]Æ29/3á210$#5.54>753.#"3267vnL‰WŠb45a‹V‰Hˆ.58<;‘”Qƒ6ÔÈÎ K…ljˈK ¬¤!š  ÊÔÒÃ%¡D#É(u@ o#¸ÿÀ³ H¸ÿÈ@0 H**!@ H)!u /"""¯"¿"ß"ÿ"""ts?á?á9/]3á23/+3]3/++399//^]3á2102&&#"!!!!5>55#534>šj®BB8K0RY@+¦š )DaCÕ‰DW‰_2{ì‹#7†@#.« !p99 $ª€¸ÿÀ@1 H8€  )® 3®Ï ï    °  ? o  /]]]áÆ2/]á93Æ]23/+]áÆ2]3/]9ñÀ/]210467'766327'#"&''7&&732>54.#"º#b/l<7&&54>32&&#"#"&'532>54.'.7>54.'‰-:KU7dŒVaH8AŒGcf9_FHqN*)4EL;l›`lœ;LTY+E]73^LIsP)š?eH#)!AlR/&)3S@-&rT=bD%( ‹';9.,/ANa>4UD1&mNGoM(! ž'3--1>NdY%?:7 $.8"&@;9-:3 jÙ 5@! †¯À†@P‘Ÿ Ï 0  /]]3å2/^]áÜ]á104632#"&%4632#"&38('::'(8w8(#:&(8s6015522560 &522dÿìDË%AUj@CÅ"""&LÃ4À44WBÃ& ÉÉ/Ÿ`p€-GÈ;QÈ-?á/á99//]^]áá/áÞ]qá99//3/á10"32>7#".54>32&&4>32#".732>54.#"{=^@!=_C69815<#f˜e36i™d?„;>4aü¾6aЧÀhhÀ§Ša66aЧÀhhÀ§Ša6me¯ê……ê¯ee¯ê……ê¯e,SxKNxR+  ƒ Bzªge§xC!þ¾hÀ§Ša66aЧÀhhÀ§‰b55b‰§Àh…ê¯ee¯ê……ê¯ee¯êDBÇ-N@/-à///O//¯/$à `  .-ä'äÀäÞ?áÜÄá99/áÆ]2/á]Ö]á2210'#".5467754&#"'663232>55ç'/8#+H4c=80Z*03u<}wÉ3D)2*":+R# 3M3flH9d$jzþ:9+3-,A,1Rs“Ç `@ ë P`   ¸ÿÀ@! H Ÿ¯ëŸ   /3/39=/93333/]á]Æ+299//]á310%R5uîîuþË—6tíítþÊ)žNþ¤þ¤N›žNþ¤þ¤N›f9@$ª–‹yVK8 ­³?á/]]]]]]]]]Þá10#!5•üùýé–ÿÿRÑBydÿìDË:NÂ@}¤´Ä´ÄRÅ Å ÅÀÐEÃ-À--P;ÃÉÉ/Ÿ`p€&@È4JÈ&?á?á99//]^]qá339á2/áÞ]qá99//]^]q9áá29‡+Á‡+Ä]10]32654&#####324>32#".732>54.#"çH[OSYF’-9C5*! ³Î_騞ûë6aЧÀhhÀ§Ša66aЧÀhhÀ§Ša6me¯ê……ê¯ee¯ê……ê¯eHEJ;0K9( nW%G8`þ }‚þÃhÀ§Ša66aЧÀhhÀ§‰b55b‰§Àh…ê¯ee¯ê……ê¯ee¯êÿú ¶º/á/3/10!5!ûô Œ{VòË'C@,« )Ÿ)ª0@® àðo #®?á3/^]]]qá/]á]Öá104>32#".732>54.#"{2UsAAsV22VsAAsU2{4F((F55F((F4AsV22VsAArU11UrA'E44E'(G55Gf¢ :@! ª ï `  ­ ­³?3á2/á/]]333á223]10!5!3!!#5!éþ}ƒ–ƒþ}–þ}œ‡–…þ{–þþú––1JmÉ@@á O   @ Há¸ÿÀ@H åÞåÝ?á?á9/+3/á+]Þ2á10!57>54&#"'6632!mýÄÑ9H(B63]-N6…RUC;"A@2&^0A!?[92VU[79hÉ0a@<áá2_222@ H''@ Hä/_ß&#å,Þå ß?3á?á39/^]á9/+3/+]Þá3/á9/910#"&'532654&##532654.#"'>32NQEXX(S~VF{9?„5bXk`bb\T#/;a3E=DL,EiF#çNjjN73#‰//*Û?MQ#yôLQQ"QXS®þJ7@" G U `p€GTP  ?3??á?öá2]öá21032>53#'##"&'#3djoRnC¶“ 0gHj#¶¶‡‚‚4e”`:û¶“ST.*&(#U*þÀ6qþüf7@!™0@P ™   /2?Á/]]Öá9/^]á10####".54>3!fxÏy=U_›m32#".“"./""/."Ó&5!!5&%4""4#þ˜9@ „Œ@ H /á/9/+áÆÖá9/]33310#"&'532654.'73˜–-1GP.?%Zy9":+þáall+1# °s):?Jº¶4@!O@ Há 0Ý åÜ?áÍ?/]]3á3/+]103#4>7'3‡‘&^J¶ü”<<8(I`B‹Ç.²à¸ÿÀ@ H!!à äÀäÞ?áÜáÖá]Ö+á10#".54>3232654&#"‹)MmD?jN+)LmD>kN,þ:KVUKKUVKmS‚Y//Y‚SSX..XSwyywxssTs–Ç V@/Ÿ¯ë   ëŸ @     /3/399=//3333/]]áÆ299//3á]10'7'7–þÊtíít6þhþËuîîu5þeN\\NþbþeN\\Nþbÿÿ?‹¶&{'J<üý·0@¿?@@]5]]5]]]55?55ÿÿ, ¶&{í'5t3ý·(@°@p@]]5]]5]5?5ÿÿÎÉ&u'¨<?ý·<@'8p8P88´3¤3„3d3P303 33L]]]]]]]]5]]55?55DþwD^';D@2š(('F == F¸ÿÀ@H ''-›7Q/á3?å2/9/+á^]Î9/á3/á103267#".54>7>55#".54>32P'A20D+9U7T–E@R¼a]•g85Q64B&º#..##..#¤%:[QL*)CEO50O93#’*:3`ŠXDhZT/-C>C+/&5!!5&%4""4ÿÿÝs&$Cÿ½R´&¸ÿœ´%+5+5ÿÿÝs&$vR@ !&l%+5+5ÿÿÝs&$KR´&¸ÿÿ´%+5+5ÿÿÝ5&$RR@ &,%+5+5ÿÿÝ+&$j!R@ &)%+55+55ÿÿÝ&$P}1@ ïßP@ %+55]]]]]]]55ÿþV¶„@* Z©$4T  g¸ÿð@  __ _ O  ¯   _?3á/?99//^]qááá2/83æ29///]]]]}‡ÄÄ3á2310!!!#!!!!!!#Výþ%˺ÉýÃýê=ûu“lÅþ;¶¤þ<¢ýøÆ¨ÿÿ}þ˜Ë&&zü ¶O*$ %+5ÿÿǾs&(Cÿ·R´ &¸ÿ´ %+5+5ÿÿǾs&(v?R@ &J %+5+5ÿÿǾs&(KÿñR´ &¸ÿý´ %+5+5ÿÿǾ+&(jÿõR@ & %+55+55ÿÿ>ds&,CþµR´ &¸ÿ¨´ %+5+5ÿÿRŠs&,vÿxR@ &j %+5+5ÿÿ©s&,KÿR@  & %+5+5ÿÿ@w+&,jÿ R@ & %+55+55/ü¶]@:[g! !Zd _?o¯ßÿ@H``?á?á9/+^]q3á2æ22/á2]öá9/103!2#!#%4.##!!3 /˜—™ø®_`¶þ÷¨þ’˜B~¸uÉPþ°¢ %‘\µþô°¹þé»^ƒ`’ÕŠCþ¢þ$ÿÿÇ5&1R‹R@  & !/ %+5+5ÿÿ}ÿìqs&2CTR´(&¸ÿ«´.( %+5+5ÿÿ}ÿìqs&2vR@ 4&X(. %+5+5ÿÿ}ÿìqs&2K®R@ (&0( %+5+5ÿÿ}ÿìq5&2R}R´0&¸ÿð´1? %+5+5ÿÿ}ÿìq+&2jªR@ 1&(< %+55+55-Ý{ ‡¹ÿð³H¸ÿà@HH H H H¸ÿð³H¸ÿà@0H@  P   Pp€ ÀÐð ³?^]q2323/]3333]10++++++++7'ËþÂi=Bhþ¿?fþ¾þÃgÓ?iþÂ>gþ¿þÀf=þÅg}ÿ´qü&1\@:)*'[ g3À3¿3p3/3_3[f2)*-"_  -_ ?3á?39á9öá]]]]ö9á910#"''7&5466327&&#"'32>\[^Q í›½…N‰Za[Lžð£^¡BPü·.0C0rGr¦l4jXý¾/rEr¥k2®•cþÞ·©þêÆlGN‘d*¾ªÄk*&üáƒÑN± Q—ÚŠ—üTQ™Ûÿÿ¸ÿìÝs&8C=R´&¸ÿÀ´ %+5+5ÿÿ¸ÿìÝs&8vÅR@ $&H %+5+5ÿÿ¸ÿìÝs&8KyR´&¸ÿý´  %+5+5ÿÿ¸ÿìÝ+&8j}R@ !&, %+55+55ÿÿ7s&<v1R@ &c %+5+5Ç3¶<@![gŸ Zd``    ??99//ááöá22]]öá10###33232>54&##37~Ϙ–ºº°†Â~<ýN]‹[.¤® [¨Mþöü9m þg GqQˆ®ÿìuKm@HF.5G/@ H_.o./..A$GWMM MÀM@GATL$5:PGAP?3á??á9öá]öá9///^]]+]áá10#"&'532>54.'.54>54.#"#4>32ò+?K?+'F98X=!8eUa‹5AHL%8Q4+H8?U5)>H>)!W~Q'#"¦-@($;8:#(DCF*6O?6:C,*>)0SAûN°hU%&Ltÿÿ^ÿìœ!&DC”´3&¸ÿå´93 "%+5+5ÿÿ^ÿìœ!&Dv5@ ?&…39 "%+5+5ÿÿ^ÿìœ!&DKâ@ 3&3;3 "%+5+5ÿÿ^ÿìœã&DR½@ ;&)7#"&'#".732>55"!4.^çì¸7Q4SB@J¶dƒ¦+3¦gašl9ý`““1UNJ%'KOU1ŠÊ>"L_tJG{Z4½aO=hL+ZzI …n ×7T3¤°ECZ70"‰(8U]U]GµnqÁ¶ ¢rs6U;'Q{R\V&MuOc 9Qcœ•DqP,ÿÿqþo^&FzB ¶/&  %+5ÿÿqÿìá!&HC”´(&¸ÿ¹´.(%+5+5ÿÿqÿìá!&HvR@ 4&v(.%+5+5ÿÿqÿìá!&HKÞ@ (&0(%+5+5ÿÿqÿìáÙ&HjÚ@ 1&(<%+55+55ÿÿÿÞg!&óCþU´&¸ÿš´ %+5+5ÿÿ®B!&óvÿ0@ &t %+5+5ÿÿÿ½U!&óKþ»@ & %+5+5ÿÿÿî%Ù&ójþ»@  &%+55+55oÿì-#'9t@F(H# """ W;@;Ð;à;;2H V: #!!-P¯¿07P?á?99//]]3á39öá^]]æ9///9á210#".54>327&&''7&&'774.#"326-C}²oh¯G?v¨ifš+xZÿJÙ(U/FAz;ãJÃCoO,¼"FnKMmF!!GmLš‡=ŽÜ˜OB¹ww¸~A;<vÀQ™rƒ7{ H,ŠquAœ»Ý°8kR2.XƒUL}Z1Çÿÿ®ã&QRù@ !&"0 %+5+5ÿÿqÿì-!&RCØ´ &¸ÿ×´& %+5+5ÿÿqÿì-!&RvP@ ,&N & %+5+5ÿÿqÿì-!&RKû´ &¸ÿú´( %+5+5ÿÿqÿì-ã&RRâ´(&¸ÿý´)7 %+5+5ÿÿqÿì-Ù&Rjù¶)&¸ÿù´ 4 %+55+55fø¬+`@0-"ªªVf(8¸ÿð@( H'­ ­ `°ÀЭ³?á3/^]á3/]qá/3+3]]á3/á]105!4>32#".4>32#".fœý¿)*  *))*  *)‡––þî#/ /#!//Û#/ /#!//sÿ´/‘$-\@;'(%H  W/@/Ð/à//H V.('+"P +P?Æá?Æ9á9öá^]]ö9á910#"''7&&54>327&&#"4'326/C}²o}bDƒP?FC|³o?q1DƒP>EýK-š‡D'þrH-š‡'‰Õ‘L5mJƒHÕ‰ˆÓ‘KlIIцTƒ3‡ÏÑŸcý{Óÿÿ¤ÿì!&XC£´&¸ÿ›´! %+5+5ÿÿ¤ÿì!&Xv`@ '&W! %+5+5ÿÿ¤ÿì!&XK@ &# %+5+5ÿÿ¤ÿìÙ&Xj¶$&¸ÿû´/ %+55+55ÿÿ þß!&\v@ /&g#)%+5+5®þ? 18@/H W33' GT2,P!P?3á?3á??öá2222]öá10>32#".'##3%"32654&d:M`<^šm<>%+5ÿÿ/ü¶’qÿìž'8U@1-G& "&U::6H V9'%O" 3P (P?3á?]3á?9/3á2?öá]æ29/á22210%##".54>323&'&&55!5!533##%2>754.#"T;M`<]šn<32\ipQnC¶œœ¶{þ… ER\0·¹š‚‚4f”`ýðÕ‰¶¶‰¸+?*¿Òý\ÿÿÿõÄ5&,RþóR@ &#%+5+5ÿÿÿ£rã&óRþ¡@  & %+5+5ÿÿ=|Á&,Mÿ"R@ & %+5+5ÿÿÿë*o&óMþÐ@ &%+5+5ÿÿ0Š@&,NÿR@ & %+5+5ÿÿÿÞ8î&óNþ½@  &%+5+5ÿÿRþBd¶&,Qœ ¶%+5ÿÿDþBƒå&LQ%@ o%%%%+]5ÿÿRd7&,OPR@ & %+5+5®dJ@ GT??öá]10!#3d¶¶JÿÿRþ{)¶&,-¶8@O@H¸ÿÀ@H¿! !!P!!!@H+]]]]]++]]5ÿÿ þ‡å&LM.@ Ïß5Ÿ5€5_5@5 555@H+]]]]]]]]55ÿÿÿHþ{ds&-KþÊR@ & %+5+5ÿÿÿ¼þW!&7Kþ½@ & %+5+5ÿÿÇþ;¢¶&.9s¹ÿ±´ %+5ÿÿ®þ;ð&N9!¹ÿÄ´ %+5®ðJI@ D¸ÿÀ@ H/GT ?2?399öá2^]3/8+]339310!#373#þ¬m´´ƒ3Íþo¬éQþhJþç5##33&'&&53‹3M"N-%K=&ý¬ÕÌ®7dþ{   2XDºMLAŽ9üç¶ûuAA8}4 ú^iše1®þ^(:@" G$U**`*€*GT)P P?á???á3öá2]öá9/10"&'532>54&#"#33>32î0?6#.#ipQnC¶” ER\0·¹"Hmþ ” 'A3m‚‚4f”`ýÇJ”+?*¿Òü•M{W/ÿÿ}ÿìqÁ&2M¼R@ *&() %+5+5ÿÿqÿì-o&RM@ "& ! %+5+5ÿÿ}ÿìq@&2NªR@ -&2( %+5+5ÿÿqÿì-î&RN´%&¸ÿÿ´* %+5+5ÿÿ}ÿìqs&2SìR@ 4&C(< %+55+55ÿÿqÿì-!&RSF@ ,&E 4 %+55+55}ÿì¤Í*[@6Z'' g,,[ f+_O¯__$__?á?á?á?á9/^]qáöá]æ29/á29/]10!!#"&&546632!!!!!"3267&&¤ý +[0£ïLLžð£bTôýÂýé>üVr¦l44k¥r4Z&&Y lƪªÄk¤þ<¢ýø…Q—ÚŠ‰Û™QXqÿìá^*6?d@;?HÐ111 7H%WAAÿA@A+H V@P?+????.<4P .P?33á2?33á29/^]]áöá]]qö2á9/]á29910"&'#".54>326632!32>732654&#"4.#"`‚ÌA?Æ€g®GC|³oyÃ?<¹ucžn;ýL™—3WQL'(MQWûš‰š–‹Œ—š‡ð9X>r… pmmpL‘Õ‰ˆÓ‘KojipGµnqÁ¶ ¢;ÑÓÉÑÜÎÏbDqP,œ•ÿÿÇ s&5vTR´)&¸ÿî´# %+5+5ÿÿ®!&UvÎ@ #&@%+5+5ÿÿÇþ; ¶&59w¹ÿ¶´# %+5ÿÿ`þ;^&U9þñ¹ÿ´%+5ÿÿÇ s&5LR´"&¸ÿ©´( %+5+5ÿÿr !&ULÿp´&¸ÿã´"%+5+5ÿÿhÿìÉs&6v;R@ @&p4:%+5+5ÿÿZÿì?!&VvÜ@ B&]6<%+5+5ÿÿhÿìÉs&6KÿíR@ 4&"<4%+5+5ÿÿZÿì?!&VK›@ 6&>6%+5+5ÿÿhþÉË&6z5¹ÿú´:4%+5ÿÿZþ?^&Vzð ¶<6%+5ÿÿhÿìÉs&6LÿæR@ 9&?4%+5+5ÿÿZÿì?!&VL—@ ;&A6%+5+5ÿÿþ;¶&79ù¹ÿØ´%+5ÿÿ!þ;F&W9ÿ]¹ÿ÷´$%+5ÿÿs&7LÿÈR@  &%+5+5ÿÿ!ÿìè&W8o ¶a$$%+5¶s@Là_ß 0@¿ÿ ZPð w‡—1  ` _?á2?9/3á2/^]]]33/]]9á22/]9]]]q10!5!!!!#!5¶þ^þþ_'þÙ»þ×3ߤ¤þ!•ýbž•!ÿìF%j¶ ¸ÿÀ@7 H'/'?'#G °À"O OP ?á?33á29/3á2/^]33Ä]2á22]3/+33]10%2>7#".55#535#5773!!!!ú-*# (04>jM,‹‹››Niþìþþ?Š  N…eûŠøQNæü‰øŠûabÿÿ¸ÿìÝ5&8R`R´ &¸ÿÿ´!/ %+5+5ÿÿ¤ÿìã&XRó@ #&$2 %+5+5ÿÿ¸ÿìÝÁ&8MR´&¸ÿÿ´ %+5+5ÿÿ¤ÿìo&XM!@ & %+5+5ÿÿ¸ÿìÝ@&8N}R@ &" %+5+5ÿÿ¤ÿìî&XN @  &% %+5+5ÿÿ¸ÿìÝÙ&8P{R@ &" %+55+55ÿÿ¤ÿì‡&XP @  &% %+55+55ÿÿ¸ÿìÝs&8S²R@ $&6, %+55+55ÿÿ¤ÿì!&XSP@ '&H/ %+55+55ÿÿ¸þBݸ&8Q ¶ % %+5ÿÿ¤þBJ&XQ¸ ¶!!%+5ÿÿþs&:K;R@ +&3+%+5+5ÿÿã!&ZK®@ 0&80.%+5+5ÿÿ7s&<KÿÐR@  & %+5+5ÿÿ þß!&\K©@ #&+#%+5+5ÿÿ7+&<jÿÎR@ & %+55+55ÿÿRþs&=v9R@ &^ %+5+5ÿÿR5!&]vÖ@ &` %+5+5ÿÿRþ7&=O)R@ & %+5+5ÿÿR5å&]OÍ@ & %+5+5ÿÿRþs&=LÿàR@ & %+5+5ÿÿR5!&]L†@ & %+5+5®¾%@  GT P??áöá]3/1034>32&&#"®-U|N;c&/H((:'°kT# 0SAûNËþéË+J@*0-)G 0@`)) #P P?á?á9/3á2/^]3/3/3á2/2]10#"&'532>5#5754>32&&#"3-U{N =9(;&ÂÂ-U|N;c&/H((:'öDü?kT# ™ 0SAÃKD‰kT# 0SA‘‰Ýª#1>@^‰))¾**0118ƒ    V#f##Yi2ƒoÖ 7 G W Ç  Ù8HXÈ €Ð¸ÿÀ@ H@@@/@@Ÿ@ß@ ¸ÿð@1 _# H <55Œ<ï`1 1#<11<#) ?3/9////]]]]á]333+á/83^]3/8+]q39=/3]]3]]3/]á99]99]3/]qá3/33/í]10#!#&&54>32.'>73#4&#"326P<3ü¾šýÓœ¼ø3: ;R21T># ”‘…0/*Û?MQ#y¼?21?31 2?œF`û#‡þyÛ`F3O87Oü_}.6;<6.þƒ‹=A@AGBþö4<<43;<^ÿ윪 1@T`œ@#UƒAA/AAA[ƒK K K 7G1Ub?b>H(¸ÿÐ@: H( H((VaXŒPP ` p  PP^Œ@FPFFF'$P+8R+2P/]??3á?9/áá23/]á9/3/]áæ2/++á]öá2299//Íá3/]á10>73#'##".5467754.#"'6632%2>55#".54>324&#"326Ç0/*Û?MR#xR%!BN`?EtU0çì¸7Q4SB@J¶df•a0þ/=hL+ZzI a†#=T12R;!!;R20T>#u?12?981?¸=A@AGBù\˜-A*'Q{T¤°ECZ70"‰(8)YŠbý&MuOc 9Q3\V3Q88O33O87O45<<55<<ÿÿÿþVs&ˆv%R´ &¸H´%+5+5ÿÿ^ÿìD!&¨vu@ ]&qQW%+5+5ÿÿ}ÿ´qs&švR@ >&X28%+5+5ÿÿsÿ´/!&ºvP@ :&L.4 %+5+5ÿÿhþ;ÉË&69¹ÿÚ´4:%+5ÿÿZþ;?^&V9»¹ÿá´6<%+5Ùš!%@À€_/]3Ì2/Ì9=/3310#&&'#5>73šy3l46j3yDC;À;CEÙ"a77a"LQQ""QQLÙš!%@À  €_/]3Í2/Ì9=/3310#.'536673šEC;À;CDy3j64l3yLQP##PQL"a88a"ÙZo@ _/]á/Í10!!?ýÁo–!Ù{î/@ƒÿÀ ƒ  Ÿ  €_/]áÍ]2/áÜ]á10#".'332>7{,MmGImI'l0C,$A3"î=eJ)'If?+2 1( uå @‡‘Ÿ Ï ï 0  /]]å/á104632#"& =-'?,-=s<6 +:98mÙ1‡@@-ƒ?O_ƒ0  Œ?O_¯ÿŒ_/]áÔ^]á/]áÔ]á10#".54>324&#"3261#=T12R; ;R20T>#u?12?981?²3Q88O33O87O45<<55<<þB^@ €„ Ž /á//áÌ103267#"&54>73´4"-@dd/8‹î-+qhZ*K@4…ÙÑã8@#/  @H@ H /]2á3/++á3/^]Ì]10".#"#>3232673þ(OLF -0h!5J.*QLE-.i!5JÛ#+#5>73#%>73#ß//*Ç?MQ#ek0/*Æ?MQ#dôLQQ"QXSLQQ"QXSøÙ! '@ H@ ’€ _  /]í/]3Í2+10>73#ø Ç!-4lôMQP!NWV  ‰´ )f@„$$$$Ï$$@ H$$ „¸ÿÀ@' H H ’ ‘'ÿ`°Ð/^]]]3å29/í/3Í2+3/+á3/+]qá10>73#'4632#"&%4632#"&þ Ï08= Rê8)#:&)8µ8(#:&(8‡KOQ$ MPQ%60 &522560 &522ÿÿÿéݼ&$Týñÿ—¶0"¸ÿé´""%+]5?5“H‘^3@€  –ÀÐ4Ddt¸ÿÀ¶ H›/å/+]]í]104>32#".“"./""/."Ó&5!!5&%4""4ÿÿÿçM¸'(Týïÿ—.´¸ÿÀ²H¸ÿ@%g¿]]þ4++5?5ÿÿÿçP¸&+{Týïÿ—1´¸ÿÀ²H¸ÿ±@%eo/]]]þ4++5?5ÿÿÿç`¸',üTýïÿ—f@À 0 ¸ÿ¥@/%ðÐÀ¯p`P@? @H@ H++]]]]]]]]]]5+]]]]]]5?5ÿÿÿçÿìÃÍ&2RTýïÿ—G@0- .€.p.P. ...$.. %PPg¿777]]þ]]44+]]]]]]]5?5ÿÿÿçT¸'<Týïÿ—K´¸ÿÀ¶H ¸ÿÀ² H¸ÿÖ@%À° ?/]]]]]]]5++]+5?5ÿÿÿçÍ&vZTýïÿ—5@#5 66666%PPg¿???]]þ]]4+]]]5?5ÿÿÿäÿìw´&†UþÐ@À$@$ $:%+]]555ÿÿݼ$ÿÿLJ¶%Ǿ¶C@ Äô°¸ÿÀ@H/Oo@HZd_??áöá+]3/+_]]10!#¾ýú¶¦úð¶%h¶X@ [`p°ð¸ÿÀ@' H/_oŸ¿@ H [ H _?á?3+/á+]3/+]á9=/3310%!53!&&hû½»^*þ®ü.}}…1ÍJ¨[ý ða¨ÿÿǾ¶(ÿÿRþ¶=ÿÿÇÕ¶+}ÿìqÍ+S@4"[g-Ð-Ï-€-?-o-[f,`¯ßÿ'__ ?á?á9/^]áöá]]]]öá99//10!!%#"&&54663232>54.#"ìýê…Q í›£ïLLžð£›ë QûÑ4k¥rr¥k22j¤rr¦l49¡E©þêÆllƪªÄkkÅþ뫉ۙQQ™Û‰ŠÚ—QQ—ÚÿÿRd¶,ÿÿÇ¢¶.‹¶ _@/ïÿ@H@ H@ H  ¸ÿð@" /O_Ÿ¯Ïï H  ?2?3+/8]]2/839=/33+++]10!#&&'#3‹ÆþÛ.*þÙÅ绚a¨KK¨[ü`¶ÿÿÇ/¶0ÿÿǶ1Rî¶ c@> À? O o 0 p € O  _¯ _ _?á?á9/^]á/]]3/]]Î]]q2/99//]]10!!!!!5ͦýZRJü¶südN¢ ¤û’¤¤ÿÿ}ÿìqÍ2ÇÁ¶1@Ze ° o Ÿ ¯  Zd_?2?áöá]]]öá10!#!#!Á»ý{ºúúî¶ÿÿÇ3¶3N¶ Z@ [ H ¸ÿÀ@&H  / o  [/? _ _?á?á9=/3/]3á2^]3/+99//+á10355!!!Nžþn}ýX…þg÷˜f%“¤ýîý¤¤ÿÿ¶7ÿÿ7¶<hÿìºË!.;@P"gZ;!š‡z([g=/==Ð=¯=¿==_=0===5[f<";`./`!!!!??99//3á23á2öá^]]]]]]qqöá9/]]]33á]2210332###5#".54>3332>54.+"33´»I†Â~<4TxŸe/»/eŸxT5=~Â…J»]‹[.)SW9»9WT(.[‹]Ë´^™Äf={nR0áá0Rn{=fÄ™^üS;i”XN‹h<32!!5>54.úr¤j2#Qƒ_ý°b@oP.Q ìš›ë Q.PnAbý°_ƒQ#2j¤)Dºud»«—A“¤0‡¨Ço–ô¬^^¬ô–oǨ‡0¤“A—«»duºDÿÿ@w+&,jÿ R@ & %+55+55ÿÿ7+&<jÿÎR@ & %+55+55ÿÿqÿì‘!&~T@ J&>D/%+5+5ÿÿZÿì\!&‚TÊ@ F&m:@-%+5+5ÿÿ®þ!&„TD@ %&b %+5+5ÿÿ¤ÿìw!&†Tþδ"&¸ÿý´"%+5+5ÿÿ¤ÿì=´&’U²¸ÿî´,B%+555qÿì‘^=8@8G/(??HV>" P8/,P3?3á222?á3?öá]Ô2á2210%2>754.#"".54>32366733267#".'#5LiAAlQ‡f]šn<=q¢dp1 !  2"%A"&?2$ ;M`ƒ/b˜hek7ÚÌÑÍ—HÔŒÕISU#R!hy~7þ]<3… '@0"=.®þu=Y@49H3/333,G W? ?0?"GT>2P333"'PP?á?á29/^]á9?öá2]öá99//]9á102#"&'#4>"32>54.##532>54.w`£vC˜°¹?x­m`¤<¶Ey¨c8dK, NRR$PoF5`„OfMRwN%&D_1b”b•­ʺl¢m7 ýé4{²s7–L`ü’ (MoGPuM%˜(If=?^> þßJc@@HP/OH¸ÿð@   @ ¸ÿð@   ??33?3/83/8^]39=/333/8á]^]]+10%#4>733>73`" ¾%þ`½Ù Ǽ>ˆ†~4*y‰?>ýº(]ZPR]Z!Loÿì-2DQ@.F8.3H$WF@FÐFàFF=H.VE$B 88 BP)P ?3á?á9/993öá^]]ö2á9/99á10.54>32.#"#".54>4.'3268]C%3\}JDq`Q#J IQ[3*<'=A)1l~“XÁƒC=uªnj£zSþQEoYI:b‘gBoQ-´Zÿì\^9Y@7#-W; ;°;À;?;_;;4F##GV:P¿9y9‰999 1P( P?á?á9/]]á9öá3/á]]]æ29/910#"32>7#".54>75.54>32&&#"3œŠ…)F`73\QG;žmq¦l5&?R,+F3:iV5ZRM(?KGls'Hd=‡™[^3E* ")1VuC>X>) +>P2FmJ& “"&MM-@'qþoj39@.F 55À5 H))V4.P?á22/æ2/á]Ö]2á3/3105!#>54.'.54667#®¶€¸~L( -TxKG_:"+ª+"0[MY‡\.\šÉl+/(`/{™vͳš…o0Yl@#.;H*-XRK HHC%"Bl˜f”èÙl®þ^1@GU`€ G TP  ????á3öá2]öá104&#"#33>32\ipQnC¶” ER\0·¹þ¯‚‚4f”`ýÇJ”+?*¿ÒûGqÿì+'[@:%GW))Ð))Ÿ)@))$G V(PË$º$‰$™$$$$PP?á?á9/^]]]]áöá2^]]]]qöá210#"&&5466322>7!"!4p³~v¯t83o±~v°u:þ+IhE#ýË!DhJGfD#3 „ ¼þ×ÎmmÎ)¼¼)ÎlkÍþ×ü¹J”ß•“ß•KE‰Í‰¤ÿìwH5@#0   `pÀÐGTP??áöá^]3/]1032>7#".5Z?H-*$ )04>jM,HüüabŠ  N…eÿÿ®ðJúÿòÿì!.h@*") ) )P4D 0`000.¸ÿð@.)PP?á?á9/3?/83^]]3/]]]99=//339310#'.#"566323267#".'.'#¸5 +=+"2B#JiO?H.&&7%';/%‡  5å3 )C1‘ *Y‡]ü669… (@.¢!^aWMªOýÁ®þJ?@& G U `p€GT P  ?3??á33?öá22]öá221032>53#'##"&'#3djoRnC¶“ 0gHj#¶¶‡‚‚4e”`:û¶“ST.*&(#U*þÀ6ÏJ;@ GW°¸ÿð¶ ?2?3/82^]]qöá9=/331033>53#¼É ZrB¶%\šuÀJý°!cg\`Íç—£þàþõýqþojF~@N2;;*AF8--$ F H?H_HHïHHH$VG<28P9*IYi8$O9ú??9/á9]]9á22öá]]Ö]ñÀ/^]9/3á93/310#"#>54.'&&54>75&&54>7##5!#"3#¢QW--TxKG_:"+ª+"0[M²¸/Nf7er-Ok>"'!U.>7I‘sG FrQw‰1UqAN`;".;H*-XRK HHC%""ǵMcC †uHfI1™&NuN5Q7ÿÿqÿì-^RÿìÉJX@8 G/Ÿï G/ïÿ@HT PP?á??á22ö+]á3]3/]3/9/]á10%267#"&5!##57!#P/J0qqþm¶Ý‰'Ó/  „‚¾üP°JPšýNF7¤þ-^'9@!%HW)Ï)@)) GT(P"P?3á??áöá22^]]]öá10#"&'##4>32"32654&-?u§hK6¶Ax©ia£wCþ;‰‚6KŒ{}'‰Õ‘L--+.'a.þ݈ӑKK‘ÓÄÈþ¬31ÓÑÑÏqþoo^1Q@6''F   3?3_33ï33HV2(-Q7 (8H $ú??9]]á2öá]]Ö]2á3/10#>54.'.54>32.#"-I~aG_:"+ª+"0[MM„b7Iƒ³jN•268<:PrI"`yN/.;H*-XRK HHC%"Av´‚šâ•I"š  9p¤qÿì…J)6@!$!HW+++ +°+à+H V*%PP?á?á2öá]ö22á210#".54>3!!32>54&'#"->z´uk¯}DM΀éþö%A0ý!GnMLmG!OK;_‹Z+øoÀPFŠË…œÚŠ>š)]l|6Ui;7b†N×Y,c¡ÿåfJ:@$   W+;GàPP?á?á2/]áÆ]]æ^]210!32>7#".5!57fþŒ->$*($ '.5@uY4þ׆Jšý¢;R3‡ M†hsJP¤ÿì=J)@GW`€GT P?á?3öá]öá10".5332654.'3\ªd)¶ BfF’ ¶ôPŒ½mXý²VŒc6è÷G}ut==rwKþÁþÓqþ%^%5^@<1%G–¦&HW7 77à7o77Ÿ7@777GV6+P 1P$??3á2?3áöá^]]]]qqöá9/]3á210.54>746324.#">fm·†K 8N-%?-3Xt@¥‘Z’f7V¾hO6I+1%H{Y3þÚC‰Õ—S˜Š}7`3hr}Go™a0^¼ÁPÉz•ÙJþ&%b”e35WAý ;kŸÿìþ%N( @hxg w Ç  v7¸ÿÀ@H4À¸ÿÀ@ H**?*O*Ï*°%À%%%¸ÿð@)'( P#P?á??á9]]?3/833/]^]3/+]3/8]+39=/]]33]3]10233267#".'#&&#"566¼-I:1{²þs²&4%.9(C_G3ƒþ¶ÂÆ G5$>N>\=þ¨Jüøþ &B3 &FfAjýƒ>¾OY  ¤þq'L@/G&GW)0)@))°)À)))!GT( &P???3á2?3öá^]]öá9/3á210>54.'3#.53VNƒ_4¶W“Äm²o¼‰L¶6ZxBús 7332>5332>54.'3#"&'#éZŒ`2/ º /6K-.D,²cQ-K6/ » /2`Zk‹ ‹R’ËyQ‡‡HI†‡ŽRb–e4)Hb92þ΋4e–bRއ†IH‡‡QyË’RW[[WÿÿÿìwÙ&†jþâ@ &2*%+55+55ÿÿ¤ÿì=Ù&’j¶'&¸ÿÞ´2%+55+55ÿÿqÿì-!&RT@ ,&= & %+5+5ÿÿ¤ÿì=!&’T@ *&$%+5+5ÿÿqÿì–!&–TÃ!@ H&`<<¸ÿÀ@ H=554&#!#!5!!!2ž/FD' @3!i{þ»»þ¬±þ^Z]’e55_„   3WE…stý#¤¤þo1^‹Y‰iše1ÿÿǾs&av3R@ &> %+5+5}ÿì˜Ë&_@@HÊ#p#€##¸ÿÀ@$ H##(¿([f'_¯ $_  _?3á?á39/^]áöá2]3/+]]99//+10"!!3267#"&&546632&&_ xM tý†@v«qY N'NUa;¤ðLW©ú¢lÄON?”'Az¯o¢‚ÉŠH#¢lÆ©¦Æn,*œ .ÿÿhÿìÉË6ÿÿRd¶,ÿÿ@w+&,jÿ R@ & %+55+55ÿÿÿHþ{s¶-ÿéß¶*5µ%+Z ¸ÿø@SHZ#™#à#´#Ä#Ô##P## ###/[g7Ï77@ H65_%¯%%%+_#`+`?á?á?á9/^]á3/+]öá99//^]]]^]38]á+2á210#!!#"&'532>7667!3232654.##ß<~†þ¿þÂ!"5OnN#J: 0>* '+“m˜Ï~7ýww®¤.[‹]X¬ažp=qôìÔQg¢o; š ?bu69È:ªý˜Bq˜þ„ˆFa<Ç ¶!S@2Z #####ÿ# Z d"!_ ¯   ` ?3á?39/^]3á2öá2]qöá9/3á210#!!#3!33232654.## <~†þ¿ý¸ººHºm˜Ï~7ýww®¤.[‹]X¬ažp=ªýV¶ý˜hý˜Bq˜þ„ˆFa<¶s@MZUoô °tZ0@PÀ°gw^?O_ _?3?9/áá2/]]]]]3/]á22/]]]^]öá10!2#4&#!#!5!!#Z]’e5ºi{þ»»þ¬±þ^1^‹Yýòöstý#¤¤ÿÿÇ¢s&´v‰R@ &" %+5+5ÿÿÿì®i&½6#R@ '& ,"%+5+5ÇþÁ¶ c@AÆÖZÅÕ¨–HG: Ze ° o Ÿ ¯  Zd _/33/á?3öá]]]öá9/]]+]]]á]10!!#!3!3ÁþZ±þ]º…»þ¶úðÿÿݼ$Ç3¶K@._[g_Ï Zd_ ¯   _`?á?á9/^]áöá2^]öá9/]10#!!!3232654.##3<~†þ–ý¦–˜Ï~7ýN ®¤.[‹]¬ažp=¶¤þ7!3!! °üd°q/VMA0eÂþƒþú.=FM'þþ'UÈÙæèãiúðjL¹ÊÑÈ·KÿÿǾ¶(¶Ë@Nf v † 7 G W  G ÷  Ziy‰8HX¨¸™†Wgw  p € À  ¸ÿÀ@& H  ð¿Ïß @¸ÿð@ ?33?33933/8333^]]]]]]3/8+]q3339/]]]]33]]á]23]]10333###%ýíÍ ³ Íýí!Óýî³ýîÓòÄý<Äý<Äý<ýåýåýHÿììË9h@?'[!0!!0[ g;Ÿ;p€?O_: `ª!x!!!!/,`5`?3á?á39/^]]]á93/]]]öá9///9á10#"&'532654&##532>54.#"'>32Ñ3[}KWŠ^2CˆÍ‰nÀU+`cc.²°Ïº¿°\Ža2%D_:n©K\&btƒGm¦q9`IxX9  9YwH` t@"-ª$ ”‡‡—'He=6S:C6}6)6a…ɶk@ Z eЯ 0 Zd ¸ÿè³H ¸ÿà@# H  &  H H ) ?22^]++?3]++3öá22]]]öá2210333#46767##É®ÌÕ¬ý1×¶üà>CC JL´úJ9ŽALMûFÿÿÉi&²6‰R´&¸ÿë´" %+5+5Ç¢¶ ^@!   ° /  — V  ¸ÿø@ H Zd ?2?399öá23+]]]]]3/8^]338310!##33¢Ûýººº5ÏýËåý¶ý<ÄýBÿé“¶b±¸ÿø@;HZ‰à´ÄÔP€Ze!!!! _` ??3á?á3/^]öá9/^]]]38]á+210!#!#"&'532>7667!“ºþ…!"5OnN#J: 0>* '+ÐqôìÔQg¢o; š ?bu69È:ªÿÿÇ/¶0ÿÿÇÕ¶+ÿÿ}ÿìqÍ2ÿÿÇÁ¶nÿÿÇ3¶3ÿÿ}ÿì˜Ë&ÿÿ¶7ÿì®¶!o@!`p°ð¸ÿÀ@ H### ¸ÿð@ "ç÷Ö¸ÿà@ H _ ?2?3á9+]]3/833]3/8+]393310#"&'532>733>7®þT&Spœo3Z%%Y45RB8ýîÌ  7¶ûú]¤{H¹5V??ü×  !ÿÿhÿìºËsÿÿ`¶;Çþq¶ ;@!Z Z ° ¯  Zd _?3/á2?3öá]]]Ôá3/á10%3#!3!3Á°°üº…»¦ýÙ¶úð¦¶H@Zep / Z` p   °  ¸ÿÀ@ H _ ??39/á3/+]á]]]öá210!##".5332673ºsÃb]’e5ºi{Z¹pºV,.1_ŠYGýÑst((ÆÇ3¶ `@BVZ†–¦gw Ze   P p € À Ð à  Zd _?á2?33öá^]]qöá9/]]qá]10!!3!3!33ù”ººº¶úðúðÇþã¶q@KV  Z † – ¦ g w   ZZe Pp€ÀÐàZd  _?3/á22?33öá^]]qä2/áá9/]]qá]10%3#!3!3!33°°ù”ººº¦ýÙ¶úðúðÕ¶R@3 Z[g/?_¯_ ¯  _ `?á?á9/^]á3/^]qöá9/]á210#!!5!3232654.##Õ<~†þ•þ¬•˜Ï7ýN ®£-\Š]¬ažp=¤ý˜Bq˜þ„ˆFa<Ç϶I@+[ZeŸ Zd_ ¯  `?3á?39/^]áöá2^]öá9/]á10#!33232654.##33<~†þ–º–˜Ï~7ýN ®¤.[‹]“»¬ažp=¶ý˜Bq˜þ„ˆFa<ýV¶úJÇ3¶H@.[g_@H@ H Zd_ ¯  `?á?9/^]áöá2++^]ö]á10#!33232654.##3<~†þ–º–˜Ï~7ýN ®¤.[‹]¬ažp=¶ý˜Bq˜þ„ˆFa<;ÿìDË$Q@/ [  g&¿&Ï&ß&%_ªx__?á3?3á9/^]]]á3/]æ99//á210"'6632#".'532!5!.º^”?NOÄl¢ô¢RR¥÷¤:aVN'N Yí÷ý‹q Gs'. œ*,mÁþö³þàÊm¢#¢o°z@ÇÿìžÍ.^@<[  %[g00?0o00ï0ÿ00@H Z d/*_ _   _?á??9/^]á?áöá2+]qöá9/]3á10#"&&'!#3!>3232>54.#"žO›å–—á˜Pþ®ººV U˜Û‘•åšOûú1glmf00elmžg1Ý©þêÆld· ýV¶ý˜’ì§ZkÅþ뫉ۙQQ™Û‰ŠÚ—QQ—Úò¶›@ æö¸ÿø@$ HZ e?Ÿ¿ß æö¸ÿø@ HK@ H¸ÿð@&[ßïÿ@Hf`` ?3?á9/3áö^]+]á3/8+]3+]q]]ö93á2+]q10#.5463!##"33Bþ²Û}7cK,ýûu»¼JsO)'NwQ´\ý¤>aˆ]ÆÉúJ\»>aDBiJ(ÿÿ^ÿìœ^Duÿì!#';I@,-H W=Ð==@==7HV<2P(P#  H Q?á+?á9/3áöá2^]]]]ö2á1046676673>32#".2>54.#"u1h¢q}òf!2{}u,>dH) >Tk@c–e2E|®hk­{Bá4&#!32>ö{k8aG)/eŸqþ9ÅSŽg;‚€ÿ8]C&mlþõì>\?5hu$=[?CtV0J@kýÇ\Hþ¨*E M@þ×$<® J/@ PGTP??áöá]]]3/]10!#! þZ¶\°üPJ)þƒ7Jy@F /? ¸ÿð@9¢ ²     GF U¯Ï0/FO Pû?2?á22?á3/á]]]ä]2/áá99//]]8]]á310#!#3>7!3!#7®ýN®VAcC"—þ²À$:Q4þƒ}þƒ_ßóüP$g×ÑÂSÿÿqÿìá^H¾Jœ@ FÖ ¹ É ¦ —  ¸ÿÀ³H¸ÿÀ@$ Hß0p ¸ÿð@  ?33?33933/8333^]]]q3/8^]++3339/]]]]33á231033###3¤ ÅþXÎÎþC¤þDÏÏþXÅ5ýëýëýË-ýÓ-ýÓ5DÿìR^9_@:F99 4G!W;°;À;Ð;o; ;) V:8PÏ9‰9™9999/P&P?á?á9/^]]]á9æ2]]]öá99//9á102>54&#"'>32#"&'532>54&##5q=dH'slGK?(MRZ5Vi:3F+,R?&5l¦qm¯:LWa37`F)…Ї'@-MM&"“ &JmF2M;) ,BZ>CuV1#"¦*E3^[™®;J Q@ HFU    À Ð ð  ¸ÿÀ³H ¸ÿð@ H F T   ?33?33öá2++]öá2+103##Z é¬ ýþêJýdü˜û¶‡üjJÿÿ®;&Ò6%´&¸ÿÿ´ %+5+5®åJ A@#   GT  ?3?3933öá22]3/8]333103##3úÄþaÆÎþK´´JýñýÅ-ýÓJýëÿò°JL@1Fô€ÀÐT GU/ÿ PO??á?á3/^]öá9/]]]qá10!#!#"&'532667!°¶þþ@_‚V17YE3T°þýþ”æiƒuñoú®J ^@?FU"Ï"@"P""FT!;K[ )4DT& ?333]]?33]]3öá2^]]]öá210!##.'#3>73¡þø‡þ÷¢Ý  Ù9;6ýP° 1;>üJýG"C<21;A!½®;J [@GU 0 @ P Ð ð  ¸ÿÀ@#H G T P멹/ ?2?39/^]]]áöá2+]qöá210!3#!#d!¶¶ýß¶Jþ9Çû¶éþJÿÿqÿì-^R®J-@GU  ` p € GTP?2?áöá]öá10!#!#!d¶d¶þJû¶°ÿÿ®þ?^Sÿÿqÿìo^F)^JX@< ß p € _ Ì¿G`pаÀP??á2/]3/]]á2/^]]q]]]q10!#!5!^þÁ·þÁ5°üP°šÿÿ þßJ\qþ#")t@K' F I¹ É — §  #HW+ ++Ÿ+ï+€+o+@+++HV*&P'P  ??3á2?3á2?öá^]]]]]qqöá9/]]+33á2210#.54>734&'66!q½ˆLG†¾wªr¿‰LG…Áyªþ œ®X}P%9›ª¬™Z UÆ}}È‘V þ$Ü VÉ~}ÇU ºü»Ò< =g‘^ºÌüÆÑÿÿ#ÛJ[®þƒ²J D@+GG   ` p € À GT  Pû??á2?3öá]Ô]á3/^]á10#!3!33²¶ü²¶ø¶ þƒ}JüP°üPšþJ1@ G U`€GTP  ?2?9/á3öá]öá21032>73##".5P¸-PLM*¶¶,PU^:NzR+Jþf®,Õû¶é0 /TsD¦®FJ f@CG¶ Æ © t „ ” g  GU  € ð o @  / GT P ?33?á2öá^]]]]qqöá9/_]]_]]á10%!3!3!3Õº·úh¶»¶š°û¶JüP°®þƒåJw@N G¶Æ©t„”g GG¿ @€àð/GT  Pû??á22?33öá^]]qqÄ]2/]áá9/_]]_]]á10#!3!3!33å¶ú¶»¶º·Ÿþƒ}JüP°üP°üP)üJ\@>GWP`à?G  ° ð   P `    P¿ P P ?á?á9/]á/^]3/]qá2]]öá10!2#!!5!4.#!!2>HÔÌ/eŸqþ9þ˜!A`@ÿ7]D&‡œ›M|X/°šüø1B(þ¨)B®PJ a@@G pÐ G U¿Ïßÿ G TP¿ P ?3á?39/]áöá2^]]]qöá9/^]á1032#!3#332>54.#dìÔÌ/eŸqþb¶ì¶¶üÛ8]C&!A`@‡œ›M|X/Jû¶Jý¤þ¨)B01B(®J @@)GW p°ÐG T P¿ P ?á?9/]áöá2^]qöá10!2#!3!2>54.#dÔÌ/eŸqþ9¶8]C&!A`@‡œ›M|X/Jý¤þ¨)B01B(7ÿìB^&^@> H"W((¯(@(/@ HX' P啕/QQ?á?á9/^]]]áæ+q2]]öá29/10"&'532>7!5!&&#"'>32BY|66ƒRItR0þ#Û ’Œ;<85@HN&f³„MQŒº¢%(T„\𦗠 š  >‰Û’ÔŠC®ÿì^&r@KH O !HW((/(ï(ÿ(G((/( G T'$P P啕,   P?á??9/^]]]]á?áöá2]]]qöá9/]q3á10#".'!#3!>3232654&#"@x«jb¢uFþï¶¶ Hv cb§yDý)€Ž~€Ž~'‰Õ‘LB¾|þJþ9t±x>K‘ÓˆÑÓÓÑÑÏÏ#‘JS@GUo¸ÿð@F@HVPP ?2?á9/á2ö+á3/83^]öá293103#.54>3!##33#"éÆ#-TA(8dŠS¼¶ôÝ%AZ6ÛþkhÍ 0LlGNyQ*û¶°T0F.f_ÿÿqÿìáÙ&HjÚ@ 1&(<%+55+55þ1S@2 G-U33`3€3#"GT2!O#P)) ))P?á???]á39/3á2ö2á222]öá910"&'532>54&#"##5353!!3>32ð0?6#.#ipQnC¶œœ¶{þ… ER\0·¹"Hmþ ” 'A3D‚‚4f”`ýðÕ‰¶¶‰¸+?*¿Òü¾M{W/ÿÿ® !&ÍvÔ@ &E %+5+5qÿìo^"O@1 $$¯$@$HV#P啕/Q Q?á?á9/^]]]áöá2]]Î29/10".54>32.#"!!3267Re°‚JL…²fN•268<:‹’Ûþ# ’ŠQƒ66{?‰Õ–Û‰>"š  —¦š¸¤%¢ÿÿZÿì?^Vÿÿ uåLÿÿÿî%Ù&ójþ»@  &%+55+55ÿÿÿ¼þuåMÿòJ*k@E F%G Ô $  GW,,/,?,_,,¿,ï,+$P¿% PO%P ?á?á?á9/]á3/]öá99//]]]]á2á1032#!##"&'532667!4.##32>‡ìÔË.eŸqþbÙ@_‚V17YE3+Ù!A`@×Û8]C&‡œ›M|X/°þýþ”æiƒuñoúüø1B(þ¨)B®uJ!S@0GG W#ï#€#?##GT"P¿P?2?3á9/]3á2öá2]]]]öá9/3á210!332#!!#4.##32>d϶ìÔÌ/eŸqþbþ1¶!Aa?ØÜ7]D&Jþ9Çþ=œ›M|X/éþJüø1B(þ¨)B!S@2h G!U##`#€# G T" OP  ?2??]á39/3á2ö2á222]öá9]10!4&#"##5353!!3>32\ipQnC¶œœ¶{þ… ER\0·¹š‚‚4f”`ýðÕ‰¶¶‰¸+?*¿Òý\ÿÿ®å!&Ôv@ & %+5+5ÿÿ þß&\6±@ (& -#%+5+5®þƒJ Y@=Ö·ÇGµÅÕv†JZ GU  ` p € G T P û ?3??á3öá]öá9/]]]á]]10%!3!#!3dø¶þ³·þ ¶š°û¶þƒ}JǾãD@,Zßïÿ ° Ð  ¯ Zd_ ??3/]áöá]]3/]]á103!#°ýú¶-þ-úð¶® ‰0@G GT O??á3/]öá3/]á10!#!3 þZ¶¦¶Áü?J?ÿÿþs&:CçR´+&¸ÿ¬´1+%+5+5ÿÿã!&ZCL´0&¸ÿž´60.%+5+5ÿÿþs&:v R@ 7&d+1%+5+5ÿÿã!&Zv@ <&i06.%+5+5ÿÿþ+&:j9R¶4&¸ÿÿ´+?%+55+55ÿÿãÙ&Zj¬¶9&¸ÿÿ´0D.%+55+55ÿÿ7s&<CÿrR´ &¸ÿ¤´ %+5+5ÿÿ þß!&\CÿK´#&¸ÿ¤´)#%+5+5RÑ®y¹ÿÀ@  H¹½?á/3/+105!R\Ѩ¨RÑ®y¹ÿÀ@  H¹½?á/3/+105!R\Ѩ¨RÑ®y¹ÿÀ@  H¹½?á/3/+105!R\Ѩ¨ÿüþ1NÿÓ*@ ºïÿº /]á/]á/33/310!5!5!5!Nü®Rü®Rþ1‹Œ‹ÁP¶ %@__o¿Ï ˜ œ?å/á/]3]10'>73%'.4‰Á6z|{8=„ƒ|5ÁP¶ %@_ ˜_o¿Ïœ?å/]á/3]10#>7B'/3‰¶7y}z8<„„|5?þøyî 5¹ÿÀ@ H ˜_oϸÿÀ·Hœ¨?å/+33/]á+10%#>7j'/3Šî6z|{8=„ƒ}5ÁR¶ +@__o¿Ïߘ œ?å/á3/]3]10#.'7î‰4.'¶5|„„<8z}y7ÁѶ b@H¿_o_o¿Ïߘ ˜P`p°ÀÐ_o¿Ï œ?3å2/]33/]á/á3/]3]]]10'>73!'>73¦'.4‰ý¸'.4‰Á6z|{8=„ƒ|56z|{8=„ƒ|5ÁѶ b@H¿_oP`p°ÀИ_o¿Ï ˜_o¿Ïßœ ?2å2/33/]á/]á3/]3]]]10#>7!#>7B'/3‰H'/3‰¶7y}z8<„„|57y}z8<„„|5?þøúî ~@QÐàð¤´Ä 0@`p€P`pÀИàð_ ˜_oÏ߸ÿÀ@ Hœ ¨?2å2/+33/]á/]]á3/]3]_]]]10%#>7!#>7j'/3ŠH'/3‰î6z|{8=„ƒ}56z|{8=„ƒ}5{h |@R   à ð o  0 @ Àä ô Ö w j T E &  À  6¾ ¿ Â/?ö222á222/]á]233æ]]]]]]]3/3æ3]]]10%#53%hþµ7Ù7þÉ77Ù7KÝüü´¡þ_{}°@q °ð @P À ôæ‡zdU6FÀ¾  P ° ¿  ¿Â/ö222á222?ö222á222/^]q333/á222233æ]]]]]]]q23/33æ2]]]q10%%#553%%1Lþ´7Ù8þ´L//þ´L8Ù7Lþ´/ð´þ‡y´"´xþˆ´þí–åmòF@$/_oÏïÿ_ o Ÿ ¯ ß ï  Ð¸ÿÀ@  H/]Å]/+]Å]]]104>32#".–$?V21V@%%@V12V?$ìGd??dGFd??d“ÿãÛú'9¨@v;$;û;ä;»;Ë;¤;‹;d;t;K;4; ;–fv(–$2û2à2Ô2»2¤2‹2r2f2K202 222 –àðTd -›7#/33í22/^]]]í/^]]_]]]]]]]]]]qí9/]í]]]]]]]]]q1074>32#".%4>32#".%4>32#"&“"./""/."%"./""/."%#./""/6Io&5!!5&%5""5%&5!!5&%5""5%&5!!5&%5"BfÿìôË ';?I]‰@\@´TµJ´2µ#´( >0<@<°<0(@(><((<>E´J_?_O____¯_´ µ´ 0G¶Y·C¶O?>%¶7·!¶-¶·¶?áôá?áôá???áôá/]áôá]Þá9///]]]áôáôá1032#"#".54>3232#"#".54>32#32#"#".54>32úGPœœPGÇ$JsOIpL&#IqNKqM'¬GPœœPGÆ#JsOJpK&#IqNKqL'ÿüÕž,—GQ››QGÇ#JsOJpK&#IqNJrL'¥¥JH£¥l¬v??v¬llªu>>uªýJ¥¤IH£¥l«v??v«llªu>>uª’úJ¶ü¥¤IH£¥l«v??v«llªu>>uªÿÿ…¦J¶ ÿÿ…¦²¶RsüÇ<±¸ÿÀ@ H?Ÿ¯ßïÿëŸ//9=/33/]á]Æ+210R5uîîuþË)žNþ¤þ¤N›RsüÇ?@(ëßïÿ ?Ÿ¯ßïÿ?//9=/33/]3]/]]á10'7üþËuííu5þeN\\Nþbÿÿ“ÿãb¶'Ñ µ/11]]þ h¶±¸ÿð@ ??/82/8310#hüÕ+¶úJ¶j“ÇA@à`Ààð à ¸ÿÀ@ H ÀäÞ Ü??á3Ì2/+á2]]Ö]á104&#"#33632??-A*i @‚å¦QD4WAþ¦XeúþP`¶v@H   0Z ßÀ`_?o@H _ ??á99//+^]á3á2/^]3/]3á22]3/]99//10!!##53!!!!Ã$þܳ°°ðýÃýê‰þú‰'¤ýü¤D#É0‡@ o+'###¸ÿÀ@> H22)%@ H%u&&)u* *o&Ð***?*O*¯*¿*&*&*ts?á?á299//]]]3á23á2/+33]3/+399//333á22102&&#"!!!!!!5>55#535#5354>šj®BB8K0RY@+¦š )DaC‰ž‰ÝW‰_2–ÿì¶¶*5y@1on$ÿ@H¸ÿÀ@, H777@ H+#n$|6u+s"""$5s%$u ?á??á99//á3á2öá2+]3/++]99//3á22á10%2>7#".5#57733####3232>54&##;$#P?5X@$œœAkÑÑ4þŒ4|̘/²û†¿{:ý½]‹[.¤®9Š "FjH¿RM½Ó‰þVLN‰[¨MýǶ9m þg GqQމ?ÿìJË9†´(6¸ÿÀ@K H;;,## o."c(((:#`$$,`--_$$$ï$ÿ$--/-_-Ÿ-Ï-$-$-7t3_?3á?á399//]]3á23á23/]33á2233]3/+39910"!!!!3267#".'#53&45465#53>32&&Ev^C°þAþ’"¹•K‡;;…[s¶‡X¤”” X‡¸ra OP3w'4c[‰  )‰¯¸ ¢I‡Áy‰.‰}ÊN+1’+ÿøÛÁ+H†@ 9F´¸ÿð@JpFF FÐFßFF1"´ïÿJ@´111 1à1ð11Bü,ý=ü6'üýü ???áôá?áôá/^]qáÞ]qá9////8]]83á3310##".54>3232>54.#"".54>32&&#"3267 üÕ+n-PpD?nQ/,PqD>nR/þ3&<+*<%%<*+<&ýËEyZ45\}H3d !U"g_Â3Z##c¶úJ¶û˜SW--WSSW--WS3V>##>V34U=!!=U’&R€Z_„R&k tvåkwÿì{Ë-:U@2.p#@H##<5(n 0€6v((0vu  ?3/á?á9/33á22/]Å3á2ÖÁ9/+á10%2>73#".5556674>324#">o 9.d&FiF:jQ0.a14_-@hK6W=!5\|G$7cf ) 6N3w2R;SƒZ0%Tˆcç yî;lS1*OoEc¦†h&þÓ0Q;!!¼2E*þj!Nbylj¶+7;º@rZ99,á"°Ÿ0@"" 2á::/:::ïg=o=¿=Ï=@=  Z d3232654&#"5!¨Íý‡¦Ïv¤á)MmD?kM,)MmD>kN,þBHQQGGQQHcðºMLAŽ9üç¶ûLLJ CC> ü¹S‚Y//Y‚SSX..XSqssqrmmý““%åP¶ £@]Ä ÄÀÐào0@P ÐÄŸ¯""/"?""@H"@HÏï H ȸÿà@ H?333/333+3á23+3/]++]Ö]á2229///]]]]]]á22á10##5!###33#4>7#hÄ Ç@º{º´¿²Ãåellý›%"þIÑýÙ'ý/¬ ## ýÛÿÿN¦ÍvfÿÝ‹H"/;@!#J1/JN+/;///)N N?á?á9/]á9//]á2Þ2á10".54>32!32>7.#"y‚ƆE,Lfv€?qÂŽQüÅ@MX.Jt^M"H$SnÌ;M]53WI<#^Ìnc ~\<O“уþœ," 326454&#"5>322>7.#"; AeбmjŒS"2Qs™b[“-‹‰DCACKO%}¦c*ýž5^QC5% );I*>fO:%-F¦jáÔ¼RBnL<ƒe=OE* ¾É ®  Y–Äüs,Mhz…C(E30Qhon/2V@$)b¶X@ [`p°ð¸ÿÀ@' H/_oŸ¿@ H [ _ H ?3+?á/á+]3/+]á9=/331073!&&'!)¾»ÀûÇw -*ú¦qEú¹oša¨KK¨[ýÇþ'¶7@Ze 0 @ p €  ¸ÿÀ@HZd_?2?áöá+]öá10!#!mýº`þüù¢ø^Jþã¶ \@ [p ¸ÿÀ· H  ¸ÿà@ H  ¸ÿÀ@H _ _?á?á9=/3+3/33+23/+99//]á1055!!!Jpý Hü¼:ý°›þs’+r¤ý ü¤f‡2@–‹yVK8 ­³?á/]]]]]]]]Î105!fœ‡––%ÿòÅ ,@®//9/á//8399//33310##5!3s…þë´)å’ ýi¬w‘1#3Cv@OIH ðE/E_E:'J'j'*77'?w/—//ª 0x??«4*®:$®7'   Ÿ /]]33/^]39á2á2/á]/]á]9]]]]10]]#"&'#".54>32>32267&&#""32>54.1+MmB]›AFNS+AnO-+NoCUž>DOW0BmM+ü{?l41kE(@,,A|?k73lD'@-.@Í?rW4is0O8,RuHAsV1kp0N8-RuùWa^Z3D&$B2jWa]\3D'&C1þ#7@#%Ð% ¬  ®®?á?á/]3]]á2]]]102&&#"#"&'532>54>ƒ"K=$3B'2Y|J$K>#3E*/Wy “ 'AT-ú×^†V) “%@T0'^†V(f{%#GK@.AII.  @)­1¯C­ ¯­ß ï ÿ  @H ;­.C³?3á3/+]á3õ2áõá3/]3]Î210.#"563232>7#"..#"563232>7#".%7-)<;8d”27C/%7/(<;8c•27C/%7-)<;8d”27C/%7/(<;8a—27C¼ !,¢l  !,¢l ®  ,¢m  -¢l f¤¦@   ¸ÿð@O    @Æ»©†{hB9  ­­/ ðo/]]33/^]]q3á223á233/]]]]]]]]3]Î299//883}‡ÄÄÄÄ3‡ÄÄÄÄ10#5!!5!3!!!'^ø>yþIü…ŠiúþÁ{ºþ‰º–•;à•þü–þê9fÝ R@2 @ @o0 Pp€Ðð?/^]]]q33/]]29=/33/]3]Î210%5 5!üdœý!ßüdœî¨fá þ”þ¾þq––fÝ R@2  @ @o0 Pp€Ðð?/^]]]q33/]]39=/33/]3]Î21055!fâýœüdœBj¢þfþXî––m?à ]@6  ¬ ÿ @ P € ° À  / ª­ ­/á?á99=//33/]á]]]Þá99333310#3 ?þÂL þÏþÏ1áýßäýþýþÿÿ&IL¢$@¯P¯/@//]]]]]]]55ÿÿ&IO¢"@¯P¯!@!!]]]]]]]5ÏÙÍ?@) ¯Ï0p 0  @ HŽ/á3/+]3/^]3/]]]q10#".'332>7Í1]dgŒX)ª2L5,I6"NvQ)'PwP9I)+H5ÿ¼þdJ#@ G  T P?á?æ2/á]10"&'532>53B0?6#.#¶"Hmþ ” 'A3ôûM{W/‡Íy @ …? ’?å/3Ý]á10>73#‡ ´).`çMQP!NVV oþ;uÿƒ @ … ’/å/á2/310>73#o ²,6bþVLTS!MWV!}Ùƒ! @ …’ ?å/á2/310#5>73ƒ ²-7bLTS!NVV!%9Ç *@á O@ Há åÞåß?á?á/á+]Þá1032654&#"#".54>32¸GQNNNNQGÇ#JsOJpK&#IqN•š¥¡Ÿ§¥ŸŸ¥lªu>>uªll©t<ì J¼ F@* á _@ Háå   /  åÜÝ??á9/^]3á2/á+]9/33á210##5!533!5467}þ‰y}þô › ÀÀoCýÍÃ*c1 %*(ð;7f¶$J@!"" á&O&&&@ H ¸ÿÀ@H å!åÜåß?á?á9/á/++]Þá39/333102#"&'532654&#"'!!66B=kO-¦¡?y,<=;U__Y %'%C!ºþ¾9m#DeAŒ LXMU+¨{×%9Õ-8@  !á/O///@ H)á $äÞåß?á?39/3á/á2+]Þá910#".54>7366322654&#"*NoD@nR/E~²n-O`@ cJ6Z@$þÛDTMG'?--=fAoP--X€Sn³m'm@O`;+1%Hi÷\VRZ)7,I5/Jd¶8¹ÿð@áO@ HÐàðåÜÝ??á/]+]Þá9/810!5!@þb5þ¿Jñ{düø19qÇ%4Dw@"8á!Bá =2!!,áFOFFF@ H&á¸ÿÀ@'H =2K2[2k2›2«225¶=Æ=Ö==)åß5åÞ?á?á9]9]99/+á+]Þá99//9áá102#"&54>7.54>32654.''">54&R4^F*'4">0*Mi?‹–*8.#+H_bJHJK'7!AB”8? -, AÇ7T8%>2(-7E*9]B$ƒs*E8++5>%8S7ýh;FF;0' "Mè76*$ #,67!9{É%5;@"1à 7O777@ H)á,ä&å!Þ åß?á?á9/3á/á+]Þ9á210#"&'532>7##".54>32%"32>54.{!Z¢@6Sl@ $0=&<`D$)KlCArT0þËDVJL&?-*>B`»“[} 5Wr=$%GfABoQ-/a“¬^XLX)3$H;$TþÁî #'+/37;?CGS_oxä@Y4, 8WQzpotgdd‚~kpQÀQÐQQokkoQ]‰OŒ_ŒŒŒD($ ]PK`KKKA=1 *BF>&2†oygppz`zoTHHpo€oaoo¸ÿÀ@% Hoo`ZNNŠx`/`?`o```, 95!/^]3333/33339/]333/33/+]]3/339/333/3/3/3/3/33333/]3/33333/]39///]333/33333/3/3/310!#%5!#533!5353!5!!5!5!#3#35!#35!35!#35#3#3"&54672'2654&#"32##32654&##32654&#532653#"T/ÀÎ0mùoÀÃmýIûáþò·mmmmûÂü0ooÀwú¨ooooþmmú™‡‡‡‡H??HEBBŸ¬mp--83m^Ï{B.$)0;J1%&4 %1}h_=¾0oÁÁoþÐÁù/ÂmmÂþÑmmmmþooú¨ú;mm¦Jooooü/yýhþŠŸŽ‘›œ‘ŽŸhg^^ff^^gêCS1D D:QYb" "ãš+% *üf$2’þr^dTþÁª#/P@(##$ *0*@***O$$$ ##0---''/3/33/3/]3//3/3/33/]3/]3/310 54676654.#"663232654&#"þ¬üTüVë!LcM1[ƒQ+ZWR"RD~8?>'REJGFDGGDFGüVüW©û/,>:LƒYEkJ'#²".:/1DA5yP;þí>II>@IIÿÿÿ¼þU!&7Lþ»ÿÿÁP¶ ÿì²+ Ou@GM C>;GCC;GOQ Q?Q3G "P)>OONN))0)@)P))N)N8PH8P?á?á99//^]3á2á/]á]]3/]3á9/á999910.#"#".54>54&#"'6632324&'.54>323j 9M[0LV.j«<@ăo’V" 6%%d62E, 0N:¤¤®ò–C'QYh¡uKÑlªt=XH8iR3Š:ŸþîÉs7_}E(]YK-! 2D(#V]a-*J620>KxšQCpR.Tœß‹‰HÃ"@¯$ï$$@ H"«!˜!@!!!!¸ÿð@D!!   HŸ ¯ } k Z O + ;  Zw‡—O! ?Á??99/^]]]á2/]]]]]]+qq93/8]]]]]3+]10>7>32&&#"#3=?</5@)#+  # (2662»þBËÛK¨ ‰,(=' ‘*#Un€……<ýã/‡ÿì`J<@Gg//GÕ,·,©,š,,,7H«»>>T>d>„>¤>´>@>0>>"H0@P¸ÿÀ@H--'P 2'P?2á2?á229/9/+^]á]]_]]q3/]á9/_]]]]á]910"&54>7!57!##"&'#32>55332>54.')¶Ã +þë†Èó&ĵj‹ ‹º(6K-.D,³bR-K6$êó9}~{8JPš8{~}9óêW[[WÄ6vyz:bƒN!)Hb9°°‚Š!Nƒb:zyv6ÿÿÇ/u&0vyT@ '&K %+5+5ÿÿ®‡!&PvÇ@ :&z-3+%+5+5ÿÿýÕݼ&$[ ·%+55ÿÿ^ýÕœ^&D[¼ ·=3 "%+55ÿÿþÓÿìÃÍ&2R\þ@?¶-5¸ÿÀ² H¸ÿ!@55 %°€P@]]]]]]55++55?55sýÕ7ÿƒ:@(ƒ?O_ƒ0  Œ0@P ðŒ/áÔ^]á/]áÔ]á10#".54>324&#"3267#=T12R; ;R20T>#t@12?981@þ®3Q88O33O87O45<<55<<“hÙÇ B@ 0@¸ÿÀ@ H+      ?O_/Ì]99///Í]]2/+3Í]910>73#%467#"&° Ï08>Rþãxz<9%2/:E‰KOQ$ MPQ%xNsL.%'Fÿÿ¹&I'I¢LD8@&9p9@9/999à°¯KpK@KK]]]]]]5]]]]]55ÿÿ¨&I'I¢OD6@%9p9@9/999à°¯=p=@==]]]]]]5]]]]]5Ëê!úÀ Ü$ÿ®,)7R9R:f;)<R=)FÿÃGÿÃHÿÃJÿ×RÿÃTÿÃW)Y)Z\)‚ÿ®ƒÿ®„ÿ®…ÿ®†ÿ®‡ÿ®ˆÿ\Ž)))‘)ŸR¨ÿéÿêÿëÿìÿíÿôÿõÿöÿ÷ÿøÿúÿÿ)Á)Âÿ®Äÿ®Æÿ®ÉÿÃËÿÃÍÿÃÏÿÃÕÿÃ×ÿÃÙÿÃÛÿÃÝÿÃì)ð)ò)ÿÃÿÃÿÃÿÃ$R&R6f78R9):R;)=)?)Cÿ®_ÿ®iÿ®qRyÿÃ~ÿÀ)‚ÿÊ)ŒÿÃŽÿÃÿÑ)“ÿÔ)–ÿÙÿÛÿÃR¤ÿš¦R¨=ªÿ®®ÿ…°=±µÿ…¼R½=¿)ÄRÏÿÃØÿÃÛÿÃÜ)Ý)ÞÿÃêÿÃíÿÃúfûüfýþfÿR)(ÿ® $ÿ® ,) 7R 9R :f ;) <R =) Fÿà Gÿà Hÿà Jÿ× Rÿà Tÿà W) Y) Z \) ‚ÿ® ƒÿ® „ÿ® …ÿ® †ÿ® ‡ÿ® ˆÿ\ Ž) ) ) ‘) ŸR ¨ÿà ©ÿà ªÿà «ÿà ¬ÿà ­ÿà ´ÿà µÿà ¶ÿà ·ÿà ¸ÿà ºÿà ¿) Á) Âÿ® Äÿ® Æÿ® Éÿà Ëÿà Íÿà Ïÿà Õÿà ×ÿà Ùÿà Ûÿà Ýÿà ì) ð) ò) ÿà ÿà ÿà ÿà $R &R 6f 7 8R 9) :R ;) =) ?) Cÿ® _ÿ® iÿ® qR yÿà ~ÿà €) ‚ÿà Š) Œÿà Žÿà ÿà ‘) “ÿà ”) –ÿà ™ÿà ›ÿà R ¤ÿš ¦R ¨= ªÿ® ®ÿ… °= ± µÿ… ¼R ½= ¿) ÄR Ïÿà Øÿà Ûÿà Ü) Ý) Þÿà êÿà íÿà úf û üf ý þf ÿ R ) (ÿ® -{ ö{ £{&ÿÃ*ÿÃ2ÿÃ4ÿÃ7ÿš8ÿ×9ÿš:ÿ®<ÿš‰ÿÔÿÕÿÖÿ×ÿØÿÚÿÛÿלÿ×ÿמÿןÿšÈÿÃÎÿÃÞÿÃàÿÃâÿÃäÿÃÿÃÿÃ$ÿš&ÿš,ÿ×0ÿ×2ÿ×4ÿ×6ÿ®8ÿš:ÿšfÿÃmÿÃqÿš¸ÿûÿüÿšúÿ®üÿ®þÿ®ÿš7ÿšqÿšrÿðÿ×µÿ×¼ÿšÄÿ®&ÿÃ*ÿÃ2ÿÃ4ÿÃ7ÿš8ÿ×9ÿš:ÿ®<ÿš‰ÿÔÿÕÿÖÿ×ÿØÿÚÿÛÿלÿ×ÿמÿןÿšÈÿÃÎÿÃÞÿÃàÿÃâÿÃäÿÃÿÃÿÃ$ÿš&ÿš,ÿ×0ÿ×2ÿ×4ÿ×6ÿ®8ÿš:ÿšfÿÃmÿÃqÿš¸ÿûÿüÿšúÿ®üÿ®þÿ®ÿš$ÿ®$ ÿ®$&ÿì$*ÿì$2ÿì$4ÿì$7ÿ…$8ÿì$9ÿÃ$:ÿ×$<ÿš$‰ÿì$”ÿì$•ÿì$–ÿì$—ÿì$˜ÿì$šÿì$›ÿì$œÿì$ÿì$žÿì$Ÿÿš$Èÿì$Îÿì$Þÿì$àÿì$âÿì$äÿì$ÿì$ÿì$ÿ×$$ÿ…$&ÿ…$,ÿì$0ÿì$2ÿì$4ÿì$6ÿ×$8ÿš$:ÿš$fÿì$mÿì$qÿ…$¸ÿì$»ÿì$¼ÿ…$úÿ×$üÿ×$þÿ×$ÿš$ÿ®$ ÿ®%,ÿì%7ÿì%9ÿì%;ÿì%<ÿì%Ÿÿì%$ÿì%&ÿì%8ÿì%:ÿì%qÿì%¼ÿì%ÿì&)& )& )&&ÿ×&*ÿ×&2ÿ×&4ÿ×&@)&`)&‰ÿ×&”ÿ×&•ÿ×&–ÿ×&—ÿ×&˜ÿ×&šÿ×&Èÿ×&Îÿ×&Þÿ×&àÿ×&âÿ×&äÿ×&ÿ×&ÿ×&fÿ×&mÿ×&¸ÿ×&»ÿ×&)& )'ÿÃ'ÿÃ'$ÿì',ÿì'7ÿÃ'9ÿì':ÿì';ÿì'<ÿ×'=ÿì'‚ÿì'ƒÿì'„ÿì'…ÿì'†ÿì'‡ÿì'ˆÿÃ'Žÿì'ÿì'ÿì'‘ÿì'Ÿÿ×'Âÿì'Äÿì'Æÿì'ìÿì'ðÿì'òÿì'$ÿÃ'&ÿÃ'6ÿì'8ÿ×':ÿ×';ÿì'=ÿì'?ÿì'Cÿì'_ÿì'iÿì'qÿÃ'ªÿì'¼ÿÃ'úÿì'üÿì'þÿì'ÿ×'(ÿì)=) =) ))ÿš)ÿš)"))$ÿ×)9):)<)@))`))‚ÿ×)ƒÿ×)„ÿ×)…ÿ×)†ÿ×)‡ÿ×)ˆÿÃ)Ÿ)Âÿ×)Äÿ×)Æÿ×)6)8):)Cÿ×)_ÿ×)iÿ×)ªÿ×)ú)ü)þ))=) =)(ÿ×,), ),&ÿì,*ÿì,2ÿì,4ÿì,‰ÿì,”ÿì,•ÿì,–ÿì,—ÿì,˜ÿì,šÿì,Èÿì,Îÿì,Þÿì,àÿì,âÿì,äÿì,ÿì,ÿì,ÿì,fÿì,mÿì,¸ÿì,»ÿì,), ).). ).&ÿ×.*ÿ×.2ÿ×.4ÿ×.‰ÿ×.”ÿ×.•ÿ×.–ÿ×.—ÿ×.˜ÿ×.šÿ×.Èÿ×.Îÿ×.Þÿ×.àÿ×.âÿ×.äÿ×.ÿ×.ÿ×.ÿ×.fÿ×.mÿ×.¸ÿ×.»ÿ×.). )/ÿš/ ÿš/&ÿì/*ÿì/2ÿì/4ÿì/7ÿ…/8ÿì/9ÿ®/:ÿÃ/<ÿš/‰ÿì/”ÿì/•ÿì/–ÿì/—ÿì/˜ÿì/šÿì/›ÿì/œÿì/ÿì/žÿì/Ÿÿš/Èÿì/Îÿì/Þÿì/àÿì/âÿì/äÿì/ÿì/ÿì/ÿì/$ÿ…/&ÿ…/,ÿì/0ÿì/2ÿì/4ÿì/6ÿÃ/8ÿš/:ÿš/fÿì/mÿì/qÿ…/¸ÿì/»ÿì/¼ÿ…/úÿÃ/üÿÃ/þÿÃ/ÿš/ÿš/ ÿš2ÿÃ2ÿÃ2$ÿì2,ÿì27ÿÃ29ÿ×2:ÿì2;ÿ×2<ÿ×2=ÿì2‚ÿì2ƒÿì2„ÿì2…ÿì2†ÿì2‡ÿì2ˆÿ×2Žÿì2ÿì2ÿì2‘ÿì2Ÿÿ×2Âÿì2Äÿì2Æÿì2ìÿì2ðÿì2òÿì2$ÿÃ2&ÿÃ26ÿì28ÿ×2:ÿ×2;ÿì2=ÿì2?ÿì2Cÿì2_ÿì2iÿì2qÿÃ2ªÿì2¼ÿÃ2úÿì2üÿì2þÿì2ÿ×2(ÿì3ÿ33ÿ33$ÿ®3&ÿì3;ÿì3<ÿì3=ÿ×3‚ÿ®3ƒÿ®3„ÿ®3…ÿ®3†ÿ®3‡ÿ®3ˆÿq3‰ÿì3Ÿÿì3Âÿ®3Äÿ®3Æÿ®3Èÿì3Îÿì38ÿì3:ÿì3;ÿ×3=ÿ×3?ÿ×3Cÿ®3_ÿ®3iÿ®3ªÿ®3»ÿì3ÿì3(ÿ®4ÿÃ4ÿÃ4$ÿì4,ÿì47ÿÃ49ÿ×4:ÿì4;ÿ×4<ÿ×4=ÿì4‚ÿì4ƒÿì4„ÿì4…ÿì4†ÿì4‡ÿì4ˆÿÃ4Žÿì4ÿì4ÿì4‘ÿì4Ÿÿ×4Âÿì4Äÿì4Æÿì4ìÿì4ðÿì4òÿì4$ÿÃ4&ÿÃ46ÿì48ÿ×4:ÿ×4;ÿì4=ÿì4?ÿì4Cÿì4_ÿì4iÿì4qÿÃ4ªÿì4¼ÿÃ4úÿì4üÿì4þÿì4ÿ×4(ÿì57ÿì5$ÿì5&ÿì5qÿì5¼ÿì7R7 R7ÿš7ÿš7ÿš7")7$ÿ…7&ÿÃ7*ÿÃ72ÿÃ74ÿÃ76ÿì777Dÿ…7Fÿ…7Gÿ…7Hÿ…7Jÿš7Pÿ®7Qÿ®7Rÿ…7Sÿ®7Tÿ…7Uÿ®7Vÿ…7Xÿ®7YÿÃ7ZÿÃ7[ÿÃ7\ÿÃ7]ÿÃ7‚ÿ…7ƒÿ…7„ÿ…7…ÿ…7†ÿ…7‡ÿ…7ˆÿq7‰ÿÃ7”ÿÃ7•ÿÃ7–ÿÃ7—ÿÃ7˜ÿÃ7šÿÃ7¢ÿ…7£ÿ…7¤ÿ…7¥ÿ…7¦ÿ…7§ÿ…7¨ÿ…7©ÿ…7ªÿ…7«ÿ…7¬ÿ…7­ÿ…7³ÿ®7´ÿ…7µÿ…7¶ÿ…7·ÿ…7¸ÿ…7ºÿ…7»ÿ®7¼ÿ®7½ÿ®7¾ÿ®7¿ÿÃ7ÁÿÃ7Âÿ…7Ãÿ…7Äÿ…7Åÿ…7Æÿ…7Çÿ…7ÈÿÃ7Éÿ…7Ëÿ…7Íÿ…7ÎÿÃ7Ïÿ…7Õÿ…7×ÿ…7Ùÿ…7Ûÿ…7Ýÿ…7ÞÿÃ7àÿÃ7âÿÃ7äÿÃ7ÿ®7ÿ®7 ÿ®7ÿÃ7ÿ…7ÿ…7ÿÃ7ÿ…7ÿÃ7ÿ…7ÿì7ÿ…7ÿ…7 ÿì7!ÿ…7"ÿì7#ÿ…7$7&77ÿÃ79ÿÃ7@ÿÃ7Cÿ…7Dÿ…7Jÿ…7_ÿ…7fÿÃ7iÿ…7mÿÃ7q7yÿ…7{ÿ®7~ÿ…7€ÿÃ7‚ÿ…7„ÿ®7ŠÿÃ7Œÿ…7Žÿ…7ÿ…7‘ÿÃ7“ÿ…7”ÿÃ7–ÿ…7™ÿ…7›ÿ…7 ÿì7ªÿ…7¸ÿÃ7»ÿÃ7¼7Êÿ…7Ïÿ…7Øÿ…7Ûÿ…7ÜÿÃ7ÝÿÃ7Þÿ…7êÿ…7íÿ…7îÿ…7ûÿÃ7ýÿÃ7ÿÿÃ7ÿÃ7ÿ®7ÿš7R7 R7(ÿ…8ÿ×8ÿ×8$ÿì8‚ÿì8ƒÿì8„ÿì8…ÿì8†ÿì8‡ÿì8ˆÿ×8Âÿì8Äÿì8Æÿì8Cÿì8_ÿì8iÿì8ªÿì8(ÿì9R9 R9ÿš9ÿš9")9$ÿÃ9&ÿ×9*ÿ×92ÿ×94ÿ×9DÿÃ9FÿÃ9GÿÃ9HÿÃ9JÿÃ9Pÿ×9Qÿ×9RÿÃ9Sÿ×9TÿÃ9Uÿ×9Vÿ×9Xÿ×9‚ÿÃ9ƒÿÃ9„ÿÃ9…ÿÃ9†ÿÃ9‡ÿÃ9ˆÿ…9‰ÿ×9”ÿ×9•ÿ×9–ÿ×9—ÿ×9˜ÿ×9šÿ×9¢ÿÃ9£ÿÃ9¤ÿÃ9¥ÿÃ9¦ÿÃ9§ÿÃ9¨ÿÃ9©ÿÃ9ªÿÃ9«ÿÃ9¬ÿÃ9­ÿÃ9³ÿ×9´ÿÃ9µÿÃ9¶ÿÃ9·ÿÃ9¸ÿÃ9ºÿÃ9»ÿ×9¼ÿ×9½ÿ×9¾ÿ×9ÂÿÃ9ÃÿÃ9ÄÿÃ9ÅÿÃ9ÆÿÃ9ÇÿÃ9Èÿ×9ÉÿÃ9ËÿÃ9ÍÿÃ9Îÿ×9ÏÿÃ9ÕÿÃ9×ÿÃ9ÙÿÃ9ÛÿÃ9ÝÿÃ9Þÿ×9àÿ×9âÿ×9äÿ×9ÿ×9ÿ×9 ÿ×9ÿ×9ÿÃ9ÿÃ9ÿ×9ÿÃ9ÿ×9ÿÃ9ÿ×9ÿ×9!ÿ×9#ÿ×9CÿÃ9DÿÃ9Jÿ×9_ÿÃ9fÿ×9iÿÃ9mÿ×9yÿÃ9{ÿ×9~ÿÃ9‚ÿÃ9„ÿ×9ŒÿÃ9ŽÿÃ9ÿÃ9“ÿÃ9–ÿÃ9™ÿÃ9›ÿÃ9ªÿÃ9¸ÿ×9»ÿ×9ÊÿÃ9ÏÿÃ9ØÿÃ9ÛÿÃ9ÞÿÃ9êÿÃ9íÿÃ9îÿ×9R9 R9(ÿÃ:f: f:ÿ®:ÿ®:$ÿ×:&ÿì:*ÿì:2ÿì:4ÿì:Dÿ×:Fÿ×:Gÿ×:Hÿ×:Jÿì:Pÿì:Qÿì:Rÿ×:Sÿì:Tÿ×:Uÿì:Vÿ×:Xÿì:]ÿì:‚ÿ×:ƒÿ×:„ÿ×:…ÿ×:†ÿ×:‡ÿ×:ˆÿ®:‰ÿì:”ÿì:•ÿì:–ÿì:—ÿì:˜ÿì:šÿì:¢ÿ×:£ÿ×:¤ÿ×:¥ÿ×:¦ÿ×:§ÿ×:¨ÿ×:©ÿ×:ªÿ×:«ÿ×:¬ÿ×:­ÿ×:³ÿì:´ÿ×:µÿ×:¶ÿ×:·ÿ×:¸ÿ×:ºÿ×:»ÿì:¼ÿì:½ÿì:¾ÿì:Âÿ×:Ãÿ×:Äÿ×:Åÿ×:Æÿ×:Çÿ×:Èÿì:Éÿ×:Ëÿ×:Íÿ×:Îÿì:Ïÿ×:Õÿ×:×ÿ×:Ùÿ×:Ûÿ×:Ýÿ×:Þÿì:àÿì:âÿì:äÿì:ÿì:ÿì: ÿì:ÿì:ÿ×:ÿ×:ÿì:ÿ×:ÿì:ÿ×:ÿ×:ÿ×:!ÿ×:#ÿ×:@ÿì:Cÿ×:Dÿ×:Jÿ×:_ÿ×:fÿì:iÿ×:mÿì:yÿ×:{ÿì:~ÿ×:‚ÿ×:„ÿì:Œÿ×:Žÿ×:ÿ×:“ÿ×:–ÿ×:™ÿ×:›ÿ×:ªÿ×:¸ÿì:»ÿì:Êÿ×:Ïÿ×:Øÿ×:Ûÿ×:Þÿ×:êÿ×:íÿ×:îÿ×:f: f:(ÿ×;); );&ÿ×;*ÿ×;2ÿ×;4ÿ×;Fÿì;Gÿì;Hÿì;Rÿì;Tÿì;‰ÿ×;”ÿ×;•ÿ×;–ÿ×;—ÿ×;˜ÿ×;šÿ×;¨ÿì;©ÿì;ªÿì;«ÿì;¬ÿì;­ÿì;´ÿì;µÿì;¶ÿì;·ÿì;¸ÿì;ºÿì;Èÿ×;Éÿì;Ëÿì;Íÿì;Îÿ×;Ïÿì;Õÿì;×ÿì;Ùÿì;Ûÿì;Ýÿì;Þÿ×;àÿ×;âÿ×;äÿ×;ÿ×;ÿì;ÿì;ÿ×;ÿì;ÿ×;ÿì;fÿ×;mÿ×;yÿì;~ÿì;‚ÿì;Œÿì;Žÿì;ÿì;“ÿì;–ÿì;™ÿì;›ÿì;¸ÿ×;»ÿ×;Ïÿì;Øÿì;Ûÿì;Þÿì;êÿì;íÿì;); )<R< R<ÿš<ÿš<")<$ÿš<&ÿ×<*ÿ×<2ÿ×<4ÿ×<6ÿì<Dÿš<Fÿš<Gÿš<Hÿš<Jÿš<PÿÃ<QÿÃ<Rÿš<SÿÃ<Tÿš<UÿÃ<Vÿ®<XÿÃ<[ÿ×<\ÿì<]ÿÃ<‚ÿš<ƒÿš<„ÿš<…ÿš<†ÿš<‡ÿš<ˆÿq<‰ÿ×<”ÿ×<•ÿ×<–ÿ×<—ÿ×<˜ÿ×<šÿ×<¢ÿš<£ÿš<¤ÿš<¥ÿš<¦ÿš<§ÿš<¨ÿš<©ÿš<ªÿš<«ÿš<¬ÿš<­ÿš<³ÿÃ<´ÿš<µÿš<¶ÿš<·ÿš<¸ÿš<ºÿš<»ÿÃ<¼ÿÃ<½ÿÃ<¾ÿÃ<¿ÿì<Áÿì<Âÿš<Ãÿš<Äÿš<Åÿš<Æÿš<Çÿš<Èÿ×<Éÿš<Ëÿš<Íÿš<Îÿ×<Ïÿš<Õÿš<×ÿš<Ùÿš<Ûÿš<Ýÿš<Þÿ×<àÿ×<âÿ×<äÿ×<ÿÃ<ÿÃ< ÿÃ<ÿ×<ÿš<ÿš<ÿ×<ÿš<ÿ×<ÿš<ÿì<ÿ®<ÿ®< ÿì<!ÿ®<"ÿì<#ÿ®<9ÿì<@ÿÃ<Cÿš<Dÿš<Jÿ®<_ÿš<fÿ×<iÿš<mÿ×<yÿš<{ÿÃ<~ÿš<€ÿì<‚ÿš<„ÿÃ<Šÿì<Œÿš<Žÿš<ÿš<“ÿš<–ÿš<™ÿš<›ÿš< ÿì<ªÿš<¸ÿ×<»ÿ×<Êÿš<Ïÿš<Øÿš<Ûÿš<Ýÿì<Þÿš<êÿš<íÿš<îÿ®<ÿì<R< R<(ÿš=)= )=&ÿì=*ÿì=2ÿì=4ÿì=‰ÿì=”ÿì=•ÿì=–ÿì=—ÿì=˜ÿì=šÿì=Èÿì=Îÿì=Þÿì=àÿì=âÿì=äÿì=ÿì=ÿì=ÿ×=fÿì=mÿì=¸ÿì=»ÿì=)= )>-{>ö{>£{D ÿ×E ÿ×F=F =F=F =H ÿ×IfI fIYIZI\I¿IÁI7I9I€IŠI‘I”IÜIÝIûIýIÿIIfI fJ)J )JJJ)J )K ÿÃN)N )N)N )P ÿ×Q ÿ×R[ÿ×R]ÿìR@ÿìUfU fUDÿìUJÿìU¢ÿìU£ÿìU¤ÿìU¥ÿìU¦ÿìU§ÿìUÃÿìUÅÿìUÇÿìUDÿìUÊÿìUfU fV=V =V=V =WRW RWWWRW RYRY RYIYRY RZRZ RZIZRZ R[)[ )[Rÿ×[¨ÿ×[´ÿ×[µÿ×[¶ÿ×[·ÿ×[¸ÿ×[ºÿ×[ÿ×[ÿ×[ÿ×[ÿ×[Œÿ×[Žÿ×[ÿ×[“ÿ×[–ÿ×[™ÿ×[›ÿ×[Øÿ×[Þÿ×[)[ )\=\ =\I\=\ =]Rÿì]¨ÿì]´ÿì]µÿì]¶ÿì]·ÿì]¸ÿì]ºÿì]ÿì]ÿì]ÿì]ÿì]Œÿì]Žÿì]ÿì]“ÿì]–ÿì]™ÿì]›ÿì]Øÿì]Þÿì^-{^ö{^£{mqÿ×mxÿ×m‘)}qÿš}rÿÃ}xÿÂÿ®‚ ÿ®‚ ÿ…‚D‚D‚"ÿÂ&ÿì‚*ÿì‚-^‚2ÿì‚4ÿì‚7ÿ…‚8ÿì‚9ÿÂ:ÿׂ<ÿš‚=;‚Iÿì‚Wÿì‚YÿׂZÿì‚\ÿׂ‚ÿׂ‰ÿì‚”ÿì‚•ÿì‚–ÿì‚—ÿ삘ÿ삚ÿì‚›ÿ삜ÿì‚ÿ삞ÿ삟ÿš‚¿ÿׂÁÿׂÈÿì‚Îÿì‚Þÿì‚àÿì‚âÿì‚äÿì‚ö^‚ÿì‚ÿì‚ÿׂ$ÿ…‚&ÿ…‚,ÿì‚0ÿì‚2ÿì‚4ÿì‚6ÿׂ7ÿì‚8ÿš‚9ÿׂ:ÿš‚;;‚=;‚?;‚fÿì‚mÿì‚qÿ…‚€ÿׂŠÿׂ‘ÿׂ”ÿׂ£^‚¸ÿì‚»ÿ삼ÿ…‚ÜÿׂÝÿׂúÿׂûÿì‚üÿׂýÿì‚þÿׂÿÿì‚ÿš‚ÿׂÿ®‚ ÿ®ƒÿ®ƒ ÿ®ƒ ÿ…ƒDƒDƒ"ÿÃ&ÿìƒ*ÿìƒ-^ƒ2ÿìƒ4ÿìƒ7ÿ…ƒ8ÿìƒ9ÿÃ:ÿ׃<ÿšƒ=;ƒIÿìƒWÿìƒYÿ׃Zÿìƒ\ÿ׃„ÿ׃‰ÿ샊ÿ׃ÿ׃ÿ僔ÿ샕ÿ샖ÿ샗ÿ샘ÿ샚ÿ샛ÿ샜ÿìƒÿ샞ÿ샟ÿšƒ¿ÿ׃Áÿ׃ÈÿìƒÎÿìƒÞÿìƒàÿìƒâÿìƒäÿìƒö^ƒÿìƒÿìƒÿ׃$ÿ…ƒ&ÿ…ƒ,ÿìƒ0ÿìƒ2ÿìƒ4ÿìƒ6ÿ׃7ÿìƒ8ÿšƒ9ÿ׃:ÿšƒ;;ƒ=;ƒ?;ƒfÿìƒmÿìƒqÿ…ƒ€ÿ׃Šÿ׃‘ÿ׃”ÿ׃£^ƒ¸ÿ샻ÿ샼ÿ…ƒÜÿ׃Ýÿ׃úÿ׃ûÿìƒüÿ׃ýÿìƒþÿ׃ÿÿìƒÿšƒÿ׃ÿ®ƒ ÿ®„ÿ®„ ÿ®„ ÿ…„D„D„"ÿÄ&ÿì„*ÿì„-^„2ÿì„4ÿì„7ÿ…„8ÿì„9ÿÄ:ÿׄ<ÿš„=;„Iÿì„Wÿì„YÿׄZÿì„\ÿׄ„ÿׄ‰ÿ섊ÿׄÿׄÿå„”ÿì„•ÿì„–ÿì„—ÿ섘ÿ섚ÿì„›ÿ서ÿì„ÿ섞ÿ섟ÿš„¿ÿׄÁÿׄÈÿì„Îÿì„Þÿì„àÿì„âÿì„äÿì„ö^„ÿì„ÿì„ÿׄ$ÿ…„&ÿ…„,ÿì„0ÿì„2ÿì„4ÿì„6ÿׄ7ÿì„8ÿš„9ÿׄ:ÿš„;;„=;„?;„fÿì„mÿì„qÿ…„€ÿׄŠÿׄ‘ÿׄ”ÿׄ£^„¸ÿì„»ÿ센ÿ…„ÜÿׄÝÿׄúÿׄûÿì„üÿׄýÿì„þÿׄÿÿì„ÿš„ÿׄÿ®„ ÿ®…ÿ®… ÿ®… ÿ……D…D…"ÿÃ…&ÿì…*ÿì…-^…2ÿì…4ÿì…7ÿ……8ÿì…9ÿÃ…:ÿ×…<ÿš…=;…Iÿì…Wÿì…Yÿ×…Zÿì…\ÿ×…‚ÿ×…‰ÿì…”ÿì…•ÿì…–ÿì…—ÿì…˜ÿì…šÿì…›ÿì…œÿì…ÿì…žÿì…Ÿÿš…¿ÿ×…Áÿ×…Èÿì…Îÿì…Þÿì…àÿì…âÿì…äÿì…ö^…ÿì…ÿì…ÿ×…$ÿ……&ÿ……,ÿì…0ÿì…2ÿì…4ÿì…6ÿ×…7ÿì…8ÿš…9ÿ×…:ÿš…;;…=;…?;…fÿì…mÿì…qÿ……€ÿ×…Šÿ×…‘ÿ×…”ÿ×…£^…¸ÿì…»ÿì…¼ÿ……Üÿ×…Ýÿ×…úÿ×…ûÿì…üÿ×…ýÿì…þÿ×…ÿÿì…ÿš…ÿ×…ÿ®… ÿ®†ÿ®† ÿ®† ÿ†D†D†"ÿ׆&ÿì†*ÿì†-^†2ÿì†4ÿì†7ÿ…†8ÿì†9ÿÆ:ÿ׆<ÿš†=;†Wÿå†YÿÕ†Zÿå†\ÿÛ†‰ÿ솔ÿ솕ÿ솖ÿ솗ÿ솘ÿ솚ÿ솛ÿ솜ÿì†ÿ솞ÿ솟ÿš†¿ÿÛ†ÁÿÛ†Èÿì†Îÿì†Þÿì†àÿì†âÿì†äÿì†ö^†ÿì†ÿì†ÿ׆$ÿ…†&ÿ…†,ÿì†0ÿì†2ÿì†4ÿì†6ÿ׆7ÿå†8ÿš†9ÿÛ†:ÿš†;;†=;†?;†fÿì†mÿì†qÿ…†€ÿÛ†ŠÿÕ†‘ÿÕ†”ÿÕ†£^†¸ÿ솻ÿ솼ÿ…†ÜÿÕ†ÝÿÛ†úÿ׆ûÿå†üÿ׆ýÿå†þÿ׆ÿÿå†ÿš†ÿÛ†ÿ®† ÿ®‡ÿf‡ ÿf‡ ÿ‡D‡D‡"ÿׇ&ÿì‡*ÿì‡-^‡2ÿì‡4ÿì‡7ÿ…‡8ÿì‡9ÿÇ:ÿׇ<ÿš‡=;‡Wÿå‡YÿÕ‡Zÿå‡\ÿÛ‡‰ÿ쇔ÿ쇕ÿ쇖ÿ쇗ÿ쇘ÿ쇚ÿ쇛ÿ쇜ÿì‡ÿ쇞ÿ쇟ÿš‡¿ÿÛ‡ÁÿÛ‡Èÿì‡Îÿì‡Þÿì‡àÿì‡âÿì‡äÿì‡ö^‡ÿì‡ÿì‡ÿׇ$ÿ…‡&ÿ…‡,ÿì‡0ÿì‡2ÿì‡4ÿì‡6ÿׇ7ÿå‡8ÿš‡9ÿÛ‡:ÿš‡;;‡=;‡?;‡fÿì‡mÿì‡qÿ…‡€ÿÛ‡ŠÿÕ‡‘ÿÕ‡”ÿÕ‡£^‡¸ÿ쇻ÿ쇼ÿ…‡ÜÿÕ‡ÝÿÛ‡úÿׇûÿå‡üÿׇýÿå‡þÿׇÿÿå‡ÿš‡ÿÛ‡ÿf‡ÿ®‡ ÿf‡ ÿ®‡ ÿš‰)‰ )‰ )‰&ÿ׉*ÿ׉2ÿ׉4ÿ׉@)‰`)‰‰ÿ׉”ÿ׉•ÿ׉–ÿ׉—ÿ׉˜ÿ׉šÿ׉Èÿ׉Îÿ׉Þÿ׉àÿ׉âÿ׉äÿ׉ÿ׉ÿ׉fÿ׉mÿ׉¸ÿ׉»ÿ׉)‰ )Š)Š )Šÿ׊&ÿìŠ2ÿìŠ4ÿ슄ÿ슉ÿ슊ÿìŠÿ슔ÿ슕ÿ슖ÿ슗ÿ슘ÿ슚ÿìŠÈÿìŠÎÿìŠö=ŠÿìŠÿìŠfÿìŠmÿ슣=Џÿ슻ÿìŠ)Š )‹)‹ )‹ÿ׋&ÿì‹2ÿì‹4ÿ싉ÿì‹‹ÿì‹”ÿì‹•ÿì‹–ÿì‹—ÿ싘ÿ싚ÿì‹Èÿì‹Îÿì‹ö=‹ÿì‹ÿì‹fÿì‹mÿì‹£=‹¸ÿì‹»ÿì‹)‹ )Œ)Œ )Œÿ׌&ÿìŒ2ÿìŒ4ÿ쌄ÿ쌉ÿ쌊ÿìŒÿ쌔ÿ쌕ÿ쌖ÿ쌗ÿ쌘ÿ쌚ÿìŒÈÿìŒÎÿìŒö=ŒÿìŒÿìŒfÿìŒmÿ쌣=Œ¸ÿ쌻ÿìŒ)Œ )) )ÿ×&ÿì2ÿì4ÿì„ÿì‰ÿìŠÿìÿì”ÿì•ÿì–ÿì—ÿì˜ÿìšÿìÈÿìÎÿìö=ÿìÿìfÿìmÿì£=¸ÿì»ÿì) )Ž)Ž )Ž&ÿìŽ*ÿìŽ2ÿìŽ4ÿ쎉ÿ쎔ÿ쎕ÿ쎖ÿ쎗ÿ쎘ÿ쎚ÿìŽÈÿìŽÎÿìŽÞÿìŽàÿìŽâÿìŽäÿìŽÿìŽÿìŽÿìŽfÿìŽmÿ쎸ÿ쎻ÿìŽ)Ž )) )&ÿì*ÿì2ÿì4ÿì‰ÿì”ÿì•ÿì–ÿì—ÿì˜ÿìšÿìÈÿìÎÿìÞÿìàÿìâÿìäÿìÿìÿìÿìfÿìmÿì¸ÿì»ÿì) )) )&ÿì*ÿì2ÿì4ÿì‰ÿì”ÿì•ÿì–ÿì—ÿì˜ÿìšÿìÈÿìÎÿìÞÿìàÿìâÿìäÿìÿìÿìÿìfÿìmÿì¸ÿì»ÿì) )‘)‘ )‘&ÿì‘*ÿì‘2ÿì‘4ÿ쑉ÿì‘”ÿì‘•ÿì‘–ÿì‘—ÿ쑘ÿ쑚ÿì‘Èÿì‘Îÿì‘Þÿì‘àÿì‘âÿì‘äÿì‘ÿì‘ÿì‘ÿì‘fÿì‘mÿ쑸ÿì‘»ÿì‘)‘ )’$ÿì’‚ÿì’ƒÿì’„ÿì’…ÿì’†ÿì’‡ÿì’Âÿì’Äÿì’Æÿì’Cÿì’_ÿì’iÿì’ªÿì’(ÿì” ÿ×”ÿÔÿÔ$ÿì”,ÿì”-ÿö”6ÿì”7ÿÔ9ÿ×”:ÿì”;ÿ×”<ÿ×”=ÿì”@ÿ×”`ÿ×”‚ÿ씃ÿ씄ÿì”…ÿ씆ÿ씇ÿ씈ÿ×”Žÿì”ÿì”ÿ씑ÿ씟ÿ×”Âÿì”Äÿì”Æÿì”ìÿì”ðÿì”òÿì”öÿö”ÿì” ÿì”"ÿì”$ÿÔ&ÿÔ6ÿì”8ÿ×”:ÿ×”;ÿì”=ÿì”?ÿì”Cÿì”_ÿì”iÿì”qÿÔ ÿ씣ÿö”ªÿ씼ÿÔúÿì”üÿì”þÿì”ÿ×”(ÿì• ÿוÿÕÿÕ$ÿì•,ÿì•-ÿö•6ÿì•7ÿÕ9ÿו:ÿì•;ÿו<ÿו=ÿì•@ÿו`ÿו‚ÿ앃ÿì•„ÿì•…ÿ앆ÿ앇ÿ안ÿוŽÿì•ÿì•ÿì•‘ÿ앟ÿוÂÿì•Äÿì•Æÿì•ìÿì•ðÿì•òÿì•öÿö•ÿì• ÿì•"ÿì•$ÿÕ&ÿÕ6ÿì•8ÿו:ÿו;ÿì•=ÿì•?ÿì•Cÿì•_ÿì•iÿì•qÿÕ ÿì•£ÿö•ªÿ야ÿÕúÿì•üÿì•þÿì•ÿו(ÿì– ÿ×–ÿÖÿÖ$ÿì–,ÿì–-ÿö–6ÿì–7ÿÖ9ÿ×–:ÿì–;ÿ×–<ÿ×–=ÿì–@ÿ×–`ÿ×–‚ÿì–ƒÿì–„ÿì–…ÿì–†ÿì–‡ÿì–ˆÿ×–Žÿì–ÿì–ÿì–‘ÿì–Ÿÿ×–Âÿì–Äÿì–Æÿì–ìÿì–ðÿì–òÿì–öÿö–ÿì– ÿì–"ÿì–$ÿÖ&ÿÖ6ÿì–8ÿ×–:ÿ×–;ÿì–=ÿì–?ÿì–Cÿì–_ÿì–iÿì–qÿÖ ÿì–£ÿö–ªÿì–¼ÿÖúÿì–üÿì–þÿì–ÿ×–(ÿì— ÿ×—ÿ×ÿ×$ÿì—,ÿì—-ÿö—6ÿì—7ÿ×9ÿ×—:ÿì—;ÿ×—<ÿ×—=ÿì—@ÿ×—`ÿ×—‚ÿì—ƒÿì—„ÿì—…ÿì—†ÿì—‡ÿì—ˆÿ×—Žÿì—ÿì—ÿì—‘ÿì—Ÿÿ×—Âÿì—Äÿì—Æÿì—ìÿì—ðÿì—òÿì—öÿö—ÿì— ÿì—"ÿì—$ÿ×&ÿ×6ÿì—8ÿ×—:ÿ×—;ÿì—=ÿì—?ÿì—Cÿì—_ÿì—iÿì—qÿ× ÿì—£ÿö—ªÿì—¼ÿ×úÿì—üÿì—þÿì—ÿ×—(ÿì˜ ÿטÿØÿØ$ÿì˜,ÿì˜-ÿö˜6ÿì˜7ÿØ9ÿט:ÿì˜;ÿט<ÿט=ÿì˜@ÿט`ÿט‚ÿ옃ÿ옄ÿ옅ÿ옆ÿ옇ÿ예ÿטŽÿì˜ÿì˜ÿ옑ÿ옟ÿטÂÿì˜Äÿì˜Æÿì˜ìÿì˜ðÿì˜òÿì˜öÿö˜ÿì˜ ÿì˜"ÿì˜$ÿØ&ÿØ6ÿì˜8ÿט:ÿט;ÿì˜=ÿì˜?ÿì˜Cÿì˜_ÿì˜iÿì˜qÿØ ÿ옣ÿö˜ªÿ옼ÿØúÿì˜üÿì˜þÿì˜ÿט(ÿìšÿÚÿÚ$ÿìš,ÿìš7ÿÚ9ÿך:ÿìš;ÿך<ÿך=ÿìš‚ÿ욃ÿìš„ÿìš…ÿ욆ÿ욇ÿ욈ÿךŽÿìšÿìšÿìš‘ÿ욟ÿךÂÿìšÄÿìšÆÿìšìÿìšðÿìšòÿìš$ÿÚ&ÿÚ6ÿìš8ÿך:ÿך;ÿìš=ÿìš?ÿìšCÿìš_ÿìšiÿìšqÿÚªÿìš¼ÿÚúÿìšüÿìšþÿìšÿך(ÿì›ÿ×›ÿ×›$ÿì›0ÿì›=ÿì›Dÿ웂ÿ웃ÿ웄ÿì›…ÿ웆ÿ웇ÿ웈ÿ×›¢ÿ웣ÿ웤ÿ웥ÿ웦ÿì›§ÿì›Âÿì›Ãÿì›Äÿì›Åÿì›Æÿì›Çÿì›;ÿì›=ÿì›?ÿì›Cÿì›Dÿì›_ÿì›iÿ웪ÿì›Êÿì›(ÿìœÿלÿל$ÿìœ0ÿìœ=ÿìœDÿ윂ÿ윃ÿ위ÿ윅ÿ윆ÿ윇ÿ윈ÿל¢ÿ윣ÿ윤ÿ윥ÿ윦ÿ윧ÿìœÂÿìœÃÿìœÄÿìœÅÿìœÆÿìœÇÿìœ;ÿìœ=ÿìœ?ÿìœCÿìœDÿìœ_ÿìœiÿ윪ÿìœÊÿìœ(ÿìÿ×ÿ×$ÿì0ÿì=ÿìDÿì‚ÿìƒÿì„ÿì…ÿì†ÿì‡ÿìˆÿ×¢ÿì£ÿì¤ÿì¥ÿì¦ÿì§ÿìÂÿìÃÿìÄÿìÅÿìÆÿìÇÿì;ÿì=ÿì?ÿìCÿìDÿì_ÿìiÿìªÿìÊÿì(ÿìžÿמÿמ$ÿìž0ÿìž=ÿìžDÿìž‚ÿ잃ÿìž„ÿìž…ÿ잆ÿ잇ÿ있ÿמ¢ÿ잣ÿ잤ÿ장ÿ잦ÿìž§ÿìžÂÿìžÃÿìžÄÿìžÅÿìžÆÿìžÇÿìž;ÿìž=ÿìž?ÿìžCÿìžDÿìž_ÿìžiÿ잪ÿìžÊÿìž(ÿìŸRŸ ÿß RŸ =Ÿ )ŸÿšŸÿšŸÿšŸ")Ÿ$ÿšŸ&ÿן*ÿן-ÿ¾Ÿ0ÿß2ÿן4ÿן6ÿìŸ7'Ÿ9)Ÿ:Ÿ@=ŸDÿšŸFÿšŸGÿšŸHÿšŸIÿåŸJÿšŸPÿßQÿßRÿšŸSÿßTÿšŸUÿßVÿ®ŸXÿßYÿןZÿìŸ[ÿן\ÿìŸ]ÿß`=Ÿ‚ÿšŸƒÿšŸ„ÿšŸ…ÿšŸ†ÿšŸ‡ÿšŸˆÿqŸ‰ÿן”ÿן•ÿן–ÿן—ÿן˜ÿןšÿן¢ÿšŸ£ÿšŸ¤ÿšŸ¥ÿšŸ¦ÿšŸ§ÿšŸ¨ÿšŸ©ÿšŸªÿšŸ«ÿšŸ¬ÿšŸ­ÿšŸ³ÿß´ÿšŸµÿšŸ¶ÿšŸ·ÿšŸ¸ÿšŸºÿšŸ»ÿß¼ÿß½ÿß¾ÿß¿ÿìŸÁÿìŸÂÿšŸÃÿšŸÄÿšŸÅÿšŸÆÿšŸÇÿšŸÈÿןÉÿšŸËÿšŸÍÿšŸÎÿןÏÿšŸÕÿšŸ×ÿšŸÙÿšŸÛÿšŸÝÿšŸÞÿןàÿןâÿןäÿןöÿ¾Ÿÿßÿß ÿßÿןÿšŸÿšŸÿןÿšŸÿןÿšŸÿìŸÿ®Ÿÿ®Ÿ ÿìŸ!ÿ®Ÿ"ÿìŸ#ÿ®Ÿ$'Ÿ&'Ÿ6Ÿ7ÿìŸ9ÿìŸ@ÿßCÿšŸDÿšŸJÿ®Ÿ_ÿšŸfÿןiÿšŸmÿןq'ŸyÿšŸ{ÿß~ÿšŸ€ÿ쟂ÿšŸ„ÿߊÿןŒÿšŸŽÿšŸÿšŸ‘ÿן“ÿšŸ”ÿן–ÿšŸ™ÿšŸ›ÿšŸ ÿ쟣ÿ¾ŸªÿšŸ¸ÿן»ÿן¼'ŸÊÿšŸÏÿšŸØÿšŸÛÿšŸÜÿןÝÿìŸÞÿšŸêÿšŸíÿšŸîÿ®ŸúŸûÿìŸüŸýÿìŸþŸÿÿìŸÿìŸRŸ RŸ(ÿš¢ ÿ×£ ÿפ ÿ×¥ ÿצ ÿ×§ ÿר[ÿר]ÿì¨@ÿì©=© =©=© =ªÿ˜ª ÿ׫ÿ˜« ÿ׬ÿ˜¬ ÿ×­ÿ˜­ ÿ׳ÿ˜³ ÿ׳ ÿ×´ÿo´ ÿo´IÿÛ´[ÿ×´]ÿì´@ÿìµÿoµ ÿoµIÿÛµ[ÿ×µ]ÿìµ@ÿì¶ÿo¶ ÿo¶IÿÛ¶[ÿ×¶]ÿì¶@ÿì·ÿo· ÿo·IÿÛ·[ÿ×·]ÿì·@ÿì¸ÿo¸ ÿo¸IÿÛ¸[ÿ׸]ÿì¸@ÿìº[ÿ׺]ÿìº@ÿì»ÿ¾» ÿ¾¼ÿ¾¼ ÿ¾½ÿ¾½ ÿ¾¾ÿ¾¾ ÿ¾¿=¿ =¿ÿ¾¿ÿ¾¿"ÿ´¿Fÿö¿Gÿö¿Hÿö¿I¿Jÿö¿Rÿö¿Tÿö¿W¿¨ÿö¿©ÿö¿ªÿö¿«ÿö¿¬ÿö¿­ÿö¿´ÿö¿µÿö¿¶ÿö¿·ÿö¿¸ÿö¿ºÿö¿Éÿö¿Ëÿö¿Íÿö¿Ïÿö¿Õÿö¿×ÿö¿Ùÿö¿Ûÿö¿Ýÿö¿ÿö¿ÿö¿ÿö¿ÿö¿yÿö¿~ÿö¿‚ÿö¿Œÿö¿Žÿö¿ÿö¿“ÿö¿–ÿö¿™ÿö¿›ÿö¿Ïÿö¿Øÿö¿Ûÿö¿Þÿö¿êÿö¿íÿö¿=¿ÿ¿ =¿ ÿ¿ÿ¿ Á=Á =Áÿ¾Áÿ¾ÁIÁ=Á =Âÿ®Â ÿ®Â&ÿìÂ*ÿìÂ2ÿìÂ4ÿìÂ7ÿ…Â8ÿìÂ9ÿÃÂ:ÿ×Â<ÿšÂ‰ÿì”ÿì•ÿì–ÿì—ÿì˜ÿìšÿì›ÿìœÿìÂÿìžÿìŸÿšÂÈÿìÂÎÿìÂÞÿìÂàÿìÂâÿìÂäÿìÂÿìÂÿìÂÿ×Â$ÿ…Â&ÿ…Â,ÿìÂ0ÿìÂ2ÿìÂ4ÿìÂ6ÿ×Â8ÿšÂ:ÿšÂfÿìÂmÿìÂqÿ…¸ÿì»ÿì¼ÿ…Âúÿ×Âüÿ×Âþÿ×ÂÿšÂÿ®Â ÿ®Ã ÿ×Äÿ®Ä ÿ®Ä&ÿìÄ*ÿìÄ2ÿìÄ4ÿìÄ7ÿ…Ä8ÿìÄ9ÿÃÄ:ÿ×Ä<ÿšÄ‰ÿìÄ”ÿìÄ•ÿìÄ–ÿìÄ—ÿìĘÿìÄšÿìÄ›ÿìÄœÿìÄÿìÄžÿìÄŸÿšÄÈÿìÄÎÿìÄÞÿìÄàÿìÄâÿìÄäÿìÄÿìÄÿìÄÿ×Ä$ÿ…Ä&ÿ…Ä,ÿìÄ0ÿìÄ2ÿìÄ4ÿìÄ6ÿ×Ä8ÿšÄ:ÿšÄfÿìÄmÿìÄqÿ…ĸÿìÄ»ÿìļÿ…Äúÿ×Äüÿ×Äþÿ×ÄÿšÄÿ®Ä ÿ®Å ÿׯÿ®Æ ÿ®Æ&ÿìÆ*ÿìÆ-áÆ2ÿìÆ4ÿìÆ7ÿ…Æ8ÿìÆ9ÿÃÆ:ÿׯ<ÿšÆ‰ÿìÆ”ÿìÆ•ÿìÆ–ÿìÆ—ÿìÆ˜ÿìÆšÿìÆ›ÿìÆœÿìÆÿìÆžÿìÆŸÿšÆÈÿìÆÎÿìÆÞÿìÆàÿìÆâÿìÆäÿìÆÿìÆÿìÆÿׯ$ÿ…Æ&ÿ…Æ,ÿìÆ0ÿìÆ2ÿìÆ4ÿìÆ6ÿׯ8ÿšÆ:ÿšÆfÿìÆmÿìÆqÿ…ƸÿìÆ»ÿìÆ¼ÿ…ÆúÿׯüÿׯþÿׯÿšÆÿ®Æ ÿ®Ç ÿ×È)È )È )È&ÿ×È*ÿ×È2ÿ×È4ÿ×È@)È`)ȉÿ×È”ÿ×È•ÿ×È–ÿ×È—ÿ×Șÿ×Èšÿ×ÈÈÿ×ÈÎÿ×ÈÞÿ×Èàÿ×Èâÿ×Èäÿ×Èÿ×Èÿ×Èfÿ×Èmÿ×ȸÿ×È»ÿ×È)È )É=É =É=É =Ë=Ë =Ë=Ë =Í=Í =Í=Í =Î)Î )Î )Î&ÿ×Î*ÿ×Î2ÿ×Î4ÿ×Î@)Î`)Ήÿ×Δÿ×Εÿ×Ζÿ×Ηÿ×Θÿ×Κÿ×ÎÈÿ×ÎÎÿ×ÎÞÿ×Îàÿ×Îâÿ×Îäÿ×Îÿ×Îÿ×Îfÿ×Îmÿ×θÿ×λÿ×Î)Î )Ï=Ï =Ï=Ï =ÑfÑ fÑ Ñ"¤Ñ@¤ÑERÑKRÑL=ÑM=ÑNRÑORÑ`¸Ñ®öѰÍѱÍÑçRÑé¤Ñë ÑíÍÑïöÑñ)Ñõ=Ñ÷áÑùRÑüRÑþRÑRÑRÑRÑÑ Õ ÿ×× ÿ×Ù ÿ×Ú-fÛ ÿ×Ý ÿ×ì)ì )ì&ÿìì*ÿìì2ÿìì4ÿìì‰ÿìì”ÿìì•ÿìì–ÿìì—ÿìì˜ÿììšÿììÈÿììÎÿììÞÿììàÿììâÿììäÿììÿììÿììÿììfÿììmÿìì¸ÿìì»ÿìì)ì )ð)ð )ð&ÿìð*ÿìð-Rð2ÿìð4ÿìð‰ÿìð”ÿìð•ÿìð–ÿìð—ÿìð˜ÿìðšÿìðÈÿìðÎÿìðÞÿìðàÿìðâÿìðäÿìðÿìðÿìðÿìðfÿìðmÿìð¸ÿìð»ÿìð)ð )ò)ò )ò&ÿìò*ÿìò2ÿìò4ÿìò‰ÿìò”ÿìò•ÿìò–ÿìò—ÿìò˜ÿìòšÿìòÈÿìòÎÿìòÞÿìòàÿìòâÿìòäÿìòÿìòÿìòÿìòfÿìòmÿìò¸ÿìò»ÿìò)ò )ø)ø )ø&ÿ×ø*ÿ×ø2ÿ×ø4ÿ×ø‰ÿ×ø”ÿ×ø•ÿ×ø–ÿ×ø—ÿ×ø˜ÿ×øšÿ×øÈÿ×øÎÿ×øÞÿ×øàÿ×øâÿ×øäÿ×øÿ×øÿ×øÿ×øfÿ×ømÿ×ø¸ÿ×ø»ÿ×ø)ø )ú)ú )ú)ú )ûÿšû ÿšû&ÿìû*ÿìû2ÿìû4ÿìû7ÿ…û8ÿìû9ÿ®û:ÿÃû<ÿšû‰ÿìû”ÿìû•ÿìû–ÿìû—ÿìû˜ÿìûšÿìû›ÿìûœÿìûÿìûžÿìûŸÿšûÈÿìûÎÿìûÞÿìûàÿìûâÿìûäÿìûÿìûÿìûÿìû$ÿ…û&ÿ…û,ÿìû0ÿìû2ÿìû4ÿìû6ÿÃû8ÿšû:ÿšûfÿìûmÿìûqÿ…û¸ÿìû»ÿìû¼ÿ…ûúÿÃûüÿÃûþÿÃûÿšûÿšû ÿšýÿšý ÿšý&ÿìý*ÿìý2ÿìý4ÿìý7ÿ…ý8ÿìý9ÿ®ý:ÿÃý<ÿšý‰ÿìý”ÿìý•ÿìý–ÿìý—ÿìý˜ÿìýšÿìý›ÿìýœÿìýÿìýžÿìýŸÿšýÈÿìýÎÿìýÞÿìýàÿìýâÿìýäÿìýÿìýÿìýÿìý$ÿ…ý&ÿ…ý,ÿìý0ÿìý2ÿìý4ÿìý6ÿÃý8ÿšý:ÿšýfÿìýmÿìýqÿ…ý¸ÿìý»ÿìý¼ÿ…ýúÿÃýüÿÃýþÿÃýÿšýÿšý ÿšÿÿšÿ ÿšÿ&ÿìÿ*ÿìÿ2ÿìÿ4ÿìÿ7ÿ…ÿ8ÿìÿ9ÿ®ÿ:ÿÃÿ<ÿšÿ‰ÿìÿ”ÿìÿ•ÿìÿ–ÿìÿ—ÿìÿ˜ÿìÿšÿìÿ›ÿìÿœÿìÿÿìÿžÿìÿŸÿšÿÈÿìÿÎÿìÿÞÿìÿàÿìÿâÿìÿäÿìÿÿìÿÿìÿÿìÿ$ÿ…ÿ&ÿ…ÿ,ÿìÿ0ÿìÿ2ÿìÿ4ÿìÿ6ÿÃÿ8ÿšÿ:ÿšÿfÿìÿmÿìÿqÿ…ÿ¸ÿìÿ»ÿìÿ¼ÿ…ÿúÿÃÿüÿÃÿþÿÃÿÿšÿÿšÿ ÿšf f "¤@¤ERKRL=M=NROR`¸®ö°Í±ÍçRé¤ë íÍïöñ)õ=÷áùRüRþRRRR ÿš ÿš&ÿì*ÿì2ÿì4ÿì7ÿ…8ÿì9ÿ®:ÿÃ<ÿš‰ÿì”ÿì•ÿì–ÿì—ÿì˜ÿìšÿì›ÿìœÿìÿìžÿìŸÿšÈÿìÎÿìÞÿìàÿìâÿìäÿìÿìÿìÿì$ÿ…&ÿ…,ÿì0ÿì2ÿì4ÿì6ÿÃ8ÿš:ÿšfÿìmÿìqÿ…¸ÿì»ÿì¼ÿ…úÿÃüÿÃþÿÃÿšÿš ÿšÿš ÿš&ÿì*ÿì2ÿì4ÿì7ÿ…8ÿì9ÿ®:ÿÃ<ÿš‰ÿì”ÿì•ÿì–ÿì—ÿì˜ÿìšÿì›ÿìœÿìÿìžÿìŸÿšÈÿìÎÿìÞÿìàÿìâÿìäÿìÿìÿìÿì$ÿ…&ÿ…,ÿì0ÿì2ÿì4ÿì6ÿÃ8ÿš:ÿšfÿìmÿìqÿ…¸ÿì»ÿì¼ÿ…úÿÃüÿÃþÿÃÿšÿš ÿš ÿ× ÿ× ÿ×ÿÃÿÃ$ÿì,ÿì7ÿÃ9ÿ×:ÿì;ÿ×<ÿ×=ÿì‚ÿìƒÿì„ÿì…ÿì†ÿì‡ÿìˆÿ׎ÿìÿìÿì‘ÿìŸÿ×ÂÿìÄÿìÆÿììÿìðÿìòÿì$ÿÃ&ÿÃ6ÿì8ÿ×:ÿ×;ÿì=ÿì?ÿìCÿì_ÿìiÿìqÿêÿì¼ÿÃúÿìüÿìþÿìÿ×(ÿì[ÿ×]ÿì@ÿì[ÿ×]ÿì@ÿìÿÃÿÃ$ÿì,ÿì7ÿÃ9ÿ×:ÿì;ÿ×<ÿ×=ÿì‚ÿìƒÿì„ÿì…ÿì†ÿì‡ÿìˆÿ׎ÿìÿìÿì‘ÿìŸÿ×ÂÿìÄÿìÆÿììÿìðÿìòÿì$ÿÃ&ÿÃ6ÿì8ÿ×:ÿ×;ÿì=ÿì?ÿìCÿì_ÿìiÿìqÿêÿì¼ÿÃúÿìüÿìþÿìÿ×(ÿì[ÿ×]ÿì@ÿì[ÿ×]ÿì@ÿì= == == == =!=! =!=! =")" )"0"6ÿì"7ÿ×"9ÿì":ÿì";ÿ×"<ÿ×"Yÿì"\ÿì"Ÿÿ×"¿ÿì"Áÿì"ÿì" ÿì""ÿì"#ÿì"$ÿ×"&ÿ×"6ÿì"8ÿ×"9ÿì":ÿ×"qÿ×"€ÿì"Šÿì"‘ÿì"”ÿì" ÿì"¼ÿ×"Üÿì"Ýÿì"úÿì"üÿì"þÿì"ÿ×"ÿì")" )#=# =#=# =$R$ R$ÿš$ÿš$")$$ÿ…$&ÿÃ$*ÿÃ$2ÿÃ$4ÿÃ$6ÿì$7$Dÿ…$Fÿ…$Gÿ…$Hÿ…$Jÿš$Pÿ®$Qÿ®$Rÿ…$Sÿ®$Tÿ…$Uÿ®$Vÿ…$Xÿ®$YÿÃ$ZÿÃ$[ÿÃ$\ÿÃ$]ÿÃ$‚ÿ…$ƒÿ…$„ÿ…$…ÿ…$†ÿ…$‡ÿ…$ˆÿq$‰ÿÃ$”ÿÃ$•ÿÃ$–ÿÃ$—ÿÃ$˜ÿÃ$šÿÃ$¢ÿ…$£ÿ…$¤ÿ…$¥ÿ…$¦ÿ…$§ÿ…$¨ÿ…$©ÿ…$ªÿ…$«ÿ…$¬ÿ…$­ÿ…$³ÿ®$´ÿ…$µÿ…$¶ÿ…$·ÿ…$¸ÿ…$ºÿ…$»ÿ®$¼ÿ®$½ÿ®$¾ÿ®$¿ÿÃ$ÁÿÃ$Âÿ…$Ãÿ…$Äÿ…$Åÿ…$Æÿ…$Çÿ…$ÈÿÃ$Éÿ…$Ëÿ…$Íÿ…$ÎÿÃ$Ïÿ…$Õÿ…$×ÿ…$Ùÿ…$Ûÿ…$Ýÿ…$ÞÿÃ$àÿÃ$âÿÃ$äÿÃ$ÿ®$ÿ®$ ÿ®$ÿÃ$ÿ…$ÿ…$ÿÃ$ÿ…$ÿÃ$ÿ…$ÿì$ÿ…$ÿ…$ ÿì$!ÿ…$"ÿì$#ÿ…$$$&$7ÿÃ$9ÿÃ$@ÿÃ$Cÿ…$Dÿ…$Jÿ…$_ÿ…$fÿÃ$iÿ…$mÿÃ$q$yÿ…${ÿ®$~ÿ…$€ÿÃ$‚ÿ…$„ÿ®$ŠÿÃ$Œÿ…$Žÿ…$ÿ…$‘ÿÃ$“ÿ…$”ÿÃ$–ÿ…$™ÿ…$›ÿ…$ ÿì$ªÿ…$¸ÿÃ$»ÿÃ$¼$Êÿ…$Ïÿ…$Øÿ…$Ûÿ…$ÜÿÃ$ÝÿÃ$Þÿ…$êÿ…$íÿ…$îÿ…$ûÿÃ$ýÿÃ$ÿÿÃ$ÿÃ$R$ R$(ÿ…&R& R&ÿš&ÿš&")&$ÿ…&&ÿÃ&*ÿÃ&2ÿÃ&4ÿÃ&6ÿì&7&Dÿ…&Fÿ…&Gÿ…&Hÿ…&Jÿš&Pÿ®&Qÿ®&Rÿ…&Sÿ®&Tÿ…&Uÿ®&Vÿ…&Xÿ®&YÿÃ&ZÿÃ&[ÿÃ&\ÿÃ&]ÿÃ&‚ÿ…&ƒÿ…&„ÿ…&…ÿ…&†ÿ…&‡ÿ…&ˆÿq&‰ÿÃ&”ÿÃ&•ÿÃ&–ÿÃ&—ÿÃ&˜ÿÃ&šÿÃ&¢ÿ…&£ÿ…&¤ÿ…&¥ÿ…&¦ÿ…&§ÿ…&¨ÿ…&©ÿ…&ªÿ…&«ÿ…&¬ÿ…&­ÿ…&³ÿ®&´ÿ…&µÿ…&¶ÿ…&·ÿ…&¸ÿ…&ºÿ…&»ÿ®&¼ÿ®&½ÿ®&¾ÿ®&¿ÿÃ&ÁÿÃ&Âÿ…&Ãÿ…&Äÿ…&Åÿ…&Æÿ…&Çÿ…&ÈÿÃ&Éÿ…&Ëÿ…&Íÿ…&ÎÿÃ&Ïÿ…&Õÿ…&×ÿ…&Ùÿ…&Ûÿ…&Ýÿ…&ÞÿÃ&àÿÃ&âÿÃ&äÿÃ&ÿ®&ÿ®& ÿ®&ÿÃ&ÿ…&ÿ…&ÿÃ&ÿ…&ÿÃ&ÿ…&ÿì&ÿ…&ÿ…& ÿì&!ÿ…&"ÿì&#ÿ…&$&&&7ÿÃ&9ÿÃ&@ÿÃ&Cÿ…&Dÿ…&Jÿ…&_ÿ…&fÿÃ&iÿ…&mÿÃ&q&yÿ…&{ÿ®&~ÿ…&€ÿÃ&‚ÿ…&„ÿ®&ŠÿÃ&Œÿ…&Žÿ…&ÿ…&‘ÿÃ&“ÿ…&”ÿÃ&–ÿ…&™ÿ…&›ÿ…& ÿì&ªÿ…&¸ÿÃ&»ÿÃ&¼&Êÿ…&Ïÿ…&Øÿ…&Ûÿ…&ÜÿÃ&ÝÿÃ&Þÿ…&êÿ…&íÿ…&îÿ…&ûÿÃ&ýÿÃ&ÿÿÃ&ÿÃ&R& R&(ÿ…'f' f' '"¤'@¤'ER'KR'L='M='NR'OR'`¸'®ö'°Í'±Í'çR'é¤'ë 'íÍ'ïö'ñ)'õ='÷á'ùR'üR'þR'R'R'R'' ,ÿ×,ÿ×,$ÿì,‚ÿì,ƒÿì,„ÿì,…ÿì,†ÿì,‡ÿì,ˆÿ×,Âÿì,Äÿì,Æÿì,Cÿì,_ÿì,iÿì,ªÿì,(ÿì0ÿ×0ÿ×0$ÿì0‚ÿì0ƒÿì0„ÿì0…ÿì0†ÿì0‡ÿì0ˆÿ×0Âÿì0Äÿì0Æÿì0Cÿì0_ÿì0iÿì0ªÿì0(ÿì2ÿ×2ÿ×2$ÿì2‚ÿì2ƒÿì2„ÿì2…ÿì2†ÿì2‡ÿì2ˆÿ×2Âÿì2Äÿì2Æÿì2Cÿì2_ÿì2iÿì2ªÿì2(ÿì4ÿ×4ÿ×4$ÿì4‚ÿì4ƒÿì4„ÿì4…ÿì4†ÿì4‡ÿì4ˆÿ×4Âÿì4Äÿì4Æÿì4Cÿì4_ÿì4iÿì4ªÿì4(ÿì6f6 f6ÿ®6ÿ®6$ÿ×6&ÿì6*ÿì62ÿì64ÿì6Dÿ×6Fÿ×6Gÿ×6Hÿ×6Jÿì6Pÿì6Qÿì6Rÿ×6Sÿì6Tÿ×6Uÿì6Vÿ×6Xÿì6]ÿì6‚ÿ×6ƒÿ×6„ÿ×6…ÿ×6†ÿ×6‡ÿ×6ˆÿ®6‰ÿì6”ÿì6•ÿì6–ÿì6—ÿì6˜ÿì6šÿì6¢ÿ×6£ÿ×6¤ÿ×6¥ÿ×6¦ÿ×6§ÿ×6¨ÿ×6©ÿ×6ªÿ×6«ÿ×6¬ÿ×6­ÿ×6³ÿì6´ÿ×6µÿ×6¶ÿ×6·ÿ×6¸ÿ×6ºÿ×6»ÿì6¼ÿì6½ÿì6¾ÿì6Âÿ×6Ãÿ×6Äÿ×6Åÿ×6Æÿ×6Çÿ×6Èÿì6Éÿ×6Ëÿ×6Íÿ×6Îÿì6Ïÿ×6Õÿ×6×ÿ×6Ùÿ×6Ûÿ×6Ýÿ×6Þÿì6àÿì6âÿì6äÿì6ÿì6ÿì6 ÿì6ÿì6ÿ×6ÿ×6ÿì6ÿ×6ÿì6ÿ×6ÿ×6ÿ×6!ÿ×6#ÿ×6@ÿì6Cÿ×6Dÿ×6Jÿ×6_ÿ×6fÿì6iÿ×6mÿì6yÿ×6{ÿì6~ÿ×6‚ÿ×6„ÿì6Œÿ×6Žÿ×6ÿ×6“ÿ×6–ÿ×6™ÿ×6›ÿ×6ªÿ×6¸ÿì6»ÿì6Êÿ×6Ïÿ×6Øÿ×6Ûÿ×6Þÿ×6êÿ×6íÿ×6îÿ×6f6 f6(ÿ×7R7 R7I7R7 R8R8 R8ÿš8ÿš8")8$ÿš8&ÿ×8*ÿ×82ÿ×84ÿ×86ÿì8Dÿš8Fÿš8Gÿš8Hÿš8Jÿš8PÿÃ8QÿÃ8Rÿš8SÿÃ8Tÿš8UÿÃ8Vÿ®8XÿÃ8[ÿ×8\ÿì8]ÿÃ8‚ÿš8ƒÿš8„ÿš8…ÿš8†ÿš8‡ÿš8ˆÿq8‰ÿ×8”ÿ×8•ÿ×8–ÿ×8—ÿ×8˜ÿ×8šÿ×8¢ÿš8£ÿš8¤ÿš8¥ÿš8¦ÿš8§ÿš8¨ÿš8©ÿš8ªÿš8«ÿš8¬ÿš8­ÿš8³ÿÃ8´ÿš8µÿš8¶ÿš8·ÿš8¸ÿš8ºÿš8»ÿÃ8¼ÿÃ8½ÿÃ8¾ÿÃ8¿ÿì8Áÿì8Âÿš8Ãÿš8Äÿš8Åÿš8Æÿš8Çÿš8Èÿ×8Éÿš8Ëÿš8Íÿš8Îÿ×8Ïÿš8Õÿš8×ÿš8Ùÿš8Ûÿš8Ýÿš8Þÿ×8àÿ×8âÿ×8äÿ×8ÿÃ8ÿÃ8 ÿÃ8ÿ×8ÿš8ÿš8ÿ×8ÿš8ÿ×8ÿš8ÿì8ÿ®8ÿ®8 ÿì8!ÿ®8"ÿì8#ÿ®89ÿì8@ÿÃ8Cÿš8Dÿš8Jÿ®8_ÿš8fÿ×8iÿš8mÿ×8yÿš8{ÿÃ8~ÿš8€ÿì8‚ÿš8„ÿÃ8Šÿì8Œÿš8Žÿš8ÿš8“ÿš8–ÿš8™ÿš8›ÿš8 ÿì8ªÿš8¸ÿ×8»ÿ×8Êÿš8Ïÿš8Øÿš8Ûÿš8Ýÿì8Þÿš8êÿš8íÿš8îÿ®8ÿì8R8 R8(ÿš9=9 =9I9=9 =:R: ÿÃ: R: =: ):ÿš:ÿ\:ÿš:"):$ÿš:&ÿ×:*ÿ×:-ÿ¾:0ÿì:2ÿ×:4ÿ×:6ÿì:7':@=:Dÿš:Fÿš:Gÿš:Hÿš:Iÿå:Jÿš:PÿÃ:QÿÃ:Rÿš:SÿÃ:Tÿš:UÿÃ:Vÿ®:XÿÃ:[ÿ×:\ÿì:]ÿÃ:`=:‚ÿš:ƒÿš:„ÿš:…ÿš:†ÿš:‡ÿš:ˆÿq:‰ÿ×:”ÿ×:•ÿ×:–ÿ×:—ÿ×:˜ÿ×:šÿ×:¢ÿš:£ÿš:¤ÿš:¥ÿš:¦ÿš:§ÿš:¨ÿš:©ÿš:ªÿš:«ÿš:¬ÿš:­ÿš:³ÿÃ:´ÿš:µÿš:¶ÿš:·ÿš:¸ÿš:ºÿš:»ÿÃ:¼ÿÃ:½ÿÃ:¾ÿÃ:¿ÿì:Áÿì:Âÿš:Ãÿš:Äÿš:Åÿš:Æÿš:Çÿš:Èÿ×:Éÿš:Ëÿš:Íÿš:Îÿ×:Ïÿš:Õÿš:×ÿš:Ùÿš:Ûÿš:Ýÿš:Þÿ×:àÿ×:âÿ×:äÿ×:öÿ¾:ÿÃ:ÿÃ: ÿÃ:ÿ×:ÿš:ÿš:ÿ×:ÿš:ÿ×:ÿš:ÿì:ÿ®:ÿ®: ÿì:!ÿ®:"ÿì:#ÿ®:$':&':9ÿì:@ÿÃ:Cÿš:Dÿš:Jÿ®:_ÿš:fÿ×:iÿš:mÿ×:q':yÿš:{ÿÃ:~ÿš:€ÿì:‚ÿš:„ÿÃ:Šÿì:Œÿš:Žÿš:ÿš:“ÿš:–ÿš:™ÿš:›ÿš: ÿì:£ÿ¾:ªÿš:¸ÿ×:»ÿ×:¼':Êÿš:Ïÿš:Øÿš:Ûÿš:Ýÿì:Þÿš:êÿš:íÿš:îÿ®:ÿì:R: R:ÿ×:(ÿš;); );&ÿì;*ÿì;2ÿì;4ÿì;‰ÿì;”ÿì;•ÿì;–ÿì;—ÿì;˜ÿì;šÿì;Èÿì;Îÿì;Þÿì;àÿì;âÿì;äÿì;ÿì;ÿì;ÿ×;fÿì;mÿì;¸ÿì;»ÿì;); )=)= )=&ÿì=*ÿì=2ÿì=4ÿì=‰ÿì=”ÿì=•ÿì=–ÿì=—ÿì=˜ÿì=šÿì=Èÿì=Îÿì=Þÿì=àÿì=âÿì=äÿì=ÿì=ÿì=ÿ×=fÿì=mÿì=¸ÿì=»ÿì=)= )?)? )?ÿÃ?&ÿì?*ÿì?2ÿì?4ÿì?6ÿ×?8ÿì?Fÿì?Gÿì?Hÿì?Rÿì?Tÿì?Yÿ×?Zÿ×?\ÿ×?‰ÿì?”ÿì?•ÿì?–ÿì?—ÿì?˜ÿì?šÿì?›ÿì?œÿì?ÿì?žÿì?¨ÿì?©ÿì?ªÿì?«ÿì?¬ÿì?­ÿì?´ÿì?µÿì?¶ÿì?·ÿì?¸ÿì?ºÿì?¿ÿ×?Áÿ×?Èÿì?Éÿì?Ëÿì?Íÿì?Îÿì?Ïÿì?Õÿì?×ÿì?Ùÿì?Ûÿì?Ýÿì?Þÿì?àÿì?âÿì?äÿì?ÿì?ÿì?ÿì?ÿì?ÿì?ÿ×?ÿì?ÿ×? ÿ×?"ÿ×?,ÿì?0ÿì?2ÿì?4ÿì?7ÿ×?9ÿ×?fÿì?mÿì?yÿì?~ÿì?€ÿ×?‚ÿì?Šÿ×?Œÿì?Žÿì?ÿì?‘ÿ×?“ÿì?”ÿ×?–ÿì?™ÿì?›ÿì? ÿ×?¸ÿì?»ÿì?Ïÿì?Øÿì?Ûÿì?Üÿ×?Ýÿ×?Þÿì?êÿì?íÿì?ûÿ×?ýÿ×?ÿÿ×?ÿ×?)? )@Rÿì@¨ÿì@´ÿì@µÿì@¶ÿì@·ÿì@¸ÿì@ºÿì@ÿì@ÿì@ÿì@ÿì@Œÿì@Žÿì@ÿì@“ÿì@–ÿì@™ÿì@›ÿì@Øÿì@Þÿì@ Cÿ®C ÿ®C&ÿìC*ÿìC2ÿìC4ÿìC7ÿ…C8ÿìC9ÿÃC:ÿ×C<ÿšC‰ÿìC”ÿìC•ÿìC–ÿìC—ÿìC˜ÿìCšÿìC›ÿìCœÿìCÿìCžÿìCŸÿšCÈÿìCÎÿìCÞÿìCàÿìCâÿìCäÿìCÿìCÿìCÿ×C$ÿ…C&ÿ…C,ÿìC0ÿìC2ÿìC4ÿìC6ÿ×C8ÿšC:ÿšCfÿìCmÿìCqÿ…C¸ÿìC»ÿìC¼ÿ…Cúÿ×Cüÿ×Cþÿ×CÿšCÿ®C ÿ®D ÿ×J=J =J=J =Vb)VfÿìVi)VmÿìVqÿ…VrÿšVsÿ×Vuÿ×VxÿšVˆ)V‘ÿÃZfÿìZmÿìZsÿì[_ÿì[dÿì[gÿì[lÿì[pÿì[qÿÃ[rÿ×[tÿ×[wÿì[xÿ×[ˆÿì\ÿÃ\mÿÃ\_ÿš\bÿÃ\fÿ×\iÿÃ\sÿ×\vÿ×\yÿš\zÿš\{ÿÃ\}ÿÃ\~ÿš\ÿ®\‚ÿš\ƒÿ×\„ÿÃ\…ÿ×\†ÿÃ\‡ÿÃ\‰ÿÃ\Œÿš\Žÿš\ÿš\ÿš\’ÿÃ\“ÿ®\”ÿ×\•ÿÃ\–ÿ®\˜ÿ×\™ÿš\šÿÃ\›ÿ®\ÿÃ\ÿÃ]qÿÃ]rÿÃ]xÿÃ^yÿ×^}ÿ×^~ÿ×^€ÿ×^ÿ×^ƒÿì^…ÿ×^†ÿ×^ˆ)^Šÿ×^‹ÿì^Œÿ×^ÿì^ÿì^ÿ×^‘ÿì^’ÿ×^“ÿ×^”ÿì^•ÿ×^–ÿì^˜ÿ×^™ÿ×^šÿ×^›ÿ×_ÿ®_ ÿ®_&ÿì_*ÿì_2ÿì_4ÿì_7ÿ…_8ÿì_9ÿÃ_:ÿ×_<ÿš_‰ÿì_”ÿì_•ÿì_–ÿì_—ÿì_˜ÿì_šÿì_›ÿì_œÿì_ÿì_žÿì_Ÿÿš_Èÿì_Îÿì_Þÿì_àÿì_âÿì_äÿì_ÿì_ÿì_ÿ×_$ÿ…_&ÿ…_,ÿì_0ÿì_2ÿì_4ÿì_6ÿ×_8ÿš_:ÿš_fÿì_mÿì_qÿ…_rÿš_sÿ×_uÿÃ_xÿš_‘ÿÃ_úÿ×_üÿ×_þÿ×_ÿš_ÿ®_ ÿ®`7ÿì`9ÿì`;ÿì`<ÿì`Ÿÿì`$ÿì`&ÿì`8ÿì`:ÿì`gÿì`lÿ×`pÿì`qÿì`rÿì`tÿì`wÿì`xÿì`‘ÿì`”ÿì`ÿìaÿša ÿšaÿšaÿšaÿša&ÿìa*ÿìa2ÿìa4ÿìa7ÿ…a8ÿìa9ÿ®a:ÿÃa<ÿšamÿša}ÿ®a‰ÿìa”ÿìa•ÿìa–ÿìa—ÿìa˜ÿìašÿìa›ÿìaœÿìaÿìažÿìaŸÿšaÈÿìaÎÿìaÞÿìaàÿìaâÿìaäÿìaÿìaÿìaÿìa$ÿ…a&ÿ…a,ÿìa0ÿìa2ÿìa4ÿìa6ÿÃa8ÿša:ÿša_ÿ…abÿšafÿìaiÿšamÿìasÿ®avÿ×ayÿ…azÿ…a{ÿ®a~ÿ…a€ÿÃaÿša‚ÿ…a„ÿÃa†ÿÃa‡ÿÃa‰ÿÃaŠÿÃaŒÿ…aÿÃaŽÿšaÿ…aÿ…a‘ÿÃa’ÿÃa“ÿ…a”ÿÃa•ÿÃa–ÿša—)a˜ÿÃa™ÿ…ašÿÃa›ÿšaúÿÃaüÿÃaþÿÃaÿšaÿšaÿšaÿša ÿšbRb Rbÿšbÿšb")b$ÿÃb&ÿ×b*ÿ×b2ÿ×b4ÿ×bDÿÃbFÿÃbGÿÃbHÿÃbJÿÃbPÿ×bQÿ×bRÿÃbSÿ×bTÿÃbUÿ×bVÿ×bXÿ×b‚ÿÃbƒÿÃb„ÿÃb…ÿÃb†ÿÃb‡ÿÃbˆÿ…b‰ÿ×b”ÿ×b•ÿ×b–ÿ×b—ÿ×b˜ÿ×bšÿ×b¢ÿÃb£ÿÃb¤ÿÃb¥ÿÃb¦ÿÃb§ÿÃb¨ÿÃb©ÿÃbªÿÃb«ÿÃb¬ÿÃb­ÿÃb³ÿ×b´ÿÃbµÿÃb¶ÿÃb·ÿÃb¸ÿÃbºÿÃb»ÿ×b¼ÿ×b½ÿ×b¾ÿ×bÂÿÃbÃÿÃbÄÿÃbÅÿÃbÆÿÃbÇÿÃbÈÿ×bÉÿÃbËÿÃbÍÿÃbÎÿ×bÏÿÃbÕÿÃb×ÿÃbÙÿÃbÛÿÃbÝÿÃbÞÿ×bàÿ×bâÿ×bäÿ×bÿ×bÿ×b ÿ×bÿ×bÿÃbÿÃbÿ×bÿÃbÿ×bÿÃbÿ×bÿ×b!ÿ×b#ÿ×bCÿÃbDÿÃbJÿ×bbbfÿ×bmÿ×bqÿšbrÿÃbsÿ×buÿ×bxÿÃbyÿÃbˆ)bÿ×bRb Rb(ÿÃdfÿìdmÿìdsÿìd’ÿ×d•ÿ×d—)d˜ÿ×dšÿ×fÿÃfÿÃf$ÿìf,ÿìf7ÿÃf9ÿ×f:ÿìf;ÿ×f<ÿ×f=ÿìf‚ÿìfƒÿìf„ÿìf…ÿìf†ÿìf‡ÿìfˆÿ×fŽÿìfÿìfÿìf‘ÿìfŸÿ×fÂÿìfÄÿìfÆÿìfìÿìfðÿìfòÿìf$ÿÃf&ÿÃf6ÿìf8ÿ×f:ÿ×f;ÿìf=ÿìf?ÿìfCÿìf_ÿìfbÿ×fgÿìfiÿìflÿìfpÿìfqÿÃfrÿ×ftÿ×fxÿ×fúÿìfüÿìfþÿìfÿ×f(ÿìgfÿìgmÿìgsÿìgÿìgˆ)h)h )h&ÿ×h*ÿ×h2ÿ×h4ÿ×h‰ÿ×h”ÿ×h•ÿ×h–ÿ×h—ÿ×h˜ÿ×hšÿ×hÈÿ×hÎÿ×hÞÿ×hàÿ×hâÿ×häÿ×hÿ×hÿ×hÿ×hfÿ×hmÿ×hsÿ®h‘ÿ×h—)h)h )iÿ®i ÿ®i")i$ÿÃi&ÿìi*ÿìi2ÿìi4ÿìi7ÿ…i8ÿìi9ÿÃi:ÿ×i<ÿšiDÿÃiFÿÃiGÿÃiHÿÃiJÿÃiPÿ×iQÿ×iRÿÃiSÿ×iTÿÃiUÿ×iVÿ×iXÿ×i‚ÿÃiƒÿÃi„ÿÃi…ÿÃi†ÿÃi‡ÿÃiˆÿ…i‰ÿìi”ÿìi•ÿìi–ÿìi—ÿìi˜ÿìišÿìi›ÿìiœÿìiÿìižÿìiŸÿši¢ÿÃi£ÿÃi¤ÿÃi¥ÿÃi¦ÿÃi§ÿÃi¨ÿÃi©ÿÃiªÿÃi«ÿÃi¬ÿÃi­ÿÃi³ÿ×i´ÿÃiµÿÃi¶ÿÃi·ÿÃi¸ÿÃiºÿÃi»ÿ×i¼ÿ×i½ÿ×i¾ÿ×iÂÿÃiÃÿÃiÄÿÃiÅÿÃiÆÿÃiÇÿÃiÈÿìiÉÿÃiËÿÃiÍÿÃiÎÿìiÏÿÃiÕÿÃi×ÿÃiÙÿÃiÛÿÃiÝÿÃiÞÿìiàÿìiâÿìiäÿìiÿ×iÿ×i ÿ×iÿìiÿÃiÿÃiÿìiÿÃiÿ×iÿÃiÿ×iÿ×i!ÿ×i#ÿ×i$ÿ…i&ÿ…i,ÿìi0ÿìi2ÿìi4ÿìi6ÿ×i8ÿši:ÿšiCÿÃiDÿÃiJÿ×ifÿìimÿìiqÿ…irÿšisÿ×iuÿÃixÿši‘ÿ×iúÿ×iüÿ×iþÿ×iÿšiÿ®i ÿ®i(ÿÃlfÿìlmÿìlˆ)mÿÃmÿÃm$ÿìm,ÿìm7ÿÃm9ÿ×m:ÿìm;ÿ×m<ÿ×m=ÿìm‚ÿìmƒÿìm„ÿìm…ÿìm†ÿìm‡ÿìmˆÿ×mŽÿìmÿìmÿìm‘ÿìmŸÿ×mÂÿìmÄÿìmÆÿìmìÿìmðÿìmòÿìm$ÿÃm&ÿÃm6ÿìm8ÿ×m:ÿ×m;ÿìm=ÿìm?ÿìmCÿìm_ÿìmgÿìmiÿìmlÿìmpÿìmqÿÃmrÿ×mtÿ×mwÿìmxÿ×múÿìmüÿìmþÿìmÿ×m(ÿìoÿ3oÿ3o$ÿ®o&ÿìo;ÿìo<ÿìo=ÿ×o‚ÿ®oƒÿ®o„ÿ®o…ÿ®o†ÿ®o‡ÿ®oˆÿqo‰ÿìoŸÿìoÂÿ®oÄÿ®oÆÿ®oÈÿìoÎÿìo8ÿìo:ÿìo;ÿ×o=ÿ×o?ÿ×oCÿ®o_ÿ®obÿ®odÿìoiÿ®otÿìoxÿìoÿ×oˆÿ×oŽÿ×oÿìo(ÿ®p)p )p&ÿ×p*ÿ×p2ÿ×p4ÿ×p‰ÿ×p”ÿ×p•ÿ×p–ÿ×p—ÿ×p˜ÿ×pšÿ×pÈÿ×pÎÿ×pÞÿ×pàÿ×pâÿ×päÿ×pÿ×pÿ×pÿ×pfÿ×pmÿ×psÿ×pˆ)p)p )qRq Rqÿšqÿšqÿšq")q$ÿ…q&ÿÃq*ÿÃq2ÿÃq4ÿÃq6ÿìq7qDÿ…qFÿ…qGÿ…qHÿ…qJÿšqPÿ®qQÿ®qRÿ…qSÿ®qTÿ…qUÿ®qVÿ…qXÿ®qYÿÃqZÿÃq[ÿÃq\ÿÃq]ÿÃqmÿšq}ÿ×q‚ÿ…qƒÿ…q„ÿ…q…ÿ…q†ÿ…q‡ÿ…qˆÿqq‰ÿÃq”ÿÃq•ÿÃq–ÿÃq—ÿÃq˜ÿÃqšÿÃq¢ÿ…q£ÿ…q¤ÿ…q¥ÿ…q¦ÿ…q§ÿ…q¨ÿ…q©ÿ…qªÿ…q«ÿ…q¬ÿ…q­ÿ…q³ÿ®q´ÿ…qµÿ…q¶ÿ…q·ÿ…q¸ÿ…qºÿ…q»ÿ®q¼ÿ®q½ÿ®q¾ÿ®q¿ÿÃqÁÿÃqÂÿ…qÃÿ…qÄÿ…qÅÿ…qÆÿ…qÇÿ…qÈÿÃqÉÿ…qËÿ…qÍÿ…qÎÿÃqÏÿ…qÕÿ…q×ÿ…qÙÿ…qÛÿ…qÝÿ…qÞÿÃqàÿÃqâÿÃqäÿÃqÿ®qÿ®q ÿ®qÿÃqÿ…qÿ…qÿÃqÿ…qÿÃqÿ…qÿìqÿ…qÿ…q ÿìq!ÿ…q"ÿìq#ÿ…q$q&q7ÿÃq9ÿÃq@ÿÃqCÿ…qDÿ…qJÿ…q_ÿ…qbÿšqfÿÃqiÿ…qmÿÃqqqsÿÃqvÿÃqyÿ…qzÿ…q{ÿ®q}ÿ®q~ÿ…q€ÿÃqÿ®q‚ÿ…q„ÿ®q†ÿ®q‡ÿ®qˆq‰ÿ®qŠÿÃqŒÿ…qŽÿ…qÿ…qÿ…q‘ÿÃq’ÿ®q“ÿ…q”ÿÃq•ÿ®q–ÿ…q—=q˜ÿ®q™ÿ…qšÿ®q›ÿ…qûÿÃqýÿÃqÿÿÃqÿÃqÿšqÿšqRq Rq(ÿ…rÿšrÿÃrÿšrmÿÃr_ÿšrbÿÃrfÿ×riÿšrmÿ×rsÿÃrvÿ×ryÿšrzÿ®r{ÿÃr|ÿìr}ÿ×r~ÿšrÿ×rÿšr‚ÿ®rƒÿ×r„ÿÃr…ÿ×r†ÿÃr‡ÿÃrˆr‰ÿÃr‹ÿìrŒÿšrŽÿšrÿšrÿšr‘ÿìr’ÿÃr“ÿšr”ÿ×r•ÿÃr–ÿ®r—)r˜ÿÃr™ÿšršÿÃr›ÿ®rÿÃrÿÃs_ÿ×sbÿ×sgÿìsiÿ×sqÿÃsrÿÃstÿÃswÿ×sxÿÃsˆÿ×tfÿ×tmÿ×tsÿÃtyÿìt|ÿìt}ÿìt~ÿìtÿìt…ÿìt†ÿìtˆtŒÿìtÿìtÿìt‘ÿ×t’ÿ×t“ÿìt•ÿ×t–ÿìt˜ÿ×t™ÿìtšÿ×t›ÿìuÿ®uÿ®u_ÿÃubÿ×uiÿÃuÿ×uŽÿ×uÿìu“ÿìu–ÿìu™ÿìu›ÿìvqÿÃvrÿ×vxÿ×w)w )w&ÿìw*ÿìw2ÿìw4ÿìw‰ÿìw”ÿìw•ÿìw–ÿìw—ÿìw˜ÿìwšÿìwÈÿìwÎÿìwÞÿìwàÿìwâÿìwäÿìwÿìwÿìwÿìwfÿìwmÿìwsÿ×w€ÿìwÿìwˆw‘ÿìw)w )xRx ÿÃx Rx =x )xÿšxÿ\xÿšx")x$ÿšx&ÿ×x*ÿ×x-ÿ¾x0ÿìx2ÿ×x4ÿ×x6ÿìx7'x@=xDÿšxFÿšxGÿšxHÿšxIÿåxJÿšxPÿÃxQÿÃxRÿšxSÿÃxTÿšxUÿÃxVÿ®xXÿÃx[ÿ×x\ÿìx]ÿÃx`=xmÿÃx}ÿ×x‚ÿšxƒÿšx„ÿšx…ÿšx†ÿšx‡ÿšxˆÿqx‰ÿ×x”ÿ×x•ÿ×x–ÿ×x—ÿ×x˜ÿ×xšÿ×x¢ÿšx£ÿšx¤ÿšx¥ÿšx¦ÿšx§ÿšx¨ÿšx©ÿšxªÿšx«ÿšx¬ÿšx­ÿšx³ÿÃx´ÿšxµÿšx¶ÿšx·ÿšx¸ÿšxºÿšx»ÿÃx¼ÿÃx½ÿÃx¾ÿÃx¿ÿìxÁÿìxÂÿšxÃÿšxÄÿšxÅÿšxÆÿšxÇÿšxÈÿ×xÉÿšxËÿšxÍÿšxÎÿ×xÏÿšxÕÿšx×ÿšxÙÿšxÛÿšxÝÿšxÞÿ×xàÿ×xâÿ×xäÿ×xöÿ¾xÿÃxÿÃx ÿÃxÿ×xÿšxÿšxÿ×xÿšxÿ×xÿšxÿìxÿ®xÿ®x ÿìx!ÿ®x"ÿìx#ÿ®x$'x&'x9ÿìx@ÿÃxCÿšxDÿšxJÿ®x_ÿšxbÿÃxfÿ×xiÿšxmÿ×xsÿÃxvÿ×xyÿšxzÿ®x{ÿÃx|ÿìx}ÿÃx~ÿšxÿ×x€ÿìxÿšx‚ÿšxƒÿ×x„ÿÃx†ÿÃx‡ÿÃx‰ÿÃxŠÿìx‹ÿìxŒÿšxÿ×xŽÿšxÿšxÿšx‘ÿ×x’ÿÃx“ÿšx”ÿ×x•ÿÃx–ÿšx—)x˜ÿÃx™ÿšxšÿÃx›ÿšxÿìxRx Rxÿ×x(ÿšyˆ)zyÿ×z~ÿìzÿìzŒÿìzÿìz“ÿì{ ÿ×|yÿì||ÿì|}ÿì|€ÿì|ÿì|…ÿì|†ÿì|ˆ)|Šÿ×|Œÿì|ÿì|ÿì|ÿì|‘ÿ×|’ÿì|•ÿì|—ÿì|˜ÿì|™ÿì|šÿì~ˆ)”ÿì€=€ =€I€ÿì€)€Žÿ쀑€”€–€=€ =‘ÿì”ÿׂ=‚ =‚yÿׂÿ삌ÿׂÿì‚ÿׂ“ÿׂ™ÿׂ=‚ =ƒyÿ®ƒzÿ׃}ÿ׃~ÿÀÿ׃ÿÂÿ׃ƒÿ׃„ÿ׃…ÿ׃†ÿ׃‡ÿ새)ƒŠÿ׃‹ÿ׃ŒÿÃÿÃÿÃÿÑÿÃ’ÿÓÿÕÿÖÿØÿÙÿÚÿÛÿÄ ÿ׆R† R†yÿ׆}ÿì†~ÿ솀ÿ׆…ÿ׆†ÿ솈)†Šÿ׆ÿ׆‘ÿ׆“ÿ׆—ÿì†R† R‡)‡ )‡yÿׇ~ÿׇÿׇ‚ÿ쇌ÿì‡)‡ )ˆ=ˆ =ˆIˆ}ÿ숀ÿ숅ÿ׈ˆ=ˆŠÿ׈ÿ׈‘ÿÈ”ÿ׈=ˆ =Š=Š =ŠIŠŠŽÿìŠ=Š =‹=‹~ÿ싈)Œ[ÿ׌]ÿìŒ@ÿ쌑ÿ쌔ÿ×~ÿ쀊)‘Ž[ÿ׎]ÿìŽ@ÿ쎑ÿ쎔ÿ×[ÿ×]ÿì@ÿ쀊‘)‘R‘ R‘I‘})‘€‘ÿ쑊)‘Œÿב‘ÿבÿì‘‘‘R‘ R“[ÿד]ÿì“@ÿì“”ÿì”R” R”I”yÿ×”zÿ×”~ÿ×”€”ÿ×”‚ÿ×”…ÿ씌ÿ×”ÿ×”ÿ×”’ÿ씓ÿì””)”•ÿ×”–ÿ×”™ÿì”R” R•[ÿו]ÿì•@ÿì–[ÿ×–]ÿì–@ÿì–€—yÿì—}ÿì—~ÿ×—€ÿ×—ÿì—…ÿ×—ˆ)—Œÿì—ÿ×—ÿì—ÿì—‘ÿ×—’ÿì—”ÿì—•ÿ×—˜ÿì—™ÿì—šÿì—›ÿì™[ÿ×™]ÿì™@ÿì›[ÿ×›]ÿì›@ÿìœ)œ )œÿל&ÿìœ-=œ2ÿìœ4ÿ위ÿ윉ÿ윊ÿìœÿ윔ÿ윕ÿ윖ÿ윗ÿ윘ÿ윚ÿìœÈÿìœÎÿìœö=œÿìœÿ윸ÿ윻ÿ윾ÿìœ)œ )ÿà ÿÃÿ…¦ÿ…°ÿ×¼ÿ…½ÿ׿ÿìÁÿÃÄÿ…ÜÿÃÝÿìßÿìáÿÃäÿ®ÿà ÿÞRž Ržÿ\ž&ÿìž*ÿìž2ÿìž4ÿìž7ÿ…ž8ÿìž9ÿ®ž:ÿÞ<ÿšž‰ÿìž”ÿìž•ÿìž–ÿìž—ÿ잘ÿìžšÿìž›ÿìžœÿìžÿìžžÿ잟ÿšžÈÿìžÎÿìžÞÿìžàÿìžâÿìžäÿìžÿìžÿìžÿìž$ÿ…ž&ÿ…ž,ÿìž0ÿìž2ÿìž4ÿìž6ÿÞ8ÿšž:ÿšžŸÿ잤ÿšžªÿ…ž®ÿ…žµÿ…ž¸ÿמ»ÿìž¾ÿÞÊÿ…žËÿמÌÿÞÍÿÞÎÿ\žÏÿ…žÐÿÞÑÿÞÒÿÞÓÿÞÔÿÞÕÿ\žÖÿÞ×ÿÞØÿ…žÙÿÞÚÿÞÛÿ…žÜÿÞÝÿÞÞÿ…žßÿÞàÿÞáÿÞâÿÞãÿÞäÿÞåÿÞæÿÞçÿÞèÿÞéÿšžêÿ…žìÿÞíÿ…žîÿ®žð=žòÿ\žóÿÞõÿÞ÷ÿÞùÿÞúÿÞüÿÞþÿÞÿšžRž RŸ)Ÿ )ŸŸÿן¸ÿ쟻ÿן¾ÿìŸÞÿןáÿן)Ÿ )  ÿì ÜÿסŸÿì¡ÜÿסÝÿì¡áÿסäÿì¢)¢ )¢&ÿì¢*ÿì¢2ÿì¢4ÿ좉ÿ좔ÿ좕ÿ좖ÿ좗ÿ좘ÿ좚ÿì¢Èÿì¢Îÿì¢Þÿì¢àÿì¢âÿì¢äÿì¢ÿì¢ÿì¢ÿ좟ÿ좸ÿ좻ÿì¢ )¤ÿš¤ ÿš¤¦ÿ…¤¨ÿפ°ÿפµÿ줼ÿ…¤½ÿ줿ÿì¤Áÿ®¤Äÿ…¤Üÿפáÿפäÿäÿš¤ ÿš¥ÿš¥ ÿš¥ÿ…¥¦ÿ…¥¨ÿ×¥°ÿ쥼ÿ…¥½ÿ×¥Áÿ®¥Äÿ…¥Üÿ×¥ßÿì¥áÿì¥äÿ×¥ÿš¥ ÿš¦ÿš¦¦ÿš¦Äÿ…¦ÜÿצÝÿì¦áÿצäÿæöÿì§)§ )§&ÿ×§*ÿ×§2ÿ×§4ÿ×§‰ÿ×§”ÿ×§•ÿ×§–ÿ×§—ÿ×§˜ÿ×§šÿ×§Èÿ×§Îÿ×§Þÿ×§àÿ×§âÿ×§äÿ×§ÿ×§ÿ×§ÿ×§Ÿÿ×§¤)§µ)§¸ÿ×§»ÿ×§¾ÿ®§Ëÿì§Î§Ïÿ×§Øÿ×§Ûÿ×§Üÿ×§Ýÿ×§Þÿ×§áÿçäÿ×§êÿ×§íÿ×§)§ )¨R¨ R¨¤ÿš¨ªÿ…¨®ÿq¨µÿš¨»ÿר¼)¨¾ÿרĨÉÿì¨Êÿ®¨ÌÿרÍÿרÎÿ\¨Ïÿ®¨ÑÿרÒÿרÓÿרÔÿרÕÿ\¨Öÿר×ÿרØÿ®¨ÙÿרÚÿרÛÿ®¨Þÿ®¨àÿרáÿרâÿרãÿרåÿרæÿרèÿרéÿרêÿרìÿרíÿ®¨îÿרðR¨òÿq¨óÿרõÿר÷ÿרùÿרR¨ Rªÿ®ª ÿ®ª&ÿìª*ÿìª2ÿìª4ÿìª7ÿ…ª8ÿìª9ÿê:ÿת<ÿšª‰ÿ쪔ÿ쪕ÿ쪖ÿ쪗ÿ쪘ÿ쪚ÿ쪛ÿ쪜ÿìªÿ쪞ÿ쪟ÿšªÈÿìªÎÿìªÞÿìªàÿìªâÿìªäÿìªÿìªÿìªÿת$ÿ…ª&ÿ…ª,ÿìª0ÿìª2ÿìª4ÿìª6ÿת8ÿšª:ÿšªÿšªŸÿ쪤=ª¦ÿ…ª®)ªµ)ª¸ÿ쪻ÿ쪼ÿ…ª¾ÿתÁÿ®ªÄÿšªÕ)ªÜÿתáÿêäÿêç)ªò)ªúÿתüÿתþÿתÿšªÿ®ª ÿ®«ÿ׫¼ÿ׫½ÿ׫¿ÿì«ÁÿëÄÿ׫Ðÿì«Üÿ׫áÿ׫äÿ׬7ÿì¬9ÿì¬;ÿì¬<ÿ쬟ÿì¬$ÿì¬&ÿì¬8ÿì¬:ÿ쬰ÿ쬼ÿ쬽ÿ쬿ÿì¬ÿì­R­ R­ÿ\­Ÿÿì­¤ÿš­ªÿ…­®ÿ…­µÿ…­¸ÿ×­¾ÿíÊÿ…­ÌÿíÍÿíÎÿ\­Ïÿ…­ÐÿíÑÿíÒÿíÓÿíÔÿíÕÿ\­Öÿí×ÿíØÿ…­ÙÿíÚÿíÛÿ…­ÜÿíÝÿíÞÿ…­ßÿíàÿíáÿíâÿíãÿíäÿíåÿíæÿíçÿíèÿíéÿš­êÿ…­ìÿííÿ…­îÿ®­ð=­òÿ\­óÿíõÿí÷ÿíùÿíR­ R®ÿ×®£ö®¤)®¦ÿ×®ª®®)®µ)®¸ÿì®»ÿ쮼ÿ×®¾ÿì®Áÿ×®Äÿ×®Î)®Õ)®áÿ×®ç)®ñf®ò)°=° =°ÿ×°Ÿÿ×°¤)°µ)°¸ÿ×°»ÿ×°¾ÿðËÿ×°Õ)°Üÿ×°áÿ®°ò)°=° =±)± )±±ÿì±µÿ×±¼ÿ×±½ÿì±¾ÿ챿ÿ×±Áÿì±Äÿì±Çÿì±)± )´)´ )´ÿ×´&ÿ×´*ÿ×´2ÿ×´4ÿ×´‰ÿ×´”ÿ×´•ÿ×´–ÿ×´—ÿ×´˜ÿ×´šÿ×´Èÿ×´Îÿ×´Þÿ×´àÿ×´âÿ×´äÿ×´ÿ×´ÿ×´ÿ×´Ÿÿ×´¤=´µ)´¸ÿ×´»ÿ×´¾ÿ®´Ëÿ×´Õ)´áÿ®´äÿ×´ò)´)´ )¸ÿøÿø$ÿì¸,ÿì¸7ÿø9ÿ׸:ÿì¸;ÿ׸<ÿ׸=ÿ츂ÿ츃ÿ츄ÿ츅ÿ츆ÿ츇ÿ츈ÿ׸Žÿì¸ÿì¸ÿ츑ÿ츟ÿ׸Âÿì¸Äÿì¸Æÿì¸ìÿì¸ðÿì¸òÿì¸$ÿø&ÿø6ÿì¸8ÿ׸:ÿ׸;ÿì¸=ÿì¸?ÿì¸Cÿì¸ÿ׸¤ÿ׸¦ÿ׸ªÿ츮ÿ츰ÿ׸¼ÿø¿ÿì¸Äÿ׸úÿì¸üÿì¸þÿì¸ÿ׸(ÿìº=º =ºÿ3ºÿ3º$ÿ®º&ÿìº;ÿìº<ÿìº=ÿ׺‚ÿ®ºƒÿ®º„ÿ®º…ÿ®º†ÿ®º‡ÿ®ºˆÿqº‰ÿ캟ÿìºÂÿ®ºÄÿ®ºÆÿ®ºÈÿìºÎÿìº8ÿìº:ÿìº;ÿ׺=ÿ׺?ÿ׺Cÿ®º¤ÿ®ºªÿ®º®ÿšºµÿšº»ÿìºÎÿšºÕÿ®ºòÿ®ºÿìº=º =º(ÿ®»)» )» )»&ÿ×»*ÿ×»2ÿ×»4ÿ×»@)»`)»‰ÿ×»”ÿ×»•ÿ×»–ÿ×»—ÿ×»˜ÿ×»šÿ×»Èÿ×»Îÿ×»Þÿ×»àÿ×»âÿ×»äÿ×»ÿ×»ÿ×»Ÿÿ×»¸ÿ×»»ÿ×»¾ÿûáÿû)» )¼R¼ R¼ÿš¼ÿš¼ÿš¼")¼$ÿ…¼&ÿü*ÿü2ÿü4ÿü6ÿì¼7¼Dÿ…¼Fÿ…¼Gÿ…¼Hÿ…¼Jÿš¼Pÿ®¼Qÿ®¼Rÿ…¼Sÿ®¼Tÿ…¼Uÿ®¼Vÿ…¼Xÿ®¼YÿüZÿü[ÿü\ÿü]ÿü‚ÿ…¼ƒÿ…¼„ÿ…¼…ÿ…¼†ÿ…¼‡ÿ…¼ˆÿq¼‰ÿü”ÿü•ÿü–ÿü—ÿü˜ÿüšÿü¢ÿ…¼£ÿ…¼¤ÿ…¼¥ÿ…¼¦ÿ…¼§ÿ…¼¨ÿ…¼©ÿ…¼ªÿ…¼«ÿ…¼¬ÿ…¼­ÿ…¼³ÿ®¼´ÿ…¼µÿ…¼¶ÿ…¼·ÿ…¼¸ÿ…¼ºÿ…¼»ÿ®¼¼ÿ®¼½ÿ®¼¾ÿ®¼¿ÿüÁÿüÂÿ…¼Ãÿ…¼Äÿ…¼Åÿ…¼Æÿ…¼Çÿ…¼ÈÿüÉÿ…¼Ëÿ…¼Íÿ…¼ÎÿüÏÿ…¼Õÿ…¼×ÿ…¼Ùÿ…¼Ûÿ…¼Ýÿ…¼Þÿüàÿüâÿüäÿüÿ®¼ÿ®¼ ÿ®¼ÿüÿ…¼ÿ…¼ÿüÿ…¼ÿüÿ…¼ÿì¼ÿ…¼ÿ…¼ ÿì¼!ÿ…¼"ÿì¼#ÿ…¼$¼&¼7ÿü9ÿü@ÿüCÿ…¼Dÿ…¼Jÿ…¼Ÿÿü ÿ켤ÿ®¼ªÿ…¼®ÿš¼µÿš¼¸ÿü»ÿü¼¼¾ÿüļÊÿ…¼ÌÿüÍÿüÎÿq¼Ïÿ…¼ÐÿüÑÿüÒÿüÔÿüÕÿq¼Öÿü×ÿüØÿ…¼ÙÿüÚÿüÛÿ…¼ÜÿüÝÿüÞÿ…¼ßÿüàÿüáÿüâÿüãÿüåÿüæÿüèÿüéÿüêÿ…¼ë)¼ìÿüíÿ…¼îÿ…¼ðR¼òÿ…¼óÿüõÿü÷ÿüùÿüûÿüýÿüÿÿüÿüR¼ R¼(ÿ…½=½ =½ÿ×½Ÿÿ×½¤ÿ®½ªÿš½®ÿ…½µÿš½»ÿ×½¾ÿì½Ä)½Êÿ®½ÌÿýÍÿýÎÿq½ÏÿýÒÿýÓÿýÔÿýÕÿq½Öÿý×ÿýØÿš½ÙÿýÚÿýÛÿýÞÿ®½àÿýáÿýâÿýãÿýåÿýæÿýèÿýéÿýêÿýìÿýíÿýîÿýð=½òÿ…½óÿýõÿý÷ÿýùÿý=½ =¾ÿ×¾¤ÿ×¾¦ÿþ¨ÿ쾪ÿ×¾®ÿ×¾°ÿþµÿ×¾¼ÿþ¿ÿ×¾ÄÿþÇÿ×¾ÎÿþÕÿþòÿÿ)¿ )¿Ÿÿ׿¤=¿®)¿µ)¿¸ÿì¿»ÿ׿¾ÿ׿Áÿì¿áÿÿ)¿ )À£öÀ¤)ÀªÀ®)Àµ)À¼ÿìÀ¾ÿìÀ¿ÀÁÿìÀÎ)ÀÕÀáÿ×Àç)ÀñfÀò)Ãÿìãáä=ê)î)õ)üÿìý)þÿìÿÃÁÿìÃÄÿìÃÇÃÎ=ÃÑÃÕ)ÃÜÿìÃáÿ×ÃäÿìÃç)ÃñfÃò)ÄÿÃÄ ÿÃÄÿ…ĦÿqĨÿ×ļÿ…ÄÁÿÃÄÄÿ…ÄÜÿ×Ääÿ×ÄÿÃÄ ÿÃÆÿšÆ ÿšÆÿ…Ʀÿ…ƨÿׯ¼ÿ…ÆÁÿÃÆÄÿ…ÆÜÿׯäÿׯÿšÆ ÿšÇÿ×Ǥÿ×Ǧÿ×Ǩÿ×Ç®ÿ×ǰÿÃDZÿìǵÿÃǼÿ×ǽÿìÇ¿ÿ×ÇÕÿ×Çòÿ×Èÿ×Ȥÿ×Ȧÿ×ȨÿìÈ®ÿ×Ȱÿ×ȱÿìȵÿ×ȽÿìÈ¿ÿ×ÈÎÿ×ÈÕÿ×Èòÿ×Ê ÿ×ÊÜÿ×ÊÝÿìÊáÿìÊäÿ×Êöÿ×ËÎÿ×ËÐÿ×ËÜÿ×ËÝÿ×Ëßÿ×ËáÿìËäÿ×Ëöÿ×Ì=Ì =ÌÐÿìÌÜÿ×ÌÝÿ×Ìßÿ×ÌáÿìÌäÿ×Ìöÿ×Ì=Ì =ÍÎÿšÍÕÿšÍíÿìÍòÿšÎÊÎÎ)ÎÜÿ×Îáÿ×ÎäÿÃÎñ{Ï ÿ×ÏÐÿ×ÏÜÿìÏßÿìÐ)Ð )ÐÏÿ×ÐØÿ×ÐÛÿìÐÞÿ×Ðáÿ×Ðêÿ×Ðíÿ×Ð)Ð )Ñ=Ñ =ÑÑÿìÑÜÿìÑÝÿìÑßÿìÑáÿ×ÑöÿìÑ=Ñ =Ô)Ô )ÔËÿ×ÔÏÿ×ÔØÿ×ÔÛÿ×ÔÞÿ×Ôáÿ×Ôêÿ×Ôíÿ×Ô)Ô )Ø[ÿר]ÿìØ@ÿìØÐÿרÑÿìØÕÿìØÜÿרÝÿìØßÿרòÿìØöÿìÚÐÿ×ÚÑÿìÚÕÿìÚÜÿìÚßÿìÚäÿìÚòÿìÛ=Û =ÛÏÿìÛØÿìÛíÿìÛ=Û =ÜRÜ RÜIÜÊÿ×ÜÎÿšÜÏÿìÜÕÿÃÜØÿ×ÜÛÿ×ÜÝÜÞÿ×Üíÿ×ÜòÿšÜöÜRÜ RÝ=Ý =ÝIÝÊÿìÝÎÿÃÝÕÿÃÝØÿìÝÜÝÞÿìÝòÿÃÝ=Ý =Þ[ÿ×Þ]ÿìÞ@ÿìÞÐÿ×ÞÑÿìÞÕÿìÞÜÿ×ÞßÿìÞáÿìÞäÿ×Þòÿ×ßËÿìßÏÿìߨÿìßÛÿìßÞÿìßáÿìßêÿìßíÿìàÎ)àÕ)àÜÿìàáÿìàäÿ×àç)àéàñfàò)àöãÎ=ãÕ)ãÜÿìãáÿìãäÿìãçãêÿìãíÿìãñfãò)ãöäÜÿšäÝÿ×äßÿìäáÿ×ääÿqäöÿÃå=å =å=å =æ=æ =æÜÿšæÝÿ׿ßÿìæáÿ׿äÿqæ=æ =çÎÿ×çÐÿ×çÑÿìçÕÿìçßÿìçäÿ×çòÿìçöÿ×èÎÿ×èÐÿ×èÑÿìèÕÿìèßÿìèäÿ×èöÿìé=é =é=é =êÿ˜ê ÿ×êßÿììÎÿšìÏÿ×ìÕÿšìØÿ×ìÛÿììÞÿ×ìêÿ×ìíÿììòÿší=í =í=í =î=î =î=î =ðë=ðô=òÐÿ×òÜÿšòÝÿÃòÞÿìòßÿìòáÿ×òäÿšòöÿ×óÐÿ×óÜÿšóÝÿÃóßÿìóáÿ×óäÿšôöÿ×õ)õ )õËÿìõÏÿ×õØÿ×õÛÿìõÞÿ×õêÿ×õíÿ×õöÿìõ)õ )öÊÿ×öÕÿÃöØÿìöÜöòÿ×øRø Røÿ\ø&ÿìø*ÿìø2ÿìø4ÿìø7ÿ…ø8ÿìø9ÿ®ø:ÿÃø<ÿšø‰ÿìø”ÿìø•ÿìø–ÿìø—ÿìø˜ÿìøšÿìø›ÿìøœÿìøÿìøžÿìøŸÿšøÈÿìøÎÿìøÞÿìøàÿìøâÿìøäÿìøÿìøÿìøÿìø$ÿ…ø&ÿ…ø,ÿìø0ÿìø2ÿìø4ÿìø6ÿÃø8ÿšø:ÿšøŸÿìø¤ÿšøªÿ…ø®ÿ…øµÿ…ø¸ÿ×ø»ÿìø¼ÿ…ø¾ÿÃøÊÿ…øÌÿÃøÍÿÃøÎÿ\øÏÿ…øÐÿÃøÑÿÃøÒÿÃøÓÿÃøÔÿÃøÕÿ\øÖÿÃø×ÿÃøØÿ…øÙÿÃøÚÿÃøÛÿ…øÜÿÃøÝÿÃøÞÿ…øßÿÃøàÿÃøáÿÃøâÿÃøãÿÃøäÿÃøåÿÃøæÿÃøçÿÃøèÿÃøéÿšøêÿ…øìÿÃøíÿ…øîÿ®øð=øòÿ\øóÿÃøõÿÃø÷ÿÃøùÿÃøúÿÃøüÿÃøþÿÃøÿšøRø RùÎÿšùÕÿšùíÿìùòÿšúfú fúÿ®úÿ®ú$ÿ×ú&ÿìú*ÿìú2ÿìú4ÿìúDÿ×úFÿ×úGÿ×úHÿ×úJÿìúPÿìúQÿìúRÿ×úSÿìúTÿ×úUÿìúVÿ×úXÿìú]ÿìú‚ÿ×úƒÿ×ú„ÿ×ú…ÿ×ú†ÿ×ú‡ÿ×úˆÿ®ú‰ÿìú”ÿìú•ÿìú–ÿìú—ÿìú˜ÿìúšÿìú¢ÿ×ú£ÿ×ú¤ÿ×ú¥ÿ×ú¦ÿ×ú§ÿ×ú¨ÿ×ú©ÿ×úªÿ×ú«ÿ×ú¬ÿ×ú­ÿ×ú³ÿìú´ÿ×úµÿ×ú¶ÿ×ú·ÿ×ú¸ÿ×úºÿ×ú»ÿìú¼ÿìú½ÿìú¾ÿìúÂÿ×úÃÿ×úÄÿ×úÅÿ×úÆÿ×úÇÿ×úÈÿìúÉÿ×úËÿ×úÍÿ×úÎÿìúÏÿ×úÕÿ×ú×ÿ×úÙÿ×úÛÿ×úÝÿ×úÞÿìúàÿìúâÿìúäÿìúÿìúÿìú ÿìúÿìúÿ×úÿ×úÿìúÿ×úÿìúÿ×úÿ×úÿ×ú!ÿ×ú#ÿ×ú@ÿìúCÿ×úDÿ×úJÿ×ú_ÿ×úfÿìúiÿ×úmÿìúyÿ×ú{ÿìú~ÿ×ú‚ÿ×ú„ÿìúŒÿ×úŽÿ×úÿ×ú“ÿ×ú–ÿ×ú™ÿ×ú›ÿ×úªÿ×ú¸ÿìú»ÿìúÊÿ×úÏÿ×úØÿ×úÛÿ×úÞÿ×úêÿ×úíÿ×úîÿ×úfú fú(ÿ×ûRû RûIûRû Rüfü füÿ®üÿ®ü$ÿ×ü&ÿìü*ÿìü2ÿìü4ÿìüDÿ×üFÿ×üGÿ×üHÿ×üJÿìüPÿìüQÿìüRÿ×üSÿìüTÿ×üUÿìüVÿ×üXÿìü]ÿìü‚ÿ×üƒÿ×ü„ÿ×ü…ÿ×ü†ÿ×ü‡ÿ×üˆÿ®ü‰ÿìü”ÿìü•ÿìü–ÿìü—ÿìü˜ÿìüšÿìü¢ÿ×ü£ÿ×ü¤ÿ×ü¥ÿ×ü¦ÿ×ü§ÿ×ü¨ÿ×ü©ÿ×üªÿ×ü«ÿ×ü¬ÿ×ü­ÿ×ü³ÿìü´ÿ×üµÿ×ü¶ÿ×ü·ÿ×ü¸ÿ×üºÿ×ü»ÿìü¼ÿìü½ÿìü¾ÿìüÂÿ×üÃÿ×üÄÿ×üÅÿ×üÆÿ×üÇÿ×üÈÿìüÉÿ×üËÿ×üÍÿ×üÎÿìüÏÿ×üÕÿ×ü×ÿ×üÙÿ×üÛÿ×üÝÿ×üÞÿìüàÿìüâÿìüäÿìüÿìüÿìü ÿìüÿìüÿ×üÿ×üÿìüÿ×üÿìüÿ×üÿ×üÿ×ü!ÿ×ü#ÿ×ü@ÿìüCÿ×üDÿ×üJÿ×ü_ÿ×üfÿìüiÿ×ümÿìüyÿ×ü{ÿìü~ÿ×ü‚ÿ×ü„ÿìüŒÿ×üŽÿ×üÿ×ü“ÿ×ü–ÿ×ü™ÿ×ü›ÿ×üªÿ×ü¸ÿìü»ÿìüÊÿ×üÏÿ×üØÿ×üÛÿ×üÞÿ×üêÿ×üíÿ×üîÿ×üfü fü(ÿ×ýRý RýIýRý Rþfþ fþÿ®þÿ®þ$ÿ×þ&ÿìþ*ÿìþ2ÿìþ4ÿìþDÿ×þFÿ×þGÿ×þHÿ×þJÿìþPÿìþQÿìþRÿ×þSÿìþTÿ×þUÿìþVÿ×þXÿìþ]ÿìþ‚ÿ×þƒÿ×þ„ÿ×þ…ÿ×þ†ÿ×þ‡ÿ×þˆÿ®þ‰ÿìþ”ÿìþ•ÿìþ–ÿìþ—ÿìþ˜ÿìþšÿìþ¢ÿ×þ£ÿ×þ¤ÿ×þ¥ÿ×þ¦ÿ×þ§ÿ×þ¨ÿ×þ©ÿ×þªÿ×þ«ÿ×þ¬ÿ×þ­ÿ×þ³ÿìþ´ÿ×þµÿ×þ¶ÿ×þ·ÿ×þ¸ÿ×þºÿ×þ»ÿìþ¼ÿìþ½ÿìþ¾ÿìþÂÿ×þÃÿ×þÄÿ×þÅÿ×þÆÿ×þÇÿ×þÈÿìþÉÿ×þËÿ×þÍÿ×þÎÿìþÏÿ×þÕÿ×þ×ÿ×þÙÿ×þÛÿ×þÝÿ×þÞÿìþàÿìþâÿìþäÿìþÿìþÿìþ ÿìþÿìþÿ×þÿ×þÿìþÿ×þÿìþÿ×þÿ×þÿ×þ!ÿ×þ#ÿ×þ@ÿìþCÿ×þDÿ×þJÿ×þ_ÿ×þfÿìþiÿ×þmÿìþyÿ×þ{ÿìþ~ÿ×þ‚ÿ×þ„ÿìþŒÿ×þŽÿ×þÿ×þ“ÿ×þ–ÿ×þ™ÿ×þ›ÿ×þªÿ×þ¸ÿìþ»ÿìþÊÿ×þÏÿ×þØÿ×þÛÿ×þÞÿ×þêÿ×þíÿ×þîÿ×þfþ fþ(ÿ×ÿRÿ RÿIÿRÿ RR Rÿšÿš")$ÿš&ÿ×*ÿ×2ÿ×4ÿ×6ÿìDÿšFÿšGÿšHÿšJÿšPÿÃQÿÃRÿšSÿÃTÿšUÿÃVÿ®XÿÃ[ÿ×\ÿì]ÿÂÿšƒÿš„ÿš…ÿš†ÿš‡ÿšˆÿq‰ÿ×”ÿוÿ×–ÿ×—ÿטÿךÿ×¢ÿš£ÿš¤ÿš¥ÿš¦ÿš§ÿš¨ÿš©ÿšªÿš«ÿš¬ÿš­ÿš³ÿôÿšµÿš¶ÿš·ÿš¸ÿšºÿš»ÿüÿýÿþÿÿÿìÁÿìÂÿšÃÿšÄÿšÅÿšÆÿšÇÿšÈÿ×ÉÿšËÿšÍÿšÎÿ×ÏÿšÕÿš×ÿšÙÿšÛÿšÝÿšÞÿ×àÿ×âÿ×äÿ×ÿÃÿà ÿÃÿ×ÿšÿšÿ×ÿšÿ×ÿšÿìÿ®ÿ® ÿì!ÿ®"ÿì#ÿ®9ÿì@ÿÃCÿšDÿšJÿ®_ÿšfÿ×iÿšmÿ×yÿš{ÿÃ~ÿš€ÿì‚ÿš„ÿÊÿìŒÿšŽÿšÿš“ÿš–ÿš™ÿš›ÿš ÿìªÿš¸ÿ×»ÿ×ÊÿšÏÿšØÿšÛÿšÝÿìÞÿšêÿšíÿšîÿ®ÿìR R(ÿš= =I= =7ÿšqÿšrÿÃ7ÿšqÿšrÿÃ$ÿ®,)7R9R:f;)<R=)FÿÃGÿÃHÿÃJÿ×RÿÃTÿÃW)Y)Z‚ÿ®ƒÿ®„ÿ®…ÿ®†ÿ®‡ÿ®ˆÿ\Ž)))‘)ŸR¨ÿéÿêÿëÿìÿíÿôÿõÿöÿ÷ÿøÿúÿÃÂÿ®Äÿ®Æÿ®ÉÿÃËÿÃÍÿÃÏÿÃÕÿÃ×ÿÃÙÿÃÛÿÃÝÿÃì)ð)ò)ÿÃÿÃÿÃÿÃ$R&R6f78R:R;)=)?)Cÿ®_ÿ®iÿ®qRyÿÃ~ÿÂÿÊ)ŒÿÃŽÿÃÿÑ)“ÿÔ)–ÿÙÿÛÿÃR¤ÿš¦R¨=ªÿ®®ÿ…°=±µÿ…¼R½=¿)ÄRÏÿÃØÿÃÛÿÃÜ)ÞÿÃêÿÃíÿÃúfûüfýþfÿR(ÿ® $ÿ® ,) 7R 9R :f ;) <R =) Fÿà Gÿà Hÿà Jÿ× Rÿà Tÿà W) Y) Z ‚ÿ® ƒÿ® „ÿ® …ÿ® †ÿ® ‡ÿ® ˆÿ\ Ž) ) ) ‘) ŸR ¨ÿà ©ÿà ªÿà «ÿà ¬ÿà ­ÿà ´ÿà µÿà ¶ÿà ·ÿà ¸ÿà ºÿà Âÿ® Äÿ® Æÿ® Éÿà Ëÿà Íÿà Ïÿà Õÿà ×ÿà Ùÿà Ûÿà Ýÿà ì) ð) ò) ÿà ÿà ÿà ÿà $R &R 6f 7 8R :R ;) =) ?) Cÿ® _ÿ® iÿ® qR yÿà ~ÿà ‚ÿà Š) Œÿà Žÿà ÿà ‘) “ÿà ”) –ÿà ™ÿà ›ÿà R ¤ÿš ¦R ¨= ªÿ® ®ÿ… °= ± µÿ… ¼R ½= ¿) ÄR Ïÿà Øÿà Ûÿà Ü) Þÿà êÿà íÿà úf û üf ý þf ÿ R (ÿ®(ÿ®( ÿ®(&ÿì(*ÿì(2ÿì(4ÿì(7ÿ…(8ÿì(9ÿÃ(:ÿ×(<ÿš(‰ÿì(”ÿì(•ÿì(–ÿì(—ÿì(˜ÿì(šÿì(›ÿì(œÿì(ÿì(žÿì(Ÿÿš(Èÿì(Îÿì(Þÿì(àÿì(âÿì(äÿì(ÿì(ÿì(ÿ×($ÿ…(&ÿ…(,ÿì(0ÿì(2ÿì(4ÿì(6ÿ×(8ÿš(:ÿš(fÿì(mÿì(qÿ…(¸ÿì(»ÿì(¼ÿ…(úÿ×(üÿ×(þÿ×(ÿš(ÿ®( ÿ®24 4>E 4 Z fNo½ gÑ 4 h8   ´ *   ,ì  œ* (Æ Îî 8¼ \ô ¢P F òDigitized data copyright © 2006, Google Corporation.Droid SansRegularAscender - Droid SansVersion 1.00DroidSansDroid is a trademark of Google and may be registered in certain jurisdictions.Ascender CorporationDroid Sans is a humanist sans serif typeface designed for user interfaces and electronic communication.Digitized data copyright © 2006, Google Corporation.Droid SansRegularAscender - Droid SansVersion 1.00 build 107DroidSansDroid is a trademark of Google and may be registered in certain jurisdictions.Ascender CorporationDroid Sans is a humanist sans serif typeface designed for user interfaces and electronic communication.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlThis font software is the valuable property of Ascender Corporation and/or its suppliers and its use by you is covered under the terms of a license agreement. This font software is licensed to you by Ascender Corporation for your personal or business use on up to five personal computers. You may not use this font software on more than five personal computers unless you have obtained a license from Ascender to do so. Except as specifically permitted by the license, you may not copy this font software. If you have any questions, please review the license agreement you received with this font software, and/or contact Ascender Corporation. Contact Information: Ascender Corporation Web http://www.ascendercorp.com/http://ascendercorp.com/eula10.htmlÿff_  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a¬£„…½–膎‹©¤Šƒ“òó—ˆÞñžªõôö¢­ÉÇ®bcdËeÈÊÏÌÍÎéfÓÐѯgð‘ÖÔÕhëí‰jikmln oqprsutvwêxzy{}|¸¡~€ìîº   ýþ  ÿøù !"#$%&'()*+,-./0×123456789:;<=>?âã@ABCDEFGHIJKLMN°±OPQRSTUVWXûüäåYZ[\]^_`abcdefghijklmn»opqræçs¦tuvwxyz{Øá|ÛÜÝàÙß}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ›¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()²³*+¶·Ä,´µÅ‚‡«Æ-.¾¿/¼0÷123456ŒŸ789:;˜<š™ï¥’œ§”•¹=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefg.nulluni00AD overscoreperiodcenteredAmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflexCdotcdotDcarondcaronDcroatdcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflexGdotgdot Gcommaaccent gcommaaccent Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonek IdotaccentIJij Jcircumflex jcircumflex Kcommaaccent kcommaaccent kgreenlandicLacutelacute Lcommaaccent lcommaaccentLcaronlcaronLdotldotNacutenacute Ncommaaccent ncommaaccentNcaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracute Rcommaaccent rcommaaccentRcaronrcaronSacutesacute Scircumflex scircumflex Tcommaaccent tcommaaccentTcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongs Aringacute aringacuteAEacuteaeacute Oslashacute oslashacute Scommaaccent scommaaccentmacrontonos dieresistonos Alphatonos anoteleia EpsilontonosEtatonos Iotatonos Omicrontonos Upsilontonos OmegatonosiotadieresistonosAlphaBetaGammauni0394EpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsiuni03A9 IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomega iotadieresisupsilondieresis omicrontonos upsilontonos omegatonos afii10023 afii10051 afii10052 afii10053 afii10054 afii10055 afii10056 afii10057 afii10058 afii10059 afii10060 afii10061 afii10062 afii10145 afii10017 afii10018 afii10019 afii10020 afii10021 afii10022 afii10024 afii10025 afii10026 afii10027 afii10028 afii10029 afii10030 afii10031 afii10032 afii10033 afii10034 afii10035 afii10036 afii10037 afii10038 afii10039 afii10040 afii10041 afii10042 afii10043 afii10044 afii10045 afii10046 afii10047 afii10048 afii10049 afii10065 afii10066 afii10067 afii10068 afii10069 afii10070 afii10072 afii10073 afii10074 afii10075 afii10076 afii10077 afii10078 afii10079 afii10080 afii10081 afii10082 afii10083 afii10084 afii10085 afii10086 afii10087 afii10088 afii10089 afii10090 afii10091 afii10092 afii10093 afii10094 afii10095 afii10096 afii10097 afii10071 afii10099 afii10100 afii10101 afii10102 afii10103 afii10104 afii10105 afii10106 afii10107 afii10108 afii10109 afii10110 afii10193 afii10050 afii10098WgravewgraveWacutewacute Wdieresis wdieresisYgraveygrave afii00208 underscoredbl quotereversedminutesecond exclamdbl nsuperior afii08941pesetaEuro afii61248 afii61289 afii61352 estimated oneeighth threeeighths fiveeighths seveneighthsDeltauniFB01uniFB02 cyrillicbrevedotlessjcaroncommaaccent commaaccentcommaaccentrotate zerosuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperioruni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni200BuniFEFFuniFFFCuniFFFDuni01F0uni02BCuni03D1uni03D2uni03D6uni1E3Euni1E3Funi1E00uni1E01uni1F4Duni02F3 dasiaoxiauniFB03uniFB04ÿÿrt-4.4.2/share/fonts/DroidSansFallback.ttf0000664000175000017500001341745013131430353020331 0ustar vagrantvagrant€pOS/2ÚÃî4x`cmapÈç`|àÈcvt A`fpgm°!Y°ADgasp. glyfö³äèL) ¦headæ»YÀü6hheae4$hmtxé’ÙGØ^¤kern>‰Bœ.ôloca ¡¤¬Ad¦èmaxpªõX name_ ‡ .ôpostÿï .ü prep€ˆ)AL#ë-_<õ ÃGxgÃK¢“ÿéÿ¼  ÿ¼+ÿéÿ䙩¹¬'/þ³¦$³¦z > €¯+ß|û1ASC@ÿæÄÿà D‰· K’CEg¥Ó ´:M M @R E`   EE mÞœŸš¯‡~±´W Eÿé”~ß»¾”¾—… …³‘âŒ‡Š N`Nˆi”1ˆ –w–‰T…—BBÿøBå—”––ft W—{¿€}q [=[ E|”&U R Õ n UU”1¨E5UZ½½½m Ú¯¾”šˆ ˆ Õ ‰‰‰BÿýB””” ”———–ˆ –‰‰´—BÿþBœ …~M~Bÿÿ©»—”äé…W—” #”$B”./”œŸ~‘‡Š ´¾W ”‘ß»ˆ ¾±”ˆ …‡Ä ŒÄ ¾ –š}”t u—‘Tƒÿþ˜„r”¡”—s—³†ÿþ¾Á‡œ”Ÿ~¦‡ÑŒ »»”«ß´¾±”š…–Ä Œ³©ÿÿ¨Ó”˜—ˆ ’‘fŒ‰¸v ~Œ¸”˜–wq}²€š–ßá®À‘vψ‰€  --]]|Î+ : g +P-¾ ½½½½B:664€F FFp]4J7tbD:FlapBFSGF<IFEGFphFFFG-D9=FF4:E@DP*4,I,B@36-02;gBRAbEFJ;AB;CIBMJ"C?F;SMFC8#:8JMwEF821'41221 ƒ!R ‰EšÿýšÿýšBš7šÿýšÿýšBš7šÿýšÿýšBš7šBšBš7š7šÿýšÿýšÿýšÿýšBšBš7š7šÿýšÿýšÿýšÿýšBšBš7š7š7š7š7š7šÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýš,šBš,š,šÿýšÿýšÿýšBš,š,šÿýšÿýšÿýšBš,š,šÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšBšÿýšÿýšBššššÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšÿýšššÿýš†šššššššššššš#š#šššššššššššššššššð ðJJ00,,aE%WJ€2€6€1€6€#€6€.€.€)€)€+€+€€€€€€€€€%€ €€:Uˆ Bÿø”—————C #”1”1#³ ^/€==p=FUUUU2½½M, 8 : I 8:PBFw2#*€ *€ € ::::**-F<CB11.-€ €7AA4444FFFF""FF1111-iM"€<€€<€+€0(3€B€+¥;/1?++<<&&??-**&"""      %01+2$&(³ÁDD0'7%,+($!,VU <888'''#&);)!9:+8%$&3*h#FF #&"(+7D)   &+!!2"-%2"""$#""13&&"7##-1()j[iZG7F2v%!##BC' *B,gI  ..            "  "    #+*%pw-€ €€1€ €€€€€€€€€ €€€ € €€€€€€ €€ €€€€€€€€€€€€&€€ € €€€€€ €€€€€€€ €€€€ €€€ €€ €€€ --- ---  ---  ---  &&& &&& &&& &&&11&&11&%11&&11&&11"#11##11"#11"#********11%"11%"11%"11%"22"#22"#22"#22"#11"#11"#11"#11"#-------- "  "" ""  #"      ------- $$ $$ $$ $$ # ##  ## ##  ## ##  ##  %%  ... .. ... .. .11#"11%"11%"11%" .. .. .. ..********¼¼¼¼¼¼¼¼¼¼¼¼¼¼¼Œ”šŒ”šŒ”šŒ•šŒ”š¼¼¼¼¼¼¼¼¼¼¼¼¼¼¼Œ”šŒ”šŒ”šŒ”šŒ”š…‹w…†‹…“‘w…‡‹…”‘w~„”‡Œ€•‘w‡„“‡Œ…”‘n~„’‘‰Œg{^kpp~lju{^llo€toly]mmo€uolzzbmnp€soh~z\moq€tq‰v‡Š”‡Ž‹•††€‹•vŒ”‰’€Œ—v‹‘”‰”€Œ—v‹ˆ”ˆ”ftw\kpz€kwfu}^krv€kvfty]mrt€kvbwycmrt€nvbvybnoo€lv¼¼½¼¼½¼¼¼¼¼¼¼¼½.....................&&&&&&&&&&&&&&&&&&&&&&&&$&&&#&&&&&&"" $&&!533252325235225332522)%%.)%%.)%%)%%)%%.)%%%%%.))).))))%%)%%.)%%521155215525525221552551155114414445511551)%$,)%),)%%)%%)%#,)%%)%%+)%%,)&&)%%)##+)%%)%%+)%%+&&&&%%)%%+)%%)&&&)%%&)%%)%%)%%&)%%)%%+)%%+)%%)%%)$$+)%%)$$*($$*(%%($$)$$*)%%%%%%%%%%%%%%%%%%%%%%%522255525255555252555555155515555555551555)%%-).%-)%%)%%)%%-)%%..+#...#........)#---#"""!!"!!!!!!111.111.111111111.111)%%(*%%)*&&*&&)&&$*&&)%%%*&&#*&&*&&*&&$)%%---------------------555155515555555511555...+...+.........+...0+0+0+0*0+00+00+0*0*0 F b? gS]D KK JADF m zc Ko[` K_]ou y„ŒŸ ))))k m D v m ¢ ~ i r z [ ny€‹ U Xi VW ; @ L>VG‚++  “ q N`[a\KeV‹lZs'  O Ib m [KUg]JE  :W |U ŒZ €UY >— ZUJ yœSKb   ! †L# P YM?SlR D@€ )   G^  # M ¶ FF6Œ‰ N‡Q Y `I aJ­@ q VN ' ±6 A+ J’ ar c LM€WL G>BP s V ]N a ¡— b , 3:l6C> %^Z  ƒ L#k RFAHN rgDf#+  d\ M[ h} †S x q y n‚ eQ   NV N U«s ` \Q[  Y &AHuQXN ^ngXj a b>WEI >H T_8F 1  L`NNKG?Evˆ… +  } H2uhP zxDg TlNoH >œc lY› z !!] ej t d – ˆ  ] ˜| U a €hY"bS Q CJ 0} M sŠ\ f ‘`k ® †mq|kqpr u bnFD ' Y g ?@F+s vHCk M p ` dA ª  NlQMWRISF@K CKBIMMUOJR LJ [LGCGI y : I › . arQUaX^fUœyTVOE@`OWZPAP>•PCIQaO! MÄKSPS8 o‘# wdd`bHU RphbuTa FldVjclVZgP MnZVR bYR\USPE `PH\NTRUF ‘bRVy”VWdYMMW@{d  `rUIFG\\R B5H@@ Y O€ «E €TG: owbee cgUz^" ia  Œi k a b i Wb }  €guif su _" Zbw ‡ t LZg LIT „gmX[TV ”f vum n  | ‚ ‹R dJZNz ¡6 > ‚ $ y W dvr^„ L” 4 QÔ }ou{wJG TN + wrZ`” m ƒ \rw~mpnvšI [NJHRqQ  O bX ypD@  •B › wq_ Ÿ qK2Wg Š `=K] ^o 9_ uekdCes n d` im`is V 6 U_ *blH X kB67†5I?@ Bš +  @ †T}uc nH """7  € Š€ |„ ƒO oNŒm˜ Tpl M& &¥O ‘ L[y ‚ KG 6i 1g_L`H U I^y S ]EZ? \   `yy?W\/? [ƒ n wv…iZIF @† s  3:7^LE? G8.dNUNX XAGCV  hbf l} v’2V ]a Yj  ›GER Z_dknU=nMfaIR ] L' Y ‡cZ K5 cj ©H  N †u)* mq & 440,Tz g Y dtXKi =39 3;A<-==:<97K2-<.2_ G56= +)-; Y`d W a f  Pd mrQ [[\ƒ J pUO7V = llmtTxm 1€r so .……|Œ  o xl  GV_[nU  cWJ„  [&\‰@¾T™V }s 9Ze™u K ™Vi—SWjm[G [p1f p }vd •   gs -•=`G<: XKHU ; Q Ef\‹CR ”J OeE'] †XPwS |{K‚W 6] 5455 y~ ;662855=  $ gj ,, jeA‰)E[gWR q X  k`V@/ªK Ž` o u–  ‰glJMc:„’SEB|  YjPZ ™  SEN@CEmas d qh Mˆ [k  † ~¬©y [ @XWWf€r hfp "r_`K  yS… TJ[u mqFJ†H\ )GE‹]  ¤t   s  R ¶Qn y 7+yW  '! " 5V  =lwljpo~qvwJjW+\] a [€GUO8’E2kfelTN a Q?eo’U _†¦J ‚g mu .D Ih3H\934/7b.< 98;  X s[jr Y r"r^TCfX š{X>[ tq uizvxw =V` Fm„ @ sx[d+J{|_a R \ v7 RlIg]gcUb ] 8<j4:M QAlK cL] n«¦n¡TB€| _K W_ Rfi X[ Uz—mWFYdKK¢E@fUm‹ i~bTo}y3@zCUNQRD@ aV jI ipc”$ $KRgr kŒQOdj6f e  dPhbJB^gcakaXk`Vb QeeSngZZG"*#"_&V"p[]  ‹Ui‰F[r‚|„\jsmp    Kg3W  z  WIRx p ! # ! !UCq‹8\FMLH] \ … ‹zwzhotw  a \ W} : YHa P ZM O ]VOZLhu  cNkuN[hN ` bCkƒ uq ;;gg &C  A; -K 6jž9 o 0Rl€w vmVg„v9 : }7V KoˆqQTOW+ _ flm WC5`.m ;\gm[’s JYFgJ OYj ˆ *k} ƒ[š YY¦ C~D[c Zio €r X ‚W‡;K j9A¡½W žbARž žERž žaP s[L R_? }| e $*+rC FUb\mZB bi ¦ ‚«r m/  Fd ; j[TbPZoFW€ k`r Pu l KJe:\ EKJF B\iet|XEyurrwzyghmg`bZoHR†M Š][ •PR SSPvDHj^R MDWƒ}m} ndnudYP®glc\kfb fS__ \ej i 0 . 9”/D "  @•h  Of\hd UQKPr\nY  ~cW]§? #Tme“ qr Kdr[HŽ^ vi P]\KKE[ +F" HTbm<=fYgis ˜ƒbepM] B]E_iji Qg pgm q b hB DRVVžR e )wXeK Gs GT 6W8g_f {r] tw  GO>JX k€ †9 cN gfea€T–L Œ i &w N Q ?o K ObYh gCVaIA*&~ _.edu tŽc8\kH mgu[b? 2PXc[m [`Xa\BgG>MT>@SbJhdven[z€ )  1/? wvK _ hr'~ƒXD_ l qo GQWQAe8TKn e f Fc=C P ^wn'(ŸMZw+“+~a }„ (U\EW d I I]en  spui … ^  WKaLepH`kb^k uEE0X ><50 42/8 km=JN ?n J\U Qg š i ƒƒ w|…^QPRR 'k B†LoyS^fGr } €c u^efKlJ Bz ` bMI=Y> V}f ar (dbPi$ |9B { E˜B… !" _lvf dkeIU m€ pkgpQ d: \X[SYc ’ o  V ok q ‡uŠ RG^ w RLn it Pu?FP[^  fmNX^Im weH•>7| ahi G]`k kMf vrƒsi!ilavkgjw_hgdmgmxHtp‹,+gXG§Ž  O g^eQmi?Bˆ?‰Š_W‰apn‚O^ gOKg ^ [xvy  r_Suuutiomnloljpf^kg ^ niZ\iq c?K I]U j Gp CP  jtLI_›„sg}|  n ] @ cXxy GPM adm*xsu~ olk pq a AyytŸd <10\MauI_f`iqqpe_q[Z[Mfb\  YdG JM u_^XdMhh|Ur gq~‚phˆz waZX 8 HIW`E` c ;U\ p RmT prjKahWfpRaKLFNV`kŠ €G ^^• ‹MaT‰ YrYV  Eƒ Qnf pNzK }5U-^ …QE>;‰ C l ~VJ qtyS,^h cGhMppf_NS TƒhuK?Vi_OUF r t ioZFA•;BEV +7 Zdof Pm|r P  DR} qvrlqV^ w `IXJfodly?GZ‡€ dQ D\  LN#^l@l_  ZSlG~ iRH<…{ Dz i2d ) aH`c› b u X M<M Lb?QQtLO XDr _ TX9 elz\WmQ Dg y l=MdnV V bF Ee^X =; `L  WeP_ozR T]{i=k^H|Xp TL`[ogOUzƒŠ  mfqc] Qo tR? v]…i;~NƒBBA–– [ K/K?·u ‚N J•mf Wij  ‹ Œ TL aXDC a  g @ ˆ O F Š: LU_8W C yJp949 U ^ hhd lW^F‚ |_d_ ps}N sld{~}€ƒ|†{OQn„€k p£sokwatbžg{ ™¢_pqZc‚~u  TibD KI_ L ciXu`c] fm ?36D BL[L\fSinncpvftmra R`Lne Ov†Z  P‹bPƒa   GgK mkVE UaROVI zƒ uyo‰qpa ~~yqJU`k ›HP ~V] EktFPk [RZc rk G\bWOLW! qaTFY€ qy{m EHEJJ \N’_ƒH^p*Sq+ ‰aQkmn Hd 9A l[IPT lU[fGh s~ {ƒh YF i e  [aN^SZJfxfoNJrfGC RDZ W45gxS;`D‡RM FPA? spxoq €Z_ImfNWVC j vG] BA\ L Y`OelT Cm Y> UX ][ Q €Fg6 i u|A€M‰Ž LZU€I‰ __k\`gEL 6| r~vx~ qwp kHLE ; q @O\ aidK —T] egZJl‡ƒxxwwumguogvrkd^JWs\Glsrk]T SIF[ {M_e ak}‚ ‚ƒ‚ [ej™œa–^] CLPTc`SKŸAF T : F ‰ ƒ’G\k a DQIhikO` ]rV \ dKT 3J_u 5„AGS_…wniY_ PfWr}c&h ‹ZE :s` 7›o  G :;FSF>XIR-?aqmi LIV -\OAisq†` c \O6Z cq 9 E[ i c mmW4Q_] A Xh Gk?5 KUeKraUa @p`i?y €YJDPL\ Itk5T[GgxE@ [l SeVMC@O Z<l gU^[QMIS\k P7[eT_<m U; _G dqYq]ldQG QN]T§_Œ\ ]QkDNf   ~gMt  _e K TAQhGWaTp[ aDoF _smV7T>B<§ Bk xJ bK: _JJhG] ^dsT5 F u`RBQQe\cp0?˜< ^_`^e\WX VJb T DTmˆXbReMU m0TMl€ €z~§ER^d\4E`_K Wa X  R@^fnUE\ `b BC  i/ Y\LN7UM E JMSGLMk+ O iYTrmFb_a uZ]^h] ˆ\\WQRG [D@EMZdŽ@ gff_eT`{U]dbZ`LNS`“^dY@RYaXZMRTVH>\UaQVX`UYSJVFc ^cJSOCLMUcFMX@G NRI KQmm2 xfl`_ c`RKKBDFCJDDHBJPcZ[MLKMITF E† xk e    !     ­PKOA`U?  l;;[K‹Va7 OULIGlXPKE\KIAQRM[nl KCMUEe[gUKIL_W HDIY@CGIMFK@DS@IN~L\u‰2D%C% {Q[`gLE>@F@FMES@VJK>@y|m€„€xrvykpk‚{xptq ABB=E:8  Oja     ^imi` rtl !udtp_tb   w   I T_YAq\QJYY€ QgdT´) [„[KgYU[XWUK YUJDR£ PQQJ?WYRZZQV^LIF>OLRRYRRROVK …€…‰~€\Q : W`WSUI^]aTi\W`]`N`EIX?RIWPXXU@YPUWS Œ`k`[`deZZYkbX]XnY]ke][__X^`X_[ r cte` d`^`c`aRa`rnijeb  [ `_Mƒ!!&%€hl_]Ag `USV^ UA Yu LjVUf¬TYNcbg\SS]]UB\YNG]YUCQbl[NHZVYOS…\   qnqnnpkot d `ofkedZttvlqq{ -AM[UYPcDUPR gc`^M t   GLFRNQKBg`^DJbJTIJGlJYS[G lS^  Q?]DFSuzrllunnwillssvgnjpvxBCAW]Z 89IHTH;;LMOMH@EŠFEBIBJG @;PBDQII8BCC>>BA?>ExLKO?HGLBB8A@8L>C:>@ƒEI:<MA?Œ4W@B>CAA@:N[  WQibg"\\K| | [Š Y,\f+‡ Q^]W_Z+[ l Z kigkk_ei l U\VV „€ jO“on    # m Bh || ¥m `lotemjrfdpogea €}xu fW   !!!!!x s{tsvtn “ldJ^^ET c^ ltai[gm hfh^fp gk v ‚ } £[n`†`ESYOZOZ_cOUD@XTRXI ‹\UWJ^]EKLMKL[JFJ;7N    NHQOO?@LeQ‡5VG[lep`k^Y \[ ^U?R]eluŽ 3 i_p{RCL| ws‡stnl w{kszproyt|dnbdfZ ckgiankchgid`e Ifu [_KE Igts[kx p] lqIBIK  +( KKŸ$Jv M\Jn _`MV U_cao^H\QXGPX'UqSZ JTZKcZeJVHRbZ`PraQXom`hmfi`c] bj_ W]X\z]_T‰ lj_YZ P  u  zt  zy       t „ˆ |qz zx R» #008 |3…_Y Q}ŠC I —xŒ;  H j]l ‰ G  a u u z  z @  ^` Yf    ¤ Xk”QSGX]Qkfa_]ixql]`‘ |p{~šrzv r    s  OE;   Y[[Ÿ"b[bnR Mb R{‚ Oj$R`Rga` _V R hg _’WL QTVHIEUP«XœII € w  RSRUFSXS^fo¤]t[žcJ?^VN`ŠQQ[›  I^?>”N{=BGs;€—ŠB5Œ?DGH6C6>GGM €Tb)N}4Z ˆ”I^ k q,+--)`=JW& dZDYU\VOR[o\ znf \‚\\OsU b] r x!hea]jYhnmeg•f`kWƒb haXƒ \ lZ[hkbRe^l …‚„+ ) urtmukkrc ga),igf e_mw¤¢e q  „ [8R_K[:Yb CX_U_faz:LS^fZPFA;MELGUT b^OQNPfMR{ b˜`— m+ cfLJL@OLL IJCY[cgf ^_ TY a š ±YOYRZgNX PPTG O;^\K QisGXKNSKU ZXC8E<EKUchR\U‡]YSV PDGDFS‰J•DBGV”ABD8DFAXF`tUdbiblgddjtti]ecfliscegeaUD=L`_bb XUYR[ `f ~kc Yqnb_qmikb d /    Xf<8HU`  g¬ a AQUFG7K |U59 ?BZN TGF¨ŠN M\\SJ’mq§‚g\X"bhdk`d Z±£¬°¼KWHS MDTV]VJCQCfaT%aaGN JU^adnn>M UObkpmZA9Q SLY`M\ IR?[jp ROpe?R€?Q 7?phE9 ‚Dj`iq_\Z^d]d[¥\TbF [dh bgiVEm]O U[Metm?YPU [g^ls O`   G{kŸxw’c`i [` ^Mbk³ªdG V_XTQœOxFdkUfU_R bh lb^Q ~ r¹RPµ mke]gg^Ri oeqhpNI\uz‘   Wj‚ e_QDY O\L?vor W 5C & \Za dZU^S9TPbdbYD J E j# a  RIL\e‰Ki a [\fPJ PciWdTQQ`QdkVCsJ^amv XRd   eSObmyUEEc_RZ ‚G lgiS hbbX^dm€w‚od ] Y`oj`nue`XeJpr;pj<CGN ` vO4     v  \P0    P     B8 JOGSFF@>>?IAUA@EDBC>{>U>B:<CBGG9    # @ wK ?BT 04  m! !/!;5915318B2<@    A\=;37893629,2-26<:  ) U! Q aBQ‹):V>LXPK JMP ZA YOSRQ†FEbN XQKCHDPGI NHKHKV>ONnGB LSLD=O7/::8?3403512244.046,16212041- L  ^ SLT !PP]IYKRS(3 J Uz;  lLy ?O ?      ) -  #'%%-w )cFj`[OKY4 x{Q=[YUX3_TUYQVRGY /  0' *(6+ [      V      $&ƒ0  s ] 3_8,+B?<BD>C>?78:&jCjsi8.-!%9c$   V S  ~T †d S #%"$7" Res+q87;?B0@?4GK3136911784).?96<=42456<F5+A5&?A*74:39.538,69:2833,81264.3513k ' e` W"w X?JGL=DK> : PZ3  FJMa I 3 X A[@ R-_ G P +  H| . ‚NzM ‡ryG HK0 JLK /'( 8 BLC;6Kgm`MHX ` ILU_SX_EW ySH TWiTGRT4CKUKwKINKHOR~OKIKE@lKUTRN‚ OW=MK@TLGIGHKb     tmomkdhnckhc\^i,"1)b  P 2 FS2I "   … \> V yURSgaOZ/MUE]R T M U K BdIPF}F S‡FQ mLKHMS„T_HWN E ‚S WSIW@•P\MuS _PRY[EZ „ @NWI8]]Z^^ HQTGQ J@ NORNALOAMM T:  30   y!gf aP_a]]$$ L ŠLY D2CK@@FFPI_OF0D98J‹^LCI1LBVb<MDB>;N<?ME:7F>:EJCADyEaGAKA?<FBu2@5>>CE=7F@C<K9?C9cjF@A8C.L4@A6@J<Eiq7@EF.>8}|8CP:@>>:?E=e 9DMB;DB69C6@5KA694 ;MC56A??_@9^?IB=E?5i@6@<9<= %'c  ?  \ dR V†  |wr% G yO3Q G   Vf5~ 11c Q¡¦`TT NL_LKTPKE GN§¡ÃCJV[S[‡JKt_GOD ƒLFD ‡ z"      KYPKU]^IDOHIN<R;ROJEHNX9LNKPXLOIY=E^COC>DI>GGGQHIKLLHOIXMMHBHD@QMDICID?=:RJ9DC?A8E@DGCCL;BFLGF>JENDAODNH9=>=IHR<;;>:@AD?9?4:œ5DHAC=œD " J       2  OQYƒ"VZ k Sfe LN4 V_ˆ-WO ][g XSS 8  J  kd RX0 - - #   , i  … && !      †    ) O+ %R m a &   K  N Y%J G W  |  K8    V       GN Š3v a \iTa0T ` 3•fYZ{ VOb‹Q UWB^ZRW‚O i      T4  uj t  €  4icx    #'  ka`(g[9\dSfd2T _Q\ R w   '  d *#     "      #* $$   &     S  H  Z  fK  ^  NJ TRZE    f*)  Ie d a"krA  K  J   P  I  N        gZy >UD k Q  )  J" )  b KGF\  J    k &  1 @ †    n w T        I    A  ‰         F         „   {    .4323& ^ ] &c_ h˜ ‡u]  3 if_d^. _   \ c1 _   QAFJIACB< ' h_ _' ‰W  \T‡  z\QVYOGY  O !u v‚x fk 8_]\ _U‡TUWVvX…#Y[` eY^MTEFRUKzr 5 +      4\c1 M 06 x“K, : p m•ƒ„wurnk{{~mwoskhdwm{jepcfqkemefgjOY ŒYk‰UO V]ORX t‚RO^T\ZZ_    ^ ^  ^ GFZ) eU\HNJ[LNUMYRMZRKS[OQQMbJKD]GL]bPMDNQJX[KSHQPGFK^[NINNIDTEPZNIVLKFOQKKPEONBPLGMEVEMPUBKHJEOBPEGMLLMJMJICJCPAMFMACKLPLEC m ]  no˜lqorf Gv[ OoiH XŠ/ \bZ^[‘iV†\ `^fY^ W‚‹lU__XkZF9:9@751-:17<K</>=6;81610=GB„/83+@3859;15181>6.308/.596/E;O?<8<R=;:H@>7<I45L?H;1669;77gZXYY}MN}uV \2  "   U _ Y    T    — B 52Bm aS –œƒ‹—’ƒ ƒ……‹ v \‹ Skkon ]m_gfj  a‘rf   U   .+ ;‡‚ƒƒw†€~1w{' Kh nbkg`d@œŒhkp7/ = 5  w  tn  7 ((d 7 ;= 2 )/+(+,0;*55+&555506  ‚p>   ! " G  • f N   \  AHG ]    51 \    X   9=c $#_ G5UC  c X 2/  A  -   VF \I]f   @  u   Z XNM V FB ii`                                                                                                                                                                               &                                   ""                                                                                                    "     *                                                                                                                                                                                                 &                                                                                         !                           ' "                                                                                                                                                                           " "                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ༹ ~  ¡¡b¤¤c§¨dªªf­®g¯¯M°´i¶ºn¼¿sÆÆwÐÐxרyÞá{ææèê€ìíƒðð…òó†÷úˆüüŒþþŽ‘&'’++”13•88˜?B™IKMM RS¡fg£kk¥ÎÎâÐÐãÒÒäÔÔåÖÖæØØçÚÚèÜÜéÇǦÉËëÍÍîÐÐêØÛ¨Ýݬ‘¡­£©¾±ÁÅÃÉÖÝOÞQQ        "  $ !& % % & &( ' ' 0 0) 2 3* 5 5à ; ;ï t tá  ð „ù ¬ ¬,!!ý!!-! ! þ!!.!!/!!!!ÿ!"!"0!&!&1!+!+!S!T![!^2!`!b!c!cø!d!k!p!r!s!s!t!t!u!x!y!y!!™!Ò!Ò(!Ô!Ô)""*""6""+"",""/" " 0""7""8""-""9""."":"" 1"#"#4"%"%3"'"*5"+"+;",",ñ".".ò"4"7ó"<"<÷"="=9"H"H<"L"L:"R"R;"`"`="a"a<"d"e>"f"g="j"k?"n"oA"‚"ƒC"†"‡E"•"•I"™"™J"¥"¥G"¿"¿H##K$`$µž$Ð$éô%%K%P%t^%%ƒ%’%•’% %¡–%£%©˜%²%³Ÿ%¶%·¡%¼%½£%À%Á¥%Æ%ȧ%Ë%˪%Î%Ñ«%â%å¯%ï%ï³&&´&&¶&&¸&&¹&@&@º&B&B»&`&a¼&c&e¾&g&jÁ&l&mÅ&o&oÇ00N00100R00100S00c0!0$1 0%0%f0&0)1$0A0”g0™0ž»0¡0öÁ0û0þ11)111Ž@22ž2 2)1(2122122929142`2{»22×2£2¨1533Ø3 3 Ù33Ú33Û3"3#Ü3&3'Þ3+3+à3636á3;3;â3I3Jã3M3Må3Q3Qæ3W3Wç3{3~1;3€3„è3ˆ3Êí3Í3Ó03Õ3Ö73Ø3Ø93Û3Ý:MM@“MµMµ@”NN1?NNeNNNNN N *•N N oN N N N .NNNN*UNNÛNN1@NNNN*VNN1BNN*WNN1ENNSNN*XN!N!#N"N"*YN$N$1FN%N%/N&N&—N'N(1GN*N+1IN,N, N-N.1KN0N11MN2N2N3N31ON4N4@•N6N61QN8N8¦N9N9jN:N:N;N=1RN>N>!“N?N?1UNBNB1VNCNCÚNENEÀNGNI1WNKNKXNLNO1ZNPNP%ÎNRNS³NTNT1^NUNU2NVNV1_NWNW*ZNXNX–NYNY(N\N\1`N]N]ßN^N^1aN_N_SN`Na1bNbNb@–NfNf1dNiNi@—NkNk@˜NmNm@™NpNpüNqNq@šNsNs@›NvNw@œN~N@žN€N€1gN‚N„@ N…N…1hN†N†”NˆNˆ0N‰N‰=NŠNŒ1iNN<NŽNŽ*^NN*—NN/iN‘N‘*_N’N”1lN•N•®N˜N˜ÕN™N™•NšNšÝN›N›@£NœNœ1oNžNž#iNŸNŸ˜N N¡cN¢N¢@¤N¤N¤fN¥N¥°N¦N¦eN§N§ÐN¨N¨ñN©N©@¥N«N¬@¦N­N­*`N®N®@¨N°N°@©N²N²!¾N³N³@ªNµN¶@«N¹N¹@­NºNº‚N»N»1vN¼N¼@®N¿NÉ@¯NÊNÊ1yNËNËžNÍNÏ@ºNÑNÑ@½NÓNÚ@¾NÜNß@ÆNáNá@ÊNãNã@ËNäNä*bNåNå²NèNî@ÌNðN÷@ÓNûNý@ÛNÿO@ÞOOîOO@àOO @äO O@èOO@ñOO©OO @ôO"O"@úO$O'@ûO*O-@ÿO/O0AO2O4AO6O6AO8O?A OAOAAOCOCAOFOIAOLOWAOXOXâOYOY& OZOdA#OeOe,OgOgA.OiOlA/OnOpA3OsO…A6O†O†&O‡O‹AIOOANOO’AOO”O•ASO–O– O—O˜AUOšOžAWO O¡A\O£O£A^O¥O¯A_O²O³AjOµO·AlO¹O»AoO¿OÅArOÇOÇAyOÉOËAzOÍOÑA}OÓOÔA‚OÖOÝA„OÞOÞ#ƒOßOáAŒOãOæAOèOêA“OìOïA–OñOñAšOóOøA›OúOúA¡OþPA¢PPA¥PPA¦P P $$P PA©PPA®PP1AºP3P3AÎP5P7AÏP9P<AÒP>P>AÖP@PCA×PEPQAÛPSPSAèPUPWAéPZPeAìPhPpAøPrPxBPzP{BP}P€B P‚PƒBP…P…BP‡PˆBP‹PŽBP‘P’BP”P–BP˜P˜hP™PžBP¢P£B"P¥P¥B$P§P©B%P¬P¸B(PºP»B5P½P¿B7PÁPÂB:PÄPÈB<PÉPÉ&ÀPÊPËBAPÍPÏBCPÑPÑBFPÓPØBGPÚPÛBMPÝPÞBOPàPàBQPãPêBRPìPñBZPóPöB`PøPùBdPûPûBfPýQ BgQQBwQQB€QQBQQ"B‚Q$Q&B†Q)Q*B‰Q-Q.B‹Q0Q5BQ7Q=B“Q?Q?&ØQ@Q@1žQAQAÇQCQC èQDQDðQEQEBšQFQF¼QGQG QHQHßQIQIþQJQJB›QKQK&òQLQL^QMQM'QNQN1 QPQP1¡QQQQ_QRQRÀQTQU1¢QVQWBœQYQYBžQZQZ$=Q[Q[BŸQ\Q\1¥Q]Q_B QaQdB£QeQeçQgQgæQhQh^QiQi1¦QjQj#†QkQkñQlQn1§QpQp1ªQqQq/QsQs1«QtQtQuQu7QvQv1¬QwQwQxQx§QyQy1­Q{Q{1®Q|Q|êQ}Q}[Q€Q€1¯QQB§Q‚Q‚/Q…Q‡1°QˆQˆB¨Q‰Q‰1´QŠQЦQŒQŒ¥QQ‚QQ%:QQQ‘Q‘ Q’Q’ „Q“Q“ÃQ”Q”B©Q•Q–1µQ—Q—BªQ˜Q˜1¸Q™Q™B«Q›Q›B¬QœQœÔQQžB­Q Q B¯Q¢Q¢B°Q¤Q¦B±Q¨Q©B´QªQ¬1ÀQ¯Q·B¶Q¹Q¹B¿Q»Q¾BÀQÀQÀBÄQÄQÑBÅQÔQÔBÓQÖQØBÔQÛQÞB×QàQà¯QáQáEQäQäBÛQæQçBÜQéQíBÞQïQñBãQóQó1ÆQõQõ>QöQö(QøQøÕQùQù«QúQû1ÇQüQÿBæRRÐRR'‰RR×RRÀRR BêR R /%RRBðRRBñRRRRBöR R!BÿR$R%CR'R+CR-R.CR0R3C R5R;CR=R=CR?RDCRFRGCRIRLCRMRM#¤RNRRC"RTRVC'RZR_C*RaReC0RgRgC5RiRuC6RwRxCCRzR}CERR„CIR‡RCORR”CVR–R™C[R›R›éRœRC_RžRž0€RŸR¤CaR¦R¦‹R¨R¯CgR±RµCoR¹R¹CtR»R¼CuR¾RÃCwRÅRÅC}RÇRÇC~RÉRÉCRËRËC€RÍRÍCRÐRÐC‚RÒRÓCƒRÕRÙC…RÛRÛCŠRÝRàC‹RâRäCRæRçC’RéRéC”RëRëC•RïRõC–R÷RøCRùRùYRúRú]RûRüCŸRþSC¡SS>SSËSSC¦SSuS S C§S SCªSS]SSC­SS-SSC¯SSìSSC°SSâSSC±SS$C³S&S&C¹S*S*CºS-S1C»S3S4CÀS7S7CÂS8S8ïS9S9CÃS:S:ÖS;S@CÄSASAôSCSC¶SDSD1èSESEGSFSFCÊSGSG¥SHSH«SISJ1éSLSM1ëSNSNWSOSOCËSQSQ1íSRSRmSSSS USTSTCÌSUSUÐSVSV1îSWSW"´SXSXiSZSZCÍS\S\ùS^S^1ïS_S_CÎS`S`øSaSb1ðScSdSfSgCÏShSh1òSiSiæSkSk1óSlSlCÑSnSn1õSoSo0SpSpCÒSqSqSrStCÓSuSuSwS}CÖSSCÝS‚S‚sS„S„0'S…S†CÞS‰SCàS’SšCçSœS CðS¢S©CõS¬S®CýS°S°DS²S²DS³S³ŠS´S´DS¶S¶úS¹S¹DS»S»2 S¿S¿ûSÁSÂ2 SÃSÃÏSÈSÉHSÊSʆSËSË\SÌSÌDSÍSͽSÎSÎDSÑSÑ/tSÔSÔDSÖSÖDS×S×2SØSÙDSÛSÛD SÝSÝD SßSß2SàSáD SâSã2SäSäSåSæ2SèSéDSêSê&²SëSëDSìSìySíSîDSïSï*øSðSðjSñSñDSòSò"SóSó2SõSöDS÷S÷+äSøSø2SùSýDTTDTTDTTDTT'VT T dT T ‰T T D T T xT T wTTvTTuTTD!TTtTTD"TTrTTD$TT2TT!D(T#T2D.T3T32T4T4©T5T9D>T;T>DCT@TADGTBTB"TCTCDITETEDJTFTF'DTGTGDKTHTH'CTITI2TJTJ&9TKTKDLTNTPDMTQTQ¤TRTWDPTXTX&!TYTY2T[T\DVT_TgDXThTh']TjTlDaToTxDdTzT|DnT}T}&T~T‚DqT„T„DvT†TˆDwTŠT’DzT”T–DƒT˜TD†T T "pT¡T¡DŒT¢T¢"ÑT£T´DT¶T·DŸT¸T¸!TºT»D¡T¼T¼'LT½T¿D£TÀTÀ\TÁTÁ'MTÂTÈD¦TÉTÉ!üTÌTÚD­TÜTàD¼TáTá$TâTâDÁTäTäDÂTåTå#ÿTæTëDÃTíTîDÉTñTóDËT÷TøDÎTúTýDÐTÿTÿDÔUUDÕUU DÖUUDàUUDåUUDæUUDèU U DëU"U$DìU&U'DïU*U*DñU,U9DòU;U<EU>UAEUCUEEUFUF’UHUSE UUUWEU\U_EUaUgEUjUjE#UlUnE$UuUxE'U{UƒE+U„U„22U†U†23U‡UE4U‘U•E=U˜UšEBUœUœ,!UUŸEEU¡U¥EHU¦U¦27U§U©EMUªUª28U«U«EPU¬U¬'lU­U­EQU®U®'kU°U³ERUµU·EVU¹U¹EYU»U»EZU½UÀE[UÂUÆE_UÇUÇîUÈUÖEdUÙUÝEsUßUßExUáUìEyUïUïE…UòUóE†UõU÷EˆUùUúE‹UüVEVVE”VVE•VV E–V VE˜VVEVVE¤V#V$E©V'V'E«V)V*E¬V,V6E®V8V;E¹V=VBE½VEVFEÃVHVJEÅVLVNEÈVPVPEËVSVTEÌVWV\EÎV^V^EÔV`V`EÕVbVfEÖVhVi2RVjVtEÛVvV|EæV~V‡EíVŠVŠE÷VŒVEøV“V•EýV—VšFVœVFV V FV¢V¢2^V£V£FV¥V¨FVªV¯F V²V·FV¼V¾FVÀVÃFVÅVÆFVÈVÎF!VÑVÑF(VÓVÔF)V×V×VØVØ”VÚVÛF+VÝVÝF-VÞVÞ¨VßVßÜVàVåF.VçVçF4VêVêkVëVëF5VíVîF6VðVðF8VñVñ2sVòVõF9V÷V÷F=VùVúF>VýWF@WW FHW W jW W FMWWFOWWFPWWFSWWFTWWFUWWFXWW¼W W FYW"W#FZW&W'F\W(W(TW)W*F^W,W,F`W-W-îW.W0FaW3W4FdW7W;FfW>W>FkW@WBFlWEWEFoWGWGFpWIWOFqWPWP'ŸWQWQFxWRWRWWWWFyWYWbFzWdWfF„WhWkF‡WmWsF‹WtWt2WuWwF’W{W}F•WW€F˜W‚W‚'¤WƒW†FšWˆW‰FžW‹WŒF WWF¢W’W•F£W—W›F§WW§F¬W©W®F·W°W°F½W²W¶F¾W¸WºFÃW¼W½FÆW¿W¿FÈWÀWÀ2•WÁWÃFÉWÆWÈFÌWËWÌFÏWÎWÐFÑWÒWÖFÔWØWÚFÙWÜWÝFÜWßWåFÞWçWçFåWéWéFæWìWùFçWúWú2˜WûWýFõXXFøXX¥XXFúXX$ýXXFýXXGXXGXXGXXG X X!G X#X%GX'X*GX,X.GX/X/2™X0X;GX=X=G%X?XAG&XDXDG)XHXOG*XQXUG2XWX[G7X]X^G<XaXeG>XhXiGCXkXmGEXoXrGHXtXvGLXyXƒGOX…X‹GZXŽX”GaX—XšGhXœX¡GlX£X£GrX¥X¦GsX¨X©GuX«X¬GwX®X¯GyX±X³G{X¸X¿G~XÁXÂG†XÅXÊGˆXÌXÌGŽXÎXÏGXÑXßG‘XâXåG XçXéG¤XëXì2¼XîXòG§XóXó$XôXô ùXöXöG¬X÷X÷YXùXù1XúXÿG­YYOYY2ÅYY2ÇYYG³Y Y G´Y Y 2ÈY Y !ƒYYGµYY2ËYY2ÍYY2ÎYY^YYG¶YYšYYYYG¹YY G»Y"Y"+ Y$Y$2ÑY%Y%G½Y'Y'ªY)Y)¦Y*Y*•Y+Y,2ÒY-Y-(#Y.Y.2ÔY/Y/G¾Y1Y12ÖY2Y2G¿Y4Y42ØY7Y76Y8Y8ÎY9Y9üY:Y:GÀY<Y<GÁY>Y> ×Y@YAGÂYBYB2ÜYDYEGÄYGYG*YHYH ?YIYJ2ßYKYKGÆYNYNGÇYOYO2âYPYP"®YQYQGÈYSYSGÉYTYT DYUYXGÊYZY]GÎY`Y``YaYa_YbYcGÒYeYeGÔYgYlGÕYmYm2ïYnYnGÛYpYrGÜYsYs$YtYtGßYvYyGàY{YˆGäYŠYŠGòYYGóY’Y“G÷Y–Y™GùY›Y›GýYYžGþY Y¬HY®Y¯H Y±Y¶HY¹YºHY»Y»ÜY¼Y¾HYÀYÁHYÃYÃHYÅYÔHYÖYÞH-YàYáH6YãYæH8YèYîH<YñZHCZZHTZZ#µZZ HUZ Z H[ZZH\ZZH]ZZH^ZZH_ZZ HgZ#Z#HjZ%Z%HkZ)Z)HlZ-Z/HmZ1Z9HpZ<Z<HyZ>Z>HzZ@Z@H{ZAZA‘ZBZDH|ZFZJHZLZMH„ZPZSH†ZUZXHŠZZZ`HŽZbZbH•ZdZgH–ZiZjHšZlZmHœZpZpHžZtZxHŸZzZ}H¤ZZH¨ZƒZ„H©ZŠZŒH«ZŽZH®Z’Z•H±Z—Z—HµZšZŸH¶Z¢Z¢H¼Z¤Z§H½Z©ZªHÁZ¬Z¬HÃZ®ZÂHÄZÄZÄHÙZÆZÍHÚZÐZÐHâZÒZÒHãZÔZãHäZåZæHôZèZîHöZñZñHýZóZûHþZýZýIZÿZÿI[[I [[I [[ I [ [ I[[I[[I[[I[[I[[I[ [(I[*[*I&[,[0I'[2[2I,[4[4I-[6[8I.[<[@I1[C[CI6[E[EI7[G[HI8[K[NI:[P[P/[Q[Q[S[SŽ[T[TI>[U[U3[V[WI?[X[XO[Y[\IA[][]3[_[_IE[b[fIF[i[lIK[n[nIO[p[sIP[u[uIT[w[xIU[z[}IW[[I[[€[€,[[I\[ƒ[„I][…[…Ø[‡[‰I_[‹[‹Ib[Œ[Œ[[Ic[’[“If[•[™Ih[š[šÅ[›[¨Im[ª[®I{[°[°I€[³[¶I[¸[¹I…[½[ÇI‡[É[ÎI’[Ð[ÔI˜[Ö[ÙI[Û[ÛI¡[Ý[ìI¢[î[óI²[õ[öI¸[ø[ø,[ù[ùIº[ú[úG[û[üI»[þ[þI½[ÿ[ÿ(\\I¾\\  \\$s\\I¿\\'ê\ \ IÃ\ \ ,\ \IÅ\\?\\IÈ\\g\\IÉ\\3m\\IÊ\\IÌ\\Ž\\IÍ\\3o\\ IÎ\"\",\$\$;\%\%IÐ\'\'\(\(3q\*\*IÑ\,\,IÒ\-\-3s\0\1IÓ\3\4IÕ\7\7I×\8\83u\9\9J\:\:3v\;\<IØ\=\=\>\BIÚ\D\QIß\S\TIí\U\UË\V\VIï\X\YIð\[\^Iò\`\jIö\l\mJ\n\o3’\q\q,\s\tJ\v\vJ\y\|J\~\J \\‚J \†\†J\ˆ\J\\šJ\›\›3—\œ\J!\Ÿ\±J#\³\³J6\µ\¸J7\º\ÁJ;\Ä\ÌJC\Î\ÐJL\Ò\ÔJO\Ö\ÛJR\Þ\áJX\ä\æJ\\è\êJ_\ì\ñJb\ô\õJh\ö\ö#À\÷\ûJj\ý\ýJo\ÿ]Jp]]Ju] ]Jw]]J|]]J~]] J†]"])JŠ]-].J’]0]:J”]<]CJŸ]E]EJ§]G]GJ¨]I]LJ©]N]NJ­]P]SJ®]U]UJ²]X]YJ³][]^Jµ]b]cJ¹]e]eJ»]g]iJ¼]k]mJ¿]o]oJÂ]q]tJÃ]v]wJÇ]y]zJÉ]|]‚JË]„]„JÒ]†]JÓ]]JÛ]’]•JÜ]—]—Jà]™]šJá]œ]¢Jã]§]ªJê]¬]²Jî]´]´3·]µ]µJõ]·]ºJö]¼]½Jú]À]ÀJü]Â]ÃJý]Å]ÇJÿ]É]ÉK]Ë]ÍK]Ï]ÖK]Ø]ØK]Û]Û3Ã]Ý]Þ3Ä]ß]ßK]à]à¦]á]âK]ã]ã0]å]å3È]æ]æ]ç]çK]è]è3É]é]éK]ë]ë3Ê]î]î#]ï]ðK]ñ]ô3Ë]õ]õí]÷]÷!y]ù]ùK]û]ûK]ý]ýK]þ]ÿ^^^^^^K^^K^ ^ K^^K ^^K$^^D^^K*^^^^%K,^&^& ÷^'^)K3^+^+K6^-^-Y^.^.K7^/^/3Ó^0^1K8^3^4K:^6^7K<^8^8×^;^EK>^G^GKI^J^OKJ^S^UKP^W^YKS^[^dKV^f^pK`^r^s3Ù^t^tº^u^uKk^v^vâ^w^w3Ü^x^xÂ^y^yKl^z^z3Þ^{^|Km^}^~3à^^ü^€^„Ko^†^Kt^^‘K|^“^—K^™^œK„^ž^ Kˆ^¢^¨K‹^ª^®K’^°^·K—^¸^¸–^¹^¹KŸ^¾^¾K ^Á^ÌK¡^Î^ãK­^å^êKÃ^ì^ìKÉ^î^óKÊ^ô^ô%@^ö^øKÐ^ú^üKÓ^þ_4*__KÖ__!ì__ KÛ_ _ 42_ _ KÞ__E__’__Kà__45__¿__Kâ__46__t__Kã__47__Kä__Kå__48_ _*Kæ_-_0Kñ_1_14:_3_:Kõ_<_<Ký_>_>Kþ_@_AKÿ_C_FL_H_LL_N_OL _P_Q4>_R_RL _S_Sè_T_UL _V_V"í_W_W/T_X_YL_[_]L_a_a»_b_bL_d_dL_e_e!ç_f_f"_g_g4E_i_mL_o_qL_s_s+¿_t_tL_v_yL_{_ŒL#__“L5_•_™L9_›_œL>_ž_¡L@_¥_¦LD_¨_¯LF_²_·LN_¹_¹LT_»_ÁLU_Ã_É_Ä_Ä_Å_Å4O_Æ_ÆL\_É_ÉL]_Ì_ÍL^_Ï_ÒL`_Ô_ÙLd_Ü_ÜLj_Ý_Ý _Þ_ÞLk_à_áLl_ã_åLn_ç_èLq_ê_ëLs_í_ñLu_ó_õLz_÷_øL}_ú_ûL_ý`L` `L‹``Lš` `"L `$`/L£`1`5L¯`7`7L´`9`<Lµ`?`GL¹`I`MLÂ`P`PLÇ`R`ULÈ`X`[LÌ`]``LÐ`b`lLÔ`m`m4a`n`pLß`r`sLâ`u`}Lä``Lí`ƒ`ŽLð``Lü`’`’Lý`”`—Lþ`š`M`Ÿ` M`¢`¤M`¦`©M `ª`ªZ`«`­M`¯`ÁM`Ã`ÍM%`Î`Î4q`Ï`ÏM0`Ñ`ÑM1`Ó`ÕM2`Ø`äM5`æ`éMB`ë`üMF`þaMXaaM\aa M`a aMdaaMnaaMoaa!Msa#a$Mva&a)Mxa+a,M|a.a0M~a2a2Ma4a4M‚a6a7Mƒa;aBM…aDaOMaQaVM™aXa[MŸa]a_M£aaahM¦ajalM®anauM±avav4“awawM¹ayazMºa|a~M¼a€aM¿a‚a‚4•aƒaƒMÁa‡a‡MÂa‰aŽMÃaa”MÉa–a–MÎa˜a›MÏaaMÓaŸaŸMÔa¡a¢MÕa¤a¤M×a§a¸MØaºaºMêa¼a¼Mëa¾a¿MìaÁaÃMîaÅaÍMñaÐaÒMúaÔaÔMýaÖaÖMþaØaØMÿaÞaàNaãaëNaíaîN aðaòNaôbNbbNbbN!bbSb b –b b ”b b N#bb—bbN%bbŠbbªbbN&bb7bbN(bb>bbN)bb4³bbN-bb4´bbN.b b 4µb!b!N/b"b"`b#b'N0b)b4N5b6b6úb7b7(¼b8b8ûb:b;NAb=bCNCbFbJNJbKbKObLbL4¾bMbM{bNbNNObPbUNPbXb\NVb^b^N[b`btN\bvbwNqbyb~Nsbbib€b„Nyb†bŠN~bŒbŒNƒbŽbN„b‘b˜N†bšbœNŽbžb¢N‘b¤b¦N–b¨b±N™b³b¶N£b¸b¹N§b»b¿N©bÂbÂN®bÄbÔN¯bÖbÝNÀbßbãNÈbåbéNÍbëcNÒcc Nëc cNîccNõccNùcc%Nüc'c-Oc/c/O c2c4O c6c6Oc8cQOcTcZO+c\c\O2c^c_O3caccO5ceceO8cgciO9ckckO<cmcrO=cucxOCczc}OGcc…OKc‡cŠORcŒcŒ½cc’OVc”c”O\c–c™O]c›c¥Oac§cµOlc·c¸O{cºc¾O}cÀcÀO‚cÂcÐOƒcÒcÓO’cÕcáO”cãcåO¡cçcëO¤cícúO©cýcýO·cÿdO¸ddO¼d dO¾ddOÆddOÍdd(OÐd*d0OÛd3d7Oâd9d:Oçd=dHOédJdKOõdMdNO÷dPdTOùdXdYOþd[daPdediPdkdpP drd{Pd}d}PddPd‚d…Pd‡dŒP"dd“P(d•dšP-dœd P3d¢d¦P8d©d©P=d«d®P>d°d³PBdµdµPFd·dÅPGdÇdÇPVdÉdËPWdÍdÐPZdÒdÒP^dÔdÔP_dÖdÛP`dÞdÞPfdàdéPgdëdíPqdïdôPtdödøPzdúdÿP}ee5eePƒeeP„e e P‰e ePŠeePeeP—e e&Pše)e.P¡e/e/5e2e3P§e4e55e6e9P©e;e;P­e=e?P®eAeAP±eCeCP²eEeFP³eHeJPµeLeOP¸eQeQP¼eSeYP½e[e^PÄebehPÈejemPÏeoepPÓerezPÕe{e{5e|e|PÞe~e…Pße‡e‡5eˆe‰Pçe‹eŒPéeŽeŽPëee–Pìe—e—e™e™Póe›e¢Pôe¤e¥5"e§e¨Püe©e© 7eªe°Pþe²e³Qe¶e¸Qe¹e¹@e»e½Q e¿e¿Q eÁeÁ$¥eÂeÆQeËeÐQeÒeÓQeÖe×QeÙeÛQeÝeßQ eàeá57eâeãQ#eåeå5;eæeæåeçeçQ%eèeèeéeéˆeìe÷Q&eúeýQ2eÿfQ6ffQ8ff%•ffQIffQKffQLff6f f"QOf$f$QRf%f%Yf&f(QSf+f+QVf-f.QWf/f/"f0f6QYf9f<Q`f>f?QdfAfEQffGfGQkfIfLQlfOfOQpfQfWQqfYf\Qxf]f]Uf^f_Q|fafbQ~fdflQ€fnfnafoftQ‰fvf|Qf~f~Q–f€f„Q—f†fŽQœffQ¥f‘f‘,f”f™Q¦ffQ¬fŸf¢Q­f¦f«Q±f®f³Q·f´f´%bfµfµQ½f·fÁQ¾fÄfÄQÉfÆfÌQÊfÏfÏQÑfÒfÒQÒfÖfÖQÓfØfÞQÔfàfàQÛfãfäQÜfæfæQÞfèfèQßféfé5ZfëfîQàfðfð5[fòfò¬fófó±fôfôfõfõ&föf÷QäføføafùgQæggµggQïggÅg g 5eg g Qñg g Ëg gQòggQögg$îggQøggQüggQýgg5ggg#Qþg&g'Rg(g(Úg*g,5ig-g-Rg.g/5lg1g1•g3g4Rg5g5:g6g>Rg?g?ˆg@gCRgEgIRgKgQRgSgSR!gUgWR"gYgZR%g\g^R'g_g_g`gdR*gegegfgfR/ghgjR0glgmR3gogpR5gqgqÑgrgR7ggREgƒg‡RFg‰g‰RKg‹g•RLg—gšRWgœgœ2gg£R[g¥g«Rbg­g°Rig²g»Rmg¾g¾RwgÀgÆRxgÈgÔRgØgàRŒgâgçR•gégëR›gìgìÖgígøRžgúhRªhh R¶hhR¼hhR¾hhRÂhh$hhRÃhhRÄhh"RÅh%h&RÌh(h+RÎh-h/RÒh1h5RÕh7h<RÚh=h=5~h>h>Ràh@hFRáhHhURèhYhYRöh\h]R÷h_hiRùhkhkShmhoShqhrShthyS h{hƒSh…h‡Sh‰hShh”S!h–h—S'h›hS)hŸh¤S,h¦h¶S2h¹hºSCh¼h¼SEhÀhÀSFhÂhÂSGhÄhÄ5hÅhÉSHhÊhÊ5hËhÖSMh×h×5hØhØSYhÚhÚSZhÜháS[hãhäSahæhìSchîhýSjiiSziiS|i iSiiSiiSŽii(S’i*i*Sœi-i-Si/i0Sži2i9S i;i=S¨i?iBS«iDiES¯iHiLS±iNiOS¶iQicS¸ieifSËihilSÍimimÏiniqSÒisi~SÖi€i„Sâi†iŠSçiiŽSìii‘Sîi“iœSðižižSúi i¡Sûi£i·Sýi¹i¹Ti»i¿TiÁiÄTiÆiÇTiÉiÐTiÓiÔT&iØiÙT(iÛiÛT*iÝiàT+iâiâT/iäièT0iêiîT5iñiôT:iöiùT>iûjTBjj TJjjTTjjTUjjT^jj#T_j%j+Tfj.j2Tmj4j6Trj8jATujDjDTjFjF5ÅjGjIT€jKjKTƒjMjVT„jXj[TŽj]jbT’jdjkT˜jmjmT jojoT¡jqjsT¢jvjvT¥jxjyT¦j|j|T¨j~jT©jƒj…T­j‡j‡T°j‰j‰T±jŒjŽT²jj—TµjšjœT½jžj¦TÀj¨j¯TÉj³j´TÑj¶j»TÓj½j½TÙjÁjÃTÚjÅjÇTÝjËjÍTàjÏjÑTãjÓjÓTæjÙjâTçjäjåTñjçjèTójêjìTõjîjñTøjójóTüjöjöTýjøjüTþkkUkkUkk UkkU kkUkk5õkkUk k ék!k%Uk'k(Uk,k-U k/k/U"k1k4U#k6k?U'kAkCU1kEkNU4kPkQU>kSkVU@kYkYUDk[k\UEk^kaUGkbkd5ûkeke<kfkf5þkgkgUKkikjULkmkmUNkokoUOkrktUPkvkxUSkyky6k{k{6k|k|UVk~k„UWk†kU^k‘k›Uhkžk§Uskªk«U}k­k²Uk³k³6k´k·U…kºk½U‰k¿kÉUkÊkÊ6kËkËWkÌkÌ6kÍkÍXkÎkÏ…kÐkÐU˜kÒkÓU™kÔkÔkÕkÙU›kÚkÚ6kÛkÛOkÞkäU kækæ6kçkèU§kêkìU©kïkðU¬kòkóU®kõkõU°k÷kùU±kûl U´l l UÃllBll6 llUÆll×llUÇllUÎll,UÏl.l0UÝl2l3Uàl4l760l8l8­l;l;Uâl=lAUãlBlB64lClCUèlFlGUélIlPUëlRlRUólTlUUôlWlWUölYl]U÷l^l^"l_lbUüldlkVlmlmVloltV lvlvVlxl{Vl}l~Vl€l‰VlŠlŠ68l‹lV l’l–V&l˜lV+lŸlŸV1l¡l§V2l©l®V9l°l´V?l¶lÇVDlÉlÉ#SlÊlÊVVlÌlÍVWlÏl×VYlÙlÞVblàlãVhlålåVllçlïVmlðlð$mlñlóVvlõlþVymmVƒmmV…mmV‡mmV“mm V™m"m"Vm%m%Vžm'mHVŸmJmKVÁmMmOVÃmQmTVÆmXmZVÊm\m\VÍm^mjVÎmlmpVÛmtm€Vàm‚mŽVímm™Vúm›m¡Wm£m¤W m¦m¬W m®m¯Wm²mµWm·m¸WmºmÀWmÂmÍW#mÏmæW/mèmýWGnnW]nnW^nnW_nnW`nnWhnnWjnnWonn)Wtn+n6Wn8nAW‹nCnGW•nInKWšnMnNWnQnVWŸnXnXW¥nZniW¦nknkW¶nnnoW·nqntW¹nvnzW½n~n€WÂn‚nƒWÅn…n†WÇnˆn‰WÉnŒnWËn’n”WÐn–n™WÓn›n§W×nªn«Wän®n´Wæn¶n·Wín¹nØWïnÚnÚXnÜnâXnänæXnènéXnënïXnñnòX!nônùX#nûoX)oo X2o oX8ooX;ooX@ooXCoo'XDo)o3XNo5o<XYo>oAXaoCoCXeoEoGXfoKoKXioMoUXjoWoXXsoZodXuofogX€oiopX‚orotXŠovoxXozo‚Xo„o‰X™o‹oŽXŸoo—X£oœoœX«ožožX¬o o¶X­o¸oºXÄo¼oÄXÇoÆoÏXÐoÑoÒXÚoÔoÕXÜoØoØXÞoÚoäXßoæoéXêoëo÷XîoúoüXûoþpXþppYp pYppY pp$Yp&p,Yp/p5Y&p7p<Y-p>pFY3pHpJY<pLpLY?pOpRY@pUpXYDpZp[YHp]pfYJphpjYTpkpk%Åplpl6âpmpmYWpopoYXpppp>pqpqYYptpvYZpxpxY]pzpzY^p|p€Y_p‚p†Ydp‰pŠYipŽpŽYkp‘p–Ylp˜pšYrpœpYupŸpŸYwp¡p¡Yxp¤p¤Yyp©p©Yzp«p¬Y{p­p­bp®p±Y}p³pµYp·p¹Y„pºpº¬p»p¾Y‡pÀpÃY‹pÅpÈYpÊpËY“pÍpÎY•pÏpÏ#pÑpÔY—p×pâY›päpäY§pæpéY¨pëpíY¬pïpñY¯pópôY²pöpýY´pÿqY¼qqY¾qqY¿qqYÀq qYÁqqkqqYÇqqYÈqq YÒq!q!Kq"q#YÕq%q%Y×q&q&jq(q(YØq.q2YÙq6q6YÞq:q:Yßq<q<YàqAqGYáqIqNYèqPqPYîqRqVYïqXqZYôq\qjY÷qlqlZqnqnZqpqpZqrqsZ qxqxZ qzq{Z q}q}Zq€q‚Zq„qŠZqqZq’q’Zq”q•Zq—q¢Zq¤q¥Z*q§qªZ,q¬q¬Z0q¯q³Z1qµqµZ6q¸qºZ7q¼qËZ:qÎqÐZJqÒqÒZMqÔqÜZNqßqâZWqäqèZ[qìqîZ`qðqòZcqôqõZfqøqùZhqûrZjrrZsr r Zvr r ZwrrZyrrZzrrZ|rrZr"r#Z‚r&r'Z„r(r(7r)r)Z†r*r*7r,r,Z‡r-r-£r0r0"§r1r27r5r87r9r:Zˆr;r;Ïr<r<ZŠr=r=žr>r?7r@rBZ‹rDrDZŽrFrFZrGrG7rHrMZrOrOZ–rRrSZ—rVrVZ™rXrXZšrYrY)BrZrZZ›r[r[%˜r]rcZœrfrgZ£rirjZ¥rlrlZ§rnrpZ¨rrr‚Z«r„r“Z¼r•r˜ZÌršr›ZÐrrªZÒr¬r¬Zàr­r­|r®r²Zár´rºZær½rÆZírÈrÎZ÷rÐrÒZþrÔrÔ[rÖrÜ[rÞrä[ ræræ[rèrô[rös[ss[*ss[+s s [-ss[0ss[2ss[5ss[:s!s'[?s)s<[Fs>s@[ZsBsE[]sIsJ[asLsR[csWs[[js]sc[osesp[vsrss[‚susx[„szsƒ[ˆs„s„ís…sŠ[’s‹s‹)GsŽsŽ[˜s‘s˜[™s›s›[¡ss[¢sŸs¢[£s¤s©[§s«s°[­s²sÀ[³sÂsÃ[ÂsÅsÔ[ÄsÖsÞ[Ôsàsà[Ýsãsë[Þsísî[çsñsò[ésôsú[ësüt[òtt [øtt\tt\tt\tt\tt\ t t&\ t(t6\t8t8\ t:t:\!t<t<\"t?tD\#tFtF\)tJtK\*tMtR\,tTtU\2tWtW\4tYt\\5t^t`\9tbte\<tgtj\@tmts\Dtutw\Ktyty\Nt|tƒ\Ot…t‹\WtŽtŽ\^tt\_t’t’\`t”t•\at—t˜\ctštš\etœtœ\ftžt£\gt¥t«\mt­t­\tt¯t²\utµt¹\ytºtº7St»t»\~t½tÃ\tÅtÆ\†tÊtË\ˆtÏtÏ\ŠtÒtÒ\‹tÔtÛ\ŒtÜtÜ7ZtÝtå\”tætæ§tçté\tìtì\ tîtò\¡tôtø\¦tûtû\«týu\¬uu\µu u\·uuuu\Äuu#Puu\Åuuu!u!\Éu"u"Xu#u#›u%u&\Êu(u*†u+u+Šu,u,‰u-u/\Ìu0u1„u2u2‹u3u37au5u57bu7u7\Ïu8u97cu:u:\Ðu;u;u<u@\ÑuDuK\ÖuLuL ouMuN\ÞuOuO#=uQuQ\àuSuT\áuYu]\ãu_u`\èubub7iucug\êuiuj\ïukuk¶ulum\ñuouo\óupup7kurut\ôuuuu7muvuvzuwuy\÷uzuz7nu}u}\úu~u~%luu€7ou‚u‚7quƒu„\ûu†u‡\ýu‰u‰\ÿuŠuŠu‹uŒ7suŽu]uu7uu‘u‘]u’u’}u”uš]uu] uŸu¥] u§u§]uªu¬]u®u¶]u¸uÅ]uÇuÒ]-uÔuÛ]9uÝuä]Auæuë]Iuíuí]Ouïv]Pvv]cvv]dvv ]evv]kvv+]nv-v-]‡v/v5]ˆv8v8]v:v@]vBvC]—vFvI]™vLvN]vPvP] vRvT]¡vVvZ]¤v\v\]©v^ve]ªvgvr]²vuvu]¾vvvv7ûvxvx~vyvy]¿vzvzþv{v|]Àv}v}7þv~v~vv„]Âv†v‹]ÈvŽv“]Îv•v–]Ôv™vž]Öv¤v¤]Üv¦v¦]Ývªv«]Þv­v­]àv®v®8v¯v²]áv´vµ]åv·v»]çv½v¾]ìv¿v¿vÂvÆ]îvÈvÊ]óvÍvÔ]övÖvØ]þvÚvß^vává^vãvæ^vçvçÉvévê^ vìví^vîvîÕvïvñ^vòvò8vóvó^vôvô8võvõ^v÷vü^vþvþ!tww!uww^ww^w w !w w ^ w w !kw w ^!ww^"ww^&ww^'ww^*ww8w w ^+w"w)^,w-w-^4w/w/^5w1w>^6w@w@8wAwA^DwCwG^EwJwR^JwTwV^SwYw\^Vw^wc^Zwewo^`wywy^kw|w}^lw~w8w€w…^nw‡w‰^tw‹w^ww‘w’^|w•w•^~w—w—^w™w£^€w¥w¥^‹w§w­^Œw°w·^“w¹w½^›w¿w¿^ wÂwÂ^¡wÄwÄ^¢wÇwÇ^£wÉwÊ^¤wÌwÌ^¦wÍwÍÄwÎwÐ^§wÓwÕ^ªw×wÚ^­wÛwÛ8'wÜwÜ^±wÞwÞ8(wàwà^²wâwâ8)wãwã^³wåwå^´wçwé^µwëwò^¸wówóŽwöx^Àxx^Îx x ^Ðx x^Ñxx^Þxx^ßxx#^áx%x5^æx7x<^÷x>x@^ýxCxC_xExE_xGxJ_xLxP_xRxR_ xUxW_ x\x^_x`x`_xbxb_xdxe_xhxr_xtxt_!xwxw_"xyx|_#x~x€_'xx8/xƒx‡_*x‰x‰_/xŒx_0x‘x‘_4x“xœ_5xžx¥_?x§x­_Gx¯xµ_Nx¹x¼_Ux¾x¾_YxÁxÁ_ZxÃxÆ_[xÈxÉ__xÊxÊ%`xËxÑ_axÔxÕ_hxÙxÛ_jxÝxã_mxåxå_txçxê_uxìxí_yxïxï_{xòxõ_|x÷x÷_€xùxÿ_yy_ˆyy_Šyy_Œy y _y y _Žyy_yy_yy_•yy_—yy_˜y!y!_œy#y+_y,y,8Ay-y-_¦y/y1_§y4y5_ªy8y9_¬y:y;8Ey<yB_®yDyL_µyOyW_¾yZye_Çygyk_Óymym8Gyoyp_Øyryt_Úywyz_Ýy|y}_áyy‚_ãy„y…_çyˆyˆ_éyŠy‹_êyy˜_ìyšy_øy y¢_üy¤y¤_ÿy¦y¨`yªy®`y°y´`y¶y·` y¸y¹8Kyºyº yy»y»8My½y¾8Ny¿yÁ`yÃyÃ`yÅyÆ`yÈyÈ`yÉyÉ8QyÊyË`yÍyÏ`yÑyÒ`yÕyÖ`yØyØ`yÜyá` yãyä`&yæyæ$dyçyç`(yéyð`)yöyø`1yúyû`4yýyý`6zz`7zz`8zz`=z z`>zz`Czz`Izz `Oz"z#`Rz&z&`Tz(z(`Uz+z+`Vz.z3`Wz6z7`]z9z9`_z;z@``zBzD`fzFzQ`izTzT`uzVzX`vzZz\`yz_zc`|zgzi`zkzn`„zpzq`ˆztz{`Šz}z`’zƒz`—zz™`¢zœz `­z¢z£`²z¥z¦`´z¨z¸`¶zºzº`Çz¾zÁ`ÈzÃzÅ`ÌzÇzÈ`ÏzÊzÊ`ÑzËzËhzÍzÍ`ÒzÏzÏ`ÓzÑzÑ`ÔzÒzÒ!½zÓzÓ`ÕzÕzÚ`ÖzÜzÜ$ózÝzÞ`Üzßzß/ªzàzàŽzázä`Þzåzå/©zæzç`âzêzë`äzízð`æzözø`êzùzù8zúzû`ízýzý`ïzÿ{`ð{{ `ø{{`ü{{a{{a{ { a {"{&a {({(a{*{6a{8{<a{>{>a#{@{@a${D{Ra%{T{Ta4{V{Va5{X{Xa6{Z{[a7{]{]a9{`{ga:{i{iaB{l{naC{p{{aF{}{~aR{€{€aT{‚{‚aU{„{ˆaV{Š{’a[{”{¢ad{¤{¤as{¦{­at{¯{¯a|{±{±a}{´{µa~{·{¹a€{¾{¾aƒ{À{Áa„{Ä{Äa†{Æ{Ça‡{É{Ìa‰{Î{Ïa{Ñ{Õa{Ø{ëa”{í{îa¨{ð{ôaª{ö{ùa¯{û|a³||a¼| |a¿||aË||aÍ||#aÎ|%|-aÖ|0|0aß|3|3aà|7|9aá|;|Aaä|C|Caë|E|Eaì|G|Jaí|L|Mañ|O|Paó|S|Taõ|V|\a÷|_|`aþ|c|gb|i|lb|n|ob |r|rb |s|s^|t|ub |x|…b|ˆ|b||’b"|”|˜b%|›|›/¤|œ|žb*|Ÿ|ŸÂ|¡|£b-|¤|¤9D|¥|¥b0|§|¨b1|ª|«b3|­|¯b5|±|µb8|¹|Âb=|Å|ÅbG|Ç|ÈbH|Ê|ÎbJ|Ð|ÒbO|Ô|ÙbR|Ü|àbX|â|âb]|ç|èb^|ê|êb`|ì|ìba|î|òbb|ô|ôbg|ö|÷bh|ø|ø™|ú|úbj|û|ûÞ|ý|þbk}}"bm}'})b}+},b“}.}3b•}5}6b›}8}Hb}J}Lb®}N}Vb±}X}Xbº}[}\b»}^}_b½}a}cb¿}f}kbÂ}m}sbÈ}u}wbÏ}y}}bÒ}}b×}ƒ}†bÚ}ˆ}‰bÞ}Œ}bà}‘}”bä}–}–bè}™}£bé}¦}¦9O}§}§bô}©}²bõ}´}µbÿ}·}Âc}Ä}Çc }É}Ìc}Î}Ïc}Ñ}Òc}Õ}ác}ã}äc&}æ}êc(}ì}ìc-}î}ôc.}ö}÷c5}ù}ûc7~~c:~~c;~~c>~~&cN~)~+c[~-~Mc^~P~Zc~\~ccŠ~f~kc’~m~mc˜~o~pc™~r~ƒc›~†~œc­~Ÿ~Ÿ9n~ ~­cÄ~¯~³cÒ~µ~ºc×~½~ÕcÝ~×~ãcö~å~ëd~í~ød ~ú d d&d+5d866c8:dO=?dRBEdUGHdYJPd[QQzTT{UUdbWXdcZcdeendopvdyww/žxd€‚dˆƒƒ9•…‰dŠŠŠ¼‹‹9˜ŒŒÚŽd‘’d‘””d“••$Û––d”šd•žžOŸ¨d™©©¾¬±d£²²9³³d©µ¼dª½½9¡¾Ãd²ÅÇd¸ÉÒd»ÔÕdÅרdÇÛÜdÉÞãdËåædÑèõdÓ÷ùdáû€d䀀’€€€€dꀀN€€d뀀9«€ € 9¬€ € dì€ € E€ €d퀀9®€€dò€€dø€€"dú€$€*dÿ€,€-e€0€1e€3€39°€4€9e €;€;e€=€?e€B€B/<€C€Ce€F€He€J€Me€O€Re€T€Te €V€Ve!€X€Xe"€Z€Ze#€\€_e$€a€be(€d€de*€g€je+€l€le/€o€ye0€}€~e;€€€€€€9½€‚€‚e=€ƒ€ƒ9¾€„€„e>€…€…9¿€†€‡e?€‰€‰€Š€ŒeA€€eD€’€’eF€“€“9Á€•€•eG€–€–9€˜€˜eH€™€™9Àš€eI€Ÿ€¥eM€©€©9Ä€ª€¯eT€±€²eZ€´€´9Æ€µ€µe\€·€¸e]€º€ºe_€¼€Âe`€Ã€Ã"5€Ä€Ä ‚€Å€Êeg€Ì€Ñem€Ô€Þes€à€áe~€ã€ãe€€ä€ä#»€å€íe€ï€öeŠ€ø€þe’e™ eœ /F e¡e«e¯!%e²''e·))e¸+-e¹/3e¼66eÁ8:eÂ=>eÅCDeÇFHeÉJUeÌY\eØ^beÜdgeáiieåkkeæmteçv€eeú†eüf‘‘f““f••f—™fšš­› f ¢¤f¦¬f®®f°µf·Êf"ÌÍf6ÏÓf8ÕÕf=×Ûf>ÝâfCãã9àååfIæç9áèèfJéé9äêêÍìîfKòòfNóó,ôôfO÷ùfPúú9çûûfSüüÑþþ9èÿÿ!ù‚‚fT‚‚®‚‚9ë‚‚Ê‚ ‚ fV‚ ‚ 9ñ‚ ‚ m‚ ‚'‚‚fX‚‚f[‚‚Ú‚‚9ò‚‚)‚ ‚#f`‚%‚%fd‚(‚@fe‚B‚Bf~‚D‚Ef‚G‚Gf‚I‚If‚‚K‚Kfƒ‚N‚Sf„‚U‚_fŠ‚a‚df•‚f‚ff™‚h‚mfš‚n‚nK‚o‚o}‚p‚qf ‚r‚rt‚s‚wf¢‚x‚x9ö‚y‚y0‚z‚zf§‚|‚€f¨‚‚‚…f­‚ˆ‚ˆ9ù‚Š‚‹f±‚‚“f³‚”‚”9ÿ‚—‚±fº‚³‚ºfÕ‚»‚»:‚¼‚Åf݂ǂÈfç‚Ê‚Ïfé‚Ñ‚Ùfï‚Û‚Üfø‚Þ‚áfú‚ã‚èfþ‚ê‚íg‚ï‚÷g‚ù‚ûg‚ý‚þgƒƒ gƒ ƒ g ƒ ƒ :Iƒƒg!ƒƒg#ƒƒg$ƒƒg-ƒ ƒ g.ƒ"ƒ-g/ƒ/ƒ/g;ƒ1ƒ5g<ƒ6ƒ6Sƒ7ƒ7gAƒ8ƒ8Uƒ9ƒ:gBƒ;ƒ;:]ƒ<ƒ<gDƒ?ƒHgEƒIƒIXƒJƒTgOƒVƒVgZƒXƒXg[ƒZƒ\g\ƒ^ƒog_ƒsƒxgqƒzƒgwƒƒg}ƒƒƒƒg~ƒ…ƒgƒ’ƒ g‹ƒ¢ƒ«gšƒ®ƒºg¤ƒ¼ƒ¼g±ƒ½ƒ½/Ûƒ¿ƒÌg²ƒÎƒÏgÀƒÑƒÑgƒӃÙgÃۃågʃçƒìgÕƒîƒÿgÛ„„gí„„gî„„gð„ „gò„„gý„„gþ„ „ h„"„-h„/„=h„?„@h„B„Hh„I„I/Ü„K„Nh&„P„Rh*„T„Th-„V„Wh.„Y„ch0„e„ih;„k„qh@„s„zhG„}„~hO„‚„‚hQ„„„„hR„†„‰hS„‹„‘hW„”„”h^„—„˜h_„™„™P„š„¢ha„¤„¤hj„§„²hk„´„´hw„¶„¶hx„¸„½hy„¿„Âh„Ä„Çhƒ„É„Ôh‡„Ö„×h“„Ù„Ýh•„ß„àhš„ã„ãhœ„å„ìh„î„ôh¥„ö„÷h¬„ù…h®……h¶……h·……hÁ……!hË…#…1hÑ…5…5hà…7…Ahá…C…Khì…M…Nhõ…Q…Qh÷…S…[hø…]…^i…`…ni…q…ri…t…|i…~…~i…€…‘i…”…¤i0…¦…¬iA…®…±iH…³…ºiL…½…ÉiT…Ë…Ëia…Í…Óib…Õ…Õii…×…Úij…Ü…ßin…á…æir…è…íix…ï…òi~…ö…ûi‚…ý†iˆ††À††iކ † i‘††i•††i–††i—††'iž†)†*i¨†,†6iª†8†<iµ†>†@iº†C†Ci½†F†Hi¾†K†LiÁ†M†MІN†N¶†O†ViÆY†\iˆ^†_iφa†eiцg†jiÖ†k†k †l†piÚ†q†q!†s†ti߆w†wiá†y†|iâ†}†} l†~†‚i憅†‡i놊†Ži‘i󆓆šiõ†œ†žiý†¡†¥j†§†¬j†¯†±j †³†Ìj†Í†Í\†Î†Ñj(†Ó†Ôj,†Ö†ßj.†â†äj8†æ†æj;†è†ûj<†þ†þjP‡‡jQ‡‡j`‡‡jc‡‡jd‡‡jj‡ ‡*jk‡,‡.jv‡0‡5jy‡7‡8j‡:‡<j‡>‡Cj„‡F‡IjЇK‡gjއh‡h<2‡i‡pj«‡s‡j³‡‡…jÀ‡‡‡‰jŇ‹‡‹jȇ‡jɇ‡”jʇ–‡˜jЇš‡ŸjÓ‡¢‡¤jÙ‡¨‡¨j܇ª‡°j݇²‡Àjä‡Â‡Ìjó‡Ð‡Ôjþ‡×‡Ùk‡Û‡èk‡ê‡ïk‡ò‡ôk‡ö‡÷k‡ù‡ük‡þˆk#ˆˆk)ˆˆk6ˆˆk;ˆˆk<ˆˆ,k?ˆ.ˆ3kMˆ5ˆ9kSˆ;ˆ?kXˆ@ˆ@<^ˆAˆFk]ˆHˆHkcˆJˆJkdˆKˆK̈LˆNkeˆRˆWkhˆYˆ[knˆ]ˆ^kqˆaˆbksˆcˆc¯ˆdˆd÷ˆeˆekuˆgˆgkvˆhˆhl ‰A‰Dl$‰F‰Fl(‰I‰Il)‰K‰Ml*‰O‰Sl-‰V‰dl2‰f‰flA‰i‰olB‰q‰tlI‰v‰wlM‰y‰|lO‰~‰~ƒ‰‰Œ‰‰ƒlS‰…‰ˆlV‰Š‰ŠlZ‰‹‰‹<›‰‰l[‰“‰“l\‰•‰˜l]‰š‰Ÿla‰¡‰¤lg‰¦‰§lk‰©‰ªlm‰¬‰¯lo‰²‰³ls‰¶‰·lu‰¹‰ºlw‰½‰Àly‰Á‰ÁR‰Â‰Âl}‰Ä‰Ìl~‰Î‰Ñl‡‰Ò‰Ò@‰Ó‰Öl‹‰Ù‰él‰ë‰íl ‰ï‰ôl£‰ö‰øl©‰ú‰ül¬‰þ‰ÿl¯ŠŠ<¯ŠŠl±ŠŠl´Š Š l¶Š Š l·ŠŠl¸ŠŠl¾ŠŠlŠŠlÊ"Š#lÆŠ%Š%lÈŠ'Š'lÉŠ*Š*lÊŠ,Š-lËŠ0Š1lÍŠ3Š4lÏŠ6Š7lÑŠ9Š<lÓŠ>ŠAl׊DŠFlÛŠHŠHlÞŠJŠJlߊLŠRlàŠTŠYlçŠ[Š[líŠ^Š^lîŠ`ŠclïŠfŠflóŠhŠilôŠkŠnlöŠpŠwlúŠyŠy<°ŠzŠ|mŠŠmŠŠ‡mЉЉ<±ŠŠŠm ŠŠmБГmЕЖmŠ˜ŠšmŠžŠžmŠ Š¡mУЍmŠªŠ­m#ааm'ввm(жжm)ЏŠÀm*ŠÂŠÄm3ŠÅŠÅ<³ŠÆŠÉm6ŠËŠÍm:ŠÏŠÏm=ŠÑŠâm>ŠäŠämPŠæŠèmQŠêŠëmTŠíŠømVŠúŠümbŠþ‹me‹‹mj‹ ‹mo‹ ‹(m„‹*‹,m‹.‹1m‹3‹3m”‹5‹7m•‹9‹>m˜‹@‹Bmž‹E‹Lm¡‹N‹]m©‹_‹`m¹‹c‹cm»‹e‹hm¼‹j‹mmÀ‹o‹pmÄ‹q‹q<Å‹r‹rmÆ‹t‹tmÇ‹w‹{mÈ‹}‹€mÍ‹‚‹†mÑ‹ˆ‹ˆmÖ‹Š‹Œm׋ދŽmÚ‹‹mÛ‹’‹–mÜ‹˜‹šmዜ‹œm䋞‹Ÿmå‹ ‹ <Ñ‹¡‹«mç‹­‹°mò‹²‹ºmö‹¼‹Æmÿ‹È‹Ïn ‹Ñ‹én‹ëŒn+Œ ŒnIŒŒ6n]Œ7Œ7{Œ9Œ?nuŒAŒCn|ŒEŒEnŒFŒF¨ŒGŒJn€ŒKŒK<ÙŒLŒPn„ŒTŒTn‰ŒUŒVƒŒWŒWnŠŒZŒZn‹Œ\Œ]nŒŒ_Œ_nŽŒaŒakŒbŒbnŒdŒfnŒhŒmn“ŒoŒsn™ŒuŒwnžŒxŒxeŒyŒ}n¡Œ€Œ‚n¦Œ„Œ†n©Œ‰ŒŠn¬ŒŒŒ•n®Œ—Œšn¸ŒœŒœn¼ŒŒ쌞Œž iŒ Œ "tŒ¡Œ¡n½Œ¢Œ¢<àŒ£Œ¥n¾Œ§Œ¬nÁŒ­Œ®<猯Œ°nÇŒ²Œ²nÉŒ³Œ³ÇŒ´ŒÅnʌnjÈn܌ʌÊnތ̌ÏnߌьÓnãŒÕŒÕnæŒ×Œ×nçŒÙŒÝnèŒÞŒÞ%NŒßŒâníŒãŒã ŒäŒènñŒêŒê%ZŒìŒînöŒðŒñnùŒóŒõnûŒøŒþnþoo o oooooÎÑÐ!.o///K00!ó14o(55"68o,99N:Lo/MM=NNoBOOlPPoCSVoDX^oH`coOdd=fioSkooWpp'qq:ryo\{{od}}oe€of„…oh‰–oj™™ox›œoyŸ¡o{££o~¥¥o§¨o€ª¯o‚±²oˆ³³'%´ºoм¼o‘¾¿o’ÁÈo”ËÑoœÓÓo£Õäo¤æìo´îõo»÷ŽoÃŽŽ oÍŽ Ž oÖŽŽ'oØŽ)Ž,oñŽ.Ž1oõŽ3Ž6oùŽ8Ž:oýŽ<ŽBpŽDŽEpŽGŽNp ŽPŽWpŽYŽgpŽiŽjp(ŽlŽmp*ŽoŽpp,ŽrŽtp.ŽvŽvp1ŽxŽxp2ŽzŽ|p3ŽŽp6ŽŽ‚p7Ž„Žˆp9މމ=FŽŠŽšp>ŽœŽ¡pOޣަpUŽ¨ŽªpYޫޫެެp\ޝ޲p]ŽºŽºpa޽޾pbŽÀŽÀpdŽÂŽÂpeŽÅŽÆpfŽÈŽÉphŽÊŽÊ=XŽËŽÌpjŽÍŽÍ!)ŽÎŽÏplŽÑŽÔpnŽ×ŽØprŽÛŽãptŽåŽép}ŽëŽìp‚ŽîŽïp„ŽñŽñp†Žôp‡p— p¡#'p²)*p·,,p¹./pº29p¼;;pÄ>>pÅ??=_@@pÆBIpÇKdpÏff=igipékpì‹q‘q “šq››=pœœÁžŸq££q¦©q««q ­±q!²²=w´´q&¶¶u··q'¹¿q(ÁÂq/ÄÉq1ËËq7ÍÎq8Ðæq:èëqQíðqUòüqYýý0lþqdqm$q}&'q‰-/q‹12qŽ46q89q“;?q•ABqšDEqœGGqžIKqŸMYq¢[^q¯`cq³eeq·giq¸kkq»mpq¼r‹qÀqÚqÛ‘‘&O“•qÝ—™qà››qã£q䥨q몪qשּׁqð®¶qñ¸»qú½¿qþÁÁrÃÅrÇÈrÊËrÎÑr Óír ïõr(÷‘ r/‘ ‘ rB‘ ‘rC‘‘$rI‘&‘6rZ‘8‘;rk‘>‘Aro‘C‘Hrs‘I‘I&q‘J‘Jry‘K‘K!¢‘L‘Prz‘R‘Xr‘Z‘Zr†‘]‘er‡‘h‘jr‘l‘lr“‘n‘zr”‘}‘‡r¡‘‰‘r¬‘‘“r±‘—‘—r¶‘™‘¥r·‘§‘¨rÄ‘ª‘µrÆ‘·‘ºrÒ‘¼‘¾rÖ‘À‘ÀrÙ‘Á‘Á>‘‘ÃrÚ‘Å‘ÅrܑƑÆ7‘Ç‘Ërݑ̑Ì/¬‘Í‘Í!`‘ΑÎrâ‘Ï‘Ï-‘БÐrã‘ёёӑÛrä‘Ü‘Ü$Ö‘Ý‘ßrí‘á‘îrð‘ñ‘ñrþ‘ó‘ùrÿ‘ü‘ýs‘ÿ’s’ ’ s’ ’s’’s’’s’’s ’’s!’#’'s"’)’)s'’,’.s(’0’4s+’6’:s0’<’@s5’D’Fs:’H’Ts=’V’WsJ’Y’[sL’^’^sO’`’gsP’l’msX’o’rsZ’t’ts^’v’€s_’‚’ƒsj’…’ˆsl’Š’Žsp’‘’‘su’“’sv’ ’®s’²’·s’¹’¹s–’»’¼s—’À’Ós™’Õ’Õs­’×’Ùs®’Ý’ás±’ä’äs¶’æ’ês·’í’ós¼’÷’üsÃ’þ“sÉ““sΓ“sÏ““ sГ “sÒ““sØ““sÝ““/sá“2“6sô“8“<sù“>“>sþ“D“Dsÿ“F“Rt“T“\t “^“^t“`“at“c“et“g“gt“j“jt“l“nt“p“qt!“u“wt#“y“|t&“~“~t*“€“€t+“‚“ƒt,“ˆ“Št.“Œ“t1“‘“’t5“”“›t7““Ÿt?“¡“ªtB“¬“µtL“·“·tV“¹“¹tW“À“ÀtX““ÄtY“Æ“Èt\“Ê“Êt_“Ì“Òt`“Ô“Útg“Ü“ßtn“á“ètr“ì“ìtz“î“ît{“õ”t|””tˆ””tŠ” ”tŒ””tš” ”!t”%”%tŸ”(”,t ”.”.t¥”0”3t¦”5”Atª”D”Lt·”O”StÀ”U”UtÅ”W”WtÆ”Z”[tÇ”]”^tÉ”`”`tË”b”dtÌ”h”ktÏ”m”xtÓ”|”ƒtß”…”…&”†”tç”’”•tò”—”—tö”™”Æt÷”È”Îu%”ДÒu,”Õ”Ùu/”Û”åu4”ç”úu?”ü•uS••us•!•&uv•(•2u|•4•<u‡•>•Bu•D•Gu••I•Ju™•L•Tu›•V•Yu¤•[•_u¨•a•mu­•o•suº•v•vu¿•w•w>2•z•}uÀ••>3•€•€f•‚•ƒuÄ•†•”uÆ•–•–uÕ•˜•™uÖ•›•œuØ•ž•¥uÚ•§•©uâ•«•®uå•°•²u镵•·u앹•Àuï•ÕÃu÷•Å•Íuø•ЕÖv•Ø•Øv•Ú•Üv •Þ•åv •è•è’•é•ëv•í•þv––v)––v0––v;––v?––¶––µ––$vA–(–(vH–*–*vI–,–6vJ–9–=vU–?–@vZ–B–Qv\–S–Uvl–X–Xvo–[–_vp–a–mvu–o–xv‚–z–zvŒ–|–~v–€–€v–ƒ–‹v‘––•vš–—–™v£–›–žv¦– –¤vª–§–ªv¯–¬–¬v³–®–´v´–¶–¶M–·–¸v»–¹–¹>––»–¼v½–½–½$Ж¾–¿v¿–À–À>—–Á–ÏvÁ–Ñ–ÞvЖߖß>Ÿ–à–ãvÞ–å–åvâ–è–è–é–ëvã–ï–ñvæ–ò–ò6–ó–óvé–õ–úvê–û–ûÌ–ý—vð—— vö— —vþ——w——w—— w—"—0w —2—3w—5—5w—8—;w—=—?w#—B—Dw&—F—Iw)—K—Kw-—M—Mw.—O—Ow/—Q—R>Õ—S—Sw0—U—Vw1—X—\w3—^—^>×—`—aw8—b—b"E—d—fw:—h—hw=—i—i!B—j—nw>—p—twC—v—†wH—ˆ—ˆwY—Š—‹wZ——’w\—”—”wb———šwc—œ—žwg— —¦wj—¨—¨wq—ª—¯wr—²—´wx—¶—·w{—¹—¹w}—»—»w~—¿—¿w—Á—Áw€—×Éw—Ë—Ë"þ—Ì—Ðwˆ—Ó—Ùw—Ü—ßw”—á—áw˜—ã—ãw™—å—åwš—æ—æp—ç—çw›—é—ìwœ—í—í![—î—îw —ð—ðw¡—ñ—ñ>á—ò—òw¢—ó—ó!É—õ—öw£—ø—ûw¥—ý˜w©˜˜ Ę˜w­˜ ˜ w´˜ ˜wµ˜˜w½˜˜wÀ˜ ˜!wŘ$˜$wǘ&˜)wȘ+˜-w̘/˜0wϘ2˜2wј4˜5wÒ˜7˜9wÔ˜;˜=wטA˜AwÚ˜C˜FwÛ˜H˜UwߘW˜`wí˜b˜ew÷˜g˜gwû˜i˜kwü˜o˜twÿ˜u˜u•˜v˜Šx˜Œ˜x˜˜‘x˜“˜”x˜–˜˜x!˜š˜¢x$˜¤˜§x-˜¨˜¨0˜©˜ªx1˜¬˜¯x3˜±˜³x7˜¶˜¶x:˜¸˜¸x;˜º˜Äx<˜Æ˜ÇxG˜É˜ÉxI˜Ë˜ÌxJ˜Î˜Î#ç˜Ñ˜ÓxL˜Õ˜ÕxO˜Ø˜ÚxP˜Û˜Û˜Ü˜ÜxS˜Þ˜Þy˜ß˜ß)¯˜á˜ãxT˜å˜åxW˜ç˜ëxX˜í˜ïx]˜ò˜òx`˜ô˜ôxa˜ö˜öxb˜ù˜úxc˜ü˜þxe™™xh™™xi™™xk™™ xl™ ™ >ù™ ™ xo™™xq™™xz™™!x|™$™%x™'™3xƒ™5™5x™:™:x‘™<™?x’™A™Cx–™E™Ex™™G™Ixš™K™Nx™P™Yx¡™[™[x«™\™\>ÿ™^™_x¬™a™ax®™c™c©™e™ex¯™g™rx°™t™wx¼™z™zxÀ™|™}xÁ™™xÙ„™ˆxÆ™Š™‹xË™™xÍ™™•xΙ–™–!™™—™˜xÕ™™™™"”™œ™žx×™¡™¡xÚ™£™£xÛ™¥™¨xÜ™«™«xà™¬™¬ö™­™µxᙹ™½xê™Á™Éxï™Ë™Ùxø™Û™Ýy™ß™ßy ™â™åy ™ç™çy™é™êy™ì™îy™ð™òy™ô™ôy™ö™ÿyšš y#š šy.ššy1ššy7š š y=š"š%y>š'š.yBš0š2yJš4š:yMš=šFyTšHšJy^šLšPyašRšWyfšYš[ylš^š`yošbšbyršdškysšlšl>šmšqy{šsš‚y€š„šˆyšŠšŒy•šš“y˜š–š˜yššš¥y š§š§y¬š¨š¨#+š«š«y­š­š­y®š¯š±y¯š³š´y²š¶š¼y´š¾šÂy»šÄšÇyÀšÊšÍyĚϚÖyȚؚØ%šÙšÙ?šÜšÜyКޚÞyÑšßšß$½šášãyÒšåšçyÕšêšïyØšñšôyÞšöš÷yâšùšþyä››yê››yë››yï› ›yð››yú›› z›"›$z›%›%$›'›+z›.›/z ›1›1?;›2›2$›3›3z ›5›5z›7›7z›:›;z›<›<#û›>›?z›A›Oz›Q›Rz#›T›Vz%›X›Yz(›Z›ZÄ›[›[z*›_›az+›d›dz.›f›hz/›l›lz2›o›rz3›t›wz7›z›~z;›€›€z@›‚›ƒzA›…›ˆzC›Ž›“zG›•›—zM›š››zP›ž›¢zR›¤›¦zW›¨›¨zZ›ª›«z[›­›¯z]›±›±z`›´›¶za›¸›¹zd›»›»zf›½›½zg›¿›Ázh›Ã›Äzk›Æ›Êzm›Ï›Ïzr›Ñ›Özs›×›×?P›Ù›Üzy›Þ›Þz}›à›èz~›ê›ìz‡›ð›òzŠ›õ›õz›÷›øzŽ›ý›ýzœœz‘œœz’œœzœœzžœœz¢œœz£œ!œ!z¦œ#œ%z§œ(œ)zªœ+œ4z¬œ6œ7z¶œ9œAz¸œDœDzÁœFœNzœPœPzËœRœRzÌœTœZzÍœ^œ`zÔœbœczלfœhzÙœmœnzÜœqœqzÞœsœzzßœ|œ|Aœœz眜‚z蜅œˆz꜋œ‹zŽz’zñœ”œ•zôœšœœzöœžœ©zùœ«œ«{œ­œ®{œ°œ¸{œºœ½{œÃœÇ{œÊœÐ{œÓœÙ{!œÜœß{(œâœâ{,œåœå¿œæœç{-œéœí{/œðœ÷{4œùœý{<œÿ{A {C{J{K{L{M{O{R {S"#{W%&{Y(1{[33{e68{f;;{i=F{jHH{tJL{uOT{xVa{~dd{Šgl{‹ou{‘w{{˜}}{‚{ž„Œ{¢{«’’{­””{®–¤{¯¦­{¾¯¯{Ʊ±?s²¼{Ǿ¿{ÒÁÈ{ÔÊÓ{ÜÕß{æáæ{ñèé{÷ëð{ùòû{ÿýž| ž ž |ž ž |ž ž |žž|žž|žž|žž|"žžž ž#|$ž%ž&|(ž(ž-|*ž/ž/?Šž1ž3|0ž5ž:|3ž=ž?|9žAžL|<žNžO|HžQžQ|JžUžU|KžWžX|LžZž\|Nž^ž^|Qžcžd|Ržfžm|Tžpžq|\žsžs|^žužusžxžz|_ž|ž~|bžž?’ž€žƒ|ež†žŽ|iž‘ž•|rž—ž—|wž™ž|xžŸž¡|}ž¤ž¤|€ž¥ž¥"Rž¦ž§|ž©žª|ƒž­ž®|…ž°ž°|‡ž´žÀ|ˆžÂžÂ|•žÃžÄ?©žÈžÉ|–žÌžÌ|˜žÍžÍ?­žÎžÎ%]žÏžÐ|™žÑžÒ%/žÓžÖ|›žØžà|Ÿžâžâ|¨žäžë|©žížð|±žòžõ|µžöžö?²ž÷ž÷|¹žùžù2žúžü|ºžýžþ?³žÿŸ|½ŸŸ |ÀŸ Ÿ |ÆŸŸÈŸŸ|ÇŸŸ|ÉŸŸVŸŸ|ÊŸŸ|ÒŸ Ÿ ™Ÿ!Ÿ!–Ÿ"Ÿ%|ÓŸ(Ÿ9|ן;Ÿ;5Ÿ=Ÿ>|éŸ@ŸD|ëŸFŸI|ðŸJŸJ%}ŸKŸQ|ôŸRŸR'”ŸTŸY|ûŸ[Ÿg}ŸjŸl}ŸnŸr}ŸtŸ{}Ÿ~Ÿ€}ŸƒŸŒ}!ŸŸqŸŸ’}+Ÿ”Ÿ•}.Ÿ˜Ÿ˜}0Ÿ™Ÿ™+ÞŸšŸ›}1ŸœŸœ?ŸŸ}3ŸŸŸŸ🠟 ?ÄŸ¢Ÿ¢}4Ÿ¤Ÿ¥}5¬×£}7ùù¨Ûùùùù?Åùù¨Üùù?Èù ù ¨Þù ù ?Íù ù ¨ßùù?Ðùù¨âùù?Ôùù¨åùù?Úùù'¨íù(ù(?àù)ù,¨øù-ù-?âù.ù2¨üù3ù3?çù4ù4’ù5ù5©ù6ù6?éù7ù;©ù<ù=?îù>ù>©ù?ù@?ñùAùE©ùFùF?øùGùN© ùOùO?þùPùY©ùZùZ@ù[ù]©ù^ù^jù_ùa©"ùbùb@ùcùcìùdùf©%ùgùg.ùhùj©(ùkùk@ ùlùl©+ùmùm@ ùnùn©,ùoùq@ùrùv©-ùwùx@ùyù{©2ù|ù|@ù}ù}©5ù~ù~-ùù©6ù€ù€"ùù$ù‚ùƒ@ù„ù‡©7ùˆùˆ@ù‰ù‰©;ùŠùŠéù‹ù©<ùŽùŽºùù•©?ù–ù˜@(ù™ù™©Fùšùš@,ù›ùœ©Gùù@/ùžùž©IùŸù¢@0ù£ù©©Jùªùª@:ù«ù­©Qù®ù®@=ù¯ù¹©Tùºùº”ù»ù»©_ù¼ù¼@Hù½ùÀ©`ùÁùÁ@LùÂùédùÄùÄ@OùÅùЩfùÑùÑ@WùÒùÝ©rùÞùÞuùßùä©~ùåùå@aùæùæ©„ùçùç@cùèùè©…ùéùê@eùëù쩆ùíùí@hùîùö©ˆù÷ù÷*Ýùøùû©‘ùüùü@nùýùÿ©•úú@qúú©˜úú@súú ©™ú ú @wúú©Ÿúú@}úú©¢úú@„úú!©®ú"ú#@‡ú$ú)©±ú*ú*@ú+ú+©·ú,ú,@‘ú-ú-©¸þ0þ1=þ3þD?þIþOQþPþPÈþQþQXþRþRÉþTþWÊþYþfÎþhþkÜÿÿ^@ÿaÿŸYÿàÿâÿãÿãÿäÿåÿæÿæL°,°!-K°ÈQK°SZX¹ÿ…Y""""Z€ÞPæj„ªÐ 4Vnš´þ"lÎ Z¼ÚR²ü>`‚¤ ¦à < € º à  N t ž Ì ö  L ~ È  ^ ¢  " Z † Ú,PpŠªÌänÈ f²ôžÜ`’¨@Šæ@tÐLzÎüDh¼Ô(\”¨òP`æ0bª 0bŽÈò<š ¨L–È6xî   ® Ä Ú!N!d!z!ð"""r"à"ö# #"#‚#˜$$$.$p$¾$Ô$ê%%%F%\%r%¢%Î%ä&.&‚&˜&î'l'œ'ì((6(N(x(¤(î) )Z)j)z)–)È)Ø)è)ø*N*^*n*š*ª*º*è*ø++&+P+`+p+Ú+ê,6,„,ö-d-œ..l.¾.ú/H/x/ˆ/æ0(0X0Î0Þ1 1p1¾1ø262’2î303’3¨3¸3ú4 44T4d4ž5545ˆ5°5ä5ô666$646D6T6–6¦6¶6Þ77:7j7¬7ô828z8Ð99$9Š9æ::::J:„:è;;^;†;¸;ê<<"<@:>x>¾??V?l?„?œ?´?Ö?ø@0@h@˜@âALB B:BbB¾CLC´D0DrD‚E"EúF¾GTGºGÚHH*HœHâI>I|I¨IÔJ J2JKK˜LL2L^LŠLÆLîMM(MTMnM¸MÜN&NˆNÄOOvO”P PlP¶PøQQ<Q^QÆR`RšRöS:StSšS¼TT.TXT†T´TÎUU:U„UÂVV^VÀVÞWW@W”WÂWæX X*XDXdX†X XÄY*Y„YÈZZjZ¬[Z[˜[Þ\0\^\„\à]]f]À^^L^¬^ì_(_T_¤_Ò``@`”`¬aa4ažb&bÆc@cÐdpdÎe‚f$fÌgLgôh²iJiúj¸k4kþl¾m„mänbnøohoîp„pØq‚rr¸s.sÌt€uu´vhvÚwšxPy y"y8yNydyzyy¦y¼yÒzZzvzþ{ž||¤}F}¢~X~öž€8€Ä<È‚F‚¼ƒ˜„„v„ð…V…°†@†°‡.‡¼ˆHˆ°‰@‰´Š"Š„‹‹d‹ÞŒ8ŒÚrôŽŠ’tð‘h‘ì’\’À“X“Ò”Z”𕈕ø–’——ˆ—ô˜v˜â™h™Ì™òš šTš€š˜š°šÈšà››<›h›”›Ìœœ:œpœŒœ¨œÄœàœü4Plˆ¤ÀÜøžž0žPžpž”ž¸žØžüŸ Ÿ@Ÿ`Ÿ€Ÿ¤ŸÈŸè   0 P p ” ¸ Ø ø¡¡@¡`¡€¡¤¡È¡è¢¢,¢P¢p¢˜¢À¢è££8£`£ˆ£´£à¤ ¤8¤`¤ˆ¤°¤Ø¥¥"¥H¥l¥¥º¥Þ¦¦,¦P¦t¦ž¦Â¦æ§§8§d§š§Â§î¨&¨P¨x¨¬¨Ö¨þ©4©l©¤©ìªª0ªRªtªŽª¨ªÚªò« «"«:«R«j«‚«œ«¶«Ð«ê¬¬¬8¬R¬l® ®ò¯ ¯$¯<¯^¯Œ¯Ð°°Ð±*±„²Ê²à³³³8³P³r³Š³¬³Æ³î´$´n´öµ"µ`µžµ´µÊµàµö¶@¶j¶´·¤¸Ø¹àºä»D»¤»ð¼Z¼²½>½z¾ ¿¿6¿z¿ÆÀ ÀhÀŠÀªÀàÁÁnÁšÁÀÁæÂ:޲ÂÖÃ4ôÃðÄÄ0ÄRÄtĖİÅÅ®ÆDÆ^ƘƮÆÄÆÚÆðÇ Ç(ÇDÇ`ǂǒǢDzÇÄÈrȬÉ,ɲÊʆÊÐËXËh˲ËÂËÒËâÌÌ2ÌH̨̒Í4ÍÞÎÎ>Î~ÎŽÎÚÏ$ÏrϾÏÎÐÐlвÑ$ÑÂÑîÒÒ„ÒìÓ~Ô8Ô ÔìÕ<ÕXÕzÕºÕÒÖÖ^Ö¤Öê×`×ÖØØZØœØÜÙ.Ù¸ÙòÚÚNÚhÚÔÛÛHÛbÛ‚Û¨ÛÀÛâÜÜ<ÜtÜâÝfÝÆÝôÞ,ÞbÞ˜ÞÎßßZß’ßÊà àNàlààúádá”â>âPâPâpâºââã6ãVãvãªãÞãúää@äjäŽä²äÜäþå"åHå„åÀåöæ,ædæÎç‚è2è€èÖé&évêê”ë2ëÒìRìúíˆî>î‚îîïVïæð6ð®ñ$ñÆòòbòäóŽô ô°õ*õÌöX÷ ÷„ø&ø\ø˜øüù>ù¨ùôúhûûzüDüêý\ýöþÆÿ¬$Äz ÂÌ0ªLðx¸ N Î L È ^ ø b Ò < ž2¼,š ®ˆ„ü0z®ø,ˆÞ2^ŠÂü$LœðPØ"”æ`¬ DÖF” ^ÚBÒ pÔ`² * | Ð!J!‚!â" "Z"˜"º# #‚#¨#Ü$8$ª$ð%\%Þ&&~&ö'&'~'ì(R(à)„)Î**Z*¤*ð+>+–+¼+ä,,<,„,Â--Z-„-¶-æ.(.p.¬.æ/H/¢/è00,0L0”0Ø161l1¢1ò2H2Š2ì383†3°3ä4404|4¼4þ5`5˜5Þ66N6š6ì727”7º88l8¸8î9<9d9¦9¾: :B:^:ˆ:È:ä;6;´;Ô<<6>ž>È>ú?R?ª?â@8@Š@ÂA2AxAžAÆAüB^B~B¦BÎCC CJCrC¤CÄCøD4D`DŒD¬DâE$EPExEE²EÊEÊEüF2FzF°G GbGèH,H¬HüINIŒIüJ>J„JöKlKÌLL’M0MpM°MôNLN¬NÌObO´P*PQ QÌR(RlR¼RðS8SŠS¾SêT TpTÀUUpUÐV8V¤W*W–XXlXÈY4YÊZ6Z [[†[ð\b\â]|]þ^Š__z_ü`¦a&a€aÚb8bžccvcìd|dôeteØf>f²gTgÈh<h´i6iªj&j¬kNkÚlplòmrmþn°o*oÖpxpàqÊr–sDsÞt4u@vRw&w’x˜yTz6zÂ{@{¦|,|®}}°~z~ê>¶€¸²‚~‚¾ƒ"ƒ„„b…"…º†t‡‡ˆˆÌ‰xŠ ŠŠ‹jŒ0ŒÀtŽrXØ‘”’‚““Ô”˜•B–—N˜°™Z™èš˜›D›Àœ œ¨$rОlžâŸŒ . ¦¡&¡–¢££²¤,¤¼¥Ì¦l§§ ¨8¨Ä© ©„©èª.« «X«æ¬Š­p­ò®v¯¯X¯p¯ˆ¯ð°°@°”°ê±±2±V±z±®±â²²"²>²Z²„²®²Ü³³Š³þ´,´b´Ê´êµ4µPµlµŒµ¸µê¶@¶l¶¢¶Ê··h··¼¸¸&¸~¸ª¸ä¹ ¹\¹®¹øºRº˜º¼ºþ»L»˜»ü¼6¼’¼Þ½0½j½’½Ò½ô¾Z¾º¾Ú¿¿N¿’¿ÌÀ2À~ÀÆÁ ÁRÁ ÁîÂÂBˆ¼ÃÃJÃtèÃâÄÄ`Ä„ĨÄÌÄîÅÅ2ÅTÅvŘźÅÜÆÆ$ÆHÆjƌƮÆÐÆòÇÇ6ÇXÇ|Ç ÇÄÇæÈÈ*ÈLÈnÈȲÈÔÈøÉÉ@ÉbÉ„ɦÉÈÉêÊ Ê.ÊPÊŠÊÄÊþË4ËjË ËÖÌ ÌBÌxÌ®ÌèÍ"Í\Í’ÍÈÍþÎ4ÎjΠÎÖÏ ÏFÏ€ϺÏðÐ&Ð\Ð’ÐÈÐþÑ4ÑjѤÑÞÒÒNÒ„ÒºÒðÓ&Ó\Ó’ÓÈÓìÔÔ4ÔPÔlÔˆÔ¤ÔÀÔÜÕÕ$ÕHÕdՀ՜ոÕÔÕðÖÖ8Ö\ÖxÖ”Ö°ÖÌÖè××(×L×p׌ר×Ä×à×üØØBØlØ–ضØÖØöÙÙ6ÙVـ٪ÙÐÙðÚÚ0ÚPÚpÚÚ¶ÚÜÛÛ"ÛBÛbÛ‚Û¢ÛÂÛìÜÜ8ÜXÜxܘܸÜØÜøÝ<Ý|ݼÝöÞ2ÞlÞ¦Þàßß^ßžßâààVààÊáá@á€áÀââ:âtâ®âèã"ã\ã ãàä äZä”äÎååBå|å¬åÜæ æ4æ\æ„æ¬æÔæüç,ç\ç„ç¬çÔçüè$èLè|è¬èÜéé,éTé|é¤éÌéüê,ê\ê„ê¬êÔêüë$ëLëvë ëÊëììì0ìRìtì–ì¸ìÚìüíí@íbí„í¦íÈíêî î.îPîrî”î¶îØîúïï>ï`ï‚ï¤ïÆïèð ð<ðnð ðÊðôññHñrñœñÆñðòòDònò˜òÂòìóó@ójó”ó¾óèôô<ôfôôºôäõõ8õbõŒõ¶õàö8ööè÷0÷x÷ÀøøPø˜øàù(ùpù¸úúHúúØû ûhû°ûøü@üˆüÐýý`ý¨ýðþ8þ€þÈÿÿXÿ ÿè0dœÎ6hšÌþ2d˜Ì2d–Èü4f˜Êü.`’Æø*\Âô&X®~Ô * € Ö , ‚ Ø . „ Ú 0 † Ü 2 ˆ Þ4Šà6Œâ8Žä:æ<’è>”Þ(r¼Pšä.x V ê4~È\¦ð:„Îb¬ö@ŠÔh¦àTŽÄþ8pªè " \ – Î!!>!v!®!æ" "X""È##8#p#¨#à$$V$$È%%8%p%Ø&@&¨''r'Ú(B(ª))z)â*J*²++|+Ü,D,¨--x-Ü.>. //d/È0*0’0ú1d1Æ2(2Œ2ì3P3²3ø4>4„4Æ55J5Œ5Î66V6ž6ä7&7h7ª7ì8.8p8¶8ø9:9|9¾::B:Ž:Ð;;T;–;Ø<<\<ž<à="=T=†=¸=è>>F>v>¤>Ò??2?d?–?È?ö@$@T@„@²@àAABAtA¦AÔBB2BbB’BÀBîCCPC‚C´CâDD@DpD DÎDüE,E^EEÂEêFF:FbFŠF²FàGGDGlG”G¼GäH H4HbHH¾HæII6I^I†I®IÜJ J8J`JˆJ°JØKK(KbKœKÖL LBL|L¶LðM*MdMžMØNNDN~N¸NòO,OfO OÚPPFP€PºPôQ.QhQ¢QÜRRHR‚R¼RöS0SSðTPT°UUpUÐV0VVðWPW°XXpXÐY0YYðZPZ°[[p[Ð\0\\ð]P]°^^p^Ð_0__ð`P`p``°`Ð`ðaa0aPapaa°aÐaðbb0bXb€b¨bÐbøc cHcpc˜cÀcèdd8d`dˆd°dØee(ePexe eÈeðff@fhff¸fàggDgvg¨gÚh h>hph¢hÔii8ijiœiÎiîjj.jNjnjŽj®jÎjîkk.kNknkŽk®kÎkîll.lNlnlŽl®lÎlîmm.mNmnmŽm®mÎmînn.nNnnnŽn®nÎnîoo.oNonoŽo®oÎoîppBplp–pÀpêqq>qhq’q¼qærr:rdrŽr¸râs s6s`sŠs´sÞtt2t\t†t°tÚuu.uXu‚u¬uÖvv*vTv~v¨vÒvüw&wPwzw¤wÎwöxxFxnx–x¾xæyy6y^y†y®yÖyþz&zNzvzžzÆzî{{>{f{Ž{¶{Þ||.|V|~|¦|Î|ö}}F}n}–}¾}æ~~6~^~†~®~Ö~þ&XŠ¼î€ €R€„€¶€èL~°â‚‚F‚x‚ª‚܃ƒ@ƒrƒ¤ƒÖ„„:„l„ž„Ð……4…f…˜…Ê…ü†.†`†’†Ä†ö‡(‡Z‡Œ‡¾‡ðˆ"ˆTˆ†ˆ¸ˆê‰ ‰*‰J‰j‰Š‰ª‰Ê‰êŠ Š*ŠJŠjŠŠŠªŠÊŠê‹ ‹*‹J‹j‹Š‹ª‹Ê‹êŒ Œ*ŒJŒjŒŠŒªŒÊŒê *JjŠªÊêŽ Ž*ŽJŽjŽŠŽªŽàL‚¸î$ZÆü‘2‘h‘ž‘Ô’ ’@’v’¬’â““N“„“º“ð”&”\”’”È”þ•4•j• •Ö– –B–x–®–ä——P—†—¼—ò˜(˜^˜”˜Ê™™6™t™²™ðš.šlšªšè›&›d›¢›àœœ\œšœØT’ОžLžŠžÈŸŸDŸ‚ŸÀŸþ < z ¸ ö¡4¡r¡°¡î¢,¢j¢¨¢æ£$£b£ £Þ¤¤Z¤˜¤Ö¥¥R¥€¥®¥Ü¦ ¦8¦f¦”¦Â¦ð§§L§z§¨§Ö¨¨2¨`¨Ž¨¼¨ê©©F©t©¢©Ð©þª,ªZªˆª¶ªä««@«n«œ«Ê«ø¬&¬T¬‚¬°¬Þ­ ­:­h­–­Ä­ò® ®H®p®˜®À®è¯¯8¯`¯ˆ¯°¯Ø°°(°P°x° °È°ð±±@±h±±¸±à²²0²X²€²¨²Ð²ø³ ³H³p³˜³À³è´´8´`´ˆ´°´Øµµ(µPµxµ µÈµð¶¶0¶P¶p¶¶°¶Ð¶ð··0·P·p··°·Ð·ð¸¸0¸P¸p¸¸°¸Ð¸ð¹¹0¹P¹p¹¹°¹Ð¹ðºº0ºPºpºº°ºÐ»»<»r»¨»Þ¼¼J¼€¼¶¼ì½"½X½Ž½Ä½ú¾0¾f¾œ¾Ò¿¿>¿t¿ª¿àÀÀLÀ‚À¸ÀîÁ$ÁZÁÁÆÁüÂ2ÂhžÂÔà Ã@ÃvìÃîÄ0ÄrÄ´ÄöÅ8ÅzżÅþÆ@Æ‚ÆÄÇÇHÇŠÇÌÈÈPÈ’ÈÔÉÉXÉšÉÜÊÊ`Ê¢ÊäË&Ëh˪ËìÌ.Ìp̲ÌôÍ6ÍxͺÍüÎ>΀ήÎÜÏ Ï8ÏfÏ”ÏÂÏðÐÐLÐzШÐÖÑÑ2Ñ`ÑŽѼÑêÒÒFÒtÒ¢ÒÐÒþÓ,ÓZÓˆÓ¶ÓäÔÔ@ÔnÔœÔÊÔøÕ&ÕTÕ‚Õ°ÕÞÖ Ö4Ö\Ö„Ö¬ÖÔÖü×$×L×tל×Ä×ìØØ<Ød،شØÜÙÙ,ÙTÙ|Ù¤ÙÌÙôÚÚDÚlÚ”Ú¼ÚäÛ Û4Û\Û„Û¬ÛÔÛüÜ$ÜLÜtܜܴÜÌÜäÜüÝÝ,ÝDÝ\ÝtÝŒݤݼÝÔÝìÞÞÞ4ÞLÞdÞ|Þ”Þ¬ÞÄÞÜÞôß ß$ß<ßTßl߄ߜߴßÌßäßüàà,àDà\àtà˜à¼ààáá(áLápá”á¸áÜââ$âHâlââ´âØâüã ãDãhãŒã°ãÔãøää@ädäˆä¬äÐäôåå<å`å„å¨åÌåðææ8æPæhæ€æ˜æ°æÈæàæøçç(ç@çXçpçˆç ç¼çØçôèè,èHèdè€èœè¸èÔèðé é(éDé`é|é˜é´éÐéìêê@êjê”ê¾êèëë<ëfëëºëäìì8ìbìŒì¶ìàí í4í^ížíÞîî^îžîÞïï^ïžïÞðð^ðžðÞññ^ñžñÞòò^òžòºòÖòòóó*óFóbó~óšó¶óÒóîô ô&ôBô^ôzô–ô²ôÎôêõ<õŽõàö2ö„öÖ÷$÷r÷Àøø\ø¬øúùHùšùìú>úúâû4û†ûüürüèý^ýÔþJþÀÿ6ÿ¬"˜„úpæ\ÒH¾4Tt”´Ôô4Tt”´Ôô4Tt”´Ôü$LtœÄì  < d Œ ´ Ü  , T | ¤ Ì ô  \ œ Ü  \ œ Ú  Z š ÚX˜ÖR’ÒR î<ŠØ&tÂ^¬úH–ä2€Îj¸dºf¼h¾jÀlÂnÄlÀlÂnÄ  p Ä!!n!Â""j"À##l#Â$$n$Ä%%\%¨%ô&>&ˆ&Ò''h'²'ü(F((Ú)&)r)¾**T* *ì+F+ +ú,T,®--b-¼..p.Ê/$/~/Ø020Œ0æ1@1š1ô2N2Ò3V3Ú4^4à5b5ä6h6ì7p7ô8x8ü9~::†; ;Ž<<–==D=n=˜=Â=ê>>:>d>Ž>¸>â? ?6?`?Š?´?Þ@@2@\@†@¸@êAANA€A²AäBBHBzB¬BÞCCBCtC¦CØD D<DnD DøEPE¨FFXF°GG`G¸HHhHÀIIpIÈJ JxJÐK(K€KØLLHL€L¸LðM(M`M˜MÐNN@NxN°NèO OXOOÈPP8PpPÆQQrQÈRRtRÊS$SzSÐT&T|TÒU(U~UÔV*V€VÖW,W‚WÌXX`XªXôY>YˆYÒZZfZ°Zú[D[Ž[Ø\"\l\¶]]J]”]Ì^^<^t^¬^ä__T_Œ_Ä_ü`4`l`¤`ÜaaLa„a¼aôb,bnb°bòc4cvc¸cúd<d~dÀeeDe†eÈf fLfŽfÐggTg–g¼gâhh.hThzh hÆhìii8i^i„iªiÐiöjjBjhjŽj´jÜkk,kTk|k¤kÌkôllDlll”l¼läm m4m\m„m¬mÔmün2nhnžnÔo o@ovo¬oâppNp„pºpðq&q\q’qÈqþr4rjrÊs*sŠsêtJtªu ujuÊv*vŠvêwJwªx xjxÊy*yŠyêzJz¬{{À||d|ê}F}²~~`:²€<€ hÌ‚.‚^‚ª‚êƒjƒô„‚… …š††ô‡8‡ªˆˆŽ‰4‰ÖŠxŠì‹´Œ&<ŽVhz‘‚’Š“˜”š•°–j–¨–æ—h—ê˜P˜Ž˜ò™V™ÊšB𬛛@›l›–›Âœ:œ†œÔn¾žžNžŽžÎŸŸNŸŒŸÐ  X œ à¡$¡h¡¦¡ê¢H¢À£8£¶¤.¤¦¥¥–¦¦Ž¦Â§x§¬¨¨`¨ö©`©¾ª(ª\ªÒ«8«À¬H¬²­H­ê®r®â¯.¯à°0°Ú±‚±è²–³³´´xµ`µÔ¶„¶ø·J·œ·ö¸H¸Þ¹L¹ˆ¹àººÈ»<»t¼^¼š½¦½â¾¾~¾ø¿lÀBÀ¤Á Á6ÁbÁŽÁÖ˜ÂÄÂÄ:ÄøÅ(Å~ŲÅøÆ,ÆŒÇÇžÈ0È¢É&ɪÊ”ËLË‚ËÞÌ:ÌšÌüÍ`ÍÀÎ>δÎðÏ(Ï`ϘÏÐÐÐ@Ñ ÑŽÒ ÒFÒ¢ÒòÓxÓ°Ô Ô<ÔšÕÕ€ÕÐÖ"ÖtÖÆ××x×ÊØBضÙZÙ¸ÚÚdÛ(Û|Ü>Ü–ÝVÝæÞ&ÞšÞàß&ß|àà>à¨àþáÊâRããÐä<ätäòåNå¾åöæ¤çLçôè|èôé4é´êŽêÈëžì$ì€ííŽî.îšï.ïžððPðÆññXñ òópôŽõ°öZö¬öÞ÷:÷„øFø°ùnùœúlú¶ûjûÐü„ýnþ*þêÿzÿ²*ŒnÌdªð:ˆJ T°6r® pÚ  Š H ò D Æ  | Ú N ¸Hê*jæbà~Ú:ºþ¦2|â`˜Âdö"¾"Z æ2œÜ\¤Xü,ˆÚ.ÆH î > ®!!€!ì""L"´#J#°$x%%t%ü&L&ª&à''L'˜'ä(4(º(î)ˆ)¼***ž+ +J+Ä,",V,Â- -ê.H/$/T/Â0X1˜22¬33z3Þ4X4²5&5˜606ª6Ò7Ú8ž9J9Ô:V:Â:ú;j;Ø<$<¸=f=à>@>Š>¾??j@$@„AvAÔBB¤BÌC(C´DD E&EnEòFxGGÎHPHªIRI–IÜJ$JjJòK&KŽKêLHLÂM(M|M´NfOO”OäP.PvP¶QHR$R‚RÈSS`S¸TUU¦UÞV.V|W¼X&XnYYŠZZrZâ[:[¸\>]]@]þ^¶_v_®`0`Üa€aæbDbÀbúc8cºdd¨dìe>eÒf.f¨g`gÆh<h´i(i¾j:jtj¬k0k¢l‚m.mônvnÀo@oÚpZpÀqqˆqÂr rpr¼rÞs&snsät:t”tÖu@uªv:väww†wôx<x¾y0y”yðzì{˜{ô|,|’|Ö} }h}°~~¾¨€€Š€Ì¼‚v‚¼ƒœƒè„„Î…ˆ†>†f‡‡|‡ÖˆZˆ”ˆæ‰@‰ˆ‰ÆŠ&Š\Š”ŠÚ‹ÂŒ>Œ~ŒÐ:bÌŽfŽÂX´š‘|’,’¼“\”$”l”â•*•r•ì–€–Þ—’—þ˜l˜´™ ™¼šš¨››z›æœ.œ”œÚÖžnžºŸ Ÿ„  ˆ ê¡Š¢8¢’££n£¶£ü¤P¤´¥P¦*¦¢¦ð§€§ö¨Þ©~©èªhª”««f«¬¬4¬”­0­f­æ®:®”®ú¯P¯¦°°Ô±f²,³(³°³ô´Z´‚´äµFµ²¶*¶Ö·X¸D¹4ººÆ»»b»Ä¼>¼ ½†¾<¾Ä¿<¿¦ÀÀ¸ÁÁ†ÂhÃÃFÄÄzÄØÅPÅœÆ"ÆpƼÇbǺÈ ÈèɆÊ6ÊðËZÌÌLÌöÍÍnÍ–;Î"ÎrάÎæÏ(ÏŒÏþÐXÐîÑ:ѲÒ’ÓÓ^ÓþÔ`ÔÊÕHÕºÖPÖ¤×"×vØغÙzÚÚ0ÚdÚÂÛ4ÛÌÜŠÝZÞÞ–Þüßrà8àXáázá®â`â¢ã|ä6äjäæåšæ´æêç çjç°è4è¤ééVé˜éØêhëëzëìì~í,í¬îî|ïïÆðXðäñDñnñÔò0ó óPóøô¨ôØõõXõÔöÐ÷d÷¶ø>ø„øœù~ùÞúÎüüœýýœýâþbþÆÿÿÿÌ&~:’b¨ô€ZÎ8Îzø~ T ¤  Æ Ž  j Ô  € À*¼þfº¢*ŒÀfÐfØNª–ÎÔDÀVþ ’6TŒ.‚¶: $ z Ô!!†""¨#z$*% &&Ò'R'Ò(&(Ð)r)ö*¦++b+¸,,\,Â--@-°..2/"/â0¾1H22d2´3*3 44Œ4¸5.66^6Ø7H7¶8*8f9 9R9ü:V:æ;2;Œ<*<„<þ=x=º>D>Ê?2?æ@N@¶APAÊBæC.CÌD$D¼EEpEàF€GBG²H6II²IêJÆKfLL¢MdN¨O:O–P P~P®QŠQèRŒRúSRSºTTbT¶VV²WNWöXˆXÞY0YtYÀYèZH[6[ \$\î]\]’]î^J_ _¸`0`øaVa bb€bîc<c¬dBdØe&eØf&ggèh\h i<i¾iòj¾kNk”kôl$l´mfm¾nhooŒpFp¨q†r@s2sÖtzu:uÌvˆw>wŠxdyzz–{f|H|š}~}Ô~.~öx€šRº‚B‚ȃƒnƒÎ„2„€„Þ…l††œ†ä‡\‡°‡Ò‡úˆ"ˆJˆÀ‰ ‰zŠŠpŠØ‹F‹øŒvŒàZ ŽŽlŽîžt‘X‘~‘Ð’J’è“j“°“ø”ª”•:•¢–D–Æ—(—|—À˜(˜À™Vššš›ŒœBœÒÄøžtžìŸpŸú T € Ô¡(¡„¢¢Œ££Ž£ò¤x¥¥œ¦*¦–§2§º¨p¨Ò©2ªªtªð«v«È¬­"­v­Ø®@®h®œ¯&¯´° °d°Ð±’±Ê²l³.³ì´¬´ðµ®¶v·@¸¸˜¹N¹àºB» »¸¼f¼ô½F¾,¿¿öÀfÁÁ¶Â&ˆÃ6ÃtÄ.ÄšÄàÅfÅìƸÇBÇÎÇøÈjÉÉÆÊtË"ËþÌÖÍ\;Î ÎÊÏpÐÐNЂкÑdÒÒìÓ~ÓüÔ|ÔüÕˆÕÞÖ*Ö‚Öà×LרØnØ¢Ù ÙrÙ¶Ú ÚtÚÒÛ2Û¸ÜDÜäÝžÝôÞPÞ²ß4ß’ßäàbáálââjãääîåH岿žçŽè>èºéLé´ê&êfê¤ëëšì0ìÄíípí¼îîpîØï(ïˆï¨ðð˜ðîñ`ñªñöò.òŽòÐó2ó–óÞô:ô†ôæõõvõÞöövöü÷X÷Èøøhø–ù ùvùÒúúVú˜úØûûPû†û¼üüÖýýàþ°ÿ*ÿ¤"òxêXövðV  Àj¦ât– ( º P ´  x H   6 ÌdÈ0xì$ˆÆ‚NÐ@® äjþzþ‚<zþ0n8È‚:Â$ŒhÈ $ „!:!ô"z##†#ö$f%%ž&8&È'V'æ(’)D)è*Ž+*+ž+Æ,h--‚..¦/8/Þ0„1l2*2è3b3Ü4V4Ì5L606¬77´8L8®9*99î:V;(;ö<Æ=>X> ?H?Ø@|@ðBC CHCpDìEdF FÆGGHH¦HüIzJJÜKNKÆL®LâM\MÚNpOOtPhP¾QQÖR(RhSTTT²UNVFWWŠXX\XâYDYxZZ¢[&[[º\ \h]]Š^<__T`,aaNa¢aþbRb¦cBcÞd"dÆe exeäfPfØg^gêhŒi.iÎj2j–júkJkškâl*l”m.m¾nnPnÞoro¼pZpøqZqŠqúrhrÊs,s¨t"t´uZuÊv:v¨wwnw´x y$ydzVzÞ{Î|n}}H}¦~ž~ÖÆ€ff΂<‚d‚ÀƒƒŽ„8„Ü…N…n…Ð…ð†d†°‡‡d‡°ˆˆ^ˆÆ‰Š2Š„‹tŒ Œ@Œ~¢ŽŽjŽÞp²‘\’’Ì“X“ä”`••‚––ž—6—¾˜L˜ú™¢šP𸛤œPœ”$€ØžjžŸ8Ÿ”Ÿþ V¡¡L¡¸¢D¢¬¢þ£V£¨¤"¤Ê¥’¦F¦r§(§r§¸§þ¨.¨|¨Ä©©X©°ª ªfªˆªÊªþ«H«¶¬¬@¬v¬Ò­B­x­¸®J®š®ö¯<¯ˆ¯Ô° °B°x°¶°ì±$±„±ô²*²¢³P³¼´(´üµ°¶8·@·Ì¸œ¹@¹ÜºTºÌ»B»¾¼$¼ ½½ˆ¾¾x¾ô¿P¿¬ÀÀTÀ”ÀÔÁÁ¤ÁÚ ÂP†Ã&ÚÃöÄ*ÄnÄ ÅÅ>ÅšÅöÆ"ÆžÆÔÇZǘÇÐÇúÈBÈ”É É4ÉhÉ´ÉüÊ$ʆÊÔË Ë\ËŽËÐÌ¢ÌîÍ:Íf͸Î ÎLΰÎúÏ:ÏpϺÐЄÐôÑ8ÑnÑ®ÒÒ`Ò°ÒúÓHÓ˜ÓâÔNÔ¢ÔþÕ|ÕâÖRÖÂ×2×~×êØ8؆ÙÙ°ÙÜÚÚ4Ú`ڌڸÚäÛzÜ2ÜZÜ¢ÜÊÝÝLÝ’ÞÞ„Þ¸ßßhßÐàRàzà¢á á¦ââZâ âìãã<ãjãÔääVä¨äâå(å°æ2æ´ç6ç~è<èèêéDéØê2êÂë ëŽìì”ííšíìîNîÎïJïÎðXð¬ðøñxñÆòFòÆòæó(ójóªóÜô(ôtôÀôðõ:õpõ²õâö*ö„öÀöè÷T÷„÷îø\ø¤øÌùDù¸ú<újúÆû"û~ûÆüüæýýþþBþzþðÿHÄH"lÂ@x¾@†ì@ˆêDŒÈ ^¦"b  è Ž ` ü d È  l Î0’ôläZ¼PÜpÂ`‚ôHÔ|Jèˆ,Ðbºö2@¸6ÚN‚®â8€Ìü 6 ´!v"R#D#ü$–%%ˆ& &†''ì(H(°) )r)¬)þ*†+D,,V--è...ò/Â0Š1*1ì2ž3^4f4²5ª6 6p6Â7(7j7¼7ô8`8Ò9V9ú:2: :ê;Z;Ä<*<Ö=’=ð>b>Ú?p?º@\@þAœB:BÚCVCÀDD`D¢DèEDEŠEôF4FFæGZGüHVHÀIBJJ¾KK@K¬LLLLªMMRMæNPN¼O6OÆOþPÂQ†RR\RòSŒT,TÈUURU¢VNVúW¦XXbXÊY6Y‚YþZBZrZ¢[2[¼\F\\Ú]D]Æ^2^’^Ø__F_ˆ_ú``æahaîb^bÎcBc²d&d–e&e¶fFfÚgnhDii>iŽj jzjòkhkÚlLlÆmJm¼mènlnæoXoØp\pÞqRqÂrr€rêsJs¦tt2t–túuPu|vvˆwwŠwÊxNxÔyyŽyäzBzÌ{€||ì} ~"~¾’€€ìd‚ ‚êƒXƒÊ„8„¦„î…^…̆<†¬‡‡t‡¼‡ôˆ ˆ†ˆÖ‰6‰üŠ4ŠvЏ‹(‹‹ÀŒ*Œ¨ŒòD¾ŽZŽàt \œ‘‘†‘ì’N’¤““Š“ü”T”¨••\•ª––f–ª——B—¬—ܘ,˜†˜ð™t™Ìššnšššð›F›ˆ›ÎœœVœšœÖB°žž^ž¸Ÿ¦Ÿì L Ž î¡2¡p¡ì¢`¢Ò£@£´¤"¤”¥¥Z¥¸¦¦X¦´§0§”§Ü¨:¨Œ©©@©²ªªpªÎ««\«¶¬¬†¬Þ­&­˜­î®F®œ¯"¯z¯Ò°@°¼±¨±ú²&²€³³F³ª´´„µ<µ`µö¶¶®·(·P·p·”·ú¸¸t¸¶¹*¹d¹¤ººfºÒ»$»v»Ö¼¼B¼Ž¼æ½4½z½ô¾–¾â¿~¿ÌÀÀXÀ®Á Á„ÁöÂP²ÃÃ^úÄDÄÎÅTÅœÆ.ÆÎÇ*ÇtǰÈÈ`ÈÀÉÉtÉÚÊRËrÌ̲Í~Î4ÎþÏ–ÐLаÑRÑ‚Ò(ÒÈÓlÔÔ²ÕÕXÕ¦ÕøÖJÖ¤××\×®ØØNتØöÙnÙ®Ú ÚhÚÐÛ ÛjÛÖÜBܦÝ(ÞVÞÈßÚàîá\á¾â"âˆã(ã`ãˆã°ä"äJäzäªäòå8åhå˜ææ0æâçç>çxç¾è.è–èæééxé¶éîêJêÌë$ë’ëèì>ìŽìÞíTí íìî<îžîÐï0ï’ïîðpðÞñTñÄò8ò˜ó~óÞô6ô–ôìõ@õ”õòöFöšöî÷HøøjøÚù2ù†ùàú6úÌûbû¨ü ü˜ý ý þ<þ®ÿTÿ„ÿÊÿþ(nÆ Tœîbªð8tÎF‚Ð:f  D¶(^†èBj’Èþ & | Ê H ª à 0 – æ 6 n š  X Ô$–ê:ŠØ,†À>|h²\¬ú2f Ø<~Â\ÄøJ¸œ–l¾,’ô^ŠÆö2|æ"^šÖB’  \ ˜ Ô!!p!¸"""š"ô##`#Ò$>$ $Ð%˜%À&$&†&è'F'¤((°)R)Æ*2*Æ+8+ ,,ª--Œ-ú.d.Ð/>/Ú060Œ0â1"1R1’1è202†2à363”3ê4F4œ4ò565p5ª6>6Œ6æ7@7¤8<8l8Œ9N9è:¾;H;ö<ž=B=æ>º?^@@¦A A¢B8B~CpD"DîEÖFvFìG<GŒGÌHHHHœIBI‚IÂJJBJªKXKòL„LÞMžN6NÊOO–PP RRžSÊTTfT¾UU–UøV`VÂW0WªXXtYJYºZ®[[@[Â\"\P\œ\ü]f]Î^^\^À__”_ö`F`˜`üa`a´bbTb¦böcÚd.d¬e0eæf’g>gêh–i:iâjÔkblHlúmÞnTo<oÒp~qŒr s´tÆuTuÒvZvÞwdwêxnxòyzzzŠ{{„||„}}d~~X~®~ì²ð€.€|€Æè‚:‚r‚ª‚ìƒ2ƒjƒ¢ƒÚ„„´„ì…$…d…ʆ$†„†Þ‡<‡š‡êˆ$ˆ^ˆ¢ˆæ‰&‰l‰²ŠŠlŠ®‹‹z‹ÀŒŒlŒÌ*ŽŽ(ŽŠŽöJªrœ‘‘@‘¤’’ˆ’Â’ü“H“”””T”𔿕0•Ž•ì–J–„—ˆ˜x™™Äš`šô›„œ œ–* žž\žÒŸHŸ†ŸÐ 8 ²¡,¡Š¡þ¢6¢®£&£ž£þ¤„¥¥’¦¦ª§§R§Ü¨€¨ô©l©àªTªÈªü«p«ä¬t¬ö­z­þ®‚®ô¯\¯Î°h°ø±’²²’³&´´¬µ4µÌ¶¶Œ¶À··\·ª·ô¸B¸¸¹Z¹¨ºFº”ºâ»®¼8¼Æ½½N½n½ü¾n¾Ê¿P¿ÊÀÀˆÁÁ~ÁÄÂ<¸ÃÈÃÖÄNĤÅÅÖÆJƪÇ"ÇšÈÈ~ÈèÉPÉ”ÊÊžË.ËÄÌhÌþͨÎ>ÎàÏvÐ ÐXЦÐòÑ.ÑfÑ´ÒÒ:ÒˆÒØÓ&Ó|ÓÒÔÔnÔªÕÕTÕ´ÕðÖ¢Öö×2ׄ×ÖØJظÙ*ÙžÙöÚTÚ¬ÛÛœÛìÜJÜšÜêÝ:ÝŠÝêÞ2ÞxÞØß&ßžßþàæââ\âœâäã2ãzãÂä äˆå å’ææ ç(ç®è2èèîéJé¦êêXê¾ëëzëØììnìÖí2íˆíäî@î¢îøïXï¸ð<ðÀñ ñ¤òò”òÚó>ó¦ôô|õ8öŒ÷¢ø„øêùPùÜújûûœü8üœý(ý´þDþÐÿ\ÿè z ì F ž î H ¢ ú R ¤  v ä X Î : – ö †  ª : Ê \ Ü l ü Ž ò \ Æ D ” æ X À J ò t \ F Œ  – Ú & j ® Ú  L  | Ê  € Æ J Ô  Š  < r Ø 4 ˆ Ü 0 \ ì z  ¦ ð !^ !Ì "< "¬ # #ˆ #ö $f $’ $â %< %x %Æ &, &š &Þ 'R 'ª ( (n (Þ )" )d )Ò *< *ª +4 , ,’ -R . /$ /” 02 0Ú 1º 1þ 2® 3 3¸ 4  5~ 5ð 6` 6Î 78 8 8Ú 96 : :t ;@ ;¸ < <„ = =¦ > >: >~ >â ? ?j ?Ô @ @† @ð AZ AÆ B2 Bx C C` CÄ D( DÌ Ep Eö Fš GL G¢ Gø HN H¾ I. Iž J JZ J¦ Jò Kt K¼ L L` L² M MØ NŠ Nö OH O  OÞ P P† Pê QB Q  Qú RT R² S ST S² T Tj TÚ U. UŽ V V~ Vð Wb WÔ X XZ Xœ XÞ Y Yª Z$ Zh Z¬ [ [` [º \ \’ \ì ]F ]º ^n ^Ì _( _z `F a ax aº aú bL b‚ c& c„ cÞ dT d¦ dø eJ eò f” g: gØ h€ i i€ iÆ jL jÎ kŠ lF m mÎ nŒ oF oæ p¢ q^ qÒ rF r† s" sÒ tH tÒ uF uº v2 v¦ w wL x( y yì zª { {~ {ì |Z |Ä }2 }þ ~& ~” ^ €( €† D Ä ‚& ‚‚ ƒV ƒÞ „( „ž … …r …Ü †F †¨ ‡ ‡Z ‡¾ ˆB ˆ¬ ‰$ ‰d Š Šú ‹ˆ ‹ò Œ\ Œè r Ž Žš 6 Ì D È ‘6 ‘¤ ’ ’d ’Ò “ “F “´ ”$ ”‚ ”î •„ •ð –Î —ª ˜z ™ ™è š: › ›Œ œ` œê t ú ž‚ žþ ŸR Ÿ¦    |  Ô ¡$ ¡t ¢ ¢V ¢’ ¢è £< £Ê ¤x ¤Ì ¥ ¥h ¥È ¥ü ¦@ ¦„ ¦Ü §( §x §Ä ¨n © ©š ©î ªt ªú «~ ¬ ¬B ¬Ä ­B ­ü ®¶ ¯Œ °f °Î ±d ² ²” ³6 ³Ì ´\ ´ü µŠ µô ¶^ ¶È ·0 ·š ¸ ¸p ¸Ú ¹D ¹´ º ºŒ ºú »h »¬ »Ø ¼ ¼j ¼¶ ¼þ ½d ½Ö ¾ ¾r ¾ä ¿V ¿à ÀP À¾ Á8 Áü ˆ à À Ãä ÄH Ĭ Å Åp ÅÐ Æ4 Ƙ Æà ÇN Ǿ È Ȳ ÉJ ɤ Éü ʦ Ë\ Ëö ÌŒ Í" ͼ ÎV Îê Ï„ Ð Ð~ Ðæ Ñ, Ñ’ Ñì ÒJ Ò¼ Ó2 Ó  Ô Ôˆ Õ Õt Õæ ÖX ÖÌ ×F ×À Ø0 ؤ Ù Ù„ Ùô Úl ÚÈ Û$ Û€ Ü ܈ ÝB ݶ Þ. ÞÜ ßd ßì àp àô áÜ âf â ãj ä ä^ ä¾ åP åâ æ’ æ¸ æÞ çV çÆ çú è^ èæ éX éæ ê@ êÐ ë` ëì ìx í íˆ íþ ît îæ ïX ïÜ ð^ ðâ ñh ñì ò¬ óf ó² óþ ôD ô¸ õP õè ö~ ÷ ÷¦ ø øt øê ùZ ùÆ ú< ú¬ û û‚ ûê üd üâ ýN ý¾ þ. þ¤ þü ÿp ¢ 8 Ò j  À f  ¶ f Ü R ¸  „ ð Š ð Z ¾ & Ž ø ` J 0 ¤  |  P Þ ^ Ü \ Ü \ Ö V ¶  ˆ æ D ¤  T ®  ^ ´ ’ ê h ¾     b º ¤  š 4 Ð !l " "  #< #Ø $t % %† &t ' 'Œ ( (Œ ) )Ž *\ *à +R +ê ,n , -F -v -ú .p /0 /b /ò 0v 0Ø 1: 1Ä 2X 2Þ 3f 3ì 4r 4þ 5„ 6 6 7 7œ 8 8¬ 9: 9È :X :æ ;t ;ü <š =( =¦ >$ >„ >þ ?t @ @J @Ü AX A¬ B4 B¾ C8 C¶ DD D˜ E E€ Eê F@ F² G Gr Gª H Hv H® I In IÖ J JZ Jè K| L Lr M M¤ N< NÎ OP OÔ PR PÔ QX QÚ R^ SH S® TH TÈ U6 U¶ V6 V° W2 W® X0 X¬ Y, Y° Z< Z¸ [@ [Ä \0 \¦ ]† ^ ^¬ _. _® `, `¬ a, aª b& bn bè cj c¾ d> d¸ e2 e eÚ f$ fn f¸ g gL g– gþ h\ h¶ i i† iú jp jØ k kh k° kø l@ lˆ lÐ m mŒ mÔ n nÈ o ož oæ pd qD q’ qà r rr s s˜ t u uÔ vØ wÜ xÐ yH yÀ zp zè {` {à |` |à }V }Ú ~Z  † €* €Ô ¾ ‚ ‚N ‚Ü ƒ~ ƒÂ „t „è …\ † †¨ ‡< ‡r ‡Ä ˆb ˆ¨ ˆî ‰Ž ‰ü Šš ‹ ‹„ ‹ø Œ~ ŒÖ J ê Ž\ ŽÐ D ¸ * j â ‘V ‘Ê ’" ’– “ “€ ”, ”ž ”þ •` •À – –z –Ü —L —¬ ˜ ˜T ˜¶ ™ ™® šD šÚ ›p ›Ð œ0 œˆ œ´  t Ì žŽ žÖ Ÿˆ  B  ü ¡º ¢` £ £Ì ¤€ ¥> ¥ø ¦¦ §b ¨ ¨Ú ©– ªR « «Ê ¬„ ­( ­† ®$ ®Â ¯: ¯ê °N °È ±. ±â ²6 ² ²ä ³8 ³Œ ³ä ´ ´b ´¸ µ µd µ¼ ¶ ¶d ¶¨ · ·À ·ø ¸ ¸€ ¸ò ¹d ¹¬ ¹ô ºD ºÖ »" »’ ¼ ¼F ¼¸ ½N ½ú ¾¬ ¿Z ¿˜ ÀR Àš ÀÒ Á Á^ Á¢ Áê Â0 Âx ÂÀ à ÃN Ô ÃÞ Ä& Än Ķ Äü ÅD Ũ Åü Æ~ Ç ÇŽ È È’ É É‚ Éî ÊV ʼ Ë" ˈ Ëæ ÌD ̪ Í ÍŒ Î* Έ Îæ Ïè ÐF Ъ Ñ4 Ñž Ñü Òh ÒÖ ÓN Ó¼ Ô Ôt ÔÐ Õ, Õè Ö¨ ×, Ø ج Ù Ù¨ Ú” Úî ÛV ÛÜ Üš Üö ÝR ÝÌ ÞB ÞÊ ßB ߬ à à† á á” â ⪠ãB ãö ä  å å˜ æ æ” ç çŒ è. èz é éð êÜ ëd ëò ì€ ìò íb íÒ îB î² ïX ð ð¬ ñV ñü ò¨ óR ó¼ ô$ ôŒ õ õ˜ ö ö– öî ÷p ÷ò ø4 ø| øþ ù‚ ú( úÐ ûx ü üN üª ýP ýØ þJ þ¬ ÿ ÿp ÿö ž Ú 6 ’ ð ¢ ú P Ò P Ö Z Ú R Ð B º 6 ´ 8  @  6 ² 2 ¶ h ê œ  r â ž  ˜  D ¦  l î T ¶   > ž  ˆ ð Ú V Þ f  ` ä p  X †  ~ ö v ! !Š " "– # #ž $" $  % %° &* &¨ 'T 'ô („ (° )P * *Ð +˜ ,0 ,¸ -¦ .D .â /h /ú 0˜ 1* 1¼ 2N 2à 3< 3Î 4@ 4Ð 56 5ž 6 6t 6È 7 7l 7Ê 8. 8‚ 8æ 9F 9À : :| :Ü ; ;> ;„ ;à > >ž ? ?f ?Æ @& @Æ Af AÐ BB B² Bø CŒ D D¶ EJ EÞ Fr G G´ Hp I" IÖ JŽ KD Kþ Lh LÒ M& MŒ Mä N< N” Nê OB Oº P0 Pœ Q Qr QÞ RJ R¶ S SŠ Sð T^ Tè UT Uº V0 Vœ W W Xb Y Y€ Yð Z` ZÐ [@ [È \8 \ª ]* ]ª ]ð ^p ^ð _p _ð `p `ð ar b bt bÖ c cˆ cä d\ dä eh eì fp g g¼ hZ hÞ i^ iÚ jV jÔ k k¤ l. l¨ lÜ mX mú nx n¸ o6 o¨ pH pÄ qF qÀ r: r¸ s, sÌ tD tâ uV uþ v¢ wL wø xP xô yš z z~ zè {X {È |2 |ê }  ~X  Ð €\ €è t ‚ ‚Œ ƒ ƒp ƒÐ „2 „” „ö …z † †Š ‡* ‡Ê ˆÀ ‰D ‰È ŠN ŠÐ ‹  ŒT j È Ž Ž| ŽÜ < œ 2 Ä ‘X ‘ê ’| “ “® ”L ”¾ •0 •  – –l –Æ —B —Ž ˜ ˜² ˜Ú ™V ™Š š š. š® šØ ›¬ ›ö œp œè B  ž< ž¸ Ÿ6 Ÿ²  .  ª ¡& ¡¢ ¢ ¢Ð £€ £þ ¤z ¥ ¥ž ¥ê ¦p ¦¸ ¦è §j §¼ ¨ ¨Ä ©v ª& ªÎ «€ ¬ ¬° ­H ­à ®x ¯ ¯¨ ° °˜ °ì ±@ ±” ±è ²4 ²€ ²Ô ³& ³R ³¤ ´ ´n ´Ô µ8 µª ¶ ¶† ¶ø ·j ·Ü ¸H ¸º ¹( ¹^ ¹Ð ºB ºº »6 »² ¼. ¼¬ ½( ½¦ ¾$ ¾¢ ¿ ¿ž À À– Á Á’ Áô ÂV ¸ Ãj Ä ÄÆ Äæ Å ÅÊ Æp ÆÜ Ç” Ç´ È ȶ É, É´ ÉÔ Ê† Êî Ë  ÌP Í ÍL Íþ ζ ÏZ Ïz ÏÜ Ð~ О о Ñb Ñ‚ ÑÜ ÒV Ò~ Ó( ÓÔ Ô~ Õ* ÕÖ Ö| ×8 ×° Ø\ Ù Ù– ÚH Úö Û¤ ÜX Ý ݲ Þ Þ~ ß ß´ à( à á^ â( âî ã¸ ä‚ åH æ æª ç@ çØ èn é é0 éŒ ê0 êÄ ëZ ëð ìP ìî í† î îÖ ï” ð ðÌ ñˆ òT òÈ ó˜ ôP ôì õ† ö* öÐ ÷< ÷Þ øz øþ ù‚ ú úŠ û0 ûÔ üz ý ý þX þò ÿ– 8 Š Ü . ˜ ê < Ž à 2 Ò $ ˆ Ú . ‚ Ö * ~ Ò & z Î "    š  ‚ ö n Ü L º ( –  z ò l ò x  ¬ F ä €  ¼ R ô  (  \ ö , ^ æ n ¸  € æ L ²  ~  ’ ê v – ! !¢ ", "º #. #° $2 $® %" %  & &| &ø 'l 'Ü (x (è ) )` )Ð *@ *è + +„ +ú ,f ,Þ -f -Æ .0 .œ / /t /Þ 0D 0° 1 1T 1¾ 2* 2Œ 2ü 3h 3´ 4h 4Ü 5L 5À 6 6Ž 6¾ 72 7¨ 8 8X 8® 9 : :þ ;n <Ž = =† >$ >Ò ?T ?î @ @® AJ Aä B€ C C¶ Cæ D‚ E EÀ F^ Fð G‚ H Hœ I IÆ J4 J” Jú KZ K¾ L" Lt L M$ MÌ N0 N NÞ O< OÜ P6 PÀ QT Qè RZ RÔ S S€ Sö Td TÒ U@ U® V VŒ Vú Wh XP X¤ Y" Y Z ZŠ [ [z \, \Þ ]„ ^. ^Ô _€ `* `Ô a€ b. bl c c¼ d^ dâ ef eê fn fò gv h0 hž i" iÀ j& jŒ k k” kè lZ lŠ m m’ n n¬ nú o~ p pŒ pì qj r rx sb s¬ t$ tœ u už vZ w w| wô xT xª xÖ yJ y  yÞ z@ z˜ zÚ { {‚ {ð |h |¬ } }^ ~2 ~Ê € D ¤ ‚ ‚ä ƒ\ ƒ´ „ „d „ò …| † † ‡" ‡¬ ˆ< ˆÊ ‰Z ‰â Š: ŠÊ ‹X ‹ä ŒZ Œ’ Œæ L Š ð Ž2 Ž  0 ¶  h À ‘p ’ ’Î “8 “¤ ” ”r ”Ð •. •Œ –, –Ð —v ˜ ˜¸ ™Z ™Ð š^ šâ ›P ›ð œR œÈ ‚ ž žö Ÿ’  .  ¼ ¡N ¡Ü ¢n ¢è £R £Ê ¤4 ¤Î ¥F ¥Ú ¦– §* §Î ¨Š ©H ª ª¾ «~ «Â ¬" ¬f ¬Â ­ ­H ­Â ®B ®¬ ¯2 ¯‚ ¯ü °v °ð ±L ±  ²& ²  ³ ³¦ ´6 ´¾ µh ¶ ¶¤ ·6 ·² ¸* ¸¤ ¹ ¹– º ºŠ » »‚ »ô ¼T ¼Î ½J ½² ¾& ¾° ¿, ¿¦ Àž Á  Âè Ãt ÄN ÄÊ Åp Åú Ç Ç” È Ȧ É, ÉÀ ÊR ʸ ËT Ëð ̬ Íb Íþ ÎŒ Ï ϰ Ð< ÐÌ Ñ\ Ñè Òt Ó Ó² Ôf ÔÚ ÕN ÕÀ Ö0 Ö¤ × ׌ Ø> Øô Ù  Ú& Ú¬ Û2 Û¸ Ü> ÜÄ ÝH Ý´ Þ ÞŒ Þø ßd ßÐ à< àž á ဠáö ân â ã ã ä äx äî å^ åÔ æd æ¾ çT çà èp èü éŒ éÔ ê` êð ë| ë¼ ìH í íª íè îh îª ïR ïö ðž ðà ñˆ ò, òˆ ó óˆ ô ô® õR ö öX öØ ÷R ÷Ô øR øÎ ùN ùâ út û ûœ ü6 üœ ý ýh þ þÌ ÿ2 ÿ˜ ÿö \ ì Þ  š ” d  â F ª è Š 4 à ~ 6 Ð n  ¦ 4 ° , ¨ & –  v æ V F Ú n à P  0 ¤ 8 Æ V â n ô ´ t 4 ü À þ À ˆ F ² !p "0 "ð #¦ $` % %´ &F &Ü 'p (~ )„ *’ +, +l +ì ,h ,Ø -n -è .ž /` /ö 0€ 1 1l 1Ò 28 2ž 3 3j 4 4¼ 5Š 6T 7 7ô 8¼ 9Š :X ; ;è <œ =T > >h >Ð ?2 ?Ä @V @è Az B Bž C4 CÆ D\ Dò EŒ F( F GX HH I2 Iª J" Jœ K K’ L L° M` N NÀ O OÎ PL PÆ Q8 Q° R& Râ Sž TX TŒ UH V V¾ Wz Wæ Xj XÌ YJ Y‚ Z< Z€ [ [¢ \. \¾ ]N ]¦ ^r _@ ` `Ô a¢ bl bÔ cœ dh e eà f° g: gÈ hX hä il iø j„ k k– l0 l¶ m@ m² n4 nz o o’ pX pü qˆ r rº sP t tö uˆ v v¤ w0 wö xl y y’ zp { {È |t }" }Î ~| V ¢ ò €r €¾ ^ à ‚^ ‚Þ ƒ^ ƒÞ „^ „Þ … …P …Ø †l †ò ‡² ˆ. ˆÞ ‰Ž Šf ‹* ‹ö Œ¨ h Ž< ŽÆ N Ö ` ê ‘t ‘þ ’ˆ “ “¦ ”0 ”º •n –" –Ô —Ž ˜> ˜ð ™z š šŽ › ›¢ œ, œÊ d þ ž Ÿ( ŸÀ  X  ò ¡l ¡Ò ¢* ¢  £0 £’ £ú ¤` ¤Ø ¥* ¥’ ¥ö ¦h ¦æ §8 §Š §Ü ¨. ¨€ ¨Ò ©$ ©ˆ ©Ú ª ªb ª² ªô «Ê ¬L ¬¨ ­¨ ® ¯P °( °þ ±` ² ²Ú ³D ³¦ ´N µ µ¾ ¶| ·6 ·î ¸¤ ¹N º º@ ºì »œ ¼F ¼¬ ½\ ¾" ¾¼ ¿" ¿ˆ À2 ÀÄ Á6 Á‚ Â< Âú ú Ät Å2 Åò Æœ Ç Ǹ È` É É® ÊP Êð Ë’ Ì0 ÌÔ Íz Î Î^ ÎÄ Ï Ï® ÐT Ñ Ñè Ò° Ó‚ Ô@ Õ ÕÒ Ö  ×n ØT Ù4 Ùˆ ÙÆ Ú„ Û Û” Ü ܶ ÝP Ýî ÞŒ ß* ßÈ àh á â âè ãÆ ä¤ å‚ æb ç ç¤ èF èæ éÊ êh ê¦ ë. ëÆ ì` ìö íŠ î îž ïL ïú ðB ðò ñš òB ó ó ô ô  õ õä öä ÷ä ø¾ ù¾ ú˜ ût ür ýn þ. þî ÿ¸‚FØžn*òjâZÒZâ j ô €  – $ ¬ 4 ÂJØf¤Œ’zîbÜt°Jæ„"¼PèzBÔpn¶ > È!R!Ü"¢#h$.$ò%¸&~'D( (â)¼*˜+<+Ü,|--à.”/J/þ0~0ø1t1ô2Œ3$3¼4z55¶6V6ö7–868ö9¶:l;,;ì<¬=`>>¢?F?ì@ŒA>AðBBÊC|D@DúEÆFŠGLHH I2IÀJ KbL"LæMªNhO$OäP¤Q`RRÞS SÔTT–U$U¾VhWW¼XdYY¶Zf[[®\\] ]¶^b__®`T`ôab$b°cFcôd¢eNe°ffpfÎg¶h(hÈi0iüjvjÒk0kÐkðlœmLmônšo*oºpZpúq˜r8rÚspsötÂu€vzvøwdxx˜y.yÄz˜{8{Ü|‚}~Z~ð†€€¤:Ò‚nƒƒ°„`……´†\†Ø‡ŽˆP‰ ‰ÆŠ~‹8‹úŒ¼ŒôŽ@Žð‘^’L“2””p•:–&——ò˜¦™–š šÐ›œœBœú°ždŸŸÒ ²¡‚¢4¢â£Š¤>¤Ì¥V¥ä¦Œ§:§ì¨|© ©œª4ªÎ«^«î¬ˆ­­Ž® ®Š¯¯‚°°¨± ±œ²²”³³„´´~´úµtµð¶l·*·ä¸œ¹4¹Ìºb»T»°¼¼l½½´¾6¾æ¿ÈÀŒÁÁªÂ6ÂÂÃHÄ@ÅŶÆ"ÆŒÆöÇ`ǺÇþÈfÈ®ÉÉÊÊxË˰ÌH̪Í ÍNÍêÎ>Î’ÎèÏ:Ï’ÏäÐ6ЊÐÜÑ0ÑâÒ”Ó ÔˆÕpÖX×.ØØÚÙvÙÔÚÎÛ”ÜTÝÞJß~à´ájâ ã ãôääåÔæ¼ç¦èdéé¼êhë&ëäìíNî î~ï<ïúðDñ.òòþóˆôxõdöD÷2øøæù²ú|ûHüüâý¬þ„ÿ.øœ†<ŒübàF¢ü,`è,xÄ^Ö < ˆ Ì h ´ . z Î  d ¼ D  ðÈl¸6ÂDð~8PœÔ6˜ Œ N–ðNª fvÚ0Ö"”ÞXÚ J À!!l!Ö"H"¼#P#®$¢%p&&Î'j((®)N**´+X+â,d-"..Š/R04122Ô3z4F5 67.8T99â:²;î<à=ò>N>®??p?Ê@*@˜@úAlAìBrB²C4CxCèD2D|DðEˆFF¬G0G¤H@HÜIVI¢IòJRJ²KK¤LLhL¾M8MºNNŠNÞOFOºP@P”QQ‚QòRhRæSRTT|UUxUðVjVøW\WúX°Y.Y†YâZtZÖ[8[š[ü\\\¾] ]‚^^J^Â__l_À``l` `Úaa`a²aþbhbÐcXcÂd dˆdÈe(eÊftfügvhhŠiiŽj j˜k2k²l.lÆm mfmònZnÎoopoîpÆqbrps^sätptêu<u¦vv|væwPw´wðxbxòy’zDzÐ{2{®|,|¦}}œ~4~ÎTþ€®Lƒ ƒ¶„@……ª†R‡D‡ðˆ ‰2‰Š‰ìŠt‹ªŒœ<ŽޤR,𑬒x“"”••Ì–š— —ä˜ˆ˜ô™¤šNšî›8›‚›Ìœœ`œª –àž*žlž¸ŸŸZ  Ô¡V¢¢Î£†£ê¤n¤ö¦¦ä§Œ¨H© ©Êªî«¢­®,®Ø°.± ²R³€³Ö´ ´€´¼µ&µà¶D¶¶è·¤¸L¹¹x¹ðºFºœ»»†¼2¼ª¼ú½j½æ¾t¿¿šÀÀ^À¾Á$ÁºÂDÂôÃ’ÃþÄdÄÀÅ"ÅvÅêÆŽÇ,ǪÈBÈÀÉ0ɘÉúÊPʰËBËÊÌDÌÎÍ ͰÎZÎäψÏäÐZÐàÑÎÒzÓ ÓœÔ:Ô˜ÔöÕDÕÜÖTÖÐ×tØ4ØÒÙ˜ÙúÚxÛÛØÜzܼÝ*ݨÞVßfà>á áèâ ã„äå`æŠæâç*ç‚çÈèfèôé¤êXêàë¦ìœííPí¨îî–îòïfððRðšñ ñhòòxó&óüô„ôÔõhõÌö*ö˜öÜ÷F÷ ÷Öøø|ùùxù¶úVúäûNûÊü‚ýýªþþ¸ÿ:ÿÀ|",쮼ú8¨V,¾† 0 ,  |  Œ R.ÌLîЦâÀdèàŽn`D2Þ"`ÂLü¦Ð  ‚ î!N!Œ!ì"v"Ü#v#ä$€%%â&Z&Ø'|'ø(x(ö)–**˜++\,,Ô./0 0¤1.1Ö2~323¼4`5,5Þ6t77R7®88>8°8ü9„9Ú:0:†:â;V;¸<.= =h=æ>R??Ø@p@êAlAâB„CdDHDÒEzF\GG–HBHòJ4J–KhKœL L®MJMäN˜OTPhPôQÀR†S†T<UUÌVèWøX0YYê[[[Þ\P\Ð]b^^ì_‚`0`Êa*aœaôbTb´ccfc¶d dVd¦dòe^eØfTfÒgRgÊhJhÌi*ižiôjdjÄk"k€kÔl*l†lâmBmšnn„nòonoÈp(p¤pæqq°rJr¬sHsètHtºuZuÜvZväwxwäxxyydyÄzž{z|(|Ú}â~@~Ö,Üæ‚žƒ^„††ê‡V‡ÞˆDˆˆˆè‰x‰îŠn‹‹ÐŒn2îŽt$ü‘æ’v“&“~”Z”²•H•Ò–H–ž—Ì™™þš–›&›¼œ˜(ØžZŸŸ¶ Z¡¡¤¡ê¢–£’¤¤ò¥Š¦r§¨$¨Ô©’ª^ªú«’¬"¬ä­ ­–­ö® ¯P°:°±±t±Ü²€²ö³r´^´öµÖ¶¦·z·®¸¸h¸ ¸à¹6¹j¹²º0ºšºâ»»|»ê¼V¼Ü½h½À¾¾F¾†¾ø¿v¿ÈÀÀnÀ²ÀúÁ>Á~ÂÂF†ÂðÃnÄBÄžÅÅNÅÊÆ ÆNÆŽÆàǨÈrÉ’Ê.ʶË`ÌÌøͲÎhÏÏØФÑ*ÒÒÒÓ¸ÔhÕÕÆÖ4Ö¸×פ×ðØ8ØÖÙDÙäÚPÚøÛ–Ü,Ü¢Ý2ݾÞhßß|ßæà~á"á¢ââjã,ã äläøåâæ€ç@èèæé¬êpë ë´ì†íí¼î˜ï|ïðð¢ñÈò°óvôôºõ\ö"öÂ÷døøÞù‚ú ú¦ûVüüîý þˆÿ ÿòF:²rRÀVh   þ ö î Øb|–Æ îÒ rŒP^œþ^¾€¸ðVž^è:Þ |!B!°"¦##È$6$¤%%´&€''î(°))¬)ø*”*Ò+L+ä,",´-8-º.L.è/¸0Ž1^1œ2®33f3æ4X4¢4ò5J5 5ø6j6î7´8@8Š99X9Ä:R:ä<<,<”<ô=\=¾=ø>D??P?”?Þ@Z@ØAAbAÜB„CC¢CúDFDÀE:EÊFLG GòHtII¸J†K(KÂLšMhMÎNNNöO°P P¸Q>QÂR`S S¬TTbTÀUU|V&VzVÌWjXXfYˆZ8Zî[Š\~]@]ú^:^–__¤`.`¬a|bZcHcÐd’dÔeexf:ffúg@g‚gæh(h®iiTi€i¾jjZj¤jîk8k‚kàl mRmÐnznøorp6pÖqq\q¾r"rŒs0t tèvwx@y&yªz˜{|| |š}}\}¶~@~ðxè€8 ¨‚2ƒƒÐ„Œ„ò…^†<†t†ü‡„ˆˆ|ˆ¬‰”‰ÒŠ0Šþ‹NŒ„LŽŽ`.VÜ,˜Âì‘‘<‘f‘î’†’°’Ú“–“À“æ” ”t”š”Ä••ª–D—4—À˜š™|šš¼›bœœÚœäžžjž¼Ÿ<Ÿ¤Ÿò $ €¡¡²¢¢œ¢þ£^£æ¤`¤â¥d¦D§ §x§¶¨@¨ª©©¾ªÚ«Æ¬V¬ž¬ò­l­–®®x®ê¯L¯°° °Â±|±ò³ ´P´Øµ&¶ ··´¸&¸l¸¶¸à¹„º(ºØ»ˆ»È¼¼²½½‚¾¾Î¿ ¿ÐÀÈÁ®”ÃzÄ`ĺÅÅjÆÆrÆÞÇfÇÔÈ ÉÈÊŽË&Ë˾ËìÌ8ÌÒÍlÍÖÎ,ÎÊÏlÐоÑNÑØÒ²Ó<ÓêÔÚÕ ÕŒÕâÖNÖÀ× ×fתØBØÄÙÙ|ÙÚÚ¾Û€ÜLÜÄÝœÞxßßÄà àòá~â"ããâälåæç0çöèÞébê>êüëvëºì.ì¢í,í¾îðïÌð²ñ”òDòÀó<ó¸ô&ô–õõèö0ö~öÌ÷÷˜÷âø,ø¨ù$ù¶úšûJûòüšýhþFþÌÿ”ÿüNÊ\¾x¢Ì`¶0¬XRØb’âÐ ˜ x ¨ Ø  8 î h Š þ „ öäRŽFÂ~äDÊ" ‚Þ´Š~JÜ hXRäN|œün°  ¶!P!Ì"D"Þ#È$4$t$Ì%\%¬%ü&r&ô'T'¬(.(¼)J)ê*°+>+â,D,°--p.H.Â/V/¶0‚1B2d3V3à4d4ø66Š787Ú868’8ê9|:;;è==n=ô>f??œ@@ÐA"A–AöB|C0CöDE"EŒF@F¾G‚H:HÂIžJ(JÌKjL6MMÒN„O(OàP¶Q’RXS SÀTU(VVôWÒXÊY‚Zh[˜[Ú\\œ]]Ð^Ž_^``’`Þa‚b^c8cŠdHdÒeŠfFfæghgðhVhäiÈj¬kŽkælÌm2mÐmønLn¶nüoBoˆoÎpppp®pîq.qnqšqÆr4ržrÞs(sXsŒsÀttht®uuJu¨vvDv¶wwzwÖxFxÌz{2{œ{î|"|T|||À}}V}¨~~¸N€*€Î–¾‚‚¤ƒ˜ƒâ„„V„ „ê…V…œ†N‡8‡n‡žˆˆ˜ˆú‰X‰¬ŠŠˆ‹‹V‹˜ŒŒ¼f¾Ž ŽZŽ„4f8¸‘j‘Ö’€““~“æ”V”À•b•Ú––®——t—Ƙ˜l™™X™ˆ™ðš„šò›*›j›öœl–ž žjžÆŸ¤ @¡¡Ö¢>¢ü£‚£Ô¤,¥¦¦þ§°¨’©"©X©¼ªHªö«š¬¬¢­€­ø®`®Ü¯X¯ª¯ü°R°¢±T±ò²”³8³È´˜µ.¶¶ž·8¸(¸Ö¹‚ºXºà»¶»ê½½š¾¬ÀÀ¢Á4ÂÂxÃZÃÖÄzÄèŰÆFÆÌÇ ÇvǼÈ0È„ÉÉÒÊ@Ê„ÊÈË,ËØÌHÌÚÍ ÎŒÎêÐfÑÑšÒÒÌÓØÔ6ÔÆÕVÖÖ®×4×þؾÙ„ÚZÛÜ ÝݦßߎßêànàÄádáÌáøâXâæãbãîäpå*æ.ç¤è ètéé”êê¢ë"ë ìTì„í&í¬î`ïZð8ðæñlñàòžóDóÚôRôÄôüõ|õÐöDö´÷F÷’÷ÂøDøzø®ù¤úŒû\ûÀüVüÈý:þþ6þšÿÿrÿìf–’ ¼x È|2ðŽ"  Ä T  v ^ þ . ^ ®¸bÎ:Üzvø¼\¬hþŒV,œÜRÂ0tútö¸Î¼ ¨!Œ"b#j$ˆ%¨&6&n' '²(¬)º**D*Ä+ˆ,¨-R-Ô.6.È/*/Œ/Ò0\0¤1D2L2”2Ü3X3Ü4 4ž4Ú55b5ž5Ö66V6è7.8L9l:ˆ:Ê;D;¨<$<¨==–>>`??Ð@b@øAäBÄC¢D²E E†F.F€FÔGGVG¦HHVIfI¾JbKKÚLpM\MºN N¦O$O¼PdPþQ¨QþR.RbR®RäS\SœTU.UvVV¶VþW¢X.X¬Y@YØZ.[\$\°]–^^¬_@_ð`Øa~b^c*cêd†ereÚf0fÆg`gühLi iŠjj¢kTkâlŒmmvn"nnðoZožp^qqÖr rhr¼rìsVs¸t0thuDv2w@x>x”xèyDz6{.{‚{ö|&|p|º} }˜~(~¶zà€F€â|‚‚Š‚æƒÈ„„”… …„…ú†~†ò‡Œˆ,ˆ~‰nŠb‹‹°„öŽl0ô¶‘~’R’ΓL“È”2” ••À––´—X—ü˜L˜œ™|šX›2›ðœ€ŽîžLž®ŸR   Ø¡N¡ê¢þ£¶¤>¤ü¥À¦¼§Ì©D©pªªŒ««Ž¬D¬È­J­š­Ê­ú®L®œ®È¯¯ °`°Ü±²²H²Ì³¤´z´üµº¶¼·R·¼¸~¹H¹´ºº²»`¼¼r¼æ½¦¾n¿¿°ÀTÀøÁœÂ@ÂÞÃÌĜłÆXÇLǨÈdÉÉìÊDʨËË|ËôÌN̬Í^ÍØÎxÏϼÐZÑÑpÑúÒàÓšÔ¼ÕVÖX×`Ø^ÙŒÚÀÛ4Û´ÜpÜœÝÞ,Þ„ß`à>àðápáðâLâÔã¢ä:äò妿Zç çºènéé€êJëëÞì¦í"î2ïRðXð®ñÜòPòØó\óîônôÊõ\õ®ööº÷6÷¾øøØùjú`ûXüý&þbþ þÞÿ¢ œ°4Ò Tîœ.Ö œ  ¢ P ä x  ‚š&̤’–䞀ö´ŽÈ öÆÞ²Z$|ô Ž!(!ž!â"˜#€$%.%Ž&&j&à'D'Ì(p(Þ)º*ª+,,N,Ä-8-´.0.¤/T/Ø0P0â1@1Ô2,2®3Â4"4z55†5î6ž7N7þ8L8š9F::”;F;Î<†==ú>F>Ä?.?”@hA@B8ClC²D2D²E4E²F0FFòGtGôH”I6I~J€KrL2LôMPN,O OÐPPnPúQžR€SZT$T´U¤V0VºW:WŽX$X¤YYÒYþZ4ZŽ[[Î\L\Ê]Ž^|__ü`‚`äaaNaŒaÌb bÌc~deœfäg:gjgâhFhäi~jjxjükÆmm–múnÖo<o¢p:pÒq¢rzssêtÊu¦v"v ww”xxˆyyÒz–{d|.}}Ö~tœ€$€®8Ú‚|ƒƒÀ„b……¤†J†ì‡¢ˆ`‰‰ä‹ŒZŒè6øŽºÌÒ‘Ú’¢“R”4”ˆ”Ø•*•z•È–:–Ž–è—>—Ú˜z™™´šFšÐ›\›æœJœÚrôž˜Ÿ$Ÿ´ ª¡:¡´¢Š£J¤¤–¥P¥ò¦ä§P§Š¨R© ©ÀªŠªö«|¬¬Š¬î­ˆ­ú®L¯¯’°&°º±P²r³’³îµ¶.·L¸¸ê¹Äºv»»º¼b½l½Î¾$¾®¿ŒÀ`ÁFŠÃÞÄÄŒÅÅ|ÅüƆÆôÇHÇèÈ¢ÉXÊDÊæË®ÌpÍ~Î6ÏÏþÑ2ÒRÒöÓxÓêÔjÔ¾Õ&Õ„ÖÖ˜××>Ø&ØðÙ®ÚPÛÛÆÜvÝ&ÝÖÞêß²ààVá8ââêãtä.åæ:æÂçÊèÊéÌê¾ë&ììÖíJíºîRîèï|ððxðÜñŒòxóhóÐô6ôœõfö0ö÷÷šøø°ù2ùÚúÀû üxýTþ.ÿÿà>ÂFÌL’®¾pÐ0Ì Ü † ø ª ˆ ö d Ä6¢¼ ,Ö‚4òbÒ@”àBŽ&€Ü2¦PªøF”JÚ^Ĩ¤.´  æ!þ"ä#Ü$(%V%¨&$&Ò'„((ä)j)ô*Â+’,`-2. .Ü/6//ü0Œ11ª242Ä2ü3R3¢44¢5(5¬686È7P88ä9®:x;D;â<|==Œ>\>ü?¤@L@ÌAHA¼AüB¦C6CâD^DØEŠF4FâGbGÌHHhH IIVIœJKKtL LÀM`NNfO@O‚OÜP4PPÊQQzR R¤SnT8T UUfU–UüVbV¤W WŽX$XÌYY\YòZ’[4[Ö\x]]ª^^¤_0_¼`L`Þajb:c cÚdrdèe eÌf\fìg|h h˜i&i´j>jvk kZk¨kölDl’mˆnlooÐp‚q4qÆr^rðsPttÒu”vÖwºxbyyÈz({{°|@|œ}}Z}¶~~n~Î.ò€”6®‚‚d‚胎ƒò„8„°…(… ††Š‡‡|‡ôˆ¤‰‰üŠpŠÈ‹ ‹t‹ÈŒŒxŒØ8Ž"Žú¨^‘„’Ê“ ”L••X•¢•º•Ü– –T–€–¶–ø—^—®˜˜p™™‚šš‚šð›ˆ›èœÀpž$žšŸŸ‚Ÿð „¡¢££p¤|¤”¤æ¥4¥¦¥ö¦`§§¢¨:¨R¨’¨Ê©©l©´ªª°««8«€«ð¬~¬ª­­n­Æ®$®’®Ü¯X¯Ì°J°æ±V±Â² ²Œ³³‚´‚µPµ€¶*¶Ò¶ô·:·|·¾¸*¸¸ø¹p¹æº˜ºü»(»@»|»à¼¼n¼¢½½R½Ì¾¾Š¿¿ŒÀ$À€ÀÈÁvœÃ(ÄÄÆÅBÅÀƸÇ<ÈÈHÉPÉ–Ê&ÊüËXÌÍ2ÍŽκÏòÐþÑ^ÑâÒ†ÓÓ¸Ô*Ô^ÕÕ¾Ö(Ö|Öâ×4רØ&ÙÙÀÚ¾Û"ÛlÛÒÜÜ”ÝVÝvÝÆÞ@ÞŽÞìß¾ßÞàNà°áxâ`â”ã&ã¤ãää(å4å|åÈæNæâçvçÂè&è„é†êtëÚì4ìäí6íÖî îVî¢ï2ïÚðdð¨ñRñ¤òZòàó¦ôpôÂõ&õŠööböšöö÷V÷®÷æøjùùXùœùàú\ú úÔûXû”ûìüŠýýbý¶ýúþLþ¼ÿ8ÿš ŠÜ~*ðÆ”’ö–R  ” ¬ Ö :   ú  r ø " ’ øpøbò”ØVÆ\Ä(Ø@bþX¸$~Ø*š:âpä\Ò@Ú<ŠörÞx l þ!r!ä"P"~# #$T%%Ž&R'd'â(š))’)º*€++è,p-N-ž.J. /2/¾0˜1ž2Æ323Ö4@4 5z6 7º9:F:¤<<><ˆ<Ø=B=”=ö>X> ??¬@$@”AAzBB¬CC¦DvDèEtF>FÄG8GÔH8IIšJ4JÞLŽLàMXMÀN"NœOJOªPrPðQªQîRŠS>SrSòTŽUTUÐVVdVÆW~X*XÈY¤ZFZ”[V[Ê[ú\ž]B]È^l^°^ì_š_Ê`L`ÞaŠbŠc\dFeeˆfTfêg$h&i<ili°iîj>j kkZkÀllm m˜n:nºo€p0pÔqÊrþtFt–u4v v^vÀw*w~wìxxŒxàyyvzzvzì{‚||j}$}ž~~f š€€”*È‚*‚惆„4„ì…L…¸…ð†f‡0‡¢ˆˆXˆü‰ŒŠŠ–‹|ŒŒpŒòÎŽ:Ž Tªòž‘,‘Þ’°“b”f•º–Η4—˜˜Œ™jšn››êžž¬žüŸXŸ , |¡R¢0¢š£p¤¤>¤’¤Ø¥,¥€¥ú¦f¦¢¦ô§§Ü¨V¨¼©T©¤©äªdªÒ«4«`«Ú¬x¬ò­‚­è®.®Â¯\°°Ä±L±Æ²X³³’´,´²µRµø¶´·°¸>¹¹¬º*º¼»¬¼†½@½ò¾z¿ ¿æÀ”ÁdÂ<ÃÄÄÔÅ‚Æ`ÇÇÀÈlɂʂËnÌJÌr̾ÍÍ®ÎTÎzÎòÏzÐÐôѰÑèÒ„Ó4ÓlÓ¶ÔÔ\ÔÔÕBÕŠÕàÖ:Ö|ÖÂ× ×XתØØfØòÙxÙúÚšÛjÛÜÜxÝÝØÞ†ߌà˜ášáÊâ0â„âÎãDãØä(ätäÆäöåÌæ0æšçç¨è"èœéRéúê˜ë&ìì†ìÒí^îî°îÚï’ð&ññÔòfó@óêôÆõxör÷ø¢ùÆú¦ûüPý"ý”þªÿº¾*bÖ0œÄöpÂf†ÆXîŠðT F & V ® î j À & Z 2”ÚHªèXÀ pþ8Šzî„êjìŽHºj„<Ú\ƈ„ö€F  ¢!`!ø"Š#L$@%%Ô&š'n(L)$)î*¾+^, ,Ì-‚.l//ì0Æ1î2’3V44¸5Ì6h789.::;p<–=Ê> >L>Ž>â?$?l?Æ?þ@`@¾@ÖAADA”BB¬CCäD|DþEÎEúF8F°G0GøHH¨IšIÒJ0J‚JàKvLLÖMLNLNæOVOÌPJP°QQnQÔR(R€RøSšSàTzTÞU`UÞV<VþWXW¾XX†XÖYTYöZÂ[[¼\2\°]`]’^&__X_À``ŒabbbZbÄcc dd¬eTe¦fVg gÒh0hòjj„k8llþm¾nbnÔo,p(pÀq˜r@stXuv.vtvôw`xHy$yþzÆ{ {b{Ä|H|Ú}Æ~V \€ö‚¾ƒ¤„d…p†b‡¦‡¾‡Þˆˆn‰&‰öŠØ‹v‹ÈŒŒtŒ®ŒúpŽŽjŽž~æŽà‘D‘à’V’î“z“ü”t”ä•~––R——€—ê˜b˜Ü™Šš’›`›¼œfœÖ`žž²Ÿp @ ’¡v¡è¢ £`£Ò¤v¥T¥Œ¦ ¦Š¦ü§’¨"¨p©"© ª,ªÚ«€¬¬Š­R­ö®T®ò¯n°v±\²V²¤³Ò´pµø··Þ¹º0»*¼X½Œ¾Š¿tÀHÀîÂZÃÆÄ0ÄÖÅ8ŤÆjÆÚÇhÇôÈÂɆÊRÊöËäÌšÍÍB͸ÎÎÞÏ Ï„ÏÂÐ6ѦÑÚÒ*ÒhÒÖÓLÓ¾Ô*ÔŒÕÕŽÖ Öº×nØ*Ù@ÙüÚfÚÚÛVÛÌÜÜÜHܦÜèÝ@ݲÞ:ÞjÞ´ßßßêà`àäá.áŠâ2âÜãXä äÊ儿æ²çBè èÎéHê6êÆëÈëúìbìÞí^í¸íîîPîÆïjð&ð ñ.ñðòDòšòðóHóÀôô„ô¸ôþõTõšöö`öž÷"÷p÷àø&øŠøÜù*ù¶úˆúÄûŽüü¬ý.ý„ýÀþ6þœÿ$ÿrÿÎ.¦~Lþ´`¦p€ròV² 0 ”  z  Ž  F œ > ÆTÀ4ô”NÀd:´ 8ŒD îæz$®|&¼  ´!"`"Ð#Ê$% &H'2(4(Ü)8)´*F*Î+h+æ,h,Ò-¶.d/>/Ê0r1n2|3"44È5T5Œ6n78Z9>::;$;€<‚=,=ì>È?Œ@jA(BPC<D:EZFlG¶I4JÖKæL¸M0N&OšOÊPPzQQnQòR¾S˜T>UUtUÒVfVèWXWúXŠYY®ZPZÆ\B\¢]8^|^®_x_ø``üaÌbtcDcÖdteeøf~fòggFgrgÞh0hÂiiviæjnjÈk8kÚlXlÊmm˜nn¼nÜo.o`p,pdp¸qqxqØr rRrÂs0sds¨t(tXtÆu2u¬vvjvÄw wrx:x”yy¢z"zÌ{H{z||‚|¼}^}º~~¦FÊ€b€Ò"¸‚vƒ*ƒŠƒØ„…h†T†˜†þ‡ˆ†‰‰N‰Øж‹ŽŒHþŽš`¤\‘‘Ä’¤“B“ž”4”¦•\––²—Š˜r™<™ š’››|›´œXœâ>˜žNŸLŸð ì¡J¡â¢X¢Ö£`£¢£è¤0¤\¥6¥Þ¦X¦È§Ž¨"¨Ê©ÚªVªÄ«¤«â¬­2­Ž®2¯~°±²(²Ú³&´´|´Àµ<¶ ·J¸.¹>¹Üº„»ž¼Ø½V¾4¾ð¿øÀÒÁÂÂJÃ6ÄÅÅRÆhÇ(ÇÆÈÌÉöʌ˜ÌlÍÍÖδÏ|ЬÑæÒ¸Ó¨Ô.ÕJÖžØLÙðÛÜbÞ4ÞÞ¨ÞÐß0ßbß´ààhàÈáFáÞâ@âÎã.ãÐä€å.å€åôæ¤çèè&èÄéé¬ê‚ëRìHìöíJí¬î.îžîÞïÐñòò˜ó€óðõõÈöÜørúBú”ûhüpý~ýðþÿN²î,ðL¾``¶Hð¬öž¼ œ ú J j Š  . jÌDÄtÂ4þ°¶ú0è(¬Ì.ˆ ¸ÚNê\®8¨2¾¨ x!P"’#,$¦%¨&Â'¶(.(š)* *~+8+„+Þ,Z,æ-d-¬.$. /2/Ð0r11b22¬45N6$6–77¢8h8Ä8ð9 9r9Þ:8:°;.;˜<<œ<è=j=ø>D>º??|?ì@*@Œ@òA,A B$BfBžBôCJCÄDJDèEvFF~FøGÀHNHÔIjIìJJJÚKlLLˆMM²N2N²OJPP®QQ–R,R¨S.SæT”UVUôVfVÒW@WâXžYˆZZâ[t\f]*]â^r_ _¸`\aaÊb¢c†d†e\f6fºg¢hŒiNj(j¸k¦lŒm0nopp¶qÒrXrÆsŠttÊuèvÔw¢xVxøyÂz®{v|v}L~"8€2ì‚Ѓ¬„|…d†B† ‡¸ˆÄ‰ðŠº‹î|pðpÊ‘‘t‘ì’h’ö“‚”8”~”À•"•†•æ––æ—H—ä˜\™™Èšä›F›ªœVœâ  žFžâŸLŸö ¶¡6¡¢R¢È¢ô£T¤V¥4¥þ¦Ð§N¨8¨˜¨þ©F©„ªªT««š¬ ¬®­"­Ü®:®ê¯’¯¾° ±&±´±þ²H²€³¦´Œ¶·X¸€¹P¹¸º »»T¼¼Î½D½ì¾Ì¿ÚÀ2À~ÁÁbÁðÂÊÃ$üÄzÅ(ÅôÆ.ÆŽÆêÇ4ÇxÇÈÈ$ÈŠÈèÉbɤÉâÊLÊÐË„ËöÌb̪Í ÍrÍÌÎÎrÎòψÏêÐbÐØÑ@ÑäÒRÒàÓ¦ÔTÔüÕXÖ@×פØ`Ù,ÙèÚVÛ8Ü(ÜÐÝÝêÞÌßxà8á`áÆââ|âæãNãˆãÜä.ä˜äðåtåÌæ>æ”æÊçHç¸çüè¬é é„éöêDê¦êôëœì*ì|ìÂíí²îîžï$ï˜ð,ðÌñbòò^òÒóóšô.ô¤ôìõfõðö@öœ÷.÷–øøŠù&ùªúú¼ûûÊüÐý(ý¦þ@þ‚ÿÿ€ÿêªl êp,¬@ |žD¾ > ¾ <   ² z â È’š†,ÂPÒ,ЬJæœ<F ÎÒdÚ4ОV " ˆ!6!ì"¢#R$$¬$Ô%´&:&f&È'^((Ø)|*X+6,,¼-€.@.ø/ 0\1V1ú2d2Ä3–4|5Š6b6Þ7~8X99ò:Ä;Š<€=¾>°?Ü@ÈB8C\DèEÎF¶GžHŠI®JšK®L¸M†O"PPQœRÐSøU<UúVšVôW|XRXˆXÈYYŒZ8Zê\\H\ð]\]ö^0_\_Ð`Pa:bbbðcbdŠeeÜf¼g.g®hi<i¾jÞknl mœnn4oHp4q4qœr@rzssPs¼tHtÒu0u²v‚vÚw0wrwàxRxšxØy\yÀzz®{.{è|:|°}Ê~.~ˆ~ì €D€ð\‚2‚ЃȄ`…T†R‡dˆì‰T‰¤ŠŠº‹ŒhŽD\üpì‘x’’¢“4“ú”Œ•<•ð–¢——v—²˜˜d˜Æ™4™üš\šÔ›@œ:œ€œâ°ž0ž„Ÿ"ŸÔ v è¡b¡Ä¢F¢¢£Z£ª¤¤Œ¤ø¥„¥è¦†§2§Æ¨¸©ªjªâ«’¬V¬æ­º®h®ø¯p°X±&²L³^´r´ºµ<¶&¶„·d·À¸H¹¹n¹¶¹öº¼»r¼<¼Ü½½È¾Œ¿hÀŒÁ†ÁòÂNžÂüÃTØÃÈÄÄBÄ’ÅÅvÅØÆ@ÆšÇÇ~ÇîÈ2ÈzÉÉRÉÄÊ:ʪËËŒËöÌjÌÔÍ0Í`͸ÍöÎÖÏ:ÏšÏâÐDЮÑ"ÑŽÑîÒnÒ¨Ó(Ó¾Ô6ÔˆÔÔÕ,ÕzÕ¸Ö:Öœ××2ׂ×ÜØØNØÀÙ0ÙjÚÚhÚäÛLÛÜ(ÜÝÝ^ݶÞVÞÈß6ß~àà’á$á áöâ&â®ãã˜ääfå åråêæ0æŠæîç@ç¨è8è’èÆé0éîêrëëÆìLìÂííZíèîpî´ï<ïÀð,ñ ñŽòò|ó óˆô2ôšôôõrõìöˆ÷&÷èøbùùnùþú€úÜû<û~ûÒü&ü†üÄý*ýŽþþlþðÿ†²:ÄBà”ÚTÎhFª2xª & š . ˆ ä x 6 ¬ h æ*\þšò†ö€ ´tÆœ0n ¬D®ÆtæR¾"š\  œ!^!ä"€#,#j#î$n%%œ&*&ª''º(V(Ø)0)¦*D*Ä+„+î,\,Î-n-ò.F//¨0H0ð1N1¼262¨3.3‚44l56@6¬7N88 9H9Ò:j;H;Ô<ª=D>>”>Ú?¾@œ@îA„B<BÀCŽD"EE|EôFÄGGàHTII®JJJüKšKØLšM„NLOHP&P´Q¶RxS0SòTNUXUØV–W–WüXÖYlZ@Zü[¢\6\¦\ü]Î^|_8_Ž``øa¸bRc cÂdäeºf¤gŒhBhìi^iÎj0jük–llÒm¾n–o4oºpfqDqðr¬sTtt¦u’vVw"wðx¶y*yÊz’{F{ú|Ð}¤~Dœ€Œ^‚0‚²ƒj„b……¨†^‡tˆ^‰@ŠЦ‹¶Œ’H¾ŽDŽÎHü¸‘l‘æ’Ž“X””œ•,––Η昊™ ™þš¨›v›¾œÆž|ŸBŸ¼ r¡d¢*¢´£ª¤~¥B¦¦²§r§þ©ª<«.«ò¬Ø­œ®”¯Ð°ª±¨²@²ì³à´’µ6µö¶Ê··Ä¸Œ¹xº8º¸»Ö¼´½R¾L¾ð¿ÊÀ¤ÁfÂ0ÂÖÃÄĪÄúÅèƸÇfÈÈÊÊ6Ë^ÌfÌÌÍæΘψÐ(ÐîÑÎÒHÓ(ÔÔþÕÞֺ׮ظÙÞÛÛÊÜüÝÐÞÄàáââÞãäÄåŠæ~çTèé ê<ëëèìöíÖîªïlð€ñvòVòæô\õpöb÷nøJùZù¾úÜûÀüÊý þ–2ZŒldœ† D œ , Z Ê¾Ü¦ÔøÆú$œÞ\îÖ  > þ"\#$$‚%æ&Œ&ü'L'Œ((†)(*x*Þ++Š+ì,N,ž-B-ú.V.æ/D/Ø0t0Ò1B2:2¨323€4n5:66ì77ü8Ä9P:(:ò;l>€?(@@@¤ARAîCCêDàEÐFÚG¨H IÎJ KKöLÖNROŽPšQ–R~ST:U¼V V<V˜VøW8W¢XXŽY YÈZ˜[*[à\n\¬]~^^ä_X_Î`¶aa–aÖb>bðc„cød°eepeøf$f„g gÆh>h¾i†j2kBl:l¢mBm´n$ooŽpdp¸qjrs:t&uvvúxlx¾y(ylzJz¾{{Œ||Š|ª}˜~<t²€€¬.Æ‚¦ƒN„f…Z†\†¸‡€ˆHˆ˜‰hŠ ж‹†Œ(Œ¬6ªŽŽzŽÐzêì‘x‘Ð’N’°“ª””n• ––î—ܘ8™jšv›xœ$œdÒž Ÿ8Ÿ¤  t¡\¡ô¢š£:£þ¤Ú¦¦‚¦â§R§Î¨,¨ˆ¨È©`ªªlªà«$«Ä¬"¬¤­@­¼® ®r®Ô¯&¯Ä°X°ò±È²t³X³ø´Îµš¶Œ·v¸T¹8ºB»¼¼¸½Ü¾B¾¬¿¿R¿ ¿èÀ ÀLÁ ÁМÃxÄJÅ@ÅúƈÆàÇÇ6ÇfÇŽÇþÈRȶÉ2ÉpÉÈÊÊšÊêË8Ë Ì@ÌÐÍfÍæÎ6δÏ0ϸÐ^ÐÔÑzÒdÓÓ¾ÔzÕBÕÊÖžײØØÙjÙÔÚ\Û2ÛÔÜFÜÈÝ2Ý®Þ\ÞàßöàúáÞâ¦ã”ååöænç<èvéêë2ìŠíŠî<ïfðbðÔñ0ñâòTòÆótôôüõ®ö ÷øø˜ù@ù²úˆüüjüúý\ýþþPÿ\ÿôb´®hÞ°ÈðˆÖX¬ú.fÈ"zâF ì R ˜ ô V ² þ 0 œ ê | È 6 À F¸ünÌ0†¾ŽþŽþDÊ:Ð,¦´^þ’(º‚Ôf¾J˜ð²NÀN  –!!†""®#\#Ð$N$Æ%P&&~''˜(@(ô)þ**ü+¢,t--Ü.|/.00æ1’2r3244â5À6V7d8>99à:ø<<¬=*=î?0?Ò@¨BC.D`EEúFRFþGžHhII‚J2JêKÜL:LºLøMŽMþNŠO OàPžQ¦S S>S”T(TÒUjUÀVVbVÞWjX<XêYÖZtZæ[f[Ä\\è]h]ô^Ú_H`vabb¶c$d2e>ffg`h`itjBjúkJk˜kÄl>l‚lêm’nnˆnÊo>ošo²oèppFpnpºqq€qìr$rœräs>sjsÌt8tŒtêuBuŽvvŒvÔwRwöxZxÒy y@yøzzzê{œ| |À}p}ø~F~´<ЀH€ÞXÊ‚fƒ"ƒÜ„”……ކƇL‡èˆŽ‰F‰^‰Œ‰®‰æŠHŠ’Šþ‹*‹‹òŒdŒª\ÞŽ>Žv’ ¼‘P‘¾’p““”(”¼•†–R–ž——¾˜r˜Ì™D™Üš~›D›ÖœÚ|þž¬Ÿ(Ÿ¤ŸÖ  ð¡”¢^£v¤Z¤†¤ø¥`¥Ò¦¦¢§§È¨$¨º©8©Ž©ôªp« «Ö¬¬¬æ­`­Æ®~®ò¯´°j±(²@³³Þ´¬µTµò¶À·J¸ ¸ê¹¶º¦»„¼z½$¾$¿&ÀÀæÁÈÂzÃ\ÄÄôÆÇTÇÒÈPÈ¢ÈúÉÄÊÖË´ÌdÍ\ÍêÏÏXÐ~Ñ8ÒÒ ÓÓlÓæÔ¨ÕnÕÎÖÖ„×פØTÙ(ÙÖÚÊ۾ܠ݆Þßßþàøá²â,â¦ãzä|åÎæNæÀæêçœè éPéèëëÖìÖífîJïðñ†òòêóêôbõNö"ö®÷÷€÷êøXøºùùžúú û(û~ûÄüfüîýtýüþšÿ$ÿÀhì®DÊ\¸Jú¤F b V &  ºˆ Ô>|Òbè`ÞlàŽÒ2ð^@d¾ô–DxÆ  Ì!˜"r#4#ê$Ž$ò%à&d&˜'H((°)2)d)Ø*>*ˆ+2+æ,Ž-0-Ú.//Æ0p0ô1â3@3ˆ4\546*6ð7~88Ô9d:4:ö<8<à=6=z>?h@JA2B BÔCØDÄEhF.FvF¬G2H4IJJJXJ–JðK8KÞLTLÒMPMúNlNÜOˆPP¢Q`QøRÎS˜T~U0VBWVWøXžYBYæZÐ[D\\f]P^Ð_r``6`‚`úa\aübüddðfg2g`gØiifkkölhlºm:m¤n o,pLpâqdqÌr`s˜tšuœvfw2x°yzzž{¶|P}¨~\~Î*x€D€œ:¤‚˜ƒ¢„’…„†t‡”ˆX‰‰ØŠ€‹fŒ–@Žj6Œrª‘’’t’Ü“\“Ò”®•8•ú–Ä—T—Θ^™ršRš¨››ºœ|¶žÈŸj  œ¡n¢Š££`£î¤š¥¥t¥è¦>§ ¨¨îª ªJ«\¬z­h®8®þ°±d²l²Î³\´&µ<¶r·|¸H¹¹ ¹üº¸»”¼‚½T¾P¾¨¿¿XÀ>À‚ÀðÁØÂHˆÀÃúÄJÄØÅPÆÆzÆÖÇ ǬÇþÈþÉnÉÚʺËæ̸ÍÎÎvÏ|ÏÈЄÑÑ–ÒTÒœÓpÓúÔ„ÔÖÕœÕøÖš××`Ø,ØÔÙ¢ÚÚbÛšÜ\ÜÖݤÞlÞÊß6ßšàºá2á¤â.âÒãÂãêä¶åRåÊæ®ç çþè¾é°êRêîë¶ëêì†ìöíPíöîÒð@ññÈò:òÞónôô†õõàöZ÷÷ª÷À÷Ö÷ìøøø.øDøZøpø†øœø²øÈøÞøôù ù ù6ùLùbùxùŽù¤ùºùÖùìúúú.úDúZúpú†úœú²úÈúÞúôû û û6ûLûbûxûŽû¤ûºûÐûæûüüü(ü>üTüjü€ü–ü¬üÂüØüîýýý0ýLýbýxýŽý¤ýºýÐýæýüþþ(þ>þTþjþ€þ–þ¬þÂþØþîÿÿÿ0ÿFÿ\ÿrÿˆÿžÿ´ÿÊÿàÿö "8Ndz¦¼Òèþ*@Vl‚˜®ÄÚð2Hdz¦¼Òèþ*@Vl‚˜®ÄÚð2H^tŠ ¶Òèþ*@Vl‚˜®ÄÚð2H^tŠ ¼Òè0F\rˆž´Êæü(>Tj€–¬ÂØî   0 F \ r ˆ ¤ º Ð æ   . D Z p † œ ² È Þ ô   6 L b x Ž ¤ À Ö ì   . D ` v Œ ¢ ¸ Î ä ú  & < R h ~ ” ª À Ö ì.J`vŒ¢¸Îäú&<Rh~”ªÀÖì.J`|’¨¾Ôê,BXn„š°Æâø$:Pf|’¨¾Ôð2H^tŠ ¶Ìèþ*@Vl‚˜®ÄÚð2H^tŠ ¶Òèþ*@Vl‚˜®ÄÚð"8Ndz¦¼Øî0LbxޤºÐæü(>Tj€–¬ÂØî 6LbxޤºÐì4J`vŒ¨¾Ôê,BXnŠ ¼Òèþ0F\rޤºÐæü(>ZpŒ¢¸Îäú,BXtŠ ¶Ìâø  $ @ V l ‚ ˜ ® Ä Ú ð!!"!8!N!d!z!–!¬!Â!Ø!î""&"<"R"h"~"”"ª"À"Ü"ò###4#J#`#v#Œ#¢#¸#Ô#ê$$$2$H$d$z$$¦$¼$Ò$è%%%0%L%b%x%”%ª%À%Ö%ì&&&.&D&Z&p&†&œ&¸&Î&ä&ú''&'B'X'n'„' '¶'Ì'â'ø(($(:(P(f(|(’(¨(¾(Ô(ð)))2)H)^)t)Š) )¶)Ì)â)ø**$*:*P*f*‚*ž*º*Ð*æ+++.+D+Z+p+†+œ+²+Î+ê,,,2,H,^,t,Š, ,¶,Ì,â,ø--$-:-P-f-|-’-¨-¾-Ô-ê...,.B.X.n.„.š.°.Æ.Ü.ò///4/J/`/v/Œ/¢/¸/Î/ä/ú00&0<0R0h0~0”0ª0À0Ö0ì111.1D1Z1p1†1œ1²1È1Þ1ô2 2 262L2b2x2Ž2¤2º2Ð2æ2ü33(3>3T3j3€3–3¬3Â3Ø3î44404F4\4r4ˆ4ž4´4Ê4à4ö5 5(5>5T5j5€5–5¬5Â5Ø5î66606F6\6r6ˆ6ž6´6Ê6à6ö7 7"787N7d7z77¦7¼7Ò7è7þ8808F8\8r8ˆ8ž8´8Ð8æ8ü99(9>9T9j9€9–9¬9Â9Ø9î:: :6:L:b:x:”:ª:À:Ü:ò;;;4;J;`;v;Œ;¢;¾;Ô;ê<<<,>&><>R>h>~>”>°>Æ>Ü>ò???4?J?`?v?Œ?¢?¸?Î?ä?ú@@&@<@R@h@~@”@ª@À@Ö@ìAAA.ADAZApA†AœA²AÈAÞAôB B B6BLBbBxBŽB¤BºBÐBæBüCC(C>CTCjC€C–C¬CÈCÞCôD D D6DLDbD~D”DªDÀDÖDìEEE.EDEZEpE†EœE²EÈEÞEôF F F6FLFbFxFŽF¤FºFÐFæFüGG(G>GTGjG€G–G¬GÂGØGîHHH0HFH\HrHˆHžH´HÊHàHöI I"I>ITIjI€I–I¬IÂIØIôJ J J6JLJbJxJ”JªJÀJÖJìKKK.KDKZKpK†KœK²KÈKÞKôL L L6LLLbLxLŽL¤LºLÐLìMMM.MDMZMpM†MœM²MÈMÞMúNN&N<NRNhN~N”NªNÀNÖNìOOO.ODOZOpO†OœO²OÈOäOúPP&PBPXPnP„PšP°PÆPÜPòQQQ4QPQlQ‚Q˜Q®QÄQÚQðRRR2RHR^RtRŠR R¶RÌRâRøSS*S@SVSlS‚S˜S®SÄSÚSðTTT2TNTdTzTT¦T¼TØTîUUU0UFUbUxUŽU¤UºUÐUæUüVV.VDVZVpV†VœV²VÈVÞVôW W W6WLWbWxWŽW¤WºWÐWæWüXX(XDXZXpX†XœX²XÈXÞXôY Y Y6YLYhY~YšY°YÆYÜYòZZZ:ZPZfZ|Z’Z¨Z¾ZÔZð[[[2[H[d[z[[¦[¼[Ò[è[þ\\0\F\\\r\ˆ\ž\´\Ê\à\ö] ]"]8]T]j]€]–]¬]È]Þ]ô^^&^B^X^t^Š^¦^¼^Ò^è^þ__*_F_\_r_ˆ_ž_´_Ð_æ```.`D```v`Œ`¢`¸`Î`ä`úaa&a<aRana„aša°aÆaÜaòbbb4bJb`bvbŒb¨b¾bÔbêccc,cBcXcnc„cšc°cÆcÜcòddd4dJd`dvdŒd¢d¸dÎdädúee&e<eRehe~e”eªeÀeÖeìfff.fDfZfvfŒf¢f¸fÎfäfúgg,gBg^gzgg¦gÂgägúhh&hBhXhnh„hšh°hÆhÜhòiii4iJi`ivi’i¨i¾iÔiðj j(j>jTjjj€j–j¬jÈjÞjôk k k<kRkhk~kšk°kÆkÜkòlll4lJl`lvlŒl¢l¾lÚlðmmm2mNmdmzmm¦m¼mÒmèmþnn*n@nVnln‚n˜n®nÄnÚnöo o"o8oNodozoo¦oÂoÞoôpp&p<pXpnp„pšp°pÌpâpøqq*q@qVqlq‚q˜q®qÄqÚqðrrr2rNrdrzr–r²rÈrÞrôs s&sBs^stsŠs s¶sÌsâsøtt$t:tPtft‚t˜t´tÐtætüuu(uDuZupu†u¢u¸uÎuäuúvv&v<vRvhv~v”vªvÀvÖvìwww.wDwZwpw†wœw²wÈwÞwôxx&x<xRxhx~x”xªxÀxÖxìyyy.yDyZypy†yœy²yÈyÞyôz z z6zLzbzxzŽz¤zºzÐzæzü{{({>{T{j{€{–{¬{Â{Ø{î|||0|F|\|r|ˆ|ž|´|Ê|à|ö} }"}8}N}j}€}–}¬}Â}Ø}î~~~0~F~\~r~ˆ~ž~´~Ð~æ~ü(>Tj€–¬ÂØô€ €&€<€R€h€~€”€ª€À€Ü€ò4J`v’¨¾Ôê‚‚‚,‚B‚X‚n‚„‚š‚°‚Æ‚â‚øƒƒ$ƒ:ƒVƒlƒ‚ƒžƒ´ƒÊƒàƒö„ „"„8„N„d„z„„¦„¼„Ò„è„þ……0…F…\…r…ˆ…ž…´…Ê…à…ö† †"†8†N†d†z††¦†¼†Ò†è†þ‡‡*‡@‡V‡l‡‚‡˜‡®‡Ä‡Ú‡ðˆˆˆ2ˆHˆ^ˆtˆˆ¦ˆ¼ˆÒˆèˆþ‰‰0‰F‰\‰r‰ˆ‰ž‰º‰Ö‰ìŠŠŠ4ŠJŠfŠ|Š’ЍоŠÔŠê‹‹‹,‹B‹X‹n‹„‹š‹°‹Ì‹è‹þŒŒ0ŒLŒbŒxŒŽŒªŒÀŒÖŒì:Pf|˜®ÄÚðŽŽŽ2ŽHŽdŽzŽަ޼ŽÒŽèŽþ0LbxޤºÐæü(>Tj€–²ÈÞú‘‘&‘<‘X‘n‘„‘š‘°‘Æ‘Ü‘ò’’$’@’\’r’ˆ’ž’´’Ê’à’ö“ “"“>“T“p“Œ“¨“¾“Ô“ê”””2”H”d”€”œ”²”Ȕޔú••&•<•R•h•~•”•ª•À•Ö•ì–––.–D–Z–p–†–¢–¸–Ô–ê———2—H—^—t——¦—¼—Ò—è—þ˜˜*˜@˜V˜l˜‚˜˜˜®˜Ä˜Ú˜ð™™™2™H™^™t™Š™ ™¶™Ì™â™øšš$š:šPšfš|š˜š®šÄšÚšð›››2›H›^›t›Š› ›¶›Ì›â›øœœ$œ:œVœlœ‚œ˜œ®œÄœÚœð2H^tŠ ¶Ìâøžž$ž:žPžfž|ž’ž¨ž¾žÔžêŸŸŸ,ŸBŸXŸnŸ„ŸšŸ°ŸÆŸÜŸò   4 J ` v Œ ¢ ¸ Î ä ú¡¡&¡<¡R¡h¡~¡”¡ª¡À¡Ö¡ì¢¢¢.¢D¢Z¢p¢†¢œ¢²¢È¢Þ¢ô£ £ £6£L£b£x£”£ª£À£Ö£ì¤¤¤.¤D¤Z¤p¤†¤œ¤²¤È¤Þ¤ô¥ ¥ ¥6¥L¥b¥~¥”¥ª¥À¥Ö¥ì¦¦¦.¦D¦Z¦p¦†¦œ¦²¦È¦Þ¦ô§ § §6§L§b§x§Ž§¤§º§Ð§æ§ü¨¨(¨D¨Z¨p¨†¨œ¨²¨È¨Þ¨ô© © ©6©R©n©„©š©°©Æ©â©øªª*ª@ªVªlªˆªžª´ªÊªàªö« «"«8«N«d«z««¦«¼«Ò«è«þ¬¬*¬@¬V¬l¬‚¬˜¬®¬Ä¬Ú¬ö­ ­"­8­N­d­z­­¦­Â­Ø­î®®®0®F®\®r®ˆ®ž®´®Ð®æ®ü¯¯(¯>¯T¯j¯€¯–¯¬¯Â¯Ø¯î°°°0°L°b°x°Ž°¤°º°Ð°æ°ü±±(±>±T±j±€±œ±¸±Î±ä±ú²²&²<²R²h²~²”²°²Æ²Ü²ò³³³:³P³f³|³’³¨³¾³Ô³ê´´´2´H´^´z´´¦´¼´Ò´è´þµµ0µFµ\µrµˆµžµ´µÊµàµö¶¶(¶>¶Z¶v¶Œ¶¢¶¸¶Î¶ä¶ú··&·<·R·h·~·”·°·Ì·â·ø¸¸$¸:¸P¸f¸|¸’¸¨¸¾¸Ô¸ê¹¹¹,¹B¹X¹n¹„¹š¹°¹Ì¹â¹øºº$º@ºVºrºˆºžº´ºÊºàºö» »"»8»N»d»z»»¦»¼»Ò»è»þ¼¼*¼@¼V¼l¼‚¼˜¼®¼Ê¼à¼ö½ ½"½8½N½d½z½½¦½¼½Ø½î¾¾¾0¾F¾\¾r¾ˆ¾ž¾´¾Ê¾à¾ö¿ ¿"¿8¿N¿d¿z¿¿¦¿¼¿Ò¿è¿þÀÀ*À@ÀVÀlÀ‚À˜À®ÀÄÀÚÀðÁÁÁ2ÁNÁdÁzÁÁ¦Á¼ÁÒÁîÂÂÂ0ÂFÂ\ÂrÂŽ¤ºÂÐÂìÃÃÃ4ÃJÃ`ÃvÃŒâøÃÎÃäÃúÄÄ,ÄBÄXÄnĄĚİÄÆÄÜÄòÅÅÅ4ÅJÅ`ÅvŌŢŸÅÎÅäÅúÆÆ&Æ<ÆRÆhÆ~Æ”ƪÆÀÆÖÆìÇÇÇ.ÇDÇZÇpdžÇœDzÇÈÇäÇúÈÈ&È<ÈRÈhÈ~È”ȪÈÀÈÖÈìÉÉÉ.ÉDÉZÉpɆÉœɲÉÈÉÞÉôÊ Ê Ê6ÊLÊbÊ~Ê”ʪÊÀÊÖÊìËËË.ËDËZËpˆËœ˸ËÎËêÌÌ"Ì>ÌZÌp̆Ìœ̲ÌÈÌÞÌôÍ Í Í6ÍLÍbÍxÍŽͤͺÍÐÍæÍüÎÎ(Î>ÎTÎj΀ΖάÎÂÎØÎîÏÏÏ0ÏFÏ\ÏrψϞϴÏÊÏæÏüÐÐ(Ð>ÐTÐjЀЖЬÐÂÐØÐôÑÑ&Ñ<ÑRÑhÑ~Ñ”ѪÑÀÑÖÑìÒÒÒ.ÒDÒZÒp҆ҜҲÒÈÒÞÒôÓ Ó Ó6ÓLÓbÓxÓŽÓ¤ÓºÓÐÓìÔÔÔ4ÔJÔ`ÔvԌԢԸÔÎÔäÔúÕÕ&Õ<ÕRÕhÕ~Õ”ÕªÕÀÕÖÕìÖÖÖ.ÖDÖZÖpֆֲ֜ÖÈÖÞÖô× × ×6×L×b×x׎פ׺×Ð׿×üØØ(Ø>ØTØj؀ؖجØÂØØØîÙÙÙ0ÙFÙ\ÙrÙˆÙžÙ´ÙÊÙàÙöÚ Ú"Ú8ÚTÚjÚ€Ú–Ú¬ÚÂÚØÚîÛ Û Û6ÛLÛhÛ~Û”ÛªÛÀÛÖÛìÜÜÜ4ÜJÜ`Ü|Ü’ܨܾÜÔÜêÝÝÝ,ÝBÝXÝn݄ݚݰÝÆÝÜÝòÞÞÞ4ÞJÞfÞ|Þ’Þ¨Þ¾ÞÔÞêßßß8ßNßdßzß–߬ßÂßÞßôà à à6àRàhà„àšà°àÆàÜàòááá4áJá`áváŒá¢á¸áÎáäáúââ&âBâXânâ„âšâ°âÌâââøãã$ã:ãPãfã‚ã˜ã®ãÊãæãüää.äDäZäpä†äœä²äÈäÞäôå å å6åLåbåxåŽå¤åºåÐåæåüææ(æ>æTæjæ€æ–æ¬æÂæØæîççç0çFç\çrçˆçžç´çÊçàçöè è"è8èNèdèzèè¬èÂèØèôé é é6éLébé~é”éªéÀéÖéìêêê4êJê`êvêŒê¢ê¸êÎêäêúëë&ë<ëRëhë~ë”ëªëÀëÖëìììì.ìDìZìpì†ìœì²ìÈìÞìôí í í6íLíbíxíŽí¤íºíÐíæíüîî(î>îTîjî€î–î¬îÂîØîîïïï0ïFï\ïrïˆïžï´ïÊïàïöð ð"ð8ðNðdðzðð¦ð¼ðÒðèðþññ*ñ@ñVñlñ‚ñ˜ñ®ñÄñÚñöò ò"ò8òNòdòzòò¦ò¼òÒòèòþóó0óFó\óróˆóžó´óÊóàóöô ô"ô8ôNôdôzôô¦ô¼ôÒôèôþõõ*õ@õVõlõ‚õ˜õ®õÄõÚõðööö2öHö^ötöŠö ö¶öÌöâöø÷÷$÷:÷P÷f÷|÷’÷¨÷¾÷Ô÷êøøø,øBøXønø„øšø°øÆøâøøùù$ù:ùPùfù|ù’ù¨ù¾ùÔùêúúú,úBúXúnúŠú¬úÎúðûûû2ûHû^ûtûŠû û¶ûÌûâûøüü$ü:üVülü‚ü˜ü®üÄüÚüðýýý2ýHý^ýtýŠý ý¶ýÌýâýøþþ$þ:þPþfþ|þ’þ¨þ¾þÔþêÿÿÿ2ÿHÿ^ÿtÿŠÿ ÿ¶ÿÌÿèÿþ  * F b x Ž ª À Ü ø  * @ V l ‚ ˜ ® Ä Ú ð   2 H ^ t Š   ¶ Ì â ø  $ : P f | ’ ¨ ¾ Ú ð   2 H ^ t Š   ¶ Ì â ø  $ : P f | ’ ¨ ¾ Ô ê   , B ^ t Š   ¶ Ì â ø  $ : P f | ˜ ® Ä Ú ð   2 H ^ z  ¦ ¼ Ò è þ  * @ V l ‚ ˜ ® Ä Ú ð   2 H ^ t Š   ¶ Ì â ø  $ : P f ‚ ˜ ® Ä Ú ö " 8 N d z ¦ ¼ Ò è þ  * @ V l ˆ ž ´ Ð æ ü  ( > T j € – ¬  Ø î   0 F \ r ˆ ž ´ Ê à ö  " 8 T j € – ¬ È Þ ô   6 R h ~ ” ª À Ö ì   . D Z p † œ ² È Þ ô   6 L b ~ ” ª Æ Ü ø  $ : P f | ˜ ® Ä Ú ö  " 8 N d € – ¬  Ø ô  & < R h ~ ” ª À Ö ì   4 J f | ’ ¨ Ä Ú ð   2 H ^ t Š   ¶ Ì â ø  $ : P f | ’ ® Ä Ú ð   8 N d z  ¦ ¼ Ø î   0 F \ r ˆ ž ´ Ê à ö  ( > T j € – ¬  Ø î   0 F \ r ˆ ž ´ Ê à ü  ( > Z p † œ ² Î ä ú  & < R h ~ ” ª À Ö ì   . D Z p † œ ² È ä ! ! !2 !N !d !z ! !¬ ! !Ø !ô " " "6 "L "b "x "Ž "¤ "º "Ð "æ "ü # #4 #P #f #| #’ #´ #Ê #æ #ü $ $( $> $T $j $€ $– $¬ $ $Þ $ô % %& %< %R %n %„ %š %° %Æ %Ü %ò & &$ &@ &V &r &Ž &¤ &º &Ð &ì ' ' '. 'D 'Z 'p '† 'œ '² 'È 'ä 'ú ( (& (< (R (h (~ (” (ª (À (Ö (ì ) ) )4 )J )` )v )Œ )¢ )¸ )Î )ä )ú * *& *< *R *h *~ *” *ª *À *Ö *ì + + +. +D +Z +p +† +œ +² +È +Þ +ô , , ,6 ,L ,b ,x ,Ž ,¤ ,º ,Ð ,æ ,ü - -( -> -T -j -€ -– -¬ - -Ø -î . . .0 .F .\ .r .ˆ .ž .´ .Ê .à .ö / /" /8 /N /d /z / /¦ /¼ /Ò /è /þ 0 0* 0@ 0V 0l 0‚ 0˜ 0® 0Ä 0Ú 0ð 1 1 12 1H 1^ 1t 1Š 1  1¶ 1Ì 1â 1ø 2 2$ 2@ 2V 2l 2‚ 2˜ 2® 2Ä 2Ú 2ð 3 3" 38 3N 3d 3z 3 3¦ 3¼ 3Ò 3è 3þ 4 4* 4@ 4V 4l 4‚ 4˜ 4® 4Ä 4Ú 4ð 5 5 52 5H 5^ 5t 5Š 5  5¶ 5Ì 5â 5ø 6 6$ 6: 6P 6l 6‚ 6˜ 6® 6Ä 6Ú 6ð 7 7 72 7H 7d 7z 7 7¦ 7¼ 7Ò 7è 7þ 8 8* 8@ 8V 8l 8‚ 8˜ 8® 8Ä 8Ú 8ð 9 9 92 9N 9d 9z 9 9¦ 9¼ 9Ò 9è 9þ : :* :@ :V :l :‚ :˜ :® :Ä :Ú :ð ; ;" ;8 ;N ;d ;z ; ;¦ ;¼ ;Ò ;è ;þ < <* <@ <\  > >0 >F >\ >r >ˆ >ž >´ >Ê >à >ö ? ?" ?8 ?N ?d ?z ? ?¦ ?¼ ?Ò ?è ?þ @ @0 @F @\ @r @ˆ @ž @´ @Ê @à @ö A A" A8 AN Ad Az A A¦ A¼ AÒ Aè Aþ B B* B@ B\ Br Bˆ Bž B´ BÊ Bà Bö C C" C8 CN Cd C€ C– C¬ C CØ Cî D D D0 DF D\ Dr Dˆ Dž D´ DÊ Dà Dö E E" E8 ET Ej E€ E– E¬ E EØ Eî F F F6 FL Fb Fx FŽ F¤ Fº FÐ Fæ Fü G G4 GJ G` Gv GŒ G¨ G¾ GÔ Gê H H H, HB HX Hn H„ Hš H° HÆ HÜ Hò I I I4 IJ I` Iv IŒ I¢ I¾ IÔ Iê J J J, JB JX Jn J„ Jš J° JÆ JÜ Jò K K K: KP Kf K‚ K˜ K® KÄ Kà Kö L L( L> LT Lj L† Lœ L² LÈ LÞ Lô M M& MB MX Mn M„ Mš M° MÆ MÜ Mò N N N4 NJ N` Nv NŒ N¢ N¸ NÎ Nä Nú O O& OB OX Ot OŠ O  O¶ OÒ Oè Oþ P P* P@ Pb Px PŽ P¤ Pº PÐ Pæ Pü Q Q( Q> QT Qj Q€ Qœ Q² QÈ QÞ Qô R R& R< RR Rh R„ R  R¶ RÌ Râ Rø S S$ S: SP Sf S| S’ S¨ S¾ SÔ Sê T T T2 TH T^ Tt T T¦ T¼ TØ Tî U U U6 UL Ub Ux UŽ U¤ Uº UÐ Uæ Uü V V( VD VZ Vp VŒ V¢ V¸ VÔ Vð W W W2 WH Wd Wz W– W² WÈ WÞ Wô X X X6 XL Xb X~ X” Xª XÆ XÜ Xò Y Y Y4 YJ Y` Yv Y’ Y¨ YÄ YÚ Yö Z Z" Z8 ZT Zj Z† Zœ Z² ZÈ ZÞ Zô [ [ [6 [L [b [~ [” [ª [À [Ü [ò \ \ \4 \J \` \v \Œ \¢ \¾ \Ô \ê ] ] ], ]B ]X ]n ]Š ]  ]¶ ]Ò ]è ]þ ^ ^0 ^F ^\ ^r ^ˆ ^¤ ^º ^Ð ^æ ^ü _ _( _D _Z _p _† _¢ _¾ _Ô _ê ` ` `, `B `X `n `„ `š `° `Æ `Ü `ò a a a4 aJ a` a| a’ a¨ aÄ aÚ að b b b2 bH b^ bt bŠ b  b¶ bÌ bâ bø c c$ c: cP cf c| c’ c¨ c¾ cÔ cê d d d, dB dX dn d„ dš d° dÆ dÜ dò e e e4 eJ e` ev eŒ e¢ e¸ eÎ eä eú f f& f< fR fh f~ f” fª fÀ fÜ fò g g g4 gJ g` gv gŒ g¢ g¸ gÎ gä h h h, hB hX hn h„ h  h¶ hÌ hè hþ i i* i@ iV ir iˆ iž i´ iÊ ià iö j j" j8 jN jd jz j j¦ j¼ jÒ jè jþ k k0 kL kb k~ kš k¶ kÒ kè kþ l l0 lL lh l„ l  l¼ lØ lô m m& mB m^ mz m m¦ m¼ mÒ mè mþ n n* n@ nV nl n‚ n˜ n® nÄ nÚ nð o o o2 oH o^ ot oŠ o¦ o¼ oÒ oè oþ p p* p@ pV pl p‚ p˜ p® pÄ pÚ pð q q q2 qH q^ qt qŠ q  q¶ qÌ qè qþ r r* r@ r\ rr rˆ rž r´ rÊ rà rö s s" s> sT sj s€ s– s¬ s sØ sî t t t0 tF t\ tr tˆ tž t´ tÊ tà tö u u" u8 uN ud uz u u¦ u¼ uÒ uè uþ v v* v@ vV vl v‚ v˜ v´ vÊ và vö w w" w8 wN wd wz w w¦ w¼ wØ wî x x x0 xL xb xx xŽ x¤ xº xÐ xæ xü y y( y> yT yj y€ y– y¬ y yØ yî z z z0 zF z\ zr zˆ zž z´ zÊ zà zö { {" {8 {N {d {z { {¦ {¼ {Ø {î | | |0 |F |\ |r |ˆ |ž |´ |Ê |à |ü } }( }> }T }j }€ }– }¬ } }Ø }î ~ ~ ~0 ~F ~\ ~r ~ˆ ~ž ~´ ~Ê ~à ~ü  ( > T j € – ¬  Ø î € € €0 €F €\ €r €ˆ €ž €´ €Ê €à €ö  ( > T j € – ¬ Â Ø î ‚ ‚ ‚0 ‚F ‚\ ‚r ‚ˆ ‚ž ‚´ ‚Ê ‚à ‚ö ƒ ƒ" ƒ8 ƒN ƒd ƒz ƒ ƒ¦ ƒ¼ ƒÒ ƒè ƒþ „ „* „@ „V „l „‚ „˜ „® „Ä „Ú „ð … … …2 …H …^ …t …Š …  …¶ …Ì …â …ø † †$ †: †V †l †‚ †˜ †® †Ä †Ú †ð ‡ ‡ ‡2 ‡H ‡^ ‡t ‡Š ‡  ‡¶ ‡Ì ‡â ‡ø ˆ ˆ$ ˆ: ˆP ˆf ˆ| ˆ’ ˆ¨ ˆ¾ ˆÔ ˆê ‰ ‰ ‰, ‰B ‰X ‰n ‰„ ‰š ‰° ‰Æ ‰Ü ‰ò Š Š Š4 ŠJ Š` Šv ŠŒ Š¢ Џ ŠÎ Šä Šú ‹ ‹& ‹< ‹R ‹h ‹~ ‹” ‹ª ‹À ‹Ö ‹ì Œ Œ Œ. ŒD ŒZ Œv ŒŒ Œ¢ Œ¸ ŒÔ Œð   2 H ^ t Š   ¶ Ì â ø Ž Ž$ Ž: ŽP Žl Žˆ Žž Ž´ ŽÊ Žà Žö " 8 N d z ¦ ¼ Ò è þ  * @ \ r ˆ ž ´ Ê à ö ‘ ‘" ‘8 ‘N ‘d ‘€ ‘– ‘¬ ‘È ‘Þ ‘ô ’ ’ ’6 ’L ’b ’~ ’” ’ª ’À ’Ö ’ì “ “ “. “D “Z “p “† “œ “² “È “ä “ú ” ”& ”< ”R ”h ”~ ”” ”° ”Æ ”Ü ”ò • • •4 •J •` •v •Œ •¢ •¸ •Ô •ê – – –, –B –X –n –„ –š –° –Æ –Ü –ò — — —4 —J —` —v —Œ —¨ —¾ —Ô —ê ˜ ˜ ˜, ˜B ˜X ˜n ˜„ ˜š ˜° ˜Æ ˜Ü ˜ò ™ ™ ™: ™P ™f ™| ™˜ ™® ™Ê ™à ™ö š š( š> šT šp š† šœ š² šÈ šÞ šú › ›, ›B ›X ›n ›„ ›š ›° ›Ì ›â ›þ œ œ* œ@ œV œl œ‚ œ˜ œ® œÄ œÚ œð  " 8 N j € – ¬ Â Ø î ž ž ž0 žF ž\ žr žˆ žž ž´ žÊ žà žö Ÿ Ÿ" Ÿ8 ŸN Ÿd Ÿz Ÿ Ÿ¦ Ÿ¼ ŸÒ Ÿè Ÿþ    *  F  \  r  ˆ  ž  º  Ð  æ  ü ¡ ¡( ¡> ¡T ¡j ¡€ ¡– ¡¬ ¡Â ¡Þ ¡ú ¢ ¢& ¢< ¢R ¢h ¢~ ¢” ¢ª ¢À ¢Ö ¢ì £ £ £. £D £Z £p £† £œ £¸ £Î £ä £ú ¤ ¤& ¤< ¤R ¤n ¤„ ¤š ¤° ¤Ì ¤â ¤ø ¥ ¥$ ¥@ ¥V ¥r ¥ˆ ¥ž ¥º ¥Ð ¥æ ¥ü ¦ ¦. ¦D ¦` ¦v ¦Œ ¦¢ ¦¸ ¦Î ¦ä ¦ú § §& §< §X §n §„ §š §° §Æ §Ü §ò ¨ ¨ ¨4 ¨P ¨l ¨ˆ ¨ž ¨º ¨Ð ¨æ ¨ü © ©( ©> ©T ©j ©€ ©– ©² ©È ©Þ ©ô ª ª ª6 ªL ªb ªx ªŽ ª¤ ªº ªÖ ªì « « «. «D «Z «p «† «œ «² «È «Þ «ô ¬ ¬& ¬B ¬X ¬n ¬„ ¬š ¬° ¬Æ ¬Ü ¬ò ­ ­ ­4 ­J ­` ­v ­Œ ­¢ ­¸ ­Î ­ä ­ú ® ®& ®< ®R ®h ®~ ®” ®° ®Ì ®è ®þ ¯ ¯* ¯@ ¯V ¯l ¯‚ ¯˜ ¯® ¯Ä ¯Ú ¯ð ° ° °2 °H °d °z ° °¦ °¼ °Ø °î ± ± ±0 ±F ±\ ±r ±ˆ ±ž ±´ ±Ê ±à ±ö ² ²( ²> ²Z ²p ²† ²œ ²¸ ²Î ²ä ³ ³ ³, ³H ³d ³z ³ ³¦ ³¼ ³Ò ³è ´ ´ ´0 ´F ´\ ´r ´ˆ ´ž ´º ´Ð ´æ ´ü µ µ( µ> µZ µp µ† µœ µ¸ µÎ µä µú ¶ ¶, ¶B ¶X ¶n ¶„ ¶š ¶° ¶Æ ¶Ü ¶ò · · ·4 ·J ·f ·| ·’ ·¨ ·¾ ·Ú ·ð ¸ ¸ ¸2 ¸H ¸^ ¸t ¸Š ¸¦ ¸¼ ¸Ò ¸è ¸þ ¹ ¹0 ¹F ¹\ ¹x ¹Ž ¹¤ ¹º ¹Ð ¹ì º º º4 ºJ º` ºv º’ º¨ º¾ ºÔ ºê » » », »B »X »n »„ »  »¶ »Ì »â »ø ¼ ¼$ ¼: ¼P ¼f ¼| ¼’ ¼¨ ¼Ä ¼à ¼ö ½ ½( ½> ½T ½j ½€ ½œ ½¸ ½Î ½ä ½ú ¾ ¾& ¾< ¾R ¾h ¾~ ¾š ¾° ¾Ì ¾è ¾þ ¿ ¿0 ¿F ¿\ ¿r ¿ˆ ¿ž ¿´ ¿Ê ¿æ ¿ü À À. ÀD À` Àv ÀŒ À¨ À¾ ÀÔ Àê Á Á Á, ÁB ÁX Án Á„ Áš Á° ÁÆ ÁÜ Áò  Â* Â@ ÂV Âl ˆ ž ´ ÂÊ Âà Âü à Ã. ÃD Ã` Ãv ÃŒ â þ ÃÔ Ãê Ä Ä Ä2 ÄH Äd Äz Ä– Ĭ ÄÂ ÄØ Äî Å Å Å0 ÅF Å\ År ň Åž Å´ ÅÊ Åà Åö Æ Æ" Æ8 ÆN Æd Æz Æ Æ¦ Ƽ ÆÒ Æè Æþ Ç Ç* ÇF Ç\ Çr Lj Çž Ç´ ÇÊ Çà Çö È È" È8 ÈN Èd Èz È È¦ ȼ ÈÒ Èè Èþ É É* É@ ÉV Él É‚ ɘ É® ÉÄ ÉÚ Éð Ê Ê Ê2 ÊH Ê^ Êt ÊŠ Ê  ʶ ÊÌ Êâ Êø Ë Ë$ Ë: ËP Ëf Ë| Ë’ ˨ ˾ ËÔ Ëê Ì Ì Ì, ÌB ÌX Ìn Ì„ Ìš ̰ ÌÆ ÌÜ Ìò Í Í Í4 ÍJ Íf Í| Í’ ͨ ; ÍÔ Íê Î Î Î, ÎB ÎX În ΄ Κ ΰ ÎÆ ÎÜ Îò Ï Ï Ï4 ÏJ Ï` Ïv ÏŒ Ï¢ ϸ ÏÎ Ïê Ð Ð Ð, ÐB ÐX Ðn Є К а ÐÆ ÐÜ Ðò Ñ Ñ Ñ4 ÑJ Ñ` Ñv ÑŒ Ñ¢ Ѹ ÑÎ Ñä Ñú Ò Ò2 ÒH Ò^ Òt ÒŠ Ò  Ò¶ ÒÌ Òâ Òø Ó Ó$ Ó: ÓP Óf Ó| Ó’ Ó¨ Ó¾ ÓÔ Óê Ô Ô Ô, ÔB ÔX Ôn Ô„ Ôš Ô° ÔÆ ÔÜ Ôò Õ Õ Õ4 ÕJ Õf Õ| Õ’ Õ¨ Õ¾ ÕÔ Õê Ö Ö Ö, ÖB ÖX Ön Ö„ Öš Ö° ÖÆ ÖÜ Öò × × ×4 ×J ×` ×v ׌ ×¢ ׸ ×Î ×ä ×ú Ø Ø& Ø< ØR Øh Ø~ Ø” ت ØÀ ØÖ Øì Ù Ù Ù. ÙD ÙZ Ùp Ù† Ù¢ Ù¸ ÙÎ Ùä Ùú Ú Ú& Ú< ÚR Úh Ú~ Ú” Úª ÚÀ ÚÖ Úì Û Û Û. ÛD ÛZ Ûp Û† Ûœ Û² ÛÈ ÛÞ Ûô Ü Ü Ü6 ÜL Üb Üx ÜŽ ܤ ܺ ÜÐ Üæ Üü Ý Ý( Ý> ÝT Ýj Ý€ Ý– ݬ ÝÂ ÝØ Ýî Þ Þ Þ0 ÞF Þb Þ~ Þ” Þª ÞÀ ÞÖ Þì ß ß ß. ßD ßZ ßp ߆ ßœ ß² ßÈ ßÞ ßô à à à6 àL àb àx àŽ à¤ àº àÐ àæ àü á á( á> áT áj ဠᖠᬠáÂ áØ áî â â â0 âF â\ âr ∠➠⺠âÐ âæ âü ã ã. ãJ ã` ã| 㒠㨠㾠ãÔ ãê ä ä ä, äB äX än ä„ äš ä° äÆ äÜ äò å å å4 åP ål å‚ å˜ å® åÄ åÚ åð æ æ æ2 æH æ^ æt æŠ æ  æ¶ æÌ æâ æø ç ç$ ç: çP çf ç| ç˜ ç® çÄ çÚ çö è è( è> èT èj è€ è– è¬ èÂ èØ èî é é é6 éL éb éx éŽ é¤ éº éÐ éæ ê ê ê. êD êZ êp ê† êœ ê² êÈ êÞ êô ë ë ë6 ëL ëb ëx ëŽ ë¤ ëº ëÐ ëæ ì ì ì. ìD ì` ìv ìŒ ì¨ ì¾ ìÚ ìð í í í8 íN íd íz í– í¬ íÂ íØ íî î î î0 îF îb îx îŽ î¤ îº îÐ îæ ï ï ï4 ïJ ï` ïv ïŒ ï¨ ï¾ ïÔ ïê ð ð ð, ðB ðX ðn ð„ ð  ð¶ ðÌ ðâ ðþ ñ ñ0 ñF ñ\ ñr ñˆ ñž ñ´ ñÊ ñà ñü ò ò( òD òZ òp ò† òœ ò¸ òÎ òä òú ó ó2 óN ój ó† óœ ó² óÈ óä óú ô ô& ô< ôR ôh ô~ ô” ôª ôÀ ôÖ ôì õ õ õ. õD õZ õv õŒ õ¢ õ¸ õÎ õä õú ö ö& ö< öR öh ö~ ö” öª öÀ öÖ öì ÷ ÷ ÷. ÷J ÷` ÷| ÷’ ÷¨ ÷¾ ÷Ô ÷ê ø ø ø2 øH ø^ øt øŠ ø  ø¶ øÒ øè øþ ù ù* ù@ ùV ùr ùˆ ùž ù´ ùÊ ùà ùö ú ú" ú8 úN úd úz ú ú¦ ú¼ úÒ úè úþ û û* û@ ûV ûl û‚ ûž û´ ûÊ ûà ûö ü ü" ü8 üN üj ü€ ü– ü¬ üÈ üÞ üô ý ý ý6 ýL ýh ý~ ý” ýª ýÀ ýÜ ýò þ þ$ þ: þP þr þˆ þ¤ þº þÐ þæ þü ÿ ÿ( ÿD ÿ` ÿv ÿŒ ÿ¢ ÿ¸ ÿÔ ÿê!!!,!B!X!n!„!š!¶!Ì!â!ø!!$!:!P!f!|!’!¨!Ä!Ú!ð!!!2!N!d!z!!¦!¼!Ò!è!þ!!*!@!V!l!‚!ž!´!Ð!ì!!!.!D!`!v!Œ!¢!¸!Î!ê!!!,!B!X!n!„!š!°!Ì!â!þ!!*!F!\!r!ˆ!¤!º!Ð!æ!ü!!(!>!T!j!€!–!¬!Â!Ø!ô! !&!<!R!h!~!”!ª!À!Ö!ì! ! $! :! V! l! ‚! ˜! ®! Ä! Ú! ð! ! "! 8! N! d! z! ! ¬! Â! Ø! î! ! ! <! R! n! ! ¦! ¼! Ø! î! ! ! 0! F! b! x! ”! ª! À! Ö! ì! ! ! .! D! Z! p! †! œ! ¸! Î! ä! ú!!,!B!X!t!Š! !¶!Ì!â!ø!!$!:!P!f!|!˜!®!Ä!à!ü!!.!D!Z!p!†!œ!²!Î!ê!!!2!N!j!€!–!¬!Â!Ø!î!!!0!F!\!r!Ž!ª!Æ!Ü!ò!!!4!V!l!‚!˜!®!Ä!Ú!ð! !"!8!T!j!†!¢!¸!Î!ä!ú!!,!B!^!t!Š!¦!¼!Ø!î! ! !6!L!b!x!Ž!¤!º!Ð!ì!!!.!D!`!|!’!®!Ê!æ!ü!!.!J!f!|!˜!´!Ê!à!ö! !"!8!N!d!€!–!²!È!Þ!ô! ! !6!L!b!~!”!ª!À!Ü!ò!!!4!J!`!|!’!´!Ê!à!ö!!(!>!T!p!†!œ!²!Î!ä!ú!!2!H!^!t!Š! !¶!Ì!â!ø!!$!:!V!l!‚!ž!´!Ê!à!ö! !(!>!Z!p!Œ!¢!¸!Î!ê! ! ! 8! N! d! z! ! ¦! Â! Ø! î!!!!!!0!!F!!\!!r!!ˆ!!¤!!º!!Ö!!ò!"!"!"4!"P!"f!"|!"˜!"®!"Ê!"à!"ü!#!#(!#>!#T!#p!#†!#¢!#¾!#Ô!#ð!$ !$"!$>!$T!$p!$†!$œ!$¸!$Î!$ä!$ú!%!%&!%<!%X!%t!%Š!%¦!%¼!%Ò!%è!%þ!&!&*!&F!&\!&r!&Ž!&¤!&º!&Ð!&ì!'!'!':!'P!'l!'ˆ!'ž!'´!'Ê!'à!'ö!( !("!(>!(Z!(p!(Œ!(¢!(¸!(Î!(ä!(ú!)!)&!)<!)R!)h!)~!)”!)ª!)À!)Ö!)ì!*!*!*.!*D!*Z!*p!*†!*œ!*²!*È!*Þ!*ô!+ !+ !+6!+L!+b!+x!+Ž!+¤!+º!+Ð!+æ!+ü!,!,(!,>!,T!,j!,€!,–!,¬!,Â!,Ø!,î!-!-!-0!-F!-\!-r!-ˆ!-¤!-º!-Ö!-ì!.!.!..!.D!.Z!.p!.†!.œ!.²!.È!.Þ!.ô!/ !/ !/<!/R!/h!/~!/”!/ª!/À!/Ö!/ì!0!0!04!0P!0f!0|!0’!0¨!0¾!0Ô!0ê!1!1!1,!1B!1X!1n!1Š!1 !1¼!1Ò!1è!1þ!2!2*!2@!2V!2l!2‚!2˜!2®!2Ä!2à!2ö!3 !3"!3>!3T!3j!3€!3–!3¬!3Â!3Ø!3î!4!4 !46!4L!4b!4x!4Ž!4ª!4À!4Ö!4ì!5!5!54!5J!5`!5v!5Œ!5¢!5¸!5Ô!5ê!6!6!6,!6B!6^!6t!6Š!6 !6¶!6Ì!6â!6ø!7!7$!7:!7V!7l!7‚!7˜!7´!7Ð!7æ!7ü!8!8(!8>!8T!8j!8†!8œ!8¸!8Î!8ä!8ú!9!9&!9<!9R!9h!9~!9 !9¶!9Ì!9â!9ø!:!:*!:@!:V!:l!:ˆ!:ž!:´!:Ê!:à!:ö!; !;"!;8!;N!;j!;†!;œ!;¸!;Î!;ê!<!<!<,! !>"!>8!>N!>d!>z!>!>¦!>¼!>Ò!>î!? !?&!?<!?R!?n!?Š!? !?¶!?Ì!?â!?ø!@!@*!@@!@\!@r!@ˆ!@ž!@´!@Ð!@æ!@ü!A!A(!A>!AT!Aj!A€!A–!A¬!AÂ!AØ!Aî!B!B!B6!BL!Bb!Bx!BŽ!Bª!BÀ!BÖ!Bì!C!C!C.!CD!C`!Cv!CŒ!C¢!C¸!CÎ!Cä!D!D!D,!DB!DX!Dn!D„!Dš!D°!DÆ!DÜ!Dò!E!E!E4!EJ!E`!Ev!EŒ!E¢!E¸!EÎ!Eä!Eú!F!F&!F<!FR!Fh!F~!F”!F°!FÆ!FÜ!Fò!G!G!G4!GJ!G`!Gv!GŒ!G¢!G¸!GÎ!Gä!Gú!H!H&!HB!H^!Ht!HŠ!H !H¶!HÌ!Hâ!Hø!I!I$!I:!IP!If!I‚!I˜!I®!IÄ!IÚ!Iö!J !J"!J>!JZ!Jp!J†!Jœ!J²!JÈ!JÞ!Jô!K !K !K6!KL!Kb!Kx!KŽ!K¤!Kº!KÐ!Kæ!Kü!L!L(!L>!LT!Lj!L€!L–!L¬!LÂ!LØ!Lî!M!M!M0!MF!M\!Mr!Mˆ!Mž!M´!MÊ!Mà!Mö!N !N"!N8!NN!Nd!Nz!N–!N¬!NÂ!NØ!Nî!O!O!O0!OF!O\!Or!Oˆ!Ož!O´!OÊ!Oà!Oö!P !P"!P8!PN!Pj!P€!P–!P²!PÎ!Pä!Pú!Q!Q&!Q<!QR!Qh!Q~!Q”!Qª!QÀ!QÖ!Qò!R!R$!R:!RP!Rf!R|!R’!R¨!R¾!RÔ!Rê!S!S!S,!SB!S^!St!SŠ!S !S¶!SÌ!Sâ!Sø!T!T*!T@!TV!Tl!T‚!T˜!T®!TÄ!TÚ!Tð!U!U!U2!UH!U^!Ut!U!U¦!U¼!UÒ!Uè!Uþ!V!V0!VF!V\!Vr!Vˆ!Vž!V´!VÐ!Vì!W!W!W.!WD!WZ!Wp!W†!W¢!W¸!WÎ!Wä!X!X!X,!XB!XX!Xn!X„!Xš!X°!XÆ!Xâ!Xø!Y!Y$!Y:!YP!Yf!Y|!Y˜!Y®!YÄ!YÚ!Yð!Z!Z!Z2!ZH!Z^!Zz!Z!Z¬!ZÂ!ZØ!Zî![![![0![F![\![r![Ž![¤![º![Ð![æ![ü!\!\(!\>!\T!\j!\€!\–!\¬!\Â!\Ø!\î!]!]!]0!]F!]\!]r!]ˆ!]ž!]´!]Ê!]à!]ö!^ !^"!^8!^T!^j!^€!^–!^¬!^Â!^Ø!^î!_!_!_0!_F!_\!_r!_ˆ!_ž!_´!_Ê!_à!_ü!`!`(!`>!`T!`j!`€!`œ!`²!`È!`Þ!`ô!a !a !a6!aL!ab!ax!aŽ!a¤!aº!aÐ!aæ!aü!b!b(!b>!bT!bj!b†!bœ!b²!bÎ!bä!bú!c!c&!c<!cR!ch!c~!c”!cª!cÀ!cÖ!cì!d!d!d.!dD!dZ!dp!d†!dœ!d²!dÈ!dä!dú!e!e,!eH!e^!et!eŠ!e !e¶!eÌ!eâ!eø!f!f$!f:!fP!ff!f|!f’!f¨!f¾!fÔ!fê!g!g!g,!gB!gX!gn!g„!gš!g°!gÆ!gâ!gø!h!h$!h:!hP!hf!h|!h’!h¨!h¾!hÔ!hê!i!i!i,!iB!iX!in!i„!iš!i¶!iÌ!iâ!iø!j!j$!j:!jP!jf!j|!j’!j¨!j¾!jÔ!jê!k!k!k,!kB!kX!kn!k„!kš!k°!kÆ!kÜ!kò!l!l$!l:!lP!lf!l|!l’!l¨!l¾!lÚ!lö!m !m"!m8!mT!mj!m€!m–!m²!mÈ!mÞ!mô!n !n !n6!nR!nh!n~!nš!n°!nÆ!nÜ!nò!o!o!o:!oP!of!o|!o˜!o®!oÄ!oà!oö!p !p"!p8!pN!pd!pz!p!p¦!p¼!pÒ!pè!pþ!q!q0!qF!q\!qr!qˆ!qž!q´!qÊ!qà!qü!r!r(!r>!rT!rj!r€!rœ!r²!rÈ!rÞ!rô!s !s !s6!sL!sb!sx!sŽ!s¤!sº!sÐ!sæ!sü!t!t(!t>!tT!tj!t€!t–!t¬!tÂ!tØ!tô!u !u !u6!uR!uh!u~!u”!uª!uÀ!uÖ!uì!v!v!v.!vD!vZ!vp!v†!vœ!v²!vÈ!vÞ!vô!w !w&!w<!wR!wh!w~!w”!wª!wÀ!wÖ!wì!x!x!x.!xD!xZ!xp!x†!xœ!x²!xÈ!xÞ!xô!y !y !y6!yL!yb!yx!yŽ!y¤!yº!yÐ!yæ!yü!z!z(!z>!zT!zj!z€!z–!z¬!zÂ!zØ!zî!{!{!{0!{F!{b!{x!{Ž!{¤!{º!{Ð!{æ!{ü!|!|(!|>!|T!|j!|€!|–!|¬!|Â!|Ø!|î!}!}!}0!}F!}\!}r!}ˆ!}ž!}´!}Ê!}à!}ö!~ !~"!~8!~N!~d!~z!~!~¦!~¼!~Ò!~è!~þ!!*!@!V!l!‚!˜!®!Ä!Ú!ð!€!€!€2!€H!€^!€t!€Š!€ !€¶!€Ì!€â!€ø!!$!:!P!f!|!’!¨!¾!Ô!ê!‚!‚!‚,!‚B!‚X!‚n!‚„!‚š!‚°!‚Æ!‚Ü!‚ò!ƒ!ƒ!ƒ4!ƒJ!ƒ`!ƒv!ƒŒ!ƒ¢!ƒ¸!ƒÎ!ƒä!ƒú!„!„&!„<!„R!„h!„„!„š!„°!„Æ!„Ü!„ò!…!…!…4!…J!…`!…v!…Œ!…¢!…¸!…Î!…ê!†!†!†,!†B!†X!†n!†„!†š!†°!†Æ!†Ü!†ò!‡!‡!‡4!‡J!‡`!‡v!‡Œ!‡¢!‡¸!‡Î!‡ä!‡ú!ˆ!ˆ&!ˆ<!ˆR!ˆh!ˆ~!ˆ”!ˆª!ˆÀ!ˆÖ!ˆì!‰!‰!‰.!‰D!‰Z!‰p!‰†!‰œ!‰²!‰È!‰Þ!‰ô!Š !Š !Š6!ŠL!Šb!Šx!ŠŽ!Ф!Šº!ŠÐ!Šæ!Šü!‹!‹.!‹D!‹Z!‹p!‹†!‹œ!‹²!‹Î!‹ä!‹ú!Œ!Œ,!ŒB!ŒX!Œn!Œ„!Œš!Œ°!ŒÆ!ŒÜ!Œò!!!4!J!`!v!Œ!¢!¸!Î!ä!ú!Ž!Ž&!Ž<!ŽR!Žh!Ž~!Žš!ް!ŽÆ!ŽÜ!Žò!!!4!J!`!v!Œ!¢!¸!Î!ä!ú!!&!<!R!h!~!”!ª!À!Ö!ì!‘!‘!‘4!‘P!‘f!‘|!‘˜!‘®!‘Ä!‘Ú!‘ö!’ !’"!’8!’N!’d!’€!’–!’¬!’È!’ä!’ú!“!“&!“<!“R!“h!“~!“”!“ª!“À!“Ö!“ì!”!”!”.!”D!”Z!”p!”†!”œ!”²!”Î!”ä!”ú!•!•&!•<!•R!•h!•~!•”!•ª!•À!•Ö!•ì!–!–!–.!–D!–Z!–p!–†!–œ!–²!–È!–Þ!–ô!— !— !—6!—L!—b!—x!—Ž!—¤!—º!—Ð!—æ!—ü!˜!˜(!˜>!˜T!˜j!˜€!˜–!˜¬!˜Â!˜Ø!˜î!™!™!™0!™F!™\!™r!™ˆ!™ž!™´!™Ê!™à!™ö!š !š"!š8!šN!šd!šz!š!š¦!š¼!šÒ!šî!›!›!›0!›L!›b!›x!›Ž!›¤!›À!›Ü!›ò!œ!œ!œ4!œJ!œ`!œv!œŒ!œ¢!œ¸!œÎ!œä!œú!!&!<!R!h!~!š!¼!Ò!è!þ!ž!ž*!ž@!žV!žl!ž‚!žž!ž´!žÊ!žà!žö!Ÿ !Ÿ"!Ÿ>!ŸT!Ÿj!Ÿ€!Ÿ–!Ÿ¬!ŸÂ!ŸØ!Ÿî! ! ! 0! F! \! r! ˆ! ž! ´! Ê! à! ö!¡!¡(!¡>!¡T!¡j!¡€!¡œ!¡²!¡È!¡Þ!¡ô!¢ !¢ !¢6!¢L!¢b!¢x!¢Ž!¢¤!¢º!¢Ð!¢æ!¢ü!£!£(!£>!£T!£j!£€!£–!£¬!£Â!£Ø!£î!¤ !¤ !¤6!¤L!¤b!¤x!¤Ž!¤¤!¤º!¤Ð!¤æ!¤ü!¥!¥(!¥>!¥T!¥j!¥€!¥–!¥¬!¥Â!¥Ø!¥î!¦!¦!¦0!¦F!¦\!¦r!¦ˆ!¦ž!¦´!¦Ê!¦à!¦ö!§ !§"!§8!§N!§d!§z!§!§¦!§¼!§Ò!§è!§þ!¨!¨*!¨@!¨V!¨l!¨‚!¨˜!¨®!¨Ê!¨à!¨ö!© !©"!©8!©N!©d!©z!©!©¦!©¼!©Ò!©è!©þ!ª!ª*!ª@!ªV!ªl!ª‚!ª˜!ª®!ªÄ!ªÚ!ªð!«!«"!«8!«N!«d!«z!«!«¦!«¼!«Ò!«è!¬!¬!¬0!¬F!¬\!¬r!¬ˆ!¬ž!¬´!¬Ê!¬à!¬ö!­ !­"!­8!­N!­d!­z!­!­¦!­¼!­Ò!­è!­þ!®!®*!®@!®V!®l!®‚!®ž!®´!®Ê!®à!®ö!¯ !¯"!¯8!¯N!¯d!¯z!¯!¯¦!¯¼!¯Ò!¯è!¯þ!°!°*!°@!°V!°l!°‚!°˜!°®!°Ä!°Ú!°ö!± !±"!±8!±N!±d!±z!±–!±¬!±Â!±Ø!±ô!² !² !²6!²L!²b!²x!²Ž!²ª!²À!²Ö!²ì!³!³!³4!³J!³`!³v!³Œ!³¢!³¸!³Î!³ä!³ú!´!´&!´B!´X!´t!´Š!´ !´¶!´Ì!´â!´ø!µ!µ$!µ:!µP!µf!µ|!µ’!µ¨!µÄ!µÚ!µð!¶!¶!¶2!¶H!¶^!¶t!¶Š!¶ !¶¶!¶Ì!¶â!¶ø!·!·$!·:!·P!·f!·|!·’!·¨!·¾!·Ô!·ê!¸!¸!¸,!¸B!¸X!¸n!¸„!¸š!¸°!¸Æ!¸Ü!¸ò!¹!¹!¹4!¹J!¹`!¹v!¹Œ!¹¢!¹¸!¹Î!¹ä!¹ú!º!º&!º<!ºR!ºh!º~!º”!ºª!ºÀ!ºÖ!ºì!»!»!».!»D!»Z!»p!»†!»œ!»²!»È!»Þ!»ô!¼!¼&!¼<!¼R!¼h!¼~!¼”!¼ª!¼À!¼Ö!¼ì!½!½!½.!½D!½Z!½p!½†!½œ!½²!½È!½ä!½ú!¾!¾&!¾B!¾^!¾t!¾Š!¾ !¾¶!¾Ì!¾â!¾þ!¿!¿*!¿@!¿V!¿l!¿‚!¿˜!¿´!¿Ê!¿à!¿ö!À !À"!À8!ÀN!Àd!Àz!À!À¦!À¼!ÀÒ!Àè!Àþ!Á!Á*!Á@!ÁV!Ál!Á‚!Á˜!Á®!ÁÄ!ÁÚ!Áð!Â!Â!Â2!ÂH!Â^!Ât!Š! !¶!ÂÌ!Ââ!Âø!Ã!Ã*!Ã@!ÃV!Ãl!Â!Ø!î!ÃÄ!ÃÚ!Ãð!Ä!Ä!Ä2!ÄH!Ä^!Ät!ÄŠ!Ä !Ķ!ÄÌ!Äâ!Äø!Å!Å$!Å:!ÅP!Åf!Å|!Å’!Ũ!ž!ÅÔ!Åê!Æ!Æ!Æ,!ÆB!ÆX!Æn!Æ„!Æš!ư!ÆÆ!ÆÜ!Æò!Ç!Ç!Ç4!ÇJ!Ç`!Çv!ÇŒ!Ç¢!Ǹ!ÇÎ!Çä!Çú!È!È&!È<!ÈR!Èh!È~!È”!Ȫ!ÈÀ!ÈÖ!Èì!É!É!É4!ÉJ!É`!Év!ÉŒ!É¢!ɸ!ÉÎ!Éä!Éú!Ê!Ê&!Ê<!ÊR!Êh!Ê~!Ê”!ʪ!ÊÀ!ÊÖ!Êì!Ë!Ë!Ë.!ËD!ËZ!Ëp!ˆ!Ëœ!˲!ËÈ!ËÞ!Ëô!Ì !Ì !Ì6!ÌL!Ìh!Ì„!Ìš!̰!ÌÆ!Ìâ!Ìø!Í!Í$!Í:!ÍP!Íf!Í|!Í’!ͨ!;!ÍÔ!Íê!Î!Î!Î2!ÎH!Î^!Ît!Ί!Π!ζ!ÎÌ!Îâ!Îþ!Ï!Ï0!ÏF!Ï\!Ïr!ψ!Ïž!Ϻ!ÏÖ!Ïì!Ð!Ð!Ð.!ÐJ!Ð`!Ðv!ÐŒ!Т!и!ÐÎ!Ðä!Ðú!Ñ!Ñ&!Ñ<!ÑR!Ñh!Ñ~!Ñ”!Ѫ!ÑÀ!ÑÖ!Ñì!Ò!Ò!Ò.!ÒD!ÒZ!Òp!Ò†!Òœ!Ò²!ÒÈ!ÒÞ!Ó!Ó!Ó,!ÓB!ÓX!Ón!Ó„!Óš!Ó°!ÓÆ!ÓÜ!Óò!Ô!Ô!Ô4!ÔJ!Ô`!Ôv!ÔŒ!Ô¢!Ô¸!ÔÎ!Ôä!Ôú!Õ!Õ&!Õ<!ÕR!Õh!Õ~!Õ”!Õª!ÕÀ!ÕÖ!Õì!Ö!Ö!Ö.!ÖD!ÖZ!Öp!Ö†!Öœ!Ö²!ÖÈ!ÖÞ!Öô!× !× !×<!×R!×h!×~!×”!×°!ׯ!×â!×ø!Ø!Ø$!Ø:!ØV!Øl!Ø‚!ؘ!Ø®!ØÄ!ØÚ!Øð!Ù !Ù"!Ù8!ÙN!Ùd!Ùz!Ù!Ù¦!ÙÂ!ÙØ!Ùî!Ú!Ú!Ú6!ÚL!Úb!Úx!ÚŽ!Ú¤!Úº!ÚÐ!Úæ!Û!Û!Û4!ÛJ!Û`!Ûv!ÛŒ!Û¢!Û¸!ÛÎ!Ûä!Ûú!Ü!Ü&!Ü<!ÜR!Üh!Ü~!Ü”!ܪ!ÜÆ!ÜÜ!Üò!Ý!Ý*!Ý@!ÝV!Ýl!Ý‚!ݘ!Ý´!ÝÊ!Ýà!Ýö!Þ !Þ"!Þ>!ÞT!Þj!Þ€!Þ–!Þ¬!ÞÂ!ÞØ!Þî!ß!ß!ß0!ßF!ß\!ßr!߈!ßž!ß´!ßÐ!ßæ!ßü!à!à(!à>!àT!àp!à†!àœ!à¸!àÎ!àä!á!á!á2!áN!ád!á€!á–!á¬!áÂ!áØ!áô!â !â !â6!âL!âh!â~!âš!â¶!âÌ!ââ!âø!ã!ã$!ã:!ãP!ãf!ã‚!ã˜!ã®!ãÊ!ãà!ãü!ä!ä(!ä>!äT!äp!ä†!ä¢!ä¸!äÎ!ää!äú!å!å,!åB!åX!ån!å„!å !å¶!åÌ!åâ!åþ!æ!æ0!æL!æb!æx!æŽ!æª!æÀ!æÖ!æì!ç!ç!ç4!çP!çl!ç‚!ç˜!ç®!çÊ!çæ!è!è!è.!èD!èZ!èp!èŒ!è¨!è¾!èÔ!èê!é!é!é,!éB!éX!ét!é!é¦!é¼!éØ!éî!ê!ê !ê6!êL!êh!ê~!ê”!êª!êÀ!êÖ!êì!ë!ë!ë.!ëD!ëZ!ëp!ë†!ëœ!ë²!ëÈ!ëÞ!ëô!ì !ì !ì6!ìR!ìn!ì„!ìš!ì°!ìÆ!ìÜ!ìò!í!í!í4!íJ!í`!ív!íŒ!í¢!í¸!íÎ!íä!íú!î!î&!î<!îR!îh!î~!î”!îª!îÆ!îÜ!îò!ï!ï!ï4!ïJ!ï`!ïv!ïŒ!ï¢!ï¸!ïÎ!ïä!ïú!ð!ð,!ðB!ðX!ðn!ð„!ðš!ð°!ðÆ!ðâ!ðø!ñ!ñ$!ñ:!ñP!ñf!ñ|!ñ’!ñ¨!ñ¾!ñÔ!ñê!ò!ò!ò,!òH!ò^!òz!ò!ò¦!ò¼!òÒ!òè!òþ!ó!ó*!ó@!óV!ól!ó‚!óž!óº!óÐ!óæ!óü!ô!ô(!ô>!ôT!ôj!ô€!ô–!ô¬!ôÂ!ôØ!ôî!õ !õ&!õ<!õR!õh!õ~!õ”!õª!õÀ!õÖ!õì!ö!ö!ö.!öD!öZ!öp!ö†!öœ!ö²!öÈ!öÞ!öô!÷ !÷ !÷6!÷L!÷b!÷~!÷”!÷ª!÷À!÷Ö!÷ì!ø!ø!ø.!øD!øZ!øp!ø†!ø¢!ø¾!øÔ!øê!ù!ù!ù,!ùB!ùX!ùn!ù„!ùš!ù°!ùÆ!ùÜ!ùò!ú!ú!ú4!úJ!ú`!úv!úŒ!ú¢!ú¸!úÎ!úä!úú!û!û&!û<!ûR!ûh!û„!ûš!û°!ûÆ!ûÜ!ûò!ü!ü!ü4!üJ!üf!ü‚!ü˜!ü®!üÄ!üÚ!üð!ý!ý!ý2!ýH!ý^!ýt!ýŠ!ý !ý¶!ýÌ!ýâ!ýø!þ!þ$!þ:!þV!þl!þ‚!þ˜!þ®!þÄ!þÚ!þð!ÿ !ÿ"!ÿ8!ÿN!ÿd!ÿz!ÿ!ÿ¦!ÿ¼!ÿÒ!ÿè!ÿþ""*"@"V"l"‚"˜"®"Ä"Ú"ð"""2"H"^"t"Š" "¶"Ì"è"þ""*"@"V"l"‚"˜"®"Ä"Ú"ð"""2"H"^"t"Š" "¶"Ì"â"ø""$":"V"l"‚"˜"®"Ä"Ú"ð"""2"H"d"z""¦"¼"Ò"è"þ""*"@"V"l"‚"˜"´"Ð"æ"ü""."D"Z"v"Œ"¢"¸"Î"ê""","H"^"t""¦"¼"Ò"è"þ" " *" @" V" l" ‚" ˜" ®" Ä" Ú" ð" " " 2" H" d" z" " ¦" ¼" Ò" è" " " 6" L" b" x" Ž" ¤" º" Ð" ì" " " ." D" Z" p" †" œ" ²" È" Þ" ô" " &" <" R" n" „" š" °" Æ" Ü" ò""":"P"f"|"’"¨"Ä"Ú"ð"""2"H"^"t"Š" "¶"Ò"è"þ""*"F"\"r"ˆ"ž"º"Ð"ì"""."J"`"|"’"¨"¾"Ô"ð" "(">"T"j"€"–"¬"È"Þ"ô" " "6"L"b"x"Ž"¤"º"Ð"æ"ü""(">"T"j"€"–"¬"Â"Ø"î"""0"F"\"r"ˆ"ž"´"Ê"à"ö" """8"N"d"z""¦"¼"Ò"è"þ""*"@"V"l"‚"˜"®"Ê"à"ö" """>"T"j"€"–"¬"Â"Ø"î"""0"F"\"r"ˆ"ž"´"Ê"à"ö" """8"N"d"z""¦"¼"Ò"è"þ""*"@"V"l"‚"˜"®"Ê"à"ö" """>"T"j"€"–"²"Î"ê""","B"X"n"„"š"°"Æ"Ü"ò"""4"J"`"v"Œ"¢"¸"Î"ä"ú"","B"X"n"„" "¶"Ì"è"þ" " *" @" V" l" ‚" ˜" ´" Ð" æ" ü"!"!."!D"!Z"!p"!†"!œ"!²"!È"!Þ"!ô"" "" ""6""L""b""x""Ž""¤""º""Ð""æ""ü"#"#("#>"#T"#j"#€"#–"#¬"#È"#Þ"#ô"$"$,"$B"$X"$n"$„"$ "$¶"$Ì"$â"$ø"%"%*"%@"%V"%l"%ˆ"%¤"%º"%Ð"%æ"%ü"&"&("&>"&T"&j"&€"&–"&¬"&Â"&Ø"&î"'"'"'0"'F"'\"'r"'ˆ"'ž"'´"'Ê"'à"'ö"( "(""(8"(N"(d"(z"("(¦"(¼"(Ò"(è"(þ")")*")@")V")l")‚")˜")®")Ä")Ú")ð"*"*"*2"*H"*^"*t"*Š"* "*¶"*Ò"*è"*þ"+"+*"+@"+V"+l"+‚"+˜"+®"+Ä"+Ú"+ð",",",2",H",^",t",Š", ",¶",Ì",â",ø"-"-$"-:"-P"-f"-|"-’"-¨"-¾"-Ô"-ê".".".,".B".X".n".„".š".°".Æ".Ü".ò"/"/"/4"/J"/`"/v"/Œ"/¢"/¾"/Ô"/ê"0"0"0,"0B"0X"0n"0„"0š"0°"0Æ"0Ü"0ò"1"1"14"1J"1`"1v"1’"1¨"1¾"1Ô"1ê"2"2"2,"2B"2X"2n"2„"2š"2°"2Æ"2Ü"2ò"3"3$"3:"3P"3f"3|"3˜"3®"3Ä"3Ú"3ö"4"4("4>"4T"4p"4†"4œ"4²"4È"4Þ"4ô"5 "5 "56"5L"5b"5x"5Ž"5¤"5º"5Ð"5æ"5ü"6"6("6>"6T"6j"6€"6–"6¬"6Â"6Ø"6î"7"7"70"7F"7\"7r"7ˆ"7ž"7´"7Ê"7à"7ö"8 "8""88"8N"8d"8z"8"8¦"8¼"8Ò"8è"8þ"9"9*"9@"9V"9l"9‚"9˜"9´"9Ê"9à"9ö": ":"":8":N":d":z":":¦":¼":Ò":è":þ";";*";@";V";l";‚";˜";®";Ä";Ú";ð"<"<"<2"">">.">D">Z">p">†">œ">¸">Î">ä">ú"?"?&"?<"?R"?h"?~"?”"?ª"?À"?Ö"?ì"@"@"@."@D"@Z"@p"@†"@œ"@²"@È"@Þ"@ô"A "A "A6"AL"Ab"Ax"AŽ"A¤"Aº"AÐ"Aæ"Aü"B"B("B>"BT"Bj"B€"B–"B¬"BÂ"BØ"Bî"C"C"C0"CF"C\"Cr"Cˆ"Cž"C´"CÊ"Cà"Cö"D "D""D>"DT"Dp"D†"Dœ"D²"DÈ"DÞ"Dô"E "E "E<"ER"En"E„"Eš"E¶"EÌ"Eâ"Eø"F"F*"F@"FV"Fl"F‚"F˜"F®"FÄ"FÚ"Fð"G"G"G2"GH"G^"Gt"G"G¦"G¼"GÒ"Gî"H"H"H0"HF"H\"Hr"Hˆ"Hž"H´"HÊ"Hà"Hü"I"I."ID"IZ"Ip"I†"Iœ"I²"IÎ"Iä"Iú"J"J&"J<"JR"Jh"J~"J”"Jª"JÆ"JÜ"Jò"K"K"K4"KJ"K`"Kv"KŒ"K¢"K¸"KÎ"Kä"Kú"L"L&"L<"LR"Lh"L„"Lš"L°"LÆ"LÜ"Lò"M"M"M4"MJ"M`"Mv"MŒ"M¢"M¸"MÎ"Mä"Mú"N"N&"N<"NR"Nh"N~"N”"Nª"NÀ"NÖ"Nì"O"O"O."OD"OZ"Op"O†"Oœ"O²"OÈ"OÞ"Oô"P "P "P6"PL"Pb"Px"PŽ"P¤"Pº"PÐ"Pæ"Pü"Q"Q("Q>"QT"Qj"Q€"Q–"Q¬"QÂ"QØ"Qî"R"R"R0"RF"R\"Rr"Rˆ"Rž"R´"RÐ"Ræ"Rü"S"S("S>"ST"Sj"S€"S–"S¬"SÂ"SØ"Sî"T"T"T0"TF"T\"Tr"Tˆ"Tž"T´"TÊ"Tà"Tö"U "U""U8"UN"Ud"Uz"U"U¦"U¼"UÒ"Uè"Uþ"V"V*"V@"VV"Vl"V‚"V˜"V®"VÄ"VÚ"Vð"W"W"W2"WH"W^"Wt"WŠ"W "W¶"WÌ"Wâ"Wø"X"X$"X:"XP"Xf"X|"X’"X¨"X¾"XÔ"Xê"Y"Y"Y,"YB"YX"Yt"YŠ"Y "Y¶"YÌ"Yâ"Yþ"Z"Z*"Z@"ZV"Zl"Z‚"Z˜"Z®"ZÄ"ZÚ"Zð"["["[2"[H"[^"[t"[Š"[ "[¶"[Ì"[â"[ø"\"\$"\:"\P"\l"\‚"\˜"\®"\Ä"\Ú"\ð"]"]"]2"]H"]^"]t"]Š"] "]¶"]Ì"]â"]ø"^"^$"^:"^P"^l"^‚"^˜"^®"^Ä"^Ú"^ð"_ "_""_8"_N"_j"_†"_œ"_²"_È"_Þ"_ô"` "` "`6"`R"`n"`„"`š"`°"`Æ"`Ü"`ò"a"a"a:"aP"af"a‚"a˜"a®"aÊ"aà"aö"b"b("b>"bT"bj"b€"b–"b¬"bÂ"bØ"bî"c"c "c6"cR"ch"c~"c”"cª"cÆ"cÜ"cò"d"d"d4"dJ"df"d|"d’"d¨"d¾"dÔ"dê"e"e"e8"eN"ej"e†"e¢"e¸"eÎ"eê"f"f"f,"fB"f^"ft"f"f¬"fÂ"fÞ"fô"g "g&"g<"gR"gh"g~"g”"gª"gÆ"gÜ"gò"h"h*"h@"h\"hr"hˆ"h¤"hÀ"hÜ"hò"i"i"i4"iJ"i`"iv"iŒ"i¢"i¸"iÎ"iä"iú"j"j&"j<"jX"jn"jŠ"j "j¶"jÌ"jâ"jø"k"k$"k@"kV"kl"k‚"k˜"k®"kÄ"kÚ"kö"l"l("l>"lT"lp"l†"lœ"l¸"lÔ"lê"m"m"m,"mH"m^"mt"mŠ"m "m¶"mÌ"mâ"mø"n"n$"n:"nV"nr"nˆ"nž"n´"nÊ"næ"nü"o"o."oD"oZ"op"o†"oœ"o²"oÈ"oÞ"oô"p"p&"p<"pR"ph"p~"p”"pª"pÀ"pÖ"pì"q"q"q4"qJ"q`"qv"qŒ"q¨"q¾"qÔ"qê"r"r"r,"rB"rX"rn"rŠ"r "r¶"rÌ"râ"rø"s"s$"s:"sP"sf"s|"s˜"s®"sÊ"sà"sö"t "t("t>"tZ"tp"t†"tœ"t²"tÈ"tÞ"tô"u "u&"u<"uR"un"u„"uš"u°"uÆ"uÜ"uø"v"v0"vL"vh"v„"vš"v°"vÆ"vâ"vø"w"w$"w:"wV"wl"w‚"w˜"w®"wÄ"wÚ"wð"x"x"x2"xH"x^"xz"x"x¦"x¼"xÒ"xè"xþ"y"y*"y@"y\"yr"yŽ"y¤"yº"yÖ"yì"z"z"z."zD"z`"zv"zŒ"z¨"zÄ"zÚ"zð"{ "{""{8"{N"{d"{z"{"{¬"{Â"{Ø"{î"| "|&"|<"|R"|n"|„"|š"|¶"|Ì"|â"|ø"}"}0"}F"}\"}x"}Ž"}¤"}º"}Ð"}æ"}ü"~"~("~D"~`"~v"~’"~¨"~¾"~Ô"~ê"""2"H"^"t""¦"¼"Ò"è"€"€"€6"€L"€b"€x"€Ž"€¤"€À"€Ü"€ò""$"@"\"r"Ž"ª"À"Ö"ì"‚"‚"‚:"‚P"‚f"‚|"‚’"‚¨"‚Ä"‚à"‚ü"ƒ"ƒ("ƒ>"ƒT"ƒp"ƒ†"ƒœ"ƒ²"ƒÈ"ƒÞ"ƒô"„ "„ "„6"„R"„h"„~"„”"„ª"„À"„Ö"„ì"…"…"…."…J"…`"…v"…Œ"…¢"…¸"…Î"…ä"…ú"†"†&"†<"†R"†n"†„"†š"†°"†Ì"†â"†ø"‡"‡$"‡:"‡P"‡l"‡‚"‡˜"‡´"‡Ê"‡à"‡ü"ˆ"ˆ("ˆ>"ˆZ"ˆp"ˆ†"ˆœ"ˆ¸"ˆÎ"ˆä"ˆú"‰"‰,"‰H"‰d"‰z"‰"‰¬"‰Â"‰Ø"‰ô"Š "Š "Š6"ŠR"Šn"Š„"Šš"а"ŠÌ"Šâ"Šø"‹"‹*"‹@"‹V"‹l"‹‚"‹ž"‹´"‹Ð"‹ì"Œ"Œ"Œ:"ŒP"Œl"Œ‚"Œ˜"Œ´"ŒÊ"Œæ"Œü""."J"`"v"Œ"¢"¸"Ô"ê"Ž"Ž""Ž>"ŽT"Žj"Ž€"Ž–"ެ"ŽÈ"ŽÞ"Žô" "2"H"^"t"Š" "¶"Ì"â"ø""*"@"V"l"‚"ž"´"Ê"à"ö"‘ "‘("‘J"‘f"‘|"‘’"‘¨"‘Ä"‘Ú"‘ð"’"’""’8"’N"’j"’€"’œ"’²"’È"’ä"’ú"“"“2"“N"“d"“€"“–"“¬"“Â"“Ø"“ô"” "” "”<"”R"”h"”„"”š"”°"”Æ"”Ü"”ò"•"•"•4"•J"•`"•v"•Œ"•¢"•¸"•Î"•ä"•ú"–"–,"–H"–^"–t"–"–¦"–Â"–Ø"–î"—"—"—0"—F"—\"—r"—ˆ"—ž"—´"—Ê"—à"—ö"˜ "˜""˜8"˜N"˜d"˜z"˜–"˜¬"˜Â"˜Ø"˜î"™ "™ "™6"™L"™b"™~"™”"™ª"™À"™Ü"™ò"š"š$"š:"šP"šf"š|"š’"š®"šÄ"šÚ"šö"› "›""›8"›T"›j"›€"›–"›¬"›Â"›Ø"›î"œ"œ"œ0"œL"œb"œ~"œ”"œ°"œÆ"œâ"œø""$":"P"f"|"’"¨"¾"Ô"ê"ž"ž"ž,"žB"žX"žn"ž„"žš"ž¶"žÌ"žâ"žø"Ÿ"Ÿ$"Ÿ:"ŸP"Ÿf"Ÿ|"Ÿ’"Ÿ¨"Ÿ¾"ŸÔ"Ÿê" " " ," B" X" n" „" š" °" Æ" Ü" ò"¡"¡"¡4"¡P"¡f"¡|"¡’"¡¨"¡¾"¡Ô"¡ê"¢"¢"¢,"¢B"¢X"¢n"¢„"¢š"¢°"¢Æ"¢Ü"¢ò"£"£"£4"£J"£`"£v"£’"£¨"£¾"£Ô"£ê"¤"¤"¤2"¤H"¤^"¤t"¤Š"¤ "¤¶"¤Ì"¤â"¤ø"¥"¥$"¥:"¥P"¥f"¥|"¥’"¥¨"¥¾"¥Ô"¥ê"¦"¦"¦,"¦B"¦X"¦n"¦„"¦ "¦¶"¦Ò"¦è"¦þ"§"§*"§@"§V"§l"§‚"§˜"§´"§Ê"§à"§ö"¨ "¨""¨>"¨T"¨j"¨†"¨œ"¨²"¨È"¨Þ"¨ô"© "© "©6"©L"©b"©x"©Ž"©¤"©º"©Ð"©æ"©ü"ª"ª("ªD"ªZ"ªp"ª†"ªœ"ª²"ªÈ"ªÞ"ªô"« "«&"«B"«X"«n"«Š"« "«¶"«Ì"«â"«ø"¬"¬*"¬@"¬V"¬l"¬‚"¬˜"¬®"¬Ä"¬Ú"¬ð"­"­"­2"­H"­^"­t"­Š"­ "­¶"­Ì"­â"­ø"®"®$"®@"®V"®l"®‚"®˜"®®"®Ä"®à"®ö"¯ "¯""¯8"¯N"¯d"¯z"¯"¯¦"¯¼"¯Ò"¯è"¯þ"°"°0"°F"°\"°r"°ˆ"°ž"°´"°Ê"°æ"°ü"±"±."±D"±Z"±p"±†"±œ"±²"±È"±Þ"±ô"² "²&"²B"²X"²t"²Š"² "²¶"²Ì"²â"²ø"³"³$"³@"³V"³l"³ˆ"³ž"³´"³Ê"³à"³ö"´ "´""´8"´N"´d"´z"´"´¦"´¼"´Ò"´è"´þ"µ"µ0"µF"µ\"µx"µŽ"µ¤"µº"µÐ"µæ"µü"¶"¶("¶>"¶T"¶p"¶†"¶¢"¶¸"¶Î"¶ä"¶ú"·"·,"·B"·X"·n"·„"·š"·°"·Æ"·Ü"·ò"¸"¸"¸4"¸J"¸`"¸v"¸Œ"¸¢"¸¸"¸Î"¸ä"¸ú"¹"¹,"¹B"¹X"¹t"¹Š"¹ "¹¶"¹Ì"¹â"¹ø"º"º$"º:"ºP"ºf"º|"º’"º¨"º¾"ºÔ"ºê"»"»"»,"»B"»X"»n"»„"»š"»°"»Æ"»Ü"»ò"¼"¼"¼4"¼J"¼`"¼v"¼Œ"¼¢"¼¸"¼Î"¼ä"¼ú"½"½,"½B"½X"½n"½„"½š"½°"½Æ"½Ü"½ò"¾"¾"¾4"¾J"¾`"¾v"¾Œ"¾¢"¾¸"¾Î"¾ä"¾ú"¿"¿&"¿B"¿X"¿n"¿„"¿š"¿°"¿Æ"¿Ü"¿ò"À"À"À4"ÀJ"À`"Àv"ÀŒ"À¢"À¸"ÀÎ"Àä"Àú"Á"Á&"Á<"ÁR"Áh"Á~"Á”"Áª"ÁÆ"Áâ"Áþ"Â"Â6"ÂR"Ân"Š"¦"ÂÂ"ÂÞ"Âú"Ã"Ã2"ÃN"Ãd"Ãz"Ã"æ"ü"ÃÒ"Ãè"Ãþ"Ä"Ä*"Ä@"ÄV"Äl"Ä‚"Ę"Ä´"ÄÊ"Äà"Äö"Å "Å""Å8"ÅN"Åj"Å€"Å–"Ŭ"ÅÂ"ÅØ"Åî"Æ"Æ "Æ6"ÆL"Æb"Æx"ÆŽ"Ƥ"ƺ"ÆÐ"Ææ"Æü"Ç"Ç("Ç>"ÇT"Çj"Ç€"Ç–"Ǭ"ÇÂ"ÇØ"Çî"È"È"È0"ÈL"Èb"Èx"È”"Ȫ"ÈÀ"ÈÖ"Èì"É"É"É4"ÉJ"É`"Év"ÉŒ"ɨ"ɾ"ÉÚ"Éð"Ê"Ê"Ê2"ÊH"Ê^"Êt"ÊŠ"Ê "ʶ"ÊÌ"Êâ"Êø"Ë"Ë$"Ë:"ËP"Ëf"Ë|"Ë’"˨"˾"ËÚ"Ëð"Ì "Ì""Ì8"ÌT"Ìj"Ì€"Ì–"̬"ÌÂ"ÌØ"Ìî"Í"Í"Í0"ÍF"Íb"Íx"ÍŽ"ͤ"ͺ"ÍÐ"Íæ"Íü"Î"Î("ÎD"ÎZ"Îp"Ά"Μ"β"ÎÈ"ÎÞ"Îô"Ï"Ï&"Ï<"ÏX"Ïn"Ï„"Ïš"ϰ"ÏÆ"ÏÜ"Ïò"Ð"Ð"Ð:"ÐP"Ðf"Ђ"И"д"ÐÊ"Ðà"Ðö"Ñ "Ñ""Ñ>"ÑT"Ñj"ц"Ñ¢"Ѹ"ÑÎ"Ñð"Ò"Ò""Ò8"ÒN"Òd"Ò€"Ò–"Ò²"ÒÈ"Òä"Òú"Ó"Ó&"ÓB"ÓX"Ón"ÓŠ"Ó¦"Ó¼"ÓÒ"Óè"Óþ"Ô"Ô*"Ô@"ÔV"Ôl"Ô‚"Ô˜"Ô´"ÔÊ"Ôà"Ôö"Õ "Õ""Õ8"ÕN"Õd"Õz"Õ"Õ¦"Õ¼"ÕÒ"Õè"Õþ"Ö"Ö0"ÖL"Öb"Öx"ÖŽ"Ö¤"Öº"ÖÐ"Öæ"Öü"×"×("×>"×T"×j"×€"×–"ײ"×È"×ä"×ú"Ø"Ø&"Ø<"ØR"Øh"Ø~"Ø”"ت"ØÀ"ØÖ"Øì"Ù"Ù"Ù."ÙD"ÙZ"Ùp"Ù†"Ùœ"Ù²"ÙÈ"Ùä"Ùú"Ú"Ú&"Ú<"ÚR"Úh"Ú~"Ú”"Úª"ÚÀ"ÚÖ"Úì"Û"Û"Û."ÛD"Û`"Ûv"ÛŒ"Û¢"Û¸"ÛÎ"Ûä"Ûú"Ü"Ü&"Ü<"ÜR"Üh"Ü~"Ü”"ܪ"ÜÀ"ÜÖ"Üì"Ý"Ý"Ý."ÝD"ÝZ"Ýp"݆"Ýœ"ݲ"ÝÈ"ÝÞ"Ýô"Þ "Þ "Þ6"ÞL"Þb"Þx"ÞŽ"Þ¤"Þº"ÞÐ"Þæ"Þü"ß"ß("ß>"ßT"ßj"߀"ß–"߬"ßÂ"ߨ"ßî"à"à"à0"àF"à\"àr"àˆ"àž"à´"àÊ"àæ"àü"á"á("á>"áT"áj"á€"á–"á¬"áÂ"áØ"áî"â"â"â0"âF"â\"âr"âˆ"âž"â´"âÊ"âà"âö"ã "ã""ã8"ãN"ãd"ãz"ã"ã¦"ãÂ"ãØ"ãî"ä"ä"ä0"äF"ä\"är"äˆ"äž"ä´"äÊ"äà"äö"å "å""å8"åN"åd"åz"å"å¦"å¼"åÒ"åè"åþ"æ"æ*"æ@"æV"æl"æ‚"æ˜"æ®"æÄ"æÚ"æð"ç"ç"ç2"çH"ç^"çz"ç"ç¦"ç¼"çØ"çî"è"è"è0"èF"è\"èr"èˆ"èž"è´"èÊ"èà"èö"é "é""é8"éN"éd"éz"é"é¦"é¼"éÒ"éî"ê"ê"ê0"êF"ê\"êr"êˆ"êž"ê´"êÊ"êà"êö"ë "ë""ë8"ëN"ëd"ëz"ë"ë¦"ë¼"ëÒ"ëè"ëþ"ì"ì*"ì@"ìV"ìl"ì‚"ì˜"ì®"ìÄ"ìÚ"ìð"í"í"í2"íH"í^"ít"íŠ"í "í¶"íÌ"íâ"íø"î"î$"î:"îP"îf"î|"î’"î¨"î¾"îÔ"îê"ï"ï"ï,"ïB"ïX"ïn"ï„"ïš"ï°"ïÆ"ïÜ"ïò"ð"ð$"ð@"ðV"ðl"ð‚"ð˜"ð®"ðÊ"ðà"ðö"ñ "ñ""ñ8"ñN"ñd"ñz"ñ–"ñ¬"ñÂ"ñØ"ñî"ò"ò"ò0"òL"òb"òx"òŽ"ò¤"òº"òÐ"òæ"ó"ó"ó."óD"óZ"óv"óŒ"ó¢"ó¾"óÔ"óê"ô"ô"ô2"ôH"ô^"ôt"ôŠ"ô¦"ô¼"ôÒ"ôî"õ"õ"õ0"õF"õ\"õr"õˆ"õž"õ´"õÊ"õà"õö"ö "ö""ö8"öN"öd"öz"ö"ö¦"öÂ"öØ"öî"÷"÷"÷0"÷F"÷b"÷x"÷Ž"÷¤"÷À"÷Ö"÷ì"ø"ø"ø."øD"ø`"øv"øŒ"ø¢"ø¸"øÎ"øä"øú"ù"ù&"ù<"ùR"ùn"ù„"ùš"ù°"ùÆ"ùÜ"ùò"ú"ú"ú4"úJ"úf"ú‚"ú˜"ú®"úÄ"úÚ"úð"û"û"û2"ûH"û^"ût"ûŠ"û "û¶"ûÌ"ûâ"ûø"ü"ü$"ü:"üP"üf"ü‚"ü˜"ü®"üÄ"üÚ"üð"ý"ý"ý2"ýH"ý^"ýt"ýŠ"ý "ý¶"ýÌ"ýâ"ýø"þ"þ$"þ:"þP"þf"þ|"þ’"þ¨"þ¾"þÔ"þê"ÿ"ÿ"ÿ,"ÿB"ÿX"ÿn"ÿ„"ÿš"ÿ°"ÿÆ"ÿÜ"ÿò###4#J#`#v#Œ#¢#¸#Î#ä#ú##,#B#X#n#„#š#°#Æ#Ü#ò###4#J#`#v#Œ#¢#¸#Î#ä#ú##&#<#R#h#~#”#ª#À#Ö#ì###.#D#Z#p#†#¢#¸#Î#ä#ú##,#B#X#n#„#š#°#Æ#Ü#ò###4#J#`#v#’#®#Ä#Ú#ð###2#H#^#t#Š# #¶#Ì#â#ø##$#:#P#f#|#’#¨#¾#Ô#ê# # # ,# B# X# n# „# š# °# Æ# Ü# ò# # # 4# J# `# v# Œ# ¢# ¸# Î# ä# ú# # &# <# R# h# ~# ”# ª# À# Ö# ì# # # .# D# Z# p# †# œ# ²# È# Þ# ô# # # 6# L# b# x# Ž# ¤# º# Ð# æ# ü##(#>#T#j#€#–#¬#Â#Ø#î###0#F#\#r#ˆ#ž#´#Ê#à#ö# #"#8#N#d#z##¦#¼#Ò#è#þ##*#@#V#l#‚#˜#®#Ä#Ú#ð###2#H#^#t#Š# #¶#Ì#â#ø##$#:#P#f#|#’#¨#¾#Ô#ê###,#B#X#n#„#š#°#Æ#Ü#ø##$#:#P#f#|#’#®#Ä#Ú#ð###2#H#^#t#Š# #¶#Ì#è###0#L#b#x#Ž#ª#À#Ö#ì###.#D#Z#p#†#œ#²#È#Þ#ô# # #<#R#h#~#”#ª#À#Ö#ì###.#D#Z#p#†#œ#²#È#Þ#ô# # #6#L#b#x#Ž#¤#º#Ð#æ#ü##(#>#T#j#€#–#¬#Â#Ø#î###0#F#\#r#ˆ#ž#´#Ê#à#ö# #"#8#N#d#z##¦#¼#Ò#è#þ##*#@#V#l#‚#˜#®#Ä#Ú#ð# # # 2# H# ^# t# Š#  # ¶# Ì# â# ø#!#!$#!:#!P#!f#!|#!’#!¨#!¾#!Ô#!ê#"#"#",#"B#"X#"n#"„#"š#"°#"Æ#"Ü#"ò######4##J##`##v##Œ##¢##¸##Î##ä#$#$#$,#$B#$^#$t#$Š#$ #$¶#$Ì#$â#$ø#%#%$#%:#%P#%f#%|#%’#%¨#%¾#%Ô#%ê#&#&#&,#&B#&X#&n#&„#&š#&°#&Æ#&Ü#&ò#'#'$#':#'P#'f#'|#'’#'¨#'¾#'Ô#'ê#(#(#(,#(H#(^#(t#(Š#( #(¶#(Ì#(â#(ø#)#)$#):#)P#)f#)|#)’#)¨#)¾#)Ô#)ê#*#*#*,#*B#*X#*n#*„#*š#*°#*Æ#*Ü#*ò#+#+#+4#+J#+`#+v#+Œ#+¨#+Ä#+Ú#+ð#,#,#,2#,N#,j#,€#,–#,¬#,Â#,Ø#,î#-#-#-0#-F#-b#-x#-Ž#-¤#-º#-Ð#-ì#.#.#.4#.J#.`#.v#.’#.¨#.¾#.Ô#.ê#/#/#/,#/H#/^#/t#/Š#/ #/¶#/Ì#/â#/þ#0#00#0F#0\#0r#0Ž#0¤#0º#0Ð#0æ#0ü#1#1(#1>#1T#1j#1€#1œ#1²#1È#1Þ#1ô#2 #2 #26#2L#2b#2x#2Ž#2¤#2º#2Ð#2æ#2ü#3#3(#3>#3T#3j#3€#3–#3¬#3Â#3Ø#3î#4#4#40#4F#4\#4r#4ˆ#4ž#4´#4Ê#4à#4ö#5 #5"#58#5N#5d#5z#5#5¦#5¼#5Ò#5è#5þ#6#6*#6@#6V#6l#6‚#6˜#6®#6Ä#6Ú#6ð#7#7#72#7H#7^#7t#7Š#7 #7¶#7Ì#7â#7ø#8#8$#8:#8P#8f#8|#8’#8¨#8¾#8Ô#8ê#9#9#9,#9B#9X#9n#9„#9š#9°#9Æ#9Ü#9ò#:#:#:4#:J#:`#:v#:Œ#:¢#:¸#:Î#:ä#:ú#;#;&#;B#;X#;n#;„#;š#;°#;Æ#;Ü#;ò#<#<#<4##>$#>:#>P#>f#>|#>’#>¨#>¾#>Ô#>ê#?#?#?,#?B#?X#?n#?„#?š#?°#?Æ#?Ü#?ò#@#@#@4#@J#@`#@v#@Œ#@¢#@¸#@Î#@ä#@ú#A#A&#A<#AR#Ah#A„#Aš#A°#AÆ#AÜ#Aø#B#B0#BL#Bh#B~#Bš#B¶#BÌ#Bâ#Bø#C#C$#C:#CP#Cf#C|#C’#C¨#C¾#CÔ#Cê#D#D#D,#DB#DX#Dn#D„#Dš#D°#DÆ#DÜ#Dò#E#E#E4#EJ#E`#Ev#EŒ#E¢#E¸#EÎ#Eä#Eú#F#F&#F<#FR#Fh#F~#F”#Fª#FÀ#FÖ#Fì#G#G#G.#GD#GZ#Gp#G†#Gœ#G²#GÈ#GÞ#Gô#H #H #H6#HL#Hb#Hx#HŽ#H¤#Hº#HÐ#Hæ#Hü#I#I(#ID#IZ#Ip#I†#Iœ#I²#IÈ#IÞ#Iô#J #J #J6#JL#Jb#Jx#JŽ#Jª#JÀ#JÖ#Jì#K#K#K.#KD#KZ#Kv#KŒ#K¢#K¸#KÎ#Kä#Kú#L#L&#L<#LR#Lh#L~#L”#Lª#LÀ#LÖ#Lì#M#M#M.#MD#MZ#Mp#M†#Mœ#M²#MÈ#MÞ#Mô#N #N #N6#NL#Nb#Nx#NŽ#N¤#Nº#NÐ#Næ#Nü#O#O(#O>#OT#Oj#O€#O–#O¬#OÂ#OØ#Oî#P#P#P0#PF#P\#Pr#Pˆ#Pž#P´#PÊ#Pà#Pö#Q#Q(#Q>#QT#Qj#Q€#Q–#Q¬#QÂ#QØ#Qî#R#R#R6#RL#Rb#Rx#RŽ#R¤#Rº#RÐ#Ræ#Rü#S#S(#S>#ST#Sj#S€#S–#S¬#SÂ#SØ#Sî#T#T#T0#TF#T\#Tr#Tˆ#Tž#T´#TÊ#Tà#Tö#U #U"#U8#UN#Ud#Uz#U#U¦#U¼#UÒ#Uè#Uþ#V#V*#V@#VV#Vl#V‚#V˜#V®#VÄ#VÚ#Vð#W#W#W2#WH#W^#Wt#WŠ#W #W¶#WÌ#Wâ#Wø#X#X$#X:#XP#Xf#X|#X’#X¨#X¾#XÔ#Xê#Y#Y#Y,#YB#YX#Yn#Y„#Yš#Y°#YÆ#Yâ#Yø#Z#Z$#Z:#ZP#Zf#Z|#Z’#Z¨#Z¾#ZÔ#Zê#[#[#[,#[H#[^#[t#[Š#[ #[¶#[Ì#[â#[ø#\#\$#\@#\V#\l#\‚#\˜#\®#\Ä#\Ú#\ð#]#]#]2#]H#]^#]t#]Š#] #]¶#]Ì#]â#]ø#^#^$#^:#^P#^f#^|#^’#^¨#^¾#^Ô#^ê#_#_#_,#_B#_X#_n#_„#_š#_°#_Æ#_Ü#_ò#`#`#`4#`J#``#`v#`Œ#`¢#`¸#`Î#`ä#`ú#a#a&#a<#aR#ah#a~#a”#aª#aÀ#aÖ#aì#b#b#b.#bD#bZ#bp#b†#bœ#b²#bÈ#bÞ#bô#c#c&#c<#cR#ch#c~#c”#cª#cÀ#cÖ#cì#d#d#d.#dD#dZ#dp#d†#dœ#d²#dÈ#dÞ#dô#e #e #e<#eR#eh#e~#e”#eª#eÆ#eÜ#eò#f#f#f:#fP#ff#f|#f’#f¨#f¾#fÔ#fê#g#g#g,#gB#gX#gn#g„#gš#g°#gÆ#gÜ#gò#h#h#h4#hJ#h`#hv#hŒ#h¢#h¸#hÎ#hä#hú#i#i&#i<#iR#ih#i~#i”#iª#iÀ#iÖ#iì#j#j#j.#jD#jZ#jp#j†#jœ#j²#jÈ#jÞ#jô#k #k #k6#kL#kb#kx#kŽ#k¤#kº#kÐ#kæ#kü#l#l(#l>#lT#lj#l€#l–#l¬#lÂ#lØ#lî#m#m#m0#mF#m\#mr#mˆ#mž#m´#mÊ#mæ#mü#n#n(#n>#nT#nj#n€#n–#n¬#nÂ#nØ#nî#o#o#o0#oF#o\#or#oˆ#ož#o´#oÊ#oà#oö#p #p"#p8#pN#pd#pz#p#p¦#p¼#pÒ#pè#pþ#q#q*#q@#qV#ql#q‚#q˜#q®#qÄ#qÚ#qð#r#r#r2#rH#r^#rt#rŠ#r #r¶#rÌ#râ#rø#s#s$#s:#sP#sf#s|#s’#s¨#s¾#sÔ#sê#t#t#t2#tH#t^#tt#tŠ#t #t¶#tÌ#tâ#tø#u#u$#u:#uP#uf#u|#u’#u¨#uÄ#uÚ#uð#v#v#v2#vH#v^#vt#vŠ#v #v¶#vÌ#vâ#vþ#w#w*#w@#wV#wl#w‚#w˜#w®#wÄ#wÚ#wð#x#x#x2#xH#x^#xt#xŠ#x #x¶#xÌ#xâ#xø#y#y$#y:#yP#yf#y|#y’#y¨#y¾#yÔ#yð#z#z#z2#zH#z^#zt#zŠ#z #z¶#zÌ#zè#zþ#{#{*#{@#{V#{l#{‚#{˜#{®#{Ä#{Ú#{ð#|#|#|2#|H#|^#|t#|Š#| #|¶#|Ì#|â#|ø#}#}$#}@#}V#}l#}‚#}˜#}®#}Ä#}Ú#}ð#~#~#~2#~H#~^#~t#~Š#~ #~¼#~Ò#~è#~þ##0#F#\#r#ˆ#ž#´#Ê#à#ö#€ #€"#€8#€N#€d#€z#€#€¦#€¼#€Ò#€è#€þ##*#@#V#l#‚#˜#®#Ä#Ú#ð#‚#‚#‚2#‚H#‚^#‚t#‚Š#‚ #‚¼#‚Ò#‚è#‚þ#ƒ#ƒ*#ƒF#ƒ\#ƒr#ƒˆ#ƒž#ƒº#ƒÖ#ƒì#„#„#„4#„J#„`#„v#„Œ#„¢#„¸#„Ô#„ê#…#…#…2#…H#…^#…t#…Š#… #…¶#…Ì#…â#…ø#†#†$#†@#†V#†l#†‚#†˜#†®#†Ä#†à#†ö#‡ #‡"#‡8#‡N#‡d#‡z#‡#‡¬#‡Â#‡Ø#‡î#ˆ#ˆ#ˆ0#ˆL#ˆb#ˆx#ˆŽ#ˆ¤#ˆº#ˆÖ#ˆì#‰#‰#‰.#‰D#‰Z#‰p#‰†#‰œ#‰²#‰È#‰Þ#‰ú#Š#Š&#Š<#ŠR#Šh#Š~#Šš#ж#ŠÌ#Šâ#Šø#‹#‹$#‹:#‹P#‹f#‹|#‹’#‹¨#‹¾#‹Ô#‹ê#Œ#Œ#Œ,#ŒB#ŒX#Œn#Œ„#Œš#Œ°#ŒÆ#Œâ#Œø##$#:#P#f#|#˜#®#Ä#Ú#ð#Ž #Ž"#Ž8#ŽN#Žd#Ž€#Ž–#ެ#ŽÈ#Žä#Žú##&#<#R#n#„# #¶#Ì#â#ø##*#@#V#l#‚#ž#´#Ê#à#ö#‘ #‘"#‘8#‘N#‘d#‘z#‘#‘¦#‘Â#‘Ø#‘î#’#’#’0#’F#’\#’r#’ˆ#’ž#’º#’Ð#’æ#’ü#“#“(#“>#“T#“j#“€#“–#“²#“È#“Þ#“ú#”#”&#”<#”R#”h#”~#””#”ª#”À#”Ö#”ì#•#•#•.#•D#•Z#•p#•†#•œ#•²#•È#•Þ#•ô#– #– #–6#–R#–n#–„#–š#–°#–Æ#–Ü#–ò#—#—#—4#—J#—`#—v#—Œ#—¢#—¸#—Î#—ä#—ú#˜#˜&#˜<#˜R#˜h#˜~#˜”#˜ª#˜À#˜Ö#˜ì#™#™#™.#™D#™Z#™p#™†#™œ#™²#™È#™Þ#™ô#š #š #š6#šL#šb#šx#šŽ#š¤#šº#šÐ#šæ#šü#›#›(#›>#›T#›j#›€#›–#›¬#›Â#›Ø#›î#œ#œ#œ0#œF#œ\#œr#œˆ#œž#œ´#œÊ#œà#œö# #"#>#T#j#€#–#¬#Â#Ø#ô#ž #ž #ž6#žL#žb#žx#žŽ#ž¤#žº#žÐ#žæ#žü#Ÿ#Ÿ(#Ÿ>#ŸT#Ÿj#Ÿ†#Ÿœ#Ÿ²#ŸÈ#ŸÞ#Ÿô#  #  # 6# R# h# ~# ”# ª# À# Ö# ì#¡#¡#¡.#¡D#¡Z#¡p#¡†#¡œ#¡¸#¡Ô#¡ê#¢#¢#¢,#¢B#¢^#¢t#¢Š#¢ #¢¶#¢Ì#¢â#¢ø#£#£$#£:#£P#£f#£|#£’#£¨#£Ä#£Ú#£ö#¤ #¤"#¤8#¤N#¤d#¤z#¤#¤¦#¤¼#¤Ø#¤î#¥#¥#¥0#¥F#¥b#¥x#¥Ž#¥¤#¥º#¥Ð#¥æ#¥ü#¦#¦(#¦>#¦T#¦j#¦€#¦–#¦¬#¦Â#¦Ø#¦î#§#§#§0#§F#§\#§r#§ˆ#§ž#§´#§Ê#§à#§ö#¨ #¨"#¨8#¨N#¨d#¨€#¨–#¨¬#¨È#¨ä#¨ú#©#©&#©<#©R#©h#©~#©”#©ª#©À#©Ö#©ì#ª#ª#ª.#ªD#ªZ#ªp#ª†#ªœ#ª²#ªÈ#ªÞ#ªô#« #« #«6#«L#«b#«x#«Ž#«¤#«º#«Ð#«æ#«ü#¬#¬(#¬>#¬T#¬j#¬€#¬–#¬¬#¬Â#¬Ø#¬î#­#­#­0#­F#­\#­r#­ˆ#­ž#­º#­Ð#­æ#­ü#®#®(#®>#®T#®j#®€#®–#®¬#®Â#®Ø#®î#¯#¯#¯0#¯F#¯\#¯r#¯ˆ#¯ž#¯´#¯Ê#¯à#¯ü#°#°(#°>#°T#°j#°€#°–#°¬#°Â#°Ø#°î#±#±#±0#±F#±\#±r#±ˆ#±ž#±´#±Ê#±à#±ö#² #²"#²8#²N#²d#²z#²#²¦#²¼#²Ò#²è#²þ#³#³*#³@#³V#³l#³‚#³˜#³®#³Ä#³Ú#³ð#´#´#´2#´H#´^#´t#´Š#´ #´¶#´Ì#´â#´ø#µ#µ$#µ:#µP#µf#µ|#µ’#µ¨#µ¾#µÔ#µê#¶#¶#¶,#¶B#¶X#¶n#¶„#¶š#¶°#¶Æ#¶Ü#¶ò#·#·#·4#·J#·f#·|#·’#·¨#·¾#·Ô#·ê#¸#¸#¸,#¸B#¸X#¸n#¸„#¸š#¸°#¸Æ#¸Ü#¸ò#¹#¹#¹:#¹P#¹f#¹|#¹’#¹¨#¹¾#¹Ô#¹ê#º#º#º,#ºB#ºX#ºn#º„#ºš#º°#ºÆ#ºÜ#ºò#»#»#»4#»J#»`#»v#»Œ#»¢#»¸#»Î#»ä#»ú#¼#¼&#¼<#¼R#¼h#¼~#¼”#¼ª#¼Æ#¼Ü#¼ò#½#½#½4#½J#½`#½v#½Œ#½¢#½¸#½Î#½ê#¾#¾#¾,#¾B#¾X#¾t#¾#¾¦#¾¼#¾Ò#¾è#¾þ#¿#¿*#¿@#¿V#¿l#¿‚#¿˜#¿®#¿Ä#¿Ú#¿ð#À #À"#À8#ÀN#Àd#Àz#À#À¦#À¼#ÀÒ#Àè#Àþ#Á#Á*#Á@#Á\#Ár#Áˆ#Áž#Á´#ÁÊ#Áæ#Áü#Â#Â.#ÂD#ÂZ#Âp#†#¢#¸#ÂÎ#Âä#Âú#Ã#Ã&#Ã<#ÃR#Ãh#Ã~#Ú#ð#ÃÆ#ÃÜ#Ãò#Ä#Ä#Ä4#ÄJ#Ä`#Äv#ÄŒ#Ĩ#ľ#ÄÔ#Äê#Å#Å#Å2#ÅH#Å^#Åt#ÅŠ#Å #Ŷ#ÅÒ#Åè#Åþ#Æ#Æ0#ÆF#Æ\#Ær#ƈ#Ƥ#ƺ#ÆÖ#Æì#Ç#Ç#Ç.#ÇD#ÇZ#Çp#dž#Çœ#Dz#ÇÈ#Çä#Çú#È#È&#È<#ÈR#Èn#È„#Èš#Ȱ#ÈÆ#ÈÜ#Èò#É#É#É4#ÉP#Éf#É|#É’#É®#ÉÄ#ÉÚ#Éð#Ê#Ê#Ê2#ÊH#Ê^#Êt#ÊŠ#Ê #ʶ#ÊÌ#Êè#Êþ#Ë#Ë*#Ë@#ËV#Ël#Ë‚#˘#Ë®#ËÄ#ËÚ#Ëö#Ì #Ì(#Ì>#ÌT#Ìj#Ì€#Ì–#̬#ÌÂ#ÌÞ#Ìô#Í #Í #Í<#ÍR#Íh#Í~#Í”#ͪ#ÍÀ#ÍÖ#Íì#Î#Î#Î4#ÎJ#Î`#Îv#ÎŒ#΢#θ#ÎÎ#Îä#Îú#Ï#Ï,#ÏB#Ï^#Ït#ÏŠ#Ï #϶#ÏÒ#Ïè#Ïþ#Ð#Ð0#ÐF#Ð\#Ðr#Ј#О#д#ÐÐ#Ðæ#Ðü#Ñ#Ñ(#Ñ>#ÑT#Ñj#Ñ€#Ñ–#Ѭ#ÑÂ#ÑØ#Ñî#Ò#Ò#Ò0#ÒF#Ò\#Òx#ÒŽ#Ò¤#Òº#ÒÐ#Òæ#Òü#Ó#Ó(#Ó>#ÓT#Ój#Ó€#Ó–#Ó¬#ÓÂ#ÓØ#Óô#Ô #Ô #Ô6#ÔL#Ôb#Ôx#ÔŽ#Ô¤#Ôº#ÔÐ#Ôæ#Ôü#Õ#Õ(#Õ>#ÕT#Õj#Õ€#Õ–#Õ¬#ÕÂ#ÕØ#Õî#Ö#Ö#Ö0#ÖF#Ö\#Ör#Öˆ#Öž#Ö´#ÖÊ#Öà#Öö#× #×"#×8#×N#×d#×z#×#צ#×¼#×Ò#×è#×þ#Ø#Ø0#ØF#Øb#Øx#ØŽ#ؤ#غ#ØÐ#Øæ#Øü#Ù#Ù(#Ù>#ÙZ#Ùp#Ù†#Ùœ#Ù²#ÙÈ#ÙÞ#Ùô#Ú #Ú #Ú6#ÚL#Úb#Úx#ÚŽ#Ú¤#Úº#ÚÐ#Úæ#Úü#Û#Û(#Û>#ÛT#Ûj#Û€#Û–#Û¬#ÛÂ#ÛØ#Ûî#Ü#Ü#Ü0#ÜF#Üh#Ü~#Ü”#ܪ#ÜÀ#ÜÖ#Üì#Ý#Ý#Ý.#ÝD#ÝZ#Ýp#݆#Ýœ#ݲ#ÝÈ#ÝÞ#Ýô#Þ #Þ #Þ6#ÞL#Þb#Þx#Þ”#Þª#ÞÀ#ÞÖ#Þì#ß#ß#ß.#ßD#ßZ#ßp#߆#ßœ#ß²#ßÈ#ßÞ#ßô#à #à #à6#àL#àb#àx#àŽ#à¤#àº#àÐ#àæ#àü#á#á(#á>#áT#áj#á€#á–#á¬#áÂ#áØ#áî#â#â#â0#âF#â\#âr#âˆ#âž#â´#âÊ#âà#âö#ã #ã"#ã8#ãN#ãd#ãz#ã#ã¦#ã¼#ãÒ#ãè#ãþ#ä#ä*#äF#ä\#är#äˆ#äž#ä´#äÊ#äà#äö#å #å"#å8#åN#åd#åz#å#å¦#å¼#åÒ#åî#æ#æ#æ0#æF#æ\#ær#æˆ#æž#æ´#æÊ#æà#æö#ç #ç"#ç8#çN#çd#çz#ç#ç¦#çÂ#çØ#çî#è #è #è6#èL#èh#è„#èš#è°#èÆ#èÜ#èò#é#é#é4#éJ#é`#év#éŒ#é¢#é¸#éÎ#éä#éú#ê#ê&#ê<#êR#êh#ê~#êš#ê°#êÆ#êÜ#êò#ë#ë#ë4#ëJ#ë`#ëv#ëŒ#ë¢#ë¸#ëÎ#ëä#ëú#ì#ì&#ì<#ìR#ìh#ì~#ì”#ìª#ìÀ#ìÖ#ìì#í#í#í.#íD#íZ#íp#í†#íœ#í²#íÈ#íÞ#íô#î #î #î6#îL#îb#î~#î”#îª#îÀ#îÖ#îì#ï#ï#ï.#ïD#ïZ#ïp#ï†#ïœ#ï¸#ïÎ#ïä#ïú#ð#ð&#ð<#ðR#ðh#ð~#ð”#ðª#ðÀ#ðÖ#ðì#ñ#ñ#ñ.#ñD#ñZ#ñp#ñ†#ñœ#ñ²#ñÈ#ñÞ#ñô#ò #ò #ò6#òL#òb#òx#òŽ#ò¤#òº#òÐ#òæ#ó#ó#ó.#óD#óZ#óp#ó†#óœ#ó²#óÈ#óÞ#óô#ô #ô #ô6#ôL#ôb#ôx#ôŽ#ô¤#ôº#ôÐ#ôæ#ôü#õ#õ(#õ>#õT#õj#õ€#õ–#õ¬#õÂ#õØ#õî#ö#ö#ö0#öF#ö\#ör#öˆ#öž#ö´#öÊ#öà#öö#÷ #÷(#÷>#÷T#÷j#÷€#÷–#÷¬#÷Â#÷Ø#÷î#ø#ø #ø6#øL#øb#øx#øŽ#ø¤#øº#øÐ#øæ#øü#ù#ù(#ù>#ùT#ùj#ù€#ù–#ù¬#ùÂ#ùØ#ùî#ú#ú#ú0#úF#ú\#úr#úˆ#úž#ú´#úÊ#úà#úö#û #û"#û>#ûT#ûj#û€#û–#û¬#ûÂ#ûØ#ûî#ü#ü#ü0#üF#ü\#ür#üˆ#üž#üº#üÐ#üæ#üü#ý#ý(#ý>#ýT#ýj#ý€#ý–#ý¬#ýÂ#ýØ#ýî#þ #þ #þ6#þL#þb#þx#þŽ#þ¤#þº#þÐ#þæ#þü#ÿ#ÿ(#ÿ>#ÿT#ÿj#ÿ€#ÿ–#ÿ¬#ÿÂ#ÿØ#ÿî$$$0$F$\$x$”$ª$À$Ö$ì$$$.$D$Z$p$†$œ$²$È$Þ$ô$ $ $6$L$b$x$Ž$¤$º$Ð$æ$ü$$.$D$Z$p$†$œ$²$È$Þ$ô$ $ $6$L$b$x$”$ª$À$Ö$ì$$$.$D$Z$p$†$œ$²$È$Þ$ô$ $ $6$R$h$~$”$ª$À$Ö$ì$$$.$D$Z$p$†$œ$²$È$ä$ú$$&$<$R$h$~$”$ª$À$Ö$ì$ $ $ .$ D$ Z$ p$ †$ œ$ ²$ È$ Þ$ ô$ $ $ 6$ L$ b$ x$ Ž$ ¤$ º$ Ð$ æ$ $ $ .$ D$ Z$ p$ †$ œ$ ²$ È$ Þ$ ô$ $ $ 6$ L$ b$ x$ Ž$ ¤$ À$ Ö$ ì$ $ $ .$ D$ Z$ p$ †$ œ$ ²$ È$ Þ$ ô$ $ $6$L$b$x$Ž$¤$º$Ð$æ$ü$$($D$Z$p$†$œ$²$È$Þ$ô$ $ $6$R$h$~$”$ª$À$Ö$ì$$$4$J$`$v$Œ$¢$¸$Î$ä$ú$$&$<$R$h$~$”$°$Æ$Ü$ò$$$4$J$`$v$Œ$¢$¸$Î$ä$ú$$&$<$R$h$~$”$ª$À$Ö$ì$$$4$J$`$v$Œ$¢$¸$Î$ä$ú$$&$B$X$n$„$š$°$Æ$â$ø$$$$:$V$r$ˆ$ž$´$Ê$à$ö$ $"$>$T$j$€$œ$²$Î$ä$ú$$&$<$R$h$~$š$°$Æ$Ü$ò$$$4$J$`$v$Œ$¢$¸$Î$ä$ú$$&$<$R$h$~$”$ª$À$Ö$ì$$$.$D$Z$v$Œ$¢$¸$Î$ä$ú$$&$<$R$h$~$š$°$Æ$Ü$ò$$$4$J$`$v$Œ$¢$¸$Î$ê$$$2$H$^$t$Š$ $¶$Ì$â$ø$ $ $$ :$ P$ f$ |$ ’$ ¨$ ¾$ Ô$ ê$!$!$!2$!H$!^$!t$!Š$! $!¼$!Ò$!è$!þ$"$"*$"@$"V$"l$"‚$"˜$"®$"Ä$"Ú$"ð$#$#$#2$#H$#^$#t$#Š$# $#¶$#Ì$#â$#ø$$$$$$$:$$P$$f$$|$$’$$¨$$¾$$Ô$$ê$%$%$%,$%B$%X$%t$%Š$% $%¶$%Ì$%â$%ø$&$&$$&:$&P$&f$&|$&’$&¨$&¾$&Ô$&ê$'$'$',$'B$'X$'n$'„$'š$'°$'Æ$'Ü$'ò$($($(4$(P$(f$(|$(’$(¨$(¾$(Ú$(ð$)$)$)8$)N$)d$)z$)$)¦$)¼$)Ò$)è$)þ$*$**$*@$*V$*l$*‚$*˜$*®$*Ä$*Ú$*ð$+$+$+2$+H$+^$+t$+Š$+ $+¶$+Ì$+â$+ø$,$,$$,:$,P$,f$,|$,’$,¨$,¾$,Ô$,ð$-$-$-2$-H$-^$-t$-Š$- $-¶$-Ì$-â$-ø$.$.$$.@$.V$.l$.‚$.˜$.®$.Ä$.Ú$.ð$/$/$/2$/H$/^$/t$/Š$/ $/¶$/Ì$/â$/þ$0$0*$0@$0V$0r$0ˆ$0¤$0º$0Ð$0æ$0ü$1$1($1>$1T$1j$1€$1–$1¬$1Â$1Ø$1î$2$2$20$2F$2\$2r$2ˆ$2ž$2´$2Ê$2à$2ö$3 $3"$38$3N$3d$3z$3$3¦$3¼$3Ò$3è$3þ$4$4*$4F$4\$4r$4ˆ$4ž$4´$4Ê$4à$4ö$5 $5"$58$5N$5j$5†$5¢$5¸$5Î$5ä$5ú$6$6&$6B$6X$6n$6„$6š$6°$6Ì$6â$6ø$7$7$$7:$7P$7f$7|$7’$7¨$7¾$7Ô$7ê$8$8$8,$8B$8X$8n$8„$8š$8°$8Æ$8Ü$8ò$9$9$94$9J$9`$9v$9Œ$9¢$9¸$9Î$9ä$9ú$:$:&$:<$:R$:n$:„$:š$:¶$:Ì$:â$:ø$;$;$$;:$;P$;f$;|$;’$;¨$;¾$;Ô$;ê$<$<$<,$$>$>2$>H$>^$>t$>Š$> $>¶$>Ì$>â$>ø$?$?$$?:$?P$?f$?|$?’$?¨$?¾$?Ô$?ê$@$@$@,$@B$@X$@n$@„$@š$@¶$@Ì$@è$@þ$A$A*$A@$AV$Al$A‚$A˜$A®$AÄ$AÚ$Að$B $B"$B8$BN$Bd$Bz$B$B¦$B¼$BÒ$Bè$Bþ$C$C*$C@$CV$Cl$C‚$C˜$C®$CÄ$Cà$Cö$D $D"$D8$DN$Dd$Dz$D$D¦$D¼$DÒ$Dè$Dþ$E$E*$E@$EV$El$Eˆ$Ež$E´$EÊ$Eà$Eö$F $F($F>$FT$Fj$F€$Fœ$F²$FÈ$FÞ$Fô$G $G $G6$GL$Gb$Gx$GŽ$G¤$Gº$GÐ$Gæ$Gü$H$H($H>$HT$Hj$H€$H–$H¬$HÂ$HØ$Hî$I$I$I0$IF$I\$Ir$Iˆ$Iž$I´$IÊ$Ià$Iö$J $J"$J8$JN$Jd$Jz$J$J¦$J¼$JÒ$Jè$K$K$K0$KF$K\$Kr$Kˆ$Kž$K´$KÊ$Kà$Kö$L $L"$L8$LN$Ld$Lz$L$L¦$L¼$LÒ$Lè$Lþ$M$M*$M@$MV$Ml$M‚$M˜$M®$MÄ$MÚ$Mð$N$N$N2$NH$N^$Nt$NŠ$N $N¶$NÌ$Nâ$Nø$O$O$$O:$OP$Of$O|$O’$O¨$O¾$OÔ$Oê$P$P$P,$PB$PX$Pn$P„$Pš$P¶$PÒ$Pî$Q $Q&$QB$Q^$Qz$Q–$Q²$QÎ$Qê$R$R"$R>$RZ$Rv$R’$R®$RÊ$Ræ$S$S$S:$SV$Sr$SŽ$S¤$SÀ$SÜ$Sø$T$T0$TL$Th$T„$T $T¼$TØ$Tô$U$U,$UH$Ud$U€$Uœ$U¸$UÔ$Uð$V $V($VD$V`$V|$V˜$V®$VÊ$Væ$W$W$W:$WV$Wr$WŽ$Wª$WÆ$Wâ$Wþ$X$X6$XR$Xn$XŠ$X¦$XÂ$XÞ$Xú$Y$Y2$YN$Yj$Y†$Y¢$Y¸$YÔ$Yð$Z $Z($ZD$Z`$Z|$Z˜$Z´$ZÐ$Zì$[$[$$[@$[\$[x$[”$[°$[Ì$[è$\$\ $\<$\X$\t$\$\¬$\Â$\Þ$\ú$]$]2$]N$]j$]†$]¢$]¾$]Ú$]ö$^$^.$^J$^f$^‚$^ž$^º$^Ö$^ò$_$_*$_F$_b$_~$_š$_¶$_Ì$_è$`$` $`<$`X$`t$`$`¬$`È$`ä$a$a$a8$aT$ap$aŒ$a¨$aÄ$aà$aü$b$b4$bP$bl$bˆ$b¤$bÀ$bÖ$bò$c$c*$cF$cb$c~$cš$c¶$cÒ$cî$d $d&$dB$d^$dz$d–$d²$dÎ$dê$e$e"$e>$eZ$ev$e’$e®$eÊ$eà$eü$f$f4$fP$fl$fˆ$f¤$fÀ$fÜ$fø$g$g0$gL$gh$g„$g $g¼$gØ$gô$h$h,$hH$hd$h€$hœ$h¸$hÔ$hê$i$i"$i>$iZ$iv$i’$i®$iÊ$iæ$j$j$j:$jV$jr$jŽ$jª$jÆ$jâ$jþ$k$k6$kR$kn$kŠ$k¦$kÂ$kÞ$kô$l$l,$lH$ld$l€$lœ$l¸$lÔ$lð$m $m($mD$m`$m|$m˜$m´$mÐ$mì$n$n$$n@$n\$nx$n”$n°$nÌ$nè$nþ$o$o6$oR$on$oŠ$o¦$oÂ$oÞ$oú$p$p2$pN$pj$p†$p¢$p¾$pÚ$pö$q$q.$qJ$qf$q‚$qž$qº$qÖ$qò$r$r$$r@$r\$rx$r”$r°$rÌ$rè$s$s $s<$sX$st$s$s¬$sÈ$sä$t$t$t8$tT$tp$tŒ$t¨$tÄ$tà$tü$u$u.$uJ$uf$u‚$už$uº$uÖ$uò$v$v*$vF$vb$v~$vš$v¶$vÒ$vî$w $w&$wB$w^$wz$w–$w²$wÎ$wê$x$x$x8$xT$xp$xŒ$x¨$xÄ$xà$xü$y$y4$yP$yl$yˆ$y¤$yÀ$yÜ$yø$z$z0$zL$zh$z„$z $z¼$zØ$zô${${&${B${^${z${–${²${Î${ê$|$|"$|>$|Z$|v$|’$|®$|Ê$|æ$}$}$}:$}V$}r$}Ž$}ª$}Æ$}â$}þ$~$~0$~L$~h$~„$~ $~¼$~Ø$~ô$$,$H$d$€$œ$¸$Ô$ð$€ $€($€D$€`$€|$€˜$€´$€Ð$€ì$$$$:$V$r$Ž$ª$Æ$â$þ$‚$‚6$‚R$‚n$‚Š$‚¦$‚Â$‚Þ$‚ú$ƒ$ƒ2$ƒN$ƒj$ƒ†$ƒ¢$ƒ¾$ƒÚ$ƒö$„$„.$„D$„`$„|$„˜$„´$„Ð$„ì$…$…$$…@$…\$…x$…”$…°$…Ì$…è$†$† $†<$†X$†t$†$†¬$†È$†ä$‡$‡$‡8$‡N$‡j$‡†$‡¢$‡¾$‡Ú$‡ö$ˆ$ˆ.$ˆJ$ˆf$ˆ‚$ˆž$ˆº$ˆÖ$ˆò$‰$‰*$‰F$‰b$‰~$‰š$‰¶$‰Ò$‰î$Š $Š&$ŠB$ŠX$Št$Š$Ь$ŠÈ$Šä$‹$‹$‹8$‹T$‹p$‹Œ$‹¨$‹Ä$‹à$‹ü$Œ$Œ4$ŒP$Œl$Œˆ$Œ¤$ŒÀ$ŒÜ$Œø$$0$L$b$~$š$¶$Ò$î$Ž $Ž&$ŽB$Ž^$Žz$Ž–$޲$ŽÎ$Žê$$"$>$Z$v$’$®$Ê$æ$$$:$V$l$ˆ$¤$À$Ü$ø$‘$‘0$‘L$‘h$‘„$‘ $‘¼$‘Ø$‘ô$’$’,$’H$’d$’€$’œ$’¸$’Ô$’ð$“ $“($“D$“`$“v$“’$“®$“Ê$“æ$”$”$”:$”V$”r$”Ž$”ª$”Æ$”â$”þ$•$•6$•R$•n$•Š$•¦$•Â$•Þ$•ú$–$–2$–N$–j$–€$–œ$–¸$–Ô$–ð$— $—($—D$—`$—|$—˜$—´$—Ð$—ì$˜$˜$$˜@$˜\$˜x$˜”$˜°$˜Ì$˜è$™$™ $™<$™X$™t$™Š$™¦$™Â$™Þ$™ú$š$š2$šN$šj$š†$š¢$š¾$šÚ$šö$›$›.$›J$›f$›‚$›ž$›º$›Ö$›ò$œ$œ*$œF$œb$œ~$œ”$œ°$œÌ$œè$$ $<$X$t$$¬$È$ä$ž$ž$ž8$žT$žp$žŒ$ž¨$žÄ$žà$žü$Ÿ$Ÿ4$ŸP$Ÿl$Ÿˆ$Ÿž$Ÿº$ŸÖ$Ÿò$ $ *$ F$ b$ ~$ š$ ¶$ Ò$ î$¡ $¡&$¡B$¡^$¡z$¡–$¡²$¡Î$¡ê$¢$¢"$¢>$¢Z$¢v$¢’$¢¨$¢Ä$¢à$¢ü$£$£4$£P$£l$£ˆ$£¤$£À$£Ü$£ø$¤$¤0$¤L$¤h$¤„$¤ $¤¼$¤Ø$¤ô$¥$¥,$¥H$¥d$¥€$¥œ$¥²$¥Î$¥ê$¦$¦"$¦>$¦Z$¦v$¦’$¦®$¦Ê$¦æ$§$§$§:$§V$§r$§Ž$§ª$§Æ$§â$§þ$¨$¨6$¨R$¨n$¨Š$¨¦$¨¼$¨Ø$¨ô$©$©,$©H$©d$©€$©œ$©¸$©Ô$©ð$ª $ª($ªD$ª`$ª|$ª˜$ª´$ªÐ$ªì$«$«$$«@$«\$«x$«”$«°$«Æ$«â$«þ$¬$¬6$¬R$¬n$¬Š$¬¦$¬Â$¬Þ$¬ú$­$­2$­N$­j$­†$­¢$­¾$­Ú$­ö$®$®.$®J$®f$®‚$®ž$®º$®Ð$®ì$¯$¯$$¯@$¯\$¯x$¯”$¯°$¯Ì$¯è$°$° $°<$°X$°t$°$°¬$°È$°ä$±$±$±8$±T$±p$±Œ$±¨$±Ä$±Ú$±ö$²$².$²J$²f$²‚$²ž$²º$²Ö$²ò$³$³*$³F$³b$³~$³š$³¶$³Ò$³î$´ $´&$´B$´^$´z$´–$´²$´Î$´ä$µ$µ$µ8$µT$µp$µŒ$µ¨$µÄ$µà$µü$¶$¶4$¶P$¶l$¶ˆ$¶¤$¶À$¶Ü$¶ø$·$·0$·L$·h$·„$· $·¼$·Ø$·î$¸ $¸&$¸B$¸^$¸z$¸–$¸²$¸Î$¸ê$¹$¹"$¹>$¹Z$¹v$¹’$¹®$¹Ê$¹æ$º$º$º:$ºV$ºr$ºŽ$ºª$ºÆ$ºâ$ºø$»$»0$»L$»h$»„$» $»¼$»Ø$»ô$¼$¼,$¼H$¼d$¼€$¼œ$¼¸$¼Ô$¼ð$½ $½($½D$½`$½|$½˜$½´$½Ð$½ì$¾$¾$¾:$¾V$¾r$¾Ž$¾ª$¾Æ$¾â$¾þ$¿$¿6$¿R$¿n$¿Š$¿¦$¿Â$¿Þ$¿ú$À$À2$ÀN$Àj$À†$À¢$À¾$ÀÚ$Àö$Á $Á($ÁD$Á`$Á|$Á˜$Á´$ÁÐ$Áì$Â$Â$$Â@$Â\$Âx$”$°$ÂÌ$Âè$Ã$à $Ã<$ÃX$Ãt$Ã$ì$ÃÈ$Ãä$Ä$Ä$Ä2$ÄN$Äj$Ć$Ä¢$ľ$ÄÚ$Äö$Å$Å.$ÅJ$Åf$Å‚$Åž$ź$ÅÖ$Åò$Æ$Æ*$ÆF$Æb$Æ~$Æš$ƶ$ÆÒ$Æî$Ç $Ç $Ç<$ÇX$Çt$Ç$Ǭ$ÇÈ$Çä$È$È$È8$ÈT$Èp$ÈŒ$Ȩ$ÈÄ$Èà$Èü$É$É4$ÉP$Él$Ɉ$ɤ$ÉÀ$ÉÜ$Éø$Ê$Ê*$ÊF$Êb$Ê~$Êš$ʶ$ÊÒ$Êî$Ë $Ë&$ËB$Ë^$Ëz$Ë–$˲$ËÎ$Ëê$Ì$Ì"$Ì>$ÌZ$Ìv$Ì’$Ì®$ÌÊ$Ìæ$Í$Í$Í4$ÍP$Íl$͈$ͤ$ÍÀ$ÍÜ$Íø$Î$Î0$ÎL$Îh$΄$Π$μ$ÎØ$Îô$Ï$Ï,$ÏH$Ïd$Ï€$Ïœ$ϸ$ÏÔ$Ïð$Ð $Ð($Ð>$ÐZ$Ðv$Ð’$Ю$ÐÊ$Ðæ$Ñ$Ñ$Ñ:$ÑV$Ñr$ÑŽ$Ѫ$ÑÆ$Ñâ$Ñþ$Ò$Ò6$ÒR$Òn$ÒŠ$Ò¦$ÒÂ$ÒÞ$Òú$Ó$Ó2$ÓH$Ód$Ó€$Óœ$Ó¸$ÓÔ$Óð$Ô $Ô($ÔD$Ô`$Ô|$Ô˜$Ô´$ÔÐ$Ôì$Õ$Õ$$Õ@$Õ\$Õx$Õ”$Õ°$ÕÌ$Õè$Ö$Ö $Ö<$ÖR$Ön$ÖŠ$Ö¦$ÖÂ$ÖÞ$Öú$×$×2$×N$×j$׆$×¢$×¾$×Ú$×ö$Ø$Ø.$ØJ$Øf$Ø‚$Øž$غ$ØÖ$Øò$Ù$Ù*$ÙF$Ù\$Ùx$Ù”$Ù°$ÙÌ$Ùè$Ú$Ú $Ú<$ÚX$Út$Ú$Ú¬$ÚÈ$Úä$Û$Û$Û8$ÛT$Ûp$ÛŒ$Û¨$ÛÄ$Ûà$Ûü$Ü$Ü4$ÜP$Üf$Ü‚$Üž$ܺ$ÜÖ$Üò$Ý$Ý*$ÝF$Ýb$Ý~$Ýš$ݶ$ÝÒ$Ýî$Þ $Þ&$ÞB$Þ^$Þz$Þ–$Þ²$ÞÎ$Þê$ß$ß"$ß>$ßZ$ßp$ߌ$ߨ$ßÄ$ßà$ßü$à$à4$àP$àl$àˆ$à¤$àÀ$àÜ$àø$á$á0$áL$áh$á„$á $á¼$áØ$áô$â$â,$âH$âd$âz$â–$â²$âÎ$âê$ã$ã"$ã>$ãZ$ãv$ã’$ã®$ãÊ$ãæ$ä$ä$ä:$äV$är$äŽ$äª$äÆ$äâ$äþ$å$å6$åR$ån$å„$å $å¼$åØ$åô$æ$æ,$æH$æd$æ€$æœ$æ¸$æÔ$æð$ç $ç($çD$ç`$ç|$ç˜$ç´$çÐ$çì$è$è$$è@$è\$èx$èŽ$èª$èÆ$èâ$èþ$é$é6$éR$én$éŠ$é¦$éÂ$éÞ$éú$ê$ê2$êN$êj$ê†$ê¢$ê¾$êÚ$êö$ë$ë.$ëJ$ëf$ë‚$ë˜$ë´$ëÐ$ëì$ì$ì$$ì@$ì\$ìx$ì”$ì°$ìÌ$ìè$í$í $í<$íX$ít$í$í¬$íÈ$íä$î$î$î8$îT$îp$îŒ$î¢$î¾$îÚ$îö$ï$ï.$ïJ$ïf$ï‚$ïž$ïº$ïÖ$ïò$ð$ð*$ðF$ðb$ð~$ðš$ð¶$ðÒ$ðî$ñ $ñ&$ñB$ñ^$ñz$ñ–$ñ¬$ñÈ$ñä$ò$ò$ò8$òT$òp$òŒ$ò¨$òÄ$òà$òü$ó$ó4$óP$ól$óˆ$ó¤$óÀ$óÜ$óø$ô$ô0$ôL$ôh$ô„$ô $ô¶$ôÒ$ôî$õ $õ&$õB$õ^$õz$õ–$õ²$õÎ$õê$ö$ö"$ö>$öZ$öv$ö’$ö®$öÊ$öæ$÷$÷$÷:$÷V$÷r$÷Ž$÷ª$÷À$÷Ü$÷ø$ø$ø0$øL$øh$ø„$ø $ø¼$øØ$øô$ù$ù,$ùH$ùd$ù€$ùœ$ù¸$ùÔ$ùð$ú $ú($úD$ú`$ú|$ú˜$ú´$úÊ$úæ$û$û$û:$ûV$ûr$ûŽ$ûª$ûÆ$ûâ$ûþ$ü$ü6$üR$ün$üŠ$ü¦$üÂ$üÞ$üú$ý$ý2$ýN$ýj$ý†$ý¢$ý¾$ýÔ$ýð$þ $þ($þD$þ`$þ|$þ˜$þ´$þÐ$þì$ÿ$ÿ$$ÿ@$ÿ\$ÿx$ÿ”$ÿ°$ÿÌ$ÿè%% %<%X%t%%¬%È%Þ%ú%%2%N%j%†%¢%¾%Ú%ö%%.%J%f%‚%ž%º%Ö%ò%%*%F%b%~%š%¶%Ò%è%% %<%X%t%%¬%È%ä%%%8%T%p%Œ%¨%Ä%à%ü%%4%P%l%ˆ%¤%À%Ü%ò%%*%F%b%~%š%¶%Ò%î% %&%B%^%z%–%²%Î%ê% % "% >% Z% v% ’% ®% Ê% æ% ü% % 4% P% l% ˆ% ¤% À% Ü% ø% % 0% L% h% „%  % ¼% Ø% ô% % ,% H% d% €% œ% ¸% Ô% ð% % "% >% Z% v% ’% ®% Ê% æ%%%:%V%r%Ž%ª%Æ%â%þ%%6%R%n%Š%¦%Â%Þ%ú%%,%H%d%€%œ%¸%Ô%ð% %(%D%`%|%˜%´%Ð%ì%%$%@%\%x%”%°%Ì%è%%%6%R%n%Š%¦%Â%Þ%ú%%2%N%j%†%¢%¾%Ú%ö%%.%J%f%‚%ž%º%Ö%ò%%$%@%\%x%”%°%Ì%è%% %<%X%t%%¬%È%ä%%%8%T%p%Œ%¨%Ä%à%ü%%.%J%f%‚%ž%º%Ö%ò%%*%F%b%~%š%¶%Ò%î% %&%B%^%z%–%²%Î%ê%%"%8%T%p%Œ%¨%Ä%à%ü%%4%P%l%ˆ%¤%À%Ü%ø%%0%L%h%„% %¼%Ø%ô%%,%B%^%z%–%²%Î%ê% % "% >% Z% v% ’% ®% Ê% æ%!%!%!:%!V%!r%!Ž%!ª%!Æ%!â%!þ%"%"6%"L%"h%"„%" %"¼%"Ø%"ô%#%#,%#H%#d%#€%#œ%#¸%#Ô%#ð%$ %$(%$D%$`%$|%$˜%$´%$Ð%$ì%%%%$%%@%%V%%r%%Ž%%ª%%Æ%%â%%þ%&%&6%&R%&n%&Š%&¦%&Â%&Þ%&ú%'%'2%'N%'j%'†%'¢%'¾%'Ú%'ö%(%(.%(J%(`%(|%(˜%(´%(Ð%(ì%)%)$%)@%)\%)x%)”%)°%)Ì%)è%*%* %*<%*X%*t%*%*¬%*È%*ä%+%+%+8%+T%+j%+†%+¢%+¾%+Ú%+ö%,%,.%,J%,f%,‚%,ž%,º%,Ö%,ò%-%-*%-F%-b%-~%-š%-¶%-Ò%-î%. %.&%.B%.^%.t%.%.¬%.È%.ä%/%/%/8%/T%/p%/Œ%/¨%/Ä%/à%/ü%0%04%0P%0l%0ˆ%0¤%0À%0Ü%0ø%1%10%1L%1h%1~%1š%1¶%1Ò%1î%2 %2&%2B%2^%2z%2–%2²%2Î%2ê%3%3"%3>%3Z%3v%3’%3®%3Ê%3æ%4%4%4:%4V%4r%4ˆ%4¤%4À%4Ü%4ø%5%50%5L%5h%5„%5 %5¼%5Ø%5ô%6%6,%6H%6d%6€%6œ%6¸%6Ô%6ð%7 %7(%7D%7`%7|%7’%7®%7Ê%7æ%8%8%8:%8V%8r%8Ž%8ª%8Æ%8â%8þ%9%96%9R%9n%9Š%9¦%9Â%9Þ%9ú%:%:2%:N%:j%:†%:œ%:¸%:Ô%:ð%; %;(%;D%;`%;|%;˜%;´%;Ð%;ì%<%<$%<@%<\%%>2%>N%>j%>†%>¢%>¾%>Ú%>ö%?%?.%?J%?f%?‚%?ž%?º%?Ö%?ò%@%@*%@F%@b%@~%@š%@°%@Ì%@è%A%A %A<%AX%At%A%A¬%AÈ%Aä%B%B%B8%BT%Bp%BŒ%B¨%BÄ%Bà%Bü%C%C4%CP%Cl%Cˆ%C¤%Cº%CÖ%Cò%D%D*%DF%Db%D~%Dš%D¶%DÒ%Dî%E %E&%EB%E^%Ez%E–%E²%EÎ%Eê%F%F"%F>%FZ%Fv%F’%F®%FÄ%Fà%Fü%G%G4%GP%Gl%Gˆ%G¤%GÀ%GÜ%Gø%H%H0%HL%Hh%H„%H %H¼%HØ%Hô%I%I,%IH%Id%I€%Iœ%I¸%IÎ%Iê%J%J"%J>%JZ%Jv%J’%J®%JÊ%Jæ%K%K%K:%KV%Kr%KŽ%Kª%KÆ%Kâ%Kþ%L%L6%LR%Ln%LŠ%L¦%LÂ%LØ%Lô%M%M,%MH%Md%M€%Mœ%M¸%MÔ%Mð%N %N(%ND%N`%N|%N˜%N´%NÐ%Nì%O%O$%O@%O\%Ox%O”%O°%OÌ%Oâ%Oþ%P%P6%PR%Pn%PŠ%P¦%PÂ%PÞ%Pú%Q%Q2%QN%Qj%Q†%Q¢%Q¾%QÚ%Qö%R%R.%RJ%Rf%R‚%Rž%Rº%RÖ%Rì%S%S$%S@%S\%Sx%S”%S°%SÌ%Sè%T%T %T<%TX%Tt%T%T¬%TÈ%Tä%U%U%U8%UT%Up%UŒ%U¨%UÄ%Uà%Uö%V%V.%VJ%Vf%V‚%Vž%Vº%VÖ%Vò%W%W*%WF%Wb%W~%Wš%W¶%WÒ%Wî%X %X&%XB%X^%Xz%X–%X²%XÎ%Xê%Y%Y%Y8%YT%Yp%YŒ%Y¨%YÄ%Yà%Yü%Z%Z4%ZP%Zl%Zˆ%Z¤%ZÀ%ZÜ%Zø%[%[0%[L%[h%[„%[ %[¼%[Ø%[ô%\ %\&%\B%\^%\z%\–%\²%\Î%\ê%]%]"%]>%]Z%]v%]’%]®%]Ê%]æ%^%^%^:%^V%^r%^Ž%^ª%^Æ%^â%^þ%_%_0%_L%_h%_„%_ %_¼%_Ø%_ô%`%`,%`H%`d%`€%`œ%`¸%`Ô%`ð%a %a(%aD%a`%a|%a˜%a´%aÐ%aì%b%b%b:%bV%br%bŽ%bª%bÆ%bâ%bþ%c%c6%cR%cn%cŠ%c¦%cÂ%cÞ%cú%d%d2%dN%dj%d†%d¢%d¾%dÚ%dö%e%e(%eD%e`%e|%e˜%e´%eÐ%eì%f%f$%f@%f\%fx%f”%f°%fÌ%fè%g%g %g<%gX%gt%g%g¬%gÈ%gä%h%h%h2%hN%hj%h†%h¢%h¾%hÚ%hö%i%i.%iJ%if%i‚%iž%iº%iÖ%iò%j%j*%jF%jb%j~%jš%j¶%jÒ%jî%k %k&%k<%kX%kt%k%k¬%kÈ%kä%l%l%l8%lT%lp%lŒ%l¨%lÄ%là%lü%m%m4%mP%ml%mˆ%m¤%mÀ%mÜ%mø%n%n0%nF%nb%n~%nš%n¶%nÒ%nî%o %o&%oB%o^%oz%o–%o²%oÎ%oê%p%p"%p>%pZ%pv%p’%p®%pÊ%pæ%q%q%q:%qP%ql%qˆ%q¤%qÀ%qÜ%qø%r%r0%rL%rh%r„%r %r¼%rØ%rô%s%s,%sH%sd%s€%sœ%s¸%sÔ%sð%t %t(%tD%tZ%tv%t’%t®%tÊ%tæ%u%u%u:%uV%ur%uŽ%uª%uÆ%uâ%uþ%v%v6%vR%vn%vŠ%v¦%vÂ%vÞ%vú%w%w2%wN%wd%w€%wœ%w¸%wÔ%wð%x %x(%xD%x`%x|%x˜%x´%xÐ%xì%y%y$%y@%y\%yx%y”%y°%yÌ%yè%z%z %z<%zX%zn%zŠ%z¦%zÂ%zÞ%zú%{%{2%{N%{j%{†%{¢%{¾%{Ú%{ö%|%|.%|J%|f%|‚%|ž%|º%|Ö%|ò%}%}*%}F%}b%}x%}”%}°%}Ì%}è%~%~ %~<%~X%~t%~%~¬%~È%~ä%%%8%T%p%Œ%¨%Ä%à%ü%€%€4%€P%€l%€‚%€ž%€º%€Ö%€ò%%*%F%b%~%š%¶%Ò%î%‚ %‚&%‚B%‚^%‚z%‚–%‚²%‚Î%‚ê%ƒ%ƒ"%ƒ>%ƒZ%ƒv%ƒŒ%ƒ¨%ƒÄ%ƒà%ƒü%„%„4%„P%„l%„ˆ%„¤%„À%„Ü%„ø%…%…0%…L%…h%…„%… %…¼%…Ø%…ô%†%†,%†H%†d%†€%†–%†²%†Î%†ê%‡%‡"%‡>%‡Z%‡v%‡’%‡®%‡Ê%‡æ%ˆ%ˆ%ˆ:%ˆV%ˆr%ˆŽ%ˆª%ˆÆ%ˆâ%ˆþ%‰%‰6%‰R%‰n%‰Š%‰ %‰¼%‰Ø%‰ô%Š%Š,%ŠH%Šd%Š€%Šœ%Џ%ŠÔ%Šð%‹ %‹(%‹D%‹`%‹|%‹˜%‹´%‹Ð%‹ì%Œ%Œ$%Œ@%Œ\%Œx%Œ”%Œª%ŒÆ%Œâ%Œþ%%6%R%n%Š%¦%Â%Þ%ú%Ž%Ž2%ŽN%Žj%ކ%Ž¢%޾%ŽÚ%Žö%%.%J%f%‚%ž%´%Ð%ì%%$%@%\%x%”%°%Ì%è%‘%‘ %‘<%‘X%‘t%‘%‘¬%‘È%‘ä%’%’%’8%’T%’p%’Œ%’¨%’¾%’Ú%’ö%“%“.%“J%“f%“‚%“ž%“º%“Ö%“ò%”%”*%”F%”b%”~%”š%”¶%”Ò%”î%• %•&%•B%•^%•z%•–%•²%•È%•ä%–%–%–8%–T%–p%–Œ%–¨%–Ä%–à%–ü%—%—4%—P%—l%—ˆ%—¤%—À%—Ü%—ø%˜%˜0%˜L%˜h%˜„%˜ %˜¼%˜Ò%˜î%™ %™&%™B%™^%™z%™–%™²%™Î%™ê%š%š"%š>%šZ%šv%š’%š®%šÊ%šæ%›%›%›:%›V%›r%›Ž%›ª%›Æ%›Ü%›ø%œ%œ0%œL%œh%œ„%œ %œ¼%œØ%œô%%,%H%d%€%œ%¸%Ô%ð%ž %ž(%žD%ž`%ž|%ž˜%ž´%žÐ%žæ%Ÿ%Ÿ%Ÿ:%ŸV%Ÿr%ŸŽ%Ÿª%ŸÆ%Ÿâ%Ÿþ% % 6% R% n% Š% ¦% Â% Þ% ú%¡%¡2%¡N%¡j%¡†%¡¢%¡¾%¡Ú%¡ð%¢ %¢(%¢D%¢`%¢|%¢˜%¢´%¢Ð%¢ì%£%£$%£@%£\%£x%£”%£°%£Ì%£è%¤%¤ %¤<%¤X%¤t%¤%¤¬%¤È%¤ä%¤ú%¥%¥2%¥N%¥j%¥†%¥¢%¥¾%¥Ú%¥ö%¦%¦.%¦J%¦f%¦‚%¦ž%¦º%¦Ö%¦ò%§%§*%§F%§b%§~%§š%§¶%§Ò%§î%¨%¨ %¨<%¨X%¨t%¨%¨¬%¨È%¨ä%©%©%©8%©T%©p%©Œ%©¨%©Ä%©à%©ü%ª%ª4%ªP%ªl%ªˆ%ª¤%ªÀ%ªÜ%ªø%«%«*%«F%«b%«~%«š%«¶%«Ò%«î%¬ %¬&%¬B%¬^%¬z%¬–%¬²%¬Î%¬ê%­%­"%­>%­Z%­v%­’%­®%­Ê%­æ%®%®%®4%®P%®l%®ˆ%®¤%®À%®Ü%®ø%¯%¯0%¯L%¯h%¯„%¯ %¯¼%¯Ø%¯ô%°%°,%°H%°d%°€%°œ%°¸%°Ô%°ð%± %±"%±>%±Z%±v%±’%±®%±Ê%±æ%²%²%²:%²V%²r%²Ž%²ª%²Æ%²â%²þ%³%³6%³R%³n%³Š%³¦%³Â%³Þ%³ú%´%´,%´H%´d%´€%´œ%´¸%´Ô%´ð%µ %µ(%µD%µ`%µ|%µ˜%µ´%µÐ%µì%¶%¶$%¶@%¶\%¶x%¶”%¶°%¶Ì%¶è%·%· %·6%·R%·n%·Š%·¦%·Â%·Þ%·ú%¸%¸2%¸N%¸j%¸†%¸¢%¸¾%¸Ú%¸ö%¹%¹.%¹J%¹f%¹‚%¹ž%¹º%¹Ö%¹ò%º%º*%º@%º\%ºx%º”%º°%ºÌ%ºè%»%» %»<%»X%»t%»%»¬%»È%»ä%¼%¼%¼8%¼T%¼p%¼Œ%¼¨%¼Ä%¼à%¼ü%½%½4%½J%½f%½‚%½ž%½º%½Ö%½ò%¾%¾*%¾F%¾b%¾~%¾š%¾¶%¾Ò%¾î%¿ %¿&%¿B%¿^%¿z%¿–%¿²%¿Î%¿ê%À%À"%À>%ÀT%Àp%ÀŒ%À¨%ÀÄ%Àà%Àü%Á%Á4%ÁP%Ál%Áˆ%Á¤%ÁÀ%ÁÜ%Áø%Â%Â0%ÂL%Âh%„% %¼%ÂØ%Âô%Ã%Ã,%ÃH%Ã^%Ãz%Ö%ò%ÃÎ%Ãê%Ä%Ä"%Ä>%ÄZ%Äv%Ä’%Ä®%ÄÊ%Äæ%Å%Å%Å:%ÅV%År%ÅŽ%Ū%ÅÆ%Åâ%Åþ%Æ%Æ6%ÆR%Æh%Æ„%Æ %Ƽ%ÆØ%Æô%Ç%Ç,%ÇH%Çd%Ç€%Çœ%Ǹ%ÇÔ%Çð%È %È(%ÈD%È`%È|%Ș%È´%ÈÐ%Èì%É%É$%É@%É\%Ér%ÉŽ%ɪ%ÉÆ%Éâ%Éþ%Ê%Ê6%ÊR%Ên%ÊŠ%ʦ%ÊÂ%ÊÞ%Êú%Ë%Ë2%ËN%Ëj%ˆ%Ë¢%˾%ËÚ%Ëö%Ì%Ì.%ÌJ%Ìf%Ì|%̘%Ì´%ÌÐ%Ìì%Í%Í$%Í@%Í\%Íx%Í”%Ͱ%ÍÌ%Íè%Î%Î %Î<%ÎX%Ît%Î%ά%ÎÈ%Îä%Ï%Ï%Ï8%ÏT%Ïp%φ%Ï¢%Ͼ%ÏÚ%Ïö%Ð%Ð.%ÐJ%Ðf%Ђ%О%к%ÐÖ%Ðò%Ñ%Ñ*%ÑF%Ñb%Ñ~%Ñš%Ѷ%ÑÒ%Ñî%Ò %Ò&%ÒB%Ò^%Òz%Ò%Ò¬%ÒÈ%Òä%Ó%Ó%Ó8%ÓT%Óp%ÓŒ%Ó¨%ÓÄ%Óà%Óü%Ô%Ô4%ÔP%Ôl%Ôˆ%Ô¤%ÔÀ%ÔÜ%Ôø%Õ%Õ0%ÕL%Õh%Õ„%Õš%Õ¶%ÕÒ%Õî%Ö %Ö&%ÖB%Ö^%Öz%Ö–%Ö²%ÖÎ%Öê%×%×"%×>%×Z%×v%×’%×®%×Ê%׿%Ø%Ø%Ø:%ØV%Ør%ØŽ%ؤ%ØÀ%ØÜ%Øø%Ù%Ù0%ÙL%Ùh%Ù„%Ù %Ù¼%ÙØ%Ùô%Ú%Ú,%ÚH%Úd%Ú€%Úœ%Ú¸%ÚÔ%Úð%Û %Û(%ÛD%Û`%Û|%Û˜%Û®%ÛÊ%Ûæ%Ü%Ü%Ü:%ÜV%Ür%ÜŽ%ܪ%ÜÆ%Üâ%Üþ%Ý%Ý6%ÝR%Ýn%ÝŠ%ݦ%ÝÂ%ÝÞ%Ýú%Þ%Þ2%ÞN%Þj%Þ†%Þ¢%Þ¸%ÞÔ%Þð%ß %ß(%ßD%ß`%ß|%ߘ%ß´%ßÐ%ßì%à%à$%à@%à\%àx%à”%à°%àÌ%àè%á%á %á<%áX%át%á%á¬%áÂ%áÞ%áú%â%â2%âN%âj%â†%â¢%â¾%âÚ%âö%ã%ã.%ãJ%ãf%ã‚%ãž%ãº%ãÖ%ãò%ä%ä*%äF%äb%ä~%äš%ä¶%äÌ%äè%å%å %å<%åX%åt%å%å¬%åÈ%åä%æ%æ%æ8%æT%æp%æŒ%æ¨%æÄ%æà%æü%ç%ç4%çP%çl%çˆ%ç¤%çÀ%çÖ%çò%è%è*%èF%èb%è~%èš%è¶%èÒ%èî%é %é&%éB%é^%éz%é–%é²%éÎ%éê%ê%ê"%ê>%êZ%êv%ê’%ê®%êÊ%êà%êü%ë%ë4%ëP%ël%ëˆ%ë¤%ëÀ%ëÜ%ëø%ì%ì0%ìL%ìh%ì„%ì %ì¼%ìØ%ìô%í%í,%íH%íd%í€%íœ%í¸%íÔ%íê%î%î"%î>%îZ%îv%î’%î®%îÊ%îæ%ï%ï%ï:%ïV%ïr%ïŽ%ïª%ïÆ%ïâ%ïþ%ð%ð6%ðR%ðn%ðŠ%ð¦%ðÂ%ðÞ%ðô%ñ%ñ,%ñH%ñd%ñ€%ñœ%ñ¸%ñÔ%ñð%ò %ò(%òD%ò`%ò|%ò˜%ò´%òÐ%òì%ó%ó$%ó@%ó\%óx%ó”%ó°%óÌ%óè%óþ%ô%ô6%ôR%ôn%ôŠ%ô¦%ôÂ%ôÞ%ôú%õ%õ2%õN%õj%õ†%õ¢%õ¾%õÚ%õö%ö%ö.%öJ%öf%ö‚%öž%öº%öÖ%öò%÷%÷$%÷@%÷\%÷x%÷”%÷°%÷Ì%÷è%ø%ø %ø<%øX%øt%ø%ø¬%øÈ%øä%ù%ù%ù8%ùT%ùp%ùŒ%ù¨%ùÄ%ùà%ùü%ú%ú.%úJ%úf%ú‚%úž%úº%úÖ%úò%û%û*%ûF%ûb%û~%ûš%û¶%ûÒ%ûî%ü %ü&%üB%ü^%üz%ü–%ü²%üÎ%üê%ý%ý%ý8%ýT%ýp%ýŒ%ý¨%ýÄ%ýà%ýü%þ%þ4%þP%þl%þˆ%þ¤%þÀ%þÜ%þø%ÿ%ÿ0%ÿL%ÿh%ÿ„%ÿ %ÿ¼%ÿØ%ÿô&&&&B&^&z&–&²&Î&ê&&"&>&Z&v&’&®&Ê&æ&&&:&V&r&Ž&ª&Æ&â&þ&&0&L&h&„& &¼&Ø&ô&&,&H&d&€&œ&¸&Ô&ð& &(&D&`&|&˜&´&Ð&ì&&$&:&V&r&Ž&ª&Æ&â&þ&&6&R&n&Š&¦&Â&Þ&ú&&2&N&j&†&¢&¾&Ú&ö& & .& D& `& |& ˜& ´& Ð& ì& & $& @& \& x& ”& °& Ì& è& & & <& X& t& & ¬& È& ä& & & 8& N& j& †& ¢& ¾& Ú& ö& & .& J& f& ‚& ž& º& Ö& ò&&*&F&b&~&š&¶&Ò&î& &&&B&X&t&&¬&È&ä&&&8&T&p&Œ&¨&Ä&à&ü&&4&P&l&ˆ&¤&À&Ü&ø&&0&L&b&~&š&¶&Ò&î& &&&B&^&z&–&²&Î&ê&&"&>&Z&v&’&®&Ê&æ&&&:&V&l&ˆ&¤&À&Ü&ø&&0&L&h&„& &¼&Ø&ô&&,&H&d&€&œ&¸&Ô&ð& &(&D&`&v&’&®&Ê&æ&&&:&V&r&Ž&ª&Æ&â&þ&&6&R&n&Š&¦&Â&Þ&ú&&2&N&j&€&œ&¸&Ô&ð& &(&D&`&|&˜&´&Ð&ì&&$&@&\&x&”&°&Ì&è&& &<&X&t&Š&¦&Â&Þ&ú&&2&N&j&†&¢&¾&Ú&ö& & .& J& f& ‚& ž& º& Ö& ò&!&!*&!F&!b&!~&!”&!°&!Ì&!è&"&" &"<&"X&"t&"&"¬&"È&"ä&#&#&#T&#p&#Œ&#¨&#Ä&#à&#ü&$&$4&$P&$l&$ˆ&$ž&$º&$Ö&$ò&%&%*&%F&%b&%~&%š&%¶&%Ò&%î&& &&&&&B&&^&&z&&–&&²&&Î&&ê&'&'"&'>&'Z&'v&'’&'¨&'Ä&'à&'ü&(&(4&(P&(l&(ˆ&(¤&(À&(Ü&(ø&)&)0&)L&)h&)„&) &)¼&)Ø&)ô&*&*,&*H&*d&*€&*œ&*²&*Î&*ê&+&+"&+>&+Z&+v&+’&+®&+Ê&+æ&,&,&,:&,V&,r&,Ž&,ª&,Æ&,â&,þ&-&-6&-R&-n&-Š&-¦&-¼&-Ø&-ô&.&.,&.H&.d&.€&.œ&.¸&.Ô&.ð&/ &/(&/D&/`&/|&/˜&/´&/Ð&/ì&0&0$&0@&0\&0x&0”&0°&0Æ&0â&0þ&1&16&1R&1n&1Š&1¦&1Â&1Þ&1ú&2&22&2N&2j&2†&2¢&2¾&2Ú&2ö&3&3.&3J&3f&3‚&3ž&3º&3Ð&3ì&4&4$&4@&4\&4x&4”&4°&4Ì&4è&5&5 &5<&5X&5t&5&5¬&5È&5ä&6&6&68&6T&6p&6Œ&6¨&6Ä&6Ú&6ö&7&7.&7J&7f&7‚&7ž&7º&7Ö&7ò&8&8*&8F&8b&8~&8š&8¶&8Ò&8î&9 &9&&9B&9^&9z&9–&9²&9Î&9ä&:&:&:8&:T&:p&:Œ&:¨&:Ä&:à&:ü&;&;4&;P&;l&;ˆ&;¤&;À&;Ü&;ø&<&<0&&>"&>>&>Z&>v&>’&>®&>Ê&>æ&?&?&?:&?V&?r&?Ž&?ª&?Æ&?â&?ø&@&@0&@L&@h&@„&@ &@¼&@Ø&@ô&A&A,&AH&Ad&A€&Aœ&A¸&AÔ&Að&B &B(&BD&B`&B|&B˜&B´&BÐ&Bì&C&C&C:&CV&Cr&CŽ&Cª&CÆ&Câ&Cþ&D&D6&DR&Dn&DŠ&D¦&DÂ&DÞ&Dú&E&E2&EN&Ej&E†&E¢&E¾&EÚ&Eö&F &F(&FD&F`&F|&F˜&F´&FÐ&Fì&G&G$&G@&G\&Gx&G”&G°&GÌ&Gè&H&H &H<&HX&Ht&H&H¬&HÈ&Hä&I&I&I2&IN&Ij&I†&I¢&I¾&IÚ&Iö&J&J.&JJ&Jf&J‚&Jž&Jº&JÖ&Jò&K&K*&KF&Kb&K~&Kš&K¶&KÒ&Kî&L &L &L<&LX&Lt&L&L¬&LÈ&Lä&M&M&M8&MT&Mp&MŒ&M¨&MÄ&Mà&Mü&N&N4&NP&Nl&Nˆ&N¤&NÀ&NÜ&Nø&O&O*&OF&Ob&O~&Oš&O¶&OÒ&Oî&P &P&&PB&P^&Pz&P–&P²&PÎ&Pê&Q&Q"&Q>&QZ&Qv&Q’&Q®&QÊ&Qæ&R&R&R4&RP&Rl&Rˆ&R¤&RÀ&RÜ&Rø&S&S0&SL&Sh&S„&S &S¼&SØ&Sô&T&T,&TH&Td&T€&Tœ&T¸&TÔ&Tð&U &U(&U>&UZ&Uv&U’&U®&UÊ&Uæ&V&V&V:&VV&Vr&VŽ&Vª&VÆ&Vâ&Vþ&W&W6&WR&Wn&WŠ&W¦&WÂ&WÞ&Wú&X&X2&XH&Xd&X€&Xœ&X¸&XÔ&Xð&Y &Y(&YD&Y`&Y|&Y˜&Y´&YÐ&Yì&Z&Z$&Z@&Z\&Zx&Z”&Z°&ZÌ&Zè&[&[ &[<&[R&[n&[Š&[¦&[Â&[Þ&[ú&\&\2&\N&\j&\†&\¢&\¾&\Ú&\ö&]&].&]J&]f&]‚&]ž&]º&]Ö&]ò&^&^*&^F&^\&^x&^”&^°&^Ì&^è&_&_ &_<&_X&_t&_&_¬&_È&_ä&`&`&`8&`T&`p&`Œ&`¨&`Ä&`à&`ü&a&a4&aP&af&a‚&až&aº&aÖ&aò&b&b*&bF&bb&b~&bš&b¶&bÒ&bî&c &c&&cB&c^&cz&c–&c²&cÎ&cê&d&d"&d>&dZ&dp&dŒ&d¨&dÄ&dà&dü&e&e4&eP&el&eˆ&e¤&eÀ&eÜ&eø&f&f0&fL&fh&f„&f &f¼&fØ&fô&g&g,&gH&gd&gz&g–&g²&gÎ&gê&h&h"&h>&hZ&hv&h’&h®&hÊ&hæ&i&i&i:&iV&ir&iŽ&iª&iÆ&iâ&iþ&j&j6&jR&jn&j„&j &j¼&jØ&jô&k&k,&kH&kd&k€&kœ&k¸&kÔ&kð&l &l(&lD&l`&l|&l˜&l´&lÐ&lì&m&m$&m@&m\&mx&mŽ&mª&mÆ&mâ&mþ&n&n6&nR&nn&nŠ&n¦&nÂ&nÞ&nú&o&o2&oN&oj&o†&o¢&o¾&oÚ&oö&p&p.&pJ&pf&p‚&p˜&p´&pÐ&pì&q&q$&q@&q\&qx&q”&q°&qÌ&qè&r&r &r<&rX&rt&r&r¬&rÈ&rä&s&s&s8&sT&sp&sŒ&s¢&s¾&sÚ&sö&t&t.&tJ&tf&t‚&tž&tº&tÖ&tò&u&u*&uF&ub&u~&uš&u¶&uÒ&uî&v &v&&vB&v^&vz&v–&v¬&vÈ&vä&w&w&w8&wT&wp&wŒ&w¨&wÄ&wà&wü&x&x4&xP&xl&xˆ&x¤&xÀ&xÜ&xø&y&y0&yL&yh&y„&y &y¶&yÒ&yî&z &z&&zB&z^&zz&z–&z²&zÎ&zê&{&{"&{>&{Z&{v&{’&{®&{Ê&{æ&|&|&|:&|V&|r&|Ž&|ª&|À&|Ü&|ø&}&}0&}L&}h&}„&} &}¼&}Ø&}ô&~&~,&~H&~d&~€&~œ&~¸&~Ô&~ð& &(&D&`&|&˜&´&Ê&æ&€&€&€:&€V&€r&€Ž&€ª&€Æ&€â&€þ&&6&R&n&Š&¦&Â&Þ&ú&‚&‚2&‚N&‚j&‚†&‚¢&‚¾&‚Ô&‚ð&ƒ &ƒ(&ƒD&ƒ`&ƒ|&ƒ˜&ƒ´&ƒÐ&ƒì&„&„$&„@&„\&„x&„”&„°&„Ì&„è&…&… &…<&…X&…t&…&…¬&…È&…Þ&…ú&†&†2&†N&†j&††&†¢&†¾&†Ú&†ö&‡&‡.&‡J&‡f&‡‚&‡ž&‡º&‡Ö&‡ò&ˆ&ˆ*&ˆF&ˆb&ˆ~&ˆš&ˆ¶&ˆÒ&ˆè&‰&‰ &‰<&‰X&‰t&‰&‰¬&‰È&‰ä&Š&Š&Š8&ŠT&Šp&ŠŒ&Ѝ&ŠÄ&Šà&Šü&‹&‹4&‹P&‹l&‹ˆ&‹¤&‹À&‹Ü&‹ò&Œ&Œ*&ŒF&Œb&Œ~&Œš&Œ¶&ŒÒ&Œî& &&&B&^&z&–&²&Î&ê&Ž&Ž"&Ž>&ŽZ&Žv&Ž’&Ž®&ŽÊ&Žæ&Žü&&4&P&l&ˆ&¤&À&Ü&ø&&0&L&h&„& &¼&Ø&ô&‘&‘,&‘H&‘d&‘€&‘œ&‘¸&‘Ô&‘ð&’&’"&’>&’Z&’v&’’&’®&’Ê&’æ&“&“&“:&“V&“r&“Ž&“ª&“Æ&“â&“þ&”&”6&”R&”n&”Š&”¦&”Â&”Þ&”ú&•&•,&•H&•d&•€&•œ&•¸&•Ô&•ð&– &–(&–D&–`&–|&–˜&–´&–Ð&–ì&—&—$&—@&—\&—x&—”&—°&—Ì&—è&˜&˜&˜6&˜R&˜n&˜Š&˜¦&˜Â&˜Þ&˜ú&™&™2&™N&™j&™†&™¢&™¾&™Ú&™ö&š&š.&šJ&šf&š‚&šž&šº&šÖ&šò&›&›$&›@&›\&›x&›”&›°&›Ì&›è&œ&œ &œ<&œX&œt&œ&œ¬&œÈ&œä&&&8&T&p&Œ&¨&Ä&à&ü&ž&ž.&žJ&žf&ž‚&žž&žº&žÖ&žò&Ÿ&Ÿ*&ŸF&Ÿb&Ÿ~&Ÿš&Ÿ¶&ŸÒ&Ÿî&  & && B& ^& z& –& ²& Î& ê&¡&¡"&¡8&¡T&¡p&¡Œ&¡¨&¡Ä&¡à&¡ü&¢&¢4&¢P&¢l&¢ˆ&¢¤&¢À&¢Ü&¢ø&£&£0&£L&£h&£„&£ &£¼&£Ø&£ô&¤&¤,&¤B&¤^&¤z&¤–&¤²&¤Î&¤ê&¥&¥"&¥>&¥Z&¥v&¥’&¥®&¥Ê&¥æ&¦&¦&¦:&¦V&¦r&¦Ž&¦ª&¦Æ&¦â&¦þ&§&§6&§L&§h&§„&§ &§¼&§Ø&§ô&¨&¨,&¨H&¨d&¨€&¨œ&¨¸&¨Ô&¨ð&© &©(&©D&©`&©|&©˜&©´&©Ð&©ì&ª&ª$&ª@&ªV&ªr&ªŽ&ªª&ªÆ&ªâ&ªþ&«&«6&«R&«n&«Š&«¦&«Â&«Þ&«ú&¬&¬2&¬N&¬j&¬†&¬¢&¬¾&¬Ú&¬ö&­&­.&­J&­`&­|&­˜&­´&­Ð&­ì&®&®$&®@&®\&®x&®”&®°&®Ì&®è&¯&¯ &¯<&¯X&¯t&¯&¯¬&¯È&¯ä&°&°&°8&°T&°j&°†&°¢&°¾&°Ú&°ö&±&±.&±J&±f&±‚&±ž&±º&±Ö&±ò&²&²*&²F&²b&²~&²š&²¶&²Ò&²î&³ &³&&³B&³^&³t&³&³¬&³È&³ä&´&´&´8&´T&´p&´Œ&´¨&´Ä&´à&´ü&µ&µ4&µP&µl&µˆ&µ¤&µÀ&µÜ&µø&¶&¶0&¶L&¶h&¶~&¶š&¶¶&¶Ò&¶î&· &·&&·B&·^&·z&·–&·²&·Î&·ê&¸&¸"&¸>&¸Z&¸v&¸’&¸®&¸Ê&¸æ&¹&¹&¹:&¹V&¹r&¹ˆ&¹¤&¹À&¹Ü&¹ø&º&º0&ºL&ºh&º„&º &º¼&ºØ&ºô&»&»,&»H&»d&»€&»œ&»¸&»Ô&»ð&¼ &¼(&¼D&¼`&¼|&¼’&¼®&¼Ê&¼æ&½&½&½:&½V&½r&½Ž&½ª&½Æ&½â&½þ&¾&¾6&¾R&¾n&¾Š&¾¦&¾Â&¾Þ&¾ú&¿&¿2&¿N&¿j&¿†&¿œ&¿¸&¿Ô&¿ð&À &À(&ÀD&À`&À|&À˜&À´&ÀÐ&Àì&Á&Á$&Á@&Á\&Áx&Á”&Á°&ÁÌ&Áè&Â& &Â<&ÂX&Ât&Â&¦&ÂÂ&ÂÞ&Âú&Ã&Ã2&ÃN&Ãj&Æ&â&þ&ÃÚ&Ãö&Ä&Ä.&ÄJ&Äf&Ä‚&Äž&ĺ&ÄÖ&Äò&Å&Å*&ÅF&Åb&Å~&Åš&Ű&ÅÌ&Åè&Æ&Æ &Æ<&ÆX&Æt&Æ&Ƭ&ÆÈ&Æä&Ç&Ç&Ç8&ÇT&Çp&ÇŒ&Ǩ&ÇÄ&Çà&Çü&È&È4&ÈP&Èl&Ȉ&Ȥ&Ⱥ&ÈÖ&Èò&É&É*&ÉF&Éb&É~&Éš&ɶ&ÉÒ&Éî&Ê &Ê&&ÊB&Ê^&Êz&Ê–&ʲ&ÊÎ&Êê&Ë&Ë"&Ë>&ËZ&Ëv&Ë’&Ë®&ËÄ&Ëà&Ëü&Ì&Ì4&ÌP&Ìl&̈&̤&ÌÀ&ÌÜ&Ìø&Í&Í0&ÍL&Íh&Í„&Í &ͼ&ÍØ&Íô&Î&Î,&ÎH&Îd&΀&Μ&θ&ÎÎ&Îê&Ï&Ï"&Ï>&ÏZ&Ïv&Ï’&Ï®&ÏÊ&Ïæ&Ð&Ð&Ð:&ÐV&Ðr&ÐŽ&Ъ&ÐÆ&Ðâ&Ðþ&Ñ&Ñ6&ÑR&Ñn&ÑŠ&Ѧ&ÑÂ&ÑØ&Ñô&Ò&Ò,&ÒH&Òd&Ò€&Òœ&Ò¸&ÒÔ&Òð&Ó &Ó(&ÓD&Ó`&Ó|&Ó˜&Ó´&ÓÐ&Óì&Ô&Ô$&Ô@&Ô\&Ôx&Ô”&Ô°&ÔÌ&Ôâ&Ôþ&Õ&Õ6&ÕR&Õn&ÕŠ&Õ¦&ÕÂ&ÕÞ&Õú&Ö&Ö2&ÖN&Öj&Ö†&Ö¢&Ö¾&ÖÚ&Öö&×&×.&×J&×f&ׂ&מ&׺&×Ö&×ì&Ø&Ø$&Ø@&Ø\&Øx&Ø”&ذ&ØÌ&Øè&Ù&Ù &Ù<&ÙX&Ùt&Ù&Ù¬&ÙÈ&Ùä&Ú&Ú&Ú8&ÚT&Úp&ÚŒ&Ú¨&ÚÄ&Úà&Úö&Û&Û.&ÛJ&Ûf&Û‚&Ûž&Ûº&ÛÖ&Ûò&Ü&Ü*&ÜF&Üb&Ü~&Üš&ܶ&ÜÒ&Üî&Ý &Ý&&ÝB&Ý^&Ýz&Ý–&ݲ&ÝÎ&Ýê&Þ&Þ&Þ8&ÞT&Þp&ÞŒ&Þ¨&ÞÄ&Þà&Þü&ß&ß4&ßP&ßl&߈&ߤ&ßÀ&ßÜ&ßø&à&à0&àL&àh&à„&à &à¼&àØ&àô&á &á&&áB&á^&áz&á–&á²&áÎ&áê&â&â"&â>&âZ&âv&â’&â®&âÊ&âæ&ã&ã&ã:&ãV&ãr&ãŽ&ãª&ãÆ&ãâ&ãþ&ä&ä0&äL&äh&ä„&ä &ä¼&äØ&äô&å&å,&åH&åd&å€&åœ&å¸&åÔ&åð&æ &æ(&æD&æ`&æ|&æ˜&æ´&æÐ&æì&ç&ç&ç:&çV&çr&çŽ&çª&çÆ&çâ&çþ&è&è6&èR&èn&èŠ&è¦&èÂ&èÞ&èú&é&é2&éN&éj&é†&é¢&é¾&éÚ&éö&ê&ê(&êD&ê`&ê|&ê˜&ê´&êÐ&êì&ë&ë$&ë@&ë\&ëx&ë”&ë°&ëÌ&ëè&ì&ì &ì<&ìX&ìt&ì&ì¬&ìÈ&ìä&í&í&í2&íN&íj&í†&í¢&í¾&íÚ&íö&î&î.&îJ&îf&î‚&îž&îº&îÖ&îò&ï&ï*&ïF&ïb&ï~&ïš&ï¶&ïÒ&ïî&ð &ð&&ð<&ðX&ðt&ð&ð¬&ðÈ&ðä&ñ&ñ&ñ8&ñT&ñp&ñŒ&ñ¨&ñÄ&ñà&ñü&ò&ò4&òP&òl&òˆ&ò¤&òÀ&òÜ&òø&ó&ó0&óF&ób&ó~&óš&ó¶&óÒ&óî&ô &ô&&ôB&ô^&ôz&ô–&ô²&ôÎ&ôê&õ&õ"&õ>&õZ&õv&õ’&õ®&õÊ&õæ&ö&ö&ö:&öP&öl&öˆ&ö¤&öÀ&öÜ&öø&÷&÷0&÷L&÷h&÷„&÷ &÷¼&÷Ø&÷ô&ø&ø,&øH&ød&ø€&øœ&ø¸&øÔ&øð&ù &ù(&ùD&ùZ&ùv&ù’&ù®&ùÊ&ùæ&ú&ú&ú:&úV&úr&úŽ&úª&úÆ&úâ&úþ&û&û6&ûR&ûn&ûŠ&û¦&ûÂ&ûÞ&ûú&ü&ü2&üN&üd&ü€&üœ&ü¸&üÔ&üð&ý &ý(&ýD&ý`&ý|&ý˜&ý´&ýÐ&ýì&þ&þ$&þ@&þ\&þx&þ”&þ°&þÌ&þè&ÿ&ÿ &ÿ<&ÿX&ÿn&ÿŠ&ÿ¦&ÿÂ&ÿÞ&ÿú''2'N'j'†'¢'¾'Ú'ö''.'J'f'‚'ž'º'Ö'ò''*'F'b'x'”'°'Ì'è'' '<'X't''¬'È'ä'''8'T'p'Œ'¨'Ä'à'ü''4'P'l'‚'ž'º'Ö'ò''*'F'b'~'š'¶'Ò'î' '&'B'^'z'–'²'Î'ê''"'>'Z'v'Œ'¨'Ä'à'ü' ' 4' P' l' ˆ' ¤' À' Ü' ø' ' 0' L' h' „'  ' ¼' Ø' ô' ' ,' H' d' €' –' ²' Î' ê' ' "' >' Z' v' ’' ®' Ê' æ' ' ' :' V' r' Ž' ª' Æ' â' þ''6'R'n'Š' '¼'Ø'ô'','H'd'€'œ'¸'Ô'ð' '('D'`'|'˜'´'Ð'ì''$'@'\'x'”'ª'Æ'â'þ''6'R'n'Š'¦'Â'Þ'ú''2'N'j'†'¢'¾'Ú'ö''.'J'f'‚'ž'´'Ð'ì''$'@'\'x'”'°'Ì'è'' '<'X't''¬'È'ä'''8'T'p'Œ'¨'¾'Ú'ö''.'J'f'‚'ž'º'Ö'ò''*'F'b'~'š'¶'Ò'î' '&'B'^'z'–'²'È'ä'''8'T'p'Œ'¨'Ä'à'ü''4'P'l'ˆ'¤'À'Ü'ø''0'L'h'„' '¼'Ò'î' '&'B'^'z'–'²'Î'ê''"'>'Z'v'’'®'Ê'æ' ' ' :' V' r' Ž' ª' Æ' Ü' ø'!'!0'!L'!h'!„'! '!¼'!Ø'!ô'"'",'"H'"d'"€'"œ'"¸'"Ô'"ð'# '#('#D'#`'#|'#˜'#´'#Ð'#æ'$'$'$:'$V'$r'$Ž'$ª'$Æ'$â'$þ'%'%6'%R'%n'%Š'%¦'%Â'%Þ'%ú'&'&2'&N'&j'&†'&¢'&¾'&Ú'&ð'' ''(''D''`''|''˜''´''Ð''ì'('($'(@'(\'(x'(”'(°'(Ì'(è')') ')<')X')t')')¬')È')ä')ú'*'*2'*N'*j'*†'*¢'*¾'*Ú'*ö'+'+.'+J'+f'+‚'+ž'+º'+Ö'+ò',',*',F',b',~',š',¶',Ò',î'-'- '-<'-X'-t'-'-¬'-È'-ä'.'.'.8'.T'.p'.Œ'.¨'.Ä'.à'.ü'/'/4'/P'/l'/ˆ'/¤'/À'/Ü'/ø'0'0*'0F'0b'0~'0š'0¶'0Ò'0î'1 '1&'1B'1^'1z'1–'1²'1Î'1ê'2'2"'2>'2Z'2v'2’'2®'2Ê'2æ'3'3'34'3P'3l'3ˆ'3¤'3À'3Ü'3ø'4'40'4L'4h'4„'4 '4¼'4Ø'4ô'5'5,'5H'5d'5€'5œ'5¸'5Ô'5ð'6 '6"'6>'6Z'6v'6’'6®'6Ê'6æ'7'7'7:'7V'7r'7Ž'7ª'7Æ'7â'7þ'8'86'8R'8n'8Š'8¦'8Â'8Þ'8ú'9'9,'9H'9d'9€'9œ'9¸'9Ô'9ð': ':(':D':`':|':˜':´':Ð':ì';';$';@';\';x';”';°';Ì';è'<'< '<6''>.'>J'>f'>‚'>ž'>º'>Ö'>ò'?'?*'?@'?\'?x'?”'?°'?Ì'?è'@'@ '@<'@X'@t'@'@¬'@È'@ä'A'A'A8'AT'Ap'AŒ'A¨'AÄ'Aà'Aü'B'B4'BJ'Bf'B‚'Bž'Bº'BÖ'Bò'C'C*'CF'Cb'C~'Cš'C¶'CÒ'Cî'D 'D&'DB'D^'Dz'D–'D²'DÎ'Dê'E'E"'E>'ET'Ep'EŒ'E¨'EÄ'Eà'Eü'F'F4'FP'Fl'Fˆ'F¤'FÀ'FÜ'Fø'G'G0'GL'Gh'G„'G 'G¼'GØ'Gô'H'H,'HH'H^'Hz'H–'H²'HÎ'Hê'I'I"'I>'IZ'Iv'I’'I®'IÊ'Iæ'J'J'J:'JV'Jr'JŽ'Jª'JÆ'Jâ'Jþ'K'K6'KR'Kh'K„'K 'K¼'KØ'Kô'L'L,'LH'Ld'L€'Lœ'L¸'LÔ'Lð'M 'M('MD'M`'M|'M˜'M´'MÐ'Mì'N'N$'N@'N\'Nr'NŽ'Nª'NÆ'Nâ'Nþ'O'O6'OR'On'OŠ'O¦'OÂ'OÞ'Oú'P'P2'PN'Pj'P†'P¢'P¾'PÚ'Pö'Q'Q.'QJ'Qf'Q|'Q˜'Q´'QÐ'Qì'R'R$'R@'R\'Rx'R”'R°'RÌ'Rè'S'S 'S<'SX'St'S'S¬'SÈ'Sä'T'T'T8'TT'Tp'T†'T¢'T¾'TÚ'Tö'U'U.'UJ'Uf'U‚'Už'Uº'UÖ'Uò'V'V*'VF'Vb'V~'Vš'V¶'VÒ'Vî'W 'W&'WB'W^'Wz'W'W¬'WÈ'Wä'X'X'X8'XT'Xp'XŒ'X¨'XÄ'Xà'Xü'Y'Y4'YP'Yl'Yˆ'Y¤'YÀ'YÜ'Yø'Z'Z0'ZL'Zh'Z„'Zš'Z¶'ZÒ'Zî'[ '[&'[B'[^'[z'[–'[²'[Î'[ê'\'\"'\>'\Z'\v'\’'\®'\Ê'\æ']']']:']V']r']Ž']¤']À']Ü']ø'^'^0'^L'^h'^„'^ '^¼'^Ø'^ô'_'_,'_H'_d'_€'_œ'_¸'_Ô'_ð'` '`('`D'``'`|'`˜'`®'`Ê'`æ'a'a'a:'aV'ar'aŽ'aª'aÆ'aâ'aþ'b'b6'bR'bn'bŠ'b¦'bÂ'bÞ'bú'c'c2'cN'cj'c†'c¢'c¸'cÔ'cð'd 'd('dD'd`'d|'d˜'d´'dÐ'dì'e'e$'e@'e\'ex'e”'e°'eÌ'eè'f'f 'f<'fX'ft'f'f¬'fÂ'fÞ'fú'g'g2'gN'gj'g†'g¢'g¾'gÚ'gö'h'h.'hJ'hf'h‚'hž'hº'hÖ'hò'i'i*'iF'ib'i~'iš'i¶'iÌ'iè'j'j 'j<'jX'jt'j'j¬'jÈ'jä'k'k'k8'kT'kp'kŒ'k¨'kÄ'kà'kü'l'l4'lP'll'lˆ'l¤'lÀ'lÖ'lò'm'm*'mF'mb'm~'mš'm¶'mÒ'mî'n 'n&'nB'n^'nz'n–'n²'nÎ'nê'o'o"'o>'oZ'ov'o’'o®'oÊ'oà'oü'p'p4'pP'pl'pˆ'p¤'pÀ'pÜ'pø'q'q0'qL'qh'q„'q 'q¼'qØ'qô'r'r,'rH'rd'r€'rœ'r¸'rÔ'rê's's"'s>'sZ'sv's’'s®'sÊ'sæ't't't:'tV'tr'tŽ'tª'tÆ'tâ'tþ'u'u6'uR'un'uŠ'u¦'uÂ'uÞ'uô'v'v,'vH'vd'v€'vœ'v¸'vÔ'vð'w 'w('wD'w`'w|'w˜'w´'wÐ'wì'x'x$'x@'x\'xx'x”'x°'xÌ'xè'xþ'y'y6'yR'yn'yŠ'y¦'yÂ'yÞ'yú'z'z2'zN'zj'z†'z¢'z¾'zÚ'zö'{'{.'{J'{f'{‚'{ž'{º'{Ö'{ò'|'|$'|@'|\'|x'|”'|°'|Ì'|è'}'} '}<'}X'}t'}'}¬'}È'}ä'~'~'~8'~T'~p'~Œ'~¨'~Ä'~à'~ü''.'J'f'‚'ž'º'Ö'ò'€'€*'€F'€b'€~'€š'€¶'€Ò'€î' '&'B'^'z'–'²'Î'ê'‚'‚'‚8'‚T'‚p'‚Œ'‚¨'‚Ä'‚à'‚ü'ƒ'ƒ4'ƒP'ƒl'ƒˆ'ƒ¤'ƒÀ'ƒÜ'ƒø'„'„0'„L'„h'„„'„ '„¼'„Ø'„ô'…'…&'…B'…^'…z'…–'…²'…Î'…ê'†'†"'†>'†Z'†v'†’'†®'†Ê'†æ'‡'‡'‡:'‡V'‡r'‡Ž'‡ª'‡Æ'‡â'‡þ'ˆ'ˆ0'ˆL'ˆh'ˆ„'ˆ 'ˆ¼'ˆØ'ˆô'‰'‰,'‰H'‰d'‰€'‰œ'‰¸'‰Ô'‰ð'Š 'Š('ŠD'Š`'Š|'Š˜'Š´'ŠÐ'Šì'‹'‹$'‹:'‹V'‹r'‹Ž'‹ª'‹Æ'‹â'‹þ'Œ'Œ6'ŒR'Œn'ŒŠ'Œ¦'ŒÂ'ŒÞ'Œú''2'N'j'†'¢'¾'Ú'ö'Ž'Ž.'ŽD'Ž`'Ž|'Ž˜'Ž´'ŽÐ'Žì''$'@'\'x'”'°'Ì'è'' '<'X't''¬'È'ä'‘'‘'‘8'‘N'‘j'‘†'‘¢'‘¾'‘Ú'‘ö'’'’.'’J'’f'’‚'’ž'’º'’Ö'’ò'“'“*'“F'“b'“~'“š'“¶'“Ò'“î'” '”&'”B'”X'”t'”'”¬'”È'”ä'•'•'•8'•T'•p'•Œ'•¨'•Ä'•à'•ü'–'–4'–P'–l'–ˆ'–¤'–À'–Ü'–ø'—'—0'—L'—b'—~'—š'—¶'—Ò'—î'˜ '˜&'˜B'˜^'˜z'˜–'˜²'˜Î'˜ê'™'™"'™>'™Z'™v'™’'™®'™Ê'™æ'š'š'š:'šV'šl'šˆ'š¤'šÀ'šÜ'šø'›'›0'›L'›h'›„'› '›¼'›Ø'›ô'œ'œ,'œH'œd'œ€'œœ'œ¸'œÔ'œð' '('D'`'v'’'®'Ê'æ'ž'ž'ž:'žV'žr'žŽ'žª'žÆ'žâ'žþ'Ÿ'Ÿ6'ŸR'Ÿn'ŸŠ'Ÿ¦'ŸÂ'ŸÞ'Ÿú' ' 2' N' j' €' œ' ¸' Ô' ð'¡ '¡('¡D'¡`'¡|'¡˜'¡´'¡Ð'¡ì'¢'¢$'¢@'¢\'¢x'¢”'¢°'¢Ì'¢è'£'£ '£<'£X'£t'£Š'£¦'£Â'£Þ'£ú'¤'¤2'¤N'¤j'¤†'¤¢'¤¾'¤Ú'¤ö'¥'¥.'¥J'¥f'¥‚'¥ž'¥º'¥Ö'¥ò'¦'¦*'¦F'¦b'¦~'¦”'¦°'¦Ì'¦è'§'§ '§<'§X'§t'§'§¬'§È'§ä'¨'¨'¨8'¨T'¨p'¨Œ'¨¨'¨Ä'¨à'¨ü'©'©4'©P'©l'©ˆ'©ž'©º'©Ö'©ò'ª'ª*'ªF'ªb'ª~'ªš'ª¶'ªÒ'ªî'« '«&'«B'«^'«z'«–'«²'«Î'«ê'¬'¬"'¬>'¬Z'¬v'¬’'¬¨'¬Ä'¬à'¬ü'­'­4'­P'­l'­ˆ'­¤'­À'­Ü'­ø'®'®0'®L'®h'®„'® '®¼'®Ø'®ô'¯'¯,'¯H'¯d'¯€'¯œ'¯²'¯Î'¯ê'°'°"'°>'°Z'°v'°’'°®'°Ê'°æ'±'±'±:'±V'±r'±Ž'±ª'±Æ'±â'±þ'²'²6'²R'²n'²Š'²¦'²¼'²Ø'²ô'³'³,'³H'³d'³€'³œ'³¸'³Ô'³ð'´ '´('´D'´`'´|'´˜'´´'´Ð'´ì'µ'µ$'µ@'µ\'µx'µ”'µ°'µÆ'µâ'µþ'¶'¶6'¶R'¶n'¶Š'¶¦'¶Â'¶Þ'¶ú'·'·2'·N'·j'·†'·¢'·¾'·Ú'·ö'¸'¸.'¸J'¸f'¸‚'¸ž'¸º'¸Ð'¸ì'¹'¹$'¹@'¹\'¹x'¹”'¹°'¹Ì'¹è'º'º 'º<'ºX'ºt'º'º¬'ºÈ'ºä'»'»'»8'»T'»p'»Œ'»¨'»Ä'»Ú'»ö'¼'¼.'¼J'¼f'¼‚'¼ž'¼º'¼Ö'¼ò'½'½*'½F'½b'½~'½š'½¶'½Ò'½î'¾ '¾&'¾B'¾^'¾z'¾–'¾²'¾Î'¾ä'¿'¿'¿8'¿T'¿p'¿Œ'¿¨'¿Ä'¿à'¿ü'À'À4'ÀP'Àl'Àˆ'À¤'ÀÀ'ÀÜ'Àø'Á'Á0'ÁL'Áh'Á„'Á 'Á¼'ÁØ'Áî' 'Â&'ÂB'Â^'Âz'–'²'ÂÎ'Âê'Ã'Ã"'Ã>'ÃZ'Ãv'Ã’'î'ÃÊ'Ãæ'Ä'Ä'Ä:'ÄV'Är'ÄŽ'Ī'ÄÆ'Äâ'Äø'Å'Å0'ÅL'Åh'Å„'Å 'ż'ÅØ'Åô'Æ'Æ,'ÆH'Æd'Æ€'Æœ'Ƹ'ÆÔ'Æð'Ç 'Ç('ÇD'Ç`'Ç|'ǘ'Ç´'ÇÐ'Çì'È'È'È:'ÈV'Èr'ÈŽ'Ȫ'ÈÆ'Èâ'Èþ'É'É6'ÉR'Én'ÉŠ'ɦ'ÉÂ'ÉÞ'Éú'Ê'Ê2'ÊN'Êj'ʆ'Ê¢'ʾ'ÊÚ'Êö'Ë 'Ë('ËD'Ë`'Ë|'˘'Ë´'ËÐ'Ëì'Ì'Ì$'Ì@'Ì\'Ìx'Ì”'̰'ÌÌ'Ìè'Í'Í 'Í<'ÍX'Ít'Í'ͬ'ÍÈ'Íä'Î'Î'Î2'ÎN'Îj'Ά'΢'ξ'ÎÚ'Îö'Ï'Ï.'ÏJ'Ïf'Ï‚'Ïž'Ϻ'ÏÖ'Ïò'Ð'Ð*'ÐF'Ðb'Ð~'К'ж'ÐÒ'Ðî'Ñ 'Ñ 'Ñ<'ÑX'Ñt'Ñ'Ѭ'ÑÈ'Ñä'Ò'Ò'Ò8'ÒT'Òp'ÒŒ'Ò¨'ÒÄ'Òà'Òü'Ó'Ó4'ÓP'Ól'Óˆ'Ó¤'ÓÀ'ÓÜ'Óø'Ô'Ô*'ÔF'Ôb'Ô~'Ôš'Ô¶'ÔÒ'Ôî'Õ 'Õ&'ÕB'Õ^'Õz'Õ–'Õ²'ÕÎ'Õê'Ö'Ö"'Ö>'ÖZ'Öv'Ö’'Ö®'ÖÊ'Öæ'×'×'×4'×P'×l'׈'פ'×À'×Ü'×ø'Ø'Ø0'ØL'Øh'Ø„'Ø 'ؼ'ØØ'Øô'Ù'Ù,'ÙH'Ùd'Ù€'Ùœ'Ù¸'ÙÔ'Ùð'Ú 'Ú('Ú>'ÚZ'Úv'Ú’'Ú®'ÚÊ'Úæ'Û'Û'Û:'ÛV'Ûr'ÛŽ'Ûª'ÛÆ'Ûâ'Ûþ'Ü'Ü6'ÜR'Ün'ÜŠ'ܦ'ÜÂ'ÜÞ'Üú'Ý'Ý2'ÝH'Ýd'Ý€'Ýœ'ݸ'ÝÔ'Ýð'Þ 'Þ('ÞD'Þ`'Þ|'Þ˜'Þ´'ÞÐ'Þì'ß'ß$'ß@'ß\'ßx'ß”'ß°'ßÌ'ßè'à'à 'à<'àR'àn'àŠ'à¦'àÂ'àÞ'àú'á'á2'áN'áj'á†'á¢'á¾'áÚ'áö'â'â.'âJ'âf'â‚'âž'âº'âÖ'âò'ã'ã*'ãF'ã\'ãx'ã”'ã°'ãÌ'ãè'ä'ä 'ä<'äX'ät'ä'ä¬'äÈ'ää'å'å'å8'åT'åp'åŒ'å¨'åÄ'åà'åü'æ'æ4'æP'æf'æ‚'æž'æº'æÖ'æò'ç'ç*'çF'çb'ç~'çš'ç¶'çÒ'çî'è 'è&'èB'è^'èz'è–'è²'èÎ'èê'é'é"'é>'éZ'ép'éŒ'é¨'éÄ'éà'éü'ê'ê4'êP'êl'êˆ'ê¤'êÀ'êÜ'êø'ë'ë0'ëL'ëh'ë„'ë 'ë¼'ëØ'ëô'ì'ì,'ìH'ìd'ìz'ì–'ì²'ìÎ'ìê'í'í"'í>'íZ'ív'í’'í®'íÊ'íæ'î'î'î:'îV'îr'îŽ'îª'îÆ'îâ'îþ'ï'ï6'ïR'ïn'ï„'ï 'ï¼'ïØ'ïô'ð'ð,'ðH'ðd'ð€'ðœ'ð¸'ðÔ'ðð'ñ 'ñ('ñD'ñ`'ñ|'ñ˜'ñ´'ñÐ'ñì'ò'ò$'ò@'ò\'òx'òŽ'òª'òÆ'òâ'òþ'ó'ó6'óR'ón'óŠ'ó¦'óÂ'óÞ'óú'ô'ô2'ôN'ôj'ô†'ô¢'ô¾'ôÚ'ôö'õ'õ.'õJ'õf'õ‚'õ˜'õ´'õÐ'õì'ö'ö$'ö@'ö\'öx'ö”'ö°'öÌ'öè'÷'÷ '÷<'÷X'÷t'÷'÷¬'÷È'÷ä'ø'ø'ø8'øT'øp'øŒ'ø¢'ø¾'øÚ'øö'ù'ù.'ùJ'ùf'ù‚'ùž'ùº'ùÖ'ùò'ú'ú*'úF'úb'ú~'úš'ú¶'úÒ'úî'û 'û&'ûB'û^'ûz'û–'û¬'ûÈ'ûä'ü'ü'ü8'üT'üp'üŒ'ü¨'üÄ'üà'üü'ý'ý4'ýP'ýl'ýˆ'ý¤'ýÀ'ýÜ'ýø'þ'þ0'þL'þh'þ„'þ 'þ¶'þÒ'þî'ÿ 'ÿ&'ÿB'ÿ^'ÿz'ÿ–'ÿ²'ÿÎ'ÿê(("(>(Z(v(’(®(Ê(æ(((:(V(r(Ž(ª(À(Ü(ø((0(L(h(„( (¼(Ø(ô((,(H(d(€(œ(¸(Ô(ð( (((D(`(|(˜(´(Ê(æ(((:(V(r(Ž(ª(Æ(â(þ((6(R(n(Š(¦(Â(Þ(ú((2(N(j(†(¢(¾(Ô(ð( (((D(`(|(˜(´(Ð(ì( ( $( @( \( x( ”( °( Ì( è( ( ( <( X( t( ( ¬( È( Þ( ú( ( 2( N( j( †( ¢( ¾( Ú( ö( ( .( J( f( ‚( ž( º( Ö( ò( ( *( F( b( ~( š( ¶( Ò( è(( (<(X(t((¬(È(ä(((8(T(p(Œ(¨(Ä(à(ü((4(P(l(ˆ(¤(À(Ü(ò((*(F(b(~(š(¶(Ò(î( (&(B(^(z(–(²(Î(ê(("(>(Z(v(’(®(Ê(æ(ü((4(P(l(ˆ(¤(À(Ü(ø((0(L(h(„( (¼(Ø(ô((,(H(d(€(œ(¸(Ô(ð(("(>(Z(v(’(®(Ê(æ(((:(V(r(Ž(ª(Æ(â(þ((6(R(n(Š(¦(Â(Þ(ú((,(H(d(€(œ(¸(Ô(ð( (((D(`(|(˜(´(Ð(ì(($(@(\(x(”(°(Ì(è(((6(R(n(Š(¦(Â(Þ(ú((2(N(j(†(¢(¾(Ú(ö((.(J(f(‚(ž(º(Ö(ò( ( $( @( \( x( ”( °( Ì( è(!(! (!<(!X(!t(!(!¬(!È(!ä("("("8("T("p("Œ("¨("Ä("à("ü(#(#.(#J(#f(#‚(#ž(#º(#Ö(#ò($($*($F($b($~($š($¶($Ò($î(% (%&(%B(%^(%z(%–(%²(%Î(%ê(&(&"(&8(&T(&p(&Œ(&¨(&Ä(&à(&ü('('4('P('l('ˆ('¤('À('Ü('ø((((0((L((h((„(( ((¼((Ø((ô()(),()B()^()z()–()²()Î()ê(*(*"(*>(*Z(*v(*’(*®(*Ê(*æ(+(+(+:(+V(+r(+Ž(+ª(+Æ(+â(+þ(,(,6(,L(,h(,„(, (,¼(,Ø(,ô(-(-,(-H(-d(-€(-œ(-¸(-Ô(-ð(. (.((.D(.`(.|(.˜(.´(.Ð(.ì(/(/$(/@(/V(/r(/Ž(/ª(/Æ(/â(/þ(0(06(0R(0n(0Š(0¦(0Â(0Þ(0ú(1(12(1N(1j(1†(1¢(1¾(1Ú(1ö(2(2.(2J(2`(2|(2˜(2´(2Ð(2ì(3(3$(3@(3\(3x(3”(3°(3Ì(3è(4(4 (4<(4X(4t(4(4¬(4È(4ä(5(5(58(5T(5j(5†(5¢(5¾(5Ú(5ö(6(6.(6J(6f(6‚(6ž(6º(6Ö(6ò(7(7*(7F(7b(7~(7š(7¶(7Ò(7î(8 (8&(8B(8^(8t(8(8¬(8È(8ä(9(9(98(9T(9p(9Œ(9¨(9Ä(9à(9ü(:(:4(:P(:l(:ˆ(:¤(:À(:Ü(:ø(;(;0(;L(;h(;~(;š(;¶(;Ò(;î(< (<&((=Z(=v(=’(=®(=Ê(=æ(>(>(>:(>V(>r(>ˆ(>¤(>À(>Ü(>ø(?(?0(?L(?h(?„(? (?¼(?Ø(?ô(@(@,(@H(@d(@€(@œ(@¸(@Ô(@ð(A (A((AD(A`(A|(A’(A®(AÊ(Aæ(B(B(B:(BV(Br(BŽ(Bª(BÆ(Bâ(Bþ(C(C6(CR(Cn(CŠ(C¦(CÂ(CÞ(Cú(D(D2(DN(Dj(D†(Dœ(D¸(DÔ(Dð(E (E((ED(E`(E|(E˜(E´(EÐ(Eì(F(F$(F@(F\(Fx(F”(F°(FÌ(Fè(G(G (G<(GX(Gt(G(G¦(GÂ(GÞ(Gú(H(H2(HN(Hj(H†(H¢(H¾(HÚ(Hö(I(I.(IJ(If(I‚(Iž(Iº(IÖ(Iò(J(J*(JF(Jb(J~(Jš(J°(JÌ(Jè(K(K (K<(KX(Kt(K(K¬(KÈ(Kä(L(L(L8(LT(Lp(LŒ(L¨(LÄ(Là(Lü(M(M4(MP(Ml(Mˆ(M¤(Mº(MÖ(Mò(N(N*(NF(Nb(N~(Nš(N¶(NÒ(Nî(O (O&(OB(O^(Oz(O–(O²(OÎ(Oê(P(P"(P>(PZ(Pv(P’(P®(PÄ(Pà(Pü(Q(Q4(QP(Ql(Qˆ(Q¤(QÀ(QÜ(Qø(R(R0(RL(Rh(R„(R (R¼(RØ(Rô(S(S,(SH(Sd(S€(Sœ(S¸(SÎ(Sê(T(T"(T>(TZ(Tv(T’(T®(TÊ(Tæ(U(U(U:(UV(Ur(UŽ(Uª(UÆ(Uâ(Uþ(V(V6(VR(Vn(VŠ(V¦(VÂ(VØ(Vô(W(W,(WH(Wd(W€(Wœ(W¸(WÔ(Wð(X (X((XD(X`(X|(X˜(X´(XÐ(Xì(Y(Y$(Y@(Y\(Yx(Y”(Y°(YÌ(Yâ(Yþ(Z(Z6(ZR(Zn(ZŠ(Z¦(ZÂ(ZÞ(Zú([([2([N([j([†([¢([¾([Ú([ö(\(\.(\J(\f(\‚(\ž(\º(\Ö(\ì(](]$(]@(]\(]x(]”(]°(]Ì(]è(^(^ (^<(^X(^t(^(^¬(^È(^ä(_(_(_8(_T(_p(_Œ(_¨(_Ä(_à(_ö(`(`.(`J(`f(`‚(`ž(`º(`Ö(`ò(a(a*(aF(ab(a~(aš(a¶(aÒ(aî(b (b&(bB(b^(bz(b–(b²(bÎ(bê(c(c(c8(cT(cp(cŒ(c¨(cÄ(cà(cü(d(d4(dP(dl(dˆ(d¤(dÀ(dÜ(dø(e(e0(eL(eh(e„(e (e¼(eØ(eô(f (f&(fB(f^(fz(f–(f²(fÎ(fê(g(g"(g>(gZ(gv(g’(g®(gÊ(gæ(h(h(h:(hV(hr(hŽ(hª(hÆ(hâ(hþ(i(i0(iL(ih(i„(i (i¼(iØ(iô(j(j,(jH(jd(j€(jœ(j¸(jÔ(jð(k (k((kD(k`(k|(k˜(k´(kÐ(kì(l(l(l:(lV(lr(lŽ(lª(lÆ(lâ(lþ(m(m6(mR(mn(mŠ(m¦(mÂ(mÞ(mú(n(n2(nN(nj(n†(n¢(n¾(nÚ(nö(o(o((oD(o`(o|(o˜(o´(oÐ(oì(p(p$(p@(p\(px(p”(p°(pÌ(pè(q(q (q<(qX(qt(q(q¬(qÈ(qä(r(r(r2(rN(rj(r†(r¢(r¾(rÚ(rö(s(s.(sJ(sf(s‚(sž(sº(sÖ(sò(t(t*(tF(tb(t~(tš(t¶(tÒ(tî(u (u&(u<(uX(ut(u(u¬(uÈ(uä(v(v(v8(vT(vp(vŒ(v¨(vÄ(và(vü(w(w4(wP(wl(wˆ(w¤(wÀ(wÜ(wø(x(x0(xF(xb(x~(xš(x¶(xÒ(xî(y (y&(yB(y^(yz(y–(y²(yÎ(yê(z(z"(z>(zZ(zv(z’(z®(zÊ(zæ({({({:({P({l({ˆ({¤({À({Ü({ø(|(|0(|L(|h(|„(| (|¼(|Ø(|ô(}(},(}H(}d(}€(}œ(}¸(}Ô(}ð(~ (~((~D(~Z(~v(~’(~®(~Ê(~æ(((:(V(r(Ž(ª(Æ(â(þ(€(€6(€R(€n(€Š(€¦(€Â(€Þ(€ú((2(N(d(€(œ(¸(Ô(ð(‚ (‚((‚D(‚`(‚|(‚˜(‚´(‚Ð(‚ì(ƒ(ƒ$(ƒ@(ƒ\(ƒx(ƒ”(ƒ°(ƒÌ(ƒè(„(„ („<(„X(„n(„Š(„¦(„Â(„Þ(„ú(…(…2(…N(…j(…†(…¢(…¾(…Ú(…ö(†(†.(†J(†f(†‚(†ž(†º(†Ö(†ò(‡(‡*(‡F(‡b(‡x(‡”(‡°(‡Ì(‡è(ˆ(ˆ (ˆ<(ˆX(ˆt(ˆ(ˆ¬(ˆÈ(ˆä(‰(‰(‰8(‰T(‰p(‰Œ(‰¨(‰Ä(‰à(‰ü(Š(Š4(ŠP(Šl(Š‚(Šž(Šº(ŠÖ(Šò(‹(‹*(‹F(‹b(‹~(‹š(‹¶(‹Ò(‹î(Œ (Œ&(ŒB(Œ^(Œz(Œ–(Œ²(ŒÎ(Œê(("(>(Z(v(Œ(¨(Ä(à(ü(Ž(Ž4(ŽP(Žl(Žˆ(ޤ(ŽÀ(ŽÜ(Žø((0(L(h(„( (¼(Ø(ô((,(H(d(€(–(²(Î(ê(‘(‘"(‘>(‘Z(‘v(‘’(‘®(‘Ê(‘æ(’(’(’:(’V(’r(’Ž(’ª(’Æ(’â(’þ(“(“6(“R(“n(“Š(“ (“¼(“Ø(“ô(”(”,(”H(”d(”€(”œ(”¸(”Ô(”ð(• (•((•D(•`(•|(•˜(•´(•Ð(•ì(–(–$(–@(–\(–x(–”(–ª(–Æ(–â(–þ(—(—6(—R(—n(—Š(—¦(—Â(—Þ(—ú(˜(˜2(˜N(˜j(˜†(˜¢(˜¾(˜Ú(˜ö(™(™.(™J(™f(™‚(™ž(™´(™Ð(™ì(š(š$(š@(š\(šx(š”(š°(šÌ(šè(›(› (›<(›X(›t(›(›¬(›È(›ä(œ(œ(œ8(œT(œp(œŒ(œ¨(œ¾(œÚ(œö((.(J(f(‚(ž(º(Ö(ò(ž(ž*(žF(žb(ž~(žš(ž¶(žÒ(žî(Ÿ (Ÿ&(ŸB(Ÿ^(Ÿz(Ÿ–(Ÿ²(ŸÈ(Ÿä( ( ( 8( T( p( Œ( ¨( Ä( à( ü(¡(¡4(¡P(¡l(¡ˆ(¡¤(¡À(¡Ü(¡ø(¢(¢0(¢L(¢h(¢„(¢ (¢¼(¢Ò(¢î(£ (£&(£B(£^(£z(£–(£²(£Î(£ê(¤(¤"(¤>(¤Z(¤v(¤’(¤®(¤Ê(¤æ(¥(¥(¥:(¥V(¥r(¥Ž(¥ª(¥Æ(¥Ü(¥ø(¦(¦0(¦L(¦h(¦„(¦ (¦¼(¦Ø(¦ô(§(§,(§H(§d(§€(§œ(§¸(§Ô(§ð(¨ (¨((¨D(¨`(¨|(¨˜(¨´(¨Ð(¨æ(©(©(©:(©V(©r(©Ž(©ª(©Æ(©â(©þ(ª(ª6(ªR(ªn(ªŠ(ª¦(ªÂ(ªÞ(ªú(«(«2(«N(«j(«†(«¢(«¾(«Ú(«ð(¬ (¬((¬D(¬`(¬|(¬˜(¬´(¬Ð(¬ì(­(­$(­@(­\(­x(­”(­°(­Ì(­è(®(® (®<(®X(®t(®(®¬(®È(®ä(®ú(¯(¯2(¯N(¯j(¯†(¯¢(¯¾(¯Ú(¯ö(°(°.(°J(°f(°‚(°ž(°º(°Ö(°ò(±(±*(±F(±b(±~(±š(±¶(±Ò(±î(²(² (²<(²X(²t(²(²¬(²È(²ä(³(³(³8(³T(³p(³Œ(³¨(³Ä(³à(³ü(´(´4(´P(´l(´ˆ(´¤(´À(´Ü(´ø(µ(µ*(µF(µb(µ~(µš(µ¶(µÒ(µî(¶ (¶&(¶B(¶^(¶z(¶–(¶²(¶Î(¶ê(·(·"(·>(·Z(·v(·’(·®(·Ê(·æ(¸(¸(¸4(¸P(¸l(¸ˆ(¸¤(¸À(¸Ü(¸ø(¹(¹0(¹L(¹h(¹„(¹ (¹¼(¹Ø(¹ô(º(º,(ºH(ºd(º€(ºœ(º¸(ºÔ(ºð(» (»"(»>(»Z(»v(»’(»®(»Ê(»æ(¼(¼(¼:(¼V(¼r(¼Ž(¼ª(¼Æ(¼â(¼þ(½(½6(½R(½n(½Š(½¦(½Â(½Þ(½ú(¾(¾,(¾H(¾d(¾€(¾œ(¾¸(¾Ô(¾ð(¿ (¿((¿D(¿`(¿|(¿˜(¿´(¿Ð(¿ì(À(À$(À@(À\(Àx(À”(À°(ÀÌ(Àè(Á(Á (Á6(ÁR(Án(ÁŠ(Á¦(ÁÂ(ÁÞ(Áú(Â(Â2(ÂN(Âj(†(¢(¾(ÂÚ(Âö(Ã(Ã.(ÃJ(Ãf(Â(Þ(ú(ÃÖ(Ãò(Ä(Ä*(Ä@(Ä\(Äx(Ä”(İ(ÄÌ(Äè(Å(Å (Å<(ÅX(Åt(Å(Ŭ(ÅÈ(Åä(Æ(Æ(Æ8(ÆT(Æp(ÆŒ(ƨ(ÆÄ(Æà(Æü(Ç(Ç4(ÇJ(Çf(Ç‚(Çž(Ǻ(ÇÖ(Çò(È(È*(ÈF(Èb(È~(Èš(ȶ(ÈÒ(Èî(É (É&(ÉB(É^(Éz(É–(ɲ(ÉÎ(Éê(Ê(Ê"(Ê>(ÊT(Êp(ÊŒ(ʨ(ÊÄ(Êà(Êü(Ë(Ë4(ËP(Ël(ˈ(ˤ(ËÀ(ËÜ(Ëø(Ì(Ì0(ÌL(Ìh(Ì„(Ì (̼(ÌØ(Ìô(Í(Í,(ÍH(Í^(Íz(Í–(Ͳ(ÍÎ(Íê(Î(Î"(Î>(ÎZ(Îv(Î’(ή(ÎÊ(Îæ(Ï(Ï(Ï:(ÏV(Ïr(ÏŽ(Ϫ(ÏÆ(Ïâ(Ïþ(Ð(Ð6(ÐR(Ðh(Є(Р(м(ÐØ(Ðô(Ñ(Ñ,(ÑH(Ñd(Ñ€(Ñœ(Ѹ(ÑÔ(Ñð(Ò (Ò((ÒD(Ò`(Ò|(Ò˜(Ò´(ÒÐ(Òì(Ó(Ó$(Ó@(Ó\(Ór(ÓŽ(Óª(ÓÆ(Óâ(Óþ(Ô(Ô6(ÔR(Ôn(ÔŠ(Ô¦(ÔÂ(ÔÞ(Ôú(Õ(Õ2(ÕN(Õj(Õ†(Õ¢(Õ¾(ÕÚ(Õö(Ö(Ö.(ÖJ(Öf(Ö|(Ö˜(Ö´(ÖÐ(Öì(×(×$(×@(×\(×x(×”(×°(×Ì(×è(Ø(Ø (Ø<(ØX(Øt(Ø(ج(ØÈ(Øä(Ù(Ù(Ù8(ÙT(Ùp(Ù†(Ù¢(Ù¾(ÙÚ(Ùö(Ú(Ú.(ÚJ(Úf(Ú‚(Úž(Úº(ÚÖ(Úò(Û(Û*(ÛF(Ûb(Û~(Ûš(Û¶(ÛÒ(Ûî(Ü (Ü&(ÜB(Ü^(Üz(Ü(ܬ(ÜÈ(Üä(Ý(Ý(Ý8(ÝT(Ýp(ÝŒ(ݨ(ÝÄ(Ýà(Ýü(Þ(Þ4(ÞP(Þl(Þˆ(Þ¤(ÞÀ(ÞÜ(Þø(ß(ß0(ßL(ßh(ß„(ßš(ß¶(ßÒ(ßî(à (à&(àB(à^(àz(à–(à²(àÎ(àê(á(á"(á>(áZ(áv(á’(á®(áÊ(áæ(â(â(â:(âV(âr(âŽ(â¤(âÀ(âÜ(âø(ã(ã0(ãL(ãh(ã„(ã (ã¼(ãØ(ãô(ä(ä,(äH(äd(ä€(äœ(ä¸(äÔ(äð(å (å((åD(å`(å|(å˜(å®(åÊ(åæ(æ(æ(æ:(æV(ær(æŽ(æª(æÆ(æâ(æþ(ç(ç6(çR(çn(çŠ(ç¦(çÂ(çÞ(çú(è(è2(èN(èj(è†(è¢(è¸(èÔ(èð(é (é((éD(é`(é|(é˜(é´(éÐ(éì(ê(ê$(ê@(ê\(êx(ê”(ê°(êÌ(êè(ë(ë (ë<(ëX(ët(ë(ë¬(ëÂ(ëÞ(ëú(ì(ì2(ìN(ìj(ì†(ì¢(ì¾(ìÚ(ìö(í(í.(íJ(íf(í‚(íž(íº(íÖ(íò(î(î*(îF(îb(î~(îš(î¶(îÌ(îè(ï(ï (ï<(ïX(ït(ï(ï¬(ïÈ(ïä(ð(ð(ð8(ðT(ðp(ðŒ(ð¨(ðÄ(ðà(ðü(ñ(ñ4(ñP(ñl(ñˆ(ñ¤(ñÀ(ñÖ(ñò(ò(ò*(òF(òb(ò~(òš(ò¶(òÒ(òî(ó (ó&(óB(ó^(óz(ó–(ó²(óÎ(óê(ô(ô"(ô>(ôZ(ôv(ô’(ô®(ôÊ(ôà(ôü(õ(õ4(õP(õl(õˆ(õ¤(õÀ(õÜ(õø(ö(ö0(öL(öh(ö„(ö (ö¼(öØ(öô(÷(÷,(÷H(÷d(÷€(÷œ(÷¸(÷Ô(÷ê(ø(ø"(ø>(øZ(øv(ø’(ø®(øÊ(øæ(ù(ù(ù:(ùV(ùr(ùŽ(ùª(ùÆ(ùâ(ùþ(ú(ú6(úR(ún(úŠ(ú¦(úÂ(úÞ(úô(û(û,(ûH(ûd(û€(ûœ(û¸(ûÔ(ûð(ü (ü((üD(ü`(ü|(ü˜(ü´(üÐ(üì(ý(ý$(ý@(ý\(ýx(ý”(ý°(ýÌ(ýè(ýþ(þ(þ6(þR(þn(þŠ(þ¦(þÂ(þÞ(þú(ÿ(ÿ2(ÿN(ÿj(ÿ†(ÿ¢(ÿ¾(ÿÚ(ÿö)).)J)f)‚)ž)º)Ö)ò))$)@)\)x)”)°)Ì)è)) )<)X)t))¬)È)ä)))8)T)p)Œ)¨)Ä)à)ü)).)J)f)‚)ž)º)Ö)ò))*)F)b)~)š)¶)Ò)î) )&)B)^)z)–)²)Î)ê)))8)T)p)Œ)¨)Ä)à)ü))4)P)l)ˆ)¤)À)Ü)ø) ) 0) L) h) „)  ) ¼) Ø) ô) ) &) B) ^) z) –) ²) Î) ê) ) ") >) Z) v) ’) ®) Ê) æ) ) ) :) V) r) Ž) ª) Æ) â) þ) ) 0) F) \) r) Ž) ¤) À) Ö) ò)))4)J)`)|)’)¨)¾)Ô)ê))),)B)^)t)Š) )¶)Ì)â)ø))$):)P)f)|)’)¨)¾)Ô)ê))),)B)X)n)„)š)°)Æ)â)ø))$):)P)f)|)’)¨)¾)Ô)ê))),)B)X)t)Š) )¶)Ì)â)ø))$):)P)f)|)’)¨)¾)Ô)ð)))2)H)^)t)Š) )¶)Ì)â)ø))$)@)V)l)‚)˜)®)Ä)Ú)ð) )")8)N)d)z)–)¬)Â)Ø)î)))0)F)b)x)Ž)¤)º)Ð)æ)ü))()>)T)p)†)œ)²)Î)ä)ú))&)<)R)h)~)”)ª)À)Ö)ì))).)D)`)v)’)¨)¾)Ú)ð)))2)H)^)t)Š) )¶)Ì)â)ø))*)@)V)l)‚)˜)®)Ä)Ú)ð)))2)H)^)t)Š) )¶)Ì)â)))0)F)\)r)ˆ)ž)´)Ê)à)ö) ) ") 8) N) d) z) ) ¦Kµ·73#735#Kjj OO·· ÿü2·7#'3#"&54632*4ƒ© uV·7#'3#')E·BBBBŸ·73##7##7#537#5373373337#{#&  %  !$"%  $  !c%%p)6666)6666))ÿñ{Â!&7#5"'535&&546753&''5654N>'  64 #V.#. ÿþƹ '374632#"&74&#"3267#74632#"&74&#"326 9 `ef9 €K··€ÿþ°º$,7&54632673#'#"&5467654&#"'323&, # ( <1e. % ]3u)·7#')·BB ÿØE· 73#&540##&·2?>0+CDÿØC· #654'3##&(0>@1.CB OƒÃ77''7'7'S10/1Ã2) -- )2 !€” 7#53533##=0000Q000ÿß/7#67-"# :HO753 >:ÿü2 7#"&546322 ]·7#7]DD··· ÿþº 74632#"&74&#"326 ^\////////* +, Y·3#547'73Y" 0r& ~¹3#576654&#"'6323~r,  #V/ % ÿþ~¹"7#"'532654&##532654&#"'632Q-"!  `&   $ˆ¸ 7##5#5733#547#ˆTS14))){z, Lÿþ·7532654&#"'73#632#"  VB  "  V4 ÿþ¹!7&#"3632#"&54632"32654&t 8 !(( !·J )'65X  ·37#53#G_vF¢¥ ÿþ€º)7#"&547&54632654&#"32654&'Y'$3a       ÿþ¹!35327##"&54632#"72654&#" 7 "((!J )'65Xÿü2 7#"&54632#"&546322{  v ÿß2 7#"&54632#672{  f"# €œ7'57€ss\\5 <.( 7€}75353 sssk4 €œ77'5 \\ss2(.< 5ÿüe¹#754>54&#"'632#"&54632# 4    & ÿéз.97#"&5463232654&#"327#"&54632#"'&#"327‹  ' (/($,2;.(1  24 "(2+&)  2-1>2*"V'œ¸3'##73''&'„DCD399¸¸M5 5‘· 732##732654&##32654&#2$%*=!·"$iMBÿþ“¹7#"&54632&#"32Œ%*-& !//,1  '#$% ·3532#'32654&#3'-/*"!·/+-0£$$$#x· 3#53#3#3x__HCCH·8Ax· 3#53#3#0_HCC·@ÿþž¹73#"&54632&#"3275#b<!%,/* " %aZ 0.,1  &$$%6›· 3#5##53353›SSUU·MM M· 3#575'53MCC “ “ÿéÿÏ.· 5326553#"  .·´”· 3#'#5373”8HAWI·\\Px·3533H·¢Æ·3'##53373#547#d7"43#7 #m·••·o  ¢·3#'##533&553¢ZY—$c·—!dÿþ®º 74632#"&74&#"326*%$++$%*†\.01-.0//$%%$%%%†· 7#532#'32654&##0- "!GG·ÿÌ®º7&'#"&54632'4&#"326  %**%$+//.01-EE$%%$%%%”· 7#532#''32654&##0,! $2,LL·$ RL ÿþy¹!7532654'&'&&54632&#"#"   5        ‚·3#5#53#N44¢ÿþœ·7#"&55332655œ$#·v ## vww‘· 73#'367y==%···tà·736773#'&'#'367e .0·k#n·u u·oŒ· 3#'#7'373Œ--95)*5OO`WFFW‡·773#5'3C+88Z]pGFq €· 3#57#533€vYVpY\ÿØG·#53#3G22(ߺ]·7#'DD···ÿØ9·35#53#33ºßEƒ¸773#'5 <.(Ess\\ÿØjÿé#53jjj(1›bÄ7#&'53b › ÿþtŒ"3'##"&547754&#"'632'3265c:  *  ^C ÿþˆÃ7##533632#"72654&#"- Ã/ $##$ÿþnŒ7&#"327#"&54632n  !„##$$ÿþ€Ã7##"&546323'53#'54&#"326k##$$7Ã?ÿþ|Œ7#327#"&54632'34&#"|V" V>@  $""&!^Ä7##5#5754632&#"3Q   xxx    ÿÀŒ%1>7#"'332#"&547&547&546324&#"326#"32654&€ ""     ‰   +M  ‚Ã354&#"#533632l XGÃ:Z/½ 7#"&54632#53/®¶‰ÿøÿÃ/½ 7#"&546325326553#"/7 ®ð ž~à 773#'#53+525*GB;N? 5ÃZ"-Ã3#53-ÃÑŒ!354&#"#54&#"#5336323632º     XLXG‰Z‚Œ354&#"#533632l XG‰Zÿþ†Œ 74632#"&74&#"326!"!!`E"%&!#$%"ÿÈŒ7##533632#"'32654&#"-  :Æ$##$LÿÀŒ7373#57##"&5463254&#"326jwÆ:##$$MaŒ7&#"#533632a ‹J‰ ÿþhŒ7532654.54632&#"#"  -  .        ÿþR©7#"&55#57733#32R  ##  O  O ÿþ‰3'##"&553326553o  YXG‰{‰ 3'336773// /‰LL‰¼‰3'&'##'33677336773~##M$t‰IMMI‰{‰ 7'373#'#3,,.""FC33CF77ÿÃ|‰7336773#"'53277  6  ‰LL› g‰ 3#57#533g]C?VADhfÿØT·3"&554�"?   *  ) )=ÿÃPÃ73#=ÃÿÿØS·7475&5543"#5265  ') )  *  I€k75632327#"&#"  #   $ I  ÿÑ2Œ 74632#"&3# z  „$~‘'7'76327'#"''7&544&#"326           N  u           ÿÿlÄ*57&54632&#"#"'532654&'&&54654&'%   9 …        4   &¢m» 7#"&54632#"&54632?.® bH¹7'#"&547354&#"'632'32655=  #    d  8' ÿÿ :HO ÿþɹ &/7#"&546324&#"326'#'##532'32654&##É8&'77'&8/!"//"!/@  2 [&77&'77'"//"!///,,o k^¹ 7#"&546324&#"326^  ’   €” 7#53533##53=00000sQ000!IN¹7#576654&#"'6323NH  2I   GM¹"7#"'532654&##532654&#"'6327   ƒ    1›bÄ7673#1  ŸÿàÃ#5##5#"&54633 G ÏÏf !I2l 7#"&546322Z  ÿÃ3532654'73#"  <   I7· 73#547'& ·nA bQ¹ 74632#"&74&#"3269 ޱ·7#7#3#547'##5#5733#547–ef] ©//!···nA ‡HF 0´·%7#7#3#547'#576654&#"'6323”fe\ ¯G  1···nA Ÿ   º¹"&187#"'532654&##532654&#"'6327#7##5#5733#5477   Xee,./"ƒ    -··ŸHF  ÿÏiŒ #74632#"&327#"&54>550 z       Ë·3#5##73#3#3'35#Ë_<RyHCCH’399·8A8U · 73532##5#73#32654&#3'-/*.***"!eR/+-0PS><$$$#&| 7'77''9' ') (' )' Z( '' )( '' ÿ÷®À#7#"''7&5463277&#"732654£ +$  *% ]H cI ¶..0 1.0 ™w%$"Uv%% †· 7#5332#'32654&##0 "!((· ÿþÄ+7532654.54654&#"#54632#";  ! #$    ––  ÿÿ ÿþtÄ&DCóÿÿ ÿþtÄ&Dm ÿþÉŒ#)4754&#"'632632#327#"'#"&547734&#"3265] ! T" :/; S  !  *6 ÿÿÿþ|Ä&HCóÿÿÿþ|Ä&Hm ÿþ¥Ä &7#&'#57673#327#"&54632'34&#"¥  )V" V>› _  $""&!ÿÿÿý.Ä&•CÌÿÿIÄ&•mçÿþ†Ä&73&''7&'77#"&5463232654&#"l    &!!;k  $:$&! >ÿÿÿþ†Ä&RCüÿÿÿþ†Ä&Rm  €– 7#"&5463253#"&54632UHs+†="ÿ÷†’#7'7&546327#"'7&#"732654.  !  !2 D2  !"%  #$&Q6PÿÿÿþÄ&XCõÿÿÿþÄ&Xm ÿÿÿþ»&XeÿÈà 7632#"'##332654&#"-  w$##$::-ÿÿ ÿþt®&D§þÿþ”Ã&7##"&546323'5#53533##'54&#"326k00"""#›=ÿÿÿþ|®&H§ÿÿÿþ|Ä&H¦´·7533533##5##5#55#SSƒS˜†UU†.‚Ã354&#"#5#53533#3632l// SB›UÿÿÿþF®&•§Û-‰3#53-‰ÿÿ ÿÏ…·&,-WÿÿÿÃq½&LMB~‰ 3'#5373d*725= 3‰#F=Lÿÿx·&/©<®ÿÿUÃ&O©&¨x· 75373#5' &H_ UbT9?ÿÿDà 7537#5'  _dUXIÿÿ”·&Q#ýÿÏ¢·53265'##533&553#"^ _Y .—$c·’d´ÿÂŒ5326574&#"#533632#"M  : mG‰nÿÿÿþ†®&R§ÿþÕº3#"&546323#3#3'5&#"32Õ_%**% _HCCH_  //.08A‹%$%%ÿþÜŒ&,7#"&54632632#327#"'4&#"32674&#"z !!V!V%""%!  F)&‚·75#53#3##5#5744%%%f<<TTÿþR©7#"&55#535#57733#3#32R  ##!!     ÿÿÿþ®&X§ ›sÄ 7#&''53673s  Á  #›k®73##HH®$›o¾ 7#"'3327o## ¾##  /½ 7#"&54632/®.›fÑ 74632#"&732654&#".   ¶   ÿÈ,#"&547332,  (  ›xÄ7673#7673#  -   Ÿÿÿœ¸$ÿÿ‘·%x·7##5xH·¢·· 7#5733'&ˆ8  V ¦_^ÿÿx·(ÿÿ €·=ÿÿ›·+ÿþ®º 74632#"&74&#"326'3#*%$++$%*†XBB\.01-.0//$%%$%%%0ÿÿ M·,ÿÿ”·.‘· 3#'&'#73‘%%=st·ÿÿÆ·0ÿÿ¢·1 ~· 73#3##5jj TTdt·8Aÿÿÿþ®º2˜·3#5##53˜Q¢¢·ÿÿ†·3 ‚· 357'53#3 43pU14_MDBKÿÿ‚·7ÿÿ‡·< ÿþ·¹'7332###5#"&5463332654&+"33W #$%$ ¹&&&&vÿÿŒ·; ··7###5#"&5533353326553·$ ${$88$=<kk= µº7#53&546323#5654&#"TJ,&*%%*%,J+5',,'588ÿþ’Œ(73673327#"'##"&5463254&#"326k w "4##$$IÿÃÄ'7#"'#5463232654&##532654&#"b-Y h-BÆ%T ÿÃ|‰7#47'336773L  4  '‡HIÿþ†Ä$7&54632&#"#"&54732654C   ! D,u   !. ( ÿþlŒ#7#"327#"&5475&54632&#"3TQ     ÿÎmÃ753#654.5467#WG ,  '*¯A6   5)ÿÂŒ54&#"#533632l =•G‰—ÿþƒÅ 74632#"&73&#"#326G!!EGb1221221?DW%&&ÿþO‰ 7327#"&55+  ‰` `ÿÿ~‰˜ÿþÿþƒÄ#7'&&#"5632327#"''&'7  )  † y5 Hÿ‰7326553#'##"'#53-   1G‰ (Æz‰ 536653# ‰J5-.?ÿÎmÃ*7#"#654.54675&547##53#"3d -%$ Po     ÿÿÿþ†ŒRÿþ™‰7#"&55##5#573#32• 2…Xvv VÿÆŒ7#54632#"'32654&#"+  "$‚"%%"#$ ÿþ‘‰ 7##"&5463#"32654‘"! ##‰##!#$!ÿým‰7#327#"&55#57m/ %‰L N ÿþˆ‰7332654'3#"&5‰I  '& ÿÃ¥Œ5&547546325654&#"M?($*  =;D%! /L$!!';M2ÿþÿÃ…Š773327#"&''#7'&#"5632F$2 )8   @Ia< -Og8ÿîÂ7654'3#5&5535k,C@*±1##E;;EDE0²ÿþ³‰#7332655332654'3#"'##"&54  ‰"$&&$""$"##"$ÿÿxå&(e*ÿÿœ¸$†· 353#32#'32654&##bK"! ·8ÿÿ‘·%ÿÿx·¯ÿС· #5##536733#5#¡s(M/!#000EMU¢GFÿÿx·(з7'35373#'#5#ECAABDBB^YYYYYY^]]]] ÿþ~¹"7#"'532654&##532654&#"'632O/#" !`%   $¢·73373#547##YZ·d *—·c—¢í 7#"&'33273373#547##‹. \YZí( 6d *—·c—”· 3#'#5373”IGG]]·YYXÿý’·3#5##"'532673’/  Z¢y,)~ÿÿÆ·0ÿÿ›·+ÿÿÿþ®º2ÿÿ˜·¼ÿÿ†·3ÿÿÿþ“¹&ÿÿ‚·7ÿþ–·7#"'53267'3677–6 B4'·" ˆq cÿÿ ÿþ·¹ÁÿÿŒ·;ÿЮ· 73#5#53353˜QE0·¢¢·3#5#"&55332753K IF Yæ· 3#53353353æÍDD·¢¢¢¢ÿÐü·73#5#53353353æÍDDE0·¢¢¢¢›· 35#5332#'32654&##-*A"" !¢Mº· 35332#'32654&##53"! s·MU··†· 35332#'32654&##"! ·Mÿþ‰¹7'632#"'5327#53&&#" %-,'<ON› /+01Dÿþôº7##533632#"&74&#"326Z*+E#**#")UU·MP1-.0+3$%%$%%%~· 7#7&54633#55#"33H)0" .LLR '·LWÿÿ ÿþtŒDÿþ„Ä!73632#"&54767632654&#"9   Ä  !#**0f!!ƒ‰ 7##532'32654&#32654&#b!98R ! I‰(% 8+ a‰7##53a4Kvv‰ÿЇ‰ #5##536533#5#‡V !C*000C1Eve=(ÿÿÿþ|ŒH¸‰75373#'#5#7'3R45:8895GBBBBGFFFFGB ÿþjŒ#72654&#"'632#"'532654&##5.Q    ‡‰ 773#57#5+@@‰S s‰Q"s‰‡Ã 7#"&5332773#57#5~. >@@Ã( :S s‰Q"s‰}‰ 73#'#53_497‰BGFF‰Bÿþv‰3#5##"'53273v  JvH0z¢‰3#5#'#5373¢!*++p Vpp‰ss‡‰ 7353#5##5-DD‰99‰==‰ÿÿÿþ†ŒR‚‰3#53#5#-l?‰‰vÿÿÿÈŒSÿÿÿþnŒFl‰7##5#53l((gvvvÿÿÿÃ|‰\ÿäÃ7#5&&54675357654d""#")>)‹&%;;&%8²g00cg0/ÿÿ{‰[ÿЖ‰ #5#533533–j?00‰vvv€‰732753#5#"&55* ‰3 :‰=4ɉ 7353#53353{7³7v‰‰vvÿÐ݉#5#533533533ݰ7700‰vvvvv ‰ 732##5#5332654&#I#9-D!QvK+ ª‰ 732##5332654&##53-4cQ‰K+ >‰ƒ‰ 732##5332654&#-"9 Q‰K+ ÿþhŒ75327#53&#"'632#"'<;"  #,($$"$ÿþÁŒ7##533632#"&74&#"326O""3 Z==‰9<&!#$ 'r‰ 3#7&54633#5#75#"3%7 :‰6- ÿÿÿþ|»&Heü :vO753 l::O55!: :öO753 ì:x*·7'673 x"%x*·7#67( ·"&xZ· 7'673#'6735 I x"%"%xZ· 7#673#67( I ·"&"&mà 7'#75'37m)'')|€€55pÃ77'#75'75'37'F********>//$#//#ÿü» #7#"&54632#"&54632#"&546322ED    ÿþ¹ '3?K74632#"&74&#"3267#74632#"&74&#"32674632#"&74&#"326 9 `ef9 9 €K··€ t4¹7'74 ±=@ ta¹7'7'74 D ±=@=@ÿþ‰¹!73#3#327#"'#535#536632&#"3681. %8 $ $u-A""  +ÿÿÕ¸%17&#"327#"&54632#74632#"&74&#"326m   Yfe9 ´··Pÿþ°¹#73#"&555675463232'654&#"¤ "  + &*,>-%Q$ ì·'+3#'##533&5534632#"&74&#"32653ON7 2>—$c·—"di@-]Ó·7#5#53#'#5373#55VBH]LLDDZEEZ5Dÿÿ µºÄÿþ±·",77#7#3#547'#"&547&54632654&#"32654'eeZ ™   ···nA e        ÿþ¹¹"&:DO7#"'532654&##532654&#"'6327#7#"&547&54632654&#"32654'8   Rfe   ƒ    -··}        ÿþ··1;F7#7532654&#'73#632#"#"&547&54632654&#"32654'›fe 7(   ···i 5        ÿþ±· (37#77#53#"&547&54632654&#"32654'‹efg(4G(x   ···n^ a        Bÿþ¾¹#7554&#"5632#"&54632&#"326§ &  l ""7$#,)$#:ÿÃÆ·5##53¯^Œ=ßßôô6ÿÃÊ· 57'53#36NL‰hGJt=rf_l6ÿþÊÔ#'#5373€"%@bRµ42Ì‚'7#"&54632632#"'&#"32732654&#"€    N(  ÿÃoÃ7&#"#"'5326554632o    À¥¥F/º…75632327#"&#"5632327#"&#"F  #   #  $   # c  C   €¡7#537#5373#3#',(7? (7@7!$!"Fºœ 7'5753ºtt\\tt< </.+Fºœ 77'553F\\ttt+./< <pÿü·7#'3#"&54632ˆ4ƒ© ]u£·7#'3#'vF·BBBB4Ì·73##7##7#537#5373373337#¨#&  %  # #&  %  b$$p)6666)6666))Jÿñ¶Â!&7#5"'535&&546753&''5654‰>'  64 #V.#.ÿþâ¹ '374632#"&74&#"3267#74632#"&74&#"3269 ffe8 €K··€7ÿþÙº#+7&54632673#'#"&547654&#"'32\&, #8 <1e. %  ]3tuŒ·7#'Œ·BBbÿؼ· 73#&&546¤BB%%·(IG' =$%=DÿØž· #654'3\BB%%('GI(=%$=:JÆÃ77''7'7'<9&&9;Ã2. 22 .2F!º” 7#53533##w1111Q000lÿß”7#67’ "#a:ŸO753a>:pÿü 7#"&54632 B¾·7#7¾cc···Fÿþºº 74632#"&74&#"326F]\////////* ++ S–·3#547'73–" 0r&G¹¹3#576654&#"'6323¹r, #V/ %Fÿþº¹"7#"'532654&##532654&#"'632-"!  `&   $<Á¸ 7##5#5733#547#ÁUS04))){z, LIÿþ··7532654&#"'73#632#"I  VC  "  V4 Fÿþº¹!7&#"3632#"&54632"32654&¬ 7 "(( ·J )'65X E»·37#53]F^vF¢¥Gÿþ¹º)7#"&547&54632654&#"32654&'“&#4  a      Fÿþº¹!35327##"&54632#"72654&#"T 7 "(( !J )'65Xpÿü 7#"&54632#"&54632{  v hÿß’ 7#"&54632#67’ {  f"'Fºœ7'57ºtt\\< </.F7º}75353Ftttk4Fºœ77'5F\\tt+./< <Gÿü·¹#754>54&#"'632#"&54632n   $4    & ÿéá·.97#"&5463232654&#"327#"&54632#"'&#"327œ  ' (/($-2;.(1  24 "(2+&)  2-1>2*"V'-Ó¸3'##73''&'ºIHH699¸¸M9 9DÄ· 732##732654&##32654&#D:#%* D&$)·"$iMB9ÿþǹ7#"&54632&#"32À)-1) $ !0.+2  '#$%=η3532#'32654&#=='-/*!"!·/+-0£$$$#Fº· 3#53#3#3ºtt\WW\·8AFº· 3#53#3#^t\WW·@4ÿþ̹73#"&54632&#"3275#‹A#).2.  %#"*aZ 1-+2  &$$%6:Æ· 3#5##53353Æ^^UU·MME»· 3#575'53»v//v//““@ÿþ©· 75326553#"@" DÏ· 3#'#53773ÏEFNVH·]JSP¿·3533PW·¢*×·3'##5373#547#u7"44#8 #m·••·o  4Ì·3#'##533&553Ìlk—$c·—!d,ÿþÔº 74632#"&74&#"326,,('--'(,\.01--10.$%%$%%%IÆ· 7#532#'32654&##a= "!"#GG·,ÿÌÔº7&'#"&54632'4&#"326  #" (,,('-"0..01-FF$%%$%%%BÍ· 7#532#''32654&##ZD  ÿøåÁ "*57#"&546324&#"326'##5#5733#547##547'73å<))<;**; 6%%66%%6 32   \);;)*;;*%66%%55 JI-%D  ÿøåÁ ">7#"&546324&#"326#547'73532654&#"'73#632#"å<))<;**; 6%%66%%6x     4( \);;)*;;*%66%%55D  i  3 ÿøåÁ -9D7#"&546324&#"326'&#"3632#"&54632"32654&#547'73å<))<;**; 6%%66%%6*! ?   \);;)*;;*%66%%55[ -  5   :D  ÿøåÁ ")7#"&546324&#"326#547'737#53å<))<;**; 6%%66%%6x   +9F)\);;)*;;*%66%%55D  ma bÿøåÁ +5@H7#"&546324&#"326'#"&547&54632654&#"32654'#55'73å<))<;**; 6%%66%%69   5  \);;)*;;*%66%%55(         3D ÿøåÁ .:E7#"&546324&#"32653265##"&54632#"72654&#"#547'73å<))<;**; 6%%66%%6_  (   \);;)*;;*%66%%55   5   3D  ÿøåÁ #/G7#"&546324&#"326'4632#"&74&#"326#576654&#"'6323å<))<;**; 6%%66%%6[8 >?   .\);;)*;;*%66%%55%   ÿøîÀ 73#&54#654'3'#547'738 $$ &· #$ %e  À,97,'<= ,79,(=<D  ÿøîÀ +73#&54#654'3'#576654&#"'63238 $$ &· #$ %LD  3À,97,'<= ,79,(=<   ÿøîÀ 673#&54#654'3'#"'532654&##532654&#"'6328 $$ &· #$ %g    À,97,'<= ,79,(=D  ÿøîÀ &173#&54#654'3'##5#5733#547##547'738 $$ &· #$ %1 32   À,97,'<= ,79,(=< JI-%D  ÿøîÀ :73#&54#654'3'#547'73532654&#"'73#632#"8 $$ &· #$ %‹     4( À,97,'<= ,79,(=<D  i  3 ÿøîÀ )5@73#&54#654'3'&#"3632#"&54632"32654&#547'738 $$ &· #$ %=! ?   À,97,'<= ,79,(=?   .À,97,'<= ,79,(=<=   ÿÿ8ÿüÁ·&PåM1ÿÿ2ÿü×¹&QëMGÿÿ1ÿü×¹&RëMGÿÿ'ÿü׸&SëMGÿÿ4ÿü×·&TëMGÿÿ1ÿü×¹&UëMGÿÿ2ÿü÷&VíM3ÿÿ2ÿü׺&WëMGÿÿ1ÿü×¹&XëMGÿüïº ".74632#"&74&#"326#547'73#"&54632^Sg '¥\////////++,0r© ÿÿ ÿüå·&P¸&MUPÿüï¹".3#576654&#"'6323#547'73#"&54632Ãi(    My '¥/ %r© ÿüí¹"-97#"'532654&##532654&#"'632#547'73#"&54632œ*   v '¢`&   &fr© ÿüï¸ )7##5#5733#547##547'73#"&54632ÍJI,*$ (¦)))|z,  G>r© ÿüï· %13#547'73532654&#"'73#632#"7#"&54632K '  Q=  ~r° V4 ÿüï¹"-97&#"3632#"&54632"32654&#547'73#"&54632º   %%  Z (¦·%% ((65Xar© ÿüì· 3#547'737#537#"&54632R  0+ATlAWr &·¢¥ ÿüïº)4@7#"&547&54632654&#"32654&'#547'73#"&54632¡&#1   H (¦a      Ur© ÿüï¹!,835327##"&54632#"72654&#"#547'73#"&54632j 3 &%  : (¦J ((65XVr© ÿüôº /;74632#"&74&#"326#576654&#"'6323#"&54632pN  Qf&   K‡\////////++,0/ % ÿøîÀ +673#&54#654'3''##"&547354&#"'632'#32658 $$ &· #$ %W )   À,97,'<= ,79,(=<   8( ÿøîÀ %173#&54#654'3'##533632#"72654&#"8 $$ &· #$ %€   À,97,'<= ,79,(=< t  ÿøîÀ )73#&54#654'3'&#"327#"&546328 $$ &· #$ %L    À,97,'<= ,79,(=:ÿüw 7#"&54632#"&546322E  I2l 7#"&546322Z  ÿýWœm7#53œŸŸWÿýNœy7#53œŸŸN+BÿÈXÿ#3X877ÿÈcÿ#3c,,87ÿýYœn 7#53#53#53œ'';((<((YÿýNœy 7#53#53#53œ'';((<((N+++++BÿÈXÿ 7#53#53#53X¥ZÈYÈZ7ÿÈcÿ 7#53#53#53c,,,,,,¥ZÈYÈZÿýYœn 7#53#53#53#53œ,--YÿýNœy 7#53#53#53#53œ,--N+++++++BÿÈXÿ 7#53#53#53#53XÁ>‘>‘>‘>7ÿÈcÿ 7#53#53#53#53c,,,,,,,,Á>‘>‘>‘>BÿÈœn7##53œDZY‘¦BÿÈœy7##53œDZN†±7ÿÈœn7##53œ9,eY‘¦7ÿÈœy7##53œ9,eN†±ÿýÿÈXn#5#53XE[8‘ÿýÿÈXy#5#53XE[8†+ÿýÿÈcn#5#53c,:f8‘ÿýÿÈcy#5#53c,:f8†+BYœÿ7#533œZDY¦‘BNœÿ7#533œZDN±†7Yœÿ7#533œe,9Y¦‘7Nœÿ7#533œe,9N±†ÿýYXÿ7#5353X[EY‘ÿýNXÿ7#5353X[EN+†ÿýYcÿ7#5353cf:,Y‘ÿýNcÿ7#5353cf:,N+†BÿÈœÿ7##33œDDY‘7‘BÿÈœÿ7##33œDDN†7†7ÿÈœÿ 7##5#533œD ,9Y‘‘¦‘7ÿÈœÿ 7##53533œ9, DY‘¦‘‘7ÿÈœÿ7##33œ9,,9Y‘7‘7ÿÈœÿ 7##5#533œD ,9N††±†7ÿÈœÿ 7##53533œ9, DN†±††7ÿÈœÿ7##33œ9,,9N†7†ÿýÿÈXÿ#5#5353XEE8‘‘ÿýÿÈXÿ#5#5353XEE8†+†ÿýÿÈcÿ 7##5#5353c E:,Y‘‘‘ÿýÿÈcÿ #5#53533c,:E 8‘‘‘ÿýÿÈcÿ#5#5353c,::,8‘‘ÿýÿÈcÿ 7##5#5353c E:,N††+†ÿýÿÈcÿ #5#53533c,:E 8†+††ÿýÿÈcÿ#5#5353c,::,8†+†ÿýÿÈœn7##5#53œDEŸY‘‘ÿýÿÈœy 7##5#533œDE[DY‘†+ ÿýÿÈœy 7##5#5353œDEEZN†‘ ÿýÿÈœy7##5#53œDEŸN††+ÿýÿÈœn7##5#53œ9,:ŸY‘‘ÿýÿÈœy 7##5#533œ9,:f9Y‘†+ ÿýÿÈœy 7##5#5353œ9,::eN†‘ ÿýÿÈœy7##5#53œ9,:ŸN††+ÿýYœÿ7#53533œŸEDY‘‘ÿýNœÿ 7##53533œD[EDY +†‘ÿýNœÿ 7#5#53533œZEEDN ‘†ÿýNœÿ7#53533œŸEDN+††ÿýYœÿ7#53533œŸ:,9Y‘‘ÿýNœÿ 7##53533œ9f:,9Y +†‘ÿýNœÿ 7#5#53533œe::,9N ‘†ÿýNœÿ7#53533œŸ:,9N+††ÿýÿÈœÿ 7##5#53533œDEEDY‘‘‘‘ÿýÿÈœÿ 7##5#53533œDEEDY‘†+†‘ÿýÿÈœÿ 7##5#53533œDEEDN†‘‘†ÿýÿÈœÿ 7##5#53533œDEEDN††+††ÿýÿÈœÿ 7##5#53533œDE:,9Y‘‘‘‘ÿýÿÈœÿ 7##5#53533œ9,:EDY‘‘‘‘ÿýÿÈœÿ 7##5#53533œ9,::,9Y‘‘‘‘ÿýÿÈœÿ 7###5#53533œ9 E:,9Y ††+†‘ÿýÿÈœÿ 7##5#5#53533œD ::,9N†† ‘†ÿýÿÈœÿ 7##5#535333œ9,:E 9Y‘†+†† ÿýÿÈœÿ 7##5#5353533œ9,:: DN†‘ ††ÿýÿÈœÿ 7##5#53533œDE:,9N††+††ÿýÿÈœÿ 7##5#53533œ9,:EDN††+††ÿýÿÈœÿ 7##5#53533œ9,::,9Y‘†+†‘ÿýÿÈœÿ 7##5#53533œ9,::,9N†‘‘†ÿýÿÈœÿ 7##5#53533œ9,::,9N††+††ÿýCœ„7#53#53œŸŸŸŸnA,ÿÈnÿ#3#3n,87þÉ7BÿÈœ„ 7##53#3œDZDDC{¼,ÿÈœn 7##5##53œ.pY‘‘‘¦,ÿÈœ„ 7##53##53œZp.Dn¦¼A{‘ÿýÿÈX„ #5#535#53XEEE[8{ÿýÿÈnn #5##5#53n/q8‘‘‘ÿýÿÈn„ #5#53#5#53n[q,/E8¦¼{BCœÿ 7#533#3œZDDDC¼{,Yœÿ 7#533533œp.Y¦‘‘‘,Cœÿ 7#533#533œD.pZn‘{A¼¦ÿýCXÿ 7#535#5353X[EEEC{ÿýYnÿ 7#5353353nq/Y‘‘‘ÿýCnÿ 7#5353#5353BE/,q[n{¼¦BÿÈœÿ 7##33#3œDDDDC{7{,ÿÈœÿ 7##33#3œ..ZY‘7‘¦7,ÿÈœÿ 7#533#3##53œD.ZZ.Dn‘{¼7¼{‘ÿýÿÈXÿ #5#535#5353XEEEE8{{ÿýÿÈnÿ #3#5#5353n,//87þÉ‘‘ÿýÿÈnÿ 7#5353#3#5#53BE/,,/En{þÉ7þÉ{ÿýÿÈœ„ 7#53##5#53œŸŸDEŸnA{{ÿýÿÈœn 7##5##5#53œ./ŸY‘‘‘‘ÿýÿÈœ„ 7#53##53#5#53œŸŸ.DZ/EnA{‘‘{ÿýCœÿ 7#53533#53œŸEDŸŸn{{AÿýYœÿ 7#53533533œŸ/.Y‘‘‘‘ÿýCœÿ 7#533#5353#53œD.ZE/ZŸŸn‘{{¼ÿýÿÈœÿ7##5#535#53533#3œDEEEEDDDC{{{{ÿýÿÈœÿ7##5##5#53533533œ.//.Y‘‘‘‘‘‘‘‘ÿýÿÈœÿ 7#533#5353##53#5#53œD.ZE/Z.DZ/En‘{{¼{‘‘{Bn7"#463(5&Y)%5ÿýXn7#44X(&5)5ÿýYX³7#5265X6%(³%5)BY³7"&533&5(Y5%)š°7'7šŠŠ¡ŠŠš°7'7šŠ&Šš° 7''7'77š==>>==>&===>==>ÿýYBn7#53BEEYÿýÿÈœÿï53Ÿ8''ÿýÿÈœ53Ÿ8NNÿýÿÈœ=53Ÿ8uuÿýÿÈœc53Ÿ8››ÿýÿÈœŠ53Ÿ8ÂÂÿýÿÈœ±53Ÿ8ééÿýÿÈœØ3Ÿ8þðÿýÿÈœÿ3Ÿ87þÉÿýÿȆÿ3‰87þÉÿýÿÈsÿ3v87þÉÿýÿÈ`ÿ3c87þÉÿýÿÈMÿ3P87þÉÿýÿÈ:ÿ3=87þÉÿýÿÈ&ÿ3)87þÉÿýÿÈÿ387þÉ'ÿ¼š  #'+/37;?CGKOSW[_cgkosw{ƒ‡‹“—›3#73#73##3#73#73#'3#73#73##3#73#73##3#73#73#'3#73#73#'3#73#73##3#73#73##3#73#73#'3#73#73##3#73#73##3#73#73#'3#73#73#33€34M33€34M33€34M33€34M33€34M33€34M33  ÿ½š #'+/37;?CGKO#5##535#535#535#535#535#535#53355#5#5#5#5#5#5#5#5#5#5#šM443LLLLL þ²4ÿýØœÿ'53ŸØ''†ÿÈœÿ3†87þÉ)„—7#5„n—nn)„—7#5#3„nd[[—nn \)„— 7#5#3'#5„nd[[.—nn \E--)„— 7#535#5#5#5#„nn [[[[[[[)n)„— 7#5#37#37#37#3„n—nn \\\\\\\)„— #'+/37;?C7#535##5##5##5#5##5##5##5#5##5##5##5#5##5##5##5#„nn    [   [   [   )n)„— 7#535#5'#5'#'#'#'„nn 0>NU?1 )n1U?\U?1)„— 7#53#7#7#75375335„nnW1U?[T>0 )n 1?8U1)„— !%*.258<AFKPSVY\_7#53#'#'#'#'#5#'5''''''''75#''75''''3''375#''#'3'„nn    PT[   A  ?T9 - < A  >TU@*)n           6ƒœ7#7ƒl66f6ƒœ7#7'ƒl6&&'6f\HH#*‰–75‰f`6l#*‰–75'‰fRI`6l6&L$ƒŠ7'ƒ66Šff$ƒŠ7'#ƒ66\M'Šff I*w–7'7wgg*66*w–7'75wgg H*66\L&%ˆ›7'7ˆ;;;`;;;%ˆ›7'7'ˆ;;;--..`;;;;...%ˆ› 7'7'7'7ˆ;;;--..`;;;;....)„— 72#"&5462654&#"M  —   e)„— #/7"&54632'"32654&"&54632'"32654&M       )   eI  -   )„— 74632#"&   `  )„— 74632#"&2654&#   7`  )„— 7"&54632'5"M  )   \)„—7#„n—n)„—7#nn—n)„—75„n—nn)„—7'„n—nn•¨ 7"&54632'"32654&M****$$%%****†$$$$ÿ÷êÀ 77'373€D@PP?&/N/LL/Nÿ÷êÀ 77'373'7'7#'€D@PP?,00-7&/N/LL/Ns!7""7!77ð·#'+/37;?CGKOS7"546332##'&&##3#5735#"73537#3#3#'#3'#37#3#33'#37#3#33'#37#3#3 ,> ?+ ' $ž$3->F2!O9%Z€  yy   ,ð·37=AEIMQUY]aeim7'&&##3#5735#"#"546332#'763323254&##"373535'3#3#'3733#'3#3#'33#'3#3#'33#'3#3#'3¾ $ž$' ,> ?+ ªT '< <'U2 Œ EC'L-V3b€  {{     s s #á”48>HR]7/###"''57#"&5433632?3'732654&#"7'337'#"'32'#"'32'##"'32É  Q  ~ q ³  #     #  6   q?!HI )    #ã”48>HR[75363232###"'#"'767254''&&#"33654'75'265#3277#"3277#"3277  Q  $  # Ž J (    #q   6  ;"H      J¶º!7#535&&546323##74&#"326w!!, + . ƒJÿþ¶·73'#"&5475'4&#"326|+ - Q·* */* Y0н7#"'#575#"&5466€ :  D  9½7  $$  7ÿøâ»#.54632632>54&#"&#"€A?<>A""A =! ?0й7#"'#575#"&547&54632§) D)€$ $$ $  ,ÕÀ17#"'#575#"&54665'532654&&'327€ 9 N  :+ 8 8 À0 2¥, 4 4 ,ÿøâ».54632632€A?A""A,Õ¾=7#"'#575#"&547&546325'532654'654&#"327¬) N (*+ƒ$$ƒ ,"  ", ÿþêº:W763654&547654&547#"&547654&547#67&##67"#6732654`     80::0@ W    2+22+­ -   ,  ,  -  ,    - €      aÿþŸ· 753#"&54“  <{“ "Eÿþ··753'654&'#"&54x 0 <{ ) u "%ÿþ¹·7#"&5475##"&5475335#¹ 3K 2bVKK$ "@X "{)Wÿü°Ã 7632536654&#"c 0)  V,Ǽ" Jÿÿ¶·7575575375377#5#775e $  $ $$#  * #$ ) +&(A*2ÿìI7#67H 6ÿþJ7#"5432J  1ÿìJU7#"5432#67J  J C6ÿþJU7#"5432#"5432J J M #ÿþ\o754>54&#"'632#"54325       6ÿþJn 7#'3#"5432D  Of .ÿèRn 73#&54E  n&%().ÿèRn #654'3;  %')()ÿèWn3"&554�"J    )ÿèWn7475&55443"#52656      +ÿèUn'57U**WJ+ÿèUn75'5+** JWnn73##7##7#537#5373373337#X    ;C  !!!! ÿÿvo#+7&54632673#'#"&547654&#"'32+    !$ =       8  /du77''7'7'G u  cY 7#53533##:  1  1c<753F1 c^7'57cFF88 % c^77'577FF % !cK75353FFF@  %[n7#'2) )nnn ÿ÷`u#7#5"'535&547532&''5654E      %  !  3  ÿÿxo '374632#"&74&#"3267#74632#"&74&#"326 ":= = "M -nnM ÿðzk,77#"&5463232654&#"327#"&54632#"'&#"327Q  #  $ %4 t/¹7' ¹@=IR¸ 7##5#5733#547R./"aIG  ÿÿ ÿþtÄ&D¦üÿÿÿøKÄ&•¦Øÿÿÿþ†Ä&R¦ÿÿÿþÄ&X¦ÿÿÿþÝ&X&e§/ÿÿÿþî&X&em*ÿÿÿþî&X&e¦*ÿÿÿþî&X&eCò* 7‰7'#77--‰##‰#ÿÿ#›k®§ÿÿ1›bÄmÿÿ1›bÄCÿÿ#ÿÙkÿì§ÿ> ¦° #/;7''7'77'"&54632"&54632#"&54632"&54632¦FGFFGFF&]&MMNMNNM+  ,dQ¹754&#"#53632A    d4 +S 6/ÿÃÑÃ/7&#"#"'5326554632&#"#"'5326554632Ž    I    À¥¥¥¥ÿÃpÃ%*/754632&#"#"'532655&&54665455    &(s#!(&6.6=ÿüà #7#"&54632#"&54632#"&546324gq  l  =ÿüà #7#"&54632#"&54632#"&54632\g3q   l pÿüƒ 7#"&54632#"&54632q  l =ÿüà #/7#"&54632#"&54632#"&54632#"&54632\gggq   l  ÿÿFI¹ka9ó· 3#575'5373#'367XBB‚==% “ “ª··tÿÿÿÊ78qÿÿÿÊN:kÿÿÿÈM:lÿÉR8 ##5#5733#547R./"IG  ÿÿÿþï¹&i&\ÿÿâ¹&i)j]ë· 7#3#3#53#5#53#3#53¢'!!(87_L€(8© ZZL? Zÿÿ2Îá&$2ª6ÿþ²·17#7#3#547'#"'532654&##532654&#"'632‘efX ”   ···nA e    ÿþ¸¹=7#576654&#"'63237#7#"'532654&##532654&#"'632LG  1Qfe   I   ^··}    M²· 3#575'53²e((e&& “ “,Õ· 3#575'53'5#Õ©##©##:5 “ “““ ÷· 3#575'53'5##5#÷î!!î!!;13 “ “““““ÿÿ8É·98 ë· 775'53#'6773#'3©BB^%=> “ “ Dt··ô·3'373#575'75#70%}-w ·j› “ “ª““ü·3'373#575'75#735.+ ¢ )c/·›› “ “ª“““““ñ· 3#575'53#'#7'373XBB™,.95*)5 “ “ OO`WFFWÿÿ:Æ·;:ë· 775'53#''373#'#¨CC`5*)59., “ “ `WFFW`OO ó·7#'#7'3775'5#ó! -)#u · “ JJ`WAAª“JN““I·Â 7#"&54632'53#57!8,n+´Dw é '7#"&54632#"&54632'53#575'533¿[B"9,É+!8D´Dwewð #97#"&54632#"&54632#"&54632575'5335'5335'53A‚¼!.*.*."´»ewewew8lj 3'36773q9#  #9‰V V‰:Ɖ 7'373#'#s6)*69,,FC44CF88ï !7#"&54632'53#57'336773K)Og9#  #9´Dw‰V V‰ñ !7#"&54632'53#57'334773Ö)Ot9#  #9´Dw‰V V‰ú #37#"&54632#"&54632'3367733575'5335'53«:³- --&#'´»‰V V‰ewewû #C7#"&54632#"&54632#"&54632'33677335'5335'53#575'ò12b(0 ! ! ‘ $´»‰Q Qweweweyè !7#"&54632'53#577'373#'#O)Pi, ,/"!´Dw4C33CF77Pÿþ°¹7##5&54753&#"32® // 2?@B¾¹7&#"3#3#5655#5354632¸//]|¯ $ (F!ºd7#5#5ºadC0wÿÉÃ73#3#wÃb=a2η7733#3##5#535#53'3€39&//////%8Z]`!!`#ÃÝÔ7#53ݺºÃ* Öx73##"''&5477632R„„++H "'' ÿÃwÃ7#5#"5477632#"'F "''š××++* Öx7#53'&5432#"547®„„++; "'' ÿÃwÃ537632#"''&5432: #''ØØ++ áx)7##"''&54776323'&5432#"547¹r++r++;"''""'' ÿÃwÃ)5#"5477632#"''7632#"''&5432:"''##''¯++¯++:ÿûƈ7'#"'&54632^hi # lih$ &:ÿûƈ7'7'&547632#"'«ih$ #chi $ :ÿûƈ7'77632#"'&547¢hi $ ih$ &:ÿûƈ77#"&57632Uih% $ hi 1 * Öx7'#53'&5432#"5477#53µ„} ++ }„B '' * Öx)/7#"''&54776323'&5432#"5477#77'#c++ O ++ OV\'''' -ÿÿÓ·7#'337677ÓHHIW·¸¸99M9  9Fº· 735#535#53#F]XX]ttA8·<Ä· 73#'#67<ˆ88nT·©©_C¼·7#7¼ef···B2¿‚$7#"'#"&54632632&#"33'&#"32¾ 4  4 1Ϧ7#"3#33#"&5463ÏD?ŠŠ =DB-/0,¦/0)""*1Ϧ75327#53&##532#1D= ŠŠ>EC+0/-0/*"").Ò·3533.’·¤-Ò·3'733.kg¨¤ ÿÃaÃ73#3#N.Ãÿÿ7ÿÃIÃ73#7ÃÿA#¿—773#'A5 <-)#tt\\A#¿—773#'U)-< 5—\\tt4 Ì«7#54&#"#54632Ì+!"* D$$$$DE*0/,4 Ì«73326553#"&54*"!+«E$##$EE+//+42Ì‚%7"32776632#'2654&#"#"&546Z     ‚     4̸%)-7"32776632#'2654&#"#"&5465353Z     ttt¸     {)Fºµ 7#"&546325353#"&54632f ttt£  A4&  Fº— 7535353Fttttt„33FºÉ 7'575353ºtt\\ttttD< </./)FºÉ 77'55353F\\tttttX./< <)"Þœ 7'57'57•ss\\Iss\\< </.< </."ßœ 77'5'7'5k\\ttI\\ss+./< <./< <Fºª77'#7'5777¨ (:@&@% ª,!07 !)[Fºª7#7577'577¨(C %8> "ª6 #( /!/F1Ϧ7#"33#"&5463ÏD$$$$DD+//+¦+!")1Ϧ7532654&##532#1D$$$$DD+//*)"!+1϶7#"33#"&546353ÏD$$$$DD,.--Zž¶' &¶1϶7532654&##532#531D$$$$DD--.+Ež+& '+ã·353533ZZ¤¤-Ò·7#'735Ò¤“{z··¦¤ŠÿøåÁ 7#"&54632&&''3667##5å<))<;**;()H(HZ(\);;)*;;")II*Y''FÿøåÁ #7#"&546324&#"326'#"&54632å<))<;**;1!!11!!1B\);;)*;;*"00"!00!  'åŒ 74&#"#4632Ò1!!1;**;'"00"*;;*ø·#'+/49753'#53'33733733#3##'##'73&37#37#3'#7##7##+,"&,Q##_#2#A gE<<<<<<EEEEW!7J%(, ÿÿÃjÔBëÿâI&&'7I $  ÿãK' 74632#"&732654&#"     M(µ‘7'7'7µ#"Œdedd"Þ±7&''6766327&#"Þ?  /- ?O   6  (,19E ,€ÿíÄÌ'7Ä552 opi<ÿí€Ì7'7'7€522\ohi€ÿíäÌ '7'7ä662552 opigopiÿí€Ì 7'7'7'7'7€522633\ogipogi€\ÄÌ7##53Ä-D¹]p<ÿí€\#5353€D-]€\ÕÌ 7##535#35Õ#2U5™=p#P=+ÿí€\ #53535##€U"3"3<_O<€ÿíÐÌ#53ÐPP22ß +<:-0ÿí€Ì#5654'53€P22P-:<+ (Ø· 7#53##5#53ذ°MM°¢Jmm3̨7#53#53Ì™™™™u3—3€ÿì¾Ì'57¾ 55 '¨–Bÿì€Ì7'75'7€5 '' 5–€ÿíÕÌ#53'&&5467#ÕUU!!  /ß +;:+98Â+ÿí€Ì#5654'535#€U!!U/   +:;+ ÑÂ89¥šýÙ 7#&'73#&'73ý'š#%#šZÙ 7#673#673Z / Ö#%#%ÿßZ 7#'67##'67Z "#'#;ÿýĹ"7#"&547&5476732654&Ä &%%"/ ' 2,²("#  %U/ÿíÑš-3=&'654'#"&54747#5334767#63267'6&''32ƒ@ *0( 7; /") ! )''   (X  ÿðåÇ,2<&'654'#"&54747#532747763267'"6&5532†O+6?6  ^a =*.#*   -" 744 3#p!& ! 1ÿõΊ7#"&54732754'7u  l'2',)"#/ =5:Bÿøæ»7#"&547326754&'7k  ‘  >F555$(+()= )Z_)?ÿíÁ™7&'7'6654&#"'632°#10". 0-!(Š © !&ÿåáÉ7&'7'6654&#"'632±&FK7 L14EF8!#=· Ý %!&2+ÿîÕ.7&'7#"&574#"'67''277632327ž6$d #*1$ ? %  ‘© ,4/!ÿñçÇ/7&'7#"&&554&#"'67''277632327¥B8l '3A ([4  ¹Î   1>D4  +ÿïÕ™087&'632'6654&#"#"&5475##53275367#7325Õ  !<  5 "h! b'  *"! <  ÿóçÉ087&'632'654&#"#"&5475##5327'367'7325ç"! '+''? #B$ )~,‚""#9*#(' E  ÿî÷É"(4'327654&#'67'676732#"7&'7Y  ) ˆ    7 ]5 6P-I0T @/ 0ÿîÿÖ(.47&'74'327654&#'67'676732#"7&'7&'7ÿ  œ  ) {    ±  Ñ  7 ]5 6P-I0²  s @/ 0ÿñáË07&#"327#"&546327&'#527'#527'777á= "'5&**%'M-4:3# *F=Hp   ÿñøÛ <7&'7&'7&#"327#"&546327&'#527'#527'777ø     = "'5&**%'M-4:3# *F=H·    Q   <ÿè¿Ï&'&546767¿N "7I GH  0>A<ÿèÿÖ7&'7&'&5467677&'7ÿ  5N "7I GC  ±  ÎH  0>A‹  ÿëëÆ 7&547"'65'#'5327'767>Ä"71'Ã2D<>L4E8< 1621ÿëÿÖ ,7&'7&'7'&547"'65'#'5327'767ÿ    ¥Ä"71'´  "   2D<>L4E8< 1621&ÿüÚ­7"'5327#"&547327ÌW$!:+!2>* 25–« &ÿüøÜ $7&'7&'7"'5327#"&547327ø    T$!:(!2>* 25¹  #  (« ÿ÷ãÌ'7&#"327#"&546327&'##'327'77ãD.#.+ **(%$1@ M‘2  % ,ÿ÷ñÛ 47&'7&'7&#"327#"&546327&'##'327'77ñ    D.#.+ **(%  $1@ M¹    62 % ,?ÿöèÇ7#"&54733267è /("#' U5*z“%,?ÿöèÌ7&'7#"&54733267'&'7â   /("#'  ª  i5*z“%,@  ÿëðÌ ,7'67'#"&546325574'3732654&#"ðR ", ;wvSš  –& &-( T  ÿëôÛ ,87&'7&'7'67'#"&546325574'3732654&#"ô    $R ", ;wvSš  »    5& &-( T  ÿöñÆ)7#"'72675327#"&57577375537ñ2Q *)523Q2z( "@ %@43 ÿöÿÛ 67&'7&'7#"'732675327#"&57577375537ÿ    2Q *)523Q2»  "  B( "@ %@43 ÿõîÃ'7#"37#"&5467''677''77677î. 7* 1#+O^rO("8b >9ÿõýÜ 37&'7&'7#"37#"&5467''677''77677ý    . 7* 1#+O^rO("8»  $  ^ >9ÿòéÉ,7'674'276767&#"'632#"&54732((S;1. $% a87Y$=o  ÿòñÏ(87&'7'674'276767&'7&#"'632#"&54732ñ  T((G  ;1. $% ®  2a87Y$  Mo  ÿõãÍ'7632#"''32654&#"'67#527767ãY %!$-,"" !)$ 9 J&•  #5*ÿõþÜ57&'7632#"''32654&#"'67#527767&'727þ  Y %!$-,"" !)$ 9 6*  »  :  #5* -ÿùÓ…'654&#"'632XjIH!6Jÿÿæ®'6654&#"'632OQ4"+CM$2)@%$$&.3ÿÿþÚ 7&'7&'7'6654&#"'632þ    ‡Q4"+CM$2)@¾  "  Á%$$&.3ÿóéµ7"3&5467''é6 )*7ssµ4K2 ÿóîµ7"3&5467''&'7&'7é6 )*7ss×    µ4K2 4  #  *ÿöàÈ7#"&547&576732à::+9Kh5 /)6!&)#*ÿöîÓ#7&'7#"&547&5767327&'7î  ::+9Kh5 /3  °  ³)6!&)#–  ÿïðÉ,77'67#527767&'7&'#"&54632&'7&#"326Ž# _ * !) 3  ‘M. )F' ’ *N  &ÿðéÀ 7&547"563#"&54732D±H53J !2& &¾8B&,'(M40Ž  ÿóøÆ,2;E7'#"&54632654&###"&547&'767672'6&'327&#"32ø  0"( s  }      ##KG/ '*p :'7 ÿòøÄ/97'#"&54632654&#"#7'677'3737632&#"32ø 1)*  /$)   #;cF%((* /&2  ÿõìµ&&'654&##"&54632'3267654#"ŽP,"$@0-;Á % F(?.+>4%TD :'"ÿóöÇ(37&'#"&54632''27'367&#"32'&547ö 2U!)1 !m N,+ L   ¹0[.1M<"ÿóþÛ .9D7&'7&'7&'#"&546324'#"'27'367&#"326'&547þ     ,3  l½  #  « 9,+ V  °0[.1M<"ÿóþÚ :EP74632#"&732654&#"&'#"&546324'#"'27'367&#"326'&547É   ,3  lÀ   ´ 9,+ V  °0[.1M<ÿïõ¾'7'&'#"&5467''7732654'7õ/%!'?$ I,3(#9 C!0023ÿïþÛ 37&'7&'7'&'#"&5467''7732654'7þ    /%!'?$ ¶  %  s,3(#9 C!0023ÿïüÖ ?74632#"&732654&#"'&'#"&5467''7732654'7Ç   /%!'?$ ¼   x,3(#9 C!0023 ÿóôÁ &-7&'7732654.5467#"7&'7''67¸9<J@     ˆ¢ ¯¿  "   G! F (: ÿóûÚ ,297&'7&'7&'7732654.5467#"7&'7''67û    #9<J@     ˆ¢ ·  &   ¿  "   G! F (: ÿóô× 8>E74632#"&732654&#"&'7732654.5467#"7&'7''67½  9<J@     ˆ¢ ½   ¿  "   G! F (:ò¢7&'&#"'>32ò(C 9 8  d P E Clò¾ 7&'7&'7&'&#"'>32Û    <(C 9 8  d  "  Š P E ClòÆ (74632#"&732654&#"&'&#"'>32—  M(C 9 8  d¬   ™ P E Cl ÿðïÄ.87#'47&'#"&54632'#'275##53277#'&#"32? Æ  +)*(,# +C&0  Â-K*0UH7½ 8$$C   ÿðþÛ0:C7&'7&'#"&54632'#'275##5327'7'7#'&#"32'#'47þ    +)*(,# 7  '0  e ¸  Å 8$   #C  º-K*0UG8 ÿðüÙ1=GP77#&'#"&54632'#'275##5327&54632#"'32654&#"&#"32'#'47Ò'  +)*(,# 2  +  e ©#C  8$  ª º-K*0UG8ÿòãÅ%07&'#"&546325#53275#535377#&#"326ã) 6 H1T5NNNN0G  +# *  ÿéø¶"+7&''667&'#"&54637''773'326ø %*$ %[„ C # ! W&2(! 9A  ÿôíÈ-9?7&&54677#5357327654'7#"&54'32654&#"7&'79 /-.+ /1  ½'     %+ ,  +#!ÿòçÊ%/'654&'#"&547&'76767'76'&'32 X 3&%*k   ;"CE#1 +"K†%*J -ÿòèÇ+7"5747#?676732654'7#"&54R&=>?6=%5B )((O *'!#    %ÿîÛœ(7732654&#"'''67'767'7632#"ƒ   $     ( jj &&ÿìðÆ(77232654&#"'''7'767'7632#"„$  -0    $!3"ˆˆ  23&*!0ÿèÐ'0'67&'67654'&547367'7#76654&ˆ  '(#  %2 %,"$- !!c: ÿêäÇ)27'67&'7654'&54733367'7#7654&” (  5#(+#3 6%*3-<? ( (|8 -1ÿòÏ—"7&'#"&54632&537&#"326Ï  <;&;    >+#7 ÿôãÂ$7&'#"&54632&577&#"326ã $( M31H  q G  +ÿõÕÃ!7&'7'32654&#"'67632#"«2.8=''1 %$!&04«Å E6  2ÿïÎÂ'67654&#"'632'&547k 5U ? %&@$¿+&$&/'$ÿôܾ)373654&#"&'7''767632#"&54632&#"327 #3 q1(gP)1-#  `@ "&  ÿñùË.7#"&574&#"#47'677"'757632327ù   !/  ,/!  .X 6:02 (%.( ,Z'&ÿöÚ¼$'32654&#"'67''77632#">$$#1-578"m J&/- !(2= #(ÿðØš#'6654&#"#7'677'7737632…&' !" &#29 $"  DÿóìÆ$'6654&#"#67'677'7733632ˆ 1&#/ )* .%% # 1b0 '-* (&"Tÿòå¼&.97654&###"&5467677''732#"&54632'326&#"327Æ "" ,&;Y ,.(![8 [   H/!19(! ( H2 ,)ÿíï¿DN&#"#&#"'67&546326654&#"'675577632##63236632'4&#"6ï "$*! 69Xo 9 *)  !_   -#'   "(  ÿóåÉ27#53327#"&547&&#"'67#57767366327åB9 -33#M "D >"C?W,& $ !"+    ÿóæÆ!7#"&574&#"'67632327æ!  (# #Z<*) C€K  2* WÿåöÓ #7&'7&'7&'7'6654&#"'632ö  9&FKW  ƒ L14EF8!#=µ     Ï %!&2³õÚ 7&'7&'7õ    ³  !  Á¦öÛ 74632#"&732654&#"Á  Á   DÚ 7&'7&'7D  ³  !  ¦9Û 74632#"&732654&#"  Á   D ¼¨ 7#"'677&'7¼] &,1@ QWD б7&'7#"'677&'77&'7Ð  ] &,1>  ’  e QW/  0ÿîד7'67'577'6655Ñ"! FA“P& z#(#$ &ÿðë¼ 7'67''77'6655å, ­ºd!. '¡5%*0+- &$.'ÿñÁž 7#5'67Á U3p_*7ÿòÖÈ 7#5'67Ö((. m=¸Ž}6A7ÿíÉœ7'667##53533É,: 4$c<>q?6 (32I%ÿîÛÉ7'6675##53533Û5I >0„NP”PE 57@X%%,ÿýÔ‚ #535#53#3Ô¨H?”>IXXìª 7#535#53#3ìØ`O¶O`ww+ÿïÕš7#"''3255'67#57533Õ. #28#U^.dY B(+ ÿòéÇ7##"''325''67'7'37é9 )HL,pz9‡u]1,+8))ÿôÚÉ7#"''32677''667#5653Ú  F&&"#AC›Y, !B5B9/ÿôï× )7&'7&'7#"''32677''667#5653ï      F&&"#AC·     Y, !B5B9/ÿïçÈ7''7''7'777çW  ^]RPRPYISS-)(-ÿïþÚ 7&'7&'7''7''7'777þ     S  ^]RPMLU¶    ySS-)(-ÿíÖË7'667''6777Ò8608Z*T’EGA7# (G ÿíþ×"7&'7'667''67777&'7þ  "9608Z*T  ¶  7DH@8# (G   ÿñëË7#'6677'677ëA-4 .%A* ‚.9.&+C ÿñôÕ 7&'7&'7#'6677'677ô    A-4 .%A* ±    9.9.&+C (ÿöØ© #5#535#53ؘ˜•­ s$ÿöÿÜ 7&'7&'7#5#535#53ÿ    ——”­º  %  ÆsÿòíÇ7#'6655##5#53533'33í-d4(O..O-zO +'EE2255ÿòÛ $%&'7&'7#'6655##5#53533'33    -d4(O..O-¹  %  BO +'EE2255ÿðåÁ 7&'7'667&'7€) +ƒRD BKf.& /,'!" XT:7ÿñãÀ 7'667&'7ãFH e¸¦!UT` 8! (!ÿñþÜ 7&'7&'7&'77&'667þ    y‡ JG H= ¼    ` 9 +PS ERÿîâÌ7&'67&'767'#'6737ÞB: 8! + R1;N˜CN ' --76 ÿîÿÜ )7&'7&'7&'67&'767'#'6737ÿ     A; 9  , S2<Nº    %CN ' $-76 ÿñéÂ7#&'6655#535'673é[#1 ( __!)j4 *[[*- %#( +ÿñÿÜ&7&'7&'3#&'6655#535'677ÿ    )\\"2 )__!)g4 ¸  $  +*- &"( ,ÿïÔ”7&'77'>7&'7 M.0 ',[ Y  #?/" &>H  ÿîçº7&'77&'6767&'7’g  -ªµš(=D*.(#ÿðÜÁ 7&'7&'7&'7ÕQR^>;ULX?rm¨ X l  ÿïìÅ'&'76767&'7ì 9y8;:ÿîîÂ7#"'77367î/3O7_) ¹~5K+ÿöÕ± #5##535#Õzªz »–8ÿîÈ 7'>7##5È'. '#`@3 %-8O%ÿñÚ¹ 7'665##5Ú18 E-¹LE( >OKbÿðìÇ7##5#535#53533#3#5#ì5‹5*€--5M>&66L&&LLLê´ 7'67'#537'53533Þ"š Ô\_–0 $”hi$ÿðÜ·7&'667#537'#5Ü:G 40 “6g·bS +$&ÿóå¼ 7&'7'667t"( +’QSKKŒJD =E&ÿîÿÛ 7&'7&'7'6677##53533ÿ    6H ?/‚KP½    1PE 47@X%%3ÿïÍ›7#"''32675#'667#57653Í  1 45wH$3(3)#%*ÿïÖž7#'6655#'673Ö4#+ %0#qa"- ##4hE˜t 74632#"&h  \  #NÜk7#53ܹ¹NF&¶›7&'7¶(5066.&F&Ñ· 7&'7&'7&'7Ñ    (50˜  %  b6.& ÿõàÁ7#"'53267#'67à   ¢ ‹a L #ÿõÝÇ7''67&'767#'673Ý6,>8%(% -(Š  † !." % +'&Ú´7#54##"#546332Ú s Œ  ž "Þ®7#"&554633#"33Þ© ¨˜ š   m ÿõâÂ7#"'53265#'67#'67â F@ 7HŒg0 SY'%I  ÿûå¾7&''67#53673#7&'7å” )LV  Zd*y   ,9 /4 %(ÿùØÁ7#"''3267#'7#53Ø  A fu Z.  B1-ÿ÷áÃ7#"'53267#'67#'67367á  9F =O  A Šg, K]M+ÿ÷ÕÁ 7&'677&'67ur 0//< 1.1Š*1&- ./24ÿûã·7#3#"'532677#'67#53ãpr j=Ç¡ 9(ÿõå¹ 7#'6653å§¢EG!JN7ÿöÉÁ#5#"&55332753Éc  V Lk hDÿó¼Ä 7&'67¼%@6%"-4,4;6/2+ÿ÷äº7##5#53äYXÈ£¬¬ä¾3#535#"&553335332553##3äÉZ; .*  7X4 OD __ DO 4ÿõâÃ7'67#5'67©:5 93H"*%/eP²/*1"_O%Rÿøâ¿7##'6732554##532â u%"~ ‹˜ t D$#I "  )ÿþ×»!7##"&554633254##"332'&'7× ‰ Š  o o ! # ˜ Š  8  ÿöà¼7#"''3265##5#5à   [7¼c9±±ÿôãÆ7#3'67#'7#53673ãuj: .w8C l†(D 5/#ä¼7''6767'7äLN 7"3c  RT CR )ÿöâ¾ 7#5&'767â*1,&&*',¬()ee4 "-#*ÿûå¸7#'"327#"&54635#53åT5A(+''_Ê¢9> H!!0ÿõæÆ7#"3267#"&5475#53533æT @'*K``T‰' A!4!((ÿùäÀ7##5#33#"&55#53533533ä.A r ))A.p::X  f;;;;ÿ÷ä¿7#3'67#'67#'67#53#36ä@ 00B ;= "ÈV9 ;ª 87+4O?%$ÿüåÁ7&''7å:Yp HaqÿüâÃ7&''67'6767677'7âTC 11: ( $,4Gf   5)-" G? #ÿþâº7&''67&'767#53â',=9%#/ *,‰’&-  #1<ÿóä¼7'67#'67#533'#36ä97Œ 0œ $%GE ZI3$ 0??ÿôá¾ 7'67#'673á œ ‘eG* $> %,)ÿ÷äÀ7#33#"&55'67#53673äN šll!ìž 7'6753&'3#5#· % .* !žXDc,AAdl2Ñ™733#2‹Ÿ™i"åš7#&''675#5327Û&0 $ $ ,(X#-š :*&8 hë¢ *7#53277#553#"&546"32654&ʸ...šC'MdQ"Ûš 73#67535#53#5##535##O< $,/<;¤///š@*P'~~'?--$ìž 7'6753&'3#67535#· % .* !šS@ (+@?c,AAd?+Q#Þš 73#67535##3#53#$R?"&.1?>µ>CWR>šB(N%}"àš7#5#3#67535##53'3373Û\\O<!)-<;½ešA)OVPPPP"ê¢#/7#53#27535##553#"&546"32654&È7nM: *,98Çw2"  ¢A)O  1Ì› 7#5##535#Ìsss›}}dQ3Ì™ 73353#5##735#3qqqq™&&{)&Ü™ 73353#5##735#73353#5##735#&1111J0000™&&},9&&},&îž 7'6753&'3353#5##735#¸ " *+ !š1111W%:!!;h&&},"Ùž7'66753&†E )/%$ 8h2 6"!4 íž 7'6753&''6753&° ) 13 'j # +! ^(; </)=07Ê«753#"&546"32654&w!&#$&!)›"##"#Þ›7#&''67#5ÙNO >A PO›D2/Cë›$7#&''675#5##&''6675#5ä) $ # +" '  " $›* *(; $ #( * #Þª7#5#&''667#5«SMN ?B ',Oª&2&$&-Í› 73#5'75#- ŠŒŒ›}=1К 7#3#3#5Ή……‹Ÿš&}(×›7#5#53'3373Р§¯0  ) ›kOOOO) Ù© 7#5#553#"&54"32654& D}°N5! ?©#& && jÿñºÈ733##j<<ÈYk[ÿñ¬È 73353#5##[))Ä\`×dWiÿñ¹È 733#3##i<<<<È=)JZÿñ¬È 73353#5##735#Z****Ä59×K>Q-Gÿñ§È73#5#53“LLÈ×q7ÿñ¹È 73#'53#5#5¥3;È×{XÇ\Fÿñ§È 73#5#535#53“MMMMÈ×E+2ÿñ¹È73#'3#5#535#53¥3@@@@È×ÓÇ:*&ë—7#5353ëÕ`9^^ÿñêÈ733##5'7537£33Ž;BÈac> dbÿñ×È73753353#5##5'7B;|0“Ny]b×bU9 ÿñËÈ 73#5'7537·œ@KÈ×D^[(íš 7#53'3373íÚ>4  ;WW__ÿñë’7##5#5ëbb’ÿñÎÈ73#5#53''7#º55f:Ž=È×^nÿñ×È 73#'3#5#53''7#Ã-**M/p*È×ÓÆS eÿñÌÈ 73#5#5'7¸BL¥È×ba ÿïë‘ 7##5##5#5ë;9:‘ŒŒ<íO7#5íÙOÿñÇÈ73#5'7³ È×TvÿñŠÈ73#vÈ×%æ™ 733#'327#†L`a""(3™i|i !àš7#3#5327#ÜDH[d!'0šW}i ìž 7'6753&'327#¸ ' 1) !¤"!(2b,AAei æ¥ 7#73'327#­9t;;® &0¥…[Jhi çž$7'6753&&5'3#67535#73#5#¤  =)%'))A8$6&'5 #  u?+Qlçš7#3#5#3#67535#ãCGZpS>"&.1>?šW}A)Oïž*.7'6753&&5'3#27535#53#5##535#­  ˜9%$%n6&'6 "  v@*P'~~'?--î¥7#73'3#67535#µ9t;:´T? #,/?@¥…[JiC'Míš  ,73#67535#7#553#"&546"32654&T?"%-1?@Ðs1  šC'M$   #Ûš 753#5##535#'#5##535#Ç///...s'~~'?--f||bOêž 7'6753&&'#5##535#® " (3 >000U#9#$8 T||bO#ê¥ 7#73'#5##535#³7o87U...¥…[Ji||bOBÿöÀ¿ &7#5##535#53#"&546"32654&ÀVVV   !¿UU=*V  Þš73#5#53#5##535#‰UA$777šl&~~&>,,çš7#3#553#5##535#âEJ]$777šW}'&~~&>,,êœ &7'6753&&5'53#5##535#73#5#l  ,{C/9 9 &  M'~~'?--flíœ (7'6753&&5'53#5##535#7#3#5l  ,º")=9 9 &  M'~~'?--fW}îš 7#&''675#553#5##535#ã'2 % & ,'"777š7'"6 '&~~&>,,æš 7#3#53#'53#5##535#á?DWR?:777h%} &~~&>,,CÿöÀà *753#5##535#53#"&546"32654&¬UUU  "­[[-*  'ÿöÛà .:753#5##535#'53#5##535#53#"&546"32654&Ç(((<(((;  "­ZZ,,ZZ,+  àž 7'6753&73#5#[ ' /4 (_K_(==dlæš 7'6753&733#J !*/ #3L`V#77hiæš 7'6753&7#3#5J !*/ #ŽFK_V#77iW}Ûš 7'6753&753#5##535#J !*- "t///V#78A'~~'?-- õš 7'6753&7#&''675#5D ! '. $Ÿ'1 & % .'U"7 7h 9(%7 *Ѥ7#73P§W6f¤‡dQêª)5753#"&546"32654&753#"&546"32654&C  X  ›# $$ #$ $$ $B¾¢753#"&546"32654&v"!"Ž æ¢'753#"&546"32654&'6753&?  ] ' /* •  !!!*AAç¥ 7#73'53#"&546"32654&®9s:;Œ  ¥…[Jd  !!!,ÿôÒ¿*7#5#53'337353#"&546"32654&Ê–ž¦*,  3  "¿B''''(  ò£ *9E7#53#5#53#553#"&546"32654&753#"&546"32654&_5ª6!lámH  _  £!    í¢7#553#"&546"32654&íÙc¢6ÿñíÈ733#3##5'7537537¬,,--–($&ÈG(BA _^ZYÿóÍÉ73753753353#5##5'7735#5{#p–SQOz7=ÖOD8 #ÿñÊÈ73#5'7537537¶š'%(È×A _^[YÿñÌÈ 73#5#535#53''7#5#¸""""w)”$È×C qplÿñÔÈ73#'3#5#535#53''7#5#À(a!wÈ×ÓÆ5gfdÿñÌÈ73#5#5#5'7¸+$*¤È׃cb]\ gC™v 7"&54632€  C  IÿñÊÈ73#'"&54632¶S  È×T  ÿíþÌ #654'3'#&5473#5#áÐ |g0>@1-DC´1@>0+CD-6{hÿíþÌ #654'3'#&54733#áÐ)n‚0>@1-DC´1@>0+CD-3eÿíþÌ #654'3'#&547#3#5áСbh|0>@1-DC´1@>0+CD-1TzÿíþÌ #654'3'#&5473#3#535#áÐ'r\dx\^0>@1-DC´1@>0+CD-2C(NÿíþÌ #654'3'#&547#5##535#áЗBBB0>@1-DC´1@>0+CD-1~~fSÿíþÌ ##654'3'#&54753#5##535#áЈKKK0>@1-DC´1@>0+CD-W${{$>++ÿíþÌ "#654'3'#&547'66753&áÐd/ !  00>@1-DC´1@>0+CD-c1 2!2 ÿíþÌ ".#654'3'#&54753#"&546"32654&áÐX!" 0>@1-DC´1@>0+CD-/$$$#ÿíþÌ "#654'3'#&547#&''67#5áТ8> 0 . 3 70>@1-DC´1@>0+CD-2A1-AÿíþÌ '#654'3'#&547#5#&&''67#5áЄIi:= " - 1 60>@1-DC´1@>0+CD-'6 &(6ÿíþÌ #654'3'#&5473#5'75#áÐ&}nqi0>@1-DC´1@>0+CD-6o5ÿíþÌ #654'3'#&547#3#3#5áПd^^n‚0>@1-DC´1@>0+CD-2&~ÿíþÌ ##654'3'#&547#5#53'3373áРˆ  &0>@1-DC´1@>0+CD-2kOOOOÿíþÌ (4#654'3'#&547#5#553#"&54"32654&áЀCp•@1;0>@1-DC´1@>0+CD-& $ $$ ÿíþÌ ##654'3'#&54733##''67#53áЇh =?T0>@1-DC´1@>0+CD-SRD[ÿíþÌ ##654'3'#&54733##'327#áЇu,-2>0>@1-DC´1@>0+CD-SR›]  ÿíþÌ %#654'3'#&54733##'3#27#áЇtZF3!390>@1-DC´1@>0+CD-SR¢PÿíþÌ )#654'3'#&54733##'3#27535#áЇrR@&+26@>0>@1-DC´1@>0+CD-SR¥D,RÿíþÌ ##654'3'#&54733##'3#75#áЇtUUB.0>@1-DC´1@>0+CD-SR¡tNNÿíþÌ #'#654'3'#&54733##'353#535#áЇ`/W//0>@1-DC´1@>0+CD-SR|%vvc++ÿíþÌ *#654'3'#&54733##''66753&áЇC #  0>@1-DC´1@>0+CD-SRb* 0"!!. ÿíþÌ *6#654'3'#&54733##'53#"&546"32654&áЇQ  0>@1-DC´1@>0+CD-SR¬ %"'&#&ÿíþÌ ,#654'3'#&54733##'#&''675#5áЇ$/ $ % /'0>@1-DC´1@>0+CD-SR›6$"7ÿíþÌ /#654'3'#&54733##'#5#&''67#5áЇEV'(  $ +*0>@1-DC´1@>0+CD-SR­'.-ÿíþÌ (#654'3'#&54733##'67#53'67'áЇ0BXH &?0>@1-DC´1@>0+CD-SRu a,( ÿíþÌ )#654'3'#&54733##'3#3#27#áЇsYE@@-*70>@1-DC´1@>0+CD-SR&ÿíþÌ +#654'3'#&54733##'#537737'7áЇdl0>@1-DC´1@>0+CD-SR™"?=<ÿíþÌ #0<#654'3'#&54733##'#5#553#"&54"32654&áЇ&;Tl-$. 0>@1-DC´1@>0+CD-SR­#! #$ ÿíþÌ "*#654'3'#&547#&''67#5##5#5áÐ¥:I :7 > 8™MM0>@1-DC´1@>0+CD-  ^RRÿÝÿÛ 74632#"&732654&#"73#5#J54KK45J D//CC/0C2€l\5JJ55JK4/DD/0CCkXÿÝÿÛ 74632#"&732654&#"733#J54KK45J D//CC/0C7n‚\5JJ55JK4/DD/0CCYÿÝÿÛ 74632#"&732654&#"7#3#5J54KK45J D//CC/0C±em\5JJ55JK4/DD/0CC HnÿÝÿÛ #74632#"&732654&#"73#3#535#J54KK45J D//CC/0C8{gn‚gg\5JJ55JK4/DD/0CC ?!GÿÝÿÛ #74632#"&732654&#"7#5##535#J54KK45J D//CC/0C±TTT\5JJ55JK4/DD/0CC rrZGÿÝÿÛ #'74632#"&732654&#"53#5##535#J54KK45J D//CC/0CSSS\5JJ55JK4/DD/0CCooA..ÿÝÿÛ &74632#"&732654&#"'66753&J54KK45J D//CC/0Cv/ !  0\5JJ55JK4/DD/0CC0$ )) ÿÝÿÛ &274632#"&732654&#"753#"&546"32654&J54KK45J D//CC/0Cl"!!\5JJ55JK4/DD/0CC !"! ÿÝÿÛ (74632#"&732654&#"7#&''675#5J54KK45J D//CC/0C¶8@ 1 - 87\5JJ55JK4/DD/0CC 4#!2ÿÝÿÛ *74632#"&732654&#"7#5#&''67#5J54KK45J D//CC/0C”Bd8? 1 - 3 8\5JJ55JK4/DD/0CC+ +ÿÝÿÛ !74632#"&732654&#"73#5'75#J54KK45J D//CC/0C9|nqh\5JJ55JK4/DD/0CC o5ÿÝÿÛ #74632#"&732654&#"7#3#3#5J54KK45J D//CC/0C²f``j~\5JJ55JK4/DD/0CC nÿÝÿÛ '74632#"&732654&#"7#5#53'3373J54KK45J D//CC/0C¶ƒ‹“#  "  \5JJ55JK4/DD/0CC Z;;;;ÿÝÿÛ -974632#"&732654&#"7#5#553#"&54"32654&J54KK45J D//CC/0C“@gŽ?6\5JJ55JK4/DD/0CC# " ÿÝÿÛ '74632#"&732654&#"733##''67#53J54KK45J D//CC/0C”\ 55K\5JJ55JK4/DD/0CCCB>VÿÝÿÛ '74632#"&732654&#"733##'327#J54KK45J D//CC/0C”c$#*4\5JJ55JK4/DD/0CC@EˆNÿÝÿÛ )74632#"&732654&#"733##'3#27#J54KK45J D//CC/0C”eP<).0\5JJ55JK4/DD/0CC@E‹E  ÿÝÿÛ -74632#"&732654&#"733##'3#67535#J54KK45J D//CC/0C”eP="&/1=<\5JJ55JK4/DD/0CC@EŒ< FÿÝÿÛ #'74632#"&732654&#"733##'3#75#J54KK45J D//CC/0C”eMM9%\5JJ55JK4/DD/0CC>GŠc==ÿÝÿÛ '+74632#"&732654&#"733##'353#535#J54KK45J D//CC/0C”Q"J""\5JJ55JK4/DD/0CC>GniiV%%ÿÝÿÛ -74632#"&732654&#"733##''6753&J54KK45J D//CC/0C”: " + \5JJ55JK4/DD/0CC@EP"6$ÿÝÿÛ &2:74632#"&732654&#"753#"&546"32654&733##J54KK45J D//CC/0CM 5\5JJ55JK4/DD/0CC @EÿÝÿÛ 074632#"&732654&#"733##'#&''675#5J54KK45J D//CC/0C”'  % ,!\5JJ55JK4/DD/0CC@EŽ3 3ÿÝÿÛ #474632#"&732654&#"733##'#5#&''675#5J54KK45J D//CC/0C”4D!&  ! '!\5JJ55JK4/DD/0CC@E‘# $ÿÝÿÛ ,74632#"&732654&#"733##'65#53'67'J54KK45J D//CC/0C”*7M@ $ 7\5JJ55JK4/DD/0CC@EkV'&ÿÝÿÛ -74632#"&732654&#"733##'3#3#27#J54KK45J D//CC/0C”cN:33%1+\5JJ55JK4/DD/0CC@EŽÿÝÿÛ #/74632#"&732654&#"733##'#537737'7J54KK45J D//CC/0C” Y d\5JJ55JK4/DD/0CC@EŒ:97ÿÝÿÛ #'4@74632#"&732654&#"733##'#5#553#"&54"32654&J54KK45J D//CC/0C” 6I^%' \5JJ55JK4/DD/0CC@E“  ÿòëÈ)7#4632#&&#"3773#'#53#"'33267#I5;/J.'1#' $! JE<+M)!02U6=G .%#!2&T#4>F-%ÿáôÑ,77'67'577'6655#53#"'75367''6554'3t  %3a 4Àeeu L Á    "Š! b=    ÿâôÕ $/377#"''32657#'67#553#5##535#&'66765#53#53t "' #"#ª<X<=6,Êee½0)#2 +SaL>>*>*   @IF> ÿëíÖ7''7''7'777#5##535#w-10+**).w<X<‘++µaL>>ÿãôÚ!%6H7&'7'67'#'67377&'7'5&'667'#57''276767&'7Š  0  ) rTT "%#PU z> !  É #& 4 &   .  »O U ÿäøÔ &.C7'67'327#"&&55'7577&'7'667#'65#535'673t  #; E M+,''r/&22&8/¬ -    ($%£   ÿãøÔ &.87'67'327#"&&55'7577&'7'667&'#53t  #; E M+,''q#¬ -    ($%¡ =r&.ÿáýÕ %07&'#537&'7&'7#"'75367''6554'3y#› L  =r&  ¬! b=  .ÿçøÕ 7&'#53&'7'667y#] M+,'' =r&p  (#  % ÿã÷Û #-LRZ74632#"&73254#"&'7''65#53&'#53''67'327#"&55'75377&'7'667d . Òee ‘    # / 5  Îe 'E=* 4IF ÿâøÕ %39?HNR7'6655&'7#53&'7&'7&'7#"'75367'&'7&'77'6=3'65#53å h).2bA.-+"<9™   “ } › ŒFFÕ>4 CG2 7 9 :#^U  ` (C>, "D' #?8ÿáýÕ!1<7&''67&'767#53&'#53#"'75367''6554'3x ) &ee{# L ‡      † =r&! b=  ÿáýÖ #-=H7&'66765#53&'77&'667&'7&'#53#"'75367''6554'3f6,ž  +" .  )# L Ö?*   AJG1(!  $! ’ =r&! b=  ÿãëÏ  *7'665##5&'77&'667&'7&'#53p+#A¸  +" .  )#Ï5,  )'5-(!  $! ’ =r& ÿÃõ¸ +3#'##73'##533632#"'32654&#"õ13 ‚   99¸kO3;:Æ$#$#L ô¸ !3#'##73'&'#54&#"#5336632ô234  99¸k8OMYG‰ ÿÃþ¸ -3#'##73'#"'##"&'#73326773327þ23 ,        99¸kO36FÆX Tb ü¸ .3#'##73'#54&#"#54&#"#5336323632ü13 3  99¸kO 3MY YY Y‰ öà 3#'#5373#'##73'&'n( 10»14 ? 5ÃZ!A;N99¸k3 8 ÿþôÃ&<3#53#'##"&5467754&#"'6325326'&#"327#"&54632ô&  S   Ãà   '  a$""&ÿþýÃ)3I3#53#'#533773#'#"&547754&#"'6325326'&#"327#"&54632ý¤! (² )  7   ÃÃ>6ÃW *9P(   '   `###%ÿÃë· (7#3##53##533632#"'32654&#"ëHCC_¿  ¢@M·¥:Æ#$$#Lë· 7#3##53#54&#"#533632ëGBB_t  ¢@M··YG‰ ÿÃô· *7#3##53#"'##"&'#73326773327ôGBB_j       ¢@M· FÆX Tb  ÿÃöŒ%1>`7#"'332#"&547&547&54632332654&#"#"32654&'#"'##"&'#73326773327ö !   +T #  L       {   ,j  /ÆX  Tb  ÿÃõŒ%1>`7#"'332#"&547&547&54632332654&#"#"32654&#54&#"#54&#"#5336323632õ  !  +U #  V  {   ,j  Y YY Y‰ÿÃïà 2>K3#'#53737#"'332#"&547&547&54632332654&#"#"32654&u' 2/¬   !  ,U #  ? 5ÃZ!A;-   ,j  ñ· 3#5##53353#57#533‚EEo\B>VBDVV·MM·hfûà #3#'#53373#5##53353#57#533[!'(ƒ&&H@(&<(*>7ÃW;:OVV·MM·hfü· '3#5##53353#77##'##53373#57#533¸&&Y@)&<()VV·MM·8-ee-8··hfÿþüº%/7&#"3275#53#"&54632#5##53353#57#533Z &h&&G@)&<'(¯ "'%%6Y .0.0ºVV·MM·hfü· 3#5##53353##5#53#57#533´&&Z  V¢@(%;')VV·MM¢¢·hfÿÃøº"C7327#"'567547632'6654&#"#"'##"&'#73326773327±   %$ *         #9.!%=0 +JFÆX Tb ÿýúº!57327#"'56754632'6654&#"#547##'##53373³  ( &# 1!!  # ,Y%= 1 *bc,’’*c·ŠŠ ÿýðÃ8B3#'##"&546323&55354&#"326327#"'567547632'6654&#"w  J   &# $#"%7ƒ  #:. %= 1 *ÿýëà %/3#'#5373327#"'567547632'6654&#"y' 20^    &# ? 5ÃZ!A;/  #:-!%= 1 *ñÄ77&#"3##5#5754632#54&#"#54&#"#5336323632j  •  À xx  Ä[ ZZV‰ñŒ!53#54&#"#54&#"#5336323632#54&#"#533632ñ  €  Y YY Y‰ZYG‰ÿÃúŒ!B3#54&#"#54&#"#5336323632#"'##"&'#73326773327ú  v       Y YY Y‰CFÆX Tb  ÷Œ!C3#54&#"#54&#"#5336323632#54&#"#54&#"#5336323632÷  |  Y YY Y‰ZY YY Y‰ ÿþôŒ!73#54&#"#54&#"#5336323632'&#"327#"&54632ô     [ ZZV‰)$""&ðà /3#'#53373#54&#"#54&#"#5336323632t( 10¯  ? 5ÃZ!A;NY YY Y‰ úç5W7#57654#"'6323#54&#"#54&#"#5336323632#54&#"#54&#"#5336323632ú3   "  |  ˜   ¤Y YY Y‰ZY YY Y‰ ÿþúç5K7#57654#"'6323#54&#"#54&#"#5336323632'&#"327#"&54632ú3   "     ˜   ¤[ ZZV‰)$""&"úç57#57654#"'6323#54&#"#54&#"#5336323632ú3   "     ˜   ¤YLYG‰úç!C7#57654#"'6323#'#53373#54&#"#54&#"#5336323632ú3   "†( 10¯  ˜   ¤? 5ÃZ!A;NY YY Y‰ úç!Ce7532654&##532654#"'632#"#54&#"#54&#"#5336323632#54&#"#54&#"#5336323632Æ       '  |  œ      —Y YY Y‰ZY YY Y‰ ÿþúç!CY7532654&##532654#"'632#"#54&#"#54&#"#5336323632'&#"327#"&54632Æ       $     œ      —[ ZZV‰)$""&"úç!C7532654&##532654#"'632#"#54&#"#54&#"#5336323632Æ            œ      —YLYG‰úç!/Q7532654&##532654#"'632#"#'#53373#54&#"#54&#"#5336323632Æ       \( 10¯  œ      —? 5ÃZ!A;NY YY Y‰ÿýéÄ%G7#7#54&#"#54&#"#5336323632532654.54632&#"#"În mQ  .    ÄÆÆzG GG Gn     ÿþþÔ8Y7#57654#"'6323'#7532654.54632&#"#"'#54&#"#54&#"#533632632ö,  97 7 #  A  Ž    +ÆÆ¿      Y YY Y‰ÿþå· ,67#532#'32654&##'##"&5467754&#"'63253262+! ¢  GG·\H£   '  ÿþüà !9B3#'#53373#532#'32654&##'#"&5467754&#"'6325326[!'(D& |    >7ÃW;:G·\H£  4 ÿþý· %>G7#532#'32654&##57#'##53373#'##"&5467754&#"'6325326z" %Ÿ    GG·\H£8-ee# 8··  4 ÿþüº!(3<7&#"3275#53#"&54632#'##73'&'#532#'32654&#Y  '± ! &K" ¯ "'%%6Y .0.0º99¸k,  ,G·\HÿþùÃ8AQ3#'##"&546323'5354&#"326#'##"&5467754&#"'6325326'&#"#533632ù   H   $ 9  #$"%4‡&   '  gJ‰ÿþýÄ"@Ybq7#7#'##"&546323'5354&#"326532654.54632&#"#"'#'##"&5467754&#"'6325326'&#"#53632Õ+ +,   :    %o     !  ÄÆÆÄ#$%"1‡!     '  gO‰ÿþýÔ)6Tmv…7#57654#"'6323'#7#'##"&546323'5354&#"326532654.54632&#"#"'#'##"&5467754&#"'6325326'&#"#53632ý*  (+ +,   :    %o     !  Ž   +ÆÆÄ#$%"1‡!     '  gO‰ÿÃåŒ2?7532654.54632&#"#"'##533632#"'32654&#"‘ $  ' m          :Æ#$$#LÿþåŒ47532654.54632&#"#"'#54&#"#5336632’ $  ' "         YG‰ ÿÃîŒ@7532654.54632&#"#"'#"'##"&'#73326773327› &  '             FÆX Tb ÿþíŒA7532654.54632&#"#"'#54&#"#54&#"#5336323632š &  ' #        Y YY Y‰ÿÃñ· *7#'3677##533632#"'32654&#"ñ33  ²  ··· ¥:Æ#$#$Lñ· 7#'3677#54&#"#5336632ñ33  d  ··· ·YG‰ ÿÃø· -7#'3677#"'##"&'#73326773327ø33! Z       ···   /ÆX Tb  ö· +7#'3677#54&#"#54&#"#536323632ö33  a  ··· ·Y YY Y‰îà 3#'#53737#'3677v' 2/«33  ? 5ÃZ!A;i··  þ· 7#'3677#547##'##53373þ33!!h!"··· ·c,’’,c·ŠŠÿÃò·(57#'#'36773677##533632#"'32654&#"ò    ¶    ··‚(Z·NJJN¥:Æ$##$Lò·'7#'&'#'367737#54&#"#5336632ò  l  ··Z ‚·}JJ}·YG‰ ÿÃû·97#'&'#'36773677#"'##"&'#73326773327û    b       ··Z Z·NJJN FÆX Tb ù·97#'&'#'36773677#54&#"#54&#"#5336323632ù    k  ··Z (Z·NJJ N·Y YY Y‰ñà &3#'#533737#'&'#'36773677s( 10±    ? 5ÃZ!A;i·Z Z·NJJNÿ·*7#'&'#'36773677#547##'##53373ÿ   k!!··Z Z·}JJN·c,’’*c·ŠŠ ôà (3#'#5373#5654&#"#53&546323p' 2/¶76$#? 5ÃZ!A;N9 94)--)4þº/3#5654&#"#53&546323#547##'##53373þ66#$€!"9 94)--)4c,’’*c·ŠŠÿüþŒ!:CO[3#54&#"#54&#"#5336323632#'##"&5467754&#"'63253264632#"&'4632#"&à  Œ  $ ¥ŒY [[ [‰Z   '  ÿÃï· 1>3532#'32654&#32654&##57##"&5463237354&#"326- %­   ·#$£:MB“:#$#$IÿþéŒ+7&#"327#"&54632&#"327#"&54632é   c  !…##$$##$$ÿþìÃ43#'##"&546323'5354&#"326'&#"327#"&54632ì  a  !$##$7ƒ]##$$ÿÃûÄ&LXe7#7#'#5373'&#"327#"&54632&547&546323#"'332#"&546732654&#"#"32654&ƒ* *GS  …         ÄÆÆÄ91ÃW3:_ #&%%//0.±    Yk ÿüúº!-97&#"327#"&546324632#"&732654&#"4632#"&|!'*!N¯ &#%%.0-1u#$$#"%%"S ÿþôÃ,5>3#'##"&546323'5354&#"326532#'32654&#32654&#x  &.!&$##$7ƒ(·"$£:MB ÿÃõº/7#"&54632&#"3275#537#"'53277'33677|$'   4y1   .  //.0  $%%%6(›†D DÿþéÃ-73#54&#"#533632#'##"&5467754&#"'6325326z  o   YGÃ:Z   '  ÿüý· $03#53773#'#5373#'4632#"&'4632#"&™ !.0&+./%È·P8JmXQ·OOJmXEû·3#547##'##53373#5373#'û!!ßC>@5c,’’*c·ŠŠ··ZZPgW#ÿþÝà #3#'#53373#"&55#57733#327‡( 10‰ "" ? 5ÃZ!A;LO  O ìÃ$3#53#54&#"#54&#"#533632632+Á    ÃÃYLYG‰+ÕÃ3#53#54&#"#533632B“  ÃÃYG‰ÿÃþÃ)5BNZ3#53#"'332#"&547&547&54632332654&#"#"32654&'4632#"&732654&#"à  !  +T "  µÃH   ,j  C#$$#"%%"*ÖÃ3#53#'#7'373A•!"/, -ÃÃ77GB33BåÃ043#534632#"&#54&#"#54&#"#533632632#53åE  -çY YY Y‰Z‰ÿþúÃ=3#534632#"&732654&#"#54&#"#54&#"#5336323632ú}   Ã~$##$#$%"_Y YY Y‰ÿÃþŒ!3@LX3#54&#"#54&#"#5336323632##533632#"'32654&#"4632#"&'4632#"&à  Æ  ÉŒY [[ [‰H:Æ"%$#L V%ÿþÛŒ.7&#"#53632532654.54632&#"#"Û  ¯ &  ' ‹J‰†      ÿþìº!-7532654'&'&&54632&#"#"7#'33477 ,É**      ‹‰‰L)LÿþøÃ37##533632#"'32654&#"'#'#'36773677¨       Ã/#$$#GT·‚(Z·NJJNpÿü 74632#"&4632#"&p|  e wÿÜŠÜ#3Š$ÿÜÜ#3$-ÿÜSÜ%#4&54654&54654&54653S  $      !ð\ 7&#"5632ð1??1-CD,"#$%%\ð˜ 7#"'5327ð,DC-1??1‚&&$#ð\7#4&##"'###"#66332653332ð )) *  *  \ð©7##"#4&##"&'33323633265ð*  * )) ©  ð\7'#'73ð–¨' (( 5\ðš7#'737𨖑55 '' ð\7#&#"#53ð ,;;, à 11O\ð¬7#533273ðà ,;;, \P22ÿøð\ 7''7''7ðhhpphhp'225U225\ðÁ 7'77'77ðpphhpphh²6622/6633ð\7''7ðhhp'225\ð 7'77ðpphh‘5522ð\7#5#53ðÍà.\ð¡7#533ðàÍ\E.€ð\ 7#5#535#3ð43232>323                ¢   ¡Ð)%".#"#".#"#52>3232>323              ¡ ÿæíÿ÷ #53#53#53í((Y((Z''ÿåíÿù 432#"7#53#53v wCC—CC )%%"#"&#"#"&#"#"432632326323263         ÿäA&'7A  ÿãL' 74632#"&732654&#"     1?vÌ7##53v.E¹z ÿíOz353# .E{ÿâK&&'7K"  E?t 74632#"&  \  ÿïq¶ 7'67#5365#5q"# - EHM¶`RMÿâr7'67'#577'6655o  $P2 y+  ('# "&ÿãs— 7#5'67s  <‹ze50ÿájš7'655##53533j /+ !kA8P6I ÿñpz #535#53#3pa'R&ddÿãp—7##"''325''6753533p    !14be @#"5#" ÿâs˜7'67'''7'777o  % - e* % vx() ÿöp~ '57#53p`;2E duÿæiˆ #5#535#535#53i??<<>Q 4+ ÿâs7&'77&'667&'7M  -!! !0  R " IB @BC  ! Psi7#53sffPÿòzº7'67''77&'655w /)^8&"£ 9 (/D$ <-ÿô{Ç 7#5'67{ Gºu=9ÿðqÈ7'6675##53533q ' 3$'”R@ 1:AV&&y© 7#535#53#3ys.$`$-vvÿóyÆ7##"''325''6757533y (9<ˆv K)!)=(( ÿ÷wÇ7#"''32657''67#553w (& šY+#Ca-*U--ÿñxÇ7''7''7'777x,--&&(',JTR.*(/ ÿïwÉ'67''6777&7#  ! )e&2>  $7ÿò|È7#'677#'677|;2  GƒP'G*Aÿ÷r¨ #5#535#53rMMKb uÿñ{Á7#'655##5#53533533{:3$${LIBB,,00ÿñx½ 7&'7'667&'7E D/# !+,  œ-=@:>,  ÿí}¶&''67537}!;;E  **4f &!ÿõzÇ7'67'327#"&55'77377t*2€.% 8YT;8ÿð{¾ 7'667&'7{*&&$- ·TZLV^ 7! *ÿï|Ê7'67&'767'#'6737w@!   -  +˜w2,  *!,B ÿïyÁ7#&'655#55'673y, )00!: ,\*0 A( .ÿð{·7&'77&'667&'7P  3"'" 7 r ( $]F?YO % *ÿðx·7#53#&'665#53iUU*-p¢R5. !2&ÿò~Æ 7&'#53~ #_ uÔH ÿózÅ7#&'6654'#53'33z.//.{3* #0 55 w§7#53#53m[[ nn’§ ÿðwº7&'&'67&'767'577w   %I & +(5%ÿò~Ç7#5'67'#535377&'7i7%!!  …cJ (---Xÿñp¿7'67p B? º‰@7…ÿð|¼ 7&'7''65|,A‡wvJBwÿøpÁ7#"&5536732p& -  —H7  ÿñv²7&'6767'577q)& $-N™NI "E~¦7&'&#"'7632~'    ['  Iÿò|Å 7##"''3255#5533&'7''67y-  //- J ‡wr((‹ UVOI$ !Hÿïy¶7&'767'#537t!  5 Z›.7B% 4ÿñsÀ 7&'7&'7&'7n'0.%/,-#:5¬Ym  ÿð{Ä'&'36767&'7{!: !   š ¥4 ÿð{Á7''67&'767{&&  ) )4!8  /9" ÿøu¶7#327#"'&55#737#53#3u6   ^/6Z;  =22ÿñ|Ç7'67'''7'777w  ,5Œ2%( ‹Œ.0 y© 7'537#53yrD9Pzÿòp² #5#535#535#53pIIFFH_>2 ÿïuº7'5'67''57iUU#'> LQ¢L15!EÿñkÁ 7'66553#53k?T)+ ),[†ÿï~¿7#"'773367''6754'3~   H L0¸q.+ 73G; ÿïu 7#"'753367u? #X09¹{59ÿ÷q° #5##535#q5b5 ¹– ÿòs¸ 7'6657#5s #5¸T9, 88J`ÿò{º 7&'7'667<P/* ') ŒGC-ν765#53­ ¡ 2ar4(˜½765#53x dy (-Uf/5‘À7'67#53 Y[s5 Gc 5‰À7'67#53 W\s5 Gc 5uÀ7'67#53 FH_ 5 Gc-hÎÉ765#53® ¡ m1C-jÎÉ765#53® ¡ o0Ae–Å765#53zeyj/Bp–É765#53zeyu,=fzÅ765#53^ Ob j/Au{Å765#53_ Nau(7-]ÎÊ765#53¯ ¡ ];K" a–Å765#53x bv e2EJ’Å7'67#53 Y\tJ<X K‹Å7'67#53 W^vK<W KuÅ7'67#53 FI` K<W-xÎÉ765#53° ¡ |'8-rÎÉ765#53° ¡ w*<w–É765#53{ey {'9{–É765#53|ey$6s~É765#53a Pc x);{Ê765#53b Pd {(7-pÎÉ765#53¯ ¡ p/= k–É765#53v bv k2AQ’Å7'67#53 Y[tQ7S RŠÅ7'67#53 W\tR7R RuÅ7'67#53 FH_ R7R-{ÎÉ765#53° ¡ €$5-sÎÉ765#53­ ¡x*;{–É765#53|ey€$6}–Ê765#53zey }&5v~Æ765#53a Pc z%7{~Æ765#53b Pc{$4-qÎÊ765#53¯ ¡ q/= k–É765#53w bv k2A¡¹7'67#53'67#53 3,A 5(<' OfB&_u ™¹7'67#53'67#53 2-B 4';' OfB&_v €¹7'67#53'67#53 &3 +2& PfB'^t&>ÑÀ765#53765#53?2F^CVF#DW'$FY)&aÒÉ765#53365#53P;PM 8M a9G!9G!I¡À765#53765#536 (< 9 +? N!>Q&!>Q&`¡Å765#53765#53< +@ 1 )= `6E 2AH‡À765#53765#53& 1 0 %9 M!?R&!>Q&k‡É765#53765#53- #7 )2k2A1@&ѽ765#53'65#53¬7Kr;P2bs42ar4%¡½765#53#65#53z%9_.B%-Xi/-Xi/2¢Â7'67#53'67#53^ / %= ~ 0 +C 2"Kg@[ :›Â7'67#53'67#53V / $= | - +C : Fa;V9ƒÁ7'67#53'67#53 %!8 $3G<W1Fa&kÒÉ765#53765#53G2FUCWp/A/A&fÒÉ765#53765#53I7KS=Qk2D1Bg¤Å765#53765#536 (< ; .B l.@.@m£É765#53765#535(< ; -A m1?/<j‹Å765#53765#53& 16 (< o,>,>uˆÉ765#53765#53- #7 + 4u,:*8&^ÒÉ765#53765#53V>RI 8L c7I"7I"Y¡Å765#53765#53< .B4 %9 ^7J"6I"L¡Æ7'67#53'67#53 - +B + &< Y2N,;V L™Æ7'67#53'67#53 - *A , %;Y2N,;V IÆ7'67#53'67#53 "3 #2Q8T)>X&}ÑÉ765#53765#53I2FV BV ‚$4#3&vÑÉ765#53765#53N8KP =P {(9(9v£É765#53765#538 )< : .A z(9%6x£É765#53765#53< .A6 )< }&7 $5v‡É765#53765#53& / 3': {(9'8x‡É765#53765#530 #6 * 3}&7 $5&kÒÉ765#53765#53V>RI 8L p/A/Ae¡É765#53765#53:.B2 %9 i3E 0BS¡Æ7'67#53'67#53 . ,B + &< `-I*6Q S™Æ7'67#53'67#53 . ,B , %;`-I*6Q QÆ7'67#53'67#53 #4 "1Z2M(8S&|ÒÉ765#53765#53J2FV BU $5$5&vÑÉ765#53765#53O8KQ >Q z(9(9u£É765#53765#539 )< : .A z(9 %6z£É765#53765#53; ,@8 )< %6 "2v‡Æ765#53765#53& / 3': {%7$6{‡Æ765#53765#530 #6 ) !3 €"4!3&pÒÉ765#53765#53U>RL 8L t,=+<f¡É765#53765#53;.B4 "6 k2D 0A&¯½7367>=@Q½… &˜½7367226D½…  &€½7367**/;½…  1\ÒÅ733#1¡ÅV1€ÒÏ733#1¡Ï=&l¢Å733#&h|ÅF&užÉ733#&dxÉAj…Á733#SgÁDvƒÉ733#QeÉ@J¯É7367>=@QÉmJ—É7367216CÉm  J€Å7327**/;Åi  1ÒÏ733#1¡Ï=1ƒÒÏ733#1¡Ï9&z¢É733#&h|É<%|¢Ì733#%i}Ì=s‚É733#PdÉC‚É733#PdÉ5_¯Ì7327>=@QÌ[Z˜Ì7327226DÌ`  Z€É7327**/;É\ 1ˆÒÏ733#1¡Ï41ŒÒÏ733#1¡Ï0&ƒ Ì733#&fzÌ6&Š›Ì733#&auÌ/€Ì733#NbÌ8‰€Á733#NbÁ%\¯Ì7327>=@QÌ] \˜Ì7327226DÌ]  \€É7327**/;ÉZ 1ˆÒÏ733#1¡Ï41ˆÒÏ733#1¡Ï4&Š¢Í733#&h|Í1&ŠžÍ733#&dxÍ1‚‚É733#PdÉ5‰‚É733#PdÉ-&¯¸ 73#267#s_JDM¸l & ¸ 73#267#t`EDF¸l %†¸ 73#267#[G8 4<¸m 1Yѽ7#3#5ΉŒ ½>d1rÒÉ7#3#5Ή¡É1W"\¡½7#3#5žhk½;a#lžÅ7#3#5›dg{Å3Y^½7#3#5~LOc½9_sÅ7#3#5~LOcÅ,RN°Á 73#267#s_NFLÁM F‘Á 73#267#t`A 9BÁU HÁ 73#27#[G/%29ÁS  1wÑÉ7#3#5ΉŒ É-R1|ÑÉ7#3#5ΉŒ É(M#r Æ7#3#5fi}Æ,T#|žÊ7#3#5›dg{Ê(NrÆ7#3#5}KOcÆ.TzÆ7#3#5~LOcÆ&L]°Å 73#27#s_D7IIÅC  U•Å 73#27#t`=+@?ÅK  YÅ 73#27#[G-&38ÅG1€ÑÉ7#3#5ΉŒ É$I1ƒÑÉ7#3#5ΉŒ É!F"| É7#3#5gj~É(M#…žÉ7#3#5›dg{ÉDzÅ7#3#5~LOcÅ%K„É7#3#5~LOcÉ!Ec°Å 73#267#s_KGKÅ=\•Å 73#27#t`;,:EÅD  ZÅ 73#27#[G-'0;ÅF1ƒÑÉ7#3#5ΉŒ É"F1ƒÑÉ7#3#5ΉŒ É"F" É7#3#5žhj~É$H#†žÉ7#3#5›dg{ÉC|Å7#3#5~LOcÅ$I„Å7#3#5~LOcÅA$·¸ 73#27#73#267#9&#CC/''/¸p”n $¨¸ 73#27#73#27#:&$DB. $*¸p”n  $“¸ 73#27#73#27#087# %¸p”n  *WÙ½ 73#27#7#3#5*G3!**«<@T½@  f?e*qÙÊ 73#267#7#3#5*G3&(,«<@TÊ3Y2XZ¬½ 73#27#7#3#59&$ˆ-3G½=c<br¬Å 73#27#7#3#59&#ˆ-3GÅ-S-S\…½ 73#27#7#3#52 o"#7½<a;`rˆÅ 73#27#7#3#52 o"&:Å-S+QN·Á 73#27#73#267#:& DB.' '.ÁNsL I©Á 73#27#73#27#:%#EB.(&ÁSxQ N“Á 73#27#73#267#/:4  #ÁNsL *uÙÊ 73#27#7#3#5*G3#'-«<@TÊ0U.T*zÙÊ 73#27#7#3#5*G3!&.«<@TÊ*P)Oq«Å 73#27#7#3#59&"ˆ-2FÅ.T,Sy«Å 73#27#7#3#59&#ˆ-2FÅ&L%Kr…Å 73#267#7#3#5/n"$7Å.S,RxˆÅ 73#27#7#3#50 n"':Å(M&L[·Å 73#27#73#27#:&#DB.$*+ÅFjD  W©Å 73#27#73#27#:%! EB.#+ÅJnGX“Å 73#27#73#27#/95!!#ÅImF*~ÙÊ 73#27#7#3#5*G3#)+«<@TÊ&L%J*ÙÊ 73#27#7#3#5*G3#(,«<@TÊ$I"Hz«Ê 73#27#7#3#59&$ˆ-2FÊ*P(N«É 73#27#7#3#59&! ˆ-2FÉ#H!Ex‹Å 73#27#7#3#50m!$7Å'M%J~ˆÉ 73#27#7#3#5/ m!&9É%K#H`·Å 73#27#73#267#:& DB.' *+Å@e> ]©Å 73#27#73#27#:%"EB.&(ÅChA]Å 73#27#73#27#/ 94 !ÅChA*ÙÉ 73#27#7#3#5*G3#**«<@TÉ#H"F*ÙÉ 73#27#7#3#5*G3#**«<@TÉ#H"F«É 73#27#7#3#59& !ˆ-2FÉ&H$Gƒ«É 73#27#7#3#59&$ˆ-2FÉ#F!D{‹Å 73#27#7#3#51n #7Å&J$H‚‰Å 73#27#7#3#5. m!';ÅCA°½ 73#67535#r_:@FL`_½S;  b- ½ 73#67535#jW7<BHWV½S;  b-½ 73#67535#ZG(,47GF½S;  b-1OÑ¿ 73#3#535#2œ‰Œ ‰ˆ¿@C1jÑÉ 73#3#535#2œ‰Œ ‰ˆÉ6<%O¦¿ 73#3#535#&{hmhg¿?D"f¡Å 73#3#535##zgkgfÅ99R†¿ 73#3#535#cQUhPO¿>Bd†Å 73#3#535#cPThPOÅ::F®À 73#67535#r_9@EK_^ÀB%  KEÀ 73#67535#ZF'+47GFÀC$K1jÑÉ 73#3#535#2œ‰Œ ‰ˆÉ6<1jÑÌ 73#3#535#2œ‰Œ ‰ˆÌ8=%e¦Å 73#3#535#&|imihÅ9:"k¡É 73#3#535##zgkgfÉ7:c†Å 73#3#535#cQUhPOÅ9<o†Å 73#3#535#cQUhPOÅ36 S°Å 73#67535#r_:@FL_^Å>!  GT¡Å 73#27535#kX7<CHXWÅ> FS€Å 73#67535#ZG',37HGÅ? F1tÑÉ 73#3#535#2œ‰Œ ‰ˆÉ26 1tÑÌ 73#3#535#2œ‰Œ ‰ˆÌ47%p¦É 73#3#535#&|imihÉ66"w¡É 73#3#535##zgkgfÉ22 p†Å 73#3#535#cQUhPOÅ44|†É 73#3#535#bPUhONÉ/ 1 W¯Å 73#67535#r_:@FK_^Å;   FWÅ 73#67535#jV.3;?WVÅ; FW€Å 73#67535#ZF'+37GFÅ; F1xÑÌ 73#3#535#2œ‰Œ ‰ˆÌ25 1xÑÌ 73#3#535#2œ‰Œ ‰ˆÌ25 %u¦É 73#3#535#&|imihÉ23"x¡É 73#3#535##zgkgfÉ20u†Å 73#3#535#cPThPOÅ/2 |†Å 73#3#535#cPThPOÅ- -  ‰¸ 7#5##535#‰CCC¸” ˜zg ‚¸ 7#5##535#‚DDD¸” ˜zg q¸ 7#5##535#q444¸” ˜zg2Yν73#75#2œœˆt½d>>2rÎÉ73#75#2œœˆtÉW11"\ž½73#75#"||hT½a;;#lœÅ73#75##yyeQÅY33]‚½73#75#ddP<½`::p‚Å73#75#ddP<ÅU//OŠÁ73#75#llXDÁrLLLqÁ73#75#[[H4ÁuOO2wÎÉ73#75#2œœˆtÉR--2|ÎÉ73#75#2œœˆtÉM(("ržÆ73#75#"||hTÆT--#zžÆ73#75##{{gSÆL%%p‚Æ73#75#ddP<ÆV//z‚Æ73#75#ddP<ÆL%%]ŠÆ73#75#llWCÆiBB]Æ73#75#kkWCÆiBB]qÆ73#75#[[H3ÆiBB2€ÎÉ73#75#2œœˆtÉI$$2ƒÎÉ73#75#2œœˆtÉF!!"|žÉ73#75#"||hTÉM((#…œÉ73#75##yyfRÉD|‚Æ73#75#ddP<ÆJ##„‚É73#75#ddP<ÉE ]ŠÆ73#75#llWCÆiBB]Æ73#75#llXCÆiBBZqÆ73#75#[[H3ÆlEE2ƒÎÉ73#75#2œœˆtÉF!!2ƒÎÉ73#75#2œœˆtÉF!!"žÉ73#75#"||hTÉH###†œÊ73#75##yyfRÊD|‚Å73#75#ddP<ÅI##„‚Å73#75#ddP<ÅA!Џ 73353#5##735#DDDD¸--“ :!‚¸ 73353#5##735#DDDD¸--“ :!r¸ 73353#5##735#4444¸--“ :1Xν 7353#535#EuuuŸeeR!!1mÎÉ 7353#535#Euuu®\\I"Zž½ 7353#535#6T|TT¡ccP!!#lÅ 7353#535#7RzRR¬YYG\‚½ 7353#535#2<d<<¢aaMl‚Å 7353#535#2<d<<¬YYFO‰À 7353#535#2CkCCš&qq^%%LrÀ 7353#535#*4\44š&tta((1tÎÉ 7353#535#Euuu²UUB1zÎÉ 7353#535#Euuu¶OO<"lžÅ 7353#535#6T|TT¬YYF#zÉ 7353#535#7RzRR¶OO<l‚Å 7353#535#2<d<<¬YYFv‚Å 7353#535#2<d<<°OO<Z‰Å 7353#535#2CkCC¢#kkX""Z‚Å 7353#535#*DlDD¢#kkX""ZrÅ 7353#535#*4\44£"kkX##1|ÎÉ 7353#535#EuuuµMM91|ÎÉ 7353#535#Euuu¶MM9"vžÉ 7353#535#6T|TT±SS@#€œÉ 7353#535#7RyRR¶II6v‚Å 7353#535#2<d<<°OO<€‚È 7353#535#2<d<<´HH6\‰Ä 7353#535#2CkCC¤ hhT!!\‚Ä 7353#535#*DlDD¤ hhT!!ZrÄ 7353#535#*4\44¦jjW%%1ÎÉ 7353#535#Euuu¸HH51ƒÎÉ 7353#535#EuuuºFF3"žÈ 7353#535#6T|TT¶II6#€œÈ 7353#535#7RyRR¶HH5{‚Ä 7353#535#2<d<<°II8€‚Ä 7353#535#2<d<<³DD2!£¸ 73353#5##735#73353#5##735#5¸11• 6E22• 6!œ¸ 73353#5##735#73353#5##735#6¸11• 6E22• 6!¸ 73353#5##735#73353#5##735#,¸11• 6E22• 6-XÓ¼ 7353#535#'353#535#ž!I!!]!I!!¡ddQ##6ddQ##-mÓÈ 7353#535#7353#535#A!I!!]!I!!®[[H.[[HY¤¼ 7353#535#7353#535#0>J> ccP!!4ccP!!i£Ä 7353#535#7353#535#0>J=¬[[H0[[H\‹¼ 7353#535#7353#535#(6@7£``L 3``L mŽÄ 7353#535#7353#535#+7@7«WWD+WWDO¤¿ 7353#535#7353#535#0>J>"pp]));"pp]))Ož¿ 7353#535#7353#535#*>J>"pp]));"pp]))IŽ¿ 7353#535#7353#535#*7A7›$vvc,,?$vvc,,-sÓÈ 7353#535#7353#535#A!I!!]!I!!³UUB-UUB-zÓÈ 7353#535#7353#535#A!I!!]!I!!´NN;'NN;m£Ä 7353#535#7353#535#0>J=¬WWD,WWDt£È 7353#535#7353#535#0>J=°TTA)TTAo‹Ä 7353#535#7353#535#&7A7¬UUB*UUBsÄ 7353#535#7353#535#+6@6­QQ>'QQ>Y¤Ä 7353#535#7353#535#0>J>£!kkX$$7!kkX$$ZžÈ 7353#535#7353#535#+>I>¥#nn[%%8#nn[%%VŒÄ 7353#535#7353#535#*6@6¢"nn[&&9"nn[&&-}ÓÈ 7353#535#7353#535#A!I!!]!I!!·KK7&KK7-|ÓÈ 7353#535#7353#535#A!I!!]!I!!¸LL9)LL9y£È 7353#535#7353#535#0>J=²OO<&OO<~£È 7353#535#7353#535#0>J=µJJ7$JJ7vŒÄ 7353#535#7353#535#*5@6®NN<&NN<}È 7353#535#7353#535#*5A5´KK7#KK7\£Ä 7353#535#7353#535#0>J=£!hhU!!4!hhU!!\Ä 7353#535#7353#535#+>I=£!hhU!!4!hhU!!XÄ 7353#535#7353#535#*8@7¤ llY&&9 llY&&-ÓÈ 7353#535#7353#535#A!I!!]!I!!·GG4#GG4-ƒÓÈ 7353#535#7353#535#A!I!!]!I!!ºEE2$EE2~£È 7353#535#7353#535#0>J=µJJ7$JJ7€£È 7353#535#7353#535#0>J=µHH6#HH6y‹Ä 7353#535#7353#535#*5@5¯KK8#KK8€ŒÄ 7353#535#7353#535#*5@6³DD2!DD2«½ 7'6753&&]3 >A $q4""M#$J -˜½7'66753&&R0#:  q5":&#$J - ƒ½ 7'6753&G % .0 &p4 !M#$LSâà 73&''6z> <> Pà 3-*!#"lÝÎ 73&''6z: 8; LÎ )$#Q¬Ä 7'6753&c4 ?< 0‘';7h¬È 7'6753&d4 @= / "30 SŠÄ 7'6753&O * 3/"’%94gÄ 7'6753&S ) 3. $ž"0+ C­Ä 7'66753&^4 %B 5Œ,1=C–Ä 7'6753&S1>6 +’0DBC„Ä 7'6753&&I )4/ ‰*=; %"pÝÎ 73&''6z9 9: LÎ &!""yÝÎ 73&''6z: 8< LÎ !h¬È 7'6753&d4 @= / "30p«È 7'6753&c3 @< 0Ÿ* (k‹Ä 7'6753&S ) 3, $›($n‹Ä 7'6753&S ) 3, $œ'"   P­È 7'66753&^3 %B 6•* .:P–È7'66753&&R 2 #7 –* /> &R…È 7'6753&J )40 %–)<:"~ÝÎ 7'673&9 K = ;®("~ÝÎ 7'673&9 K = ;®(s­Ë 7'6753&c4 >? 0¦+ &}­Ë 7'6753&c4 >? 0©$ !  pÈ 7'6753&S ) 3. % (#|Ë 7'6753&S * 3. $¤"   S­È 7'66753&^4!$B 6% )3S™È 7'6753&S1<: .“&73 V‚È 7'6753&J ( 2- #–':7#}ÝÎ 7'673&9 J = ;®)"ÝÎ 73&''6z9 8: LÎ  {­Ë 7'6753&c4 ?? 0©% !  }­Ë 7'6753&c4 =@ 0¦"   €È 7'6753&Q ( 3. %¨!  {È 7'6753&S ) 3. $¤!   ´¹ 7'6753&7'6753&F !* < (# f(;01+ &=787¥º 107'6753&'6753&&5| "( n )  Z'A568>,-, º!107'6753&'''6753&&5 & "  (723*   F,-? % Tå¾ 7'6753&7'6753&W % ,# P !- #‹"4) .-iäË 7'6753&7'6753&Z ) 0 M (+ !›1 $ 0+ V³¾ 7'6753&''6753&† ! I " * ….,1)  ^²Å 7'6753&7'6753&F # , = ' –,!  0) ]’¿ 7'6753&7'6753&; # 1  ‰*"  &$  d•Ä 7'6753&7'6753&> # - " —-  (#  9±Ä 7'6753&7'6753&F # + < ( }!7 !* '9((49§Ä 7'6753&7'6753&= ( 9 '" y2&&' "9()3:’Ä 7'6753&7'6753&4  1 # { 4#$% ":'(2måË 7'6753&7'6753&Z ( 0 N ", "ž0 ) . 1såË 7'6753&7'6753&Z ' 0 N "- "¡* % .-l²Ä 7'6753&7'6753&G " + > ! ›+ % ($ k²È 7'6753&7'6753&G " ( < &! ž, "  ,%  m•Ä 7'6753&7'6753&; ! 0  š+   %$   r”Ä 7'6753&7'6753&@  ' /  # ž&    (  Q±Ä 7'6753&7'6753&G " ) = ! ' +"  2+ P¥Ä 7'6753&7'6753&? " ) 9 ! ' Š,  2* J’Ä 7'6753&''6753&h # :  |5- - {äÎ 7'6753&7'6753&X % . O %, !£'  ( % {äË 7'6753&7'6753&X % . O %, !£'  ( % w²Ë 7'6753&7'6753&G # + >   &   &! x²Ë 7'6753&7'6753&I % , ; % £$    &   x“È 7'6753&7'6753&? $ /  ¡ '    $" u”É 7'6753&7'6753&?  # /  " £ (   '!  R±Ä 7'6753&''6753&ˆ ! ' I # , ˆ 3/#0' Q¥Ä 7'6753&''6753&z ' @ ! ) … 1-& 4) L‘Ä 7'6753&''6753&h # 9  {/&'( #0" äË 7'6753&7'6753&Y & 0 O %, ¦$   "  |äË 7'6753&7'6753&Y & 0 O %, !¦&  # "  y±É 7'6753&7'6753&I % + ;  £'    % $  y±É 7'6753&7'6753&I % + ;  £'    % $  x•Ä 7'6753&7'6753&@ $ .  ¡ '  "   s•Ä 7'6753&7'6753&>  ' 0 " £ '  * ¿ 7"&54632'"32654&S#"##+%&++&%+Ž   ‰¿ 7"&54632'"32654&L#"##+%&++&%+Ž  !y¿ 7"&54632'"32654&D *&'*+&&*Ž  -SÒÁ 7"&54632'"32654&'+*((++(  S  !\-mÒÏ 7"&54632'"32654&(**()*+(  mO  S¡Á 7"&54632'"32654&`####S \g¡É 7"&54632'"32654&` "" "#gP  U†Á 7"&54632'"32654&OUYl†É 7"&54632'"32654&OlJ  J‘Ä 7"&54632'"32654&S!!""J""""hHyÄ 7"&54632'"32654&CH"!"#j-rÒÏ 7"&54632'"32654&(**()**)  rJ  m¡É 7"&54632'"32654&` "" "#mJ  v¡É 7"&54632'"32654&` "" ""vA  l†É 7"&54632'"32654&OlJ  w†É 7"&54632'"32654&Ow?  Y‘É 7"&54632'"32654&T!!""Y ^Y‰É 7"&54632'"32654&L"!!!Y ^XyÉ 7"&54632'"32654&CX _-{ÑÏ 7"&54632'"32654&))))))))  {B  -ÑÏ 7"&54632'"32654&))))))))! >v¡É 7"&54632'"32654&` "" ""vA  €¡Ì 7"&54632'"32654&`!!!!""€:   v†É 7"&54632'"32654&Ov@  €†Ì 7"&54632'"32654&O€9   Y‘É 7"&54632'"32654&T!!""Y ^Y‰É 7"&54632'"32654&L"!!!Y ^XyÉ 7"&54632'"32654&CX _-|ÑÏ 7"&54632'"32654&))))))))  |A  -|ÑÏ 7"&54632'"32654&))))))))  |A  z¡Ì 7"&54632'"32654&` "" ""z@  ¡È 7"&54632'"32654&`!!!! !"7   {†Å 7"&54632'"32654&O{7   ~†È 7"&54632'"32654&O~8   §¹7#&&''675#5 7> #/ :5¹G +2  K  ¹7#&''675#5˜7?1 /;5¹I31 H…¹7#&''675#5}(0 ' ( 2,¹D-0 G$UÛ½7#&''67#5ÑG; :8 EJ½'$$+$jÚÉ7#&''67#5ÑG: 88 BHÉ# &Q­½7#&''67#5Ÿ3A 4 1 : 5½/#&3b­Å7#&''675#5Ÿ2@ 2 1<6Å'+Xн7#&''675#5€&0 % ) 2+½(+l‡Å7#&''67#5€&+ " '+ )Å$  'C«Á7#&''675#5 7B 5 2 ;5Á=))> >£Á7#&''6675#5˜8C 4 0 !4Á<** / C…Á7#&''675#5|(1 ' & 0,Á7%';$tÚÉ7#&''67#5ÑH; 97 BHÉ $wÚÉ7#&''67#5ÑH; 98 BHÉd­Å7#&''67#5Ÿ5B 3 / 6 4Å$",o­É7#&''67#5Ÿ4@ 4 . 6 5É" (d‡Å7#&''67#5€'- " ( .*Å( ,n‡Å7#&''67#5€', " * , *Å!  %Q­Å7#&''67#5 5@ 4 1 9 8Å4#'9 Q¥Å7#&''67#5—5@ 3 1 8 7Å3%&8 T„Å7#&''675#5|(0 & ' 1,Å1!"2$|ÚÉ7#&''67#5ÑI; 98 AHÉ$ÚÉ7#&''67#5ÑI; 98 @HÉx¯É7#&''67#5¡6B 3 5 < 9É  !¯É7#&''67#5¡6@ 2 5 : 8É   r‡É7#&''67#5€(, " ' - +É# &}‡É7#&''67#5€(. " ' ,+É   Q­Å7#&''67#5 6B 2 2 ; 8Å3#'8 Q£Å7#&''67#5—6A 2 08 7Å3#&8 R„Å7#&&''675#5}*1  ' 1-Å3 #6$ÚÉ7#&''67#5ÑH: 89 @HÉ$|ÚÉ7#&''67#5ÑH; 98 AHÉz¯É7#&''67#5¡6A 3 4 : 8É   ¯É7#&''67#5¡6? 2 5 88É   }ŠÅ7#&''67#5‚'+ # ' * *Å   }†Å7#&''67#5'* ! ) * +Å    ±¸!7#&''675#53#&''675#5b  # ,Š!  (¸5+F<$+D ¥¸!7#&''675#53#&''675#5Z  '†   '¸5+E>&*C¸!7#&''675#53#&''675#5J t   $¸2"= 8!'@Qå½!7#&''675#53#&''675#5{  # +'µ%/ "  $½% "2-+#hÜÉ7#&''67#53#&''67#5z  !'%§#* % ,É  '(, S²½!7#&''675#53#&''675#5b  " ,‹"  #½!  .** ]²Æ!7#&''675#53#&''675#5b  " ,‹"  (Æ!  ,( - X޽!7#&''675#53#&''675#5P  !v   ½  ( ( & aÅ!7#&''675#53#&''675#5P  !v  ( Å $% . :±Á!7#&''675#53#&''675#5b  " ,‹!  )Á1%; 8#'> :¥Á!7#&''675#53#&''675#5Z  !,…  )Á1%< 8#'> :Á!7#&''675#53#&''675#5J  !s  #Á/ "94#:#iÝÉ!7#&''675#53#&''675#5z  ! *&¨#, É  (& %#sÝÉ7#&''67#53#&''67#5z ! '&¨$+  É  ## $ k²Æ!7#&''675#53#&''675#5b  " ,‹"  !Æ &$  #k±Æ7#&''67#53#&''67#5b  ! )‹!  ! )Æ ##  ' nÆ!7#&''675#53#&''675#5P  !v   Æ    $ $ oÆ7#&''67#53#&''675#5P  !v   ( Æ    !R²Æ!7#&''675#53#&''675#5b  *‹"   (Æ' /1 7R§Æ!7#&''675#53#&''675#5Y  *ˆ"  )Æ% .4 7LÁ7#&''67#53#&''675#5J  s   $Á& 30  7#yÝÉ7#&''67#53#&''67#5z  !% %§")  É      #}ÝÉ7#&''67#53#&''67#5z  $ %§")  É       s±É7#&''675#53#&''67#5b  " +‹  É #% % y±É7#&''67#53#&''67#5b  " )‹  $É    ! vÉ7#&''67#53#&''675#5P  v   É $       xÉ7#&''67#53#&''67#5O  q   É    !R±Å!7#&''675#53#&''675#5b  ! * ‹!  )Å% .17R¦Å!7#&''675#53#&''675#5Y  + ‰!  )Å% .1 7LÆ"7#&''6675#53#&''675#5J  s   $Æ'  ' 0  7#yÝÉ7#&''67#53#&''67#5z  !% %§")  É      #yÝÉ7#&''67#53#&''67#5z  !% %§")  É       s±É7#&''675#53#&''67#5b  " +‹  É ##   ! y±É7#&''67#53#&''67#5b  " )‹  $É    ! vÆ7#&''67#53#&''675#5O  u   Æ      xÆ7#&''67#53#&''67#5O  p   Æ       ¦Å7#5#&''675#5~>]6? 0 1<8Å);'(= šÅ7#5#&''675#5x=V/8 + 0<7Å)=++? Á7#5#&''675#5k:J'- # ' 1+Á):&'<#GÜÉ7#5#&''67#5£GuGO ?> NHÉ')  (#dÜÏ7#5#&''67#5£GuG I ?@ H GÏ    G¬Å7#5#&''67#5‚=\7A 1 09 4Å!&)S¬É7#5#&''67#5<[5? 2 2 7 4É!!  #HˆÅ7#5#&''67#5g1H&. " ( -(Å " )U‰Å7#5#&''67#5k9N*2 % ' .*Å   8£É7#5#&''675#5|=]8? 1 /:6É$-!"1 2šÉ7#5#&''6675#5q6V1: - . 7É$1%& ' 2Å7#5#&''675#5i8I%, " ' 2-Å -!#1 #hÜÏ7#5#&''67#5£GuF F ?@ E GÏ   #hÜÏ7#5#&''67#5£GuF F ?@ E GÏ   `¬É7#5#&''67#5=\4A 2 2 9 8É   f­É7#5#&''67#5=]4< 2 2 8 7É    bŽÉ7#5#&''67#5l8N*5 ( * 1+É   jŒÉ7#5#&''67#5k9N)1 ( * 1*É J¦Ì7#5#&''675#5|=]8B 2 1 <6Ì!&) EšÌ7#5#&''67#5x=V2; - 0 :6Ì!- !/ B€É7#5#&''67#5i8I', ! ( /,É."3#vÜÏ7#5#&''67#5£GuF H ?@ H GÏ  #vÜÏ7#5#&''67#5£GuGN A? MHÏ  fªÌ7#5#&''67#5>^5> 2 1 9 9Ì   s­Ì7#5#&''67#5=]2 4 05 8 7Ì  kÉ7#5#&''6675#5k8O* ( , +É    tŒÌ7#5#&''67#5k8M(- ( + .)Ì J¥Ì7#5#&''67#5|=]9? 0 1 7 6Ì!(, OšÌ7#5#&''67#5x=V1: , / 8 6Ì ') J€Ì7#5#&''67#5i7H'+ ! ( / ,Ì* .%wÛÏ7#5#&''67#5£GuF F >> D GÏ  %wÛÏ7#5#&''67#5£GuF F >> D GÏ  nªÌ7#5#&''67#5>]5< 2 4 ?8Ì   u¬Ì7#5#&''67#5<[37 05 : 6Ì  oŽÉ7#5#&''67#5l9O)0 ' , 3,É  uŒÉ7#5#&''67#5k8M', ( - - *É  ¹ 7'67'767#53 AT^^s3  s й 7'67'767#53 @R\^s3  s t¹ 7'67'767#53 4AIH]3s.8ν 767'765#53­ˆ‹ˆœ=$ [*.SÍÉ 767'75#53­ˆ‹‡› X  Q%E˜½ 767'765#53ycgey I"  S%W˜Å 767'765#53|dgey \  L"Fz½ 767'75#53\KOL` K  R%YÅ 767'75#53bLQNb ]  K!.ν 767'765#53ª ˆ‹ˆœ!6 u62˜½ 767'765#53t cgdx7' `+1‘À 7'67'767#53 ;Q\[s1)  f 1ŠÀ 7'67'767#53 :P\[s1)  f 5wÀ 7'67'767#53 ->JH` 5%  c.bÍÉ 767'75#53°ˆ‹‡› g G .bÍÉ 767'75#53°ˆ‹‡› g G `˜Å 767'765#53|cgey e  E `˜Å 767'765#53|cgey e  E `|Å 767'75#53`MQNbe  E mÅ 767'75#53fMQNbq   =U˜Å 767'765#53|addx Z  M#A‘Å 767#53'67'pZrd 9Jš ^&$  AŠÅ 767#53'67'h[sd 9Jš ^&$  @wÆ 7'67'767#53 .>HH` @%  _.pÍÉ 767'75#53±ˆ‹‡›u   =.hÍÉ 767'75#53¯ˆ‹‡› m  Bo˜É 767'765#53|addx t   =r˜É 767'765#53{addx v   <q~É 767'765#53aPSPd u   =tÉ 767'75#53gNRNby  :.^ÍÉ 767'75#53±ˆ‹‡›c I"d˜É 767'765#53{addx h  E >’Å 767#53'67'p\se :L˜ `'%  >‹Å 767#53'67'i\te :M˜ `'%  AvÅ 767#53'67'WI_ Q -=˜ ^&$ .rÍÉ 767'75#53²ˆ‹‡›w   <.gÍÉ 767'75#53±ˆ‹‡›l  C r˜É 767'765#53{`c_s v    <q˜É 767'765#53|addx u   =r~Å 767'765#53aPSPd w   9uÅ 767'75#53gORNby  7.eÍÉ 767'75#53°ˆ‹‡› i  Eh˜É 767'765#53|addx l C°½73#3#267#s_ZZIEM½,< ¡½73#3#267#kWRRFCH½,< †½73#3#267#[G==6 5;½,< 1NÒ¿ 7#3#3#5Ή‰‰¡¿q1jÒÉ 7#3#3#5Ή‰‰¡É_#N¦¿ 7#3#3#5¡jjjoƒ¿q"f¡Æ 7#3#3#5œfffkÆ`R¿ 7#3#3#5|JJJOc¿md†Æ 7#3#3#5OOOThÆbF°Á 73#3#27#s_ZZC8EMÁ$F Á73#3#267#kWRRFDFÁ$ F‡Á73#3#267#[G==; 6;Á$ 1jÒÉ 7#3#3#5Ή‰‰¡É_1jÒÌ 7#3#3#5Ή‰‰¡Ìb%e¦Æ 7#3#3#5¡hhhmÆa"k¡É 7#3#3#5œfffkÉ^c†Æ 7#3#3#5OOOThÆcn†Æ 7#3#3#5OOOThÆ XS°Æ 73#3#27#s_ZZG4GKÆ  S Æ 73#3#27#kWRRC0GCÆ  S‡Æ 73#3#27#[G==5%6;Æ 1sÒÉ 7#3#3#5Ή‰‰¡ÉV1tÒÌ 7#3#3#5Ή‰‰¡ÌX%o¦É 7#3#3#5 gggmÉZ"v¡Ê 7#3#3#5œfffkÊ Tp†Æ 7#3#3#5OOOThÆVz†Ê 7#3#3#5OOOThÊ  PW°Æ 73#3#27#s_ZZC8DNÆ  W”Æ 73#3#27#kWRR8.@>Æ  Z€Æ 73#3#27#[G==-%/;Æ1xÒÌ 7#3#3#5Ή‰‰¡Ì T1xÒÌ 7#3#3#5Ή‰‰¡Ì T%s¦É 7#3#3#5 gggmÉV"w¤É 7#3#3#5žhhhn‚É Rs†Å 7#3#3#5OOOThÅ Rz†Å 7#3#3#5OOOThÅ  K¯¹7#537737'7£„&  )œ)¹#b_^  ž¹7#537737'7˜  &’(¹#c`_  ‡¹7#537737'7|e   #{¹!eca .VѾ7#5#53'3373Ñ£ œ#/¾T8888.qÑË7#5#53'3373Ñ£ œ"1ËF++++Q¨½7#537737'7¥…!%Œ"½=;;h¨Æ7#537737'7¥…!$Œ"Æ-,+Q‡½7#537737'7„d l½<;:d‡Æ7#537737'7„e lÆ432F®Á7#537737'7¥†%(š)ÁHFD  CžÁ7#537737'7—€ %’(ÁJHG  H‡Á7#537737'7|e   #{ ÁECB .uÑË7#5#53'3373Ñ£ œ"0ËB''''.{ÑË7#5#53'3373Ñ£ œ"1Ë<!!!!k¨Æ7#537737'7¥…!$Œ"Æ,++s¨Ê7#537737'7¥…!#Œ#Ê)''h‡Æ7#537737'7„e lÆ0/.q‡Æ7#537737'7„e lÆ'&%Y®Æ7#537737'7£„('™&Æ:87  SÆ7#537737'7˜‚ $’(Æ@><  S‡Æ7#537737'7|f "|Æ?=< .~ÑË7#5#53'3373Ñ£ œ"1Ë9.‚ÑË7#5#53'3373Ñ£ œ"1Ë5s¡Ê7#537737'7œ|"…"Ê)'&€¨Ê7#537737'7¥…##Œ"Ês‡Æ7#537737'7„e lÆ%$#€‡Ê7#537737'7„e lÊX®Æ7#537737'7£„&(š(Æ;98  SœÆ7#537737'7—€!#(Æ@><  S‡Æ7#537737'7|e "{Æ?>< .‚ÑË7#5#53'3373Ñ£ œ"1Ë5.‚ÑË7#5#53'3373Ñ£ œ"1Ë5|¡Ê7#537737'7œz"‚Ê" ¨Ê7#537737'7¥‚"$‰Êx‡Æ7#537737'7„e lÆ! |‡Æ7#537737'7„e lƦÁ7#5#5"&54632'"32654&€Dj‘IÁ$‚P  ¡Á7#5#5"&54632'"32654&zDk‘HÁ$‚P  ƒÁ7#5#5"&54632'"32654&f9Vs9  Á$‚P*:ÖÅ7#5#5"&54632'"32654&¥K|¬V "!! "#Ål>   *YÖÏ7#5#5"&54632'"32654&¥K|¬V!!!! "" Ï\4   :¦Å7#5#5"&54632'"32654&€@fŒFÅm@ P¦Í7#5#5"&54632'"32654&€@fŒFÍb9   >‹Å7#5#5"&54632'"32654&k7Ww;  Åi> Q‹Ê7#5#5"&54632'"32654&k7Ww;  Ê_6   ?¦Ê7#5#5"&54632'"32654&€Dj‘IÊl@ ?‰Ê7#5#5"&54632'"32654&i9Yy<  Ê!j> *[ÖÏ7#5#5"&54632'"32654&¥K|¬V!! "!!" ÏZ  2   *_ÖÏ7#5#5"&54632'"32654&¥K|¬V" " "!!ÏV  ,T¦Ê7#5#5"&54632'"32654&€@fŒFÊX  0   ^¦Ì7#5#5"&54632'"32654&€@fŒFÌT  -Z‹É7#5#5"&54632'"32654&k7Ww;  ÉV  . e‹É7#5#5"&54632'"32654&k7Ww;  ÉL  'M¦Í7#5#5"&54632'"32654&€Dj‘IÍc9   M¡Í7#5#5"&54632'"32654&zCj‘HÍc9   N‰Ê7#5#5"&54632'"32654&i9Yy<  Ê_6   *eÖÏ7#5#5"&54632'"32654&¥K|¬V" " "!!ÏQ  +*nÖÏ7#5#5"&54632'"32654&¥K|¬V" #" !!ÏH  $b¦Ì7#5#5"&54632'"32654&€@fŒFÌP  )l¦Ì7#5#5"&54632'"32654&€@fŒFÌH  $a‹É7#5#5"&54632'"32654&k7Ww;  ÉQ  +l‹Ì7#5#5"&54632'"32654&k7Ww;  ÌH  $M¦Ì7#5#5"&54632'"32654&€Dj‘IÌb9   M¡Ì7#5#5"&54632'"32654&zDk‘HÌb9   K‰É7#5#5"&54632'"32654&i9Yy<  Éa9   *gÖÏ7#5#5"&54632'"32654&¥K|¬V!! "!!" ÏO  )*gÖÏ7#5#5"&54632'"32654&¥K|¬V!! "!!" ÏO  )d¦Ë7#5#5"&54632'"32654&€@fŒFËN  )k¦Ë7#5#5"&54632'"32654&€@fŒFËI  %e‹È7#5#5"&54632'"32654&k7Wx<  ÈK  'i‹É7#5#5"&54632'"32654&k7Wx<  ÉH  $¼ÿëöÎ733##¼&&Î_q¼ÿëöÎ733##¼&&Î_q¼ÿëöÎ733##¼&&Î_q¼&öÎ733##¼&&ÎRC¼&öÎ733##¼&&ÎRC¼+öÎ733##¼&&ÎR>¼OõÎ733##¼%%ÎD(¼OõÎ733##¼%%ÎD(¼OöÎ733##¼&&ÎD(¼@öÎ733##¼&&ÎD7¼@õÎ733##¼%%ÎK0¼@õÎ733##¼%%ÎK0¼TõÎ733##¼%%Î?(¼TõÎ733##¼%%Î?(¼TõÎ733##¼%%Î?(ŒÿëÐÎ 73353#5##ŒÉafãj]”ÿëÑÎ 73353#5##”É`eãl_šÿëÑÎ 73353#5##šÉ`eãl_Œ&ÐÎ 73353#5##ŒËLO¨F=”&ÐÎ 73353#5##”ËLO¨F=š!ÑÎ 73353#5##šËOR­H@ŒKÐÎ 73353#5##ŒËADƒ,)”KÐÎ 73353#5##”ËADƒ,)šKÑÎ 73353#5##šËAŽ:/ŒSÐÎ 73353#5##ŒË8;{--”SÑÎ 73353#5##”Ë>Î~9„LÐÎ753#5#5¼8›3‚<”LÐÎ73#5#53¼((΂(LÐÎ753#5#5¼,”:‚5‡PÐÎ73#5#53¼55Î~1ŒMÐÎ73#5#53¼00Î-€TÐÎ73#5#53¼<<Îz,•RÐÎ73#5#53¼''Î|0‘TÐÎ73#5#53¼++Îz8wTÐÎ73#5#53¼EEÎz@‡TÐÎ73#5#53¼55Îz0„TÐÎ73#5#53¼88Îz4“TÐÎ73#5#53¼))Îz TÐÎ73#5#53¼,,Îz,‡TÐÎ73#5#53¼55Îz.ŒTÐÎ73#5#53¼00Îz$…BÐÎ753#5#5¼7‘=Œ<”BÐÎ753#5#5¼(•9Œ@‘BÐÎ73#5#53¼++ÎŒJnBÐÎ73#5#53¼NNÎŒR~BÐÎ73#5#53¼>>ÎŒH„BÐÎ73#5#53¼88ÎŒF’BÐÎ73#5#53¼**ÎŒ2‘BÑÎ73#5#53½,,ÎŒ?‰BÐÎ73#5#53¼33ÎŒ?ŒBÐÎ73#5#53¼00ÎŒ8gÿëÐÎ 73#'3#5#53¼+**ÎãÞÑj{ÿëÐÎ 73#'3#5#53¼%ÎãÞÑn^ÿëÐÎ 73#'3#5#53¼-11ÎãÞÑukÿëÐÎ 73#'3#5#53¼+&&ÎãÞÑmpÿëÐÎ 73#'3#5#53¼+!!ÎãÞÑvpÿëÐÎ 73#'3#5#53¼($$ÎãÞÑU~ÿëÐÎ 73#'3#5#53½"ÎãÞÑnlÿëÐÎ 73#'3#5#53¼+%%ÎãÞÑaj&ÐÎ 73#'3#5#53¼+''Ψ£›Hu&ÐÎ 73#'3#5#53¼%""Ψ£›K{$ÐÎ 73#'3#5#53¼%Ϊ¥˜O^&ÐÎ 73#'3#5#53¼.00Ψ£›Xl&ÐÎ 73#'3#5#53¼+%%Ψ£›Ql"ÐÎ 73#'3#5#53¼+%%ά§Wo&ÐÎ 73#'3#5#53¼(%%Ψ£›/€&ÑÎ 73#'3#5#53½"Ψ£›Et"ÐÎ 73#'3#5#53¼+ά§Fo)ÐÎ 73#'3#5#53¼(%%Î¥ =lLÐÎ 73#'3#5#53¼+%%΂}z3LÐÎ 73#'3#5#53¼%΂}z4yLÐÎ 73#'3#5#53¼%΂}z8]LÐÎ 73#'3#5#53¼*55΂}zBmLÐÎ 73#'3#5#53¼*%%΂}z;mLÐÎ 73#'53#5#5¼*%΂Q,z;oIÐÎ 73#'3#5#53¼(%%Î…€|€MÑÎ 73#'53#5#5½"ÎL0y6uLÐÎ 73#'3#5#53¼*΂}z-oIÐÎ 73#'3#5#53¼(%%Î…€|)lUÐÎ 73#'3#5#53¼+%%Îytt'zUÐÎ 73#'3#5#53¼%Îytt)zUÐÎ 73#'3#5#53¼%Îytt2bUÐÎ 73#'3#5#53¼*00Îytt<mUÐÎ 73#'3#5#53¼*%%Îytt5nUÐÎ 73#'3#5#53¼*$$Îytt4pQÐÎ 73#'3#5#53¼($$Î}xx€UÑÎ 73#'53#5#5½"ÎyD0t1sUÐÎ 73#'3#5#53¼+Îytt'oSÐÎ 73#'3#5#53¼(%%Î{vv#hAÐÎ 73#'3#5#53¼+))Έu-~AÐÎ 73#'3#5#53¼%Έu-zBÐÎ 73#'3#5#53¼%ÎŒ‡|:\AÐÎ 73#'3#5#53¼+55Έu<mAÐÎ 73#'3#5#53¼+$$Έu5oAÐÎ 73#'3#5#53¼+""Έ|>qAÐÎ 73#'3#5#53¼)""Έ|€BÑÎ 73#'3#5#53½"ÎŒ‡|5tAÐÎ 73#'3#5#53¼+Έt'qAÐÎ 73#'3#5#53¼)""Έ|)ÿëÐÎ 753#5#535#5¼==2ŠDãO*‰ÿëÐÎ 753#5#535#5¼33-“;ãU-ÿëÐÎ 753#5#535#5¼,,,—7ãf vÿëÐÎ 753#5#535#5¼FFF1ão‡ÿëÐÎ 753#5#535#5¼555’<ã^$ŠÿëÐÎ 753#5#535#5¼222š4ãe$”ÿëÐÎ 753#5#535#5¼(((yUãG ÿëÐÎ 753#5#535#5¼---’<ãW+‡ÿëÐÎ 753#5#535#5¼555’<ã^$ŽÿëÐÎ 73#5#535#53¼....Îã[&ÐÎ 73#5#535#53¼==22Ψ-&‹&ÐÎ 73#5#535#53¼11,,Ψ3%•"ÐÎ 73#5#535#53¼''''άH†&ÐÎ 73#5#535#53¼6666ΨD"ÐÎ 73#5#535#53¼----ά: †%ÐÎ 73#5#535#53¼6666ΩE&ÐÎ 73#5#535#53¼,,,,Ψ1€PÐÎ 73#5#535#53¼<<22Î~#‹PÐÎ 73#5#535#53¼1111Î~ •OÐÎ 73#5#535#53¼''''Î)vOÐÎ 73#5#535#53¼FFFFÎ1ŒOÐÎ 73#5#535#53¼0000Î!OÐÎ 73#5#535#53¼----Î&”IÐÎ 73#5#535#53¼((((Î…OÐÎ 73#5#535#53¼,,,,ΉOÐÎ 73#5#535#53¼3333Î%’IÐÎ 73#5#535#53¼****Î…€TÐÎ 73#5#535#53¼<<22ÎzŒTÐÎ 73#5#535#53¼0000Îz—UÐÎ 73#5#535#53¼%%%%Îy&vTÐÎ 73#5#535#53¼FFFFÎz.‹SÐÎ 73#5#535#53¼1111Î{‘SÐÎ 73#5#535#53¼++++Î{&”IÐÎ 73#5#535#53¼((((Î…TÐÎ 73#5#535#53¼,,,,Îz‰PÐÎ 73#5#535#53¼3333Î~%”QÐÎ 73#5#535#53¼((((Î} €BÐÎ 73#5#535#53¼<<22ÎŒ"ŒBÐÎ 73#5#535#53¼0000ÎŒ%—BÐÎ 73#5#535#53¼%%%%ÎŒ7vBÐÎ 73#5#535#53¼FFFFÎŒ@‹BÐÎ 73#5#535#53¼1111ÎŒ.ˆBÐÎ 73#5#535#53¼4444ÎŒ5”<ÐÎ 73#5#535#53¼((((Î’BÐÎ 73#5#535#53¼----ÎŒ-ˆBÐÎ 73#5#535#53¼4444ÎŒ5”FÐÎ 73#5#535#53¼((((ΈfÿëÐÎ73#'3#5#535#53¼+++%%ÎãÞÑJ'tÿëÐÎ73#'53#5#535#5¼%## Îã¤:ÑJ'wÿëÐÎ73#'53#5#535#5¼% Îã¤:ÑQ \ÿëÐÎ73#'3#5#535#53¼.2222ÎãÞÑckÿëÐÎ73#'53#5#535#5¼+&&&Îã«3ÑQ'pÿëÐÎ73#'53#5#535#5¼+!!!Îã­1Ñ]zÿëÐÎ73#'53#5#535#5¼(Îã‹SÑ;€ÿëÐÎ73#'53#5#535#5¼!Îã¤:ÑA0kÿëÐÎ73#'3#5#535#53¼+&&&&ÎãÞÑQ'wÿëÐÎ73#'53#5#535#5¼(Îã‘MÑKf&ÐÎ73#'3#5#535#53¼+++!!Ψ£›+!u$ÐÎ73#'3#5#535#53¼%"" Ϊ¥˜+!}$ÐÎ73#'3#5#535#53¼%Ϊ¥˜?^&ÐÎ73#'3#5#535#53¼.0000Ψ£›Fk&ÐÎ73#'3#5#535#53¼+&&&&Ψ£š5r&ÐÎ73#'3#5#535#53¼+Ψ£—;v&ÐÎ73#'53#5#535#5¼(Ψ`C›€&ÑÎ73#'3#5#535#53½"Ψ£›. k"ÐÎ73#'3#5#535#53¼+&&&&ά§;v)ÐÎ73#'3#5#535#53¼(Î¥ + fLÐÎ73#'3#5#535#53¼+++ ΂}ztLÐÎ73#'3#5#535#53¼%## ΂}zyLÐÎ73#'3#5#535#53¼%΂}z, ]LÐÎ73#'3#5#535#53¼.1111΂}z/mLÐÎ73#'3#5#535#53¼*%%%%΂}z!rIÐÎ73#'53#5#535#5¼+Î…c|,tIÐÎ73#'3#5#535#53¼( Î…€| €MÐÎ73#'53#5#535#5¾#ÎY#ykLÐÎ73#'3#5#535#53¼*''''΂}z#vIÐÎ73#'3#5#535#53¼(Î…€| bUÐÎ73#'3#5#535#53¼+//ÎyttwUÐÎ73#'3#5#535#53¼% ÎyttyUÐÎ73#'3#5#535#53¼%Îytt& cUÐÎ73#'3#5#535#53¼.++++Îytt)mUÐÎ73#'3#5#535#53¼+$$$$ÎyttrUÐÎ73#'3#5#535#53¼+Îytt$tMÐÎ73#'3#5#535#53¼( Î|| €UÑÎ73#'53#5#535#5½"ÎyQ#tnUÐÎ73#'3#5#535#53¼+####Îytt!vNÐÎ73#'3#5#535#53¼(΀{{ bBÐÎ73#'3#5#535#53¼+//!!ÎŒ‡yvBÐÎ73#'3#5#535#53¼%!!!!ÎŒ‡yyBÐÎ73#'3#5#535#53¼%ÎŒ‡|-bBÐÎ73#'3#5#535#53¼.,,,,ÎŒ‡t)nBÐÎ73#'3#5#535#53¼,""""ÎŒ‡t!oBÐÎ73#'3#5#535#53¼+""""ÎŒ‡}+oBÐÎ73#'3#5#535#53¼(%%%%ÎŒ‡| €BÑÎ73#'53#5#535#5½"ÎŒ_(|lBÐÎ73#'3#5#535#53¼+%%%%ÎŒ‡tvBÐÎ73#'3#5#535#53¼(ÎŒ‡|  ên7#5353êÕVQQ êp7#5353êÕfSS êW7#5353êÕa:: êe7#5353êÕaHH ê]7#5353êÕa@@ ê>7#5353êÕa!! êN7#5353êÕa11 êQ7#5353êÕa44Gê7#5353êÕVZ55Lê7#5353êÕl_..Dêp7#5353êÕaWDê{7#5353êÕaW$$Bê}7#5353êÕaU((9êc7#5353êÕaLAêo7#5353êÕaTGê7#5353êÕVZ%%@êo7#5353êÕaS\ê˜7#5353êÕVo))\ê˜733#53UÕl˜)Uê|7#5353êÕahXê7#5353êÕak$$Uê‡7#5353êÕahXê…7#5353êÕakFêo7#5353êÕaYPêy7#5353êÕacZêˆ7#5353êÕWmQêy7#5353êÕadcê7#5353êÕVv''cê7#5353êÕlv''[êƒ7#5353êÕan[êŽ7#5353êÕan [ê‰7#5353êÕanYê…7#5353êÕalIêo7#5353êÕa[Zê~7#5353êÕal[êŠ7#5353êÕWnYê€7#5353êÕakWê˜733#53UÕl˜.Qê733#53~XÕiSêŽ7#5353êÕaf((Sê‡7#5353êÕaf!!Sê‡7#5353êÕaf!!Eêo7#5353êÕaXNêz7#5353êÕaaSê…7#5353êÕWfLê{7#5353êÕa_ÿëöÎ733##'37'7¼&&tP™8ÎhhIÿëöÎ733##'37'7¼&&^;™NÎhhGÿëöÎ733##'37'7¼&&fB™FÎhhl+ÿëöÎ733##'37'7¼&&gB™EÎhh„CÿëöÎ733##'37'7¼&&gB™EÎhhx7ÿëöÎ733##'37'7¼&&fB™FÎhhu4ÿëöÎ733##'37'7¼&&fB™FÎhh[ ÿëöÎ733##'37'7¼&&fB™FÎhhl,ÿëöÎ733##'37'7¼&&tP™8Îaoy1ÿëöÎ733##'37'7¼&&fB™FÎhhl,$öÎ733##'37'7¼&&tP™8ÎSDj7 $öÎ733##'37'7¼&&_;šMÎSDj6 $öÎ733##'37'7¼&&fBšFÎSDI $öÎ733##'37'7¼&&fBšFÎSD_+ $öÎ733##'37'7¼&&fBšFÎSDT$ $öÎ733##'37'7¼&&fBšFÎSDY+ $öÎ733##'37'7¼&&fBšFÎY>> $öÎ733##'37'7¼&&fBšFÎRDF $öÎ733##'37'7¼&&uQš7ÎQFV' $öÎ733##'37'7¼&&fBšFÎSDH LöÎ733##'37'7¼&&tPš8ÎE*M0 LöÎ733##'37'7¼&&^;šNÎE*N/ LöÎ733##'37'7¼&&fBšFÎE*+ LöÎ733##'37'7¼&&fBšFÎE*?& KöÎ733##'37'7¼&&fBšFÎE+8 KöÎ733##'37'7¼&&fBšFÎE+<%>öÎ733##'37'7¼&&fBšFÎN** DõÎ733##'37'7¼%%fFFÎN)3 MöÎ733##'37'7¼&&uQš7ÎE)8  CöÎ733##'37'7¼&&fBšFÎE32 SöÎ733##'37'7¼&&tPš8ÎA'F+ SöÎ733##'37'7¼&&^:šNÎA'C& QöÎ733##'37'7¼&&fBšFÎA)* QöÎ733##'37'7¼&&fBšFÎA)A$ QöÎ733##'37'7¼&&fBšFÎA)5RöÎ733##'37'7¼&&fBšFÎA(6DöÎ733##'37'7¼&&fBšFÎN', PöÎ733##'37'7¾%%iBšFÎA*+PöÎ733##'37'7¼&&tPš9ÎA*6IöÎ733##'37'7¼&&fBšGÎA11<öÎ733##'37'7¼&&uQš7ÎE:]5 <öÎ733##'37'7¼&&^;šNÎE:Z1 <öÎ733##'37'7¼&&fBšFÎE:> <öÎ733##'37'7¼&&fBšFÎE:O& <öÎ733##'37'7¼&&fBšFÎE:G#<öÎ733##'37'7¼&&fBšFÎE:L'6öÎ733##'37'7¼&&fBšFÎN77 7öÎ7##5337'7ö%{BšF€6—N  <öÎ733##'37'7¼&&uQš7ÎE:I# 6öÎ733##'37'7¼&&fBšFÎDA= ÿëÐÎ 73353#5##'37'7’`?t$É`eãl_zI ÿëÐÎ 73353#5##'37'7–M0|;É`eãl_}J ÿëÐÎ 73353#5##'37'7–L/|<É`eãl_b/ ÿëÐÎ 73353#5##'37'7‘K+t8É`eãl_zG ÿëÐÎ 73353#5##'37'7‘K+t8É`eãl_l9 ÿëÐÎ 73353#5##'37'7’L+t8É`eãl_j7 ÿëÐÎ 73353#5##'37'7‘K+t8É`eãl_R ÿëÐÎ 73353#5##'37'7›U68É`eãl_\) ÿëÐÎ 73353#5##'37'7’X7t,É`eãl_l2 ÿëÐÎ 73353#5##'37'7“M+t8É`eãl_b' &ÐÎ 73353#5##'37'7’`@u$ËEH¨MDb9 &ÐÎ 73#5##533'37'7¼s2}:ΨMDœE1&ÐÎ 73#5##53337'7¼v5}7ΨMDœE&ÐÎ 73353#5##'37'7’L,u8ËEH¨MDM#&ÐÎ 73353#5##'37'7’L1y7ËKN¨G>J$&ÐÎ 73353#5##'37'7’L1y7ËKN¨G>J$&ÐÎ 73353#5##'37'7’L1y7ËX[¨;2:+ÐÎ 73353#5##'37'7—Q5}7ËEH£G;3 +ÐÎ 73353#5##'37'7’X7s+ËEH£G;F( $ÐÎ 73353#5##'37'7’L1y7ËWZª=6BHÐÎ 73353#5##'37'7‘_?s#Ì:<†74K.HÐÎ 73353#5##'37'7–M.y:Ì:<†74I/HÐÎ 73353#5##'37'7–P3{7Ì:<22+IÐÎ 73353#5##'37'7‘K1y7Ì@B…0,9IÐÎ 73353#5##'37'7‘K1y7ÌEG…+'6!HÐÎ 73353#5##'37'7‘K1y7Ì:<†749#?ÐÎ 73353#5##'37'7‘K1y7ÌLNŽ--+HÐÎ 73353#5##'37'7šT8€7ÌEG…+'& IÐÎ 73353#5##'37'7‘W9v,Ë9<…628  BÐÎ 73353#5##'37'7‘K1z8ËKNŒ+(1 SÐÎ 73353#5##'37'7‘_Au#Ì:<{,,C*SÐÎ 73353#5##'37'7–M0{:Ì:<{,,A&RÐÎ 73353#5##'37'7–P4|7Ì:<|---RÐÎ 73353#5##'37'7‘K1y7Ì?A|((@%RÐÎ 73353#5##'37'7‘K1y7Ì?A|((2RÐÎ 73353#5##'37'7‘K1y7Ì?A|((5CÐÎ 73353#5##'37'7‘K1y7ÌLNˆ'', OÐÎ 73353#5##'37'7šT77ÌEG%%2RÐÎ 73353#5##'37'7‘W9v,Ë9<|--1 IÐÎ 73353#5##'37'7‘K0y8ËBE…../ <ÐÎ 73353#5##'37'7‘_Bv#Ì:<’C9L-<ÐÎ 73353#5##'37'7–M1|:Ì@B’=3K/<ÐÎ 73353#5##'37'7–P4|7Ì@B’=21 =ÐÎ 73353#5##'37'7‘K1y7Ì?A‘=3@&=ÐÎ 73353#5##'37'7‘K1y7ÌKM‘1'9$<ÐÎ 73353#5##'37'7‘K1y7Ì@B’=3:$ 6ÐÎ 73353#5##'37'7‘K1y7ÌLN˜704 =ÐÎ 73353#5##'37'7šT8€7ÌFH‘5++ =ÐÎ 73353#5##'37'7‘W9v,Ë9<‘B8>  6ÐÎ 73353#5##'37'7‘K1z8ËLO˜6,1 ÿëÐÎ 73#'37'7¼tP™8ÎãIÿëÐÎ 73#''753¼™NÎãLIGÿëÐÎ 73#'37'7¼^:™NÎãl*ÿëÐÎ 73#''753¼™EÎãHGEÿëÐÎ 73#''753¼™EÎãH86ÿëÐÎ 73#''753¼™EÎãC!ÿëÑÎ 73#''753½šEÎãF-+ÿëÐÎ 73#''753¼™8ÎãP42ÿëÐÎ 73#''753¼™EÎãH,*$ÐÎ 73#'37'7¼tPš8Ϊj7 $ÐÎ 73#'37'7¼_;šMΪj6 $ÐÎ 73#'37'7¼fC›FΪI $ÐÎ 73#'37'7¼fBšFΪ_+ $ÐÎ 73#'37'7¼fBšFΪT$ $ÐÎ 73#'37'7¼fC›FΪY+ $ÐÎ 73#'37'7¼fBšFΪ> $ÑÎ 73#'37'7½gEFΪF $ÐÎ 73#'37'7¼uQš7ΪV' $ÐÎ 73#'37'7¼fC›FΪH LÐÎ 73#'37'7¼tPš8΂M0 LÐÎ 73#'37'7¼^<›N΂N/ LÐÎ 73#'37'7¼fC›F΂+ LÐÎ 73#'37'7¼fC›F΂?& KÐÎ 73#'37'7¼fC›F΃8 KÐÎ 73#'37'7¼fC›F΃<%>ÐÎ 73#'37'7¼fC›F΋* KÐÎ 73#'37'7¼fEF΃+ MÐÎ 73#'37'7¼uQš7Î8  CÐÎ 73#'37'7¼fC›F΋2 SÐÎ 73#'37'7¼tQ›8Î{F+ SÐÎ 73#'37'7¼^;›NÎ{C% QÐÎ 73#'37'7¼fC›FÎ}* QÐÎ 73#'37'7¼fC›FÎ}A$ QÐÎ 73#'37'7¼fC›FÎ}5RÐÎ 73#'37'7¼fC›FÎ|6 DÐÎ 73#'37'7¼fC›FΈ, PÑÎ 73#'37'7¾iEFÎ~+ PÐÎ 73#'37'7¼tRœ9Î~6IÐÎ 73#'37'7¼fDœGÎ…1<ÐÎ 73#'37'7¼uQš7Î’]5 <ÐÎ 73#'37'7¼^<›NÎ’Z1 <ÐÎ 73#'37'7¼fC›FÎ’> <ÐÎ 73#'37'7¼fBšFÎ’O& <ÐÎ 73#'37'7¼fBšFÎ’G#<ÐÎ 73#'37'7¼fC›FÎ’L'6ÐÎ 73#'37'7¼fC›FΘ7 :ÑÎ 73#'37'7¾hEFΔ= <ÐÎ 73#'37'7¼uR›7Î’I# 6ÐÎ 73#'37'7¼fC›FΘ=  ëu 733533#53J YÖ5uXXX ëm 733533#53jEÖUmPPP ëU 733533#53O::Ö:U888 ëU 733533#53O::Ö:U888 ëR 733533#53O::Ö:R555 ëV 733533#53O::Ö:V999 ë= 733533#53N<9Ö9=  ëM 733533#53O::Ö:M000 ëg 733533#53J YÖ5gJJJ ëK 7#5353353ëÖ::....Gë 733533#53N!TÖ9555Gë 733533#53nBÖY333Aës 733533#53M=9Ö8sHëƒ 733533#53M=9Ö8ƒ(((Dë{ 733533#53M=9Ö8{$$$Dëy 733533#53M=9Ö8y""":ëa 733533#53M=9Ö8aAë| 733533#53M=9Ö8|(((Gë} 733533#53N!TÖ9}###Aën 733533#53M=9Ö8n\ë˜ 733533#53N!TÖ9˜)))\ë˜ 7#5353353ëÖYo))))Uë… 733533#53M=9Ö8…ZëŒ 733533#53M=9Ö8ŒUë… 733533#53M=9Ö8…Uë… 733533#53M=9Ö8…Gëm 733533#53M=9Ö8mSë… 733533#53M=9Ö8…Zë† 733533#53N!TÖ9†Sëx 733533#53M=9Ö8xcëœ 733533#53N!TÖ9œ&&&cëœ 733533#53nBÖYœ&&&Zë… 733533#53M=9Ö8…ZëŽ 733533#53M=9Ö8Ž!!!Zë‰ 733533#53M=9Ö8‰Xë… 733533#53M=9Ö8…Iëm 733533#53M=9Ö8mZë„ 733533#53M=9Ö8„Zë‡ 733533#53N!TÖ9‡Xë} 733533#53M=9Ö8}Wë˜ 733533#53N!TÖ9˜...Wë— 733533#53nBÖY—---Që… 733533#53M=9Ö8…!!!XëŒ 733533#53M=9Ö8Œ!!!Rë„ 733533#53M=9Ö8„Rë„ 733533#53M=9Ö8„Gëm 733533#53M=9Ö8mSë… 733533#53M=9Ö8…Rë… 733533#53N!TÖ9… Lëx 733533#53M=9Ö8xÿëëf7##5#5ëbafhhÿëëY7##5#5ëbaY[[ÿëë\7##5#5ëba\^^ÿëëY7##5#5ëbaY[[ÿëëY7##5#5ëbaY[[ÿëëO7##5#5ëbaOQQ ëv7##5#5ë_dvCC ëf7##5#5ë_df33 ëk7##5#5ë_dk88 ë_7##5#5ë_d_,,ëV7#53##ydÖ_C(Kë}7##5#5ëba}Fër7#53##vaÖb^?ëu7##5#5ëbau##>ëm7##5#5ëbam4ëb7##5#5ëbab<ëm7##5#5ëbam:ëi7##5#5ëbaiIë}7##5#5ëba}!!Eëp7#53##vaÖb\Eëu7##5#5ëbauEëo7##5#5ëbao:ëe7##5#5ëbaeDëm7##5#5ëaamBëh7##5#5ë``hIë}7##5#5ëba}!!Iëp7#53##vaÖb\Iëp7##5#5ëbapIëp7##5#5ëbap<ë`7##5#5ëba`Gëm7##5#5ëbam3ëf7##5#5ëbaf Ië7##5#5ëba##Bër7#53##vaÖb_Bëv7#53##vaÖbc!Bëo7#53##vaÖb]7ë_7#53##vaÖbMBëo7#53##vaÖb]Fëo7#53##vaÖb]ÿëÐÎ753#5#5''7#¼72AšBBŒãD \ÿëÐÎ753#5#5''7#¼70C¡F7—ã9 KÿëÐÎ753#5#5''7#¼70Cš?;“ã= QÿëÐÎ753#5#5''7#¼70Cš?4šã6 KÿëÐÎ753#5#5''7#¼61Cš?-¡ã/ :ÿëÐÎ753#5#5''7#¼70C¢H7—ã9 KÿëÐÎ73#5#53''7#¼66fDš?Îã0  A#ÐÎ753#5#5''7#¼72AšBWw«! ?#ÐÎ753#5#5''7#¼51Dš?O«  /#ÐÎ753#5#5''7#¼51Dš?O«  /#ÐÎ753#5#5''7#¼51Dš?O«  /ÐÎ753#5#5''7#¼52Cš@BŒ³)#ÐÎ753#5#5''7#¼52CœBO«  /ÐÎ753#5#5''7#¼52C›AG‡³ 2KÐÎ753#5#5''7#¼55@šCkcƒ &BÐÎ753#5#5''7#¼51D E_oŒ  !DÐÎ753#5#5''7#¼51Dš?djŠ "DÐÎ753#5#5''7#¼51Dš?`nŠ   =ÐÎ753#5#5''7#¼51Dš?Uy‘ AÐÎ753#5#5''7#¼52C¢H]q  =ÐÎ753#5#5''7#¼51Dš?Ww‘  DÐÎ753#5#5''7#¼54AšBlbŠ0AÐÎ753#5#5''7#¼51D¡F`n   @ÐÎ753#5#5''7#¼51D›@eiŽ %@ÐÎ753#5#5''7#¼51D›@eiŽ #=ÐÎ753#5#5'7#¼51Dš?Xv‘  AÑÎ753#5#5''7#½62C£I_o BÐÎ753#5#5''7#¼51D›?\rŒ  =ÐÎ753#5#5''7#¼54A›Chf‘ 3<ÐÎ753#5#5''7#¼51D Eam‘,<ÐÎ753#5#5''7#¼51Dš?ck‘-<ÐÎ753#5#5''7#¼51Dš?\r‘  *7ÐÎ753#5#5''7#¼51Dš?Q}— !=ÐÎ753#5#5''7#¼52C¢H^p‘(7ÐÎ753#5#5''7#¼51Dš?Yu—%LÐÎ753#5#5''7#¼54AšBlb  *EÐÎ753#5#5''7#¼51D E`n‰  !CÐÎ753#5#5''7#¼51D›@ei‹ #EÐÎ753#5#5''7#¼51D E`n‰  !<ÐÎ753#5#5#'7#¼51D›@Xv‘ BÐÎ753#5#5''7#¼52C¢H_oŒ  AÐÎ753#5#5''7#¼51D›@[s ÿëÐÎ 73#'3#5#53''7#¼'&&P3|2ÎãÞÑBXÿëÐÎ 73#'3#5#53''7#¼'&&P3|2ÎãÞÑ/ AÿëÐÎ 73#'3#5#53''7#¼'&&P3|2ÎãÞÑ6  GÿëÐÎ 73#'3#5#53''7#¼'&&P3|2ÎãÞÑ6  GÿëÐÎ 73#'3#5#53''7#¼'&&P3|2ÎãÞÖ+:ÿëÐÎ 73#'3#5#53''7#¼ ''V46ÎãÞÖ4 @ÿëÐÎ 73#'3#5#53''7#¼&''Q3|2ÎãÞÖ/ C#ÐÎ 73#'3#5#53''7#¼'&&P3{1Ϋ¦ž!  4#ÐÎ 73#'3#5#53''7#¼'&&P3{1Ϋ¦ž ##ÐÎ 73#'3#5#53''7#¼'&&P3{1Ϋ¦ž  -ÐÎ 73#'3#5#53''7#¼'&&P3{1β­¤(ÐÎ 73#'3#5#53''7#¼'&&M6{.β­¤&#ÐÎ 73#'3#5#53''7#¼!&&T55Ϋ¦ž%ÐÎ 73#'3#5#53''7#¼'&&O4{0β­¤'IÐÎ 73#'3#5#53''7#¼'&&O4{0Î…€|)BÐÎ 73#'3#5#53''7#¼'&&O4{0ÎŒ‡ƒ!BÐÎ 73#'3#5#53''7#¼'&&O4{0ÎŒ‡ƒ (BÐÎ 73#'3#5#53''7#¼'&&O4{0ÎŒ‡ƒ !=ÐÎ 73#'3#5#53''7#¼'&&O4{0ΑŒŒBÐÎ 73#'3#5#53''7#½"&&U4€5ÎŒ‡„!=ÐÎ 73#'3#5#53''7#¼&''P4{0ΑŒ‰ #DÐÎ 73#'3#5#53''7#¼&''P4{0Ί…‚(BÐÎ 73#'3#5#53''7#¼&''P4z/ÎŒ‡„"HÐÎ 73#'3#5#53''7#¼&&&P4{0Ά $HÐÎ 73#'3#5#53''7#¼&&&P4{0Ά <ÐÎ 73#'3#5#53''7#¼&''Q4{1Î’ŠBÐÎ 73#'3#5#53''7#¼!&&U46ÎŒ‡„ !BÐÎ 73#'3#5#53''7#¼&''P4{0ÎŒ‡„  <ÐÎ 73#'3#5#53''7#¼'&&P3{1ΑŒ‚ 4<ÐÎ 73#'3#5#53''7#¼'&&P3{1ΑŒ‚ +<ÐÎ 73#'3#5#53''7#¼'&&P3{1ΑŒ‚  2<ÐÎ 73#'3#5#53''7#¼'&&P3{1ΑŒ‚ *6ÐÎ 73#'3#5#53''7#¼'&&P3{1Θ“Œ <ÐÎ 73#'3#5#53''7#¼!&&T56ΑŒ„ *6ÐÎ 73#'3#5#53''7#¼'&&P3{1Θ“Œ *LÐÎ 73#'3#5#53''7#¼&&&P4{0΂}} (EÐÎ 73#'3#5#53''7#¼'&&P3{1Ή„„ !EÐÎ 73#'3#5#53''7#¼'&&P3{1Ή„‚  'EÐÎ 73#'3#5#53''7#¼'&&P3{1Ή„„ $=ÐÎ 73#'3#5#53''7#¼'&&P4{1ΑŒŒ  DÐÎ 73#'3#5#53''7#¼!&&T66Ί…  BÐÎ 73#'3#5#53''7#¼'&&P3{1ÎŒ‡„ ÿëÐÎ 73#''7#¼fD EÎãk [ÿëÐÎ 73#''7#¼fD EÎãZ KÿëÐÎ 73#''7#¼fD EÎã_ OÿëÐÎ 73#''7#¼fD EÎãY IÿëÐÎ 73#''7#¼fDš?ÎãI @ÿëÑÎ 73#''7#½gD£HÎãZ JÿëÑÎ 73#''7#½gDš?ÎãO ?#ÐÎ 73#''7#¼fDŸDΫ? 7#ÐÎ 73#'#5'¼ EDΫF('#ÐÎ 73#'#5'¼ EDΫH*(#ÐÎ 73#'#5'¼ EDΫH*(ÐÎ 73#'#5'¼ EDα> #ÑÎ 73#'#5'½EDΫF('ÐÎ 73#'#5'¼ EDαA$#NÐÎ 73#''7#¼gC E΀!"LÐÎ 73#''7#¼gC E΂ GÐÎ 73#''7#¼gC E· GÐÎ 73#''7#¼gC E· ?ÐÎ 73#''7#¼gC EÎ GÐÎ 73#''7#¼gC E· ?ÐÎ 73#''7#¼fD EÎGÐÎ 73#''7#¼gC E·*+GÐÎ 73#''7#¼gC E· GÐÎ 73#''7#¼gC E· GÐÎ 73#''7#¼gC E·?ÐÎ 73#''7#¼fD EÎGÐÎ 73#''7#¼gC E·?ÐÎ 73#''7#¼fD EÎ=ÐÎ 73#''7#¼gC EΑ42=ÐÎ 73#''7#¼gC EΑ$ "=ÐÎ 73#''7#¼gC EΑ('=ÐÎ 73#''7#¼gC EΑ% #8ÐÎ 73#''7#¼fD EΖ>ÐÎ 73#''7#¼gC EÎ$%9ÐÎ 73#''7#¼fD EΕ!PÐÎ 73#''7#¼gC EÎ~  LÐÎ 73#''7#¼gC E΂KÐÎ 73#''7#¼gC E΃KÐÎ 73#''7#¼gC E΃AÐÎ 73#''7#¼fD EÎ IÐÎ 73#''7#¼fD EÎ…CÐÎ 73#''7#¼fD E΋ÿíëf 7##5##5#5ë2K1fff__ÿíëY 7#53##5##F1Ö2KFYYRÿíë\ 7##5##5#5ë2K1\\\UUÿíëY 7#53##5##F1Ö2KFYYRÿíëO 7#53##5##F1Ö2K<OOHÿíëY 7#53##5##F1Ö2KFYYRÿíëO 7#53##5##F1Ö2K<OOH!ëv 7#53##5##U@Ö2;cBB>!ëf 7#53##5##U@Ö2;S22.!ëk 7#53##5##U@Ö2;X773!ë_ 7#53##5##U@Ö2;L++'ëS 7#53##5##U@Ö2;@$$ë_ 7#53##5##U@Ö2;L00+ëV 7#53##5##U@Ö:3C++&Jë} 7#53##5##F1Ö2Kj Gër 7#53##5##F1Ö2K^Jëx 7#53##5##F1Ö2Ke@ëm 7#53##5##F1Ö2KZ8ëb 7#53##5##F1Ö2KO=ëp 7#53##5##F1Ö2K\=ëi 7#53##5##F1Ö2KVLë} 7#53##5##F1Ö2KjBëp 7#53##5##F1Ö2K\Hëu 7#53##5##F1Ö2KbCëo 7#53##5##F1Ö2K]:ëc 7#53##5##F1Ö2KR>ëo 7#53##5##F1Ö2K]Bëi 7#53##5##F1Ö2KW=ë} 7#53##5##F1Ö2Kj---=ëp 7#53##5##F1Ö2K\=ëp 7#53##5##F1Ö2K\=ëp 7#53##5##F1Ö2K\/ë` 7#53##5##F1Ö2KM=ëp 7#53##5##F1Ö2K\4ëf 7#53##5##F1Ö2KSHë 7#53##5##F1Ö2Kl$$$Bër 7#53##5##F1Ö2K`Bër 7#53##5##F1Ö2K`Bëo 7#53##5##F1Ö2K]8ë_ 7#53##5##F1Ö2KLBëo 7#53##5##F1Ö2K]Fëo 7#53##5##F1Ö2K] ë7#5ëÖ ë7#5ëÖ ë7#5ëÖ ë7#5ëÖ ë7#5ëÖ ë7#5ëÖ ë7#5ëÖUëh7#5ëÖhIë\7#5ëÖ\Gë[7#5ëÖ[<ëO7#5ëÖODëW7#5ëÖW@ëS7#5ëÖSfëy7#5ëÖyXëk7#5ëÖkUëh7#5ëÖhUëh7#5ëÖhLë_7#5ëÖ_Uëh7#5ëÖhSëf7#5ëÖfgëz7#5ëÖzUëh7#5ëÖhZëm7#5ëÖmYël7#5ëÖlOëa7#5ëÖaVëh7#5ëÖhXëj7#5ëÖjcëv7#5ëÖvVëh7#5ëÖhYël7#5ëÖlVëh7#5ëÖhJë\7#5ëÖ\Uëh7#5ëÖhQëd7#5ëÖdfëy7#5ëÖy^ër7#5ëÖraës7#5ëÖs_ëq7#5ëÖqLë^7#5ëÖ^]ëo7#5ëÖoZël7#5ëÖlÿëÐÎ73#''¼ ÎãF ÿëÐÎ73#''¼ ÎãF ÿëÐÎ73#''¼ ÎãF ÿëÐÎ73#''¼ ÎãF ÿëÐÎ73#''¼ ÎãN ÿëÐÎ73#''¼ ÎãG #ÐÎ73#''¼œΫJ #ÐÎ73#''¼œΫ: #ÐÎ73#''¼œΫ> #ÐÎ73#''¼œΫ7 #ÐÎ73#''¼œΫ) #ÐÎ73#''¼œΫ@ #ÐÎ73#''¼œΫ7 NÐÎ73#''¼ ΀+NÐÎ73#''¼ ΀NÐÎ73#''¼ ΀ NÐÎ73#''¼ ΀  AÐÎ73#''¼œΊ MÐÎ73#''¼œÎ  DÐÎ73#''¼œΊMÐÎ73#''¼œÎ. MÐÎ73#''¼œÎ& MÐÎ73#''¼œÎ& MÐÎ73#''¼œÎ$ =ÐÎ73#''¼œΑ% MÐÎ73#''¼ žÎ( EÐÎ73#''¼œΉ"=ÐÎ73#''¼œΑ7 =ÐÎ73#''¼œΑ0 =ÐÎ73#''¼œΑ2 =ÐÎ73#''¼œΑ/ 6ÐÎ73#''¼œΘ& =ÐÎ73#''¼œΑ. 6ÐÎ73#''¼œΘ- RÐÎ73#''¼œÎ|( RÐÎ73#''¼œÎ|  SÐÎ73#''¼œÎ{' SÐÎ73#''¼œÎ{ EÐÎ73#''¼œΉRÐÎ73#''¼œÎ| MÐÎ73#''¼œÎ¼ÿëÐÎ73#¼Îã¼ÿëÐÎ73#¼Îã½ÿëÑÎ73#½Îã¼%ÐÎ73#¼Ω¼%ÐÎ73#¼Ω½%ÑÎ73#½Ω¼PÐÎ73#¼Î~¼PÐÎ73#¼Î~¼PÐÎ73#¼Î~¼BÐÎ73#¼ÎŒ¼BÐÎ73#¼ÎŒ¼BÐÎ73#¼ÎŒ¼UÐÎ73#¼Îy¼UÐÎ73#¼Îy½UÑÎ73#½Îy.ÿëÐ@73#5#.¢Ž@UB.ÿëÐ@73#5#.¢Ž@UB.ÿëÐ@73#5#.¢Ž@UB.ÿëÎ=73#5#. Œ=R?.ÿëÐ<73#5#.¢Ž '7#5327#7#5"&54632'"32654&Ä=b#,ºr9  >9<C  )ÿçßQ '7#5327#7#5"&54632'"32654&Ä;`",¶p8  QMIQ  *%ÿçßQ '7#5327#7#5"&54632'"32654&Ä>a#,ºs9  QMIQ  *%ÿçßQ '7#5327#7#5"&54632'"32654&Ä>a#,ºs9  QMIQ  *.ÿçßQ '7#5327#7#5"&54632'"32654&Å:]!)±n7 QN JQ  *)ÿçßQ '7#5327#7#5"&54632'"32654&Ä=^")¶r9  Q FIQ  *%ÿçßQ '7#5327#7#5"&54632'"32654&Ä?`"*ºu:  Q FIQ  *%ÿçßQ '7#5327#7#5"&54632'"32654&Ä?`"*ºu:Q FIQ  *5ÿïÕF7#3#5І‹ F1W2ÿïÕF7#3#5Њ£F1W1ÿïÕF7#3#5Ћ¤F1W1ÿïÑ?7#3#5͈Œ ?*P5ÿïÕ?7#3#5І‹ ?*P5ÿïÕ?7#3#5ЇŒ ?*P2ÿïÕ<7#3#5Њ£<'M1ÿïÑ67#3#5͈Œ 6!G5ÿïÕ67#3#5І‹ 6!G5ÿïÕ67#3#5І‹ 6!G2ÿïÕ67#3#5Њ£6!G5ÿíÕ67#3#5І‹ 6#I5ÿìÕ67#3#5ЇŒ 6$J2ÿìÕ67#3#5Њ£6$J5ÿìÕF7#3#5І‹ F4Z2ÿìÕF7#3#5Њ£F4Z2ÿìÕF7#3#5Њ£F4Z1ÿíÑB7#3#5͈Œ B/U5ÿìÕ@7#3#5І‹ @.T5ÿìÕ@7#3#5І‹ @.T2ÿìÕ@7#3#5Њ£@.T5ÿíÕL 73#3#535#6š‡Œ ‡†L7;5ÿíÕL 73#3#535#6š‡Œ ‡†L7;1ÿíÕL 73#3#535#2ž‹¤‹ŠL7;1ÿíÑL 73#3#535#2œ‰Œ ‰ˆL7;5ÿíÕG 73#3#535#6š‡Œ ‡†G595ÿíÕD 73#3#535#6š‡Œ ‡†D461ÿíÕB 73#3#535#2ž‹¤‹ŠB35 1ÿíÑ< 73#3#535#2œ‰Œ ‰ˆLaN5=)ÿëÐH73#5#'3#67535#†J6]S@%(03??H]J49%ÿëÐE73#5#'3#67535#…K7_TA%*15A@EZH48)ÿëÐ@73#5#'3#27535#†J6]S@$)03??@UC/7 ,ÿëÔ;73#5#'3#67535#ŠJ6]R?$'03?>;P>-3 )ÿëÐ;73#5#'3#67535#†J6]S@%(03??;P>-3 %ÿëÐ;73#5#'3#67535#…K7_TA%(14A@;P>-3 %ÿëÐ;73#5#'3#67535#…K7_TA%(14A@;P=.2 )ÿëÐB73#5#'3#27535#†J6]S@$)03??BWD17 %ÿëÐ?73#5#'3#67535#†J6`VC%(14CB?TB15 %ÿëÐ;73#5#'3#67535#†J6`TA%)14A@;P>.2 )ÿëÐN73#5#'3#27535#†J6]S@%(03??NcP8<%ÿëÐN73#5#'3#27535#†J6`UB%)14BANcP8<#ÿëÐN73#5#'3#27535#…K7`UC&*25CANcP8<,ÿìÔO73#5#'3#67535#ŠJ6]R?$)04?>OcP8=)ÿëÐJ73#5#'3#67535#†J6]S@%(03??J_M5:%ÿëÐI73#5#'3#67535#…K7_TA%*15A@I^L79%ÿëÐH73#5#'3#67535#…K7_TA%(14A@H]J49)ÿíÐL 73#67535#7#5##535#)M:"*-99§%%%L7;]]F3%ÿíÐL 73#67535#7#5##535#&M:!+-:9ª&&&L7;]]F3%ÿíÐL 73#67535#7#5##535#&M:!+-:9ª&&&L7;]]F3+ÿíÔL 73#67535#7#5##535#,L9!+-98¨&&&L7;]]F3)ÿíÐH 7#5##535#'3#67535#Ð%%%nM:#+-99HYYC039%ÿíÐG 7#5##535#'3#67535#Ð'''oN;#,.;:GXXB048%ÿíÐ? 7#5##535#'3#27535#Ð'''oN;#,.;:?PP:).5 ,ÿîÔ; 73#27535#7#5##535#,N:"*-::¨&&&;.0 LL6$)ÿíÐ; 7#5##535#'3#27535#Ð%%%nM:#+-99;LL6$.1 &ÿíÐ; 7#5##535#'3#27535#Ð'''nM:"+.:9;LL6$.1 &ÿíÐ; 7#5##535#'3#27535#Ð'''nM:"+.:9;LL6$.1 )ÿíÐA 7#5##535#'3#27535#Ð'''lM:!*,99ARR<*/6 %ÿíÐA 7#5##535#'3#27535#Ð'''oN;"+.;:ARR<*/6 %ÿíÐ> 7#5##535#'3#27535#Ð'''oN;"+.;:>OO9(,6 )ÿíÐN 73#67535#7#5##535#)M:"*-99§%%%N8<__H5#ÿíÐN 73#27535#7#5##535#%O=!$,0=;«'''N8<__H5#ÿíÐN 73#27535#7#5##535#%O= $,/=;«'''N8<__H5+ÿíÔO 73#67535#7#5##535#+N:"+-::©&&&O8=``I6)ÿîÐI 73#27535#7#5##535#)M:!+,99§%%%I39ZZD3%ÿîÐK 73#67535#7#5##535#%O;#,.;;«&&&K4:\\F4%ÿîÐH 73#27535#7#5##535#%O;$,.;;«&&&H29YYC2)ÿíÐL 73#67535#53#5##535#)M:"*-99“&&&L7; \\(%ÿíÐL 753#5##535#'3#67535#¼'''oM:!+-:9.]](F7;%ÿíÐL 73#67535#53#5##535#&M:!+-:9–'''L7; ]](+ÿðÔL 73#67535#53#5##535#,L9!+-98”&&&L5:ZZ*)ÿíÐH 753#5##535#'3#67535#¼&&&mM:"*-99,YY'C58%ÿíÐG 753#5##535#'3#67535#¼'''oN;#,.;:,XX'B48%ÿíÐ? 753#5##535#'3#27535#¼'''oN;#,.;:+PP&:.5 +ÿîÔ< 73#27535#53#5##535#,L9"+-98”&&&<.1 KK"&ÿíÐ: 753#5##535#'3#67535#¼(((mM:"*.:9&KK!5,3&ÿíÐ9 753#5##535#'3#67535#¼(((mM:"+-:9%JJ 4,1 &ÿíÐ9 753#5##535#'3#67535#¼(((mM:"+-:9%JJ 4,1 &ÿìÐA 753#5##535#'3#67535#¼(((mM:"+-:9*RR%<06 %ÿìÐ@ 753#5##535#'3#67535#¼(((mM;",-;9)QQ$;05 %ÿìÐ= 753#5##535#'3#67535#¼(((mM;",-;9)NN$8/4 )ÿñÐN 73#67535#53#5##535#)M:"*,99“&&&N5;\\+%ÿìÐN 73#27535#53#5##535#&N;#+.;:–&&&N5@^^+%ÿìÐN 73#27535#53#5##535#&N;#+.;:–&&&N5@^^++ÿíÔO 73#67535#53#5##535#,N;"*-;:”&&&O7> ``,)ÿîÐJ 753#5##5335#'3#27535#¼&&&mM:!+,990[[++2:%ÿîÐJ 753#5##5335#'3#27535#¼'''oN;#+.;:0[[++2:%ÿîÐH 753#5##5335#'3#27535#¼'''oN;#+.;:.YY)+29)ÿììM 7'6753&'3#67535#· " )* !–R?!*,>>*)O6<&ÿìéM 7'6753&'3#67535#³ ! )* !”Q>!*,>=))O6<&ÿìéM 7'6753&'3#67535#³ " (, !”Q>!),>=*(O6<&ÿìãM 7'6753&'3#67535#® ! (+ Q>'*>=))O6<)ÿìéI 7'6753&'3#67535#³ '+ !’R? *+>>))K5:%ÿëèG 73#67535#'6753&%S?!*,??Œ  (, !G49*(%ÿëéE 7'6753&'3#67535#± ! )- !–T@!),@@*( J47&ÿìé@ 7'6753&'3#67535#± ), "“R? )+?>#" B0 2 )ÿìé@ 7'6753&'3#27535#´ !** !‘Q? )+>=%$ A/0 %ÿëé> 7'6753&'3#67535#´ # ,* !•S@!),@?%$ A/0 %ÿìé= 7'6753&'3#27535#´ # -* !•R? )+?>$$ ?. 0 )ÿìéB 7'6753&'3#27535#´ # ,* !‘P>'*=<%$ F/5 %ÿìéB 7'6753&'3#27535#´ % -* !•R? (+?>%$ E/4 %ÿìé@ 7'6753&'3#27535#´ # ,* !•R? ),?>%$ C/3 )ÿììP 7'6753&'3#67535#· " )* !–Q> ),==*)S9=%ÿìéP 7'6753&'3#67535#³ # ,* !–S? )+??))S9=%ÿìéP 7'6753&'3#67535#³ $ +* !–S? )+??))S9=&ÿìãN 73#67535#'6753&'Q> (+>=‡  '* N7=!)))ÿììL 73#67535#'6753&)Q>(+==Ž $ ,* !L5=*)%ÿìéL 73#67535#'6753&%S? ),??Ž " +* !L5=))%ÿìéI 73#67535#'6753&%S? ),??Ž # ,* !I5:)))ÿíÔL 73#67535##3#53#)M:"*-99§6:NJ6L5=_%ÿíÔL 73#67535##3#53#%P<"*-;;«8RM9L5=_)ÿîÔG 73#27535##3#53#)M:"*,99§9=PL9G19Y%ÿîÔG 73#27535##3#53#%P<"*-;;«8RN:@03 R+ÿîÙ; 73#67535##3#53#,J7"+-76¨9>RM9;.1 M )ÿîÔ; 73#27535##3#53#)M:"*,99§9=PL9;,2 M %ÿîÔ> 73#27535##3#53#%P<"*-;;«:>RN:>.3 P%ÿîÔ: 73#27535##3#53#&N;"+-;:ª:>QM::,2  L )ÿîÔA 73#27535##3#53#)M:"*-99§9=PL9A05 S%ÿîÔA 73#27535##3#53#&N; "+/;:ª:>RN:A04 S%ÿîÔ= 73#27535##3#53#&N; "+/;:ª:>RN:=-3  O)ÿíÔN 73#67535##3#53#)M:"*-99§6:NJ6N5?a$ÿíÔN 73#67535##3#53#&N< #,/<:ª6:NJ6N5?a$ÿíÔN 73#67535##3#53#&N< #,/<:ª6:NJ6N5?a+ÿìÙO 73#27535##3#53#+K7!+-77©9>RM9O6@b)ÿíÔL 73#67535##3#53#)L9#+-88§6:NJ6L5=_%ÿíÔL 73#67535##3#53#&N; #,/;:ª8 #53#=#J›r OO%%5ÿïÐ> #53#=#J›r OO%%5ÿïÐ> #53#=#J›r OO%%2ÿïÎ; 7#5##535#Îttt;LL4!5ÿïÐ6 7#5##535#Ðrrr6GG/2ÿïÎ7 7#5##535#Îttt7HH2 5ÿïÐ7 7#5##535#Ðsss7HH2 5ÿïÐ7 7#5##535#Ðsss7HH2 5ÿïÐ7 7#5##535#Ðsss7HH2 5ÿïÐ7 7#5##535#Ðsss7HH2 5ÿïÐF 7#5##535#ÐsssFWW?+2ÿïÐF 7#5##535#ÐvvvFWW?+5ÿïÐF 7#5##535#ÐsssFWW?+2ÿïÎF 7#5##535#ÎtttFWW?,5ÿïÐ? 7#5##535#Ðsss?PP8%5ÿïÐ? 7#5##535#Ðsss?PP8%5ÿïÐ? 7#5##535#Ðsss?PP8%5ÿîÐH 73353#5##735#5rrrrHZ5ÿîÐH 73353#5##735#5rrrrHZ5ÿîÐG 73353#5##735#5rrrrGY1ÿîÎH 73353#5##735#1uuuuHZ5ÿîÐC 73353#5##735#5rrrrCU5ÿîÐB 73353#5##735#5rrrrBT5ÿîÐ@ 73353#5##735#5rrrr@R1ÿîÎB 73353#5##735#1uuuuBT5ÿîÐ9 73353#5##735#5rrrr9K5ÿîÐ9 73353#5##735#5rrrr9K5ÿîÐ8 73353#5##735#5rrrr8J5ÿîÐ9 73353#5##735#5rrrr9K5ÿîÐ9 73353#5##735#5rrrr9K5ÿîÐ8 73353#5##735#5rrrr8J5ÿîÐG 73353#5##735#5rrrrGY5ÿîÐG 73353#5##735#5rrrrGY5ÿîÐG 73353#5##735#5rrrrGY1ÿîÎH 73353#5##735#1uuuuHZ5ÿîÐD 73353#5##735#5rrrrDV5ÿîÐD 73353#5##735#5rrrrDV5ÿîÐD 73353#5##735#5rrrrDV)ÿèìH 73353#5##735#'6753&),,,,z " )* !HZ++%ÿèìH 73353#5##735#'6753&%////~ $ +* !HZ++%ÿèìH 73353#5##735#'6753&%////~ $ +* !HZ++-ÿèìL 73353#5##735#'6753&-,,,,v  '* !L^++)ÿèéH 73353#5##735#'6753&),,,,v  &+ !HZ++.ÿêéH 73353#5##735#'6753&.****q $+ !HZ*+%ÿêéB 73353#5##735#7'6753&%////z (+ !BT* +-ÿêé> 7'6753&'3353#5##735#³ $+ "++++' 'BN)ÿêé> 7'6753&'3353#5##735#³  &+ "‘----' 'BN%ÿêé> 7'6753&'3353#5##735#²  &, "•////' ' CN%ÿêé< 73353#5##735#'6753&%////x &, "<N%$ )ÿêé< 73353#5##735#'6753&)----t %, "<N%%%ÿêé< 73353#5##735#'6753&%////x  &, "<N%%%ÿêé< 73353#5##735#'6753&%////x &, "<N%$ )ÿêìN 73353#5##735#'6753&)----x" )+ !N`*+%ÿêìN 73353#5##735#'6753&%////| " ++ !N`*+%ÿêìN 73353#5##735#'6753&%////| " ++ !N`*+-ÿêìN 73353#5##735#'6753&-,,,,t &+ !N`*+)ÿêìH 73353#5##735#'6753&)----x" )+ !HZ*+%ÿêìH 73353#5##735#'6753&%////| " *, !HZ*+%ÿêìH 73353#5##735#'6753&%////| " *, !HZ*+.ÿèãL7'66753&’D *,$% 6$'( & .ÿèãL7'66753&’D *,$% 6$'( & +ÿèàL7'66753&ŽE )-#& 7$'( % #ÿèÜG7'66753&€? '*', ?!$'% .ÿèãF7'66753&E *,$% 8 #&$ .ÿèãF7'66753&E *,$% 8 #&$ .ÿèãF7'66753&E *,$% 8 #&$ #ÿèÜ:7'66753&€@ (*&- @ .ÿèã>7'66753&D *,$% 8"#!.ÿèã>7'66753&D *,$% 8"#!.ÿèã87'66753&D ++#& 9.ÿêã>7'66753&C ++"' 8  .ÿêã>7'66753&C ++"' 8  .ÿêä<7'66753&D ++"( 9  .ÿèäL7'66753&‘D *,$% 7() (' .ÿèäL7'66753&‘D *,$% 7() (' )ÿèåL7'66753&D *-&( ;'()& #ÿèÜG7'66753&€@ &+&, <"%% " -ÿçåE7'66753&D *-#' 8!$& " -ÿçåE7'66753&D *-#' 8!$& " -ÿçåE7'66753&D *-#' 8!$& " #ÿééE 7'6753&''6753&³ # ), !X ( 0 (&( "ÿééE 7'6753&''6753&³ & -, !Z ' 0 (&(  "ÿééE 7'6753&''6753&³ & -, !Z ' 0 (&(  ÿéãE 7'6753&''6753&® & -+ !X ' 0 (&)  "ÿééE 7'6753&''6753&³ # ++ "V ) 3 +)' !ÿçé@ 7'6753&''6753&³ # +, "X * 1 *&*   !ÿçé@ 7'6753&''6753&³ # +, "X * 1 *&*   ÿéã< 7'6753&''66753&® & -+ "Y &  %#  "ÿéé< 7'6753&''6753&³ $ ++ "T * 3 %# '  !ÿéé< 7'6753&''6753&³ $ ++ "W ) 1 %# (  !ÿéé< 7'6753&''6753&³ $ ++ "W ) 1 %# (  !ÿìé< 7'6753&''6753&³ # ++ "V + 3 & $ ' !ÿìé< 7'6753&''6753&³ # ++ "V + 3 & $ ' !ÿìé< 7'6753&''6753&³ # ++ "V + 3 & $ ' ÿééN 7'6753&''6753&³ # ), "X - 5 0. ,  ÿééN 7'6753&''6753&³ # ), "X - 5 0. ,  ÿééN 7'6753&''6753&³ # ), "X - 5 0. ,  ÿéãJ 7'6753&''6753&® % ,+ !Z ( 1 /-!.!  !ÿééI 7'6753&''6753&´ $ ++ W + 4 0 . +  ÿééI 7'6753&''6753&´ $ ++ [ + 4 0 . +  ÿééI 7'6753&''6753&´ $ ++ [ + 4 0 . +  1ÿçÔD "&54632'"32654&ƒ*((*)(()J  1ÿçÔD "&54632'"32654&ƒ*((*)(()J  1ÿçÔD "&54632'"32654&ƒ*((*)(()J  .ÿçÑA "&54632'"32654&€+''+*''*H    1ÿçÔ? "&54632'"32654&‚*''**((*F 1ÿçÔ? "&54632'"32654&‚*''**((*F 1ÿçÔ? "&54632'"32654&ƒ+''+*''*E .ÿçÑ9 "&54632'"32654&€+''+*''*? 1ÿçÔ7 "&54632'"32654&ƒ+''+*''*= 1ÿçÔ7 "&54632'"32654&ƒ+''+*''*> 1ÿçÔ7 "&54632'"32654&ƒ+''+*''*> 1ÿêÔ7 "&54632'"32654&ƒ,&&,+&&+; 1ÿêÔ7 "&54632'"32654&ƒ,&'+*'&+: 1ÿêÔ7 "&54632'"32654&ƒ,&'+*'&+: 1ÿçÔD "&54632'"32654&ƒ*((*)(()J  1ÿçÔC "&54632'"32654&‚*''*+'(*J1ÿçÔD "&54632'"32654&ƒ*((*)(()J  .ÿçÑE "&54632'"32654&€*('+)(()L1ÿçÔ? "&54632'"32654&ƒ+''+*''*E 1ÿçÔ@ "&54632'"32654&ƒ+''+)('*F 1ÿçÔ@ "&54632'"32654&ƒ+''+*''*F )ÿçáB7#&''67#5ÖGK ?@ I GB(!(%ÿçÞB7#&''67#5ÓGJ ?@ I GB) !(%ÿçÞB7#&''67#5ÓGJ ?@ I GB) !((ÿçØ?7#&''67#5ÎCE << C C?& !  &*ÿçâ<7#&''67#5×F F @? D G<$   $%ÿçÞ<7#&''67#5ÔG F ?A E F<$   $%ÿçÞ<7#&''67#5ÔG F ?A E F<$   $)ÿç×67#&''67#5ÎD A ;: ? D6  *ÿçâ37#&''67#5ÖG H A@ D F3  &ÿçÞ67#&''67#5ÓF E ?? CF6  &ÿçÞ27#&''67#5ÓG G ?@ E F2   *ÿëâ37#&''67#5ÖGK A? H H3    &ÿêÞ67#&''67#5ÓHN ?@ KG6    &ÿêÞ97#&''67#5ÓHL ?? JG9   )ÿçáB7#&''67#5×HK ?@ I GB(!(&ÿçÞB7#&''67#5ÔHK ?@ IFB)  (&ÿçÞB7#&''67#5ÔHK ?@ IFB)  ($ÿçÜB7#&''67#5ÒHK @@ H GB)   )*ÿçâ?7#&''67#5ÖF I ?? D F?&   &&ÿçÞB7#&''67#5ÓGK ?@ IGB)  (&ÿçÞB7#&''67#5ÓGK ?@ IGB)  ()ÿçáR7#5#&''67#5©GtF F ?? E GR   %ÿçÞR7#5#&''67#5¥FuH H ?A G FR   %ÿçÞR7#5#&''67#5¥FuH H ?A G FR   %ÿçÚK7#5#&''67#5£GuF F => D FK   *ÿçâM7#5#&''67#5©GtF F @@ D GM  &ÿçÞM7#5#&''67#5¥FtG G ?? CFM  &ÿíÞI7#5#&''67#5¥FtH J ?> G FI  #ÿçÛE7#5#&''67#5£GuG D ?? CEE  *ÿçáD7#5#&''67#5©GtGJ @@ G GD   &ÿçÞD7#5#&''67#5¥FtHK @? H FD   &ÿçÞA7#5#&''67#5¥FtF D @? AEA  *ÿëáD7#5#&''67#5©GtF F @? C FD  &ÿëÞE7#5#&''67#5¥FtG F ?? C EE  &ÿëÞB7#5#&''67#5¥FtG G @@ E FB  *ÿçâY7#5#&''67#5©GtG I @> E FY#  &ÿçÞY7#5#&''67#5¥FtG I ?? F FY#  &ÿçÞZ7#5#&''67#5«S{G I ?? F FZ$  $ÿçÛW7#5#&''67#5£GuG G ?? E FW!  )ÿçâR7#5#&''67#5©GtGL ?@ I GR!   %ÿçßR7#5#&''67#5¥FuHL @A J GR!   %ÿçßR7#5#&''67#5¥FuHL @A J GR!   -ÿëÐF 73#5'75#.¢ŒŽF[$ -ÿëÐF 73#5'75#.¢ŒŽF[$ -ÿëÐF 73#5'75#.¢ŒŽF[$ -ÿëÎF 73#5'75#. ŠŒF[$ -ÿëÐC 73#5'75#.¢ŒŽCX! -ÿëÐA 73#5'75#.¢ŒŽAV! -ÿëÐ? 73#5'75#.¢ŒŽ?T! -ÿëÎ< 73#5'75#. ŠŒ 7#3#3#5Ї‡‡Œ > Q5ÿíÕ> 7#3#3#5Ї‡‡Œ > Q5ÿíÕ> 7#3#3#5Ї‡‡Œ > Q5ÿìÕM 7#3#3#5Ї‡‡Œ Ma5ÿìÕM 7#3#3#5Ї‡‡Œ Ma1ÿìÕM 7#3#3#5Ћ‹‹¤Ma1ÿìÑO 7#3#3#5͈ˆˆŒ Oc5ÿìÕK 7#3#3#5Ї‡‡Œ K_5ÿìÕK 7#3#3#5Ї‡‡Œ K_5ÿìÕD 7#3#3#5Ї‡‡Œ DX.ÿíØG7#5#53'3373ÒŸ¥ª)/GG----.ÿíØG7#5#53'3373ÒŸ¥ª)/GG----.ÿíØG7#5#53'3373ÒŸ¥ª)/GG----+ÿíÕ@7#5#53'3373Ïž¤ª)1@@((((.ÿíØ<7#5#53'3373ÒŸ¥ª)1<<####.ÿíØ<7#5#53'3373ÒŸ¥ª)1<=$$$$.ÿíØ<7#5#53'3373ÒŸ¥ª)1<=$$$$+ÿíÕ87#5#53'3373Ïž¤ª)189!!!!.ÿíØ67#5#53'3373ÒŸ¥ª)167 .ÿíØ67#5#53'3373ÒŸ¥ª)167 .ÿíØ67#5#53'3373ÒŸ¥ª)167 .ÿðØ:7#5#53'3373ÒŸ¥ª)1:8!!!!.ÿðØ:7#5#53'3373ÒŸ¥ª)1:8!!!!.ÿðØ67#5#53'3373ÒŸ¥ª)164.ÿíØG7#5#53'3373ÒŸ¥ª)/GG----.ÿíØG7#5#53'3373ÒŸ¥ª)/GG----.ÿíØG7#5#53'3373ÒŸ¥ª)/GG----+ÿíÕF7#5#53'3373Ïž¤ª)/FF----.ÿíØ@7#5#53'3373ÒŸ¥ª)0@@&&&&.ÿíØ@7#5#53'3373ÒŸ¥ª)0@@&&&&.ÿíØ@7#5#53'3373ÒŸ¥ª)0@@&&&&0ÿçÜT7#5#5"&54632'"32654&«K|¬V##""TS  *+ÿçÖT7#5#5"&54632'"32654&¦K{«U"## "TS  *0ÿçÜT7#5#5"&54632'"32654&«K|¬V##""TS  *+ÿçÖP7#5#5"&54632'"32654&¦K{«U" !!!#PO  '0ÿçÜM7#5#5"&54632'"32654&«K|¬V#!!#"MM  &+ÿçÖM7#5#5"&54632'"32654&¦K{«U" !!!#MM  &0ÿçÜK7#5#5"&54632'"32654&«K|¬V##""KK  $*ÿçÖD7#5#5"&54632'"32654&¥K|¬V#!!! "DF  0ÿçÜ@7#5#5"&54632'"32654&«K|¬V#!!! "@C +ÿçÖ@7#5#5"&54632'"32654&¦K{«V$!! !"@C 0ÿçÜ?7#5#5"&54632'"32654&«K|¬V#!!! "?C 0ÿçÜD7#5#5"&54632'"32654&«K|¬V#!!! "DF  +ÿç×G7#5#5"&54632'"32654&¦K|¬V!!$"#GH  "0ÿçÜD7#5#5"&54632'"32654&«K|¬V#!!#"DE   0ÿçÜY7#5#5"&54632'"32654&«K|¬V##" !YY  .+ÿçÖY7#5#5"&54632'"32654&¦K{«U""# "YX  .0ÿçÜY7#5#5"&54632'"32654&«K|¬V##" !YX  .*ÿçÖW7#5#5"&54632'"32654&¥K|¬V" !##WT  +0ÿçÜP7#5#5"&54632'"32654&«K|¬V##""PO  '*ÿç×P7#5#5"&54632'"32654&¦K|­V"###PO  '0ÿçÜP7#5#5"&54632'"32654&«K|¬V##""PO  ' ÿéõÏ 733327267##"&55#'667#530)+  3&#Ï-–  ‰o6A?ÿékÐ735'673#&'#5'67# '-% "$$  $Œ! 'rd$/FÿéõÐ %+16<73#'633#3##"''327#67#536365#7&'7#7&'nnx  x  mSQ! 8T) Ð :#  S)%   ÿéLÍ 7&'&''6$ % Í  0  1 /,*bÿéëÉ 7#5##535#3533#''67#ëccc ""& ! Éàྫ*"" :2#!3?ÿéõÐ!+7&'367&'#"''3255#3'67#q+' ))W  "  B C!# +/Ð 1 =R ˆC!2 ÿêmÏ7367&''65''64   *  Ï3 ) .B;,! gÿéîÑ"73'67#'63#7#5##535#35#”B3€11111Ñ 1ŽŽŽŽ6$[%SÿéõÏ73#3#5##535#535'635#Ý 8GG8\8GG1C.\\Ï*&dd&&¶1]ÿéôÑ 7&''63##5##535#¡& $$ / NNaJJJÑ ''*(,bb>,DÿéøÏEK73&'33#67327#"''67&'#7#"''3255'675#535'67&'’ '75     )    ))%b Æ% )* '# ((& 5  (/   ÿéò|$7#533&''67&''667#'7#@œ 2 * -"!2 -%.a$ Tj    6  $KÿéîÐ*.273733#537#35#3#3#3##5#'7#535#735#35[(B£,"0;47‰277??E MB__ 4¾")3C\ïË#7#53#3#5##5##533#73#3#73#vZÈZeQQeG==e==f==g==º1 <<0 aïË#73#3#5##5##535#3#73#3#73#ÈZeQQeZ==e==f==e==Ë1 990, fïË#73#3#5##5##535#3#73#3#73#ÈZeQQeZ==d??e==e>>Ë2!55 1) €ïÌ#73#3#5##5##535#3#'3#3#'3#È[fRRfZx<>f==h??Ì+##+  kïÌ#73#3#5##5##535#3#73#3#'3#ÈZeQQeZ==d??>>e==Ì .//- ' ÿéîO 73#&'#5#Þg.) ''cO  4TKÿóóÏ7&'3#3#3#535#535#—  4E<60/365: ((<*Ñ$# ?!$$?BDÿìõÐ=CI73673#3#&'#3#"''3267#3267#"&55'67#537#7&'7'6V7DJ[ 3 U   6!# 0/ "/ 1  d¦  *8D 8   FÿéóÏ73#3#3##5#'6ttXHHKK Ï''=°& ÿéŽÏ#'+73533#3#3##5#535#535#35#33535#335577007777//5.J.¼^((^:< ÿé{Ï#'+73533#3#3##5#535#535#35#33535#335,--(())..)),(=(¼_((_:; ÿépÏ#'+73533#3#3##5#535#535#35#33535#335'(($$&&(($$'$5$»]((]:<mÿèóÐ(,0573#3#3&''67&''67#5'635#35#67S[\>G      <<<<  Ð L   F1 *?  ÿéjÏ#)/7676767&'7&''67'67&'''674'$  !$4  /…9"  /+p   ÿéoÏ#)/7676767&'7&''67'67&'''674'$  %)9  /…9"  /+r  zÿéôÏ$73#327#"&'#67'56&'Ú&%  # 9Ï%/5>[  ÃO"7cÿèõÌ5:@7'23673#3#3&''67&''67#537#53&'67'&'å 2I<# )  FOSH     # ' !  Ì     %* m z  ÿéfÏ#'+73533#3#3##5#535#535#35#33535#335"$$!!""## " / »]((]:<KÿèõÆ+BX73&''67&'767#73&''67&'767#3&''67&'7567#73&''67&'767#XG     2QB     -K=    'FH      2Æ             X!       ,!    oÿéöÇ,CY73&''67&'767#73&''67&'767#3&''67&'7665#73&''67&'767#u;    'A9     $@7    "==    'Ç"     #       X%      /   [ÿéöÇ+@V73''67&'767#73&''67'767#3&''67&'767#73&''67&'767#hA    ,H=     (C8   "?B      ,Ç"    $     X"       0   `ÿéöÇ*@V73&''67&'767#73&''67'767#3&''67&'767#73&''67&'767#l?     *F<   'A7    !>@     *Ç      #     X       /   ÿè©Æ(>S73''67&'767#73&''67&'767#67#53&''67&''3&''67&'767#C    .K@    + .D    B:   $Æ     "     p %    "        ÿèŽÆ'>T73''67'767#73''67&'767#4367#53''67&''3&''67&'767#;    &C5      #9    84    Æ!     !    p  %   "#        ÿèÆ)@V73''67'767#73&''677&'767#4367#53''67&''3&''67&'767#;    &C5     #9    84    Æ!     $    p  %   "#        ÿéƒÇ)<Q73&''67&'767#73''67&'767#67#53''67''3''67&'767#5     !=/     2    3/     Ç#     #   q $   "&    KÿèõÆ+BX73&''67&'767#73&''67&'767#3&''67&'7567#73&''67&'767#XG     2QB     -K=    'FH      2Æ           X!       ,!    _ÿéòÏAE733533##3#"''32655''67'75##5''67&'75##535#5#53#3~0"=     +   +>"B00Ï"s   :s)  :yŠ"ÿóZ¾ 7#5##535#35#35#Z!!!!!!!¾ÅË7%\%\%ÿóW¾ 7#5##535#35#35#W¾À Ë7%\%\%]ÿèóÇ #)7#5##53#735#35#3#53&''67&'íb ppJJJJ);> ' DÇ  'S11) )   oÿèóÇ #)7#5##53#735#35#3#53&''67&'ïY ggAAAA&6‚7  >Ç  'S11) )   ÿókÏ!74''675#53533#67&'75##5#^ % !! / 5`--`1 )<<<<uÿîóÌ73#3#535635#Ý0&W~1++Ì .k¼ÀkÿóuÏ 7''675#53533#67&'75##5#e $*$$## / 5`--`1 )<<<<ÿópÏ 73533#67&'7''675#75##5#$## "'$H¢--`/  4<<<< lòÑ#73#&'#'673#&'#'67?&  tH+    Ñ  '0  ( xòÑ$73#&'#'673#&'#'67>%   sG+    Ñ   #)    # “òÑ 73#&'#'673#&'#'67:   tE(  Ñ      “òÑ73#&'#'673#&'#'67:   tE(  Ñ      ÿé[Ï 7#5'6G  +ϧ‡2 ÿéPÏ 7#5'6<  "Ï©ƒ 2 ÿéGÏ 7#5'64  Ï©€2 ÿéSÏ 7#5'6?  %ϲŒ2 ÿéˆÏ#'+/73533533##3#3##5#535#535#5#5#35#335 +..3344..S+/»$<((<$OyÿéîÏ73533#"''3267#'67#‹6  "0*£,,…wy.*n„ÿéïÏ73533#"''3267#'67#’0  +&£,,†!px/+mŒÿéïÏ73533#"''3267#'67#™,   '"£,,* qy.*nŸÿéïÏ73533#"''3267#'655#¤'  ¢--…u&O2 /E&ÿéæ773#"''3267#'67#536qc WN@MW7 / ' ÿéæ?73#"''3267#'67#53qd  WMBMV?2 *   ÿîóH 73#53535#35#35#Ûæ##6""5##HGGG55555 ÿîóD 73#53535#35#35#Ûæ##6""5##DCCC11111 ÿîó9 73#53535#35#35#Ûæ##6""5##9888&&&&& ÿîó- 73#53535#35#35#Ûæ##6""5##-,,, ÿîó' 73#53535#35#35#Ûæ##6""5##'&&& ÿîóM 73533#75##5##5# ¶æº#"#LL999999ÿêYÆ75#53#3#"''3267#7F3F.1   3&K(L3Lÿê‰Æ75#53#3#"''3267#7pUiNZ ] Ž%K(L1NÿêmÆ75#53#3#"''3267#7YDX<? B Ž%K(L2NÿêaÆ75#53#3#"''3267#7M:N47   9 Ž%K(L3NÿêMÅ75#53#3#"''3267#76%8"(   )&J(I 4L)ÿèád73#3#"''3267#735#,¨’  ¤”d2%2)ÿèág73#3#"''3267#735#,¨’  ¤”g3&3)ÿéáV73#3##'3267#735#,¨’ ,¤”V.  - )ÿèáP73#3#"''3267#735#+©’  ¤•P+  , kÿéî¾73#"''32767#'665#'6ƒk   ##$¾¥/,reEA`!$  ÿéuÏ#'+/73533533##3#3##5#535#535#5#5#35#335 !''****&&D!(»$;((;$O ÿé}Ï#'+/73533533##3#3##5#535#535#5#5#35#335 %**....))J%*»$<((<$OmÿéöÄ '73&'#"''3267&''67&'765#65#…`   )& * Ä^6 /  1)$: !T6<3 ÿélÏ#'+/73533533##3#3##5#535#535#5#5#35#335 $$&&&&##= %»$;((;$O ÿé^Ï#'+/73533533##3#3##5#535#535#5#5#35#335    4  »$;));$N ÿèóa#'+/73533533##3#3##5#535#535#5#5#35#335,\,,8LLjjhhLL6,›\::N9[ !  ! *  ÿèó\#'+/73533533##3#3##5#535#535#5#5#35#335,\,,8LLjjhhLL6,›\::N9U   ' [óÉ (-73#3#735##"''3255#3##5#53&'##57# ææªª„„©  " 99!z <É  '   )5  ÿèók#'+/73533533##3#3##5#535#535#5#5#35#335,],,8LLjjhhLL6,›]::N9c #  #  - ÿî>È 7&''6$   È f 1-+DÿéõÏ48<B73533#33##3#&''67&'7#537#535#535#535#353567O?IIAMg  $< ++4(6EE66?R...J. ¿     B   ÿî7È 7&''6   È f 1-+ ÿébÏ73533#67#"''3255'75#!    &!¥**2F  8  ; ÿé\Ï73533#7#"''32655'75#    !¥**1 F 9  9 ÿé¢Ð  $,07&''6'66553&'73'#335#5##535#X"  & 5  0(JJJJ888Ðu." !@ J:-D D'vÿèôÏ73#&''67&''667#™N   1ÏC*# 4+#6 ÿézÆ 73#735#35#35#'67&'ZZ222222B Æ£sMM6 mÿèõÏ73#&''67&''667#‘U!" 5ÏC)" 1)$6ÿîgÁ73#67'535#U< ) <@ÁbY  z< ÿéÏ,73533#3#3#3#"''3267#'67#535#535#,++''+<9   ( !.'',» B )1 $C¢ÿèõÐ73#&''67&''667#»/     Ð&;($ 2C& ÿémÑ!'-73#"''255#'655#5353635#&'4'># . ..  Ñ ° N79 L\:H ÿétÑ!'-73#"''255#'655#5353635#&'4'C' 444 Ñ ° N79 L\:H~ÿì÷Í "733#67'73673267#"&5~  8    ÍJk  ×Q_ #  ÿémÑ!%+17#"''255'655'7536735#7&'4'k  &   &lY S5!9 O G8<5 HiÿéôÏ973&''67&''667#3533#3#3##5#535#535#”C  "  * 8 (0..**77::**0Ï      > ÿéaÑ!'-73#"''255#'655#5353635#&'4'6  &   &&  Ñ ± O5!9 L[;HrÿéõÇ #73#3#537#35#35#35#&'''6yy2/h$2BBBBBB9 ! Ljˆ<=>,    ÿðsÍ7335#53533#353#7'5#**))$ $ŠCYYCU. 9 ÿê‚Î8767#"''32654''67&''67&''67&'767&''6d    * /"% &    % *Î  =#      zÿêñÏ73533##"''32655'67#†=   ' /6ž11† e6'07 ÿêzÎ677#"''32654''674''67&''67&'77&''6^    ' + " $     'Î >#      ÿêiÎ5767#"''32655'67''67&''7&'767&''6O     %    !Î  !> !     [ÿé÷Ï 7#5'673533#&'#5'67#‡ '&"    "Ï¯Š ,11D1zu,-< ÿêoÎ7767#"''32654''67&''67''67&'767&''6T    ! (     #Î  !=!     nÿéóÎ $).73#3533##5#5367#536365#335367#335¦99 $$M %$1M/!Î c 33 c 5 A  yÿëõÄ &73#33267##"&547#67'7#&'ypG=   +8Ä#  t} ¹O€ÿëõÄ &73#3327##"&547#67'47#&'€jC9   &6Ä#  t} ±OÿêõE$73#33267#"&55#67'7#&'ãœo a %3p E %  ?   IëÑ &*.2N73&'73#3&'73#3#3#3#5'65#5#5#'6767767'67'67'67ZdÖm '/****1s .!!!!!P  E%  Å   5    7%   ÿêõQ%73#33267#"&55#67'7#&'ãœo ` %3p Q-   "% K%  SêÉ %+1773#735#35#35#73#735#35#35#'67&'''6'&'[[777777Z__;;;;;;e Ÿ  = ÉU= ! ! BFLR733#5367#'635#35#35#'3533#3#&'#5'67#535#35#335'67&'·$I  %%%%%%j    , 3  Ð  ||  I88~EML"$EK'''q   ÿéNÏ 7#53&''69 ,Ž¥æ)  '!"@ÿéöÐ%)-26Jd733#"''255##5#'655367#'635#33535#73573#"''3267#'67#3533#3##5#535#'6h %  , N      Д %!!#?A UJ o7 !- "F  22  ÿé`Ï 7#53&''6A 7•¬æ#' " ÿéhÏ 73&'#''64   Ï1´' !LÿéöÏ 73655#535333#&''67#75#W:((7D1015 6r#])))I2 54!$.6)>ÿîõÆ#'73#735#'67&3533#75##5##5#Z€€XX)    g•·“Æb@%  †OO======VÿìöÎ&733#7'753773673267#"&5‚%- 0    ÎId ¢ŸÅO  e GÿêöÐ *D7&''67&''6''6#5'6733#33#"&''673¢   6  Y    W&&   Ð   %2   %0 ' x["/ $EÿéõK73&''67&''667#I€&- :/-; 2#  LaK    eìÐ7'63673#5##53'7&'ÛWli@ Y $¯( O  Ð   (+ ‚Ý» 73#735#35#‚[[3333»X2w2+kÕÇ 73#735#35#+ªª‚‚‚‚Ç\77+_ÕÆ 73#735#35#+ªª‚‚‚‚Æg<A ÿéòU736733#&''67#al_G KN DXC $36 &ÿéðY73#3##5#535# ÃXeeeeVY00 ÿé÷Ñ$/7&'3673&'&'#"''3255#3'67#C E @>=$ 20   Ñ  ( 3,-E &#7“æ» 73#735#35#“SS++++»X2w2 ÿé|Ð #)/5;733#5'667#35#33535#335&'''67&''4'/(T   0  GDÐ cX *C/# qÿé÷Ò%+17767'7&''6373#&'#'67#'67'67'6¥   (,)\ÿçõÉ 273#735#35#3#3#"''32765#'67#'67#'67#qooIIII$•[\  / 4* # %ÉP0..F (/ +" DîÏ (.7#5##53&'73673#&''67&'67#367æ¥_|Kx0 #& -&)< 1! 9S- ¼   (      -ñÒ!%73#3#53&'#53&'367#3#735#35#ƒS! >á; W ;R3©©Ò   6 *K,*KÿèóÐ#(-73#3##5#5367#53635#335367#3355#‘E%77^)+''9&_%9+$ Ð l44 l 9I  L eÿèôÐ#(-73#3##5#53665#5335#335367#3355#ž<,,O$&2 R1&!  Ð l44 l.J  L VÿéöÐ>BFL7&'3533#676767327#"''67&''67''67'#3#735#'6Õ  gI:9       J33&&)Ð  ''  +  3T2K  ÿçð¥6<73#&'#5'67#535'23673#&''67&'67#367Õ &.dK. 6% < 4IdLXjI|) " 1)C 3" :R 8 ¥ a    ‹ÿéêÀ7##53#"''325Ö7_  ­Ä×  lÿéìÉ 7#5##535#3533#''67#ìYYY!  Éàྫ*"" :1"!3ÿéÈ 7#5##535#3533#''67#HHH  Èßß½¬+"" 8+ $3ZÿéëÉ 7#5##535#3533#''67#ëiii"$$ ! $"Éàྫ*"" 3#"2sÿéìÉ 7#5##535#3533#&''65#ìSSS Éàྫ*"" "2ÿéâ 7#5##535#3533#&''67#â››› 968!  . 6¦ ¦‰w 'FØÆ73#735#36533#&''67#'±±‹‹ 0/2  $ *,Æ€^     ÿìô' %7&''&'''6733276767#"&5Ù  CF& :)'      @èy"7&''332667#"&57&'''6{ %4~  … y        ÿéiÏ 73&'#''64   Ï& ©´' !¦ñÏ73533533##5##5#;A<<A;à  ŸñÏ73533533##5##5#;A<<A;Á ¡ñÏ73533533##5##5#;A<<A;Á •ñÏ73533533##5##5#;A<<A;º¦ñÏ73533533##5##5#;A<<A;à  ™ñÏ73533533##5##5#;A<<A;¿ ÿèô£5DL7&'3&'733#537#5'6'#"''32654'7##53#&''67#&'7#6¢% ""' }K N 0' $J$ /5&e, £   1 1¡³u   OÿéìÇ"&73#"''3255##53535#335#3#735#Ö  uIN55!!JJ%%ÇUo  Yx‰UUB,B> BáÈ/733#'3267#7#3&''67&'767#'67#!¦ #  ( [J   =$ , !È.0 %.     4H ÿèîÇ 7#'655î½ÇSC6 5?` ÿèõ 7'67&'7&''&'*~  K  _       ÿëôÉ7&'333#"&''675#2 %>F P,(É  D`   PI íÏ*.73533#3#535#3#67&'#5'67#735#[9::EŸF9‚9  #' '1\\Á/2  &% bÿóôÂ73#3#3#535#535#i†:66?’@559ÂKKKK ÿéuÏ73533#67#5'675#'6!Ä 11: RI  C +mÿóõÏ73533#3#535#y/009ˆ;/†IImm ÿéaÏ73533#67#5'675#'6    Ä118 TI  C ([ÿìðÏ!73#"''32767#'67#'67#'6‡`   M F< 5 Ï‘0.Xm83bO)%D!KÿèõÏ$73&''67&'#'6655667Ý 1Aq# #   L  Ï $=*"2@66D:N  %UÿéòÁ73##"''3255###535#U   uX9&&Á«  ¦'XfF5gÿïóÏ73533#3#535#3533#3#535#t...8ƒ7..//<Œ<.­""""a##$$]ÿïóÏ73533#3#535#3533#3#535#k222=<2333A–B3­""""a##$$JÿïóÏ73533#3#535#3533#3#535#Y:::FžD::::J©K:­""""a##$$EÿïõÏ73533#3#535#3533#3#535#U===I¥H==<íÏ73533#3#535#3533#3#535#$QQQbØaQUVVbÚdU¼< ÿëõ6 #7&'7&''3326767#"&5''6zay "4%6    * . ":ÿéóÆ"733&''67&''667#67#'7#co, " "." $3Æ2?'#B-Ag43!)3WÿéóÏ37;?C73533533##5##5#3#3#3#3##5#535#535#535#5##5#35#335[$($$($‹=DDCC;e,½ ) ÿénÇ 73#3##"''3255'67#'735#[   & "4Ç=d  K,",5.=|ÿéíÅ73#"''3255#3###535#|q  ]MMH/ÅÁ ©M Z<+UÿéêÅ73#"''3255#3###535#\Ž  zgg]@--ÅÁ ©M Z<+ ÿéõÏ"',0A73#32767#"&55#'67#5337#335367#33567&'7''6<0 "@ N0(%$#)A'   ÏdN  SB* %:d* E 7  ŒóÏ 7#5'753'&'&'ñ:==  f;7  pm`  #  ZÿéôÑ$(-1A73#3265#"&55#'67#536365#35#365#35#67'7''6•@!    : / *//,!#  Ñ gO   UE$;g 7 E 3    f½73#3#67&'7&''67#FFQ !½(9  & 8 ÿéôÏ$(,0@73#32767#"&55#'67#536365#33537#33567'7''68.$@ O2$!" &<%  ÏdN  SB* $;d 5 E2  €ñÏ&,73673#3&''67&'7767#'67#7&'ƒ?B8     * O  ¥     "!<   ]Î 73##5365#35#0"8%%%Î ™­Q11D2UÿèõÏ"7'6655673&''67&'367†C* *9d tB55D:  $>* ),*%\Î 73#5##53635#5#3 & &&&&Î ¤ ­Q1u22bÎ 7#53673#5'35#5#%&*****­ ¤ V1u22ÿðƒÎ73'67#&''6A8/ K* "Î R:q  2YÿéóÐ(76767'67'67#53&'73#&''6} #L /*@ ÿé”§  $73#735#35##"''3255##55#35@QQ0000D   2D22§B( $ (X  %n —ÿéõ§73533#&''67#7&'›#   D  w0D(2-#&F>    TóÐ!7@DH73533#3#535#733#"&55#'6653&''67'767#'6553'35335122*e)1Å $  V     A` dRÇ     ,    ) ÿé÷j!&*.73#'#5##5'67#535'235#3&'#35#35#ÌI`:* ~ +<`EO1,/, K~~~~j <9  5  + $ ZÿéõÇC7#67&'7''5353573#3#33267#"&55'67#'67367#˜*   J    (!Çy7   Ã!!3""E* C  '$'>*UÿéõÇ@7#67'7''535#373#3#33267#"&55'67#'67367#•,   !L    * "Çy8   Ã!!3"g*C )%'>*JÿêõÏ 7#'6553&'7''6767&'óy>,- & °:?: 0D;' )9 07Ï UEEH    4   %  KÿéõË 3773#735#3353353#3#67&'#7'5'67#735#c††&w‘‘ €3  6 #  ZZË:6 3    .     bÿì÷Å )/573#735#33535#335&'33267#"&57&'''6pvv1N1!    T  [  ÅrBK6 : 9 ! ÿéõÏ-7353333267##"&547#&''67&'767#EJ   5 9 6 Dª%%[?   6S*0#",  ÿéóÄ!'73#333277##"&547#67'7#&'Ñp   ]''6)-^  Ä$a&  $Q{ ¸N ÿéåÁ 7#5##535#3#735#å¡¡¡!^^66ÁØس b< ÿéôÑ &7&''63##53#67&'7&''6€26 44,= PiiGÒr25  EMÑ-4.*#/' #  ÿéõÐEK73&533#673267#"''67&'#67#"''3255'675#535'67&'v ?GF   $ A 66%4}  É$&'  %! $'#/(3  ).!  ÿðåÅ 7353#5##535##5#l*O¡¡'R(ÅWWÕÕ²ŸWW ÿèïÐ#(,28>D7367333#"''32765#'67#53&'37#7#&'&'''674';  M     5!J"=C;Pjs   K: Ï//K * )D E=   ÿéóÑ!*7&'367&'#"''3255#3'67#G;5 88i #* 3  UX: 6CÑ &  #1!?W  @$"1ÿçïÏ!73533533#3##5#'67#535#5#3E2288F6 -893ŒE¡....?SS4!'???? ÿéõÏ(7'67#53&'73#67&'2767'< ;Ne ^q#$ Q+ '$ J %1 ,!*1i Z  ÿæïÐ*73#6767'67'67#53&'&''66ƒ ^{) A8 A"&KhY$$0J EMÐ'/! d 0ÿéõÑ"&*/47#67327#"''67&'##53'33'#3353&'#335ÛO    &<> L- DLM;9NB’@=Q>¸r  ,%  €0L  !ÿéóÏ73&''667'367'7&'´7 .! “! #, >ÏP("%$-6C>žœ!$ $! ÿéÇ"&,27#3##"''3255#537#'65535#35#'67&'‚"   &-))))  F  Ç\?  ;\RF3 5@_R:. †ÿéòÇ #73#3#537#35#35#35#&'''6Œd('Z'5555552  Ljˆ==>,   LÿèõÏ"73533#3&''67&'#535#67#UBCC4( (!* ) :BLH ©&&'%    %'l#…ÝÑ7&''67'76Æ 'F'!<,&"Ñ     ÿéð*73673#3533#"''3255##5##5'67#G Œ 9L 87 "8x  6  KK>?ÿéoÏ73533#&'#5'67#%##  ! #¡.. €q")8PÿêõÂ73267#"&55#'655Ï .)µ  §G-9$RQ ÿéeÏ73533#&'#5'67#    ¡.. ~m!+6YÿèöÎ%+73533533#3#535#35#35#35#'67&'h9—&999999 (!H °nnCD/  MÿéõÑ8So736533&533&'73#67327#"''67&'#&''67#767677'7''67'6767677'7&''67'67S!=     '  t  h  H (ag"       *g $ "?ÿèôÐbh73673#3#3#535#535#53&'3&'33#67327#"''67&'#67#"''3255'75#535'67&'u ' $D<         SÿéîÏ$*0673#"''3267#'63533##5'67#7'6'&'&' d  Z !--- %W  ;  L  Ïš/#€ "O::UCB   8 ÿèõÑ73&''67#'6`S $5 7#*N xH 3Ñ389;"v),lÿñóÆ 73#53#3'35€s‡ƒoffR2.Õ.SA..ÿébÏ7#"''3255'675#53533#6_   !! tN  ?3**+Rÿéñ¿73#3#5##5'67#35#f‹L [@  ,++@@¿#!d2C¤M ÿåôÒ $*06<733#5'6367#35#33535#335&'''67&''&'WW/¯ 4X P ;;N:ˆ;;N:  —~$  Ò qe ! 9K7  DÿèïÍ#73533533#3#535#35#&'''6O"+''+¥'"6++75Ÿ....AAAA\! )@ÿéóÏ#'9=A73#&'#5'67#5367'23&'#35##"''32655##53#735#Ó !V* b  "2)<=" >>g   i"JJ))Ï   >(+Q ;Uf.€ÿéÞÏ 736753#5'€$ Ä—“æ@   TòÑ0G73673#"''3267#'67#3733#"''3267#'67#73733#"''3267#'67#!NV  JC4>..  !$  #s..  !" #à  *      )ÿè×R7#"''3255##55#35×  ‰›‰‰RT  i ÿéóË%)-15;A73#3#35335#535#535#533#535635#3#3#735#'67&'@$\#-æ2::..(( " / (i& !&Ë   ““  “†‹  J)`  ÿèYÍ76767677'67'67'67   7 &   6!T,!)1.ÿçõp#'+87&'#7'5'63&'73&'#353567&'‚0< ˆ0> G38&! vvv1  02p  2  O    oôÐ3IMQ73#&''677&''667#'3533533##5##5#3#"''3265#'63#735#¢@    &”S I  77Ð    ,    ! ÿéíi!%+17=7#3#3#3#"''3277#55#5#5#'67&'7&''&'âSKKKK^   ´VCCCCC  8a    i (S        ÿéóÏ39?E73533533#3#3#3#&'#5'67#535#535#53&'#33677'6'&' O O4 <`VVgR", 6"#5,$QgWWa: 4L 0 +  ˜Ÿ0000  12   B  GÿïóÏ/37;73533533##3#3#3#3#535#535#535#535#5#5#35#335P"1""%@@EE>>M¬K<›ñÏ73533533##5##5#<A<<A<½ÿéâ” !'7#5##535#3##5'67#535'6&'✜œ0:: /;,;$  ”« «}7, 9 ^ÿèöÑ 7'67&'&'3'67#¥-!& !  -y %d­)%1 &.:* òÑ#73#&'#'673#&'#'67=#  uG*    Ñ  %    òÑ!73#&'#'673#&'#'67=#  uG*  Ñ  %   ÿòîÇ7#3#5&''67&'76æ¸ÀÔ›/ "! ǯÕ! #% [ðÍ 73533##5#3533533##5##5#%RRRR,_,,_,¸# ÿèôH73533#&'#5'67#edT#7 ;$$9 5"R8 ":;! ÿèôh73533#&'#5'67#edX%9 9&"; 8"UP&.MN*% ÿéóÌ73533#&'#5'67#bc\&= 9%"8?!Z™33J#&I‡‡E*.D#iÞÑ7&''67&'76Ç" ',4-%!%-&"Ñ   ÿéÅ73#3##5#'655#535#5#y"$ M"ÅLjj?(#6LLLLMÿèòÐ!%)-E73&'73#3#3#3##5'67565#5#5#33#"''3267#7#'67#w"25////6s 0)))))y%  )+5."Ð     <  )   *6* ÿééÍ06<767&'7&'#"''3255'67'67'67676'67&'©7   !Ï@(# . )!/ ÿèóO73533#&'#5'67#fdT"6 :$#95"S;'=?' ÿèóÐ7'673'673&''>T% QOH\ *.—+%F.  H"8> %+ ÿéóÑ48<@DH73673#33##&'#5##5'67#535#535#535#53'5#3533535335R ' BL;0* *#& '/9KK77FAK##)_#)Ñ  %%!$73#3#3&'73#3#3#3##5'67#537#'65#5#35#yc?T[#-2,,,,5q #+  :)))))Ð     W  ) s""‡dóÈ73&''67&'#367‹\   È    ÿéíÏ'73&'73#676767&'7&''67'67#a  `t#*;BF8 K[,)$(%O¬ ,M) "' (,QÿéëÅ 7#5##535#3533#3#535#35#ëttt ((( R (..ÅÜ Ü½«&EEP$ÿçëa 73#735#35#35#'67&'*¬¬„„„„„„ 8 2X))('aX> " "    ÿêcÃ7#"''3255'67567#53[  >Sr S H*Yÿè÷Ï#7&&'67&'7''5'6556Ô    8ÏIR%$ZP¨ $²+_; 7\8 ÿèfÎ 73&'7367&'#5'67#   #1¯   ao 6`ÿéõÐ/73673#&'#'67#3#3#3##'32667#7#d1D)$&'<<&Ž\S S µ  #$$$ &IÿèôÐ 37&''6'&''633#33#"&''673Á  (D  "+66*/Ð(0  *7 , #D  ÿéKÏ7'6#5'67   Ï (# {e  ÿéMÏ7'6#5'67    "Ï ( }b $ÿé‹Ï $(733#"''3255##537'6'&'3#735#D2  M/6 M  #33ÏI„  n‹<  [E'aÿéìÐ $(733#"''3255##537'6'&'3#735#œ:  a;>Y  "??ÐJ…  n‹<  XG%JÿéöÏ#)73533#3#&'#5'67#535#'6'&'`8;;D:% (' ):C8p  R  ²>..VU-+>   ­ÿèðÀ7#"''3255##5ð   À  ‹ÆØ@ÿõ¤Î$73#3#3#67'675375#535#'6d3 +6 ##  Î%#* QOa%  ÿélÏ 73&'73#3#3##5##535# %%` MMMMN&&&² V V6$qÿéóÆ!73#33#537#537#35##5##535#vt;7‚%)/(BDDDÆ5#O#HWW7% ÿéñÏ#)733#3267#"&55#'67#537'6'&'uaI  "! F@ B`U„Ï]X _U!HK  VÿòõÅ 73#3#735#5#3#`ŽŽ uuMMMM*ŸŸÅuC Q.NÿèöÏ#+:>73533533##5##5#3#3#5#53&'3'66733267#"&5'3#V#.%%.#S;obuA'R )º ,Y(# "=  BW ÿçñÇ#'+/73#3#&''67&'767#535#35#33535#335ÖbQR -JM3:3 OP`$<7#"''3255##535#35#Ö  ……………>C V "  HòÑ !73#53&'3#735##5##53#735#gØ]A©©²¼#  vvÑ " " ÿéœÇ&,7#"''3255#353#5335##536735#&'œ  ) J)4 b  ÇÆ  pKr  Ÿ ++ 8   ÿñïÏ73673#3#3#535#'67#?„ ‘J[Ï`=1:ª!GG5;AÿèõÐ#'-373533#3#3#535#535#3#735#35#35#'67&'MCFF>>M¯M;;Ceeeeee . &K"! Ä     DbE ' '     +~ÕÈ 73#735#35#+ªªƒƒƒƒÈJ- )  ÿéóp373#7#5'75#35#35#75#767#53&''67&' æy (/(222222a BX   pJT14    ÿèóf767&''66''6y"2 M 5* 73; f    2( 4 JÿéöÏ(-1BHN73'67#&'&''673&'67#3#3##"''3255#'67&'n# *   S2   8#>DD#‹<   ; b Ï !+      K) 86  3 ÿé[Æ7#"''32654'7##5[  "Æ: <ËÝ’ÿéðÃ7#"''32654'7##5ï   $ 2Ã;"" ! >ÇÚ ÿézÏ7#53533#&'#5'69(+'' %Ž..xt% .aÿéòÏ73533##"''3255'67#> $- 3*=¢--Š  b<#'LrÿéóÏ#'73533533#3#535#35##5##535#35#y * E@@@@@±  Crr'= ÿõóº 73#53535#35#35#Þæ$$8$$8$$º²²²ŸŸŸŸŸ ÿïôÐ +7&''63#3#3673#53&'735#535#/8 44-< Ox4UU  6Ö4  WW/Ð%+*#""< <" ÿébÏ73533#&'#5'67#   ¡.. |l!*7cÿéôÒ87&'7767327#"''67&''7&''7''753  1;55;:   6 2;:+,*,Ò      &7#  &$ ÿçô‡!+/37'#67&'7#7'5'63'73&'3535ƒ 39 <  12 E0! F5=+$(www‡  =    [    LÿôôÏ73533#3#535#LJJJCšCJ…JJkkMÿèóÏ73533#&''67&'7655#UV220 -( ) VŸ00&!$%€ÿêóÏ73533##"''3255#&'€F F  ›44‚  } WÿéòÐ73533##"''32655#&'Wb$$  b ›55… €# "LÿéëÁ73#"''32767#'667#'6[   , / (: Á˜"XM D^/! ' bõÐ 7&''6{0< 75,; NÐ/52+GÿîòÍ-7#"''3267#5327667##"&55'753753ã  )$'  0"$žW/ ^Y a " d:5 D?>ÿìçt7#3267#"&553#"''326§UG P-}  aZ q9BÿìØp736732767#"&5B;$ -?2 ;*p#  2  PÿéôÆ733##"''3255#53567#b€GG  KKhÆ\ Y! ÿéôÏ#733#&''67&'767#5335#35#vUV0OQ76.VVBBBW@@Ï['  "[H555 ÿèoÏ73&''67&'67#5367#7)     Ï)P* !%i 6# ÿèóÏ!73673#&''67&'67#367 L ƒ. )$2*= <"!'D\ žB!$  ##$  8 ÿèwÏ73&''67&'67#53667#;+   $ ÏN+  "$€!6# sÿéóÄ73#3##5#535#wv177662ÄIllI ÿéÄ73#3##5#535#r08866.ÄIllI ÿèhÏ73&''67&'67#53667#/&    ÏG* !! !%y4#Vÿè÷Ï,0673533#3#3##'32767#&''67#735#535#35655#b7DD99E 35 4*3 3///7K'< ½6 '.(( )8$9  ÿè^Ï73&''67&'67#53667#,#   Ï)N-  "$~!4# ]ÿèïÇ7=C73#3#"''3267'677#735#73#3#"''3267'677#735#&'7&'aA%+    / #.KA%+    / #.B V Ç:h!  .<:h!  .<_   NÿêïÆ#)/573#"''3255#'3#"''3255#&''&''6''6«D  0TE  1d F n E ÆÅ ¯Æ °   , )% $' )& $ ÿéiÏ73533#7#"''3255'675# %# !%¥**4 E  8 ;aÿéôÏ#)767327#"&''677&''7&537&'ìB &  /1š (!5  ($?8  ÿéñÆ733##"''3255#53567#(³$,ff gg)!˜ÆX T ÿê…Æ7367#"''3255'67567#k   0TÆU M '¡ÿíóÏ733267#"&5¡  ÏÈ  ÿíòÏ733267#"&5  . ÏÆ   —ÿíòÏ733267#"&5—   ) ÏÆ    ÿéó[7357#533##"''3255# m-s–!ee  m-    ÿéód7357#533##"''3255# l.s–!ee  l,  PïÇ73567#533##"''3255#i{›"bb   iŽ  bÿéôÐ(76767'67'67#53&'73#&''6… H *&: 8K A - Vm J "% ÿèëÉ 7'66553'#36 É¡¡+F6 1%`:),ÿèò|-373#6732767#"&55#3'67&''67#67#,Ä;!  0+   1@  |&  + k $  $J  ÿèëÉ 7'66553'#36 É¡¡ˆ$F6 1%`A03ÿéöƒ!7'63533#&'#5'67#7&'Ï‚HOC4., /<  ƒ $55!FE%"F :ÿéñ‰#(73673#3##5#'67#53655#53&'5#l ,&(//1 0 $ (,(% S.‰ !<ÿêé… 73#735#35#35#&'''6KjjjjjjQ.# …oN..$    ÿèëÉ 7'66553'#36 É¡¡’.F6 1%`7&%ÿéóÊ"73#327#"&'#67'56&5Ð$(QN $ 0 M&#/ dGÊ$+0/;8V  ½M 5ÿñ^¿73#3#5##5'67#35# Q# +  $¿#r b$;’D^ÿèóÐ+E73673#53&'4''67'677767&'7''67'677767'ˆ # Ž  +   Z   Ъ %.+)F$ %/+)B(ÿéòÅ"73#3#"''3255##5##5##5367#äjh   (('Gcʼn  q‚‚‚‚£ZÿéöÏ7=AEK73&'73#3&'33#673267#"''67#5367&'#53&'#367#35#35#7&'`)(    =F a  j  ²  #.Q/" &$\T ,! Y=‹íÑ 73#5##53&'‚`²dÑ .. ÿïò%73#67&'7&'3#3#535#535'67#3š\.13TThägTT"$%    ÿè÷™ )/73'67'677367&'3267#"&5'&'YQ C%*"2#'   +b™`1 #  N0   1    ÿíõ  "(.>DTZ`f7&'7&''332767#"&5''6&'7&'33265#"&57&'733265#"&57&'''67'6z e  v ,"'  …  „  D  @  E  À  x      ( - ' 9   ?9  ?  ÿìñ¤0733#3#5353333#3#53533'33#7'7537xXXeÞ',=$$*zp##"/9¤((*DDT B? ÿé‡Ð %+17&''63#3##"''3255#535#'67&'G * F++  -- V  Ð&J  G:"  ƒÿéøÏ 7#5'753'&'&'ö<?>  OLH Іs. ÿèóÐ$(,73533#3673#3#5##5'67#535#35#35##G44*! =Z0mq 7-c]G.qqqqµs arC ÿêóÐ$73#3##"''32655#535#535'2Ø &/UUff ll[[*0`Ð )$5 0$&Lÿí°Ï(73533#3#535#3#735#7677'7&'U  H GG##  +6 ·::0 ÿèêV!73#3#"''32655##5##5##537#Ôhe   &&%IXV7 "5555:J#ÿéÝe $(733673#"''3255##53&'7335#35#u   ’ >’’’’d  M b  ' kÿèëÏ&753753753#5&'#5&''655'6}        ’=8h4qçc#™\$4E* (:!!& ÿê‹Ð,27&'3533#67&'#"''3255'675#&'o  O433     #4  Ð   ))&  -  0<   EéÐ"&*73&'73#3#3#3##5'65#5#5#A4RREEEEU§ $O>>>>>Ð  N RÿçóÏ 73533##5#RGFFGNN‡‡óÑ 48<\73#53&'733327#"&547#&''67&'767#533#735#367#"''3255'67567#J-n,m%     ‡^^::f   GÑ ! 1 " &   * (    FÿèôÑ3:7''6767&'&'''63&''67&''667#À6=$' 9 !H $ *!"/ + ' >Æ " 3      ÿéóÑ.48<73673#3#3#&'#5##5'67#5367#5367#3&'35#35#RimkrŒ2! g  1?:BN@k^gggg¾   ] Z   E  9=AÿèóÍ$(,07373#3#5##5367#'6655635#35#35#ç 8K=496G#8  W#GGGGGGÍ I;8F<u98HÿêóÑ -73&'73#3#735#33##"''3255#53567#NCH¢……__Ž!JJ   MMl½ 43   NîÅ 7&'67&'67&'6rABÅ.!&* 0)(/-!&) /((/-"&* 0)( ÿéjÏ 73'6573#'3# A ÏpG/ )@pæÙ¿rÿèõÈ #73#3#537#35#35#35#'67&'u~2.l)7FFFFFF  Aȇ‡?>>.     ÿéõÏ 7333#"''67&''667#119;$l     "ÏO7*%1++4 gôÃ73267#"&55#'655Í   à  7#,??ÿéòÐ#'+37;735333##3#3#535#535#535#535#33535#5##535#35#$OQQXXkäeUUPPeeOc>>>Ä        ]S S+DÿéóÑ;73#5'67335#35#3#3#"''3265#'67#'67#'67#ow~  tyZZZZ*«qp  ) "- # &² C: ( & ': $* #  fÿéêÐ"(733#"''3255##5335#35#7'6'&' 7  U3 UUUUW Z  Ð=’  ;ª0Ly  wîÐ733673#5##53&'733#735#u  *²-  A™™qqÐ +, ' #?éo73673267#"'&5#IH?Y :GIF l   +ÿéÕ3 7#5##535#35#Õ‚‚‚‚‚3JJ '  ÿéíÎ 73#7&'''6'66tLršB{ GSΙ€% ':( ) P-ÿéí‚ 73#"''325''67&'x    8•‚  Z2$ #+%, .% ÿêöÇ+8C733#3#3##"''3255#535#535#53567#&'76'3'6767#)®#+"",, '' %޼/ Ã?  +Ç ( %">/k >B.dÿéêÄ73#"''3267#'67##5##535#h‚  // )*}QQQÄL1>/_iiG4ÿéôÔ@FKP733#67&'#"''32655'67&''67&''67#5'66367#367#335OV ?`  - .  /> C1): :*1 *3  K I 3AWDÔ 7  ',    (! / ÿèëe 73#735#35#35#'67&')¬¬„„„„„„( 'c%% %&eZ? $ $     ÿé_Æ7#"''32654'7##5_ %Æ< ?ËÝ\ÿéôÑ)-173#3#53&'#53&'367#3#3##5#535#735#35#©9&—"8*9$v1BBAA1OOOOÑ   7 +P/2ÿôîË 733#3#53kbbnÚWËFi ÿèõ 7'67&''&''&'*¸  )  %       ó™ )-7367&'#"''325567#3'67#3#4‘  6  sR8 /:““™   # '  7MÿòòÎ#73533#33#53535#35#35#35#35#Z>??3¥/>#NNNNNNNN·‹‹;665[ÿéõÏ.73&533#3265#"'&'#7&'3#67'675#cF65   Gs  cA$,£H,#/]>   YB G ÿîóÐ$(,733#32767#"&55'6367#35#35#T U <Ÿ5J  WC 2Q J< MT iÊ7\ (QJ/>YyÿéõÏ73'67#'6'665&D  4 ' 'Ï! % [.B9:  ÿé[Ï7#"''3255'675#53533#W    eB  4>**7nÿòôÇ7#3#5&''67&'76ðos†] DZÕ&  ‚<÷Ï(73533327#"&55#&''67&'767#‹&    ´@ #.      ÿèiÏ73&''67&'67#5367#3'     Ï)L.  "$i!5# eÿðóÏ73533#3#3#535#535#'6ƒ22//7„;11$ Á888888 &QÿòôÂ73#3#3#535335#b:22?£$?ÂLK}}ª ÿéóÏ<7&'#673267#"''67&'#3#"''3267#'66553'3  5D      ZD   / lÏ  8&*5$!*$ .G*G% < 9- )P& >óÑ;7#673267#"''67&'#3#"''3267#'6553&'33&'7ìN     VE   2g »0  %0 # %/  ÿéñÇ&.7#5##535#53#'#335#"'&55#'655#33275ãž>LâK##až#- %*uŠ¡¡****{'*+%-ÿéöÂ73&''67&'#367šU     Â`4!-T@''@ ÿéíÄ73#3#5##5'67#35#ÚuŠv1&O;aNÿèôË'+?CIO73267#"&553'#33267#"&553'#33533533#3#535#35#'67&'º  <g  <- -!!)¦* 3-- M   Q<,  Q<,O+     VÿòöÑ 7'67&3#3#3#535#535#¥& 2 ' #JR!33C˜B22±)&- '+**+ ÿèô\73533#&'#5'67#deW%8 <$": 7#UI"*HH'!OWÐ 7&'&''6.  6Ð   NTñÐ7333267#"&55#'67#53‚0   7 -$&ÐC :8+yëÑ 7#5##53&'7&'''6ë­c & & (»,*       ÿéër"73#3##"''3255#'67#'735#Æ.66  %O FGf„r!.  *0  !ÿê÷Ð#,5;AGM73#35#535#53#5633267#"'&'367'7367''&'7&'&'7&'l!(@@“==@T».p  " P" * ] E \ Ð[Vd9*3Cc  pc  o        UÿêìÑ#+/373673#53&'35#&'735'6#5##535#35# !  "—'//  (*Ï#""""#]####3"""pâÎ 7'2'6'&''&'Ø Ps_QA  8  Î "    ÿçó{!73673#&''67&'67#367 K…2 %! /)> <! BY  d  '    !BéÏ767&'7''63#735#c48 #NX+  xxÏ  -? ÿîõ< %7&'''673327667##"&57&'yC+ 4  Š <  $)  1 _òÑ(7&'3267#"&''7&'7'#5'6° AJ  , 2.K  'Ñ   % F3 YÿéøÐ@73673#67&'#"''32655'67''67&''67#53&'…   $?      + /"" # 7! Ð   :#;""$)  ÿéöÎ73533#&''67#]b^N G!W a\”::_"!WI/7M ÿéòÓ16<@D7#3#3#3#3#5'67#67#5'6553&'7'#5#3535ò?4500008ˆ  EZ!),,,Å   #  1"E4 4?^  &ÿèòo#)/5;733#3#3#"''3267#5363535'67&'7&''&'‚PŠ˜   —:*vvv2  Y   o1  T;      AÿéðÈ048<@D73#3#"''3267#3#7&'7&''75#535#'67#735#33533535#35#U”hyD.. 1;=//   +m/È>l&S/ / Hÿõ÷Ä 73#735#35#3#`€€XXXX,¯¯ÄœW2v1duÿéïÇ#173#3#5##5##535#3#'3#3#73#3#5#535#535#ux35$#44M%%E$$%%F%%BhUUWWUÇEE4 a Qÿê÷Ð6:>B73533533##3#3#3#&'#'67#5367#535#535#5#5#35#335W:(;;<=K9, 37 +6?7988%i:$$7'Å  2  #&  2 ?XÿëòÎ4973533673#673267#"&55'675367#535#67#i ! 3B.& ,2   )# ;/ < ®      .     \óÇ!7#53'67#3#33#"&''67w^Ð F??<512 µ   * ÿçêb73533#7'7&''75#75##5#&PPP; Rd_P <‚XÿéëÏ7#5##5##535335#335ë,+??++?,¡tVVt..O<<<jÿéëÏ 7#5##535335#33535#335ë[68$$8#[$$8#¢¹¹--J777888 ÿèôÏ)/7367&'3267#"&5'3'655'67'&'&*  (7P G$)"8ÏB E  Ë|A)$4L ÿécÏ 73&'73#3#3##5##535# "VEEEEG  ² V V6$aÿéëÇ$(,7#"''3255#'6553533#3#535#3#735#ë  WG>>ÇÄ  ¬SE4 4A_16= ÿéóÒ#)/5;73#3#3#"''3267#53635#35#&''&'''67&'[e—¼¼µ ³/!ƒƒƒƒ{    M >  ÒP= & *.e  bÿéóÎ!733#3##5#53533'66''6ª++5<?6>3 /9N Î <<;;$*4 -& >ÿéôÏ(7#5#'67667##5365333267#"&5ê1- -B   ¥7$F!&5(&9HU  WÿèöÐ  7&''6'6'6'66¥' &( 2#0 .0 = ;681 .5Ð!"$ $ , "&$EÿéöÐ'+/735333##3#3##5#535#535#535#535#33535X8>>GGSSKK;;99GG8K+++¼'(((% IÿçôÏ#'-373533#3#535#735#3353#735#35#35#'67&'\999K«L9'';'v‰‰cccccc$ !C"" !à +   E_C ' '     ÿêôÑ *7#5##53&'73#3#33#"&''675#ë­c`¢EDD 1*C/ *H»,+  3-0.;!l ÿéíÐ73#'66553&'ŠY¶ [Ð N@2 /!Y ÿéíÐ7#'6553&'7í¼`»N@2 2;Y  ÿçæÉ "073#735#35#35#'33#5#'65#535#73#3#5##53DvvPPPPPP=D# RE·CE3CÉiK++7bk8 srG67l>ÿçñÇ %7'66553'#33673267#"&5o ˆ``I'" '/   ( €E5 3"`G4! *  * $  HÿéóÊ #BFJN73#5'675#73#5'675#&'7&'3&'73#3#3#3##5'65#5#35#XC1ND18^8$982222<} =.....ÊW  W      4R   ÿèïÈ&*48<73#67&'#67'5#'6553#3#7#335#5355#35#¹5U   D½&''•••/''B///H    98 B, ,7m<V1 + ÿëõË#:>BFJ73#3#5##5##535#3#73#3#73#3#327267##"&55#735#33535#335ÈZdQReZ;;d==e;;e==rµP  B Q>>R=>>R=Ë /99 0 (  M   -/TÿéóÏ!%)-73533673#3#5##5'67#535#67#35#35#i+-/BVI  36+? IIIIµ  ue oA_ÿéò¿73#3#5##5'67#35#p‚FR:  &()::¿#"~ c1D¤M8ÿè÷Ñ!%)-73533#3#&'#5'67#535#35#33535#335MGGG=/( )#, . 0>G**=*g**=*¾]"+KJ,']99FÿéôÑ'/37;73#33##3#5##535#535#'6553&'5#35#5353535#ª==//0F(''2A 22':DFFÑ #$J J B1 2>Q>>>Q>½`!,IF)!`:<1ÿó‰q 73#3#735#76767'7&'5NNFF"" &.q ,"     sóÏ73533#3#3#535#535#W^^VVjæhOOWÁÿéóe$(-733#3##"''327#67#5363&'#33657##&'#0§  ›=.A 2>0e!  ; ÿéåÆ ##53533#'##35#Ñ¡1g11@0¡1‹RR‹ÉQSS ÿêNÍ 7&'&''6$1Í  0  / 0-+LÿìòÏ&73#5#3267#"&55#5335#53533#3Å&   * 6"??KK&„V 0  6K7O O`ÿòóÃ7333267##"&5477#d~[ & )NcÃ| &$iNÿþó²73#3#]‰‰¥¥²ŽNÿèëÏ73533#"''3267#'65#Y1M  9?<1¢--‡/sfA ?[KÿéõÃ73##5'67#&'^“@' 9>ià ±‡*"5F5(&%GÿíòÌ'73673267#"&5'37533#7'67¨  T'0ÌTY   —”¼>g ?ÿòóÏ73673#3#3#535#'67#M5Y] j9D¤J' 00«!II-5EÿéóÍ73673#3#5##5'67#35#M9X] dN  ,46NN¡tY)0‚>vÿèôÏ767&'7''6¶"")  -- )ω:/1 SˆÿéõÏ73'67#'6'65&¨:  +  )  Ï! g-2[+ …ÿéõÏ73'67#'6'65&¤>  - ! )  Ï!  "_-2[+  ÿïhÏ !'-7&''6'675#535#53#3#7'6'&'4  <$+##:!!/Ï – C?6ÿæò‡#'5;73#3#5##5##535#3#73#3#73#3#3#''67#&'#6ÇYdQReZ::e;;g::h<"  !&:    e Z Ð N= 49  .4,.(*4B  ™  ÿçìX6:>1073533533#3#3#67&'#7'5'67#535#535#5#35#2677//Eb O"  / H:((2y666I    &      cìÑ#7#5##535#535#53533#3#535#35#ì³aLL^^^^LL;;O<<‡#$ " "  2RÌr 73#735#73#735#2DD%%EFF''r uÿéîÏ!7#"''3255#&''67##5373î    !4¨§  "B­¿''‚ŠÐ7&''6767&'i +1¿ &#  ÿézz7#"''3255##535#35#z  44444zx  3‘(<añÉ73673267#"&5! !(  $É"    ÿëõW73673267#"&5# #* %W#    hÿìõÄ73#3267#"&57#;5#hk!#  -06""""ÄpI !+  ­JJÿéîÈ!%+17=753#3#3#3#"''3267'#33535&'''67&''&'ÇZRRRRc aDDDDDD5  z f  @ˆE%-v'/ " Pÿé÷È#'+/T73#3#3#&'#'67#535#535#735#35#5#35#367&'#"''3255'67&'767iu$$,% * +.$$PPPP:%%%  !   ÈC ) ' **      ÿê_Ï7367&''65''6,  ! Ï9    2 *@=) zÿçøÏ'767&''67&'&''67&'76  V  È    O ( # "xÿèøÈ7'6553#&'7#3 ^ " & 88d2/ &/dL \Q> DÿéøÑ048<@DLPTX733#3'67#7326567#"&55'75#'65533#735#33535#3353#53535#35#35#AAS@-/ ! 1kk-J- ”"!Ñ    J=0 07UH<$ ! !$$$gÿêòÏ(048<@73673#&'#5'67#53&'735'2#5##535#33535#35#â  2 . ;BR!!2 R!!2 Ï     $   sg g%:ÿébÏ7#"''3255##5##5353b !©t  \­­yŒ&& ÿè÷ÎJN733&'76767&'#3#3267#"&55#'655#535#'67&'767#5#"Y RAA   ) "J AAA   Dl"È"#        *+ !  1."*  n** ÿêsÐ73653367'5#'667##   Ÿ1†  ƒn5 B= ÿéjÄ73#3##5#535#Q%%$$ÄIllITÿéóÐ#)/5;73#3#3#"''3267#53635#35&'''67&''4'›;\jjh j III  P  K Ð JA-… (_  lÿéòÏ $*06<73#3#3#"''32767#5363535&'''67&''4'•=Xhhk k EEED @ÏM> &‰ `   NÿéîÏ#)/5;73#3#3#"''3267#5363535&'''67&''4'ŒCbuut tPPP P  K  ÏM> -‰ ` ÿé`Ð 73&'# Ð?oÿéòÏ#)/5;73#3#3#"''3267#5363535&'''67&''4'œ8Q__` `>>>? =ÏM? ,‰ _ HÿèóÏ73533#3##5#535#7'6'&'SABBKKLLA}  ]  ‚MM*JJ*U   ÿéKÐ73533#7#"''3255'675#     ¥++' V H2>ÿè™Ï%+73'62655#'67#535335#4'4'i" ### Ï ¯ IG( AOO> ViòÉ733#"&55#'655à   É@  5  "œÿçõe73&''67&'#367žJ    e/     "cÿïùÃ732767#"&553#"''3267x 3 :)~  ¯  ,  »_#D ÿéZÎ 7&'&''6*-Î .  3 /,+ ÿékÏ733533#3#5#'65  90Ê=BB)iW6 $4lÿèóÏ73533#3##5#535#7'6'&'u12299::1c  Q ‚MM*JJ*U  Yÿè–Ï 73'65''6ƒ-*  ÏK`< :U 4*)›ÿóôÂ73#3#3#535#535#ŸR #Y$ ÂKKKK _Â73#3#67'675#535# M#+Â:; B: VóÐ !(:?CHM73#'673#&''67&''667#'33#3##5#7#5;&'#3377##&'#+S] ‚B   )}W K   Ð          . z<õÃ$)733#"&55#'655#53&''67&67#Ù $ e     0 à   N      ÿîó7 73#53535#35#35#Ûæ##6""5##7666$$$$$ZïÐ7353#5#535#535#733#3#3##EII>>E}FF==IIÀv " !ÿéóÌ "733#67'73673267#"&5!>>! * g# $*  )ÌGn  ÙKb ! ÿéðT 733##5#53vffffT==!TïÐ "733#67'73673267#"&5!>>"!* h# $* (Ð$0  s.   ]ÿë÷Ï#)/7&'36732767#"&55'67''67&'œ )   t  Ï .T6Mk5$  X6% + ")*! ÿéqÍ7#5'67#535'673#&I  '(+% (( Qh`#0& *eÿòõÆ 73#53535#35#35#âAAAAAAÆÁÁA/o/o.jÿéóÅ73#3##5#535#'6'&'sz6<<::1f N  ÅcVVc * ! "#%! ÿélÍ73#&'#5'67#535'6^ %%   #%*Í* o_#0& ÿéóÊR7367&'3267#"'&55#353367&'3267#"&55##5#'655#535'6 ‘   7 %2    %)('' )È   &  %  (CC$   *0jj :% "0 ! tÿéøÉQ7367&'327#"&55#&'327#"&55##5#'655#535'6735336{Y   Gb      É    g  %&jj?' %6,6JJ&  ÿétÎ.26:>73673#&'3#5##535'67#53&'735'235#33535#35#k ( " $7$  !,#7#Î!    'g g*  Ÿ=dÿéõÏ#)73&''67&''667#&'&'–<  !$ " !  /$ ""?+ *=Ï "      ]   ÿèðÑ &,273#3#'66553&'#53&'367#'6'6'6„^# 1µ 5 &X7 V ^ 2L P98U \A5 ˆÿêõÍ 7'6'6'6Ô0 01 ,"!? =Í *# ' 2#$ ÿè÷Ê 7'6'6'6ß- +*'/,Ê ) $( /  ÿè–Ç$(,7#"''3255#'6553533#3#535#3#735#–  VG>>ÇÄ  ¬SG3 4A_16=]ÿéõÐ!273&533#3265#"'&'#7&''3#33#7'7537iM)(  Mv  _::&0‘"#??8$WD 7$, _[ÿèër 73#735#35#35#'67&')¬¬„„„„„„) &d%% %&rbE (( "     ÿêÐ %*04:73#'636733#3##"''327#67#765#7&'7#7&'.Ua `   Q^8)9$Ð ^$(#  X))#  ˜ÿêôÎ73#&''67&''667#´4       Î#(" 2&-|ÿèõÏ 73#&''67&''67#675«C   )  ¥F$ 5@$$( ÿéõÃ73##5'67#&'ÙU &0C2m*(#/à ª0".N+"/++UÿéöÏ73533#3#&''67#53655#l022<;0*3 8 8:0¤++#:43 %3# ÿêùÉ59=7327#"'&5#'66553#7&'7&''75#535'235#335Ò  ˆ † // 2;9//6.Édd$#-ˆSF4 1$_J  !J^&&& ÿémÉ7#"''3255#'665535#35#m  ' &&&&Éà 94( 2#`:(a(aÿêõÑ3733#'65537#'6#3267#"&553#"''326•A#nF8 M,  (P  Ñ=3' (/G [U  l8  ÿé]É7#"''3255#'65535#35#]    Éà 95' 5@`:(a(€ÿéôÉ&7#"''32767#3&''67&'767##5æ  >Z    DÉ4J5$     qßhÿéíÇ #73#3#735##5##535#33535#35#h…… ssMMi]&&8%]&&8%%Ç9:o o*?YÿéôÏ7''6767&'À ;; 3,6[06  P{A8*  " ÿéòÉ73#3#535635#'67&'ÆO=•0Aã'R     #d0 0  4 Ï         0(C /HHIYbÿçíÐ*.267'6553&'73'35#'27655##5##5##535#35#35#€  31hV      w79 :o  >-Af #$$&&;z.Sâ½73#"''32765#'667#]…<#½' SA2h  Š''N-*C>.-PM  ÿë|Ï"(73533#3#&''67#535#'6'&'%)).0  #*-%M  9  ²;  ' ,D  ÿéöÄ73267#"&55#'655&'¹   U*1Ä·   ªI.:%RS@$ # 0ÿéŠ73533#&'#5'67#<    }   Y_ !,}ÿèõ73533#&'#5'67#‘)  } 51ll.2ÿèïÂ7#53&''67&67#2± 5"8 6()=C"5D+ t ¯S;&&!?0/\ 4XS^ #^  ÿêVœ 7#5'6C  &œ{X / zõÏ!767&'7&'&''67&''6\  !$  *- =+67 7# &Ï        ÿéŠt73#67#5'675#35#35#75#s%* %++++++tJU03‘ÿéët7#"''32654'7##5ë  0t"&y‹`ÿèîÏ#)73'67#'63#"''3257&'''6ˆ^ O  '  8  IÏ   *ƒ  _)*-'/( )kÿéìÎ73#"''32765#'6&'—N   C   ΄k!3  ÿéÏ!'-776767&'7''67'67&'''674'( ! #)0  C  3 …<   /)t  ®ÿéïÀ7##53#"''325ÜA   ®Å×™  ÿèïÐ"'7373#3&''67&'#'67#67H…n, +#%2 0  - :D`  ­#1 '8);K5!"†ÿèôÐ73533#&''67#7&'Œ$*& # &#O  ŠFFP.%9?'ZP ÿéØÏ7&''673'67i  3 e$-; ˆ œ   @$4%"z }È767&'7&''67'6767b ' $+–E*  +"95mÿéõË73#&''67#53655'6ä 84, ( (-12,AË7J=9!I(qÿéìÈ7#"''3255##53#3#735#ì  UAA77ÈÅ  ­Ìß,W5|ÿèíÎ73#"''3255##5363#735#ª9   M" 33Ω  ‘±Ä:lNkÿé÷ÏBH73&'33#673267#"''67&'#7#"''3255'675#535'67&'§ )(        Q  Í. )I) &  #.#  6  *+(qÿêõÏ $*07&''63#3##"''3255#535#'67&'¬ $9//   22PÏ $%#C  ?7 pÿèõÑ5;7''6767&'&'''63&''67&''667#Õ *. 1 6     *Ä " 1  %      rÿçöÒ'-O7&'67327#"''67&''7&'3&'67327#"''67&''7&'7À >I  !  CA !  ($Ò     L        ÿê`Ò"&*7&'3'73#67'7''5'635352 .     Ò X-   ‹ 1# ÿéSÏ73533#'#5'67#   //|v'. ÿôsÏ 73&'73#67'676'&''(eH *4% ¨ 92 77.03,uÿéóÏ 73533##5#u4664NN…… ÿônÏ 73&'73#7'676'&'' $`D (1#¨ =- >0.03, ÿôiÏ 73&'73#7'676'&'$ "[? %, ¨ =- :4.03,bÿèôÏ73673#'67#''6767&'t!EH&& ` " ¨&hD HWX#)  -RI*nÿíõÍ&7773267#"&55'75'75'6Ú 9 9#@ ' +ÿèòÐ!%73#67&'#67'53&'3535~ DM "% Y .%"- J){{{Ð f   KM Á ))sÿêõÉ 7#67&&'#67'53535á1  " " FFFÉr  /)V  Ö0ÿêõÇ7#67&'#67'53535é+  .  444Çp  !JV Ô/ ÿé„Ï/37;A73533533##3#3#3#'67#5365#535#535#5#5#35#335&' ---.58 , " +0+,++K + » 0 '  0 9_   ÿïkÃ73&''67&'767#S   =ÃC1,2" .vÿíôÐ"&*733#3267#"&55'6367#3535#™4 O  % '$ ÐT1 }$3333H õÒ17;?EK73673#67&'##"''3255#5'67&'767#33&'35#35#'67&'W/H&  +  1  %= > 1JJJJ f½  0'  $.    : ' #   CÿéøÏ )-157&''63##"''32655##5##5##535#335335˜&+ *( . ;KKr *Ï#(# i 1111=‚3!!!!!kÿéõÏ73533#&'#5'67#%+' -$#¡..69$(st2(D ÿétÐ $*06<733#5'667#35#33535#335&'''67&''4'+%O   +   B@Ð cW *C/" MÿçõÏ !7&''6&'67#53&'›#) &%'2 %`x&-Ï,/,%   X PíÑ73'73##5##5#&'''6c bJ$D°  | ¸ UUUU ! ÿðöÌ#7&'332667#"&57&'''6f$!  '"…  š Ì!+†# ‚-6 8,C. 7 ÿísÃ73#3#7'75375#735#R ,6%++ÃP1 XTg,pÿéõÐ%)73&''67&''667##5##535#–A $    2H@@@Ð        a\\<+ ÿíiÃ73#3#7'675375#735#K(0 %%ÃP1 XTg, ÿí^Ã73#3#7'75375#735#H"*  ""ÃP/ XSf,`ÿéóÏ16<736533#3#3#3##"''3255#'67#5367#537#5#&'l*DEBET   9  %!)Y+  ¸ 4  1 "* ^  dëÍ7&'73#5##536'&'x  _ +­‘ƒ  Í ,* ÿéÓq73#"''3267#'67#536e\   KD = 58q L5I4ÿèñÐ26:>BFJP735#5#53535333##3#3#&''67&'67#5367#735#33535#3#335#33567#]QQQQWm†+ #'/(+G4$% -?C ==Q=Ž==Ž==›JJ^DD Sr 0     f # >R  ÿìòÏ873533#3673#6732667#"&55'67567#535# ?@@' >W)?7 % ##* +>IFQ3 `  % 6 0 (\3Îy    !  ÿòîÇ 73#33#537#'67#&'&'Ï…o:Ý\  6Rljv4.AQE  ÿéóÏ,B73#&'#5'675#535'2353#5'675#73673267#"&5Õ %.dd+= 9%*6 @+ff$(Xe8!8‡    ÏG.)IG)-GJ G      ªÿëõÍ733267#"&5ª   ÍÇ   ÿîóÃ4873#"''325567###535#73&''67&'7667#3#$¯"*  ";4!!sI    3‘ææÃi o#Pf>,)       y£òÐ 73#53&'ƒcähÐ  ÿêñ|73267#"&55#'667´    D|q  c;2-C •òÐ 73#53&' cålЬòÐ 73#53&'„bäjÐ ÿíîJ7732767#"&55'75'6¾$(_a) 8+ORPJ  <òÐ 73#53&'3#735##5##5„bäjC¡¡{{­·Ð +/,%'NÿéóÊ73##5#535'6Ü  HHII6 BÊ?rr;lÿéóÊ73##5#535'6Þ 99::( 4Ê?rr;QÿéòÏ73533#3#5##535#35#QFGG8X4F&XX222pp2~9MÿêëÎ73#"''3267#'6##535#‚b   X#J9&&Ί(q$'XgG5WÿîðÏ %7#5##53&'736732667#"&5ínD @- &5  /&¬.. /0 0   RÿêòÐ 7#5##53&'73##"''3255#ïsA Y A   K®11 ?Y  VIÿé÷Ì"(.73&'3267#"&5'3'67'677'6'&'§!   (.* aw  ÌcL  È}>( "3R & SÿéóÂ73#3#5##5367#35#35#S JE`.A````¦¦`-l,FÿéòÏ!%)73673#3#"''3255##5'67#35#35#Q0Zb `  O  '/OOOO° € 5|  #CB @ÿîôÏ#)/5;CGKO735333##3#535#535#535#33535'67&''&'7&'3#53535#35#35#W:>>O«I::HH:M***t  I  >  A°()      =       333#####KÿéòÇ!%73#3267#"&55#'67#735#35#35#a{"    1 *SSSSSSÇ‘/   57+fAA ÿíqÌ 7&''6&''67 %  'Ì ",*$-CÿéóÐ%+05733#3267#"&55#'67#5'667#367#335{G 0/   ?91 %3 :  #(;,Ð  K;  ?6")B 8%KÿñóÄ#73#3#3#535#535#735#33535#335Z‰:::J¨J<<;'';&a'';&ÄsCMBÿéñÆ!%7#'66553#3#3#5##537#33535# 5 3==2I+3hhh5IIY?/ /$^>UUu} IÿéöÏ-73#35#535#53#3267#"&55#'667#56‡**d**+?% #Ï sI  L., $%kMÿðóÐ %73#5##53&'&'''63#3#535#› DuB0  $ '‡:I¥F7Ð .1 : -22MÿéïÏ #/73&'73#&''67&''63533##5#[9 >Ž  Z  hGEEG´    -   ;>>Uÿééà 73#735#35##5##535#35#_€€XXXXvlllllÃ[668m m'<OÿéóÏ(,073533#3#3#535#535##"''3255##535#35#X=CC;;J¤F33=ˆ WWWWWÀR\  $t 0JÿéòÏ733#3#3##5#535#5335#35#ŒKK?6IIJJ80[[[[Ï^++^&:RÿéöÄ /7#3#3##535#73#535#3&''67&'767#š53333""@FF11K     5ÄO0Û=+M)L/$      ÿéöÓ!%+37;7&'#5'63&'3#735#&'735'6#5##535#35#}36 e OCK··@@  @@".|||||Ó     &B!  !!  2T T*LÿêöÏ!%)-BH73533&'73#3#5##5##535#35#33535#3353533##"''3255#&'QC G<))F ‡‡cc4%«'ycccà   */$  (= =! ÿéIÏ 7#5'65  ϳ‰2[ÿèáG 7#5##535#35#á^^^^^G_ _!1LNžÈ73#3#'67#'737#37'SE +  È &  7  MôÈ&7'67#'737#53#3#33267#"&5Ç I  t     GÿîõÉ #'+/373#3#735#33535#3353#3#735#33535#3353#U••‹‹**=*g**=*†¥¥ ŽŽ++>+i++>+Ž®®É @& $ $ @& $ %Cÿé÷Ñ  -:7&''63#3#735#73#735#&''67&''6–%/ /%+ :JJ @@=@@I `  Ñ!!;;/   "   GÿéóÏ$=EIO73533#3#535#3'67#3#3#535#3#3##"''3255#535##5##535#&'QCCC<Š;C¤ Žr+K¢D4¬ 44‚FI Å   $    #   D D*  IÿéòÆ #'+37;?C73#735#33535#335#5##535#33535#35#'#5##535#33535#35#]……'':'a'':'"--;--ÆT262xx-L  **>M.‘íÆ7#5##5í²Æ5$$5 ÿèõ°$*/4:733#3267#"&55#'67#5'6367#367#35#&'YS 4<  * KE8 0G G -4B>74  ° G& -0#7   <##( :ÿéöÏ$7367&'#"''325'3'67#  *+   D9 * %Ï- 4!'@h  Ž/%2@ ÿîCÈ 7&''6#  ! È f 1-+IÿéôÑ 48<7'6'6'&''&'35#533###"''3255#535#75#35#Ô8V W2 /%  E;Ž@   ;;E„,,,Ñ     E**"  )ÿéå;7#53#"''3267#'6\EÎ _F >)9 3   ÿé‘Ð 8<@DH7&'67&'6'&'63#3#&'#5'67#535#735#33535#335'   Z      .r199  ,6//N/Ð     .K  -0,- ÿêæÎ4;73#"''32765#&''6677''67&'767#'667#Aš    + . (   " %> "Î Š!v1#  ,  %# %- *›ÿéëÀ7##53#"''25×(P ­Äן  ÿé”Ë  $7'67&'&''6#5##535#9A+L999Ë $" 1^^<*.ÿêð­.4:73533&'73#673267#"&''675#'67#'6'6<"0  2W/-," +  ."€ $& ’  m %  u@B!c     ÿçõÓ#5BHNT767&'7&''667&'7&''6'67&'7&''6&''6'67'67'6e$& ;CT   $]  &+P0< 7;+7 O' 2 69 .S XN :n qÓ               %  + aÿêóÄ73##"''3255#a’1   MÄ­  ªrÿêóÄ73##"''3255#r*   CÄ­  ªQÿéèÃ73#"''32665#'655#qw  5<9ÃmV PR?T42H?UÿèöÄ7'6553#5#&'7#3…x 2 8 0OOj C5 4?]f F*0RG4aÿéóÏ '73&'73#67&'7&''67'67676b>=‘f/*%* 87, ²  X "( "%-(XÿðóÄ%73#67&'7&''67#3533#3#535#d†@!# /50577D›C5Ä+# )u ''^ÿéóÇ$*73#3#5##535#35#35#"&55#'655#5#3^•.(a)/A'a aÇ"©©"""§* 7* "772fÿéóÁ73#3##"''3255#pyy %  SÁ.j  fUÿé›Î7'6'67#~  #Î-_ !( xœÿéóÁ73#3##"''3255#¥EE W   'Á.k  gyÿêòÐ%)-157&'3533#3#"''3255##5##535#35#33535#335Ö  N422- -4.H.Ð !!ˆ  225Ÿ@GTÿèôÏ (.473&''667'6''63&''657'6''6¡% +(8  \ ,) *3 G: ] Ï$' A(&#!* V=õÑ 7&''6&'3'67#£' '% 4 *w ^Ñ    Oÿìõ@!733267#"&57&'''67&'€) 5 €  @;  8  $ EÿçõÏ/73#'66553&'#3&'36533#&''67#§ 2m#9@[[A!6+ ,)/ *Ï ?@1 / X #  ),,*@ÿéöÐ-1597&'#673267#"''67&'#'66553'33#3#735#Û  %*      H YQ7755Ð 4!3"*3*,BH<- +S##%E#`ÿèìÉ $(,73#735#33535#335#"''3255##535#35#`ŒŒ++=*g++=*  YYYYYÉT231g  )#4OÿëžÎ73#&'#5'67#535'6“    #Î( b^ .#WÿèóÏ -73353353#3#3#"''3255##5##5##5367#`&'‰ œHG 0@À&55&7S ?JJKKVg ZÿéîÑ 473&'73##5##53&'7367533##'2655##5##5_8 =‹n% "  ,5  ""¹  #((   2; 'XX?PPÿéõÑ #37;7&''63#&'67&'6'#"''3255##55#35  ( %$* 8HH=    +    3 1Ñ$$! !$ (# #("p  .‡%AÿíóÐ573673#3#3#3#3#535#'67#5367#5367#53&'   "D@CV\Z.:‰;$ ,!($(4'Ð   ""+   PÿçóÐ#)/7373#33#53537#5#35#3#3&'''6c=8<6—/9mRRRRRR *# ¾ww/  >ÿé’Ï73#3#"''3267#'667#53&'r!#     Ïd*S27>L}óÏ 73#'6¬=D Ï "•ÿéõ!73#3#&'''67#53655#'6´+     #& ' # Pÿé¤Ð#73533#3#3##5#535#535#35#35#P! !&&&&¹[%%[<: CÿéöÐ!%)-17=CI73#3#3#535#535'65##5##5#35#35#35#&'''67&''&'lr  i""!  o d    Ð ... 9......@.....I  Iÿé÷K73533#&'#5'67#WBC6% &* *7>   86QÿèôÏ!%6:>73533533##5##5#3#53&'3#735##"''3255##53#735#Q$5$$5$UA›D+ssOOt r$RR00Á '* 'K  7Ra+ ÿéñÏ'/37;73533#3#535#&''67&''6#5##535#3#735#[``jâf[*   ~   5’’’llIIÀ::      ?l lQA ) aÿéóà 73#&'#5#a’H*6Ã*„ÇqÌ73533#67'675#" ,3"”88JQOÿéñÍ73##5#'66556Þ *9j&.(>Í +……D:1W!;ÞÉ"&*733#5##5##53&'767#35#35#35#35#!½") ???W  ??S??S??S??É  __ =- ÿè‘Ï(,26<BHNT73#3#3#67'75#535#535#535'235#&'735'6&''&'''67&'ƒ 661111B283322::7! +       8  -Ï =   =  d   Y  ŽÐ&*.2673#3#3#7'675#535#535#535'635#33535#335 05500//,2@000055,5 /M/Ð  ?    ?  K ! îÏ73533#"''32767#'67#™,    ©&&h  ?.6"HMÿé÷Ê -73#735#3#735#73#735#3533#&'#5'67#lkkCC'AA>AAfCF;& %( '8Ê4177:  !98ÿégÏ7#"''3255##5##5353g "©t  \­­yŒ&&ÄÿéØÏ73#ÄÏæMôÐ &-BFJ7'6'&'73#&''67&''667#'33#"''3255##533#735#z K  >     #b/ L255Ð         0)C  /IY% mîÐ73##5##5#53&''67&'€`G#C`2 Ð 7788 *   \ôÑ #)BHN7&'7'673#&''67&''667#'33#"''3255##5##53'67&''  a 7=     $e0 0  4 Ñ        '#:  &@@@P Kÿé÷É+;J[k73#3&'7'#"''3255##5##5'6735#''67&'7'''67'76''67&'76'''67'76Y’@,    ))  *@m    4   =    7    É    „™™ž£   6        7        SÿéõÑ "(.7#5##53&'73#3##"''3255#'67&'ïf<6TT“A   >c´10 +J  G PÿéóÆ $*73#735#35#3#3##"''3255#535#&'gyySSSS"–!!  nnf  ÆQ003,  ), SÿéôÏ&*.736533#&''67#3##"''3255#3#735#a8>A$ "& & 3¡  vMM))¹     9X  U>ÿéRÆ7#"''32654'7##5R Æ;  <ËÝ8ÿè¨Ï!%)-73533#3#&'#5'67#535#35#33535#3#3W    ) ) ¹V @@"$V95 ÿèô]73#&''67&'#53&'67†_. "&:B.24 7$'k' ]   ! oÿïô•73533#3#3#535#535#'6‹,,++2…?..! $$$$$$ ‘ÿìõÏ&7773267#"&55'75'75'6Ý ()/2    %Ï(  '  4  3&'#UÛÐ 73533##5#735#335#RRRR>>R>¸K''' HóÐ73#&'#5'67#535'2Î #+gR!3 ;$"9 2 Qg!'SÐ)43% `óÏ73#&'##5#'67#535'6Î MgM / :$"8 ,!LgFZÏ "&&  6ôË4735#533#67&'#"''32655'675#&'#535#2ƒ‰œ#`   $?   *38-4 ¡ƒ­ ;       .êÐ'-P7&'67327#"''67''7&'7&'673267#"''67''7&'7  kf   %4- 2$NB   kf  %&; 2$NB Ð       2       w|íÏ 73353353#wvÃ5AA5Gdÿêèv7&''673'67  %B # LP  +@dÿçõÑ7>7&''6767&'&'''63&''67&''6667#Ð .4!4 !:  # !   1Ä "  3  %      `ÿéóà 73##5'67#&'g‹8(?`ô†, .P5)'%bÿéóÎ73533533##5##5#35#35#b<<+<<<<¤))**§¨88ƒ8HÿèôÏ*.7533'67#3&''67&'767#'665535#< &4!  Q"!!¯  10$    ;/ ,TD1UÿéôÏ1767&'7&''63#3#&''67#5367#'6• " 17U/B;- . : 6 6< Ï" ! )! '   MË73533#67'675#  ! ”77N VRÿðôÉ +73#3#535#5#35#3353353533#3#535#\“-(‰(-T&&t8::F¢H8ÉOO=+++++X!!pÿìõÍ "733#67'73673267#"&5p""  ?   ÍJl  ×Q` # hÿèôÂ$)/736733#3##"''327#67#77#7&'7#7&'hn   blG 6J" q'**'=&&*>>5  z=!5 bÿéôÅ73#3##5#'67#535#5#qz!!"'$ !O!ÅLjj@* &7LLLLuÿééÉ 73#735##"''3255##535#35#yjjBB\ LLLLLÉ>=x  1‘(;TÿîõÆ $(73#735#'67&3533#75##5##5#kttKK"   Z† ¡€Æb@&   …OO====== aÿéòÈ #'+/73#735#73#735#3#3##5#535#735#33535#335f??6??S|4==AA5""5!V""5!È11/W((44FíÑ%8K73#3#35#535#535#533#5##53567&''67&'76&''67&'76S&&&&•%%$$&8µT         Ñ  ]''T     (      ÿéóN733##"''3255#53567#4• dd   nnqN   Fÿìòz$736732767#"&5'67'533› & #@$ 2z-  2 D@  ‚!lÿéôÑ 48<7'6'6'&''&'35#533###"''3255#535#75#35#Ù 'I F%  &  5.t 3   ..5gÑ    D)*"  )dÿîöË$(,0@76767&'#3'67&'767#3#3#735#3673#53&'¼    2 B<  )(11bb<<   "Š Ë      H 6  39-   VÿéõÈ 37'66553'#33#67'7'3#3#535#535'67# }XXPc7   ))1y5** ‘.F4 0$`7&!   jçÏ 73533#735#33535#335j55}##6#Y##6#¦))‰N)))e***c òÆ  &73#3#535#35#35#"&55#'655#5#3c-&‚&,>&\ \Æwwƒ ,% ,,'l!ëÆ 73#735#3#735#lWW88Æ¥S2V òÏ'+/735333##3#3##5#535#535#535#535#33535l,7799GGBB66--??,?$$$½""#ZÿéêÁ 7#5##535#3#735#êhhhDDÁØس¡ a=gÿêöÉ 7#67&&'#67'53535ß6 !&#% PPPÉr   0(V  Ö0PÿîòÄ !-73#&'67&'67&'63#3#535#[““   :   =   o”AG¢G?Ä   S** ÿêUÐ7'6'67#>$ " ' Ð )[#( ‚MÿìõÑ %73#53635#35#3#3#3#535#535#–A„.\\\\™B::H¨L99CÑ \\ 09:nÿêòÏ73533##"''32655#&'nR R  ›44ƒ ~$ &ZÿîóÄ 733#537#537#37#37#g ™"%''32/52ÄÃNOOO°NFàÐ-3767#'673#"''3267#&''67''67'367#>  %Ž     T !— #U!=  Vÿé÷Ï &,733#3267#"&55#'667#53'&'7'6Ÿ?.  %@+  t Ï]X  [02,)M ! RDóÏ73'67#&''667#'6vc  &0 - 5 & Ï  *#! #  DSÉ 7&''6%6# &É>bÿéîÈ7#"''3255##53#3#735#î  dPPDDÈÅ  ­Ìß,W3YÿéôÈ 73#735#35#3#3##5#535#mvvPPPP†;DDDD8ÈZ59733RÿéùÏ!%73533#3#&'#5'67#535#35#335`>AA5)("' +(5>""5!·G"MM(#GN###\ÿéóÏ #/73&'73#&''67&''63533##5#i49„  T   `B@@B´    -   :>>UÿèõÊ'7#3#3#3#67&'#67'5#535èbYYXXm?   :! Ê   EM  ZlSÿêôÊ '73#735#73#735#3#3#3#"''3265#7#d;;6<<W}}¡bZ   b)ÊB B ?3 %Pÿéö" 7&'''67&''&'ß f ^  "  EÿéõÏOSY73533#3&533#67327#"''67&'#3#3#3#67'75#535#535#535#535#75#7&'Q$%%/))     " .8!,$& e  º!<,0)'= ˜pC  ÿéKÏ7#53''68  /–æ75'!"ÿêóÐ)/R7&'673267#"''67&''7&'7&'673267#"''67&''7&'7 _b    !.? A& SJ  kj   #2? I [Q Ð         J     (   `ÿéñÆ%733'67##"''32655#53&'767#lv0  %   AE ^Æ  _ Z PÿéôÑ *7#5##53&'73#3#33#"&''675#ìe;Aj+11+,  +»**  4+0.;gHÿéõÏ"(,273533#3#&'#5#'67#535#35#&'735'6YBBB9+%"+ $$9B%%3%  ¹T$KT/%TW.  .. \ÿèòÏ<7'67#&'&''6733#3#353#5##5335#535#'67|]3   #K:T4@@'^$AA  c0     .  11  NÿèôÎ0K73533#3#535#3533#3#535#'3533#7'75#3#3267#"&55#'67#c666A‘=6EQ P&1   3 +*¾5 2! $2  #Tÿèñg 73#735#35#35#'67&'b€€ZZZZZZ  P gY? # #     Rÿèòx#'+73533#3#3##5#535#535#35#33535#335]=AA99FFHH99=((:(b((:(n  =  = ! # UkóÐ<73533#3#&''67#5365#'67#5365#53533#3#&^   n    Á   '  FÿèóÐ#'C_73#3#&'#5'67#535#53635#35#''67'6776767&'7''67'6776767&'›G:$ &) +;H     |    Ð h #=A**R  ;;;;;Æ?""??.0e  '}#4YÿéöÏ '/37#5##53&'7'67&'&''66#5##535#ðb:( A ' )0 "IGGG¹&&     "# 6P P1 MÿéóÏ#CGKO733533##5##5#533#735#73#735#3&'73#3#3#3##5'65#5#35#€&''&'' @@<@@H$794444;w <*****Ï  #.." O  MÿíôÐ "(048<73#'63#53#3#'#335357&'3#53535#35#35#À',$RP&&H '§&'Ð G3I#  5<<<***** WÿéôÒ $*08<@DU7#5##53'7&''3326567#"&57&'''63#53535#35#35#3##"''3255#ïm@    T ]  ##`Œ:   ?½       (((4 @ÿè÷È &BR7#'6553#&'#5'67#535'6#535'673#&'#5'63#53533533ð„L   7     9/ÈKE> 6A] +# .   -&K22> ÿé’Ï#BFJN733533##5##5#533#735#73#735#3&'73#3#3#3##5'6353535177/66<..****/` Ï  #.." M {ÿèõÇ#(733#"&55#'6653&''67&'#367Ù  c     Ç<  0%  *d/    $dÿèõÇ#(733#"&55#'6673&''67&'#367Õ % l# ' %  Ç<  0$  *d/    #ÿçyÃ73#3'67#&''67#g/0G?   $Ã[I @D   *; ÿçõÆ!',17736733#3##"''327#'67#67#767##67#7##67# #¨'  E=!º69|8 8z$(($1$(  9L9%&ÿêóÆ!'-3736733#3##"''327#67#767#7&'67#7&' ¨#  ˜·‚+_‚4s(++(!$',!"9~!#8 ÿíôÐ*7'67773276767##"&55'75'7- %% $&2J+!¬ *  (  1  3  &  `ëÔ '-373&''667'6''63&''667'6''6¡! &#4  P+ +(*  JÔ %  8  &  ÿéõÒ 73#'63#3327#"&'#:£¬   ± žÒ   c""1+\ÿèõÑ 73#'63#3327#"&'#:£­ ± žÑ   h&!0/brÿèïÏ 73533#3#"''3255##5##535#r5552  25¯ !\  E‚‚ew!UÿçòÏ 733#3#"''3255##5##535#53šDD=  ()>>>JJo‚888FÿçöÏ"73#&''67#5353533655#335áI. /49E88"$8'¨N142! $/N''N ** ;GÿéóÌ73##5#'66556ß 0A{)>KÌ ,ƒƒ:37D9\ÿéóÏ733#3#5##5335#ŽQQA_2__Ï,/xxTA\ÿéõÆ$7#3#327#"&'#67'535&'#ç3<: 5 ) c00ÆK!&)-.C Ò%%\$RÿéóÆ73#3##5#535#'6'&'_Œ?GGGG:x ZÆaVVa( ""$  ÿéDÏ 7#5'60  ϰ‚2BÿèôÐ J7'2'6'&''&'&'3#&'#'67#5367'67'6776767&'Ø 9RDC 1 ( p)P=$ .: .9D!%&**"Ð    3   !%      "5ÿéôÆ$(=C7#'66553#3#67&'#67''3#3533##"''3255#&'v ŸC   9  oo V%%  V zC6 2"_+   +%_d$ !  HÿéðÑ K73&'73#&''67&'763353#3#"''3255#67'7&''67##5367#IHG§n     [j?P  C !$ $?;½      11BI  3  Qb @ÿéóÉ +/373#3#535#5#35#3353353#3##5#535#735#35#F¨2.Ÿ.3d,,‚>PPPP<hhhhÉ 33 $1D) ( @ÿèöÑ *0D73#5##536'6'&'3533##5'67#&'3673#&''67#‡Sl):  ;  '((   I bBRC1 9? 29Ñ~no "   $$-    2  %' 6öÅ73267#"&553'#;5#Ÿ ($ ^8q"  yTC22 ÿéõÑ7&&'#5'6556y 1L N86ÑmC  MrÉÆP>5 24aYÿêòÏ%736733#'67#7&'33267#"&5a2FH/ * /`    –h1-[F  Kj   ÿéhÐ$7#"''32654''67&''67&'76W      Ð "7.-## '    ÿé^Ð$7#"''32654''67&''67&'76M      Ð $6.-## '    ÿéSÐ$7#"''32654''67&''67&'76B       Ð %6.- &   Oÿé†Ï 7#5'6s ϰ€ 2€ÿé÷Ç (733#537#3#3#&''67#535#'6‘Np?9 @%.* %# # *. Ç2     ;ñÒ0FL73'67#&'&''6'3353#5#'655#535#3533##"''32655#&'§1U L,  /y ?2LW""   W%   Ò )!)Ž/       ÿéôG7#'67#53673&'73#&€P DU^KZCL ,       ÿêUÐ '73#53&'&'73#3#'67#537#5363H) &Ð /, %«ÿéóÐ %73#53&'&'#53673#3##5#53ÑH$Ð /=IIEÿéÁÐ"7&&'567&'7''5'6556Ÿ     %Ð %n4 LD!²  ·-]; 6[8 ÿéóÂ%73#33267#"&55#67'7#&' sE@ 2  5,."8  Â$|  lz ·N€òË73##5#535'6ß //// .Ë 7OO0 ÿéëÒ '+/377'6'&'733#5##533#735##5##535#33535#35#à Hb­`7‚‚\\‰Œ==P<Œ==P<<Ò    #7&&7 20d d&9`¼ 7##55#'#33535#`<<  ¼¢¸I88887777TÿéôÏ37=736533#3#3#3##"''3255#'67#5367#5367#5#&'l.@A>AR   ;#!'!$-[+  º  4 1! (2  b  ÿèóÒ73#'67'6753&'&'’X±Xc  Ò OA2 .'  [&Gÿæ÷¦#)73&''67&''667#&'&'~J "# ,"/ ' $. =# !!B- ,A¦      4 a¼ 7#5##535#35#35#35#a+  ¼­ ¹H666777ÿéòÒ753&'73#'67'65&'+U^´  a\ O@3 *+  R:ÿèú¦ %)873533##5#73533##5#3'6673'6'3#733267#"&5ER$$O R S  Œ““““2$ "+J$ !BONK   ÿèðÑ753&'73#'67'6'&'7VM¥!  aX  M?3 -,  P pöÏ#76767&'3'67&'767#• PjbH   IÏ       ?4  oÿçè…'733#"&55#'66767#53&''67'Å   D[  $… ! ]    ÿém‚73#3#"''327#735#*@2;  = /,‚83)6wÿéõÏ#',73'67#3&''67&'#'65535335#67Æ, %  ++ ¯ /0%  ( >1QQ¿"" I K K`eÿèõW7373#&''67&'67#67#g&Q1 !, " G+E    eÿèõÑ4;73#&'#5'67#535'2373#&''67&'67#67#ß 6(   (77B&Q1 !, " G+Ñ !+*€     ÿëiÏ 73#3#&''67#537#'6'. !$' Ï %$:1 ÿërÏ 73#3#&''67#5367#'6.5"$ ',. Ï'#;cÿé÷Ä/5733#67&'#"''32655'675#535#535#&'wb=  " #@cMMO  ÄM   "+ .W gÿêòÆ $*73#735#35#3#3##"''3255#535#&'uqqLLLL ]]WÆR103+  () UÿèöËFe73267#"&5536733'67#3#33#"&''6735#53&'767#3#3#&''67#537#'6Ž     L     !%   69#   Ç    5 *5 #Df  7     zÿìõº753#3267#"&735#zkW #  .$CC¹oC   iIÿéôy%+173'67'676573&'3267#"&57'6'&'])/ < !*+#!  #!K ¡ y)/0 '  (7&  p   ‹êÑ 7#5##53&'7'67&'ê¯a) ' (L$ $Â#!  ^ÿéðÈ%)-373#3#"''32765#&''67#'67#735#35#33#umF^  )   HHHHJ]ÈU X! 7  31a"ÿîñ€7#32767#"&55#;5#ݧ;J TFT@@@@€O( |** ÿîô‹ 7'67&3#3#3#535#535#|"E O 29 4gj,CCdßeCC(s$ ÿènÏ"73533#&'#5'67#7&'7'6$##   "M ~QQY[!-QiÿéöÏ9733533##5##5#53#5'673673267#"&55'67&&  7     Ï. uZ&. .    aÿéõÑ A7#5##53&'73#67&'#"''32655'674''67''67#îY4Bp9    & .   º!!  *   ''(,        ÿégÏ"73533#&'#5'67#7&'7'6!     G  ~QQWX",Qÿéïo */73#3#735###53#"''3255#3##5#53&37#ÝÝ¡¡||*Ñ   +63+o " .5D0  wëÏ$9?EK73533##5'67#'3#3##'327#735#5#53#3#"''327#7'&'7'6&'Z  D<*/ 0'+Á+=*. 0K=   ± , )$  # $ $   )   ÿéƒÏ#)/7676767&'7&''67'67&'''674''  & &-/  A4„;!  /*s  ŒÿìðÏ733267#"&5Œ  ÏÇ   iÿé÷Í #06<C73#5'675#73#5'675#&'7&'&''6'6'67'66i= +F= +1W ' ' ( & '+ !/ 35 'K ,0ÍU  U      5       +  ÿémÏ"(.7676767'7&''67'67&'''674'$  "%  5  /…9" /+q  kÿêøÇ $(,0487#3#25267##"&55#535#55#7355##373535335í*** (  &&'F H1\1Ç8h g8Ë»° º1* ÿémÏ"(.7676767'7&''67'67&'''674'$  %  5  /…:!  /+p  aÿçóÑ "&*.4:@7#5##53&'73#673#5'675#5#5#35#5'6'67&'ïf74V"1Fo %!SJJJJJ    B¾##  \RG   i |   ÿéô^0EIMQU[agm7676767&'7&'#"''3255'67'67'6'3##"''3255#5355#355#5#&'''67&'7'6ä    * 6@ - 1 I99999¦ ¨ K 9  ^       C   C       bÿèõÏ-1573533533##5##5#3#3#&'#'67#5367#735#35#i %!!% x4@1 )- / ' -40QQQQ½P "*   00 ÿð„Ð 73#3#753#55375#535#'6'I*22O11 Ð.U@_ ZFV.  ÿèlÏ &7&'7'63#3#3#'67#5365#535#'  A @\%'*  ##Ï .$ iÿçõÏ !7&''6&'67#53&'© !)    Of %Ï -.)& Y —ðÓ73#3#5#53'€g°’¦eÓ    ÿåöÓ,@DJP73#3#5#53'3#735##'6553265#"&5'#"''3255#'65535#35#74'€g°’¦e@¤¤~~Ž<   žÓ   B* 6$) ))Y _Y  )( ( Wÿé™["73673#3#3##5#535#535#53&'j  [     bëÃ+1775#53#"''3255'675#53#"''3255'6'&'7&'&9   \&9   N  W  v:–*:–*<    ÿéòÏ$73533#33"&''677&'767#535# !""AVUG     ?!!­""#6&  $#}ÿéö¾73#3#67&'7&''67#Š`` r6%  ,,'¾3@ (0 (7 ÿèwÏ&735#53533#3#3#&'#5'67#535#%''((&&**  '*%Ž  HM (aðË7#5'75#53#'35#35#5#î'ž' Í zffffff~ E@4 & &  ÿé}Z7#5'75#53#'35#35#5#{K g >,,,,,, F;/ % % €ÿéðZ7#5'75#53#'35#35#5#îK g >,,,,,, F;/ % %  gÿç÷Ò !%6?HU[agm7&'6'&'6'&'63#735#&''7&'7367'7367'733265#"&'&'7&'&'7&'Ø   "   !   ~~ZZF   C 3 1 B ? ( ? Ò         .F ,    2MZMY$$ %/*        uÿéóÐ 37'2'6'4''&'33##"''3255#53567#è 0F92    h22  :: OÐ  ++ ' iÿéóÐ 37'2'6'4''&'3567#533##"''3255#à /D83  &  ?Uo99  ?Ð  c + 'fÿíóÏ-159=73&'73#3#53&'#67#3#3#3#535#535#735#33535#335o46 ‰ Q3+w255;?6622P2¼    M.-ÿíï• !-73#&'67&'67&'63#3#535#ÍÍ(  P  O —¹SfÞdR•   > ÿéiÅ73#735#3#3#"''3267#7#KK''\34  9 ÅC!E@ )%ÿêëÏ 7#5##535335#33535#35#ëH,..H.¡··..K999„999sÿæïÐ73#3#3##5#'6•P;..11 Ð$$A­ +uÿèòÏ73533533##5##5#35#35#u//'////¤++++©©99ƒ8±òÒ 73#53&'„fägÒ  ÿéñ<767&'7'5'6}    *Q+(  K<  4    ÿéòÒ #'+/5Q73#53&'3#3##5#'67#535#735#33535#335&''67&'7'5'6„fägF­Mbb&3 #&EcM99L9…99L9#" ##    *Q+(  KÒ &@    & # <   4    ÿèmÎ 73&'7367&'#5'67#!      (7¯     em5_ÿéíÇ$(,73#3#"''3265#'67#'67#'67#735#35#wkBW / ), %  CCCCÇ^ N18"+* 7:XîÑ%6G73#35#535#535#533#5##53567377&''67&'&''7'765##•$$$$&8´ #     -    ¡    K&&C  *       ÿéóf!%73#3267#"&55#'67#735#35#35#3š, &#> 2"ttttttfW   != " # "ŽÜÉ 73#735#335335"ºº&&8%&É; ÿéó— 73&'73#3#3##5##535# i gæ ¦¦¥¥¥€€€€     >>% ÿé^Ï 73&'73#3#3##5##535# QBBBBD² V V6$ZÿéóÒ*/37?C733#&'#'67#3&'73#'655'667#3#3##5##535#ŽA"  /-r $>8 ]]]]]999Ò      !  ,* !(O M  7 7 bÿçôÏ#'+/5;73533#3#535#3#735#3353353#735#35#35#'67&'b???76?‡‡'nyyTTTTTT  EÅ   "/ ,Q: !     wÿé÷Ë #7'67&'&''6#5##535#£8  )D222Ë $  2Y Z:( ÿé÷Ð"&*.26<B73'33&'73#3267#"'&'#3#3#3#735#35#35#&'''6– 5   –hhŽŽ }}YYYYYYB!»  X/ !#/l   Z@ $ #     ÿéfÆ 73#735#35#35#'67&'LL$$$$$$ 8  Æ£sMM6 ‡ïÀ75#53#3267#"'"&55ÍFYE  '}2U=  T ÿçôÏ(73533#3#3#33#"&''675#535#!!!("V60L7  /(!° #- $A V  ÿçôÏ(73533#3#3#33#"&''675#535#$##*& Q60L7  1,$°  1 $AY t ôÑ 7&''6'6'6'6¯ &! # $' 1 1. %D GÑ " !-  ÿõ[Ã7'753675#53#3#'35#Q' F " QJ]PP%h,LÿêìÏ"&73533#"''3267#'6655#7#5##535#e "     ‡¤++Œ)0_JIA?)Éʦ”ZÿèõË15973533533#'3255#'655#'3255#'655#75#35#[:: 6_o\\\\Y  T?#!@ Y  T?##> KKKKgÿèôÐ!'-73673#3&''67&''67#67#7&'p"JLF    # 53  ¢8#  )<@!p ÿífÄ73#3#7'675375#735#N&/"''ÄQ0 WSf+LÿèöÐ $*06<73#3533533##5#'6553&'#3&'''67&''4'¯4n D!8(   M I Ð &;;-8#PP Z* # ÿõSÃ7'75375#53#3#6'35#J$  > PJ^PP(h-IÿèõÊ '-;J7#'6553#353#'67#53365#536'&'73'7#'63&''667òƒG   ! N!     ÊTF6 6@a7 /@) @/3    %#+  %"TÿçøÒ (:IN73&'73#67#5&'67&'7''3##'3267#'67#3353#5#'6735#_;@’:    4   a0   PT QP¾   ,2  ! &# =." 9g&1  ÿéxÐ#'73#"''3255'67#5353635#35#35#;1  0 2G  777777Ð º  *'p 189„ÿêêÆ73#3#"''3267#735#ˆ]CM  P AIÆK(F#,N%gÿéôÈ 5;73#735#3353353533#3#3#3##5#535#53&'#535#367#o~~$h233;2====/;2+!8È8;   8 ÿéhÎ"(73#&'#5'67#535'6'6'&'[ !! #$ 5 6  Î<_T.7  mÿèöÊ 7&'''6Ì ! ' #+ &Ê’<Bœ“JEXÿéóÐ,AG73'67#&'&''6'3#5#'67#535#5333533##"''3255#&'¿)$-+   .  #!4  4  Ð F3   !æc?" 9I9:=  9 ÿí_Ð !'-7&''63#3#7'75#535#&'7'64   0 '" AÐ    E I3ÿèjÇ7#"''32654'7##5j  ,Ç8 ;Ëß[ÿéöÃ73#3#3267#"&55#'667#upp ‰(   ! !Ã2e i;3,3TÿðóÊ733533#3#53u448Ÿ!™–ÇMgVÿéõÏ"-73533#&''655#&'7''67'7''6h899/ ,6 J8   `   °" E =7$4M"$ % #*   ÿéóÉ59=73267#"&55#'65535'673#7&'7&''675#735#335+ 7T# &  És4&  />`m;$ ?xGV444”"õÐ767&'7''63#735#· "% LL))Ð0   7D#fÿéøÉ37;7325#"&547#'6553#7'7''75#535'635#335ä  LM     ÉH8&&#=0>n>"!?yT "Tk666 ÿéqÉ 06<73#3#535#5#35#3353353##53##"''325''67&' c_6    EQQ *d'  EÉ;;,<")    vÿéíÎ)73'67#'63#35#535#53#5##56 9  +  I 3IÎ& !* !!} xÿéwÇ!%+17=7#3#3#3#"''3267#55#5#35&'&'''67&'s"&  Q+ &"ÇN:‚&&/ÿòóÇ 7#3#53#735#3#735#73#735#òabt$CC!!&& !%% ǯÕ!98K,K,uÿéôÇ-159=CI73#676767'7&'#"''3255'67'67#735#33535#335&'''6}n5  !   #.J.  9 ÇP  " + %  00x   ÿéoÇ!%+17=7#3#3#3#"''3267#55#5#35&'&'''67&'j" J(  $ÇO8‚&%/mÿéôÑ PTX73#53'3#735#73#735#3533533#3#3#67&'67'5'67#535#535#5#35#±6}2'55.55N 5  +   (IÑ#+ ++    ,      NðÏ")/57'6'#3#3#3#&'#'67#535&'#67'6'6Þ 5.6ULLLLZ -/ "I %Ž 1 2 !6 9Ï        G` J     ÿèöZ"373533#&'#5'67#7&'''667'7&''6)%%  '¹ ) $  %(B  //   "  ÿé„Ð $*06<733#5'667#35#33535#335&'''67&''4'5+[  ! $7$N H  Ð cZ *C/  " ÿéìÈ$(,04767#533#"''3255##5##53&'35#33535#335š  G]   , .I.«   //8¥ =J nÿéõÒ!%+37;7'67&'#7&'3#735#&'735'6#5##535#35#— + 5.  "nn )   =====¢    B"  ""  2S S+ "ñÒ"(.4:73#3#3#"''3267#5363535'67&''&'7&'aa³³« «, |||– ‰  B  ? Ò< . k  K         ÿçô-73267#"&55#'665®  E! -)  ÿé}ÌEK73'33#673265#"''67&'#67#"''32655'675#535'6&'>            AÊ )BB!) + ,(%? 3,"|ÿèòÐ#)/5;73#3#3#"''3267#5363535&'''67&''4'¤4GRRU  U4449  5Ð L? 0ˆ b  ÿè‡Ï$1IP73533#&'#5'675#&''6'&''63&''67&''667#2..  !2Z   A  .  "    $¼,   ,    3     ‚ÿìóÑ'+73#"''3267#'63267#"&553'#3¢?   7 &$ 9Ñ o,` w9  …H7& ÿêÈ#)/5;A73#3#67'75#535#735#&'735'6&''&''&'''6l.**3>3++, )  $    ÈX 7  77 v ÿé‰Ì"7N73#35#535#53#563327#"&'37&'7'7'737&'7&'67': G-i8  Q   )      ÌXVb8"/M  % s  % ‹ÿéíÏ #53533#=#'#3355#ž)('¸..¸[<<<<=====ÿéŽÏ&04L733#3#53533'7''677&'3353#57#7''7''6767&J,,2     STffTT    Ï))6      -,Ž Q>      ÿëñÏ73673267#"&55'7§ ÏW\  U ÿéUÐ735'673#'#5'67# !    Œ!' mj"#1RÿêøÅA73#67&'##'32654''67&'&''67'767&''67#^3   ", 3!     )FÅ A"#B  13       ÿéhÈ &+/73#3#5##535#5#35#"&55#'7335655#35# [111  *111ȵµp 7#K29=†dÿèõÌ&Ne76767&'33#"&55#'6653&'#33#3#"''3267#735#5'67&'767#67#53&''67&'À      ' @<!   %    )E ,@    Ì    # +"94 8         JÿéóÏ/G733#3'67#73267#"&55'75#'65533353353#3#535#533”CCH9+-  6+‰-Ï     F:, /4PYML*%65$ÿêîp!73533##"''32655#'67&'ebb   e6 ~!]E @ %ZÿéöÏ '+7'67&'3#3267#"&55#'667#735#‘ ; 9f    >>Ï 3HA  G&) !&NÿéôÐ &*7&'''63#3267#"&55#'667#735#½ %& $ k   CCÐ # !'HA  G%* !&zÿëõÇ73267#"&553'#37#3Ž$  %+m@,NG  ÄyfSSSÿëõÇ73267#"&553'#37#3’# +) i>*NG $ ÄygTTT ÿôbÏ7&'7''675#53533#75##5#L"     2_--_,<>>>> ÿó_Ï 7''675#53533#67&'75##5#V!  / 6_--_1 (>>>>¡ÿéóÁ73#3#"''3255##5##535#¡R   !Á"p [““v‡"6ÿéšn 73#735#35#35#'67&'@UU222222 ;  n[? % %      ÿêô¥/7#673267#"''67&'#'66553&533&'7ì6     n € ,%(2"   ,;<2& $F  ÿçï &,;73#53635#35#'67'5673#535#3'6733267#"&5u%S////"   11SF @7& . YY 07?7 P];U. !"   ÿèò¦"&*.735#53533#373#53&'#53#=#73#735#J SSVV# 2ä6±‰YY88„   ‹fg ==2' >ÿø™l 7#3#3#535#35#5#—![66l/t#32ÿææ‘'73'67'56767567#"''3255##5] " 0  )& ##‰  /l=   _  C>a  I‹ž ÿèYÉ7#"''3255#'65535#35#Y     ÉÄ  :6& 6A`9'a' ÿõó^73#3#+¯¯ææ^C ÿñój 73#3#535#ÃWhçjWjSSÿïñc 73#3#535#-¦HfãgHcNN‚ÿñòÁ 73#3#535#†e(/p-)ÁªªÿéâŒ#73#"''32765#'6&''6<˜  Ž % #c6F JŒ a C    ÿçö‚7&'#5'6556Ö + 1 4#c‚K%(\~2,%)2$ÿèîŽ$7#3#327#"&'#67'535&'#ÚITM ( P*!&3 ŽEDŽ< + #(  ›B  ÿîò˜%)-1573#3#3#3#535#535#535#535'25##5#35#335× '/g0%%0g\Ë[j3%%3jNZ2$$$$8$˜E$yÿéïÇ #73#3#735##5##535#33535#35#{rrff??ZN0N0Ç::o o*? ÿé`Ð#73673#3533#7#5'675#'67# $  '' ¯! 73!  ÿé[Ð%73673#3533#7#5'675#'67# "  $ ¯ ! 83! WÿéöÏ 159=7&'#5'63&'3#"''325'#"''3255##535#35#73#ž!(  Q 2D  =  -  >Ï "/s  mt  1‹%8-\ ÿèmÐ #)73#53&'3#3#'67#5365#536'&'=!X"%% "#'4Ð 2 )    dÿèöÏ!%73533#3#&'#5'67#535#35#335q666/(%! '$/6.·F"HK&$FM"""v[ñÈ)73&'767#533'67##"''3255'67#z/ Ie1   )›     rÿéöT73533#&'#5'67#y34' %K #II($EéÒ"&*73#3#3#3##5'673&'5#5#35#‡ PQHHHHUª !5 AAAAAÒ K  # 0 ÿèð<7#53&''67&767#0¼&!.<+*6 -"; t+    ^ÿêïÐ.7'6553533#3'67#73265#"&55'75277; -!   •E;+ -5P)      „ÿðòI7#3#3#5#535ìFLLG[I#$ ÿéoÈ%*.73#3#5##535#5#35"&55#'735655#35# b646  .6 66ȵµp 4#K07?†L éÏ"73533##5'67#7'6'&'&'PBBB!"3^  hPP_Q-*U  [”ÿéöÏ73'67#'6'665&­7&  Ï!!  "a,B4&CÿéŸÈHLPTX7#3533533##5##5#'6553#3#"''3255#27&'7&''675##535#735#33535#335Ÿv_)1      -'%<%È7C7 5@`<@A -DS& &  ÿèí] 7#'655í½])! 04ÿèÜC73673#"''3265#'67#:8W H7- 32 5 .   ÿéóc!'73##"''3255#535'2'6'&'Û )2jj hh).aF  v  c(  '   ÿéôa%+173'67'676573&'3267#"&57'6'&']'1 9 *+""  #!M ¡ a#%)  ".   [     ÿèïh#(73'73#&'#5&''67'67&'#367_`3 "6  8 ,!3")D Y  *./   Qÿéô\73533#&'#5'67#[=@7+#$(2JBBÿçV^ 7&'&''6.  9  ^     ÿæð~37;A73533#33##3#&''663'7#537#535#535#535#353567!VZZMg…5 " 1,@".07C3OffMMVi;;;h6 v       +ÔÿéèÐ73#ÔÐç q€Í(733'67##"''3255#'67#53'767#b !    * KÍ       }qòÐ73#&''67&''667˜J    Ð     gðÐ"7=73533#3#3#67'675#535#535#73533##"''3255#&'***01++4@++12*q>  >  Æ       )  $  oÿíõÎ'+73#"''3265#'6#3267#"&5535#•J  @  ;.!-( Î p(U$J18%uÿèðÑ#73#3#"''3255##5##535#'6”Q1-  - Ñ (^  Fex( {ÿéóÏ73#3#5##535#535'635#ã22)?*22'6??Ï+&dd&&¶1wÿê¿Æ75#53#3#"''3267#7«3G/1   3&K(L5LÿéïA 73#3##"''3255#'67&'*¬¬Þe   e> -&x A       JÿéòÏ'+/3873533533#3#"''3267##5#'67#735#3353355##55#R*--7  $ . & . &*=+µF!2 RR1!%G T!!!ÿè·ƒ'+/3773533533#3#"''3267##5#'67#735#3353355##5#/''2    &%*(/?(i-  11 11GÿêõÉ9=A73265#"&547#'65535#'273#67&'7&''275#735#335Þ Y "!  &  ÉH8$$ +$;/?V>9 /%  /  TÿëöÏ?HL^73#3#3325267##"&55##535#535#5335##535#535#5335#536535#3735''67&'76N055  ' +##+++.&-a+& Ï 0a    <  #0 Éž–jCC     NÿéìÏ%-159=77'7&''5633#"''3267#'67##5##535#33535#35#ˆ   "+Q  Lg))>)g))>))Ï / OG/6 -Wq q*Cÿé…Ñ%)-7&'3&'73#67&'7&''5'63535E# C #(///Ñ Y.    ’4# ÿëöÏ=GK^73#3#;267##"&55##535#535#5335##535#535#5335#536535#3735&''67&'76i nDJJ  :=+88*<=+88*<A7'B“? 8      Ï1a    <  #0 Éž•jCC      +ÿéÕ9 7#5##535#35#Õ‚‚‚‚‚9P P &  ÿñòÒ #'7'6733#736735#33535#3353#) 4W/¯' Y d::N:ˆ::N:¶ää… "% s‹ IMK DóÑ"&73#5'673'3735#33535#3353#«-¯  +\d R c;;M;ˆ;;M;·ææ¥E2  ( ' ( ÿñxÏ #)733#5'667#35#33535#335'62*V    !2!+58Ï j`   -I7   ÿñqÏ!%+733#5'667#35#33535#335'6.'S  /(24Ï j_  -I7  wÿêïÅ!73#3#"''3255##5##5##5367#wx49 #/Å wwwww¡rÿé¯Ï 7#5'6œ  Ï©‚ 2ZÿêõÄ7&'333#"&'&'75#x  (% . ÄGf   W`ÿêûÄ7&'333#"&'&'75#~  !(% . ÄGf   W”óÐ!73#3533#3##5#535#'67#53¶05 ##**& Ð ##'' ÿñkÏ #)733#5'667#35#33535#335'6+% N  + &.0Ïi^  ,I7  mÿèõÑ!)73&'73#&''67&'#67#3#'3'65u1 7  @ : %=!¹    Egg- % OõÐ%+73673673#3#&'#'67#5367#7&'R " ,pƒ:$ /@* 0DG+¬  4  ÿíóx #'733#5'6367#35#5#3535#3#k @*­ 4@:&:9†9N:99~ææx  F+ (ƒÿéòÏ#73#3#3##5#535#535#536'&'Î ,''..--&&+7 (  Ï##::##  ÿñ€Ï $*733#5'667#35#33535#335'66,\  " $7$.:<Ï kb -G7  \ÿèôÐ *73#53&''67&'67&&5'67&'ª9†9  S +    #+ + Ð 6 " '   rÿèõÐ +73#53&''67&'&''667&'76µ0s/ J    #   Ð 6 " &    wÿèõÅ#'+/73#3#&''67&'767#535#35#35#35#35#wz3+, )+   +,5+++Å`   `=<~ÿêòÆ &735#53#535#33##"''3255#53&'‰NTggTN@   KK1  ža06  3 mÿéòÄ/573##"''3255&'#575#7#"''3255&'#575#m……<   j     Ä  &!{²+R  !s²*#$^pÿðõÏ-73#'3#7#53&''67&67#3533#3#535#”?A    M,,,7‚9,Ï}uo]/    j  nÿèõÏ3:73533#3#535#&'''63&''67&''667#€***5{3*M2 1  $ !  '¹-       vÿñóÄ#73#3#3#535#535#735#33535#335k,))5}5++,,D,ÄsBMÿèôÏ7333"&&#"'663367#53&'w U=I,./FA# Q,¤X ÏA3    9.šÿêóÏ#'+1FL73533#3#&''275#535#35#33535#335&'#63533##"''3255#&'›#%%  ' #. ;8   8  à  I I *,) #    IÿéõÏ(733#3#5353333#33#"&''673›66?–77+/  Ï  ==) !@  ÿîõD %7&'7&''3327267##"&5''6ƒ  e  { 4  D !0   4 &[ÿéõÐ%)73&''67&''667##5##535#J! %+$   =YNNNÐ       \\ \>+NÿéóÐ7353#5#535#535#33#3##533U'..&&'n%%00*¨(ç1*++*1ç(JÿéóÐ7353#5#535#535#33#3##533Q(//''(q&&11+¨(ç1*++*1ç(HÿèôÒ)/S7&'67327#"'#'67&''7&'7&'67327#"''67&''7&'7¤ KK     &$ /( YR   !( 5.Ò         G       RÿçõÄ73#3#67&'7''67#d‚‚ M-6 >= %<Ä:G  (/ *:qÿéöÏ 73&'73#3267#"&55#'655x1 2x_ '§s  f-554QÿéòÏ "73#53&'3267#"&55#'6655 >‘> @   1ÏOr  e-% #4 Xóœ 73#53&'~ eæj œÿññÏ73&'73#3#5#o  ^«¡µ#¡ ŠÿéòÐ!'-73##"''3255#'>5#53&'&'''6} dF   (!  Ni c€Ð  ‰@, !*AQ%, +',# ! ÿçõÐ )73&'73#'67&'&''67&'76b bÛ?) #y! /2 @&0= >&®  #   OÿóóÐ 73&'73#3#536'&'W@  ?•r8¤VA¤ G4>?5692 ÿòóÐ 73&'73#3#536'&'_ \Ñ Læƒd  ¢F8@?1;<1™òÑ 73#&'#'673#&'#'67  ÿèéŸ 37;A7#5##535#3&533&'73#67327#"''67&'#3#735#'6骪ªS7      S ==.%'Ÿ··Œ  # - 'ÿèé– 26:@7#5##535#3&533'73#67327#"''67&'#3#735#'6骪ªS7     T ==.%'–®®•„    + %bÿéîÇ 26:@7#5##535#&'3'33#67325#"''67&'#3#735#'6îhhhTG5     5++ ÇÞ ÞÀ¯ !'  &(2 -  ÿéYÏ733#"'#5##533255#,    Ï&t 7¯{Œx ^XÿéîÇ 159?7#5##535#&'3533#67325#"''67&'#3#735#'6îpppZ L8    9--ÇÞ ÞÀ®  & !,2,  ÿéä£-39?73#5##5353335#&''67&''67&'&'7&'&'€bžMd³žžD  2  x & † ‘‘) „g       ÿéâÏ.4:@733#3#5##5335#&'7&''675&'76&''&'&'lbb`›L:››? E*   a D ϵ µšˆ       #  ÿéwÏ +17=733#3##5335#&'7&''67&'76&'7&'&'5//-T%CC    3 Ϥµ“ƒ      % yÿéõÐ!&,17&'#3#&''67#535#5'63&'3655#335³ *' " " $*', *Ð! A"$"A c pÿê÷Ð159=7&'3265#"''67'&'#'66553'33#6'3#3#735#ä      0 AE''%% Ð  E9 .& (.H;. ) S#K!C%DÿéòÊ /37'6553'#33673#3##5#'67#535#53&'5#rjjG !"  ?!Ž+F4 6@a<) >>& E9äÏ#73533#3##5#535#735#33535#335$QPPYYZZQ==S<˜FF\E 7 8 8 X @ÿìõÏ#)/?E73533#3##5#535#735#33535#335&'7&''33267#"&5''6W;::@@BB;'':&h//B-:  L Z   Á577X8    *  +  ÿçƒÈ 06<73#3#535#5#35#3353353#3##"''3255#'67&'s#!o!#AVaa v1 2 O È == -; 2 /   ÿéí– 06<73#3#535#5#35#3353353#3##"''3255#'67&'ÖG7¸8F}%7%%7%% ««Úa   e:# y" – .. )       ÿéœÇ "(.7'6553'#33#3##"''3255#&'''6-tNNBSS^&  %R ;  ‰'E4 5?_>+$A  >  •ÿéóÏ73533##"''3255#&'•9   9 ›44„  # #BÿéõÒDJP7&'#67327#"''67&'#3533#3##"''3255#'655353'67&'Û   $*      L#   _U =Ò 6#3.' % :9=5I  D>- /:Uk 4ñÐDJP7#673267#"''67&'#3533#3##"''3255#'6553'33&'7'67&'ï9     t(&&31  + „  C ¸ .  &+&     #4  Q     ÿêœÑEKQ7&'#67327#"''67&'#3533#3##"''3255#'655353&'''6…   $    @   O$  Ñ 1##-5&& 9:>8O  K7 6kl›ÿéöÇ #73#3#537#35#35#35#'67&'žR K))))))  ) Ljˆ=@?.     ÿé‹Î 0C73533#3#535#3533#7'75#73533#3#535##53#67'5#'6'((.n-' A<$y#  ' ¾5 C#  11  ÿéÉ &*0673#3#53&'#735#35#3##"''3255#735#'67&'c,/u1"====b&   *>> N  ÉE+ % E2) &*  wÿéóÇ #73#3#537#35#35#35#&'''6~s0-e#.>>>>>>7  Ljˆ<=>,   qÿéóÐ73&'73#3#"''3267#'665#y6 .L@   -©&c#N,7=L _ÿéóÉ 06<73#3#535#5#35#3353353#3##"''3255#'67&'gŒ+%€%+N##dqq;   = g  É<<+;( %  ÿóU¾ 7#5##535#35#35#U¾À Ë7%\%\%ÿéÇ!%+17=7#3#3#3#"''3267#55#5#35&'&'''67&'z$ )  W/  ("ÇN8‚&&/ ÿë–Æ#'73#3#3#5##535#535#735#35#3#735#d(<<2S1;;(?? SS 99Æ8u u®I /ŸÿèñÃ7#"''32654'7##5ñ  +ÃB FÈÛ ÿé˜Ð(,073#3#53&'#53&'367#3#3##5#535#735#35#R5 $Š#2-"l-<<<<,HHHHÐ  6 ,P/1 ÿévÑ(,073#3#53'#53&'367#3#3##5#535#735#35#@& j& W"++,,"2222Ñ  8 -O/1 qÿçõÑ&*.26<B73&''67''6673#3#535#3#735#35#35#'67&'œD "    GS#7}5llJJJJJJ  1Ñ     . T< ! !   ÿéñÐ)-173#3#53&'#53&'367#3#3##5#535#735#35#Y&=Þ<$Z 9O1¦HggggJ~~~~Ð  6 ,P/0K ðÐ)-173&'73#3#53&'#67#3#3##5#535#735#35#W<</¥-W1,8EEEE5[[[[¼    D  ) ( ÿéèÇ 7#5##535#說ªÇÞ Þñ2 ή ,73353353#3#3#"''3255##5##5##537#?&&‚ œKD   /?§ ) 5 "11337GÿéëÐ &,26:73&'73#3#"''3255##53&'#367#'67&'3#735#`a. 3   ’1 .U* L  F 7TT..º †  oŒž (   ?WÿéóÏ &,26:73#3#"''3255##53&'#53&'367#'67&'3#735#£E!(  j&!A/  / &BBÏ †  pžB(     !<gÿéòÏ &,26:73#3#"''3255##53&'#53&'367#'67&'3#735#­=$  ]!9'  , #==Ï †  qžB(    !<ÿéë¦ &,26:73&'73#3#"''3255##53&'#367#'67&'3#735#_a/ 2  ’0 .U,J  E 7TT..•  k  Tqƒ     6 ÿéðÒ5=AEIMQU7'66553&'73#33##3#"''3255##5##535#535'35#35#3353535#35#35#35#7 ]VREEH  52EBBBBPPBV111w22F55F22F55yC3 0#\   R """h  * (  E* ÿê‰ÐCI73#3#67&'#"''32654''67&5'67&''67#53&'#53&'367#F,  (      &  . *  *Ð             MŠÿèöÇ%*733#"&55#'6653&''67&'#367à    X    Ç<  0$  (d2   "ÿôŒÄ 7#3#53#735#3#735#73#735#‡ccv%HH%%++ %** ĬÐ!87E%E%ÿôÄ 7#3#53#735#3#735#73#735#€]]p"BB (( ((ĬÐ!87E%E% ÿçñÒ>73&'73#3#'66553&'#367#3533#3#3#535#535#'6Za( =¼ 2'M2 T *GG@@O»Y==3¹  :/& "C)   ÿèñ¡=73&'73#3#'66553&'#367#3533#3#3#535#535#'6V d(8½ 0'L7 S )FF??N»Y==4  -% 5     `ÿéôÒ=73#3#'6553&'#53&'367#3533#3#3#535#535#'6± 2!m  7/&&!!+t5   Ò :0$ '+C D-ÿùcË736753#5'5372˲ˆ¥ ¤˜ÿù^Ë73753#5'537/   ˲ˆ¥  ¤—ÿùË73753#5'5367@"+  ˲‡¥ ¤—=ÿéõÒ >73#3#'66553&'#53&'367#'673533#3#3#535#535 D *‰ ) C# B 22--9E++Ò :.& #C EQ  KÿéõÒ >73#3#'66553&'#53&'367#'673533#3#3#535#535¨? &~ & =; ..))4…>&&Ò :/% "C EQ  ]ÿçôÒ5=AEIMQU7#33##3#"''3255##5##535#535#'66553&'75#35#5353535#35#35#35#ó1) )+  )%%0 9 00%7?)))À  S  """h  B5 .$]  (   E* ÿïhÏ "(.7&''6'675#535#53#3#67'6'&'4  8")##:!! /Ï – C>2ÿðîÏ+/73533673#5##53&'3#3#3#535#535#735#B   5±1 Ž=TTeÜcUU=ffÌ(( 3!!3 B@^ÿðóÏ+/7#5##53&'7353367#53#3#3#535#53'35#ði    6#Y#22B•@3311§3""3 (( g@@'oÿðóÏ+/7#5##53&'7353367#53#3#3#535#53'35#ñ[    2M,,9„8,, &&§3""3 (( g@@' ÿëmÎ &,7&''6'75#535#53#3#7'6'&'7 ;&.'%%=##3 Î   FC;9ÿë¾Î73'67#'6367'dO > " Î #&t  _ÿêõÂ73265#"&55#'655Ô )$µ §G.9%QQ ÿëmÐ73'67#'6367'.2  #    Ð #*t  uÿìõÐ#733#353#3267#"&55#5335#53§33.  .22ÐYCU-  3UCYeÿç÷Ð "73#'63#3327#"&547#‡T[ UUh TÐ  %'!0 kÿññÉ73#3#535#535'2â 995~4889ÉIOOGdÿçóÐ %7'67333#"''32765#'67#536 [X@  +< 0"#š $- _ 9M!@CÿéõÑ73'67#'6&''66|_  N % $!2;+#Ñ (%. 54!<ÿðSà 7&''6$+ ÃU 30-eÿéõÑ73'67#'6&''66Q  B !#& - Ñ '" F52";sÿéöÏ73'67#'6&''66œH ; # (Ï  !" H!22!; ÿézÍ73##5#'66556n )I!  1Í .ƒƒ<3 8E: ÿîtÌ73#"''3265#733'66D  G:&$ '—/W#;w"X  nÿéõÑ7'673'67&''66› I 0 $ )—(8 ! I53!;zÂ7#3#567&''67&'yTQd'    œÁ$  ÿê€Î73#"''3267#'6##535#.I  =;)Ε-€ %(WfF6 ÿéŠÐ(76767'67'67#53&'73#&''6*> ( !31C 4  ) JnJ    ! ÿéˆÏ$*073533#3#535#3#3##"''3255#&'''6233+i*2 bb x0   4d  @  ½6;  7  dÿèõÏ+17767327#"''67&''7&''7&537&'á:CB  " & 34&(  £  " $    4   `ÿèõÎ">7673265#"''67&''7'73#3265#"&55#'667#ß<    #"?Ž+    (      f6 <"&   ÿë^Ð7'673'67367'0   )   œ#(;  v  iÿèíÒ7#"''3255##53673#735#í  `" ;;¬¨  ±Ä )mMmÿèîÑ#73#3#"''3255##5##535#'6T22  1 Ñ (^  Fex( `ÿíôÐ'+73#"''32765#'6#3267#"&5535#€X K F+"-*Ð n( S J1 8%iÿéóÇ73#67#5'75#35#35#675#j‰*1)88888ÇvB< Ž R WsÿéôÐ7353#5#535#535#33#3##533x""Y##§)ç2,--,2ç) ÿéqÉ#'+73#&'#5'67#535'2#5##535#35#e &$  "*!)111111É %&oh h%9 -õÑ(@7373#3#3#'#5'67#5367#5367#35#535#53&'#673[\dalŠ2 )¤ (<3@Q%88;1S  !8Ä  78  k     MëÐ73#3#3#535#535#53&'736­ 5ZRRaÖ`RR[7  . Ï  @ëÐ"(.4733##"''3255#'67#536553635#7&'&'mV   w -!sq.   Ð 8   $ B&  / VNóÐ73'67#&''667#'6x` $/ ,2 $ Ð  '"   ?åÏ '3=73#567373367&'#"''325735#53#535#'3'67#0#5/    8#65"j,  }%y  "R4  *  5'…&-& ÿêöÏ/37;?CKOSW733#3#67#732767#"&55'75#'65533#735#33535#3353#53535#35#35#jbbreXZ+$ 15+-2K ŽŽ--=-j--=-Ì 1 1 Ï        I95 +7XF>& ! #&&& 6ÿéøÑ.26:>BJNRV733#3'7#73267#"&55'75#'665533#735#33535#3353#53535#35#35#…GGZ G35  %$ 5rr 0 P 0  %$Ñ   J?. ,UH<# ! !$$$ ÿêYÏ7367&''65''6,  ! Ï7 !  2 *@=) ’òÑ7'673#&'73#&'#'68   ?!KN( °     UÿéóÑ.26:>BJNRV733#3'67#73267#"&55'75#'65533#735#33535#3353#53535#35#35#”88I7') +aa(?( ƒ Ñ    J>/ 07UH<$ ! !$$$ _ÿéóÑ048<@DLPTX733#3'67#7326567#"&55'75#'65533#735#33535#3353#53535#35#35#™44D2$&  ([[%:% {    Ñ     J?. /8UH<$ ! !$$$ IìÉ %+1773#735#35#35#'3#735#35#35#&'7&'''6''6‰YY888888|ZZ8888882    ) e ÉY? # # ?Y? # #      HòÐ "(73#'6'#3#3#535#35#5#7&'¬'"ÿéíd 73#"''325''67&'y    9•da  B' "# $XÿéìÂ'667#533#"''32767#7#jg $  ' 'DZJ[ EJ_J ÿéõÏ"7365333267#"&55#'6767#<R   ?( #;‘ " „B%#7kÿéøÎ735333265#"&55#'67#€/ -(11—  ‰t-)jBÿéøÏ 7333267#"&55#'665#53z<  '  ,-Ï2—  ‰=IC;ÿòîÇ7#3#5ä¶ÀÔǯÕ6Ù®!73#"''32765#'67#'67#'6c l   P K. ( ®[?R!D3( 7 â½'-733#3#535#5335#35##5##5'66&'ƒ77L«L77%%%8%%6Z9$)'!½'  ' @0!!0  † ô®735333267#"&55#'67#•#  ! Œ""f  ZQ H5 ­#'+73533#3#3##5#535#535#35#33535#3356"$$""##" .    E  E ( & IТ 73##5#735#33535#335I‡9:'';'b'';'¢g++<C?æ73#3#3#535#535#&'F™C;;J§H::Ar !''!7  @ä73#3#3#535#535#G—B99H¤G99@%%%% DõÏ7333267#"&55#'667#536YQ  ?&% # 69Ï M  @!- $ ÿéâi767&'7''6j 7< !JS.iE  ") "ÿéõ“ 7333267#"&55#'667#536\O  =&$ "!79“f " Y)7-#ÿìí“7732765#"&55'75'6Å &+np * 3$X[:U“'  0% 5  'ÿéí„73#3##"''32655#535#2›Ccc  ddD„$6 1$BÿéõÐ737333267#"&55#'67#T"' , ¢.‘  €EG 1hšêÐ73533#"''3265#'67#¢$«%%lZ]& "T WõÏ7333267#"&55#'667#536ZQ  ?%' #!7:Ï ? 1&   +ÿéÕT 7#5##535#35#Õ‚‚‚‚‚Tk k'; ÿèõb7365333267#"&55#'667#=Q ?%' #!:P H  : (  ÿêî^!73533##"''32655#'67&'gbb   g7 ~!N6 1 !ƒðÏ73533533##5##5#<A<<A<° ÿèõ{7365333267#"&55#'667#=Q  ?%' #!;b Y$ L'0(@ÿéóÏ/73533#3#3267#"&55#'667#535#'6i;;G0  -H& È***O # R)1)#* # ÿéVÐ 73&'73#3#3##5##535# I<<<<>² V V6$† íÎ"73533#&'#5'67#7'6'&'Ž#%%  J  <  MM=C&L  TÿëòÄ7&'333#"&'&'75#p " )'1 ÄGf   W}ÿéë‰73733#"''32765#'67#ƒ5  "#e$$[  2G#=upðÍ 7'673›  M™ /cÿäöÇ!&73#735#3#7#5'75#35#35#675#zdd>>'ˆ /5&>>>>!>Ç:7W#!_7: ÿékÏ$73673#3533#7#5'675#'67# (.  .. ¯ ! 73" NîÏ!733#3##5#535#'67#53673#3}GG]]llK /= x„ 2Ÿ   nÿéóÏ73533#3#5##535#35#n899.E+8!EE222pp2~9Hÿÿ›Í733#3#5##535#535#h " "Í-.W a.{))ÿéîÏ73533#3#5##535#35#dddJ~Gd1~~222pp2~9 ÿó]Ï7#535#53533#3#=#% o----j33ÿéîz73533#3#5##535#35#dddJ~Gd1~~eS SL#"„ÝÈ 73#735#335335"»»%%7%%ÈD""""""~ÝÈ 73#735#335335"»»$$7%$ÈJ'''''"—ÜÊ 73#735#335335"ºº&&8%&Ê37É©73533#&''67#9<AC%" "$ 2 9„%%"*?íÏ !'=C73#5'677'6#&''6'&''&'3533##"''32655#&'E™ 2NPŽ  À  '   ^  ^  ÏŒ-  J          ÿéòI73673#&''67#ejZA JU F[6   *,   ÿéò $:@73'67#&''6'3#5'67'&'3533##"''32655#&'†Q-V J(B ;  Lc""   c)   1  "  ±9  OA) $   iïÒ!'<B7'2'3#5'67'&''6'&''&'3533##"''3255#&'Þ3I=[  ¹$`  `+  Ò e  ,          ÿéóY"(,7#53#3#5##5;5#35#"&55#'67#5#335#^QæUBš><š. ('š.qššJ XX 5  *  ÿéóc"(,7#53#3#5##5;5#35#"&55#'67#5#335#^QæUBš><š. )(š.qššT _ _ <   . €\îÌ(733#"&55#'66767#53&''67&'× $  AW    Ì    C   ^óÕ ,AG73'67''667#7&''3353#5#'67#535#3533##"''3255#&'A[  / -  u  =3Ob  b" Õ"    #o&      ÿé‚È (-173#3#5##535#5#35#"&55#'73335655#35# u&B$? B  6B BBȵ µp 1"J-5=„ŠÿéðÏ"&736732667#"&5#5##535#35#Š" #)  . _66666Ï    $zz-H€ÿêîÏ#733#5##5'67#&''635#­4(?0?&    00Ï :c UC  š2ÿéõÐ0673533#3&533#673267#"''67&'#535#7&'677H64       œ?6Á  ¿*$&  #+; ÿè•}%)-73#3#5##535#5#35#"&55#'733567#35#‡,#T%,I $T  C TTT}uvA  L  ÿéór"(,7#53#3#5##5;5#35#"&55#'67#5#335#]PæTA™><™- )&™-r™™aj jC   4 |hôÐ7&''67'6767767&'Ú )1 '  "„ÿèçc7#"''3255##55#35#ç   <O<<…ƒÿéõÌ ,27'2'6'&'&'3533##"''3255#&'æ *=2'      F   F  Ì  =H  E OÿéóÏ/?733#3'67#'665533267#"&55'753#3#3#5#535’AAH d .<*" ?LZZObÏ    F:, *P#  6$# ÿöZÏ7&'37'5#2  4 !Ï ?n  p ÿöeÏ7&'37'5#3  6 #Ï ?t  poÿéñÑ 473&'73##5##53&'7367533##'6655##5##5t/4x}])-  ¹  #((   2; 'XX?PÿéìÑ673#3#5##53&'#53&'#36#"''3255##5##5353~b' <°; &\BW 4 4  87KÑ (( #D<  $UUCVNÿéðÑ 473&'73##5##53&'7367533##'3255##5##5R> D™ž{(  &  /; ''º  #((   2; 'XX?Pÿê€Ð 673#53&'3673#5#3#"''3255##5##535##53&'H-m,  )  ("Ð  ))8  "YY?P) ÿéì¦673#3#5##53&'#53&'367##"''3255##5##5353ƒV8°8 Y=Xz  66I¦  %% 7 8.  DD5Fÿé‹É$,047#3#327#"&'#67'535&5##5##535#35#…'+' '  H%!\GGGGGÉ0  n0=c d$7ŒÿéóÐ733#3&''67&'#5367²))'   "Ð$ 7(  . mÿèôÏ733#3&''67&'#5367Ÿ==8"% " & Ï"9( 1'"˜ÿèõÐ733#3&''67&'#53767º$$$       Ð% 9(  3' MšÏ%9I73#35#535#535#533#5##5356737&''67&'76''7&'76)V" j  #    œ  U&&N  /    #     ÿé™S737#"''3255'757#*V5 B=S    TÿéóÉ#+/373#3#327#"&'#67'735#&'##5##535#35#TŽ5;1 # <% ff51zfffffÉ0  M.=d e%6pÿéóÉ#+/373#3#327#"&'#67'735#'##5##535#35#pw,/( , PP'#dMMMMMÉ0 N.=d e%6lÿéòÉ$,0473#3#327#"&'#67'735#&'##5##535#35#l{/2+ . SS(%gOOOOOÉ0 N.=d e%6 ÿþgÏ767'67'6767'6U "* $,/§5$  0*`   ÿþVÏ767'67'67676'6D"   !#§8" 0.n  Mÿê¡Ï73533#&'#5'67#Z    ¡..ho (8&ÿéê %7#3#327#"&'#67'535&'#ÛENE ) T,#'6 AG8 #  9  ÿðóm73#3#3#535335#Ï]LLhæ**\m"";;W&ÿçÜ‹!73#735##"''32655##535#35#.¦¦›  ŽŽŽŽŽ‹/+Q  i ( ¥ÿéíÄ 7#5##535#35#35#í"""""""ÄÛÛ=+f*e*OÿîóÈ&+37;?733#'3267#''67&'767#'67#37#3#53535#35#35#_u      %%38`¤%&È&/" (     ( *> j@@@..... ÿñ•Ç',6:>B733'3267#&''67&'767#'67#337537'27#775#'#7l      %.Tr;I'<Ç"(       " $4 ¯C. 3/ !$$*‘ÿéõÐ!'767325#"''67&''7&537&'ò4       ™ " / "7&@: ÿïîÉ!%)73#3#3#3#535#535#'6735#735#35#)¯KXXPPaÜfNNB  8O‡‡‡‡É\ 68LÿïóÉ!%)735#53#3#3#3#535#535#'6735#35#h(7€4::44A›E440 YYYYg \\ Y8[ÿïóÉ!%)735#53#3#3#3#535#535#'6735#35#t!0r-44//:>..( MMMMi[[ X9yÿïóÉ#'+73#3#3#3#535#535#'6735#735#35#Œ_$''##,o/##'8888É[  59 ÿð“É#'+7'75#535#'6735#53#3#3#6'35#35#9E:''! +e&++''G????   XX–6 ÿé¢Í #06<B73#5'675#73#5'675#&'7&''67&''6'67'6= ,C= +.T  (" ) # ' '+ 1 35 'K LÍS  S      P     +‚ÿêóÐ"(73267#"''67&''7'3767&'Ü   /1   j%' *0D$  "vÿéôÐ,273533#3'33#67327#"''67&'#535#7&'444@@?      ’=4º  ¿445(: 'D  ÿ혇#'+73&'73#3#3#3##5'65#5#35#1(-((((,b 5$$$$$…  ]"!KÿèóÎ/3733533533##5#3#3#&'#5'67#535#5#535#gAl;A5$ $'%1?2ZÅ++: !99L+GÿèõÎ/3733533533##5#3#3#&'#5'67#535#5#535#eCo=C7% &)(2A3^Å++: !:: L+ ÿèeÏ%+73#"''255#'67#535365#7&'4'9  $$  Ï ° N>- /2L[::3H ÿèëÉ 7'66553'#36 É¡¡–2F6 1%`3"6ÿév“7'6#5'6`   “  [H iÿéó‘/373533533533##5#3#3#&'#5'67#535#5#5#p >]39- +5* [€' ,(  7 ÿèëÊ 7'6553'#3.Щ©8G6 6@a- 1ÿêo—7'6#5'6Y   —"XD gÿçñ˜.26:>BFK735333##3#3#''27'67#537#535#5#5;5#33535#33535#33567#u00 04CM '+,%(#40 /M/R##4"$ , !     !  6 < _ÿñóÐ "27#5##53&'73#67&'7''67#3533#3#535#í`9 Hy;  +1'533@”@5µ##  )   ILÿéêÉ!%)B733#5##5##53&'767#5#'#35#'3533#"''3267#'67#53`…))(<   hw)((=)<(E 3 < 25:Ébb  ;2+ -`ÿéíÉ!%)A733#5##5##53&'767#5#'#35#'3533#"''3267#'67#53rw$""5  [h"""6"6">* 6 , -2É bb  ;3+ -HÿéóÏ4873533533#3#3#"''3255#353#5335##535#535#35#P"0"")LE  1W0DL*"600»j  T<->>-!99M m  (+3>R!&:!#D, I$ dk a .(,+¼2!5./321)   1H   ÿïeÏ 73#'6#53#3#67'5#53-.6 <   Ï 5%7 E ÿï_Ï 73#'6#53#3#67'5#53**2 8  Ï 1&7 F ÿïgÏ 73#'6#53#3#67'5#53/.7 =   ""Ï  4&7  FUÿéóÏ4:@73533533##5##5#&''63533##"''3255#'67&']..C& #!% 4!211  2_» ! /:  5 $  ÿéòÏ5;A73533533##5##5#&''63533##"''32655#'67&'3L33L3n12 5108 P6ONN   O!‡» ##09 4 #IÿéóÏ$(,173533533##5##5#3#7#5'75#35#35#675#N$3$$3$Ÿ8@)MMMM*#MºdpBDÿéñÐ$(,173533533##5##5#3#7#5'75#35#35#675#:F::F:Ö!$KW% 5llll;1lºa nBC^ÿéöÐ$(,173533533##5##5#3#7#5'75#35#35#675#` -- 29$CCCC%CºcoBCyÿéóÏ#'+73533533##5##5#3#3##5#535#735#35#z d'3333)>>>>½[,,69 ÿéóÐ#'+73533533##5##5#3#3##5#535#735#35#8H88H8¬LiihhK„„„„¾[,,67 ÿéðÐ8<7#'6553&'733533##3#"''3255##5##535#5#53#3ïºc8<'''E  11E(''P<<»MA2 1W#%' ! Ï  /$”âÏ 73353#533uDÄCÏ(00ÿéòŽ$*<73533#3#535#73533##"''3255#&'3533#67'75#)))0u1)t= = y.**6C5.|W  S   FòÐ%+>73533#3#535#73533##"''32655#&'3533#67'675#)))0u1)t= = y.**5@.ÂC >    ÿéãm"&*73#3#"''3255##5##535#53635#35#tQIX   DDXJC3‚‚‚‚m:   &&!/ :   ÿéóÑ#'+17&'3673#3##5#535#735#33535#335'&'x  ?{  MhhiiO;;P9‰;;P9‰  Ñ ,]..7;g`ÿéóÑ#'+17&'73#3##5#535#53635#33535#335'&'¢  C 6AA??6PO##6#Y##6#^  Ñ^//^?<g yÿéóÐ#'+17&'73#3##5#535#53635#33535#335'&'±  7 -4433,B>,F,L  Ð]//]A<gyÿéóÏ .47#5##53&'7&'''636733#&''67#7&'ëG+   *2) " ! &%&S·(*   8-5,'0  ?ÿéòÏ 47#5##53&'7&'''6&'36533#&''67#ërB2 O  `AJB4 3C B >·),    ,/,*ÿéˆÍJR73#35#535#53#563325#"'&'7&'67'5&'67'53753745&'8 A,c8          2 Í [Wa-(#B   + * - u    !WÿéóÐ(-28>7367#'6733#3267#"&55#'67#7367#335&'&'d@+ 1+*   1 &*#6(J$$##9265™  8  %   R    \ÿéóÐ(-28>7367#'6733#3267#"&55#'67#7367#335&'&'i=) /*)    0 %(!4&F##"!6144™   8  %  R   /ÿéê "&*73533#&'#5'67#7#5##535#35#35#<    ®2222222~""[Z#+-°°0LM?ÿéëÏ"&*73533#&'#5'67#7#5##535#35#35#D    §.......›44nl (6;ÛÛ=+h,h+ ÿéæ‘"&*73533#&'#5'67#7#5##535#35#35#'   #ÒHHHHHHHr RT",* ¡,DE[ÿéìÎ!%)733#'#5'67#537#5##535#35#35#x  t"""""""Î3lt$(6)ÛÛ=+h,h+ƒ4õÊ#(733#"&55#'6673&''67&'#367Ú   Y   Ê!  % C    1õÏ!);@P73533#3#535#733#"&55#'667#5##53&''67&'#3677'5#'667333&a(3Ë  PzY   `    Ä   !  % =!"    &   #  ÿé†Ï+73533#3#535##5##53#7'5#'665,,,$[#,lH>>?   À05  6!  ' ÿéò]!73533673#&'#5'67#53&'I  /Q$3 9%!; ;N6 [    #;;$  RóÏ4733#3'67#&''67373&''67&'767#F,,(UK=     F\  ! DÏ 1 %         ÿézÏ373673267#"&53#&'#5'67#535'6! )&S ((  $/0Ï    :@ nÿéóÇ7#5##537#53#3'>&'ç<"/u3   ¡‚pqƒ'A$!  ! ÿéÊ $*73#3##5'67#535#735#33535#335&'a',, (0(&:&  ÊeX> ;CZ wÿéóÇ 7#5##537#53#3'>&'è7 +m.   ¡‚pqƒ '@&  " vòÊ7#5##537#53#3'>&'ç7!+m.? ¦tbcu!)@ …ÿéóÇ!7#5##5367#53#3'>&'é4)h+  ¡‚pqƒ  '@'  !ÿé„Ï8<BIN73533533##5##5#3#3#"''3255&''7&''#535#3355#765#655#n    . " »l    /ƒ; -  6 iÿéòÏ>BHM73533533##5##5#3#3#"''3255&''67#''#535#3355#655#i!!!!!!%#      $%5 I»l    *  0ƒ; 0 1"ZÿéôÏ?CIN73533533##5##5#3#3#"''3255&''67#&''#535#3355#655#Z&&''&&‘+(        )+; Q»l    *  0ƒ; 2 2#IÿéóÏCGL73533533##5##5#3#3#"''3255&''67#&''655##535#3355#I++,,++¢0,      -0A »k    *   %rƒ: 2F5ìÏGK73533533##5##5#3#3#"''3255#&''67#&''67##535#335K)())()¦2,     -7G¾ 6  "    9H 3IÏ 7&'&''6$  +Ï  $    @ÿí”Î:736733267##"&53#3#&''67#53655#'6K    - " Î       †ÿéóÅ1733'67#3#33#"&''6735#53&'767#–Q     $/  :Å +4 !C! f  ÿéuÐ873673267#"&53#3#&''67#53655#'6 %  :$(  (-Ð         sÿéóÏ'+/735333##3#3##5#535#535#535#535#33535{)--118811++((//)<»''''& ÿèöÒ6:>CZ`7#367#533#7#5'675#'6553&'73&'736735#35#675#73#&''67&''667#ôÆ72G "'   .   €(((((\9     ±-JV >. /9T   a33 {9  ( ) ÿèôš4;VZ^b73&'73673#'6553&'3#&''67&''667#'367#533#7#5'635#35#35#75#9 ,  "À„9      ;>R $% ,,,,,,™    6-" "*= #      4 ; ! #âÏ 73353#533vDÄEÏ **¤âÏ 73353353#DDÄÇ# ÿéõ $(,27Sls„73#33267#"'"&55'67##5365#'#33655#35#'3#&'#5'67#535'23673&''67'67#367767'74''6¨+,    %!)&K *&  #*)/ /   + m    T+  !, ^+" D     _       ÿébÌ #7&'''6&''6#5##535#J      /Ì   -__@03ÿýÈ­)37;?C73673#'#326547#"&55##5'67#3533&'#35#33535#335@->' )   "$   )A)—   A   M "*,:ÿùʰ'+/57&'3&533#67327#"''67&'#3#735#'6³gJ*)     J::-#'°   )$+30ÿèæÒ7&'3#"''3255#3#@ <{   gQÒ Âª¹7ÿîȪ#'+73673#3##5#535#53&'35#33535#335e  3????4!!!4!U!!4!ª   W''W 96^ÿèôÏ &,77'5673#3267#"'&''3&'&'r Q$53   32  ih É  4!)"FE2•Lÿêðž$*767'5673#3267#"&''3&'&'`  U':7  ":7  C?  ’ $1,-7%bEÿèõÏ73533#&'3##5#535'67#QAE8) *$$##()4£,,K#)Q]00]L.-E?ÿéôÐ#'+#5'673&'73#3#3#3'353535s # -  870000955555 -3!"!™!!2""4!! ÿé¢Ï48<733#3#&'#5'67#535#535335#535'273#335#335y- 18876 ;;A*‡B># / ÿé§Ï%*.26<B733#3#5##533##5##5'67'3&35#35#35#''67&'H66=a7RR`D3$$K @1DDDDDD  Y Ï "";] \ )  ' ' & n    Gÿé”Ï#'+73533#3#3##5#535#535#35#33535#335G  (  ½b..b;B8 Ç®'+/73533#3#3#535#535###53#"''32=#35?67700>=//6fJn  JJ¦  pXD ' .ÿêó«-159=AIMQU733#3'7#732567#"&55'75#'65533#735#33535#3353#53535#35#35#wWWeQFG$ '$ '7uu!!1!R!!1!¨ ()«      ?4( )/F:6!  dÿðóÏ73&'73#3#5#dD  5hau¡ŒžN%íÐ"&*7'673&'73#3#3#3##75#5#35#m $./))))1m>+++++ (5   e%%UÿéôÐ#'+#5'673&'73#3#3#3'353535  +  .3----5s+++++‘ (-!"!™!!2""4!!NÿèõÐ  $,07&''63#'66553&'#335#5##535#¢"# "#&2 ,d 59QQQQ@@@Ð K." #A #  .D D*XvóÐ<73533#3#&''67#5365#'67#5365#53533#3#&^  n    Ä     #      ÿéaÍ73&'73#''67&'767#  "   6£,$#"(  XÿéíÊ  $CGMQW7##535#35#7#"''3255#535#5#3533#3#&'#5'67#535#35#&'735'6›1ƒ   1 K+++%%   %+  #  ÊEœá ' )Ì „E '  6  #' 6 4   AÿéõÏ73533#3#&'#5'67#535#^6<BJNRV733#3'7#73267#"&55'75#'665533#735#33535#3353#53535#35#35#pNNh[GH %  01')2 K(ŽŽ--=-j--=-Å00Ÿ         9/$ !@;0 ÿçës*067676767&'7'#"''3255#'67'67&'''6N!39M)  !  ++,  G! !R -'X #  $     G   ÿèï[+177676767&'7&'#"''3255#'67#'6&'''6Y . 9CS( ""   .-. ^#!!H & #Z      :   \ïÐ&*/3873533#3#3#535#535#3733##7#7#73'3373'#337YYYOOeßfKKY ™"%†360~3+=0È    <   ÿèðÑ/37;?CTX\733#3'67#673267#"&55'75#'65533#735#33535#335#"''3255##535#35#ibbs _'G & 0",/5G)££77H6~77H6 uuuuuÑ       L?1 0:W@5 >  O ÿéõÐ-F7373#3#3#&'#5##5'67#5367#5367#673#35#535#53&'Wahgo7  v 3@7?PC  //v//6:¿ ^ Y A     hÿèõÎ/3733533533##5#3#3#&'#5'67#535#5#535#}:Z16.  )3)IÅ++: 65L+bÿèõÎ/3733533533##5#3#3#&'#5'67#535#5#535#x;^490" # !+6+LÅ++:76L+fÿí›Ï73#3#5##53635#5#{$$Ï I^È E'Ž++ ÿé}È (-173#3#5##535#5#35#"&55#'73335655#35# p$@#= @  5@ @@È´´l / ,M*2C lÿê÷Ï7'2333#"''67#53&'à 1F: (/ 9EX1Ï;  /@}ÿðóÏ73&'73#3#5#}9  )NEY¡Šžÿé|Ï#+/373673#53&'35#4'735'6#5##535#35#*   l  &  ;;;;;Ï RR Z4 44;ff#7 ÿìô^%*/7&'#3#3#53&'#535#5'6''35#367#‰ -9 /Y 4Þ5Y0 GT $3%^      ; vÿéöÏ/3733533533##5#3#3#&'#5'67#535#5#535#‡4R,1*  %.'DÆ ++9 43K+ÿçðF#73533533#3#535#35#'67&',G,,8Ü7,?GG$*+e(' '(< "  „òÎ 73#'6«JVÿéôÏ!+37;7333#"''67&''667##53&#5##535#35#|% 28   P SSSSSÏ $    ,\G` `$2 ÿécÏ"73533#&'#5'67#7&'7'6     G  ~QQ TZ",Q]ÿéóÏ!+37;7333#"''67&''667##53&#5##535#35#€# 03    K MMMMMÏ $     +\H_ _#2aÿéñÏ *.B7&'6'&'67&'63#5##53635#67&''67&'«   $   h   8J\%\\    Ï   9} } lQ      cÂ73#3#67'75#535# Q%-Â:;  B:YÿéïÏ +/C7&'6'&'67&'63#5##53635#67&''67&'§  &   n  ;Nc(cc    Ï   :} } lQ     jÿéñÏ +/C7&'6'&'67&'63#5##53635#67&''67&'®   "  b   4FW$WW    Ï   : } } kQ    ÿñl¿73#3#5##5'67#35#\) 2   (¿#r g %:’DÿèNÉ7#"''3255#'65535#35#N     ÉÊ ?1( +5v;)d) ÿèÓÉ7#"''3255#'665535#35#Ó | xxyxÉÄ-,$ 4"`?,k, ›ÿèíÉ7#"''3255#'65535#35#í ÉÉ ?1( *6v;(c)GÿèšÉ7#"''3255#'65535#35#š ÉÉ ?2' +5v;(c)EÿèîÉ/377#"''3255#'65535#35#7#"''3255#'65535#35#˜   ˆ  ÉÉ ?/* ,4v;(c)MÉ ?/* +5v;(c)RÿéíÉ/377#"''3255#'65535#35#'#"''3255#'65535#35#í   !   ÉÉ ?6"!>y;(c)MÉ ?6""=y;(c)ÿêUÆ75#53#3#"''3267#7A0D-/   1&K(M5L ÿçêÉ15:7#"''3255#'65535#35#'#"''3255#'665535#35#ê  10000,  / ....ÉÁ22' 6A`;'b(gÁ21( 1&`;'b(ÿøY¿73#3##5'67#35# L *$  #¿#hY $;‘CZÿæóÆ)73#3#3#535#535#3533533##5#'67#h„822>Ž<228- -* !ÆtDD+_ÿæðÆ)73#3#3#535#535#3533533##5#'67#l~5//:†8//5**( ÆtDD,ÿéð‘%)73#3#3#3##5#'67#535#535#535#5#!ÀVLL]088E: , :<4]LLUƒC‘//& UdÿéóÅ.73#7#5'75#35#35#75#733267#"&5e‡?  =  ň0,’##W#\$Zž! kÿéóÅ-73#7#5'75#35#35#75#733267#"&5l€;  9  ň0,’##W$]$ZŸ ! nÿéôÅ073#27#5'635#35#35#75#733267#"&5n€8"4  Ň0,“##W$]$ZŸ ! UÿèóÆ 67'66553'#3773267#"&55'75'75'6€ {TT/179  " /ˆ'D5 2#_>,   =ÿèóÆ 67'66553'#3773267#"&55'75'75'6l ‹dd79@B  $ &) #7‡&E4 1#_?,    nÿèóÆ 57'6553'#3773267#"&55'75'75'6‘kFF&(-/  'ˆ'D5 7=_>,   MÿéóÇ 73#735##53#3#&''67#536dzzRR6ƒ8IA, /5 .5;ÇF"Y $*-$ fÿéôÇ 73#735#365#53#3#&''67#yff?? 4/t2=6% & 0/1ÇE#v  #&  aÿéóÇ 73#735#367#53#3#&''67#skkEE!73z5A9& ' 204ÇE#v  $' !IÿíõÆ 73#735#35#3533#3#535#^……]]]]<==J¬L<Æk?EN&&Rÿîõ‹ 73#735#35#3533#3#535#a„„]]]];<>   AA gÐ%'&"A  =8 % 'ÿèÔE 7#5##535#33535#35#Ô…99L9…99L99E]]$5 @÷Ñ%+17&'#5'6&'3##"''3255#&'''6‚26 "Z$ OI6±P M~("!'J+.Ñ          fíÐ3733#3'67#&''673767#53&''67&'H)) D ;4     J@U    Ð  + !      YÿñóÄ#73#3#3#535#535#735#33535#335f666DšB555""6"X""6"ÄsBM ÿîô873533#3#535# VVViçiV%4ˆÈ"&73#3#67'675#535#735#33535#335f*,,3>++**B*ÈM   ./‡3ðÉ%733'67##"''3255#53&'767#Œ^(  '+  BÉ   3  0  cÿñóÄ#73#3#3#535#535#735#33535#335nx111>=1123Q3ÄsBMZÿñóÄ#73#3#3#535#535#735#33535#335h~555B™C555""6"X""6"ÄsBM ÿíôÊ"&*73#'65563267#"&553'#3#5#Û Keµµj0 .9 C<–--@.Ê C959W—! jF4"""KÿìóË!%)73#'6556#3267#"&5535335Þ 1BxxG;Q " ,Ë '@5 26^PE&  n####5ÿþï#'+/3733#3267#"&55#5367#'6#;5##;5#c6#.  -3.  "¯  T  T  0! ÿé÷Ñ$*.26:7##5'66733#5#3267#"&5567##;5##;5#u9 M H; '  3& > C99;;99;;$o   x  Ž  ,ÿèîÐ %73#53&'3#735#3#"''325567#‚aÞfB¥¥||$¾!(   šÐ  3:8 $ cÿéóÏ %73#53&'3#735#3#"''325567#ª?;$ooGG}  _Ï  2;7 & îÑ $73#53&'3#735#3#"''32557#ƒbÝdC¦¦||%Ã"*2•Ñ *0-   jÿéóÏ %73#53&'3#735#3#"''325567#¯;‰8"jjDDy  [Ï  3:8 &  ÿébÉ7#"''3255#'65535#35#b   ! Éà 91+ 6?`:(a( ÿçóF736533533##5#'67# C<??>8-@3 772 ©ÿéóÏ73#&''67&''667#¾'      Ï=,  .!,HÿéóÏ<BIOU1073#&''67&''667##"''3255&'#5'#535375#7675#7'6'&'¾'      !   % & E ?  Ï=,  .!,‹ $nf"0 DD'=F L    ÿèFÏ7'6#5'61   Ï)c #<ôÏ $*CIO7&'7'673#&''67&''667#'33#"''3255##5##53'67&''  a 7>     $f0 0  4 Ï     !      0/N :SSTdÿçñT.73#673265#"&55#3'67##&''67#âP% , '8 7SH1   -T    E/ "   oôÑ #)BHN7&'7'673#&''67&''667#'33#"''3255##5##53'67&'&  a 7<     $e0 0  4 Ñ       "0 444B   ÿéøi"&*.26:7#3#;267##"&55#535#55#7355#355#355#ÚEOO  < LLFi 2g3h=r>.=k>>.=T0  1JQ. §æË 73#735#73#735#[[55\\\88Ë$ $ ÿæñQ7&'3673#&''67#´ —_h]A I!3) AVQ   %  ÿèô— #*EKQ7&'7'673#&''67&''667#'#"''3255##5'#5353675#&')  \  5<    $"  00 @— ,!   & "g  RfL &‚++X °òÑ73533533##5##5# =C==C=Ç \ñ² #)BHN7&'7'6&''673#&''67#6'33#"''3255##5##53&'''6* Q A   ;  0& ‡/ /  %  ²   4      #) **+:    ÿéöZ"&*.26:325267##"&55#535#53#3#'#'5#335#5#335#35#5#;!MMF¿JPP4c88/=l>>>>/=   4 1OQN 2  NÿéôÏ;AHNT1073#&''67&''667##"''3255&'#5'#535375#7675#7'6'&'¿%         % % ? ;  ÏB#! - "(‰  "ha"1¡DD)IQ  I    ÿèNÐ 73&'7367&'#5'67#    &® "   ce 7ÿèòK 73673#&''67'67#37667K‚2 # /%G 1!5 ?U 5  =       † òÎ 73533##5#†-++-ŠDDmm`zÏ73#&'#5'67#535'6r&&  (.1Ï  !%u^ðÑ7367&''66''6®  (!  Ñ   ( ÿêõ[%73#33267#"&55#67'7#&'ãœp  ` %3p [3  (+  T)  ^ðÑ067367&''66'3#&'#5'67#535'6'6®  (!<&&  (.1F  Ñ   (*  !% |êÏ%+17367&''657367&''65''67'6D    )l    )‰  o  Ï             )ÿçñY$73#33267#"&55#67'7#&')­}g  X )N Y4 (- S%  Qðx7#5##5ð»x''rðÏ#73533533##5##5#3#735#335335>>>>>>ÀÀ&&9&&Ä  1>îg7#5##5î¸g()*ÿçñK%73#33267#"&55#67'67#&'*«|g  X (M K +  #E!   ÿéóÏ73533533##5##5#35#35# *h,,h*>hhhh¥****©©88ƒ8ÿòóÏ73533#3#3#535#535#'6? 9WWMMcájMMC  Ç667777 'eíÐ733673#5##53&'733#735#u  .²/ B™™qqÏ  -- -mÿéöË73533533##5##5#35#35#m55+5555¤''''¨¨99…:qÿòóÏ73533#3#3#535#535#'6‹ --''3~7''Ä&777777 ' ÿù}Î73533#3#7'75#535#'6$""(-7.&&Á ,,-4   8- (ÿéòÆ #73#3#735#33535#33573#5##533ãã2||""5!V""5!'¤¤Æ|G$$$Z%%%;©ª‡&cÝÆ 73#735#33535#335&··==Q>==Q>Æc9> ÿê—Ï37;?CGMSbh733#3'67#'65533267#"'"&55'675363#735#33535#335&'7&''33267#"&5''6C44@ [ .0  :cc&=&   .  6    Ï  I=/ 07T  0A' #        ÿêâ[733#"''3267#'67#536oa  ROIOU[ ?&=-ÿëîÍ #'+/37;CKOSW73#735#33535#3353#735#33535#33573#735#33535#335#5##53#53535#35#35#-¤¤88I888I8©aa(A(aa(A(¹·$×ppppppÍ5 4  4  ##AA   [æÍ #'+/37;73#735#33535#3353#735#33535#33573#735#33535#335-¤¤88I888I8©aa(A(aa(A(Í5 5  5  /îS7#5##5î¸S$$ÿîòO 733#537#'77#O tAã piO+  ÿèîÏ %973#"''3265'3#73#3#3#535#535#73#3#3#535#535#Ü ÊO "S![O "S!ÏÏ Êçã ÿèîÏ%973#73#"''3265'3#3#3#535#535#73#3#3#535#535#É   ¯PQ ZPQ! ÏççÍ Å4ÿíÊt"73#3#"''3255##5##535#53&'?@6   $%6CAt * AA/@4ÿõËq#73533533#3#535#35#'67&'>$ )—&.$$  L^-     0ÿñÊp*73#35#535#53#3267#"&55#'67#56n ((\&&+>'   0 +#p   H  $ DÿèîÏ%973#73#"''3265'3#3#3#535#535#73#3#3#535#535#É ±Q !R\Q  R ÏççÍ Å,ÿîÏr &873533##"''3255#'3#3#735#&'63677'7&'…(   (VQQEE$$P  A%/]G  C" ,   TÿéïÁ4873#3#"''3255#''655#&''655##535#5#T›*&     ,/` Á%Š  t (;   & !2 ¡%%%%ñÄ,07<73#3#"''3255&''655#&''#535#5#5#655#r"     $B 8 Äs    !1  !‰87,! z ôÏ &*.473'33#673267#"''67&'#7&'3#735#'6z?('    @c  O--«$$?, !53  :D&:  ÿéóÐ!%).4E73#32767#"&55#'67#53635#335365#33567&'7''69*(8  J6)%!#6#    Ð iI  NF!ãEzz&4J   +,/ 2  ? YÿîïÏ)-373533#3#535##5##53#3#3#53&'#735#67#[?@@75?“qaa x*–*TT6* +&& 2 ? ÿëuÏ*.473533#3#535##5##53#3#7'7&'#735#767)))$Z")gD;; W *5 33 Á,#' 1   #  dÿîïÏ(,173533#3#535##5##53#3#3#53&'#735#7#f:992v0:‰hZZ p %Š'LL2% +&& 2?tÿïðÏ)-373533#3#535##5##53#3#3#53&'#735#67#v222+g)2zYNN d !{"AA*  +&& 2 ?ÿèñÊ#'=73#3#5##5##535#3#'3#3#'3#3#3#67&'7&''67#ÂWdPPdVu;;f>>g;;g>> ´´â‡49IRBÊ.>>..     XÿèñÊ#';73#3#5##5##535#3#'3#3#'3#3#3#67'7''67#h~7B//A4N!!A @""A uu˜W  -3 +Ê.??..      KÿèñÊ#'=73#3#5##5##535#3#'3#3#'3#3#3#67&'7&''67#XŽ?J77J=X%%I$$I%%K&&ƒƒ¥\ ! 280Ê.??..     iÿèòÊ#';73#3#5##5##535#3#'3#3#'3#3#3#67'7''67#vq0;((;/F99:hh‰Q  *. "Ê.??..     ÿæò¡#'5<73#3#5##5##535#3#'3#3#'3#3#3#''67#&'#6ÂVdPPdVv;;e;;f;;g<< ¹¹ä/  IQ7© G5¡ '11' $     ÿè~É#'<73#3#5##5##535#3#'3#3#'3#3#3#67&'7''67#Y&/.$8...RRk; " É-??--     ÿèîÂ73##53##"''3265'´´QgÝb  ÂAl  ÿéõÑ-157'67333##5##"''3255#535#535#53673535N 0] 2=   NNhh?Y ===¬!  .9 #   +.=ÿëò­"73#3#353#5##5335#535#'6gvCNN.p/TT) ­ *=.M M.=* 3ÿêí 73#3##"''3255'67#5335#E¡*11   (B =&GFe 0H  >3*6$09ÿæó® $*07373#33#53537#5#3535#5#'67&'FIDG?º:Gƒccccccc ! Y   dd '  # #       ÿèîÊ 7#'655î¿ÊTG5 6Aa3ÿæõ $(47&'#67'5'63&'73&'35#35#67&'‹-/ u 8#'aaaa5 -/ 3T !    ;gìÁ736533&'73#'67#&'?C!W >2 ;i$ "!¦      Aÿéæe!%7#53#3#5##53635#335335#3#3ƒB¥PW~;+'/(////V \\O8 88 <jí¯7373&'73#&'#'67#CB%C,8<.7¢   -ÿê÷|048=A7#3267#"&55'67#53673#7&'7&''6'35#335365#335° " ,>B 37H   N++?1o')=4"!   C  C  5 # =ÿéê‘73##"''3255#=­G Q‘y  t=ÿèë­ %73&'73#3673#3##5#535#53&'ECG.&  /NEEEEL/ —   ..:ÿñò­&*.2673#3#3#3#535#535#535#535#'25##5#35#335Ø $JKA™DMI!H0  4 ­J+<ÿèó¬#'733#3#535#53533#3#53#=#5#¨((7·0(((((A}YYY¬wff5$9ÿêó«7353#5#535#535#733#3#3##?288--2b;;77>>‘Á.  , /7`ï¯7373&'73#&'#'67#>E(F0;?1<ž  $# KÿèÛ] 7#53#5##55#335#355#_,++?,>+?, ac H2ÿéæ«"&*73533#&'#5'67#7#5##535#35#35#>    ¨2222222†%% [c!-/¹¹2 R R -ÿé÷¯973#&'#5'67#535'6'3#&'#5'67#535'6Ü )$   *9    % %¯6)WX)!4  _`$+<ÿçõ£,>BF7#'7367#53#3#33325267##"&55'6'3#67&'7&''735#35#µ(Z&(   "+qK8 &&&&J( 7  '$!`4  z>.ÿêñ­4:@73533533#3#535#35#35#35#73##5#'66556'67&':! c!!!!!!‹ !=  )z 4  —TT33e ss4. ,9/   2ÿék³ 7#5'6Z  ³”u(_ÿêó³#)/5;73#3#3#"''3267#53635#35&'''67&''4'›:asson$OOO  I  A  ³?  9 %s "  S   ÿé÷Æ73265#"'&5#'6655Ô  ‹ Æcb#,ˆRE4 1$^Gÿê·©7#"''3255##5##5353·  /ˆ\  FŒŒas!!5ÿñÁ¦73533#&'#5'67#C//*!  %*}))6*Z[-"36ÿý¡733#3#53533~%%0Œ¡2Ltt=¼’767#53&''67&'YMc' &p0# ÿéçÐ73#"''32765#'6D• ‰$Ð ™7"u)% ÿéíÍ7'673#"''32765D "    ª#.—" ÿéçÏ73#"''32765#'69¢  — Ï —7 tÿể73#3##5#535#'6'&'4‰=LLOO9w  d  ‰B99B  ÿëåÏ73#"''32765#'6&'O% (!!Ï ‘4n$& # Æ7333267#"&55#'67#536P8   ' +Q  D$+ 3 +'Ãv73#3#=uu˜˜v()³’7''6767&'‰17!$' i$*  "CA-²… 7&''6[_6F J….; ¹}73267#"&5536ª /8 "  .&1}  X! ÿøÂ“!73533#&'#5'67#7'6'&'MED% /4AŽ]  \77@D&$F    Æ›73#3#353#5335#535#'6K_:JJ&Š)JJ  ›!!*)!! ÿëïÄ73##"''32655#ß_ lĬ §ÿêóÄ73##"''3255#V   (Ä­  ªYÿê©Ï73533#7#"''3255'675#[   ¥**2  I  <:`ÿèõŽ #73#3#537#35#35#35#'67&'j…?&'g/!   Áš‰Š›'O0&  #+1  ÿêzÏ7'655367&''6E 0 ;2+ .BhC …,!  oÂ73#3#67'675#535# \$""*4""%Â:< A:w¼ 7#5##535#35#35#35#w@)))¼­ ¹H666777q¼ 7#5##535#35#35#35#q<'''¼­ ¹H666777ÿèóÂ73##"''3255#r,  2¯  ¬ÿéíQ73##"''32655#Ú]   iQ; 6Wÿêïƒ73##"''3255#W˜;   Iƒm  jÿói¾ 7#5##535#35#35#i0000000¾ÅË7%\%\%ÿêð{73##"''3255#ße   f{d  aŠñÐ73533533##5##5#=@==@=· ÿïuÏ 73#'6#53#3#67'5#5376@ G&&))Ï  2&8  FaÿèõÈ #73#3#537#35#35#35#'67&'jƒ44x/:RRRRRR Gȇ‡?>>.      ÿêcÄ73##"''3255# V  "Ä®  « ÿê{Ç '73#735#73#735#3#3#3#'7667#7#11*00F__n>5 9ÇD"D"@  !QñÑ*06<733#3#67'675#5353373#3#5##537#3'6''6&'D), !D1:r40?!-.9 1‚  ° Ñ  ( ' " 2"#3 '6)   fÿéöÇ"7#5##5367#53#3'>&'éD%38 !!  ¡‚pqƒ  ': &   ÿélÅ$733'67##"''3255#53&'767#U     '  ?Å  ^  Z   ÿé„Ï#CGKO733533##5##5#533#735#73#735#3&'73#3#3#3##5'6353535,22(118($!!!!%S Ï  #.." I  ÿè|È#=E73#3#5##5##535#3#73#3#73#3#3#"''#5##5##537##3255Y$/0$ 045Cf**   #*IÈ&88,)  ; 011BQ 0 ( ÿìƒÑ !%+73#53&'3#735#3#735#3#735#35#'6I2v1$hhEE 22'``<<<T   %7   E&8    A5// *W ¸   6       - A4   ÿç{Ï#)/7373#33#53537#5#35#3#3&'''6,&)) n"(L444444   ¾ww/   ÿç‡Ç0D73#7#5'75#35#35#75#3&''67&'767#'3''67&'767#m P!......3    >6   #ÇDJ,, 2            ÿêˆÏ $)157#5##53&'73&''67&''667##5##535#J-"3     )?111¸#%        GM M0  ÿèˆÏ%+173#3#'6553&'#53&'367#'6'6'6L* Y- +) '" .'% !1 3Ï 8.# #,A G'   ! ÿè£Ï .73353353#3#3#"''3255##5##5##5367#$$„ –DE ->À&55&7 S ?JJKKVg PÿèóÏ .73353353#3#3#"''3255##5##5##5367#Z))Ž £KK 2DÀ&55&7 S ?JJKKVg dÿèóÏ -73353353#3#3#"''3255##5##5##537#k!"€AA +:À&55&7 S ?JJKKVg ÿé‹Ï '.73353353#3#3#"''#5##5##5367#3255r~87   &2XÀ&55&7 R  JKKVg %C> ÿôcÏ 73&'73#67'676'&'  U< #+§ 83 96.03,mÿèóÏ '.73353353#3#3#"''#5##5##5367#3255tx†<<  (6^À&55&7 S  JKKVg %D?rÿéóÏ %+73353353#3#3#"''#5##5##537#3255xt99 '4ZÀ&55&7Q  JKKVg%C=Q òÏ -73353353#3#3#"''3255##5##5##5367#`%$¡MG  /AÄ**0E 1====EV ÿè…Ï '-73353353#3#3#"''#5##5##5367#3255nx55    $/TÀ&55&7 S  JKKVg %E? ÿèzÏ '-73353353#3#3#"''#5##5##5367#3255em//    *JÀ&55&7 S  JKKVg %E? ÿö‚Ò "&7&''6&'3'67##53#=#@!  %N  8W2Ò    l ON !! ÿôxÐ 7&''63##53#=#@ %OOO)Ð -eb`** ÿøzÅ7'67#53&3#7'75#G 6=R CX"&c*"}1 04[ÿéóÇ!7#5##537#53#3'6656&'æL(7…: #"' ¡‚pqƒ': &  )"2ÿèãÂ73#"''325567#È&/  +!«Âx ~[ÿì݆73#"''325567#[‚  i†O V\à¿73#"''325567#\„  l¿U [ƒÿêïÂ73#"''325567#ƒl  V€ † ÿîˆÑ !'-7&''63#3#7'675#535#&'7'6G ) N ))+2=--  UÑ  !C F6JbõÐ 7&''6š#+ ''( 7Ð*..,DvÊ7#"''32654'7##5v  -Ê %t† ÿðòC733#3#535#53vVVgåiVVCpGóÏ 73&''>£.% * Ï4.#% UÿéöÏ %-157&''63&'73#3#53&'#367##5##535#35#Ÿ ) (!' 4++ -š, &0SPPPPPÏ&     9VV!.ÿéñŒ$7367&'#"''325'3'67#w   6%  \O9 5;Œ   7H  U9!-OÿèöÌ 73&''65'3&''65´   -<  $ )ÌY T$79"7RHE @+9R7ÿëó– 73&''65…A<> N–(H$77$.CVÿéñÍ 73#535333&'#˜Y›.K_/" #—#Y#=A ÿèõF 7&''6x"M P! D OF #'' ÿþbÏ767'67'67676'6P &   &)¦8!  /,p  =¾“ 7&''6x"3“"#2 ÿéuÏ#73533#3#3##5#535#535#35#35# +++''++++##+8888¹[&&[=9 ÿélÏ#73533#3#3##5#535#535#35#35# &&&!!&&''!!&0000º\%%\;9l~òÏ 73#'6”V^  Ï  lÿéò˜#'+73'73#3#3#3##5'65#5#35#—  )$$$$*[ -˜   c('m€õÑ 7&''6®! ! $Ñ tÿçò˜(76767'67'67#53&'73#&''6—= $ #5 /A 9 ) EL :   TÿçõÏ7'6653&¦ :'+P;.ShB''xÿèöÌ73&''>® , ÌW S%5;-8m“èÏ 73#'6ŒPZ Ï  ÿôxÅ 7#3#3#535#35#5#x !`==Å.Q.Ñ@.m-m.. ÿêóÂ73267#"&55#'6655³    M¹ $ «H,:7-Q1!ßÒ!'73#"''3267#3#"''3267#536&'iU   pš  š/Ò 1 >3 b '  †{Ï 73353#533<jÏ6*=<)ÿïsr73#67'535#`E%". EKrC*  J€ÿéúÂ73265#"&55#'655Þ  » #­HS+$RRrÿêõÃ73265#"&55#'655Ò  ù ¬a60 '3s“€Ï 73353353#kÄ**1 ÿ 73#3#735#7677'67&' zziiBB 2< „7,     ÿéób73267#"&55#'667±  HbX  K/(%6sáÆ 73#735#73#735#VV..[VV--ÆS-S-sÿé÷|7#'665533267#"&5Ä# J h%*%0v  olôÐ 7&''6ª! &Ð $$'# ÿòl¿73#3##5'67#35#\* 2* (¿ hf+6‘C ÿçïÒ#'>K7#3#'6553&'75##5#35#3353353267#"&5536'33#67'ïC:·X,---?,( $  # ˆ88 ' Ã*C< 3@] %   . .ÿèó,73267#"&55#'665à   Q  ,'  …ÿîõ{7333267##"&5477#•O=  24{P A……óÐ 73#'6 HP Ð |ÿêõÏ73533#3#&''67#535#$''0, % & ) ')$£,,# 6 11 %3,ŒÿêñÁ73#3#"''3267#5335#365#Œe,*   N'9Á+w$&bQoo \òÏ73533#3#3#535#535#\[[RRhåiTT\»ÿéóg733&''67&''667Y r(. :*-< 6& ,g       ÿêqÃ73#"''32765#'655#[  # ÃwN ƒCQ20ECoÿêñÀ7#53#3#"''32765#Œ‚N RW­7c) E t¹73#67'675#Y#-6"¹~ ƒxÿéìÃ73#"''32765#'667#ƒi  (è0,w[L GYlÿçëÃ73#"''32765#'665#|o  .æ*x`KAf ÿê]Ð #)73&'73#3#3#'67#5365#536'&'N4!-²  0$  ÿéðÐ %73&'73##53673#3##5#53'&'¡N, ² BIIVGÿë™Ã73#"''3265#'655#_:   "Ã¥2•@S3 2H@Vÿé˜Ï 73'65''6…2/ ÏkL/ ,B9-%#_ÿö¡Ï7&'367'5#z + Ï ?n  p[ŸÐ767'67'6776'6   "&¡.! 0+ m ÿèá}73#"''32765#'667#ÆN)/.#O}P1 J1;1,ÿéåÃ73#"''32765#'667#'¾   `&'% 7ÃxO „OX MLÿêçÃ73#"''32765#'6Î  »‚1@ DÃwL"  > =*%)bL-1)'WÿéôÏ !7&'''63#"''3267#'667#¿$&!d   (Ï=!= ?($)a H,2)'JÿéôÏ !7&'''63#"''3267#'667#¸!&+%l   ,Ï=#<>)$)`!E,2*&„îÆ73#3#5##5367#35#35#„j.,:'::::Æ ‚ ‚ GP AóÏ 7'67&'3#"''3267#'67#\!/ +j$- +(X‡  < : 1 "Ï %#"&-54  $AëÇ 73#735#3#735#73#735#0žžvv.__99b``88Ç;9;;ÿôë„ 73#735#3#735#73#735#0žžvv.__99b``88„>@>> GóÓ %+17&''63#3##"''3255#535#&'''6‚0: ;7(6 Qe)]]  UU)]*#"(O& )Ó       "      2óÒ $*07&''63#3##"''3255#535#&'''6€37 89)4 I e)]] UU)]*#"(O%(Ò    (  [ÿêêÏ 73#5#533533Ö{)*š°¢ÄÄ&ÿéÛ{ 73#5#533533Ç¡<RÏ 7&'&''6- 0Ï    VAóÆ73#3##"''3255#535#a‡4?? JJ?Æ""  "AñÏ$*7373#'67#3&''6657'6''65‡Œ*&/u: 9@ -!F ^ ¸ 6*'+     ÿèvÎ7&'#5'67#53&'736e  -=%   x  ho 5  }ÿéí 7#5##535#35#íHHHHHÂÙÙ[H¢GsÿêõÍ 7'6'6'6Ñ ::! ; 9()L JÍ *" ' 3"# ÿè€Î 7&'#5'67#53&'736o  1 D%  x  ip 5 9ÿê¹Ï 7367&'#5'67#53&'p %    3$I% Ï   ir 6 ZÿíôÐ'+73#"''3265#'6#3267#"&5535#Z  N G0% 0,Ð m'R J1 8%eÿêÐÏ 73&'#e3$#&ÏL! #‚™ÿêëÏ 73&'#™$ÏO  }uÿíóÐ&*73#"''3265#'63267#"&553'#3‘M  @ &' <Ð m'T s3  I8' ÿê|Ï,73673#&''67#3#3#3#"''3265#7#*,. ! #::j;8  ; ¹   +2 %Kÿô³Ï 73533#3#535#3533#7'75#X  &a'  %-7,±W# & ÿéqÏ73533#67#"''3255'75#)""#   /)¥**3E  9: ÿéƒÏ7#5'67#53533#&V&-1** g~{)*:.. ™ÿéõÍ 7&'67&'6À2Í>.17 =45<>,/3 915ÿíUË73#'3#B,ËÞÉ¥ÿéZÏ 73'65'3#F,(+ÏrG- *=]ÿéKÏ 73'65'3#7'#%ÏrG- *=]VÿéñÈ *73#535#535##5#3##'3255##5##535##5f||iaai‹1:  '&91ÈQO/  FF7HÿêZ 73'665'3#G +A((!5]iÿéï73#3#"''3255##5##535#i†93  29?  (^^GY—ÿéóÏ73533##"''3255#&'—2  2 ž11ˆ  ƒ SñÊ73##5#535'6Ú DDFF2 ?Ê5XX2WðÄ73#3##"''3255#535#a…8BB DD:Ä3@  =3jÿéõÏ,73'33#3265#"'&'#7&'3#67'675#mB0/  Cm  Z; !( £,,F0#+d>   YB GmÿêòÏ#)733##"''3255#'67673'67&'©// * 7&%- Y  ž3Y  T ,)"! #$! [ÿéõÏ#)733##"''3255#'67673'67&'£44  , ;()0! b ž3Z  U ,)"! %" !%"!GÿèöÏ#)733##"''3255#'67673'67&'›;;  7 F/1:,)mž3Z  V ,)"! %"!&"! ÿêdÏ73367'5#'67#536$ Ï0€ {o4 /g[ÿèôÏ.E733#3'67#73267#"&55'75#'65533265#"&55#'665 ::>/!"  " /5    Ï     C8+ ,3N`> 6   &p!òÐ 73&'73#3#3#3#735#p58‚ggggggAA¹   ;1ÿò°ž 73&'73#3#3##53#=#165vvvvyQŠ    C ?? fÿéõÏ7373267#"&55'65557. -)Ï<• ƒZ6 5N ÿëtÎ "(.7&''63#3#67'75#535#'6'&'< A&&+5+((= 8  Î $C F2pÿêöÏ73533#&'#5'67#7&'~,0. $&V  š55A.(7{t/&1>?    ÿñ|Ï !'-7&''63#3#7'675#535#'6'&'A $F''&/**>7  Ï !; ?1 ÿèyÎ73767'5'67'7)%  Î3 ‡}e< Â>3 .3# zóÒ7&'327#"&''7&'3˜ [V )  5 e] Ò    ÿç⎠&*73#"''3267#3#"''3267#536&'3#`S  gœ  ›( J˜˜Ž)/9 #R $  DÿéâÑ%)73##'3267#3#"''3267#536&'3#jP  nœ  ›.   O¢¢Ñ A&WJ1}& j•ÿéðÏ"(,7#3#"''32765#5373#"''3276'&'3#Ó(E   G* ==¤XH%| F   qÿéÄ#)/73##"''3255##53#"''3255##5&'#&'~~<  |  ! 5 ÄŸ ‹¥´ Ф³*"$&!""%  ÿéçy733#"''3267#7#'667#« 0  3 M$ !0y/C)/38.- zðÌ7#533#"''3267#7#'6J8È   !h 51¼%'ÿèæ  !/73#735#35#35#'33#5#'65#535#73#3#5##53NeeCCCCCC>? %P?«?E3> S; .X+# ><;,*Y„êÐ73533##"''3255#'67#ˆ;;  -W L'kÅ   ÿèëˆ !/73#735#35#35#'33#5#'67#535#73#3#5##53E}}[[[[[[9E"+ !!TE¼DD1DˆK5 )IL#  WW 0!#Lÿèæ© !/73#735#35#35#'33#5#'65#535#73#3#5##53JmmLLLLLL9? %P?«?E3>©Y? $ % 'LZ,$ [[<-+Z˜íÈ7#5##5í²È00 ÿí{¿73#3#"''32765#7# n; >B¿7b&@IgÿêîÀ73#3#"''32765#7#g‡PV [!À8d'AKsÿêêu7#53#3#"''32665#‹wI L Sd@ ÿùvm 73#67'75#\!-8)&mE I-ÿòäÌ736732667#"&5-K? ER&0 ;4ÌW Q#) •óÏ736732765#"&5• % #ÏK?  =ÿñç†736732667#"&5=J&2L(- 44†8 -  íÑ 73#5##53&' [°h Ñ// `ÿîðŽ73673267#"&5`7- 3;* ,*Ž9  6  Gÿêìz73##"''3255#G¥F  Kzc  _<ÿîò‰7''6767&'À HG /#4?Q)1 2NX  :ÿñí”73533#3#535#I?DDQ³N?b22KKz|Ì73673267#"&5" ) #Ì    ÿêwt7367&''66''6;  "  t  !/+ Xÿèå7#53#"''32765##'   ?nY;†Kÿöðƒ 73#3#535#X?H¥I<ƒggHÿïï£ #73#'6333267##"&5477#xjw  sL  !';P£  $8   ,[Ç 767'533.+{`  º:UÿéóÇ"7#5##5367#53#3'>&'æR,9‹> &* !  ¡‚pqƒ  '-$/   ÿê†p#735367&'#"''32655'67#-      W   / / ;ÿëì+73673267#"&5;L/F8,9B9)    ÿøå¹ 73#5##533Ñ££¹À Á¤ ÿêö$73733#3&''67&''67#67:‘ƒ"( 0((<1!,6I! "   &6)ÿéôY#73733#3&''67&''67#67#:’‚ !! .'+:.'3…^O     1 QÿêòÏ$)734733#3&'''67&''667#67gZ[S      #2  ­"#2     :+ AE5" ÿégÏ 736753#5' Ä––æ=  ÿéwÏ!73533533#3##5#'67#535#5#? ////BSS2! )BBBBEÿéòÏ!73533533#3##5#'67#535#5#\,!!%%,5 ,"#],¡....?SS3 (????fÿéõÏ!73533533#3##5#'67#535#5#v !. #M ¢----?QQ1!&????j¼ 7##55#'#33535#jDD¼£¸H66666666n¼ 7#5##535#35#35#35#n4"""¼­ ¹H666777\ÿéóÐ$:@F73&533#3265#"'&'#7&'&'33325265##"'"&57&'''6mD''   EkH    &  /  ¢.F0.c:  ? J I‹ÿóóÂ73#3#3#535#535#’Z# *h* #ÂKKKKCÿéŽÐ#7#"''32655'67&''67&'76~      Ð :;!'   RÿêœÏ#7#"''32655'67&''67&'76Œ       Ï %6,-"# (    ÿöYÏ7&'367'5#1 / Ï ?r  p”ìÂ73#3#3#535#535#–T "X#!Â:99:J‘Ï$7#"''32654''67&''67&'76       Ï  2     xóÑ$87#"''32654''67&''67&'7633#3#3#535#535#Z  $  €722=Ž>116Ñ        ÿèñ~#)/5;73#3#3#"''3267#5363535'67&''&'7&'Ze³³« «+|||– „  B ?~5 &]?      OÿéðÐ  &733#5##53'&'7'63'665&'›3Q2% q 5R )!#ÐFm[\n:  F)> #(eÿçôÏ "(733#5##537'6'&'3'>&'¥/H-3 L  2  ÏEm[\n8  O5   EÿéóÏ 7M73#53635#35#73#3#3267#"&55'67#'7367#3673267#"&5_!G""""=X   #. +M   Ï ZZ 3:A%W  ,#!&>8/&_    'ÿìèK73673267#"'&5'LL B_:<FE K ÿílÁ7#67&'7&''53535i>  ***ÁsF    Ê0]ÿéóÇ +7367#533#3#3#&''67#535#'6eSK` ˆW2=9) )6 88< › #"!  ÿé_Ñ 7#5'673#:  Ñ­„ 4ž ZÂ73#3#67'675#535#K  (Â:= C:†ÿèóÇ ,7367#533#3#3#&''67#535#'6Š<5Jh>",% $ '),œ   $ ÿèSÆ7#"''32654'7##5SÆ: =ÍÞXÿéôÈ73#735##5##53'>&'tkkFF`T2L  %ÈBA\JK] "5PbíÏ 73#7&'''6'6’;  R c (O QÏ>3   #  ^RÏ 7&'&''6,  5 Ï      ÿéðf#73#3##"''3255#535#535'2× '.SSdd  iiUU(/]f     wÿêöÏ 73#7&'''6'66´- 4 J0( &-ωj"*+"0 &. (-*SÿíŠÂ 7&'&''6n       -  ) .*) _yÏ767'5'753w5 #»(  3|`ëÄ73#"''3267#'67#l   #% !!ÄA#0:-{ òÏ 73#7&'''6'6°-  6MN GÏ~j , "DK„Í 7&'&''6e  ! Í  (  + %" !‚ÿéòÍ (7'6'&'3#3#33#"&''6535#× .  `'##    &Í  907 $I nWÿéÎ7'6#5'6w    Î & ‚h ÿìdÏ"(.7''67'67676767&'&'4'''6M      k !/(8! 3   6ÿèôÈ15;AGM73'657#3#3#535#35##37#3267#"&5535'67&'7&''&'K^Bc(  Ž h C  L ÈK2 *J<š/M!/‰M/ ‚--“   ]ÿêòÓ/5767'67&''667&'3533##"''3255#&'· -D   1  >b b(  Ó   +   HE  A  EðÐ.CI73'67#&'&''6'3353#5#'67#535#3533##"''3255#&'¤>]R3 !m :/K^  ^ Ð$    &‡2&     ÿéâÐ 1#53673#=#767&''67''67&'763, €›R    #   È Èˆ    5¿® 73#"''3267#'67#'67#'6^X   0*$  ® Z@@* %8, " 4Ï¢ 73#3#3267#"&55#'667#Gmm ˆ%   "¢0 3  5Ç©73533#&'#5'67#<9::$!-‰  @T/+5Ë«!73533533#3##5#'67#535#5#:!$!!$$&$&!Y$#66" ####ÿéêÏ%73533#3#3#"''3267##5#535#535#YXXPP`  K[[KKY²: #WW ÿézÎ&73533#3#3#"''3255##5#535#535#%(($$3    ((!!%±: %WWyÿèíÏ%735#53533#3#3#"''3267##5#535#€%%%..**4 !,,%€<)VV~ îÏ%735#53533#3#3#"''3267##5#535#‚$((,,))5   !(($.FF ÿçöÊ (73#735#35#3#3#33#"&''675#TT.... k"U60M6  5Ê\6:7 ) < ÿçöÊ (73#735#35#3#3#33#"&''675#TT.... p'U60M6  5Ê\6:7 ) < ÿçöÊ (73#735#35#3#3#33#"&''6735#^^8888"x+""N60N7  :Ê\6:7"(?;À¬%73533#3#3#"''3267##5#535#535#=3;;33<   (55--3œ&336Ȭ73#&'#5'67#535'6² 44" # &.:.;¬ 4C 6Ê«73533#3#535#35#6@@@/p-@&IIŽFFP!2̯"(73&''67&''667#&'&'a@  !( $   3  / -¯     <    8wÆ­ 7&'''6ž +­  5 ËŠ73&'73#3#"''3267#'67#8C 9VO  ? " '*q  + & 55ʬ 73&'73#3#3#3#735#5A?• ||||}}WWš    3=HÉ®373#67&'#"''32655'67''67''67#?„;       # %  2®           4àÈ73#735# ÀÀ››È”vÿêò/ !7&'7&''33265#"&5''6‚  a  z ( 2&/   &  +  ÿéõÀ73#32767#"&55#'655# \/@K<À¨  ­/[: 8Q/$;×Ð $*73673#735#'673&''67'67$?^³‹‹&  =    ½ ‚^3      ÿêïÃ673#67&'#"''32654''667&''67&''67#Úe  % 0/   ,> >'4 4)!$ 6%[à  :!%="! 1 , %' ! ÿêôÃC73#67&'#"''32654''67&'''67&'767&''67#×` % ))  0F J4  . 7([à ;%@"" 14        g òÃ373#67&'#"''32654''67''67&''67#€j0     # )"  !$à  !!  jÿéöÃ473#67&'#"''32654''674''67&''67#wt5     %  *à  $   !'  ÿêrÃ573#67&'#"''32655'67&''67&''67#^"      !  &à    '!& ÿêcÂ573#67&'#"''32655'67&''67&''67#M            '%   ÿéÝ '.73#5##53635#3&''67&''667#k m•8 /••4A  "  /6 Œ Œ |^      xóÑ 73#5##53&''67&'„a³c2 /i*$#)Ñ ('!   ,UÑÐ 73#53635#35#_ j¥$ ~~~~Ð bb 5>,IÑÐ 73#53635#35#_ j¥$ ~~~~Ð kk:E ÿêñT7'66733327667##"&5X",*8  $  T'/'#I   '  ÿëx£7767#"''3265'67&''67&''67&'767&''6`    % *" "   )£  (         jÿç÷¢ $(73#3267#"&55#'67#53635#35#¡6   ) #BBBB¢W2 59.W -5eÿè÷Ð"&*73#3267#"&55#'667#53635#35#ž;   HHHHÐ jE  I-' !$j :HA “Ð37'667#"''3265'67&5'67''67&'77&'| !     Ð    -       ‰÷Ï#'73#3267#"&55#'67#5335#35#²)   ))))Ï ]8 ;=1]';)ÿéØE 7#5##535#35#ØŠŠŠŠŠE\ \!2ÿíŠÏ&,27#"''3255&'75##5#67'#53537'6'&'‰     0   M  ‹†  ) >ŠŠF--žDD<  Eÿì§Î&,27#"''3255&'75##5#67'#53537'6'&'§    * 8  Ї  *!=‹‹U! / ,žDD:   e¼ 7#5##535#35#e,,,,,¼±¹H67[`êË73673267#"&55'7€/$(.  &#%Ë%  R_Î 7&'&''65  L$'Î      gÿéóÏ73533533##5##5#35#35#gAA%AAAA¥****©©99ƒ8W‡ðÐ 73#5##53&'Ÿ Bq>Ð 22 Rÿéó… 7'667&'‚D ) 0 …?@99a(+j ÿíòn $(73#5'673'36735#33535#3353#ª,¬  +[c Qd<DHL767#533'67##"''3255'67#53'#"''3255##5'67&'3#735#š  Mk.   )/^  S*  & 99³     Ee Piy   -vôÔ $*CIO7&'7'673#&''67&''667#'33#"''3255##5##53&'''6(  ^ 8<     #e0 0  %  Ô        , ../>     ÿèïv#)/5;73#3#3#"''3267#5363535'67&''&'7&'[c±±©  ª,{{{– „  A> v4 $ \=        ÿé”Ï*0767&''67&'3533#&'#5'67#7&'%  722  -\ È   [!!EN)-3   ÿûœÐ  &7&''63#'767'&'&'Y0 OO`{O $    Ð %Y ,*,!O!! ÿê¡Ï#'73533533#3#535#35##5##535#35#&&–$1&&LNNNNN±!!!!Drr)A ÿé™Ç$(,73#3#"''3265#'67#'67#'67#735#35##kAW / ), &  CCCCÇ^ N18"+* 7:ÿí”Ç&*7#"''3255#&''67##5365#53#'35#”    $:0l)0FFlg  P  #m GG %%ÿéqÐ*0767&''67&'#5'67#53533#&7&'   ;  '##  È     ‘?E$!! c  XÿèôÍ8<@E73#&''67&''667#'367#533#7#5'35#35#35#675#¿(      m((>   Í#>&! 4 &   w}IP ÿññÆ 73#3#735#3#536'&'Íͨ¨€€l GâƒP  ÆT.G  ÿë|Á 73#3#735#7'676'&'nn__992 .8! '  ÁJ&@ ÿîïƒ 73#3#735#3673#53&'ÐЪª‚‚ < 9Þ:ƒ>0    ÿëdÁ 73#3#735#7'676'&' WWLL((##- ÁI'A  kSâÏ 73#53635#35#– ?w"QQQQÏcc 5?`ÿëñM73673267#"&55'7Œ+"%+ #!(,M  VÿéõÐ"',7333#&''67#535367#'65##67#Š5 . ;, 1 3- 6 = ) V"#Ð C%4)"C j11@ÿèòÏ.E733#3'7#73267#"&55'75#'665533265#"&55#'665Ž>>K  ;)+ ) 6?   '  Ï     C8* (M`>  6!  &/ÿçðÏ.I733#3'67#'665533267#"&55'75332767#"'&55#'655n))6 H #(    #.Ï  D9, (O!    9-  !ªñË 7'6'6'6Ü   & %Ë ! % 'KÿèòÏ0G733#3'67#732765#"&55'75#'665533265#"&55#'667”::G 6&(& 3;   $  Ï     C7+ )M`> 6   ' ÿêóÎ1J733#3'67#'66553326565#"&55'7533267#"&55#'667B--0 B #)    *2  5'   Î  C7+ )M%  :< .!  &ŽíÉ73533533##5#5#5#Ž # G A###¢''''tt(((9((ÿéðœ.G733#3'67#'65533267#"&55'7533267#"&55#'6655jffq  IQD 1 9''*? 8 œ    3)! !':    3!   ÿéõÏ2L733#3'67#7327267##"&55'75#'665533267#"&55#'6675q\\h R@B  2 47= OA  0 Ï   C7+ 'Ni2 *`ÿèõÏ/I733#3'67#73267#"&55'75#'66553#'665533267#"&5 === +!    ) <  Ï   B6+ 'Mu;   ÿétÎ ,27'2'6'&'&'3533##"''3255#&'f %6+*   9   9 Î    8E  B  oÿéóÏ/F733#3'67#'665533267#"&55'753#'66533265#"&5¢..8 G !+     7 Ï D8, (O"    K%';  ÿê~Î.>733#3'67#'65533267#"&55'753#'66537'9..1 ? 2       6  Î  D8, ,4O"   I')< uÿèöÏ.E733#3'67#'65533267#"&55'753#'66533265#"&5§,,5 C 2    6 Ï E9+ ,5O"    H'*> ÿéöÑ+1S7&'67327#"''67&''7&'3&'67327#"''67&''7&'7Ë3<      99   !Ñ      J         –ÿêðÆ73##53#3#"''32765#ŸKK Z1 6   9Æ=*I)ÿé–ÏQUY]733#3'67#732767#"'"&55'75#673'73#3#3#3##5''65535#5#35#C77@ 1#% ! ##"N +Ï       H    E -7QqÿéîÅ!7#53#3#"''3267##5#7;5#35#uVÁVd  M`QAAZE?²I 5 aaE#V  ÿé‚Ð !73#53&'#5##535#33535#35#L.u3A;&;&ÐCžž>+++h+++ÿêõÐ7'67#'673&Á& : /  8,"8d' #@0: ÿéÐ !73#53&'#5##535#33535#35#P6ƒ8GD+D+ÐCžž>+++h+++‰ÿéóÍ7''6767&'× ") c4=  H€{A%gÿéöÎ73533#3#&''67#535#}'0095 /(, 0 ,/'£++#6!10 $3+lÿèíÐ 73#'3'6573#ÙT*Ðçç„>& #4wÇjÞÐ 7&'67&'6'&'6C –/Ð   JÿèôÈ'7#3#3#3#67&'#67'5#535èpffff{K   > ( È    GI  VlMÿóõÍ  &7&''63#3673#7&'&'›$* ''' 6ffX -œE    Í"'%#+c,+/!g !cÿéôÐ$*073&''67&''667#"'6'6'6ŠK  $' - =" 1 41 *> D7 .U YÐ   & .  ( :ÿé€Ð 7#5'673#e  Ð ¢{ 5–„aöÐ73&''67&''667#£;       ,Ð      ’ÿéç\7#"''3255##535#35#ç   00000\[  's -SÿéóÏ(73533#3#3#33#"&''675#535#m222=@77#,!  ;>2³$!0*5a$E[óÐ73&''67&''667#{Q+ ."+ ) !CÐ    Bÿêì_ 73533##"''3255#&'''6T=??  =oHM7  2  W„Î(,<733#3'67#73267#"&55'65535#'665367'5?((0 !   $ 3  Î     " ,   |WóÎ*.D733#3'67#73267#"&55'65535##'66533265#"&5¬**1 #     !1 3 Î     ! # .     ÿçîV 73#735#35#35#'67&',««„„„„„„"!''^''&&VP9   ÿéë›!73673#'67#67&'7&''6Gy ,*=n*2 A@,x@  1 6  % $ÿìò˜&7732667#"&55'75'75'67×bsu &8(PSGJ>[M ).h        ÿëð–!'-7&'3673267#"&5'67''67&'w  +$+7 %  1$ $$­  – L @ N"   M'! "#$ ÿéî73#3#5##5'67#35#Û† Œ{ 2?8{{cN #f1YÿéîË %17&'7'6'&'&''67&'763#5##533ž  O g  a    $ddË #  ;   x {]jÿéíË %17&'7'6'&'&''67&'763#5##533¨  C Y  T     UUË# <   x {^PÿçòÏ873&'73673#3#3#3267#"&55#'67#5367#537#`!  B8:J5  2,+/)+6¯    A  E9(#. ÿçòÐ973673#3#3#3267#"&55#'67#5367#5347#53&'P *  >`WXiN $ V FW[LNY7 Ð   ?  C@!4   ZÿèóÐ973&'73673#3#3#3267#"&55#'67#5367#5365#l  1.08"   4/ *.-/6®    A E8($,   \ïÎ*73533#&'#5'67#73##5#'66556)++  "Ì #/X, 7¸  15&22" ÿçîY"73533#&''275#735#335&'7#6'PPPj30P<>R>>{(( &   &  +Ñe7'67#53#3#735#G ""¢kq‡cc?   $  ÿéõ273533#&'#5'67#b_J7 ;&%: .'L   $# jîÐ#73533#3#3#5##535#535#35#335ceeQQe·dRRc$??S>È  ""   ÿéó&73533#&'#5'67#cfL2 :$$9 ('I    ÿçî8"73533#&''275#735#335&'7#6*NN Pj2/N>>P=82*   # <âs7335#53353353#353#FC0/CHÆT    HßÇ73#"''3267#'667#'6 ¿  D00 ++P$ ÇZ!D02  +& SIæÆ73#"''3267#'67#'6_‡  % C <9ÆY AL? EÿíòR"7&'332765#"&57&'''6¡  !a  nR ? A !& NÿéõÎ=73533#3673#33##"''3255#53567#'67#5367#535#[*++*<;??   MM4  + N7*¶     @ÿéô–7&'36533#&''67#º `BJC5 2G E?–  !=<7<CÿèôÏ!%73533#3#&'#5'67#535#35#335TACC81-$*/,9A%%9$·H !KP)#HM"""EÿéôÄ %*.733##3#5##5'67#5367#537#3353535#a}RdL ,.%8248DLLÄ,+ Y ?(  - ~)mÿéôÏ/5;7'6&'#"''3255'67'67676767''67&'Ë #* &8      (@ [Ï O A  ;! %3! aÿíóÅ/5;73#"''3267#'67#'6&'33267#"&57&'''6nt   9 31;    V  [ ÅZ CM??@ D  & sÿëè¼ #53#=#'#35#'35‡u0/ÑÑgCCCCUDDDDD 8`Î 7#5'673#:  !!ÎhH (_d>òÏ73#&''67&''667#‰U% %# 4Ï #      ÿéóP767&''676''6}  LN 96 P  #%    MiÎ 7#5'673#<  !)Î\? $RqRõÏ73#&''67'767#'6•I %  / Ï       hÿèô‡ 73#&''67&''667#ŽO  !  3‡    # ' ÿédŠ 7#5'673#@  *Š rV pÿêõÏ,273533#3'33#67327#"''67&'#535#7&'433E:9      —=4¼  ¹==#$"-!!  %9$Mÿê¦Ï7&'3#&''67&'767#‚S   %  4Ï%3 )  ˆÿîõÐ #73#'6333265##"&5477#©?E E6  -+Ð$P  Aÿðô|#'733#5'6367#35#33535#3353#XP5° 'IE<EÿéëÏ(73#5##535335#767&''67&'y`–Jr&–" ¤¢¢D˜llg   XæÏ 733#3#5335#3#535#ˆJJC‡0__JJ66Ï ……r_6ÿñòR73533#3#535#\\\häh\5WÿïóR73533#3#535#f555DœD53WÿïóÏ #3767'53373673267#"&53533#3#535#y #  C555DœD5“,  t(<,     5ÿñòÏ!173267#"&5536'33#7'3533#3#535#Þ %+ ($ŸEE;(# []]iäg[à f/'. &fÿïóÏ !1767'53373673267#"&53533#3#535#…     ;.//=<.“+  t(<,    5€ÿî÷Æ73#5#3267#"&5535#€g= " -QSÆp W $-  q=rÿî÷Æ73#5#3267#"&5535#rsD *  1"X_Æp W -  q= ÿèõÏ!%73533#3#&'#5'67#535#35#335dddQD%9 ;%#::"BQd'==Q=¸M'-OP,%MR'''hÿîöÏ-7#"''3265#532667#"'&&55'753753ê   -# ¤T%/ _Xe " bC;E=fÿêòÎ #73#'6333267##"&5477#‹Zc ^B $6?Î &Q  CpÿêóÏ7327#"&''7&'37&'îG   ( ##  “ ;8#!=K )F@  PõÏ73533#&'#5'67#dcO"4 :%#; 7O´(5ML2'ÿñîG 73#3#535#$¹TeÜcQG00"IêÅ73#3267#"&5535#"¬’ 6E L@’˜ÅB 5rKíÄ73#3267#"&5535#rlU ' $4UXÄA 5_ÿìõ@!733267#"&57&'7&'''6‹  (  ;  ]  @;  <  $ `ÿìóÏ!173533#3#535#&'&'''6733267#"&5k5551w25= >  R     ©&&''@ ! ) !6  2Ü‘73#"''3267#'67#'6¿  =^ V Z‘C)> 0 ÿêóÏ/73533#3#535##5##53267#"&55#'665^^^R¶P^Ð¥  % /((¼94!#6)=  /  &+ïÏ173533#3#535##5##5#'665533267#"&5]__Q´O]ËŸ€;) &b   Á  ,)*-  "   KÿèõÑ #'7&''63#3#3#5##535#535#35#˜#, (' & 5K<<1Q3<<QQÑ"&%!WWu$ ÿèõÑ #'7&''63#3#3#5##535#535#35#|4: :6+8 Ng'UUCtEUU,ttÑ !&$!WWu$ ÿèõÑ #'7&''63533#3#535##5##535#|4: :6+8 N***X¾S*ƒtttÑ !&$!?VV5# ÿè‚Ð #'7&''63#3#3#5##535#535#35#G  * A))$6%))66Ð  !WWu$ÿéïÆ'733'67##"''3255#53&'767#„` % .< HÆ]  X  ÿèoÐ #'7&''63#3#3#5##535#535#35#;  !7!!+!!++Ð  !WWu%yÿêóÐ%)-157&'3533#3#"''3255##5##535#35#33535#335Ö  O333. .3/J/Ð !!ˆ  225Ÿ@GSîÑ%)-157'3533#3#"''3255##5##535#35#33535#335à fCDD;  ()(Ð  !!ˆ  336Ÿ@G ÿé‚Ï+17=CI733533#3#"''3255##5#67'#535#537'6'&'&'7'6&'0.-  .2#C  S    Q Ï222%g  SggA$&%*   3   3 ÿéòÏ/5;AG733533#3#"''3255#&'#5'67##535#537'6'&'&'7'6^QhV B! 'AViQh ‡    ‡  Ï111&f  PAG$n&+    2  ÿéßB 73353353#5#BB¬6+77,Nÿçèe7#5##53'665&'Ñ{B+; 8&+'&!-eVEHY   TÿêóÏ'736733#'667#7&'33267#"&5g&IJ$X     –:E@5G  Kh !) ÿè÷Ì$736533#'67#7&'33265#"&5£**( 9   “ m,(`<  Dk & Jÿíð–&736533#'67#7&'33267#"&5T2UW< 40l   nK! =; @E [ÿêõ‹%7&'36733#'67#33267#"&5Ñ[-GJ / ) *E  ‹  K"? F  ÿép#7#"''32655'67&''67&'76`        ' !      uÿéõÏ $73533#'67#7&'33267#"&5":;2 *!R    •::k.(_C   Of  ÿéòÏ'736533#'67#7&'33267#"&5Vnp00 TU•   ' ”!!9G(]K  Rd %   ÿê€Ï $*73#53&'3##"''3255#735#'67&'H-o,^&  %88  P  Ï  =H?  :$B   mLóÐ$7&'36533#'67#332767#"&5Ò  W.BD0 $-E   Ð #4) * qÿèìI 73353#5#533¥ h!IE2N C2Fÿé¤Ï $*73#53&'3##"''3255#735#&'''6}HA ) /  Ï  ;GG  C#;   JÿèôÏ&73733#'667#7&'33267#"&5S6LN4i  –9;E@6F  Oc  †lñÏ%736533#3267#"&55#'67#7&'†#5! "  J °    !" . iŠÓ#)73#53'3##"''3255#735#&'''6O4u+`) '??; ;  Ó"    aŠÓ $*73#53&'3##"''3255#735#&'''6O3u-`) '??; ;  Ó #"    ÿéâo!'+73#"''3267#3#"''3267#536&'3#`R  gœ   œ) Oo" %.E"  5HÿìõÏ #7'67&3673267#"&5ž+ 9%( %S%%- !  ,#­,+0 -0$  \ÿìôÏ "7'67&3673267#"&5¦& . $ !P% %-   *!­)&2 +,$   ÿèóÌ733533533##5##5#'655#53021##12)%##ÊRNNTT||tt E,(; )ÿéÑ›7'67'67'676767676¼ GM _4>%! "+0,%`/8  %  3 ÿéöŒ"7333"'&''#&#"'663267#53&'€R0JJ.=$ F+¢]Œ +  " ÿéòÅ!735#533##'67#53655#75#35#W@­`9 /8>W°EGE‹'::4!' '':' ÿëó¿735#533##'67#5367#75#35#€"V0 "M…(::3)((:(GÿéôÁ!735#533##'67#53655#75#35#G=0P. & $*=†575†(;;/! ((<( Eÿê„Ï 7#5'6r  Ï©„ 0ÿèò‹!733##'67#5367#5365#33535)© aA 01;X[CW?AF‹**"  * ÿèò‚!733##'67#5367#5365#33535)© a? -0;X[CW?AF‚''   ( ‹ÿêô¿733##'67#535#535#33535™P *$ &¿::0&))));))]ÿê–Ï 7#5'6„  Ϫƒ 0ÿéšÌ"(767327#"''67&''7&537&'‘H     #%%!  “ %).& !&%=  ÿéõÏ#)767327#"&''67&''7&537&'ãj" +,: >'MM'  !! ();'$  #"<   ÿèúÐ"(73&533#67327#"&''67&'#7&' RQ    !€¿ ª7&+ 7 %&80?8 ÿéöÐ"(73&'33#67327#"''67&'#7&'…IG     †½  ¨(=* 8! " ) N:  ÿꔆ73533533##5#'67#) !Y----BBA6¤ÿé÷Ð"(767327#"''67&''7&537&'ò&       ›!. ""&2$" 5 tÿèóÏ"(73767327#"&''67&''7&7&'™?@    # &'-Ï# !  *$!5(*  ÿýxÏ733#3#5##5335#311*8"88Ï&'ssR? ÿô„Ï )7&''6#3267#"&553#"''326M  ,1+ $ R   Ï   !$9\ q5ÿéŽÈ7#"''3255##53#3#735#Ž  UAA77ÈÅ  ­Ìß,W5ÿètÆ 73#735#35#35#'67&'UU------ = Æ£sMM6   ÿõ’Ï!%+173533533#3#3#5#535#35#35#35#&'''65eOc $555555<   ¼V;MV44)   ÿéÍ;76767&''33#3#&''67#535#'67&'767#^    :5=01# +,-  $Æ  3+ + "!!"    ÿé•Ð #+/7&''6'66553&'73'#335#5##535#P   0 ,%BBBB111Ð u." !@ J:-D D' ÿéòÏ/37;?CI73#67327#"''67&'#7#5'75#53&'35#35#75#'3#735#7&'«B@      #,+a555555^^99œ  Ï, "+  ;V _"*q6;ž9  ÿé“É%)15973#67'7&''6767&'7''63##5##535#35#~~  N  S‡‡{KKKKKÉ!   ) aa$5 ÿê‹Ç #'+73#3#535#35#&'7'6#5##535#35#t"'~% 0  h =====ÇEEEE   Fff$6ÿë‘Ï !%)/573#5##53&'3#3#535#35#33535#335'67&'R6Z6L.m.,H,;  8 Ï +,1\\6:+   ÿé˜Ï.=CI733#3'67#73265#"&55'75#'6553375367'677'6'&'B@@?,!   +  0:< IÏ     D8- ,5NUDA= A  ÿé–È #'+/73#735#'3#735#3#3##5#535#735#33535#335Z;;Z;; u088<<22O2È11/V((34ÿé˜Ï/3GK733#3'7#7326567#"&55'75#'65533#3#7'7&'7767#735#B@@?  +   +hh_ +5 B;;Ï   I:0 /7SL +    ÿémÏ!%)7373#3#"''3255##5'67#35#35# .39   '  $''''°   5q %CBsÿèöÏ &*.473'33#673267#"''67&'#7&'3#735#'6tB,+   Ci  V77+%(©&&A#5!):+477 EC#;   ÿé‘Ê #BFJN73#5'675#'3#5'675#&''&'3'73#3#3#3##5'65#5#35#U7&?8'Q   2   $$($$##&Z 9"""""ÊR  R      6 ^ÿèòÂ$73##"''3255#'67#53535#&'Ë''  n!!%'mm8  ÂgF B8( -(ggT ÿéÄ!'73##"''3255#'6655#53535#&'ˆ @ @@ Ä`Q M <" 1 ``M  RÿèðÅ$73##"''3255#'67#5355#7&'Ý  EXDÅdJ  E;+ /,ddQQB ÿéÄ%73533##"''3255#'65#75#7&' Z  3]3 accN J;# =PPB¶ÿé÷Ê 7'6'6'6à  ! Ê * (% / Qÿç»Å &73##"''3255#'655#53535#&'° (((  ÅaS O =#!>aaN nÿéóÅ$73##"''3255#'67#53535#&'à 666 ÅbN J:. 0-bbO   ÿéià &73##"''3255#'655#53535#&']     Ã_S O <"!<__N I|Ð#'73&'73#3#3#3#5'65#5#35- \ )Ð H yIêÐ#'73&'73#3#3#3#5'65#5#35› \ *Ð H ÿóyÆ73#53#3265#"&55#7#65&K]e   %!Ór  x<9#˜†+ ÿésÁ73##5'67#&'b%)I Á ´|"-I4('%7ÿéðG 7'667&; '$> ;% #! !+qÕÇ 73#735#35#+ªª€€€€ÇV43ÿèxv7373&''67&'67#367& /   3Z )     yÿéón733##"''3255#53567#ƒa44  22Gn . + gïÏ7##5#53&'73##''67&'ŽIb_JV›¥77  7/ WÿêñÏ17=7'6&'#"''3255'67'67676767&'&'''6Ñ 1; 5;       )0)!V Ï P ?  : ( 3    ÿïó_73#3#3#535335#Ï]LLhæ**\_33JcòÄ 73##5'67#&'×a"5 A^. -ÄN8 !tò 73##5'67#&'Ö]!?>W–' &Â<2 ÿèÚo$(7#'6553#"''3255##5#;5##;5#t:±   >99>>99>> %7k+o"  våÑ 73#"''3267#'67#'67#'6I‘   3,">5")Ñ6 "  “ìÑ 73#5##53&'a³aÑ --'ÿêÕe $7#"''3255##5##535#35#35#35#Õ  :;;;N::N;;N::ec  """{$8mé¦ %7&'&''332767#"'"&5''6~  W p ' ¦        !ÿïÞ¼ 7#5##535#33535#35#Þ•@@U@•@@U@@¼ÍÍTAAA”@@@ ÿèàÏ 7#5##535335#33535#35#à–UV@@V@–@@V@@¢ºº--J777€777 ÿéãà &*7#"''3255##5#'665535#33535#735ã  AC @@TA–A@TAü+CC*% 1"]<)))e) )) ÿêòÇ'+/487'66553#"''3255#327267##"&=#335#355#9 µ  =  * <;O;Î ¬  )BB&# 0?KD###Y### ÿéáÊ$(,04733#"''3255##5##53&'767#35#35#35#35#*¤A  CDV ƒDDYCCYDDYCCÊŠ  88;¥  UCÿéïÒ&*.267&'3533#3#"''3255##5##535#35#35#35#35#¯ ”eddT  @@Te%@@U@@U@@U@@Ò  !!†  ,,6Ÿ@E"ÿçÜÆ 7#5##5##535#33535#35#Ü????S?’??S??Æ£LL£@---m--- ÿëó" 73#53535#35#35#Úæ##5$$6##"%%%(è©!%)-7&'3533#3#5##5##535#5#'#35#'35Ÿ |]^^N::N]«:::N:N:©   M M $  ÿè•É 73#735##5##53'6656&'%__99SF,  !ÉA@^LM_ 2 !5 É©73#735##5##53'665&'Pbb>>WL-H &!©3,>-->#   VÿæöÈ73#735##5##53'66&'zff@@[M/)0, "ÈAB[JL] 82'  ÿåkÃ73#3'67#&''67#Y*/"7  Ã1M( @F -: ÿè€È73#735##5##53'66&'[[77PB*  ÈA!B^LM_=0&  ÿêŒÑ $*73#53&'3##"''3255#735#'67&'R0x1c)   '>>S  Ñ  >I?  :#B   ÿéæÁ#'7#"''3255##53267#"&553'#3æ  ¤C#  .*kCCÁ½  ¥ÅØu% qI6# ÿéôÐ73533#&''67#&'bab,? @(R Y_dš6(a'+WO3:Rc  =ÿéõÏ73533#&''67#&'NDKG4.D K CQ ˜77[-/LJ18Rd lÿéôÏ736533#&''67#&'t-72 /%.0,;  • U2*FA/-\i ÿçõÏ736533#&''67#&'‡&-* ) % )%:‘""S1&<8,/XfwÿéòÃ7#53#3#3#"''3267#533ª3{3,,.   ^±#$N 7N<lÿéëÃ$7#"''3255##5&''67&'76ë WR   ÿ  ¨ÈÚ&  jÿéôÃ73##5'67#&'v}. 0:VÃ¥|$4E5)'%pÿéîÏ7#5##5##535335#335î!!55!!5!¡tVVt..P===oÿìõÏ&73#5#3267#"&55#5335#53533#3Î  *22;;ˆ_3 9P?S S~ÿòôÆ 73#53#3'35’bvq]NN:2-Ô.SA..qÿèö½73&''67&'#367&'xp"  !     ½U:  "!1LC&18 vÿóòÏ73533#3#535#}-,,4|4-†IImmwÿèðÒ7&'3#"''3255#3#Š 0G  42Ò Å  ­¹JÿéõÏ736533#&''67#&'a5@93 /C D4D  $$\! QJ&(Wb jÿèíÏ#7#"''3255#&''67##53653í  $ $9©¨  ‘  "C¯ÁÿéùÊ!'+7367'273#&'#5##5'67#3&'#35#W#'YY '/vB1 {7I5„'{{] Y .Z2ÿéðÏ73533##5#'655#535'6ˆ J22J? 7;;>Ë<``ssC*&67 WÿéñÌ73533##5#'67#535'6§ * *+' %Ë=]]ooF-):5 ÿêïp73533##5#'67#535'6‚*J11L .& 9;+8p..AA*+tÕÇ 73#735#35#+ªª‚‚‚‚ÇS21\ÿéñÌ73533##5#'67#535'6© (()% %Ë=]]ooG,(;6 ]>ïÍ73533##5#'67#5365'6­"*+ !" )Í "<<<<+  ÿéóÏ73#3##5#535#'6B‘Qddnn5!ÏBbbB# (aÿéòÏ7'673#3##5#535‹  Y088BBŸ"2 AbbA ÿékÏ73#3##5#535#'6(4(( ÏCccC $[ÿéóÎ73#3##5#535#'6€a399FF" Î @bb@ #€ÿéóÏ73#3##5#535#'6žD&,,11 Ï CbbC GÿöÊ7&'37'5#c  * Ê :n  qUÿèòÆ &735#53#535#33##"''3255#53&'eej~~jeP((   ``5  ža07  3OÿéóÊ)7#5##53#3533#3##5#535#'67#536ït: U_ .;;EELLB!,Ê-,..8ÿë§Ð7&'3#&''67&'767#y^     ' =Ð&*  +/’ÿéòÐ73#3##5#535#'6«7""$$  Ð BaaB "Eÿé“Ð 73#53&'3#3##5##535#lN @@@@@Ð >U V8&2ÿçðÑ/PV733#3'67#73267#"&55'75#'6655335'673673##"''3255#7&'‹LLO ;)+ % ") <(=,?5 <   =%Ñ      F;, +Q„  )  kÿéòÏ7'673#3##5#535’  S-44<<  !7 BbbBfÿçóÎ73#&'#5&'75#'6556Þ &2]$  &7Î *7 :I ))4,'+xeÿèöÈ7'6553#&'7#3j $ ) BBdP,%UUdJ [Q>lÿëòË$733#353#3267#"&55#5335#53¢==0   -66Ë[AR/  5RA[T ðÏ73#3##5#535#'6{b4>>JJ" Ï 6JJ6 NðÍ73##5#'6556Ú 0?y*:EÍ %cc3*-1< ÿéïÏ %73&'''67&'#'655667Ð DZ—.-  ()"`2%&Ï):+    3<2.2fO, 'aÿêòÎ"7'655673&''67&'3672*(0W   uQ7 5X6  %9+() ! ÿétÏ%73533#3#'67#53655#7&'7'6%##&(  '*%  R  NN, #P QÿêóÎ 7'655673&''67&'367ƒ8/,6` uR6 5X6  %7,(*#$?ÿêóÎ"7'655673&''67'&&'367r  @64>n ' $  uP8 7V6  %:("#eÿêòÎ 7'655673&''67&'3673*)0W  uN5 4U5  %;)(*!"oÿéóÐ!73&''67&&'#'655667Ý)1W   3 Ð '=* 2V6 9Y7O##’ÿç÷Î$)'655673&''675'&''&5767¡" 8      7\8 )<(  s$"UÿéœÐ733533#3#5#'65c ( È;CC)M<5$ #4 ÿéfÅ 73#735#35#35#'67&'QQ------ 3  Å¡qNN3    ÿègÁ7#5##53'>&'g.!  ÁЉœ'O0&  "+0   ÿìxÀ7#5##53'>&'u5%  À™†‡š&N-'  ").\hÏ73533#67#"''3255'75#&     *&·  __õÏ(733327#"&'5#&''67&'767#53‘+      Ï1       ÿèòo#735#535'673#3##"''3255#hSS(#k6.PPhh  h$   ]ƒÈ 7#3#3#535#35#5#‚&$"%jCC È-k-.ÿéôZ"73#3##"''3255#535#535'2Ö &.WWii ggXXX^Z      †]ñÆ7#53&''67&67#” _  !1µ (    \˜Ñ.73533#3#3#"''3255##5##535#535#'6+00::2  0==  Ñ     ,   ¦`äÏ 73#"''3265'3#Ñ   +ÏX FGJÿî¶Î#73&'7'#"''32765#'667#'6l *    Ê&!7 A! `! K670/+ bóÏ#73#3##"''3255#535#535#'2Ò $+TTgg  llYY&,XÏ      ÿé}a"73#3##"''3255#535#535'2t((..  00**'2a      ‚ÿéóa"73#3##"''3255#535#535'2ê((..  00**'2a      ÿè¡b 73#'3'6673#Ž]-bzz8/)-kÿæ¦U733#"''3267#7#'667#v !  # '$U#3 #$*!ÿéöÑ 73#'63#3327#"&'#>ž¦  ŒÑ $98+0CÿçöÐ 73#'63#3327#"&'#;¡« œœ°œÐ;;"33GGð "7&''6733267#"&57&'v :%   *$   #+  0gÿìñ~73267#"&553#"''3267{ - 7&u  le  }A (ÿèV‰ 7&'&''6.5‰     #  ÿ鈓#'+73533#3#3##5#535#535#35#33535#335211++4444++2*A*‡  C  C ( ' ÿìóŠ7#3267#"&553#"''326Ò/  " U   xq   ‰Hmÿïõ‰7#"''3267#3267#"&55ß   I ,  6.‰B#,k   ‚uÿïñÃ7#"''3267#3267#"&55ß   B $ )#Ã_#I¥ %! ¾ MðË'+7367&'##'325567#3'67#3#- *8 {T: 1>››Ë  +& , (=.ÿëíA7#"''3267#3267#"&55Ì   u2D N>A! * ?Dÿëä87#3267#"&553#"''325ŸG +4  ?8o   ($7 ÿçë  #733#3#5335#35#35#'67&'oOOV±H4‰‰‰‰‰‰% 5+b#( )%   jj+,"    ÿêê¢#'+73&'73#3#3#3##5'65#5#35#<6RPFFFFTªVAAAAA¢   h #** ÿê¡Î"8P73533##5'67#7'6'&'&'3'67#&''635#53533#3##5#'::: *q L  U H% 0  B"" %£++.&  <  ;   ,16  ((Iÿéð‰7#533#"''3267#7#'66vw +  . .w3I!03A72ÿéR‘ 7#5'6?  !‘z\ &hÿèóÃ733#"''32767#7#'667#z` %  & #ÃDdJD`KG[3ë«,7#"''3267#5336767#"&55'753753×   +' $" F0'™?! B= ; <(# '"H Ü«7#"''3255##5##5353Ü   ,,@ŒO  8mmVh\ÿíóÊ 73673265267##"&55'67€&$/  *   ÊU% / N 0 I ÿìôÍ %73#5'675#53736732667#"&5T"& CC;" #* Íá7D:Ka  9 ç¯ !73&'73#3267#"&55#'667;DB›x /•  D  7$  *3 ë±  ,87&''63#3#735#73#735#&''67&''6Œ%. 0'"* > PPBB=BBM  ^  ±   + +     ÿöñ¸ 7#53#3#.⯤¸¥œ 4äÂ#'-373533#3#535#735#3353#735#35#35#'67&'C>>>O°M>,,@,}iiiiii P±# 2O7    ÿðîÊ7#3#5ãµÀÕʸÚ/ ÙÂ+/377&'73#'65535#53#"''3255##5##575##5##5#† ?ˆu\  J§  3- `f(^H !!!!7ê«(,73533533##5##5#3673#3#5'67#35#:(5((5(<bl^u 04QQš  ;% :ÿéñÏ 73533##5#fhhfNN……bÿòîÇ7#3#5çqxŒÇ¯Õÿêí 73#5#533ÙÆ²Ž¤—„.ÐÄ7367&'##'325'3'67#{  G: '&ÄD #(9  j25;ÿéát 73#5#533ͯ›sŠ o<ÿé£Ð73#&'#5'67#535'6˜ !!!  &&*Ð * lf!$0%ÿêèÏ7''6767&'®# QQ 6 ),@Mh6? Q{Š9'!ÿçòÈ!%73#67&'7&''67#53535#35#35#É)†A3  FUE*iiiiiiÈ„    „-FE ÿèíÐ7#'66553&'7í¶ _ ²J?. -V 9ÿêïž73533#&''67#@GPH: 7A DEl22CF9$'78ÿèñ¢ 7&''6&'3'67#‘', *+"- > 0Œr¢ %"  # ;ÿîê›$733#353#3267#"&55#5335#53ƒLL,@  (@,HH›>*<  $=+>&òÈ#7#53533#67'7''6735#35#35#RD)“(†=1  FTkkkkkkX^^    c.. ÿñóÉ732767#"'&55'753ñ… ()93ILŽ]&_LIÿéïÁ7#53#3#"''3267#'66QAߊq  ^"&®i(S.;B ÿêóÉ73533#&''67&'7655#xHI0= ?2$= ; !wž++ 2#"!)$0ÿéïÁ 7#53#&'#n\Ým1"!$®8vÿêîÁ7#'>5#53##ž8#  AÝ<®L#2'1NÄÿëêÏ73#"''32767#5333#H—! —¢Öšš—/Y$ ;z%cÿêìÇ73#3#"''3267#5335#365#Øf[  ¢5^rFHÇ&y*aNeeÿëìÇ73#"''3267#5335#53#3†b" ®8^ØfRy(I1VCc(ÿîïÄ 733#537#537#37#37#,ª(Þ5 ') 0:UQYUÄÃNOOO°NXÿêôÏ/733#3#5##535#533567#533##"''3255#š99@k?99BH HaBB   HÏ$$„ & " ÿéô¤'-26733#32767#"&55#'67#5'6367#367#3356/ $ D O) / ( $ $ "+¤ =*  /7 (5  6 sã˜73533#"''32765#'67#ˆ*  8 2W8K @[ÿêøÑ$*/4733#3267#"&55#'67#5'6367#367#335? .+  / )' #- 02'Ñ K; # A:,E  @'jÿéðÄ73#3#"''3255##5##535#j†94     49Ä%i  Qo‚%rÿééÐ733#"''3255##5##53£2   1Ð%|  d¯¯”ÿéâÑ7#"''3255##5##5353â  CCW«‹  s¯¯£&& ÿéòÎ 733#3#"''3255##5##535#53yeeW  CCWllÎd  L‚‚i|YÿèöÁ73267#"&55#'655&'Ñ   0 "-  Áº ! ¬H-:$SR=#$&"RìÐ &767'5673#23267#"&''3&'0) ]T ''UN "-RK#Œ%   f   &%  ÿéðÑ)73673#3533#"''3255##5##5'67#I  ~‡ 4H  43 (?®&&R  :rr]W *4ÿèçÈ7#"''3255##5##535'27Û  <<P)/bc *2‡j  RŒŒk~#$ÿéñÑ#7#53&'73#3#"''32655##5##53vgf fgN  ::N›"\ D}}cvrÿéêÎ&735#53533#3#3#"''32767##5#535#y'..44--6",,'< VV"ÿéßZ7#"''3255##5##5353ß  @@TH8  LL>QrÿèõÍ733#&'#67'5#537'6…V4* 2  FÍZ? M]  jU) ^ÿèóÏ)-7533'67#3&''67&'767#'665535#¦4 -   D ¯ 10$    ;/ ,TD1TÿèóÏ)-7533'67#3&''67&'767#'665535#¡8 #1   J ¯  11#    <. -TD1Cÿé¡Ð(,7'6553533'67#3''67&'767'5#c    \B1 6D@"" 3 %    33ÿéOÏ73533#&'#5'67#   ¢-- }s ".fÿéïÑ 473&'73##5##53&'7367533##'2655##5##5k27„c" *0  ¹  #((   2: &XX?PXÿîñÂ1573##'325567###535#73''67&'767#3#a}  b0F6     "`˜˜Âr y "d nR@,! y ÿèóo73#3#&'##5#'67#535#735#,¥HeJ!. ;#$7 . HcIo5  33   ÿé…7&''67&'76n ()…1 šÿê⇠73#"''3265'3#Î 4‡‚ i[{íÁ7&''6767&'76Ô Á2%!"!)&! XÿìõÍ!7353333267##"&547#'665#_%<     &2 %00U:  1Mo)?;>ÿëôÎ!73333267#"&547##'665#53z>    (B $%Î1W<  4Oq)A:[ÿéôÍ7333265#"&55#'665#53ˆ1   Í0 ! ‚G"&A< `vÏ7365333265#"&55#'67## ²  1  %," ÿéwe 73533##"''3255#&'''6)))  )S  3  SC @  tÿéóÐ"&*73&'73#3#3#3##5'65#5#35#”  $!!!!&X 1 Ð'"""‡ /*""3""3"qÿêôÐ#bfjnr73533#3#3#5##535#535#35#3353#35#53#3#3#3#67&'67'5'67#535#535#535#735#35#5#35#s666--9c7--6/Q*  '!!$-      ,!  /È !&&! 0          1 ÿépÐ  $(773673#735#35#35#3#735#33535#335#53##5#'6)S//////ZZ$6$8a  Q9   ;$  1,, ÿé{Ð !%)873673#735#35#35#3#735#33535#335#53##5#'6.[666666bb(>(>m ÂQ9   ;$  1,, uÿçôÏ #<I73533533#735#33533535#335335#3#3#7'5#'655&'76„jJ^UU_C  _  # ÁI++*  - 8" %6K  ( iÿèôÐ.6:>B733#3'67#'65533267#"&55'7533#53535#35#35#§((9U/,    2 l,,,,,,Ð   G9/ .6Q!   4QQ))zÿíôÐ !%8<@7&'67&'67&'63#735#3267#"&553'#37#3•   .  0   LWW55" -% a8'Ð        2-e U:+vÿèðÆ%)-373#3#"''3265#&''67#'67#735#35#33#…`8 M     ::::>PÆSVB      21X(xÿé÷Ï37;A735333##67&'#"''3255'675#535#535#33535&'‚%,,     &&--%7J »%$   $(   1%2  wÿéìÐ73#"''3267#'6##535#˜K  @ 8&Ѓ #)SeC3 ÿé‘Ð !%)873673#735#35#35#3#735#33535#335#53##5#'6!6lFFFFFFvv1O1L„$!ÂQ9   <%  1,, ÿêòÃ73#3##5#535#”X!''((#ÃIllI ÿéóÐ !%)973673#735#35#35#3#735#33535#3353##5#'667#.9W¤ ¿¿BBUB—BBUBÁè9FCÃS;  ?& ! !&& =ÿéòÐ !%)773673#735#35#35#3#735#33535#3353##5#'67#X1<[[[[[[šš00C1t00C1—µ0+2(4ÂQ9 ?& ! !''# VÿéôÐ !%)873673#735#35#35#3#735#33535#3353##5#'67#i+8vPPPPPP††&&9'`&&9'~ž(+#%ÂP9  =% "(( `ÿéòÐ !%)873673#735#35#35#3#735#33535#3353##5#'67#q(5pJJJJJJ€€$$7#Z$$7#v’"( "ÂP9  =% ! !(( ÿçžÐ !%)77#53675#5#35#5#335#3535#3##5#'67#‹m 'GGGG~7$$4$4$$$O‘ ''"ÃRR == !((#FÿèéÇ733#'3267#737#3#[{" $ j  7 ewwÇe229XCR„mÿèïÆ733##'276767#737#3#tj %d /U\\ÆiS" +XCV„ÿéé733##'2667#737#3#&—4(¤ Z€››?<2.R„ÿèîŠ733#"''3267#737#3#ˆW L #BEEŠF@(9&4YÿëêÉ733#"''3267#737#3#+ž ,  “T‡ššÉhS#5ZEU‰ ÿêvÈ733##'26767#737#'6ZJ #F8!ÈiQ$ (ZDV|  ÿênÇ733##'276767#737#'6PA =1ÇiQ# *ZEX}  ÿêiÇ733##'276767#737#'6L=9-ÇiR" )ZEX}  ÿééc733#"''3267#737#3#&–4  ¤ [€››c/3+>ÿéél733#"''3267#737#3#&–4  ¤ \€››l28. Bp…Ñ736533#"''3267#'67#&4  #,%#¾ 3 &ÿêdÇ733##'276767#737#'6H:4+ÇiR" (ZEX}  @ÿøºž7337#533##'32665#3#Y%EY VVV|'7IB" ÿ耒#'+/73533533##3#3##5#535#535#5#5#35#335"))++55))J"*‡  .  . ;sÿèöÏ73533#&''67#z,63 /# ) 2,’==T1(?>)5PxÿóòÆ7#3#5&''67&'76îcgz\   Æ®Ó%%  % [ÿéò^7&'36533#&''67#ÌV9;>% "-7 5^     !dYõÏ73&''67&''667#E  %'"   ;Ï      ÿèÖU7373#"''3267#'67##C[ ME :<@ >#5 &+ÿèÓN 7#5##535#33535#35#Ó‚77J8‚77J88Nff';RïÑ7'673&''67&'67A p9 @%-= 5&” %     !ÿûëÇ73&''67&''667#Vf $75')8 6% & "WÇ=!  1%/ÿèñf73&''67&''667#] q !5A*,9 4% 1;]f    - VíÑ )7&''67&''63533#3#535#> ~   ŒQSSc×`QÑ      'AA ïÒ;@PTX`fl73#3#53&'#53'367#35#5'67&''673&'3#3#73673#3##5#535#735#35##5##53'67&'G% ^# 92    7  @!5w# «O!))((////¶=&F ? Ò   ,  /    J /:  $ '), ÿêì !7&''&'''6733265#"&5Í  6M + " ,#        JÿæóÑ3=GMSY_733673#5##53&'733#735#3#3#3#535#535#73&'735#336735'67&''&''&'•  ‚% 1ssQQ ’@@@K¦I??@  0Bv ˆ    Ð   # !4    V        +òÏ $(Y]aek73&'73#3#3#3#5'6353535'3533533##3#3#3#'67#53655#535#535#5#5#35#335&'Ÿ ##c  ¬(!))--7; &  (1,,))N(*  Ï  V  $%o$    $+ E \óÑ73&''67&''675667Xk(/ ;*,< 6&  Ñ       {~óÔ73&''67&''667£=   Ô       |ÿéóJ73&''67&''667# ;     % . J       _gñÍ7'673&''67&767{ I ($  —     aÿêãb)/573#"''3255'675#'3#"''3255'675#&''&'¨;  *C;   *P 7 bd  #d  #    ÿê[Ð 7#5'673#:  Ð#¢| /ŒRÿõòË 733#3#53‹NNR 9ËFj ZóÏ 733#3#53k``sæ^Ï#- ÿïòW !7&'7&'''6733267#"&5  ] • /  -#W  ( 7 \ÿõòË 733#3#53ŽKKO–2ËFj\ëÅ 73#&'#5#Ój/! !"UÅ-VÿéîW 73#&'#5#Þh/) ('dW  :\ `{Ï73533#&'#5'67#,&&  #³  +/v`õÏ73533#&'#5'67#*.%  ³ 00ÿéî} 73#&'#5#Þg.( '&c}R7ÿôÁ] 73#&'#5#7ŠB! 4]  :XÿéìÊ "7##535#35#7'3255#535#5#uN::::Å'"O<<<<Ê\…á&:7Ä b\&:€îË 73#&'#5#Þh.)('dË  #: ÿçúŠ-15<7327#"&'#'6553#&''675#535'235#35##67&'Ö Ž 1  2<111:#0$$ ŠHH-.d;0& &.D/ / < RÿèöÊ 7&'''6à ) / +2-Ê<Aœ“JClÿéòÏ 73533##5#l;77;NN……Iÿè÷Ï7&''67&'š)%/ 0( Ï&j7 dT11["gÿéðÀ73#3##"''3255#535#qt.99 <<2ÀAV  QA]ÿîõÐ $73#'6333267##"&5477#Xa "]K   &=@Ð "!P  AgÿéîÊ7&''67'67676767&'Ë-5%"!" +3& 9 '  %8%C:$[1cÿéôÆ733##"''3255#53567#ss>>  AA[Æ\ Y!UÿôöÏ73533#3#535#e8<3 AC   14¤  <P  T ÿîßÅ73#735##53#=#/  xx¿—ÅR,­mn11]ÿêñÍ 7#56'&'ß "(VÍ/‰’#+ ÿéäÐ73#"''3255##5363#735#f w  ž9 cc>>Ð ©  ‘°ÃCV2ÿëòÎ#',73533#3#&''67&'767#535#35#335cccTV1LP74, QTc#@@T@¹K   KN% % ÿéíÍ73#'66556#5##535#Õ E^±± kJdddÍ B85D9lmnI6 ÿéãÏ#733#5##5'67#&''635#er%U|y‰2h :yyÏ:h]A  !Ÿ3ÿççÇ7#"''3255##53#3#735#ç  ¦&ƒƒ iiAAÇÅ  ­Íà/N(ÿìõ¿7367&'327#"'&'#   ‡¿ W$5!-r8í73533##"''32655'67#?O!!   0 0?Œ!!M E4 !%ÿéíÏ73533##"''32655'67#’33 :G N<Ž¢--Œ lC%(K<ÿì¢Ñ$7#"''32654''67&''67&'76Ž (3"  Ñ'>'( #  jÿéòÏ73533##"''3255'67#yF #% /&F¢--Š  ^?!)O4ÿñÈg73533##"''3255'67#=P(( 2 .>U9  /$:ÿøÅ¦73533##"''32655'67#@I(( "+#H€&&\ 9(0MÿèôÁ73265#"&55#'655&'Ë 72  Á¸  ªG/9$SR="$&! \¹ 73#7'675#I")¹~  „QÿèöÁ73267#"&55#'655&'Ï  5 $.  Áº  ¬H.:$SS=#$&"AÿèôÁ73265#"&55#'655&'Ë >$6  Á¸  ªG.9%RR="$&!lÿéöÁ73265#"&55#'655&'Ô  + + Áº ! ¬GS+$RR=#$&"KÿèóÆ'733&''67&''667'367#67#'7#co,  !# $3Æ2D##A,;3 63 *3 ÿèôÆ!733&''67&'767#'7#'67#˜?'*' !2 1 4A> 7,Æ2@%" #'2’82‡cÿéóÆ#733&''67&''667#767#'7#va &   +Æ3E$ @*G^53#-4ÿèõ"7#533&''67&&'767#'7#'6E/ª 0+.7#!1 - !" P 2.n.    O2,LÿéóÆ"733&''67&''667#67#'7#cn-  !#%5Æ2E"!B,F]74 (3]ÿéóÅ!737#53#33#537#35##5##535#j /J=–!(5.NSSS˜4"""FW W8& ÿèïÏ7Q736533#"''3267#'667#36533#"''32765#'67#73733#"''32767#'67#Hg  T, * D (.   '" %u 5   # '" ¾ 4    W L .=0Q ,>0 ÿíÄ73#"''32765#'67###535#p  #.)$hL88ÄJ $;!,_VeC/ÿéïÆ7#"''3255'7567#536íd dh)!˜³$,5oR L  "ÿéîÆ7567#53&'#"''3255&'" 4)!˜³$,!B 3& =&€/+  < >ÿéïÏ 737#5'7'&'&' 9;…ˆY"  $#χLJw*ÿéðf 7#5'753'&'&'î;‡Š]  $$"  IGE   nÿéõÏ 7#5'753'&'&'ó#JMH  OLIІs,«ÿèôÎ7#5'67536'&'&'ñ0    EE?”Žw;¦ñÍ 7#5'753'&'&'ï'*.  g40  miW   %   nÿéôÏ 7#5'753'&'&'òLOJ OMI‰†s,  ¡ÿéôÏ 7#5'753'&'&'ò*.5  CC>  ”w  2  Tÿé«Ð73#&'#5'67#535'6¡     #Ð, gc$.&BÿéóÎ $(.4F73#32767#"&55#'67#53635#3353655#3354''6767&'u &' * &  )  7  Î fJ NC :f9F  M  €ÿéñ{7&'#5'753'&'˜ cADL {  >2/  PM'  ÿéy"73533#&'#5'67#7'6'&'(''  %P  >  L3395 ;    zîÑ 7#5##53&'7'67&'î¶c+#1 -].& (,½%&      |ÿéó“ 7#5'753'&'&'ñDGB  ;;8  `\[     ÿéu–73#&'#5'67#535'6m$$  &."0– MO & ÿíóË733533533##5##5#5335#35#+6666K66½;II==‚ ‚ubbb_ÿèôË15973533533#'3255#'655#'3255#'655#75#35#b 8 9       0Yk````V  Q?##> V  Q>$"? OOOOKÿèòË15973533533#'3255#'655#'3255#'655#75#35#O >?  8hm^^^^W R?#$= W R>$!@ MMMM NÂ73#3#67'675#535#? " Â:B H:WÿéõË!%,73##"''#5##5##5#53535#35#335#325ê   && Ë]Z  eeess]]KKKKK]\ _ÿéöË!%,73##"''#5##5##5#53535#35#335#325ê  ##Ë[] fffuu[[IIIII[a ÿé¯Ì"&*73###'2655##5##5##5#53535#35#35#   &&Ì`W R____pp``NNNNNÿè¬Ë15973533533#'3255#'655#'3255#'655#75#35#9 9       8ZsXXXX]  X@""?]  X>$!@GGGGÿèóÌ37;73533##"''3255#'655#'3255#'655#53535#35#tQ   (&&&e((Ì___UO=$#> S M>#">__KKK ÿéöÌ"&*73###'2655##5##5##5#53535#35#35#ß &%%%%8%%8&&Ì`V Qaa``pp``MMMMM RÿéóÐ#+37;?73533533##5##5#3#735#335335#5##5#5##535#35#35#Y%%%%%% ~~##}…FFFFFFFÁ / -$%bb $ % fÿéóÄ73#3##5#535#n~5<<==5ÄImmIiÿêîl73#3##"''3255#535#pt(22  ??8l(  % uÖÉ 7#5##53#3#ÖŒ#qqqqÉTBBT ÿøbg 7#5##535#b$$$gloL;XÿéðÀ73#3##"''3255#535#d€4@@ DD8ÀAV  QAiîÒ 73#5##53&'&'''6„_³d1&! %. ", 2Ò ++ , ÿêîl73#3##"''3255#535#-¦Faa  ffLl(  #[ÿéòq73#3##"''32655#535#f‚3== FF;q * ' ÿéWx 7&'&''67   0x     ÿénÑ73&'73&'#5'67#!   )=° !hc @UÿéòÎ &7#5'673533##"''32655#&'‡ "4   4   Î!£ ,77 { ÿèìw73#3##"''32655#535#)²J[[ jjTw!. *!zÿéðÀ73#3##"''3255#535#ƒc%// 33*ÀAV  QAÿêŒÃ73#3##"''32655#535#v.22 664Ã>[ V>ÿèðÊ73##5#535'6Ï?ffee!, xÊ>rr; SñÐ73#&'#5'67#535'2Î $+`N"4 8%!8 3#M]"&SÐ #1/ÿéð[73##5#535'6À!#ffff@ f[ ++ÿéïƒ7'673##5#53v$% y0$+eeeef )CC—òË73##5#535'6à &&"" $Ë6[[1ÿñàÌ 7'6'66'66­ .U Y2 0^ 8<3Ax HOÌ( "0  )9 ÿöòÎ73533#3#535#[]]iäg[ˆFFllzÌ73533#7'675#('')-7(”88N SmÿéêÏ 73#5#533533Öi !š±¢ÄÄWÿêóÐ73#'66553&'° 2i!5ÐI<0 , U FÿèñÅ #7#'66553533#"''32767#'67#ñr&!3  1+ÅQC4 0#^G$$o# K]&!SYÿõöÄ 73#735#35#3#nuuMMMM)ÄœW2v1ddÿîóÏ %7#5##53&'736732667#"&5îb> 9' !/   *"¬22 ./ . ' KÿêðÇ %7'66553'#33673267#"&5~"zUUC! !'  $ D5 3!_F5$'  -   K¥¹73#67'675#QN&0¹z €¢ÿñôÁ 73#3#535#¤K RÁªªEÿù§Ñ 74''675#53533#7&'75##5#– #)  4 4^,,^/ )::::@‰¹ 73#7'675#EB& ¹y  €fÿñóÁ 73#3#535#p~6;>4ÁªªUÿñôÁ 73#3#535#[”@EŸF@ÁªªmÿñóÁ 73#3#535#vw28†90Áªªÿõ|u73#67'675#c(/9'uJ O‹ÿçêz7##53#"''325Ö7_ g€“f  …óÈ 73#3#535#'²NhæjPÈÿæôÅ7#5##53'6656&'ÒuB187,&,+&2Å™††™-5*92': ÿæéU7#5##5'66&'ÏxI16 3*/) ,,UD35F"&  ÿçìÏ"(7#5##5367#'6733'6656&'ÕyQ D!1O 'i 8*'''"-Šr__r$$'> $*ÿççÏ 73#5##535333'6656&'‚S‚Cctd6(+&%!+§kXXkBA'> $€¹73#67'675#d*-: &¹~ ‚iÿèíÍ7&'73#"''3255#3#~ .Q   ?3Í Á  «·~Ô¢7&'#53#&''67&'76ª-R     ¢  . bÿéíÐ7&'3#"''3255#3#  5J  7AÐ Á  «·TÿèìÎ7&'33#"''3255#3#k  3^  L:Î Á  «·oÏ’7#53#3#3#535#53–Q &`'#""}ÃŽ 73#735#35#}FF$$$$ŽtB"T"y ÙŸ!7&'33267#"&57&''6§   *  2 Ÿ#S U"ÿææŸ7&'73'3255#3#:  9‚ #oHŸ   ™ ‚ –3ÿôÀ#'+73&'73#3#3#3##5'65#5#35#]+-$$$$,a1#####   T @ÿëô¸7&'333#"&''75#_ ( -1 :!  ¸ 7c  UzîË#'+73533#3#3##5#535#535#35#33535#335z100))2211))1(?(»YY57CÿíõÃ7&'333#"&'&'75#b  $,. 7 ÃA`  Qÿèó‹7&'333#"&'&'75#5 7 %9@ J)&#$#‹ -C   3ÿèó‹7&'333#"&'&'75#5  0 %;D N*(‹ /B   3ÿçö‘7&'333#"''75#(  1 #%¢--€rx.*l ÿæ|Ï73533#"''32765#'67#$5  "/)$¢--eA m{.+ojÿéíÏ73533#"''32765#'67#;  (93£,,Ž('Wy.+mIÿèöÊ 7&'''6¿ , 2 ,1ÊŽ>@Uc%DzîÑ 7'67&'T/ -q #Ñ - "%1 0 ÿèõÄ 7&&'#'6©= .A%#AÄŠ:rIOb$@iÿéò… 7'67&'@ " ( …@?,``(,jp‡ëÐ 73#5##53&'«4U2Ð 22 cÿèöÊ 7&'''6Ê$ ) (,'Ê?@’KC”ÿêòÇ7''6767&'× "H'/ G~uC$êÐ767&'7&''6k49 KV*Ð    ÿéÐ73#&'#5'67#535'6u *++  $02.:Ð *oi#$0&$™ÝÒ767&'7&''6j-0HP)Ò    Kÿèói7373#&''67'67#367K5^  % 3 -4 +A Z #   RqñÑ7#53&'73#3#`GBw‰¥  !ÿêæZ73#"''3267#'67#536qdVNEPVZ B (; ' gÿèôÏ 73673#&''67&'67#67#w!G+ * =% ¡D( "  $(_"=& rÿìóÌ7'6773267#"&55'7Ÿ6. 9;  *-£  <P  S ÿèöÏ+733327267##"&55#&''67&'767#532+* 7&   Ï.˜  Œ$ ,& $0  kÿéøÏ)733327#"&547#&''67&'77#53,   "#  Ï-5&$#&"$7 )  28  'ÿéäÏ!'736533#"''32665#'67#7&'&'"Hd  RU J G  e  ‹''Y5 96b-&VN` ÿéäÏ#'73533#3#5##5##535#735#33535#335'OOOYEEYO;;P;•EEZEºEV//Z |!!!ÿèíÉ  $7##535#35#7#"''3255#535#5#uN::::Æ P====ÉL”à,-É  xL,ŒÿñÓs73533##"''3255#&'Œ)   )aG  B Qÿåë†#7#'67#533#"''32767#'67#'6}4#Ty$(^  > 9  '"<L )9*  O@ëÈ!7#'67#533#"''3265#'67#'62"T{#'Z    ( # )%…? - %ÿåõ?7'66767&''6~N 4-  # 6{ % !  @ dÿéî‰"7#'67#533#"''32765#'67#'6‹,6W"R    * & $CR*;,'jòÏ 73#'6Š]e Ï  6ÿè›Î 73#5'67'&'‡ ' /":Îæ_UfÿôôÏ73533#3#535#f===7‚7=…JJkk ÿèZÎ 73#5'67'&'F "#  ÎæYN  ÿéóT73673#&''67#]l]H M 4( @T;   -" !eÿéóÐ73#&''67&'67#5367#6£P( $ #)) #¢D*  '+=*!) ÿèL¢ 73#5'67'&'9   ¢ºE = ÿéNÏ 73#5'67'&':   Ïæ[ T ScÏ 73#5'67'&'P"$  Ï|% = ÿêX 73#5'67'&'D!  ¥>  :dÿóî73533#3#535#d;;;5}4;\44CCPÿéŠÏ 73#5'67'&'v ÏæO  PhWáÍ7'673'67#&ƒ DJ @7  ‘# =.  ÿéñX#7367&'#"''3265'3'67#x$!"( 9#   cT3 -?T   $' =*bÿéöÏ736533#&''67#7&'j3@7 0* 7 42j  Š('L/,IN'&VKJÿé•Ï 73&'#''6j   Ï. ¡¹, Bÿé¹Ï 73&'#''6uÏ1œ·* ^ÿé÷Î736533#&''667#k485 5* : 3""R0(B=-<0gÿêòÏ73533##"''32655#&'gY Y  ›44ƒ ~$ &cÿéìÐ 7&'3##5#&'š  '‰E0]Ð (¢¢ aÿèõÏ"73533#3&''67&'#535#67#h9::/" #% # 29D > ©&&'&    %'kkÿèôÊ %7673#3267#"&'#67'7&'kD0.-  0! A+» &1"5@Z  {#;aIöÏ7365333267#"&55#'67#f$4  !- ##²  I  ;<0Xÿéñ_ 73533##5#XADDA;$$??kÿéëÏ7#5##5##535335#335ë"!65!!5"¡tUUt..O<<<`ÿèôÏ&7#5#'667##5365333267#"&5î(#+   ¥7$CIE=$7HV " VÿëôÏ$7#5#'667##537333267#"&5ë&!$ !"8   ¥7$CHC>&9*HU bÿìøÏ$7335#53533#353#3267#"&55#k;;AA!4  $ 2ŠAR RAS/ 5 ÿìó)73533#3#535# WWWhçkWQÿîöË$(,0@76767&'#3'67&'767#3#3#735#3673#53&'²     9JC  0-77kkEE " (›&Ë    I    39-  eòÐ 73&'73#e<<° eÿéìË767&''677&'3#5#533     ]s`Ë"#&5'$&$ .(¿ ¶£ÿéåÈ767&''67&'3#5#533H#$(!%˜·£¾"#"-5''$(# À ·¤SÿéêË767&''67&'3#5#533    k„qË#$ '4'%&& %$.(¿ ·¤nÿêé”767&''67&'3#5#533”     SgTŽ.) Š nÿéìË767''67&'3#5#533      JXEË!#&:*!") #3,¿ µ£gÿìõÍ "733#67'73673267#"&5g&& D  ÍJl  ×R` " ZÿéôÌ "048733#67'73673267#"&53#5##53635#35#Z)) G   ! G`*````Ì#  \    q q 3@ÿéŽÌ "048733#67'736732765#"&53#5##53635#35#  8    9EEEEEÌ"  ]    qq 3AZÿîõÎ"7&'332765#"&57&''6   K YÎ.Š }'00'8.+Gÿîð–#736732765#"&5'33#67'› &  T11$ –4  F  “1K  ÿé÷a &,7&'367326767#"&''67''67&'{  <0,P1E ! °a-( +#  <! "\óÎ &733#67'73673325267##"&5"DD# , d" #)  . Î *  i'   $ *ÿëï\ !733#7'73673267#"&5*;;9&# _" #) '\.  e)   #tîÐ &733#67'7367327667##"&5#AA" + b% %,  , Ð#  R    ÿçñn27373#673267#"&55#3'67#&''67#;¦P% ,  &89RJ3  /m(    \ <0  ÿê÷i%7773267#"&55'75'75'6Ä ).bdvx'( 33SVHK? Si      "hòÏ#7367326767#"&5'33#7'„$ ,  * b??=($ Ï    J'  _ÿìõÍ $733#67'732767#"&5536_'' ˆ#  ÍJo  ¦[ ËV&ÿìòR "77'53373673267#"&5:9'" >$ $+  &+*  ['  ! ! Vÿñòš#736732767#"&5'33#67'¢ !   L-- š3  I –2N  "ÿéò #733#67'736732767#"&5"==' `$ $+ )!*E  ‰/6! pÿéòÐ !.26767'53373673265#"&53#5##53635#35#„ "     ;IIIII¤&  ^,!    qq 3A[ÿèóÏ!733#3##5#'67#535#5353335¾!!'%! &&&Ï.@SS1 '@..@@]ÿéóÏ 73#"''3257&'''6Ÿ  3  E ÏÍ  ™9D F8K4 6ÿéóÏ 73#"''325''67&'y :“ÏÍ  ™K5 6D9C F8^ìÏ 73#''67&'u5‘Ïqb 5")"' &# ÿñòf733#3#535#53wVVgåjWWf(((ŠáÏ 73#7&'''6wA\ÏD8   ÿèÚO 73#"''3257&'''6v   F  o ON  /    )ö†73673#&'#'67#Po;) 1*!; ,?s   &$‹ÿëôÏ 73#"''325''67&'·   K  ÏÍ ™L5 8E9DF8Uÿë ¿7#"''3255'67567#536‹    .Dg N B6&iÿèð‚ 73#"''325''67&'¤   &  f  ‚  \3$ $,%- .%ÿêr7#"''3255'67567#53h  D[M3 * ‰ òÏ 73#"''325''67&'µ   M  Ϫ  ~@, /:19;/F“Æ7367#"''3255'67567#MF     /Æ A 4"[ à733#"''32765#'67#53ˆE   4#)+ 6" '%-rÿèôÐ 73#"''3257&'''6«  /  < ÐÎ  –9C F7K4 7‚ÿéêÐ 73#5##53635#35#§4AAAAAÐ ÄÅ^:‡:|ÿéòÏ733#3#5##5335#¡==4E%EEÏ,0wwRA„ÿéóÏ733#3#5##5335#¨771C$CCÏ-0wwR@\ÿçòÐ &,73673#3&''677&''67#677&'rNPG   # #  £"6#    /O4 o jÿ÷óÊ73533533533##5#3#5#5#j=bvbŒ44>>>>JJo‚888sÿéïÐ7#5##5##535335#33535#35#ï  44 4 T 4 ©‰ BB ‹''6###X"""mÿêòÏ 7#5##53&'73##"''3255#îU3M…4   =­00 <[  XpÿéòÏ!73533#3#67&'7&''67#535#y-,,8B # ,0+6-¤+++6 %* 4+ÿîñÏ#'+/37;735333##3#3#535#535#535#535#335353#735#35#3#&LOO]]jÞaUUNNccL_;;;–««………….ááÅ        U@' # $îÏ73533#3#535#dddRºTdÀQïƒ7#5##5ﺃ0 2 ÿêóÏ &D73#53&'67&''67'#'66553533#3#3#535#535#'6Š[Î\0$$ ! @(´¿ 6*CC==P·S;;5Ï    &1) :  ÿïïÏ'+/37;73533#3#535###53#5#3#3#535#537#335#35#35#35#dddRºTdL9Û800MÝL111O111ÀC!31;;)A ÿíòÈ#'->DJ73#3#3#535#535#5#35#33533535#&''332767#"&57&'''6ÏD55JÛI66Cx"6##6""W""" +)Š  — È;;)?,  ) /   ÿéòÏ#+/73673#53'35#33535#3353##53#=#Z % ,°. <¡ß " %à  €> " 3ÿê͉#'-373533#3#535#735#3353#735#35#35#'67&'@777CšD7%%8%m}}XXXXXX  9 ƒ   -A/    Wÿçò¢#'-373533#3#535#735#3353#735#35#35#'67&'e777D›E7&&8&n~~ZZZZZZ  C ›% 5Q:     ÿé]Ÿ7#"''32654'7##5] "Ÿ04¥¶ ÿéòÏ $0>K7&''63533##5#7&''67&''6&''6'&''613 43-< OOihhi:  x     c   Ï#!ww((             ÿì‡Ð048<@7673&'73#3#3#3##5'66553&'73'#35#5#35#* A  /'HH…'    X'! +"X 6&J"" ÿêòÏ#'+17=C73#3#3#3##5'673&'5#5#5#&''&'''67&'ƒ LPHHHHT¬ # 9 BDDDDš  &  `G  ÏX (, ;&%    ÿêòÇ*.28>DJ73#"''325567#67#53&''67&''3#735#&''&'''67&'/“!  wr - ÿétÁ7#5##53'>&'m4$   Áš‰Š›'R,(  "+0 ÿénÁ7#5##53'>&'i/!   Áš‰Š›'O0&  "+0  cóÑ735#53533#3#3#535#*KUUVVNNhæhKšÿæé\7#5##5'66&'Ñ{K25 3,-) ,*\L;76767&&'3'67&'767#3#3#&''67#5355#—  (6hZC E;QRT60 .4> J RV Ð   F* @%  6"$ÿèèÏ#17#"''3255#&''67##5367&''66è  O, (*1 C\ % #+ "¯¬  ”$´Ç H !!ÿèÞ—#07#"''3255#&''67##5367&''6Þ  D' % # + <V!  " 3}}  f  ‚•  9    ~ôÑ7&&'''67&'e!F( %+F=' Ñ 0  #ÿèÝy#/7'67##536533#"''3255#&&''6|& 9UR  B% %  '=  hy  `  J     nôÏ)733#67'7537736732767#"&5K""5AB#+  &Ï <:G    !ÿèÛZ .73#"''3255#&''67##536&''6€O  E# #!2T )Z H  3   Qa,   QðÓ %?CGKOU[agms73&'73#''67'6776767'7''67'677767''3#3#3#735#'&'7&'''67&'7'67&'V#R    ¢     |CCCC??!£Ã$$»            '   !ÿèÛR.73#"''&''673255#&''67##536‚M  ' E# $7YRD       /    M]UÿçõÐ$PTX\`fl7'673533#3#7'5#'67#53535#'673533#3#3267#"&55#'67#3#735#35#35#'67&'i      ",      A{{WWWWWW J °      *ZA $ %      ÿéñÇ73#3##5#535#735#35#(¯NhhffM‡‡‡‡Çn@@@HÿéåÆ 73#3#"''3255##5##535#735#0 EZ  FFZGxxÆPE  -__K^*Cÿèë 73#3#"''3255##5##535#735#M;J  78KAjj9/  <<4FqÿéîÅ 73#3#"''3255##5##535#735#|f(4    !5*>>ÅOE  .__K]+ ‹ÿïõÒ !%)73&'73#3#735#3#735#3#735#35#3#‹++j^^::** &VV2222ggÁ  S7 # 8@' # #8ÿûÏ73533#67&'7''75#735#335?  $"  ¥**^2  5>>>\ÿéöÏ"7#67&'7''275##535335#335è6 6E"!"65""5"¦c:$  <u))P===FÿèïŸ733#67'7''275#5335#35#==  +++Mÿìï“&73#3#"''3255#&''67##5365#M¢HC  0   (>H“ c  M $j{ Lÿéç“ &*7#"''3255##5#'665535#33535#735ç   &*  '':&a(':&“ 22" $G.JHÿèôÏ"7#67&'7''675##535335#335à8 CF'%%89%%9$¥a: #  <z**O===ÿéZÍ73#''665&'767#53&'1   0 Í*#)#. ]ÿçíÑ2=HL7&'3#"''3255#3533#3#&'#5'67#535#35&'75#367'35'3#p /^   L'((%     $' % eÑ Ä  ¬J 35JJ   ,6» ÿèyÏ"73533#&'#5'67#7&'7'6)((  ' W  ~QQ[^",Q \ÿéíÊ  $CGMQW7##535#35#7#"''3255#535#5#3533#3#&'#5'67#535#35#&'735'6ž0   0I)**%%    $)  ! ÊEœá ' )Ì „E '  6  $& 6 3    „õÑ73#&''67&'#53&'67ƒi. #1?-'E 3#)h!Ñ     …ÿéßÏ 736753#5'…" Ä–“æ@   ÿé¡Ñ.733#3'67#73267#"&55'75#'6553F==H7$&   -Ñ      H<- .7S ÿñÏ7''675#53533#7&'75##5#x/8++++5 7_--_4#====‹ÿéáÏ 736753#5'‹ Ä–•æ> zÿóôÏ7&'3#3#3#535#535#¯  #v0))3z3**2Ï &::::wÿéîÄ73#"''3267#'67##5##535#{s   ') #$pEEEÄL3>0_iiG4zÿéïÏ#7#"''3255#&''67##53653ï    2¨§  #A­¿hÿìõÏ!73533#67&'7&''675#75##5#o2334=2e¢--_4"" 7====oÿçöÈ7'6553#&'7#3“h ! '@@dR+&UUdJ [Q>`îÇ7'67#53#3#"''3265]1 : E܃t   ‘- (ÿåë€ 73533#7&'7&''275#75##5#+JII1Lc0.J”56a=   tÿéóÏ735#535333#&''67#75#u-$$-6#! " *Z]6))I311"06)wÿìôÍ&7773267#"&55'75'75'6Ú  1368  &)"%!<Í '  )  2 4( ' ÿñ‚Ï73533#7&'7''675#75##5#&'')1&M¢--_4  7====ÿèóÃ73#3#&''667#5365#!¼UdbNIU 1.^`SÃ4G#;?2$ - ^õÇ73#3#&'#'67#5367#%¶S x1 %&>/ .F IÇ    aÿçòÇ 73#735##53#3#&''67#536tllFF/w5>9 1+ 0/25ÇF"Z  "!"  ÿèôÉ 73#735##53#3#&''67#536.¦¦~~5O±OeWELVNW^ÉG#Z (  ;,  ÿçô_73#3#&''67#5367#$½ZjZD K/ M S[N_  *    BõÃ7367#53#3#&'#'67#M PºV p;-3+8.;‘&"\ÿè÷»73#3#&''67#5365#oz5=:0 , 7 =671»1D58D - WöÇ73#3#&'#'67#5367# ½V t5# +)2&* %5I NÇ  !" Wó¿73#3#&''67#5365#bˆ;DF&$$ 4 7=@8¿ & $/DöÐ?PTX73&'73#3#53'#367#733#3#3#3#3#3267#"&5535##"''3255##535#35#)+r($QTTMOKKKKGG% .% MM ;;;;;Á        J< N  }ÿéêÇ7#"''3255#'65535#35#ê  .,,,,ÇÁ0.% *3t=*f* ÿèŠÏ%+73533533#3#535#35#35#35#'67&'*|(******>  ±mmCC0  :ÿìòÏ2733#3#5353333#3#53533'33#67'75367’//B,!cV .$ Ï99 /LL_"KG ÿì¤Ï#'+/37;?E735333##3#3#535#535#535#535#335353#735#33535#335'6411::C—A6655AA4Gdww2Q2!FJLÆ        S@' "  YÿðòÏ#'+/37;?C735333##3#3#535#535#535#535#335353#735#33535#3353#k12288C“>6611==1Cauu 1 Q 1 v˜˜Æ        SB( % # HÿïòÏ#'+/37;?C735333##3#3#535#535#535#535#335353#735#33535#3353#X:::EEL§H==::II:M'''s††''9'`''9'„©©Æ        SB( $ $ ÿðïÐ#'+/37;?C735333##3#3#535#535#535#535#335353#735#33535#3353#'OPPUUcÙcUUOOeeOb<<<œ¯¯;;N;‰;;N;´ÞÞÇ        TB( " # aÿðòÐ#'+/37;?C735333##3#3#535#535#535#535#335353#735#33535#3353#r/..66><22//::/B]rr0M0pÆ        SA( # # ÿêhÏ#)/7&''67'67676767&'&'#&'''6X!     r  /)8! 7# ÿîôœ-159=73&'73#3#53&'#367#3#3#3#535#535#735#33535#335W U'?Ü<%F6J5©KVVkçjVVL::L9…::L9ˆ 8  "  PÿîóÐ"&*/5GMS73533#3#''275#535#35#33535#335&'#&''3326767#"&57&'''6Z>??6 9B"55>""5#X""5#   #^  j  ÀI I- ) '  (   ,   ÿï]Ï &,7&''63#3#7'75#535#'6'&'2    7'1 )Ï   "C G9ZÿêóÐ.48<N73533#3&533#673265#"''67&'#535#7&'3#735#7677'67&'a#*)     X#w  gFF$$  "* ¸">#"$=    B J:2   ÿèðÐC73533673#5##53&'3#735#3#3##"''3255#535#535#'2J  2³2››ss‹ $,VVff  ggVV#'UÍ !! () 0+ &     MÿéòÏ'+/37GKOSW73533533##5##5#73##5#'65563#735#'3#735#3#3##5#535#735#33535#335Nš/  !S&& <(( P $$'' .   *ŒŒ?5 o9 *  * 'I  +, ÿêMÏ$7#"''32654''67&''67&'76=      Ï *?'( (   ÿéòÏ(,048HLPTX73533533##5##5#3##5#'66556'3#735#73#735#3#3##5#535#735#33535#335:F::F:Ó &H/±66155Lm-3399--G-   nn0( (7.+ +'I  ,, ÿéóÏ/3973533#3#3#3#3##5#535#53&'#53&'#535#35#67#gggOSX(Ci[[[[i@)_LRg(eKÁ2 !! 2/T ÿéñÈ =73#3#535#5#35#3353353533673#&'#5'67#53&'×D9Á:E'9&&9'%Œ   2R"1 7$!6-"Q1 È@@.6""  #;:! OÿéðÎ <@DHZ_73#735#35#35#73#735#35#35#3#3#3#5'673&'7335#5#5##53&''67&67#^AA!!!!!!:@@ 4444;‡ :s******ƒ& + '= ÎH3 3H3 2 )    !    ÿæóÎ >CGK]b73#735#35#35#73#735#35#35#3#3#3#3##5'673&'5#5#5##53&''67&67#XX444444Y[[777777ZXLLLL\¬ 0;>>>>¬(6+1C 4&8YÎG23G2 ,   %  ]ÿéóÍ =AEI\a73#735#35#35#73#735#35#35#3#3#3#5'673&'7335#5#5##53&'''67&67#j<<3<<////5z5i&&&&&&y&% 8 ÍF1   2F1   1 -    !    VÿéöÎ =AEI[`73#735#35#35#73#735#35#35#3#3#3#5'673&'7335#5#5##53&''67&67#d@@7??22229ƒ  9p((((((€. )&; ÎH3 3H3 2 .    !   ÿéóÏ,767&'7'32767#"&55'667'6f:?# & +'+Ï7  (c& i6-0ÿçó¢'7'6767&'7'3267#"&55'6U%.3    $! A:L/*$ K NJÿçî‹+767&'7'32765#"&55'6767'6q1)   % . & !#‹   >! C$ OÿèôÏ(7''6767&'3'66733267#"&5É 66"%* >1  °& !24  G7/)2\ ! ZÿèõÏ)7&''6767&'3'66733267#"&5Ì32 "' 8-   °& !25  G7/)2\ ! LÿèõÏ)7&''6767&'3'66733267#"&5Ç88$%, >4  °& !23  G8.)2\ ! hÿèõÏ(7''6767&'3'66733267#"&5Ð -.#4)  ° %  37  G8.(3\ ! uÿêõÏ)7'6767&'7'3267#"&55'66“"   j!23 & o   n>/. ÿéòÏ'767&''67&'&''67&'76/1*"% #+%A 1'#(†+5 :.+= 9'ÉK#$ÿüsÌ'767&''67&'67&''67&'#              V      ÿéò˜'767&''67&'&''67&'76/.'! $ $.#> *#!†*3 :/+= 7%‘   5     cÿéìÏ&73#"''3267#'6&''6767&'Y  M 3 $ Ï1x &C 63 NÿéëÐ%73#"''3267#'6''6767&'zk  `  ;&) ÐŒ2!v )F ! 75 ÿéæ(73#"''32665#'6&''6767&'G   †$Y27!!# K9 -5"  /- kÿéíÐ%73#"''3267#'6''6767&'V  I 3"ÐŽ0z (E 76 uÿéïÐ%73#"''3267#'6''6767&'šN   A - ÐŽ0 w )F 76 NÿéðÏ 73#3#"''3267#'667#53&'¡ :bS   ?$I Ï^%E+4;I[ÿèô &,2736733#3##"''327#67#765#7&'67#7&'[v  jwP  ;R# q'**'=&&* !5  z!5 hÿèïÏ 73533#3#"''3255##5##535#h9::6   ""69¯ !\  E‚‚ew!ÿéð– 7#"''3255##5##535#53533#Ù   <<PeeggT@  )YYFXÿðóÆ 73#53535#35#35#Ì'å)mmmmmmÆÃÃA-n.o. ÿïó¯)-159AEIM73#3#35335#535#535#533#5##535635#3#3#735#3#53535#35#35#E #X#1 ¶ 144((&& S'å(rrrrrr¯  MM  M""GL?  3EE NÿïòÆ 73#53535#35#35#ܤLLLLLLÆÃÃB/o.o/ ÿðõ’ 73#53535#35#35#Ê+è*kkkkkk’0MM ÿó›Å 767'7535#35#675#ƒ ?M<<< 9WWÃgU  [R!DC;ÿé÷Ã73#3267#"&55#'667#735#[„!  * &ZZÃgU! [3.'*Aÿçõg73#3267#"&55#'67#735#. + ' E < +zzgB %2 #gÿéõÃ73#3267#"&55#'67#735#yh  * %BBÃgU [R!DCgÿéõÃ73#3267#"&55#'67#735#d  -)>>ÃgU [R!DC ÿèpÁ7#5##53'>&'p4%   ÁЉœ'P.(  "+, ÿé‹Ð733#3#5##5335#=::-?'??Ð3/ssR?&ÿéåÏ733#3#5##5335#kffYŠE1ŠŠÏ,/xxTACÿææŸ73#5#'6553&'#3¢:e>CddŸ Z ,% '1; &) ÿèåÎ7'655673'35:dI G^ªª–D1+16c  N;"(ÿççÄ73#'66553'#3ÊÊ "µÄb6* (LL9& ÿéâÐ7'66553&'73'#3?TMp>2 /!Y  I6# ÿéáÐ7'66553&'73'#3?  SLz ?2 ."X  >-Aÿçòr 7#5'753'&'&'ð-mpM  .0/  IGD   ;ÿçót73673#&''>77#7&'F?RD7 =(  :{  K,9*  <    ÿèâÏ73#'6553&'#3ˆM«[Z——Ï >Q("NO #-ÿéóu 73#3#"''3265#'6767#53&'“Tqc S ,  A\u  9 #Kÿêò‚"73#735##32767#"&5535335P……]]|‚+:F9--‚.*4  I ÿéáÐ7'66553&'73'#3?  TNŒŒ2?3 ."X  + 6ÿéêÏ7'6553&'73'#3fD =ppo=/ 08T A/jÿèõÏ"73533#3&''67&'#535#67#q555, " ! /5? 9 ©&&'&    &'jÿìwb73533#7&'7''275#735#335)(( #.)*P4 žÿèôÏ73533#7'7''675#735#335¢ #  ¡..d69BBB9ÿé÷È %AQ7#'6553#&'#5'67#535'6#535'673#&'#5'63#53533533ï‹P    9    =™2ÈKD> 5A] ,$ .   .( L22>]ïŒ7#5##5ï·Œ//ÿçès733#7&'7''275#5335#35#tGG2Md1/GG333F33s> >-ÿåôÏ#733#67&'7&''275##5335#35#vRR! Rk30>R>>>R>>Ï)a= & ?wP??? ÿéõÀ73#32767#"&55#'655#e-<H:À¨  ­/\9 9P/oïÍ73533#67'7''275#75##5#z,++  ,:,W©$$Q( )////ÿåîq 73533#7&'7&''275#75##5#&PPP8Md/-P <<^>   MöÐ73#&''67&'#53&'67€`%&9B/-< 4'a#"Ð     &0ÿéÐJ 7#5##535#ÐxxxJaa@-RÿéõÍ73#&''67&'#53&'667#  @ ) )+, ? GÍ?+%EŽ''lÿéóÏ733#3#5##5335#™EE;U-UUÏ/,xxS@€ÿéöÏ733#3&''67&'#5367¤995   "Ï#8)  2&$wÿéöÏ733#3&''67&'#5367Ÿ==9  # %Ï#8) 2&$ ÿíôÐ)7773276767##"&55'75'75'6b %!(*/H(%(#& ,Ð''4 7(%vÿéóÏ733#3#5##5335# >>6K*KKÏ/,xxS@mÿéõÏ73#5##5353335#­9Q,HtQQ0wwo,ƒ@Vÿé£Â73#3#5##5367#35#35#VM"&&&&&¦¦a-l-gÿéóÂ73#3#5##5367#35#35#gŒ@>Q&7QQQQ¦¦`-l,ÿéõÂ%73#33267#"&55#67'7#&'f;> 6  @,-"<  Â#|  ly ¶MÿéëÂ73#3#5##5367#35#35#ÖbUƒ?])ƒƒƒƒÂ¥¥b.n-ÿé|Á73#3#5##537#35#35#l)(6.6666Á!¥¥!`-m.„ÿéïÁ73#3#5##5367#35#35#„k)(6-6666Á¥¥`-m.vÿéñÂ73#3#5##5367#35#35#v{75F$/FFFF ¦¦`-l,9ÿéî¯"73#3533#3##5#535#'67#536€U_,< KÿçôÐ$(,047##53&533#673267#"''67&75#'#33'35#š-4@3    *0 <-,!##)$(B‚o   )!  [oÿçõÐ#(,073'33#67327#"''67&'#73'#3353'#335w-3*  + )7.L 0±l )% ? Jˆÿç÷Ð#'+/7#53533#67327#"''67&75#'#33'35#¹.#,"     &Cnn  " ' Qÿéò‹ #/767'53373673267#"&53533##5#5 * =% $, $ !ucggcb  O(     &**ÿéò” $0767'533736732767#"&53533##5#5!) =% $, + "ucggci!  T*    '--qÿéòÏ(47367325667##"'"&5'67'53333##5#53±   )  6644Ï+  !  .1 x&E>>QÿíòÌ'73673267#"&5'37533#67'7¬   O %- ÌSY ! —”¼>g T_õÏ'737533#7'773673267#"&5b %-O   ¹BV# \'  Oÿéõ`73533#&'#5'67#XCF8# %* )3J%+FF+%€ôÌ'73673267#"&5'33#7'27537’) - ( G**'8: Ì   2 ('WÿíöÌ'73673267#"&5'37533#67'7±    N $, ÌQ[   —”¼>f +ÿéÒe 7#5##535#35#35#Ò‚‚‚‚‚‚‚e| |!.. ÿèî]73#3#5##5'67#35#Úƒ ‡z +<8zz] M ; Fÿèïi 73#3##"''3255#'67&'*¬¬Þe   e<+ %y!i5 2 _ÿíòÌ(73673267#"&5'367533#67'7±   H !) ÌRY ! —”¼>f  hôÏ(733#67'7536773673267#"&5J''9< C"* )Ï<:M    ÿì„Ð 733#67''37533#67'7W  D 'Ð4ƒ ¦“º>c  ÿèôI&733#7'753773673267#"&5K""$5AB$ #+  &I <:G   €åÉ 73#735#'3#735#ŒYY22†ZZ33ÉI#I#ÿéîÈ)7#'6655333#"&53533#&'#5'67#ž@g&+ …^_M!0 5$"6 3Jµ6  4+4UW3)fñÇ)733#"&55#'6653533#&'#5'67#× $  277  ! %'Ç1  '   '_8?#!lÿéõÈ*733#"&55#'66553533#&'#5'67#Ò   14'  "È8  ,    o(+OM*(mÿêóÇ 73#&'#5'67#3533##5#s€2  ,:2442Ç 69$y?? ÿçõÏ "(7373#'67#3&''>7'6''63’ 80 0y&+5? ! D] ²pC;e;>-1 %0* ' WÿéóÏ"(73733#'67#3&''657'6''6\]_K( %; P.  ?­"E' &:97**#3   CÿèöÏ#)73673#'67#3&''657'6''6Z"]_ 3 - R  "2 A.  E  ³Z81P7 .,'8   5ÿèòÏ$*734733#'667#3&''667'6''6Pop['" -$.  H  ±HHBD'6'%:1%# `ÿèôÎ$*73733#'667#3&''667'6''6s\\F  ) # 9  °?> :: *6&#<0!! .ÿêì§7&'36533#&''67#º  h?OJ %!4 I O?§ ) &"&- :=HmÿèñÂ73#3#5##5367#35#35#m„;8F!4 FFFF§¦_,k,ÿéòÏ-73&533#327#"'&'#7&'3#67'675#}KJ   ~± œj-5B)¤B//'#5P>  Z@ C ÿèqÎ(.47&''67&'763533##"''3255#&'''6[   >&##  &L  3  Î    \P  L    ÿèóÏ$*73533#3#535#3533##"''3255#&'XXXiæhX”33 ”5  ±P8  4 ;ÿèí¢%+73533#3#535#3533##"''32655#&'JABBM±PAz## z)  =* &\ÿéóÐ$*73533#3#535#3533##"''3255#&'i666?–C6 e  e&  ²N<  8  gÿéóÐ$*73533#3#535#3533##"''3255#&'s122:‹=1 ]  ]%  ²N<  8  mÿéóÐ$*73533#3#535#3533##"''3255#&'x///7…:/ Y  Y  ²N<  8  [¼ 7#5##55#35 ¼±¸I8888’ÿéóÐ$*73533#3#535#3533##"''3255#&'š %`( >   >  ²O<  8 sÿéóÐ$*73533#3#535#3533##"''3255#&'~,--47, U   U!  ²N<  8   ÿéóÐ373673##5'675367#33##"''3255#53567#GŠ  =ZmAA  KKU¶ #i   6 3JÿéôÏ.73##5'67#533567#533##"''3255#Œ[a  $"), =U ((  ,Ïj1.n  7 3YÿéôÏ/73##5'67#5363567#533##"''3255#“SX  %' 8O ##   'Ïg .1|  7 3FÿéôÏ/73##5'67#533567#533##"''3255#‰^d "%,. @X))  .Ï  #Ši,3n  7 3gÿéôÏ/73##5'67#5363567#533##"''3255#—NS   & 5L !!  &Ï  Œd.)|  7 3ÿêðÐ(73673##5'675367#3533#3#535#G‚‹  >G<>>G£H<° &v] =11FFJÿéòÏ$73673##5'67#3533#3#535#](Y^  %"6!""*i+!° †i '->..HH ÿêï™(73673##5'675367#3533#3#535#Ou  BI:==E F:ƒ  WE  * 11OÿëòÎ773533#3673#673267#"&55'675367#535#a#"" 6F1) .5   -# ?2#®  "     /    YÿëòÎ373533#3673#673267#"&55'67#535#v-<)! (,     "1)®  "     5 " jÿëòÏ0573533673#673267#"&55'67#535#67# (7 &$)   # 0*1 ®!!       5    YñÏ/73533#3673#673267#"&55'67#535#(:;;!) 5W$<2 7A4.83 4,^T:Á        ÿêóY&773267#"&55'75'75'67Ô]qr "2<0MOCE !^O*0<        HñÏ.373533673#673267#"&55'67#535#67#,66 9W# :2 6@.:2 4*]S6e 5À     ÿë–Ï=LR733#3#53533#673267#"''67&'#'6553&533&'73#67'675#'6K$$0}A  8H Z1$    Ï###"# &  ./676  ! < ; ˆÿêìÆ775&'75#53#"''3255'6'5&'75#53#"''3255'6Ú  ,   %  .    N 5Å )    5Å -  `ñÏ/73533#3673#673267#"&55'67#535#(:;;"( 2W :1 7A4/92 3*[T:à           ÿìò673533#3673#6732767#"&55'6757#535#%>==& 7V0@7 ;G,5 >9-  %bU>‡  $ *ÿé× 7#5##535#35#׌ŒŒŒŒ55kKôÏ173533#3673#673267#"&55'67#535#|!!!  1 # )   & 62!½     }ÿèëC 7#5##535#35#ëJJJJJC[ Z!1 ÿéóÌ73533#3#535##5##535# iiiXÆZiÉ………¬   Mcc@- ÿé}Ï73533#3#535##5##535# ...)h+.h888­""""Ncc?,ƒÿéóÏ73533#3#535##5##535#ƒ...)h+.h888­""""Ncc?,ÿñg¿73#3#5##5'67#35#W$ 4  (¿#s g "<Ž@[ÿú¡Ï733#3#535#53#5##535#uA'Ï!!!\W X;)šÿç÷Å %73#3#5367#35#35#35#'67&'žT!F$$$$$$  2  Å >BB,     ÿé^Ï"(.767&'7&''67'6776&''67&'H   .'®9!   0+f# YÿéóÏ73533#3#535##5##535#YCCC8…9C‹QQQ­""""Ncc?,Yÿð©Ð!'-767'7''67'67676&'''67&'    -'¥8/, b$ ¦ÿéóÏ73533#3#535##5##535#¦FFª%%%%Nb bD4 ÿéó]73533#3#535##5##535# hhhYÌ]hÎR   &5 5 ÿê…È"(.4:@73#3#7'75#535#735#&'735'6&'#&''&'''6h+'')0<1))+)     ÈX 7 77 w 5ñœ.73#673265#"&55#3'67#&''67#âP% ,'75RH2  ,œ     ;-    ÿçñB/73#673267#"&55#3'67#&''67#0 /" )(42RG-  B       8'  2î¯ 73&'73#3#735##5##5ecÛ©©®µŸ& !'&uࢠ73#735#335335ÁÁ)):((¢-Aïj7#5##5ï·j))ÿçñP073#673267#"&55#3'67##&''67#-¦2% , '43SH0 P   A- !   CÿèèÏ #753#5&''3'65753#5&'#'6Ê M ( /  •mçc(";uC, (:?k×](". %~ÿéíÉ 7#5##535#3533#''65#íIII  Éàྫ*""+ "2DÿêóÐ#).73533#3#&''67&'767#535#3655#335QFHH?A 9 6%* $ =@F+,@+¹J    JN$[=ñÑ"&*73#3#"''3255##5'67#53635#35#”PYV  E  'EEEEÑN I  E )<^Ç7#"''32654'7##5^  !Ç#'z‹cÿéòÏ!%)73673#3#"''3255##5'67#35#35#m%JQ P   = (====° € 5x $CB ÿéìš"&*73673#3#"''3255##5'67#35#35#:ˆ’Œ  s"/@ssss„   _  &d30ÿéòÍ"&*73673#3#"''3255##5'67#5#5#›(/7  " >"""¯  €  7‚ F)Zÿé—¿7#"''32654'7##5— ¿B FÆÖÿé‘Ï!%)73673#3#"''3255##5'67#5#5##FM I 7_777° †  5z &A,iÿéòÏ"&*73673#3#"''3255##5'67#5#5#v!ENP  =_===°  †  5ƒ  A,oÿèö¿7&'333#"&'&'75#  #!)¿ Cd   U ÿéôÄ $(,073#33##"''3255##5#53535#35#33535#35#ÖaP P`$<>^IKÿïðÅ73#3#5##5##535#5#5#àG=)Q)=H…)))Å(›ˆMMˆ›((((M::ÿé‰}#'+/73533533##3#3##5#535#535#5#5#35#335(**++44++P( +v )  )  3 €ÿéæy7#"''3255#'65535#35#æ /----yz 55';ÿéz~#'+/73533533##3#3##5#535#535#5#5#35#335&&((--''B't  '  '  0 rÿéð{ $*06<7#3#3#3#"''267#55#5#5#&''&'''67&'î+$$$$-  [/8  * %{ 2 W       ÿéôÏ+7#"''3255#&'#5'675##535#53533#Þ ?+> :&'7 A(>RddbbŽ8  </Z]5 <=P öÏ"73533#3#5#&'#5'67##535#`bbN5+> =%7 =(6O`º:'2/--- 3':XÿéõÏ,73533#3#"''3255#&'#5'675##535#f;775  !% "$ -!5;·6  --!GQ,4 >P ÿéó,73533#3#"''3255#&'#5'675##535#dffM 9+> ;$(6 A(9MdŠ,  *$;;%*1C ÿ釛,73533#3#"''3255#&'#5'675##535#/22,   ,/‹( ) 33 #->‚ÿéôœ73#&''67&''667#¢@   'œ ,$"  WÿóòÆ 73#33#537#'67#&'&'`SK'›`9  (=  Ɖx5.CQH  ‡ÿóóÆ73#33#537#'67#&'&'c:7l@ % +  Æ(‰x5.CRJ   ;ÿêç°73#3#3##5#'6evZNNUU° 2–! &Kÿèò©%+73#3267#"&'#67'56&'&'Ï ;8 #<$ G6 ©$(/1;  Ž8 T   ÿëôÏ"(73'33#327#"&'#7&'3#3#'6 …KI! .‡¸  •^^eep6BH‹D(:<*9GFR V   ÿèõÒ(.7#67327#"&''67&'#'66553'37&'ìK    ( +T f# /#.+'6$:C6+ (M20   ÿèôÏ*07#67327#"&''67&'#'6553&'37&'íT   !, 2K]ž&  %/#3D1- %,X1  ÿèíÑ27&''37767327#"&''67&''7&''7&¦  6``kh   "-; :, YXABÑ    0  ÿçòÑ07&'#67327#"&''67&'#67'53&53¯ CW    & )H # \Ñ  3#$ . 1,<} žÿçöÑ$*873&533#67327#"&''67&'#7&'3533#'67#wNM   # & w® œ.))9 0.¦<%1- %!F>   r005")ÿèðS17'6553'33&'73#67327#"''67&'#&7dK    " " T  $       jÿéõÒ/57#673265#"''67&'#&''6553&537&'ï(      ' : Ÿ,"5 ! %C'8* ,2M30  ÿé÷Æ27327#"&'5#'6553#3'67#&''67#Õ‹y?@3!S5   &Æ_34);,RLJT,$TT+  $ H  39ÿéøÅ27327#"&55#'6553#3'67#&''67#Ú `! R&*#9    Å^56-&.PLIU,%TS+ :! H  5Aÿè®Å73#3##5#'655#535#5#M^=ÅKjjA( %7KKKKÿè•Å73#3##5#'655#535#5#{$# O$ÅLjj@) %7LLLLB”Æ73#3##5#'67#535#5#v #  K Æ$99$$$$$¡=âË 73#"''3265'3#Ï   .Ës `\½ÿèïÏ 73#"''325'3#Ý    ÏÏ ³’Wÿè¶Ä73#3##5#'655#535#5#cR  3ÄMkk@) %8MMMM ÿ锌73#3##5#'67#535#5#x"" "M!Œ,SS9.,,, žÿéã” 73#"''325'3#Ï 1”‘  |sbÿè´Ä73#3##5#'655#535#5#hL  .ÄDtt @) &7 DDDDAÿè©Â73#3'67#&''67#OZ//D 7   Âz1$b  .:Rÿè¯Â73#3'67#&''67#]R)*= 1    Â{0$b  .:ÿé“Ã73#3'67#&''67#€@; Z L-  "-Ãt."\   ,:K‹È73#3'67#&''67#t9;L@1  'È 0% žRâÍ 73#"''3265'3#Ï   1Íb OI ÿä‹€73#3'67#&''67#t9;+B/  !(€ .$ 6  'žÿë≠73#"''3265'3#Ï  1‰† reEÿç§Ã73#3'67#&''67#NY)-D;   ÃZJ @D  +:Rÿè¯Â73#3'67#&''67#]R)+= 1    Âv."]  .:.‹Æ73#3'67#&''67#t9< B0  !(Æ $1  #ž4âÍ 73#"''3265'3#Ï   1Í€ jX ÿéóÈ59=73267#"&55#'65535'673#67'7&''675#735#3353 $?J      Èr3(  0=`l<$!>xG U  555[‹Ç7#53#3'67#&''6:#t=;ME4  ·2 %žhâÍ 73#"''3265'3#Ï 1ÍM 9:ÿèóÌ73#3#535635#'6ÄGE–0Bå)R>RR -*Ì8v|8S ÿéóÌ73#3#535635#&'ÄGE–0Bå)R>RRQ$"Ì8v|8TaÿêêÏ!%733#5##5'67#&''6635#šE2OC R 8  CCÏ :c WC   ¬2PÿêèÏ#733#5##5'67#&''635# M5TN W#B  * NNÏ:c UC  š2 ÿéÝš $733#5##5'67#&''6635#e_ 8eu |,S   uuš+R B2  …&sÿêíÏ!%733#5##5'67#&''6635#¨9,F8 G,  88Ï :c VC   ®2[ÿêóÓ73#3#3##5#53535#'65#€^/,,77N8$ 7%Ó*0==B*!k00ÿêðÓ!73#3#3##5#53535#'65#@™LGGXXrUB  UAÓ )/==B) "l//ÿèãR73#"''3255##5363#735#w_   R*llHHR F  1K[#+ ÿèãq73#"''3255##5363#735#U€   /hh@@qb  Mgw *9ÿèî{ (/73#5##53&'3673#&''67&'67#67#…Y¤^aG~/ #& +%)C 9 ! :y B{#%4        LÿïôÏ 733#5353635#35#35#˜ L ¨) "''Ϧ¦»“““““ ÿõ•Ð737'6353675#75#75#B< =K ÐŽ Ÿ²ˆ†„‚RÿïôÏ 733#5353635#35#35#š H ¢& &%Ï¥¥»“““““_ÿïôÏ 733#5353635#35#35#  C •# #"Ï¥¥¸“““““?ÿïôÏ 733#5353635#35#35#‘ Oµ- %)*Ï ¦¦»“““““ ÿðóe 733#5353635#35#35#jfæ8 -""5##6""e HHV55555 ÿõ†Ð737'6353675#75#675#=5 6B    Ð Ž Ÿ²ˆ†„‚ÿéõÁ73##5'67#&'…l,-NÁ ´$/G5('%}ÿîóà 733#537#537#37#37#^ v##" ##ÃÃPOOO±P|ÿèðÏ73533#3##5#535#7&'7'6‚***00,,*  `  ‚MM*JJ*N   rîÑ 733#535365##5##5#ggÜ5b"##Ñ 66 B%%%%%%ÿéðn"7'6767&'#''6'6y*-ePK # < / 3# $3 9O     'A]    ÿõoÐ7327'753675#635#75#3++6Ð Œ  µЇ†‚€eÿéõÏ#T73533533##5##5#3#735#335335#67327#"''67&'#&''6553&533'7n""{{"5      &$ 4À 9>    "#$  ÿêóÐ'+/=AESW[imqu735333##3#3##5#535#535#535#535#335353#3#5367#35#35#73#3#5367#35#35#33#5353635#35#35##STT^^iigg^^SSiiSfAAA¶\#%Y"'8888k\#%Y"'7777+VåK>%%7$$6%%É   ;;    A --. --%% .$ÿéÛÐ 73#5##53635#35#35#lc=1Ð ÉÉD#Y#Y#*E×Ò 73#5335#35#35#j `­6"………………Òxx$21+`ÖÒ 7#53675#3535#Ö«6K……………À``   $ ÿéÐ 73#5##53635#35#35#@3???????Ð ÈÈD$Z$Z$ÿéáÈ73#35#535#53#5##56m#*GGœEEBVœ/È:CAAÍÇrÿéìÈ73#35#535#53#5##56Ÿ$$P##!6PÈ=CC?ÍÆ C½r73#35#535#53#5##56r%%T%%#6Tr f ` ÿçöÐ(7#5#67&'67'5'67##537æH ,J$   F A] °7$& "4W S  O K&9 FÿçöÏ)7#5#67&'67'5'67##537ï0   3   6/I¯6$ " !/Q P  J  K&8 UÿçôÏ+7#5#67&'67'5'67##5367ï+   .   0(A¯6$ " "0O P  H  K&8 bÿçôÏ+7#5#67&'67'5'67##5367ð'  )   +#;¯6$# !/O P  G  K&8 ÿìíÑ -73#5##53&'732765#"&55'75'6‚_²cX &+np * 3$X[:UÑ -- 7(  1% 6  '\ÿëòÐ -73#5##53&'73267#"&55'75'6«6^:3CE  9=.Ð5! 4 <&1! 3%mÿëòÐ -73#5##53&'73267#"&55'75'6­2U43 68  /2 *Ð5! 4 <'0 2  &ZÿëòÐ ,73#5##53&'73267#"&55'75'6¥<k@9@B  $47#4Ð5! 4 <& / ! 2  &BÿéôÑ 7&''63##5##535#–#. ,#!) :\\p[[[Ñ&(,(+bb>, ÿê£ 7&''63##5##535#V& "$1 TT^CCCK K.bÿé÷Ñ 7&''63##5##535#¥& #" .HHZEEEÑ(),(,bb>,ÿèõ‘ 7&''63##5##535#ƒ18 85.;G kk‹€€€‘  L M1 iÿéôÑ 7&''63##5##535#¦# ! + GGYBBBÑ((*(,bb>, ÿéXÎ735'673#3#'67#535# $  Š$ +)4 ))¦ÿêòÎ$7'673#3##"''32655#535#53 %    ® ))< 8) löÑ7&'#5'63&'3#735#~/; b QP:››vvÑ  !)  ÿêŒÑ 7'67&3##5##535#M +=DDR666«$'*aa>,‚ÿéõÑ 7&''63##5##535#³  "99G111Ñ''-),bb?.«ÿêæ 73#"''325'3#Ô  )Œ  |nrÿé÷Ñ 7&''63##5##535#ª"  'CCS<<<Ñ)),(-bb>, ÿèuÏ&735#53533#3#3#&'#5'67#535#"$$%%$$'' &("Ž  JJ (mÿéöÑ 7&''63##5##535#«# ) FF\DDDÑ ##&$)cc?,/ÿõÐu 7&''63#3#735#~"% '$# 7RR ffCCu  4 ÿô}Ð 7&''63##53#=#C 'QQP+Ð ,eb`** ~÷Ô7&'#5'63'3#735#~48 'T! P; @££Ô   % \óÑ7&'#5'63&'3#735#€,< ` OK0™™uuÑ   . ÿò÷Ñ 7&''633#3#53533~28 74.= Q MM`Þ'/Ñ -10+:<ddYîÏ7##5#53&'73##''67&'ŽHb`KU•£DD  D7 " \ïÏ7##5#53&'73##7&'''6ŽIb_J5{£==  =1 JîÏ$*7#53&'73##"''3255#'667&'''6ZEb`F  & h{ £  4  /'$   RíÏ$*73##"''3255#'667#53&''67&'ƒ^E  % Da9 œÏ 0  +%"   +  F]óÐ73&'73##5##5#'67&'U= B1&   w  ³  CCCC  dÿéõÑ$*73##"''3255#'665#53&''67&'® 5%   )9  s  Ñš  •RF@O E7& -*.03-oïÏ7##5#53&'73##''67&'ŽIa_JV›©11 1(   ÿîôy!&+07'67&'#3#3#53&'#535#73&67##35#C H/ 37 3J=Þ2L27O!0(A #   $ Q  ;ÿçñY73533#&'#5'67#NCE<' '1 37J $DBÿêòe7'673&''67&67#B +m #4?+(>3"3`2     ÿèzÏ&735#53533#3#3#&'#5'67#535#'))))''++  ),'Ž  IN ) ÿégÐ&73533#3#3#&'#5'675#535#535#!!!!  !!¸S= ( jXõÏ!73533#&'#5'67#7&'7'6n78, +  `  22$">  [ÿéôÆ#'<B7#'6553#3#67&'#67''3#3533##"''3255#&' €nn3  /  YY D   D zE4 6>_+  +%_d$ !  TÿèôÐ9Up734733&'33&'73#67327#"''67&'#&''67#767767&'7''67'6767677'7''67'67_ :      %        L   L (\=.   "/    "+e%% bÿçõÌ#'-TY_73#33#&'75##53537#35#35#35#&''33265#"'3&''67&''67&567''6j„>7 l '2NNNNNN&     D  )"  O ÌC   C!          (  4  PÿèôÏ%;NR73#'6553'3533#&'#5'67#73533#&'#5'67#3#3#5##5'67#35#°6w?"   9    9tE>+  )++Ï M>1 0;X8 $"   $ A < $ 0ZÿéôÏ%73533#3#3#&'#5'67#535#535#e;<<22>9% !# (7=22;¸(%QP&+oÿèôÏ%73533#3#3#&'#5'67#535#535#y222--50  *5..2¸/(OY**FÿèìÏ*73'67#&''63'67#&''6œCo eA  3" ?"|s>   0Ï = / E G9   WÿèíÏ+73'67#&''63'67#&''6¢=dY9  ,9n g6   *Ï = /  E G9  ÿèßÑ073'67#&''677363'67#&''6 S'Œ#U   .M,›’&N   ;Ñ = 0   Z H:   €ÿèïÏ.73'67#&''63'67#&''6²-*@%   (-I"  Ï(0   C / :   ÿèzÏ073'67#&''63'67#&''6=.)@%   ).I!   Ï (0   C / :  kÿêìÎ73#"''3267#'6##535#”P  E  @.Î #&WfF6`ÿèîÏ*73'67#&''63'67#&''6¥:^T4   (6h `2  &Ï = /  D G:  rÿèíž*73'67#&''63'67#&''6­/PF*   $ )[Q'   %ž/ !  3 7 *   ÿètÏ,73'67#&''63'67#''69+&<#   &+D   Ï(0  E . :   ÿæé¤*7'673'67#&'673'67#&> 4*M.z g/K! K:<7Ž €4? o  1 $ @! >2 PíÑ*73'67#&''6&''673'67„E \ P<%2   :2#c X Ñ 9 ) T "G5uòÏ*73'67#&''63'67#&''6±2RI,   &!*[R( 'Ï3 &   8 =0ÿæä†,7'673'67#&'673'67#&< 4)B,p a*C   M= 47‰ w6<X  )  6 2 &  wõÏ 7'67&'&''67&'76\)&k $ %"+. >,,? 5" Ï         lÿèóÌ73#'66556#5##535#ä '3__  >/***Ì D8 7F:ki jI6 ÿéÊ73#'66556#5##535#‚ '5\\  >,***Ê"B9 6F:jooI7KòË73#'665563#735#ç 7J}}  T6hh@@Ë3* +6/WS-JÿéóÊ73#'66556#5##535#é 3Exx O5AAAÊ!C75E9ippI6eÿéóÊ73#'66556#5##535#é ,:ff  D/555Ê"C7 7E:jooI7:ÿéóÊ73#'66556#5##535#é 8M……W7IIIÊ"B7 7D:jooI7\ÿéóÊ73#'66556#5##535#é .=kk  G0888Ê"C7 7E:jooI7 ?íÏ73#'665563#735#Ü Jdµµ  qQ——rrÏ&! ")#C>  Ï73#&''673#&'#'6*$ M' Ï  &   EƒôÐ73#&'#'6#'673#&h. f  1 Ð  K“òÐ!73#&'#'6#'673#&j,a /Ð     Jÿéó›'+/735333##3#3##5#535#535#535#535#33535Y<;;@@IIKKAA<˜~‰ #  BÿéóÑ-157'67333##5##"''3255#535#535#53673535u !I&)   88II-@ )))¬ !  .9 #   +.\ÿéóÑ-157'67333##5##"''3255#535#535#53673535ˆ =#"  ..>>'5 """¬   .9 #   +.iÿéóÑ.267'67333##5##"''3255#535#535#53673535’ 8    ))77#/¬   .9 #   */ÿéñÑ-157'67333##5##"''3255#535#535#53673535¯  (    $$¬  -: #   *.eÿéóÑ-157'67333##5##"''3255#535#535#53673535Ž  :!   ++::$1  ¬   .9 #   +.tÿéóÑ.267'67333##5##"''3255#535#535#53673535›   3    $$11)¬  .9 #   */|FðÉ)733#"&55#'66567#53&''67&'Ô   @X  É   Q  XÿèñÐ#)/733##"''255#'67#53536#3'&'&'˜; E6EE&    Ð QO L:, .-Q#=6 I EÿçõÐ#)/733##"''255#'67#5353635#&'&'C S#!RR"    Ð SR OA(:S `@ J ÿæòÓ $*0733##"''3255#'67#5353635#&'&'qQ"" u $%5'uu9    Ó SR O<. .0Sa@ PyÿèõÏ7&'67&''67'&&'¯     Ï!93'IR0#,uÿéóÈ 7&'''667&'7''6Ô/ '+ÈBL>-+U! (0  *rÿèôÆ"7#5##53'>33267#"&5á<!    Æ‹yy‹(R.*  #,9 rÿìõÑ (7&''6#3267#"&553#"''326°  */1%  1 WÑ '&$&HY  o6 wÿéóÁ73##"''3255###535#w|  ZH-Á«  §'WfF5zÿèéÆ 7#5##5##535#33535#335é.I.ÆœTTœ<***f***yÿéðÇ$*73#3#5##535#35#35#"&55#'655#5#3yw$!J #5 J  JÇ"©©"""§* 7+ "772gÿìõÑ %73#53635#35#3#3#3#535#535#¡8s&KKKK6//;Ž?//7Ñ \\,97hÿíòÐ273673#3#3#3#3#535#'67#537#5367#53&'› ;79IO M(2y3   $ "- Ð "" !  mÿèóÏ#'+/7;?73533533#3#535#5#35#33533535#335335#5##535#35#m*))#y#*K""S" DDDDDÁOO -/[ [.gÿéïÇ#173#3#5##5##535#3#'3#3#73#3#5#535#535#g†;=+(::U**L((**M**Hr__bb_ÇEE4 a `ÿéõÑ (:IO73#53&'67#5&'67&'7''3##'3267#'67#3353#5#'6535#¬=‰8  /    \0  JN KJÑ   ,1 ! &" =/! 7i% " bÿéóÑ.26:>BJNRV733#3'67#73265#"&55'75#'65533#735#33535#3353#53535#35#35#™44E2$% ([[%:% w   Ñ     J>/ 17UH<# ! !$$$ ZÿèòÑ #8\afkq733#5'667#35#7'53373267#"&553633#3267#"&55#'67#5'67#367#335&'€F z A9VV# #=   KE,  , ") A <#4'  Ñ $   /  $     # '        oÿéòÏ $*0733##"''3255#'67#5353635#&'&'¯(  8"88    Ï MV S>/ /3M Z; I HÿéõÏ $(7&'7&'#"''3255##5'6735#35#É,   I & IIII# 1  9“6,ERÿññÈ73#3#535#535'2â $FFA–AEEEÈHOOGÿçðG73267#"&55#'665´  EG>  0!  (†ÿòòÉ735'273#3#535#†-./ ,,(`%-dHKLLM\ôÌ735'273#3#535#MJDD #JJ@’?Jž  STÐ 7#5'6A  $ÐT> ŠÿñôÉ735#'273#3#535#Š+,+ ++%^%+hF HRR]ÿéŽÐ 7'67#p  g 28°[ÿéõÏ #*.4:@7#5'673&''67&''75667#'3#7'6'6'6wG*     7F   ( *" 4 6Ϻ‰ 04     & ˜Z     ) ÿçëk 73#735#35#35#'67&'*¬¬„„„„„„ 8 *`))('k`D & %     ÿççQ7#5##5'66&'Ñ{K17 4+-' *)Q?.2C!%  ÿççc7#5##5'66&'Ñ{J26 3+!+( *)cTCFW'- $   ÿè]Î 73&'7367&'#5'67#   .¯ #    fd >•ÿñôÆ735'673#3#535#•& , &&!T &cG JLLPÿêóÏ"(767327#"''67&''7&537&'ìL   ", 5 78š  '+$!4$$##;  R<óÑ)7&'673265#"''67&''7&'7¾  ?R  "" 42Ñ     #     @YÐ 7#5'6G  (ÐfI %Sÿéó“)7&'673265#"''67&''7&'7¾  =Q   (' 22“  %SÿèðP(767327#"''67&''7&'77&'7Ó<  ( * 0+B        ÿç[R 7#5'6J  %RI7 pà¡ 73#735#335335ÁÁ)):((¡1PÿéôÏ 7#5'673533#&'#5'67#~ ))#   $Ï ª‚ 1 11D2{w-,;ÿéñ$ 7&'''67&''&'Ò  x  $   ÿèôÏ73533#&''67#7&'•!%$"  #!J  ‹DDP,#87%3KJ vÿéòÐ73533#&''67#7&'})3- )! %+(W ŠFFO-&?B#'XP DÿéöÏ73533#&''67#7&'S;MIA7; > 9p  ŠEEM-+GC-2GOHÿé‡Ñ 7#5'6u  Ñ¥z 8jÿéôÐ %17#5'673673267#"&55'673533##5#Œ /  !  @5555ÐT4'  !  c>>^ÿéôÐ $07#5'673673267#"&55'673533##5#… 2   $ F:;;:ÐS5'  ! d>>RÿéõÐ #/7#5'673673267#"&55'73533##5#  6 (NAAAAÐO5(     c>>ÿéîÐ +77'67#7376733276767##"&55'673533##5#8 + K '5  rceec‰") Sƒ1       ]::ÿê¦Z7&''67&'76  . * Z    ÿéò¡!73533#&'#5'67#7&'7'6bdV+0 /.%8 5$Q(  • ]DD.5UW1 )L   MÿéôÏ!73533#&'#5'67#7'6'&'`7@1# '& %'t Y  xWW9!#"8^"  ÿè¹f "7&'7'63533#&'#5'67#? m vF<<$ $ $9f    )),6D€òÑ#7#53533#&'##5#'67'6'&'t#EE- - $ m S  Ÿ!!  ;  WÿéôÏ!73533#&'#5'67#7'6'&'f6<- #" "&o S xWW:=pp=#"8^"  ÿéïÏ!73533#&'#5'67#7'6'&'dfS 3 7#!75O³ƒxWW7!@uu>$"4]   ÿéòˆ!73533#&'#5'67#7'6'&']_O"7 9%!9 4"L™  [  Q77%.NL)%<   PêÑ!73533##5'67#7&'7'6'___!6 . I%  $@¡0031$@   8(ƒÿéëÏ 73#5#533533ØUš±¡ÄÄ}ÿéôÅ733##"''3255#53567#Š`11  44JÅ\ Y"mÿéôÏ73533#&''67&'765#|="" !" "  <Ÿ00D+" 0}ÿéòÌ73##5#535'6Ú 2200 :Ì ?rr; gõÒ73&''67#'6e[1$ (92A f8T 7Ò   *  ÿéòu!73533673#&'#5'67#53&'E   1R"6 :$!; ;O3 g.. !'BB(  nÿìðÏ"73#"''32767#'67#'67##'6”S   D =1 +  Ï‘/*cn73cM'#C dÿîòÄ 733#537#537#33535#wfŽ!0(//)ÄÃOOOO°OnÿéöÏ)7365333265#"&55#'67#3533##5#x.  - #4::4²  K  =</e%%??uÿóóÎ 73&'73#3#536'&'{.1sV *~A2¤ G5>?66:2dÿéõÏ73533#3#&'#5'67#535#s1550%" %",1©&&&*%&-eb2$/&YÿèóÅ%7#3#3#"''3267#'667#'6655óji94   "  ÅX!B&07A"D5 1$^Pÿè®Ï"73533#&'#5'67#7&'7'6U"     K ~QQYY#+QÿèRÇ73#3#"''3267#735#<%.  / #)ÇK#L%4E)®ÿèòÇ73#3#"''267#735#²<%.  / #)ÇK#L%3E)YòÒ!73533#&'#5'67#7'6'&'\\H!3 8$"80#F¢ r  ¨** $-/%;    ÿçðj#73533533#3#535#5#'67&'&&://CÞ:&t:) *^%! $#V    gÿèôÆ!%73#3267#"&55#'67#735#35#35#zi  ) $CCCCCCÆ0   68+fBClÿïóÎ!%+173533533#3#3#5#535#35#35#35#'67&'q0jh{ (000000   2 µY6IY56(    cÿèóÐ*F73673#53&'''67'6776767'7''67'6776767&'Œ " ‰ )   X   Ъ %.,C' %.,C&\ÿëöÇ !%)-7#'6553#3#3#535#535#735#33535#335ór^'**2u3))'%:%ÇSD4 5>_!h<FkÿêöÏ!%)-BH73533&'73#3#5##5##535#35#33535#3353533##"''3255#&'o5 81151O1j]   ] » \\.-?     fÿèðÇ8>D73#3#"''3267'6765#535#5#53#3#"''3267'677#5&'7&'k=,+    ,,*p,?.0    09 O Ç:i   <:j  .DJP767'7&''667'7&''6'67&'7&''67''6'6'67'6š   ).8   A   & &'' 9) )+!: 91&T PÑ          2 ( wòÒ "7&'7'63533#&'#5#'67#=  Ž œaaK49!$5,AÒ     ÿçïŠ#'+1773#3#3#535#535#735#33535#3355#35#'67&',¦ ++=Þ;** 77K7‚77K7 @@@+ 'g#' )%ŠC    ( % (  "    fÿèóÏ#'+/7;?73533533#3#535#5#35#33533535#335335#5##535#35#f,++$~$,P##X# IIIIIÁOO ./[ [.SÿçöÑCGKQ7#35#535333##67&'#"''32655'675#535#'66553'73535&'ów/$$+ %     $$/ ?M ¾4 ##   %*    B3 0"\  2$*  _ÿê•Å75#53#3#"''3267#7‚2 "   #'I*K 9L_ÿèõÈ!%)?735#53#3#27&'7&''675#735#35#335'5#53#3#"''3267#7œ E  !' !! Z2 "   #tCCN! #p!€,,,*'I*K 9L ÿéòS!73533673#&'#5'67#53&'B ,P#3 9%!; <O. Q     64\ÿçôÇ)-159=73#3#3673#3#5##5'67#535#535#735#33533535#35#j„M(( 4 CH *>-&&%%OHHHHÇ5 [ J –0 eÿéïÇ'<BFJNRW7#5##535#3#3#&''275#535#535#3533##"''3255#&'735#33535#335'#2ïgg+$$#  *##$$,=  = #5# ÇÞÞÆµ  <  <  }  b " jÿéóÊ #AEIM73#5'675#73#5'675#&'7&'3&'73#3#3#3##5'65#5#35#t9'B9'0R1 ,*&&&&,d 6&&&&&ÊW  W     4 T   ÿèpj#73533#&'#5'67#7&'7'6&    O >,,  )16    ÿèYÏ"73533#&'#5'67#7&'7'6   <}RRWU"-QiÿéôÏ!73533#&'#5'67#7&'7'6q17'    j  xWW9!Bwv?'!9[   xïÏ#73533673#&'##5#'67#53&'D    ,A( 3" 9 .?- Ï      ÿêòœ"&2J7#3#'6553&'75##5#35#3353357'5337367326767#"&5ì>7°_))))<)#~3% 2  %  )… 0*! %/:   A ?      ÿçïÒ#'=J7#3#'6553&'75##5#35#3353353267#"&5536'33#67'ïC:·X+,,,?+( % % „33$ Ã3C< 3@]$#.   9 0ÿèñ 7&''&''&'''6Ú     &      ÿçïÒ#'=J7#3#'6553&'75##5#35#3353353267#"&5536'33#67'ïC9¶[---->-) %  #  ˆ99 ' $C< 3@\      .ÿèôP!73533#&'#5'67#7'6'&'6RVH- ."/ -D‘ d  /!! -- 0    ÿçõƒ"&<H7#3#'6553&'75##5#35#3353353267#"&5536'33#7'íE:±Y))));)( ( !&Š664# t -% ':  !   '   ÿçðÊ!7&'3673#7&''67&'vS!;à 8!#)e*!#'Ê#,,$g/22(j q ,"$'9ÿé’Ï 733#3#53533367'67''6iT ;   Ï775N J$”ÿéóÇ!7#5##5367#53#3'>&'ì(T!   ¡‚pqƒ  '@'  ""/ÿêÊ $(.473#3#53'#735#35#3##"''3255#735#&'''6EL Z&****I  ((3  4 ÊF* ( F2&  !(     Dÿæžž#)/73533#33#53535#35#35#35#35#&'''6LZ &&&&&&&&"    “  __ $ ! ! "    &ô73#3#5##537#'67&'×^LƒEca e["?+ )=*/ $  "™ÞË 73#735#'3#735#ŠTT//zTT..Ë22 ÿéß' #53#=##53#=#›V1gW0 >>  >> ÿèîÇ 7#53#3#5##533'6656&'u]Ñ^ Q}> j 8,%.& (-´|hh|&,E ) - ÿéoÏ 73'6573#'3# E#ÏpF0 *?pæÙ¿ ÿèvÂ73##53#67'5#'66RR f   Â>Z kA40 ÿê|Í 7'67&'3#"''3267#'67#1 0*O  Í5" ** &%R` IM"B@ÿéÏ73533#&'#5'67#F  22 ni'2ÿåïc 7'67&'67&'7''6]#*/a%)#+'-1'BK&c ' '%  iðÏ 7&'''6767'7&''6ª &#$H. /4& 2;Ï" "!  •ÿéõÈ 7&'''667&'7''6á %  È@F;*(V" )0 *hÿéó’ 7'67&'&''6767&'‹ N  ).’-(,1R (   ?>  ÿüyÇ 7'67&'67&'7&''6,<  %%Ç?"%2%, .$<O #* .ÿøsÆ 73#53#3#'35#35#735#[X_(## Î,PP,¨,2 ÿé|Ð)76767'67'67#53&'73#&''6(7  +,: 0    BnJ     !OÿèíÏ73#5##535333'>&'£<U/JXM  %¨kZZkBB'> fÿåðÏ 73#5##535333'6656&'°3E&=J  !$§jZZjD@8  "$\ÿåðÏ 73#5##535333'665&'«7L)BO ! $%§jZZjD@2   ##ÿèŸÎ(.47&''67&'763533##"''3255#&'''6‚ + Y855   8i  C Î   [N  J  ! hÿéóÎ(.47&''67&'763533##"''3255#'67&'×  \:66   : ]  Î    ZM  H & #! !dÿèôÑ!)73&'73#&''67&'#67#3#'3'65m5 : !! C ? (A$!¹    Dgg. $ ÿèkÎ(.47&''67&'763533##"''3255#&'''6V    ;###  #I  /  Î    ]P  L   UÿêòÏ 57&'67&'67&'63'67#&''6~   =   :   AMh _E )Ï   = M?  QÿéêÈ7#"''3255##53#3#735#ê  q ZZ HH""ÈÅ  ­Ìß,W3ÿèä‹7#"''3255##53#3#735#ä 'wwggBB‹‹  t‘£#9Kÿé´È7#"''3255##53#3#735#´ E1100ÈÅ  ­Ìß,V6ÿèâÏ#'7#5##535335335#33533535#35#35#â;'v'';'''';'';''¥½½****N;;;;;ˆ:::::PÿéíÏ#'7#5##535335335#33533535#35#35#íw/].w./¥¼¼****N<<<<<Š<<<<<rÿéïÏ#'7#5##535335335#33533535#35#35#ïV$F#V##¤»»++++M;;;;;ˆ<<<<<ÿéàV#'7#5##535335335#33533535#35#35#à:)t((:))((:)):))Jaa $8\ÿéôÏ 733#3#533#&'#5#”@@K”58˜K* 9Ï# FdnÿéñÏ 733#3#533#&'#5#77@€-/ƒ@$ 0Ï # EdÿéóÏ 733#3#533#&'#5#§//7q&(t8  )Ï # DdYÿæöÏ$*73533#3#&''67#53655#&'7'6n188?<' '2 2271  d  ¯ ;/1,(;   -öŽ73673#&'#'67#Po<' 1*= -@{   '%iîÈ 73#3#535#5#35#335335ÙE7À8C‚-6$$6-$È<<* ‡òË 73#3#535#5#35#335335 åG8Ç9HŒ28&&82%Ë ++  ŠòË 73#3#535#5#35#335335 åI:Ç;JŠ.:((:.'Ë ((   pòÉ 73#3#535#5#35#335335 åI:È;I‰.:((:.'É99( ÿèõ‘'+/4:D73#3#3&''67&''67#5'635#35#67''6#5'6uiqnLN ! +!,"  PPPP †   ‘ 9   2 %  -  m P@ ÿé€Ç 6<73#3#535#5#35#3353353673#&''67&'67#367o#h <    ]&: %  1 ÇBB1 F    ~ÿéòÏ!73#"''32767#'67#'67#'6›K   = 7%  Ï–. %mq;6fG$ < "c]óÇ 73#3#535#5#35#335335c-&ƒ&,R%%ÇFF5$$$$$WÿêïÇ##535#53#3#'#3#;5#35#Ög(-˜/))Q¨##¨Ë#tttt]ÿèåÄ73#735##53#=#eyySSˆbÄY5·mm66§ÿðìº 7#5##535#ì  ºÉʦ”?ÿéôÏ'7'67#53&'73#67&&'#67'h  -5D  HC%"  ! K #0$ "# HBa   föÐ73#&''67&'#53&'67€`$'8C0-< 1&`##Ð     #ÿéâd 73#3#"''3255##5##5##537##¸Vc  %%%HNd>  '<<< %4Å wwwww¡ÿê}Å"73#3#"''3255##5##5##5367#o04     !+Å wwwww¡r!òÆ "'73#3#535#35#35#"&55#'75#3'#65r€'!s"): M  M5Æzzƒ,&,(,3 gçÑ 73#7&'''6'6uMnŠ =s vÑ=5  #  mãÐ73533#"''3267#'67#73#735#$5   !& #~QQ++¿7 /$F$ÿíò„&7773267#"&55'75'75'6Ð -2`btv 4>$SVIL#&f„       ÿìòu&7773267#"&55'75'75'6Ð-3bdtv. 9)PSDG^u       KÿéôÇ$*73#3#5##535#35#35#"&55#'655#5#3K©5,p-6H,p pÇ"©©"""§* 7* !772dÿéòÇ$*73#3#5##535#35#35#"&55#'655#5#3dŽ+%[&,>$[ [Ç"©©"""§* 7* "772rÿéñÇ$*73#3#5##535#35#35#"&55#'655#5#3r&!Q"%8"Q  QÇ"©©"""§* 7* #772[ÿòõÅ 73#3#735#5#3#e‰‰ qqJJJJ)ššÅuC Q.ÿòìÅ 73#3#735#35#3#ÊÊžžvvvv2ØØÅuDPMÿòî— 73#3#735#35#3#.¢¢ŸŸwwww2ÜÜ—a9?9HÿòòÅ 73#3#735#35#3#S˜˜ ~~VVVV,ªªÅuDOMŽÿòôÅ 73#3#735#35#3#bb RR----ffÅuC!S!O^ÿïóÎ!%+173533533#3#3#5#535#35#35#35#'67&'c7wuˆ +777777 5 µY6IY56'     E€È)733'67##"''3255#'67#53&'767#b,    -   KÈ   )  %'  vÿòõÄ 73#3#735#5#3#~qq``;;;;#ÄuC Q/iÿòõÅ 73#3#735#5#3#q}} iiBBBB&ŒŒÅuC Q. ÿñòÄ 73#3#535#5#7'6'&'ÐDPæNDx \ ˆÄ­­­­­Š6+ *2,.1*YñÆ 73#3#535#35#'6'&'ÎDNãMBU""] ˆ  ÆHHHH PÿññÄ 73#3#535#5#'&'7'6_‹*1¡4%M+    Ä­­­­­ˆ-/2+4* )]ÿññÄ 73#3#535#5#7'6'&'f„'.”,#I?  a  Ä­­­­­‰8%.--/2+\ÿèöÏ#'7367'673#&'#'67#3'6673#h-$;0G$  $ ,$&!  1“,%+3( &*kUñÆ 73#3#535#35#'6'&'ÎDNãMBU""] ˆ  ÆLLLL Kÿïï‹ 7#53#3#537#37'6'&'~*’,5¤3(3 q  xvvva+ "# %Kÿêï$*73533#3#535#3533##"''3255#&'Y;<W$ ¤     < [ÿëóÆ#7#53#3#'655#5373#3##5#535#‚</ '.@´DA)$5VDrrDQðÈ!7#53#3#'67#5373#3##5#535#F*^!"") !/0Bc+00''%¶"-66ëÊ7#53#3##5#537#53#3##5#53?'`'((**q&_&((**» ÿçõ"&<H7#3#'6553&'75##5#35#3353353267#"&5536'33#7'íE:±Z*))):*( ) ! „664# z /& "(=  %  ,    ÿçïÒ#'3I7#3#'6553&'75##5#35#33533533#67'73267#"&5536ïC9¶[---->-)™99 E£ %  $   $C< 3@\     '   +ÿçïP!73#735#367#53#3#&'#'67#JŠŠhh'LE¦O]K7@D 5@P! 1  FÿéÎ7'6'67#p  %Î-a "' xÿéóÁ73#3##"''3255#šOO c"   -Á.k  hÿïïÏ73533#3#535#3533#3#535#$QQQaÖ`QSSSeÞdS­""""b$$##"‰ÝÉ 73#735#335335"»»%%7%%É@ ÿè~¤#'+/5;733533#3#3#535#535#5335#35#33535#335'67&'%/)c)1(?(13¤ HH !K,"    Hÿõ§Ï!73533#3#535#3533#67'75#T V")2&±W# &Tÿô¶Ï 73533#3#535#3533#7'75#_$\$"*4(±W$ 'bÿéóÊ (73#735#35#5#53#3#33#"&''6~ee@@@@ 4|4))&' Ê\6:OA"mÿïôÏ73533#3#535#3533#3#535#~...1~9.0//6‡=0­""""a$$$$<ÿùÄu73533#3#535#3533#3#535#F0007€60222;ˆ:2g2=Á¤73533#3#535#3533#3#535#K,++5ƒ:,---7ƒ8-DfõÐ'77&'3'33#673267#"''67&'#36533#'67#Ù  `B33      C!Ð  +/&-$YÿéöÏ!'573'33#67327#"&''67&'#7&'3533#'67#dA43     Ap  d$ £,,<'##2   K<   k%%;0gÿéöÏ#)773533#67327#"&''67&'#7&'3533#'67#hA33    Bo  ^ £,=%3! #2 #H<   k%%;0iÿéöÏ &473'33#67327#"''67&'#7&'3533#'67#r:--     ;g  [ £,4$6 #2% #H<   k%%;/sÿêóÏ!'773'33#67327#"''67&'#7&'36533#'67#v7..      7b  T£,2!$5"/$   K;  i6 *ÿæõÏ%+73533#3#&'#'67#536565#'6'&'#TUUhUJPM DQYT y  ¯ 1,!7<+   ÿëÏ"(73533#3#&''67#535#'6'&',1179 $ ( 25,\  A  ²;  (-D  ˜ÿéñÃ7#"''32654'7##5ï  .Ã@ DÇÚƒÿèôÇ%*733#"&55#'6653&''67&'#367Ü    ]     Ç<  0$  +d1   $bÿæöÏ$*73533#3#&''67#53655#&'7'6v.33;8# $- 0 04.  ^  ¯ ;01,(;  eÿéóÐ:7&'77673267#"''677&''7''7''7&'3 0<34;:   % ;<--,,Ð       "'    &pÿéóÐ:7&'77673267#"''67&''7&''7''7&'3Ç ,7//65    $76))()Ð      "&   &ÿèðÑ$A7673267#"''67&''7&'73#32767#"&55#'667#×b  ) 7# IAYÜM$".(EÇ         h5 <#" MÿëôÏ#@7673265#"''67&''7&'73#3267#"&55#'667#æI   ,*=•7          e8 >!%  ]ÿæôÏ#?7673265#"''67&''7&'73#3267#"&55#'667#ã<    "!7,   Á        e8 >#(   ÿè÷Ï">7673265#"''67&''7&'73#32767#"&55#'65#n/   ! 1m,<G: ¿   &    a9   >&& 4éÃ)/573#"''3255'675#'3#"''3255'675#&''&'¸1  81    C  +  Ö *>– *>  BÿåôÑ#>7673267#"''67&''7&'73#3267#"&55#'667#àH    1/G 5    (Á    c8 >#)  ÿèíš$>7673267#"&'''67&''7&'73#3267#"&55#'67#Ø\   +8 8# JA [×M$ I > B“      T ". ]ÿéôÏ'+/735333##3#3##5#535#535#535#535#33535f177<   ™ " ]J_ÿè÷Ï%+173#3#'6553&'#53&'367#'6'6'6® 4r 9 9 8 2,' ; 4, (> ?Ï 7-$ #,@ G'   iÿçòÇ 5;73#3#535#5#35#3353353673#&''67&'67#367oƒ)"w"'H!!p.G-+ ! $:ÇCC1E   jÿêõÊ '73#735#73#735#3#3#3#"''3265#7#w55,77Mmm‹TO  V !ÊB B ?4 %iÿïóÎ!%+173533533#3#3#5#535#35#35#35#'67&'n2mk~ (222222   3 µY6IY56'     ÿéôÏ'+/735333##3#3##5#535#535#535#535#33535%NRRZZllffQQOOffNb>>>½(((('ÿéñ—'+/735333##3#3##5#535#535#535#535#33535%ORR]]iiddYYQQffOa???‹     Qÿé«É #7'67&'&''6#5##535#k -  5  É$ %  0^^<+gÿéóÏ'+/735333##3#3##5#535#535#535#535#33535v+//33>>::,,**11+>»''''& ÿósÇ"7#3#3#3#67&'7''67#535k?<<< °# 2 9 #ˆˆq7& $5=6 :9|;. +RL=!L9&,(bÿç÷Ç 7'66553#&'7#3&'&'‹ q ! KK< " !|=, ) RK=M9'.* ÿèò7'6553#&'7#3&'&'<¯" / 7 !ˆˆo4$ "2:588T *" "(=<(6*"    hÿç÷Ç 7'66553#&'7#3&'&'’ k EE9 |;- +RK>!K9'.+BÿëñÏ1J736533#"''3267#'67#3533#"''3265#'65#73533#"''32765#'65#Z3D17 ,/%   ' W&   ' º 4 'QO57"*P.7"* ÿèQÎ 73533##5# –88›› ÿçóP 73673#&''67&'67#367 E‹9D("'J:!$ 7N >     DÿëñÏ1J736533#"''3267#'67#3533#"''3265#'65#'3533#"''32765#'65#e/B /4 (+B"   + #U"   + #º 3 %QO56#*O 16#*RaóÑ/G73#"''3267#'67#5363533#"''327#'67#73533#"''3267#'67# <   / 0# ,5E%   O%   Ñ   <       Vÿèó] 73#735#35#35#'67&'fYYYYYY  K]U= ! !    VÿéñÈ/37;?C73#3#"''3267#3#7&'7''75#535#'67#735#33533535#35#g„[j  9((*25))  &^*È>g+X// žÿéôÆ%*733#"&55#'6553&''67&'#367ã    G    Æ9  . +d -      Rÿð Î"73#35#535#53#56#53#7'7p (!K I!'Î jdŒ(  ÿêUÏ7367&''65''6+  Ï9  ( 0I2+$eÿéôÌ1J73673#"''3267#'67#3533#"''32765#'67#'3533#"''32765#'67#u,8  & 0 & (="    G"    ¸ 40 !TN/A6N/B7 YðÌ(,7367&'#"''325567#3'67#3#- '9  yT: 1=››Ì    (! & %6)ÿéÖM7#53#"''32=#335;­  ‡‡‡‡ #dI  0  wÿéðÏ#'7367326767#"&5#5##535#35#w,% +3 )<nFFFFFÏ   $zz-HÿéîÎ#73533533#3#535#35#'67&'-F..8Ý7-AFF "(m! $Ÿ////AAAA] &XÿèïÍ#73533533#3#535#35#'67&'b#!!%’"1##QŸ....AAAAZ +!eÿèïÍ#73533533#3#535#35#'67&'n!….LŸ....AAAAZ +!ÿéîm#73533533#3#535#35#'67&'.G//9Ü7.@GG!")k" %X4   dóÑ767&''6''6{ % L! A k:Ñ "' >  Kÿéñ‹#73533533#3#535#35#'67&'Y)!!)¡'2)) Uq&&&&?  ÿëS 7&'&''62 ,    # #  DóÐ#73533533#3#&'#'67#535#35#/>22A=  %%84 ,>=/B>>· $GÿýµÐ '73&'73#676767&'7&''67'6N'"`!  # ((² ) @%    "sÿèñÍ#73533533#3#535#35#'67&'{z*H Ÿ....AAAAZ +! ÿéxË #7'67&'&''6#5##535#,5!?***Ë $#  /^^<* ÿöMÏ7&'367'5#- ) Ï ?o  qGÿê÷Ï _ci7&''67&''63'33#673265#"''67&'#3#3#3#67'675#535#535#535#75#7&'f   2   Lu%$    $)3$4f Ï     )FF'+! "!3  jhGTUòÏ#73533533#3#535#35#'67&'a+%™#.++  Qº)    ÿìôe!&*/7'67&'#3#3#53&'#535#73&7##35#C J0 43 3J;Þ2L27F!0'4    E6ÿðÉr#73533533#3#535#35#&'''6@"&“'/""*#]2  ÿçð\#73533533#3#535#35#'67&'+F,,8Ü6+?FF$*+e(' '(M*   WóÏ.736533&'73#673267#"&''675#'67#BA -Y    $# 4 .<¶       4(ÿèíY-73#673267#"&''675#'67#53733&'« 2U   ' !6 .( "2R & 8ÿèô› (.73'67'677367&'3267#"&5'&'s> 1 * !  "K  ›a2 $  P*    0  ˆgÿçó+173'67'6767367&'3267#"&5'&'• ! #     8  K,& &  <%   , z_ÿé÷Ì"(.73&'3267#"&5'3'67'677'6'&'²   $(" S d  ÌeJ  ÈvC* "3 R & fÿçõÏ "7&''6&'67#53&'¤# ! (   Sk  'Ï..+'   X   ÿé‰Ì !'753'67'6767'53&'&'7'62'#B X n dh}>( #5B Æaj   ÿëðÆ!%73#3267#"&55#'67#735#35#35#W ! 111111Æ0  65*fBC{ÿëðÆ!%73#3267#"&55#'67#735#35#35#ŠY " 333333Æ0  66)fBCrÿéòÆ!%73#3267#"&55#'67#735#35#35#}d " >>>>>>Æ0  67+fBCÿìvÆ 73'32655#3#3#735#f#SII==ƾ  ¥O*]ÿëñÆ!%73#3267#"&55#'67#735#35#35#rm  - %GGGGGGÆ0  65*fBCÿérÏ733#3#5##5335#1--$0 00Ï-3ssR?ÿé{Î733#3#5##5335#255.;! ;;Î,0wwR@ÿé‹Å $7#3#3265#"&'#67'535'#€%*( " D$ÅI"% ),/B  Ò%%\%% ÿéÌ !7'67&'3#"''3267#'667#8!7+Q     Ì=)$4* &%SY'F-1*( ÿé€Ï73#3#"''3267#'67#53&'H+>6  $"!3Ïf&ND5 A`ÿéòÄ#7#5##53'>33267#"&5Ìs>/3 ''   *Ę…„—":-> $+I  tÿé÷Ì"(.73&'3267#"&5'3'67'677'6'&'º   # I  Z  Ìe I ÈxA* . T $  wÿðóÄ$73#67&'7''67#3533#3#535#}q5 (,%'++6|2'Ä( #  (u ''ÿèôu,159M73533#3#535#733#3&''67&'#535#5367'3#735#676767'27&'...)c(.ž++%    %((  ³``<<  36 i   !  1 )    ÿéñÏ#37;L73533#3&''67&'#535#67'3533#3#535#3#735#7677'7&'ƒ-..)  *-  È.//+g).cc<< 5@  ¬###6(  .#5 !T8=5  VòÑ159I73533#3#535#73533#3&''67&'767#535#3#735#7677'27'100+k-1y***%   G'*rff@@2? É      "   ÿèó_#)73&'&'7'67&''667#&'`\!0 :& 1! "2&1# .9Q1X< ;V_     2   ÿêô059=N73533#3#535#73533#3&''6677&'#535#67'3#735#67677'67' .//,g(.w...'  !   +. Ádd== 1< u   ! !*     †õÐ 73533##5#3533533##5##5#[[[[2`22`2Å     eóÒ-2BFK73533#3#535#73533#3&''67&'#535#67'3#7'27&'#735#277# 333-k,3|,,,&  +,  Ád 3>  @@ 'Ì        #  ! ÿìðk+/73533673#5##53&'3#3#3#535#535#735#F  0µ0”@WWfÞeWWAllg   ""!%   [ôÑ.3AEJ73533#3#535#73533#3&''67&'#535#67'3#7'7&'#735#77#333-i+3{,--&  (, ¿b 3>BB+È      "    $ GÿëúÅ,37327#"&55#'6553#3#"'#5##535#32655Ü [M  0ÅV66# .REN@; 1>_'R $zZj&F>OÿëúÅ,37327#"&55#'6553#3#"'#5##535#32655Þ VJ  .ÅV66#!/QEN?< 1>_'R $zZj&F>>ÿëúÆ27327#"&'5#'6553#3#"''3255##5##535#Û bU     "ÆW55! /QDM@; 2<`(R >zzZjJÿéõÐ&*73&''67&''667##5##535#ƒQ% *"0'  %EbYYYÐ        ^\ \>+XÿêöÃ"(73#3332677#"&547#67'7#&'XŽ]O    <#A  Ã!d(   %T}·NÿéË73#3#5##535#535'635#„ 555*@*55@!@@Ë%)hh)"µ1ÿéšË73#3#5##535#535'635#9;;-G.::E&GGË&)hh)$¶2 ÿïÇ7'67#53&3#7'75#Y& IRh  Xr/6‚9/} 5 6  8 ÿî›Ñ'+73#"''3255#3#3267#"&55'6#34R   C=.* 5 /Ñ}  f I1  t#((kÿéóÏ73#3#5##535#535'635#â ::.J0::>#JJÏ+&dd&'¶1=Î735'273#3#535#35#.22..$[$.77Ÿ <<@€=îÎ735'273#3#535#35#€-11 ..&["-77Ÿ <<@ 5~Ï!'-7&'3#3#7'75#535#5'6'6'&'C  A%%,/9+## '2  9 Ï  $&K    †ÿéóÏ73#3#5##535#535'635#ã --%8&--"088Ï+&dd&&¶19ÿéŠÎ 73&'#''6`  Î ¬¬& ÿéðÉ73#3#5##535#535'235#Ù (1ffO…Jff(-_:……É&&f f&$²3 ÿésË73#3#5##535#535'635#i ))"/!))!1//Ë&)gh)#·2 ÿéyÍ )73&'73#&'''667&''67&' *,kQ  %   $ «   !    cÿê÷È&,287367#53#3#&'#'67#3#"''3257&''&'''6n,+o1B% '#,  B   1 ™!"g  K#)+"!') ) !Nÿéòž73#3#5##535#535'635#Û9HH;d;HHF3ddž N OŽ" ÿçNŸ 7&'&''6+-Ÿ  #  $ &$"gÿéò73#3#5##535#535'635#Ý <<3P1<<*:'PPM NŒ!ÿêgœ 73533#67#"''32655'75#"     '"| !/ %%ÿõ` 7#5##535#35#`!!!!!›š<*f+fÿéóž73#3#3##5#'6…bTGGLL ž 0ˆ eÿéñ73#3#3##5#'6ŽXKDDEE  1‰ aÿéóÏ73#3#5##535#535'635#á ??2P2??C'PPÏ+%ee%'¶1€ðÉ73#3#535#535'635#ß//#Z$..%355É#NN *TíÌ73#3#535#535'635#Ö BB1|6BB ?"RRÌ!KK˜'– óÇ73#3#535#535'635#æ&&L%%+))ÇGG&LÿéøÊ37;7325#"&547#'6553#7'7''75#535'635#335á WW   ! !  ÊI8&%%;/?n<$">zV!Vk555 ÿéõÉ48<73267#"&55#'65535'673#7&'7&''75#735#335Š. :P! $  És4& 0=`m<# ?xGV 444ŒöÐ'+73#"''3265#3#3265#"&55'6#3¨9  -*   !Ð Y @6/   ] $ ÿéò\73#3#5##535#535'235#Ø'0iiR‘QiiS]C‘‘\  66  T ÿèó£%)73&''67&''667##5##535#a [%0 :(/B :( 0;Sbttt£    "  Wh}}}y    .??'&|ÝÈ 73#735#33535#335&··==Q>==Q>ÈL. ( wÿéôÐ$(73&''67&''667##5##535#œB     5G:::Ð       a\\<+ÿéxÐ#'73&''67''667##5##535#82 #  "'9%%%Ð    " Lbd?-oõÒ159=73&''67&''667#'3#3#7'75375#735#3#735#™>  $  ) 2 W!!!%+4 %55\^^<<Ò  $  # ,  dôÒ159=73&''67&''667#'3#3#7'75375#735#3#735#™>  #  + 4 ŽT%,7"11Ybb@@Ò   (  ' .$  ÿéÐ-26:@F73673#7'##"''3255#5'67&'767#&'35#35#'67&')5%       #V ,,,,   R  ·    @0 -6   &!1(    ÿéŠÍ #06<B73#5'675#73#5'675#&'7&''67&''6'67'6 7  %?7  %+P &  ! #& + ./ "C DÍU  U      K      + ÿéŽÑ"73#"''3265#'6##55#35*X  I H11Ñ ˜5)} "!m~-NÿêõÑ4733#'665537#'6#3267#"&553#"''326‹I(} QA "V3%.Z   Ñ=1( $G \T  l7 ÿçóÑ6733#'655'6367##3267#"&553#"''326T ] J¯! 1 X S€U +.  :9~ Ñ 9/.#,D   EN   d5 QÿêõÑ3733#'65537#'6#3267#"&553#"''326ŽF'xM= !P0 +U   Ñ=4& '0G \U  l7  ÿçô˜7733#'655'6367##"''3267#3267#"&55U] G°! 1KT  T *1  ;8˜ ($" 0 )'0E?ÿéñÐ4733#'665537#'6#3267#"&553#"''326€K+„ TA W6& 1]   Ð>4& %G [T  l6 oÿêõÑ2733#'65537#'6#3267#"&553#"''326Ÿ;`>0 D% # H Ñ=4& (0F [U  l7 ÿèpÐ"(,048733#"''3255##5#'655'6367#35#33535#3352'     !1!Ð – )%%+.N 6H ÿëƒÏ1733#'655367#'653#"''3255#67'533"Q* (  <    Ï =2' ).G  O0 U  kKÿéöÏ$73533#3#&'#5'67#535#'6t88@3&"),2@# à ''')#$+cc.##-'  ÿéõÏ$73533#3#&'#5'67#535#'6<1SSi]%: :&$9=$_i; Ë**+03]Z/-+ OÿéöÏ$73533#3#&'#5'67#535#'6v66>1&!',2>" à ''')#$*b_+"#-' bÿéöÏ#73533#3#&'#5'67#535#'6‚//6)!$'6 Ã''')##)`a-"#-' !YÿéöÏ$73533#3#&'#5'67#535#'6u66?5(!!%1?" à '''($"']_+"#-' hÿéöÏ$73533#3#&'#5'67#535#'6€007* )8à ''')#$)a^)!#+'  ÿéÏ%7#5'67#535#'673533#3#&[#.4  ..55@WW!!(' $ '''gÿèôÍ$73533#3#&'#5'67#535#'6†33<5! !/; Ä &&'60W^/%(2' CÿéöÏ$73533#3#&'#5'67#535#'6j ==F8*'+,5G( à ''')#&,fh/%#+' ÿé{Ï&7&'#5'67#535#'673533#3#O '-&&--VUR!(' " '''VÿêíÑ"73#"''3267#'6##55#35xj  ] P77$$Ñ™/… %$m~-aÿêíÑ $73#"''3267#'6##55#35ƒ_  S K44!!Ñ ’! $#m~-IÿêíÑ $73#"''3267#'6##55#35ot  i U<<))Ñ “! $#m~-AÿêìÑ $73#"''3267#'6##55#35jx n Y@@,,Ñ ’… #"m~-*8ÜÑ 73#3#53635#35#nZ– ²8.„„ŽŽÑ 79ƒ 1a&ÿèÚ. 73353#5#533w=¡=.'= 1~ÿéëÐ733#"''3255##5##53ª-  ,Ð%|  d¯¯”ÿéiÐ73#3#5##53635#352%?B. --.Ð MaÍ H)c++ÿìpÐ73#3#5##53635#35>"CG3//3Ð M`Ê H)d**ÿéhÐ73#3##53635#35#2%?AA --..Ð MNÎ I++ ÿèôA!73533673#&'#5'67#53&'B !# 'J4 7($80$L+@   ++ _ÿéóÊ*7#5##53#3533#3##5#535#'67#536ðg5LU '55>>CC: 'Ê-, ...‡ÔÉ 73#735#35#.¦¦ÉB( # ÿéí~)7#5##533#3##5#535#'67#53673#3í²gII]]``G +]k +~&):   eÿéóÊ*7#5##53#3533#3##5#535#'67#536ða2IQ $22::AA8 $Ê-, ..ÿéwÊ(7#5##5#5'75#'67#5373#3533#wB] '*& 39 ##Ê-,›.,dÿéôÏ$(-7533'67#3&''67#&'#'65535#67©1 , ¯  10!  #<. /8TD1Bÿéí’)7#5##533#3##5#535#'67#53673#3í²gII]]``G )`l -’*-A""   uÿéóÊ)7#5##53#3533#3##5#535#'67#536ñU,@G ++33770  Ê-,..ÿéÊ+7#5##5#5'75#'67#53673#3533#6Y}17;2 "BI --Ê-,Ÿ)'  :òÒ$0@DH73673#'67#'#"''3254'7##53#3#535##"''325##535#35#jYd   !pV&4{5]   IJJJJÆ + *€‘6 G ÿêôM #)7&''63#"''3257&'''67&'|2@ 65'B F    )  DŠ M(     tÿèöÐ $7&''6#5'753'&'&'µ " +RBE;  Ð !v64  ]ZO    ŽÿèöÐ #7&''6#5'753'&'&'  #@142  Ð !w74  ZWO     cÿéðÏ#73#3#3##5#535#535#536'&'Æ )922<<==449H 3  Ï##::## 8ÿéï¤#7&'73#3#3##5#535#535#536i ] 1LDDSSPPBBIb ¤   ++\ÿéðÏ#73#3#3##5#535#535#536'&'Å ,=66@@@@66$+( +Î: > ;(!&]$E*2*#kðÏ73673#3#3#535#535#53&'R 3 7`UUgàfUU_6Ï      ÿçîf'+/4973533533#3#"''3267##5#'67#735#335335365#35#>*99G  40 : ,7 2>R*%œ&#5,+[ - # ++" , ' gÿè÷Ï-1773533#3#3##'32765#&''67#735#535#35655#q1<<33? ,/ -&- /+**1E 5½6 &/'' )8$9 uÿëòÎ 7#5##53&'73##"''3255#òV3H|0   8­00 =[  W[ìÑ73#3#3#535#535#53&'736¬4^NNbÜfNN^5 7 Ð  [ÿéöÐ,0487&'#673265#"''67&'#'6553'33#3#735#â"    ;LF..//Ð /3!+3)$IH<- /6S##%E#bÿéöÏ!26:>7&'#5'63&'3#"''325'#"''3255##535#35#73#£% L  ->9  ( 8Ï " .s  mt  1‹%8-\?ÿéôÄ $(.47#3##"''3255#5367#'65535#35#'67&'ë6/&  '0!59999  X Ä _:  6_ [;4 ,6lQ=4"   ÿêêÈ#'-37#3##"''3255#537#'665535#35#'67&'êRG;  B4N 9llll  i ÈF  FSF4 1$_; & "    2ÿè÷Ê#'-37#3##"''32655#537#'65535#35#'67&'ñ< :-   1" = 8KKKKY Ê^> 9^\<7 -9nQ:3$  Pÿè÷Ê $(.47#3##"''3255#5367#'65535#35#'67&'ò21&  )03<<<<P  Ê ^>  9^ \<7 -9nQ:3$  Xÿè÷Ê $(.47#3##"''3255#5367#'65535#35#'67&'ò,,"  %,34444  M  Ê ^>  9^ \<6 ,9nQ:3#  cÿè÷Ê"&,27#3##"''3255#537#'65535#35#'67&'ó*)   $)20000  I Ê^>  9^\=6 ,:nQ:3#  [ÿè÷Ê $(.47#3##"''3255#5367#'65535#35#'67&'ò,,"  &/35555  M  Ê ^>  9^ \<7 .9nQ:3#  mÿêôÇ"&,27#3##"''3255#537#'65535#35#&'''6î$" &0))))5  4  Ç`A  >`QC5 4>^K>4!  ÿçìÍ 73#53&'3#'65536'&'_ÎX> ?±o F  Í  -0' &8[ÿçï—  73#53&'3#'665536'&'¬:„5* %n I*— ! $ *  ÿé]Ž7#"''32654'7##5] "Ž*.”¥`ÿêóÐ 73#53&'&'73#'65536µ1‚; D #oI Ð  -0( %9XÿëóÑ7#'6553&'73533#3#535#ñn82$%%/p.$·K>1 1:V  V44GGaÿéóÑ 7#'66553&'73533#3#535#ñf 6 2!##,i+!·L@0 -"X  W55HH\ÿèöÎ$7&'3673#3#&''67#535#€   O !9A;& '1 3 9=8Î (!474 #/+Bÿí¦Î &7#53673#3#&''67#5365'&'q' "% # !  ‰* "/ ^ gÿéöÎ#7&'3673#3#&''67#535#Œ  F  3:5" "0 0 471Î (! 361 !/+GÿèòÐ&7&'3673#3#&''67#53655#x  L  %>KI534 9<@5Ð )!50."-!>ÿîªÍ%73#3#&''67#535#536'&'‰$') " " "% /  Í !'+%Mÿè©Î &735#53673#3#&''67#7&']!    #  e# & (7yTíÑ%73#3#&''67#5365#536'&'¿ %;DF& !0 5=@8L 7  Ñ$"%   ÿèŒÍ$7&'35#53673#3#&''67#:  0)<  124 "(.Íc'' $. '4òÏ$7&'35#53673#3#&''67#±'!/#'(  "%Ï  Q% *>ÿñ¾w%73&'73673#3#'67#5365#&'E  0;= /&03.O W   * / @ÿèï£#)7&'73#3##5#'67#53655#5365#o  b '$++0+-#\.£   *DD/#O*SÿèõÏ#)73#3##5#'67#53655#5365#'&'à *$$,)#!I *  Ï6]]@5 %^6(sÿåóÑ!%7&'73#3##5#'67#535#5365#K  t ;1==B? 6>>/xBÑ   9YY9$-9b99bÿéóÐ &73673#3##5#'67#535#5#'&'oG  !$( !!Q"  ¢7\\@4777. wJÿéóÏ!%7&'73#3##5#'67#535#5365#~  ^ !((-, $%' [ ,Ï  8\\@48b88hÿéóÎ%73#3##5#'67#535#5365#'&'Í "' B!  Î8\\@48a88u dÿéóÏ!%7&'73#3##5#'67#535#5365#‹  R " &$ !"I%Ï 8\\@48a88vÿèóÐ#(7&'3673#3##5#'67#53655#5#“ @  GÐ $7\\?5 %77(ÿéßÐ733#5#535#535#53'&'7'6vR©©¡¡§UD  ª ÐR•''H  ! eÿéíÏ733#5#535#535#53'&'7'6 8nniim6)  s ÏQ•''H  ! nÿéíÏ733#5#535#535#53'&'7'6¤4ffaae2$ j  ÏQ•''H  ! [ÿèñÑ!)73&'73#&''67&'#67#3#'3'65c; : "# G A *C&#¹    Dgg. $ÿèð™#'73&'73#&''67&'#3673'673#_`0 #8A,(>6#'? W7 /O…     EA1DÿëÎ,B73533##'3267#'67#3733##'3265#'67#73733##'3265#'67# * #       ;      ². ' S E 09 1D 08 0zÿìôÎ %733#3#533#"''3265''67&'¬''1t/   K  Î!!S  C '   €ñÉ&7773267#"&55'75'75'6Ü.068  $& 0É" % ÿéùÎ $57'67&'''6767&'3'667332767#"&50 9 (,-  ' MW+Î# 3 &" 30( $+J   FõÐ%+73673673#3#&'#'67#5367#7&'T  ,o‡7% -F' +@ I+¬    5  =õÐ%+73673673#3#&'#'67#5367#7&'T! ,n‡8$ /F' -@ J+©    8   mõÐ$*73673673#3#&'#'67#5367#7&'Q   -p …5# ,G($< D+¶        (  dõÒ*7&'3673673#3#&'#'67#537#A  S *o„5! ,C) )?GÒ        ÿëä)3Q733#3#&''67#&''67#5353353#5#5335#&''67#&''67x,,Z9   5  7'"O¡    3           /WQ      ÿèè‹*.273733#5367#35#3#3#3##5#'7#535#735#35H!<'¿?)5/I¢F]]^^R_H}}B~   "&   / )ÿèØx 73&'73#3#3##5##535#)NL¯     {{{g    6 5ÿçÕr"(,06:733#"''3255##5#'655'667#35#33535#735f7; 84 13 ,  00B8{10B8r T  $   '  ÿéäp)/5767&'7'#"''3255#'67'67676'67&' ./>   &&""?# p f "       E     ÿéÜ`73533#&'#5'67#:=;;0" "#/ 42H7? lîÏ 73#5'6773533#3#535#'&'U '"222,k,2PÏc &  ÿéíà &,73'67#&'367533#'67#7&'&'Ð  ¸4*mV]QHcz(" 'à  N.11%NMÿéíŽ &,73'67#&'367533#'67#7&'&'Ð  ·3 *lU`K<] ~% $Ž   6 "% # ?  7   jóÐ;73#&''67&''667'3533#3#&'#5'67#535#¡D    ·&((--  !(-&Ð         ÿéíb 7#'655í¾b*& %) ÿéîg 7#'655î¾g*& &.1ÿéðQ&7773267#"&55'75'75'6Ì!%NPXZ *'FI>@MQ         /ÿêñO#7367&'#"''3265'3'67#‹" .  J:1(&O     91 $?u» 7&''6[  » Q +(' ÿèò\7373#&''67&'67#67# T  {/ L,'*E 6# Ex D K   % wGñÏ!'73'67#'6'&''673&''6ª2 &   E  &7  Ï R  ;   8 vÿîóJ !7&''67&''33267#"&5·  &  `  7  J   2 KÿêòÏ$*73'67#'6'&''6553&''6›L  =( ]) :&W Ï (# y/.C ?Y ,)' ÿêõg73#&'#5'67#535'2Ì "*haF B #< AZe"&Sg -0# _ÿè÷Ï%+7'673'67'&''6553&''6ª  B  p \' 5&A • 03$,†*(9''8Q   YòÏ$*73'67#&''667#'6'&''6vb  %0 ,4 % G7# 'Ï        1   cóÏ#)73'67#&''6767#'6'&''6vb  %1 -3 %  G 4! %Ï       ,   tíÏ#)7'667#'673'67#&'&''6›$ $  b %%!% 4! %    D  ! ÿéóÉ3767&''67&'#53353#32767#"&55#'6Q $ 5•=  "J CÁ     hvcbuI PRhÿéðÏ#'7367326767#"&5#5##535#35#h3, 1; 1BzRRRRRÏ   $zz-HrÿéðÏ#'7367326767#"&5#5##535#35#r.( .5 ,<rJJJJJÏ   $zz-H'ÿçðÏ#'736732767#"'&5#5##535#35#'OB HV>8 IJ °Ï  &}}.H~ÿéðÏ"&736732667#"&5#5##535#35#~)# (0 $6 hAAAAAÏ    $zz-HƒÿéðÏ"&736732667#"&5#5##535#35#ƒ%! &- "5 d=====Ï    $zz-HXÿêóÏ/73533#3673#3#3#"''3267#7'67#535#i#$$ +< TOQ! Q  # :+#µ  2,DÿêóÏ.73533#3673#3#3#"''327#7'67#535#V*** 1D`[[&[  '%B2*µ  2(._ÿêóÏ/73533#3673#3#3#"''3267#7'67#535#p  )9 PKM  N  !8) µ  2, ÿêóÏ07#'67#535#53533#3673#3#3#"''3267#T;0hWAAAA(! :X!z{ L  1 lÿêóÏ/73533#3673#3#3#"''3267#7'67#535#| %3 IDH  G 1#µ  2+  ÿêîÂ*A73#"''3267#'67#3#"''32665#'667#'3#"''32765#'667#  P O E Jfi  $)ti  $)Â7 : *R=' ""E$">& 7F%"ÿêî•)?73#"''3267#'67#3#"''32765#'667#'3#"''32765#'667##¿  O L BHdg  #(rg  $)•+ - =C $5 B #5 [íÈ7#533#"''3267#7#'6L,Ÿ 9   = D 72µ#1 #5"q[òÇ7#533#"''3267#7#'6•]"   $! ¶#2 #6"oÿèôj73533#&'#5'67#t33)  (O%(ED&% ÿékÐ#'73#"''3255'67#5353635#35#35#7'   ) *>  //////Ð º  *'p 299GÿéõÊ373#3#5335'6'333#"''67&'767#'7#ã  !Z 2p9  96/<   ""#Ê4<vc}($4QÿéõÊ373#3#5335'6'333#"''67&'767#'7#ã T  *f6 54-7      Ê4<vc}>' !'4ÿéó373#3#5335'667#'7#5333#"''67&'á 117|C„ "!.FOJCS   H5LO #*   WÿéõÊ273#3#5335'6'333#"''67&'767#'7#ã Q +g7  21*5   "Ê4<vc}A !4ÿé Ê273#3#5335'6'333#"''67&'767#'7#“ M +f4  /1*4   Ê4<vc}=( !&4ÿèñÃ$73#3#"''3255#353#5335##535#âg^  JzJ^gà  xP5HH5P—ªQÿðóÄ%73#67&'7&''67#3533#3#535#\‘F!$ 3737::H¢F7Ä( # (u ''Aÿó­Å&7#53#67&'7''63533#7'675#f`- !$&&&*-8&´)  H# 'eÿðóÄ%73#67&'7&''67#3533#3#535#n;  *0,011=Ž=0Ä(# (u ''8ÿðò“$73#67'7&''67#3533#3#535#C¤Y&)9@3AAATºRA“  PTÿó´Å&7#53#67'7&''63533#7'675#pY)  !  %(2 ´& H$  'KÿðóÄ%73#67&'7&''67#3533#3#535#V–H#& 4;5;<Ž<3    Cÿîð’%73#67&'7&''67#3533#3#535#Ó}15 FM=UUUhàdU’  R ÿônÄ$7#53#67'7''63533#7'75#/['   $"$(2("³%  E%  ) ÿîvÄ&73#67&'7''67#'75#53533#6 i0 !& "b+4)%%''Ä* #  ( ! fðÑ 73#5##53&''67&'®8f; 6 Ñ "#$    ÿì’%73#67'7&''67#3533#7'75#‚? ,2,///47C7/’   QFÿè÷Ï-1773533#3#3##'32767#&''67#735#535#35655#T=KK@@M  9< ;/: 7455=Q,A$¾8 ' -)* (:$7 ÿèôÏ-1673533#3#3#"''3267#&''67#735#535#3565#geeRRa   GQ OTTPPWWg{>T>½: ' (+3  /:%; cÿè÷Ï,0673533#3#3##'32767#&''67#735#535#35655#n2==55@ .0 /&/ /,++2F!6½6 &/'' )8$9 ÿçòŸ,27733#3#3#"''327#&''67#735#535#5335#367#u__LOd  D"@J%M >E LUU]]:9S9:Ÿ1   +,  /A$=ÿèôž-1673533#3#3#"''3267#&''67#735#535#3565#N@HH==Q  :@ A5 43 5::@S*@%’  1%!0 .CÿçøÏ5;7#67327#"&''67&'#3#"''3265#'6553&537&'ñ6     7/  I  ¨D,> )9$P%L39- -7P''   ÿèï97#67327#"''67&'#3#"''3267#'6553'33&'7êP     SC  /b ƒ% "*("" "2?&/+ $.=  ÿçöp87#67327#"''67&'#3#"''32667#'6553'33'7íO    XH  4h$a!  %0 " #. PÿçøÏ4:7#67327#"''67&'#3#"''3265#'6553'37&'ñ1      4+  F  ¨?*> )9#$P%M 59- .6P''   ÿéó‰87#673267#"''67&'#3#"''3267#'6553'33'7ìO     UE  2ft" %7  ,6)! !+3  ^ÿçøÏ6<7#673265#"''67&'#3#"''3265#'6553537&'ò-     0)  A ¨8!(> 9"%O%N0;+ .6P'''  wÿéòÌ'73#3#67'7&''67#535#535'2à &&29 &*+4&&3Ì"$1  & /$nÿéòÐ'73#3#67&'7''67#535#535'2ß **7@  *009))7Ð#%0  & /% '6óË73#67&'#67'735#35#'©E  [:# ËX  +#  e28÷È7#67&'#7'535#35æ+   +' AAAÈK    &-  ƒ(ÿéôŽ7#67&'#67'53535ÓP  $[0!* ƒƒƒŽX   57  œ"Ÿÿê÷È!7#67&'#67'5353535ë  %   '''Èq $IU  Ì /MÿíœÐ $*07&''63#3#67'675#535#&'7'6w   . %;Ð     E I3Zÿéô—73#67&'#67'735#35#Z=  E% YYYY—]  ;9 }9wÿêõÉ 7#67&&'#67'53535â0  ! CCCÉr  0(V  Ö0+&ð’73#67&'#7'735#35#+¡C  R#2.! yyyy’C     G % “ õÈ 7#67'53535&'76ä?  ---    È_F ®&-  +ÿèôÇ7#67&'#67'53535ËH + d/'$0 xxxÇx   GL  Ð!!2 ~ÿêõÉ 7#67&&'#67'53535ä-    >>>Ér  0(U  Ö0aéÅ 7#67'53535&'76Þi VVV"%1Å^B  «%-  #" ÿé…Ï'15N733#3#53533'67''6767&'3353#57#7''67''6767&F'',w    KJ\\JJ   Ï))7     -,Ž Q>       ÿé|Ï'15M733#3#53533'7''6767&'3353#57#7''7''6767&A##(o      GEWWEE     Ï))7     -,Ž P>      }ÿìùÌ&733#7'6753773673267#"&5¡% %    ÌFe ¢žÃK b$* „ÿèôÇ73#67&'#67'735#35#„^*  2 9999Çp  !NT  ¤N ÿéyÎ&733533#3#53'67&73#5537$$%n)  R@¼9KS $% 7t o[  ÿñìÉ!*.7367&'#"''325567#3'67#3#-ž$6  €T; 7@ØØÉ #+Nk q(?%"2w(ÿìóI73#3267#"&5535#0ž’jj2  "Ð 3SCb P=S3  ",ïÑ73#3#353#5335#535#'6B’Tee9«8cc5 Ñ 6*<<*6  ÿõyÐ 73#3#753#55375#535#'6$E'++J-- Ð.S=U ZEV. sÿéôÏ735333#&''67#535#337#13%" #&),#7¦))I1 10!%-6) 6pÿèõÏ73533#&'3##5#535'67#y/2) %£,,K#$FM00MC',FuÿèñÏ73533#&'3##5#535'67#y/2%  !£,,K#(Vb00cT.,HiÿéóÒ-2=CGKQ73&'73673#3#3##"''3255#535#5365#5#35#"&55#733567#35#&'i#   ,$  VVR'.K %U D U UU  ²  ]    ]  5    ? =    ÿçõf 73#3#353#5#5335#535#'6EFjj@¦?jj5 f. #  …NóË#(733#"&55#'665#53&''67&67#Ú   `  - Ë   H     ÿéîV73#3#353#5#5335#535#'66“Jcc:œ:cc;V  "   ÿéðX 73#3#353#5#5335#535#'6?”Nff<¢>ff?X  !  LëË #'+/37;73#735#33535#3353#735#33535#33573#735#33535#335-¥¥77J777J7¬dd)@)"cc(?(Ë=% <%%<% ÿ÷gÐ 73#55375#535#'673#3#7P; $$ 1$$ PY WEU0 $ 0Q^ÿçðÑ.OU733#3'67#73267#"&55'75#'6655335'673673##"''3255#7&'œ<<@-    /,!2+ 0  ,Ñ     G9/ '!Qƒ   )   ÿóbÐ73#3#753#55375#535#'6!4!"" 5 ""Ð0UA\ YFX0 ÿéðK 73#3#353#5#5335#535#'6<•UffA§>ff5K$ CëÑ &*.2O73&'73#3&'73#3#3#3#5'65#5#5#'6767767'67'67'67[dÖm '/****1s .!!!!!P   E& Ä 8    : (    ÿòx™ 73#55375#535#'673#3#7`I**  ?$))9F E1< 9 ÿéçÏ)173#"''32765#'6&''67&'763353#9¢  — a`s›Ï —7 t   RTgWÿéîÏ)173#"''32765#'6&''67&'763353#wi \ 9    ?DkÏ —6 €  XZlKÿéíÏ*273#"''32765#'6&''67&'763353#oq  e =    DKqÏ “ ~  XZlaÿéïÏ*273#"''32765#'6&''67&'763353#~c U 7   :>dÏ “"{  XZlLÿéóÐ373&''67&''667#35#53533#3##5#'L! ( ) % # ?9LL--33KÐ   j ##((eÿéóÐ473&''67&''667#35#53533#3##5#'C  !#     4 .??%%**>Ð   j ##((pÿéóÐ473&''67&''667#35#53533#3##5#'•>       / *::!!%%:Ð   j ##((HðÎ473&''67&''667#35#53533#3##5#'}M" +"( "  ? *BB88AA;Î     a`ÿéóÐ473&''67&''667#35#53533#3##5#'ŒE "$ !   6 0BB'',,AÐ   j ##((kÿìôÅ'+/73#"''3265#'67##32667#"&5535335ux   .4 +$u` # 5Å/# 8L(  {****bÿíöÐ$(,733#32667#"&55'6367#3535#Š<$`  0% / . Ð T1  }$3333ÿé‡ÏCGKO`7335#535#535#53533#3#3#35335#535#535#53533#3#3#353#3#3#735#7677'7&'  uyykkGG!3>ËT XX   Ue  * !    ÿëp¦!'-767&'7&''67'677&''4'''6X! $      ‘2#P^ÿîó¡!%)733#3267#"&55'6367#35#335Œ2'] ( 4# +'.¡  C  ` =!!!kÿíöÐ#'+733#32667#"&55'6367#3535#’7"Z  -# * )ÐT1  { $3333 ÿéxÐ(,073533#3#3#535#535##"''3255##535#35#,**$$+l.$$,b   55555à   Jh  *~"2uÿéôÑ *7#5##53&'73#3#33#"&''675#ïL.4S$$  "   !»**  3.1,> jEÿëðÑ/733#3'67#'665533265#"&55'753’CCJ g /;(  ! Ñ B6+ 'K!   EÿçðÑ/J733#3'67#'665533265#"&55'75333#"''32767#'67#536’CCJ g /;(  !  9  '/ & "Ñ B6+ 'K!   25 :+0ÿèîÑ/73267#"&55'75#'66553533#3'67#À0 '   7AAV D‚   C8+ )N1 Xÿìô@ !7&'&''33267#"&5''6²  7  @"  @  0  4%  ÿéìÑ5733#3'7#'66553367327667##"&55'67djjt  £ G+$$9 0  Ñ =3' $G6   ÿèðÑ/732667#"&55'75#'6553533#3'67#½>-),4F__p W‚    C9* ,4M1 >ÿèãF73673#"''3267#'67#H6Q=9/ 14  0 0  ÿèðÑ/732767#"&55'75#'6553533#3'67#½>".),4F__p V‚  C9* ,4M1 <ÿññH7353#3#3#5#<•““„˜%#"ÿèðÑ/732667#"&55'75#'6553533#3'67#½> -),4F__p W|   C9* ,4M1 5ÿíò;"7&'33267#"&57&'''6—     ( k  u ;-  2   0ÿéïª-E7#'6553533#3'7#73267#"&55'7#'66533267#"&5€&9NNS?02  & /(  M   s2:99%      F%   ÿèëÍ 7'66556ß Mf lÍ EE; 1!W4ÿìôP$*73673267#"&''677&'''67&'f'"#2 & 1   0  “  <'* ,  B    2ÿèég!%)-73#3#"''3265#'675#5367#735#33535#335G˜DR F= /9GA11C1t11C1g> " & ! /ÿèïe73#735#3#3#&''67#5367#GllšDXN19 ? 6EPDe( % 8ÿæóM73'73#&''67&'#67#@KL )3$!1 (T J<      ÿçñÏ1733#3'67#732767#"'&55575#'66553mTTq \GI( 7&..9 MÏ      H;. +Q ÿêíÐ4733#3'67#673267#"'"&55'675#'66553rfffQ$#( 2 > QÐ     I=/ +!SkÿéôÐ(76767'67'67#53&'73#&''6C ' #64F ;* OnJ "$_ðÑ(1073#'67'67#53'67#7&''6ƒfJ A;*Hb+ƒ8VÑ     .  mÿëôÐ(76767'67'67#53&'73#&''6C ' #64F ;& KnJ "$=ÿéÀ{(73#6767'67'67#53&'&''6~5F  > " $6=  , O{   1  7   ÿçñ¤*73#6767'67'67#53&'&''66c(( B: F '&Fjf2N HR¤   # I+ÿæ»l(73#6767'67'67#53&'&''6k:Q  )I / .GD &0 Yl  -   9   Jÿéðž(73#6767'67'67#53&'&''6œDY !J ,*?J5 až  :DNÿéôÐ(76767'67'67#53&'73#&''6t" %S 2 #-E  @WN%4 cm I "$ ÿé’Ð(76767'67'67#53&'73#&''6,D )%84G :  1 On J    ! ÿé„Ð(76767'67'67#53&'73#&''6*= $ 1.? 0   * FnJ !  !?ÿúã'7677'67'67#53&'73#&''6e D ) ):6E :- N^5      nÿéòÏ )73&'73#&'''667&''67&'u4 /xW*   # # ®      ÿé…Ï )73&'73#'67&'67&''67&' 1 *r H  0  & "«   -    ÿèñ‹ )73&'73#'67&'&''67&'76e^ÙB) $x"-. >'-? 8' t         ÿèó“ *73#53&''67&'&''67&'76|cÕ[& !v"-0 ='!!' 8%“ %     JÿèõÍ )73#53&''67&'&''67&'76Ÿ @˜B !S !# '0 .Í 4    \ÿèõÍ )73#53&''67&'&''67&'76ª9†7  M   "+ * Í 6    Uÿð£Ã '73&'73#'67&'''67&'76YH  ,      ª   +  ÿè^Ï"(.7676767&'7''67'67&'#'674'#     ,&‡9!   .+n" ÿétÍ )73&'73#&'''667&''67&' &)dK  #     «   !   QÿéôÏ'7'67#53&'73#67&&'#67'u (.@ 99   H #0# ( HB`  gÿé÷Ï'7'67#53&'73#67&&'#67'„!*9  30    F #.# #%JAb  fãÐ73533#"''3267#'67#73#735#$5   !%#~QQ++¹: "0 $J( ÿéò`%7'67#53&'73#67&'67'F:Sh ^b  %L&       A    ÿéò`$7'67#53'73#67&'67'D6L\ha  " X "      9 #  KóÇ!(.473#3##"''327#67#5367#3&'365##3'#3&'×  š;(L1*J#F(V*RÇ     šZãÏ 73#"''325'3#Ð  6Ï^  HHbîÑ173533'73#67&'#"''3255'67&'775#a)a   %(  (1 a¼       ÿéôa&73&'73#67&'67'5'67#h_`   K$ "  4LP    4 )  )  RfÉ7#"''3255#'65535#35#f   ( &&&&É^    0 .iQóÐ -73#"&55'633265##3#"''#326†V,. AK*%%- 3  Ð =  0! #  LvÑ &,73#"''3255#'67#5353635#&'&'B&   0 // Ñ[   1 >  )  ƒEòÉ(733#"&55#'6553&''67&'767#Ù "_    IÉ   9     ƒKòÉ)733#"&55#'6553&''67&'767#Ù "_   HÉ   9      KŽÉ "(.7'6553'#33#3##"''3255#&'''6, jFF9JJ[$ %K  2 £% $3&     MôÏ73533##"''32655#&'@ @  ¶@ ;  ÿéòW%7'67#53&'73#67&'67'F:Sg_b  %L&      A   ÿèï› 73673#&''67&'7#367D  ƒ1&#/)G ?$ %:R p%   ' !B„Ñ$7&'73#353#5#'67#5335#5363?0&"2DÑ    7!0 'wGçÅ7#"''3255#'65535#35#ç   53333Åf  -,"0ÿ鉘'7&'73#353#5#'67#533655#536.  I2 - ! "6K ˜  (C , 8' |ÿèéŽ7'3255#'65535#35#é "1//0/Ž‹   (S.J…ôÏ#7&'3673#353#5#'67#5335#¢  B  /$ #-Ï !  >-H%@->^ÿéòÒ7#'6553&'7òq<¾O@3 3=[ Q ðÏ#7&'73#353#5#'67#5335#536~  X,F%& 4 + 7%E\Ï   >3S %F3>Pð”"73&'73673#353#'67#5335#P$ $)G'= 0 $ 8*F~   ($ *%R—êÇ 73#735#'3#735#¥EE""dDD""Ç00Rÿé©Ç 73#3##"''3255'67#'735#aF    'Ç?e  K+!+60? ÿêŽÇ!73#3##"''3255'67#'735#t   *+2 1GÇ<c  T4!-4<'òÒ#73#3#3#"''3267#5363535bWŒ¸¸² ±1%zzzÒB  0 s  ÿéÚJ73533#&'#5'67#UH= 1 2 -2HA !&<;%kÿèêÄ73#735##53#=#rqqKKYÄY5·mm66 ÿè¡Ð/73673#&'3#5'67#3#3'7>7#7#8;/" >F  #.ƒOB F ³    H& ÿëõÐ173673#&'#5'67#3&'#3#3#"''3267#7#Ol?/ s .@:c%Eȃw z 0¸      33 'Bÿê•Ï,73673#&''67#3#3#3#"''3267#7#L   ))G&$  ( ¸    +2 #†ÿçõÏ!7&'7&'7&''5'6556Ú    %Ï‚BBŒ©$ ´-^< 6\9LÿèõÏ173673#&'#5'67#33&'3#3#"''3267#7#R9L.$ Z  -E M UŸi_ ` "¶    I1 'oÿéöÑ473673#&'#5'677#&'#3#3##'32667#7#t,=# J "^  wLL Pµ   $%' %ÿèó£37373#&'#5'67#3&'#3#33#"''3267#'7#SmB ) p &?CW " HÆ‚l n 1     ,' yÿéôÐ073673#&'#5'67#33&'3#3#"''3267#7#~%5  > 2 5 ;kB?  B µ    J1 %SÿèòÑ+7''6767&'3533#3##5#535#'6È 9A"'* G 66BBGG*  (# : 77 ^ÿèòÐ,7&''6767&'3533#3##5#535#'6Ì5;%( B22==AA% '$ : 77 f óÏ*767'7''63533#3##5#535#'6 % /777::;;"Ï  % (( GÿéñÐ+767&'7&''63533#3##5#535#'6‡(+ ;B! &??GGOO- Ð%  ' 77 rÿèôÏ,7&''6767&'3533#3##5#535#'6Î.3  :**4499 ¼ +( 7 66  ÿèwÐ+7&''6767&'3533#3##5#535#'6^ #' 2!!$$,, Â! &# 877 }ÿèôÏ,7&''6767&'3533#3##5#535#'6Ò ). 7&&//22 ¼ +) 8 66  ÿè~Ï#/FK73533#&'#5'675#&''6'&''63&''67''667#-**  -Q   <  +        ¼+  -   2      €ÿéóÅ#73#3#5##537#35#35#35#35#35#€s13H%. < Ŭ¬©zzzLLcÿéó  &,73&''67&''667#'6'6'6‹I"$( , < . 03 (@ B7 -U X       &      ÿêòÏ-73533#3#32667#"&55#'67#535#'6C-RRbI &'F =Ae6 Ì**+K ' RVF+% ÿè‚Ï%7#535#'673533#3#67'5#'60"4&&%  '%W) &&)))F TF)%uÿêõÏ-7#535#'673533#3#3267#"&55#'6–3)))"  W) #))))P $ S-.^ÿéóÏ-73533#3#3267#"&55#'667#535#'6~,,7(   -)B È***O# RK!($* "ÿêí›+73533#3#3267#"&55#'67#535#'6H%CCZ? $ #N GFb. •3 :B 1 eòÏ.73533#3#3267#"&55#'667#535#'6†++5)   : É !!!0  4!#  ! ÿêñ,73533#3#3267#"&55#'67#535#'6?.NNaI  $ % B<Df8 0 67( fÿéóÏ.73533#3#3267#"&55#'667#535#'6…((2#  *#=È**+P % SL!(%+ KîÏ,73533#3#32765#"&55#'67#535#'6m33C5   1 ,/H$ Ê !!!; AE 3! lÿèòÏ-73533#3#3267#"&55#'6767#535#'6Œ))0"  ) 4 à )))Q  UG() JÿçöÏ%+733#33267#"&55#'67#53'&'7'6—E2   ,)F1   Ï]X  \+5EN !  ÿêøÎ"(.733#327267##"&55#'667#537'6'&'2$0 I(  #&  6  ÎbU \5* &/Q'  "$ ÿéñ{"(733#3267#"&55#'67#537'6'&'uhM# / (M DEfM z  {7, 2A1*      BÿéñÏ &,733#3267#"&55#'667#53'&'7'6’F2  *E0   Ï]X  [.4+)M ! zÿèöÏ &,733#33267#"&55#'655#537'6'&'­3$  & 34 P  Ï\^ " b8%-K#  ÿí|Ò %73#53635#35#'75#535#53#3#9-` 8888Qk-$$*h*$$Ò YY)7w ÿèlÏ$73533#67'5#'665#7&'7'6 $&      I  uZZN `9/+4X "`ÿéòÊ #BFJN73#5'675#73#5'675#&'7&'3&'73#3#3#3##5'65#5#35#m;(E<)2V520++++2j 6%%%%%ÊW  W      4  U  ÿéô•$*733#3267#"&55#'67#537'6'&'vcK  #%&& ?>`P‚•B: A&( 5;  ÿèvÐ#)-159733#"''3255##5#'655'6367#35#33535#3356)    ! #5#Ð – )%%+.O 5HbÿéöÌ%+733#3267#"&55#'655#53'&'7'6¢=*   3 *2$  i  Ì[[ " ^7#,K    MÿéñÐ &7'6556&&'67'5676×2<>=  '% Ð JC6 .BYR (%F>…  ¢ Iÿê÷Ì %7'655667'56&'76Þ5@B9 #) .- 0 Ì HA4 .?V   œ* 2*` =ÿéõÌ &7'655667&&'67'56Ý9E G=$  =Ì HD5 /AW  !A:|  ›YÿéòÐ &7'6556&&'67'5676Û2;><    *% Ð JD5 /AYR )%CA…  ¢ >ÿèó• &7'655667&'#67'56Ô6ACB  9  2• 8/& !,F   "OV  q ÿé„Ï %7'6556&'7'56776m&+./  + "  Ï JC6 .BWU 0&Y   “ Vÿç…Ì 7&'&''6i   Ì  3  2 0- +}ÿéõÐ $7'6556&'7'5676á&. 0.   ! ÐKF3 /BXQ *$7k…  ¢ fÿèóq '7'6655667&'67'56á *9  B&   .  'q ( &   8A Y ÿè_i7#"''3255#'6555#35_   " 2!!ij   #5! ÿözÏ &73#53&'&''67'67676767'B)h(9 #* $Ï ” ')%>'aÿéõÎ $73#'667&&'67'56ˆ\f \  #5Î   82g „rZïÐ $73#'6&'67'5676‹U_X  +  -( ( Ð  '  +  6   \pÐ73#3#"''3265#'667#53&'E"85  $ *Ð  -   (ÿé×[7#"''3255##535#35#×  ‰‰‰‰‰[Z  $r ,ÿï‡È7#3#53#3#3#535#535#‡^Xl MS!ȳÙ,&%%&dÿïóÈ7#3#53#3#3#535#535#ó{{ `%""+j+##'ȳÙ,%%%%bÿïóÈ7#3#53#3#3#535#535#ó}}‘ b&##,k+##(ȳÙ,%%%%PÿïòÈ7#3#53#3#3#535#535#òŽŽ¢$l+((2x2))-ȳÙ,%%%%iÿïóÈ7#3#53#3#3#535#535#óvvŠ [#!!)e(!!$ȳÙ,%%%%$ÿïî‹7#3#53#3#3#535#535#é±¶Ê$–B::H¡G::B‹xœ ÿì‰Ï7#67&'7&''53&'73535€P% )+<<<²jD  "&  ¸ + 7|Ð7#7'7''53&'73535|I( " $'555ºN    z |?æÃ7#"''3255#'65535#35#æ   6 3343Ãk   E$7ÿìÏ7#67&'7&''53&'73535}P $ )+<<<²jC   ¸ +ÿìzÏ7#67&'7&''53&'73535vM # ()999²jC   ¸ +9ÿê–Ï,7#535#535#53533#3#3#3#"''3267#'6V" ,+   [ @ ). $Bÿê Ï,73533#3#3#3#"''3267#'67#535#535#X))    » ? )0 #C ÿöŒÐ$73#3#3#67'753675#535#'62I,00))7D 99  Ð&$ MIZ&M|Ï73533#3#3##5#535#535#)))$$**..$$)¼QåÅ73#"''3267#'667#…`   " ÅR:.& "&E|Ï73533#3#3##5#535#535#)))$$**..$$)º{>åÄ73#"''3267#'667#…`  "Ä_!G5- )/d|Ï73533#3#3##5#535#535#)))$$**..$$)     gåÈ73#"''3267#'667#…`   " ÈD+$ \|Ï73533#3#3##5#535#535#)))$$**..$$)ÁcåÇ73#"''3267#'667#…`   " ÇH/%!  ÿèòa$7367&'#"''3265'3'67#w  ;#  cS< 1=a   (3 F8 (Eh™Ï73533#3#3##5#535#535#G!!!!!!à     ˜eêÃ73#"''3255#'655# J  ÃC /+ $Bÿéîo*067676767&'7&'#"''3255'67'67'67&'z(,*"    )   _ O #      E    n}Ð73533#3#7#5'675#535#((($$(*$$(Å     rèÑ173533#3#3##5#535#535#73#"''3267#'665#)))##**,,##)t^   !Å      < …níÇ73#"''3267#'667#‡f   " Ç@ ' xìÏ/735#535#53533#3#3##5#73#"''3267#'67#/'',,,,'',,/yb  ! ’      E/ )  ÿçó(2N733#3#&''67#&''67#535333353#5#7'67#&''67#53#&xOOiG 9 C/*[ ²†  :  –        GG]      !ÿè߯73#3#5##5367#735#35#+ªSd–EB‚‚ ––ÆW kl 1¨6"ÿéÜ”73#3#5##5367#735#35#0žJ`’D?vv’’”AS S z" ÿéðÑ73#'6553&'…`¾ZÑPD3 5<] ÿøkÅ7'67#53&3#7'75#@ ,2F 9KS#}1  05_ÿèöÐ!2673#67&'7''67#53&''66733267#"&5'3#«9G  ,1'6" F  "Ð !  ! tL&$L OhlÿëóÏ +73533#735#33535#3353#3#"''3267#7#t01t1O1i‡XQ  T ¹V342, 'vÿëóÏ +73533#735#33535#3353#3#"''3267#7#|..n-G-`}PK  N ¹V342, 'fÿéñÈ2JPV73#27#5'275#35#35#75#73''67'767#67&'#5'6'6'6jG 17  %    8*   ÈB K+, F      N     !;Y    ÿëhÇ $(,28>7#3#3#3#"''3267&'77#55#5#35&'''67&'b  C%   ÇG "‚&%5! dÿèòÏ &*.26:NRX^73#5'675#537367325267##"&53#735#33535#3353533533#3#535#35#'67&'“''!  @rr0N0d !‡"- > Ï>     A' # ( !   kÿèòÏ &*.26:NRX^73#5'675#537367325267##"&53#735#33535#3353533533#3#535#35#'67&'•""  :mm-I-^ +9 Ï>    A' # ( !   eÿéòÑ QUY73#53&'3#735#73#735#3533533#3#3#67&'67'5'67#535#535#5#35#´6‚7.77166W "7   ,    (!P Ñ#++*     ,      IÿêõÇ!%)73#3#&'#5'67#535#735#33535#335`‚6F7'#* (;K9&&9#\&&9#Çd" 'KL.';@UÿêõÇ!%)73#3#&'#5'67#535#735#33535#335jz2@2$% &6D5""5T""5Çd"%HI+';@ ÿéôÒ#'+/5;73673#3#&'#5'67#535#735#33535#335'&''&'%~  PgT$4 :&#8 1%SeP==Q=Ž==Q=Q  ,  ¤ [  %=;" 67c     ÿéóg!%)73#3#&'#5'67#535#735#33535#3352D`L#1 9&%9 2%PdF33F1w33F1g:  %%  $  ÿèòÆ!%)73#3#&'#5'67#535#735#33535#335&³PhW"6 :#$64#UfO;;O<‹;;O<Æh"+IH*"<B ÿéxÉ &*.73#5##53535#335##"''3255##535#35#iK/+8  !!!!!É?##??/2f  '~#6 ÿé€É &*.73#5##53535#335##"''3255##535#35#pR21 =  %%%%%É?##??/2f  '~#6ÿépÉ &*.73#5##53535#335##"''3255##535#35#d @ * $ / É?##??/2i '~#6mÿëóÍ'733#7'7536773673267#"&5”' '  ÍGg ¤ ÅS ^! €ÿêóÎ#)73#3265#"&'#67'56'&'á #"  $  3(Î9346Gc  ÃD50r   ÿétÉ &*.73#5##53535#335##"''3255##535#35#g G,( 4  É?##??/2i '~#6pÿêøÐ %,487#5##53&'7'673&''67&7267##5##535#íO0, 5  " ) =555¸#%  O     5M M/ÿë÷Ð+73533#3#535#&'6733"&&#"'6632#TUUcÛdT'=)"<A-C@"  °   ;7,%    kÿèöÐ"1573#67&'7&''67#53&''66733267#"&5'3#±4@ (, "/ B  !Ð "  ! tK%%L Ohgÿêõ¡"&77#53&'73#67'7&''63'6673#733267#"&5—-0B   %-     z    &'!  OO9 p’íÐ 73#'6R\ Ð  QÿèôÐ $(>73&'73#67&'7''63'67673#7333252767##"'"5g7:ˆ% !%06    &'  ¶     ,8   0^^L ! ÿüiÀ767'7537567#533K (1  :QZ8 e`r* ÿò`¿73#3##5'67#35#P +$ '¿ hc +6‘CdÿæöÆ#'+073#3#&''67&'767#535#35#33535#335s~712/ -$  /04/L/Æa    a>? :ÿç÷¡)0473'73#67&'7&''67#33267#"&5''6673#R>  Ia '* 8@&h  T1+Š     9;  @= N ÿói’77'753757#533J(1 9P=+ OLZ!\ÿèôž$(;73&'73#67&'7''67#3'67673#73333665##"&5m49D   .4(  $& Š    <,   %KK6  X_èÆ #73#5'675#73#5'675#&'7&'^?-K?-:  X  Æg  )g  )      fãÊ #73#5'675#73#5'675#&'7&']%+ Io]%+ IcuÊc  "c  "    [ÿêïÆ#)/573#"''3255#'3#"''3255#&''&''6''6°? +I?  +U @  f = ÆÅ ¯Æ °   , )% $' )& $SÿêïÆ#)/573#"''3255#'3#"''3255#&''&''6''6­B .MB  .Y  Dk A ÆÅ ¯Æ °   , )% $' )& $Yÿëîq)-173#"''3255'675#'3#"''3255'675#'''ªD  2KD  2W @ qq " "q " "c‚éÈ 73#735#335335c††'ÈF$$$$$ ÿé\Ñ73&'73&'#5'67#   &7° !  e` ? ÿê‡Å)/575#53#"''3255'6'5#53#"''3255'67&''&'u&8  .%7    6  ,  ^VÄ 8 ^Æ 4 i   ÿçóU736533533##5#'67# C<??>9.A= @@;(’ÿéîÏ733#5##5##5335#35#·$%%Ï.uQQvUCCC ÿê€Å*0675#53#"''3255'6'5#53#"''3255'67&''&'n"4  -#5  8  .  Y[Ä 4 bvP / j   ÿêwÏ 73#'67#536&''6767&'6,/  ", Ï'G3 1=!& )EN oÿêëÆ)/575#53#"''3255'6'5#53#"''3255'67&''&'Ø"5   -&8  9  -  ^VÅ 9 TÅ ; ^   rãË #73#5'675#5#53#5'6'&'7&']%+ I¸Oc'-ŒoËT  S  !ÿéìr)733267#"&55#'67#5363533##5#fA   1< 1$(B^ãÉ #73#5'675#73#5'675#&'7&']%+ Io]%+ IcuÉj&j&     ÿésÆ)/573#"''3255'675#'3#"''3255'675#&''&'E.    5.    ? '  ÆÅ  2 XÅ  2 X  VÿçõÏ  7&''6&'67#53&'ž"' #$#. # \t%+Ï.10&   X ÿæö’ !7&''6&'67#53&'y5< 8:'7F*  "*“²,22’$  =  ÿëy— !7&''6&'67#53&'= #   BY —  Aoÿèó’ $73#3#537#35#35#35#'67&'s}40g#6CCCCCC  ;’ff, ) *     kÿéöž  7&''6&'67#53&'ª  )  G^ $ž     A fÁ73#3#7'75#535# Y&!+ Á:9   @:qÿêõÃ!'73#333267##"&547#67'7#&'qzO?  /9Ã$}  p} ¹P ÿéŽÏ !7'67&&'67#53&'N'   Nd %¬+(5!   V ÿívÏ !7'67&&'67#53&'A #   =R   ¦)&7    S  ‡ÿóóÐ 73&'73#3#536'&'Œ,  #bI %l4%  ¤ G5>?4581ÿí~Ï !7'67&&'67#53&'E &   BV  ¦&&7    S  uÿèöÏ !7&''6&'3&'767#®  %  _    IÏ ,1*&   &ŠÿçõÏ !7&''6&'67#53&'µ     G(p```Ð6& FiiF3ÿéëÐ7''6767&'#5##535#±$ WW 4#+wÿéöÃ$7#53#33267#"&55#67'7&'vJ4 $5 ±#… x| jÿéé”767&'7''6#5##535#U;@ OZ$›ŠŠŠ”#  3R R5"ÿéëš7&''6767&'#5##535#°%XX8 #9C 4…………  &' @R R5# ÿéô773533#&'#5'67#bcU&6 :&%8 1%N.  --  ÿéòE 7&'76'7'5'6Í %Q^ (  77  <  "   RêÏ7''6767&'3#735#Ã8>)+ PttLL¸  0-  HN)ÿèðÑ'+/5;73533533#3#"''3267##5#'67#735#3353355##655#=)::H  3, C 9 95=Q)&:)%µE"4 RRD 3HT" "Lÿçëž&*.2675#53533533#3#"''3267##5#'67#77353355##7#|%%**4  + #( 4)a7- AA6  &7>ÿèí“'+/3773533533#3#"''3267##5#'67#735#33533535#35#?'::F   1) C 8 =2?S'&›(#7''‚8,>>4 $57nÿéõÏ'+/3773533533#3#"''3267##5#'67#735#3353355##5#q$""+  % % $6"´D"1SS2!'F T"""" ÿé‡Ä73#"''3267#'67##5##535#t   ( , %$oCCCÄK2:,_iiF3 ÿéßÃ73#"''3267#'67##5##535#Ä T S H G¿………ÃH/L<_iiG4i,éÆ73#"''3267#'67#3#735#rw   2' kkDDÆ7*CE#4aÁ 7#55#35aG4!!Á>----tÿéðÄ73#"''3267#'67##5##535#wy   *+ %'uJJJÄL2=/_iiG4 ÿéáƒ73#"''3267#'67##5##535#Ç ] L B Bă1/  :N N3!PâÅ73#"''3267#'67#3#735#\† 4 5 - * yyQQÅ< "4(IQ+uÿéõÐ '-39?73#'633#3##"''327#67#536365#7&'67#7&'’NV  \   N97 (9 Ð  #  R$  ?ÿêwÈ 7&'&''6_   È  2  8 )& %F-õÑ'1<73#33#3##"''327#67#5367'65#3&'77#3&'7jy‚y t qZ( ]( Ñ  2 &   PÿéõÐ ',27=73#'633#3##"''327#67#5;7#7&'67#7&'sir  t  hNM 5O' Ð  )  S)%  [ÿéõÐ &,27=73#'633#3##"''327#67#536365#7&'67#7&'€^gk  aFD 2G Ð  S)%  ^ÿéõÐ '-38>73#'633#3##"''327#67#536365#7&'67#7&'€]f k  aFD 2G Ð    S)%   ÿçôÐ %*.2773#'636733#3##"''327#67#765#'#37##37#H• &+-’%& †+­+,*=/?+)Ð  #R<)  )));)))ÿçóÐ %*05;73#'636733#3##"''327#67#765#7&'7#7&'H• &&(’$% †&¨j/  Jl5  Ð  #R<)  )&  V)&  ÿç‚Ð $)/4:73#'636733#3##"''327#7#747#7&'67#7&'(@I R   ET/  #0  Ð V)$;)%  V)&  ÿèô¡ "'-3973#'636733#3##"''327#7#77#7&'67#7&';¦³ ¬  Ÿ º†* cˆ+"  ¡   F/ . = fÿéõÐ '-38>73#'633#3##"''3267#67#536365#7&'7#7&'ˆV_ e Y@> .@ Ð  #   S)%  mÿéõÐ %+16<73#'633#3##"''327#67#536365#7&'7#7&'OX b V<: ,<  Ð  :#  S)%  ÿéòw %*/497'67336733#3##"''327#67#75##&'#7##&'#7 "”Í!Ÿ ! “±7-z;+P  &NÿèñÍ 187'2'6'&'&'373#&''67&'67#67#á XIG1  (1 \ "!7 / 'W5 Í    7 #   0 mÿèñÍ 187'2'6'&'&'3673#&''67&'67#67#â 0E94 $   "G ) # C $Í    7 #  .  ÿçó• 187'2'6'&''&'373#&''677'67#367Ð JkYP >  0  F‰5 $! 0*A #; :Q •       &    wÿèóÍ 187'2'6'&'&'3673#&''67&'67#67#ã -B65"   !B "  @  Í   : #   . eÿèñÍ 177'2'6'&'&'3673#&''67&'67#67#á 2J<9 (    )L , % "K(Í    7 #   . Hÿí©Ð#)/7676767&'7&''67'67&''67&'c    !  3  ,…;%  0+k! •ÿëïÏ73#"''32767#'6&'¶/  "   Ï“+ "l '5 >ÿò•Ð!'-77&'7''67'67676&'&'''6„       ¯7  0.a!7ÿòŠÐ!'-77&'7''67'67676&''67&'w   -&¯8  0,b!|ÿéóÏ"&*73&'73#3#3#3##5'65#5#35#ž   #O *Ï   Ž+- 3 3  ÿééÏ*06767&'7&'#"''3255'67'67676'67&'©4?>3  8   &(%#!(##I $ ‡µ8" $ C  =.'j"# aÿèõÃ73&''67&'#367&'k'!( *$  , ÃU= !5J>/2; hÿéõÏ(733327#"&547#''67&'77#53—/   ! $$Ï-5&$#&"$7 )!36 *iÿêì¾7#53#"''32765#'>''6£-v  #    « 3&vS+  '0.%ÿçëm+1710776767&'7&'#"''3255#'67'67&'''6`( 47L)  !  ++&% W! !R ,'W #  #   <    ÿèöÏ 7&''63#'3'65|38 46.; NGW9 0Ï273+)Œ<2&GÿèöÏ 7&''63#'3'667"+ *"!, <5J)Ï')+*/Šˆ%G '$]ÿèöÏ 7&''63#'3'67¦& $% 3/A$Ï ')+*/Šˆ%G?`ÿèöÏ 7&''63#'3'67¦& $# 1.>' Ï ((+*/Šˆ%G@kóÏ 7&''63#'3'65¨"  )*1$ Ï#$# !mk$,! ÿèôŠ 7&''63#'3'667€ 19 86+; QEV6Š!#a`1âÏ 73353353#EDÅÁ!//!4kÿèöÏ 7&''63'6673#®  (3Ï *.) &(B40<‹Mÿéò£ 7&''63#'3'66™"+ ''% 44D £ %#!'mm6* $fÿèöÏ 7&''63'6773#ª$ !$ .%;Ï '')*1%G@"ˆ ÿèõ› 7&''63'66773# 0; 67+= Q@ R› %,%#!8 jvÿèôÏ 7&''63'6773#®  ' !2Ï'(**/%HA"ŠrÿçòÏ 7&''63'6773#°  % )".Ï ))**,'JC$ŠƒÿèõÏ 7&''63'6773#²  !)Ï ''+*0%HA#ŠsÿñïÉ73#3#535#535'2à 440t/334ÉIOOGiÿèöÑ 7'67&'&'3'67#¬*"  (k  ! X­(%2 '. +ÿçë‚+177676767&'7&'#"''3255#'67'67&'''6K#3;O* !  +++$ I! !R .(a '  )  %  K   jêÐ73533#3#5##535#XXX`¬_X½-.!zdË73#'3#Q0ËQHHiÿêöÏ"73#&''67#5353533655#335ç9# "'- 5,,,§N22/ ".N((N ** <lÿîóÏ %7#5##53&'736732767#"&5î]: 6% ,  ( ¬2 2 .0 0 ( aÿéöÐ 7&''6'6'6'6©$ #$. , +,8 631, GÐ !"$  $ - !&vÿéëÏ73353353#5#353#5#5335#vb0»?SS?XdLj ^LdkÿééÏ73353353#5#353#5#5335#k ##$k 4»?SS?XdLj _LdgÿéóÁ73##"''3255###535#gŒ  gP3 Á«  ¦'XfF5jÿéõÏ$*73&''67&''667#2&'&'š:  # !   ." !<* (;Ï #      ]  wÿéïÃ7#"''3255##53#735#ï   R!55ÿ  §ÇÚ7b@_ÿêõÎ!7#'6553&'7&''6767&'ói:  %&  ¯:?: 0=L c'- 5S^" hÿòòÆ&73&''67&'767#3533#3#535#up"  Y.008†:.Æ'    t((gÿé¨Î7'6'67#Ž ! Î-^ $ ydÿèìÏ&753753753#5&'#5&''655'6u    ’>9f5mçc!–\ .C,(9  !mÿé÷Ì"(.73&'3267#"&5'3'67'677'6'&'·   !%  L  ]  ÌeI ÈvC* "1  S &  ÿéêa)/5767'7&'#"''3255'67'67676&'''6¦)93* :   %'  # !T $ a     ;   gÿéòÐ>767&''67&'3#3533#"''3255##5##5'67#536‚ )NT+    "(Ì      1 8  !TT@=mÿêôÐ7767#"''32654''67''67&''7&'767&''6Ñ    "2 6$ + +#$ %    0Ð   !< !     xÿèìÄ73#735##53#=#ggAAtNÄY5·mm66HÿèöÎ287'#'67'6776767&'3&''67&''6767#Ñ <;* (-5GR+ //'   E•     - 0       ÿô‡Å 7#3#3#535#35#5#‡%"$'n##DD!!Å.Q.Ñ@.m-m..›áÊ 73#735#'3#735#ˆYY55|YY55Ê//ÿéé& #53#=##53#=#˜d=nc< =< =<tÿôëÆ 7#3#3#535#35#5#ê(&(+w''LL%%Æ-R-Ò@-l+k--pÿðóÄ 73#53#3+535#3'35#Â1ƒ€-.- ++Ô)^^)°:</é’ 7#3#3#535#35#5#å[NN_ËHH••HH’ + c ' ' P€É 7#3#3#55#535#735#€  k9'!!É5yg5U!‹OñÉ7#3267#"&5535åF '3ÉC  e,ÿóÞ‘ 7#3#3#535#35#5#ÔIGFR²77~~88‘@ž/II+ÿîå“ 7#3#3#55#535#735#Ô:98Jº\76F"__“", ÿéöJ767&''66''6|  M!N 908 J   "$ % ÿïòO 73&'73#3673#53&'YWÇ( E  9â5 ?  ÿéóo,73'67#&''635#53533#3##5#'86 O A '  _ '66##++6oU <   %%))OòÏ.7&''673'6735#53533#3##5#'@  3*A  &11!!&&6¦    ) +5 $$ OÿêóÏ&-735#53533#3##5#'''673'67&767® !!'0%?   … !R++RCC 6P43J  ÿêóÐ,73533#3##5#'735#'3'67#&''6‚9 $$= .9K8 T F(   ©''NJJ;N9…3(l   0 ÿéó—+73'67#&''673533#3##5#'735#=7a Q )  "V0&&++3#0— l&N   (844/&8ÿéàÑ %73#5##5365#7&''67&'76erš:lš{Ñ ÇÇ±ŽŽ…   gÿéìÐ %73#5##5365#7&''67&'76™I]&D]I    Ð ÆÆ±ƒ   ^ÿêîÈ $7#5##535#3533#&'#5'67#îkkk "##     ÈÞ Þ¿­'?C &eÿêîÈ "107#5##535#3533#&'#5'67#îccc     ÈÞ Þ¿­'>>'QÿêëÈ "7#5##535#3533#&'#5'67#ëttt &''    "ÈÞ Þ¿­'@G&mÿêïÈ "7#5##535#3533#&'#5'67#ï\\\   ÈÞ Þ¿­'==(iÿêïÈ "7#5##535#3533#&'#5'67#ï```   ÈÞ Þ¿­'>>&?ÿ÷Àq73#735#3533#&'#5'67#?]]    qzY     B½™73#735#3533#&'#5'67#B{{WW    ™—u )+ ˆÿêðÈ "7#5##535#3533#&'#5'67#ðDDD  ÈÞÞ¿®(71 &?ÿéŒÈ 73#735#35#35#'67&'H??   .  È¢qNO 8  ‰ÿéïÆ$(,73#3#"''3265#'67#'67#'67#735#35#“T0A  "     ....Æ] N18"!+&  7:ŠÿêïÑ#+/373673#53&'35#&'735'6#5##535#35#§e) 99999Ñ VV ]777  E    ÊTF6 5Aa5 /@( @/3     !#- <xÿéóÐ2:>73673#3#3#3673#53&'735#535#535#53&'#5##535#›  0,,44 { 33--1_CCCÐ    B B(vÿéñÆ73#3##5#535#'6'&'|n-4433-X B  ÆdSSd%#!#yÿèôÅ1673#7#5'75#35#35#675#7#53&''67&67#zF    )7  ÅŠ.'š&&]&^"T - )1 &3 ÿéwÏ5Q733#3#53533335&''67&''676753#57#677''67''7=!!(j-?    QQ?    ?Ï**!+       Q%      ÿïï‘ 73#3#735#3673#53&'ÐЪª‚‚ ; 9Þ;‘C6   ÿëtÁ 73#3#735#7'676'&' ggYY44. +4 "ÁJ&@ rÿèôÐ$).73#3##5#53665#53635#335367#3355#¤8((G  !,G, Ð l 44 l 9J  M _ÿèõÐ48<@DH73673#33##&'#5##5'67#535#535#535#53'5#3533535335Ž  (,$    ##!"26Ð   %%6II08'SìÅ 73#3#735#3#536'&'Z‰‰ rrLLG *™X 9  ÅD 7uÿïóÆ 73#3#735#3#536'&'u|| hh@@; "}F 2  ÆS/GuÿéêÐ"(733#"''3255##5335#35#7'6'&'¦1  I,IIIIJ  M  Ð=’  ;ª0Ly  uÿòòÆ'73&''67&'767#3533#3#535#€g     P*++2{6*Æ.    u((tÿêôÏ,73'33#3265#"'&'#7&'3#67'675#wA** Ag  V9 % £,F/5)f<   X@ FiÿéóÏ"(7&'73#3##5#'67#5365#5365#”  O !' BÏ8\\@4*b8- oÿèïÍ#73533533#3#535#35#'67&'w}*Gž////BBBBZ *!mÿéóÇ$73#3#"''3255#353#5335##535#m†;7  % J %79Ç   ‹aN_^Ma¦·nÿéôÌ  $7'67&'&''6#5##535#”B" (J555Ì &$# /Y Z:(lÿéòÃ#(,733##3#5##5'67#537#537#3353535#{fEV:  "#/%',3::Ã+, X H ,€*oÿîòÄ !-73#&'67&'67&'63#3#535#xww  0  1  Xw27ƒ92Ä   S**lÿçöÏ-73#35#535#53#3267#"&55#'667#56ŸH2   Ï  rJ M/- $(jjÿèñÆ673#3#"''3255#67&'7&''#5#67'7''#535#j‡;8  '  &  7;Æ “  }T &- /ŽT&.  <¬ pÿéñÈ%)-373#3#"''3265#&''67#'67#735#35#33#~fAV %   @@@@CVÈU Y =   31afÿéöÏ!26:>7&'#5'63&'3#"''325'#"''3255##535#35#73#¤$ J +; 7  & 6Ï  "-s  mt  1‹%8-\^ÿéöÈ/38<73533533#3#67&'#67'5#'66553'#335#35#Š-    *   qMMN&  9; G-# 2#`9(V kÿïõÆ#'73#735#'67&3533#75##5##5#dd>>  O t ŠmÆb@&  …OO======gÿéöÏ#)73533#3#&'#5'67#535#&'7'6u/1184" ! "58/  [  ²>-&MJ$*>    ÿéõÏ#)73533#3#&'#5'67#535#'6'&']]]iW"7 ;%#;:!Xi]«|  ·@/9ca5 -@  ^ÿéöÏ#)73533#3#&'#5'67#535#&'7'6m244<7$ $ $9<2  b  ²>.'NJ%+>    ÿéò£#)73533#3#&'#5'67#535#&'7'6YZZeU#6 8%#96"SeY%  ‰ Ž/%.KM-#/    RòÏ*73533#3673#&'##5'67#53&'735##SVV 4L9A'5 0%H* S¾   &$   ÿêwÃ473#67&'#"''32655'67&''67&''67#^&     "  #à     ' &  nÿéóÄ73#3##5#'67#535#5#}p &"I ÄMjj@* &7MMMMiÿéöÄ /7#3#3##535#73#535#3&''67&'767#©-****4==**B      -ÄO0Û=+M)L.$    ZÿéôÐ>DIN733#67&'#"''32655'67''67&''67#5'6367#367#335“2$=     "+0"# $  $/+  5#Ð 9   -0     /  / \ÿèôÐ I7'2'6'&''&''3#&'#'67#5367'67'6776767&'â 3K>8  )  %  i F4 (2 $+4  #%%Ð     1   $     #iÿéòÄ",73#3#367&'#"''3265'3'67#{ggww3      3,  Ä!  %9 W 2%qÿéòà &073#3#535#367&'#"''3265'3'67#€c'/r/(*      3-  Ã!!9   &8 V 2& ÿéóà '073#3#535#367&'#"''325'3'67# ½R_ÕbWW  :# YL8 46Ã9  3B  [: + ÿçöÏ)7'675#535#53533#3#3#33#"&&%"! ,<70O8.9 M   +cÿéôÏ(73533#3#3#33#"&''675#535#z*//9922  (   99*®!!!"0)7a!?ÿëñÐ(7#535#53533#3#3#33#"&''67m0/)2&j""""!1 /0 Kÿéõ”(73533#3#3#33#"&''675#535#^;;;BA44& 2%   BA;€!   'E ÿèôÏ(73533#3#3#33#"&''675#535##RTTaaVV,#@B %__R±#/+; ` ÿéóÑ05;7373#3#3#3##"''3255#'67#5367#537#5#&'Sgicg†-&&   b &DLB±!;AU 6  œ  ÇE0+ #++EEE    GÿèðÇ!73#'65535#53+37'6'&'Â.~*.”-*  a  n ,( !'2GG: pÿèóÇ!73#'65535#53+37'6'&'Ï$bo $  No.( !(1FF9  ÿéìÏ573#3#3#"''3255##5##535#535#535'6556à '.IIPPO  ;2FGGBB'*pÏB  *TTDWI>615[C îÏ3735#53533#3#3#"''3255##5##535#'6556Ü 4F80011661   18KÏ 01 EE6F0) &+MP@òÊ"(73#&'#5'67#535'2'6'&'Û  @,"$( %.@?1  M  Ê*.* (   &ð(73673#&'#5'67#53&'735'2Á # .P7@$9 2!K, %K   !   ‹ìÔ 7#5##53&'7'67&'ê¯a' 7 4N-, ,.Å     ÿéóË"(73#&'#5'67#535'2'6'&'Õ (0cR#7 9&#89M_',]Iy  ËB1:ff6 -@!  ÿézÎ"(73#&'#5'67#535'6'6'&'m ++ +-' @ C  Î;`W 07  jÿçöÈ7'6553#&'7#3™ d %<tÿéôÏ73533#3#3##5#535#535#x322..6677//3©&&&&>>&&ÿéuÎ"(73#&'#5'67#535'6'6'&'i )) )*$ >  ?  Î;`V /7  ÿépÎ#)73#&'#5'67#535'6'6'&'c && '( ;  ;  Î;_U/7  LÿæîÐ#(,059733#"''3255##5#'655'667#35#33535#735‡B# )& ";8##5)_$#5)Ð – #--&B7 .K IÿéªÎ#)-16:733#"''3255##5#'655'667#35#33535#735o    -Η )$ *0;  .G_ÿéíÏ#)-16:733#"''3255##5#'655'667#35#33535#7356(   "  - ' 1"S1"Ï • #66# */4 .KÿèäÔ#)-17;733#"''3255##5#'655'6367#35#33535#735TW C  A? 2K H ;;OA‘<;OAÔ  “ ::"A5 =N ›ÿéêÏ 736753#5'› Ä–”æ? ÿéõÏ735333#&''67#535#337‰!), !$'!5¦))I3 44 $.6)6ÿè߇"(,06:733#"''3255##5#'655'6367#35#33535#735MV : ;=$NJ 99L;ˆ:9L;‡]  !!( #. „ÿçóÌ%+73#3265#"&'#67'56&5&'Ú  $ ; Ì3  /,RQ µE0u  sÿçøÌ#7'65567&5567&'7''¤3*    ¬*Y> 6Y8 #?B6t"ª  gÿçõÏ7&'7'7''5'6556×     /ÏCC‹ª%³,^= 6]8ÿétÏ%+73533#3#3#3##5#535#53&'#535#367#! (!$$%% *! !¶11K}ÿîóÉ73533#3#535#3533#3#535#‡(((.p.()))0v2)¨!!!!_""##|ÿéôÐ%)73&''67&''667##5##535#Ÿ=     0C555Ð !    b\\<+ÿèçv"(,059733#"''3255##5#'667'667#35#33535#735\J; =B .MB ;;N=Ž>=P=vS  '   (   ÿébÏ73#5#'67#535#533O B6#Ïæ[E:"P>ÿêò) 7&'''67&''&'Ô  —{  % )   3îÒ7&'73#3#3#535#535#536V  m 6\RRgÝcRRYwÒ  ÿéò_"73673#3#3##5#535#535#53'\ )2RKKffkkMMV5 _        ÿðñÑ7;@73673#3#3#33#537#537#'67#5367#537#53&'37#367#S / 6e]ayn³: $ , 7KR?CS7 O42 76Ñ   -'"2 ¡6 cðÑ73673#3#3#535#535#53&'T 7 2`UUgàfUU_9Ñ  nÿîõ½7'67#53&3#3#535#´ ANe  Rj-49)p 4 77 ÿë€Å %*.733##3#5##5'67#5367#537#3353535#] :C+ #$.!)++Å+, Z D  + }) ]ÿîõÓ !%)73#53&'3#735#3#735#3#735#35#3#®>•>.[[@@*ppJJJJ'——Ó 'R4 " 9@& $ % ÿè Ð!)73&'73#&''67&'767#3#'3'66?7 0 'b\;´       Nki/* "@ÿë÷Ê #'7&'''6'#5##5'63&'35#´! , 2%0 X 0 n!XXÊ # % `Z !W0 ÿéó "&7'67&''#5##5'63&'35#Y" g19 p O ‡&!pp $ P P$#L'cÿéïÌ #7'67&'&''6#5##535#ŒC# !*K999Ì &$ " /Y Z:(XÿéöË !%7'67&''#5##5'63&'35# D # D 5aDDË &%#! %'^_ &'W-xÿñóÐ %73#5##53&'&'''63#3#535#¶3R0'  d)4z2'Ð-0 : .22yÿéïÌ #7'67&'&''6#5##535#š;   #B...Ì' % # .YZ;) ÿénË  $7'67&'&''6#5##535#(3 :$$$Ë $#  /^^<*GöÍ !%7'67&'&''66#5##535#€I$( ($/ !$KKKKÍ " " 4U U6$PÿëôÊ'+7&'73#3267#"&55#'665#53635#  S     J CVVÊ QE  H(& !"QV-ÿéõÎ (,7&'''63#3267#"&55#'667#735#¤#' '$F ) %’)    !)' jjÎ"% 'Q:  A ) +ÿçóÏ#)73#3267#"&55#'67#53635#7&'«)( % $ C> &[Xrr  Ï^>  BC6^`8? MÿèõÑ&*7&'73#3267#"&55#'667#53635#… Y    ECOOÑ  TE L&-$ TX0 ÿéÎ "7&'''6#'67#53#67''35#b -+ $X 22Î pE:RR3 S.aÿéôÏ"(73673#3265#"&55#'67#735#7&'w9     1 +BB  ¡XB  II>4< dÿèôÏ $(7'67&'3#3267#"&55#'67#735#’ D@d   / *>>Ï !$7IC  IH=&mÿéóÐ!%+73#3267#"&55#'667#53635#5&'Á   2 *<<  ÐSF   K,' #%SY1A*ÿèÞÐ8767#"''32654''67&''67''67&'767&''6¿ "  4J P4,; :. (2   ") \Ð  9))     xÿéîÏ!'+73#"''3267#3#"''3267#536&'3#œ6   <_   ^  "TTÏ E-WI1{ (   qÿèò "(.4:73#3#3#"''3267#5365#35&'''67&'#&'TfŽ··² ±'czz r b      B  / v"  O    ôÒ73267#"&''7&'37&'7èZ,  6 c[-  »       sÿððÏ %73#5##53&'36732767#"&5¯ 0T6(!+,  $Ï00 Q/(  uÿððÏ %73#5##53&'36732767#"&5± /Q5' *+ "Ï00 Q/(  ÿë‚Ñ#'+17=73#3#3#"''3267&'767#5363535&'#'67&'21L]][   [ :::+$Ñ L  @   ‡  b~ÿðòÏ $7#5##53&'73673267#"&5îK/4! "(  ! ¬00 5++  ÿé{Ï!'-73#"''3267#3#"''3267#536&''6:-   4P   O &(Ï F-WH0{ &h  ÿëxÎ%73#327#"&'#67'56'&'g    6  Î8K) ?L ¬E53j   ÿé‚Ï+<Ma73533#&''6765#67&''67&'767''67'67''67''67&''67&'1++   1    S        =  ¸;*!'!P         4           ÿó}Ä 7#3#53#735#3#735#73#735#|WSf AA%% %% Ä«Ñ#55E&E& ÿéuÈ#7367326767#"&53533##5##)  % +((+È%   ;GG ÿêvÏ 7'655##53533#5#367'J.'&  [4 =Y"5**3 W  oÿéíÏ!'+73#"''3267#3#"''3267#536&'3#ž2   ;^   ^  +\\Ï E-VI1z )   kÿëqÏ"73#"''32765#3##5"'635#,:  . .$Ï–+ wW^ 'n3lÿòöÄ#73#3#3#535#535#735#33535#335ws011<Š;000/L/ÄtB P kÿñóž#73#3#3#535#535#735#33535#335ur022<ˆ9///0N0žd;@ ÿêq¥5767#"''3265'67&''67''67&'767&''6P    %   ) '¥  +       ÿé‰Ë  $7'67&'&''6#5##535#4<'F222Ë $"  0^^<*pÿéñÅ!735#53#3##"''32655'67#'->m  ##,¦.>>^ Q='"9qÿèôÏ 7373#'67#&''6767&'}@B  [ §(dD GTX#) .RJ) ÿéöÍ !%7'67&'&'3#5##5'635#X&)n" 1: 74,•rLrrÍ ! +0he(m2ÿæëM!73533#&''275#735#335&'#6*NN  Ng2/N<  E$* !&ÿèô™/573533&'73#67&'#"''32655'675#&'g"&` $ :# +6 =-g, |   +8  , ÿéfÎ 73&'73#3#3##5##535#"!X EEEEH!!!² U T6%yÿéóÃ!&+/733##3#5##5'67#5367#5347#3353535#‰\<K2  )!"%,22Ã++ X >     - €+yÿéïÈ"&*.2767#533#"''3255##5##53&'35#33535#335– Me "  22P2¬   //8¥ =JtÿéõÌ ,27'2'6'&'&'3533##"''3255#&'å 0E8.  &    O  O  Ì  =H  E ŸÿéñÃ73#3##'3255##5##535#ŸR"   Ã&j  U‘‘p&dÿç•Ð 73'65'3#ƒ!Ð…<( $4eˆ ÿèôœ%)73&'73673#3265#"&55#'67#735#+  8 1("J @*}}x  I+ 2@1#<ÿþɧ"(73#3267#"&55#'67#53635#7&'¡    +'= 8AA  §  B  $)BD ;   1ÿóÉx$(73#3267#"&55#'67#53&'73635#•   / +  5CCx 9  % 9   50ÿöÉx&*73'7'#3265#"&55#'67#5'635#b 9    5 0 <   (% %(015 0 Ï?6 QJ,#BN-ÿéõÒ ,7#5##53&'73#3#3267#"&55#'67#ç¥^W‘‘ÐB '&'& >=¹--  /@   G*- =MÿçõÑ -7#5##53&'73#3#3267#"&55#'667#ìb< 9WW'   $´1 2  ,B  F*+  #"aÿçõÏ .7#5##53&'73#3#3267#"&55#'667#íW73MM|'   ´1 2  ,D  H,)  "#uÿè÷Ð .73#5##53&'3#3#33267#"&55#'665#º,N1BBr   Ð 1 !2 BC  G+)  "$IÿëõÏ -7#5##53&'73#3#3267#"&55#'667#ên@Bee™/  )±*,  ,B  E((  _ÿëõÏ -7#5##53&'73#3#3267#"&55#'667#ì_8 ;ZZ…'    #±*, +B F((  fÿéôÇ *73#535#535##5##53&''67&'767#wijVTTUx` g % (!   PÇK  G"#'  `ÿéöÇ *73#535#535##5##53&''67&'767#qop\ZZ[g m$ ($   UÇK  G"#'   iÿèõÐ*.273673#3#"''3267##5'67#735#53&'35#35”  0:  % !& (- 8+Ð  ?8Q@$!BK-qÿéêÐ"(733#"''3255##5335#35#7'6'&'¥1  M/MMMMN  Q  Ð=’  ;ª0Ly  qÿòóÏ"(73533#&'#5'67#'33#7&'7'6%%%  o‚(  W  {TT ?E  #Y¿Ê pÿéôÑ)/57676767&'7'#"''3255'67'67&'''6 %,$   42  ? ’5! Q  K($i  eÿçôÇ(,048<73#3#3673#3#5##5'67#535#535#735#33533535#35#p}G%% 1 @B '9*$$%#GBBBBÇ5 [ I –0_ÿéõÏ'/373533#3#535#3#735#3673#53&'#5##535#c>==4~7> vvRR%$–"mTTT   *1$ (= =!qxäË 73#735#35#qssKKKKËS11[ÿêïk)/573#"''3255'675#73#"''3255'675#&'7&'h<    !)K<    !)?  [  kj  #j  #   ZÿéñÇ"&,28>7#3#3#3#"''32767#55#5#35&''&'''67&'í3----7  r<((((   2  (  ÇN  2‚&%/  [ÿéôÉ 6=73#735#33535#335'67&'3&''67&''667#k%%6%[%%6%S N (9 %,&"  %  0É[59(        MÿèòÌ5:@7'23673#3#3&''67&''67#5367#53&'67'&'â 5N@& -KTYP  !  ' $$ )  %  Ì    $)  m z fÿîôÈ #'+/373#3#735#33535#3353#3#735#33535#3353#j……vv 2 R 2 j‡‡yy""3"U""3"qŽŽÈ @' # $ A' % %bÿéøÊ -73#735#3#735#73#735#3533#&'#5'67#zbb::$<<5<<\9>2" " #2Ê4177;   73 \ÿèõÐ%)/39?EKQ73#3#3#3#535#535#535#535'235#&'735'6'67&''&''&'è"??9988?>6699>>2?.&& 3&  Q  u    Ð ?    ?  e    `   ÿî™Ç !/73#&'67&'67&'63#67'75#„„   3   4    ]{5;I:2Ç   L' *ÿï…Å !/73#&'67&'67&'63#67'75#uu    /    .   Po-0;2.Å  H%  )ÿêÏ1733#3#5##535#53#"''3255'7567#536E005X6//D  26 :Q Ï''}'    ÿîôÆ !-73#&'67&'67&'63#3#535#ÆÆ&UX Ê]jçiYÆ   K33 ÿïuÅ !/73#&'67&'67&'63#7'675#ee  )   (   D`&")2'Å  I%  *YÿîòÄ !-73#&'67&'67&'63#3#535#c‹‹   7   9   iŒ=C™C<Ä   S**dÿîòÄ !-73#&'67&'67&'63#3#535#n€€  4   6   b‚8=Ž>7Ä   S**ÿíºk !-73#&'67&'67&'63#3#535#’’  A  ?  u–AK©KBk      (GÿîòÄ !-73#&'67&'67&'63#3#535#Rœœ   =   @   wGM«KCÄ   S** ÿéjÏ73533#67#5'675#'6 Ä"22: SI  D (Jÿîó— !-73#&'67&'67&'63#3#535#V””   :  :   m@M©I<—     9  MìÏ"73&''67&''6655667#× /=k   C  TÏ   % $En  ÿézÑ%)-7&'3&'73#67&'7''5'63535C! =    &***Ñ   W/   2"uÿéîÏ!7#"''3255#&''67##5373î    !4¨§  "B­¿''_ÿéòÐ "73&'73#3267#"&55#'655i5 5e  +§s  e-%44^ÿîóÎ-7#"''3267#5327667##"&55'753753ç      *  ŸR##$ _Yb  # d93D>Xÿêõ¿73#3267#"&55#'655#f…"   )%"¿© ! ¬RE, )  ” ` J # ~ÿéòÏ 73533##5#~2//2NN††‚ÿèøÏ7&''67&'±  Ï$r2 ]M02\!pÿéðÀ73#3##"''3255#535#ym*44  88/ÀAV  QAhÿéôÏ735#535333#&''67#75#n1''/9(&&* -`]6))I3 22 $.6)ˆÿéõÉ%7#"''3267#3&''67&'767##5è  9U     ?É4 J5$     qßzÿèóÏ 733#7&'7&''675#5335#35#®(( *3(((Ï,b6 ! 9bP>>> ÿémÏ&73533#3#3#"''3255##5#535#535# ""!!+   "" ±9 $WWwÿñôÅ 73#735#35#3#53535#35#35#ŠXX2222M }    Åg=C=JJJ99999aÿðôÅ 73#735#35#3#53535#35#35#zcc====Y“!!Åg=C=JJJ88888ZÿðôÅ 73#735#35#3#53535#35#35#tggBBBB^š#"Åg=C=JJJ88888Xÿðô’ 73#735#35#3#53535#35#35#pllHHHHdœ$$’J-,,:::***** ÿ÷b˜767'67'67676'6P (   %({( ! T 8ÿìõ 73#735#35#3#53535#35#35#X€€ZZZZz½,,W461;;;***** ÿíÀp 73#735#35#3#53535#35#35#&~~ZZZZu³**pD) # &$$$HÿðôÅ 73#735#35#3#53535#35#35#fqqKKKKi¬'&Åg=C=JJJ88888IÿéëÈ!773#3#"''32765#'67#735#35#3267#"&5536cySl g SSSS= "(  *"ÈU X" 8 31K    , WÿéëÈ!773#3#"''32765#'67#735#35#3267#"&5536noKb   [  IIII5 $ % ÈU Y! 8 31K    , `ÿéíÇ %7#5##535#35#535#53#3#3#7&'íggg " Q "UD  ÇÞÞ½«„++4  EÿïîÉ"&*735#53#3#3#3#535#535#'6735#35#`*9‚5==77CŸH661 \\\\g \\ Y8`ÿïóÉ"&*735#53#3#3#3#535#535#'6735#35#w!0p,22--8ˆ<--'JJJJj[[ V9 ÿÿeÀ73#3#67'675#535#V"  ( À6= D6cÿéöÏ!'+173533#3#&'#5'67#535#35#&'735'6p8771&" 18. ¹T DP.$TW.  ..  ÿéóÏ!'+173533#3#&'#5'67#535#35#&'735'6dddTA#3 9%": 5 @Td$@@ H@ »X"-NM*!XY2 22;ÿéòÏ"(,273533#3#&'#5#'67#535#35#&'735'6KIGG=,'%-(&=I ))5)  ¹T%LT/$TW.  .. UÿéõÏ!'+173533#3#&'#5'67#535#35#&'735'6c><<5'!( #"5>!!0!¹T"GR-$TW.  .. \ÿéõÏ!'+173533#3#&'#5'67#535#35#&'735'6i<992% ' ! 3< .¸R "GT.%RX0 00  ÿéô !'+173533#3#&'#5'67#535#35#&'735'6 iiiQ@$5 9%$77!?Qi+>>  E>  J !55 JI( ((  pÿéöÏ!&*073533#3#&'#5'67#535#35#'735'6u644.# /6, ¹TCJ*%TW.  ..  ÿçôÏ48<A73533#33##3#&''67'67#5367#535#535#535#353567\]]Pe‰: $ .$N :$9 =I9PddPP\p<<P  . ")#*55**1C!!!8! ¿       A  ÿçð¦59=B73533#33##3#&''67'67#5367#535#535#535#353567WXXMg…4 " /'E &/55@1NeeLLWk:::f4œ           7  TÿäôÏ#;B73533#33##535#535#535#35353#&''67'7#53667#a8DD7y/<T " 2 ,%#,,À"! !%    1   ÿç˜Ï#;A73533#33##535#535#535#35353&''67&'67#5367#2<<-g&22##2F.7  '' *¿" !    * ÿé…Ï#'?D735#53533#33###5#535#535#335353&''67&'67#5367##++44* *##..#5.2    #  '  + pÿéîÇ %7#5##535#35#535#53#3#3#7&'îXXXGK<ÇÞÞ½«„++3  rÿèôÆ"7#5##53'>33267#"&5ã@&    Æ‹yy‹(R.*  #,9 ÿío}7'67#535#53533#3#&D "'("""#  " jÿæòy"7#5##5333267#"&55'>Þ@*   . y^LL^% !   $KÿéëÅ 7#5##535#3533#3#535#35#ëzzz ***"W"*22ÅÛ ܽ«%FFO"aÿéîÅ 7#5##535#3533#3#535#35#îggg$##K$''ÅÜ Ü½«&EEP$hÿéîÅ 7#5##535#3533#3#535#35#î```! H!$$ÅÜ Ü½«&EEP$ÿéãŒ7#5##535#3#3#535#535#35#ãžžE55'c(55E/@@Œ£ £„q44UWÿèé– 7#5##535#3533#3#535#35#ékkk%%%N%((–® ®‘€888fÿéîÇ )7#5##535#3#&'#5'675#535'2îdddN !!  !!!ÇÞÞ¾¬ :0 #pÿêìÅ (7#5##535#3#&'#5'67#535'2ìXXXH     ÅÛ Û¼ª D2'RÿéìÊ  $7##535#35#7#"''3255#535#5#–1‡  1Ê\…á%87Ä b\%8aÿéîÊ  $7##535#35#7#"''3255#535#5#¡,y  ,Ê\…á%87Ä b\%8KÿèíÊ #7##535#35#7#"''255#535#5#’6$$$$‘ 9''''ÊO“â -/Ì zO -LÿéîÊ  $7##535#35#7#"''3255#535#5#”4 Ž  8%%%%Ê\…á&<6Ãa\&<FÿéêÉ $7#"''3255#535#5#'##535#35#ê  7&&&&$6$$$$ÉË  ‚D & 5Dœà & NÿèïÊ  $7##535#35#7#"''3255#535#5#˜8&&&&  9''''ÊCà ( 'È  €B ' VÿèïÉ #7##535#35#7#"''3255#535#5#›3!!!!‡ 5####ÉGšá ' +Ì ‚G ' ÿèæ— $7#"''3255#535#5#'##535#35#æ  I7777&G4444—–  HH ' 7Gf­ ' ÿéë– "7##535#35#7#'3255#535#5#tJ8888Á O====–He­ & ,” FH & žðÒ!73#&'#'673#&'#'6+B"pM( Ò   ÿèïž +/373#3#535#5#35#3353353#3##5#535#735#35#ÝH<Æ CÈÚ‰ÿéöÏ!%)-73533#3#&'#5'67#535#35#33535#335•%%%$  $%"4"»[' !;;![9; ÿéö !%)-73533#3#&'#5'67#535#35#33535#335gggQ?#7 :&$75#?Qg)>>R>>>R>’O "44 O.-Yÿéö›!%)-73533#3#&'#5'67#535#35#33535#335d<<<5& #" !)5<""4#W""4#G !84 G* % rÿéöÏ!%)-73533#3#&'#5'67#535#35#33535#335v455.%  #.4-H-»\"">?\9:YBôÍ!%)-73533#3#&'#5'67#535#35#33535#335e:<<4'"  #'4:""4"V""4"à  >   > # ! VÿéõÏ!%)-73533#3#&'#5'67#535#35#33535#335b><<71% !$',6>##6$Z##6$¼\#!>C#"\9: ÿéuÏ"&*.73533#3#&'#5'67#535#35#33535#335***$$   $*&:&½Z =BZ88ÿéñÇ"(.473#3#"''3255##5##535#&'7&'&''&'âg^  JJ^g3 i N Ç“  {‘‘™¬?   $qðÎ#73#3#5##5##535#3#73#3#73#ÄXfQQfX??d@@e??e@@Î (11' "yðÎ#73#3#5##5##535#3#73#3#'3#ÄYgRRgY??d@@@@e??Î%++$   ÿéLr 7&'&''6&  ) r      Eÿèôl#73533533#3#535#35#'67&'S4!!)¬(044  Y Z2   ƒÿéæk73#"''3255#'65533535œJ -)*+km 0("  ÿé…o#'+/73533533##3#3##5#535#535#5#5#35#335),,0055++Q) +h  &  &  - QÿéìÇ%)-73#3#"''32765#'67#'67#'67#735#35#msG_   2 -0+ KKKKÇ^ N -9!+* 7:nÿéìÇ$(,73#3#"''3265#'67#'67#'67#735#35#{f=R , &$    >>>>Ç^ N18"+' 7:fÿéíÇ$(,73#3#"''3265#'67#'67#'67#735#35#wkBW / )#   CCCCÇ^ N18"+% 7:ÿççe$(,73#3#"''3265#'67#'67#'67#735#35#0¢r‘   7- ;3)&}}}}e6+     !gòÐ")/57'6'#3#3#3#&''67#53567&'#7'6'6× 5-4TPPPP[ -1 #£ 90% #7 7Ð       ;V 8     WòÏ")/57'6'#3#3#3#&''67#535&'#67'6'6Õ 0.3VOOOO[  +1 L" 1 2$ %5 :Ï      D] C      JöÎ!'-37'6#5353#3#3#3#''63'#67'6'6ß 7/‘"n\TTTTb -3M # ‘ 2 5$ $9 :Î  OI   L    pÿéìÇ$(,73#3#"''3265#'67#'67#'67#735#35#{f=R , &    >>>>Ç^ N18" +# 7:NÿéóÏ %)-73533673#3#5##5'67#535#67#35#35#d-10F!YM  59-A MMMMµ ue TAzÿéóÏ#'+7353373#3#5##5'67#535#67#35#35#Š #2B3 $'2 3333µ ua oAKÿé©Ï #'+7353373#3#5##5'67#535#7#35#35#V " 5" ' """"´  ud pCÿéê&*.73533#3673#3#5##5'67537#535#35#35#D'## =Z hy  'PT'yyyy‹  [ B U- zõÐ73673#&'#'67#QqB, 6#% 9 (=½     }ÿéòÈ #'+/73#735#'3#735#3#3##5#535#735#33535#335¼44N33 h+1111**B*È22/V((355ÿèì$)-173533673#3#5##5'75367#535#67#35#35#H8) )FQb  DE8X &-bbbb€  Z E   @0Uÿéì{$(,73533#3673#3#5##5'67#535#35#35#e(  !8?M 64(MMMMk  I4 E % -ÿéá  7'66553'#3U Ÿzzt(8+ (N, ^ÿéóÏ#'+73533673#3#5##5'67#535#67#35#35#q$)/BOE -.$8 EEEEµ ub  nB ÿéóË,049=73#3#3673#3#5##5'675327#535#535#735#35#35#35#)¬\BB(& 'JRw%$iXBB=„„„„wj wwËE  T ;   ) % '…ÿéóÏ!$(,73533673#3#5##5'67#535#7#35#35#”  , <. "#. ....´  u`pCQÿö’Ï7&'367'5#j  * Ï ?m  pEÿéòÏ!$(,73533673#3#5##5'67#535#7#35#35#]/24I^Q #7;/C !QQQQµ  uf oA>ÿé„Ë#7#"''32655'67&''67&'76t       Ë 4=#$&   ;ÿê’Â473#67&'#"''32655'67''67&''67#CM           '$ ‰ÿéôÏ#'+7353373#3#5##5'67#535#67#35#35#™ &5* "* ****´ u[ pC òÏ%*.73533#3673#3#5'675367#535#35#35#%D22" 3OQŒhUD.dcdd½ V<  \3Cÿéñ¡$(,73533#3673#3#5##5'67#535#35#35#](**&>OT ")@7(TTTT  a M  W3 ÿèò”$(,73533#3673#3#5##5'67#535#35#35##K11)" 3Z cp'.(WbK.pppp„  Z I  R.lÿéóÏ $(,7353373#3#5##5'67#535#67#35#35#z%% '8 I> ..%8 >>>>µ  u` oANòÏ!%)73533#32673#3#5'67#535#35#35##D553 1W!]˜.'TVD0pppp    >.  ? $ ÿççD)/573#"''3255'675#73#"''3255'675#&'7&'b %-3&Pnb %-3&P`uDK   K     ÿé{Ç$(,7#"''3255#'6553533#3#535#3#735#{   A  3//ÇÅ  ¯SC7 3B_28;~ÿéïÆ(.473#"''3255'675#73#"''3255'675#&'7&'…3    !:0    /  IÆÃ  8 VÅ  5 X   ‚åÊ #73#5'675#73#5'675#&'7&'[%,In[%+IfrÊE  E  VÿèöÏ"(,0673533#673265#"''67&'#7&'3#735#'6\O44      P|  e??5%.2©&6$5!(#,->7 DC!:  2÷Ï'+/573&533&'73#67327#"&''67&'#3#735#'6 L     €[[44M1<?·  !%,   )5, ÿéúÐ"(,0673533#67327#"&''67&'#7&'3#735#'6€ML    À  žVV..M2=Cª&3#" /&7.=9   GK%I  JÿèïÏ#)-1773&533#673265#"''67&'#7&'3#735#'6NY66     %Yƒ  m@@3$+0©&%%4!-%1'@8 FC#< wïÏ 73#5##53&''67&'d¶b - )X(" #'Ï --$    ÿéó‰'+/573&533&'73#67327#"''67&'#3#735#'6s "P   uQQ--M2>@j   '/  !& 5+ ÿéó†(,0673&533&'73#67327#"''67&'#3#735#'6s "Q    tQQ--M2>@r  &#"2  #,7.  ÿékÏ!'73#3#5##537#53635#35#35#7&'S ""0(6 (000000Ï™™c?@®  ÿèíË ,73#535#535##5#3#"''3255##5##535##5)©©•‹‹•ÄNI  54HQËTN,1  GG5G/qÿéôÇ *73#535#535##5#3##'3255##5##535##5ggVOOVu'0 0'ÇPO/  FF7Gÿêì– ,73#535#535##5#3#"''3255##5##535##5-ž¡Ž††‹¿OH   66IQ–C  >!  33$3$tÿéî  ,73#535#535##5#3#"''3255##5##535##5}efTPPSq")  *$ @  =&  ::-< yÿéõÇ *73#535#535##5#3##'3255##5##535##5†bbPIIPo", ,"ÇPO/  FF7GSÿéöÏ48<B735333##67&'#"''32655'675#535#535#33535&'`288  ,    $33==2E%%%f »$%   &+ /$/  ,ÿéô¸37;A735333##67&'#"''3255'675#535#535#33535&'E@FF   1  +# 5"@@YY@T222x  š"#   "    "' ^ÿé÷Ï48<B735333##67&'#"''3255'675#535#535#33535&'o+44  '   #--55+>!!!` »$%   &*  /$2  hÿé÷Ï59=C735333##67&'#"''32655'675#535#535#33535&'|)--   "  #**22);Y »%$   $) 0%2  ÿéñÏ.26<B735333##67&'#"''32655#535#535#33535&''6'OJJ ! :!  PPddOc666•Q'13¼$%   /3 X$2   ÿévÏ$*073533#3#535#3#3##"''3255#&'''6*++$Z#* UU e(  *T  5  ½6=  9 cÿéõÑ "(.7#5##53&'73#3##"''3255#'67&'ï^73OO‰=   9 \³0/ *K  H ÿéì™ "(.7#5##53&'73#3##"''3255#'67&'ì³aV••Õa   ^1! {! ˆ)) #.  + GÿéóÑ "(.7#5##53&'73#3##"''3255#'67&'ìoA ;[[žF    Dl´10 +J  G hÿéõÑ "(.7#5##53&'73#3##"''3255#'67&'ðW2 .II8   4 X ³0/ *K  H !TïÎ "(.73#5##53&'3#3##"''3255#'67&'‚]°^7““Ñ^  `5 ' (x# "Î""!      MìÐ 73#5##53&'#3#535#35#¡ByGCYcvGGPPÐ #$078'_ÿèëª !73#5##53&'#3#5##535#35#…\­a^‰“€vv€€ª ,,16D ‹&]pÿéòÐ !7#5##53&'7#3#5##535#5#ò[5'MQ>99>>¶%%  +@M ¢-qpÿéòÐ !7#5##53&'7#3#5##535#5#ò\7&NR?;;??µ$$  *?L ¢.rfÿéñÐ !7#5##53&'7#3#5##535#5#ñe<(VZGCCGGµ$$  *?L ¢.r_ÿëôÏ $*73&'73#3##"''3255#735#'67&'i89†r.  1LLd  ³ HA  =$@ ' NÿëôÏ %+73&'73#3##"''32655#735#'67&'\9C’ x3   1PP l  ´  I> 9#@ ' SÿëôÏ %+73&'73#3##"''32655#735#'67&'`: =Ž v1   1MM j  ´  I> 9#@ '  ÿéqÏ"(.7676767&'7''67'67&''674'$   &%  5  0„:"  /*i   ÿënÏ"(.7676767'7&''67'67&'4'''6$  $!  …9"   /+iTÿèóÐ<@DHLRX73533#3#&''67#5365#'67#5365#53533#3#&3#735#35#35#'67&'^   n    u€€ZZZZZZ  P À   &  Y? # #     ƒÿëôÏ $*73&'73#3##"''3255#735#'67&'‹,%eY# #33   Q  ³ H?  :$@ &  hÿëôÏ $*73&'73#3##"''3255#735#'67&'u04z g*  *AA]  ³ H?  :$@ ( uÿéòÐ %+73#53&'3##"''32655#735#&'''6µ/v1c'   )==@  9 Ð  ˜C  >8    '  Ï  +„a %6F#   $,   ?ÿéõÑ *1773&'73##5'673&''67&''667#7&'KG G£!  =>"     .  ¶  ‰j %'A-    $#+ VÿèðÐ !7#5##53&'7#53#3#5'35#35ðtD 1hU_LBBLµ))  Á ¢>M jSiÿéñÐ  7#5##53'7#53#3#5'35#35ñb< *]JS@77@µ)) Á ¡>N jS2ëÒ 73#5##53'3#3#735#35ƒ`°`?›ˆ•¨uu‚Ò ,.,0 2O=_ÿèðÐ !7#5##53&'7#53#3#5'35#35ðk@ .dQZG>>Gµ))  Á ¢>M jSOÿèéÐ !7#5##53&'7#53#3#5'35#35érD 1jV`LBBL¶**   £?N kSUÿêî¤ !73#5##53&'#3#5##535#35#¡BtBGV\JCCJJ¤ ))/5A …%[ÿéíž !73#5##53&'#3#5##535#35#€b²b`‹™…ww……ž &',4 A „#VÿèñÑ #/73&'73#&''67&''63533##5#Y WÈ2 u  •ieei¸    -9CCÿéñ™".73'73#&''67&''63533##5#[  \Ï3   t  ”egge„       $//Fÿèð¦ #/73#53&'&''67&''63533##5#Ÿ>–B  V lLJJL¦ $  !   - 22ÿéïŽ ".73&'73#&''67&''63533##5# XTÁ+  x ”eddew       "'' ÿéó¤$073#&''67#&''67#53&'3533##5#‚X*   J   -_bihhi¤  !   v--rÿéòÏ #/73&'73#&''67&''63533##5#{-0s F   O5665´      -   ;>> ÿè…Ð/397'67#53655#'6553&'73#35#535333##&'3535R    /)[$  %% =1 2;Y  C('k(  ÿèñ¥/3973#35#535333##&''67#53655#'6553&'3535ŽU³L<<B87 <9 0/:L[001¥2   & 1' )0I? tÿèðÏ"&*73#3#"''3255##5##535#53635#35#£5+5  ""5. EEEEÏX<  %SSDVX -4 ÿéuÏ"&*73#3#"''3255##5##535#53635#35#5/%*  +& 9999ÏV5  YYDVV ,2iÿèïÏ!%)73#3#"''3255##5##535#5335#35#9/:  '&92%NNNNÏX<  %SSDVX#4oÿéïÐ"&*73#3#"''3255##5##535#53635#35# 7-7  $#6/"IIIIÐ [7  "QQ@P[ /9ÿè{Ð 73#3#3##5#535#536#335#:,NQ*----'*;;;>>Ð 77++JZÿèòÐ 73#3#3##5#535#53#335#’>gk7CCBB4&ATTTXXÐ88++‚JFÿéôÏ#'+73&'73#3#3#3##5'65#5#35#w/  04----6} "C44444Ï!!! ,+!!3!!3!Aÿÿ†®73''67&'767#K2      ®A#%•ÿèôÐ#'+73&'73#3#3#3##5'65#5#35#³< #Ð$##„..$$4##4#;ÿêœÏ48<@73533533##3#3#3#&''6677#537#535#535#5#5#35#335D  ##*'  ! 6  ¾ 2    2 =ÿéðA 733##5#53wffggA11BAíÑ#'+73&'73#3#3#3##5'6353535k*5<4444;}00000Ñ L ! !;JÌ 7&''6' Ì  A Eÿèó#'+73&'73#3#3#3##5'65#5#35#p+6;2222<‚ A33333  g&'V“ìÎ 73353353#V..–Å )) 2 ;îÑ$(,73&'73#3#3#3##5'65#5#5#F8 JQGGGGY® (M?AAAAÑ  L & !+ÿéÚ1 7#5##535#Ú‰‰‰1H H+7ÿéœÏ #8>D73&'73#&''67&''63533##"''3255#'67&'F#R  .     5% % C ´      $   - ? <&  }öÐ73673#&'#'67#Sn9' / , < ,>À  !  ÿéð’"&*7'673&'73#3#3#3##75#5#35#+ 9TSHHHHW±ZFFFFFK "&   j'&Zÿéð‘"&*73&'73#3#3#3##5'65#5#35## )-&&&&0l 8)))))‘   `!&&ÿê\Ž73533#7#"''3255'675#   w"-  !)dÿéõÐ $(,#5'673&'73#3#3#3'353535   (  &-''''/f$$$$$ $!"!™!!2""4!!oÿêìÇ$(,7#"''3255#'6553533#3#535#3#735#ì  M  @99ÇÄ  ¬l>!!>w27;fÿéóÐ#'+7'673&'73#3#3#3##75#5#35#€  (  *&&&&-_4 „ #( """‰""3""3" ÿéóÏ  $(73#''67&'#"''3255##53#735#u( #(~! &9   Ž2QQ++ÏLB $;z  b€“+C!ÿéäÏ $(733#"''3255##537'6'&'3#735#u[  žWQ} &bb::ÏB‹  s‘¤< \P*PÿèëÐ $(733#"''3255##537'6'&'3#735#”C  sDDe  %EEÐJ…  nŒž<  XG%mÿêìÎ $(733#"''3255##537'6'&'3#735#¢5  W59Q  <<ÎG‚  kŠ;  YG%| íÏ $(733#"''3255##537'6'&'3#735#«-   I/2  J  33Ï@n  Ys„4  K@rÿèîÐ $(733#"''3255##537'6'&'3#735#¦4   U48 Q  99ÐJ†  qž< ZF& ÿédÐ#'73#"''3255'67#5353635#35#35#2$   $ &7  ******Ð º  )'p 299PÿéõÐ%)-48>7&'73327#"&'##5#'655365##5#&547##5#'&'š  ? OO  Ð 0"$$$!(99# ']G. Ž  ÿé÷Ó!%*04:7&'73327#"'##5#'6553635#33&535#73''&'s  a :<zy99M7„:9M9ˆ  Ó q(.CAA& '3IG E r ÿòðÏ!'7&'73#3#535#53635#&'7'6P  r ;FNáIEƒ9""?  °Ï ‹‹³‹#+ *&1! ( ÿïó’ *7&''63#3#3673#53&'735#535#‡14 5607 E s/YY 2Þ4 YY0’   #   #DÿîóÏ#)/7&'#3#3#535#535#5'63&'&'7'6“%, 0CCK¥G??- 7 V  i  Ï& DD $ ^   RÿðõÏ$*07&'#3#3#535#535#5'63&''6'&'œ$% *==CœF;;) 2YB [  Ï)== %$_   }ÿðô¾7333267##"&5477#€_A  #8G¾}  !'$i ÿðò± &,7&''63#3#3673#535#535#&'€,8 52+; C y3YY  1Ñ^YY3  ± %!/// qÿêðÆ73##53#3#"''3265#ƒ^^ MK OÆ=*G-vÿéóÄ73#3##5#535#}q05544-ÄInnIrÿîôÏ-7#"''3265#532667#"'&&55'753753ê   )! ¤U$/ `Y g# cD<E=lÿêöÐ7&'5#5'66556Þ   4Ð$>C4t"¿7L? $5%HqÿéêÈ7#"''3255#'65535#35#ê <;;;;ÈÁ 3.) 5@_;(b'VÿéòÒ 48<7'2'6'&''&'33###"''3255#535#535#33535Ù 6NA> /    „8  77@@7L$$$Ò     ()!  )ÿéïÑ 48<7'2'6'&''&'35#533###"''3255#535#75#35#Õ LmZPB  /  aL®N  PPa¯:::Ñ       A((  (^ÿéóÏ 48<7'2'6'&''&'33###"''3255#535#535#33535Ù 3J=9  *    |7   22::1E###Ï      )("  ) ÿéó›48<7'23&'736733###"''3255#535#535#53&'3535Ô JjX5 #  R SSiiU T>>>›    !   wÿéôÑ 48<7'6'6'&''&'35#533###"''3255#535#75#35#Ú #C ?!!0)k /  ))0^Ñ    D)*"  ) ÿèöÑ#'-373#53535335335#33533535#35#35#'67&'Ýí8#o$$8#$“$$8##7$$I*'b'$ &&´B/////n.....F    `ÿçõÏ#'-373#53535335335#33533535#35#35#'67&'è ” #E"V"#5 N¯uu ;)))))c)))))@  IÿçóÏ#'-373#53535335335#33533535#35#35#'67&'ã© )O'e'(;!Y¯uu :(((((c)))))@  XÿçôÏ#'-373#53535335335#33533535#35#35#'67&'å› &I%[%$9Q¯uu :(((((c)))))?  JÿèñŸ#'-373#53535335335#33533535#35#35#'67&'ã§(O'd'(@ SŒ]]/K5   fÿèõÏ#'-373#53535335335#33533535#35#35#'67&'è "D"T""7O¯uu :(((((c)))))A  oÿçõÏ#'-373#53535335335#33533535#35#35#'67&'ê … ?M 2 I¯uu :(((((c)))))@ ÿèõˆ!%)73#3#&'#5'67#535#735#33535#335+¨LcN$5 ;)"8 3I^J66H8€66H8ˆO  10  /-ÿèï˜!%)73#3#&'#5'67#535#735#33535#335+«KcR#0 7"!62 QdL99M8…99M8˜T !8822dÿéíà 73#735#35##5##535#35#mvvNNNNlaaaaaÃ]797m m'<lÿéîà 73#735#35##5##535#35#uqqKKKKf\\\\\Ã]797m m'<ÿèâ 73#735#35##5##535#35#/¢¢|||| I,+)` `#5yÿéíà 73#735#35##5##535#35#€ee====YLLLLLÃZ578mm(>?ÿô¾s 73#735#35#3#735#35#IiiIIII]]]]s8" >% " G¸ 73#735#35#3#735#35#Ncc????qqKKKKF+ & (H+ ' ÿéïÄ 73#735#35##5##535#35#†aa;;;;VHHHHHÄ\677n n(=Zÿéôn73533##5#'67#535'6§ * *, #))#n00CC(‡tèÉ 73#735#35#‡aa====ÉU34€ÿèòo73533##5#'67#535'6¹   o00@@' ÿéžÅ $7#'6553#3#3#5##537#33535#\,x'//':''SSS,::Z>1 5=]=TTv~!dÿéðÅ $73533#3#5##535#'6553'#335#‡)--&7%*tOO877ˆTT@. 5>]=+!QÿéñÅ $7#'6553#3#3#5##537#33535#©1ƒ,55+B*,]]]1BBZ?0 5=]=TTv~! ÿé€Å $7'6553#3533#3#5##5357#335#-aO""'==(''Z?/ 2?]=TT[Ž"DÿéõÏ%+73533#3#3#3##5#535#53&'#535#367#T@@@N# ?NNMM>" !P@5& A¶ 11K \ÿéòÏ%*73533#3#3#3##5#535#53&'#535#367#j544@4@@@@3C5-4¶11K ÿé€Ï%*73533#3#3#3##5#535#53&'#535#37#&%%.&////&0&" (¶11K ÿéxÏ%+73533#3#3#3##5#535#53&'#535#367#"""+"++**!,"!¶ 11K ÿéóÏ%+73533#3#3#3##5#535#53&'#535#367#"UVVh1 'SggggT. ,jUB: \ ·11JLÿéïÏ%+73533#3#3#3##5#535#53&'#535#367#[:::G 8GGGG;I:1# ;¶ 11K ÿ逛$)73533#3#3#3##5#535#53'#535#367#&%%.%....$ 0&$%Š$$8 NòÏ%+73533#3#3#3##5#535#53&'#535#367#];::G 9GGGG9 J;1#:¼ ** > ÿçò$*73533#3#3#3##5#535#53'#535#367# VVVh3%O____M%1hVC:S 6 #‘ÝÈ 73#735#335335#ºº%%7%&È7^ÿðóÐ %73#5##53&'&'''63#3#535#¦=g;-  #y4B”?2Ð .1 : .22lÿñóÐ %73#5##53&'&'''63#3#535#®8\5)  n/;†8,Ð-0 : .22ÿïêe (7#5##53'7&'#3#535#5'673&'éª\,$ 7_Óa8 4 oW%&     @ÿéóÑ *7#5##53&'73#3#33#"&''675#éqBGt177/2 "0»**  6)0.;flÿëôÑ *7#5##53&'73#3#33#"&''675#îW2 9\$**#%   %»**  3.1,<j_ÿéôÑ *7#5##53&'73#3#33#"&''675#í[8=b'--')   '»**  3-0.; i ÿêõ¥ +73#5##53&'3#3#33#"&''675#„\­cF­LMM!0)E. /N¥ "" 9! #.N ÿé…Ñ *7#5##53&'73#3#33#"&''675#…L.4S$$     !»**  3.1-=kÿçîÑ#'+7&'73#3##5#535#53635#33535#335U  i &LddddLp i88M8…88M8Ñ  m..m@G ÿçiÏ#'+7&'73#3##5#535#53635#33535#335)  < ###''#/ '"1"Ï   g00g>CZÿéôÎ#'+7&'73#3##5#535#53635#33535#335‡  K #5CCDD5C>""5#X""5#Î  g..g?CSÿçòÑ#'+7&'73#3##5#535#53635#33535#335†  P 6EEGG6MH##6#Y##6#Ñ  g00g>ElÿæôÎ#'+7&'73#3##5#535#53635#33535#335“  B !/::;;/< 4/K/Îf11f?DGÿèò¥#'+7&'3673#3##5#535#735#33535#335|  _  "AJJNNA//B/q//B/¥   U33ÿèñš#'+73673#3##5#535#53&'35#33535#335T 1/PffiiQ) >>Q>>>Q>–  SS21~ÿæôÎ#'+7&'73#3##5#535#53635#33535#335   B +2222+= 5+D+Îe22e?E ÿæ’Ð#'+7&'73#3##5#535#53635#33535#3353  D !188::1? 70N0Ð g11g?Cÿîï¦ !73#5##53&'3#53535#35#35#€a­^`"Þ#qqqqqq¦ ,, 3nn%78iÿñóÏ !73#5##53&'3#53535#35#35#«;`7CŠ111111Ï *+ @††-GHRÿñôÏ !73#5##53&'3#53535#35#35#  CtBH ¢!;;;;;;Ï 01 @……,GGHÿèóÏ (.473&''667'6''63&''657'6''6›(! $/ ,< b 0+ .7 M? b  Ï$) A('#!* ÿç›Ï.27367&''676''367&''676''O "0 ( * 5 ". $ ) Ï  ,,   )jëÏ*067367&''657367&''65''67'6D   )l    (‰ p  Ï     !     !   7íd7#5##5íµd-,ÿíòG73533#3#535#)LKKhâeL,<ÿèôu /573&''66''67'6367&''66''6‹)$'&0-( l 4   7#81& u       +       ÿç†Ï-17367&''676''367&''676''D  (  # .  &  " Ï    ,,   )…ÿéõÏ!733#3&''67&'#5367ª22-  Ï"8(  0 ÿä³y177367&''676''6'6765367&''6_    "9 .)  58 *    Q  y       V    0  Hîs7#5##5î´s++ÿè÷P733265#"&'#3##5#535#/‘ ?44::*P,),*++{ÿèôÏ (.473&''667'6''63&''657'6''6³   ,  D ! % 4-  F Ï$ ( @(&#!* ÿéyÎ)73'67#'63#35#535#53#5##56/6  ' C0CÎ  %/ !!} x ÿó€Ò.73533#3#535#&'''63533#67'675#(((0s0(K * &$$0:&·0  " #Iît7#5##5î´t++Dÿèð  (.473&''66''67'63&''657'6''6˜(" "%+ .0  r9 + -6 N? d        4   ÿçíR 73#3##"''3255#'67&'6––¾R   X, * $|  R$     zÿèóÏ (.473&''667'6''63&''657'6''6¯  # -  K$ $ 1. LÏ$ (  A('"!*  YÍ.47'667367&''6'667367&''6I   6 $#    9 §   *  G     &  iÿèóÏ (.473&''667'6''63&''657'6''6ª  '!.  P ($ "+ <1  NÏ$' B(#"* 2ÿéÐY7#53#"''32=#335Ež  xxxx'pU  7  dÿèóÏ (.473&''667'6''63&''657'6''6¨ $#1  R(% $- ?2  Q Ï$' A(%" * ÿèó 06767&''6''667&''6''6{   00= b5 =   ' J  e9   # 1) $  .Uê %+17367&''65'367&''65''67'6°    )k    *  p             0íS7#5##5í¶S## ÿçô?7&''676''6À ") N#2) g n 4    9    …ëÎ#)/7367&''67&''6736''67'6E    %¡    (°oÎ     "    )    Qí~7#5##5íµ~--Qîx7#5##5î¶x''ˆêÏ%+17367&''657367&''65''67'6D    )l    )ˆ o Ï               gì…7#5##5ì´…ÿéìr 73#53&'3#3##5##535#`×^I¹¹¹¹³ŠŠŠr $  00 )ÿéØg"(,73#3#5##535#5#35#"&55#'67#333535#-§7;Š62^6Š( %!b#ŠŠŠg bb 2    <  F‡g 73#53&'P-z9g aÿéîÏ$*0673#"''3267#'63533##5'67#7'6'&'&'‹ Y   N (''  K1D Ïœ-$ !N::UA!B   8 HÿéíÏ%+1773#"''3267#'63533##5'67#7'6'&'&'{k b #111 !)^  A  O  Ï š/ˆ M::UEB   8 ÿèæ*0673#"''3267#'6'63533##5'67#7&'&'6    –| {KBB) &9(  \  u0a  ,,G@%;  <  `ÿéîÏ%+1773#"''3267#'63533##5'67#7'6'&'&'‰\   Q *(( #O6  H Ï œ-$ M::U@ B   8 cÿéðÏ%+1773#"''3267#'63533##5'67#7'6'&'&'Œ[  Q '$$   M5  B Ï š/% !N99WC@   9  ›ÿéñÏ973#"''327'#5'67#535&'75367'3#765#'6³3         )Ï )5>    +%  %_  ÿë_Ç!%)-39?7#3#3#3#"''3267&'765#55#5#35&'''67&'Z    8     ÇM  &&6!bÿé¡Ï#'+/73533533##3#3##5#535#535#5#5#35#335b   '¼%<((<%P ÿé~Î,2873#"''3267#'63533#&'#5'67#7'6'&',G  =    @ - Î ’„ R:: :6<  uÿéïÎ+1773#"''3267#'63533#&'#5'67#7'6'&'—M  @ "    D 0 Α &} Q:: 9><   ÿèzÏ.373533#3#3#3&''67''67#535#535#67#(%%""(51      .%%(4 %º      ‡ XÿéöÈ'-397367#53#3#&'#'677#3#"''3257&''&'''6a//w5I%!' &6   C    1 ™!# i  M#)+"!') ) " ÿêöÈ&,2873#3#&'#'67#5367#3#"''3257&''&'''6$·UqG77@ :JVMG X   JÈ "*/ Oc  F''+$!' )  *Mÿê÷È&,287367#53#3#&'#'67#3#"''3257&'''67&'_-+u7I$!$+##2   F  TQ  š  !$i  L#)+") ! !') <ÿéõÈ(.4:7367#53#3#&'#'6677#3#"''3257&''&'''6F87ŒBX-$'*  -C  I   8š  !$h  L#)+"!') ) !MÿèöÈ&,287367#53#3#&'#'67#3#"''3257&'7&'''6[,!n9H#$&, &&7   ,  .  T š  $2%!e  G%%)#% '(  ÿéó”%+17737#53#3#&'#'67#3#"''325''67&'7&'KM¿Zt=+ 3+: %8\   )e  7 l  !  M  1 %  LÿéðÐ $73#'66553&'33#3#5##5335#«:w :55,: ::Ð K>1 -!V ,&_ _B1bÿèñÐ#73#'6553&'33#3#5##5335#·0i7,,&2 22Ð M>3 3:X +&_ _B0?ÿêóÐ/573#'6553&''67#73533##"''3255#&'£ CJ  5  5  ÐI>. 08T %)‡‹""`  ]QÿêóÐ.473#'6553&''67#73533##"''3255#&'­<B .   .ÐI<0 /9T ƒ%)‡‹""a  ^ÿïñ— %7#5##53&'7'67&'3#3#535#í²^' - /K*&((f´QhâfO„*+     #""QÿèõÏ773#&'#5'67#535'633##"''3255#53567#Ø =- #& !*=/96u??  LLWÏ &*  f !  tÿéôÎ873#&'#5'67#535'23567#533##"''3255#ß 2% !0054 D]00  4Î'& •   LÿìöÑ +17=7&''6&'3'67#33267#"&57&'''67&'¤( ' # 4 )x  ` -  7 ƒ  Ñ    &; ;$ OÿìõÑ *06<7&''6&'3'67#33267#"&57&'''67&'£% &# 1 *u \) 4   Ñ     ';  8  $  ÿì˜Ñ !'7=7&''6&'3'67#&''&''33267#"&5''6M$(  !_  Hc      Ñ !  /  - 0 XÿìõÑ +17=7&''6&'3'67#33267#"&57&'''67&'¨$ # . $n V (  3 y  Ñ     ';  8  $ DÿìõÑ *06<7&''6&'3'67#33267#"&57&'''67&'Ÿ!* +"& 7 -€ f +  8 ‰  Ñ     ';  <  % rÿìöÑ +17=7&''6&'3'67#33267#"&57&'7&'''6¯  ( d  N   $   4  S  Ñ    '< = ! ÿéôÏ )-157&''63##"''32655##5##5##535#33533536 66)> Omm• $####6#$Ï#(# i 1111=‚2_ÿéøÏ (,047&''63##"''32655##5##5##535#335335¥!# ""% 1??` #Ï%($ i "2222>2!!!!! ÿéô› )-157&''63##"''32655##5##5##535#33533562 85(= O __Ž $%%%%6%$›  M $$$$-f'TÿéøÏ (,047&''63##"''32655##5##5##535#335335Ÿ#& %$) 4EEi &Ï$'$ i 1111=‚3!!!!!XÿéóÏ (,047&''63##"''32655##5##5##535#335335ž!$ !"% 1AAd %Ï&(%!i 1111=‚3!!!!!9ÿésÏ 7#5'6_  ϰ‚ 2 ÿébÐ73#&'#5'67#535'6R     ! %Ð'qq$!/  ÿéò¥-1597&'#5'63&'#"''3255##5##5##535#335335/8 k BWq   """""5""¥   *M  """",d'eÿéøÏ '+/37&''63##"''2655##5##5##535#335335§ " " $ .BB`  "Ï%'$ i "2222>2!!!!!lÿéóÏ (,047&''63##"''2655##5##5##535#335335§  )<3"""""ÿéŸÐ',17&'3#3#&''67#535#5'6367#335S! D*1   '0 ,/ÐA!A i  zÿéî¾73#"''32765#'667#'6_      ¾¦.-tdEHT!$ \ÿéôÐ"(.47&'#3#&''67#535#5'63'&'3655#335§ "  3/% ', , ,3 2:   3!Ð! A"'%A   bWÿéõÐ"&,27&'#3#&''67#535#5'63'3655#335¥#" !61( ). -.5 4< "!"5$Ð! A!(%AdmÿêóÏ!&,27&'#3#&''67#535#5'63&'3655#335« -) % & '- (0 -Ï  A!%#A  eQÿèøÐ&,287'3#&'#'67#537'6767&''6'6'6È L$ ) $1  . 0/ (> B: -T WÀ     S "*  ÿèŠÐ!'-397'3#'67#5367'6767&'&'''6'67'6j  :B$   # $# / 0- !@ AÀ     J   ! + ÿíõÏ'7773267#"&55'75'75'6Þ ')-/ &)! ,Ï &  )  4 5 (&DÿèøÐ(.4:7&'3#&'#'67#5367'6767&''6'6'6ÃR'  - '5  !3 44 -B H> 0[ ^À       S "* gÿè÷Ð'-397&'3#&'#'67#537'6767&''6'6'6Ï B !)  ' )( #4 91 'G JÀ   !  S "*  ÿê}È"(.4:@73#3#7'75#535#735#&'735'6&'#&''&'''6c)%%'-8-&&('    ÈX 7 77 w yÿðòÈ +73#3#535#5#35#3353353533#3#535#{s" n"@   Y*++3y2*ÈNN=,,,,,Y!! ÿêtÈ#)/5;A73#3#7'675#535#735#&'735'6&'#&''&'''6\&!!#)3$$& #  ÈX 7  77 v lÿìùÏ'159=A73673#'#3267#"&55##5'67#3533&'#35#33535#335x#>" )      (?(²  L   W");@FñÐ#7733#67#5'75#'67#5373#373##5#'66556J$$8/ =D ™ )L 1¤  5AA, #_ñÐ"6733#7#5'675#'67#5373#373##5#'66556J$$'5/ =Eš *M1«    ,22! =ÿéòÏ%:73673#3533#67#5'75#'67#73##5#'66556E(,    5. ¢ "=  +° $''@< $+ .<3 4E:ÿçóÏ%:73673#3533#67#5'675#'67#73##5#'66556#29   10 Í "-Y(  7¬ 94"6 -……>4 7F;Mÿë£Ï$73673#3533#7#5'675#'67#T#'   ( ±%'' ;3 $ÿçô˜$973673#3533#67#5'75#'67#73##5#'66556"5=  #51 Õ #0Y %  8}  &#'^^(' *2+IñÐ#7733#67#5'75#'67#5373#373##5#'66556J$$8/ =E ™ )L 1¤  6::, #ÿïóg)-7&'#3#3673#53'735#535#5'63&'„+:1MM7á8 MM/GKg       dÿïòÈ#'+/733##"''3255#53567#3#53535#35#35#xi88  ==No Ž "!È  hOOO=====nÿðôÈ#'+/733##"''3255#53567#3#53535#35#35#e44  ::Kj †   È  hNNN<<<<<VÿïòÈ#'+/733##"''3255#53567#3#53535#35#35#mr==  DDVx œ$%È  hOOO===== ÿéóÏ*0673673#&'#'67#3#3##"''3255#'67&'Sg@03!= -B8dd,¾U  U#…¶  ")';  8 !VÿéõÏ)/573673#&'#'67#3#3##"''3255#'67&'f/C(") % CC‚7   8bµ "((<  8 !  ÿéó›*0673673#&'#'67#3#3##"''3255#'67&'Rh?.2! < (!>kµ ")(;  8 !  ÿèöÐ 673673#&'#'67#3533##5#3533533##5#'67#L m;+ 4"& : +=/211234L33M0 '2· ,*0)==&EÿéôÏ!773673#&'#'67#3533##5#3533533##5#'67#R1U, &)&%%%%" 8$$9$ ²   '&,- ::$eÿéöÐ%;73673#&'##5#5'67#3533&'#3533533##5#'67#p)C#   !  ,)* ² ! !!  +T!!!!::%^ÿéóÏ$:73673#&'##5#5'67#3533&'#3533533##5#'67#k,B%  #  3+, ²   !!  +R ::%ÿé£Ð7353#5#535#535#733#3#3##"))!!"P%% **§)ç2++;),+1XÿéóÐ7353#5#535#535#33#3##533[&))$$&j$$..(§)ç1,++,1ç)JïÐ733#3#3##'3#5#535#535#53‘JJCCKK8GG<>88??d" ÿèòl73#5#535#535#53733#3#3##^QQHHKK.MMHHRRl„ `ÿéóÐ7353#5#535#535#33#3##533f"((!!"d))$¨(ç1*++*1ç(Lÿèïš735#535#5353#5#733#3#3##L1&&++1Y441177$²*ˆ+ÿéçU)/573#"''3255'675#73#"''3255'675#&'7&'b $,3%Onb $,3%O`vUY Y   ÿéð—73#5#535#535#53733#3#3##ZJJ>>DD6GGAAMM—®.. ÿåóI767&'67'5'6‚   .O)   OI ?%  +Cî¨7353#5#535#535#3#3##533GLLAAGAAKKHšb      e ÿéòÏ733#3#3##5#535#5335#35#mhhUMjjiiIB-Ï_++_'9WÿéòÏ733#3#3##5#535#5335#35#”EE;3DDDD4-TTTTÏ]++]';eÿèòÏ733#3#3##5#535#5335#35#ž>>72====1-QQQQÏ^--^':PÿéòÏ733#3#3##5#535#5335#35#HH=5GGGG5.WWWWÏ^++^&:_ÿéòÏ733#3#3##5#535#5335#35#—AA80????1*NNNNÏ^++^&:oÿéòÏ733#3#3##5#535#5335#35#¡881+8877+&DDDDÏ]++]';ÿéð733#3#3##5#535#5335#35#oaaTMggggMF2………… J  J *zóÏ733#3#3##5#535#5335#35#§440*3333("????Ï R&&R!1R îÎ733#3#3##5#535#5335#35#HH@6DDDD8/\\\\Î L L, ÿéwÏ733#3#3##5#535#5335#35#4//*',,,,&";;;;ÏZ--Z%8TÿçöÏ-73#35#535#53#3267#"&55#'667#56‘&&Z%%&9!    Ï  rJ M..$'j]ÿèöÏ-73#35#535#53#3267#"&55#'667#56–""S###6    Ï !!rK  N.- #'j{ÿçöÏ-73#35#535#53#3267#"&55#'665#56£B/   Ï  rJ M0, #)jiÿçöÏ-73#35#535#53#3267#"&55#'667#56œL 3   Ï  rJ M/- $(jÿêÏ$7#'67#5673#35#535#53#67'Z+&I 4  K?" 1n ""vE =Ä£*73#35#535#53#3267#"&55#'67#56l  K!!1   ,!£ W(  ..!Rÿèòi+73#35#535#53#3267#"&55#'67#56t &;;‰99@S6 "$ C < 0,i    G # AkÿéóÏ #73#5353335#35#35#'67&'³5q)=fKKKKKK  F«€€8978'     ^ÿèóÐ #73#535335#5#35#'67&'«7w,C OOOOO ! !@«††68&&(   HÿéñÏ #73#5353335#35#35#&'''6 AŠ5M‚ccccccI!)! «€€8988(     ÿçîÑ #733#3#5335#35#35#'67&'reeP¬H4„„„„„„!.*e(( ))Ñ……':9*   |ÿéóÏ #73#5353335#35#35#'67&'¼/f%4X@@@@@@ =«€€8978(     X ñÏ #733#3#5335#35#35#'67&'’JJ?„2]]]]]] JÏ rr!..#    ÿçíÆ $(735#53#3#67'7&''275#735#5##5#&QA•APPMd0-Q$mm}=>nDDE%  'k y!!!!ÿî~Ê!%)7&''275#535#53#3#67&''35#5##5#l $/''Q!(( -++3) )DDDD% t z####pÿéóÐ"&*7'673&'73#3#3#3##75#5#35#‡   $  &"""")Y0‚$' """‰""3""3" ÿéóÇ'+73#&'#'67#735#33535#3353'6673#'±$" ('2/$$::O:‰::O:uQÇk "! ?EH&&  UTÿéõÆ'+73#&'#'67#735#33535#3353'6673#d€   $$7#Z$$7#O 6Æj "! >EH(%   ULÿëíÉ'+/3773#3#"''3255#7'7&''75##535#735#33535#335V‹  + $ (<3 4!U 4!É]T  = "[m7;[ÿéîÉ'+/3773#3#"''3255#7&'7''75##535#735#33535#335d6A  .  '",?6##6#Y##6#É^V  ? "]o8:ÿéê˜)-15973#3#"''3255#67'7&''275##535#735#33535#3350¡F_  K 3AG[G44H4|44H4˜O <  (CS /-oÿëðÉ(,04873#3#"''3255#7&'7&''75##535#735#33535#335wp.7  %  !#6./K/É]T  = #[m7;'ãÇ#'+/3873#3#"''3255#''275##535#735#33535#335&'#&¯N\  & .<H[O<G[K77K7‚77K7ÉaS  ; Zm9;Oÿèñ™(,04873#3#"''3255#7&'7&''75##535#735#33535#335_‡:E 3 $,&7J:((;(c((;(™P ?  * DU 0.UìÉ'+/3773#3#"''3255#27'7''75##535#735#33535#335a€6A  .  %.*/C7##6#Y##6#ÉR@  *  BS10ÿë„É'+/3773#3#"''3255#7&'7''75##535#735#33535#335i+1   0++C+É^V  ?   #[m8:zÿëðÇ'+/3773#3#"''3255#7&'7''75##535#735#33535#335€g+4   "  1+*C*Ç^S  <Yk7<ƒÿëïÈ'+/3773#3#"''3255#7&'7''75##535#735#33535#335ˆ_'/     *%&;&È\V  @! $\m7<Šÿçêa7#"''3255##5ê 8aK 6hz ÿýz_ 73#67'75#`',9 ,%_-  2ÿèåÒ (,073533#735#33535#335#"''3255##53#3#[[ÊHH\H¤HH\H  Š!nnnnÁV42-`  Ifx"ÿéâÑ (,073533#735#33535#335#"''3255##535#35#YYÆEEYEžEEYE  †††††ÂU21.b  &y!. ôs73673#&'#'67#^nA* 4J9Nc " ÿéâÈ #7#5##53#3##5##535#35#35#⟈ˆˆˆ™‚‚‚‚‚‚‚ÈSAAS € €"12ÿêˆÈ !7#5##53#3###535#35#35#ˆOBBBBUS@@@@@@ÈWFFW r  //mÿéìÊ #7#5##53#3##5##535#35#35#ìYCCDD[PPPPPPPÊUCCU#€ €"12ÿé‹È #7#5##53#3##5##535#35#35#‹QDDDDWCCCCCCCÈWFFW!€ €"22fÿéíÈ #7#5##53#3##5##535#35#35#íaPPPPcOOOOOOOÈWFFW!€ €"22qÿééÈ #7#5##53#3##5##535#35#35#éTFFFFXDDDDDDDÈWFFW! !33ÿéêœ #7#5##53#3##5##535#35#35#ê«••••¢ˆˆˆˆˆˆˆœD33D  ee % % cÿéöÄ /7#3#3##535#73#535#3&''67&'767#¥/,,,,7AA,,E      /ÄO0Û=+M)L1"     ]ÿéöÄ /7#3#3##535#73#535#3&''67&'767#¢2////:CC..G       1ÄO0Û=+M)L1"      ÿèYÎ73533#67#5'675#'6  Ä009UJ D (Qÿçóš /7#3#3##535#73#535#3&''67&'767#’/..//ÿì~› ,73#3#535#33535#3353353533#7'75#l h .+V)''(/;0)›999= iÿðóÉ +73#3#535#5#35#3353353533#3#535#n&#{$'I##e100:Š<1ÉOO=+++++X!!;ÿïÁr#'+73#3#3#3#535#535#535#33535#335335>‚'#4//9†;//4#'85#r 0    0 /ÿéðÏ$(,04:73533#3#3##"''3255#535#535#35#33535#335&'eiiP66 ——‚Qe'>>P=>>P=w  ¿W%  "W35H ~ÿéòÇ #73#3#537#35#35#35#'67&'ƒn-*`!,:::::: <Ljˆ<==+   NƒÂ 767'533`  #x]  ²8ÿëá 7#5##535#'#5##535#á444$4442222ñ #73#3#537#35#35#35#'67&'ØiV¯E[&‰‰‰‰‰‰* !5 4Y+**)OO   ƒÿçõš #73#3#537#35#35#35#&'''6‡e('Z(666666/  šll///"   ÿ胡!%+1773673267#"&53#735#35#35#'33#'67&'* "0$ - PP,,,,,,-^pB ¡    H3,H   Bw˜ 733#67'B!! ˜%F Bÿé“Å$733'67##"''3255#53&'767#FF     1Å ! ^  Z ÿçñÆ %73#3#5367#35#35#35#'67&'•\% K#))))))  4  Æ ˆˆ =>>.    AÿêšÌ"&73533#3#&'#5'67#535#35#335H         ·H  <;$HL&&&–ÿçóÐ &7#5##5367#'6733'>&'í)#  "   ‰q``q  #8" –ÿçöÏ%+733#5367#'635#35#35#'67&'¹' G& %%%%%% / Ï tt  E23)      ÿèPÏ73&''67&'67#5367#%     Ï,W* #'l!:&[ÿéôÏ!%73533#3#&'#5'67#535#35#335i99941% " )/39 3 ¶E)$BE&,EL!!!ÿé†Ï"&73533#3#&'#5'67#535#35#335200,, %,2,¶F ?G'FM""" ÿézÏ"&73533#3#&'#5'67#535#35#335,**'' "(,'¶F >D!'FM"""KÿéµÏ"&73533#3#&'#5'67#535#35#335Y%$$""   "%!ºE GH#EI###/ÿç•Ï!%73533#3#&'#5'67#535#35#335A!!!  !  ¹MJE#MR+++ÿéóÇ 7#5##537#53#3'>&'ì,#[$ ¡‚pqƒ '@'  !"Kÿé Ï"&73533#3#&'#5'67#535#35#335R    µD  =A"DO$$$?ÿ鯞"&73533#3#&'#5'67#535#35#335L'''""  #'#‹9  )/9;·ÿèë› 73#"''325'3#Ù  "›™  }juÿéõÏ!%73533#3#&'#5'67#535#35#335{0//+  +0*·G(,OR.)GM!!! ÿ胓"&73533#3#&'#5'67#535#35#335/--''  '/'…8  -386‚ÿèó™73'67#'6'65&šE 6 % ,$™ $N#$H0N ñÐ &73533#3##5'67#535#35#335&'UBCC99$#'9B'':&¼CIE$CE: ÿéYÏ"&7#5'67#535#53533#3#&'35#335>   $  ,C>!DD  3$$$Jÿé˜Ï73533#"''3267#'655#_    §((,#u&S3 2G&•ÿêóÏ!%)/5;73#3#3#"''3267&'77#5363535&'''674'¶&7??@    @%%%    ÏL?  ˆ gmÿçô $73#3#5367#35#35#35#'67&'t{44i"3EEEEEE Doo 2.."     ÿêqœ%733'67##"''3255#53&'767#X     &,  @œ L  G  fÿéñ™ $73#3#5367#35#35#35#'67&'g‡:7r'9NNNNNN @™ll-,-!      ÿém—7367&''65''66    +  —. ': $ Wÿ窙 #73#3#537#35#35#35#'67&'WS!J))))))  1  ™gg0,+    iÿûšÃ 733#67'i  Ã=_  ÿèïÈ $73#3#5367#35#35#35#&'''6×gT¡7Z.||||||]+$")6!-*Ȉˆ >==-     jÿèöÈ %73#3#5367#35#35#35#'67&'t|32r+4KKKKKK  F È ˆˆ >==-      ÿèqÏ$73533#3&''665&'767#535# (((# "  C"(­""#+ # ÿéqÍ73##5#'66556e %B  -Í /„„<2 8E: ÿê{Æ 73&'73#67'5#'6553*+iQ  =¤† f,332ÿêqÅ%733'67##"''3255#53&'767#Z    $.  CÅ _  [   ÿé˜Ë+/37GKOS7#5'75#53#'35#35#5##5'75#53#'35#35#5#7#5'75#53#'35#35#5#—]~K888888*?&q*?&~ E?3 & ' f G;/ % &   G;/ % &  ÿé‹Ñ.26:>BMRV[733#3'67#73267#"&55'75#'65533#735#33535#335'635365#25#5#2;,,;*      & RR 0 .8Z  Ñ     J=0 07UH9"  < )‹ÿèòÇ #73#3#537#35#35#35#&'''6Œd('Z'5555552  Ljˆ==>,   ÿé‹Ç (AGMSY73#735#35#&''67#'6727677&'7''67'67777&'&''&'''67&'dd>>>>   I      3)ÇI- ( U   &     %"  ÿê‡Ñ !%+73&'73#3#735#3#735#3#735#35#'6 ,8znnJJ99%dd@@@@W2>CÁ  S6 " 8?& # ŒÿéòÇ #73#3#537#35#35#35#&'''6Œd'&V)222222.   Ljˆ=>>,    ÿê‚Ä%/57367&'#"''3255'67567#3353#5#7&' T       >Pb Ä     ;(¡‰  ÿèy*067676767&'7'#"''3255#'677'6&'''60  "#  B  0  y  '  + %  ?   ÿéƒÏ$(,7'6553&'73'#3#"''3255##535#35#/ )&@@  (((((~8; 2[2  ;*#l  .ƒ#3ÿñ{Æ !.73#&'67&'67&'63#7'75#ff   *    *   Fc)$*4+'Æ   I( +ÿèqD #53#=#,X2[\&&TÿçõÏ"/73533#&''6765#'677&''6`9AA#&,6 %9   L  µ4 O$:>%"ME "-S LÿçõÏ#073533#&''6765#'67&7&''6Y<EF%)/: (<   ]   ´3 P$;> ' LD %*E  ÿéòÏ#073533#&''655#&''67&''6_``NLK i_% ’ °! F$:9%3L!  %/!aÿçõÏ#073533#&''6765#'67&7&''6l4;;#'1 !4   M µ5 N#9<%"NE "-E  XÿèôÏ#073533#&''6765#&''67&''6k5<< #'6 '4  ^  µ: I#7<'!L    #*    D#ö¤#073533#&''655#&''67&''6N@II<:7 J@  n  ˜ $#&      Cÿíò:73533#3#535#Z877M¯O8%ÿéõ’$173533#&''6655#&''67&''6bbc&H C'R ;,b$ ‡  € 8400&     (  ÿèót$073533#67&'&''6767#&''6_aa  . B(J 4_'  f     +& %    ÿçó &373533#&''>5#&''67&''6aaa$H A&R*,a+ ‡  Š =53 )(   %  aÿè÷Ï$173533#&''6765#&''67&''6j5;;) 0 " 4   [ ¶69##7<' M    *    ÿç’Ï"-73533#&''665#&''6'''6122& 1`  D  µE0HP    ' ÿçƒÏ"-73533#&''665#&''6'''6,,, # ,T   =  µG/GQ    ' ! ÿê{Ð#/73533#&''655#&''6'&''6&'' 0&I   :  µA'*>A   +  ÿçyÐ'+7533'67#3''67&'767#'65535#@& #   8°  -+   <0 /9V@- ÿózÅ)73&''67&'767#3533#67'75#]   H*''.8.*Å $      i# ( ÿéŒl(.47&'#"''3255'67'67676767'&'''6q     !  2  K $     "     h…Ï !7&'7'63533#&'#5'67#+TY/00  &Ï   !!   gÿéôÃ73#3#3267#"&55#'667#|hh „%   !Ã2d # g:5,4 ÿéô¿"73#3#32667#"&55#'665#$¸¸ØE  $ ,- (?¿0a  h8/0 ÿèò 73#3#3267#"&55#'675#YY o#0 >2 I   O=5@ÿêòà 73#3#3267#"&55#'667#_yy˜0  & &Ã2c  f8.1ÿéòz 73#3#3267#"&55#'667#,¦¦ÙE " ) ))Cz. 4$   ë¡73533##"''3255#&';  ;  ‚H  B   ÿçœÃ73#3#67'5#'655#jj € %"Ã.`  pD- (<ˆÿéøÂ 73#3#3267#"&55#'665#šPP c   Â3e h=5-6ÿéŠÇ #04875#53#5'675#53#5'6'&'7&'3#5##5335#35#8)< O(;P G  1F'FFFF‘%_ #_ +  <j j&; ÿéò‹ 73#3#3267#"&55#'667#*ªª×E  # ,*(>‹=   C') OñÅ 73#3#33267#"&55#'665#a||—/!  'Å$K  Q/- '' ÿéÃ73#3#67'5#'655#__ v %!Ã,b  qD+ '; uïË73#3#3267#"&55#'67#.¢¢ÓH ( &$*? ?Ë    ÿéõp &*.26:7#3#;267##"&55#535#55#7533535#5#35#5#ÛGMM  ;!HH@@-?55;;86n;;86p$ 9  9 $ ck ;  |óË73#3#3267#"&55#'67#(°°ãX  ) ! F< CË     ÿëõ|"&*.273#3#32767#"&55##535#735#35#33535#335+¡JVV)0*=QDyy ==PB’==PB|( A  L  < % ÿçíÐ#<733533533##5##5##5#53#5##5#"''3255##5##5353:('(('(''³³¾  55IÏ:./28  !RR?QFÿéñÐ#<73533533533##5##5##5##5##5#"''3255##5##5353K¤ƒ˜  $$8° !++0;  &TTCTÿðóÏ'73533#3#535#3#735#3673#53&'eeeS»Ue±±‹‹ 7 =å> »6C7    ÿëÏ(73533#3#535#3#735#'7&'7767 100(d)1ff@@X3?  »6B N   ŠÿòóÅ 7#3#3#535#ðTKKWi99Å.S.Ó/:ÿí¬Ï(73533#3#535#3#735#7677'7&'E&%% R&OO++  1=" ·::0   ÿëÏ'73533#3#535#3#735#7677'7&' 0//'b(0cc== .9½8<6 LÿéëÈ !%7'6553'#3#5##5##535#35#35#x†&&8'sCCCCCCC…C= 4@\C1"ŒŒ%77UÿèïÈ !%7'6553'#3#5##5##535#35#35#$$6$nAAAAAAA†C< 2@`B0#Œ%88_ÿçìÈ !%7'6553'#3#5##5##535#35#35#‡x 2 e6666666†&@9 1=hB1 "ŒŒ%778ÿéçÈ !%7'6553'#3#5##5##535#35#35#i ‘--?,~OOOOOOO†C? 4A\B1 "ŒŒ%77WÿèïÇ !%7'6553'#3#5##5##535#35#35#|…&&9'p@@@@@@@…#E5 7>_B1 "‹‹%77ÿéåÇ "&7'66553'#3#5##5##535#35#35#; ¾??SC©rrrrrrr„"E4 2"_C0#‹ ‹%77 ÿé‘È !%7'6553'#3#5##5##535#35#35#/t0b5555555†)<7 .9kB1 "ŒŒ%77 ÿé‚Ç !%7'6553'#3#5##5##535#35#35#) k,X-------†471 )4uA1!!!"‹‹$89ÿèŽÐ,H73673#53&'&''67'6767767&'7&''67'6767767'2t"       N       Ъ '/-*?,   &/-*?+Cÿé‰Ê7#"''3255#'6555#35‰    &ÊÊ ?3& 7?a<*** ÿéöÏ)-73533#3#32767#"&55#'667#535#35#...& &A M4(.::¶G> C)# !!GM!y ôÆ 7&'''63#"''3267#'667#Í  P   ' Æ- / / %N7>JÿëôÇ "&*.7#'66553#3#3#535#535#735#33535#335ñ~ f)..77--*+C+ÇRC5 0$^!h<Fp ñÆ !%)-7#'6553#3#3#535#535#735#33535#335ïXK %]'  )  ÆD9+ -3OW    469ÿéðÇ "&*.7#'66553#3#3#535#535#735#33535#335ì… "k-22;ˆ;//,,G,ÇSE5 3#_!h<F4ÿéò­#'+73533#3#3##5#535#535#35#33535#335?LMMBBSSWWBBL00D/s00D/žXX249ÿéõÐ/37;7&'#673265#"''67&'#'66553'33#3#735#×  '-       N aV::88Ð 3"3!++)DG;. * R##$E# ÿè÷Ð)/37;7#67327#"''67&'#'66553&537&'3#3#735#ñD     b u$UUJJ$$¯5"'5")*%-4;H<. + T!  EJ& ÿèð™,0487#67327#"''67&'#'6553533&'73#3#735#ï?    " l} £TTNN**ƒ''"'-8.$ %+A "8UÿéöÐ-1597&'#673265#"''67&'#'6553533#3#735#à  !$     >NH0011Ð 03!+)#JH<- 05S##%E# ÿéòš,0487#67327#"''67&'#'6553533&'73#3#735#ì<    j| ¢UUKK''ƒ&*$ #$/:4 *7, !:SñÐ.26:7#673267#"''67&'#'6553&533&'73#3#735#î;      o¡^^RR11½  ###  $   & ÿéåc!',059733#"''255##5#'667'667#35#73535#735OT; =F   %RJ A@S=’CBT=cB     ^ÿéöÐ,0487&'#673265#"''67&'#'6553'33#3#735#â"    ;LF..//Ð /3!+3)$IH<- /6S##%E# ÿê’Ï'-1597#673265#"''67&'#'6553'37&'3#3#735#Ž      3E?''** ¬/7"$"4;H<- /6S### ?C%hÿé÷Ð-1597&'#673267#"''67&'#'6553'33#3#735#å      7ID,,.. Ð .5!)!'.@I:/ .8S##%E#h£Ï73533#3##535#35#h#¥***Sb*k/dÿéó•-1597#673265#"''67&'#'6553'33&'73#3#735#ð'     5F _(('' „&+  +)8/$ &*A  ; ! ÿêóÃ04873327#"'&'#3#7&'7&''275#535'25##5#¸  ¥ #;;*;P)":: F8)(È!&… H#  $H[%%%%lÿéôÃ048733265#"&547#'273#7&'7''75#53#335#lr a%'%  $# ÃE6$$ -$;-<) F#  &F(((WÿéóÇ#'+/37#5##53533#3#3##5#535#535#35#33535#335íj:::66DDGG66:$$5$Y$$5$Ç##)TT32^ÿéóÇ#'+/37#5##53533#3#3##5#535#535#35#33535#335îe67744AAAA336 3!T 3!Ç##)TT32FÿéóÇ#'+/37#5##53533#3#3##5#535#535#35#33535#335ìw@@@;;KKOO;;@((;(c((;(Ç##)TT32‚ôÇ#'+/37#5##53533#3#3##5#535#535#35#33535#335ôN''....''(>(Ç()!  N  N ,- ÿéÆ#'+/37#5##53533#3#3##5#535#535#35#33535#335O)))''))11'')(=(Æ""(SS43|ÿéôÆ#'+/37#5##53533#3#3##5#535#535#35#33535#335ñM)**))2233(())@)Æ"")TT33_ÿéôÏ1E73533#3#3##5#535#535#73#"''3265#'667#373#&''67#`MA     I<@:* *- ,6¾W?-% !'v  %)  "dÿéîÇ"&73#"''3255##53535#335#3#735#Û dAB..AA ÇUo  Yx‰UUC,B>ÿéïŸ#'+/37#5##53533#3#3##5#535#535#35#33535#335í¶IFFPPeeffPPI ==P===P=Ÿ--"  E  E & % _ÿèðÐ&*.373#3#3&''67&''67#5'635#35#67€^gcEO  #   EEEE  Ð M  B / ) A  ÿçó@767&'67'5'6   !" K) ! F@   )   ÿçòM767&'67'5'6†  " O!"  PM   /#  & pÿéñÈ#'+/37#5##53533#3#3##5#535#535#35#33535#335ïY211--7777--2-G-È#%)TT32ÿèñÈ#'+/37#5##53533#3#3##5#535#535#35#33535#335ë°HHHKKhhffKKH77K7‚77K7È6##6,VV20sÿéõ¿73#3267#"&55#'655#m  $!¿©   ¬SE, );S)ïÏ#'+73533#3#3##5#535#535#35#33535#335^^^MMffffNN^#;;O:‰;;O:à  I  I ) ) }ÿéóÄ73#3##5#535#„j.3300)ÄInnIN ñÈ#'+/37#5##53533#3#3##5#535#535#35#33535#335îy...99HHHH::.'':&`'':&È%%$  M  M ++ ÿé–Æ#'+/37#5##53533#3#3##5#535#535#35#33535#335–b4550088==0040M0Æ""(SS33sÿïíÎ!%+173533533#3#3#5#535#35#35#35#'67&'w*`^q%******  / µY6IY56'    lÿçõÉ 073#735#35#3#3#"''3265#'67#'67#'67#~ff@@@@!…PR  4 . %   ÉP0..F+7+"   dÿé¨Ï73#3#7#5'6356—$Ï %0-š{ÿéòÆ#'+/37#5##53533#3#3##5#535#535#35#33535#335ðN*++**2222****@*Æ"")SS33~íÐ/373733#5367#35#3#3#3##5#'735#535#735#‡'o')[%%&&1"55+77Â!  ".  }ÿéôÇ *73#735#35#35#3&'73#&''67#536‹[[666666  +! $ %!#'ÇtS23'   %'   €ÿéòÆ!737#53#33#537#35##5##535#‰!e1+r% 3555š5$$$IWW8'ƒÿéóÏ(,073533#3#3#535#535##"''3255##535#35#‰'++&&0p- '_  66666¾R]  %t 1|ÿèöË573#3#535#535'667#'7#53333#"''67&'ç 8 G*  !)"#  Ë6<<1e(3G#  -†ÿéóÐ$*73533#3#535#3533##"''3255#&'%%%+l.%F   F( ³N<  8  ÿçžÍ"JR73#35#535#53#563327#"&'&'67'5&'67'537537&''5&'= !!M$$0oD            "   Í\Yc8".  . + , r   #  !{ÿìî¾73#3#5##5'67#35#ƒk2C+ $'++¾% y ] +=£LOÿé¦Ï#'+/73533533##3#3##5#535#535#5#5#35#335P  !!##  7 ! »$;((;$OQÿéñÏ#'+/73533533##3#3##5#535#535#5#5#35#335U:&::EEHH::'j:'':(¼%<((<%OnÿéïÏ#'+/73533533##3#3##5#535#535#5#5#35#335o.00668800 W.1»$<((<$O„ÿéô”'+/736533#&''67#3##"''3255#3#735#Š)),  #p   M ::‡   'A > .€ÿéñŒ!%+17=7#3#3#3#"''3267#55#5#5#&''&'''67&'î%(   R+3 '#Œ  8 &a     kÿìì¤+1773#"''3267#'63533#&'#5'67#7'6'&'ŠW  O  $##   I8  ¤xk B..   1:# 5    ÿés¢#'+/73533533##3#3##5#535#535#5#5#35#335 !$$((''%%A! &–  4 ## 4 @ ÿêóÏ#'+/73533533##3#3##5#535#535#5#5#35#3357M772RRjjhhRR/7˜M#>>R>¼&=''=&OpÿèõÏ 7&''6&'3'67#«! ' !d$ NÏ &(' #.2&"'£ÿìõÏ73673267#"&55'7» ÏO c  ]sÿé¯Ï 7#5'6  Ï!¥{ /oÿèõÆ#7#533&''67&''6667#'7#Œ W #    ; &´2C%"?+ F,(3/AkÿéõÏ73533#3#&'#5'67#535#x133/%  ""+1©&&'44ba-$$1'wÿñîÇ 73#53535#35#35#á w 666666ÇÃÃA.o.o.a©Î7''67'6767677&'   J -#94  @% tÿéöÐ73#&'#5'67#535'6à *4,'  +44Ð (/0'%ls2 )4$bÿí¢Æ73#3#"''327#735#h:&(  )%&ÆK(F AM%žÿêóË7''6767&'Þ _2< Uo vC% gÿéõÏ"73#&''67#5353533655#335å 2 +(+ 0 2 +**§N000!+N((N--<{ÿéòÁ%73#3#"''3255#&''67##537#{w00   16Á"‹  t  1’¤" ÿèó~#'+/73533533##3#3##5#535#535#5#5#35#335,[,,9NNkkiiNN7,š[::L:v )  )  3 ™óÏ73533#&''655#""   "˜77)($5¢ÿôõÐ 73&'73#3#536'&'¦ K6 S&  £ H4=@4581_ÿì Ð73533#7#"''3255'675#b   ¤,,( Q  B 3pÿçõÏ048<@DHN735333##3#3#&''67&'7#5367#535#5#5;5#33535#33535#33567#|-- -/@L  (   1- -G-K1$ $Ä  .   .  ' D P  qÿïõÉ #'+/373#3#735#33535#3353#3#735#33535#3353#xzzmm-I-ayyoo.K.j„„É @& $ $ @' $ %ZÿçõÎ3Nhn73533&533&'73#67327#"''67&'#'67#7''67'6727677&'&''67'672777'&'i   2   #   F     H)]Z,   "   )N -%P cÿèôÊ 'DJPV\73#735#35#''67'6767677&'7676767&'7''67'67&''&'''67&'trrLLLL   2      : 0ÊO/-X    ! "    K  ‚ÿéëÉ 73#735##"''3255##535#35#†aa;;R  CCCCCÉ>>x  1&;~ÿèìÑ"(733#"''3255##5335#35#'&'7'6¬,   D*DDDD  [  Ñ=’  !@¬.Jt  uÿèôÐ8<@DHLP73533533#3#3#33##"''3255##5#53535#535#535#35#35#35#33535#35#{ 5-  E ,3-+E+ÀF  %%F-O6 ÿésÏ#'+/73533533##3#3##5#535#535#5#5#35#335 ##''++$$B $»$;((;$OÿóðÊ#733533#3#3#3#535#535#535#53\!BB</**=)f**=)ÏWWb5Iÿë Î%)-1573#3#3#7'75#535#535#535'235#33535#335’ ""R#""" - ÎS S ^5_êË$(,0473#3#3#3#535#535#535#535'235#33535#335Ø2;;0033<‹=330088-7$1P1Ë  J    J  T* ÿéñÎ73533#3267#"&55#'67#* .6B: ž00ˆ  Žv-)l ÿêŠÎ%)-1573#3#3#7'75#535#535#535'235#33535#335z 44,,--*s7//--55+4,E,ÎV V ^2LÿíôÏ&*.2673#3#3#3#535#535#535#535'235#33535#335Û  JJ<<@@J¨K??<.))<)e))<)ÏXXb4 ÿéîÌ%)-173#3#3#5##5'67#537#537'635#35#35#Þ.5`iŽˆt "3C3=Bf3ttttttÌ k 00 ÿéòÈ %73#735#35#35#'33##5#'67&'G™™ppppppBÁd]; 4 -o($ &&ÈqP--FyII  cÿòôÂ73#3#3#535335#p€2++6‘;ÂLL}}ªiÿêðÁ73#3#"''3267#5335#365#i‡>: j"7I&'Á*s(%bQnnX£Ð7''67'67676767&'•   M -#:6 @& uÿééà 7#5##535#35#35#éNNNNNNNÃÚÚ;)d)e*`ÿìõÏ&73#5#3267#"&55#5335#53533#3Ë  # -88CCˆ_3 9P?S ScÿêóÊ73##5#'66556é ,;g!4  EÊ .<3 5E9]ÿêóÏ#73&'7&'#3#"''3265#7#5'6‰ U 6 = B Ï'!+5 !G-3 $ ÿèñÎ &*.273#3#5##5367#'665566535#35#35#ß #)VWIq;O  t',%qqqqqqÎ  Œ Œ  J:7G=' P77 ÿéïÏ "&*73#''67&'3#5##5'635#35#35#v3– $0e k0ÏB: " ƒ p233fÿçõÄ73#3#67&'7&''67#vrrŒB%- 45 4Ä:F (/ ):mÿéìÏ7#5##5##535335#33535#335ì!"66""6!W""6!£†EE†,,1O ÿîóL#733533#3#3#3#535#535#535#53bHH@@FFVæUHH@@IILNN       ÿìôÏ26<@73533533#3#&'#327267##"&55'67#535#35#3&'#353=33B@% v+ @& '@A3G==b 9 b¸ . IG ?ÿìóÏ26<@73533533#3#&'#3267#"'"&55'67#535#35#3&'#35Q")"",* V.  7$  &-"6))P . C· 2  K G 3ÿñÎ15;?73533533#3#&'##3267#"&55'67#535#35#3&'##3>#'  I"+(  %&0## <&099t      & + 6ÿé¯Ï!%7#5'67#535#53533#3#&'35#335€ %))))&! 6$4KI"$FF5"""Dÿé±Ï"&73533#3#&'#5'67#535#35#335R&%%!!  !&"¹EGG!(EK$$$ ÿé Ï &73533#3##5'67#535#35#335&':6622 $(0:1 ¹EcL#'EI!!!>Bÿé¨Å 73#735#35#35#'67&'NPP****** <  Å¢rNN6 ÿéÆ 73#735#35#35#'67&'jjBBBBBBE Æ£rNN5  Lÿë³Å 73#735#35#35#&'''6XMM''''''* Å¡qMN6 [ÿé­Å 73#735#35#35#'67&'dDD 0  Å¢rNN6 ÿèëÐ&*.373#3#3&''67&''67#5'635#35#67F‹” Ž`j /:(&6 /#(! "ppppÐL    A + ) @ LÿèôÐ(,0573#3#3&'5'67&''67#5'635#35#67xit sOZ  )"   PPPP  Ð L I  / ) ? \ÿèöÐ(,0573#3#3&''67&''67#5'635#35#67ƒ_ghGR  $  GGGG  Ð L    E  .* ? fÿèôÐ(,0573#3#3&''67&''67#5'635#35#67„[ccBN  "   BBBB  ÐL   E0 * @ Sÿçô§%)-273#3&''67&''67#5'67335#35#67#{jF T ' )    flKKKK&D… A     : ( # E iÿèôÐ'+/473#3#3&''67&''67#5'635#35#67ŠW_]BM  !   ????  Ð  L   @/ * @ nÿêòÊ '73#735#73#735#3#3#3#"''3265#7#x44+55Jhh„PL  S ÊB B ?4 %nÿéóÐ+/3736733#5367#35#3#3#3##5#'7#535#735#35{5€'+&.o'**445 ;4GG&¾  " (4BcÿèóÍ!%)-73#3#5##537#'66556735#35#35#ç +/0(9#, G999999ÍŒŒJ: 9H<*K99pÿéñÆ"&73#"''3255##53535#335#3#735#à  ];>))==ÆTr  ]x‰TTC,D=vÿéòÏ!/3773673267#"&5'67'5333#5##53635#35#³    + $ 9EEEEEÏ!   "$ b 0 o o 5BfÿíîÏ73533#67'7&''75#75##5#n222  2;:2d  ¢--`6" 9<<<<tÿêòÊ '73#735#73#735#3#3#3#"''3265#7#|22)33Iee ~MI  Q ÊB B ?4 %mÿêôÅ48<73&''67&'#367&'3533#7'7&''275#735#335xm     ,/.. .<//Å"     X7  rÿèóÐ%)-273#3#3&''67&''67#5'635#35#67’OW V=G      <<<<  Ð L    > . * @ aÿèòÑ4<@DHLPT73#33##3#"''3255##5##535#535#'6553&'5#35#5353535#33535#335¹0.& &*  )%%.9 ..%7<)A)Ñ   T  !i  D2 4=]( '   D )  ÿèôÐ!57&'#'67#53673#&'&'3533#3##5#535#y  2+: 1=Ž  1?, 3|  #+..ZZXX+ÐJ/!w g//RÿéõÏ!57&'#'67#53673#&'&'3533#3##5#535#¤  !# X  & #U  8877ÏI+t k..`ÿèôÎ373673#3#3#535#535#53&'3533#&''67#• :11==119!:?5&) 9 77Î   Œ #  (!LÿèîÎ473673#3#3#535#535#53&'36533#&''67#ƒ  !@66CšC66?' @F;)/ B ==Î   Œ $ *$nÿèóÎ373673#3#3#535#535#53&'36533#&''67#3++6~5++227/!% 0 10Î   Œ #  &!eÿèôÎ473673#3#3#535#535#53&'36533#&''67#–  8//;ˆ://7!8<6&' 7 56Î   Œ #  % ÿéóÐ!%)7&'73#3#5##5367#53635#35#35#X e GnV;bˆ aÐ   ˜˜d>>OíÏ#73673#3#537#53&'35#35#35#x " )H?-A&\\\\\\Ï   {{ W66vÿéóÏ $(7&'73#3#5##5367#53635#35#35#”  E &6/A"2B /AAAAAAÏ — ™ c?@†ìÐ#73&'73673#3#537#35#35#35#† )$V)000000²  {{587Zÿèï.4873673#3#5##535#53&'5#35#"&55#'65#333535#‡$ !0(b*1%8(b  Lbbbœ  x x 5>  K ÿë\%7#"''32654''67&'''67&'76K         *.     KóÑ*0473'73673#3#5347#5#35#"&55#'67#333535#>  6 ?Q?Â<M‚%;, ) "q&»  TT .   4  ÿçõG!:>B73533#27&'7&''275#735#33573533#67&'7''275#735#335)(( '2)'*++  (3**; - , PìÐ*0473673#3#535#53&'5#35#"&55#'67#333535#-6,ˆ(2&9&b IbbbÐ   zz 6E  VÿéñÑ/7;73673#3#5##535#53&'5#35#"&55#'67#3327535#Y 1  BRA™=MBF<™ ' )l ™™™Ñ  ¢¢ @X !($l‹öÌ?73#672'#"''32655'67&'5'67&''67#53&'736Ô*         # Ì           bSôÐ?73673#67&'#"''32655'67&#'67&''67#53&'ˆ  $=  (* # #"#6Ð        P îÐ<73673#67&'#"''3265'67&''67&''67#53&'€   .H  , 0#$ ) !;/ Ï       ƒôÌ?73#672'#"''32654''67&''67&''67#53&'736Ð-   (   !  &  Ì   (         a5ôÏ?73673#67&'#"''3265'674''67&''67#53&'‹  &?      %* &4%Ï   " (      0_È7#"''3254'7##5_  $È+  ,‡˜ ÿèbÍ73&'73#3#"''32765#'665##)&  ­ %g! BO,>PL^Ç7#"''3254'7##5^   !Ç  "k{ ÿékÆ73#7#5'675#35#35#75# ^   Æ€93 R Y!DèÏ73#3#3##5#'6G—zeejj $Ïa #ÿéÅI73#"''3267#'67#7Ž  9 D? +ID'7( ÿé™Ï&,73533#3#"''3255##5'675##535#&'9993   *39[ ¹; %“N*#?Rp ÿé˜Ï+073533#3#3#"''3255##5##535#53'65#)00::4    2= *ÊG  0^^J] " ÿ雯 &7'6553'35#"''3255##5##53536uaM &ƒ>9 .%O  <; 3 B 8!7 'GÿéïÑ *73&'73#3#735##5##53##"''3255#M@Dš ……__ƒ‚t. 4½  3.1/#+  (gÿêòÐ *73#53&'3#735##5##53##"''3255#±9ˆ8%jjDDgeY   (Ð *3/1 /$*  'KÿéðÑ *73&'73#3#735##5##53##"''3255#R=B• [[€m&   3½  3/1 /#*  ' ÿéeÆ73#7#5'675#35#35#75# X   Æ93 R Y!ÿêða7#5'75#53#'35#35#5#î'' Í zffffffIC7 ) ' mÿéôÏ'-733#3#535#5335#35##5##5'66&'§++:‡:,,-(@( Ï22#UG7;K'%ÿèí§ *73#53&'3#735##5##53##"''3255#ƒ[Ñ`8““mm£´!—>  F§ (* %,, kÿêòÐ )73#53'3#735##5##53##"''3255#³8„5$ff@@b^S   %Ð  *3.2!0%)  &VÿéóÏ 173#53&'3#735##5##53267#"&55#'665¤<Š9#mmGGljm   % Ï ,0,01"9  ,#&EÿéóÏ 173#53&'3#735##5##53267#"&55#'665A”=%ttNNuts   ( Ï +0,0 1"9  ,"& ÿéôÒ &*.73#53&'3##"''3255#53&'7363#735#€_Ô^G B(   ¬<  7}hh@@Ò  *  e  a>AÿéïÐ .4:73#53&'3#3##"''3255#535#53&'736'67&'„VÉ\B 8b[[   [[e8  > V & !y%$Ð  * 5 2 \ UÿêòÏ .4:73#53&'3#3##"''3255#535#53&'736'67&'¬4ƒ8) (;66   99=$  < ]Ï  +5  1\  4ìÑ 673#53&'3673#5#3#"''3255##5##535##53&'„SÆ[ 5=OG   55HR<Ñ -#  //*;-aÿéïÑ 473&'73##5##53&'7367533##'2655##5##5f4 :„‰h#   +2 ¹  #((  2: &XX?PRÿéóÑ !%)73&'73#3673#53&'#5##535#35#X>A–! &  '¡( vTTTTT¹    An n(>OÿéžÑ #'73&'73#3673#53&'##55#35RJOA32!!¹   Ca m(Vÿéò’!%)73#3#53&'#53&'367##5##535#35#©<+œ(>#9SQQQQQ’  4 (UU .ÿé{Ñ #'73&'73#3673#53&'##55#35(*g mUFG33¹   Ca m(Iÿéó¦!%)73&'73#3#53&'#367##5##535#35#S>B.ª+6'?X[[[[[      .[ [!/ÿèä’!%)73#3#53&'#53&'67##5##535#35#ƒ>8Ê3 ?'Jc_____’   6 S S ' ÿéë¥!%)73#3#53&'#53&'367##5##535#35#ƒT!7×6 \? Yxzzzzz¥    : ,^^#4 ÿéóÑ !%)73#53&'3673#53&'#5##535#35#€ZÊY 7  Bæ@‘{{{{{Ñ %   Av v,Dÿé€Ñ !%)73&'73#3673#53&'#5##535#35#),j rX77777¹   Bn n(>zÿêîÎ"73#"''3267'6765#'6&'šJ  $+2"?   Î ˆ!.( #ƒÿèðÄ73#"''3267#'67##5##535#…k  &" f;;;ÄH0=1`j jK9 ÿélÑ  $(73&'73#3673#53&'#5##535#35#""Y _L+++++¹   Cm m'>ÿéxÑ !%)73&'73#3673#53&'#5##535#35#&(c jR33333¹   Cm m'>uÿìôÑ %73#53635#35#3#3#3#535#535#¨ 'j"CCCCu0**47**1Ñ]]-97yÿèõÈ #73#735#3#735#35#35#'67&'Š\\66hhBBBBBB  ?È41qP//%    oÿéóÏ*.373533533##5##5#3#&''67#53535335#335r$$s/ % % ) ) 4 +++¸);!#%;;)#)‰ÿéóÑ !%)73&'73#3673#53&'#5##535#35#Œ'(c jR11111¹   Cm m'>ÿéñm!%)73#3#53&'#53&'365##53#5'35#5#S$?á?L ;J¢~~~~~m 'X??!  XïÒ<R7#''53&'73535&'#6''67'67'6767676767#"''3254'7##5£ '''&7     ¦ Ã7  N  $2    .  Xg qÿïòÒ !%)73#53&'3#735#3#735#3#735#35#3#¸38+qqKK==&hhCCCCÒ%T8 " :?& # $pÿéõÏ159=OT73533533##5##5#'673&'73#3#3#3#7#35#5##53&''67&67#t## *,((''+n1 p   & 9 Á ?    Q   )     aÿéõÏ048<NS73533533##5##5#'673'73#3#3#3#7#35#5##53&''67&67#g##""##  "14--,,6}5$$$$$z  !& !% 7 Á 9     R   +     ÿégÐ!'-7#3#"''32767#53673#"''326'&''6M)C   A  ¥YL&{ F %  g   ÿé€Ç(9>DHL767#533'67###'3255#'67#53&'#"''3255##5&'''63#735#/ Kc$  &3Z    KG    33µ       Fd  Pkz  , ~ÿéóÑ !%)73&'73#3673#53&'#5##535#35#‚,,m uZ88888¹   Bm m'>~ÿèöÏ+1773533#3'67#535#&'36533#'67#7&'&'$%%- X,$ 4+0. #.  N ·  1   6*('=   <yÿïòÎ!%+173533533#3#3#5#535#35#35#35#'67&'€*^]o $******   ) µY6IY56)   qÿèõÐ!>DJQ767&'7''667&'7''6'67'7#&''674''6'6'67'6¡  %)2    7    2" #%6 0.*) @Ð         1   JÿèôÏ*0573533533##5##5#3#&''67#5353533655#335Q#6##6#?+3< 3D66#$6(·$;)7+ ;;##)Uÿè÷Ï*.273533533##5##5#3#&''67#53535335#335b00ƒB!% !%2 5;111!¸#<$'" <<)))`ÿèõÏ*.373533533##5##5#3#&''67#53535335#335d00€;% '. - 9 222¸#<#(& <<)$)kÿèõÏ*.273533533##5##5#'67#53535333#&'35#335m))F + ' 6 +0 0 #<+·y)!<<%E+++ ÿêók+1773533533##5##5#3#&'#'67#5353533655#335 ;I::I;Æ!Z?IQ@ZFE13E? 94* "B ;2/E JÏ 7.# #,@ G'   PÿèòÏ%+173#3#'6553&'#53&'367#'6'6'6§?!y"=":; 5 0) ? 8/ +B EÏ 7.# #,@ G'    ÿèñÐ/5;73#&''67&'767#53'#'67#'6655'6'6ˆ_+!;&2 ‘[~21F D'} « 4R VB 7h lÐ      W   2(! :+(  ÿé„Ð %+1773#53&'67''67&'#'655'6'6'6J+m,    bV O  & .)! 80Ð %   !0- #.2     ~ÿèõÏ%+173#3#'6553&'#53&'367#'6'6'6½, X   *() &" .(! / 1Ï 8-$ %*A G)   VÿèóÏ /7&''63#3#735#36533533##5#'67#£' &"% ,CCuuNN#$(&&*)"Ï   5< 33/]ÿèôÏ /7&''63#3#735#36533533##5#'67#¨ !" ""# )??rrLL""&$$((!Ï   5< 44/ ÿçóÑ37&'#5'63&'3#735#36533533##5#'67#€08 ` OME››ss;C<??? 5)>Ñ    46B //+EÿèóÏ /7&''63#3#735#36533533##5#'67#™&) )(* 0JJZZ%)/++1-$'Ï   5< 33/kÿèôÏ 07&''63#3#735#36533533##5#'67#¯  %88eeAA !$Ï   5<33/tÿèôÏ 07&''63#3#735#36533533##5#'67#±  #11aa==#Ï    5<33.FÿéóÐ '-3733##5#5333##5##5#53533#5##53'67&'–::;;$%%7%%7&[6V L!#"Ð*O=?QQ  PÿéóÐ '-3733##5#5333##5##5#53533#5##53'67&'œ4444&55R3S J Ð*O=>P P  kÿéòÏ '/573533##5#3533533##5##5##5##53'66&'|,,,,**o>+"!  ¼!N>?O)) "  ÿéóÏ#+3973533#325#"&'#7&'3#3##5##53'66&'Œ:9 )¼  ›iillmG-",(¬#K,0XY4 7  G68I)%  [ÿéóÐ!%-5;73&533#3265#"'&'#7&'3#3##5##53'66&'_R** R}d??CCF' «%H2 ,*m0  6  F66F&"   RÿèòÎ,73#35#535#53#5##5673#35#535'2ß !GG,!!!4k +EED΂*… |  (‚ZÿèóÎ,73#35#535#53#5##5673#35#535'2à  DD*2f)BB@΂*… |  (‚cÿèóË+73#35#535#53##5#5673#35#535'2à BB&0:9&<<2<Ëed//_ eÿé…Î*73#35#535#53##5673#35#535'2u 22&] 112Î(z |  ' ÿéóÏ+735'673#35#535#53#5##5673#35# hL VV %*jjB444I–% 33@h• }# „ }  $}rÿèòÎ,73#35#535#53#5##5673#35#535'2á 77 *T !665΂)… |  (‚kÿèòÎ,73#35#535#53#5##5673#35#535'2á ::"+X #::9΂)… |  )‚ ÿéóÏ-3;?73533#3&533#67327#"''67&'#535#7&'#5##535#/..BA@   $ 8/´  ::::²"*,  '#5'"*$ \X g=+GÿêôÏ/5;?73533#3&'33#673267#"''67&'#535#7&'##535#Q,0/     i(†  (8$$²!*+ # $!%," ZNa=,\ÿéòÐ,28<73533#3'33#673265#"''67&'#535#7&'##535#`&&&  Z x  &,²M+".$"3%&# YM`<+bÿæòÎ'-733#3#535#5335#35##5##5'66&'¢11=@112/K1"""Î55%SK;?O('WÿéðÏ'-733#3#535#5335#35##5##5'66&'š22C™C112/K.!"!Ï22#VF6:J&&OÿçòÏ'-733#3#535#5335#35##5##5'66&'—55H£H44"""5""1Q2#%"Ï22"UF6:J'&ÿéò›'-733#3#535#5335#35##5##5'66&'wOOhäiOO<<9WÿéíÇ #73#3#735##5##535#33535#35#W–– YYvk,,?,k,,?,,Ç;:o o*?!ÿéॠ#73#3#735##5##535#33535#35#2””ll•—BBUB—BBUBB¥ 0._ _"1ÿé’Ç #73#3#735##5##535#33535#35#~~nnHHcY##6#Y##6##Ç9:o o)? ÿéàš #73#3#735##5##535#33535#35#0ŸŸ••ll–˜CCUC˜CCUCCš -+Z Z /qÿéîÇ #73#3#735##5##535#33535#35#q||llFFbW""4#W""4##Ç9:o o*?aÿêëÇ #73#3#735##5##535#33535#35#aŠŠ vvPPmb((:(b((:((Ç9:n n*?ÿêí™ #73#3#735##5##535#33535#35#ÛÛ¢¢||ž™CCVC™CCVCC™ ,)Y Z -TæÉ 73#3#735#3#735#33535#335T’’ zzSS++>+i++>+É 0-V36ÿéyÇ #73#3#735##5##535#33535#35#ffYY33MA*A*Ç9:o o)?FÿéñÊ (73#735#35#5#53#3#33#"&''6httNNNN C’ÏvY!!#.<€ÿïõÐ 73#7&'''6'66±-2 KE %*Њj"++#4 + F) ÿéôÊ (73#735#35#3#3#33#"&''675#1žžxxxx3ÞdWW,">A+fÊ[674".  E ÿèô~ '73#735#35#3#3#33#"&''675#1¢¢zzzz1ÛdWW,"B> 'c~?& " #     $qöÈ '73#735#35#3#3#33#"&''675#‰]]7777w3,, #%   1ÈN/,+  %6yÿêõÉ (73#735#35#5#53#3#33#"&''6‹\\7777 .n-$$ # É[6:OB"{ñÉ #73#3#537#35#35#35#'67&'q1,` ,<<<<<< C Éxx744'    mÿëóÉ (73#735#35#5#53#3#33#"&''6aa9999 2t.%% #%  É[6:NB ! ÿé†É 073#735#35#3#3#"''3265#'67#'67#'67#\\6666!xHL  -) "   ÉP0..F+6*!  ÿéiÏ7#5##5##535335#33535#335i!""3"¢u QQv--+GEÿçðÉ 273#735#35#3#3#"''32765#'67#'67#'67#^zzUUUU&¦gf   4 ;/ '  )ÉP0..E '. +" H7óÉ /73#735#35#3#3#"''3265#'67#'67#'67#^{{VVVV'ªli   $ ) #   )É7!)     Eÿêñž 073#735#35#3#3#"''3265#'67#'67#'67#^[[[[$¥or   & !/ ( "ž?' " $8(" J+ôÉ /73#735#35#3#3#"''3265#'67#'67#'67#`WWWW$¤dh   ( ", $ )É<%  !*     Jÿçð‘ 073#735#35#3#3#"''3265#'67#'67#'67#bzzTTTT'¢eh  A 9- & &‘?&  #2 %    ÿìL¢ 7&'&''6*  ( ¢  "  $ &$ #\ÿåô› /73#735#35#3#3#"''3265#'67#'67#'67#vmmIIII#]\  . (' ! ›A' # $ 8*    N íÉ 073#735#35#3#3#"''3265#'67#'67#'67#duuOOOO)Ÿ`a   < 4* " *ÉC) $ &; ,"  ’ÿéõÈ .73#735#35#3#3#"''3267'67#'67#'67#£HH$$$$_66   & )     ÈO//.G"( )   _ÿè–È7##'32654'7##5–  È? @ÑàƒÿêõÈ /73#735#35#3#3#"''3265#'67#'67#'67#–RR....!nAE  * &    ÈO//.G-6*" ÿèñm#)/5;73#3#3#"''3267#5363535'67&''&'7&'Vp‘±±§   ¦"ž j`  m1  U6      HÿìóÄ *0673#735#33535#335&'33267#"&57&'''6^$$7#Z$$7#%    ^  kÄpAL6 : 9  # ^§Ï73533#3##535#35#^+¥***Sb*k/pÿéëÊ $(,73#735#33535#335#"''3255##535#35#p{{""4!U""4!  KKKKKÊU230g  (~$4*6׎ 73#735#33535#335*­­::M:‡::M:ŽX46 SÿìöÄ )/573#735#33535#335&'33267#"&57&'''6g||!!4"V!!4"%    Y  f  ÄpAL7 : 9 !  ÿêõÅ .473#735#33535#335&'&''33267#"&5''6Šaa(=(  -  4 ÅrA P 9 ;    ># qÿìòÄ )/573#735#33535#335&'33267#"&57&'''6~ff)@)    H  O  ÄpAL7:  9 " +/Ñ‚ 73#735#33535#335+¦¦99K9„99K9‚S11 ÿìŽÄ )/573#735#33535#335&'33267#"&57&'''6ee(@(     J R  ÄpAL7;  : !  ‰öÆ (.473#735#33535#335&'33267#"&57&'''6•VV"5"   ?   FÆ]6?,  4  5aÿë§Í73#&'#5'67#535'6      Í) a[#+$QÿèèÉ $(,73#735#33535#335#"''3255##535#35#Q——00A0q00A0   bbbbbÉT231g  )#4kÿèíÉ $(,73#735#33535#335#"''3255##535#35#k‚‚%%7%\%%7% OOOOOÉT231g  )#4ÿèàÈ $(,73#735#33535#335#"''3255##535#35#ÂÂCCWCšCCWC   „„„„„ÈV320e  '}"1 mÿëöÆ!%)-159=73#3#3267#"&55##535#735#33535#33535#33535#335qr/77  #51 2P 2S##5%Z##5%ÆOQ  `/1Q3 nÿëöÇ $(,048<73#3#3267#"&55##535#735#33535#33535#33535#335tm.55 ( !3-/L/P!!3#V!!3#ÇPR   _0/P2 ÿç÷j#'+/37;?73#3#336767#"&55##535#735#33535#33535#33535#335'±OVV 8,CUN;;O<‹;;O<“CCWB™CCWBj2 2  8 1ìÔ 7#5##53&'7'67&'ê¯a' #3 8J-,-.Å     HÿéõÈ )73#735#35#35#3&'73#&''67#536`~~VVVVVV!# A3 7; 2:@ÈuR22'  )+  dÿéõÈ '73#735#35#35#3'73#&''67#53rppHHHHHH  7+ / / & 27ÈuR22'  &(  ÿêŽÈ *73#735#35#35#'67#53673&'73#&iiCCCCCC( $ ,14 ÈvS12^"     9ÿêÅs#)73#3#&''67#537#735#35#35#&'#Gn > #  -7-KKKKKKHsL   5   AÿôÁŸ!%)73#3'73#&''67#5367#735#35#35#Ob( 6   )1'@@@@@@Ÿ^    B & &  ÿêyÇ )73#735#35#35#'67#53673'73#&YY333333 # #' . ÇtR34]#     lÿèòÇ 673#3##'3255##5##5##5367#3653#&''67#p€77 +53<6) '% % /Ç ? +8888BS z  ! &(  $[ÿèõÈ 573#3##'2655##5##5##5367#3653#&''67#e=<  /;8A:+ -. -2È > )7777AS y  ! &)  "IÿéóÈ473#3##'2655##5##5##537#3673#&''67#RšCC  4B?IA2 4& 29È> )7777ASy   ( "Pÿè÷È"773#3#"''3255##5##5##5367#3653#&''67#X™AB 3D7H=,29 42È @ +8888BT x  " .1  'TÿéñÈ&*.473#3#"''3265#&''67#'67#735#35#33#mtNg + & NNNNI\ÈVT>    41a ÿêòÅ#73#3#5##537#35#35#35#35#35# åo jžH b#%%y%%A......Ū ª©xxxIJlÿéòÅ#73#3#5##537#35#35#35#35#35#l†:=W,8F#Ŭ¬©yyyKKUÿéïÅ#73#3#5##537#35#35#35#35#35#UšC Ff2 CQ)Ŭ¬¨xxxJJ[ÿéöÏ ">7#5##53&'73'67#&''67#3267#"&553#"''325ïc=A$< 1   g   ;  µ$%  ) j)S  "e  zE  fÿéöÐ !=73#5##53&'3'67#&''67#3267#"&553#"''325®6\6#8 . a 7 Ð $% > k(!Q  !e  zE  GÿéòÅ#73#3#5##537#35#35#35#35#35#G«MMt;JY,Å­­¨xxxJJhÿéòÅ#73#3#5##537#35#35#35#35#35#hŠ<?[.:H$Ŭ¬¨xxxJKKóÇ 73#3#537#35#335335#3#3åj dÅL f %%77$67777Ç `` Z> >>   ÿê‚Å#73#3#5##537#35#35#35#35#35# u25F$/ : Ū ªªyyyKK ÿè„Ð,273533#3#3#3''67&''67#535#535#67#+..&&+:;"   "1''+ ,»"   s  ÿéyÐ#0HN73533#&'#5'675#&''6'&''63&''67&''667#+((  +J   6  -     !½.   ,     3     sÿîóÏCGKO_7335#535#535#53533#3#3#35335#535#535#53533#3#3#353#3#3#735#3673#53&'{     pvvff@@!€ÇQ   YY Ra  ." ~ÿéðÑ J73&'73#&''67&'763353#3#"''3255#67'7''67##537#€--pF    <A*5  ' )'½     11B I  3   Qb ÿçóÏ&2JP73533#&'#5'675#&''67&''63&''67&''667#bee0: 2.#= A(b+    “  AC  "$70 76? ¿(!  #(    !   1   !   ZêÔ"&<I7#3#'6553&'75##5#35#3353353673267#"&5'67'533êH;°U *+++;*+;  % D!(=È # -       %  ÿæ€_!%2?7#3#'6553&'75##5#35#33533567'533#67'533€"W +   ?   S #,   -   '   ' {ÿæö_"&;G7#3#'6553&'75##5#35#3353353673267#"&5'7'533ð!W  ,       S #,        ' ƒÿéòÏ!73533#3#67&'7&''67#535#Š%%%08 $(!*%£,,,6 #)  4,hÿéóÏ!73533#3#67&'7&''67#535#t000;H#&  05.<0¤+++6  %* 4+ ÿóxÏ73533#3##535#35# ,++"G%,33¢---To-m.YÿéöÎ+1597373#3#3#&'#5##5'67#537#537#3&'#35#35#f5>A>CV  = )"(1E+====»  U WX 0:FÿéôÎ.48<73673#3#3#&'#5##5'67#5367#5367#3&'#35#35#S:CFDKd$ H +%,6 P6HHHH»    X W  X .: ÿéñ¤.48<73673#3#3#&'#5##5'67#5367#5367#3&'35#35#Sejhqˆ+ o *=7@M>mdoooo˜  H I 8,.iÿéöÎ*04873673#3#3#&'#5##5'67#537#537#3&'#35#35#t/365:M  4  %#,<$4444»  U TX 0: ÿçõ=26:@73533#''275#735#335&'#73533#''275#735#335&'#2)( (2)' 5*+ (3** 6+   ' 6 *   &  BõÐ(-157373#3#3#&'#5'67#537#5367#3'#35#35#Udjbiƒ*  /A3;N8hMjjjjÅ   /(  :  eÿéöÎ*0487373#3#3#&'#5##5'67#537#537#3&'#35#35#p1698=P  7  &#->&7777» V TX 0: ÿèói,26:7373#3#3#&'#5##5'67#537#5367#3&'35#35#Vbgdk€.!e /C;DPD]\eeeeb    .,  ) ÿéxÏ"(,27#5'67#535#53533#3#&'35#&'735'6L (,,,,)) 5 %  &=I('PP52  22  ÿé€Ð "*.7&''63#'6553&'35#3#5##535#K   $! J(777"""Ð  K.$ %,B %  C D'[ÿé÷Ï%)-73533533##3#&'#5'67#535#5#35#5#e;&?0 $ $/<');;;;·K")EC%"K:aÿæõÏ%)-73533533##3#&'#5'67#535#5#35#5#g9%=. ! -:''9999·K#)HD%#K:NÿæôÏ%)-73533533##3#&'#5'67#535#5#35#5#Y?(C4 $( &3B*+????·K$*JI("K:^ÿêóÑ ,73'73#3#735#33##"''3255#53567#^<A’ zzTT‚BB  @@a½ 43   SÿòôÏ!%73533#&'#5'67##55#353#Y>@/%%# !.jWDDp››³1. :VV#0ZÿòôÏ!%73533#&'#5'67##55#353#`;<,$#! -ydQ??i‘‘³/,;VV#/JÿòöÏ!%73533#&'#5'67##55#353#SAG6((' $1…r_LLy¤¤³0/!;VV#0fÿñôÏ!%73533#&'#5'67##55#353#k77(  )q^K99_‡‡³.+;VV#1xÿóõÏ!%73533#&'#5'67##55#353#~./#  #dTB00Suu²,);VV#0ÿç~ÍDLU73#35#535#53#5633265#"'&'67'5&'67'53753745&'77&5&6 ?*`4        . &  Í [Wa,- )! / . , t  " ! !  fÿéöÏ-1573533#3673#3&'7&'#5##5'67#535#35#35#y  ,:  ; &E3 ;;;;¶!  l ^tBoÿé÷Ä-3733#67&'#"''3255'675#535#535#&'‚Z6     !:ZFFH  ÄM   "*  /W NÿäöÈ %73#735#3#7#5'75#35#35#675#knnHH,›5=*HHHH( HÈ<6V#!^6:ÿéëÈ %73#735#3#7#5'75#35#35#675#0žžxx+Ì b=,tttt0DtÈ:7Zb6=JÿäöÇ %73#735#3#7#5'75#35#35#675#gqqKK,ž 7>+JJJJ("JÇ:7W#!_7:ÿæò  $73#735#3#7#5'75#35#35#75#-¥¥€€+Ö!O\-}}}}}} ,*GN,0 rÿäöÇ!&73#735#3#7#5'75#35#35#675#†[[55$y ).#55555Ç:7W#!_7:ÿçíÐ"(.733#5'66367#35#35#35#'67&'ZS ,¥ M H }}}}}}!/+](' ()Ð r% /57*    fÿé÷Ï &,733#5'6367#35#35#35#&'''6’5$r + )LLLLLLB * Ï }q 256'    ÿèð¨!'-733#5'6367#35#35#35#&'''6bK,§ 6LC [)( (*1"/-¨j_%,,#   GÿèðÏ %+733#5'6367#35#35#35#'67&'wG"  < ; \\\\\\! N Ï~s )67(     CÿéóÏ  $(,73#7&'''6#5##5'6735#35#35#–=  S‚W Q5 WWWWWWÏB8  "< o& #32 ÿéê› "&*73#7&'''6#5##5'6735#35#35#uF\!Ÿ|!k? "+-||||||›-%   *k _  ' ' RÿéõÍ@733&'76767&'#3#&''67#535#5'67&'767#a: C      79(!$+ 8 25!   )Å( ,       " !"   DÿéóÍ@733&'76767&'#3#&''67#535#5'67&'767#T> J   #<>+%"(1 = 69$    ,Å'-       "!"   ZÿèõÍ@733&'76767&'#3#&''67#535#5'67&'767#i7 @      45" $ - /1   &Å' ,      " #"     ÿçó¢B733&'76767&'#3#&''67#5365#5'67&'767#] C  !(GK60 33DI AF#    F—      !  Wÿèõ%9?76767&''3'67&'767#3#3#'67#5365#&'¹     5 E=   )"A>B6 * .37   = '   2 ! . ÿöU™ 7#5##535#35#35#U™ž £-HH4ÿçÑw@733&'76767&'#3#&''67#537#5'67&'767#:< G       "7;"  " *-3!   )q             5ÿþÌ A733&'76767&'#3#&''67#5367#'67&'767#D3 /    %*   (.  "š              gÿéõÍ?733&'76767&'#3#&''67#535#5'67&'767#u3 :     ./!$ -+-    "Å) -    """   xÿéîÆ"&73#"''3255##53535#335#3#735#à  P 84%%66ÆTq  [x‰TTB+D<SÿêôÅ6:>73&''67&'#3367&'3533#7&'7&''275#735#335^# &' &   '1888! 8K&!8%%8%Å      X7 ;ÿêðÅ6:>73&''67&'#367&'3533#67&'7&''275#735#335LŒ' * %1 / *7=>>>T*$=**=*Å     X7  `ÿêôÅ6:>73&''67&'#367&'3533#7&'7&''275#735#335iz "$ #  #-3332C#3 4 Å!      X7 Dÿèô›37;7#53&''67&67#7&'3533#7'7&''75#75##5#` '3 /$)R  :=<<- EPP=x))Š    ?0‡óÇ59=73&''67&'#3267&'3533#7'7&'#'275#735#335a     #$$ (.#$Ç    C/   ÿèób159?7&''67&'#5#3267#&3533#&''35#735#335&'7#Ú'<-,A. Q &6 RPP ]miP<DT73#"''3267#''67''67&'767#'667#&'&'''6733267#"&5{`           -  C  d    Ï WA    U   # 0  Aÿìôž-39KQW73#"''3265#&''67&''67'767#'6#6&''3326767#"&57&'''6jm           S    "n  wž G,      <  $  )  1Þ¤*073#"''265#''67''67'767#'667#7˜       ' [ ¤ J/      ?ÿê‰Ð7'6#5'6v   !Ð , zb  ÿéõš$(,735'673#&'3#5##535'67#35#35#e"# l8 5cI5 ?#II#< -'M/v #VV#F, ÿéóÍ#'+73#&'3#5##535'67#535'235#35#Ð %-eO#2 6)J~H#7 5"RbHU;~~~~Í%7l l1!—=sÿçõÆ $7'6553'#33673267#"&5™gAA5 !  €F4 4A_F4"*  - &  pÿîôË"(.7&'36732765#"&55'67''67&'¢ +   k  Ë-K3I\D"  L,%"( & 'xÿêóÏ/733#3#5##535#533567#533##"''3255#«,,3R2++38 6N 11  8Ï""„ & #oÿìöÏ'159=A73673#&'#3265#"&55##5'67#3533&'#35#33535#335y$="'      &;&² J   W!)9@qÿéôÐ59=AEI73673#33##&'#5##5'67#535#535#535#53&'5#3533535335–  #'      !!//Ï   %%6II. <% bõÒ'+/373#&'#5##5'67#535'25##3&'35#35#ËIcK"2 v 4"JaFOcDvvvvÒ  +/  4    ÿè}c"&*.73#'#5##5'67#535'235&'35#35#k/' 3 /(0 !3333c   ;8   3   ! €ÿèöc!%)-7#5##5'67#535'273#'3&3535#35#æ3  /((/  (0 3333#;8      $ ! ZÿîòÏ !7#5##53&'73#3#735#35#3#îi=6TTqqJJJJ(˜˜·3!!3  #`8>8_ÿîòÏ !7#5##53&'73#3#735#35#3#îe=6RRooGGGG'““·3!!3  #`8>8IÿîòÏ !7#5##53&'73#3#735#35#3#ìvA9^^||TTTT,©©·3!!3  #`8>8mÿîòÏ !7#5##53&'73#3#735#35#3#ðZ51JJ ee>>>>$……·3!!3  #`8>8ÿññ§ !73#5##53&'3#3#735#35#3#…_´eB  §§0áá§ %%) L.+,fÿîòÏ !7#5##53&'73#3#735#35#3#ï_93MM hhBBBB&ŒŒ·3!!3  #`8>8NÿêôÐ $,487#5##53&'7'673&''67&77667##5##535#ég<6 F # *") #  ; LJJJ¸#$  M      5M M0WÿêôÐ $*267#5##53&'7'673&''67&767##5##535#êa93 ? " ( &   4 HFFF¸#$  N       6M M0VÿèòÌ7<B7'23673#3#3&''67&''67#5367#53&'67'&'ä 6M@( -JSWM  !  ! "'& )  %  Ì      $,  m z CÿèòÌ6;A7'23673#3#3&''67&''67#537#53&'67'&'ã >YJ. 3  W`eX  #(" % (-+ ,  *  Ì      %) m { ÿèïÐ/4:@7'23673#3#3&''67&''67#5367#67'&''&'Õ KkZWŒ  t…r#*2%#* '"+491@-/  Ð7 "# 3 G ~     ÿèò£ >C7'6'6'&''3#3#3&''67&'#'67#5367#53&'67Ï =t |1  C  6 zŠ{+8'$. %)5=-3£           Z  jÿèôÌ5:@7'23673#3#3&''67&''67#5367#53&'67'&'å 2I<# )  FPTJ  $   #!'   Ì        m z  ÿè„Ì7=C7'2'67#537#53&'73673#3#3&''67&767#7&'x *>2     <CF?   0Ì   #*        † vÿèõÌ7<B7'23673#3#3&''67&''67#5367#53&'67'&'é /D9! &  DLPF    #   Ì        m z GÿéöÐ 48<@D7'2'6'&''&'333##"''3255##5#535335#35#35#35#ã *4* CUÓ  YFGG      1  )" "BÿéõÏ%:733#5##5'667#&'''63673#&''67#|H )d '> : L  9GJB) .? 7>Ï UEEJ    4   !&  Aÿçô¥#8733#5##5'667#&'''63673#&''67#‚?#d *:<K   7GJ>& /7 ,:¥ H76A   *  \ÿìõÑ $73#53635#35#3#3#3#535#535#œ>??8" ·‰  r‘£/ ** YÿéóÏ873533#3#"''3255##535#3673#3##5#535#53&'YCCC=  h-Af "$$%%;z. ÿéç)-1597&'73#3#"''3255##5##5##5'65535#35#335335wP¤¯  ###‘‘##5##‹ 4 G !!)D# %28$YCëÐ,0487'6553&'73'#3#"''3255##5##5##535#35#35#i;<kk #$‰4/ '1; 4$#R ####,f*mÿéðÐ+/377'6553&'73'35#"''3255##5##5##535#35#35#‹  /.`M       w68:n  >-@g #$$&&;{/ÿèÐ)-157'6553&'73'35#'7655##5##5##535#35#35## .)WE   x79 !7o  >-Af "$$%%;z. ÿèðš +X73#'6'3#3#"''3267#'655#53&'#"''3265#5;267##"&55'753753„]e> 0,   '·  . š    I48# "2$.= !831  3 ÿèð¤ )V73#'6'3#3#"''3267#'655#53'#"''3265#5;267##"&55'753753„^f? 0,   ' ¸  ) ¤  ! O9<% $7#0A #;69  :YÿéöÎ $(7#5'673#3#&'#5'67#535#735# #Q!+$   ")++ήˆ .$M%! LH#))>ÿèöÏ $(7#5'673#3#&'#5'67#535#735#d /\'3*  &1#44ϰ‚ 2+N$ %VU) '( =ïÏ %)7#5'673#3#&'#5'67#535#735#B  '2y3FF## # 4E2TTÏaF  #.  ÿéö  $(7#5'673#3#&'#5'67#535#735#<  !3~5J;)&* (:I5YY ‚a ,)?CC" 1ð« #)7#5'673#3##5'67#535#735#&'<  #/z5HH& -A2TTF  « T= + &!   ;  UÿèöÏ $(7'67#73#3#&'#5'67#535#735#k   )T#-%  "*..z &,±ÙM%!"ON%()[ðÐ.47367&''66'3#&'#5'67#535'6'6­  ( ;%%%  (-"1F  Ð    (+  #' XÿéõÏ,2873&''667'3#'#5'67#535'6'6''6¿  (     !b8  Ï?% L!15EA7&e^#+"& %)  ÿéô˜1773#&'#5'67#535'67367&''66''6j$$  %, .d   % 6 $# ˜NN!( ! 20!<'$]ÿéõÏ-3973&''667'3#&'#5'67#535'6'6''6Á  &     !^3  Ï?% J 03DB;) a[!-$& %) [ÿé©È735'673#&'#5'67#b     …& + fe! eóÐ;73#&''67&''667'3533#3#&'#5'67#535#¡F    ¸***,,  $,*Ð       Qÿèð™ %*73#535#535##5##5#53&''67&67#gqr`nn_‚t o"+)# 7 ™B  < .    ÿëðÉ (73#735#'3#735#3#3#3#"''3267#'7#‹XX11…XX33®®ᘠ‹‡ 1É<<:0  ÿêó %73#735#73#735#3#3#3##'3267#7#VV11ZVV00u°°æ¤ ! ‘ .00.$ÿè•Ç '73#735#73#735#3#3#3#"''3267#7#88688Ttt ‡MA  D%ÇD"D"@1 !€ÿêóÉ '73#735#73#735#3#3#3#"''3265#7#†// $00 C[[ sGC  J ÉA A ?4 "FÿéìÇ"&,28>7#3#3#3#"''32767#55#5#35&''&'''67&'ç60000;  yA....# : /ÇM! 1‚%&- gÿéñÇ"&,28>7#3#3#3#"''32767#55#5#35&''&'''67&'í.))))2  l9&&&&   .' ÇO 1‚&%/ 6,ëÈ!%+17=7#3#3#3#"''3267#55#5#5#&'''67&''4'èA8888D  ‚@,,,,,Q  `  W  È   4 b           ?JÈ 7&''6,È  1%ÿéï‘!%+17=7#3#3#3#"''3267#55#5#5#&''&'''67&'âSKKKK` ´VBBBBBt    M ;  ‘5 m  ÿéï!%+17=7#3#3#3#"''3267#55#5#5#&''&'''67&'âSKKKK`´VBBBBBs    M ;     4 j      iÿéñÇ!%+17=7#3#3#3#"''3267#55#5#35&''&'''67&'í,''''0  f5""""  .  'ÇO8‚&%/  $í¨!%+17=7#3#3#3#"''3267#55#5#5#&'7&''&'''6ãUNNNN_   ±R@@@@@L9J  ¨ " R            ÿèô:7'6767&'2567'D>)  "$ S- "     &   ÿîoÏ *73353353#3#3#735#676767'67'ZbbWW22 '1 Ä**06,   ÿíóÌ7'6773267#"&55'7§/( 24  #&¢  <N & RuÿîõÎ,7#"''3267#532767#"'"&55'753753ì ,!  ŸT!3 ^Xh e;5E?|ÿèíÐ 73#'3'6573#ÚL&Ðçç„>& $4wÇ:íÊ!%+17=7#3#3#3#"''3265#55#5#5#&''&''&'''6æTMMMM[  ³XEEEEEw   Ê   1 Z        ÿèð@736533533##5#'67#C;;;>5*?. 44.Aÿè÷Ç#'+173#3#&''67&'767#535#35#33535#335QžF'':)c'':) I    I ( ( ‰ÿèôÄ $(,073#3#&''67&'767#535#35#33535#335’\&#$ #     !"##4#Äd    d<@ŽÿèôÄ $(,073#3#&''67&'767#535#35#33535#335—X$!!  !     !!0!Äd     d<@\îÐ73#3#3#535#535#53&'736§9]RRdÚbRR\0 1 Ï    ÿê€Ï?D7#"''32655'67&''67&''67#537#'733#67&'37#Z  "  $D696   6-->     //    xLÿéõÏ@D7#'733#67&'#"''32654''67&''67&''67#53'37¾MK(J      #0 5$$ $ $5_, C//   .0    /Z-ðÒ?D733#67&'#"''32655'67&''67&''67#537#'77#‚O I     !'-!$ $%#1dMXCÒ            ÿéôÑ>B733#67&'#"''32654''67&''67''67#537#'77#Oo:n +,  0> H-)8 6+ 25Un| e Ñ1+/     UÿéõÏ@D7#'733#67&'#"''32654''67&''67&''67#53'37ÀGF%F      !- 3!! " !1Y)=//   -0   /€ÿë÷Ï?C7#'733#67&'#"''32654''674''67''67#53'37Ê,03     !   9#‘0 1   (,      1IÎ767'67'67676'6}    ›3 3. f  ‰ÿëøÏ=B7#'733#67&'#"''32655'67''67&''67#53'37Î,-,       4#‘01  *,       1  ÿéò›@D7#'733#367&'##'32654''67&''67&''67#53'37 `^Ct   / / 1A D0%=6(( - VŽ@ Ye(%    "    % _ÿéôÊ:733#67&'#"''3265'67&''67&''67#535#535#va@    $ +  :dKKMÊH      _ÿéôÏ@D7#'733#67&'#"''32654''67&''67''67#53'37ÁDC"C       &.  -S%://   .0     /kÿêöÏ@E7#'733#67&'#"''32654''67&''67&''67#53'37Ã=?=      # '  *M!4//   ,/    /\ÿéòÐ*.273733#5367#35#3#3#3##5#'7#535#735#35j!>”#*713€,55::? E@XX .¾ " (4C`ÿéóÐ+/3736733#537#35#3#3#3##5#'7#535#735#35m";$+2,1z,//;;< C:RR ,¾ " (4BgÿéóÐ,04736733#5367#35#3#3#3##5#'7#535#735#35t8ˆ")/)/t),,779 @7LL*¾ " (4Bÿèñ­/373733#5367#35#3#3#3##5#'735#535#735#*;VÝC3@TLH°7CCB†14499F __Á ~ ..  > ÿé•Ð/3736733#537#35#3#3#3##5#'735#535#735#$0ˆ$-)"/l$--227 $@@5GG¿ % '2  6ÿéɇ.273733#5367#3353#3#3##5#'735#535#735#G#3“-1'Tm'..00: -<<4GG{   "  ÿèñÐ*.273733#537#3353#3#3##5#'7#535#735##3$7aà<0F]—´EQQ[[be[ŒŒG@P½$ 32B|ÿçòÐ")/73673#3&''6654&''67#677&'‡>?:    £8"   +?4 r   ÿé€Ð-173733#537#35#3#3#3##5#'735#535#735#'t' ,]%%&&1 !66,88¿%21rÿéóÐ*.2736733#537#35#3#3#3##5#'7#535#735#35~2 }!)(#,i%''11381CC$¾  " (4B~ÿèõÉ'7#3#3#3#67&'#67'5#535ëKDDCCT/   +  É   EM ZlvÿêóÑ -73&'73#3#735#33##"''3255#53567#{/3vff@@h33  77K½ 43   xÿéôT73533#&'#5'67#y34'   %K #IG&#~ÿèóÎ 17'2'6'&''&'3#35#535#53#5##56æ ,A4.  %    % H2HÎ  " #""„  ÿéuÐ ,073733#537#35#3#3#3##5#'735#535#735#% i$*V!!!!* 00(22¿ %21qÿéïÇ $<@D73#735#335335'673#"''32653533#67&'7''75#735#335~kkI  T  a"## !(%"#Ç=M  j'R . wÿéôÏ37;?C73533533##5##5#3#3#3#3##5#535#535#535#5##5#35#335wp 444444 R$½""(pÿè÷Ñ!%173#3#&'#'67#537#53635#35#3533##5#¢70B#  '" ????ÑU &"U ,3p""$$ ÿélÑ -173733#537#35#3#3#3##5#'735#535#735## `#$L $  ''!((À % (1 kÿçõÐ#'+/5;73533#3#535##5#;5#35#3#735#35#35#'67&'o9990s09~HH qqKKKKKK  G Å   "//)U=    HÿíñÏ673673#3#3#3#3#535#'67#5367#5367#53&'ƒ  &HDGZa]2?‘@% !%,(+7(Ï    ""%   LÿéóÑ C7#5##53&'73#67&'#"''32654''67&''67&''67#ìrAPŠE      ". 3#& ' #.º!!  *   05 "  EÿéóÐ'M7373#3#3#&'#'67#5367#5367#367&'#"''3255'67&'767U:DHCI_+ $(  ,%,6<     ¶   $  Q)      ÿñîÒ573673#3#3#3#3#535#'67#5367#5367#53&'T 1  6[X^ w „LYÆY6 *AMJP[4Ò     "" (   ;ÿíòÏ473#3#3#3#3#535#'67#5367#537#53&'736½(LHK`gc4B™C( &'/*.<,  Ï  ""&   ÿïñ 373673#3#3#3#3#535#'67#53567#537#53'[28mgl‚‹†HVºQ; )>I7Vcca _C ( 'Ï 9H 5 u   ÿçóÔ%+1773#3#3#"''3267#53635&'7&'''67&'m` ºº´ ´<0ŒB  ?  ~ <  Ô >C+‡ }  aÿçôÏ%+1773#3#3#"''3267#53635&'#&'''67&'œ<_nnk hL  * 'Ï 9G2 u iÿçõÏ%+1773#3#3#"''3267#53635&'&'''67&'Ÿ;\kkh fJ (  %Ï 9G1 u   dÿéòÐ!%).38AGM73533533#3#5##5'67#735#335335367#35#35#3'3267#3'67&'n$##-D  !$5X "3 4  @ 9¼1;/2: .4  1  58  Kÿé—Ï73#3#7#5'756ˆ""##( Ï %0.™ ÿé{Ï73#3#67#5'756l!(<<<<$ &.Ï  % -)š—ÿèöÆ#(733#"&55#'6653&''67&'#367ã    P   Æ<  0$  )c1    &TÿéÏ73#3#7#5'756Ž!!""'  Ï %0.™]ÿé¤Ï73#3#7#5'756• % Ï $1.™ ÿérž73#3#67#5'6756c%7777#" (ž  eÿéõ˜$)733#"&55#'6673&''67&'#367Õ '   m  !$ #   ˜( M   gðÈ &*.73#5##53535#335##"''3255##55#35Úe8?((L  2C22È8(*88( .X  m ZÿéïÆ &*.73#5##53535#335##"''3255##535#35#ÙqAD..T   =====Æ?""??.0d  '}#4JÿéìÆ &*.73#5##53535#335##"''3255##535#35#Õ~DN00^  GGGGGÆ?""??.0e  '}#4ÿéíš &*.73#5##53535#335##"''3255##535#35#Ê#´_&rLL::‰  vvvvvš6((66&  'L ` % lÿéôÆ &*.73#5##53535#335##"''3255##535#35#ád;=((N  77777Æ?""??.0e  '}#4ÿèïÊ &*.73#5##53535#335##"''3255##535#35#Ï ·!]-vII66‰  sssssÊC,-CC1#3g  +~"0‡ÿéñÃ73#3##5#535#^%++,,&ÃIllIƒÿéïÏ73533#3#5##535#35#ƒ,,,'9&,99221pp1}9xÿæôÎ)73#6767'67'67#53&'&''66¶ +: ; $ (6?$ (.Î J ! d #0xÿèöÐ +73#53&''67&'&''6677&'76º,o. B         Ð 6 " '    wÿëóÎ#(-7#5367#5373#3##'365#335367#335#3½F #!  5$$,.G,  cc#1¡ A  ) wÿêóÏ!%)-BH73533&'73#3#5##5##535#35#33535#3353533##"''3255#&'{0  0++0,D,`S   S » \\.-?     uÿéñÐ "&*73#53&'3#735##"''3255##53#735#µ5|0\\88W  P;;Ð +32[  Das 5mÿéôÐ !)1A7#5##53&'73533533##5##5##5##53'66733267#"&5ëO/9a:!   ½** -N=>m$P C vÿïòÐ #'+/?73533533#735#33533535#3353353#3#735#3673#53&'|!!qMbwwjjHH!|ÀO/1, .$    rÿçñÑ !%)-39?7#5##53'73#673#5'675#5#5#35#''6&'''6ïX40K  6d H?????  D"  ¾##    \M H   i }  kÿè÷Ð 8<@DHN73#5##53&'33533#3#32767#"&55#'67#535#53#335#35#35#&'±4Z3    * %./??????GÐ #  a  # a   ' '   dÿèóÆ -73#735#33535#3353#67&'#67'5#ouu1O1m‹<    5 Æc9A7  BC Qÿèñ› ,73#735#33535#3353#67&'#7'5#+¬¬::L:†::L:´àc   R!0" !›R2.-  7-   9ÿèöÊ ,73#735#33535#3353#67&'#7'5#-©©66J766J7²àh  $ W!%:'# (Êd;>6    DI  S^ÿèóÆ -73#735#33535#3353#67&'#67'5#jxx2 R2 q‘?   8 Æc9A7  AC QJÿèîÆ -73#735#33535#3353#67&'#67'5#Y‚‚$$7%\$$7%~¡E   : ! Æc9A7  BD  QWÿèóÆ -73#735#33535#3353#67&'#67'5#d}}""5"W""5"w˜C   :  Æc9A7  AD  QsÿèóÆ -73#735#33535#3353#67&'#67'5#~kk-F-c~6    . Æc9A7   AD  Qÿé¢Ï $,073533533##5##5#'67&3##5##535#,,G /& FZZ_EEE¸%Q Q5#\ÿéõÏ $,073533533##5##5#&''63##5##535#\. .F % "$# 0[[aGGG¸  !Q Q5$Gÿé÷£#(0473533533##5##5#&'#5'63&'#5##535#Q"1""1"L%' R <; M[[[’   *D D(lÿéõÏ $,073533533##5##5#&''63##5##535#l((>#   + QQX>>>¸ "Q Q5$sÿéöÏ $,073533533##5##5#&''63##5##535#x&&7  * IIS999¸  !Q Q5$rÿéöÈ)?73&'767#533'67##"''3255'67#3533#&'#5'67#z/ Ie1   )34' %›     @ #II($kÿéöÈ)?73&'767#533'67##"''3255'67#3533#&'#5'67#t2  Li4  " ,67) '›     @ $KK*#]ÿéõÈ(>73&'767#533'67##"''3255'67#3533#&'#5'67#g6  Ws,  % 0<=." " "-œ     @ #JL,"TÿéôÈ+A73&'767#5333'67##"''3255'67#3533#&'#5'67#^; Zx;   ' 4@;,$"% $0›     @ %LM," ÿéôœ(>767#533'67##"''3255#'67#53'3533#&'#5'67#f §#V  8   %< +'MTAbcV&7 :&&7 2$N‰   M  /.  ÿé€È(?73&'767#533'67##"''3255'67##5'67#53533#&+ C].   %C (2++ ›      q1?1[ÿóòÅ73#3#3#535#535#3535#5##3aŒ*&&/—,#%(9%%$#Å)W,,V*¬>3;<2HïÇ73#3#3#535#535#3535#5##3×G;;KÞH88EX%::%77Ç66[%$$eÿóòÅ73#3#3#535#535#3535#5##3k‚&##+) !$6""! Å)W,,V*¬>3;<2EïÇ73#3#3#535#535#3535#5##3×G;;KÞH88EX%::%77Ç77^&%%ÿð¸c73#3#3#535#535#3535#5##3š/**7§8**3B**)(c01QVïÈ73#3#3#535#535#3535#5##3×G;;KÞH88EX%::%77È11O  ÿèë` 73533#''275#735#335'7#6)MM Rk51M99M9 =G4 2jEôÆ73#3#3#535#535#3535#5##3n€# )Š* %8  !Æ89^"""™éÐ 73#3#53635#35#µ$8DJ73#'66553&'35#3#"''3255'675#73#"''3255'675#&''&'«7w =#cc 4 "=7 %   /   Ï 8'@1 +#X5:q   .q    *    TÿéõÑ -39G7#5##53&'7&'3673267#"&''67''67&'3353#5#533òr@  "(  "   ~  5#l#»..   /% . 0    @3+E;)cÿóôÆ 7#3#53#735#3#735#73#735#ðz~‘+TT..11-11Æ®Ó!98J,J,`ÿéóÉ#';73#3#5##5##535#3#73#3#73#3#3#3#"''3267#7#k|6?..?4 !!C J((J''Rƒƒ“c] b É #::# '    %SÿéõÑ 7;?CG7&'67&'67&'63#3#&'#5'67#535#735#33535#335x  <  8   i†;E6" #$ "1@8%%8'_%%8'Ñ      -O   46! /1Kÿç¯Ï!%73533#3#&'#5'67#535#35#335]     ¹M IC%MR+++ŸÿçöÐ73'67#'63&''65¾)     $Ð# *"31  #!1ÿçóÒ -1597&''63#3#"''3265'##'2655##535#35#73#x4: :5,4 Jii|   H 11111^Ò"&(# p gn /…$41[AÿéõÏ!26:>7&'#5'63&'3#"''325'#"''3255##535#35#73#”&- \ :NG   3  """""FÏ  " .s  mt  1‹%7-\FÿéõÑ $48<7&''63#&'67&'6'#"''3255##55#35œ#* (&"* < LLB    .   8 "4""Ñ$%! ! # (# #("q  -ˆ%ÿèøÒ +/3=7&''63#&'6'#"''3255##535#35#7&'6€/: 64,@O nnc     88888   Ò$*(  $ & !i  .†#42 $ÿçóœ"37;?7&''#5'6&'3#"''3265'#"''3255##535#35#73#}16 Z ML l B  66666`œ    S LS  "j ( 'G +öÐ"'+/<@7&'#53#"''3255##5'63&'35#35#73#"''325'3#€16 #"HU  8 Q : =8888’  -Ð  M ^  < & 'J  A<TÿéöÏ!26:>7&'#5'63'&'3#"''325'#"''3255##535#35#73#š#* V 1G D  1    AÏ   -s  mt  1‹%8-\ ÿé™Ï/37;73#5'67&3#"''325'#"''3255##535#35#73#T AH  0"  & 5³ #*s  mt  1‹%8-\:ÿêõÉ7;?7327#"&547#'65535#'273#67&'7''275#735#335Û a $%  *ÉH8$$+$;0>V>9 /ƒÿèòÆ!7#5##53'>33265#"&5ç4" ÆŒ{z‹(R/)  $,3 ’ÿèõÆ!7#5##53'>33267#"&5ê'  ÆŒ{z‹(Q2'  #- /  G ôÐ .26:7&''63#3#"''325'#"''3255##535#35#73#, #* + <VV]  0  #####DÐ   [  V_  $s .(M\ÿéòÊ /37'6553'#33673#3##5#'67#535#53&'5#‚[[:  5Ž+E5 7?a<) >>& EkÿçõÆ %7'66553'#33673267#"&5“ lFF8 #   €E5 2#_F4"*  -   ÿüpÍ73#67'756675#\!? +0 " Í  W ¨¨\aÿéôÏ1E73533#3#3##5#535#535#73#"''3265#'667#373#&''67#iE@     H;?9) ). - 5¾W>-% !'v  %)  " ÿçô–1F73533#3#3##5#535#535#73#"''3267#'667#373#&'#'67#)''$$((..$$)o`  # ucgT;G"TEVŠ      D*! \  #$ ÿéï‹1F73533#3#3##5#535#535#73#"''3267#'667#3673#&''67#(&& '')) (ia   " m\eY>F$O?O€      : # J !! Dÿèò¢0E735#535#53533#3#3##5#73#"''3267#'67#36533#&''67#NUI   [FPD64 E : B[   O=  1# 0[ QÿéôÏ2F73533#3#3##5#535#535#73#"''32765#'667#373#&''67#ZMF     PCF@. .4 2=¾W 5+& !&v  &)  "IÿéôÏ2G73533#3#3##5#535#535#73#"''32765#'667#3673#&''67#SPI    TGJD0 18 6A¾X 4-% #%w   '*  "hÿéðÐ %)-157&'67&'67&'6#5##535#33535#35#„  8   7   S 2!S 2!!Ð   Qyy-GiÿéõÐ !%73&'73#&'73#536#5##535#r05{  G *ŒM $DDD·    @[ [?-kÿéòÐ-1597&'3673#3#"''325'##53#"''3255#3#373#  R  ‡o  >A    Ð  „  :€ hE`OÿéòÐ.26:7&'3673#3#"''3265'##53#"''3255#3#373#y  d  (£ˆ   I(N ((((%Ð  „ 9€ hD`ÿéðÒ-1597&'73#5363#"''325'#"''3255##535#35#73#S  m A߆ + T 88888kÒ   0‡  z  6›*A6l`ÿéòÐ.26:7&'3673#3#"''3265'##53#"''3255#3#373#†  X  #’x   BF   "Ð  … 9‚  kE`ñÐ-15973673#53&'3#"''325'#"''3255##535#35#73#R 8>â<‹  Q  77777iÐ    +e  ^d  'y"2)O JôÒ,04873#53&'7363#"''325'#"''3255##535#35#73#®>ç@ :&  K @@@@@pÑ  $?  8B R 8ÿéðž-15973673#53&'3#"''325'#"''3255##535#35#73#M 99ß7   K   77777eœ  )g  \`  (u -*V]QòÓ+/3773&'73673#3#"''325'##'6655##55#3573#]#' !•y  , $6$$¿ @  8B T !7rÿéôÏ-1597&'73#5363#"''325'##53#"''3255#3#373#•  K ‚L   8< Ï   3…  :€ iE`ÿéïm.26:73&'73673#3#"''3265'#"''3255##55#3573#=:>ß»   D   DVDD+Y B :C V 9VÿéóÏ26:73533533##5##5#3#"''32765#3##5'65#35#d######c   U G;A)))¼v YY_ 1%ÿéeÏ73533#&'#5'67#"   ¡.. ‚v$)8 ÿééœ!73#"''3267#'6##55#35>  ’ {[[HHœ b [k%ÿñò 73#3#735#35#3#ÄÄŸŸwwww5ãã[594\ÿéóÏ #48<73#5'675#5373673267#"&5#"''3255##55#35‡((&    .  GZGGÏ]    h  *€" ÿéšÏ "37;73#5'675#5373673267#"&5#"''3255##55#357%%$    -  BUBBÏ]     h  *€#dÿèöÏ!9@73533#&'#5'67#7&'7'6373#&''67&'7#367n78, +  `  a+ H   0 #"722$">  r      KÿèõÏ!;A73533#&'#5'67#7'6'&'3673#&''67'67#367TBC3%%) #/{ Y 1`"   '9 *1 &;+ ž11*1 >    z      TÿèôÏ!:@73533#&'#5'67#7&'7'63673#&''67'67#367_==0! " . l  l1 P  %5 '' '<  ž11#%?   r      ÿèôÏ!<C733#&'#5'67#537'6'&'3673#&''67&'67#67#v]J- 2##1 +E]O|  Q~+ #(-&+F  %?  ) 3 ž11 <   x        ÿé÷Ï%5FJN767&'7&''67'67676'3'65733267#"&5'#"''3255##535#35#™")! ,6  o¡     AAAAA½"   hM1.BfÇ # ab  *z!05ÿéôÏ$3DHL7&''67'67676767''3'65733267#"&5'#53#"''32=#335«!$  W JM   ((((š   + :eM1 .DeÆ % (wc ?„ÿêëÉ7#"''3255#'65535#35#ë (''''ÉÉ ?/' )3v;(c)A•Ï73533#3##535#35#A  3 !!¥***Sb*k/GÿéòÐ/E733533##5##5#53&'3673#&'#'67#3533533##5#'67#q',,'$$^  r6I3+ 7 . $+#%'''!Ð    %$ ;77$ÿéëÒ#173#3#3#"''3267#53635353353##533[e–±±³ ±/ ‚‚‚W1ˆ0ÒO  A *Š a)9SÿéîÐ#173#3#3#"''3267#53635353353353##ŠEfxxy wSSSuaÐN  A'‰ a)_ÿéñÐ#173#3#3#"''3267#53635353353353##‘@_ooq pKKKlZÐN  B *‰ a)…ÿïñÆ ,27#3#53#735#35#373#&''67&'67#367ñZZlEE$$$$+    %Ʊ×D( & +     ÿï‚Æ ,27#3#53#735#35#373#&''67&'7#367‚\\oJJ((((+    $Ʊ×D) & )     wÿðñÅ ,37#3#53#735#35#373#&''677'67#367ñggzQQ////0    ) ųÕD) & )      ÿï‘Æ -37#3#53#735#35#373#&''677&'7#367‘jj|RR11111     +Ʊ×D) & )     nÿïñÆ ,37#3#53#735#35#3673#&''67&'7#367ñqqƒ VV4444 4     , Ʊ×D) & )    iÿïñÆ ,37#3#53#735#35#373#&''67&'67#367ñvvˆ!ZZ6666!9   , Ʊ×D) & )     YÿïñÆ -47#3#53#735#35#3673#&''67'67#367ñ††˜&bb@@@@'@  $ !2 Ʊ×D) & )   _ÿéùÍ#+<@73533533##5##5##53&'73#3#3'667333265#"&5'3#f((=7e[o  J   %º2  '" #<  @O ÿéê”39?EK7&''67'67676767&'73#"''32765#'6&'&''&'''6i #+  %=G :      N   ,M j% L % PÿéõË &>E7&''67&'76'3353#'67&'3&''67&''667#À    Ta…!L *G$ $ /*  ;Ë     @@Q         fÿéöË &=D7&''67&'76'3353#'67&'3&''67&''667#Å       NW} H ' B  '"   7Ë     AAQ        WÿéöË &>D7&''67&'76'3353#'67&'3&''67&''667#Ä     R]‚" J 'F#", ( !  :Ë     AAP         rÿéôË%=D7''67'76'3353#'67&'3&''67&''667#Ç      FMr D )9 "  -Ë      ==M         }ÿè÷Ë &>E7&''67'76'3353#'67&'3&''67&''667#Ì      BHl >  :      -Ë      AAP         cÿéñÏ"04873673267#"&5'67'5333#5##53635#35#¦    1&@R$RRRRÏ$   "$ b 0 o o 5B&ÿéõ !/3777'53373673267#"&53#5##53635#35#8C+& E '" '.  ,[…9+…………y  E"    [['2hÿéñÏ"04873673267#"&5'67'5333#5##53635#35#©    / %>N"NNNNÏ#   "$ b 0 o o 5BÿéÏ!/3773673267#"&5'67'5333#5##53635#35#E    " 2: ::::Ï#    #$ b!0 o o 5D ÿé‡Î#'+DHLP7&'#5'6&'3#735#73#735#'3#735##"''3255##5##5##535#335335C!  A (3&"" E"" 5"" @  !Î   0  0  0 1I """"*\#‹ÿéóÏ !/37767'53373265#"&55363#5##53635#35#  1   128 8888¥%  ]   S G qq 3BZ£Ï73533#3##535#35#Z,¥***Sb*k/ÿëç–'+173533#3##535#35#7'3255#'65535#35#..."C!. 11¸ #84454{GXQ%U‹ >>.JEÿéõÈ 57'66553'#33#67&'7&'3#3#535#535'67#r ŠddZo>   //8‡ , , 77ÿéú›48<7327#"&547#'6553#67'7''75#535'635#335á jm&""  $+."" ."›:-+-%1:&.BB5 5E›òË 7'6'6'6×* (- +( &Ë " # $oÿéøÉ59=7325#"&547#'6553#7&'7&''75#535'635#335å  GH    ÉH8&&#=0>n=##=yT  "Tk666 ÿëvÏ 77'2'6'&''&'3#3#753#55375#535#'6j (9/+  ;%((C'' Ï      1"> :'3  ÿénÇ #04875#53#5'675#53#5'6'&'7&'3#5##5335#35#+. =. <  8   $0 0000•!_ !_)   >j j&; ÿétÏ#AEIM733533##5##5#533#735#73#735#3&'73#3#3#3##5'6353535$,,%,,4!G Ï #--"  E ôÎ&*73#"''3267#'6#3267#"&5535#žD   : 2 #! Î Y D ;!   _, ÿìùÆ*7327#"'&5#'655&''67&'76Í  | q Æo4"#!-\83 *4o, !!  GÿçöÇ,73265#"&547#'65567&''67&'×N(   ÇG8' .%9/>f62 (4x.- ! #" ÿþ[Ï 73&'73#67'676'&'M3 % ¨ ;$ 5/)+.':ÿéòÑ"'-39?E7333#"''3267#'67#53637#37#'&'&'&'''67&'Š;    ‚ */61+!^Q  n    < 5 Ñ//J0 44@=q "  ;ÿéñÏ"&+17=CIO7'267333#"''3267#'65537#37#7&''&'&''&''67&'Ý :TE#    xQXcg3   i   0  +Ï 2%&A)'! -93%9 b  v  FÿéòÏ"&+17=CIO7'267333#"''3267#'65537#37#7&''&'&''&''67&'Þ 7OA     l HNW[,    d /  ,Ï 2%&B*) -93%: c  v SÿéòÐ!&,28>D737333#"''3265#'67#37#7#'&'&'&'''674'e02  h %*3&!/A  g 8  -®"0.K0 )E<    FÿéòÏ"&+17=CIO7'267333#"''3267#'65537#37#7&''&'&''&''67&'Þ 7OA     l HNW[,    d .  +Ï 2%&B*) -93%: b  u >ÿéñÐ"&,28>D7367333#"''3265#'67#37#7#'&'&'&'''674'Q88  w *2:-&6L  s > 2®0.K. )F=   ÿéí§"'-39?E7367333#"''3265#'67#33737'&''67&''&''4'F W !   ª  +!    7 - (--*#  Ñ gO  UE$;g 7E 3  ÿèõ¢#',15F73#332767#"&55'67##5335#335367#335&''6767'yNW ( /%JL3M:<   mÿéôÑ"&+/?73#3265#"&55#'67#53635#35#365#35#67'7''6ž9   0 & %'(%  Ñ gO  UD%;g 7E 3   ÿèôd27;?C73#67'7&''67#32767#"&55#'67#536365#33537#335N!      )+ QEARE:;ME‘68KHd;     !*;  iÿéòÊ  &*73##5#3#735#3##"''3255###535#k„ fII##‰  iR9&&ÊQQ56M  J4 ?$ ÿéóË  &*73##5#3#735#3##"''3255###535#Ó¤hh@@3æ#   ¯Š[HHËPP56L  I7F& ÿéŠË  &*73##5#3#735#3##"''3255###535#t T==~   YL/ËQQ56N  K5 B%LÿëóÊ  &*73##5#3#735##53##"''325'##535#U–q PP**T{§   A..ÊQQ5IJ  64 ?$IÿæõÆ!%)-173#3#3#&'#5'67#535#535#5#35#335335T—-+@K=& (' &=J@+,X))ÆD!'CA# D2 VÿéõÆ!%)-173#3#3#&'#5'67#535#535#5#35#335335`Œ*(;C6! #" "6B<))P''ÆD"&><"!D2  ÿèõÈ!%)-173#3#3#&'#5'67#535#535#5#35#335335ÜH    \1--  )ÉCC2!!!!!I 5;-ÿçóP!%)-173#3#3#&'#5'67#535#535#5#35#3353353¸;3JZI5<1 +?ZM3:l!2!!2!!P \ÿéðÆ "073#3#735##"''3255##5&'73##5#536\””uuOOp   k54 !/Æ 30f  Pk}   **OÿéðÇ "073#3#735##"''3255##5&'73##5#536O¡¡€€XX{  u9 ;$$4Ç 3/g  Pk~   **AÿéšÇ (.73#3#735###'3255##53673##5#7&'DQQGG%%@  8  Ç23e  Rn}4 ///  ÿé{Ç (.73#3#735###'3255##53673##5#7&'eeVV44Q  K  Ç22f  Qm~5 ///  iÿéðÆ "073#3#735##"''3255##5&'73##5#536i‡‡ mmGGf  _1.*Æ 30f  Pk}   **ÿéì¡ /73#3#735##"''3255##53&'73673##5#ØØ¤¤¨  ©(   94¡ /*K  6Rc.   sÿéðÆ *073#3#735##"''3255##53##5#536'&'t|| ff@@_ WM&Æ 30f  Pk} **  ÿévÉ "073#3#735##"''3255##5&'3673##5#hh RR00M  F$ É23f  Rn~   //qÿéóÑ<73#5'67335#35#3#3#"''3265#'67#'67#'67#–X_OS;;;;uPQ       ² C9 ( & '<#) #  ÿéìÇ "073#3#735##"''3255##5&'3673##5#ØØ¤¤¨  ªF  A  '55Ç74]  Few   ""†ÿçñÏ73533#7'7''675#75##5#‹&&& %,&M //f1" 4BBBB`ÿéóÏ#'+/73#3&'73#&''67#5365#53635#35#35#5/0& , 3 ) */'!DDDDDDÏo   (# o )/0ÿèíÏ%973#73#"''3265'3#3#3#535#535#73#3#3#535#535#É   ­P!!QYLOÏççÍ ÂÿçìÉ #73#735#3#735#35#35#'67&'4™™tt±±‰‰‰‰‰‰$+ (\/! -É4/xU23&      ÿé‰É #73#735#3#735#35#35#&'''6ee??ssLLLLLL4  É60qO//%  cÿèõÈ #73#735#3#735#35#35#'67&'vllEExxRRRRRR FÈ41rQ./%    ÿçí“ #73#735#3#735#35#35#'67&'3žžzz¶¶‘‘‘‘‘‘+ ;7U%) +&“* $V> !    ÿé”É #73#735#3#735#35#35#'67&'llFFzzUUUUUU A É54pO//%   ÿêó– !%)73#3#535#3#&'7#'67#735#35#35#Å[mægXµ9%) .) 8 8&%5–  $Z    ? " " \ÿèòÐ&.26:73#33##3#5##535#535#'6553'5#35#5353535#·23( (-?&"")8 ))"4??Ð #$J I ?3 0!Y02#`6ÿéòÑ(048<73#33##3#5##535#535#'66553&'5#35#5353535#£CD445N,,,9 I 99,?!!!MNNÑ #$J J A2 -#Z 13#aZÿéôÑ'/37;73#33##3#5##535#535#'6553&'5#35#5353535#µ54) )*;#""+9 ++"5:;;Ñ #$J J B1 3;Z 13#a ÿçô©'/37;7#33##3#5##535#535#'6553&'75#35#5353535#ñ[HHK}DFFRY RRFY555z}}–  9 9  5) *0J  )   HcÿéôÑ(048<73#33##3#5##535#535#'66553&'5#35#5353535#¶31( ((8!& 6 &&2688Ñ #$J J A2 -#Z 23#aqÿéôÑ(048<73#33##3#5##535#535#'66553&'5#35#5353535#¾*+# #$0! 2 !!..00Ñ #$J J @3 ,#Z 23#a ÿé†Ñ'/37;73#33##3#5##535#535#'6553&'5#35#5353535#Q*(! !!-"  / "",,--Ñ $$I I @3 2>>· L-" $,@$  +FE, ÿéWÏ73#5#'67#535#533D 8/Ïæ[F:"P>iÿèõÐ #+/7&''6'6553&'73'#335#5##535#¬ # ,1 #EEEE444Ðq." $+A K:  .D D* ÿéó¬"&.27&'#'655'63&'73&'3535#5##535#ƒ 05 ”! S:5!%$ttt¬ B*3+  (: :cÿèõÑ #+/7&''63#'6553&'#3#3#5##535#¨"  # / 'Z04FFFF666Ñ  J-% '36 #  E E, CóÐ#73#&'#'67#5353653367#335ÎF3 @A .<HJ$ 3H;¸6  6 6 $mÿî÷Ð!)-1573#&'#'67#535353367#3353#53535#35#35#á*! '$$ )** ‚    ¸6  66&gBBB22222 mÿéóÉ 06<73#3#535#5#35#3353353#3##"''3255#'67&'u~'"t!&F  Zff 5  7  ]  É<<+;) &  WÿðóÏ #'+73#7'673'3#7&'3#53535#35#35#Œ8  (‰p œ!!Ïw; ,+"/`$/NNN<<<<<4ÿòóÐ  $(,73#'6'3#'3#7&'3#53535#35#35#±5; .(v  (¿+*Ð #*mdZ% /QQQ>>>>>QÿñóÐ  $(,73#'6'3#'3#7&'3#53535#35#35#¾(/ )%l ¢#$Ð %/vla* 3MMM;;;;;_ìÐ  $(,73#'6'3#'3#7&'3#53535#35#35#¼'- )!g     Ð  "*jb['  )===,,,,,]ÿéôÐ8<@DHLP73533533#3#3#33##"''3255##5#53535#535#535#35#35#35#33535#35#d !$$(A5 V5>" 3!!!!!!3#V!!3##À E  ""E -O5 ÿêÏ8<@DHLP73533533#3#3#33##"''3255##5#53535#535#535#5#35#35#33535#35# 6, E -6! L,E,ÀE  ""EP4AÿèñÐ8<@DHLP73533533#3#3#33##"''3255##5#53535#535#535#35#35#35#33535#35#I()++""0M>  h=I*(;))))**=+h**=++À  E  $$E  ,O3 ÿéóœ8<@DHLP73533533#3#3#33##"''3255##5#53535#535#535#5#35#35#33535#3355499//CdQ  QgA//5|444*==P===P=    0 0    = ! Xÿèöš8<@DHLP73533533#3#3#33##"''3255##5#53535#535#535#5#35#35#33535#35#d #$$(A5    W4A% U###""4#W""4##  1  ##1  8 " hÿéôÐ8<@DHLP73533533#3#3#33##"''3255##5#53535#535#535#5#35#35#33535#35#n!7.  J/; M.J.¾@  ''@N0 ÿê‡Ï8<@DHLP73533533#3#3#33##"''3255##5#53535#535#535#5#35#35#33535#35#!7)  @ )1E)@)ÀD  &&DP4G óÏ8<@DHLP73533533#3#3#33##"''3255##5#53535#535#535#35#35#35#33535#35#T$%%% .K9  ^9H- $7%%%%&&9%^&&9%%    6  6   ' A ' kÿêóÐ$FJ767&'76'3'67&'767#3#3#3267#"&55#'67#535#335Ô   /T3   N     É   H   2  @!-  0+"!!!?ÿëöÎGK733&'76767&'#3#3267#"&55#'67#535#'67&'767#5#RG<   11  7 //0    2QÈ"#       *+   1-"*   n**5ÿéò£HL733&'76767&'#3#3267#"&55#'67#535#5'67&'767#5#DK c'      44   9 .13   7Xœ&        ".    Y ÿéòÏ 37733#5##537'6'&'3#32767#"&55#'67#735#u^©_Fp ‹%  %! F@ ccÏ05""5,    HF*!  /3% KÿéòÏ 26733#5##537'6'&'3#3267#"&55#'67#735#”BsE7 Q  d   2 -??Ï23!#5-  JF*  03%"UÿéòÏ 26733#5##537'6'&'3#3267#"&55#'67#735#™>lA4 N  ` / *::Ï23!#5-  JF* 03%"eÿéõÏ 15733#5##537'6'&'3#3267#"&55#'67#735#£5\81  F  Q  +'++Ï32!#4-  JD+  14&"KÿìóÈ#4:@73#735#36533#&''67#&'33267#"&57&'''6b~~XX   (  ^  hȉe    R, 2  rÿéòÏ+08<@73533673#673267#"&55'67#535#67##5##535#35#~ $8 % $ "'2 8@@@@@¾         X[ [!1aÿéóÎ2:>B73533#3673#6732767#"&55'67#535##5##535#35#n! '>)" &/ (& ,)!zPPPPP½     kX X -UÿéóÏ19=A73533#3673#673267#"&55'67#535##5##535#35#b)  *B .' ,4  )+ 64)SSSSS¾       lX X,aÿïôÆ $(73#735#&''63#53535#35#35#vkkEE! H “ ""Æc?    KNNN<<<<< ÿðÄp $(73#735#&''665#3#53535#35#35#%ƒƒ_'   &{·++p@    :$$$@ÿîõ— $(73#735#&''67#3#53535#35#35#]zzT   #vµ++—N0   N<<<,,,,,pÿïòÅ $(73#735#'67&3#53535#35#35#€dd>>   /‚    ÅfF,  /PPP@@@@@`ÿîòÏ#'+/7&'3673#'67&'3#53535#35#35#‹  J  ~  D  3 ’"!Ï (  2GGG66666iÿîòÏ#'+/7&'3673#'67&'3#53535#35#35#‘  D  v B  2 ‰   Ï (  2GGG66666?ÿïõÎ #'+/73673#7&'&'''63#53535#35#35#NZ  *›!  a !8" #µ**A ;  'HHH77777yÿéóÈ/37;?C73#3#"''3267#3#7&'7&''75#535#'67#735#33533535#35#mHU   +"" " !!    I"È>n$U//€ ÿê~Ð$(,17&'73#536'67&'7'753#?5#275#*  Ch> ' . ,<- ZA   Ð  ,    iYGA=;€ÿïôÏ#'+/7&'3673#'67&'3#53535#35#35#ž  7 g :  * t    Ï '  3HHH77777YÿêöÈ"&*0673#3#3267#"&55#'67#535#735#35#&'7'6ov0;,  3 ,$82PPPP  e  ÈW.,  /3&.45)    JÿêòÈ"&*0673#3#3267#"&55#'67#535#735#35#&'7'6d~5B0   8 1 )?6ZZZZ  p ÈW.-  04'.45)    DÿëïÈ"&*0673#3#3267#"&55#'67#535#735#35#&'7'6Uˆ:I6  2 --D:eeee | ÈW.-  03'.45)    PÿêöÈ"&*0673#3#3267#"&55#'67#535#735#35#&'7'6iz3@/   5 /&;3VVVV  l  ÈW.-  04'.45)    LÿêëË 5;A73#735#35#3#"''3255'675#73#"''3255'675#&'7&'b~~XXXX%G  $4SH  $4D  c ËT20.j   j      \ÿêîË 5;A73#735#35#3#"''3255'675#'3#"''3255'675#&''&'lwwOOOO.@  -K@  -Y  ;  ËS11.j   "j   "     ÿéŒÉ 38=73#735#35#3#"''255'675#73#"''255'675#'7'iiCCCC9  'A9  '6 L ÉS110i   -i   -    I ëË 5;A73#735#35#3#"''3255'675#73#"''3255'675#&'7&'_{{VVVV"I  &7RJ  '7@  c  ËK-+)S  S   tÿêîË 5;A73#735#35#3#"''3255'675#73#"''3255'675#&'7&'gg@@@@5    "@5    "5  O  ËS11.j  $j  &     kÿêîË 5;A73#735#35#3#"''3255'675#73#"''3255'675#&'7&'{kkCCCC9    &C9    &9  T  ËS11.j   &j   &    5ÿéÂv 59=7#55#353#"''3255'675#73#"''3255'675#'7'¸p^LLk>   .I>   .?Qv88  ;   ;     TÿéñÈ 15973'7#3#33#"&''675##"''3255##535#35#`.++ (""  9‚  QQQQQÈ    # 3Ta  +y -[ÿéñÈ 15973'7#3#33#"&''675##"''3255##535#35#gˆ +(( & !  6}  LLLLLÈ   # 3Ta  ,y ,GÿéñÈ!26:73'67#3#33#"&''675##"''3255##535#35#U™3//,&$# ?‹  XXXXXÈ   # 4Ta  ,y ,gÿéñÈ"37;73'67#3#33#"&''6735##"''3255##535#35#o~$$$ $  4v  EEEEEÈ  # 3Ta  ,y ,xÿéñÈ 15973'7#3#33#"&''675##"''3255##535#35#€o    ,g  :::::È  # 3Ua  ,y -EÿéóÐ048<@D73533533#3#3#"''3255##5##5'67#535#35#35#33535#335X$$$$-uk      -$7$$ 3 S 3 ·n ((*S)0^7@-íÏ048<@D73533533#3#3#"''3255##5##5'67#535#35#35#33535#335R%$%%+vp   $%  .%9$$%%7$[%%7$ I > #C %  .LÏ 7#5'6:  ÏuU &[ÿéóÐ/37;?C73533533#3#3#"''3255##5##5'67#535#35#35#33535#335o%\Y   %0,E,¶n ((*] '^7lÿêòÐ048<@D73533533#3#3#"''3255##5##5'67#535#35#35#33535#335y TT    $, (?(¶ o  ))*b_7 ÿéöÐ&>D73673#3#3#&'#'67#5367#537#3##5'67#535'6&'X^d]g…+ &T&.?4?R’ NN!3 .!>P H%! ##¿    " H@9 <  SÿèôÏ%B73733#3#3#&'#'67#537#537#3#&'#5'67#535'6`:?B>CW  / +#*7b::  -: &½  N  #1eÿêöÏ !8>D7'6733#3327#"&547#3533#&'#5'67#7'6'&'ˆ  XdUUn [%##   G3  ª   *, 02**  (04   Vÿé÷Ï 5;A73#'63#3327#"'&5#3533#&'#5'67#7'6'&'vem  ffq _ ,)) )O4  Ï  BB U0'' .. 3  MÿéöÏ 4:@73#'63#3327#"'&5#3533#&'#5'67#7'6'&'qjs  jju  c -++ *U<  Ï  AAT/&& ..4  CÿéöÏ 5;A73#'63#3327#"'&5#3533#&'#5'67#7&'7'6gr{  pp}  j 1.. . QÏ  AAT0''/05  ÿéfÑ%)-7&'3&'73#67&'7&''5'635356   4    """Ñ   X/   Ž !3"@ÿéóÏ%)-173#3&'73#&'#'67#5367#53635#35#35#‹D;  <1 7> 25<4*\\\\\\Ï p   *$ p */0OÿéóÏ$(,073#3&'73#&''67#5367#53635#35#35#“=5 6+ 1A 4 06/%QQQQQQÏ p   (! p */0 ÿéõÏ&@FL7373#3#3#&'#'67#5367#5367#367&'#"''3265'&''6Vbgck ‹:% .G' .> 9BQ\   #$   ) +&(½  "  V    D    ZÿèõÏ(E736733#3#3#&'#'67#537#5367#3#&'#5'67#535'6g5;>=CU! + +%+2[ 77  & $+9!½  L &1 <ÿéñÐ'D73733#3#3#&'#'67#5367#5367#3#&'#5'67#535'6JBFJEKa! 9# "1(/>m!BB&" % $4B+¾  M  3lÿéóÐ)F736533#3#3#&'#'67#5367#5367#3#&'#5'67#535'6u/3626G  $  #",P // $0 ½    M  "/ ÿçô«'>D73673#3##3#&'#'67#5367#5367#3##5'67#535'6&'T^c]f‹3 &S' -B1;NMM3 +7L)6!' %œ     =42  3  gÿèôÏ(D736533#3#3#&'#'67#5367#537#3#&'#5'67#535'6o57:6;M  '  )"'2[11  !'1#¾  O'. ÿéðÐ $(,AG73533'73#3#5##5##535#35#33535#3353533##"''3255#&'a2 bTA@Ta!@@TA•@@TAº ,,  < ½ bc-.<     UÿêöÏ!%)-BH73533&'73#3#5##5##535#35#33535#3353533##"''3255#&'Y? C9&&8?&&9&_&&9&|m!!   m# » \\.-?     ^ÿêõÏ!%)-BH73533&'73#3#5##5##535#35#33535#3353533##"''3255#&'b; ?6##6;##6#Y##6#uf   f! » \\.-?     [ÿéò« $(,AG73533'73#3#5##5##535#35#33535#3353533##"''3255#&'^B# @:)):B));)d));)€i  i š   UU & ' 5    Qÿêöš $(,AG73533'73#3#5##5##535#35#33535#3353533##"''3255#&'UA E;(':A'':(b'':(€p""   p# Š  I I ! ,    ÿçï¯!%)-BH73533&'73#3#5##5##535#5#'#35#'353533##"''3255#&'e?  bS@@Se¸@@@S@S@eœ..  œ; œ  RT %  4    Mÿèò§!%)-BH73533&'73#3#5##5##535#5#'#35#'353533##"''3255#&'NG% H<))0 *&  Y ,)#!( #_ÿéôÏ4:73#'67'6753&'3#3#&''67#5365#'6'&'¼+a 31%#  % &!#  1Ï K=1 (&  \ , *$ ( !<ÿéôÐ$(,573#67&'#"''32655#53635#35#3'67#A8  +  8.!]]]]!:# %Ð [   (- Y[ 07;1%mÿëõÑ !'673#53635#35#35#&'&'''6733267#"&5£2c======$9 U   Ñ {{ 066,    #   ÿìœÐ !'873#53635#35#35#&'3&'''6733267#"&5G7l!GGGGGG* 8 Z   Ð || 165.    ! UÿïõÑ !2873#53635#35#35#&'7&''33267#"&5''6™;t&MMMMMM/8  E    Ñ ww .333    - ( ;ÿëô¦  0673#53635#35#35#&'7&''33267#"&5''6„E~$ZZZZZZ& Q  `  '  ¦dd & ( ' !     %  ÿëõ© !1773#53635#35#35#&'7&''33267#"&5''6lX¡4({{{{{{9 bz * 5%© hh ***%     !  _ÿëõÑ !'873#53635#35#35#&'&'''6733267#"&5œ8m"FFFFFF' >  ]    Ñ {{ 067-    # GÿéöÑ %-17#5##53&'7'67&'&''6#5##535#írB * K !+ '%5 < !!k$(A;UQB # +Ñ $  "" Q  3 'GÿéòÏ 73#3#"''3267#'665#53&'¤AeV B"DÏ\"B&5?Gÿéð˜73#3#"''3267#'67#53&' av  d) 3=k˜ @ &6!L  ÿôWÎ73533#7&'74''75#735#335   ¨&&a4  8???QÿéžÏ73&'73#3#"''3267#'655#]$#     ©j#QN0 0C0NÿéóÌ >T7'6655633#3'67#73267#"'"&55'75#'6553#'66533265#"&5Ý /?  H 225   ! : Ì.H: 6E;    '62 (56f0 0 ]ÿé¤Ï#'+73533#3#3##5#535#535#35#33535#335^  &  ¼_++_:=Tÿê­Ç"673#3#"''32765#'67#735#35#&''3#536aC$3 ,  !!!!   &6 ÇQY @ 03E   =§ÿéòÍ73'67#'63&''66»-      Í &,+'2_ÿèòÏ.8N733533##5##5#53#5'67#53673#&'##533&'#33533533##5#'67#**% #/=% $! =./Ïr   6 1// ŒÿéôÏ$(,73533#3673#3#5##5'67#535#35#35#ž  "/% "%%%%´$ u_oC\ÿé–Î 73&'73#3#3##5##535#\:22334²  VV3"ÿéòc73&'73#3#"''3265#'67#efˆr  c6 ?DM  - $  4•çÐ#)/7367&''67367&''6''67'6I   .j   .…mÐ * '    hî7#5##5î´(( ÿêèÒ;73#53'3673#5##53''667#53&'73#3#"''3267\Ï]" E 0©/ "1$;_\ƒx Ò %  ""x##  /]ÿéðÑ =73#53&'3673#5##53&'3#3#"''3267#'667#53&'ª:†8 !h$46RL  9 "$>Ñ $  "" +  1 $""ÿéîŸ:73&'73#3#5##53&'#367#3&'73#3#"''3267#'67#Ud'8µ9$G>T;Z^‰~ m* / 0 $$  ; $   ,ÿèí¬:73#3#5##53&'#53&'37#3&'73#3#"''3267#'667#„X* ;´A-[4 J9PSwx "i2$/¬ !! 7A  %  QÿéñÐ 37#5##53&'73&'73#3#3##5#535#53&'736ìu@S?>“f,GCCCCF(  ¹,, 2   ,, kÿéïÎ 37#5##53&'73&'73#3#3##5#535#53&'736í\5C00uS"844447  ¹,, 4   ++ DÿêðÏ,26:7#5#3&'73#3#3#3##5'67##5375#5#35#ì> ",5////8y 18+....´+  q'0 [((NÿêðÏ,26:7#5#3&'73#3#3#3##5'67##53675#5#35#î8)1,,,,4q 04!****´+  f%-0  \ '(fÿêðÏ,26:7#5#3'73#3#3#3##5'67##53675##5#35#ï0 $*&&&&-c % ."####´+   q"/  \'( ÿéê¤,26:7#5#3'73#3#3#3##5'67##536735#3535êc *KPKKKKS© ;2P9C;CCC’"  \# B " ÿéê-37;7#5#3&'73#3#3#3##5'67##536735#3535êc +HMHHHHP© <2P9F>FFF"  Y#A   ÿèzÐ+/377#5#3&'73#3#3#3##5'67##53675#5#35#z! H )º( v%(, _((ÿéÑ (0473#5##53'3533#3#3##5#535#535##5##535#L-J/$$$&&//00''$[666Ñ ##7      LN P1  ÿèˆÇ9?E73#3#"''3267'6765#735#73#3#"''3267'6765#735#&'7&'8 #    '%?9 #    '&6 K Ç:h!   <:h!  <_   ÿé€Ð)159=A77&'74''535633#"''3267#'67##5##535#33535#35#5  ;    6B*B*Ð .   LB 65 -Xq q+D ÿéÏ 0DJP7&'''667&'7''63#"''255'675#'3#"''255'675#&''&'[      1    71    B +  Ï !   )j   j  "     v|É*7333'67##"''3255'67#53&'767#h    *4  NÉ       ~sòÏ73#&''67&''667#—G    *Ï     ÿëzÇ .473#3#"''2765#'67#735#35#&''6'33#Y6I C  5555  '4EÇR Y> 12H    ,gÿéóÎ 17'2'6'&''&'3#35#535#53#5##56æ 6M@9 /    /""X$$%8XÎ  " #""… ~MÿèóÎ 17'2'6'&''&'3#35#535#53#5##56å @\LE@    8++p//0Cp Î  ##""„ tÿèóÎ 17'2'6'&''&'3#35#535#53#5##56æ 0G91  &    *L 3LÎ  " #""„  ÿéƒÐ $9?E73#53&'&''6'67&3533##"''3255#'67&'K (n1    > Y3++  3 Q  Ð  *       ? <# wòÐ!'-37'6'#3#3#3#''67#53567'#7'6'6Ø 707UQQQQ[ -3 '¦ ;3# "9:Ð       2H0   ÿîõË)/57'6#5353#3#3#3#67&'7&''67'6'6Þ %- (†#jWPPPP\I!# -2Á $+ '* < 6Ë%iu$  q'-oòÐ")/57'6'#3#3#3#&''67#53567&'#7'6'6Ö 6-5UQQQQ[ ,3 # ¤ 5/$ #6 ;Ð       6O 3      ÿçòs"?EKQ767'7&''667&'7&''6'67&'77&''67''6'6'67'6j !" =C"R  ^  -;A1'@7%"%S .26 /?DM ;ips                ÿèñy #DH73533533#735#33533535#335335#3#67&'#67'5#'6553#$:(;Á((:()((:()»¾N    @) #œœs0    ! _ÿéòÏ/373533#3#535#'67#53#67&'67'735#q000;Š;0 o1   4 II½  99   : 0  _eÿéòÏ/373533#3#535#'67#53#67&'67'735#w...8„9. l.   0 FF¼Ž 99   8/  _ ÿèõÏ/373533#3#535#3#67&'27'5'67#735#$RRRhæiR­F    P /#  +#0……½6<   ; $  '  Kÿÿî¡!.73533#3#535#3##5'67#735#67&'Z999G F9A )YY9  –   %+, "  ÿèó“/373533#3#535#3#67&'#7'5'67#735#$SSShäiS ¥@ O7%  &$*€€ˆ   &/   1     TÿéóÐ0473533#3#535#3#67&&'#7'5'67#735#g444A–A4x,    ! PP¾48  ( '  ' AÿêóÏ1573533#3#535#3#67&&'#67'5'67#735#[888F¡G8~.  #!   "VV½48   ' +  )  QÿéóÎ0473533#3#535#3#67&'#67'5'67#735#p211:ˆ;2p)  2    "JJ¼19  +. -  , hÿéöÈ/38<73533533#3#67&'#67'5#'66553'#335#35#’)   '   kGGH$  8: G." 2#`9(V GÿéõÈ'+/39=73#3#67&'#67'5#'66553'#33533535#35#Ï":   4  „bbbL/ 8; G,$ 1$`9(E WÿéóÈ&*.28<73#3#67&'#67'5#'6553'#33533535#35#Ó4 /   ~WWWC*    18  F,# ,9m9(D aÿéòÈ.27;73533533#3#67&'#67'5#'6553'#335#35#„.  +   uPPQ&    9; G+% 4A_9(V TÿéóÇ.28<73533533#3#67&'#67'5#'6553'#335#35#{5 /  €ZZ[+Ž    17  E," ,9l9(V pÿéòÐ "&*73#53&'3#735##"''3255##53#735#²72cc??_   YBBÐ -1/[  Dbt!5[ÿéñÏ!%)A73&'73#3#3#3##5'65#5#5##533#"''3267#7#'6‚$*1****2i 2#####l   !). 'Ï     B    /) <  ÿéìÐ%)-E73&'73#3#3#3##5'65#5#35##533#"''3267#7#'6?7 KLDDDDN« #VGJJJJ.¤ 2 9 G@ 8Ï  Q   ! A#1 ÿéªÏ,B73#&'#5'675#535'23#5'675#5373673267#"&5‘ AA#  (>>;$  >   ÏLG? 'K=K      aÿæôÍ,A73#&'#5'675#535'23#5'675#5373673267#"&5Ú ;;' $ "668!  9   ÍI-!AB$,H@J     DÿéôÍ,A73#&'#5'675#535'23#5'675#5373267#"&5536Û "JJ0 +& /EEB)!!u    ÍB3'E@$+I9Q    ?oÿéòÏ,B73#&'#5'675#535'23#5'675#5373265#"&5536Ù 33!  "33/  X   ÏK)@>!&N8S    >FÿòóÏ @7'67&'&''667&'763#3#3673#53&'735#535#ˆ $"I   !# -$) $  Go/BB  %¨$ >>,Ï      =* * ÿðõÏ 9?7'67&'&''67&'763#3#3673#535#535#&'^ *++j'& &' /1 >-#F <"a=[[  7ßeZZ>  Ï           :++,  _ÿéšÐ 7#5'673#~  Ð ¤v5ž sÿéóÊ -273#735#35#3#735#3353353&''67&'#367€ggCCCCxx"dp $  !  ÊE* ' '41   mÿïôÑ6:>73&'73673#3#3#33#537#537#'67#5367#537#37#37#{ 1-1AHJy#   '"&,:! °    K  x:VÿïôÑ6:>73&'73673#3#3#33#537#537#'67#5367#5367#37#37#j    :59LUWŠ) $-(-4A&& (&°   K x:ÿéòÑ%AJ73673#3#3#535#535#53&'&'367&'#"''3255#3'67#T 1 7`UUgàfUU_600//e ! 4 PU4-=Ñ      ^    "$ 8 # 7ÿéôÑ$@I73673#3#3#535#535#53&'&'367&'#"''3255#3'67#ƒ  'C==I§J<22;(&$$%_ " 1Dz9/ ! $²      ;     " @ 2 >ÿè÷Î >W7'655633#3'67#7325667##"&55'75#'65533265#"&55#'6655ç W7'6556'6553533#3'67#3#3325265##"&=#33265#"&55#'6675æ 7I O!+++8 *  4    Î GF; 7=Xm0% &,C(    "6. '<ÿè·Ï 7;L7'6655633#3'67#73267#"&55'65535#7'5#'6655¦ "-  5 $     -  Ï /F9 5E:    41 (3:&+!  $1 §ÿèôÏ73'67#'6'6553&Ä#     Ï ! y&+>  ÿè›Ï 48H7'655633#3'67#73267#"&55'65535#7'5#'655‰ -;@../    :  Ï HF: 8>$ 6.$  1     .$KÿçíË#8<B73#353#5#'67#5335#536'&'7#"''3255#'665535#35# %' ! 0 "”    ËI-l- :ÿçíË#7;A73#353#5#'67#5335#536'&'7#"''3255#'65535#35#ˆ *, $ ); (  £ $!!"!ËI-l-  ÿèëÐ#7;A73#353#5#'67#5335#536'&'3#"''3255#'65535#35#e 50 (&3G 3  Ð  6 4454ÐG3V1%E2GÄ  51$&TT<*f+ _ÿêîË!59?73673#353#'67#5335#7&'7#'62655#'65535#35#_+      Œ žG1A0 &A1G= 50( 8=`:(d)JëÐ%8<B73673#353#'67#533655#7&'##'3255#'65535#35#L3  $" $ #  ˜  §)9/  !9)8  —  "$ "-X1 O JÿèôÐEIN733#3'67#73267#"&553&'73#&''67&'#'665535#67–88G6*, &.:#   6# Ð      & )M%K hÿéòÐJ733#3'67#73265#"&55'75#3'73#&''67&'767#'6553¤$$:&   %+   B +Ð     D      % -3NÿëõÐ048<@73#3#53&'#53&'367##53#327267##"&55#;5##;5#Y&=Þ<$Z 9PS¼U  2 ??AA??AAÐ    > ‡WW  X!GÿìõÐ-159=73#3#53&'#53&'367#3#3267#"&55#735#33535#335žD0¬.<#;2>  $<((;+f((;+Ð   ; -U  33]ÿêøÑ+/37;733#3#53&'#53367##53#3267#"&575#'#33535#œ=*—'8 66ƒ9 %:&""""&&Ñ / †VV N ÿìó¡/37;?73&'73#3#53&'#367#3#336767#"&55#735#33535#335ZY#<Þ:"C< X.¥K # 31G44G844G8Ž    $H   , ) ^ÿîóÊ047#3#533533##5##5#533673#3#5'67#35#ð€ƒ•0)),>>>[R.C!?     / ËN/,4## +     ÿððÐ/37;735#5#53533533##3#3#3#3#535#535#535#75#35#335$R155O550PP[[TTfßeRR\\RƒO!??S=€  2    Q ?TÿïòÏ/37;73533533##3#3#3#3#535#535#535#535#5#5#35#335^6(::==77EžF22::77!d6$$7(¾11?5ÿîî§/37;73533533##3#3#3#3#535#535#535#535#5#5#35#335?$<$$)DDGGCCR¹UCCIIEE'$s<22D0œ  (      (  3 &–Ð048<733533##3#3#3#7'75#535#535#535#5#53#335#335+,0000,,-6A8..3333 >,,> 3Ð  &  &  -  ÿïƒÎ159=73533533##3#3#3#67'75#535#535#535#5#5#35#335 $..--&&/90**..--M$-½ 2      2  >Fÿîô /37;73533533##3#3#3#3#535#535#535#535#5#5#35#335HG.@@EE??N®N@@GG@@.xG..@.“  )      )  4 ÿíòœ/37;73533533##3#3#3#3#535#535#535#535#5#5#35#3351V226QQ\\VViähVV^^RR41šV@@S@” *      *  2  ÿì“Ï159=73533533##3#3#3#67'75#535#535#535#5#5#35#335 '1133--9D9,,22//V'/» /    / ;uÿïòÏ/37;73533533##3#3#3#3#535#535#535#535#5#5#35#335u(0011))4}6))22.. R(.¾22 @ÿéñ£  $(73#53'3#735##"''3255##53#735#gád?££{{§ ©-vvQQ£  &+ &F 2IY) ÿç‚¡ "&*73&'73#3#735##"''3255##53#735#1.rXX44R  N 22  % F  0L]' ÿéóŒ "&*73&'73#3#735##"''3255##53#735#giå(””ll   ¨1llHH€ # =  )CR& ÿè‹Ï "&*73#53&'3#735##"''3255##53#735#N2}5XX//Q   N77Ï  -40\  Fct5`ÿéòÐ "&*73#53&'3#735##"''3255##53#735#ª>’<$mmIIk   g$FF""Ð -1/[  Dbt!5RÿèöÏ676767#535#5673#35335#535#53#3&''67&'y i67$$.78'/"%  6 [ ]]^"  BÿèôÎ473#35335#535#53#3&''67&'767#535#56|""--"""5@9 & /$!* $ s@@Æ]]]   Z<íÔ  $(73'73#3#735##"''3255##53#735#adÚ)ŠŠff˜   ¥0jjEEÆ! 5 ":I$ ÿéóŸ "&*73#53&'3#735##"''3255##53#735#kåd9——qq¤   ¯7ggEEŸ&+'=  )FU+ÿéíˆ "&*73&'73#3#735##"''3255##53#735#abØ"””llœ    ¨1llHH|# = )BQ$ ÿçíª !%)73#53'3#735##"''3255##53#735#†_Ùd;““kk›  ¥1jjFFª  (+ 'J  5N^+ Qÿèí¢ !%)73'73#3#735##"''3255##53#735#QCEœooHHr   r$PP--“  ) %G  4O^* )è°  $(73#53'3#735##"''3255##53#735#‡ZÒa@••mmœ  £(zzVV°! ) 0<! ÿ錤 "&*73&'73#3#735##"''3255##53#735#27}XX44U    P::” )&J  5O_) ÿéÐ "&*73#53&'3#735##"''3255##53#735#T65 bb==]   WAAÐ -1/[  Dbt!5QÿéòÐ "&*73#53&'3#735##"''3255##53#735#¡D¡F(vvRRu  q&LL((Ð .1/\  Fbt!5ÿèòÑ !%)73#53'3#735##"''3255##53#735#‚eäg<œœtt¤  «1ppJJÑ  -41]  Hct 6ÿé{Ñ "&*73#53&'3#735##"''3255##53#735#K+i*QQ..J   D11Ñ .32[  Fbs 5eÿéòÐ "&*73#53&'3#735##"''3255##53#735#®;;"iiEEf  a!DD Ð -1/[  Dbt!5\ÿéñÏ'/37;?76767&'7&''73#"''3267#'67##5##535#33535#35#\!   IL    @_&&9&_&&9&&¼  1  TF 0=1Vr r+CcÿéñÏ&.26:>7677&'7&''73#"''3267#'67##5##535#33535#35#c  FH    =Z$$7#Z$$7##¼  1  TF,>1Vr r+CpÿéïÐ&.26:>767&'7''56#53#"''3267#'6#5##535#33535#35#ž   2@ /P1P1Ð 0   MF.2 )q q+D0ÿîí¤!)-1573533#3#67&'7&''67#535#3#53535#35#35#L>==Nf $':@4P>’½,+•    U///?ÿíòÏ!)-1573533#3#67&'7&''67#535#3#53535#35#35#]888DY "$5<*D8³'(¸    h>>>-----˜ÿîõÎ (,0473533#3#67&'7''67#535#3#53535#35#35#¥ #   "J] ¶   hCCC55555<ÿéžÌ 'CGVZ`73353353#73533#3#3##5#535#535#73533#3#3##5#535#535#3#3#7'7&'#735#767#A  Y  &  8__O %.--ÈVZZUaV      Y )   5  ÿéiÏ7367&''65''61 '  Ï3 ) /D:,! ^ÿêöÏ"73#&''67#5353533655#335å>' %,2 :000§N14/ #-N((N ** <_ÿîõ½7'67#53&3#3#535#¬# HXo  [u3;@.q 4 77`ÿéöÃ473#67&'#"''32654''67''67&''67#o|:    !   $ (! " ",à  $  "'!^ÿéôÏ:73&''67&''667#3533#3#3##5#535#535#ŽG  $)" ,>*422..<<??..4Ï       >eÿêóÑ -73&'73#3#735#33##"''3255#53567#k86… qqLLx<<  ??X½ 43   \ÿéõÌ&.26:>73673#&'#5'67#53&'735'2##53#'#;5##;5#à 81 "# !.4=2Y}5$$$$$$$$Ì   (*  ÍggW$WÿéôÎ!8N7#53533#&'#5'67'6'&'35#53533#3##5#''3'67#&''6Ž,==. Y  I?$$() 1   “** )* J  Š((""J ,28 XÿèôÎ1K73533#3#535#3533#3#535#'3533#67'75#3#3267#"&55#'67#l222<ˆ92@LK #“-   0 '&¾5 2! $2  # ôÐ(,0473533533#3#3#&'#'67#5367#535#35#35#35#;;;;#_ ƒ0 ) G% '@1";N;;"€€€€Ã  I   I ( ' VÿèôÏ(,0473533533#3#3#&''67#5367#535#35#35#35#]##$$6D:- 02 ,195#7##XXXX¼R  %'   R40JÿéöÏ'+/373533533#3#3#&''67#5367#535#35#35#35#T((((8K>. 5<4;C6(;((\\\\¼R '*   R40bÿéöÏ'+/373533533#3#3#&''67#5367#535#35#35#35#k!!!!2?4( -0 (/6-!4!!LLLL¼R %'   R50 ÿévÈ #'+/73#735#73#735#3#3##5#535#735#33535#335..%//A\&""//&$8$È7 62V%%35TÿéòÐ>_73533#3#&''67#537#'67#5365#53533#3#&33#3##5#535#'67#5373#3`  i    644AAJJ: (V_ #¿   /     -     ÿèòÈ!'-39?73#3#3#535#535#735#&'735'6'67&''&'7&'&³PRReÜdRRP<<  B<  vµ `  N  È[9 99 ‚      ÿèòÈ#)/5;7#3#3#535#535#55##5#35335'67&''&'7&'ÙPRReÜdRRPŸ<<<<›µ `  N  È[[%u     ÿéõÏ$7#5#'667##537333267#"&5ï,  ¤6$EICA$6++GV DÿêíÇ"7#'67#'67#533#"''32765#'6µ94%<'[{+/k   DBd4&"*"&k! EL-)TÿéëÇ"7#'67#533#"''32765#'67#'6‹$9$Ut'-d    <8  0,d"&i# ?L/)B5&#mÿéìÆ"7#'67#533#"''32767#'67#'6™0Fb!$Q    1.  &#d#&i# AK0*A4'#ÿérÐ7#5##5##535335#33535#35#r(((=(ª€ MM €&&1 R ÿògÏ 7#5##53675#35g...®µ¼ M::::ˆÿéíÆ"7#'67#533#"'532765#'67#'6¨%7O?  %#  d#&l JK0+A5& #Xÿì“Ë 7&'&''6i   & Ë  ,  0 /-*bÿéíÇ"7#'67#533#"''32767#'67#'6’4"Om$)[    74  *&d"&l  >L/)B3%!ÿéäÇ!%7#"''32655##5&'''63#735#ä  ž€/bb<<ÇÄ ¬ËÞ & &O+RÿéìÈ $7#"''3255##5'67&'3#735#ì  s6  7  *HH""ÈÅ  ®Ìß  4O/eÿéíÈ $7#"''3255##5&'''63#735#í  `W  @@ÈÅ  ®Ìß  &O/MÿéôÎ67'673#3#535#5367#'7#533327#"''67&'º ' MP""&;",,1   ° 6;;. 67$UÿéòÎ57'673#3#535#5367#'7#533327#"''67&'º $ HL!#7(*.   ° 4<<0 !68% ÿêõ‰4735'673#3#535#67#'7#53333#"''67&'l6+7. 660q-6D .%1J#) JJCS  R        ÿèôÂ767#'7#53333#"''67&'+ 1-7O-OIAS O(5:( ÿéöÂ767#'7#5333#"''67&'& ($1H$TKDV   S(4># míÎ73#3#535#535'6Ù662w166* EÎ2;;/0ÿùÎw673#3#535#535#'2'3333#"''67&'767#'7#º $$O$$ $a4  4.)?  w     TÿòôÎ73533#3#3#535#535#'6r%9966?—D88+ Á667667 (MÿòòÎ73533#3#3#535#535#'6m&;;88A›F::, Á667667 )lÿòòÎ7'673533#3#3#535#535--++2}7--…(2667667€ðÎ7'673533#3#3#535#535› %%""*n1%%‘ !$++,,,, gîÐ73533#3#3#535#535#'6/=[[OOaÛgLLE  Ð   ÿñðƒ73533#3#3#535#535#'65:TTJJ`ÛfKKC  €ï73533#3#3#535#535#'6•##!!&d,$$ ‹  zÿòóÎ73533#3#3#535#535#'6((&&-s2''¾666666 )~ÿóóÎ73533#3#3#535#535#'6’&&$$+g)&&¾ 666666 %§ôÏ73533#3#3#535#535#'6· C ¾ ++,++,   ÿèîÐ#'+/5;733673#5##53&'733#735#3#735#35#35#'67&'u -².  A™™qq¬¬„„„„„„( 'c%% %&Ð  )* ( &Z? $ #      EÿèñÏ#'+/5;733673#5##53&'733#735#3#735#35#35#&'''6’   }!  .llGG!‹‹ddddddH" $ , *Ï '(  ) $^C " "   ÿè¦Ñ=Y]aei73533#3#&''67#5347#733#3#&''67#5347#533533#3#3##5#535#535#35#33535#335  _  `9<<66AACC669##6#Y##6#Ä       T  ?  ? ! RÿîñË!'-39?O73#3#3#535#535#735#&'735'6'67&'7&''&'3533#3#535#^‡:66C˜B55:((  5'  V 0` F566FŸF5ËG    # ##  d       " ^ÿîñË!'-39?O73#3#3#535#535#735#&'735'6'67&'7&''&'3533#3#535#g€611==117$$2#O /YA111@“@1ËG    # ##  d       " dÿïñË!'-39?O73#3#3#535#535#735#&'735'6'67&'7&''&'3533#3#535#ny3//:…9..4"" 0!K +V?.//==.ËG    %  %%  c       $\ÿèòÐ159=AQ73#'6553&'3#3#3#&'7#'67#535#535#735#33535#3353533#3#535#³3u=d)&&- '  -(()*A*P&''/q0&Ð PB3 4<[&>       & " b4ÿéòÐ159=AQ73#'6553&'3#3#3#&'7#'67#535#535#735#33535#3353533#3#535#¥AŽH#x2119 & !8223 3 S 3 d000:Š<0Ð OA2 3=Z'@ ' " d   EÿéòÐ159=AQ73#'6553&'3#3#3#&'7#'67#535#535#735#33535#3353533#3#535#­;€A n.,,3  # 3--..J.Z,,,5}7,Ð OC1 3<['@ ' " d   `kóÐ873533#3#&''67#5365#'67#5365#53533#3#&i  f    Á    )  _ÿèñg 73#735#35#35#'67&'lxxRRRRRR K gY? # #     KÿíòÏ'-3;U7367&''667367&''66''67'6#5##53#3#3&'73#535#535#s    P     i  T  I€o/33™B33.Ï      %       ?00!  ÿéðÏ'+/37=C73##5#'6655673##5#'665563#735#35#35#'67&'p !+Q  4’ !-T% 5™°°ˆˆˆˆˆˆ! 2 .^', .)Ï$  UfH ( ( !    WÿèòÍ%)-15;A73##5#'655673##5#'65563#735#35#35#'67&'Ÿ / "a / !hZZZZZZ GÍ $$ %  $$ %TdG % &     aÿèòÍ%)-15;A73##5#'655673##5#'65563#735#35#35#'67&'¢ ,  ] ,  cyyTTTTTT DÍ %% %  %% %TdG % &      ÿëòÏ5Bj73#"''3265#'67#'6'3#&'#5'67#535'2&''6367&'#"''32655'67&'767™C      $ #  $-#*B (- 80%E H"    #%   +"   Ï A)*   $$S         XÿéóÐ7Dci73#'#5'67#535'273#"''3267#'67#'6&''6367&'#"''3255'67'&'š     ;*    % "## 0       Ð"   ; '% 6           ÿèô¥1D\bh73##5'67#535'273#"''3265#'67#'67&''67&'367&'#"''325'&''6l ''  !+#+UE      . 25 94/7 ,+ % %$#)+! 3¥ '   5 !     ,     ,    ÿêîÇ&*=A73#3#5'67#35#3#3#5##5'67#35#'3#3#5##5'67#35#Î}—*6:pp1i9 =* &**—i9 <* &**Ç9$ 77M .B7M .Bÿéï&*=A73#3#5'67#35#3#3#5##5'67#35#73#3#5##5'67#35#Í‚ {–(3:pp@h<<( (((Ii;<( )(( 1  )*B (2. B (2 ÿéóÊ#'+/T73#3#3#&'#'67#535#535#735#35#5#35#367&'#"''3255'67&'77*­&00<0! *N) !,=00&ˆˆˆˆb;;;  !    (   ÊI     , ' *  %     RÿéõÈ#'+/T73#3#3#&'#'67#535#535#735#35#5#35#367&'#"''3255'67&'767iu$$,% * %)%%PPPP:%%%  !   ÈC ) ' **     @ÿé÷É#'+/V73#3#3#&'#'67#535#535#735#35#5#35#367&'#"''3255'67&'767Y€((0' !1# /4))ZZZZC(((     "ÉD ) & ))     ^ÿéöÈ#'+/V73#3#3#&'#'67#535#535#735#35#5#35#367&'#"''3255'67&'767tl&  $  $GGGG4   ÈC ) ' **       fÿéöÉ#'+/S73#3#3#&'#'67#535#535#735#35#5#35#367&'#"''3255'67&'77yl#! " #HHHH3    ÉD ) & ))    nÿéöÉ#'+/T73#3#3#&'#'67#535#535#735#35#5#35#367&'#"''3255'67'767~f     BBBB/  ÉD ) & ))      UÿéóÆ #'+37;?C73#735#33535#335#5##535#33535#35#'#5##535#33535#35#h||##5#X##5#!) ) 7) ) ÆT262xx-L(ËE* % $B( # (B( # BëË #'+/37;73#735#33535#3353#735#33535#335'3#735#33535#335,¦¦66I7€66I79dd(>(Ãcc(>(ËB( # "?& ! '?& ! ÿéìÈ #'+37;?C73#735#33535#335#5##535#33535#35#'#5##535#33535#35#*««88K8ƒ88K8+=(=(N=(=(ÈW450{ {/K@{ {/Kÿêîœ #'+37;?C73#735#33535#335#5##535#33535#35#7#5##535#33535#35#,©©88K8ƒ88K8GC*C*ŸC+C+œL-.*Z Z"01Z Z"0Fê¬ #'+/37;73#735#33535#3353#735#33535#33573#735#33535#335,¥¥88I888I8©aa&=&%``'>'¬1..\ÿéóÆ #'+37;?C73#735#33535#335#5##535#33535#35#'#5##535#33535#35#nww 2!S 2! &  &  5&  &  ÆT262xx-L   9    j5  _d__™  *0   6* 0 O   ÿê_Ï &,73#"''3255#'67#5353635#&'&'6 """ Ï ² Q=, -2KZ: H ÿçõ¯ (=MR73&'73#67#5&'7'567&'3#"''3255#'67#3353#5#'66535#gdà\    m &  ¿J    ‚ˆ „ƒŸ    '. 0  -$  ( [  ÿçõ„&;KP73&'73#7'567&'67#5&''3#"''3255#'67#3353#5#'66735#e eà½&  h   OJ    „Ž  ‡„y   !  ,  !  H  iÿé÷Ñ%7FL73#53'7#5&'67&'67''3##'3267#'67#3353#5#'6535#°:…7  -  V-  AD BAÑ  !   ,2  #"  =/  7i%  /ÿäó_ *=LQ73#53&'67#5&'7&'#67'56#3#"''327#'67#3353#5#'6635#‘Y½Q l   –?    nv  po_           5  ÿçõÐ'<KO73#53'67#5&'7'567&'3#"''3255#'67#3353#5#'6735#zdÛ`   l #  ¼J    ‚‡„‚Ð    **#  : % 71 % : g'.YÿèòÒ+/37;?EK7#35#53533533#3#3#535#'6553&'75#35#33535#335'67&'ðs/*f*2;*B*8 9¿1  LL @4 2>[ C<-"   ÿè¢Ò+/37;?EK7#35#53533533#3#3#535#'6553&'75#35#33535#335'67&'¡u1*g*2; ,D,: :¿1  LL C1 4=[ C<-"   \ñÐ*.26:>DJ7#35#53533533#3#3#535#'6553'735#35#33535#335'67&'ñq-%\%/7';'2 0Ä3 AA ;. .7RDC #   LÿèôÒ+/37;?EK7#35#53533533#3#3#535#'6553&'75#35#33535#335'67&'ò€  7/p/9B /L/> >¿1  LL @4 3=[ C<-"   NÿèôÒ,048<@FL7#35#53533533#3#3#535#'66553&'75#35#33535#335'67&'ò} 6.n.7 @ /K/= =¿1  LL A4 0"\ C<-"   7ÿèôÒ*.26:>DJ7#35#53533533#3#3#535#'6553'75#35#33535#335'67&'òŽ%"%?5}5>H """5"W""5"C" C¿1  LL A3 3=[  C<-"   UÿèôÑ*.26:>DJ7#35#53533533#3#3#535#'6553'75#35#33535#335'67&'òx4,j,4< ,F,; <¿1  LL B2 3>[  C<-"   MÿçªÏ/37;?CGN7367#535#5#53535333##3#3&''67&'7#735#33535#33535#33567N""$&     +  0#!  8,   ,  € ) F; ÿé˜Ñ 57'2'6'&''&'#"''3255'67567#53„ /D75  %!  9  TpÑ  ] ) "  ÿê‰Î!18P7#5'67#53533#&7'6'&'3'67&''667#35#53533#3##5#'V !//#  >     0 †"$  ++ S  b,0   (( ÿêŽÎ!17M7#5'67#53533#&'&'7'6'673'67&767#7335#53533#3##5#W "00# ?  Y P  3   % ‡#%  ++ T    ” "P   ((!! ÿèŠÐ #'+/5;73533##5#3533533##5##5#3#735#35#35#'67&'*,,* ,,hhBBBBBB  8 À gI *) "   E ðÐ"8O7'63533##5'67#7&'&'3'67#&''6#'735#53533#3##Ñ sAAA# * ^ F"! 1   c" $$Ð  ##21 4 0  !' &  6 ÿérÐ"&3@73#3#'6553&'5##5#35#33533567'533367'533C&L  %    '  Ð ;>+ 49Y =,]  V  VJÿéóÀ73&''67&'#367Y~%, +- .!  ÀP9"$$$1F<)05MÿîõÑ $73#'6333267##"&5477#‡bl'dC#  +DDÑ " @  ASÿëôÏ73267#"&''7&'37&'íX (0 --!  “ ;8 >I ))C GÿéùÄ'73'#"''327&''67&'765#67#[† (   42  0> .Ä`22' 2'#7&(W )L5LÿèøÐ 7&''6&'3'67#š%+ &(&3!  4†$ *pÐ&*)# *?0MÿéçÉ7#"''3255#'665535#35#ç  WSSTSÉÅ  /," 1$_?,k, kÿéëÉ7#"''3255#'665535#35#ë  E CCCCÉà ,,# 1%`?.n.i¼ 7##55#35i>>**¼£¸I6666+ÿèÕM 7#5##535#35#Õ‚‚‚‚‚Me e%7 ÿæéÊ%)-73#3#"''3265#'67#'67#'67#735#35#-©t — OK!!? 7*)Ê] L4<% 0- 79OÿéòÏ73#3##5#535#'6wi9>>LL$ Ï BbbB!ÿéîL73533#3##5#535#'6@/RR``hh? I   ÿêôÏ73533#3##5#535#'6A4TTccpp= !Ç00<SS< *ÿéì73533#3##5#535#'6C.HH``dd9 Œ ###88# iÿéóÏ733#3##5#535#'673¬++33==!  Ï1=RR= $.YÿèîÏ"'73673#"''3265##5'67#'67735¤7  #& *" .##Ï"7E(hZ0 ) ($H6TVòÏ7&'3265#"&''7&'7º  ;D   ( 85Ï      ÿéîƒ73533#3##5#535#'6:8YY``iiA   55  rÿéèÐ 73#5##53635#35# <N$NNNNÐ ÄÅ^:‡:mÿçóÐ+17#673267#"''67&'#67'53&'37&'ð8  !$ 6  ¦: 1*!Hn  *(   FÿéôÏ73533#3##5#535#'6q#<*PPffff5 É ZÿñòÎ#73533#33#53535#35#35#35#35#g988-˜-9 FFFFFFFF·‹‹;665]ÿìõÐ>DJ73673#3#&'#3#"''3267#3267#"&55'67#5367#7&'7'6l-:?N * J  +)) &([¦  *8 B  5   ^ÿèöÏ*0673533#3'67#535#&'36533#'67#7&'&'q///8 q9/ C8>; ,; Z ¸ 1  5*'&>   <ÿèîT73533#3##5#535#'6N!IIaaii/ Q!!  hÿéïÇ&,7#"''3255#353#5335##536735#&'ï  ( J(4a ÇÆ  pK\ÿéõÏ"&8<@73#&'#5'67#5367'23&'#35##"''32655##53#735#Ø I# V )"25 22X   WBB!!Ï   @-)Q ;Uf.\ÿèöÐ`f73673#3#3#535#535#53&'3&'33#67327#"''67&'#7#"''3255'75#535'67&' 811:Œ=118 '-+  !   #"UÐ      _   %      ÿèîp73533#3##5#535#'6D+IIaaii7 l ,, WÿóõÂ73#3#3#535#535#`?;;EžE::<ÂKKKKQÿéîÅ!73#3#"''3267##5#735#3355#\„;I  3@ 45I';#ÅI 5 aaD$$$V RÿìøÏ$7335#53533#353#3267#"&55#^%CCII&9   ( 7ŠAR RAS/ 5GÿîøÐ"7&'332767#"&57&'#'6“$ Q  bÐ.‰ }'. /&7-+ ÿèïÐ"'73673#3&''67&'#'67#67Fƒˆq. )%%2 0 ( 7A`   '   "4$7B1[ÿçøÏ*733327#"&547#&''67&'767#53Ž4  "$  Ï,6&$#&"&6 )! 67 DÿõòÁ73#33#537#537#5#P”J G®' &) 5t6Á&C!EÿéõÏ73533#3#&''67#53655#]788EE . 07 ;=A7¤++<:5 $2MÿèõÏ7367&''>''6—!+ 1= " ' ÏX  !=';B-633# $ZÿèóÏ7367&''>''6œ ( ,6  $ ÏX !=&:A.723# $dÿèìÏ%735#53533#3#3#"''3267##5#535#l...8833> +66.€; (VVŽÿèöÏ7367&''>''6º  #   Ïa A 24.82& !@ÿèöÏ067367&''>'3#&'#5'67#535'6'6º  # ,    !! %3  Ïa A 24.8`' db,""& ! ÿéôÏ73&''6676''67'6uO JW 0-9 žÏH [$*BK!4!2/! !'/" !ÿçöµ73&'#'>''67'6v.B B(S (/0•µ2 I@?!.;+ % -TõÒ73&''67#'6d]1$&73E j9U 6Ò   4 ÿçô7367&''66''6w  + HU<)7*?<<# )gÿèôÏ73533#&'#5'67#r181! #*¡..I <‚5#*AfÿéíÃ7#"''3255##53#735#í  a&<<ÿ  §ÇÚ7b@fÿéôÂ'73#3#"''3255#&''67##5365#fŽ=:  ' $9?‹  s  1’¥_ÿçô 73#735#&'''6xii??:)ÂzTv & %" -eÿêóÌ!'73##"''3255#535'2'6'&'ß >>  ==9.  M  ÌXA  <V#  ÿêíÏ#)733##"''3255#'67673'67&'{QQ   N _@DPC6 Š 4V  R -( "$ %! %"!TÿèñÆ!%73#"''32765#'66553'#33#735#p  \ ySSJ<<‡] AA3 1#^?-M>`ÿéòÐ !%73&'73#3#536'&'#5##535#i24|\ )’T 8  mMMM¸  R[ [>+{aóÏ73533#&'#5'67#‡%.% ³13UÿéóÊ73#3#535635#'67&'Í-0f(›9$22PÊ  8{€8Q ]ÿéóÏ#'73533533#3#535#35##5##535#35#e)"–$0))NLLLLL±  Crr'=dÿðóÐ %73#5##53&'&'''63#3#535#«;b8,  !t2?ŽE      |<<>w6(  ($‘ `ÿéîÇ #04873#5#73#5#&'7&''67'63#5##53635#35#`E2KC0B P ! X%9U-UUUUÇ_M_M       j j /;“ÿèðÏ073'67#&''63'67#&''6¹&! 4  "%;  Ï )0   D 0:   ^ÿê÷Ð59=A73533533##3#3#3#&'#'67#5367#535#535#5#5#35#335c4$6668D4( 02 &1:3544#a4 3"Å  2  "& 2 ? dÿéôÊ -273#735#35#3#735#3353353&''67&'#367rssMMMMˆˆ'q (!  #  ÊE* ' '40   YÿçôÈ#'+1773#3#3#535#535#735#33535#3355#5#'67&'jz $& !!3!T!!3!  K! ÈZ66;)   @ÿéòÏDHL735333##35#53353#5##535##5#3#5#'6753353#35#535#535#33535\;::,!!,.%!-<O7µµÈ   ")  *") XÿéõÏ#'9=A73#&'#5'67#5367'23&'#35##"''32655##53#735#Ø K% X *"4644Z   YCC""Ï   @ ))Q ;Uf.ZÿéóÒ-2=CGKQ73&'73673#3#3##"''3255#535#5365#5#35#"&55#733567#35#&'Z(  #0'""  bbZ+5V)a Laaa  ²  ]    ]  5    ? =   MÿêªÑ .73&'73#3#735##"''3255'7567#536URDD9#  %( 5M½ 4^   RÿêõÏ!%)/5;A73&'73#3#3#3#5'65#5#5#'67&''&''&'€".0++++3‚ 9))))) }     Ï Q ,&&  TÿéôÏ17;?EK73673#67&'##"''3255#5'67&'767#33&'35#35#'67&'b)B#  *   )    !8 > +AAAA c·    90  -5  F-)   VÿçìÇ(AOS73&'767#533'67##"''3255'67#'#53#"''3255&'#75#673&'35#`9 ]x/   ) /'ˆ  ?7 a 4        c Gye  / -K   3HÿçêÇ(AOS73&'767#533'67##"''3255'67#'#53#"''3255&'#75#673&'35#R? e‚3  $  - !5*“  F<k  6 $$      f Eye  0 -K   3>ÿéöÏ#'+17=C73&'73#3#3#3##5'65#5#5#&'''67&''&'r& 13----6x #C/////g  n  b    Ï   [ ($% \ÿéóÌ $(6<73#535#535#3#3##"''3255#535#735#'3#67'75#&'mvvc[[c>C   ii^C  %  ÌK  @:  K  UÿèöÑ )/C73#5##536'6'&'3533##5'67#&'3673#&''67#J\#3/ "!!   C  V7H9+ 28 *0Ñ~no "   $$-    2  && aÿéòÏ;?CGK733533##5##5#533#3#"''3255#7'7''275##535#735#33535#335„$$$$##|4?  , &+>5!!4"V!!4"Ï  $N D  /  J[ .,QÿêôÐ 7=SY733#3'67#&''67373&''67'767#'63533#&'#5'67#7&'€. %    0B   . h=D8  # &3 Ð !    #   W  ""  /,1 VÿèôÐag73673#3#3#535#535#53&'3&'33#67327#"''67&'#7#"''3255'75#535'67&'‡ :22<‘@33:)/-  "    $$#XÐ       _   %      XÿèôÏ%4:@X_7'23&'73673#5##53&'&''33267#"&57&'''63&''67&''667#à 4K>" i?     L  Q H  ' (!  - ; Ï    ###    !         `ÿéðÊ#D73#3#5##5##535#3#73#3#73#3#3#"''3255##5##5##537#i~6>+,>5""?!!F((F**TŽBC  08Ê (;;( ) :  $8888=N UÿîôÏ#)/5;CGKO735333##3#535#535#535#33535&'''67&''&'3#53535#35#35#l.77F•<--77.A$$$ d Ta Ÿ%%      ;      333#####YÿéóÏ$=EIO73533#3#535#3'67#3#3#535#3#3##"''3255#535##5##535#&'c;;;4z4;”e%B‘<-š --s?BÅ   $    #   D D*  SÿèôÏ$_s73&'73673#3#3#535#535#&''3&533#67327#"''67&'#&'#5'67#535#'63#3#"''3267#7#^  #<44@Ž<44%&?8-T0%! ÿéó’767&''66''6y " , M 8' 56= ’ % G#7 G1' ^ÿéõ‹7367&''65''6Ÿ ( .1 A  ‹6 +**%6&$ ÿè÷Ï7367&''66''6Æ     Ï/$ C /*"S;# cÿòñÇ7#3#5&''677&'76ðyzŽf  ǯÕ&#!  JÿéõÏ'735333267#"&55#'67#3533##5#Y(8  &1 &&GJJG²I  ;</d$$??SÿèëÏ%735#53533#3#3#"''3267##5#535#]444??;;F  1>>4;#VVOÿêòÐ%73#3#3&'767#'67#537#536”FK[a^ (; W,2 .3Ð    CÿíóÏ )7&''6#3267#"&553#"''326™%) '&!* 8>?!(  3/h  Ï '+)%CU l6 LÿéëÏ#)736733#"''32765#'667#7&'&'S9K 6 7"  N  ‹&&X7 T4C=-Og MÿèöÈ7'6553#&'7#3|!x&, 1&QQdQ+%UUdI!ZQ>UÿêóÏ &73&'73#67&'7''67'67676WC Bœn0/(/  =< 0!# ²  V  #)"&-)cÿéçÑ 73#5##53635#35#™D\*\\\\ÑÅÅ^:ˆ;FÿçòÇ $7'6553'#33673267#"&5s‡^^J&! &-   ( €D6 5@_G4! * * #  Mÿéõ 73#735#'67&'izzRR"#PÂzTu ,!"%Xÿéè¼ 7#5##535#33535#35#èh**>*h**>**¼ÓÓUBBB—BBB@ÿèòÏ*73#3533#"''3255##5##5'67#536Œ\d ):  && '&/Ï""U  =tt[V ,$GÿîóË"(.7&'36732767#"&55'67''67&'‹,8 &"  …  Ë,R*& ((I2 1GŠ #    1  ]  RÿèðÏ"(73'67#'63#"''3257&'''6zm  ^ / :PÏ   +ƒ  _)+.'/( )IÿéèÃ$(7#"''3255##5#'65535#33535#735è   '+))='d))='ý +CC-" 3>]<)))e))) ÿéõÏ$173533#&'#5'675#&''67&''6[XX)A <$(6 @*[# ˆ  µ8B6b\3:@  '  KÿéóÏ$1733#&'#5'675#53&''67&''6”AA- ($ *==)  d  ÏE7*TS*3G   '   QÿéëÈ$(,7#"''3255#'6553533#3#535#3#735#ë  b  ODDÈÅ  ¬SD5 5?_26=mÿôòÁ73#3#3#535#535#&'uv2++9…8,,0`  ÁARRAb mÿéïÁ7#5##53'>&'ãE,  Á˜‡†—-M+'  ")(2ÿð»Ð 73#'6#53#3#67'5#53^S^ $%c*44 22Ð 1$3  C ÿïÏ 73#'6#53#3#67'5#537@J L ** &&Ï 3$7  F ÿïqÏ 73#'6#53#3#67'5#5307@ @$$""Ï 3$8  ExÿçóÐ(.7#673265#"''67&'#67'53'37&'ð1    2  ¦:0$&)$Eo  **(   fÿèòÏ)73#3533#"''3255##5##5'67#53¡GL-    !Ï $##U  @uu\P /'lÿèìÇ 7#5##5##535#33535#335ì####7#Z##7#ÇTT<)))e)))`ÿéóÅ73#735#3#3#"''3267#7#snnDD(“_ Z  ]ÅD D!63_ÿêóÌ!'73##"''3255#535'2'6'&'ß AA  @@;0  T  ÌWA  <U#   ÿèõÒ  (,7&''63##"''3255##5#53#=#26 64.; P‚‚¤  0YN)Ò$(&!%B  )exWka 22cÿòòÇ 7#3#5##53533#"''3255##îw{J('   ǯÕMUgS >l`ÿèòÏ $(,73##"''3255##5#53535335#33535#35#æ  R 333R3´t*  %EEt:'''a'''RÿèðÂ7#5##53'>&'äL0&& " Â’}#G0 $+3ÿæíÉ 73#735##5##53'6656&'3——oo‰L.:8).'&!-É><_LM`&(  KÿéóÐ$*73533#3#535#3533##"''3255#&'X>>>H§K> r!!  r(  ²N<  8  KÿçóÐ%)73&'73#&''67&'#67#3'6573#V>?'*", (I > %!L¹      E1 )gBÿé¦Á7#5##53'>&'¡2#   Áš‰Š›'M'  "+0 DÿèöÏ#'7367'673#&'#'67#3'6673#Q6.G8  T/% .5*-'<“-$+3( $+kFÿç÷È 7'66553#&'7#3&'&'u „ " * \\K% "*% ''|;. +RL="J9&/*CÿèóÇ &733#535#3#3#&''67#535#'6apžp]g=IB03; A EI# Ç+/# )# Jÿè÷Å"&7#3#67&'#67'5#'6553#ëx}6  7 !bbÅC %P`  mD0 5=^*DÿéóÇ *73#535#535##5##53&''67&'767#Ynjjl“y ~) 2 + & eÇL  F"#(   DÿèîÆ $73#"''32765#'6553'#33#735#p~  j†``TBB‡]@A2 4?^?-M>HÿêðÏ17=7'6&'#"''32655'67'67676767&'&'''6Ï 5B ;> ,     #+7-% ^ Ï P? :  & 3  BÿéöÆ!73#3#33#"&''6735#735#d{177' 2% $  7UUÆU'4-9j1JÿêóÏ-37&'3533#67&'#"''32655'675#&'Å bA@@  ! "0A  Ï   ''1 #C ?%#*/ PÿéòÅ!73#33#537#537#35##5##535#X“PE¢% $00>6R[[[Å3"O"FW W8&cÿèöÑ!%7#67&'#67'53&'73535Þ7 ":! 24SSS²f  EK  ¿ +ZÿéçÐ"(733#"''3255##5335#35#'&'7'6˜<   c8&cccc  z Ð=’  ;ª.Lx   [ÿéëÈ#'+/3767#533#"''3255##5##53&'35#33535#335€d'   ,+D++>,j++>,±   //8¥ AJMÿéóÆ 73#3#5##535'67#35#7&'Z‘=7Y5' 2?YYD ÆZjj?(©6_LÿéóÐ 37'2'6'&''&'33##"''3255#53567#à;QO72 )  †EE   MMiÐ  ++ ' KÿéñÐ?767&''67&'3#3533#"''3255##5##5'67#536h  4!)]d4   !! )1Ì      /  8  !TT@= MÿíõÐ +73533#735#33535#3353#3#"''3267#7#Y<<‹))<)e))<)„¨ob g $¹W531( 'IÿéöÇ73#3#&'#5'67#535#735#by2E<* (& *&&9(Í  ?7PP. C I- ÿéóÏ"73533#3#535#'6#5##535#?0WWhæj; ¥………Î $$$$ `bb@-EÿêóÍ"73533#3#535#'6#5##535#m#>>F©O- „```Ç&&&& Z\\;(†ÿêóÍ"73533#3#535#'6#5##535#œ""'g-Y444Ç&&'' Z\\<*ÿéï"73533#3#535#'6#5##535#>1UUdÝe< ¤†††   FG G+ ÿëÌ!73533#3#535#'6#5##535#)''1‚=_888Å%%%% V``9&xÿêóÍ"73533#3#535#'6#5##535#’))/w5 b>>>Ç&&'' X\\<*kÿêóÍ"73533#3#535#'6#5##535#‰--4ƒ; kGGGÇ&&'' W\\<* ÿéwÏ"73533#3#535#'6#5##535# &h/X///Á ((((S\]<*eÿðôÏ)73533#3#535#7&''67&''6u.33:†9.   T  ;””''•)3( ÿèõ673533#&'#5'67#efN$0 :'": /#N.  32  ÿëˆÏ!'73#"''3267#3#"''3267#536'6@0   4T  V)&.1Ï 8 OK2s ‘  ÿðŒÐ7335#53533#353#67'5#7755- /ŠCYYCU.  8 ÿêÐ!73533#3#3#'67#53655#535#233--57 &# 47,,2± 0$  ÿêÏ733#5#'67##53367'@140+ Ï*7$h@ ?\&9:a   ÿêŒÆ 73&'73#67'5#'655321x\!D¤ † f,332 ÿéˆÏ73533#3#&''67#535#/1133 "023/¨''' * *<'Ë7#53&'73#3#'8 1RFZ‹v ÿï‹Ï7#'66553&'7‹S ,©D7, (Nÿî|Á73#67'535#hL+ &3 KSÁbZ  z< ÿý„Â767#53&''67&'+ Pf  ' (›&?))ÿé†Ï 7#5##535335#33535#335†I...I.¢¹¹--J777€777 ÿêzÏ73533533##5##5#35#35# ,,!,,,,£,,,,§§>>> ÿîðÆ"73#735#3267#"&553'#37#3-££{{ BC LM¾iAAUAAÆ=*   uH5"""!ÿêò’"73#735##32767#"&55#;5#.ssš¨=JSKT@@@@’2.;  SÿëÏ$*77'5673#3265#"&''&5&'+ ='&  )ie  È :4 :D3aÿéŽÂ$73#3#"''3255#&''67##537#|20   28Â"‹  t 3’¤" ÿëŠÏ!73533#3#535#3533#67'75#+++5|3+-++6C3-¯   Y$ ( ÿë‡Â 73#3#735#7'676'&' zz hhAA< 3>%! 3  ÂJ%@ ÿéƒÆ73#735##5##535#``88REEEÆW1_kkI6ÿè•Æ!73#33#537#537#35##5##535#€D7‡).-'>CCCÆ5"N"HWX7% ÿéÐ 27'2'6'&'&'#"''3255'7567#53 0F91  #  r2   3;SjÐ  [ + $  ÿç¤Ï4:7#67327#"''67&'#3#"''3265#'6553537&'ž-      0)  A  ¨<)?")9#R%M 5:, -7P''   ÿêšÏ$*073533#3##"''3255#'655#535#'67&'///5"  #!$5/i  ³l  gC+ ':G  ÿí‰Î%73#67'53&'3535&'76K &N %;;; !  Î fG  » ()1  "  ÿê–Æ#'+173#3#&''67&'767#535#35#33535#335|5/1& ##   .040L0Æb  b>>  ÿé–Å %*.733##3#5##5'67#5367#537#3353535#kCQ3  +.$6#%*033Å+, \S   + })ÿéÐ !%73&'73#3#536'&'#5##535#./rU"J 0 aCCC·  TZ Z>, ÿê’Ð %*073#3##5#5367#536365#335367#33535B:''K ##.K,#( Ð l //l :  J  .   ÿé”Ð(,073533#3#3#535#535##"''3255##535#35#:88009ˆ #&>>³-Z F Z)ÿéÏ #'+73533673#3#5##5'67#535#7#35#35#%%(:K: ,/%8::::µ ueoA ÿï—Î(,04873#3#3#67'75#535#535#535'25##5#35#335‡ 999E6778 'Î!! !!X!!!!3!!!­ÿèñÃ7#"''32654'7##5ð  ÃB$ 'BÊÛPÿê©Ð!73533#3#3#'67#53655#535#X " !¯!!" / $ "Kÿê¥Ð /73#53&'3#735#367#"''3255'7567#z"Z#KK$$S$  # 9Ð  .5/   Oÿë£Ä $7#53#"''3267#'67#535#5;5#35#lG ² 02 )))d)Aÿí¡Å &7#53#"''3267#'67#5367#5335#65#jL     %³¤-'5+))9`ÿé¥Ð73533#3#3#'67#535#535#a¯!!!!0 &!!Uÿé¥Ð73533#3#3#'67#535#535#Y¯!!!/ &!!?ÿè¢Ç +733#5367#'67#535#'673#3#&QA^7/" %( 7&( Ç Ÿ  ÿè¡Ó4<@DHLPT73#33##3#"''3255##5##535#535#'6553&'5#35#5353535#33535#335e43* *.  *&&.: ..&8A*F*Ó   T  !i  B4 3?\* '   D ) ÿêœÇ $(,0487#3#25267##"&55#535#55#7355##373535335‘*** (  &&'F I1]1Ç8h g8Ë»° º1* ÿç¦Ë%+PV\73#33#5##53537#35#35#35#&'7&''33267#"'3&''67&''67&567#''6‡@9s'3OOOOOO#  ;   D  G  -$ ) = Ë BB         ( 9 ÿé¢ÐCGKO`7335#535#535#53533#3#3#35335#535#535#53533#3#3#353#3#3#735#7677'7&'   ‹‹rrMM #"?M"ÈN VV N\  -#  ÿéðÇ-173#3#5##53565#5#35#327#"&55#'67#35#àL?ŸAN€ @Ÿ+  !% ,ŸŸÇ¯ ¯cP% )2&|lÿçóÐ#)/7373#33#53537#5#35#3#3&'''6u303/ „ )0^EEEEEE ' ¾ww/  ;ÿçëÈ$(,7#"''3255#'6553533#3#535#3#735#ë v&&&+f(&TT..ÈëTF5 6@`15?;ÿè™Ï73533#"''32765#'6655#E)  ) ¤++)'[ r*B?[ÿëôÇ"73#735#3267#"&553'#37#3dssMM &5  >3†L''9%%ÇB‰%   rI7%%%KÿéóÉ 7&'''6&''6767&'à &) 9*'M/8)" ÉC K>-*G(0 .RL)‹ÿéõÈ 7&'''6''6767&'Ü (7 %ÈCJ?,*G)/  /SP(VÿéóÉ 7&'''6''6767&'Ç #& 6&"K +4& ÉC K>-)F(0  .RG.aÿéòÉ 7&'''6''6767&'Ë "3"F (0# ÉC!J>.)F(0  .SM(7ÿñÅ® $73#53635#35#3#3#3#535#535#u 8r&NNNN600>Ž=//6®LL (-, uÏ767'5'753q5% c  mD?OÿéóÏ#'+73533#3#3##5#535#535#35#33535#335UBCC::HHHH;;B((<'c((<'¼e''e;AUÿéñÃ373##"''3255#7&'#53#"''3255#7&'#5UœœF   “    Û  …()!r²›  …()#u²LÿèñÆ*673#3#"''3255##5##535#&''67&'7''67&'L¥HC  00CI-  S  Æ “  }ŽŽš¬ @&,  &, IÿéöÏ !=7#5##53&'73'67#&''67#3267#"&553#"''325írAE*C 6   t  A  µ$%  ) j)R   d  yD  GÿîôÐ&*.2673#3#3#3#535#535#535#535'25##5#35#335Þ $FKD™CJCC)0Ð"(("Y"""":(((lÿéóÐ#73#3##"''32655#535#535'2å 0099 ::223<Ð-%7 3%*XÿéëÏ $(733#"''3255##537'6'&'3#735#™> kA<Y  FF ÏI„  m‹=  WG%PÿèñÏ%+73533533#3#535#35#35#35#'67&'Y>¡)>>>>>> % M ±mmBC1  KÿéëÇ$(,7#"''3255#'6553533#3#535#3#735#ë j!!SEE!!ÇÄ  ¬SE4 5?_/7=EÿéòÏ#'73533533#3#535#35##5##535#35#N!5!!(­*!455^^^^^^±!!!!Css)=\ÿëõÆ "/73#735#35#3267#"&5536'33#67'\……____w    w,, Æ_9;= )   ^1  KÿêõÏ!373'33#3267#"&'#7&''3#33#7'27537N_10  `‹ mBB#"-8‘>#='$DQD 8"/ `]IÿéîÈ&*.473#3#"''32765#&''67#'67#735#35#33#c|Sm  0  % VVVVViÈU X! 7    31aAÿéòÏ-173533533##5##5#3673#3#5##5'67#35#R#,%%,#9R\ dO %-1OO´,  [ F  Z)QÿéôÏ #48<73#5'675#5373673267#"&5#"''3255##535#35#…00#   :  YYYYYÏY      p  ,…$5RÿçóÇ 4;73#3#535#5#35#335335373#&''67&'67#367Yš2)Š'.U((„8S 5 ' ,C  ÇCC1E      MÿéóÏ /5973673#3#5##535#53&'3535#"&55#'67#333535#   /8.m091 ,@m RmmmÍ ›› - j  i[ÿéôÐ!06:73673#3#5##5365#53&'3535#"&55#'67#333535#„ %3*c-5) .:c LcccÏ››  / j  inÿéóÏ.4873673#3#5##535#53&'3535#"&55#'67#333535#‘  +$S',# + 0S  B SSSÏ›› /j   ilðÏ*0473&'73673#3#535#35#5#"&55#'67#75#335#l ,'x"); 2 TETT¯  uuX 1? ÿéŒÏ,2673673#3##535#53&'#335#"&55#'65#333535#+   ") _"' 8.M  ? MMMÏ Š› -V !&!fKÿçòÎ#)/73533#33#53535#5#3535#5#&'''6Y=CC8 4=vZZZZZZZ@+ " ¾ww. * )     CÿèôÐ59=AEI73673#33##&'#5##5'67#535#535#535#53&'5#3533535335w  17*   ",,"")* =BÐ &% !=IH6 8&MÿéòÏ 87'2'6'&''&''673#3#353#5#5335#535á ;TF> 0 (    n?GG+|+KKÏ     > 0%A 7%0 UÿèóÏ#'+/7;?73533533#3#535#5#35#33533535#335335#5##535#35#U122))1Y))g) VVVVVÁPP ,-\ \ -EÿêöÑ *0AGM73#53635#'673&''67&'767&''33267#"&5''67&'ŠP(gg$  +        $ ‰  Ñ }} vY      N 1 4    eÿéîÇ #/3773#5#73#5#&'7&''67'63#5##5335#35#fB/H@-@ N ! U %6Q+QQQQÇ_M_M       j j&;[ÿèöÐ#)/5;73#3533533##5#'6553&'#3&'''67&''4'±3lB7&  I  F Ð &::R)$OP [) # gÿèõÐ#'-373533#3#3#535#535#3#735#35#35#'67&'o355//;‹;,,3ssNNNNNN % <Ä     DbE ' '     ÿéìp 73#53&'3#3##5##535#ƒa×`M¹¹¹¹³ŠŠŠp"  00 UÿòóÇ 7#3#53#735#3#735#73#735#ò‹Œž-YY3322022ǯÕ!;6L,L,KÿéóÑ(,073'73#3#53&'#67#3#3##5#535#735#35#U@ ?)§(bB)‚8JJJJ7\\\\¼    R1.IÿèôÐ*;Oc73533#&''6655#67&''67'767''67'67&''67&''67&''67&'NHFF? 5?)$H     e          `    ¸+91: 7>+      .       LÿçõÐ.EL73673#&'7#'67#735#&''67&'763&''67&''667#\-F8 bbI     :  ''"  &) 4º  [ 7     O     _ÿéôÊ /473#735#35#3#735#33533533&''67&'#367nvvPPPP(w„ *" % ÊE) ' '41   WÿêòÎ*06<B73#35#535#53#3#"''3267#'67#56&''&''&'''6—''Z(((;\q   j  H    Îa L4 _  ÿéÏ%)157&'73#53635#33535#335'&'3##5##535#J  3 mD <,G,I  ƒƒt>>>Ï QQ33S  x F G) HÿéóÉ 06<73#3#535#5#35#3353353#3##"''3255#'67&'R¡3**2[))u‚‚£F   Jr  É>>,9 ( %  Dÿé÷Î #/5;B73#5'675#73#5'675#&'7&'&''6'6'67'66UE 2PE 2;  a   , 0#. :+ 1 35 )= AA .[ 59ÎV  V      5       + IÿêóÏ39?E733533#3#3#3#&'#'67#5367#535#53&'#53367#7'6'&'ƒ3 *D<<M<, 34 )99E;+/2 / 6<448, #7H  c  Ð333   '# ) H    @ÿëöÊ159=AFJ73267#"&55'67#5367#535#53#3#3#&''5#35#3353353&'##3x !*  5. )8-).›1*Nf+ &))[J27BB  2 ::   $™(UCÿçôÐ "&*067&''633#5367#53&'35#35#35#'67&'–') *) ( :* !ˆL S,cccccc$ !R Ð   jj K ( * !     GÿéôÐ>DIN733#67&'#"''32654''67''67&''67#5'6367#367#335ƒ;,K     "/4"' & !' *6 4 #,@.Ð :   -2     . 1 IÿèïÎ'-3;V7367&''667367&''66''6''6#5##536533#"''32767#'67#u   I    J “u*B  1( 2 &Î    '    ! @))0 ; #,MÿéóÏ(048<@73673#&'#5'67#53&'735'2##53#'#;5##;5#á #!:$ &% !6  !G8e‹=(())(())Ï    "'   Ï hhV$FÿéôÏ;CGK73533#3#&''67#5367#'67#5367#53533#3#&#5##535#35#P"   w    \\\\\¹      +      n n'= KÿéòÈ #'+/73#735#73#735#3#3##5#535#735#33535#335SEE>HH""\‹&&> ŠŠdddddd& #O! !Á gI ) ) "    SÿéëÊ  $7##535#35#7#"''3255#535#5#˜3!!!!†   5""""ÊN’à +.È  uN+ @ÿéòÏ/37;?73#673&'73#3#3#3##5'66553&'35#5#5#35#¤@„ #+/****2g A%qqC"""""Ï 5-   ^ +" .!W 4^!"IÿèóÈ-159=73#3#3673#&'#5'67#53&'735#535#5#35#335335T™0); 9$ %) #3#  ?)-W((ÈB'    7>$ 'B0NÿêøÈ"&*.26:7#3#325267##"&55#535#55#7355##373535335ç044 4 00.TV9!w9!È:h g:̺¯¹2*ÿéïÁ 73#735#&'''6.¤¤||b+ +; -0ÁySu!% +~òÅ 73#735#&'''6XX223  'Åa=\  ! Lÿéî’ 73#735#'67&'_}}UUV’b=V " \ÿéòÁ 73#735#&'''6sppHH?)ÁxTv % %! ,uÿéò 73#735#'67&'‡]]55? ÂzTu ,#!% &!‰ÿêò 73#735#&'''6’TT//2  # ÂzTt"') + # ;å} #'73#735#33535#33573#735#33535#335]]%9%^^&:&}B( & (B( & ‡æÉ #'73#735#33535#33573#735#33535#335]]%9%__&;&ÉB( & (B( & 2ÿèÏe 7#5##535#33535#35#Ïu00E0u00E00e}}/JDÿéér 7#5##535#33535#35#é}44H5}44H55rˆ ‰5###W###%OÞÄ 73#735#33535#335%¹¹??R?‘??R?ÄuDOCŒ» 7#5##535#35#35#35#Œ'    »¬ ¸I:::‚888ÿèðÏ73533#3##5#535#7'6'&'— !!$$$$ H  :  NN+JJ+O  %ZÜÆ 73#735#33535#335%··<FF::4::D  T µ"#<<.   "   {ÿé÷Ä!(73&'#"''3267&''67&'765#67#ŽX   "! (Ä^6. .($9  %Z 7=7Qÿé÷Ñ  ,97&''63#3#735#73#735#&''67&''6ž!+ * ' 6@@";;9;;E   U  Ñ!" ;;/   !   [ÿéöÑ ,97&''63#3#735#73#735#&''67&''6¡( '" 0>>99199B S  Ñ !$ ;;0   !   `ÿé÷Ñ  ,87&''63#3#735#73#735#&''67&''6¢( &" .>>88188A  P  Ñ !;;/      ÿëôÍ73'67#'6'6553&¬:  +   (Í  +i,);#FgÿéóÎ%)-736533#&''67#3##"''3255#3#735#r325 $ ) / Œ   hFF%%¶     9W  T9LÿéóÎ&*.736533#&''67#3##"''3255#3#735#Y?>A& &+ 1 : §  }SS..¶    9W  T:EÿèôÌ$KQW]7'23'73673#5##53&'&''33267##3&''67&''67&567#7&'''6Ü 9SD+  |>   Q" +! +( $ ) DGa Ì    "" '       G  [    >ÿçôÏ #=J73533533#735#33533535#335335#3#3#67'5#'655&'76V+.”*m*Š}}‹b  Š   6  ÁI- + &  - 6$ $7M ' @ÿéõË 3773#735#3353353#3#67&'#7'5'67#735#Z)€šš ‡6  9 &  # aaË:5 3    . !    FÿéõÒ!%+37;7'67&'#7&'3#735#&'735'6#5##535#35#u ;$) Q= -ŠŠ)) 4)&UUUUUŸ   B!  !!  2T T+@ÿèóÑ*/37?C733#&'#'67#3&'73#'655'667#3#3##5##535#L(   <5† +HA jjjjjEEEÑ     8* ,2= M  9 9 FÿçôÑ !%)-39?7#5##53'73#673#5'675#5#5#35#7'6&'''6ïzC9e)4O‚ -#)d\\\\\ V& $ &À%%    ]SG   i }   MÿèòÊ (BHNTZ73#735#35#&''67'6767677&'?7'7&''67'67&''&''&'''6^„„^^^^    8         ÊP0,W  !!    K  EÿéñÊ#F73#3#5##5##535#3#73#3#73#3#3#"''3255##5##5##5367#N™EL97JA))L**U22U44f¬RP   9FÊ (::( *  ;  $8888=O Sÿç÷Ò !%7@IW]cio7&'6'&'6'&'63#735#&''7&'76367'7367'733265#"'&'&'7&'&'7&'Õ ' & jjU   [  :  9 P   F   /   F   Ò         ,I(    8NZNY'! %2        @ÿêôÐ048<@DJPVf733#3'67#'65533265#"&55'75363#735#33535#335&'7&'''6733267#"&5‰CCP n3A" ,>jj,F,#  A  `     Ð  IÿéóÍ#6:>BFJ`m73#73##5##53#5##5&'7&'#3#'6553&'75##5#35#3353353673265#"&5'67'533OIIUII $$4   a   20+…B--    . )Í 2!!22!!2  *"# "+3        6 @ÿçòÐ$QUY]agm7'673533#3#67'5#'67#53535#'673533#3#32767#"&55#'67#3#735#35#35#'67&'Y      '0  #    E……`````` !P ²       )[A $ $      ÿëóÆ733267#"&5'3'>’ !D ƾ " ÀX(6 +7ÿéëÁ 7#5##535#35#ë88888ÁØØZH¢HyÿéóÆ#733&''67&''667#67#'7#‡U      @ #Æ3A'=* G_‰(44<ÿéäG 73533##5#735#335ZYYZGG[F62|ÿèôÍ73#&''67&'#53&'67µ .  0  ÍB+(F4& #6mÿéòÇ!%+17=7#3#3#3#"''3267#55#5#35&''&'''67&'í($$$$-  a4 -  (ÇO7‚&%/€ÿóòÅ7#3#5&''6767&'76ò^^rS      Å®Ò#%  „ÿéîÂ7#"''3255##53#735#î  D//¿  ¨ÇÙ7aA€ÿéôÅ73#3##5#535#'6'&'Šc*1100&O = ÅdSSd%#!#ÿéít!%+17=7#3#3#3#"''3277#55#5#5#'67&'7&''&'âSKKLL^   ´VCCCCC  8c    t   +Z    sóÑ.37373&''67&'67#36773&''67&'#3674 &  'b     à        ÿéí|!%+17=7#3#3#3#"''3267#55#5#5#'67&'7&''&'âSKKKK^  ³UAAAAA  :c   |   - `    xÿëôÏ#73533#&''67&'767#735#335,..% !   ,-°Z"     666rÿèõÐ  7&''6'6'6'66¯  ($ #'1 0*.& $*Ð""$ ! & ,!#'$vÿéìÈ7#"''3255##53#3#735#ì  O>>11ÈÅ  ­Ìß,X7yÿèôÇ73#7#5'75#35#35#75#}q S"000000Ç*( ™&&]%_"kÿèòÆ $73#"''32765#'6553'#33#735#e  QoII@99‡^ HC1 4?^?-M>pÿéôÇ *73#535#535##5##53&''67&'767#€bcPOOOpX `  #   JÇK  G"#'   kÿçóÏ5;73533#67676732765#"&''75#'655#7&'oT;  ! $  U  ›44(     za< ;VD ‚ÿéóÐ!%7#67&'#67'53&'73535ã*   1 $&999³f JK À ){ÿéñÈ 73#735#35#3#3##5#535#‰^^9999g+1122)ÈZ49733xÿéóÏ %73&'73#3#3##5#535#536'&'~. -qP "744..1F , ± #88#pÿéôÐ"'+7&'#3#3#5##535#535#5'63&'35#« ..'8$** )3  88Ð% VV # —$tÿèîÏ373#"''32765#'63#3#353#5335#535#'6T G  /!!Q$$ Ï ›6€  2$43#2 qÿéóÏ$173533#&'#5'675#&''67&''6z.--"  .   K  ´F5'PL'0K    (  ÿëôÆ !.73#735#35#3267#"&5536'33#67'jjCCCCU    Z Æ_9;= +   _0   ÿéõÏ*.73533#3#336767#"&55#'667#535#35#dffL63 '(% /Md+……¸K4 :''KT&AÿôõÂ73#33#537#'7#37#O£k]+´uW&$M LÂ"†/if1BÿéöÏ 73655#535333#&''67#75#M?22:H5458;z&])))I2!54"$/6)BÿéñÅ#735#53#3##"''32655#'67#'t ?T(..   "70&9¦==^ YB-"<=ÿçòÐ '-73673#3&''67&''67#67'&'N)bdT#(% $ +  , '0  £6#    !1M4!o EÿéóÏ"(.733##"''3255#'67#5373#3&'''6—>>  B&. RY,0LŠ-G  B$!$! # $ :ÿèôÒ .4:73#53&'3#735#3#735#3#3##"''3255#'67&'ŸL°N;’’nnPP,,+……¬L   M(  i Ò 'U3% 8       8ÿéöÑ 573#53&'3#735#3#735##535'273#&'#5'6¢I­N=‘‘kkKK## &'‡C-!  ‹x}#I / #-.ÿé“Ä$7#"''3255##5&''67&'76“  UN    Ä  ªÈÛ'   OÿçóË #'+1773#3#535#5#35#3353353#735#35#35#'67&'P£3+•-3]++{††``````$ I  Ë 55 $,bF % &     ÿéõÐ+05733#3267#"&55#'67#5367#'6367#35#R Z :@   ) % >;Z R./6E@;Ð P6   = 0P  ^**jÿéóÏ(,073533#3#3#535#535##"''3255##535#35#q27700=‰9))2s  FFFFFÀR\  $t 0aÿéóÏ27#53&'73#67&'7&'3267#"&55'67'6”(77E $    * #Ÿ  ) !% X # [OB ÿîžÐ (7&''6#3267#"&553#"''326O%!# /:6'  2! ^   Ð (&?\  r7 ÿ雯 $7#3#3267#"&'#67'535'#,20 * R*&ÆK$#)*1B  Ò%%\$$ÿè˜Ï!733#3#'67#535#537'6'&'I66;=# 57225  Q  ÏM*- "*B   ƒÏ 73533#3#67'7&''67#535#)**5=  ).$-)¬##3*   '3 ÿé’Ð73#&'#5'67#535'6„ 000(24/>Ð (#dg"$/% ÿìšÐ"73533#3#535#3533#67'675#222<Š;2233 >K2¯!!  Y$ ' ÿê›Ð*.273673#3#"''3267##5'67#735#53&'35#356  2<  ( "(.0 90Î  @9 O?$!C H- ÿñ¡Ï*7'75#53533#7&''6'&''6@OD;;55   Q  %‹‹"¨  %,  #ÿéÐ"(733#"''3255##5335#35#7'6'&'J3  O0OOOOQ  U  Ð=’  ;ª0Ly   ÿèôÑ,073673#3#32667#"&55#'665#5367#35#7695"(>- '3II·   I<  C('  I O% ÜÊ 73#"''3265'3#É   )Ê „{ ÿç Î !77#5##53&'73'67&'767#'67#67'53#"''325Ÿe>> 8   a ;  ·&(  !o+%" & o  D ÿé£Ï.287#'733#67&'#"''32655'675#53'37&'jCJ(=   #@S$ < S  ˆ8 6,  .6R ÿêšÏ'+/736533#&''67#3##"''3255#3#735#327  ' . Œ   gHH##¶     9V  S:^ÿèöÐ #'+/5;73533##5#3533533##5##5#3#735#35#35#'67&'o2992 44 xxSSSSSS G Á gI *) "    iÿéóÏ 7#5##53&'7&'''6îV2" (¯:((: 6Z$*`9:)mÿéòÐ#'+73533533##5##5##5##535#33535#35#m$$~P0 P0 ²(6%%%\&&& iÿéñÈ #'+/73#735#'3#735#3#3##5#535#735#33535#335´::V99 u2::;;01P1È11/W((45`ÿèôÐ I7'2'6'&''&'&'3#&''67#5367'67'6776767&'â 1H;6  (  #  g D3 '1 $)1  '$Ð     1   $     ! ÿêeÎ6767#"''32654''67&''67''7&'767&''6L     $   Î  "=!     rÿéóÏ &,733#5'667#35#35#35#'67&'œ2d ) & ======J  Ï  y  &87'  tÿèóÐ#'-373533#3#3#535#535#3#735#35#35#'67&'}.//))4|5)).jjDDDDDD  8Ä     DbE ' '    lÿêîÑ#+/373673#53&'35#&'735'6#5##535#35#’   ‚ $$3%  $NNNNNÑ VV ]666 ;cc#5 ÿéUÅ 73#735#35#35#'67&'AA  .  ÅŸn OM4 !båÌ 73#735#35#35#'67&'+««………………& #%U%%$$ÌU; !  ÿæés7#5##5'66&'Ñ{K25 2--) ,*s[HI\.2  +uÿèóÏ)/7767327#"''67&''7''74'37&'â/66    '()  £   $ " % 43  dÿè÷Å#'7#3#67&'#67'5#'66553#íbf,  -    RRÅC  $Q_ mB4 0%^*tÿêòÏ!'7#5##5367#'6733'665&'ë8+ !  -   "‰q__q # 9  #(pÿèöÏ*0673533#3'67#535#&'36533#'67#7&'&'~*++5 f3* </55 &4 Q ¸ 1  5*'&>   <_ÿèõÐ59=AEI73673#33##&'#5##5'67#535#535#535#53&'5#3533535335‘   &*#   !!! 14Ð  %%5II2 8'tÿêïÑ#+/373673#53&'35#&'735'6#5##535#35#™{""0" #HHHHHÑ VV ]666 ;cc#5bÿéóÒ*048@D733#&'#'67#3&'73#'655'667#3#3##5##535#•=  *)h 94 UUUUV333Ò     !  ,* )M M  7 7ÿèôÆ 73#3#33#"&''675#735#0¤EUU'#?A (!K||ÆX%0.: c2ÿéžÈ%+733#"&55#'66553533##5'67#&'| #  966 !1bÈ8  -  jbI%*ÿéžÄ.47#"''32655'675#535#535#533#67&'&'a #@cMMOb=  T   .M2  L ÿè¦ÅB73#67&'#"''32654''67&'''67&'7267&''67#Œ4     / 2#   & @Å  -3      6ñÐ-15973673#53&'3#"''325'#"''3255##535#35#73#P 9 >â=‹  F   >>>>>gÐ   (N  FM  b # 'Fÿéà073#"''3267#'67#É  ] E< D01 % ÿé£Ç"&73#"''3255##53535#335#3#735#   jCG00EE!!ÇUp  Zx‰UUC+C>ÿì›Ï (73353353#3#3#735#67677'7&' !zŠŠ ssMM  :H Â))/=3    ÿé¢É 06<73#3#535#5#35#3353353#3##"''3255#'67&'-&ƒ&,P%%huu’>   A i  É>>,9 ( %   ÿç©Ñ$@FLR767&'7&''667&'7&''6&''67''6767'7'6'63'6I  -3;   ( (-(    . ,0"A A4(] XÑ       4   ( ÿé¡Ð 7;?CG7&'67&'6'&'63#3#&'#5'67#535#735#33535#335,  e  #  55>:  "4@7$$7"Y$$7"Ð      -N -1 / *  ÿê¦Î#'+17=C73&'73#3#3#3##5'65#5#35#&''&'''67&'5 )*%%%%-e9&&&&&X  ?  2Î  X )%%0    ÿè³Ê '-=L7#'6553#353#'67#53365#536'&'73'67#'6'6753&©|E   I     ÊTE6 6@`5 /@( @/ 4     o  = #  ÿé¦Ò $*26:7'67&'#73&3#735#&'735'6#5##535#35#3 0% O"5Jyy!!  -!  !FFFFF " %D    1TT ) ÿë°Ï<KQ733#3#53533#673265#"''67&'#'6553533'73#67'675#'6Y--;•M$    DV  m;-    Ï##"$#  3/756  % ; >  ÿé¢Ê .173#735#3#735#73#735#3533#&'#5'67#37%ee??$==:>>a>??"" (5JÊ5066: /4 ÿèªÑ$9^cglr733#5'667#35#7'53373267#"&553633#3267#"&55#'67#5'667#37#335&'3H‚ D<\\'3%A   MG /  . $) D> !%5( Ñ &  .  $   # (           ÿç«Ð$PTX\`fl7'673533#3#7'5#'67#53535#'673533#3#3267#"&55#'67#3#735#35#35#'67&'       ",    A{{UUUUUU  J °        )[@ $ $       }½73#3#67&'7&''67#UUe,! (-#½(: $ 8 ÿó…¾7#5'67#53#3#=#; (t7 @( c (1s AAÿçÚK736533#"''32765#'67#M`!N. H H; 8   wæÍ73533##'32765#'67#Œ0 /*¢++l$ K]%!S ÿë÷Ï,05733#3276767#"&55#'67#5367#'637#35#:0 ! I*3/ $/'  'Ï I>  C8! /I  Z%%% ÿ÷È$(,073567#533##"''3255#3'7575#75#75#; Gc++  ;t8F   ˜  +> PM97520ÿéÐ28<@73#3#3&'73#3#3#3##5'67#5367#'65#5#35#"R4GL')""""([ $3 Ð    M #%  p"# ÿé‘Ï'/37;?73673#&'#5'67#53&'735'2##53#'#;5##;5#ˆ  )  ( .9&Fl,Ï!    &  Õ hhW' ÿê”Ñ !%+73&'73#3#735#3#735#3#735#35#'6 3?‡xxRR >>(nnHHHH\5AGÁT4# 8A( ! ÿèÏ37;?CK73533533##5##5#3#3#"''3255''75##535#735#33535#3355#7'7!! k-3   1++E+ Å  N K   N` 0 + _$  ÿè•Ñ DHLY73#53&'3#735#73#735##535#535#53533533#3#3#67'5'675#35#67&'S:„5*77088:!  !O   A   Ñ$++p     "    <    IÿéñÅ#735#53#3##"''32655#'67#'x Q%QQQQQQÐ ÈÈC#Y$[%ÿèóÈ7#'6553#33#"&7#3GT /CJ:--dO-&UUd=)2™>ÿééÇ#'73#"''32655##53535#335#3#735#Ë  ¤[(oGG44 ]]99ÇUo Yx‰UUB,B>ÿééÅ73#735##5##535#7#5##535#+ªªƒƒ6999À888ÅW1XqqP>qqP>\ÿéòÏ)57367325667##"'"&5'67'53333##5#53© 1$BB>>Ï,   .2 x&E>>QÿéõÇ*733#"&55#'66553533#&'#5'67#É$ ' =B4$ &$ "+Ç7  ,   o ',RW/'JÿèóÏ5;73533#6767673267#"&''675#'655#7&'XdG   &% ,# 1+o  ›44)      y`< :VC Yÿé÷ÏCI73&'33#67327#"''67&'#67#"''3255'675#535'67&'Ÿ #.-    $      $Y  Í. )*#)&" #.$ 6  + +)YÿéòÏ$*073533#3##"''3255#'655#535#'67&'d877B/  **0B8w  ° f  aE, ); D !"€ÿêõÃ73&''67&'#367†e   ÃT=  .P@(08 ÿè…Ð $*07&''63#3##"''3255#535#'67&'I ! , F**   -- U  Ð$I  E8"   ÿó}Ï!73533#3#67&'7&''67#535#&%%+2 (+#,&¬##31 "  13 ÿéõÒ 7&''63##5##535#~27 54/< Q'—— ‚‚‚Ò(.,&,ddA.QÿèôÏ 7373#'67#&''6767&'d%PS*) #n"( ¨'gE HWX#)  .QN&gÿè¹Æ73#3#"''3267#735#jM49  : 39ÆI'J$-M#dÿéîÐ#73#"''3255#&''675##53&'žC *   &4Ш  /( 7,!+8­ÀTÿì«Æ7#"''3255'67567#536¨!   9NpO C )´ÿîóÊ733267#"&5´  ÊÁ " )ÿé×D 7#5##535#׆††DZ [<) ÿéäÈ%)-7#"''3255#'66553533#3#535#3#735#ä ˜ &/007~3/ aa;;ÈÅ  ¬SD5 1$_07=[ÿéôÏ=7367#535#53533#3673#33##"''3255#53567#'67#i%D8--!! #4 8<<  EE2 i  ' $  ÿêól736533&'73#&''67#\+&[,(I! ] X YQ    <1.„ÿëóË73##5#'6556ä !>#&Ë$††81 ,0c[ÿéõÌ ,27'2'6'&'&'3533##"''3255#&'ä 9TE;/a&&   a%  Ì  =H  E Kÿæ÷Æ#'+073#3#&''67&'767#535#35#33535#335\”B9:7 6!, & 68?$$7%\$$7%Æa    a>? gÿëòÆ"73#735#3267#"&553'#37#3qkkEE #,  60I%%6$$Æ;‚.  yH6$$$YÿéóÈ$*.73#3#5##535#5#35#"&55#'655#333535#Yš2)a)1V'a Laaaȯ ¯f %# !)~UÿìöÏ'159=A73673#'#3267#"&55##5'67#3533&'#35#33535#335a,J*" 1 #!  0N0²  K  W '=?[ÿéòÐ,0473#67&'7&''67#53&'#"''3255##535#35#¨@R#&5=-@K  MMMMMÐ      ed  *|"2XÿèìÏ373#"''32765#'63#3#353#5335#535#'6{e  [ =&**_-- Ï–" z  2$43#2 WÿéëÎ(73'67#'63#35#535#53#5##56‘E  9 &''`''*>`Î "+ !!} xUÿèñÆ(473#3#"''3255##5##535#''67&'7''67&'UœEA .-@E)  M  Æ “  }ŽŽš¬ @&- &- KÿéñÏ,073533533##5##5#373#3#5##5'67#35#` '!!' 6 HQ YI (,+II³- Z D $Z) ÿéóÉ #'+/73#735#'3#735#3#3##5#535#735#33535#335‹VV00€WW11 ·RiiiiQ>>R@’>>R@É330V((34 ÿé÷Ï#'8<@73#&'#5'67#5367'2&'#35##"''3255##53#735#Ï +63" u(9I8V;B OO   ¢.iiEEÏ  *% >  )K  5Qb.YÿéòÏ 77'2'6'&''&''673#3#353#5#5335#535á 7OA: +%   h;BB't'CCÏ     =  0%A 7%0UÿéóË,CY767#53&''67'67#53&''67&'767#53&''67&'#53533#&'#5'6 Of  # 0C   T0C  4E??88EE77>[[[[[[ * #EÄ     DbE ' '     JÿéóÏ/;AG733#3'67#73267#"&55'75#'665533533533#7'6'&'•IIH 5'( !  5%)%ƒp V  Ï     E7- )O£LLLLV?ÿéøÑ%<73#'6553&'3533#'#5'67##5'67#53533#&'§>„C$  g   Ñ P:5 ,7b N%% `L",/TQ",%%4WÿìôÏ$1IQ7#5'675#53533#&7&''6'&''63&''67&''667#­ (99;; '    L    < +'  1n *) Q     6       YÿçôÏ#'-373533#3#535#735#3353#735#35#35#'67&'i355E›C3""5#kYYYYYY  >à +   E_C ' '     RÿèõÏ#'8<@73#&'#5'67#5367'23'#35##"''3255##53#735#Ú  N' [  /<8  88d  e"DD##Ï<) *R  556##3%   e Y  ÆcA   AA ƒ VÿèôË'+?CIO73265#"&553'#33267#"&553'#33533533#3#535#35#'67&'¼  ;c  ;++!!)ž$1++ K   Q<,   Q<,O+     ^ÿêíÑ#+/373673#53&'35#&'735'6#5##535#35#†   !#++  9+  &YYYYYÑ  WW [555 :dd$4‡áÊ 73#735#73#735#SS//\TT..ÊCCÿêâ4 7#5##535#7#5##535#u000±0004J J/J J/LÿèöÑ *0E73#5##536'6'&'3533##5'67#&'3673#&''67#‹Nc%6 3   $$$ F \=M=. 5; .5Ñno€ "   $$-    2 %'  IÿçôÏ #=J73533533#735#33533535#335335#3#3#67'5#'655&'76^)+(g(‚vv„^  ‚  3  ÁI,+'  - 6# %7M ' FÿêöÏ;JP733#3#53533#67327#"''67&'#'6553533&'73#67'675#'611?™R(    J[  s<0    Ï##"&&/!  -5-! #)>  # < ; >ÿìôÑ"(.BH73#3#53&'#53'37#3#735#35#&'7&''33325267##"&5''6šA .«.?& 6-††````6  I  ^$  !  Ñ   5 (K- *&     " Oÿè¬Î 73#"''3265'3#˜   IÎË ±£LÿèôÏ%5;AX_7'23&'73673#5##53&'&''33267#"&57&'''63&''67&''6367#ß 8QC& sB     P W N" +"+#  1 AÏ    ##%    !           RÿéõÔ!%+37;7&'#5'63&'3#735#&'735'6#5##535#35#¡!' C4) @ƒƒ''4$%QQQQQÔ    -B#  ##  0T T+RÿèöÐ #'+/5;73533##5#3533533##5##5#3#735#35#35#'67&'e6>>6 :"": [[[[[[" K Á gI *) "     YÿéðÏ '+/37733#5##537'6'&'3#735##5##535#33535#35#šCsA; ]  eeAAed));)d));))Ï#-.!     320d d&9RÿéñÊ #BFJN73#5'675#73#5'675#&'7&'3&'73#3#3#3##5'65#5#35#^B/MB/8]9$8711118v :+++++ÊW  W      4  U  RÿéôÏ048<@UZ733533##5##5#533&'73#3#3#3#5'65#353535#533&''67#&67#€#$$#$$!85//..4‡ ?-  ---4 ~ .( "( @Ï       5    7     RÿéòÊ#D73#3#5##5##535#3#73#3#73#3#3#"''3255##5##5##537#[Œ>F31D;%%E&&N..N00^ LJ  6@Ê (;;( * :  $8888=N OÿîôÏ#)/5;CGKO735333##3#535#535#535#33535&'''67&''&'3#53535#35#35#d399Iœ@33@@3F&&& f Vd¥&%Á     ;      333#####VÿéòÏ)37DQ733#3#53533&''6'67&53#5#5335&''6'67&¢11=œ   ?   }jS   >   Ï//    2–2::      KÿéóÌ+/37GKOS7#5'75#53#'35#35#5##5'75#53#'35#35#5#7#5'75#53#'35#35#5#ño•XEEEEEE 6 J,ˆ 3 K,~ D>3 % & f F:. % %   F:. % %  ÿéóÏ(26BO733#3#53533&''6'67&53#5#5335&''6'67&|NNdæ..'  X  ¶£|  X  Ï//   2–2::   …ÿéñÅ 735#53#3##"''3255'67#'— (:b   )¦.>>^  L9&!;€ÿ÷óÊ73533533533##5#3#5#5#€ 5Rf QŒ44>>>>JJo‚888…ÿéóÌ73##5#'66556ä (K   1Ì,††>3 5D:‰ÿòîÇ 73#53535#35#35#ä e ******ÇÃÃB0p.o/~ÿìòÄ 73#3#33#"''675#735#ŽW $$ 6 %//ÄU%5+,8  c1€ÿêóÐ'+/736533#&''67#3##"''3255#3#735#ˆ&'*   #s  Q 77¸    ;X  T;\ÿçòÇ 5;73#3#535#5#35#3353353673#&''67&'67#367c.&‚',O&&{4M 20 $ )?  ÇCC1E   QÿèõÓ $(47&'#67'5'63&'73&'3535&'76œ$ _  4' LLL  )- Ó&O4  !"  %%%   ÿìîÅ 7#'655î±Åa8 3=]:ÿôôš73533#3#535#LAAASºSAd66JJ ÿòóÐ)73533#3#535#7&''6'&''6VXXiägV™&| %C++‘ +8+WÿéõÐ1073#&''67&'#53&'67#© :' '+ + AA Ð@*'B#6 `ÿèðÐ73533#3##5#535#7&'7'6g577@@<<5  o ‚NN*JJ*O   WÿîòÌ73#3#535635#Û:1m#&›=)66Ì .j»¿jSÿçóÎ73#&'#5&'75#'66556Ü +:l* .! ?Î *6 ;I *)4,#xÿòðÌ%)-1573#3#3#3#535#535#535#535'25##5#35#335Ö '0b%**#`^ÌZ]"**$_O[9+(((<+Ì#$$#[####7$$$U?òÑ7&'3267#"&''7&'7° AM # - 1/Ñ   "%$ IÿíóÏ273733#'667#7&'32767#"&55'67536eTVa  !   ž119A =4?   K *!  M8^ÿéôÐ %73#53&'3#3##5#535#536'&'©:‹;6 -E==88>T:  Ð 0#88#]ÿêòÑ 27'2'6'&''&'33##"''3255#5357#ç 8QB9/  (   y??   @@&]Ñ    *+ 'aÿèíÈ$(,04733#"''3255##5##53&'767#35#33535#335a‡1  ,&< h&&9,e&&9,È  009¦  WJTÿéôÑ6>7&''6767'&'''63&'''67&''667667#È17! 5!B! (&   8 Ä   /      7  iÿêôÏ!%7#67&'#67'53&'73535à6  <#03PPP³f EL  À  )\ÿéñÇ *73#535#535##5##53&''67&'767#luwd__b„of$,!    NÇK  G$$'   WÿéöÏ:733533##5##5#53#5'673673267#"&55'67}00   <  Ï- s[#2 !/  #  `ÿèìÈ'+7#"''3255#&''67##5365#53#'35#ì  +   #(>2r.0KKee  N  %k} NN '*]ÿéôÏ#(-73#3533##5#5367#53635#335367#335š@=44P*' 3#V 3%Ï d33 d 6@ `ÿéóÏ(,073533#3#3#535#535##"''3255##535#35#h6;;44B“>--6z  MMMMMÀR\  $t 0NÿèøÎ';7373#3#3#&'#'67#5367#5367#3533#3##5#535#_9>B?F[$ / &!(5%$$9977%» b++ÿñ}Ï.73533#3#535#'67&'3533#67'675#$$$-l-$  ?  9%##5) %µ0    +!`ÿéíÈ&,7#"''3255#3673#353#5335##5&'í  f9  $ L+- ÈÆ  ¯8L;LL;L„ßEÿìôÉ )7#'6553533#3#535#3533#3#535#ó} +((1r.+-++5…=-ÉOA; 2>a2P!!I7òË73#3#&'#5'67#535#735#cy4D1 '& "/C2SSË< "44 XÿéóÑ $*0673673267#"&53#735#35#35#'33#'67&'l6*,<- 9%aa;;;;;;3|.  I Ï   T;   :\   ?ÿêôÑ#'=J73#3#'66553&'5##5#35#3353353673267#"&5'67'533¤A1,€ B*(    ) "Ñ =:- .!X =,3"    ! URÿèôÐ*:Nb73533#&''6655#67&''67'77''67'67&''67&''67&''67&'WCBB; 3:&"C     `           Z    ¸+:1: 6?+      .       0ôÏ ,26:V73#53&'733327#"&'&''67&'767#535#'3#735##"''3255'7567#53O+p/h$   #  aa<DJP767'7&''667'7''6'67&'7&''67''6'6'63'6Ž  /5A  H  #+ +#1-C0 -4$D D7*a \Ñ              2   (WÿéîÑ06:73#3#"''3255#3#3#535#535##53&'#53&'367#35#£A #  -$$E"",% ?A ##Ñ   w55’¤> ‚PÿéñÐ#'+/73533#3#535#'6'&'#53#=#73#735#X=@@H¡E=q  P  ˆb?? º**  ¥ tt CC9/XÿéóÐ3;?73673#3#3#3673#53&'735#535#535#53&'#5##535#„&  ?77CC ›#EE::B qXXXÐ     žA A'XÿíóÐ-159=73&'73#3#53&'#67#3#3#3#535#535#735#33535#335a9?#—%[9.€8>>D›D;;5""5&[""5&¼    N.,UÿéõÏ'/37;?73673#&'#5'67#53&'735'2##53#'#;5##;5#à ! 3" %" "0A4^ƒ:$$(($$((Ï   +(  Î ggW$@ÿé¡Ð .73#53&'3#735#367#"''3255'757#rU"KK%%L   !(2Ð  35.  YÿèöÏ #'+/5;73533##5#3533533##5##5#3#735#35#35#'67&'k4::4 6 6 ||VVVVVV I Á gI ) ) "    PÿèöÑ )/C73#5##536'6'&'3533##5'67#&'3673#&''67#M`%51 ###  E [=K<+ 4: ,5Ñ no€!   $$-    2  %' UÿéôÏ(048<73533#3#535#&''67&''6#5##535#3#735#]<AAHŸD<  _  $cccCCÀ::        =m mRA ) WÿéôÉ(,04:73#3#3#3#3##5#535#53&'#535#535#735#335335367#\>::F! $?HHBB5C99>*F!2É9 ‚ Sÿé÷Ð 473#53&'3#735#3#735##5'67#535'673#&¨CšB2‚‚^^DD$$% "6D1=< 8D7! #Ð$R2$ k./    AëÏ73533#3#535##5##5baaU½Tbׯ¼9./ÿìóÃ7#3267#"&553#"''3276Ó/ # V  °¨   ¿I.   ÿè|Î7373&''67&'67#67# $ 5 " "% ¢,Q,  "$@ %7#Œÿîé¼ 7#5##535#é555¼ÌΣ`ÿéòÇ %7'66553'#33673267#"&5‰ tLL< %   €D5 1#_G4! *  + ' kÿóóÏ7&'3#3#3#535#535#¤  &711<ˆ8//6Ï &7<<7`ÿéëÏ$*736733#"''32665#'6767#7&'&'i.@  , ,  K  ‹&&Y6 2?5B 0Of[ÿéõÏ73533#3#&'#5'67#535#r-22=4 !%)6-©&&%2$$2b`0%(2%`ÿéöÏ73533#3#&'#5'67#535#m4992)%&&/4©&&#,&%)`_/$)3#iíÏ 73#53&'&'73#536ˆO¼V!  h @Ô} Ï %   dÿéóÐ7'673#&'#5'67#53¡=4 9. !-6° );5ss4 ";eÿèïÏ!&7373#"''3267##5'67#'672735¥.66 # "" ##Ï#7@ 0iZ&" ($H6ZÿëòÆ 73#3#33#"&''675#735#vm-44&)  -GGÆU&3*: e1Zÿè÷Å"&7#3#67&'#67'5#'6553#ìmq0  2  ZZÅC   $Q`  mB4 4@^*YÿèöÏFL73&'33#673267#"''67&'#67#"''3255'675#535'67&'  !.-    "    'R  É)!)* &%1( ."<  0("  kÿéòÎ 73&'73#3#3##5##535#k:9‡vvvvsMMM² RR2 bÿèöÏ%+73533533#3#535#35#35#35#'67&'m8$888888 %D °nnDC/  XÿìôÊ )7#'6553533#3#535#3533#3#535#ór#((/k(#%((1{6%ÊOB: 1?b2O  ]ÿèôÏ3873533#3#535#'67&'3&''67&''667#q0//;ˆ90 O(D  "% $  $+ 7 ¹*       $ XÿìõÏ=CI7373#3#&'#3#"''3267#3267#"&55'67#5367#7&'7'6h0=BQ  / M   /# .& )*[¦)  -9 E  9    nÿéôÐ#+/373#327#"&'#67'56&'#5##535#35#ß 4/  * <"fNNNNNÐ   ]& Jm m'<YÿéëÇ$(,7#"''3255#'6553533#3#535#3#735#ë  ]K??ÇÄ  ¬SD5 5?_16=]ÿéñÏ,073533533##5##5#373#3#5##5'67#35#k##2CK S?  ),??³- Z F "Z)kÿéõÏ#'+73533533##5##5##5##535#33535#35#k$""$U!!3"U!!3""²%’’7%%%^(((eÿéóÏ 67'2'6'&''&''673#3#353#5#5335#535ä 3J=5 )"   `6==$m#==Ï   >  0%A 7%0]ÿêôÏBHN73533#3#3#676767&'7&'#"''3255'67'67#535#535#&'''6i777007e F  }X::º**  ¤ttCC8._ÿéóÐ3;?73673#3#3#3673#53&'735#535#535#53&'#5##535#†'>88BB’??66<mQQQÐ     B B(XÿéôÏ17;?EK73673#67&'##"''3255#5'67&'767#33&'35#35#'67&'e)A"  *  )   7 > +@@@@  `·    90  -5   E-(   ^ÿèôÏ37;?C73533533##5##5#3#3#3#3##5#535#535#535#5##5#35#335` *!!* …8==AA7b*¼!!( `ÿçôÏ#'-373533#3#535#735#3353#735#35#35#'67&'n233A”@22 fzzTTTTTT <à +   E_D ' &      XÿéøÊ 5973#735#3353353#3#67&'##67'5'67#735#i||$s u0   4   QQÊ87 3    . "  ! _ÿéõÏ'/37;73533#3#535#&''67&''6#5##535#3#735#f9<-/+  ) 8bKKKKKÁ   2 : Il l'<eÿèöÏ3:73533#3#535#&'''63&''67&''667#w-//;„6-S4  3  !'$ "  +º-         `ÿìöÏ)37;?C73673#&'#3265#"&55##5'67#3533&'#35#33535#335k(D&-     -G-²  J   V ';? ÿèö£"AGMS767&'7&'#'667'7&''6'67&''67&''6767''67'67'6f 1BBZ   ; 55 <7(< >#"%  : ; >< +T UB 8g j£        .   "  dÿéôÒ)-173&'73#3#53&'#67#3#3##5#535#735#35#l75#ŽR4$p/??>>.JJJJ¼   Q/0ÿéð›,AG73'67#&'&''6'3353#5#'67#535#3533##"''3255#&'Ÿ7YO, !f 8/LY  Y ›4 '     +1ªB2 '"    `ÿéöÏ $(.4:@73&'73#3#3#3#5'6353535&''&'''67&'ˆ')$$$$*s #####2  >  2Ï O *$%4 ^ÿèïÎ&,2:S737&''667367&''66''6''6#5##53733#"''32765#'67#ƒ  @     @ ƒd#:   ( 3 + Î    (     @))0>:,`ÿéóÏ"&6:>73#&'#5'67#537'23&'#35##"''255##53#735#× D! T ( 1100U S@@ Ï @ ')Q  ;Uf.cÿèôÎ0K73533#3#535#3533#3#535#'3533#7'75#3#3267#"&55#'67#v-..8~3-<FF!ˆ(   + #"À6 2! $2  #`ÿçõÏ #J73533533#735#33533535#335335#3#3#67&'#67'5#'655p%#|#X#qffr,  (   ÁJ- *(    -- 8& $7aÿèôÐag73673#3#3#535#535#53&'33#67327#"''67&'#7#"''3255'75#535'673&7&'6//:…8..50(&   !     +Ð       ]  (       RÿéöÐ&*.48Lf733#"''3255##5#'655367#'635#33535#73573#"''3267#'67#3533#3##5#535#'6u    "   '  C   Д %!!%AA RJ o6 , "F  22 ÿûTÊ736753#5'537+ ʱ‡¤ £—ÿëö¡@QUY73&'73#3#53'#367#733#3#3#3#3#3267#"&5535##"''3255##535#35#*+r)#OTTMNJJJJFF$-' NN 99999   (    b T g ) aÿéñÏ#CGKO733533##5##5#533#735#73#735#3&'73#3#3#3##5'65#5#35#‡ $$ ##==6==D2400005l 6&&&&&Ï  #.." J`ÿçõÐ%QUY]agm7'673533#3#67'5#'67#53535#'673533#3#3267#"&55#'67#3#735#35#35#'67&'s     *      >ttPPPPPP  F °      )[A $ #     ÿèñ•!%)73#3#&'#5'67#535#735#33535#335%´OaO"3 8$!9 1#M`Q>>R<Ž>>R<•V  "55  42rÿéòÁ73#3#"''3255##5##535#r€6/  08Á"i  R’’qƒ"nÿèõÉ'7#3#3#3#67&'#67'5#535êRJJII[3   / É   EM ZliÿèóÏ'-735#535#53533#3#3##5##5'66&'m6++3366..=†s@-"! | M<>O(*!  jÿèõÐ#'-373533#3#3#535#535#3#735#35#35#'67&'t244..:‡:--2ppIIIIII #<Ä     DbE ' '     eÿéóÉ %)/573#3#53'#735#35#3##"''3255#735#'67&'ur5;‹;(LLLLq.   0MM `  ÉE * % E3( %*  bÿéñÏU73533533##5##5##5##53#'67#53#67&'#"''32654''67&''67&j$ $„]LL  (…C      (- ! !¾ ,,)             ÿéŽÎ .7'2'6'&''&'3533#&'#5'67#„ 0F91 (    411  &*Î #   =  AJ(( ÿé›É 06<73#3#535#5#35#3353353#3##"''3255#&'''6‹+&%*O%%gtt=  >m  E É==,:( %   ÿé“É $(.473#3#53'#735#35#3##"''3255#735#'67&'n19†8(IIIIn+   0JJ V  ÉE  * % E2) &*    [ÿéëÎ73#"''32765#'6&'W  L"  ΂  n#/  ÿïòR !7&'7&'''6733267#"&5… Y • /  -#R  ( 7 `ÿéôÏ73533#&''67&'765#nF''$ &% %EŸ00>$+# 1_ÿéìÏ73#"''32765#'6&'‹Y   N   σ  n#2MÿêèÏ73#"''32765#'6&'yg\  Ïf@ j!- ƒëÎ73#"''32765#'6&'¤<  /   Î n P % !ÿëîT732677#"&547#5ÀF799 4M_hT   ÿòðÂ7333267##"&54767#ºt0822G$!f–Â\3 !$Q!ÿëîG7327677#"&547#5ÀF796 3L[dG  &ÿìëc7333267##"&5467#0•]%6%'I#$Kec,  &%ÿðî~7333267##"&54767#&®j+3,.E![„~:  3€ÿñò¾7333267##"&5477#€aG   5J¾  "' $ihÿîòÏ"736773267#"&55'75'7› AC03'.Ï" ;@ %  D9l@ò£(733327#"&547#''67'767#53˜)      £       _HõÏ(733327#"&'5#&''67&'767#53”-    Ï.%     ]ÿéòÏ*733327#"&547#&''67&'765#53Ž2  "!  %%Ï,6&#$&"$7 )" 58 AÿèøÏ*733327#"&547#&''67&'767#53;  & +,  %%Ï,6&$#&!%7 ) 87 gõÏ(73533327#"&55#&''67&'765#q.     ±M# ):  $&  ÿêó„+735333267#"&55#&''67&'765#DP  <64 Coh # Z  $   ÿêó„+735333267#"&55#&''67&'767#!?M  987 ?oh # Z "  `ÿéìÁ73#"''3267#'667#'6m   &) $2  Áš"%‰XNB`0! 'UUïÉ#737&'#"''32767#'667#'6ao     : + É  + 1M &$ SZæÇ73#"''3267#'67#'6_‡  & B ;9ÇL5A4V^ñÈ"737&'#"''32765#'667#'6`p    6 -  È- ,D  ^ÿéìÁ73#"''32767#'665#'6rz  "%$%0 Á¤3.qfEGU## ÿéóË73#&''67#53655'2Ò '/jaPJN N_c&+ZË "?&)ED*+; ;ôÌ7'673#&'#'67#536v&!f90kG6<F 6GU¯ !++ UÿéòË73#&''67#5375'6ß <8. )6=34.BË7J?;!I (AÿéòÊ73#&''67#535'2× "KI3 07<@DAÊ'H B;'+=5 ÿêòt73#&''67#5367'2¿ "f\L NTPZa#Ht  +)  ÿêô’73#&''67#5367'2Î $,j_P S [ U [`%)W’ ,40) Y\íÏ73#'67#5367#'2&'Ú>E1 '3<8 Ï "  < uÿêòÎ7#3#&''67#535'6Ý52$#*01 CÎ4D""66"+=4  ÿæ‹Ï(73533#3#&''67#53655#'6'$$.1 $ * 37À ** +%.  $LÿèñÏ&73533#3#&''67#53655#'6n66A>( ,3 49>$ Ä ** 773!#.   jÿéòÏ%73533#3#&''67#53655#'6‡))42 "%( -1 Ä ** 762#/ ;ƒÏ,73533#3#&'#'67#535#3533#7'75#(((/   0(*&&&/:0*Á    >VÿèôÏ 73#7&'''6'66 1 D `@5 19Ï—}"' &#5% &'+4 .U¦Ï7''67'6767767'”    M '%=8" ?&QôÌ)73673267#"&5'33#7'275367' +   & H)))7; Ì+   _+ KIfÿèðÎ73533#3#5##535#35#f;;;0M1;MMž002qq2~9¬ÿðêº 7#5##535#êºÉʦ”TÿéôÐ%+05733#3267#"&55#'67#5'667#367#335ˆA )(  73 + ". 4 !5)Ð  K;  ?7! )@   9'YÿêóÏ,27&'3533#67&'#"''3255'675#&'Ì  \;::      +; Ï   ''1 #B  <$$*. NÿëóÆ 73#3#33#"&''675#735#nt/77)- # 2NNÆU&4,8f1cÿéóÎ 37'2'6'4''&'3567#533##"''3255#á 2H;7 * !  @Xt;;  @Î  d , (bÿèôÍ ,27'2'6'&'&'3533##"''3255#&'å 7OB6 +  [##   [% Í <I  F gÿéêÉ 73#735##"''3255##535#35#mwwQQj  ]]]]]É>=x  2‘';\ÿéóÏ#'+73533#3#3##5#535#535#35#33535#335c<==88BBCC66<##5$Y##5$¼d''d;@Sÿé÷Î1;73673#3#3#'#3##5#535#5'67#537#537#3533&'d99>9?S )::<<* &#*4- !# ¼  ** D SÿèóÐ"',73#3##5#5367#5335#335367#3355#•A#44Y &)##6$Z"6)# Ð m44 m-I  M ]ÿéóÏ(,073533#3#3#535#535##"''3255##535#35#e7==66D–?..7}  OOOOOÀR\  $t 0]ÿéóÏ'+/736533#&''67#3##"''3255#3#735#g959#. 3 –   nKK))¶     9W  T:UÿèìÏ573#"''32765#'63#3#353#5335#535#'6yh   ^ ?'++a.. Ï –!€ 2$43#2 BÿéïÆ (7'66553'#33353353#353#5#5335#q hh[,e -‹)D5 1#_;*&)88):7)E :)7\ÿéñÎ -7'2'6'&''&'#5'67#53533#&à 7PB7 /    J )7<>9% Î #   gJG $$YÿéóÍ%+17'23#3#353#5#5335#535#536'&''&'æ 9QC5 ;DD(t&CC6Z+    Í 5'D :'5Nÿé§Å73#7#5'75#35#35#675#NX   ÅŠ/*—##W$a'Gÿï™Ï 73#'635#53#3#67'5#f'/   4  Ï  T$$9 D]ÿé÷Í #06<B73#5'675#73#5'675#&'7&'&''6'6'67'6a@ .J@ .5[ ) +& .# * +/ #5 7: *R SÍU  U      5       +YÿéðÑ K73&'73#&''67'763353#3#"''3255#67'7&''67##5367#Z@@–a    Q]9G   ;   84½    11CI  2   PbUÿéóÑ;73#5'67335#35#3#3#"''3265#'67#'67#'67#{mt imPPPP'›ff  %  )  !² C:  )& ';"* #  CÿèöÐ $*06<73#3533533##5#'6553&'#3&'''67&''4'©8w"I =+""  Q M  Ð &::-7#PP [) # QÿèïÎ'-3;W7367&''667367&''66''6''6#5##536533#"''32765#'67#z   F    G n'?   -& 0 $Î    '    ! A((/ : ",ÿèòI"73#3##"''3255#535#535'2Ô %-YYgg gg]]SZI   bÿçôÏ#'-373533#3#535#735#3353#735#35#35#'67&'q022@’?01 exxRRRRRR  ;à +   E_C ' '     lÿûÄl7#"''3255#'65535#35#Ä   &%%%%l^  ))-[ÿèôÏB73533673#5##53'3#735#3#3##"''3255#535#535"'2} p aa::S 88DD   BB77:È %% ))2.(      NÿèõÌ&Nf76767'33#"&55#'6653&'#33#3#"''3267#735#5'67&'767#67#53&''67&'µ        -# JD $!'   +     0N 5I  Ì    # +!93 8          HÿéôÏ28<@FL73673#67&'##"''3255#5'67&'767#33&'35#35#'67&'V/H'  .   -  &= D /HHHH j·    :0  -6   G-)   ZÿíñÏE73533#3#535#3#735##5##5#53#67'7&'3#3#535#535'6_=AA3y3= ttNNsq4d4   55@“@55Å   !% ''%        VÿçôÑ !%)-39?7#5##53'73#673#5'675#5#5#35#7'6&'''6ñm:3\$1Gw ( %ZQQQQQ  P#  "À%%   ]SG   i }   Yÿç÷Ò !%6?HV\bhn7&'6'&'6'&'63#735#&''7&'7367'7367'733265#"'&'&'7&'&'7&'Ö %  % ‹‹eeQ   K 8 7  L   D   -   D   Ò         ,I(    2NZNY%# %2        OÿèòÑ#8\afjp733#5'667#35#7'53373267#"&553633#3267#"&55#'67#5'67#367#335&'zI‚ D>^^(4 &A   NH /   . $+ F @ !%6* Ñ $   /  $     # '         SÿéóÌ+/37GKOS7#5'75#53#'35#35#5##5'75#53#'35#35#5#7#5'75#53#'35#35#5#ñlUBBBBBB1 J+ƒ1 J+~ D>3 % & f F:/ $ %   F:/ $ % …ÿèõÏ#73533#3&''67&'#535#67#Œ('''    $(4 +­"",/    &,nÿêŒÏ&*.73733#&''67#3##"''3255#3#735#..1  %) ~   \ AA¶    9V  S9\ÿèõÐ73#&''67&''667# [! %' ( ! >Ð!D, 1 0 :"= ÿò€Á73#3#7'675375#m&"2=3Á;I  ~zœ ÿ醯!73#33#537#537#35##5##535#s<7 z$'/(@???Æ5#O#HWW7%ÿèÒ 073#53&'3#735#367#"''3255'7567#G0r+]]66d  1 GÒ -51    ÿé{Ð !%73&'73#3#536'&'#5##535#),iLnA + ];;;¸  SZ Z>,ÿëŒÎ )73353353#3#3#735#76767'7&'qyykkDD  7C Ã**08*  ÿé‹Ñ/5973#3#"''255#3#3#535#535##53&'#53&'367#35#P3  "=! 31 Ñ    x55“¤ >‚ ÿèõjG73673673#3#&'#3#"''327#3267#"&55'67#5367#53&'J  +fw-# &D]  Q"=E. $6KL#g           qÿéòÈ'+/37;?73#3533#3#3##5#535#535#535335#735#33535#33535#335wv1 066550 21N1B%ÈM"".+ ZnÿéôÏ.:@F733#3'67#73265#"&55'75#'65533533533#7'6'&'¤77<'     + hWCÏ       E;, +7O¦LLLLRÿéía!%+17=7#3#3#3#"''3267#55#5#5#&'''67&''&'âSKKKK^   ´VBBBBBC  K  ‡  Aa  &N   qÿéóÐ'+/73'73#3#53&'#7#3#3##5#535#735#35#v20!‚ I((k+7766,EEEE¼    Q/0 nÿéîÇ #04873#5#73#5#&'7&''6''63#5##53635#35#r<*A;): I ! 5 !4G$GGGGÇ_N_N      j j /;nÿì÷Ñ *06FL73#53635#'673&''67&'767&'3&''33267#"&5''6 ?rLL       7 ?     Ñ {{ v[      O 1  3!pÿéóÐ H7'2'6'&''&''3#&''67#537'67'6776767&'â -C71  '    _ 8, " ( (/  Ð       4       $kÿéïÏ)?S73#"''32765#'63353#'67#5336'673#"''327653353#'67#5336‰W  N !&   M  <$$  ÏL .  !   V  K - "  oÿéóÏ4767#535#5673#35335#535#53#3&''67&'  V,. (./ '  6 [ ]]^   tÿêòÇ 5;73#3#535#5#35#3353353673#&''67&'67#367ww# p!%C  d'A )'  5 ÇCC1 E     ÿè÷Ï735333267#"&55#'655#(*= F6¤++™ ŠZ9 6PdÿèõË'+?CIO73267#"&553'#33265#"&553'#33533533#3#535#35#'67&'| 73 7m$%!.$$  G  Q<,   Q<,O+      ÿìPÏ73'67#'6367' #   Ï %$m  `ÿéöÐ %+17&''63#3##"''3255#535#'67&'§% " !,B77   ;; \  Ð #"!A  =8 $ oÿëôÆ !.73#735#35#3267#"&5536'33#67'ovvPPPPe   g&&Æ_9;= *  _1  fÿéìÎ)73'67#'63#35#535#53#5##56˜@  2!""U##%8UÎ  #, !!} xkÿéêÆ73#"''3255#3###535#qy  eXXQ7$$ÆÁ¨O [<*eÿçõÐ%QUY]agm73533#3#67'5#'67#535#'635#'673533#3#3267#"&55#'67#3#735#35#35#'67&'u    >      ;ppLLLLLL C Ð      )[A $ $    dÿèòÑ#8\bglr733#5'667#35#7'53373267#"&553633#3267#"&55'67#5"'667#367#335&'‡@s <4OO!-  8   F@)  ' & <5 0"   Ñ $  /  $    # '       ZÿéôÏ=LR733#3#53533#67327#"''67&'#'65534'33&'73#67'675#'6¥++8…M&    @Q l5)  Ï###!%  05-" %(>    ; :tÿïóÎ!)-1573533#3#67&'7&''67#535#3#53535#35#35#€'--7<  +/(2'j     ¸    e???-----tÿèõÏ,0473533533##5##5#3#3#&''67#5367#735#35#{j-6* #& ' ! -3*DDDD½P !(   00 vÿåôÐ#'-373533#3#535#735#3353#735#35#35#'67&',--7~5,,YllFFFFFF  7 Ä ,   CbE & &   lÿèôË'+?CIO73265#"&553'#33267#"&553'#33533533#3#535#35#'67&'Å 5S 4$!"ˆ,!!  B Q<,  Q<,O+     qÿéõÏ'/373533#3#535#3#735#3673#53&'#5##535#s566/q/5llGG„aIIIà   *0#  )= =!qÿé÷Ñ3:73#&'#5'67#535#'2373#&''67'7#367à 2% #11<#K  ( &/ Ñ''     {HòÊ$)733#"&55#'6653&''67&'#367Ö "  a   "   Ê   ;     ÿæîj"&*06<73#3#3#"''3267#&'7#53635#35'67&''&'dY±±ª   - z6%|||“ aj4   Z:      ÿéîn",08<73#3#3##5#535#53&'#53'37#'6553'#3#5##535#µ0 $4..%%.!+| [44"""n   1 ,+*3# <<$-ÿëÎz%/37;73#3#3##5#535#53&'#53&'367#'6553'#33#735#¦   P>++ z  $$ 6 % !36'=A òÏ -37;73#53&''6553'#373#3##5#535#536'&'3#735#ÊPQCP! $-=11 Ï  I;;;C2!33  4R05î¦#,04873&'73#3#3##5#535#53'#67#'6553'#33#735#|-12,,))1 C!Z661FF##˜   '.+ ÿêñ;73533#&'#5'67#eeR&. 6'%6 .'R/  .- ÿéï%.2:>73#3#3##5#535#53&'#53&'367#'6553'#3#5##535#¶+#3--''/ + #}[44  (( H.- '45B0&UU6%MÿèõÑ6BFJV7'67#537#5367#53&'73673#3#3#&'#67'73&'73&'#35#35#67&'j%1,2=(" DBGV' Y   $ FFFF/  )K     5 m " $  [ÿèôÏ#)/73533#33#53535#35#35#35#35#'67&'d8??3™.8OOOOOOOO  H¾xx-,,+"    UÿèñÓ4<@DHLPT73#33##3#"''3255##5##535#535#'6553&'5#35#5353535#33535#335²65+ +0  +((0< 00(:D+I+Ó   T  !i  C3 5=\+ (   C ) YÿïðÈ #'+/373#3#735#33535#3353#3#735#33535#3353#\’’ $$6#Y$$6#pŒŒ%%7$[%%7$y——È B' $ # B( $ %PÿêôÏ=LR733#3#53533#673265#"''67&'#'6553533&'73#67'675#'6 ..;M%    DU  l8-   Ï##"$%! 15-! #)>   < ; cÿçóË #'+1773#3#535#5#35#3353353#735#35#35#'67&'d-'„',Q&&kwwSSSSSS B Ë 55 $,bE & '     DÿéóÏ&*.26Kf733#"''3255##5#'655367#'635#33535#33573#"''3255#'67#3533#3##5#535#'6q        *  J   $$ Ï • )&&%@@  TGq7 $+!E 11  UÿèôÐ .4:73#53&'3#735#3#735#3#3##"''3255#'67&'¨>‘?/YY ??,ttŸF  G& Z Ð 'U8( ;     PÿíóÏ>F73533#3#535#3#735##5##53#&'3#3#535#535'67#&'7#6[?BB8ƒ8? ||VV{yn %88J£E55 S# Å  % !((          RÿéòË >BFJ73#735#35#35#73#735#35#35#3'73#3#3#3##5'65#5#35#a>>6AAG96////8u =*****Ë`E ()C`E () E   ÿë‡Ð+17''6767&'3#3#'67#5365#'6&'f ''+F)582 (,0 :Â! ! 6( B   ÿè„Æ%)-373#3#"''3265#&''67#'67#735#35#33#`8 M     ::::=PÆSVB      21X( ÿéÏ'/373533#3#535#3#735#3673#53&'#5##535#566.p/5kkFF #„dHHHà   *1$ (= =! ÿéŽÈ159=AE73#3#"''3267#3#7&'74''75#535#'67#735#33533535#35#qKY  -"""')""    K#È>iU/ /  qÍ737533#67'7 ,5¢…«DN gÿêõÏ#)73533#3#3267#"&55#535#35#'6u155)  :+1@@ $!¸G? EGN!::cÿòòÎ#73533#33#53535#35#35#35#35#p277-(2BBBBBBBB·‹‹;655`ÿîòÂ4873#"''325567###535#73''67&'767#3#iw ]. C4       \‘‘Âs y "d nR@/   y^ÿéóÑ<73#5'67335#35#3#3#"''3265#'67#'67#'67#‚gnbfJJJJ%’``   $   '   ²C8 )& ' ; ) #  MÿéöÏNRX73533#3'33#6735#"''67&'#3#3#3#67'75#535#535#535#535#75#7&']##.**      " -8!)! a  ¸="+1  #> —pB  uÍ7'675#535#53&'73#3#6r02##(& ') *;2 27 ÿéŽÏ(73533#3#535##5##567'5#'665/,,$_&/pKX   º8,-*8   9#  & ÿð|Ï(73#35#535#53#563533#67'675#7?-e+((09+Ï jb„ !ÿïyÏ$73#35#535#53#56'675#53#67?-eM5* &^%Ï jb©.)tÿèöÐ 1573#67&'7''67#53&''6733267#"&5'3#¶0;  %( ,= Ð #  ! tK?L OheéÎ&7773267#"&55'75'75'2Î '0UVgi! ,(WZHJ"(XÎ      ÿì÷Ñ(777327267##"&55'75'75'6O 3 P+ Ñ.(2   4)- ÿéŒË(AOS733'67##"''3255'67#53&'767##"''3255&'#5'#5673&'75#35#q,    +0   Wt  4  +  U"Ë       We  4 .,K|+   A ÿèÉ -273#735#3#735#73#735#3533#&'#5'67#37dd>>66177W565  *;É3055<16ÿéÏQ73533533#3#5##535#35#3##"''32654''67&''67&''67#53#67& V- FF;   $) $ %|>   ¾,,-\            ÿé’Ë ?CGK73#735#35#35#73#735#35#35#3&'73#3#3#3##5'65#5#35#77,99>-,&&&&.a 2 Ë_D (*C_D (* A RñÐ,28>BF7673#&''67&''##'2655##535367#''6'&'3#735#† ?    M.I  "2 ?  11ª#     ( /JX&&  *   3&  jË73#3#5#53&': #?;N (ËlÿêóÐ !73#'63#3327#"&547#6¥° ¸ ¥Ð   7'0!,GÿèõÃ73&''67&'#367T“,$ & 13#  "ÃT<"%""0M*<0;LÿèçÐ 73#'3'6573#Ôn7Ðçç|C) '9oÇFÿèõÏ73533#&''67#W9FA?4= H9’==S1-FF,6ORÿèíÏ73'67#&''6ŒX;+ aJ (Ï RA!v  0NÿïòÐ73#3#5#53&'™ Fwl‚H ЋŸQÿêðÆ73##53#3#"''3265#itt)Ÿb ] aÆ<*G+KÿîôÏ,7#"''3265#532767#"'&&55'753753ä  &", :( ¤U$/ _Y d ! cB< D>BÿèóÌ73673#&''67'67#367L2_  #"8 55 ,B + š@ #  #"$ 5gÿìõº753#3267#"&735#gzf- 7(RR¹oC   hI`ÿéèà 7#5##535#35#è`````ÃÚÚZG¡G^ÿéìÏ!7#"''3255#&''67##5373ì  * *?¨§  #A­¿''DÿèôÏ 73673#'67#''6767&'[$Z],+ !u %,! ¨fF GXX#)  -RH,JÿéõÐ "73#'63#33267#"&547#rhr ll jÐ  ! ! )bÿéóÐ)73#"''3267#'667#53&''67&'”G  9  Wo%# &! # Ð3""V3   JÿèóÐ+73#"''3267#'667#53&''67&'…S  E !j„*( . ) Ð 3$#Y2  TÿêðÁ73#3#"''3267#5335#367#TœGB  y)BU,/Á*q%bQnnIÿèõÏ 73#7&'''6'66š4G q4` 6@ÏŒm!'( )! ,J,JÿðóÊ733#3#53533¡88=©!!ÊGj••GÿèñÏ733#3#5#'65533¸%u\J!<Ì< jW7#+@n?lÿéõÐ$7367&'#"''325'3'67#®    4-   Ð5 ."!3R  ‡.#1?JÿèôÇ#(733#"&55#'665#53&''67&67#Í" 3  (' ,. ,,LÇ<  0#  *v3  YÿééÏ 7#5##535335#33535#335éj??,,?+j,,?+¡¸¸..I777888SÿéðÏ73533#3#3##5#535#535#X>AA<©&&"'>>'"[ÿòñÇ7#3#5&''67&'76ð‚–l  ǯÕ&#   GÿêêÏ73#'6753&'735#²8s; 6__§\%)3_^6 ÿéâÏ73##'6753&'735#–LŸ Q N‹‹§U$,"6WW/ ÿéyÐ753&'73#'6735#"% D11TUZ<$ "I6lÿêìÏ73#'6553&'735#À,X,'EE§\># 8W_7Sÿæ÷Æ#'-273#3#&''67&'767#535#35#3353655#335dŒ>785 2 ) % 46<""4#W!"4#Æa    a>? ÿéá\ 7#5##535#35#á›››››\ss)A^ÿêëÏ73#'6753&'35#¬ 0c2NNÏ\?"1_k6 ÿê„Ï#'73533533#3#535#35##5##535#35#x(>:::::±  Crr*AÿúˆÏ#)7367#53533#&'#5'3#7'6'&' #""   M`b  5  ÃŽ#MM =D'É ÿç“Ï/37;?CGM7367#535#5#53535333##3#3&''67&'7#735#33535#33535#33567!#0,,,,1<;  ',F,J08   8-   -    ) G; QÿéêÇ7#5##535#"&55#'7335655#êqq  WqÇÞÞ¹+ i/7" ~dix*/?ÿçóÏ"7&&'67'7&''5'6556Î  ! =ÏHT$%WR¨$ ²+_< 9Z9]ÿéäÄ 7#5##535#35#35#ä_______ÄÛÛ<)d)d(DÿèîÏ#(73673#"''3267##5'67#'676735œ!?  +1 2* --"Ï#8A 1ia3"( '#H6FÿéòÏ73#'675353335#¡Gt,Q~``¤N41FFW*SÿêòÏ73#'675353335#¬>f!(FnRR¤N4-JFW*uÿéòÏ73#'655353335#º3T 8YAA¤N5:;FW*zÿïóÏ73533#3#535#3533#3#535#…'''0q.''''3y3'­""$$c$$%%rÿêóÏ28>776767&'7&'#"''3255'67'67'6&'''6Ú . ! !&   D 6Ï 5  D  <   #  lÿéóÏ#@DHL733533##5##5#533#735#73#735#3'73#3#3#3##5'65#5#35#‘ !!99188@*(%%%%+a 4#####Ï  #..#  J lÿéõÐ#'>B[^73#3#&'#5'67#535#53635#35#''67'677767''''67'6767677'¨ 6-  .7  A        O        Ðf 78f 6H   '$   '"  uÿêøÇ $(,0487#3#25267##"&55#535#55#7355##373535335ï((( %  ###@ D/U/Ç8h  g8ʺ° º1*nÿèòÉ -73#735#3#735#'3#735#3533#&'#5'67#ƒWW33 77Q8876+  ,É82876  76nÿéöÉ 4873#735#3353353#3#67&'#67'5'67#735#uvv!j„„ q*   -   KKÉ75 4    4 $  $ wÿéòÌ  5;73#535#535#3#735#'3#7'75#3533##"''3255#&'„ccPKKP388P6T  T  ÌJ  B75      iÿéóÐ@FKP733#67&'#"''32654''67&''67&''67#5'6367#367#335’4"9       # '   ,) 1Ð  9   (*     - - lÿéóÏ"&8<@73#&'#5'67#5367'23&'#35##"''32655##53#735#Ù ? N   $,)++O  K77Ï >'+Q ;Uf.lÿéòÎ(048<@73673#&'#5'67#53&'735'2##53#'#;5##;5#ß  *  (5)Hl.Î   '$   Î hhW$ sÿéîÇ #/3773#5#73#5#&'7&''6''63#5##5335#35#t<*A9': H  4 2E%EEEEÇ_N_N      j j&;ÿçéi#'+/39?733#&'7#'67#5'6367#35#33535#335&''&'WM3      * MH 99J9ƒ99J9+   i <    1  "     sÿéóÏ#'+/DJ73533#3#&''275#535#35#33535#335'#3533##"''3255#&'u244/ +8,,2,I,ET  T!    JJ *,& !      vÿéòÐ'+/73'73#3#53&'#7#3#3##5#535#735#35#{/-|E&&g)3322*AAAA¼    Q/0gÿçóÑBFJP7#35#535333##67&'#"''3255'675#535#'6553&'73535&'ðe&%     &5?  ½4 ##   "'    ! C3 4=[ 0$.  nÿèðÇ9?E73#3#"''3267'6765#735#73#3#"''3267'6765#735#&'7&'p;"&    * (C;!&    *(: N Ç:h!   <:h!  <_   jÿéöÏ%*.?EJ73'67#&'''673&'67#3#3##"''3255#'67'‡ &  F)  / 8>>q/  / Q !Ï <-     K* 89 6 )pÿíôÆ ).>7#3#3#535#35#5#73&''677&'#3673533#3#535#±? 1<  g0229ƒ70Æ6ˆ)>>w8&   $)ŽvÿéóÏ 77'2'6'&''&''673#3#353#5#5335#535ä .C7/  $   S+22]44Ï     ? 1'B 6$1xÿéóÐ&.26:>77'7''535633#"''3267#'67##5##535#33535#35#¢ !A ;K/K/Ð /   LE/5 .Xq q+D[õÏ"7367&'#"''325'3'67#y ( ;#   dX@ 8AÏ    ,+  >."BÿéëÏ#)736733#"''32765#7&''67#7&'L;O:    3;9!  Œ&&Y7 T 9,.ROCÿéôÏ73533#3#&'#5'67#535#V>BB<.*&*.*8>©&&&*%*1mk9!#0&AÿçòÐ '-73673#3&''67&''67#67'&'V'\_R %## %  , $-   £8!     0N4!o  WÿéçÂ7#"''3255##53#735#ç  k)??¾  §ÇÙ6b@]ÿéæÏ73353353#5#353#5#5335#]&((*v%9»?SS?XeMj _MeZÿçóÑ27&'#673267#"''67&'#67'53&'3Ë  4A ' , >Ñ !<" +%Em  * ÿèóv"7367&'#"''325'3'67#x ' 8$   _T< 5>v  .;  S5(8ÿíóÏ4736733#'667#7&'32767#"&55'67536N'ab&r &" " ž9B =3A M )   M<9ÿêôÊ )7#'6553533#3#535#3533#3#535#óŠ!.//74.200;“D2ÊOA= 2?b2O  IÿéöÏ ;733#5##533'67#&''67#3267#"&553#"''325–DqA0*C 6   u  A  Ï$%) j)R   d  zE  HÿêîÄ%+57367&'#"''3255'67567#&''3353#5#_y     "^ €“Ä  $ (2 #  ¡TÿéòÎ"*.273#327#"'#7'56&'#5##535#35#Ù?7 <& NzbbbbbÎ 0  [* Fl l'<HÿééÎ)73'67#'63#35#535#53#5##56ŠL @ *++l,,/BlÎ  !* !!} x;ÿèëÏ473#"''32765#'63#3#353#5335#535#'6c}   t J044n88 Ï ”"  2$43#2 ;ÿéõÏ-73#'6553&'#3&'3733#&''67#  ;DHmm  L,<4 1,9 5)Ï ?>2 1:W #   **)*LÿéóÏ.287#"''32655'675#537#'733#67&'37&'©   $)!I]KQ-D   (A D _ ,) .8 6   £R MÿéòÐ+/373#67&'7''67#53&'#"''3255##535#35#¢DZ"$ 6=4IR  ZZZZZÐ     `i  )€$4OÿéóÏ(,073533#3#3#535#535###53#"''325'#;5#X=CC;;J¤F33=tW 5""""»2t\  G""eóÐ"7367&'#"''3255'67#53x & :% A 9BWÐ    $&  MÿéõÄ.4733#67&'#"''32655'675#535#535#&'dnE  (   $)"KrYY[ ÄM   %. .W HÿèöÏ*0673533#3'67#535#&'36533#'67#7&'&'^5::C  ‚A5 !OBHD 3E e! ¸ 1  5*'%>  ;@ÿèïÏ'-735#535#53533#3#3##5##5'66&'PB55>>AA88IŸ‡P4,/+&% #| M<>O'+ #  EÿéòÏ#'+73533533##5##5##5##535#33535#35#E$6--6$›g++>)g++>))¯ )‹‹5###Y%%%ŠÿïôÏ73533#3#535#3533#3#535#”"&&)c'""%%+j,"­""##c%%%%FÿèõÐ59=AEI73673#33##&'#5##5'67#535#535#535#53&'5#3533535335z   ,4*!  &00&&0- =AÐ %%9II6 8'EÿîðÏ '73353353#3#3#735#3673#53&'W)+ ¤¤„„^^ '  '«/ Â**/<2  BÿèíÇ9?E73#3#"''3267'6765#735#73#3#"''3267'6765#735#&'7&'ND,3   &7 *2TI,3   &7 *6R d Ç:h!   <:i    <_   IÿéïÐ#)/7373#33#53537#5#35#3#3&'''6QABE=¥2>y\\\\\\ (" ¾ww0  BÿèïÐ,I73673#53&'&''67'6767767&'7&''67'6767767&'p+  '¨) /   h   Щ $.)(B( $.((C'JÿéóÉ'+/37;?73#3533#3#3##5#535#535#535335#735#33535#33535#335U‘@@KKFF=>**=-j**=-\/ÉO""/+ ZGÿéíÏCG733533##3#"''32655&''67'75##5&''67&'75##535#5#53#3j8$$'G    4  0C&##K88Ï"s    =s(   :yŠ" HôÏ!38AEI73533#3#535#733#"&55#'665#53&''67&67#'6553'#3#5#011(d)0¾   `  +b(Ä     E       . @ÿéõÑ 7;?CG7&'67&'67&'63#3#&'#5'67#535#735#33535#335k  C  ?  u’BO>' ,) (;H=++>/m++>/Ñ      -O  "84  /1 ;ÿèõÒ!%+17=733#5'667#35#33535#335&'''67&''&'}D - '5 9 **>*h**>*  t f    Ò qe  0M7  PÿéîÇ 37;A7#5##535#&'3&533#67325#"''67&'#3#735#'6îxxx_ P<      <//!ÇÞ ÞÀ®   & 22,  BÿëìÏ !%)/573#5##53&'3#3#535#35#33535#335'67&'šFJ"f+=Œ<())<*f))<*Q " $L Ï +,1\\6:+    DÿèóÏ#'+/7;?73533533#3#535#5#35#33533535#335335#5##535#35#D888.™,8d,,r, _____ÁOO -/[ [.QÿéóÏ#'+1FL73533#3#&''275#535#35#33535#335&'#63533##"''3255#&'UACC: 8I#!88A%%8'_%%8'jn!!  n,    JJ *,& "     IÿððÏ+/7#5##53&'7353367#53#3#3#535#53'35#ëx    <%a)<BF73533533##3#3#3#&'#'>77#5367#535#535#5#5#35#335O> (==?@N<. 6: :D:<;;'p>'';)Å  2 #%   2 ?8ÿçòÑBFJP7#35#535333##67&'#"''3255'675#535#'6553&'73535&'òŽ9++2,   $   &++9F ] ¾3 "$   %-    A4 4=\ 2#+  BÿéôÇ/37;?EK73#676767&'7&'#"''3255'67'67#735#33535#335&'''6VH-,/&    .**<+g**<+ IÇP  $+ %  00v   ÿéñI$7367&'#"''3265'3'67#x  8$   cT4 *>I   5%CÿéóÐ39=A73#3#3&'73#3#3#3##5'67#537#'65#5#35#okEZb& 071111;| "*2  @-....Ð    U  ) p""CÿèõÌ&Nf76767&'33#"&55#'6673&'#33#3#"''3267#735#5'67&'767#67#53&''67&'±      /& MF"'")   -    2Q 8L  Ì    # *"93 8         >ÿîòÐ"&*.4DJP73533#3#''275#535#35#33535#335'#&''33267#"&57&'''6IFFF;  @I&!;;F((;(c((;(  &f  u  ¾I I+ ) '   (  ,  >ÿêñÎ*06<B73#35#535#53#3#"''3267#'67#56&''&''&'''6Œ--h../Bh  y  N       Îa K3_ BÿçòÏ#'+/5;73533533#3#3#535#535#35#35#33535#335'67&'Q!.##,M==K+!4..))<*f))<*P , &O ¹]]_;+    AÿçòÈ#'+1773#3#3#535#535#735#33535#3355#5#'67&'UŠ%%*¥*""'':(b'':(+++ ! T& #ÈZ66<(   ?ÿéóÌ $(5;73#535#535#3#3##"''3255#535#735#'3#7'75#&'Y‡‡skksII!!  €€##kM$+!!  ÌK  @:  K   >ÿèñÆ!'-39?73#3#3#535#535#735#&'735'6&'''67&''&'S?AAL¨I??>++  9, $  v b    ÆcA   AA  † EÿéóÉ &*0673#3#53&'#735#35#3##"''3255#735#'67&'[‡@K©H1aaaa†8   ;bb r ÉE* % D4( %*  xÿèòÐ'+/473#3#3&''67&''67#5'635#35#67•KTU7@       5555Ð L    E2* @ LÿéñÏ37;?C73533533##5##5#3#3#3#3##5#535#535#535#5##5#35#335P(,%%,(“?GGII@n/½ *KÿçíÑ2=HL7&'3#"''3255#3533#3#&'#5'67#535#35&'75#367'35'3#` 3k  Y-,,(     (-  )  nÑ Ä  ¬J 58JJ     ,6» OÿéïÏ '+/37733#5##537'6'&'3#735##5##535#33535#35#•G|F? g kkFFll--?-l--?--Ï#-.!    220d d&9?ÿéòÊ -73#735#3#735#73#735#3533#&'#5'67#aooGG(DDBCCmHI=) (* *=Ê4177:  ":9HÿéñÈ 5;73#735#3353353533#3#3#3##5#535#53&'#535#367#R––+;AAJ=JJLL<F;3*BÈ8;   8 GÿïóÐ #'+/>73533533#735#33533535#3353353#3#735#3673#53'Q..™,u,««ii- 0¬(ÁQ0/+ / #  LÿéòÏ<@DHL733533##5##5#533#3#"''3255#67'7''275##535#735#33535#335v*,,***‹=I 7  $-4G<));*e));*Ï #N D  /  J[ ., BÿìôÑ#)9?E73#3#53'#53'367#3#735#35#&''33267#"&57&'''6 @(£+=&9,YYYY+ ! )k  x  Ñ   5 (K- ) "  " ' BÿéñÏ(048<73533#3#535#&''67&''6#5##535#3#735#KDEEN¯MD  h  'mmmJJ%%¿;;       =kkRB * 8ÿêòÏ=LR733#3#53533#673265#"''67&'#'66553533'73#67'675#'6•55D¢ V+    O a y?3    Ï##"'&" 45,"  >  % < ;AÿéìË "073#735#35#35#'33#5#'65#535#73#3#5##53uOO++++++80 ;1‡24"1ËgI ) ) 5`n; "qpK;;o@ÿëõÈ'-GMS73#3#3#535#535#73#3#3#535#535#&'3673267#"&''67''67&'NGIRGJ #",!   ‰  ÈY  3' 3   9 8ÿéøÉ+;K]q7#53#3&'7'#"''3255##5##5'673''67'76'''67'7''67'76'&''67&'76M«L:   41 % *6    A    M    @    · ’  „žžž£           /       LÿéñÐ #)/7;?CT7#5##53&'7&''33267#"&57&'''63#53535#35#35#3##"''3255#ëtA   [ a ˆ¥&'e”>  C½         '''4 >ÿéñÏR73533533#3#5##535#35#3#'67#53#67&'#"''32655'67''67&F'2++&z"':22__" 3§W    *59)!, +!¾,,-(           CÿéõÏ048<NS73533533##5##5#3&'73#3#3#3#5'6#35#5##53&''67&67#K1)'')1*=@7766B–@00000 )#. (+KÁ      ?    (     :ÿíòÐ "(048<73#'63#53#3#'#335357&'3#53535#35#35#»+2 +ZX++M +¸+)Ð G3I"  5<<<***** >ÿéôÏ$)-15;A733#3#5##533#'#5##5'63&'35#35#35#''67&'ƒIIS}= hh3 %/ ] /K]]]]]] f Ï ## [ Y  & & o    @ÿéóÊ #BFJN73#5'675#73#5'675#&'7&'3&'73#3#3#3##5'65#5#35#KJ!6UL!9@  h @*A?9999Aˆ C44444ÊW  W      4  U  ~ðÐ"7367&'#"''325'3'67#| % :  _O>2:Ð     ' )  ƒÿèõÏ#'-373533#3#535#735#3353#735#35#35#&'''6Œ%&&/o-%&L__999999*  à +   DaD & ' "     EÿçôÌ%+RW]73#33#5##53537#35#35#35#&'7&''332767##3&''67&''67&567''6NžNC„-<``````. A R !R  ( $2)    ]  Ì DD "             '  3  IÿçñÐ#'+/5;73533#3#535##5#;5#35#3#735#35#35#'67&'NEJJ?;E›–YY ††`````` !T à   00)U=    :ÿèõÑ6BFJV7'67#5367#5367#53&'73673#3#3#&'#67'73&'73&'#35#35#67&'Z (629F.'$LIOa- d " + QQQQ6 #/N     6 m & $   <ÿçóÏ#V73533533##5##5#3#735#335335#67327#"''67&'#&''6553&533&'7M'),,)'””+<     @ O À 8A     !$$  MÿèòÐ -159?EU[73#5##53&'3533#3#3#3#535#535#535#35#335335&'7&''33267#"&5''6¡>o?)**77AA8‚8??55)&6 J  W $   Ð $%-    ..   [$      AÿèòÐ -159?EU[73#5##53&'3533#3#3#3#535#535#535#35#335335&'7&''33267#"&5''6˜Hy@ ,..<ÿéñÑ QUY73#53&'3#735#73#735#3533533#3#3#67&'67'5'67#535#535#5#35#—I¥F6??BAA!!e&-((##-L   =  #7, &e---Ñ$+ ++   ,     CÿìôÏCGKO_7335#535#535#53533#3#3#35335#535#535#53533#3#3#353#3#3#735#3673#53&'O™¦¦‰‰bb ( 0±.ËT XX Sc  -    AÿéóË+/37GKOS7#5'75#53#'35#35#5##5'75#53#'35#35#5#7#5'75#53#'35#35#5#ñy _LLLLLL  7 Q/“ 8 Q0~ E@4 & & f G;/ % %   G;/ % %  AÿéòË'+/37;?CGK73#3'753#3#3#3#3##5'67#735#35#35#35#35#35#5#5#35#RD( &GA<<5555?‚   Q""Q Q""Q Q""00000Ë` \` H  E ()J @ÿéìÏ#CGKO733533##5##5#533#735#73#735#3&'73#3#3#3##5'65#5#35#t(**())!CC!!?CC J':<6666=} ?.....Ï  #.." P :ÿçñÑ#`dhlp7#5##535#535#53533#3#535#35#3#35#53#3#3#3#67&'7'5'67#535#535#535#735#35#5#35#ñŽN>>JJKK??--@-- 9) ;++%%6N  A  #9.''E)))‡#$# # 4    %     1-òÐ(,73#"''3265#3#32767#"&55'635A‘  † j_4ITA !KÐN3;  H !Nÿé§Ë73##5#'66556œ 3  %Ë /;5 4E:[ÿçõÓ)/U7&'67327#"'#'67&''7&'7&'673267#"&''67&''7&'7® DC   "! +% RJ  % ,'Ó         H   '    ÿê[Ï733533#3#5#'65/)Ê=BB)O=3# #5 ÿèðÆ"735#53#3##"''3255#'67#'7 mŠÒ488 2T M-c¦??_  [>"0ÿêéX!735#53#3##"''3255#'67#'0oÉ&++   +UF#PE   $ bìÐ733673#5##53&'733#735#v-±.  @””llÐ" ++ - ÿéTÏ73533#7#5'675#'6     Ä11> PF G(ÿêˆÈ  $73#735#35##"''3255##535#35#qqMMMM[  AAAAAÈN..+n  -„#5ÿõîÁ73#3#3#535#535#Í]MMeÜcKK\ÁHKKHWÿèëÐ 73#'3'6573#×a#1Ðçç„=' #4wÇQÿæõÇ"7#5##5333267#"&55'>ÛC,  8 " Ç}}*9 ? 10(3ÿîîY73#3#3&'73#535#535#Î[SS4 ÜdTT_Y   iÿéóÆ"7#3#327#"&'#67'535'#ç.64 .! X-)ÆK$#$)-.B Ò%%\$$bÿëóÍ73#3#353#5#5335#535#'6…W2>>"k">> Í0VC` VDV0 gÿëõÆ .73#735#35#33#67'73267#"&5536g||XXXX)) }  Æ_9;11  ] )   ]"ÿîñd7#32767#"&55#;5#ܧ;KUFTAA@@d@  `\ÿêòÏ:73#5#5335#535#'677'67#&'&''6733#3#3Øn%@@   ]3   #K:T1==# 6.%  0     .%\ÿéóÉ %)/573#3#53&'#735#35#3##"''3255#735#'67&'nw7?”?*QQQQv0   3RRe  ÉE * % E3( %*   KÿéøÏ&+/37=C733#3#5##533#&'#5##5'63&'35#35#35#''67&'‹DDMs9``. $- V *FVVVVVV a Ï ## [ Y  & & o    |ÿè÷Í!7&'7'7''5"'66556ä      6ÍwGMª # ·/I= 8I< ÿèƒÑ DHLY73#53&'3#735#73#735##535#535#53533533#3#3#67'5'675#35#67&'K2s.%11*222D   8   Ñ%)  ) p    !   ;    |ÿêöÃ#73#33265#"&55#67'7#&'|pG2  4Ã$‡ z| ¸M ÿé|Ñ?767&'3#3533#"''3255##5##5'67#5367'67&'!  ;B%     Ê    ;  &YYGB [ÿêõÄ#73#33265#"&55#67'7#&'cˆ\D   4( 8  Ä#†  yz ·I ŠÿêöÃ#73#33265#"&55#67'7#&'Šc>,  .Ã$‡  z| ¸Mÿé{Ð !%73&'73#3#536'&'#5##535##X@i8 &  U444·  RZ Z>- ÿïƒÏ)-15973#3#3#67'675#535#535#535#'25##5#35#335l .  -,7+  ,- !Ï!! !!X!!!!3!!! ÿé|Ï"&*/DJ73533#3#''275#535#35#33535#335'#63533##"''3"55#&')**)'1'')(?( LI  I"Á JJ ,-' #     ÿéƒÑ06:73#3#"''3255#3#3#535#535##53&'#53&'367#35#G2   72 +Ñ Ž  y55“£ @‚ ÿëÎ $(,06<BH73#3#3#535#535'65##5##5#35#35#35#'67&''&''4'+P m P     F  a   Î1++ 7111111<+++++D  ÿé‹Ò)/37?C733#&'#'67#3'73#'655'667#3#3##5##535#19  $(_ 60 PPPPQ...Ò     !  ,* "(R M  7 7[ëÒ7'6'33#5##53'&'3#735#ÃCb®a< „„\\Ò  #8''8#  43ÿêöÉ!%)/473#3#33#"''67&'767#535#35#3353655#335v3*+JF>Q"  )+1+C+Ée  e<C ÿéíS73533533##5##5#35#35#'d((d':ddddDII0YÿéóÏ$173533#&'#5'675#&''67&''6e7::' # &7  Z ´F6)RM%.L   &  ,ÿêÔ] 7#5##535#35#35#Ô]s s ) * \ÿïñÍ+73533#3#535#'67&'3533#3#535#m044@‘=0I J222?•B2µ3    ,   fÿêóÐ#+/373#327#"&'#67'56&'#5##535#35#Þ 61   0# ?(mPPPPPÐ   ]& Jl l'<+ÿéÒS 7#5##535#35#35#Ò‚‚‚‚‚‚‚Sj j $ % ‡ÿçõÏ '-736533#3&''67&''67#677&'‘;<6      ¢7#     0N4!o    ÿè‘Î"&*.7373#3#5##5367#'6655635#35#35#‡ +:($'$/$ D//////Î ŒŒ H: 8G<v:9QÿèòÍ"&*.73#3#5##535#'66556535#35#35#å 44,A&0  N AAAAAAÍH;8G<*K99^ÿîõÏ'+/373533#3#67'7''67#535#3#53535#35#35#q/33>N   /5%9/v— #"¹    i???.....]ÿëîÏ !%)/573#5##53&'3#3#535#35#33535#335'67&'©=h>V#4y2 3!T 3!E  C Ï +,1\\6:+    WÿêöÐ )B7&''67&''6''6#5'6733#33#"&''673§   2  Y    P     Ð   %2   &/ ' yY "/ $E _ÿéðÑ I73&'73#&''67'763353#3#"''3255#67'7&''67##537#_=>‘]     OY7D  8  43½    11CI  2   Pb ZÿéñÏ#BFJN733533##5##5#533#735#73#735#3&'73#3#3#3##5'65#5#35#ƒ"&&"$$==8>>E!5611117p 7'''''Ï  #.." L+ÿéÒK 7#5##535#35#35#Ò‚‚‚‚‚‚‚Kbb " $ [ÿæðÑ3=GMSY_733673#5##53&'733#735#3#3#3#535#535#73&'735#336735'67&''&''&'œ p!  *ffDD ƒ988B’>558   &8  h  z Ð   # 4     U         ÿë€Ï 73#3#&''67#537#'67:(*  $-03  Ï &#;1lÿéôÆ733##"''3255#53567#ym==  99UÆ\ Y! ÿênÆ+733'67##"''3255'67#53&'767#U     ) =Æ  i  @ $,  ZÿéöÏ$7367&'#"''325'3'67#Ÿ " #  <2  Ï8!9"'6Y  Ž0$3? ÿèîT73#3#5##5'67#35#Úƒ …| +;7||T G6@kÿñðÎ73'67#&''6¤ C7% X6 'Î R: q   2iÿóóÐ 73&'73#3#536'&'q4  2|\.ŠG3  ¤ G4>>5591gÿèôÏ73533#&'3##5#535'67#n47- )£,,M!$LS00QC++GkÿòòÇ 7#3#5##53533#"''3255##ïps‡D$% ǯÕMUgS >mkÿéóÏ#'+73533#3#3##5#535#535#35#33535#335p47733<<99//40O0¼e''e;A_ÿñõÏ  &7&''63#&'3673#7&'¢% !"" / PP  )G /‰ Ï%*(&( !X-+/"e!eÿêøÅ@73#67&'##'32655'67&'&''67&'767''67#p,     & +    $<Å @#$? 04      iÿïôÏ&*.2673#3#3#3#535#535#535#535'25##5#35#335à 6:6}4656"'Ï&##&`&&&&6### ÿèîM73#3#5##5'67#35#Ú† ‡| &67||MB 3 7lÿèóÎ#)/73533#33#53535#35#35#35#35#'67&'q588- … -5HHHHHHHH  CÀyy-,,,"      ÿèîF73#3#5##5'67#35#Úƒ‚| )97||F ?/ 4UÿèôÂ!73#3##"''32655#&'''6rllŒ=  :o  HÂ&t p%* *% 5"\ÿêóÏ#)/733##"''3255#'67#53673#3'67&'¤44  8!(EK %$ Y Š.I  D$$! %!VÿéñÏ,047373#3#3#5'67#35##"''3255##535#35#e$RZZ2:‚+c   OOOOO¾ /-a  (x - VÿèòÊ &@FLRX73#735#35#&''67'676777'76777'7''67'67&''&'''67&'i{{VVVV    4     ?  3ÊO/-W    "    L  ÿéñ= 73533##5#ghhg+00 ÿé~Ï73265#"'&''7&'37&'k2   ‘ 9%%I!)G>  ÿèuÒ 7'67&&'3'67#E"  XC®(#3 .2( +#ÿèöÑ 7'67&'&'3'67#º"   Z   F¬($3 '/ +„ÿêóÏ73267#"&''7&'37&'î< #  “ =7"=K!)GA ÿéòÐ733#3#5##5335#­22*4 44Ð.0wwR@€ÿèñÏ73533533##5##5#35#35#€**$****£,,,,©©99ƒ8ÿæòƒ'-39?73#3#3#535#535#73&'735#336735'67&'7&''&''°MTThähUUO  ;O ˜  K  aƒ9        f         ÿçwÄ73#3##5#'655#535#5#`:ÄLjj>( %5LLLL ÿèâÏ73#'66553&'35#ˆN¬ Z>™™Ï 4+A1 /!Y 3 ÿúmÁ 767'7535#35#75#_(2  Á£ ²;(a(b# ÿéÏ#'+73&'73#3#3#3##5'65#5#35#,   "O *Ï   Ž +- 3 3  ÿénÎ $(,7'673&'73#3#3#3##75#5#35#  >'~ 4##$ˆ##4##4$jŸÎ7&'37'5#~  " Î 9e  kOÿÿ•®767#53&''67&'g $7    †>( %“ÿéóÏ"&*7'673&'73#3#3#3##75#5#35#£ ?(~ #'!"&Š!!3""7&ÿèuÉ#';73#3#5##5##535#3#'3#3#'3#3#3#67'7''67#S#,+!5+++LL c5  É-??-.    oÿèõÏ'7367'673#&'#'67#3#'3'66o0"5+ ;#  % # *M'“ -& -hh1) #nÿêöÏ%+05733#3267#"&55'67#5'676367#367#335—: '(  $ %%   & + -Ï L; /))B 7 F*ÿîód#735#53533533#3#3#3#535#535#@FFFF>>JJRäOGG@<  dc   ÿègÉ 7'6'6'6N+ % * %$# *É #" %$ ! ÿê|Ñ#)73673#3##5#'67#53655#5#'&'6  ?  ¢7ZZ=4 &77(w ÿêŒÑ#)73673#3##5#'67#53475#5#'&'F  # N!  ¢7ZZ>4 &77(wÿé•Ï4767#535#5673#35335#535#53#3&''67&'# b22  +15 ) #4 \  ``f    ÿê”Ç #)7#5##53#735#35#3#53&''67&'X ffAAAA&5‚7  EÇ  'S11' (   ÿ陯'<B7#'6553#3#67''3#67&'3533##"''3255#&'= yggH  RR*  (;  ;   zD5 7=_+$_#  4$ !   ÿé•Ñ'=Q73#"''3265#'63367353#'67#'673#"''327653353#'67#53368S  N   +$  T  >%" Ñ I1    : I ,     ÿê—Æ #'+73#3#535#35#'6'&'#5##535#35#$*Š'"5< WpBBBBBÆEEEE  Sf f$5 ÿè—Í.2673533533##5##5#'67#5367#53#3#&'35#35#!!:$ % .5*k+;A!9EEEE·˜  OOr-ÿé–Ñ"&2>73#3#'6553&'5##5#35#3353357'53367'533]0$#f5"G  Ñ =;- 2;X =,]   T U ÿé˜Ï#'+0EK73533#3#&''275#535#35#33535#335&'#3533##"''3255#&'4772 /=1141P1N^   ^(    JJ *,& !      ÿé›É#';73#3#5##5##535#3#73#3#73#3#3#3#"''3267#7#v0;*->3 CH%%H$$Q}} ‘_X ] É #;;# )  %ÿé‘Ê 273#735#35#3#735#33533567#53&''67&'kkEEEE~~#W [u  % ÊE) ' '4E     ÿèšÏ!%)-17=CI73#3#3#535#535'65##5##5#35#35#35#'67&''&''4'-[ ‹ R     J  l   Ï 0**:000000<*****C   ÿêœÊ(,0A76767&''33#5'67&'767#3#735#7677'7&'d   >7 9= $``:: F7 ' È   1&!       Q7,  #ÿîïf!73#735#3267#"&553'#37#32jj>FOH±b<E}‰6%! H JuuuK!    @BÒ "$\2  —  $*  !BÿèõÓ $(47'#67'5'63&'73&'3535&'76–'( g  :0 +TTT .1 Ó" Y5  “ # #$&  hÿèõÓ *.27&''6&'767#67'53&'73535¦ " +M #&  P  ) ->>>Ó!#"+W   1 ’ #ÿéjÏ76767'67'67'6767N(%5  Ÿ5 :9 4 30 ÿðfÏ73'67#&''61*< 1  Ï…3)k   .|ÿíõÏ#73533#353#3267#"&55#5335#|/11,  ,/³ZDV/ 5UCZ|ÿññÉ73#3#535#535'2ä //+l.331ÉKPPIÿéÑ $(7&'3&'73#3#3##5'635#35#A" EEEHH &3333Ñ R ™ C. ÿåõ~ $(47&'#67'5'63'73&'353567&'„.: Š'  B 30),www"  0,~  7 V   !  ¥ÿèðÊ7#"''3255#'65535#35#ð     ÊÆ :8!"?z;)e)ƒðÏ733#3#3##'353#5#535#535#NNFFPPzMRRIIMÏ  DK  mÿéñÐ 57&'7'6'33#5##533#735#3533#&'#5'67#ƒ a ,7]7QQ++*68.  *Ð   %+,"58  !9;! ÿçõh"&27'#67'5'63&'73&'353567&'† 56 ˆ% D /6*5vvv1  11h 1K   "  ÿëfÐ73'67#'6367')0  !   Ð &'v  `ÿêôÐ#cgkos73533#3#3#5##535#535#35#3353#35#53#3#3#3#67&'#67'5'67#535#535#535#735#35#5#35#b>>>33Ar>33>""4#[-  +%%)4    $ !3'&& 6È !&&! 0          1 lÿèõÏBFJ735333##35#53353#5##535##5#3#5#'6753353#35#535#535#33535y0/ /"  "#   #00990A ; &‚'&4 @@ 4& ?"' ; oÿé÷Ñ +77&''63#3#735#73#735#&''67&''6«"  *6644,44;   G  Ñ!";;/   #  tÿèòÉ 5;73#735#3353353533#3#3#3##5#535#53&'#535#367#uxx#_---5-4466/5-+%É::   7  eÿèòÐ48<BHNT73533533##5#5#3#5'75#5373673267#"&5'3#735#&'''67&''4'k FP J  2** 6  X  O ¾`      H[;R  mÿçòÐ "&*.4:@7#5##53&'73#673#5'675#35#35#35#''6'67&'íV3/K -jEEEEEE  =¾'(   ^J D $ % g z    ]ëÌ $*06<7#3#3#3#"''267#55#5#5#'67&''&''&'àQJJJJ\  «Q>>>>>  ‰ Ì   L        jÿéëÐ73#'6553&'35#¶*W,CCÐX8/ 0?Df3rÿíëÇ7#5##535#"&55#'7335655#ëUU  D UÇÙ Ú¹- g+8$ }bgw-+fÿèöÑ#'7367'673#&'#'67#3'6673#h.%3 1ÇP  #+ %  00v   aÿìòÑ *06FL73#53635#'673&''67&'767&'3&''33267#"&5''6˜Bv OO        8 @     Ñ || uZ      O /  2!ÿéôÊ -73#735#3#735#73#735#3533#&'#5'67#OO++22'11I+/%  $Ê4177;  41 /óÑ $*06<733#5'667#35#33535#335&'7&'''67&'UQ4³ 2L G==P===P=)  J  ŸD ÑL; *       €ÿóôÂ73#33#537#'7#37#€pFAtD<1/Â"†,li4}ÿêíÏ73#'6553&'735#Å(M$"::¦[<"9V_7xÿéòÏ 73533#3#67&'7''67#535#‚())4= %* )2(¬##37 %+ 23 ÿçñƒ $*06<733#5'6367#35#33535#335'67&''&''&'YU*¨ ' UP99J8‚99J8 ¸  (  +  ƒ F9 " &      ÿêïÏ735#53533#3#&'#5'67#-''''0*   $q%''%6,RT('1uÿèôÎ$73533#3#&'#5'67#535#'6((.# '3 ++(*&")Y[,"%.(  RõÏ73533#&'#5'67#_`P&6 5+$9 8"Oµ%,76+&fÿôôÂ73#33#537#'7#37#jˆYP#ŽWI?=Â"†/if1WÿéñÅ"735#53#3##"''32655'67#'… 3Dx %%  2,"0¦>>^ X>+ 9ÿéï‘73#3#3##5#'6M•yddll)‘*~ $ ÿçö}*7327#"'&5#'655&''67&'76Í  {# t   }H (# M5)% $H  ÿðð‹ 73&'73#3673#53&'\[Í1 -  DàB n  %*(')& ÿéó7#53##"''3265'##535#²¤å, &I55lh OFW3  ÿèßR 73353353#5# AB«=9NN9UHóÏ73#3#535635#ÆRA 6Eå"^JVVÏ'^e' ÿêà‚ 7#5##535335#33535#35#à˜VVBBVB˜BBVBBg}}1N!ÿéÞ[ 7#5##535#33535#35#Þ•@@U@•@@U@@[rr)>!ÿèÞV #53#5'#335#355#5½TAATATATA nn P!ÿèÞc #53#5'#335#355#5½TAAT@UAT@ {{Z!ÿéÞz 7#5##535#33535#35#Þ•@@U@•@@U@@z‘‘6###Z$$$!ÿèÞˆ 7#5##535#33535#35#Þ•@@TA•@@TAAˆ  ?,,,j,,,xÿéðÐ73#"''3267#'6&'¤F<    Њ$v $0" % ÿé…Ð $*06<733#5'667#35#33535#335&'''67&''4'3+Y    #5# M G Ð cY *C/" sÿéòÐ>767&''67&'3#3533#"''3255##5##5'67#536‹    GM)    !Í   2  9  $UUAA{ÿêøÏ#'+737#"''3255'67#5353635#35#35#§0 + (G  777777Ï[  ?  $!s 2<:tÿéòÎ %)-157&'6'&'67&'6#5##535#33535#35#º      ]   J.J.Î   Pyy-HsÿéóÏ(,073533#3#3#535#535##"''3255##535#35#z.22,,8€5&&.l   AAAAAÀR\  $t 0vÿïóÍ+73533#3#535#'67&'3533#3#535#„())2w2(B @(((3{4(µ3  -   tÿêòÐ6>BF733673#5##53&'733#735#3267#"'&5536#5##535#35#© Z  JJ((9"& '#):::::Ð -. '    6JJ & nÿçóÎ17=73#35335#533#335#535#535#533#535673&'''6ˆ! „ 6(„ CCLMZ  ’‰  f   ÿérÀ 7#'65535#rE22ÀY B2 2?[G5 ÿðtÏ7'67#535#53533#3#&A $%% #$0& )7)$$) ÿéô€7#5##53'66733267#"&5Ó~A/;8&'  4 €aNM`!;5*2  ÿéôm 7#5##53'66733267#"&5ÌxA/<9&  , mTBAS30&-  “ÿëõÆ $73#3265#"&55#'67#735#35#35#›N ))))))Æ2  87+dCClÿèöÐ #'+/5;73533##5#3533533##5##5#3#735#35#35#'67&'w/44/ // ssMMMMMM ; À gI ) ) !     dÿìöÑ!%+1DJ73#3#53&'#53&'367#3#735#35#&'7&''3325265##"&5''6¯2"ƒ /0%nnIIII*<  I     Ñ   8 *H, )"      #  JÿìöÑ $*0DJ73#3#53&'#53'367#3#735#35#&'7&''33325267##"&5''6¥;+—'83,}}WWWW2  E  V    Ñ    7 )I, ( "     " ^ÿèóÐ#'B]73#3#&'#5'67#535#53635#35#''67'6776767'7''67'6776767'¢ =2"  $4?      n    Ð h 9:h2F   &! )   &  - ^ÿêöÐ.26:>BHNTd733#3#"&55'75373267'67#'65533#735#33535#335&'7&'''6733267#"&5›77D  $ &_,]]&9&  :  T  Ð     I=/ 07SD?& !       EÿêòÐ/37;?CIO_e733#3'67#'655332567#"&55'7533#735#33535#335&'7&''33267#"&5''6‹AAKj1@$)#hh+D+"  ?  I     Ð   I=. .8T  '?& !      #  TÿéöÒ#)/5;CGK7'6733#736735#33535#335'67&''4'7&'#5##535#35#`!<%‰$ 8D&&9)b&&9)j ~ ;54SSSSS˜JW * '       PP %  eòÑ#(,7&'#3#3#53&'#535#5'63&'67##35#‚14 1P 8×2P3GQ%!.$Ñ    G cÿéíÊ  $CGKOU7##535#35#7#"''3255#535#5#3533#3#&'#5'67#535#35#'735'6¡,x   ,H'''##    "'   ÊEœá' *Ì „E '   6  #$ 6 4  ^ÿéóË+/37GKOS7#5'75#53#'35#35#5##5'75#53#'35#35#5#7#5'75#53#'35#35#5#ñe†P>>>>>>-C(z-C)~ E?3 & & f G;/ % %   G;/ % %  ÿêôQ!&*/7'67&'#3#3#53&'#535#73&7##35#CI1 25 3J:Þ1L27F 0&'   9 ÿïUÎ"(.7&'3#3#7'75#535#5'6'6'&'/ /$ ')ÎA F flÿêìÏ!%73#"''3267#3#"''3267#5363#”>   Ce  d$]]Ï < #NM6r ›tÿéëÏ 7#5##535335#35#35#35#ëR23 33 3¡¸¸..I777888aÿêöÏ73533#&'#5'67#7&'q174$ )+]  š55A.)9~{4(1>?   iÿèîÏ$*73'67#'63#"''3257&'''6W H  "  6  GÏ   ,ƒ  _)*-',% &[ÿéòÐ=767&''67&'3#3533#"''3255##5##5'67#536u "%#W]1   'Ì      1 8  !TT@? gÿðõÏ-73#'3#7#53&''67&67#3533#3#535#Ž CE    S/00<‹6&+- ) 16./2' 0  o  Ð333  &" ) J   pÿêõÐ27=C733533#3#3#3#&''67#537#535#53&'#5337#7'6'&'˜ $400:2$' * ( -1++/$ +=T  Ð333   %  ) H    ÿópÇ"7#3#3#3#67'7&''67#535m@====C/   " Ç'  (sgÿéïÄ (7'66553'#33353353#353#5#5335#Š wSSK%N#ˆ'B6 .%^<+'"//"38'D ;(8kÿéõÏ06:>DJ7373#327&'##"''3255#5'67&'767#33&'35#35#'67&'w#8  $ #  0 3 !5555  S ·  60  -4   G-)    ÿíóC73#3#3#535335#Î]MMiæ*+]C##3 ÿéóÏ&*.736533#&''67#3##"''3255#3#735#YZ]4+,0> I Sæ&  ¬"dd>>·    8W  T9vÿéóÏ&*.73533#&''67#3##"''3255#3#735#€+.0  ( }   Z ==¸     ;X  U= ÿé€Î'+/73673#&''67#3##"''3255#3#735#,*.    &s   S 77¶     9W  T8‚ÿéõÎ#'73533533#3#535#35##5##535#35#‡s%>77777°!!!!Crr)? oóÐ733533#3#53=(SSfæ0½;NÿêòN(2R733#3#&''67#&''67#5353353#5#53'65#'#&''67#35##&xJJhE 1  D*-W¯p  ! !Ÿ# N     !:8    }ÿñîÇ 73#53535#35#35#â q 000000ÇÃÃ@-o.o. ÿì€Î 73533#3#535#'6##535##%%+p2 \L99Ç'''' YJZ8% ÿé’Ï#AEIM733533##5##5#533#735#73#735#3&'73#3#3#3##5'6353535177/66<.-))))&X Ï  #.."     I    £ÿéñÎ73533#"''32765#'65#­$   ¢,,_Ejy. *q[ÿèóÐ*>Qc73533#&''6655#67''67&'767&''67&'67&''67&''67''67&'`?== 7 .7#!?      [           T    ¸,8/8 7?,      .          nÿèñÏ.4:@7#5##53533#35#&'#67&''6654'&'7&'&'ï[2??1[[(      "   H      ¸¸/—…  "  )    "  `ÿéóÏ"&*/DJ73533#3#''275#535#35#33535#335&'#3533##"''3255#&'c;==6 2A33; 2#U 2#Pc   c)    JJ *,& !     †ÿêïÏ73353353#5#353#5#5335#‡W*»?SS?X eLi _Me`ÿêöÐ (A7&''67&''6''6#5'6733#33#"&''673«  /  Q    K     Ð   '1  '/ )]"1 "H ¨áÏ 73353353#FEÃÌ$EÿéõÐ!+7&'367&'#"''3255#3'67#&" $$M   8 =%& 0(Ð 1;M ˆD!3ÿèîg73##"''3255###535#ß%   ¦„R@@gU  R9 E(SÿñóÇ#'73#3#3#535#535#35##335##35#35#Z’,''3 4''-@M&Ç*]++]***<9999v+b¹ 7#5##535#b"""¹ž§{hk¹ 7#5##535#k...¹ž§{h\¹ 7#5##535#\"""¹ž§{hU¹ 7##535#U-¹Ž§|jS¹ 7#5##535#S¹ž§{hYÿéóÐ"',7333#&''67#535367#'65##67#Š5 )9+ 0/) 59 ) QÐ C%4+ C j11OÿïôÏ #'+/73673#7&''67&'3#53535#35#35#^M  *$  B4¥%$B = /HHH77777M¸ 7#5##535#M¸¦{jI¸ 7#5##535#I¸¦{jZÿêóÐ3;?C733673#5##53&'733#735#3267#"&5536#5##535#35#œs&``<· 7#5##535#>  ·œ¥{kd¹ 7##535#d9%%¹Ž§{hS¹ 7##535#S,¹Ž§|jOÿéîÄ '7'6553'#33353353#353#5#5335#wŠddY+[*‡&D4 4?]=+'"//"47'D :(7M¹ 7##535#M'¹§|jX¹ 7#5##535#X¹ž§{hZÿéòÆ73#3##5#535#'6'&'e‡>  +  %  j %J8! +8 )5>! #&&Ð    3    $     #UÿéôÑ)-173&'73#3#53&'#67#3#3##5#535#735#35#^;;&ž$]?(|3EEFF6VVVV¼   R01DÿèñÓ5=AEIMQU73#33##3#"''3255##5##535#535#'66553&'5#35#5353535#33535#335©<;/ /4    "0..7 D77.AM1"S1"Ó   T   i  C3 0#\* '   C ) @ÿçöÑDHLR7#35#535333##67&'#"''32655'675#535#'66553&'73535&'òˆ7**1,   "    %**7 I[ ¾2 #$   %,    A4 0#[ 2#+  XÿéóÉ &*0673#3#53&'#735#35#3##"''3255#735#'67&'kz9A˜B+TTTTy2   4VVf  ÉE* % E3( %*  TÿêøÈ"&*.26:7#3#325267##"&55#535#55#7355##373535335è/331 ..,PS7 r7 È9h  g9Ì»°º2*RÿéóÌ $(6<73#535#535#3#3##"''3255#535#735#'3#67'75#&'iyyf^^fAC   qq`E  ' ÌK  @:  K  XÿéòÊ#D73#3#5##5##535#3#73#3#73#3#3#"''3255##5##5##537#b†:B/0C9%%D$$L--L..[™GG  5>Ê (;;( * :  $8888=N IÿéòË 26:>BFJ73#735#35#35#73#3#3#3#3##5'673&'7735#35#35#5#5#35#YAA:E< 893333<|  $  -----Ë`E ( ( D` F  A () I ÿì˜Ï/H733#3'67#732767#"&55'75#'65533753353#7'75#533F99?1%&    0  .9# Ï     F9- +6PVKH*%4  1"‹ÿêòº7#3267#"&5535éJ   !6ºoD ¹IIÿðç» 7#5##535#ç@@@»Ê˦“\ÿééÌ7#"''3255#'665535#35#é  H FFGFÌÆ40' 2%a=*f* Uÿé÷Ï7&&55#5'66556Û  !! =Ï#k1I@"À¾7J@ $6#IWÿèóÇ#(733#"&55#'667#53&''67&67#Í ,   u"# )) &*AÇ<  0$  *v2   Jÿèò 73#3##"''3255#&'''6hss”B   >tKÂ&u  r%* )& 5"^ÿééÐ 73#5##53635#35#35#”Jd, ddddddÐ ÈÈE#Y$[%]ÿòðÇ 73#53#3'35q“{ss_2-Õ.TA..EÿéðÇ73#7#5'75#35#35#675#OŸ6>!*GGGG%"GÇwA< R!XKÿèòÏ*07767327#"''67&''7&''7&537&'ÜDOM  !, 0 ==./  £  " &   65   LÿêðÑ&*.267&'3533#3#"''3255##5##535#35#33535#335È  kHJJ@   -(;H ((:-g((:-Ñ !!‡  336Ÿ@FMÿñòÇ73#735#35#53#3#3#535#`‚‚YY9>“A<=x  1‘(;JÿéòÐ"',7333#&''67#535367#'65##67#< (A0 4 71 ?@ / V#Ð  E# 0("E j22FÿïñÎ+73533#3#535#'67&'3533#3#535#Z8>>K§H8!O W;;;J«M;¶1 /   JÿêïÆ #'+73#3#535#35#'6'&'#5##535#35#S–,2¥2)<N  o  ˆUUUUUÆEEEE  Qff$6;ÿèïÇ #)7#5##53#735#35#3#53&''67&'æy‚‚\\\\0I«K 0 'O"!Ç  'S11( )   7ÿêòÑ-DJ7&''33#673265#"''67&'#'65533#67&''655#'6Ô  ))    N`HC   &  Ñ   /5%+$( 'HH<- .7S"%   &7   NÿèñÏ-39?7#5##53533#35#&''67&''67&'&'7&'&'ìx>RR>xx2        ]    ¸¸/—…  #   '  ÿêìÏ#737#5373#3#3&'767#'67#L@EZ^x} j -A #`Gƒ    ÿîòÌ73#3#535635#ÐWI§3<å[E``Ì -j»¿jÿêôÏ"(.733##"''3255#'67#53673#3&'''6TT   Y;E }†B: a* (‹.F  B$$ !# #ÿèðÃ$735#53#3#3#67&'7''67#535#)MXÅXNNe|8=  IR MgMŽ""". (  ,"ÿèðÌ'73#3#67&'7''67#535#535#'2Ö '/OOf|9>  IR MgMM&*[Ì"#. (  ,#! ÿéóÏ48<73#3533#3#&'#5'67#535#535335#535'25#'35Ï $,]]',,%Q<8#": 4$N"(()[[#'U6'=)ÏCC"}ÿé–ÏDJ_7'23&'73'6733#"''3255#67'7&''67##53'767#7&'3&''67'767# 4K>8 L  * )   7 Y;E   2Ï +     m Z   s‚  +  €     ÿê™Ï!18P7#5'67#53533#&7'6'&'3'67&''667#73533#3##5#'735#` -86*  J  !    /  ‡#!  ++ R   [ -0     '!!  ' ÿë”Ï)-273533#3#535##5##53#3#7'7'#735#767#877/q.8‚\KKj9G%DD$ *%) 2  9 ÿéðÀ73#3##"''32655#535#!½Qcc iiXÀAV QAÿéð¾73#3#67&'7''67#%µµás6A JJ *V¾2D (1 )8ÿéîÒ *73&'73#3#735##5##53##"''3255#f^Ý!œœtt¨³ @  I¼   1-1 / -  * ÿëñÇ 7#'655ñ¿ Çc< 4?] ÿçöÐ  7'67&'&'3&'767#€-= N(0: 64  F«! '; ް.(2 ,0) NÿêðÆ%733'67##"''32655#53&'767#^‚5  +  JO  hÆ  ^ Y  HÿèõÏ  7&''6&'3&'767#˜&( '&)4  ){#) bÏ /0/(   ( QÿéòÏ 73533#3#67&'7''67#535#\:::GT') 4:6E:¤+++5 $+  2+OÿéòÏ#7&'73#3#3##5#535#535#536x  Y .C==GGGG<B73673#'#3265#"&55##5'67#3533&'#35#33535#335N3S0'5  $$ #*$!  $$7!X$$7!²  N   X(9>LÿéòÐ !%73&'73#3#536'&'#5##535#W;:Œj .¦a A  {[[[¸  R[ [>+eÿêòÉ#6:>BFJ`l73#73##5##53#5##5&'7&'#3#'6553&'75##5#35#3353353673265#"&5'7'533q;;A::y! K )&!h  6$    !É 2$$21##1    #)"" #+1         6 QÿêóÌ#59=CGK`m73#73##5##53#5##5&'7&'#3#'65534'75##5#35#7353353673265#"&5'67'533_BBJDD ) V ,+(y <((    ( $Ì 2$$21##1    ! )' $,2         6 ‡ÿéöÐ&*73&''67&''667##5##535#¤;    ,A111Ð        ]\\<+5ÿï‹Å73#3#67'75375#735#CB #, ÅO 2 XSi-VÿéõÏ 0EKQ7'67&'67'7''63#"''3255'675#'3#"''3255'675#&''&'‡# O & -   #) F 3LE  2b  =  Ï #&/ +e   %e   % GÿéôÏ 1FLR7'67&'67&'7''63#"''3255'675#'3#"''3255'675#&''&'~% $Q , 1  &.#K "8SK "8i  C  Ï &&1+e   %e   % [ÿìôÎ (,0473533#3#67&'7''67#535#3#53535#35#35#n022;M   19&<0y ™!#¸  eCCC22222lÿéôÐ%73#3#3&'767#'67#537#536 ?BOST "( K!%#&Ð    ÿñf¿73#3#5##5'67#35# Y% /  !'¿ s _+6’DÿñW¿73#3#5##5'67#35# J ' #¿ s a +6’Cÿöêº 7#5##535#ê555ºÃÄ Ž eÿéñÏ '+/37733#5##537'6'&'3#735##5##535#33535#35#¡=h<6 T YY55ZZ$$7#Z$$7##Ï#-.!  420d d&9 pÿéñÏ '+/37733#5##537'6'&'3#735##5##535#33535#35#§7^71 K  SS//SQ 1 Q 1 Ï#-.!  420d d&9 `ÿìôÐ "(048<73#'63#53#3#'#335357&'3#53535#35#35#Å"("LI G  % ” ""Ð K‚4G# 6===***** kÿíóÐ "(048<73#'63#53#3#'#335357&'3#53535#35#35#É$ FDB  # ˆ  Ð J‚3H#  8<<<+++++^ÿèñÏ73#'655353335#³8a(>fLL¤N-& (2;FW*ÿèuÏ73#'655353335#J(F+H33¤N-& (2;FW*YÿéóÏ.287#"''32655'675#537#'733#67&'37&'¯  !%CVFL*?  #= ? X  +( .8 6   ¤R ÿëî[ 73#3##"''3255#&'''6'°°Üa  h! R . ([&  "  ÿéóJ 73#3##"''3255#'67&'(°°æg   l>" {  J        \ÿèíÏ473#"''32765#'63#3#353#5335#535#'6~c   Y 9%((^,,  Ï –"  2$43#2  [ÿéöÒ!%+37;7'67&'#7&'3#735#&'735'6#5##535#35#„ 0!& ?9 '‚‚&&   1%  "OOOOOŸ    A#  ##  2S S+ ÿècÏ73&'73&'#5'67#   $5°   fa ? ^ÿïóÐ #'+/>73533533#735#33533535#3353353#3#735#3673#53'e((‡'c'{”” ||YY$)•!ÁQ0/+ / #  UÿéôÑ RVZ73#53&'3#735#73#735#3533533#3#3#67&'67'5'67#535#535#5#35#£B”=.;;:<<[ %$$(B   4  0& X%%%Ñ#+ ++    +    ?ÿéõÎ $(,EIMQ7&'#5'63&'3#735#73#735#'3#735##"''3255##5##5##535#335335—() R =9 =,,_,,E--W   , Î    &0  0  0 0H !!!!)]$ RÿéöÏ $(,EIMQ7&'#5'63&'3#735#73#735#'3#735##"''3255##5##5##535#335335 $& K 692)) V)) @)) O  )Ï    "0  0  0 0H !!!!)]$ ]ÿéñÍ $(,EIMQ7&'#5'63&'3#735#73#735#'3#735##"''3255##5##5##535#335335¡# F /1 ;(( Q(( >(( K  &Í   *0  0  0 0H !!!!)]$ eÿéöÏ $(,EIMQ7&'#5'63&'3#735#73#735#73#735##"''3255##5##5##535#335335¨# > /- 0'' '' ''   $Ï    #0  0  0 1H !!!!)\"lÿêñÇ733#"&55#'665#5##535#Õ +  ^AAAÇ;  0#  )lqqO=uÿèïÐ"73#3#"''3255##5##535#53&'¯ 341  132Ð \  E‚‚ew  ŽÿêïÏ73533#"''32765#'655#¡( )'£,,d> hc> =Xÿçç–073'67#&''67363'67#&''6g@1] O.6  $G:@y k;4 T–6 ( .A3   ÿçZÐ73&''67&'67#53667#,"    ÐP,  "$~8# 3ÿïï€$73#67'7&''67#3533#3#535#@£]4)  8D/CJJV¼SC€ D ÿòò˜"(73#5'67&&'3673#7&'€T_ P25 39 Lx:Ì"  } .$8J  ÿèó8 7373#&''67&'67#367 D4 %! 5+E 2! :O3 0     iÿéóÏ"&*/DJ73533#3#''275#535#35#33535#335&'#3533##"''3255#&'k8882 /=1181 Q1 L\  \#    JJ *,& !     _ÿê÷ÏDHUbh73&533#673265#"''67&'#3#3#3#67'75#535#535#535#75#'&''67&''67&'_c     ")+    -   E‡!'( +! )  '+ jhW    pÿéóÐ*048@D7#&'#'67#3&'73#'655'673'3673#3##5##535#ó  &(a  <;13PPPPQ000     "  85 +61!   ^  7 7ÿçòÐ!(.7373#3&''6654&''67#677&'‡>@:    £-7#    (;4!r  {ÿéôÌ 7&'''63#"''3267#'67#Î" G   Ì?F?( $'_!HN"Cÿûì¼ 73#3#3# ÀÀ ªªØØ¼CERÿûó¼ 73#3#3#[¡¡¼CEÿêïÆ73##53#3#"''32765#2  <ß }…Æ<*F'CÿèôÐ07''6767&'3#3#&''67#5367#'6¿ 99"$* 9a<LB3 5 C : =B  Ä!    7$ -$ LÿèöÎ#)/7&'36732767#"&55'67''67&'—!/     Î -V-Xj6%" V5% +!#)*"dëÐ73673#''67&'67#367> €) ?'> 1  1J º      |ÿêïÈ7#"''3255##53#3#735#ï MAA77ÈÆ  ¯ÌÞ,W5ÿêÑ#+/373673#53&'35#&'735'6#5##535#35#5~##1#  #KKKKKÑ  WW \555 :dd#4 ÿè—Ï19=73673#3#3#3673#53'735#535#535#53&'#5##535#8#7//55 ‹ 22..6^BBBÏ      Ÿ? @" ÿèšÐ "(0487&''63#3#735#&'735'6#5##535#35#L## +EE~~##0# #KKKKKÐ  A#  ##  .T T,wÿëöÎ=73533#3673##33##"''3255#53567#'67#5367#535#   .-//  ;; & "9)º    sÿéòÄ373##"''3255#7&'#53#"''3255#7&'#5s;   x   Ä  ‡**&"|²  ‡**&"|²‡ÿëôÆ !.73#735#35#3267#"&5536'33#67'‡cc====M    S Æ_9;= +  _/  sÿé÷Í #06<B73#5'675#73#5'675#&'7&'&''6'6'67'6w8 &?8 &+Q # $ ' " "( + ./ #C EÍU  U      5       +tÿéóÉ +/373#3#535#5#35#3353353#3##5#535#735#35#yv##v!!A  ]k,5577,DDDDÉ22#/F  * & nÿéòÊ#D73#3#5##5##535#3#73#3#73#3#3#"''3255##5##5##537#wu39&%8/8A%%A&&N‚;>  ,3Ê (;;( * :  $8888=N lÿèóÏ&*04:@FLR73#3#3#3#535#535#535#535#'235#&'35#'6&''&'''67&'å 771100781144557&!!/    ; 0Ï >    >  f     `  ÿéôs73533#&'#5'67#bcS$7 ;%$9 8"R]*2YX.' ÿò€Ä!%7'75#535#53#3#6'35#33535#335}3>/**+h*))E+B+ tt P wÿéôÍ73'67#&''6§D-O4  !Í R;8e   .{ÿéóÅ#7#3#327#"&'#67'535'#ê'-+ % I&!ÅI#$)-.B Ò%%\%%kÿèòÏ)73#3533#"''3255##5##5'67#536¡FK .    !&Ï##U  @uu\O )(sÿìî¾73#3#5##5'67#35#{s6 H1 !()11¾#"y ` ,<£LzÿêòÇ733#"&55#'667#5##535#Ú & U999Ç;  0$  +lqqO=pÿéñÍ 73#535333&'#«F&@T(—#Y#=@rÿéóÏ27#53&'73#67&'7&'3267#"&55'67#'6 &3-:    %  Ÿ  ) $ S" UOAoÿêõÏ $(,737#"''3255'67#5353635#35#35# / "3 .!J  999999Ï]  @  %# s 2<:ÿéðÄ73#735##5##535#†cc;;VIIIÄT.\klI6yÿéøÑ!%73#67&'#67'53&'3535¨ -/8 ) EEEÑg  DK  Á **tÿçðÆ 73#735#35#35#'67&'~kkCCCCCCBÆ£rOL4 ÿçôÐ F7'2&'7'6'&'67'7'3#&''67#5367'67'6767å *;13  DL! 1+   (-. Ð       $    |ÿéôÐ59=AEI73673#33##&'#5##5'67#535#535#535#53&'5#3533535335œ  !&      ,  ,  Ï   %$6JJ)  <%dÿèôÐ+/37;?EK7#35#53533533#3#3#535#'6553&'75#35#33535#335'67&'òp/)c(1  8(?(7  8¿1  MM C1 5<[ C<-"   nÿêôÊ%7673#3267#"&'#67'7&'nB/,+ .! @» %1,!3@Z  {#;bÿéõÑ 7;?CG7&'67&'67&'63#3#&'#5'67#535#735#33535#335‚   6  3  ^{6>0  .922"T2"Ñ      -O   3/ /1dÿéðÐ K73&'73#&''67&'763353#3#"''3255#67'7''67##537#d;;Œ[    KU4A  4 51½      22B J  5   QbfÿéòÐ19=73673#3#3#3673#53&'735#535#535#53&'#5##535#   611::  Œ 99337iOOOÐ     œC C(ZÿéõË 4873#735#3353353#3#67&'#67'5'67#735#p{{"l„„v. 1    PPË:6 3    -     ÿøpÐ 73#55375#535#'673#3#7XB''   6 &&PV XET/ $ /Q cÿéòÏ#CGKO733533##5##5#533#735#73#735#3&'73#3#3#3##5'65#5#35#!!!!99399A,0,,,,1e 4"""""Ï  #.."   L   kÿéõÏ&.273533#3#535#3#735#3673#53&'#5##535#o7880t17 nnJJ  !ŠeKKKà   *1$  (= =!gÿçòÏ#'+/5;73533533#3#3#535#535#35#35#33535#335'67&'s!;0r/9 ,0N0@ !D ¹]]_;+    iÿîõÐ#'+17GMS73533#3#&''275#535#35#33535#335&'#6&''33265#"&57&'''6r333- /7..3-G-     U  [  ÀI I- ) '   (   ( aÿéöÏ#'+17=C7'673&'73#3#3#3##75#5#5#&'''67&''&'{  ))$$$$+`6#####S  \  V t).   e%% nÿéóÉ +/373#3#535#5#35#3353353#3##5#535#735#35#r}#"z"$H!!ao/9999-HHHHÉ22#1D* ( kÿéóÌ !6<73#535#535#3#735#'3#67'75#3533##"''3255#&'upp]VV]===U; !]   ]!  ÌK  @95     cÿèòÎ(.4<U7367&''667367&''66''6''6#5##53733#"''32765#'67#Š   =    > |[ !7   % 2 * Î     !'    ! A((/<:,hÿèóÐ`f73673#3#3#535#535#53&'3&'33#67327#"''67&'#7#"''3255'75#535'67&'•3--6€7**1"(&       NÐ       _    %      gÿéòÏ<@DHL733533##5##5#533#3#"''3255#7&'7''275##535#735#33535#335‰ ## ""w3=  *  $&811 Q1 Ï #N D  /  J[ .,iÿéïÏT73533533#3#5##535#35#3#'67#53#67&'##"''32654''67''67&k#Y/##JJ  &A      !& ¾,,-)           dÿéòÃ!&+/733##3#5##5'67#5367#5347#3353535#uoKYA ,/!3*,1?AAÃ+, X D    , €*`ÿìõÐ?EK73673#3#&'#3#"''3267#3267#"&55'67#5367#7&'7'6o,:>O  - N   *') $&  \ ¦  *8H  7   eÿìùÏ)37;?C73673#&'#3267#"&55##5'67#3533&'#35#33535#335q&B% *     +C+²  M   W ):@ ÿçóT%73&'73#67&'67'5'67#[h`   #P   9 SF  :   #  Iÿí’Æ73#3#"''3267#735#OC-0  2 ,/ÆK(E!,M%fÿéôÏ%736533#'67#7&'33267#"&5s(AB 2(X     – 9>E)`I Qn !& uÿçöÌ %73533#'67#7&'33267#"&5~!??,' R    •77o,(dJ Qk "& ÿèð—473733#3##'2655##537#3673#3##5#535#53'dil]–M`U04433/~^ Gcu#    ÿéñ—%*0473533673#3#5##5'75327#535#67#35#35#%F< 0Q\'(b\Ft 59x€    Y A @,[ÿêòÉ#6:>BFJ`m73#73##5##53#5##5&'7&'#3#'6553&'75##5#35#3353353673265#"&5'67'533h>>F==$ Q ,)$o 7'!    & É 2$$21##1    #)% $*1        6 _ÿéôÎ!8L7#53533#&'#5'67'6'&'35#53533#3##5#''3'67#&''6“(8:- W  NB""&' /  “** )) H  ƒ((""J .0 8  KÿéôÏ!8O7&'#53533#&'#5'67'635#53533#3##5#''3'67#&''6y  !.@C0"" ^ &&+,! " 7  Ï   2** ,+ L  „((""J-18 EÿéôÏ!8N7&'#53533#&'#5'67'635#53533#3##5#''3'67#&''6t  0CE3#$% d ((--!!$ 8  Ï   3** +, J  ƒ''!!I +38  ÿé~Î.26:>73673#&'3#5##535'67#53&'735'235#33535#35#u ,  % '=( #  '0&=&Î!    (g g,  ž=IÿéðÇ*7#53&''67&67#3533#3##5#535#c‰&- ) %(K,6<?3ÿóï 73533#&'73#536!V[Å-  y @܆g  !pÿñóÐ73533#3#536'&'z01uV *ƒF5¨(( H9B?3=>2]ÿéóÏ(,073533#3#3#535#535##"''3255##535#335e9;;44B–A//9}  O 3»M\  1t2""" ÿêŽÂ 73#3##5#'673# __ {52 MÂ&ŒŒ;# 2Uÿêl 73#3##5#'673#JJ [%#:Â&ŒŒ9% !2UlÿéóÏ(,073533#3#3#535#535###53#"''325'#;5#t06600<‡8((0]Dj  +»2t\  G""qÿéóÏ(,073533#3#3#535#535###53#"''325'#;5#v044..:‚5((0\Ci   +»2t\  G""IÿéóÍ473533#3#3#67&'#67'5'67#535#535#X9AA::H=  7  #4D449¶   R7  4 BÿéöÏ&+/@DJ73'67#&'''673&'67#3#3##"''3255#'''6h&&' 3   X6  <# DNN%—?  Cu,*M Ï D"3    !!P, 62  / #$  IÿçðÎ#@73533533#3#535#35#35#335335#5#3'67#&''67##5M('--#‘ (<''!*CF%QJ< %!À6643'3%  )ÿè¥Ï37;?C73533#3#33##5##"''32655#535#535#535#535#35#3353535?@@557 $   99AA9955?""5""$$$  0!*  0 -@!KÿèòÏ37;?C73533#3#33##5##"''32655#535#535#535#535#35#3353535V@DD99;(   >>KK==88@&&9&&(((  2 !*   2 ,?! ÿé¥Ï#'+0EK73533#3#&''275#535#35#33535#335'#63533##"''3255#&'9>>7 4D 559""5$Y""5$eh   h*    LL )* & "      ÿê¢Ç(9?EIM767#533'67##"''3255#'67#53'#"''3255##5&'''63#735#> ]8   ( .4p   fT   CC""³    Df Ohz   -ÿêñÑ"(,7#3#"''32767#53673#"''326'&'3#Ô4Q   N3     ??¥XK "z  E#  s ÿë‰Ï"&*06<B7'673&'73#3#3#3##75#5#5#&''&'''674'!  !!R1I  / ,…"& d%%  ÿì”Æ#7#3#3#"''3267#'667#'655”d^1/  ÆX!BE# 5C"B4 4>]ÿèÎc736533#"''32765#'67#-:R  B:03H  H%3& ÿêzÆ)733'67##"''3255'67#53&'767#a$    )/GÆ  i  F#$,   ÿèˆÏ#'-373533#3#3#535#535#3#735#35#35#'67&'.11++5z2)).iiCCCCCCA      ?aE & %      ÿòÏ 73533#3#67&'7''67#535#/..7B " ,1-9/¬##30 #)  ,3ÿó‚À73#67&'7&''735#35#aN  ' ::::ÀrB   “MCöÐ 7&''6&'3'67#}/: 73.: M(  ;“ vÐ',.&  " +ÿéÚA 7#5##535#Ú‡‡‡AX X9&(ÿé×T 7#5##535#ׇ‡‡TkkI6 TôÇ73#33#537#537#5#Ñs_)ç8 ,2H¡Q Ç5"M"" ÿéôÁ73##"''32655###535# ç&  ­|L88Á« ¦'XfE2WôÎ733#3#&'#5'67#535#53wccVC#3 9%%6/$AWffÎ %$ KÿåôÏ%+735#535#53533#3#3##5##53'67&'OF33;;DD77K¥V6T K yE35GJKÿæñÏ&,735#535#53533#3#3##5##53'66&'\=22::>>66E•‚P0V )$"}  K9;MO! ŸÿèðÏ#737#53673#3#3&'767#'7#Ÿ!&)(   "y' $ÿé×73#735##5##535#5––pp9:K K. JÿçôÐ)6:>DJPV73533533##5#5#3673267#"&5'3#5'75#5373#735#&'''67&''4'R",&&Q"`,<  Z 22G  l \   ¾   J_ ZAA+»-@S>>,$$7&%#c_#z i!W  "6À6621(, )BôÏ(733#7'7537736732667#"&5G'''3> G")  (Ï%6 ][q0  ( !  ÿñò573#3#(­­åå5_ÿñòÏ %7#5##53&'7&'''63#3#535#ðg= # z3@“?3³.1 % /22ÿêîœ &*.73#3##"''3255#53&'#53&'367##535#Y";  ­<$X :S:mEEœ  F  B : 077&`ÿèõÉ'7#3#3#3#67&'#67'5#535å`YYYYn@   7! É   IM  ZlMÿéóÐ 2BSW[73#53&'3#3#3#3#3265#"&5535#5333673#53&'#"''3255##535#35#vLR46443344 556Œ PD  #####Ð   2     wE   0i  *‚$8VÿêîÑ#73#"''3267#'6##535#35#€d  Y K7$$$$Ñ “$~ &"m~.J ÿéYÏ 73&'#''6.   Ï& «µ* UÿéñÐ "@73#5##53&'3'67#''67#3265#"&553#"''325¤:c:"$< 0    h : Ð $% >k(S  !e zE  _ÿéòÑ !%)73&'73#3673#53&'#5##535#35#d:9‰# " #“$nLLLLLº   An n(>cÿ÷óÊ73533533533##5#3#5#5#c@h|hŒ44>>>>JJo‚888aÿèõÏ%73533#3#&''67#53655#'61174$ &* + 04 Ä,, 572 $, oÿèöÏ"73533#3#&''67#535#'6Œ++30 &/25 Ä *** 65/ %03^ÿêôÏ7'2333#"''67#53&'Þ 2H; ++2 =NX/Ï3)  /@HÿèöÏ "(7373#'67#3&''657'6''6\!_a / ) P  "2 A/  C ³_81U7 .,'8! " \ÿéòÆ73#7#5'75#35#35#75#`/6)@@@@@@Æ{=9 Ž!!T!X QÿéîÑ)?S73#"''32765#'63353#'67#5336'673#"''327653353#'67#5336zh  c '.   e  F* '  ÑJ ,  %  % Z I * %  & V„Ð,73533#3#3#3#"''3265#'67#535#535#/,,%%)DB 7 4))/Ä        ÿéój 73&'73#3#3##5##535#amå´´³³µ’’’X  ,, XÿçóÏ048<@DHO735333##3#3#&''67&'7#537#535#5#5;5#33535#33535#33567#g5559FV   2 $&1+95 ""5"W""5"[&&9&* ,Ä  .   .  ' D Q GÿçõÏ048<@DHO735333##3#3#&''67&'67#537#535#5#5;5#33535#33535#33567#Z;::>Pc'  $5 % (3-@;));(c));(h..@+12Ä  /     /  ' C PPÿéöÏ).2CIO73'67#&'&''673&'67#3#3##"''3255#&'''6r### /   S0  7 @HH!Š:   =lH ÏD"3   !!P* 62  /   XÿéðÇ$)733#"&55#'667#53&''67&67#Ñ ,   t "' &% : Ç<  0#  )v'     'ÿèØN 7#5##535#33535#35#Ø‹==P;‹==P;;Nff';UÿíïÏ573673#3#3#3#3#535#'67#5367#5367#53&'‘ $?DJPV73533533##5#5#3673267#"&5'3#5'75#5373#735#&'''67&''4'[(##OZ(7    U //?  _U  ¾    J_ Z==4T4>TTž111pp1}9ZÿèõÏ%73533#3#&''67#53655#'6{44<9& )- . 38 Ä,, 661!#- eÿçõÐ*07#673265#"''67&'#67'53'37&'ñ<  $ ( :  ¦/$ -%+ Gj  Œ*(   Jÿë÷Ï#)/7&'36732767#"&55'67''67&'Ž"0    ~  Ï .W/Wj6$  X6% + ")*!VÿéðÇ*7#53&''67&67#3533#3##5#535#m ~#)% #& D)166AA??1µ!  N))dïÏ#7&'332667#"&57&'''6w     !  ˆÏ @  A  &Hÿè÷Ð 373'73#3#735#3#735#3#&'#5'67#535'6OJE¤ ŠŠddGG''M ;G6& (' %8I4@À  T6 $ 7 0.  RÿéõÏ#U73533533##5##5#3#735#335335#67327#"''67&'#&''6553'33'7\#)"")#‰‰'=     - <  À 9>    #$#  bÿéôÏ#7373#3#3&'767#'67#537#k/?CPTP &. H*.+²    ZÿèöÈ7'6553#&'7#3‡p#& -"IIdP,&TUdJ"YQ>`ÿóóÐ 73&'73#3#536'&'j67‚b0“M9 ¤ G4=?5591PÿçòÐ%+73673#3&''665&''67#677&'kUWK""  ( "  £+"7"    1M4 !q   rÿéóÇ73#3#3#3##5#535#535#535#wx3//007788....3Ç>>aÿéïÇ73#3#3#3##5#535#535#535#f„83344====33338Ç>>QÿéçÃ%)7#"''3255##5#'65535#33535#735ç   $&$$7$\%$7$ý +CC+$ 3>]=***f* **XÿóõÍ %7&''63#3673#7&'&' "' %#$ 2^^Q +’A    Í $%$#+d-+/"g !ÿéóÎ733#3&''67&'#5367ª//-!  !Î"7'0$!oÿèíÐ73533#"''32765#'667#}!<  ( £-d? hCHE=mÿêóÑ -73&'73#3#735#33##"''3255#53567#r47 llFFr88  ;;S½ 43   `ÿçõÏ.73#'6553&'#3&'36533#&''67#®/e4:RR@"-& &!- * Ï ?@1 1;X #  )'&*hÿèíÏ373#"''32765#'63#3#353#5335#535#'6†[ O 5!$$W'' Ï ›6 |  2$43#2  mÿéóÊ /473#735#35#3#735#33533533&''67&'#367{kkEEEE~~#gu   %  !  ÊE) ' '41    fÿèñÆ!'-39?73#3#3#535#535#735#&'735'6&'''67&''&'ut1008‚7//0/   [  PÆcA   AA ƒ iÿéìÈ#'+/3767#533#"''3255##5##53&'35#33535#335Œ Ys#  %$=$$8%]$$8%±   //8¥ BJ`ÿéôÏ8=737#535#5353373#33##"''3255#53567#'67#767#m#B7,,$$38::   BB2 H i  ( %  5 cÿéõÄ 73#3#33#"&''675#735#xj)// !(   .DDÄS&4+;j/]ÿèñÆ $73#"''32765#'6553'#33#735#‚o  [xRRJ==‡] EB2 4?^?-M> ÿèóa73#3#33#"''675#735#+ªJPP#.(o )Lƒƒa3    * ÿèó^73#3#33#"''675#735#+ªJPP#.(q ) Lƒƒ^2    )bÿìõÐ>DJ73673#3#&'#3#"''3267#3265#"&55'67#5367#7&'7'6q+8<L  * H   )'( %'  [ ¦  *8A  7   jÿïñÍ+73533#3#535#'67&'3533#3#535#|*--7‚7*E F-,,8‡;-µ3    ,   _ÿéóÎ -7'2'6'&''&'#5'67#53533#&á 4K=5 +   H ,59:7$ Î #   jGD"'( ÿèñS73#3#33#"&''675#735#-£GQQ82<. "H~~S.     'WÿêôÑ"&<H73#3#'6553&'5##5#35#3353353673267#"&5'7'533°6)&p;%     ! Ñ =;, 2;X =,3     !!   V]ÿèôÎ0J73533#3#535#3533#3#535#'3533#7'75#3#3267#"&55#'67#p000:ƒ60?II"Ž+   . %$¾5 2! $2 $XÿèóÐ#'@CZ_73#3#&'#5'67#535#53635#35#''67'6767677'7''67'677767'¢?3! !# %2>     n     Ð h !::h0F   &    &"\ÿéñÑ PTX73#53'3#735#73#735#3533533#3#3#67&'7'5'67#535#535#5#35#§=‹9+884::W#!!$<   0   .$S###Ñ#+ ++    ,     zÿëôÆ !.73#735#35#3267#"&5536'33#67'zmmHHHHZ    ^!! Æ_9;= +   _0  ]ÿñðÏ  &7&''63#&'3673#7&'£  (@@  6T  *“$  Ï(''&'  V,+."d!_ÿéòÏ573533#3#3#67&'#67'5'67#535#535#l27722=5  / *:,,2¼   U @ 7"TÿèõÌ&Nf76767'33#"&55#'6653&'#33#3#"''3267#735#5'67&'767#67#53&''67&'¸        +# GA# &   *     -K3G    Ì    # *#94#8          ‰ÿéòÆ!%73#3265#"&55#'67#735#35#35#’T ......Æ/ 46*fBC ÿé‰Ð37;?73#3#3&'73#3#3#3##5'67#5367#'65#5#35#$N-?E  ""Q")4Ð   Y & r"" ÿègÐ"(,048733#"''3255##5#'655'667#35#33535#335/$         + Ð   — *%%)0O  -H ÿé†Ð 73&'73#3#3##5##535# 22ydddda666² V V6# ÿé|Ð 73&'73#3#3##5##535# +/o TTTTS***² V V6#ÿéô† 73#53'3#3##5##535#ƒiægD©©©©§|||†  )  8 8 lÿèïÏ,73'67#&''6'673'67#&©7YO1    $ +3_W-  Ï =/   G9 jÿéôÏ1767&'7&''6'673#3#&''67#5367 *0 K(73& & 0 . .2Ï" " M  $ _ÿîóÐ"&*06FLR73533#3#''275#535#35#33535#335&'#6&''33267#"&57&'''6h8880 3;1181N1    X a  ÀI I- ) '   (  +  YÿèôÑ N73#53&'3#735##5##5#53##67#&'#"''32655'67''67&''6§?Š8.vvPPum/b4       ",2"' & Ñ )( "(          ZÿêõÎ _ci7&''67&''63&533#673265#"''67&'#3#3#3#67'75#535#535#535#75#7&'o   /   ?d"!   $,) ]Î    ( &F!+! ,)  jhG ÿéOÎ 73#53&'3#3##5##535#/C44445Î >TU5%PÿçöÇ+73265#"&547#'65567''67&'ÙI$    ÇG8( .$:/>f62 )3x., #2 "!! ÿêwÐ &73673#3##5#'67#535#5#'&'6  >  ¢7ZZ>2777(w ÿíƒÏ'+/3773##67'5#5'67#5363533&'#35#33535#335?3 $ % #  %7%Ï V *O G79ÿè†Ê/377#'6553#"''32=#35#'6553#"''32=#356  3  @  3  D1+ -3wË ''**<3) -3wË ''** ÿéwÐ#(-73#3533##5#5367#53635#335367#335;,,: %9%Ð b33 b6B uÿéòÏ"(.4:73#3#3#"''3267#5363535&''&'''674'8Q``` ` >>> *(ÏL? -‡ ^ ÿérÇ 7#5##5##535#33535#335r'<'ÇŸSS£>,,,g*** ÿêvÏ'73533#3#&''67#53655#'6 $' # *. Á ,,  (#- $ÿéqÉ 73#735##"''3255##535#35#UU//F   77777É>>w  1';ÿêxÏ1733#3#5##535#53#"''3255'7567#536;&&*F+&&8  (, )= Ï''}%   ÿêzÏ"(.4:73#3#3#"''267#5363535&'#&'''674'9*FKKN N 333   $ !Ï K A+† ^zÿéòÐ5;7''6767&'&'''63&''67&''667#Õ (-  +  2    &Ä # 1   %      tÿê÷Ð#'-37&'#3##"''3255#535#5'63'&'''6« ** ** $;! 1  9Ð) H E !)] !  ÿé|Ï*.273673#3#"''3267##5'67#735#53&'35#35*  (.   !"& 4$Í  >:Q7 AI-ÿëxÉ#'73533533#3#535#35##5##535#35#j%911111®""""Am q(> ÿèŠÎ +873#53&'#5'6'673''67&767#&'U+u5 "  )      Î  .…\&5#5;    %  zÿèòÏ%+73533533#3#535#35#35#35#&'''6})u%))))))+  !±llAB2   ÿêÑ6:>BFJ73673#33##&'#5##5'67#535#535#535#53&'5#35335353351 $   * + Ï   #%  1OO/! 5$yÿéòÇ!%+17=7#3#3#3#"''3267#55#5#35&'#&'''67&'î&!!!!*  \2  )"ÇO7‚&&.  ÿê{Ï#)/73533#33#53535#35#35#35#35#&'''6+))# n #+55555555* Ávv.,++"     ÿç‚Í&,28>D7'67#5'675#5367&'3#5'675#&'7&''6'67'6J  #4 4  "*J  !! & (' 8 :c  !V {X     Y    0  ÿéÉ +/373#3#535#5#35#3353353#3##5#535#735#35# t# o!?    Vd(//22)>>>>É22#/F* &  ÿè€Ï37;?C73533533##5##5#3#3#3#3##5#535#535#535#5##5#35#335g  -//11,  J ½$$) ÿéƒÉ'+/37;?73#3533#3#3##5#535#535#535335#735#33535#33535#335k, .0022/ -,E,<#ÉN##.,\ ÿé†Ð-159=AEK735333##3#3&''67'7#537#535#5#5;5#33535#33535#33567#)( (-99  $!   -) )?)C- +à  ,   ,  ( ES ÿè‡Ó4<@DHLPT73#33##3#"''3255##5##535#535#'6553&'5#35#5353535#33535#335V((!!# " ' 5 '' 10"3"Ó   T  "i  C3 5<\+ (   E+ÿëwÎ!%)/5;A73&'73#3#3#3##5'65#5#5#&''&'''674'#K.D ,  *Ì [ %%   ÿêŠÏCGK735333##35#53353#5##535##5#3#5#'6753353#35#535#535#33535,. .!  !     --88,< < &„)'4 BB4' =!' <  ÿç~Ï#'+/5;73533533#3#3#535#535#35#35#33535#335'67&'/*f)0')@)7 6 ¸\\`=+   ÿé‡Î"&7;?73#&'#5'67#5367'23'#35##"''3255##53#735#o ? E  "*4 ##D  E22Î  &  ? %*M 8Qa*  ÿéÐ-26:@F73673#7'##"''3255#5'67&'77#&'35#35#'67&')3#       "W ,,,,   M  ·    @0 -5 & 1)     ÿéƒÐ,1<BFJP73&'73673#3#3##"''3255#535#5365#5#35#"&55#733567#35#&'    #  LLF 'A F  :F  FF  ²  ]   ]  5 $  @ ;  ÿé€È26:>BF73#3#"''3265&''75#53533#7&'767#'67#735#33533535#35#hEP   #"  I     $!È>l& // M €ÿæõk!%)/5;73#3#3#"''3267#&'7#5335#35'67&''&'yS˜µµª   . xE2………›  _k1   W;      ÿéfÐ!%)/5;73#3#3#"''327&'77#5363535'67&'#4'*&9<BFJ`m73#'3##5##5##5##5&''&'#3#'6553&'75##5#35#33533536732765#"&5'67'533O66<66qY 3 b#`  1      É 1$$11$$1    $(' #+1        6 ÿótÏ73533#3#5##535#35#*((+*++¢---a o-r4 ÿóxÏ7#535#53533#3#=#($++,,#3 o,//,a 33ÿéår!'+73#"''3265#3#"''3267#536&'3#kS  p     2 N––r   !/ ?  7ÿèâ!'+7#3#"''3267#53673#"''326'&'3#µk˜   ˜+R   >  P——\*5 H # 9ÿë€Ï ;7'2'6'&''&'3#3#6753#5'5375#535#'6u ,?4,  !    G$,, '33 Ï   .A 6*2  tÿéõÑ  -:7&''63#3#735#73#735#&''67&''6¬  '3322-229   D  Ñ!";;/   %    ÿçïÒ#'4J7#3#'6553&'75##5#35#33533533#67'73267#"&5536ïC:·Z-,,,>-(˜99!(£ %  %  à *C< 3@]   /   #  ÿéƒÑ"&3@73#3#'6553&'5##5#35#33533567'53367'533O*Y,      = Ñ A90 0=Y 81!!!!!c  T  U„ÿèôÎ%+73533533#3#535#35#35#35#'67&' $ k $$$$$$ 9 °nnCD0 ˆÿóóÏ7&'3#3#3#535#535#·  b'##+k,##'Ï &:::: ÿé†Ï#'+/5;73533533#3#3#535#535#35#35#33535#335'67&'3+i+3)+C+6 6 ¹\\^<+    ÿê}Í%J73#&'&''675'67#535'2367&'#"''3255'67&'767i +$   "  ",)      Í      m%        ÿêŽÍ%I73#&'&''675'67#535'2367&'#"''3255'67&'77z 4*   $ %50     Í      m&        ~êÑ7#5##53&'73&'7367ê®) &   °. 2    ÿéòr'-39?73#3#3#535#535#73&'735#336735'67&''&''&''¯LTThähUUO  ;O ˜  ¹  , (r4       Z       |ÿèóÏ#)/73533#33#53535#5#3535#5#&'''6‚+//& w"+Q55555551 &½vv.++   qÿéöÏ "?73#5##53&'3'67&''667#7#3265#"&553#"''325µ1R12    H  0 Ï $% > j("  g  |F  ÿéòi$-39?73#3#3#'67#535#535#73&'735#336735&'7&''&''¯LTTh¿  hUUO  ;O Z  'i2       T      zÿêôÈ!%)-1597#3#3267##"&55#535#55#37355#355#5#735ë"##  $$"= ;<=>È7b  c7ο·¿3) ÿêuÆ #)7#5##53#735#35#3#53&''67&'t?SS....%d+ 6 Æ&S03' )   ÿéøX!%)-173#3#3267#"&55##535#735#35#33535#335'¥HUU#' 0/?QJ??RC•??RCX4   = 1 ÿéõÍ73#&''67&'#53&'667#¹,   //ÍD**FŽ1%7zÿëõÏ#)73&''67&''667#&'&'¡2  !    &) &Ï(     \  xÿéðÏ)=Q73#"''3265#'63353#'6677#5336'673#"''32653353#'67#5336‘P   F  $       F 7 !  ÏL2  !    V   L1 "  ^öÐ?PTX73&'73#3#53'#367#733#3#3#3#3#3267#"&5535##"''3255##535#35#*-r(#PTTMNJJJJFF# ,& NM ;;;;;Ä        <1 ?ÿëö|>OSW73&'73#3#53'#37#733#3#3#3#3#3267#"&5535##"''3255##535#35#*+r(%QUUMNKKKKGG$ -' NM ;;;;;p !      NB  S  ÿêóÐ7'673#&'#5'67#53¶-&!&      %± +8-lg$ 4 ÿéÑ $(,EIMQ7&'#5'6&'3#735#73#735#'3#735##"''3255##5##5##535#335335G$ E ,8 ### G$$ 6## C  "Ñ   0  0  0 1I """"*\#ÿï}Ï!%73533533#3#535#35###535#35#o'8E3333°  @ao(?RÿèóÏ48<73533#33##3#33#"&''675#535#535#535#3535e8@@4466++  0088008K"""¾$#' =#$­äÏ 73353353#FGÆÉ »ÿé÷Ï73533#&''67#7&'»  / @@T/&BA( 9Q= ÿèód#73533533#3#535#35#'67&'#(E((<æ>(@??C4(  ‡ðÒ 737#'733#737#™sw6â9ll— '!& ÿçð+73533533##5#'67#??;;B 6)9 %%!oñÏ733#537#'77#Ku:â“p iÏ. cðÏ7#'733#53'37«np9à’J d ‰688bðÉ 735#533#535#2€‰*ࢀŸT‡ðÉ 733#535#535#)*ࣂ‚ŠÉ2  ,wƒ !7&'7'63533#&'#5'67##  Q O**!    ƒ     |'ñ„ 7&'''63#"''3267#'67#Ê   N   „   $ 3ÿé²Ñ7'6#5'6Ž >;0GÑ ) se #…ÿéíÃ73#"''32765#'665#•X  è0+v_I GZ^ïÏ73533#3#535#feeWÀUf¯ ++`ðÏ73&'73#3#5#fc°ž³³  .AjðÏ73&'73#3#5#gc°ž³·  (;_ÿêõÏ73&''67#'6=%"  N- !Ï17!/ 8b+YÿèóÄ73#3#"''32767#'655#gŒTK6/2$Ä0r$ LQ5 9T/ 3ôÏ73533#&'#5'67#bbL 4 9&#:5 L¬##,8de6)QÿêóÈ733#"&55#'665#5##535#Ï! 5mQQQÈ<  0%  ,mqqO=]ìÄ73#3#5'67#35#ÓyŒ 0>EffÄ <&%C}òÐ"73#3533#3##5#535#'67#536¦=B ''0033.  Ð ##''ŠÿéôÆ73#7#5'75#35#35#75#f #!$$$$$$Æ€83 R X Cÿé‹Ä73#3#"''3267#735#I=)2  3(*ÄJ(H!.L& ÿçõd#73&'7&'#"''3267#'67#5'6V l 9  : M D '4b% *3  $ IÿéõÊ73#3#535635#'67&'×0=r"*§C/<<ZÊ !8{8P eóÏ7&'3673#&''67#´”^g]"@I# 4) BTÏ    ) ÿêóÏ736533#&''67#7&'£  @  Š''R+$, ,TI ÿêEÏ"7#"''32655'67&''67&'76        Ï +>'((  —ÿçõÐ$*733#5367#'635#35#35#'67&'¸#H  $$$$$$ 2  Ð || H98(  ÿé‘É*:IYg73#3&'7#"''3255##5##5"'6735#''7'76'&''7'7''7'76'''67'7y5"        4Y  .   5  .   É Š …™™ž    6     1      xÿéõÉ'6ETf73#3&'7#"''3255##5##5'6735#''67'7'&''7'7''67'7'&''67&'7€n/     0Q  ( 0  (É  Ž  „™™ž¢   6    1     ŒÿçôÏ73265#"'&''7&'37&'ñ3  !  ‘ ;'#O!)(? ;ÿêžÏ73533#"''32765#'667#O&    ¢--Ž*(\HJAE ÿèàÇ 7'66553'#39 »““€D5 1$_G4! ÿèëË 7'6553'#3/Ш¨¥>B= 2@d& }âÏ 73353#533vDÄDÏ?/BB/ÿêåi7#53#"''3267#'6]FÎ ^)$ @WZ"D12 ÿéçu73653#"''3267#'67#Vc O4' IR[  M%2"28 gôÐ7.''667&'f!E( #%$E &) ÐA# 1 HÿéôÅ73#3##5#'67#5365#5#b‹ '')3 -&(W&ÅLjjI!<:LL; ÿé‰Ï&733533#3#53'67&73#5537 ((-}-   \J¼:MQ !'  7t o[  ÿéîÏ373673#'67#7&'32767#"&55'67536PwzG ?Mš  *&  $  $b?6YB O/&  TC jÿèõÏ#'-373533#3#535#735#3353#735#35#35#&'''6v022<Š;0/`ssKKKKKK3 Ä ,   E_C & &    ]ÿçöÑBFJP7#35#535333##67&'#"''3255'675#535#'6553&'73535&'óo+!!) $     !!+;G ¾3 "$   #(    B3 3>\ 2#+  lÿéóÏ37;?C73533533##5##5#3#3#3#3##5#535#535#535#5##5#35#335l++{6::771 [(½ ( óÐ$=AEK73533#3#535#3'67#3#3#535#3#3##"''3255#535#3#735#&'_bbX½S_Þ ÉžDXÄZHæ   LLµQQ22a  È     *  ‰ÿéæÐ 7#53&+k‚çK ÿéóÆ73#735#3#3#"''3267#7#*¦¦~~1æ¢ ’/ÆED 8 3@óÏ/73673&'73#673267#"&''675#'67#BH $Y #  !$ 3 .<± (  0:$#*GÿêøÐ NRV73&'73#'67&'3533533#3#3#67&'#67'5'67#535#535#5#35#UCC›9 " D U#'##';  4   $4(#\'''À       ; '  '  UôÐ73673#&'#'67#SoF1 8< 0Fµ  (50#fðÉ 733#535#535#)*ࢀ€‰ÉP \õÏ73673#&'#'67#U mE2 8 < 3G¶ "0.! ÿçôA73673#&'#'67# dlZB KP @X/  &'   †õÑ73673#&'#'67#H {3 + >* 0à  aÿéëË $7#"''3255#535#5#'##535#35#ë --ËÉ  qR#1AQà"1 ÿòjÁ73#3#7'6353675#O)1$Á;N |  ÿìÑ/37;?73#3#53&'#53&'37#3#3#67'675#535#735#33535#335G,s*'e*))26**))@)Ñ   4 %N   .-uÿê÷Ð :>DS7'6655633#3'67#733267##"&55'655375#'6733267#"&5æ '4 <%       Ð /E; 6G<      2' '.E'H6+4   GõÎ 7&''6,? B)$F RÎ A>=&–òÏ73533#3#535# SXXläeS   lðÐ"73533#3#&''67#535#&'7#6$QVVi4GP=cQŒD .   + uÿéóÇ %+73#735#3353353#''67&'&'''6|qq.H   +ÇJ*****@Žˆ   -  % ÿêvÎ73#&''667&'767#53&'B &  !  A(Î0#($ "zÿéòÏ73655#535333#&''67#75#€%- 1"  !#Q])**H3"36 $06)  ÿé€Å733265#"&547#3##5#535#X ÅD5! /!9,:InnI ÿéyÂ$73533##"''3255#'67#75#7&' J &K&  e]]R O;. 1.KK? ÿêvÌ"7'2333"&&#"'67667#53&'l '9/!    F(Ì8# ,ÿè}Ð(767&'7''63533533##5#'655#2 %) Ð+  T####QQ0 & ÿésÅ73#735#3#3#"''3267#7#SS++f; >   A ÅD E!7 3 ÿómÏ73533#3#5##535#35# )%%, ),,¢--.a o.s3 fôÐ"73#&'#'67#535367367#335Ï4& /3< &6GH+BAÁ      ÿçñ…#)/5;73#3#3#"''3267#5363535'67&''&'7&'b\³³««4#|||– „  B ?…7(cC    ìÑ73&'73673#5##53&'9 *    &µ' Ï   &' zÿèòÍ 7#5##53&'7&'''6ìF* ¯=*+> 3\).\V5 =ÿîqÏ 7#5##53&'7&'#'6q=%   ¯:)*; ,@L O>U1 8 ÿévÏ73533#3#535##5##535# *++&]#*^...­""$$Occ@- ÿé‚Í73533#3#535##5##535# .22(a$.h555­ ##Oba?-ÿé?Ï 7#5'6-ϰ† ,@ÿêµÏ!'-3973#3#3#"''3267#533535&''&'''674'r%@OOP  N... &$ÏI  D/ [ nÇ 7'7&''62%  ‘/Vf93A-;eòÐH7&''3&'33#67327#"'#'67&'#7#"''3255'75#535'6Ç 7<HC    A(* 4799%5Ð            ÿé~Ï$(,7'6553&'73'#3#"''3255##535#35#,(%??  %%%%%$?/ 0;V  8(&m .‚"5 ÿèÎ&5<73#5#3'67&''67#53&'67#73#"'67'7#325Q(G      -  ",   Î %4(! %/' >X  „K ÿé€Ì&73#35#535#53#67'5#'665#567=-  Ì q@  L,( #&i ÿézÐ %)-157&'6'&'67&'6#5##535#33535#35#H     P  ?)?)Ð   Pv y-I ÿé|Ï#/73533#&'#5'675#''67''6+))  +  H  ²RLE!0L   )  ÿç}à '7'6553'#33353353#353#5#5335#' hDD=  >ˆ(D5 7=^;+�#39(D 9(9^ÿéîÆ '7'6553'#33353353#353#5#5335#‚~ZZP'T&Š(E4 6>_<+%)88):6(D ;)6`ÿéôÇ *7#'66553533#3#535#3533#3#535#ój $$+c&$%%-p1$ÇSD6 1$_0P## ÿéð)7#3#3#535#535#'65533#3#535#53îREEO¯KAAVhDDT¹PAA<3& (-F\ YÿèóÏ6:>75#535#535#535#53533#33##3#33#"&''673535y //66..88==2244()  ? : ;$# v$fÿéòÐ'7&''6767&'3533533##5#'67#Ñ .3 S"#) ´ ,* ]))))RR;,ÿçßÎ 73353353#5#CB­˜ŒÂÂŽ³ ÿéóÉ 87'6553'#3773276767#"&55'75'75'6.pII !(* )B6#& (+F5 5@`:)  ÿëñÐ"736533#32667#"&55#'67#PoM  (,. QO¡† $  ŒAJ*f ÿêòÏ!73533#32667#"&55#'655#6)& :4#Ÿ00‡ ! Ž+J. *A+ÿéîO733##"''3255#53&'ª00   ——d O'  #  ÿéîa733##"''3255#53&'ª00   ——d a4  0  ÿéîÏ73533##"''32655#&'’88 ’7¢--‰ „ % $!ÿèðÌ 15;73#535#535#3#7'75#73#3##"''3255#535#735#&''ªª˜’’˜]$',6+&ke))  ¤¤4>>Q ÌJ  C6  M   ÿéó>733###'3255#53567#4—!df   mmm>    >ì¤ 7#5##53&'7ì°` A..A ÿèPÏ73''677&'67#53667#(    Ï,U)  #' 8& ÿéóÑ-1573673#3#3#535#'67##"''3255##535#35#ž-36!U"  Q   %%%%%À   Kd  ){!1¤ÿéóÏ 7373#&''67&'67#67#¬'    ! Ÿ0Q   &)_B)! æÌ 73#735#'3#735#‰]]77[[55Ì//ÿéáa 7#5##535#3#735#á__<3 2;YZ+#"XÿëóÏ (7&''6#3267#"&553#"''326£ # !!) 356*  4 \   Ï .0),BW m6 _ñÏ'737533#7'773673267#"&5'$$"2>i! !(   #¾HW%[$    kÿèñÏ"73&'73#3#"''3255##5##535#k=483  2;¯  _  H‚‚k} ”ÿéïÏ733#5##5##5335#35#35#35#¹$%$$$Ï,„EE†2 QQÿæïÇ$*CI7#5##5##5##53'65'3'65&'7&'373#&''67&'7#367ê"dK"!  W z/Z    4 & &<" Ç^NL\^NL\'' ''+ #  "     SÿèôÐ"&.26733#5367#'635#33535#3353##5##535#35#†= *…F:  $''7'^''7'}œœ‹RRRRRÐBB 8 $ % R R ' GÿéðÑ I73#53'3#735##5##5#53#67&'#"''32654''67''67&''6£B—B0zzTT{t9!j3    '26)* )! Ñ )( "(            XÿçñÏ /37;A7#5##53&'73#673#&'7#'67#5'675#35#35#35#7'6îl>9`' &?!)   %&WWWWWW ½)*   `    R F ' & h ]ÿèô 73#3##"''3255#&'''6xhh „9  6j  EÂ&t  p%* *% 5"QÿèõÐ48<@DH73673#33##&'#5##5'67#535#535#535#53'5#3533535335ƒ   (0'   ",,"",)8;Ð   %%8II58'ÿê{Ñ 1573#5##53&'3533#3#3#3#5##535#535#535#35#H(F.#&&##''"3#++###33Ñ ##6    SS   |$ÿîð`73#3#3#53'#735#67#ÌÌ ±;à=‹‹gO` 0 4 ÿîð^73#3#3#53&'#735#367#àà¶">Þ>!’’,9J^ 1 4 kÿèôÈ:AIMQ73#3#'67#'737#'67#'737#53#3#3325#"&5'37'#5##535#35#q8 ] ;  9 QJJJJJÈ'   M      _ _!1 fÿèöÐ,04:@DHLRX75#53533533#3#"''3267##5#3#5'67#77353355##655#35#35#35#'67&'”$$$$-  cm   1$ IIIIII  >¬  *    [U ) &  F % #     aÿèðÏ2LPTX\733#3'67#673267#"&55'675#'65533#3##'667#'67#537#735#33535#335Ÿ55@ .    +[$+  '  $)%#7#Ï    I]ÿêöÏ;JP733#3#53533#673265#"''67&'#'6553533&'73#67'675#'6¨**7ƒH"   >O  d4)   Ï##""%/  05," "*>   < : iÿòóÃ#'+/3735#535#53#3#3#73#735#73#735#3#735#73#735#i:778ƒ9::>Š** C++ `** C++ QKKQ´3  3 R4  4 xÿòòÇ 7#3#53#735#ñdez(CCǯÕ<^:qÿíóÐ #73353#5333#32767#"&5535#¢ w1t\ " ./]`Ð:.A@-$@+@lÿéïÐ473533533##5##5##5##53733#"''32765#'67#lƒZ'3")&$·10=F )5+]ÿèöÑ48<73&'73#3#53&'#367#3#32767#"&55#'67#735#35#n54&Ž$1)+s  2 ( MMMM½    (R" (1 #00 `ÿéôÐ $(048733#5'6367#35#33535#3353##5##535#35#9#| 82##5"W##5"pLLLLLÐE=# % & P P ' ‘ÿèõÈ#'735#53#3#7&'7''675#735#35#335™!G!! "(!##!tCCN! #p!€,,, ÿéÏ $*07&''63#3##"''3255#535#&'''6A % E''   //C  3 Ï   J  G<   ÿé…Ñ L73&'73#&''67&'763353#3#"''3255#67&'7''67##5367#00vJ    @G-8  + ,)½      11CI  2  PblíÒ!%)73&'73#3#3#3#5'65#5#5#<;PUNNNN[¿ S@@@@@Ñ  5    |ÿé÷Ð 7&''6&'3'67#°  $#a   LÐ,**+/ !*pÿéòÏ-73673#3#'67#535#73#3##5#535#536u Y ¥7:' "37<7__7{ÿéòÏ-73673#3#'67#535#73#3##5#535#536€  P ¥7;& #27<7__7~ÿóõÆ7#53##5'67&'3#´0l' 6Err´ ŠY%,%#/,+ƒšÿêóÏ73533##"''3255#&'š1  1 ›44ƒ   rÿéêÐ733#5#535#535#5367#'6›7 %__YY\5 ( Ð Š $$zÿõòÇ 7#53##5'67&'3#¯/n*7Bss´‹Z%'*".+*vÿêòÐ2973#53'3673#53&'3673#&''67'67#367¶/s0  |#E  ' ")0 Ð ( P       bëÏ573#"''3265#'67#'6'3#&'#5'67#535'2›A ) # # &$   &.!*Ï B'*    pëÏ773#"''3265#'67#'6'3#&'#5'67#535#'2žA  &  % &!  %.*Ï8 &       vëÏ873#"''3265#'67#'6'3#&'#5'67#535#'2—J  & ! ! &&  &1,Ï1 "        rÿòóÃ#'+/3735#535#53#3#3#73#735#73#735#3#735#73#735#r5335|566:(( ?(( [(( ?(( RKKR´3  3 R4  4  jòÐ,DJ73533#3#3#3#"''3265#'67#535#535#73#&''67&''667#-..'',>=  4   2((-ŒB    +Ç             xñÑ273'67#&''67#3267#"&553#"''325?3PE,  ¢2(% X Ñ +    2  ZóÑ ',:>BFJ73#'673#&''67&''6673733#3#7#77##7#37#3372OZzE      ·X fZ!Ñ            ÿñ|¾*73#67&''67'675&''675#`&   +6  (¾n,5  0  5A f ÿêyÏ!&+17'6733#7'5#'67#5367367#335&'1  ,  # / -& «  JA   O>2J R&B  ÿèÑ 5I7'6'6'&'&'&''67'67676767&'3733#&''67#q #HD  !  V (,   G-/3   'Ñ       ?    '2    ÿèƒÍ#'-3973673267#"'"&53#735#35#35#'33#'67&'% '(! /GG######.Wi#  6 Í   aF & ( 3 2;YZ+#" ÿì„Ï'+/39?EK73#33533533533#3#535#535'635#35#35#&'''67&''4'$KQ    p       F  B Ï  &&&&&&&** p*****B  ÿè€Ê %+73#735#3353353#735#35#35#&'''6pp  Vdd<<<<<<3 $  ÊB =jK++!   fíÑ%8K73#35#535#535#533#5##535673767&''67&'&''67&'764$$–!!!!$6¶ $     .    ¤  B!!>  (      ŸðÓ73#3#5#53&'h¶›®cÓsÿêôÎ_e73&'73673#3#3#535#535#3'33#73265#"''67&'#7#"''3255'75#535'67&'v"1**4{4**3/ %$       !H  ¶      >   "       O÷Ï=735673#3#35335#533#335#535#535#533#&'#'67#  ))))5-,,.0&&&&(8),_+ *}G   4 +  J   ÿé†Ë %+17QX73#735#35#35#73#735#35#35#&'''67'67&'3673#&''67&'67#67#33+22'   B  #  [!A  & @ "ËbE))EbE))      $      añÏ #>BFJNTZ`flr73#53&'&''67'677677'7''67'67676767''3#3#3#735#'&'7&''&'7&'''67'6ƒN&           s====<<#   œ    œ   £ ˜ Ï #                         ÿè†Ï"(.7373#3533##"''32655#'67#&'''66; !!  - \  8 ­"$,,I D$]   gôÔ173'67#&''67#3267#"&553#"''325>6R H-   ¡2!,$ Y Ô 1$ -  @"  ÿéŒÊ%+DK7#5##53#5##53'6673'66&'7&'3673#&''67&'7#367Hv*  ?  , G a'@  ( 2 ÊXJJXXJJX1% #,1& #   %     |ëÏ733673#5##53&'733#735#u  ,³. :‰‰eeÏ ,, ! kñÍ'9P733#"&55#'6653#53#3#3#''#3'6677#535#'667#53&''67&'Ö $ YCjl50  ! $ \ BW    Í    MZ   7?       OÿçóÐ-73673#3#'67#535#73#3##5#535#536X  !!!r&& ¤8<% $18<8__8EÿèñÏ6:>73533#33##3#33#"&''675#535#535#535#3535W>CC77::.. ::BB99>R%%%¾$#  ' =#$ÿèøÇ!%73#3267#"&55#'67#735#35#35#¢F  %  Ç•/ 2.#jEF;ÿéôÏ:@F73673#3#3#&'#3#'67#53655#5'67#5367#5367#&'#&'G:MQPVm  3GM: 06?* !.#*6 DB#"¾   "  T ; ÿéŸÐ,173#&''67&'767#53&'3353#5#'66735#TA , &  `8@C  @@Ð     kv/ ÿé¡Ñ 157#5##53&'735#53533#3#3#3#5##535#535#35# g;D1**''22==2Q2??1QQ¿"" H L K_ ÿ퇼73#3#"''32765#'667#uB=  )( ¼d! 9Q+@SOïÎ 73#7&'''6'66{>`$ !} ;p BHÎC6 0 ÿèVÏ776553'67'56OÏy EE<5  % • ÿë™Î %733#3#533#"''3265''67&'B))4r*  ! [  Î"` K $  ÿèðR7#53&''677&67#4 ®%#0:*.=#"8&r?"  YÿèîÐ773533533##5##5##5##536733#"''32765#'67#b++Œf *5 %3'·10=  F (& +[ÿêòÏ 4;73#53&'3&'73673#3673#&''67&'67#367¬:‰99% &“/R  , ! &<Ï  L        [ÿéóÐ $(733#3#53533#"''3255##535#35# 33@˜C  TTTTTÐ--$q  /‰&:ŸÿëîÐ 73#5##53635#35#½%+ ++++ÐÂÂZ7‡>"TßÐ 73#3#53635#35#i^¡ª½@1ŽŽ––Ð/ .i ' G ÿéó[ 73533#&''275#735#335&'#"TQ Sp6/TAAU?2E1  -bÿéöÐ97&'3733#6767673265#"&5'675#'67#Ê LZ8  ! $   Ð +44#           xm3 1b[ÿèôÉ$73#735#333#&''67#5367#335“PP,,5b;$ '-- 28/B%ÉG%E2+-"!bÿôòÎ .7'2'6'&''&'3#3#535#535'2ä 4J=9 1    s >>7~3>>8Î    &#!!"nÿéóÏ 4A73#5335#&''67&'763673267#"&5'33#67'œ9v'PP;        A&& Ï ^^M<    G"   U*  RÿèóÑ<@HLPTX73#3&'73673#33##&'#5##5'67#535#'6553&'5##5#35#53533535335®9z'"     =%1Ñ   0@@* 2, 4<[U. ÿêaÃ7#"''3255'67567#53T   *š(6 .-}"   7 - WWWW½   (S  %0 "2/bÿéíÏ'+/7#53&'73675##5#35335#5##535#35#í‹! )**) WWWWW³XX  #1ee#3 ÿíõÏ #73#'6333265##"&5477#·/3 71  & Ï   V   A )ðË!'-39?73#3#3#535#535#735#&'735'6'67&''&'7&'"¼URRfÞdNNS@@!CB" x€ 4‹  ËB    "  "" `        RÿèòË %+17OV73#735#35#35#73#735#35#35#&'''67'67&'373#&''67&'67#67#XBB =DD!!!!!!/   V  ) x- \ - 6 '"U 3ËcG ( ( FcG ( (            {ÿéóÆ73#&'3#5##535'67#35#ƒk) (9# $/99Æ 5ij3(©7‚ÿéôÏ'/373533#3#535#3#735#3673#53&'#5##535#„.//(d).aa== rZ>>>à   *1$ (= =! ÿé~Ï'/373533#3#535#3#735#3673#53&'#5##535#.//(d).aa== rZ>>>à   *1$ (= =!OÿìôÎ+05;733#3267#"&55#'67##5367#'6367#335&'†9 .-    96 B 0 !%8/  Î I@ F< 1 U  Z%A jÿéõÒ1773'67#&'&''63533##"''32655#&'œB] S7  "!^   ^#  Ò A4  ^8 3 $ÿèò’ !-73#735#35#3267#"&5536'33#7'&²²ŠŠŠŠ§ %+  * %BB<(# ’O/+-   >   RÿéõÏ,08Q73533533533533#3265#"&55##5#'67#5##5##5#"''3255##5##5353R  3XVtŠ   1¶   ** )),7  !HH;M`ÿéðÎ8<@F73533533##5##5#3#3#"''3267#&''67#'67#735#35#33#h"##" qH_   #  '  KKKK3D GA.  + ) F$RÿéðÏ6:>BH735#53533533#3#3#"''3267#&''67#'67#75#35#35#33#g$$&''Ng   '   )  N&UUUUD733533#3#3#3#&'#5'67#535#535#53&'#53367#7'6'&'_J* ,\QQ`G+$ ,2'4 4E]OOX.(FCVt ”   $$$   '%     ;  gÿêõÐ&,2:P7367&''667367&''66''67'6#5##53533#&'#5'67#‰   @    U  B  B]25-" !-Ð    &    8""+86aÿêõÏ(.4<R7367&''667367&''66''67'6#5##53533#&'#5'67#…   B    X  D  Ca480$ #/Ï    &     8""+96`ÿéõÎ17=73#3#35335#533#335#535#535#533#5356&'''6ˆ  ) J0Î  99BUR "“‡¢  (óÑ &AEIMQW]ciou73#53&'&''67'67676767'7''67'6767767''3#3#3#735#'&'7&''&'7&'''67'6€P!           s<<<<=="  ¡  ž¡§˜Ñ  @  %0  % /   ,    _ÿèóÈ"&7#53#3#7'7&''75#53'35#35#35#œ,l-55!  6A=33GG!!4""†BBK!   #K'~'''VÿèõÍ733#&'#67'5#537'6okA4 ? X!ÍZ@!M`  kT *  ÿòõÐ  &7&''63#3673#7&'&'z/< 84,: L'| 9Ía*Ð)..('e,+."i""RÿõòÆ7#53##5'67&'3#žC•;+CZšš´ Šf (%".,*€ 9ôÑ573'67#&''67#3267#"&553#"''326<6* @'  £1 *# Y   Ñ;% I    Nc9  ÿóÐ7676767&'7&''67'67( '/$ +4"lT1 % #5&@>hÿòêµ 735#53#5#535#peh}mmej8ÃAgÿíôÎ "73353#5333#3267#"&5535#Ÿ#~"8za "*  4/agÎ9/A@.#@+A,ÞÈ"&*.2767#533#"''3255##5##53&'35#35#35#35#[“¼$G  @AHAAU@@UAAU@@²  W  l)/ AöÍ(73673#&'#5'67#53&'735'2Ñ %-  /R&7 ;'$: 8"P) &+YÍ'  "+) &_ÿèíÇ 07#"''3255##536735#&'3#3#5#53&'í  i; i  # <6H %ÇÄ  k‹ßC1  5 #4 ’ÿëõÏ &73&'73#67&'7''67'67676•&$\?   %   ± O,$  -+'WÿéøÒ $(:?73#3#3#3#5'673&'5#5#5#3&''67&'#367°4700008†  $)))))~ ',$  Ñ A    0     LÿèôÏ &*.26:NRX^73#5'675#537367;267##"&53#735#33535#3353533533#3#535#35#'67&'..'  % K‰‰));*e));*}#-$$+§+#5-- !#"H  Ï>     A' # ( !   ,óÒ %AEIMQW]ciou73#53&'&''67'6776767'7''67'67676767''3#3#3#735#'&'7&''&'7&'''67'6ƒP"           s<<<<==" ¡  ž¡§˜Ò  @ $/  $ -   +       QÿéïÐ(7&''6767&'3533533##5#'67#É28"$ V'""(2 (´  -+ ]) ))RR:,ÿênÎ73#3#'67#535#535'6e $##%& %&""-Î & 5! *("TÿèõÏ073673#&'#5'67#33&'3#3#"''3267#7#X7J,! U  +C J Q˜d[ \ µ    J0 'VÿèîÐ573533533##5##5##5##536533#"''3265#'67#^!(""(!m $D  12 ,!·10=  H/7*HÿèðÇ *7#'66553533#3#535#3533#3#535#îy )**4v0)*,,3x3*ÇSE5 2$_3L""IÿèóÏ48<73533#33##3#33#"&''675#535#535#535#3535\=DD6699.. 44<<33=P$$$¾$#& =#$EÿéíÐ$(,7&'73#'65535##"''3255##535#35#ž8xdds  BBBBB¹  <=9 .;Z*;i  -‚"2UÿïñÏ!'7&'73#3#535#53635#'6'&'ƒ Y ,.0œ5)I#=  `  Ï  ‹‹´‹/'&''*$PÿéöÏ&9?73673#3#3#&'#'67#537#537#3#3#'67#535#&'a0CGFK` ;  &#-O#-2C7 !!FM((M&&U„„ še] c "É #;;# )  %œÿêôÌ"(7673267#"''67&''7&'37&'ð,       — .#"# 0%?6IÿèöÏ9=A73673#&'#'67#3533#3673#3#5##5'67#535#35#35#]- Q( ! ( '>QO "%28OOOO¶    ] L  W2IÿéòÐ/KOSW[733#3'67#673267#"&55'75#'65533#3##'3267#'67#5367#735#33535#335“AAL =  ' $:k0? 1+ #.),G,Ð    J?. 07TJ=   & !  \ôÐ2EIM73#&''67&''667#'3533533##5##5#3##'3265#'63#735#¡@     &”S  H  77Ð       5 ! &  ÿëÐ?737#535#53533#3673#367#"''3255'67567#'67*@-##  #    m       ÿû‡Ð %7&''63#'767'&'&'L( DDShA    Ð  %Y ++,!N!!€ÿèõÏ"73#&'#'67&''67#6®@   & ¥<.  6?$%" ÿé”Î$(9=A73#&'#5'67#5367'2&'#35##"''3255##53#735#A J %04& ((P   Q 77Î  # A  'M 8Pa+  ÿèÑ2:>73673#3#3#3673#53&'735#535#535#53&'#5##535#/1++55‚ 66--4cEEEÑ        A A& ÿè“É)-15:73#3#3#3#3##5#535#53&'#535#535#735#33533537#5..54==66.9007$< /' 4.0./ÿóóÏ7&'3#3#3#535#535#º  _%""(f+&&'Ï &7<<7ÿÿK¼ 7##55#35K((¼£½J9977 ÿéò„#'+/37#5#3#3#3##5#535#535#535##535#33535#335íOHHKKhhiiKKHHP+99M9†99M9„$ <  < $I ÿîðR 7#55#353#Ô§“€€¯ßßRHH  &E¼ 7#5##55#35E"¼±¸J9966 RÿèôÐ-15;AEIMSY75#53533533#3#"''3267##5#3#5'67#77353355##655#35#35#35#'67&'†++**3   # q{  # 6* WWWWWW! F¬  *   [V ) &  E % $     SÿéòÉ HLPTX7#'6553533533##5##5#3#3#"''3255#67&'7&''675##535#735#33535#335ò{&&a)4 "   -''?'ÉSF4 6?`@C 2FU' % RÿèñÈ#AGKO73#3#5##5##535#3#'3#3#73#3'73#3#3#3##5'65##5#35#d€6C10C8P&&B$$$$B&&>4511119u 9())))È *--* %      I     ÿùjÐ!73533#3#67&'7&''67#535###  #«%%4/ "$ -4UÿêõÐ%+/3733#3267#"&55#'667#5'6367#35#335= +&   7 "1 0  3"Ð M:  @=E  C'''iõÏ 7'67&'&''67&'76Q) %q'% %' /0 ?*"F 8#Ï       Fÿé«Î#'+73533#3#3##5#535#535#35#33535#335Q !! ))++  - ¹_--_7;SÿèôÐ8<@DHLP73533533#3#3#33##"''3255##5#53535#535#535#35#35#35#33535#35#Z$$''+G:   ^7B&$7$$$$$$6(^$$6((ÀF  %%F-P6ÿñïh 7#55#353#Ó¦’~~¯ßßhVV#0XÿêíÈ73#735#373#"''3267#'67#vppJJ$H  7 6 , !ÈQ-^O6H8SÿéìÏ !73#'3'6573#'&'7&'''6Ùe#!2B]ÏæãtD+ (:oÖ¤""%!!"% $ ^ÿéóÆ 73#3#5##535'67#35#7&'h„72O0 -8OO?ÆZjj;(©6_fÿêóÏ/73533#3#5##535#33##"''3255#53567#l399;^73U@@  :: <¹$$:% ! oÿêôÏ/733#3#5##535#533567#533##"''3255#¦007Z60078 :Q ::  8Ï''„ ' #¤ÿôôÏ73533#3#535#¤FˆGGnn]ÿé÷Ñ $(7'667&'&'3'67##53#=#¦#  "% "#  'r VzU²"!    p SR %%ÿéxÐ&,73533#3#"''3255##5'675##535#&'(+++   %(O  ·4 “E$+-?Qh tÿéõÏ,73533#3#"''3255#&'#5'675##535#ƒ*...    "'*¶5  (0!IH$-)>P[ÿêóÏ 2973#53&'3&'73673#&'67#5373#&''67#6­8ƒ73"$Š4 !*P  3 'C*Ï  L  ^  >  žÿèõÏ#5'67#53533#&'5'Õ u)"/>1176 "cÿèõÐ(7673#3655335#535#53#&''67#n $,3* -, + -°  'rr'{-.+&JÿéòÎ%+1773673#3#3#535#535#7&'&'''674''4'^P  '?55D—?559&  n  m ]  ¤:  ¦ ?ÿéòÎ%+1773673#3#3#535#535#7&'&'''674''4'UV )C88H D::=)  p t a  ¤: ¦  ^ÿèôÅ !%)-3973##7#53737337#3#67#3#735#35#35#'67&'ì w1zzTTTTTT  GÅ dG ( (      VÿèôÅ "&*.4:73##7#53737337#3#67#3#735#35#35#'67&'ë |   !4YYYYYY  JÅ  dG ( (      NÿéõÈ  $(;@73#735#35#3#7#5'75#35#35#75#7#53&''67&67#eWWWW(£P!!=G      ÈF* ( &QZ46&)     `ÿéôÐ 57&'7'6'33#5##533#735#3533#&'#5'67#x n  1>i>%]]77,=@4  0Ð    %/0!68  #<="ŠÿéõÑ-1573673#3#3#535#'67##"''3255##535#35#˜07:&\%  U   )))))À   Ka  *{!1QÿèõÐ-39?EK73'67#&'&''63533#&''67#7&'&'''67&''&'x&81    ;   $8    c  YÐ M> 49    +44/')5B  ™  QÿéðÏ $(A73&'73#3#3#3#5'65#5#5#3353#"''3255##5##r"791111=‰ ;(((((;>  ;Í  @    ##8 %""> [ÿòóÃ#'+/3735#535#53#3#3#73#735#73#735#3#735#73#735#[A>>?‘@AAE˜--L--i--L--PLLP´3  3 R4  4 ›ÿéûÆ!%73#3267#"&55#'67#735#35#35#­@     ÆŽ6  :;.dAB ÿéƒÑ?767&'3#3533#"''3255##5##5'67#5367'67&'"   ?F (   # Ê     ;  &YYGC  ÿç™Ñ-NT733#3'67#73267#"&55'75#'655335'673673##"''3255#7&'G::> +  /, 1*.  ,Ñ     F9. .5P… "  *   ÿé’Î17=73#3#35335#533#335#535#535#533#5356&'''6,  ' ˆ C(Î  99BUR !“‡£ ˆòÏ733#3#53533vTThä(,Ï))’ñÏ733#3#53533zZZdã.+Ï $$HîÓ 73#53&'3#735##5##5aÜe?¢¢}}­¸Ó )* %(( ÿç’Ñ!>DJP767'7&''667'7&''6&''67&5'6767'7'6'63'6>   "&3    " !%!  ' %(5 5,#N IÑ          4 ( ÿé‡Ð,048<73&'73#3#53&'#37#3#3#7'75#535#735#33535#335+2z.#&g*..03?3--*,E,½   (J   -, ÿèzÐ"7367&'#"''3265'3'67#C    4/ ÐG  Z ŠH*4 ÿè‰Ð"7367&'#"''3265'3'67#J   5.  ÐE Y ŠH$8IÿêôÐ 873#'6#"''32767#5327667##"&55'753753}gr #w   " 6 Ð  )I GBD  F+% )$^ÿíöÏ 873#'6#"''32767#53325267##"&55'753753‰Zd o   B Ï$F "IEH  L#-(ÿìöÐ 873#'6#"''3265#53327667##"&55'753753«=C O   '   Ð )CJDM  N/)?ÿë•Í73#&'#5'67#535'6Š      %Í( d`",$>ÿïðÍ !'7&'7'63#3#535#35#'6'&'p  hnœ37²=+>J q  Í   ‹‹‹‹1 )'&(*%ÿé•Ð6:>BFJ73673#33##&'#5##5'67#535#535#535#53&'5#35335353355  *# #   !! 14Ï   #% 1OO2 5$”ÿèóÏ+177673&5#"''67&''7''7&537&'å$))     ¢  1$    53  ÿéóÂ73#3#"'#5##535#3255d)$ #);Â"o "’u‡"4` XNÿéñÏ&.26:>73&'73#676767&'7''67'67##5##535#33535#35#NICS  #$$& =D8•a&&:'a&&:''º   %     Zff$6{ÿêôÏ %+17&''63#3##"''3255#535#'67&'±  "4,, -- J Ï%&#D  A8 =ÿçöÐ"&273#3#&'#'67#537#53635#35#3533##5#‰H>U0 )+ &-:2'^^^^"(("ÐT '&T -2n%%BÿéõÏ,08Q73533533533533#3265#"&55##5#'67#5##5##5#"''3255##5##5353B 5b_•   %$7¶  ++ )),8  #II>( !@ ;ÿéÎ7'6'67#c # Î.a  ) x€ÿèõÈ $(735#53#3#27&'7&''75#735#35#335Š' R''  )11'..(tCCN! #p!€,,,—ÿîõÐ %73#'6333265##"&5477#´4: <%    $"Ð  "B   AŠÿèõÉ&7#3#3#3#67&'#7'5#535ë@9999G(  '  É  DM ZlBÿêƒÅ73#3#"''3267#735#H9%+   + "&ÅK)F!-M&5ÿû¢Ð %7&''63#'767'&'&'p $;;FX7   Ð  %Z **+ O!!ŒÿéðÐ"(733#"''3255##5335#35#'&'7'6¶%  4#4444  R  Ð=“  ;ª0Lu    ?ÿèñÌ 37;7'66553'#33533#3673#3#5##5'67#535#5#5#j iiY - ::%8)W:::–/E7 2$`6%#  V EUDÿëôÎ&EK73#&'&''675'67#535'2367&'#"''3255'67'&'Ú !KK* ", ''. 3$ +@KA    " ) Î  s+      GÿéóÏ E733533#537'6'&'3673#3#3#&'#5'67#535#535#53&'‚6 2Z n  ( ##D<ÿèìÈ#CHLP73#3#5##5##535#3#'3#3#'3#3&'73#3#3#3##5'65#5#35#RŽ>J76I=W**I((I**I)) ":;6666?‚ A.0000È *--* %     J     GÿéòË %+17OU73#735#35#35#73#735#35#35#&'''67'67&'373#&''67'67#367PFF""""""AEE!!!!!!2   Y  ) ~3a&  "< -. '<  ËcG ( ( FcG ( (              GÿéôÐ!048VZ`dj733533##5##5#53##535#35#7#"''3255#535#5#3533#3#&'#5'67#535#35#&'735'6l6**6%%#7''''— =,,,,Q300-(   /3 (  Ð  <‚¾ $¬ n< 3  !) 3-   MÿéóÐ!048W[aek733533##5##5#53##535#35#7#"''3255#535#5#3533#3#&'#5'67#535#35#&'735'6t4''4''"4""""   8((((L-..**    *- &  Ð  ;ƒ¾  #¬ o;  2  '  2,!ðÈ!*.7367&'#"''325567#3'67#3#4—  4  wX: 5BÄÄÈ   "9H N 6)S nóÆ73#3#3#535335#ÒaOOiæ-)]Æ&&4€ÿçõÏ+/7367&''66'''665367&''´ $ " 4 &   = Ï   + ,y )4  " S)ÿç‚Ï-17367&''676''367&''676''C  %  " + #  ! Ï  ,,   )TÿêõÐ'-3;Q7367&''667367&''66''67'6#5##53533#&'#5'67#z   I   `  K In<@6&! %4Ð    &     8"#,<8 bÿéòÎ #'<LPTZ7'2'6'&''&'3#735#3353353533##"''3255#'#67'7''535353&'ã 6NA. (    ††'*"   "3  !!!(Î    -3@  <>$ n   ÿèïS73'73#&'#'67#536t/  $X@ HO AQZR  01  )WÖÈ 73#735#35#35#)­­………………ÈqO-,NÿéíÐ$(,7&'73#'65535##"''3255##535#35#¡5q]]m  =====¹  <<: 09Z*;i  -‚"2}ÿéóÏ06<7'6&'#"''3255'67'67676767&''67&'Þ #* %(       "8 Q  Ï QA  ; & 4! 4ÿéóÎ#)-17;Oj733#"''3255##5#'655'667#35#33535#73573#"''3267#'67#3533#3##5#535#'6[   -P    (( Η )$ )1;  .Gp9 !, "A 11 ZÿêóË +27&'7'6'&'3673#&''67&'67#367¥J ]  .Q. ' '<Ë( N &  " ÿëyÅ %*.733##3#5##5'67#537#5365#3353535#X 6@(  !,&((Å+, Z C + })]ëÆ'73#3#3#535#535#73#3#3#535#535#c*&&)f+##'qb)%%)g+##&Æÿè÷[%+73673267#"&''677&'''67&'LA+0I"&  '$ !%  < ±F.%)   H  " oìÈ'73#3#3#535#535#73#3#3#535#535#c)%%(f+##'qc)%%(f+##'ȈÿéóÏ 73533#3#67&'7''67#535#$$$,3 #($,$«$$46 $+ 34ÿìñE73#3#3'73#535#535#Í\TT3  ÝeTT^E ”ÿêõÐ'+73&''67&''667##5##535#°.      1&&&Ð "       W` aA/ÿíðI73#3#3&'73#535#535#Ì\OO()àeOO\I IÿêôÍ17=73#35335#533#335#535#535#533#535673&'''6k, ¤ 6 . ƒ>>MK\ ‰ f ^ÿèòË %+17OU73#735#35#35#73#735#35#35#&'''67'67&'373#&''67'7#67#c??8@@-  O  ( q*V  1 #)!P -ËcG ( ( FcG ( (           ÿêð773#3#3#535#535#&'#ÔaU &ßeTT_›7  *ÿìð;73#3#3&'73#535#535#ÔaVV2 àfTT_;   ÿç{Ï-73673#3#'67#535#73#3##5#535#536  Q ¤8<% #28<8__8kÿêëÅ ,73#735#33535#33533#"''3267#'67#536}kk,E,6: ' - (%(Åa9?.@"*@2 ÿçóH 7#'67#53##¥B7 1Aæ:5? 0KqÿéóÅ2733'67#3#33#"&''6735#53&'767#~h& ,, "  6B  OÅ +3 !C h  ,QÑÒ 73#53635#35#_h¥%~~~~Ò gg 7AÿórÐ 73#5##53635#35#8/88888е »^<‰;+ÿè×q 73#5##53635#35#qW„=.„„„„q s s2B-]ÑÐ 73#53635#35#i\¤4%}}}}Ð ^^ /8ÿïðN735#53#3#3#535##R^Ñ_SSgàeR'-iÑÐ 73#53635#35#g]¤2$ÐTT +1)ÿéÕg 73#5##53635#35#`i†- ††††gg h,9`ÿèõÑ#'373#3#&'#'67#5367#53635#35#3533##5#˜=6K"   +'LLLL& &Ñ U    U -3k''ÿÿSÎ 73#5##5365#5#-Î ¤ ®Q22D33 =ÿêñÐ#'=JPV\b73#3#'6553&'5##5#35#3353353267#"&5536'33#67'&'''67&''&'¦=.+‡J.    a##m \  R   Ð 0 A1 3:Y2 '    1      JÿêòÐ#'>KQW]c73#3#'6553&'5##5#35#3353353265#"&5536'33#67'&'''67&''&'¯8*'{B*  Y  g  U  N  Ð 0 A1 3;Y2 &   1      WÿêòÐ7;?CGKQW]c73265#"&55#3#67'5#'6553&'73#3#6'5##5#35#335335&'''67&''&'ß  # >4'$$ '  P I b   6C @2 2 5B] *" .   *$ L22> RÿéõË 59=AY_73#735#'3#735##367#533#7#5'75#'665535#35#75#73#&''67&''667#«@@Y??|{%"5   -4%    Ë--)%  >J 4( #GR*+ g!      &[ÿéóÍ73673#3#5##5'67#35#g.JOY@  &).@@ s_&/ƒ?oÿéîÈ&*7#"''3255#&''67##5347#53#'35#î  #   #8+d')>>ed  M  %j| NN '*\ÿèòÏ%+177&'3673#3#3#535#535#'67&''4''4'“  D  &5//7ƒ7//5  u  Ï$p  ÿèfÑ73&'73&'#5'67#!    *?±   pc ? ÿéTÑ73&'73&'#5'67#  .° )  f\ @zÿéëÏ 73#5#533533×]š±¢ÄÄnÿõòÆ7#53##5'67&'3#«6{/ $8Mƒƒµ ˆa&+##/,+‚fÿéôÈ 73#735#35#3#3##5#535#wnnGGGG{5====2ÈZ49733ÿéiÐ73#&'#5'67#535'6`    #',Ð&  mj!#/  ÿçôI73#&'#5'67#535'2Ù (0fL". 9'#: 1$PeP]I/+  \ÿçõÑ"@FLR767&'7&''667'7''6'67&'7&''674''6'6'63'6–  +0;  C   ( '*) <+ +-!= =2'X SÑ           2 (‚ÿêóÐ7'673#&'#5'67#53±2* '*$ '.°  *6+ij+#3\ÿçòÏ#'+/5;73533533#3#3#535#535#35#35#33535#335'67&'i$%A5{3>#-$$ 3"U 3"E $F ¹]]`;*   \ÿíóÏ,048<73&'73#3#53&'#7#3#3#3#535#535#735#33535#335e;9#“#X9-~6;;A—C::5""5#X""5#¼    M-, OÿçôÏ #>K73533533#735#33533535#335335#3#3#67'5#'6655&'76d')‡'b'|qq~Y   }   0 ÁI,+(  - 6# 6K  (  sÿçôÏ#'-373533#3#535#735#3353#735#35#35#'67&'+,,77+,XllFFFFFF  5à +   D_C ' ' !      Uÿé÷Ò!%+17=EIM733#5'667#35#33535#335'67&''4'7&'#5##535#35#Š:$… %72%%8'_%%8'g YW  OOOOOÒJ; &       PP %  ÿé[Ð7'673#&'#5'67#53. #    ­( me%.wïÐ73#3#53&'#53&'367#~Y&>Þ=$Y 9PÐ   A bÿéôÏ1767&'7&''63#3#&''67#5365#'6œ -2M*;5) ) 5 1 16 Ï! ! )! %  ]ÿèøÑ#'+737#"''3255'67#5353635#35#35#›6  (?9&VBBBBBBÑc  ;  %"!s 3<: ÿè€Ñ .273&'73#3673#53&'#53#67'5#'66735#$ )c nX  44º   f::,  ;!  ,rÿéøÑ 5973&'73#3673#53&'3#3267#"&55#'6765#735#†$ )c nX   44º   ,:2  8   ÿè}Ñ,0473'73#3#53&'#367##53#67'5#'6'35#35#()o)]  ::::º    wNN! / Q.xÿé÷Ñ37;73'73#3#53&'#37##53#3267#"&55#'676'35#35#ˆ()o)^   ::::º   wNN#  )  @.ÿëæ~73653#"''3267#'67#OcO4%GLe  R(7'6 @ÿçðy73#3##5#535#Ç[ggeeXy&FF&ÿñî~73#3#5#53&'‡]¤›¯!d~ M` ÿéï€73#3##5#'67#535#5#!Ä,66L3 +36&„J€)HH2%))))ÿìò‚ 7#3#53#735#ç¶ÁÕ;qqII‚p–)Cÿêñ“%+73533#3#535#3533##"''32655#&'!VRRfâhV“(( “% † 9& #  !eâÏ7335#53353353#353#!CO;9MBÁ‹!+##-!)hÿèõÉ'7#3#3#3#67&'#67'5#535êWNNMM`7   2É   EN Zl eÿéòÐ!048W[aek733533##5##5#53##535#35#7#"''3255#535#5#3533#3#&'#5'67#535#35#&'735'6ƒ,, -z   0E'&&##   "'  "  Ð  ;ƒ¾ ! #­ p; !  2 " 2 .   aÿê¦Ï73533#&'#5'67#h  Ÿ00 mf '3]ÿèóÏ6:>735#535#535#535#53533#33##3#33#"&''673535|..55--77;;1 122'(  >: ;$# w$jÿêðÄ%+57367&'#"''3255'67567#&''3353#5#~a   J btÄ  $ $ 6&  ¡Yÿê£Ï73533#&'#5'67#`   ¡..  fl&/hÿéõÑ,067#'733#67&'#"''3255'675#53'37&'À@F&2       > 6   5 W( &Ï =,     L* 86  3 $&ÿéõÏ(733#3#5353333#33#"&''673¹""%e ""    Ï!">>+ B ƒÿèõÑ 57&''6'&''633#33#"&''673Ñ  ,      Ñ   )1  +7!- "F bÿéòÎ +/3773353353#3&'73#3#3#3##5'6#35#35#n$"#)-''''0e7"""""Â''-    i  %& ÿìÎ :7'2'6'&''&'3#3#753#5'53675#535#'6t ,>3. "   >#++&" --Î     ,=  1*0 hÿèôÐ #)AG73673#735#&''67'7&'''63&''67&''667#j"F€\\F      2 9 $  &1 ¾ T4     6        "  ÿéèV'-377'7&'#"''3255'67'67672&'''6¦(4Y;  %'( #T $ M       1   aÿçïÇ'8KO73'767#533'67##"''3255'67##"''3255##5'#5'673&'35#i5  Uo/   & ,…   \T = '      .f  Ohz  %%  3 XÿçôÏ #<I73533533#735#33533535#335335#3#3#7'5#'655&'76h&'ƒ&_&xmmzWy   .  ÁI,+(  - 7% $7L  ' ƒÿêôÏ28>D733533#3#3#3#&''67#537#535#53&'#53367#7'6'&'¨ )&'/'  " %*$$' 1I   Ï555   % G ÿìXÌ!'-767'7''67'67676&'#'674'C     )&±># /+k\ÿêõÏOSY73533#3&533#673755#"''67&'#3#3#3#67'75#535#535#535#535#75#7&'f'#"     '0%# X  ·!<'/ ) *9 –pC  ÿþsÏ767'67'67676'6` #'1 )36§:  0)o  lÿéçÐ733#5#535#535#5367#'6—; 'gg__g= , Њ ## ZÿæöÆ#'-373#3#&''67&'767#535#35#3353655#335k…:351 1( #  248 3R 3 Æa  a>? [ÿæôÎ473#&'#5'67#535'2#533#"''3267#7#'6Û ;/  (5,6]   ,Î (( ‚2 &.hÿéõÎ673#&'#5'67#535#'2#533#"''3267#7#'65à 4# #66"b   #&#!Î)) ‚4 2 )kÿéñÈ 73#735#35#3#3##5#535#{iiCCCCu299::0ÈZ49733bÿêôÎ17=73&''67''667#3533##"''3255#'67&'= " &# "   1'533  5Y  Î     _8  4 !  RÿèïÏ'-735#535#53533#3#3##5##5'66&'a://779900@ŽyE.))%"  | M<>O(* #  eÿìöÈ!%)-173#3#3267#"&55##535#735#35#33535#335mn.77 #5-JJ ##6%[##6%È8_   k`=^ÿéïÐ *.27#5##53&'7#5'673#3#5##5367#35#35#ïd;5 "R!"(((((¸")  Šc$  ES# lÿïòÐ #'+/?73533533#735#33533535#3353353#3#735#3673#53&'t"#x"U"j€€rrNN$†!ÀO/1, .$   ÿæõX$*73'67#&''67#'6'&''6|X )9 6  A H5"%X .'2      RóÐ%+1773&'73673#3#3#535#535#'67&'7&''&'4 0 6]WWgßeRR[ ‚O  cº     6        ÿèeÏ &7&'7'63#3#3#'67#537#535#%@  >S"$ ! Ï  /$ ÿèbÏ '7&'7'63#3#3#'67#5365#535#"@ :L!$Ï  .$ dñÑ.4:73673#3#3#&'7#'67#535#535#53&'&'7&'N 7 9]UUg   › gQQZ7) = Ñ    F    …ÿéôÍ 7&'''63#"''32765#'67#Ï  R    Í4 42 1h  BV"L‚ÿêîÎ73#"''3267#'6##535#¤B  8 1&Δ.#w 0WfF5„ÿèõÌ#7'673533#3#&''67#535£ ##)!  # # (* $(**'453"03+ÿè×f 73#5##53635#35#zQ†E8††††fk k 0; ÿéõÏ 0J73533#3#535#3533#7'75#73533#3#535##53#3267#"&55#'6%##)f*% :5p)/;6# À6 D $/   ÿéƒË '+773#735#3353353#3#67'5'67#735#67&'ll   [qqh9   BB'  Ë:6 3   )   ÿé‹Ï$=EIO73533#3#535#3'67#3#3#535#3#3##"''3255#535##53#=#7&'200*g*2x e P2r-" ~  ((]08Å   #    " "  A @@   )ÿé×> 7#5##535#35#׆††††>U U- ÿé‰Ç73#7#5'675#35#35#75#{ $* &,,,,,,Ç83Ž R Z ÿêðw7#5'75#53#'35#35#5#î*œ%Í#yggggggXQ?4/ uÿñõÊ733#3#53533¹'')€ÊGnŸŸrÿèôÏ#7#5#'667##537333267#"&5í#0  ¤6$FHD?&8++GV tÿé÷Ï7367&''66''6® # - $Ï ?%&<8*S1#mÿèõÏ $(,73##"''3255##5#53535335#33535#35#ç  H -,,H,³q/  +HHq8'''`'''uÿïòÄ73#3#3#535335#‚o***+}2ÄDX}}¯ kÿìöÑ#)/CI73#53'3673#53&'3#735#35#&'7&''33325267##"&5''6²/q- # jjFFFF*;  F     Ñ   .H, )"       # kÿêøÒ LPT73&'73#'67&'3533533#3#3#67&'7'5'67#535#535#5#35#t46},  :E/  +  .#J¾       9 &   &   rÿéóÎ #'<LPTZ7'2'6'&''&'3#735#3353353533##"''3255#'#7&'7''535353&'æ 1F:(  "{{#&  / &Î    ,4B  >=% n   cÿéôÐ 1FLR7&'''667'7&''63#"''3255'675#'3#"''3255'675#&''&'Ç '!   !&?  -F?  -]5Ð & ! ,d   &d   &    ÿéíV73#7#5'75#35#35#75#&´$& $$kkkkkkV:> " & ÿêðX7#5'75#53#'35#35#5#î'' Í zffffff@;1 $ #  ÿé^Æ73#7#5'75#35#35#675# Q    Æ€:3‘""T"[! gÿéñÐ #)/7;?CT7#5##53&'7&''33265#"&57&'''63#53535#35#35#3##"''3255#î^7     O T  s ‰V|2   7½         '''4 aÿèöÎ9CQ7676767'74''67'67676767'74''67'673##533'3353'67#y    ;    &s &$š . " . "a22i'"#'% ÿêðE7#5'75#53#'35#35#5#î''É zffffff 50( ÿèî'+/735333##3#3##5#535#535#535#535#33535-DG##GPPee``KKDDaaDW555v        ƒòÏ733#3#53533zVVdã'0Ï,,)ÿéÖs7#"''3255##535#35#Ö ……………sq  -Š&8,ÿéÒi7#"''3255##535#35#Ò €€€€€ii  )€$4iÿõòÆ 7#53##5'67&'3#©;‚1%:M„„µ‰b&*$#/,+gÿíóÏ .73733#'67#7&'3267#"&55'67536iPQb     22R( 'F? K &"   N7jèÑ/73#673267#"&''675#'67#53673&'´ #S   ( < 2@E<Ï    1 #  fÿêóÏ#)/733##"''3255#'67#53673#3'67&'©00  3 %?E !"  V Š.I  D$$! #! ÿê\É7#"''3255'6555#&'6\     1 ÉÄ  7 )">xq_ B  ÿêcÉ7#"''3255'6555#&'6c    6# ÉÄ  8 )!?xo]  D eÿêìÐ 73#"''3267#'6##535#‡Z  M G0ÐŒ|#&XgG5bóÇ!7#53'67#3#33#"&''67w^Ð E??<530 µ  ( _ÿêòÏ-37&'3533#67&'#"''3255'675#&'Ì  R655      )6 Ï   ''1 #A  <#$*. mÿê÷Ð&,273533#67&'#"''3255'675#7&'&'w/44    $/]  <  §))1 "@  7 "(2:   A wÿê÷Ï,27&'3533#67&'#"''3255'675#&'Ô  N222     2  Ï   ''1 "@  9#0 ¤ÿéõÐ$*73533#3#535#3533##"''3255#&'¨Q -   -  ´  KC  ?  ¢ÿêðÏ733#5##5##5335#35#35#35#Á      Ï-ƒEE…1 Q eÿéòÉ FJNRV7#'6553533533##5##5#3#3#"''3255#7&'7''675##535#735#33535#335òn\&-      +%$8$ÉTE5 7>` B E 3 GW ' $  ÿéñ@73267#"&55#'6655Ÿ ""= @8 + ÿéÎ!%)-73#3#5##535#535'6655635#35#35#w %# ;%%%%%%ÎŽ/J: 5I<u79 ÿéðl"&*73'73#3#3#3##5'65#5#35#C1  VSIIIIW® &SDDDDDk     I    qÿèòÏ(733533##5##5#53&''67&'76‹&&L   Ï7 1" #. # ÿêyÏ'73533533##5##5#67&''67&'    $´""##0$!‡òÒ(77&'77327#"&''7&''#5'6 (  !< ):.'   &Ð       ' ÿèòc"'7#3#3#3#&'#7'5#53567ÖŽ‡‡ˆˆª&  <@3# ((l c    ?OqñÐ *073'67'677367&'326767#"&5'&'b'8J#)"'  (e Ð&  !     D „ÿéðÎ*.2973#3#"''3255''75##535#535'235#3357'75#á ''.   ,%%/%  Î;R   !Yi;Jk $ ÿéò>73#3#&'#'67#5367#)¯OdN=GQ ER]M>"$ [ÿéíÊ  $CNX7##535#35#7#"''3255#535#5#3533#3#&'#5'67#535#35&'75#36735—*€   )L%&&""    "% !  ÊEœá ' )Ì „E '  ; %&; 6   ÿèç¢ $CNY7#"''3255#535#5#'##535#35#3533#3#&'#5'67#535#3&'735#33'6735ç   I5555-G5555 >??77 % "+7> &8  ¢]: ,;º 2  $  2,   8ÿíóÏ "&.26:73#'63#53#3#'#3353533#3#53535#35#35#¯17 %[X,,9BB7»+*Ï  G‚3G#%<<<***** RÿìôÐ "&.26:73#'63#53#3#'#335353#3#53535#35#35#¿$*#PN$$3880¢%$Ð I‚4G#!===***** _ÿè÷Ò !%6?IV\bhn7&'6'&'67&'63#735#&''7&'737'77367'7733265#"&'&''&'&'7&'Ö  M  6  ;~~ZZI   D 3 1   % AÒ      -F ,    1J OL P%% %1)        Kÿè÷Ï $7#67&'#67'7535335#35#Þ? %@##. 98aaaa³f   EH ´(C[ÿèöÐ $7#67&'#67'7535335#35#Þ5  !9 ( 12RRRR²f   DH  ´(Cÿî~Î!%7#67&'767''67535335#35#wI  & $$5555°j8   ª-D:ÿèóÏ%=D73533#3#3265#"&55#'67#535#3&''67&''667#X:;;I0   $$G:0 A & ,#%3 . -  :¹    @        YÿèòÏ$<D73533#3#3265#"&55#'67#535#3&''67&''667#l200=*   <2*8  $) % %  /¹    C       bÿèõÏ$<C73533#3#3265#"&55#'67#535#3&''67&''667#s000<&    :0+6  "' $  " -¹    C       ÿèô£&>E73533#3#3267#"&55#'67#535#3&''67&''667# VSScB ' >& :fVMS 9 ?(+; 2# 5L“    ,      ÿé—Ï/37;?CGN735333##3#3#&''67'67#537#535#5#5;5#33535#33535#33567#-//08E " &&0--J-M0(& Ä  -   -  ) GS CÿêòÎ"(73533#3##"''3255#735#'67&'NDK¢z3   2PP o³I>  9#@ " XÿëôÏ#)73533#3##"''32655#735#'67&'g7>ˆ q/   /KK g  ³H? :$@ ' _ÿêóÐ"(73533#3##"''3255#735#'67&'k7<† k+   ,EE c  ·GE  @#B) !UÿéôÏ "7&''63#3#"''3255##5#Ÿ"% $!%0CC!  1*Ï ,++&6 ![[_ÿéôÏ #7&''63#3#"''3255##5#£# !#.CCx   *(Ï*,(%6 ![[fÿéòÏ #7&''63#3#"''3255##5#¨! "+DDr   +!Ï*+'$!6 ![[ aÿïóÐ #'+/?73533533#735#33533535#3353353#3#735#3673#53&'h'(…&a&y‘‘ {{WW#(’ ÁQ0/+ / #   zÿéöÏ 7#5'753'&'&'ôBECNLH Іt-:ÿçõÏ(0473533#67&'7&''67#33267#"&5''6673#RCG\'+7?*d   V+³!  !IR % U,0('bLÿèõÏ*.673533#67&'7&''367#33267#"&5'3#'3'66c9?F !  69._('¶   HW Zb`-0'SÿçõÎ"2673533#67&'7&''367#3'66733267#"&5'3#k78B  47* K'´  G5, &1S Wf^ÿîôÀ7#533#3#537#5337#7#"y–!C.'0¬\PPHHcPPfÿðóÁ7#533#3#537#5337#7#š%t%;' (®XSSEEfSSZÿéóÎ!17IM7#53533673#&'#5'67&'3'67&''667#353533#3##5#7#3+;  -      ! ",,“** )) Hb -1     %1((0PÿéóÎ!37FL7#53533673#&'#5'67&'353533#3##5#7#3'3'67&''667#Š.?  #0!!!   . $00Z!   “**  *+ I¡-,,-> -1   FÿêóÎ@FL73533#3#3#67767&'7'#"''3255'67'67#535#535#&'''6T@@@88EZ ()"    @ /I::@oB ½    ) #   Š    AÿéôÏ-C73'667#&''673533#3##5#'735##53533#&'#5'6i$"   C*+*?JMA* )% (Ï'.! '$'p#'@>#;ÿéòÏ )-1573353353#3&'73#3#3#3##5'6#35#35#P//—0 :<4444@‡ I33333Ã''-   e %%MÿåðÏ1767&'7&''63#3#&''67#5365#'6$' 7? ]3HB-0. / ?D" Ï! ! (& ,$ EÿæõÈ %73#735#333#&'#'67#5367#335[[66<{A0 58 3=C6† #) x4!*<<GÿèõÏ7&'&''67&'36”R +( '!2 /.  (&ÏP/5F@.&UÿòòÏ!73733#3#537#35#35#35#'33#ZHE T  0 %(  h  ["2   # + !     <    }  = #(^ÿéóÏ'733533##5##5#53&''67&'76))J "( 'Ï7 +( &OÿêóÉ"&*.373#3#3&''67&''67#537#35#35#35#67Y•E=TW  %!.%  -<XXXXXX  É g    g * ) +; QÿéïÑ1J[_c73673#"''3267#'67#3733#"''3267#'67#73733#"''3267#'67##53#"''32=#5#f3:   -* (     P      ,| VVVà   * $ % r eP  )  NÿéëÏ #';?C73353353##"''3255#'65535#35#'#"''3255#'65535#35#b&&…‰          Â++0{ %)S(@9{ %*S(@ PÿçóÈ %+73#735#3353353#735#35#35#&'''6X••,y††``````@! !  È<5oN-,#    fÿèöË  $(:?73#735#35#3#7#5'75#35#35#75#73&''67&'#367vkkEEEE#ŠC  .=    ËI, ( (OY456)     MÿïõÑ 59=M73#5##53&'3533533#3#3#&'#'67#535#535#35#35#3533#3#535#žGu=)$ ### ")%@’?Ñ ..5  "0>EîÐ;S7#&''53&'73535&'#6''67'67'677676767#"''32654'67##5¡ ###67    §¾D f  )2:    # ;"  r€ RÿéòÎ #'<MQU[7'2'6'&''&'3#735#3353353533##"''3255#'#67&'7''535353&'ã =WI5 /    ““+/'   '8 &&&*  Î    -3@  <>$ n   BóÒ %BFJNRX^djpv73#53&'&''67'6776767''&''67'6776767&'73#3#3#735#7&''&'7&''&'7'6''6ƒPq      ‡     !<<<<==r  ‡  ‰†‘Ò  :   *    * *            {ÿòëµ 735#53#5#535#X[o\\Xj8ÃALóÑ173'67#&''67#"''255#3267#"&55C.F ?%  "² 3 +" Ñ I=   + A  X ÿéõÏ-7#673267#"''67&'#'6553533&'7ñ;    r„ °3,&5"" !'&7@I=/ .:T  bÿêëÅ ,73#735#33535#33533#"''3267#'67#534urr.K.9> * 2 , ,/Åa8=.@$+@1˜ÿëóÐ%73#53'67'7&''67'67676Å W# "  "  Ð@P,% -*(`ÿéñÆ%+17=73#3#3#535335#3##'3267#733&''&'''67&'i†900;:!l q\" 2  +Æ''5g:$; &  —ÿëðÆ ,73#735#33535#3353733#"''3267#'67#¤II  '  <*   Æb9@B @+5 , ÿë_Æ +73#735#33535#3353733#"''3267#'67#KK  )  <)   Æb9@BA 15 ,ÿéó{73567#533##"''3255#f€ž#jj  f@ / +¢íÑ 7#5##53&'7í³bÁ ¥íÑ 7#5##53&'7í³bÁ  ÿéð@73533##"''3255#&'ž00   ž7 '    mÿéðÏ7673#3#"''3265#3#y_``  cXX€<"/[$@!+ÿèÕ] 73353#5#533v6•8]S2TF2 ÿèîu73#3#5##5'67#35#Ú‚ Šz /@8zzu\ H [+ÿêî’#)/733##"''3255#'67#53673#3'67&'}LL   Q5B}ˆ 71+ )!![,  '    cÿéòÏ-C73'67&''667#73533#3##5#'735##53533#&'#5'6     0  .790  Ï '/    (!(q#!:9fÿéòÉ /73#735#3353353#5#535#535#53733#3#3##n$H,,##&&#))%%**É@5š$$LÿêõÎ@EK73533#3#3#676767&'7'#"''3255'67'67#535#535#'''6Z>>>66CW  )(! %   > /H99>l-A ½   ) #   ‹    JÿéòÏ +/3773353353#3&'73#3#3#3##5'6#35#35#`')‰+ 26////:yA,,,,,Ã''-  i "$& óÏ!'+/73533#3#535##53#3#53&'35##363#735#eggYÄWe2§Aå?jQ>~±±‹‹Å G))  ) LÿëõÏ,N7#5'67#53533#&7#5'67#53533#&3'67#3#33#"&''675#…    F    ‚%00$1#  >+#   &#  !  *L@ÿëõÏ,M7#5'67#53533#&7#5'67#53533#&3'7#3#33#"&''675#}    J    Œ–*55'!4% C‘,&   '&  !  3  KOÿéõÐ%)73#&''67&'#53&'67##5##535#¢@'*") &AHQOOOÐ     LDa aB0LÿêõÐ ?73&'73#3#735#3353353#67&'67'5'67#53&'WA?– ƒƒ$+B>  5   "5Gº >1  /   LÿèðÐ "(.4DQ73#53'3#735#3353353#7'6'&'&'''667'5'6767&'œFŸC/ˆˆ&:O!r_(!   *5   /Ð )/'11         ) ÿèöÏ-373533#3533#67327#"''67&'#535#7&'888D::     šB8¾  Á ++;"#)6+ #" #P  IÿéòÁ#73#3#'67#5367#33267#"&5jv4AD @; .1.=  ÁN0,AVL   Jÿë÷Ð#)/@7373#3#5367#35#335335&'&'''6733267#"&5WD@DDŠ1@(0  G  n#   ¸ EE J!!!!!9  # - CÿíòÏ!'-=C7367#53673#3#735#3353353#&'7&''33267#"&5''6[+8<DIG†&|››K  ER   – @=  %  & 3ìÒ$73673#3#5367#35#35#35#'33#c\aK†'^Faaaaaa>ºÌÅ ZZ% ! " 9^YÿîõÆ 73#735#35#3533#3#535#lyySSSS699DœF6Æj=EO&&[ÿéñÏ67'23#5##536'&''&'67#53&''67&'á 8QC2 !n_'     Og )  Ï ((  h   cÿéñÏ67'23#5##536'&''&'67#53&''67&'á 4L?/ gZ$     I`  &  Ï ((  h !  ÿèäe)/573#"''3255'675#73#"''3255'675#&'7&'`  #*1$Mjb  #+1%OS  {  ei &i  '   ‰ãÍ #75#53#5'675#53#5'6'&'7&'aJ^"(,’J]"(+‡u ¨C C    ŒãÌ $73#5'675#'3#5'675#4''4'…^#*-$Mn] %)"LQÌ< <     gÿë÷Ð#)/?7373#3#5367#35#335335&'&'''6733267#"&5p7589w*4"&  =  ^     ¸ DD J""""":  # /  fÿíôÏ &,<B737#5373#3#735#3353353#&'7&''33267#"&5''6x",05:9n  d~~@  8 B   • > =  &  '  IòÑ%.26:73#3#3##5#535#53&'#53&'367#'6553'#33#735#¹./**,,0 +'{Z552EE##Ñ   8 % $29(7 EòÑ#,04873#3#3##5#535#53&'#53'367#'6553'#33#735#¹. /**,,0 +({Z552EE##Ñ  :  %" %3:) 8 PòÑ%.26:73#3#3##5#535#53&'#53&'367#'6553'#33#735#¹./**,,0 *'{Z552EE##Ñ   4 # "/7&4 UòÑ%.26:73#3#3##5#535#53&'#53&'367#'6553'#33#735#¹./**,,0 *'{Z552EE##Ñ  1    -5%3 YòÑ%.26:73#3#3##5#535#53&'#53&'367#'6553'#33#735#¹./**,,0 *'{Z552EE##Ñ    0   ,3#2 aòÐ%.26:73#3#3##5#535#53&'#53&'367#'6553'#33#735#¸.0++,,0+'{Z662DD$$Ð    +  )0 . iòÑ#,04873#3#3##5#535#53&'#53&'37#'6553'#33#735#¸. 0++,,0 + '{Z662CC&&Ñ   * %, ) ^ÿêõÑ LPT73&'73#'67&'3533533#3#3#67&'7'5'67#535#535#5#35#b;<Œ3  @ M!"2  .  0"R!!!¿       : "   " _ÿëõÏ =EIM73533#3#&''67#5365#73533#3#&''67#537##5##535#35#g  F    6KKKKK»       Rn n)@ dôÐ3HLP73#&''677&''667#'3533533##5##5#3#"''3265#'63#735#¢@    &”S  H  77Ð     1  # TÿéöÐ $(,06<BH73#3#3#535#535'65##5##5#35#35#35#&'''67&''&'wg ‘]       f ] Ð.// 9......A/////I  YÿèôÈ?GOSW73#3#'67#'737#'67#'7367#53#3#33267#"&5'37'#5##535#35#`@  j  C  B  [VVVVVÈ &   H         _ _!1 ÿéöd 73&'73#3#3##5##535# gqë´´³³µ’’’T ** aÿèöÏ<@D73673#&'#'67#3533#3673#3#5##5'67347#535#35#35#o&H"  "   !5GD -1DDDD¶     ] J X2 [êÊ %+1773#735#35#35#'3#735#35#35#&''&'7'6''6ˆ[[777777~[[777777š c N  b  ÊQ9  :Q9         bóÑ $(DHLP73&'73#3#3#3#5'65#5#35'3'73#3#3#3#5'65#5#35—$&%g,–$&%g. Ï    2    T    2     ÿèöT 73'73#3#3##5##535# ojë´´³³µ‘‘‘G    ' ' ÿèõE73#&''67&''667B‘"&2G-+: .# #&E      ÿéó[ 73&'73#3#3##5##535# elç´´³³µŽŽŽM  (( šÿéòÐ"&*73&'73#3#3#3##5'65#5#35#¹ 2Ð$%$ ‰ -.$$5%%4$ ÿéaÐ"&*73&'73#3#3#3##5'65#5#35#( 2  Ð$%$ ‰ +,$$5%%4$±ÿéôÎ 73#53&'3#3##5##535#ÔC44445Î >TU5%YÿèõÏ7&'67&''67&'ž &" '& %'&) Ï";2)IT.4EOÿéôÏ!'=73'33#673267#"''67&'#7&'3533533##5#'67#XU22     V„  v  ¨''?,@%#,F:  l,,,,55;/YÿñóÀ %73#3#535#&''6'&''6a=?”A@z "   % 5Ñ "-/q"1 "$' !ZÿêõÇ/473#67#5'75#35#35#75#73&''67&'#367Z[  4F     ÇŒ,&š%%^(a"fK8*E1!%-gÿê÷Ç/473#67#5'75#35#35#75#73&''67&'#367iR .C    ÇŒ,&š%%^(a"fM6 *F4+$NÿêóÇ.373#7#5'75#35#35#75#73&''67&'#367Na  7J      ÇŒ,&š$$]'a"fN4*E1!%-XÿéòÏ%-159=73&'73#676767'7''67'67##5##535#33535#35#XD?N  "!!$  8@5[$$7$[$$7$$º   &     Zff$6 ÿéRÏ73533#7#"''3255'675#     ¥**2 G  8;PÿéôÐ (,07#5##53&'7#5'673#3#5##537#35#35#ôrC8  a))4&4444·!(  ‡g $ES#PÿéôÑ $*06<H73&'73#7&'7''67'6776'&'7'6'67&'33##5#53[A<“W   E   cx  6IIEE¹            "33TÿéòÍ37;?7&'#5##5367'&'3#3267#"&55#'67#735#35#35#  ^m\  V  a   3 ,======Í '1 1+ ?\ - B $ $ Gÿé÷Ï >EV\b7#5##53&'733&'33&'#5'67#&'&''62673##"''3255#'67&'ìs>5# E1   V =    Xy‹?  9 a »   $*     $     Q& # 9öÐ=735673#3#35335#533#335#535#535#533#&'#'67# ((((8-//-/%%$$(:8".P- #6sQ   #: 2  W   OÿæóÐ#'+/37QUY]7#'673#&'#3#3#535#35#5#73#735#3353353#3267#"&55#'67#735#35#35#¼9 ,C##=MM  &   5 -![[[[[[µ  !&`)). *N   %7   ;ÿêòÐ $(,048SW[_73#&'#'6'#3#3#535#35#5#73#735#3353353#3267#"&55#'67#735#35#35#¦:    N++CTT  ‹Š(   # 8#ffffffÐ   &_' (, )Q   8 ^ÿêòÐ#'+/37PTX\73#&'#'6'#3#3#535#35#5#73#735#3353353#3267#"&55#'67#735#35#35#².  A !!6FF  rt!   2 *PPPPPPÐ    &_' (, (S    :   \ÿéóÉ *HLPTZ`f73#735#3353357767'7&''67'6773'73#3#3#3##5'65#5#35#'&''67&'dˆˆ'i    6 9 "#%!É7U*   a '% KÿéôÒ6Idhlp7&''7'76'3#3#35#535#535#533#5##5356&''67&'763#3267#"&55#'67#735#35#35#­   . k+ €@     Dr  3NNNNNNÒ    O%%H"      77777·;h  +#3QÿéôÎ,B73'67&''667#733#3##5#5335#533533#&'#5'67#y%    N"!!m<?3! !& '-Î %.  >!$$(!o"(BA$ i˜îÑ 73#'6ƒ^g Ñ sÿêöÄ+73#3##'67#'7367#33267#"&5}t)-  *, 9@Ä&#(,86'fC &  GÿéóË 48<@X^73#735#73#735##367#533#67#5'75#'65535#35#75#73#&''67&''667#YBB!!>BB""6„)%8  ,=$        Ë--)% >J 3) )0GR*, j!      #  XÿêíÉ73#735#3#"''3267#'67#vqqII€  6: 0!ÉR,WT!,@$ $,E>----55=1KÿéòÄ )7#5##5'67&'3533#&'#5'67#ëj-@M;A6% #% )1Ä10! : (,PN('UÿéóÄ )7#5##5'67&'3533#&'#5'67#í`)= F5:3" $ ',Ä10! : )&IM&& ÿèõz 7&''63'67#53'19 68(: O" 5s? z    ZÿèõÒ -7&''63##53#5'357#"''3255##5¡$ # ) 2BB:`  Ò(+'$psh K::J  4o€XÿéùÎ%+D73673#3#&'#'67#5367#7&'7'6373#"''3267#'67#g1 >EY . $ )  j  Y#2   # , #     <    x A (+"CÿèñÅ573#7#5'675#35#35#675#7##'32654'7##5G[   !!!!!  Å…4/“""X%] x@"! DÉÚ8ÿêõÎ #06<733#3#537#53&''67&67##3#"''325''67&'a )] C U    &V   G  Î#5d3,)D(`  K $  EÿéöÏ !.4:733#3#5373&''67&'#3673#"''325''67&'j$T0U     j  C  Ï "F`4!-T@''@M`  K $  <ÿéöÎ*/5;733#3##"''32655#5373&''67&'#367'67&'b##+#  ) 8U     Œ J  Î$f bF`4!-T@''@^ %  EÿéöÏ).4:733#3##"''3255#5373&''67&'#367'67&'j$  $0U     C  Ï "f  bF`4!-T@''@^ $  KÿéöÏ).4:733#3##"''3255#5373&''67&'#367'67&'l#  #/T     }  C  Ï "f  bF_5"1O@'$CY  UÿéöÏ !.4:733#3#5373&''67&'#3673#"''325''67&'x!M0J    _   B  Ï "F_6!0R>&$@M`  K $  cÿéòÎ48<73#3#"''3255#7&'7&''675##535#535'235#335â  55@  . #)<55@$!!3#Î=R  ;Xj=IhÿéóÏ'+73533533##5##5#3533#3#5##535#35#h((;<<.J.; JJ¸3W XW'RÿèôÊ #)D7'6553##57#3'6'&''67&'3533#3##5#535#'6{†,,`` O 97))2244 ”/E5 5@_6::$     \ÿêïÏB733673#5##53&'733#735#35#53#3##"''3255#'67#'Ÿ e SS//=U†    - $)Ï" **  ,; !UÿèðÎ3K7'23#5##536'&''&'3'67#&''6#'735#53533#3##ä 8PB3 pd (     ; 1   ]% Î       1Y"C  A%,,*‡ÿéöÎ#)B73673#3#&'#'67#537#7'6'&'3653#"''3267#'67#“+0?      K  ;  #     ž  8   y A 00']ÿéòÉ /73#735#3353353#5#535#535#53733#3#3##f††'L00((,,%,,((--É@5š$$YÿéõÏ,\7&'#5'63&'3&'&''67&'763353#3#"''3255#67&'7&''67##537# !$ Y 2     IR/B  7   !! 52Ï       ((7;  &  @PSÿéõÏ -9>BSY_7#5##53'73'67&'767&'767#'6&'73'673#3##"''3255#'67&'íj>5!-        g  4 .!H33%z7  0 U º  4      & F /' $  VÿèòÐ #)/5ER73#53&'3#735#3353353#7'6'&'&'''667'5'6767&'¤B–>,$:MkZ'  '4  ,Ð )/'11         ) ÿêøÐ7'673#&'#5'67#53Â$      ¯  *:'f]5 PÿéóÉ *HLPTZ`f73#735#3353356777'7&''67'6773'73#3#3#3##5'65#5#35#'&'&'''6\)n   : = %$É7T,   b '%  DÿçóÐ$7'23&'7333"&&#"'663267#â >>J4   0.5J>‡  ±f  aE, (<D !"DÿéóÏ'/73533#3#535##5##533267#"&5'3'66NBDD;ˆ9B™rZ   0" ¸<2 !3!B F+' !FÿçîÐ673533533##5##5##5##53653#"''32765#'67#R!0##0!œs4= ,= 40±%))3  F &>.SÿèîÆ(,7#"''32655#&''67##5365#53#'35#î  1  /E7~45VVdd L  #i| MM ('‰ÿìöÍ733#&'#67'5#537'6šD% %  ;Í[C!S]  hV* JÿôñÎ .7'2'6'&''&'3#3#535#535'2à =WHA 9  "  … "KKA’=HHBÎ   &%%•ÿëóÇ73267#"&553'#37#3¨ " W4!NH ÅygUUUDÿñôÐ!%73673#33#535367#35#35#35#35#QDCF>°/@ ZZZZZZZZ» ““ :998BÿéñÐ.5767#53&'73#&''67#&'3353#5#'67635#q qEI +1!' "MR OM¨   ?v/  GÿòñÏ $(733#5'6367#35#33535#3353#…A *‹ +6 3 ((<)e((<)‰¨¨Ï  j\# 7FHVÿìòÈ!%)-173#3#3267#"&55##535#735#35#33535#335`u2;; "':0RR'':(b'':(È8_   k`=”ÿéóÇ73#3#3#3##5#535#535#535#—X" &&%%"Ç>>AÿéõÏ;AG73673#3#3#&'#3#'67#53655#5'67#5367#5367#&'#&'M8KONTk  -EK9 /5=$   ,"(4}A@#!¾     "  T ;BÿéòÏ *.2673353353#3&'73#3#3#3##5'6#35#35#X,+- 681111<€E11111Ã''- i "$&DÿêóÏ'-3;Q7367&''65'367&''657'6''6#5##53533#&'#5'67#¾    M    5 M™{?G=-&$/<Ï             C#$*=6 8ÿëõÑ #/5EKQ7'2'6'&''&'#53#3#533#535#535#&''33267#"&5''67&'Ú 9SDB  0 5>?K§I:‹‰vrrx= #     Ñ       $ @  6     !  DÿíóÏ3;?CG73533533##5##5#3533#3#67'7''67#535#3#53535#35#35#O"8##8"7::HW !$ 8?6J7ƒ¯'&Á   T222!!!!! FÿéòÎ #'=MQU[7'2'6'&''&'3#735#3353353533##"''32655#'#7&'7''535353&'â A^N: 2    žž.4+   +=   ***+  Î    -3@ <>$  n   AÿéóÒGLgkos7&''67&'76'3#3#3'67&'76735#535#535#533#5##53563&'3#3267#"&55#'67#735#35#35#ª     / &  %- ‰&9w   "6SSSSSSÒ            N%%GKU  = ! ÿóQ¾ 7#5##535#35#35#Q¾À Ë7%[$\&ÿóK¾ 7#5##535#35#35#K¾À Ë7&\%]&XÿíôÏ5=AEI73533533##5##5#3533#3#67&'7&''67#535#3#53535#35#35#c// 022>K .4/@0t›!"Á  T222!!!!!FÿèòÊ #-:GS73#5'675#'3#5'675#&''&'3&'73#&''67&''63533##5#œM!;QI!7_ P HG¤% ^  sKNNKÊU  P  8      $ %%`ÿèôÉ #-:GS75#53#5'6'5#53#5'67&''&'3&'73#&''67&''63533##5#Ù,>30B7 C ;:Š  V  `>DD>žK P >       $ %%tÿíðÏ &73&'73#67&'7''67'67676u42{V'&# ..% ²  U! ") #%.+  UÿêöÑ #/5;KQ7'2'6'&''&'#53#3#533#535#535#&'7&''33265#"&5''6ß3K>:  )0/r0>Š95}}jeej@ G  T !  Ñ       % @  4       dÿèòÏ %173&'73#&''67&''63533##5#l68‚  F  \====´     '  @??bÿéóÏ/73533#3#535##5##53'66733267#"&5h8;;1t/8…^! *  ¸<1 2!+% &F iÿéóÉ'+/37;?73#3533#3#3##5#535#535#535335#735#33535#33535#335n|6 499662 4!!3#V!!3#I&ÉN"".,[bÿéôÑ"&<I73#3#'6553&'5##5#35#3353353673267#"&5'67'533´3&$j6#      Ñ =<, 2;Y =,3    !   V lÿèôÅ !%)-3973##7#53737337#3#67#3#735#35#35#'67&'î m -ppJJJJJJ  BÅ dG ( (     gÿêïÏ  $(.473#5##53'3#3#535#35#33535#335'67&'¯9`9Q!0r0/L/=  > Ï +,2[[7;+    dÿíõÆ (-=7#3#3#535#35#5#73&''67&'#3673533#3#535#¬C!!8?     o277?=2Æ6ˆ)>>w8&  !,dÿéòÏ *.2673353353#3&'73#3#3#3##5'63#35#35#u v)-''''0e3"""""Ã''- \ !$&jÿéóÏ!%+1773267#"&5536#55#3535#'33#'67&'Û '6 ( 1$0-UE444440qƒ% C Ï   '4``  ' 8^    tÿéóÏ 4A73#53635#&''67&'73673267#"&5'33#67'Ÿ7q%KK8        >$$ Ï ^^ V<    @!    U)  tÿîòÏ '73353353#3#3#735#3673#53&'{p}} jjCC ~Â**/<2  iÿîóÐ'+/373533#3#67'7''67#535#3#53535#35#35#',,9A   */(4'h Š   º   eCCC22222]ÿéöÏ287367&''667'3#&'#5'67#535'6'6À    %     !(  Ï?  "A$.5EA;) a\!-$) eÿéòÏ573533#3#3#67&'#67'5'67#535#535#r/44//93  . '6**/¼  U @ 6#cÿéõÐ 173'33#3265#"'&'#7&''3#33#7'7537nJ'' Jr  \88%- ‘??5/8&[D 7$, _[fÿé÷Ï$173533#&'#5'675#&''67&''6q466%  &4 Q ´H3%ON"*K    "  lÿéóÐ $(733#3#53533#"''3255##535#35#¨,,8‡> IIIIIÐ..#q  /‰&:iÿèöÎ%+73533533#3#535#35#35#35#'67&'r3‰&333333 %A °nnCD/  sÿéòÑ,0473#67&'7&''67#53&'#"''3255##535#35#´2A *.)9C  AAAAAÑ      bi  *€$6cÿîôÏ&*.2673#3#3#3#535#535#535#535'25##5#35#335à ;91s/898#&Ï&$$&_&&&&6$$$eÿëóÐ 15973&'73#33##67&'#67'5'67#5#5;5#35#e=:j*  +  !DDDD»  "!  !3 (  $ !2gÿéóÒ3M73'73#6773#5#67&'7&''67##5367'67#3533#3##5#535#'6i7?D   2. $ !B 00088;;#À    )  ) b ## eÿéõÐ '-39?K73#53&'676767&'7&''67'677'6'&'&'''63533##5#¯6‚8     :  i  x Q   ;<<;Ð  R )     (   * 22aÿðóÏ)73533#3#535#7&''67&''6q055;‰;0  W   ;””''•'5)UÿðóÏ)73533#3#535#7&''67&''6f4;;E™A4  _   ;””&&•(4(DÿðòÏ)73533#3#535#7&''67&''6X:AAL¦G:  !g  ;””&&•'4(=ÿèôÊ$*E7'66553##57#3'6'&''67&'3533#3##5#535#'6j –22oo Z%A=11::<<”/D6 1$_6::$     LÿêòÏA733#3#535#5335#3353353#67&'67'5'67#53&'˜??9„8??%%+@;  1   #1BÏ>>M/  1  +öÐ>OSW73&'73#3#53'#367#733#3#3#3#3#3267#"&5535##"''3255##535#35#)+r($PTTMNJJJJFF# ,' MM 99999¾   %    WI [ # `ÿèôÅ"&7#3#67&'#67'5#'6553#êdh* '   RRÅB  !$Q]  hD3 6?^*_ÿéóÐ .5;73#53&'#5'673&''67&''667#&'±5„9  20      ! Ð  *„b))     $*   bÿêòÎ@FL73533#3#3#67767&'7'#"''3255'67'67#535#535#&'''6j677//;M ""   6 )>116b< ½  ) #   ‹    bÿéøÑ(Mm777;265##"&55'75'75'6773267#"&55'75'75'6'7767'5'75'75'6Ù:a;*e)XÿèôÑ<@IMQUY73#3&'73673#33##&'#5##5'67#535#'6553&'5##5#35#53533535335²5u&!    :%/Ñ   /@@*4* 4<[U)UÿèôÐ (,04Q73#53&'3&'73#3#3#3##5'65#5#35#'677'67'67'67676§EœB B &+ !     Ð "  o *+d+E$ Yÿì÷Ñ#)9?E73#3#53&'#53'367#3#735#35#&''33265#"&57&'''6¬8!%4/*qqKKKK&   "]  e  Ñ   5 (K- ) "  "  '  RÿêòÐ6:>BFJPV\b73265#"&55#3#67'5#'6553'73#3#6'5##5#35#335335&'''67&''&'ß  %  C5(&& ,  S L b   6C @2 2  " '`'N,,,Ð   (7TT5$~ÿéíÏ7#5##5##535335#335í-//¡wVVw..P===kÿéòÏ)159=73533#3#535#&''67&''6#5##535#3#735#r255;‡92  O  !OOO@@À<<      ?l lQA )  cÿéõÒ $*06<DHL733#5'667#35#33535#335'67&''4'7&'#5##535#35#‘6 w 2. 1!R1!]  s  43/FFFFFÒI=  '      OO &  ÿéXÏ$*73#"''255#'67#5353635#&'&'3     ϳ R<. -3L[; I YÿèòÏ $(FJNRdj7'673&'73#3#3#3#75#5#5#''673&'73#3#3#3#75#5#5##53&''67&67#°  BW  Az   *"( ? —      K?      K+    ÿéô}73267#"&55#'655&'¹   M21  }v   i/&56) qÿèõÊ 7&'''667&''67&'Ê"   !  Ê#) (% 1 &#+#!!! )nÿéðÁ$73#3#"''3255#&''67##537#n‚75  #   4:Á"‹  t 1’¤"bÿè÷Å'7#3#3#67&'#67'5#'6655ëb\\e& '    Å  $S_ lD3 0%^_ÿèíÊ'73353#35#53353#5##535#3#5#'65m&[(([% Ê75FF57áKHY YH0 /EqÿìöÈ!%)-173#3#3267#"&55##535#735#35#33535#335yf+22   1)BB1 Q1 È7^  ja=mÿéòÎ37;73#3#"''3255#7&'7&''75##535#535'235#335â 11;    (  $700: 0Î=R  ; Xj=IiÿîòÏ %73353353#3#3#735#3673#53'vtƒƒ mmGG  ‰# Â**/<2kÿéðÑ K73&'73#&''67'763353#3#"''3255#67&'7&''67##5367#k59…U    HP2?   2 0/½    11CI  2  PbbÿêôÑ S73#53&'3#735##5##553#67&'#"''3265'674''67&''2727637277¬:‡9(mmGGjj^&    ((## $ Ñ(( "(          ÿôRÎ 73533#67&'75'675#735#335¨&&a4  9???dÿèòË %+17NU73#735#35#35#73#735#35#35#&'''67'67&'373#&''67'7#67#i<<5==*  K ' l(R  . !' M +ËcG ( ( FcG ( (            ÿçñÓ7#'6553&'7ñÀdÃJV,$US ÿèôh$7'67#53&'73#67&'7'=@ W_iX  C!<)#      !:%  /NäÐ &73#"''3267#3#"''3267#536&'mL   u¢   ¡8Ð (/# O   ÿéòQ&7'67#53&'73#67&'7'F;Qh ^b   !L'(     9    jòÐ&73#67&'67'5'67#53&'€cb   P!  0HeÐ   9   ÿéòK#7'67#53&'73#67&'7'F;Pgba    K( (7     5    ÿé€Ì3:73#&'#5'67#535'23&''67'67#5367#p -- $../    " ! Ì  %f    1   ÿù‡Ã)73#67&''67'75&''675#m.  2>1  ,Ãn'3   ( 0>j ÿìˆÏ#'+73533#673#3#5##5'67#535#35#35#! 1?/ -.!////· vf nD ÿì‹Ð*073533#3#535#&'&'#33267#"&5''61,,(h-19 :  6    ®"",,B  7 <$  ÿìÆ7#53#67'5#'6735#35#35#.Z  % 3333336+ ;=  ’BB ÿìŒÎ!'-7&'3673267#"&55'67''67&':$     ^  Î0?/ATA%$  W0'&$*,#rëÑ 7#5##5367'&''&'믒  H  *  ª8&&8'      ÿê€Ç #)7#5##53#735#35#3#53&''67&'~G [[4444-n,  9 Ç  'S11&  ) ÿé†Ï G\7'2'6'&'3&'733#"''3255#67&'74''67##53'767#67#53''67&'| .A5+ ) ['  #   -  R& );   Ï        o \ v…  g   ÿéZÉ73#67'5#'65#735#35#35#A    É“3  D# 0hGHsëÑ7&'73#5##536'&'€  O 4±Œu  Ñ10    ÿé‡Ï*0673533#3'67#535#&'36533#'67#7&'&''((1  b1'  7,/ 5 - 3 O ¶  - 2 1. - 2  3  XÿêòÉ7&'73&''676'367'Š  I( ) j É")*!i%#!#.$N•  fÿêòÊ7&'73&''676'367'”  C! $ ` Ê#)*"n$!!.$O”  <ÿéòÏ 2:>73#53&''6553'#37&'73#3##5#535#536#5##535#ÊS!S@1  8!+ ;Ï SF$EFO>-!<<!)mmG58ÿéòÏ 2:>73#53&''6553'#37&'73#3##5#535#536#5##535#Æ!X$WH$$,  < #"/ >Ï SG#FFO>-!<<!(koH7HÿéòÏ 2:>73#53&''6553'35&'73#3##5#535#536#5##535#ÌMLC2 ) 3'4Ï SE%EFO>--!<<!(koH7ÿé‡Ï 73353353#3#67'535#qnQ.$(8 QZÂ0==0C=*  JÿésÏ 73353353#3#67'535#a]D%". CIÂ0==0C=*  JUÿêóÑ%+1=733#3#535333533#&'#5'67#7'6'&''3353#5## 88Až(#$     M 8  hhÑ((D++,*  9  yy— `ÿèôÐ08<@D7#'6553533#3'67#7326767#"&55'73#53535#35#35#œ.66A /$& "Ju444444—G;- .6R(      0VV* * ÿêíÐ4733#3'67#6732767#"'"&55'75#'66553rfff Q$B(2 6> QÐ     H<. * R ÿêmÎ.>733#3'67#'65533267#"&55'753#'665367'0))' 1  (     0 Î  E8, -3O"   H= ,? ÿêíÐ/7533#3'67#673267#"&5'675#'655sfffQ$#&1' 3?²     K>0 /9U ÿèrË4;73##5'67#535'2&'373&''67&'67#367g ## $+*"  ?+  !* Ë6&9  4    fðÑ !'7&'73#7&'''6&'7'6''63 t6  H Q · &A Ee Ñ  .+       gÿè÷Ñ<BHL7#673265#"''67&'#3673&''67&'67#'65535367#7&'3#ð  >     N.H J11¬. 5&&1%,C9 "   <. 07S%%y   4¬ÿéòÀ73#3###5##535#32655¬F  +À#q ’u†#4d] ÿêyÐ#'+735#53673#3#&'#5'67#75#5#35#,%.&-(   !R99999<m m 04raÿêíÏ !73353353#&''673'67r "{(    $JY PÃ5AA5G,  ,P@ ÿê”Ï 73353353#&''673'67v'  "GT LÃ5AA5G,  -P@AÿéóÏ*.?EK733#'#5'67#5;533#&'#5'67#3#3##"''3255#'67&'h 6   @~~žD   Gl Ï '' .(G+  (   QÿéòÏ+/@FL7#5'67#53533#73533#&'#5'67#3#3##"''3255#'67&'‚       @ $&  É7T -     c '%  ÿèóÏ73533#&'#5'67#•"$#    !¡..E -qi%*AGÿéöÏ,73533#&'#5'67#73533#&'#5'67#Y   J     ¡.. tx8"-I..E 0yx2*@ÿé¤Ï,73533#'#5'67#73533#&'#5'67#   H    //wp-*A//rp-(CÿéªÏ-73533#&'#5'67#73533#&'#5'67#   H    // sr0)B//nr-*A7ÿéöÏ+73533#'#5'67#73533#&'#5'67#I P!  ¡..ws8"1I..D!6~6)AKÿéöÏ+73533#'#5'67#73533#&'#5'67#[    H     ¡..ty*%7..E 1yv1*@ ÿéñv 7&''63&'73'67#€,;@0.<F(O E!1'Žv  ! $tëÉ'735#535#53#3#3#735#535#53#3#3#( &b)""(ct'!!&b)"")c†|ÿíðÏ &73&'73#67&'7''67'67676|0.tP$#  **#²  V  ") "&.* UÿéöÏ,73533#&'#5'67#73533#&'#5'67#e   C     ¡.. ux-&@..F4zy5)A5ÿéõÏ!27#53533#'#5'67&'''667&'7''6\   Œ*  #'Ž..!jt,${BJ@*)V" (0  +9ÿéõÏ!273533#'#5'67#7&'''6''6767&'E   “%5 "& ¡..'pt+'=:BJ=-*H(0  *VT$  ÿè@Ë 7&'&''6 ! Ë1  6 .+ )?ÿêôÐ4:PV733#3'67#&''67373&''67&'767#'63533#&'#5'67#7&'u=3*      1K   6  uEN@# "$' +9"  Ð ,!   #    X  ""0-2 BÿèòÐ (,04S73#53&'3&'73#3#3#3##5'65#5#35#'6767'67'67'67676›L¬J  K *,       Ð "  r "!*+d/ )($  ZÿêôÏ,06I73533#3#3#3#3##5#535#535#53'#535#37#'&'333#"&'&'75#•"##((!!((''""))""%6  '% . ¼:=Hf   WNÿëóÏ-28J73533#3#3#3#3##5#535#535#53&'#535#367#'&'333#"'&'75#Š&**/.''..,,&&.-&%+< # *+ 43 ¼ ::Ef  W ÿêYÏ7367&''65''6,   Ï<  ) 0G5+$TÿëôÏ"N73&''67&''667#'&'3533#3#3#3#"&'&'75#535#535#535#¥2      %: 0$$$ ''/1 "$'' $Ï       V   WfGÿëôÏ#O73&''67&''667#'&'3533#3#3#3#"&'&'75#5335#535#535#¡5      *?  4'(($$++46 %(++##'Ï       V   WfFÿêõÏ-39K73533#3#3#3#3##5#535#535#53&'#535#367#'&'333#"&''75#†***//((//..((00*&,H  ! .. 7  ¼  : E>g   W¨ÿéøË 7'6'6'6Þ! " ) "Ë #$ ) /!ŠÿéïÅ73#"''3255#3###535#Še RAA?+ÅÆ ±N Z<+NÿçöÐ!%173#3#&'#'67#537#53635#35#3533##5#”A9M* %) #)3-#SSSS##ÐT ')T ,2o%% ÿéó‹-1597&'#5'63&'#"''3255##5##5##535#33533523  Oj|   ($&&&8$(‹   'C  %Z$MÿéóÏCH7'23#5##536'&''&'3673#3&''67'&&''67#67Ü 6M?1lc "&KRO  *$ -  Ï  &&    F       '! \ÿéóÏ@E7'23#5##536'&''&'3673#3&''67&''67#67Þ 3J=.d] %GNM &# .  Ï  &&    G     %! \ÿìôÏ !%8<@7&'67&'67&'63#735#3267#"&553'#37#3v <  >  jyyTT '.  84‰N((:((Ï      //d  V:+SÿíõÐ%573673#&'#'67#33#3#535#5333#3#535#53^2H/& /, #(;))=‡7$$00B—B,,¶   %&;JÿéóÐ )-15R73#53&''673&'73#3#3#3##75#5#35#'677'67'67'6767¥F D  H,+  &    Ð n!%  t*+d-1,  $$’ÿêõÎ$*073533#3##"''3255#'667#535#'67&'   !  M³s  nB5 1<=$ '(+%mÿêòÑ )157#5##53&'735#53533#3#3##5#535##5##535#ï[4;*//22--;;77*oKKK¿"" H  1K K/qÿéøÑ #'7'67&'&'3'67##53#=#± (   "f KlF²" *"    p SR $$§ÿç÷Ï73533#&''67#7&'¯ 8‹DDN2"9;'\C‚ÿíôÎ (,0473533#3#67'7&''67#535#3#53535#35#35#‘"$$*4   && ("[r    ·    gBBB33333gÿéôÄ )7#5##5'67&'3533#&'#5'67#íZ, 5 C74)  *Ä10" < %)PP%#\ÿçôÐ(7673#3655335#535#53#&''67#d #(/6, 0- , 1°  'rr'{/.+&XÿèóÐ7>73#&'#5'67#535'23673#&''67&'67#3#26Ü ;,! $" "+;;H+W #/ & !e.%Ð #--€       ÿçéÎ 73353353#5#OLÀ˜‘ÇÇ“³ ÿéçÇ7#"''3255##5ç  ©ÇÆ  ¯ÌÞ"KïÅ7#3276767#"&55#;5#ݧ:'" SHS??BBÅE  c##bÿéòÐ -73#5##53&'373#'67#67&'7&''6­4[80"PTH $%Ð // S!I)$@ 2  # #hÿèòÒ48<7&''67&'76#"''3255##5'67#53673#35#35#Û  %! !   9"+GO 9999Ò     d^  ,\   +dÿëõÑ#'+735#53673#3#&'#5'67#75#5#35#e;,!7->0! .iGGGGG<n  n74rkÿêõÐ#'+735#53673#3#&'#5'67#75#5#35#r3*3*7* $]AAAAA<n  n78!r`ÿéöÒ%6:>7'6'&''66'&'&'''6#53#"''32=#3#3æ1- (0(. c 7g @@@@Ò  %!    Œ0‡n  D dÿéðÏ&+19=AIM7367&''667367&''66''67'6#5##53#735##5##535#‚     C     U CBcXX44TLLLÏ    !      5-./-99! ÿè‚ #)/73533#33#53535#5#5#35#5#'67&',..' u $,T:::::::>  —  __ &     ZÿèõÐ -159?EU[73#5##53&'3533#3#3#3#535#535#535#35#335335&'7&''33265#"&5''6¬9d:%$$++::3x399++%"/ D  Q "   Ð $%-    ..   [#      eòÑ(7&'3267#"&''7&'7'#5'6° AJ  , 2.K  'Ñ   " A0 TòÑ 7&''6&'3#67#x/: 82); J)6 lÑ"&%   ±ÿðíº 7#5##535#íºÉʦ”£ÿéóÁ73#3##"''3255#«@@P   "Á.m  i¬ÿëôÁ73#3###'3255#²==H  $Á.j  f°ÿêòÁ73#3##"''3255#µ::B   Á/l  i¼ÿêòÁ73#3##"''3255#Â..4   Á/l  iKÿéöÏ#'G73533#3#5##535#3#735#33535#3353'7#3#33#"''675#]<@@EtB<jj+F+o•-66"T @à  "# (A( % "    3WÿêîÏA733673#5##53&'733#735#35#53#3##"''3255#'67#' h  UU11?WŠ   . '+Ï" **  ,; ! HÿëôÑ-159?OU[7&'327#"''67&'#'6553&533#6'3#3#735#&'33267#"&57&'''6Ø    CT)( [2200  #d k Ñ .#   "$+322 33,  / SÿéõÏ+[7&'#5'63&'3&'&''67'763353#3#"''3255#67&'7&''7##5367#Ÿ$$ \ 5        LV0D  9   #"64Ï      ((7;  & @P ÿéÌ26:>BGKOU[aekq73#3##'3265#3#''75#5''6553#67#7#335#335335#335#335&'7#7'6'&'73#''67&'2fLR   (! '$  ƒr  ZaaL6#/L(0v&C6"   $ 2Ac(; n T - œ   %   ÿéÞÏ733#5#535#535#5367#'6ba3©©œœ©q X! 3Ï Š !#ÿÿR¼ 7##535#35#R-¼£½I88MÿêóÏ $(,73##"''3255##5#53535335#33535#35#â  X55!!5#X!!5##µu+  &CCu;(((b'''DÿèöÏ!73733#32765#"&55#'667#Y# $ ,"22‰ CE B=TÿêóÐ 773#'6#"''3267#5327667##"&55'753753„bm s     3 Ð (G' GAD  F+%*$VÿêöÏ#(.473#33##"''3255#'67#5367#535#&'''6œIP)++ D  )0 _  SÏ4A > \!  #]ÿêõÏ#(.473#33##"''3255#'67#537#535#&'''6 DK')) @ (/ Y  OÏ 4A >\!  #ÿèíi#73#3##"''3255#535#535#'2® KKbb  ccKK6i   VÿèõÒ  (,7&''63##"''3255##5#53#5'35ž!$ ""& 2FFj   8<Ò(,)$I  2n€]sh K99JÿèôÊ$*E7'66553##5'6757#3'6'&'&'3533#3##5#535#'6t Œ..ff SN:,,5577”/C7 1$_6:  "$    CÿèôÏ)Nm777;267##"&55'75'75'673267#"&55'75'75'67''677767'5'75'7Ñ!ACEG'  .0'*CR!"$   )#h )#  ! Ï      „         ! QÿèôË/3773#33##&'#5'67#535#535#535#535'235#35#Û CC7+$ $& &$3<<3388-9 $$$$Ë"! <>a2CÿçìÊ'73353#35#53353#5##535#3#5#'65[,k..k+Ê75GG57ãLHZ ZH- ,A\îÌ%7N7#3#53#3#3#&''67#535#'6733#"&55#'66767#53&''67&'?Wil51    %  $  AW    ½Mk          C   ÿíì'7#3#53#5#535#535#53733#3#3##꺼ÎM33,,00'<<66>>£sfÿòòÅ'7#3#53#5#535#535#53733#3#3##ðwx‹6# !!ůӞaÿéóÐ#'+77'673&'73#3#3#3##75#5#35#33##5#53x  !&*$$$$,c7$$$$$<<==‡ "%   \! *00TÿéóÐ#'+77'673&'73#3#3#3##75#5#35#33##5#53n  % */((((1m;)))))BBEE‰ "%   \! *00%ÿìò¡ ,F73#53635#&''67&'7667'53373325267##"&5536nd»@1““z & k!* >k "0 ' )¡UUL3 ^ B   5aÿèõÇ1G73#7#5'75#35#35#75#3&''67&'767#67#53&''67&'iƒc"======%=    )W /E     ÇJQ/22    %   aÿéôÉ'+/37;?73#3533#3#3##5#535#535#535335#735#33535#33535#335h‚98AA>>5 7$$6&\$$6&N(ÉO""/+ ZGÿèõÈ/E73#7#5'75#35#35#75#3''67&'767#67#53&''67&'P›w'KKKKKK+G    2d 6M   ÈJQ/22     &  NÿéòÈ3K73#7#5'75#35#35#75#67#53&''67&'73&''67&'767#\i%CCCCCC -B     FI    4ÈIP-1 H     # $     ÿçôÈ-2I7#5'75#53#'35#35#5##53&''67&67#'67#53&''67&'î'' Í zffffff9e  "2  H^   m SL=-..         JÿéõÏ &73353353#&''6&'3'67#\)*ŒA$( ('* 7  0€!cÃ++1    &)UÿèõÏ '73353353#&''6&'3'67#d'&†= ( $%$ 3+w]Ã++1   &*^ÿèõÏ '73353353#&''6&'3'67#l"#9$ !## 0 ,v[Ã++1   &*aÿé÷Å"&7#3#67&'#67'5#'6553#ìgl+    -  VVÅC   #R^ kA2 5>]*dÿñó¿ %73#3#535#&''6'&''6l‚8=Œ;6f O   ¿©©   1?  0nÿèöÊ$(7#3#67&'#67'5#'66553#ñ\\#   %   IIÊC   )Re qE6 1%a)nÿé÷Ñ "&7'67&'&'3'67##53#=#° '#   "e LnH²"* !  p SR %% >ÿèôÇ !%)/@DH7#'65536533#&''67#'3#735#35#7&'#"''3255##55#35ðb G@@k,   2 ÇSE4 4@_L0D*/* 'L>C( # % F[  %pMÿéöÒ%6:>7'6'&''66'&'&'''6#53#"''32=#3#3æ75 .8-!3 l Cp  JJJJÒ  #%!    Š2‡n  C ÿèõÏ!%)/5;A73&'#"''3255##5'63&'35#35#7'6'&'&'''6w3)   u g]-uuuuš""œ ’  L"#Ï & `  ,s   ;7“      ÿêƒÏ $(.4:@7'#"''3255##5'663&'35#35#7'6'&'&'''6A     . C ....= J P -Ïm 1}(; /3’      ÿéî£#CHLP7#53#3#5##5##533#73#3#73#3&'73#3#3#3##5'65##5#35#vZÈ\fTRdH==g<<<558 2  ' ÈSE5 5@_A&&r  m-C -  RÿéóÈ #'+1A7#'66553533##"''3255#'3#3#735#&'7677'7&'ò| V   =88337- % ÈSD6 0$`A&&s  o,C! -  ?ÿèòÏ^b73#67&'##'32654''67&''67''67#'66553533#3'67#733265#"&55#7Š#€;     &+  + 5FFN9+, & ##x   '      ;) )P*       #[ÿèõÏZ^73#67&'##'32655'67''67''67#'6553533#3'7#733267#"&55#7˜n5       #.;;C /!"  y  $       ;) -5P*     #jÿéõÏZ^73#67&'#'3255'67&#'67&''67#'6553533#3'7#73267#"&55#7 a0       )44<)   w  &       8, -5P*    #pÿêõÏ!%)/5;A73&'73#3#3#3#5'65#5#5#'67&''&''&'“!%!!!!(l .  g   Ï K -%&  ÿê„Î37;767&''67&'373#3#"''3255##5'67#5#5##     &:BH   2 ^222Î   <  _  (^ 2RîÌ'9P7#3#53#3#3#&''67#535#'6733#"&55#'66767#53&''67&'AWil2/    " š #  AW   ¼Uu         G   ÿëðÃ73#3#3#"''32765#7#537# ¿r ’ ‚ !ˆ:? 8Ã##K! ,6#RÿìòÃ73#3#3#"''3265#7#537#^†I `e \!a'+ (Ã""L!05"OÿéöÆ73327#"'&5#3##5#535#Sx  .''&&"Æp6!#/ƒFppFpÿèöÆ735#53327#"&'5#3##5#qf %mFj.-#!(JWFrreÿéöÆ73327#"'&5#3##5#535#hj  &!! Æcd#.†FppF?ÿèñÅ %7#'66553733#"''32765#'67#ñ€ < 'ÅRC4 2!^J..L8 P29'LRÿééÇ 7#5##535#'67&éooo6 & ÇÞÞ½ª^%)T#"ÿééŒ 7#5##535#&''676骪ªP$ $  Œ£ £‡t€ÿéîÆ 7#5##535#'67&îJJJ%   ÆÝݽ¬f&*Y$?ÿéóÏ$)/73&''67&''67#'7367367#7&'˜V # ""3, !Q< = &~&    &2@1"Z•QÿéôÑ&+173&''67&''67#'7367367#7&'¢O    -&J7 4 #  ~ ,     &3?1# Y” ÿéìÎ$)/73&''67&''67#'7367367#7&'pr% *#%1 . *>8-oOU6~ &    (3=0)"[”7ÿéò%*073&''67&''67#'7367367#7&'‰`$( %! -,!^A B.  ]    &0&Du ?ÿéïÐ .73#5##53&'373#'67#&''6767&'¢>nA;. X^'"'| .-!" Ð // R"G%"<0$ #46 pÿêôÏ273533533##5##5#3#3#"''3267#'667#53&'t""H/LE   1<¶? )3 ,1 hÿéòÐ373533533##5##5#3#3#"''3267#'667#53&'m%%G2MB  0""<¶  B)1/+ EÿèòÏ273533533##5##5#3#3#"''3267#'67#53&'O"6##6"UBbY  F ( /*H¶  A (4K 9ÿçëÊ'73353#35#53353#5##535#3#5#'65T/r22r.Ê75GG57ãLHZ ZH. ,A ÿø~Î073&533#327#"&'#7&'3#33#7'7537> >c J..%  ™78*/U@0"8 `\ ÿëÏ!373&533#3265#"'&'#7&''3#367533#7'7 C  ChQ33  & ™6D*0$e>Ddu"> ‚ÿéïÏ!'+73#"''3267#3#"''3267#536&'3#¨-   2P   Q  %NNÏ F 0XG2|#  pDÿêôÑ04873#53'33##67&'67'5'67#5#5;5#35#¢CžD,x0  @   &#RRRRÑ ."!   > -  +  !2jÿîõÐ$473673#&'#'67#33#3#535#5333#3#535#53s)>( & % !1""4t-))8‚7$$¶  &&;`ÿîõÐ%573673#&'#'67#33#3#535#5333#3#535#53j-C+" *' $6%%8}2!!,,<Œ=((¶   &'; iÿèôÐ(59=CIOU73533533##5#5#3673265#"&5'3#5'675#5373#735#&'''67&''4'i$!!GU$0  J  )) 7  R J¾    J_Z     +  ¢,9!    2M4 o   _ÿéðÑ *73&'73#3#735##5##53##"''3255#c7:† ppJJnl^$   '½  3.1/$, )\ÿéïÐ(=CI7&'73#'65535#3#"''3255'675#73#"''3255'675#&''&'£3n[[2  84 !  )  » >!?2 1<1  "2Í '..  &$ !$n !==!^ÿïóÐ$*26:>7&'3673267#"''67''67&'3#53535#35#35#˜ & s   ” "!Ð  94 ?  < UAAA00000dÿèóÏ#)/73533#33#53535#35#35#35#35#'67&'k5990,5KKKKKKKK  = ¿ww0+,+ #    ]ÿéôÐ $(:?73#3#3#3#5'673&'5#5#5#3&''67&'#367µ,0))))2x  """""v "(   Ð E ' /    dÿéòÉ#';73#3#5##5##535#3#73#3#73#3#3#3#"''3267#7#rs/:),=2 AG%%G##Ozz Ž\V \ É #;;# )  %[ÿêöÑ *0AGM73#53635#'673&''67&'767&''33267#"&5''67&'—F~#WW&        x  Ñ || uZ!      N 1 4   ¥ÿéõÏ"73533#3&''67&&'#535#67¬      ®!!-4%  -?H½ 7##55#3535#H&%½¦¹1!!!!T" \ÿìõÏ#)/5E73533#3##5#535#735#33535#335&'7&'''6733267#"&5l44499994""4"[''9'.  F  g  ¾24 4V6   * TÿéöÑ+/7;73#&''6'3#&''6&''63##5##535#¼)   A'  9#$ $%' 4XXeMMMÑ     ! M M1 bÿéöÑ)-5973#&''6'3#&''6&''63##5##535#Á% ;#  1! !" 0 OO\EEEÑ         M M1 F ñË +F7'66553'#3&'7367&'#5'673533#3##5#535#'6k ’ll_1   "2288<- .9S/C + * eóÏ#73533533#3#&'#'67#535#3351B00>8! .=4(9;1DB¿  bÿéíÉ.267#"''255#'65535#35#'#"''3255#'65535#35#í         ÉË A:#=y:(d*LË A8!!?y:(d*ÿéò€#'+73533#3#3##5#535#535#35#33535#335accQQiiggQQa$==Q=Ž==Q=s  B  B % " zíÏ73#5#535#535#53733#3#3##^LLEEGG/KKCCMMÏU     gÿé÷Ï;AG73673#3#3#&'#3#'67#53655#5'67#5367#5367#&'#&'t*8;+)  +/¸)   #I  <<<<<³ )  ##É5(      4(Y !n +   > ðÍ !7HLPf73#735#33533567&'7&''673267#"&5536#"''3255##535#35#73267#"&5536ÌÌ**>+)  +0¸) ##G   ;;;;;± )  "#Í.!     )#G \ #     3ÿèñ 7&''&'''67&'Ö  )  b E         ÿéð¤  7HLPf73#735#33533567'7&''6732767#"&5536#"''3255##535#35#73267#"&5536ÌÌ++=-*   ,1¸) # #I  <<<<<³ * $#¤-       )!H ] $     1 ]ÿèôÈ "7HLPf73#735#33533567&'7&''673267#"&5536#"''3255##535#35#73267#"&5536aŠŠ'g  x    /  n   È7*      4'Z  $o +   = OÿèôÈ !6GKOe73#735#33533567&'7&''673267#"&5536#"''3255##535#35#73267#"&5536T••+n  "ƒ   3  (((((    È7*       4&Z  $o +    = ÿéöÑ*.28>FJ735333##3#&'#5'67#535#535#535#33535&'7'6'3'6573#&ORR==  2>,; " 7  - 7[ÿéõÏ-O7#5'67#53533#&3#5'67#53533#&3'67#3#33#"&''675#Ž   A   y‡ %,,!,   9*$   #$    !  2 MMÿéòÏ  $*@73#53&'3#5##5'6553'#335#7&'73#3##5#535#536ÍNH, 9 9 3( Ï S kOGFO>-w7R!<<!ÿíò¬)-15973'73#3#53&'#37#3#3#3#535#535#735#33535#335 UT(=Ü<%E5E8ªKVVhãgUUK77K8ƒ77K8™  ?    & ! ÿðòÒ-159=73#3#53&'#53&'67#3#3#3#535#535#735#33535#335€[,Cá>/\-E=°NXXiägWWN;;O;Š;;O;Ò   3 M  .,ÿçöÐ37;73#3#53&'#53&'367#3#3265#"&55#'67#735#35#Y'=Þ<$Z : Q1©1 ' F ? /Ð   6 *Q!  '2 #1/ eÿéöË 48<@W]73#735#'3#735##367#533#7#5'75#'65535#35#75#73#&''67&''667#³<<S<<st# 1  *0      Ë- ,)'  ? L 1+ %3HS+, f $     ÿóðÇ#73#3#3#535#535#735#33535#335&¶QUUeßfWWQ==Q=Ž==Q=ÇxD!!!RtÿòðÇ7#3#5#"''3255##5##5353ïij|x  $DZÕ;Q ˆZ   1    ¸     W 3  -  %" Pÿé÷ÐEKQ7&'#673265#"''67&'#3533#3##"''3255#'6655353'67&'â   "   J  [P  9Ð .!6*$/ .I=5I  D=. , VkUÿíøÏ!17=7367#'6733#535#535#&''33267#"&57&'''6s9 2  <!ta]]_3   ]  l  •  [R  (  ,   ÿê‚Í-73#&'#5'67#535'2#'66537'm **  #/-  B Í  #.†+,A    ÿézÍ.73#&'#5'67#535'267'5#'655c &&  *(* Í  #+t9  ; &# ! ÿëÍ#,73#&'#5'67#535'2'67367'm **  #/-" )  Í  #.s? 1>  [ÿéïÏ%767653'67'56##53#"''325˜     ZA   Ï n QQ3'# ŠÆØš gÿéîÁ!%)7##53#"''325'#67&'7''53535Ü9  4/   ¯ÆØ› ˜sC & Ä!!2^ÿéîÁ!%)7##53#"''325'#67&'7''53535Ü>   :2   ¯ÆØ› ˜sC & Ã!!2lÿéïÏ&767653'67'56##53#"''325Ÿ   R:  Ïn OR3' $ ŠÇØš sÿéîÁ"&*7##53#"''325'#67&'7&''53535Ü5 -*  ¯ÆØ› ˜sB &  Ã!!2 ÿêpÍ-73#&'#5'67#535'2#'665367'^ ##   '& ;  Í  ")‡+.@  OÿéîÏ$77653'67'56##53#"''325‘   "bE   Ï n PU.) " ŠÆØš `ÿõ¦Á7#67&'7''53535 . ÁsC & Ä 1 ÿéÎ26:73#3#"''3255#7&'7''75##535#535'235#335€ ..8  % !4..8-Î=R  ;  Xj=Iÿé˜Ò%-159=73'73#676767'7&''67'67##5##535#33535#35#89G    3:+}Q2Q2½   $     \g g$6 ÿé—Æ%+17=73#3#3#535335#3##'3267#733&''&'''67&'„8//9ˆ9 j oZ! 0  ,Æ''4f:$; &   ÿè¤Ï%)-27;?CGMS75#53533533#3#'3267##5#'67#77353355##67#3#735#35#35#'67&':))))1 !#   5(wwRRRRRR  D«  *  ) &  -X? " "      ÿé”Ë 15;73#535#535#3#7'75#73#3##"''3255#535#735#&'iiVPPV ; C:   ``7  ËI  B8  K  ÿê™Ð+/>DH73&'73673#3#3#&''67#5365#535#5#35#"&55#'67#333535#  -'2>: % & 294&+E !R  >RRRµ    _  _ 6     >  ÿé¤Ï E733533#537'6'&'#5'67#535#535#53&'73673#3#3#&@.‘-S f  M" $2>339  =66@6 Ï///-   ®,.   ÿç¢Æ6MSY73#63#5'75#35#35#675#767#53&''67&'#5'6767&''6'6L   ; )=   ='   K    Æ? J )- - "    ~5X   )  ÿè˜Î#<B73533533##5##5#3#735#335335#5#3'67&''67##567#  ##  yy!-7>   )  .À 62& / &4  ÿå”Ò'+/37=C767'7&''563#"''3255#'67#3#735#35#35#&'''6@    &B    ;ttMMMMMM: Ò $    ?6 $/  !@jK++"    ÿç¥Ð(6:>DJPV73533533##5#5#3673267#"&5'3#5'675#5373#735#&'''67&''4' )$$O[)8  V 00> _ U ¾   J_ZDHLYn73#73##5##53#5##5&'7&'#3#'6553&'75##5#35#73533567'53373673265#"&5@@HCCˆ' W ++'v :'O#    Ì 0""0. !/    ! )) $-1   :  6       ÿç›Ð$JNRVZ`f7'673533#3#7'5#'67#535#'67#535#'673533#3#67'3#735#35#35#'67&'      L     _rrNNNNNN  E °       Z@ % %       ÿé•Î#:73#3#3#"''3267#53635353533#&'#5'67#B4Zjjk   l$GGG_)'' %Î@  6$o   [  )*GÿéòÈ%,073#3#5##535#5#35#"&55#'655#333535#G«:.p.8_-p T pppȵ µp 1# -5„{ÿé÷Ï(7365333267#"&55#'67#3533##5#})  % /00/² K  =</e%%??kÿèöÏ,73533#&'#5'67#73533#&'#5'67#q A    ž11 u[' 4I22H /kj+,BŸÿêîÊ7#"''3255#'65535#35#î   ÊÇ <8 !?y<+g+xÿèõÉ7&'73&''676'367'   = # & U  É")*!r& .%O’  wÿïóÐ#73533533##5##5#3#3#5#53&'w%%C-[Wi9µ Tg mêÒ#)73'67#&''67#'6'&''6ub %$!%$# < J 9"$Ò   #   #  aëÑ"(73'67#&''67#'6'&''6vc $% $$$ >  K 9!$Ñ    , .  ’ÿèöÇ )733#5367#3#3#&''67#535#'6¢A^7.8$"    $' Ç 2% " cÿéŸÏ 7#5'6Œ  Ï©†&`ÿè÷Ñ>CIM7#673265#"''67&'#373&''67&'67#'6553&5367#7&'3#ð  C    U1L O44¬1! 5&%1&/A9!  ;/ /8S%z’ 6iÿèóÏ49?DJ73533#3#3#535#535#33#3##"''3265#67#5363&'#33657##&'#s15500<Š;,,1m   ` $ $ " L ;  ÿèõS!:>B73533#67&'7&''275#735#33573533#67'7&''275#735#335((( '2(((++  '3()E1 0[ÿéóÏ#973#3#3#"''3267#53635353533#&'#5'67#—=`ppo  mNNNf++""  "#Ï; 4 j   X  "97`ÿéóÐ.D733533##5##5#533673'73#&'#'67#3533533##5#'67#†""+  ,# , ) !!!Ð7     $" ;77$  ÿéòÏ0F73533533##5##5#3673&'73#&'#'67#3533533##5#'67#;>??>; M A  E!1 >%A 4::;88=!8º%    "# ;66"  ÿéôÏCG73533533##5##5#3533533533##5#3#3#&'#5'67#535#5#5# <C>>C<$9,,]$¡XcW&8 9'#: 4#ObHŸ9¿ !!. 11?^ÿéöÏCG73533533##5##5#3533533533##5#3#3#&'#5'67#535#5#5#c##%%##C\/;-  !.9-c¿ !!- 2. =MÿéöÏCG73533533##5##5#3533533533##5#3#3#&'#5'67#535#5#5#S')**)'$Hh6C2" %$ #4@2o$¾ !!- !61 =bÿéöÐ.a733#3'67#'6553373265#"&55'73#67&'#"''3265'67''67&''67#£//8 [  4   e/    Ð  H;- .6Q   *         kÿíóÏ.6>BFJ73533533##5##5#3533#3#&''67#535#67&'7#3#53535#35#35#k..),,9 +0+7) A ‡   ¿  8!444$$$$$³ÿéóÏ73533##"''3255#&'·     ›44‰  „ªÿéóÐ73533##"''3255#&'«'  '  ›55„    dÿçõÑ$*.26:@F73'67#&''67#'6'&''63#735#35#35#&'''6¦= #   &  . (qqKKKKKK>* !Ñ    #    "  eH* )   ÿåí¬!%)-39?E73'67#&'3#53'67#'635#35#35#'&''6'67&'w^ ! 8 2_¢09 *}}}}}} 6 #- 24Y'#%%¬    WW  T ! ! ‹    r   GÿçõÑ!'+/37=C73'67#&''67#'6'&''63#735#35#35#'67&'šH   , % $ .  < 1ƒƒ]]]]]] ("NÑ     #   "  eH* )   qëÑ"(73'67#&''67#'6'&''6vb !$! $$# :   I 8!#Ñ          ÿèõc 9=A73533#67'7&''275#735#335'3533#67&'7''275#735#335…(++  '3()Æ(++  '3()R7  7  @óÒ;?F733#&'#"''32654''27&''67&''67#537#'77#67#"MeC# 2. 3F<= D@!' -ZaoZJGÒ      9  VÿéóÌ "(SW[_cgl7'6553'#3'6''73#''67&'3#3#"''3265#3#&''75#535#'67#735#33533535#335&'#{ŠffP",2AnPX  ,# ")&##  L%¥ )1¬( 1 @  ?????«)   * Ò       6 *J  b &   ;!òÒ*;?C\767&'7''673;267##"&5536#"''3255##535#35#7;667##"&5536>! )1¬( 1 @  ?????«) * Ò     < .Q  "i )   A CòÒ*:>B\767'7&''673;267##"&5536#"''327##535#35#7;667##"&5536?  *1­) / @  @@@@@¬)   , Ò      .&?  V     2XÿèôÍ&7;?U7''6767&'73267#"&5536#"''3255##535#35#73267#"&5536—   ]   1  u    ¶ (#    Pd  Ï  &" -)G+  (  QÿêõÈ37;?CIM73#3#3#&'#32767#"&55'677#537#535#5#35#3353353&'35#^-%?P' G& .(  +-&-R%%<8,55È8  $  0   8'D  5œÿéöÏ+75##535#53533#3#"''3255#&'#5'6à     L*6G5 !2BDOÿé¤Ï*75##535#53533#3#"''3255#'#5'6x     T"2C5 !8?FxÿéóÏ#+/37367&'#"''325'3'67##5##535#35#¬    .(  jAAAAAÏ   !$  ?(Qh h&9Fÿé÷Ï"*.27367&'#"''325'3'67##5##535#35#—  *   G;) #'‘_____Ï   #'  @)Sh h%8dÿéöÏ"*.27367&'#"''325'3'67##5##535#35#¥     <2  !{LLLLLÏ   #(  @)Qh h%9kÿéöÏ#+/37367&'#"''325'3'67##5##535#35#ª    80  tFFFFFÏ   !& @)Qh h%9UÿéóÐ %73353353##'6553#3##5#535#l$$‡w"a'--..'Æ))17.# %*@$77fÿéóÐ %73353353##'6553#3##5#535#ztyl[$))))$Æ!++ 17.$ %*A$77UÿéôÏ).4:733#3##"''3255#5373&''67&'#367'67&'v#  "1H      w  C  Ï#f  aFV8# %0J5'&6] (  _ÿèöÑ$>BFJO7#5#&''67##5'673#67#3#3&''67''67#735#35#35#67#ï(   # =1 sEH ) & OOOOOO* ; ©$   ,Q   :  = RÿèõÑ$?CGKP7#5#&''67##5'673#67#3#3&''67&''67#735#35#35#67#í+   & #A6 zJM ,")  VVVVVV.B©$   ,Q   :  = `çÒ#73#33#53537#535#5#5#5#W[EÍD\`C{{{{{{{ÒF F) ÿë`Ï 73#3#&''67#5365#'6#) ! Ï1 %$:ÿèñW!73#3#33#"&''675#735#/¦JRR!.)G/ IW0   *bÿéóÏ,08Q73533533533533#3265#"&55##5#'67#5##5##5#"''3255##5##5353b    /  M Nh  -¶  ++ )),8  #II?-  ÎcE58H&'!  ¹ÿéóÅ7#"''32654'7##5ò  Å?!! !CËÜRÿçôÏ)OWbh7'673533#3#3267#"&55#'67#535#'67#535#'673533#3#67'#5##53'665&'´       @     ZP1!$ '%«        M=>N' PÿçôÏ)MU]c7'673533#3#3265#"&55#'67#535#'67#535#'673533#3#67'#5##5'66&'±     C     ]S9&$!«          N=>O)- $ µÿéöÏ73533#&''67#7&'µ  5 ŠEE?B1#3" 5P? ÿèŠÐ,048I]733#3'67#'65533267#"&55'7533#3#735##"''3255##53&'73673##5#;00= P  %3%  !\\OO//E  <  Ð L>2 /;V     (  4 #>J   mÿðóÍ#73533533##5##5##53&'73#3#m((<1^Yl²I SÿêóJ73#3#33#"''675#735#-¨KSS!0*w  (K„„J*      " ÿèñD73#3#33#"&''675#735#1¥OTT$.)F/! DD%    ! kÿéõÑ 7;?CG7&'67&'67&'63#3#&'#5'67#535#735#33535#335ˆ  2  0  Xt29-  *5//N/Ñ      -O  1. /1eÿéïÎ9=AG73533533##5##5#3#3#"''3267#&''67#'67#735#35#33#l!! mD\      &  GGGG2D GC.    + ) F$ ]ÿëøÑ-159?OU[7&'327#"''67&'#'6553533#6'3#3#735#&'33267#"&57&'''6à    : L##Q----      \  b Ñ .    (*211 30,  / gÿéõË 4873#735#3353353#3#67&'#67'5'67#735#tvv"o‡‡ s* $   OOË973   "(    _ëÑ#'+73533#3#3##5#535#535#35#33535#335XYYMMcc``KKX99L:†99L:È 66  gÿéñÊ#E73#3#5##5##535#3#73#3#73#3#3#"''3255##5##5##537#py4;((;2;D''D((Qˆ?@  /6Ê (;;( * :  $8888=N^ÿéöÈ %AQ7#'6553#'#5'67#535'6#535'673#&'#5'63#53533533ðoB    -    /{&ÈKC? 4A] ) .   (" J22>RÿèòÆ %7#'655#"''3267#3265#"&55ñtw   + # ,ÆRD5 6?_3I1y   ’iÿèòÇ %7#'655#"''3267#3267#"&55ðem   %  ' Çl="!>y4I 2y  ’ ÿé{Æ 7#'655#"''3267#67'5zJ[  ÆRC6 6>^'P 7…  £ÿçñÆ &7#'6553#"''3267#3267#"&5ì²1| S0 >.ÆRE4 6>_3K1t  ÿè‹Ï$7373#3533#7#5'675#'67#) ;B %""!!$8!¯   84" oÿêóÌ!'73##"''3255#535'2'6'&'à ::  775+  I  ÌYB  =V"  eÿéîÁ6:73#3#"''3255#&''655#&''655##535#5#e‰'%        ')QÁ%Š  t  (:  # !1 ¡%%%%ÿçîj 733#3##5#535#'67#5373#3zFFaaiiJ -> x† 0A     qÿëôÆ !.73#735#35#3267#"&5536'33#67'quuOOOOc    f%% Æ_9;= *  _1  hÿèîÇ 07#"''3255##53#536'&'3#3#5#53&'î  `VP,!"82C "ÇÄ  ­Íß  5 #4 pÿéòÐ %)-157&'67&'67&'6#5##535#33535#35#ˆ   4   6   Q0!Q0!!Ð   Qyy-GNÿêîÎ %)-157&'67&'67&'6#5##535#35#35#35#p   C   C  l++=//=++=//Î   Qx x-GIÿèôÑ48<7&''67&'76#"''3255##5'67#5373#35#35#Ð  )' $&!"  F '1 ^g FFFFÑ     d^  ,` +\ÿéöÏ'=C73673#3#3#&'#'67#5367#537#3#3#'67#53655#&'j,?CAF[ 5  ")J7;2 ) -47¾    V # *uÿéóÏ %73&'73#3#3##5#535#536'&'z0 .uT #966//2G / ± #88#zÿéóÏ %73&'73#3#3##5#535#536'&'. ,pP !633--0D -  ± #88#‘ÿéóÏ %73#53&'3#3##5#535#536'&'¿&_$) *&&$$%3 "Ï /$88$ÿèðG73533##"''32655#&'œ00 œ>8$  ÿê’Ð73533533##5##5#35#35# 55'5555£----§§==Œ= ÿî“Î767&'7&''6#5##535#D & 11#P===Î7 # "Hdd>+ ÿü‡Í73#7'6756675#t.%U6= 0&Í Y §ª] ÿé›Ê#)/7&'36732765#"&55'677&'''6H  %   Q  Z  Ê +L0Ki3"   Z)23(9& .ÿò’Æ7#53#67'75'67&'P8v)2A5+3  ³ ˆ  f+  ÿó•Í736767''3#5'675#53W  $&&Í8  u  ËÚ*  Lÿø‚Ð733#5#535#535#5367#'6@0 !WWSSX5 $ !Ð {   ÿéŽÐ$*73533#3#535#3533##"''3255#&'---5€7- U  U  ¶!!Q<  8   ÿì“Ï;767&''67'33#"''3255##5##5'67#53673#3,   ! !.,  !+?HË   \7  #RRA>  ÿò‰Ç73#735#35#53#3#67'675#iiCC*/u3--9:*ÇL(w WÿñòÇ73#735#3#3#3#535#535#lwwOO=66A›F44<ÇM*RjÿñòÇ73#735#35#53#3#3#535#wooII/4|4--9ˆ;/ÇM)‚ÿñôÇ73#735#35#53#3#3#535#‡cc;;$(d(%%1r-$ÇM)!! ÿé™Ð59=767&''67&'#"''3255##5'67#53673#35#35#+  ) l =  (1EL====Ð     _b  &`  #3 ÿçqÐ+73'67#&''6&''673'67:)(2/ !   $#(30ÐB/  b   )S>dôÉ%+7'66533265#"&55'675#53#67&'’ S   ]#, $Z#S ·  #?  6% 4.eÿéóÐ73#3#535635#'67&'×&0Z$ˆ5",,JÐ #;†;R ! _ÿéöÑDJP7&'#67325#"''67&'#3533#3##"''3255#'655353'67&'ã       A RM 4Ñ ,:($  .H>5I  D1 08U    ' 6 &>J!  DÿíìÍ'+73673&''667&'67#3677#5##535#D &   0 c  ¢)H.  '$( "3+Éʦ”YÿëïÍ&*73&''67&'67#53667#7#5##535#|!       pÍ*K,  &%$3)wÉʦ• ÿîSÏ 73#'6#53#3#67'5#53%#*  /  Ï  0%9 HOÿëõÐ (J73#'6'3#3#"''3267#'655#53&'3'67#3#33#"&''675#­8? .   CI      Ð !% k"UM0 4N! A ,:  C#n\ÿéôÏ ,7<@QW]7#5##53&'73'67&'767&'767#'6&'33'673#3##"''3255#'67&'îf<3!)     f  2 ,D00$u4  .  Q »   3      % &A  /' $ Lÿè÷Ñ;BHL7#673265#"''67'&'#373&''67&'7#'6553'367#7&'3#ï#  J ]6 O Z;;­4!"3'$1'2(9"   ;/ .8T$${ —  5 ?ÿìöÑ #/5;KQ7'2'6'&''&'#53#3#533#535#535#&'7&''33267#"&5''6ß 6M@6  +/7ƒ9B”?9ƒ‚ollp: L  W  ! Ñ       " A  8       ! ÿéðZ73#3#3#"''3267#7#,¤¤à™€ 3Z  !  vÿéòÐ %5;AY_7'2'6'&''&'#5##5&'33267#"&5''67&''673&''67&767#ã +=2)     hN:      b  A  8 !  / Ð        N      ÿéï_73#5#535#535#53733#3#3##^MMBBLL1KK@@MM_v~ôÊ)7'66533265#"&55#&'3#67'75# R   0Z&.$ #"› 5  ,  4 oÿéóÐ37;767&''67&'3#3#"''3255##5'67#5335#35#ƒ  ! "GNN  8  $8888É   % b  '_ B0rÿêóÏ!'=73'33#673267#"''67&'#7&'3533533##5#'67#rB'&      Ce  V       £,,33'#C9   i%%%%556. >öÐ(,04733533#3#3#&'#'67#5367#535#53#335#35#N><<*f‚1 ,I( +D6'<>dŒŒŒŒÐ  7    7    `ñÐ,EK73533#3#3#3#"''3265#'67#535#535#73#&''67&''667#(00)).=8  .  !.$$(ŠC    +Ç           ÿèñf#(-73#3##5#5367#536367#33537#3355#an=SSz? 5."69JE,2DN>f; ;  "  $ cñÏ173533#7#"''32655'75#73##5#'6556'%%$' -'Ì &1\"*7» #(( .WÿéõÏ )H73#'6'3&'73#3#"''3265#'655#3#3#&''67#5365#'6³8> M #&    \'   ! Ï ! h$SO1 1D.)(  ÿçòš*I73#3#"''32765#'67#53&'73#'63#3#&''67#535#'6D"60  (]Q[ H/40 (#& % 06 š  P /9 ,N      añÑ (F73#'63&'73#3#"''3267#'667#73#3#&''67#5365#'6ŠT]s*#51   " †D&2)# #  06 Ñ  #       5ÿéõÐ (J73#'6'3#3#"''3267#'655#53&'3'67#3#33#"&''675#¡BJ 5 $#   OR ""     Ð # e(NM0 5L" > +8 E& mCÿéõÐ *L73#'6'3#3#"''3267#'655#53&'3'67#3#33#"&''675#¦>E 0    IL      Ð  $ fQN/ 5L" > +9 "D& m ÿèö¥ 'I73#'6'3#3#"''3267#'67#53&'3'67#3#33#"&''675#ŒW` B /.   &Zc ..&'   ¥  L5;! ,T 0  %#2T&ÿèØf 73'73#3#3##5##535#*KL®¢¢¤¤«ŒŒŒW  ..  ÿçÙY 73#53&'3#3##5##535#ƒQ¹R@££££¥€€€Y '( \ÿéîÊ $7#"''3255#535#5#'##535#35#î   .&,ÊÅ  d\%:J[…à$9cñÏ373533#7#"''32655'75#73##5#'6556'%%$' -'Ì &1]"- 7» #((  gñÏ373##5#'65563533#67#"''32655'675#á &1\"*7¤'%% ''Ï'' - XñÏ273533#7#"''32655'675#73##5#'6556'$$# &'Ë &1\!)7¹  &,, 3PñÏ173533#67#"''32655'75#73##5#'6556'$$&  &-'Ë &1\!(7·  ( 22 6GñÏ 373533#67#"''32655'75#73##5#'6556'%%  -'Ë &1\!(7µ * 99 9ÿîìs 73#735#35#3#7’’jjjj5ÖÖs`9::ZÿõòÆ7#53##5'67&'3#¢B8*?V’’´ Še *$".,*€aÿõòÆ 7#53##5'67&'3#¥?Š5 );Q‹‹´Šd$#,#"/,*€ÿèöÏ'733533##5##5#53&''67&'76•""F  Ï7 1! ". 5" ÿëôÐ -73#3#5363535#'&'333#"&''675#:di})PPVVV 2 %>F P,(Ð @A—!r} D`   PdÿèöÏ ,73#"'63'7#3#33#"&''675#Š]d j  //%'   #Ï  $+4A jZÿéóÏ ,73#'63'67#3#33#"&''6735#€cm t  //')  *Ï  &  +4 #BiUÿìôÐ .73#3#536#335#'&'333#"&'&'75#²&BFY"///33= % +& 1 Ð @?–W} F_   P^ÿìôÐ /73#3#536#335#'&'333#"&'&'675#´%@DW!---009 #)# -  Ð @?–W{  D_   PSÿéóÏ17#"''32655'75#53533#73##5#'6556“  d !>&iH : :++2l%ˆˆ=6 15]9ÿéóÏ'+/N735333##3#3##5#535#535#535#535#3353567#'7#5333#"''67&'‡**--44**##++1€ 3?<5B   ¼"!$,&: A!%TÿéóÏ'+/N735333##3#3##5#535#535#535#535#3353567#'7#53333#"''67&'—$ $&&,,""$$+j/  63,9  ¼""#- :!;%#PÿéôÏ'+/N735333##3#3##5#535#535#535#535#3353567#'7#53333#"''67&'•% %''--$$%%,m0  95.:  ¼""#-!:!;%$bÿéôÏ'+/N735333##3#3##5#535#535#535#535#3353567#'7#53333#"''67&'Ÿ" """((!!(`0  00)2  ¼""#-:!;& $dÿéôÏ'+/O735333##3#3##5#535#535#535#535#3353567#'7#53333#"''67&'¡ !!&& (],  .'2 ¼""#-:!:%"bÿéõÎ673#3#535#535'633327#"''67&'767#'7#æ C "_5&'+   "Î7<<28%  7YÿéõÎ573#3#535#535'633327#"''67&'767#'7#ä G#d9(*/    $Î7<<28% !6DÿéôÎ47'673#3#535#5367#'7#533327#"''67&'»*# !! R""Z$%&;$//5  ° 6;;. !67$ ÿéZÏ#'+/73533533##3#3##5#535#535#5#5#35#335   1  »$:)):$NJÿéôÏ'+/P735333##3#3##5#535#535#535#535#3353567#'7#53333#"&''67&'’' '))//%%''.t2"70""  ¼""#-":!;% $ ÿé’Î773#3#535#535'633327#"''67&'767#'7#ˆ @  Z3 $'    Î7<<2:$ !6 ÿéò™-15@7'6735333##3#3##5#535#535#535#535#33535'#5'6@ 4377<>3F$$$ˆ  '™ !         bN ÿéòž-15@7'6735333##3#3##5#535#535#535#535#33535'#5'6@ 6377<>3F$$$ˆ  'ž "     ePEÿêòÏ"(7365337&'#"''32767#'665#'6])6   "%# !) ¥*;"N)WHMCB $  ÿéóÏ!'733#"''32665#'665#53&'''6aI  4)*(%EEt  • Ï*bD ADGMD?*#) +!*! jÿé÷Ã#73#"''32765#'665#'67&'|[  " j ÃwK$€\M JW% #ÿéò@73#3#"''3267#7#äŸ  •1@  cóÐ573&''67&'67#5367#73&''67&'767#@2  # *%T]    FÐ   2 /    #ÿèÝg"/7'67##53673#"''3255#&#&''6w  7UP  D$ !  (9  ct[  E    hóÐ573&''67&'67#53667#73&''67&'767#@1  # *%F]    FÐ  8 2    _êÐ"&73&''67&'67#53667#73#735#B3  # + ']ZZ44Ð    =  +M)lêÐ!%73&''67&'67#5367#73#735#B0  & !, ']ZZ55Ð   /  'G$GñÐ873&''67&'67#5367#767#53&''67&'@2  % )%Y  La    Ð%   = *$   YôÐ673&''674'67#5367#767#53&''67&'@2  %$ ) %f  Ka   Ð   7 &  ^ñÐ773&''67&'67#5367#767#53&''67&'@1  # *& g  Ka    Ð   3 %   ZêÐ#'73&''67&'67#5367#73#735#B2  % ", % ]ZZ44Ð"    9 ,P. ZæÐ"736533#"''3267#'67#73#735##6  $&"SS,,¼ C'#*V1`ìÆ73#3#5'67#35#Ó~wŒ 1?FddÆ ='"AaÿêòÏ 73#53&'3#3##5##535#¦@‘;%xxxxwNNNÏ  >U U5# ,ó73533533##5##5# 5M<<M5r++++3333ÿçåÐ$73'67'567677##53#"''325YL 3  3*$y3Z ¦Y>($ …lbÆÙ   MóÇ73##5'67#&'Ô]%5E$_-!!,Ç`J"( ÿèáÐ7'6553&'73'#3B#PO‹‹f+6!MM  N;( xóÓ73&''67&''667Wm"0 :..= 4%   Ó      RÿçõÌ!%)-TY_73#33#&'75#&'7##53537#35#35#35#33265#"'3&''67&''67&567''6\’F=  6 3*8WWWWWW  K  %".%   S  Ì A   A       (  :  IÿêñÅ!735#53#3##"''32655'67#'x;Nˆ&,,   "6.$7¦-==] WA-#<LÿéóÐ '873#'6'3#'3#7&'#5##53'66733267#"&5¹.4 ,$m I*&& #!  Ð !&YQL  !SBCT./ &% \ÿèñÑ673#67&'7&''53&'35357#"''32654'7##5}2   b  ÑfL # Á **LB$ 'BÊÛeÿèñÑ673#67&'7&''53&'35357#"''32654'7##5ƒ,  _  ÑfL$ Á **LB$ 'BÊÛ‰ÿèóÑ673#67&'7&''53&'35357#"''32654'7##5ž    K ÑdL% Á **KF" 'DÌÛKÿéƒÎ73'67'67#'67276767s    e;0 4 &*26 iÿçõÏ159=AEIP735333##3#3#&''67&'67#5367#535#5#5;5#33535#33535#33567#u01 16DM  +  )%30 0N0R!!4#( 'Ä  -    -  ' E Q  kèÇ73#3#5'67#35#Î~—*6:ppÇ 9% 8aÿéòÆ73#7#5'75#35#35#675#g‹>'"@@@@%@Ɔ2/ ’$$\$Y ÿézÆ73#7#5'75#35#35#75# l $"%%%%%%Æ…3/ R \$ ÿé‡Ç73#7#5'75#35#35#75#q  &*#......Ç…30 R \$Y½ 7##55#3535#Y33!!!!!½¦º1!!!!T"T½ 7##535#35#35#T/½¦¹2"S!T"[ÿéòÏ#'+73533533##5##5##5##535#33535#35#[!0 0![%%7$[%%7$$¯ )‹‹6$$$Y$$$\ÿèôÏ4735#5673#35335#535#53#3&''67&'767#i56##-67& '"  eL[ ]]^ fÿèòÏ6735#5673#35335#535#53#3&''67&'77667#p12 +23! $    _L[ ]]^   PÿéòÐ+159AE7#&'#'67#3&'73#'655'673'3673#3##5##535#ò   20w!DE>?aaaaa<<<     ! :5 ,68   ^  7 7JÿéòÐ+159AE7#&'#'67#3&'73#'655'673'3673#3##5##535#ò 51|!GH@Aeeeed@@@     ! :5 ,67   ^  7 7 …òÑ73#&'#'673#&'#'68># tG*  Ñ " #   òÑ73#&'#'673#&'#'68>$  rH+   Ñ   %  tÁ7#3#567&''67&'tOOb%   ÁœÀ#  ÿÿ\¼ 7##55#35\66##¼£½I7766PÿèòÏ!73#3#"''32765#'667#53&'® 4VN  8> Ïc# 4+57QcÿéòÏ!73#3#"''32765#'665#53&'° 2QE   1; Ïf  <,4=GiÿéòÌ73##5#'66556à $0Z!'! 5Ì ,††?5 ._WÿêöÏ"73#&''67#5353533655#335ä?) (.3;222!§N130 ".N((N ** <dÿéõÐ *7&'367&'#"''255#3'67#‰# !! H   5 6  #Ð  3:R ŽH"6TÿéòÏ'+/3773533533#3#"''3267##5#'67#735#3353355##5#`$**4   *'( $6(µE"2 RR2 (G T""""Qÿê÷Ñ 26:73#53&'33##367&'67'5'67#5#5;5#35#­>“@(p-  :   $JJJJÑ ."!   = /  .  !2ÿéWÏ73533#&'#5'67#   // y|%%/ÿêQÐ73533#&'#5'67#    00  ‹x )QÿèòË15973533533#'3255#'655#'3255#'655#75#35#V <=  5cm^^^^W  R=%"? W  R=%"? MMMM `ÿéðË#+/37;73#3#5##5##535#3#73#3#'3##5##535#33535#35#h‚:@.,>6? !!>r\$$6&\$$6&&Ë (AA( -h h&: QÿéðË#+/37;73#3#5##5##535#3#73#3#73##5##535#33535#35#Y‘AG53E=""G##F!!F%%8i++=,i++=,,Ë (AA( -h h&: dÿéðË#+/37;73#3#5##5##535#3#73#3#73##5##535#33535#35#l~7=++=5=<< 1W""4#W""4##Ë (AA( -h h&: kÿéñË#+/37;73#3#5##5##535#3#73#3#73##5##535#33535#35#tv3:((:1999/R 2 R 2 Ë (BB( -h h&:VÿèïÐ+/377'73#'65535##"''3255##5##5##535#335335 7p]]s      µ >#73 (6a,@e  !####<{.CÿèîÐ,0487&'73#'65535##"''3255##5##5##535#335335—?€mmƒ  "µ  >#83 )5a,@d !####<{.sÿèõÏ"73533#3&''67&'#535#67#{111+   ,1: : ¨'')'    ')nJÿèôÏ '.73#5##53&'3#&''67'67#53667#¡ ?pC[ #!9 26 %- 3Ï++ 6&  [! ^ÿèóÏ &-73#5##53&'3#&''67'7#53667#¬8a:O 1 +.')Ï** 6&  'Z  aÿèóÏ &-73#5##53&'3#&''67'67#5367#®7]9M 0 +. %#'Ï** 6&  D  mÿèóÏ (.73#5##53&'3#&''67&'67#53667#¯4W4K * & ! %Ï** 6&   Z  vÿèòÏ (/73#5##53&'3#&''67&'67#53667#´/P2B ' $ " "Ï** 6'  Z!  ÿèzÏ &-73#5##53&'3#&''67&'7#53667#A)@) :  "   Ï** 7&&    'X XÿéóÏ$=EIO73533#3#535#3'67#3#3#535#3#3##"''3255#535##5##535#&'a9==7|29•€f%B’=.› ..u>CÅ   $    #   E E+  RÿéòÏ$=EIO73533#3#535#3'67#3#3#535#3#3##"''3255#535##5##535#&'\<@@95<› †l(F˜@2  22{AEÅ   $    #   E E+  dÿéóÏ$=EIO73533#3#535#3'67#3#3#535#3#3##"''3255#535##5##535#&'l5992t/5Œw a#=ˆ8+ ,,m:>Å   $    #   E E+  ÿè Ï'+/37733533#3#"''3267##5#'67#735#5335#35#35#35#9%%/ - %+ %%%M#ÏC"7 "SS3!(F 1 T""" ÿî‘Ä&73#67&'7&''67#'75#53533#~< */+}8E7//00Ä) # ( #  ÿéæÏ 73#"''325'3#Ò   2ÏÌ  ®‘ÿé¤Ï=73#3#'6553&'#53&'67#3533#3#7'75#535#'6_: &{(8!4((""'j1%%Ï :/% %-C B    ^óÏ !'73#'&'7&'''6'&''6''6™m ³  R L ¼ (N Rc Ï@@      #    WóÏ !'73#'&'7&'''6'&''6''6™m ³  R L ¼ )N Pa ÏDD         IóÏ !'73#'&'7&'''6'&''6''6˜l ´  S K ¼ *M Qb ÏLL    #   %   OðÈ +07#3#3#535#35#5#7#53&''67&&67#€%%%%i CCh`   $ 0È2x#33R0   ]ñÈ ).7#3#3#535#35#5#7#53&''67&67#€%%$$i EE!!i `   ! 3È-k-.I $    dôÉ */7#3#3#535#35#5#7#53&''67&67#€%%$$i EE!!k [   -É ( _ % % < %   FðÇ */7#3#3#535#35#5#7#53&''67&67#€%%%%i CCg`  " 0Ç5€%87Y4     " ÿõ‡Ï!%+173533533#3#3#5#535#35#35#35#&'''6 1ZOc %111111=   ¼V;MV44)   ÿùiË73753#5'53675" ˳ˆ¥ ¤˜eÿéóÐ'+/3773533533#3#"''3267##5#'67#735#3353355##5#k$%%. ( "& $6$´D"2SS2!'F T""""SÿéóÏ73533#3#535##5##535#SEGG<Š:EUUU®!!##Occ?,OÿéóÏ73533#3#535##5##535#OGII=>>5}4>‚LLL®!!##Occ?,mÿéóÏ73533#3#535##5##535#m8::1t/8zEEE®!!##Occ?,yÿéòÏ73533#3#535##5##535#y322+j+3q@@@­""##Pbb>,UÿèôÈ@HPTX73#3#'67#'737#'67#'7367#53#3#333267#"&5'37'#5##535#35#\A n  E  F  _XXXXXÈ '   F        _ _!1EÿèóÈ*2AIMQ73#3#'67#'737#73#3#'67#'737#37'733265#"&5#5##535#35#OG  RH   &  P ]]]]]È % & 7  %  _ _!1EÿéöÏ"&*@73&'73#3#3#3##5'65#5#5##53533#&'#5'6l&7<6655=z :*****   ÿê‹Ð',07'67#535#5'67&'3#3#&'367#335J   #+ & <%, /*!A & A5 ‚ÿéî¾73#"''32767#'667#'6–X     ¾¦.,tXLHU!$ ÿê‡Ñ"/<7&'3#5'63#735#'3#735#&''67&''6D  7= '!11L11  >  Ñ   0??3  %  ÿêŽÑ"/<7&'3#5'63#735#'3#735#&''67&''6I  :@ *"33O33 A   Ñ   0??3  $  ÿêÑ"/<7&'3#5'63#735#'3#735#&''67&''6I  :@  *"33O33 B  Ñ   /??3  %  GÿéðÌ #)PTX\`dhn7'6553'#3&'7'6'3#''67&'3#3#"''3265#3#''675#5'67#735#3353353535#335&'#6m•qqbk* 4ErQ]   /& $,%  N% ¤;B< 3@c(   $    #G/    /   ÿé¨Ï159=S73533533##5##5#'673&'73#3#3#3#7#35#5#67#53&''67'&!!!!&    56....7‚8%%%%% _{   +  à  >   R   -   lÿéôÏ!'+/573'33#67327#"''67&'#7&'3#735#'6lJ+*    Jp  [88)$&©&/3 ($$+"D7 DE!:  gÿéöÏ &*.473'33#673267#"''67&'#7&'3#735#'6iG0/   Hs  ^<<,&*©&&')#5 &8)/;7 CE!:  iÿéìÇ 26:@7#5##535#&'3533#67325#"''67&'#3#735#'6ìbbbS C0     0)) ÇÞ ÞÀ®$ %'2,  SÿéêÄ73#"''3267#'67##5##535#W“ ?1 *,Ž```ÄK.=1_iiG4 QòÑ &9NT73#"''3255#'67#5353635#&'733#"&55#'6553''67&'767#&'C&   0 00œ &_  !  % IAÑW   /5  #   4      hÿêóÒ&*.267&'3533#3#"''3255##5##535#35#33535#335Ò  \<==6   #"5<""4#W""4#Ò !!ˆ  555Ÿ@GbÿéðÒ%)-157&'3533#3#"''3255##5##535#35#33535#335Ï  ^>??:  '':>''8'_''8'Ò !!ˆ  665Ÿ@GbÿèõÍ733#&'#67'5#537'6ya5, 4 QÍZA!M`  kT * XÿéõÐ !73#'63#3327#"&547#~]f ddt `Ð  !%% %^ÿéëÆ7#5##535#"&55#'655#3335ëhh PÆÝݹ* k.7# -.ekdÿêëÇ7#5##535#"&55#'7335655#ëaa  KaÇÝݹ, i-8" ~cit*-mÿêíÇ7#5##535#"&55#'7335655#íZZ  G ZÇÝݹ, i-8" ~cis(-€ÿêîÇ7#5##535#"&55#'7335655#îII   =IÇÝݹ, i-7# ~cip'-wÿéòÐ767&'7''6#5##535#¥! +0T>>>Ð8 & FhhF4‚ÿéòÐ767&'7''6#5##535#« '+O999Ð6 & GhhF4oÿéòÐ767&'7&''6#5##535# "$ .4XDDDÐ8 & FhhF4dÿéóÐ767&'7&''6#5##535#š&( 49 _LLLÐ7 & FiiF3 KòÐ#'+>73533#3#3##5#535#535#35#33535#33573##5#'6556333,,//66,,3+E+w )K!.Æ  ;   ; " G AA$ 5KòÐ.26:>73##5#'6556'3533#3#3##5#535#535#35#33535#335å )K" .±133,,,,22,,1+F+Ð AA 2 ;   ; !  ]ÿéòÏ#'+/73533533##3#3##5#535#535#5#5#35#335`4#66AAAA55#a4##6$¼$<((<$N ÿì_Ï7367&''65''6-    $Ï> $% 5N&+$ÿê\Î7367&''65''6-  %Î=   & /F6+ #YÿèõÎ/3733533533##5#3#3#&'#5'67#535#5#535#s=c6;0" "% #-:.RÅ++: 88L+CõÐ/57367&''66'3#&'#5'67#535'6'6®  "<%%  *-"1F  Ð" $#17 (.  `ÿêìÐ73#"''3267#'6##535#„^   QI3 ÐŒ|%(XgG5oÿîóÄ 733#537#537#37#37#zo „(.-1/ÄÃTIII°TjÿéõÇ!%)73#3#&'#5'67#535#735#33535#335zk,5'  *7-,E,Çc(.LK*&9A`ÿé÷Ç!%)73#3#&'#5'67#535#735#33535#335rs0;, "# !/=10M0Çc(0ON,'9AnÿéòÇ!%)73#3#&'#5'67#535#735#33535#335}g*4'  &3+*A*Çc(-JH('9AuÿéõÇ!%)73#3#&'#5'67#535#735#33535#335ƒc(/"  %2)(=(Çc(.MJ)'9AeÿèîÈ  $(7#5##53#3##53#"''32=#335îcQQQQl  FFFFÈSCCS!c-e  A`ÿéôÈ !'73#3#535#3#735#35#35#'67&'mz4?Ž;2zzTTTTTT IÈ2nN.-$     XÿéôÈ !'73#3#535#3#735#35#35#'67&'f8C•>5YYYYYY KÈ2nN.-$     eÿéòÈ !'73#3#535#3#735#35#35#'67&'rt1<ˆ8/ttPPPPPP E È2nN..$     JÿéòÏBFJ735333##35#53353#5##535##5#3#5#'6753353#35#535#535#33535d88 8+  ++"  *99@@8I%%% ; &ƒ(&4 DD 4& > ' ; hôÑ "(AGM7&'7'673#&''67&''667#'33#"''3255##5##53'67&'(  _ 8=      $c/   2  3 Ñ        "1 226E   ÿéæ  $7##535#35#7#"''3255#535#5#vG4444·  I7777Jj´) ,›  LJ) ÿèõ^%73#333277#"&55#67'7#&'Þ˜l    ] '2k ^2   - W*  pÿéìÅ 7#5##535#3533#3#535#35#ìXXX?ÅÜ Ü¼ª&DDP$rÿéìÅ 7#5##535#3533#3#535#35#ìVVV<ÅÜ Ü½«&DDP$ÿêbÃ73#3'67#&''67#R*.91    ÃZG >C -9ÿê^Ã73#3'67#&''67#N&*5-    ÃZG =D -9ÿêSÂ73#3'67#&''67#E"$2 +   ÂYG >D  .9;ÿðóÅ 73#735#35#3#53535#35#35#_yyQQQQp¸))Åg=C=JJJ88888pÿðôÅ 73#735#35#3#53535#35#35#†ZZ4444P „    Åg=C=JJJ88888jÿðôÅ 73#735#35#3#53535#35#35#^^8888T ŠÅg=C=JJJ88888 ÿéxÎ $(,>BFJQ7&'#5'6&'3#735#'3#735#'3#735##"''#5##5##535#3353353255= 7 %.  % . . W      Î   0  0  0 1J """*]%$<ÿèñÓ4<@DHLPT73#33##3#"''3255##5##535#535#'6553&'5#35#5353535#33535#335¦?>2 27   $!400;I;;0BR!!3$W!!3$Ó   U  !j  C3 3>\) &   D ( CÿçòT*06767&'7&'#"''3255'67#'6767'67&'²!!#  $%- d R     4     GÿëôÏ>D73533#3#535#3#735##5##5#53#&'3#3#535#535'63'#6JKMM>?K‡‡``‡ˆ<"x (<B73673#&'#'67#3533#3673#3#5##5'67#535#35#35#$1     * 6/ '( ////½      _ N V4ÿóÍÄ7'673&'767U) l'"-2 6 15  A  '1ÿòðÇ "&54632'"32654&€/AA//AA/'65('66?,+??+,?Ä5$$44$$5vÿêŠË73#vËáOÿì°Ë73#'3#œMËßÃ4ÿéÐÌ 73#'3#73#¼ˆCÌãϲ¡’ÿîßÂ73&''67&'76´  ,M P")+ -*ÂL+7/# Xó¨ 7&'3#{ Xææ¨6 )óÀ 7&'3#3#zXææ»»À74ñÈ 7&'3#3#3#|  Yâ⯯ÔÔÈ0"(ÿøéÅ73&''67&'767#'6_^3%<?-+ 1) Q Å C0%  %- !ÿìüÌ '654'7&547'3#å߬¬8438;5791??1.=<0ÿìüÌ '654'7&54773#3#åß ³³8438;5791??1.=<0·qÿìüÌ!73654'7'7#&54773#3#"»¸ ££ ‘‘,)38;5791??1.=.'¨8ÿìüÌ (.3'654'7&5477#5##535#"&55#'7335655#åߦ€€! _€8438;5791??1.=<0Ç»»™" T#0 eNTd&#ÿìüÌ(,73#33654'7'7#&547537#537#35#0J F³+*- >5E5´5`1-38;579 1??1.=3+N5•NÿìüÌ #)'654'7&5477&'3#'67&'åßT  B®®.a8438;5791??1.=<0Ò0 <"*0+3 5*ÿìüÌ &'654'7&547733#"&55'753åß§]LR <?8438;5791??1.=<0— K MB@ÿìüÌ  '654'7&5477&'#'6åßr" 807 18438;5791??1.=<0À3U4zt:5ÿìüÌ 3'654'7&5477365333267#"&55#'667#åß-8  #$ ,8438;5791??1.=<0¤ # s<85,ÿìüÌ '654'7&547'3533##5#åßPQQP8438;5791??1.=<0…PPqqÿíþÌ )N#654'3'#&5473533#'#5'67#73533#3#&'#5'67#535#'6ãÎ   ] !!+$  *0??1-DC´1??0+CD-*)) vk%51 %%)&%SX))) ÿíþÌ 6:>#654'3'#&5473673#3#"''3255##5'67#35#35#ãÎ3X` b  Q #*/QQQQ0??1-DC´1??0+CD-  y  2s "(E=ÿêþÌ 4:#654'3'#&547#5'6327#"&''7&'37&'ãÎ/  "œA  %++0??1-DC´1??0+CD-Ÿz10"3E< &%; ÿÝÿÛ +"&54632'"32654&3#3#3#535335#€5KK54KK4.AA.-AArŠ744>š@#K54JJ45Kî@..AA..@*'3RRkÿÝÿÛ #"&54632'"32654&33#3#53€5KK54KK4.AA.-AAAFFO¢?#K54JJ45Kî@..AA..@/EÿÝÿÛ '+/"&54632'"32654&#5##5##535335#335€5KK54KK4.AA.-AA"55HG55G5#K54JJ45Kî@..AA..@>UEE W));)))ÿÝÿÛ %"&54632'"32654&3#&'#5#€5KK54KK4.AA.-AA€£L" C#K54JJ45Kî@..AA..@1Q„ÿÝÿÛ 4"&54632'"32654&3673#3#3#535#'67#€5KK54KK4.AA.-AA€2W]a1=–E( ! +#K54JJ45Kî@..AA..@3 ++ %#ÿÝÿÛ 15"&54632'"32654&3673#3#5##5'67#35#€5KK54KK4.AA.-AA}8SY `N  +11NN#K54JJ45Kî@..AA..@1  [ E #c- ÿçõÏ;KQW7&'#673265#"''67&'#3#"''32765#'655353'3#3##5#535#&'7'6Ú   %    ' 8²]'++++#  R  Ï  0!"= / :9%M/8. .6P''^SS^ % ÿéñÊ08<@HLTX73#'#5'67#535'6'3#"''3267#'67#'#5##535#35#7#5##535##5##535#°     W:    ÑSÊ )eb!$#M6A6¼ÈL;ˆBHNVZ767&'7''6'&''#"''3255#'65535#35#'##55#357&''67#5##535#À   &     ` ]Ï9$  3  Æ  :3$&UV<+h. bªÇM<<<<(  ,7.1.iiI8]êp73#ÕÕp ÿõðÇ7#53##5'67&'3#zfØZ(1?X'&!,€ÚÚ´Œq1#)$"-+*ÿøñÐ73533533533##5#3#5#5#!'111V'«¾!ž1’22>>>>VVt‡CCCÿèñÃ'7#"''3255#&''67##5365#53#â  F! +7CXhâf  u %$8•¨ÿ÷ñÊ 73533533#7'6'&'M MâÅ”   ÀÀÀÀ§:/ .5-78. ÿòñÏ  73&''65'3&''653# ,&1 @_!52ââÏBD 00)<@*5 4Mžÿ÷îÎ-1767'67'67676'67'67'676763#Ó $%+6#  ] %#)4! QÛÛ›<""!61=#" 50ÿèñÃ267#"''3255#&''67#&''67##535#53#'#3â  $ & (=MâG&&ŠŠ  rA  9¢&&&&ÿéõÏ&,273#67&&'#67'5#535#53533#&'7'6ˆhc  & 05 .$ *eXXYYI  “c  0)P  ^B  vÿêŠË73#vËá ÿéöÏ 7&''663#~#E C%(@-0 Ï ><9$02‘ÿéæÌ 7#56'&'Ó-/7~''Ì.Œ•!,!%ÿçåÐ7#5##5##535335#335åHEYYEEYH©{WW}''XEEE ÿéòÇ#73327#"'&5#3#3##5#535#535#º  M99GGGG>>DÇcc+%-„)%XX%)ÿæïÑ73533#3#3##5#535#535#X[[PPffccOOXª''"$EE$"ÿéãÌ73'67'536773353#5##YI < 5--Ì}>( / sfoya WÿèäÎ!%)-16;?73533533#3#5##5#'67##535#735#33533535#365#35#35##3*44>+2$" <3 3*!^**<%)9-*=++´;I ??(  I<>  \ÿèîÏ  73#'6&'#53#5'#335#Xa"1  z44 Ï&  ƒtvK888P!¯”7&'c//”07 61ÿòñÎ73#3#3#535#535#53&'{ _aTThâfSS_^Î6DD6ÿéïÍ!'73533533#3##5#'67#535#5#7&'/I0077K 4 * 47/ŒI¦''&&FQQ1 %FFFF9  ÿçïÂ$*073##"''255##53#"''3255##5&'7&'ßße  0Ç  68|—   ³—   ³/!"$ !"%0ÿéÄ 73'>y%!" ÄV&7+5 ÿéñÂ767667&''67&'?. *2 8)*C A'1Á_(8#'>  $!-a ÿñòÅ!7673267#"&55'75'6Ð *3878:$ /+V] #fÅ;K %  P;ÿêëÍ7'6767&'7&''6m#: ;&8Ê 9;,NQ2$"8DÿêäÐ!%73#"''3267#3#"''3267#5363#hW  oœ  ›+M  Ð 8 MN5s šÿéóÏ73#3#3##5#'66R™wbbffÏ&'=° ( ÿêõÌ"(73##"''32655#535'2'6'&'Ü )2jj kk(-`H ÌWB =V%   ÿèõË #7'6&'333"&&#"'663367#Ú Zm b  F¹3PL/HA$ J2šË   #1   * ÿéòÏ'73#&'#'67#5367'63#'3'66Í Ws=0 :'B 7CL^OÏ !0/ shh/) #ÿèôÐ 773##5#535'2353#5'675#73673267#"&5Ò $,ccff#(Vj:": "   Ð¥¥]} !+$ %  ÿóõÏ&7#"''327653325667##"&55'753Õ  f*" B%3:¦Q +_  # b MH ÿìéÑ #73#'6333267##"&54767#H š(ŠZ&1((B MfÑ &"=!% 6 ÿèÞÀ73#"''32765#&''6 ¾ ©*#" ##h9GJÀwM€  /ÿéÌÏ76767'67'67'67676¤,50& JQc 3;"#%-&$°@' :A/  3.ÿéèÏ#)7333#"''3267##5#535#5367#7&'fF1WTT>>:2>Ï-&C 1__4G4qLìÒ"&*.73533&'73#3#5##5##535#35#33535#335a<  aS??Ta"??T?“??T?¾  VV ' #  ÿê“Ð BHN7'2'6'&''&''67'67676767&'7'#"''3257&'''6… /C71  $   5       /  H Ð       k   , : )   ÿéúÒ+/37;?CGK733#3#3267#"&55#535#5367#'635#33535#33535#33535#335G V9N\\# 0.TTKZR +88K;†88K;AATIAATIÒ  H H   H H 8 & B & PÿëÄ 73#"''3265{ Ä¿  ÿéóÏ+/39?73533#33##5##"''32655#535#535#535#3535#'&'7'6]^^O; UUkkUU]q;;;;A  }  ¼))4  )<Aa    ÿèóÏ37;?C73533#3#33##5##"''32655#535#535#535#535#35#3353535cffRRUA [[ff[[QQc&==Q>>AAAà  3 !*   3 + ?!ñ²73#3#$··ã㲌 ÿóôÁ73#33#537#'7#7#Õ† z=è• t:lÁ#r-kh22ÿèó¾73##'6765#53##&´´~A2  @ã;¾=%H<„ÿôðÁ73#33#537#537#35#Ìh` à559P?cPÁx -Q “ B !     8  ÿîó£ 73#735#3#735#3#735#35#3##ºº””rrPP,¦¦€€€€3ææ£S3% 6?& ! "Bÿé¤Ð 7#5'6‘  7Щ‹9ç73#ÐÐ8ÿëò¤7'6553&”9M:K;$3K** $ $ ÿéöÐ 7'67&'&'3'67#€,> N(28 81  H«*#"ޝ0*4 06:+ ÿêxÐ73&''65> 3Ð=;$?\JÿíòÍ7'6767&'7''6“./B'.(, 7>9ÍP8 :e*  '/ 3O ’È 767'56‹ È   žÿçño 73&''65'3&''65œ"(+ 5_  .o#8&& -( %#4ÿêè 73533##5#7&'7'6b__b2    2^^55Q   GÿèôÏ '7'67333#"''32765#'67#536y #qiM  8#$ <,-š $+ \ 7*3@SñÇ 73#5##53&'3#Ÿ 9f=7žžÇH58K«FÿèñÃ!(73#3#3673#&''67&'67#67#^ƒƒ ——4b  ': - +Z 6 à % 2 FÿéòÏ073#'6553&'732765#"&55'75'6Ÿ @€<K 68  +.5Ï K?0 0:W /*< ?'@ÿéòÆ $73#735#33267#"&5'3'6673#V~~UUM  Z,ÆX2RY  [6. )/e>ÿéöÇ.267#3267#"&55#;5#'#"''3255#'65535#35#í? !  >   ÇyHÅUUà  89 !>x:(c*>ÿéšÏ73#3#"''3267#'655#53&'u/*   ) Ï!f!PK/ 1H'?ÿé’Ï73533#&'#5'67#F 22pk*/IÿéòÌ'=73673267#"&5'37533#7'633533#&'#5'67#§  S $,EF7% &$ #3Ì%  !  DGZ( ""+FE)"AFòÐ",7333#"''67&''667##53&o* 6=  \ Ð %     +[UÿéíÏ1733673#5##53'&'3#3#67&'7&''6˜   !sC&  ^^‘‘, !"17Ï38&'9+ L  AÿîŸÍ (73&'73#&'''6&''67&'76J#U9 2    «      @ÿéòÒEKQ7&'#67327#"''67&'#3533#3##"''3255#'6553&53'67&'Ø   #*    N$  !aT  ;Ò '.#?! % 5?<4H  C=- 09UkEÿéòÆ%+17=73#3#3#535335#3##'3267#733&''&'''67&'SœD::G¦E$~ ƒm*    ;  0  Æ''4f;#; &  Dÿë¥Í $(733#"''3255##537'6'&'3#735#k$   9&* ;  && ÍI‚  n‰™?   UF)BÿìŸÈ%+73533533#3#535#35#35#35#'67&'F  ]   .  ¯kkAB0  CÿêîÈ 'B^7'6553'#333##"''3255#5357#33##"''3255#5357#'37#"''3255'6757#i‘kk_i(1  66J::   #C9    "—4D5 5?_1    :    >ÿì¡Î $*73&'73#3##"''3255#735#&'''6F#!Y F  ""0  2  ³  GB  ?%@ *ôÏ,Y75##535#53533#3#"''3255#&'#5'6'5##535#53533#3#"''3255#&'#5'6°(,,//)   Z)--//)   s&7#  33  &7# !  /2{ Âb 7#55#35ÂG5##bXX$>ÿìõÏ.4:JPV7367&''65'3#&'#5'67#535'6'6&''33267#"&57&'''6¼     &.   #2    _  h Ï3  (# /.  62 "_  4  0" Uÿéð873353#"''3255##5##U@B   ?8##9 %##>>ÿë¯Ï1573533533##5##5#3#"''3267#3#5##5'635#L9  /,  ¹ n[ Q JS(BÿèõÏ,M7#5'67#53533#&7#5'67#53533#&3'7#3#33#"&''675#}    J    Œ–*55'!4% C‘)#   $#  !  . L:ÿè›e73#3#"''3265#'665#53&'t2.    $e 2 " !<ÿê¢Ï(.4:73#3#3##"''3255#535#53&'#53&'367#'67&'r    !   C  Ï E  @HW    CÿéðÐAEKQW]ci733533#67'275##5#533'67333#"''3265#'6553&'37#67#7&'&''&'''674'u-%% :R01-"" G     q QWX_2: +  *Ð    8    !2 0/ 32  _  p     Bÿé‹Î 73&'73#3#3##5##535#B I==>>>²  R V3! GÿæõÐ!59?CIOU[a7'673&''67&7673#73#3#3#535#535#735#&'735'6'67&'7&''&'{ O& &z599@’@993!! /#  R  X5  ;¢     ¤t8      T     GÿéóÉ +KOSW]ci73#735#33533567677&'7''67'6773&'73#3#3#3##5'65#5#35#'&''67&'Q™™-y   A B %(  * %É7T ,    d '%   9ÿéõÌ 159>V]73#735#'3#735##367#533#7#5'75#'65535#35#675#73#&''67&''667#žJJ))gJJ((•”0+>  1 / C*     Ì/.(% > J 4( */HS*+ g"      " ÿêô 73#32667#"&55#'>5#ÜC -%# " D¦ % ­J#3(1Nÿéò¬)767&'7&'32767#"&55'67'6i6; $ ' B ; /*¬-  !% S! WO@ÿéöË%+177'23533#32667#"&55#'67#73675#335&'Õ Mo\UMT<  ) OJE69MB Ë*K> #  E?3  %B  ÿëòÊ  (73#735#35#'3#33267#"&5'3'66lqqIIIIWc   %=%"ÊvDPCt >   C((  ÿèöÑ,16<7367#'6733#32667#"&55'67#7367#335&'(_ T ,^ 6D   -  4$ DC6=Q<   P8 #  8, 4*E  ÿèôÉ (73353#3267#"&55#'6765#7#5#35"L#L8 &' . '5ƒK$“É88{D ! K,+ #h88UUgîŸ 7'67&'Q- 'w&%Ÿ  ÿèòÏ '/@73#53635#35#'67'5673#535#'66733267#"&5t%T ....#  52!W%' %!8   #!Ïqq :KS ^  y~Xo$& 6   ÿèðÇ)673#3#"''3255##5##535#&''67&''&''67&'ßeY  EEYf”  I  Ç“  {ŽŽš­@%,%, ÿéôÅ 7&'''6''6767&'¯* - F)-k! HG /!3>Å=#,EH)/@(.  1HR  ÿïòË 7&'3#'67&' XÛÛG'(0l+*Ë8 D'07/38/ ÿêôÏ 7&'''63#3#"''3265#7#œ'1 -,.: 8–g m rÏ17 3"%(C'1ÿøðÏ 73#536'&'3#3#°>ÊuV  ªªààÏ q4ÿèôÐ%7'67#53565#53673#3#&'&'‚UU WZOp 4XbXJ FR <:6%-6Ï  ÿèòÎ%+73533533#3#535#35#35#35#'67&'!b +å0!5bbbbbb 4 -f*!#(²kkCB0 ÿèîÐ-K73673#53&'&''67'67676767&''&''67'67676767&'S 1 ?Ú> ›#* "']#* "'Ð¥ %.+E&  %/,E&  ÿéòÑ.6:73673#3#3#&'#'67#5367#537#53&'3'6673#Y .  3YQUq=) 5$> -ARDJY6 NÑ    "$    ˆ%"   S ÿèòÐ#7;?CGKOU[73673267#"&5'3#5'675#533#3#3#535#535#735#33535#3355#35#&'''6‹" #( #/%(!FF1ª!00>ä>22!99L8„99L8"@@@D## $$;) %Ð    (>  9F    , & (  !   ÿéãÐ!733#"''3255#&''67##53uZ G%) 6CWÐ-  … ''+(:§º#ÿéáÂ7#"''3255##535#335á –@@TB¿  MlÙ[HHH ÿêîÑ"73673#3#"''3255##5'67#H|… ‡ o,>´ x _~#+@¾œ767&''67&'R ""”! ÿêóÐ $(,73##"''3255##5#53535335#33535#35#Ù  ‰MM99M<‰99M<<µu*  %CCu;(((b''' ÿéòÉ ;@E7#5##53#3#33#3265#"&55#'67##5367#'6367#335Ô!qqqq O4;  *#I :$W L .18M9ÉK99K  9  & > B _ê¢7#5##5ꬢC00CÿêöŒ73267#"&55#'6655·  E!Œ & t4+);ÿèôÐ)7#5#'67667##5365333267#"&5ãP1 <Q    , ¦A.H ' 6(-@0o %  ÿëߦ73#"''3267#733#N• ” Á¤¤yO"1]Fÿçî²"73#3533#3##5#535#'67#536q ^i1EE__hhK$1 ²00ÿéñžD73#67&'#"''32654''67&'&''67&'767&''67#/¡E# () 0? G/ - ;Až 26 **       ‘èÆ7#5##5è§Æ5$$5ÿèí£ !73#735#35#3#53&'&'''65——oooo9bÚb4&" $$@ ' #£Y65' $  wܧ733#3&''67&'767#53,,(    >§   ÿìå¬+17=C73#35#535#53#3#"''32765#'67#56&''&'''67&'t$44z333Fw—  ” )W    C8  ¬  Q@  Lt   ÿéõËDHLPZ7#5##53533533#3#3#&'#"''3255##5##5'67#5367#535#35#35#35#3533&'#ï·#<$$ `…4% 0,  )?+#6<<{{{{20 G Ë-- A   ** ( A! ! G KÿëÅ 7&''6_)ÅU 941 ÿéôÒ$*73&''67&''667#&'&'^i'2 32.? <'4 \2# !0"V; 9TÒ       $ P  ?ÿë£Ï%+73533533#3#535#35#35#35#'67&'D  b   3  ³ii@A1  Bÿô°˜ 73##5##535#35#Bnne99999˜{ {0MTVîÊ73#3#535#535'2Ö DD>ˆ6BB<Ê ÿéõÐ+9=C[733&'76767&'#5'67'7267#3#3#53&'#735#367#3267#"&55#'667\ B  %M'  E!ˆEÙBbb'9J  D Ê         32  3  &  ÿéãÏ7335#53353353#5#353#5#FP<;;F´SLcQ>RR>XcLj ÿêðÏ735#53533#3#353#5#5335#gRRVVee=ž9go(%%(Q?`R?Q0ÐÅ%+7367&'#"''3255'67567#&'2ž$ $&   $ .| Å ! '2 #4ÓÇ173##'325567#3#735#67#53&''67&'9‚  e00V .@    Çp w &^: * ôÏ 373533533#7&'7'63#3##5#535#53&'736PSæ'  ¡   277882   š5555B   8   ÿçŒÉ73#'67#53655'6 013.46.;É1O$ D * ÿçò` 7#'6553#"''3267#'667#òº#  G, '.`!#! 3#7   ÿé¢ 7'67&3##5##535#U# 0% HOO\CCCr  K L.ÿë¡Î&EJPV77'7&''5673#"''3255#'67#'#3#7'75#535#5'63&''6'&'J   +D     445    & @2 2W[_w{7#'733#67&'#"''32655'27&''67''67#53'373533#67&'7''275#735#33573533#67'7''275#735#335xHM)E    "/)),* ?b3Bt #     "  ¤ !     | /   /  GlÎ73533#7#"''3255'675#%!!    %³  mÿêóÐ87'673&''67&76736533#"''32767#'67#“  ?      V$9   &1 +! *     # _ C2%!ÿçÄ973673#"''3267#'67#:-I  98 ,$' '$  ÿéÐ!%)-3973533533533##5#3#5#5#3#735#35#35#&'''6 =`s ];qqKKKKKK< # ½"3 1bE & %    ÿñ¹° 73'673'6oJ AL 63`°[/&Q>Z&Bÿëù­7673&''67&'8" +O H1<A"”!#3;&!70(!ÿù·’73'67#&''6d J#` W?   -’XF   "/ÿø»ž&*.2673533&'73#3#"''3255##5##535#35#33535#335/>;;   (*=>**=(e**=(‡  X  ###p.,ÿôÁ#'=73#"''3255'67#5353635#35#35#73#3#"''3267#535#K! 0'7&&&&&&B9(,    ,''„ O $ '(E86 8!ÿøÊ›"'+/73533533##5##5#&'#5'6&'3#735#322B#& `  ;>qqII‹    3; ä¨73##5#'66556Ï /?y26 J¨SS"" %-'5ñ®"=73673#3533#7#5'75#'67#735333267#"&55#'67#7%*  #*$ W' $ ™ ! e  XO D9ê¬73#5#535#535#53733#3#3##n55..33066//88¬ž1 é¯"&*06<7'673&'73#3#3#3##75#5#5#'&'&''6p   -/((((0g7%%%%%9  % m    d$$ƒ      5 éª #'+/73#735#73#735#3#3##5#535#735#33535#335=HH&&FII''^Ž>RROO=++>,j++>,ª& & #D   ) & 3ì²59=AE73#&'#'6'3#&'#'63#3##5#'67#535#735#35#35#5#¡7Q6 ‘ 33.  ,4llllllL+²      K   5 1 æ­ <@DH73#735#35#35#73#735#35#35#3&'73#3#3#3#5'65#5#5#8B ã° 73#3#&''67#5365#'6ha7FJ+ "$, 1AF! °! 2ð±107&'#5'65'3#735#Ž** b @F)……]]±  $B<é¨ $+73#735#35#373#&''67'67#67#Giiii-j  # 5 &-#_A¨D) " *     @ᣠ73#735#3#735#73#735#WooII+FF GFF £<;B B ÿêñÌ73533533##5##5#7L77L7tXXXXwwww ÿéðÏ !73533##5#3533533##5#'67#Z[[Z ,c))d2 *+®!!66C****ZZB5ÿèñÐ73533#3##5#535#7'6'&'[ZZffgg[­€  ‚NN*JJ*V   ÿéóÏ#733533533##5##5##5##5#53533\ !! ÊSSSWW{{ttuu{{XXÿòêÄ73353#3#5##535#rBV`tG[^Ã\]pK^buI ÿèôÏ#(-73#3##5#5367#53635#335367#33535oe9NN…! =?3??SA”6>RIR :Ï j11 j :F  + ÿçíÎ+17735#53533#3'67#&'36733#'67#7&'&'aTTUUc À8 /o S[ ;& Gd# v&!&Œ   4 !$=  9ÿèìÐ7&'3#&'#5#x  Q×f-  ]Ð .(\œÿéïÏ 73#535333&'#…jÜ^Oc/" !#šT">DÿæëÏ73#5#'6553533#3‡UMd#ŽŽ¦c.' (38…  Ï &?616`eT  j7 |Ð73#67'56u1GG!"'. 1Ð:I  ´AÿìåN7#3267#"&553#"''325§R +7  B9z  ;4  K&  \òÏ7733#'6655'667##"''3255#3265#"&55Š@ (j  91 _   $ %Ï 3- 1   . =   UÿíˆÑ (73#53635#35#32767#"&5536G0d >>>>F %- (&Ñ ]] 391  O =ÿèá¦736733#"''32765#'667#K0R  ?.}R3 L094+;ÿæð—73#3#"''3267#'667#D¬fX F1—[!B(13M3ÿóë¡733#3#535#53&'ƒBBT¸P>>:  ¡3UU" 7ÿóð©73533#3#535#33#3#535#53FBEEO¯LBBDDT¹QBB•9!!8ÿðó %73#67&'7&''67#3533#3#535#C¤X'* :@4BAAU»RB    W  9ÿèäª "(73#"''325'#5##53#'3'>&'Ñ   71lG  ª¦  ›€nm z`E'#  $% 3ÿñó¦#73#3#3#535#535#735#33535#335K?FFWÀWCC?++=-j++=-¦f<B6ÿéôª '73#735#35#33##"''3255#53567#Eššssss›$UU  TToªO0 +,  2ÿéñ±#)73673##"''3255#735#35#'67&'I1P> Cppppt› a7  2:=0 %9ÿëê¢ !'-73#"''3265'3#735#35#35#73#'67&'Ö  UU000000UQ 7 ¢œ “‚[98Lk     ,ÿçó®#4B7&'73#353#'67#53365#53673'67#'63&''65Q2 ! # (   #- :5 &  ) 2®  3 .?+!=, 4 $ 4*%-2ÿéô®%)-1673#3#3&''27&''67#5367#35#35#35#67#<®XJ]d" ,%%; , 3D jjjjjj> Q®X     X$ " ! G -ÿêò­ &973533##"''3255#'3#3#735#&'27677'67&'–4  4]ZZPP++\  R  0;  ‡&&q  l-D 4  2ÿéòª %,6>B73#735#35#333#"''67&''667#73&'##5##535#J””pppp7 8F   (V +nnnª;#         11 6ÿéõ¯-28>BF733#"''3255##5373#&''67&''667''6'&'3#735#_&   9&U2       F B  (( ¯=p  Zvˆ=3#  ) $)   EF&<ÿéë³8<@DHN733533##5##5#533#3#"''3255#&''275##535#735#33535#335#7&'i....--‹;M   )39L=**=(e**=(³ F : %  @Q * & 9 :ÿéó² &7;?KOSW[736533#&''67#'3#735#35#7&'#"''3255##55#35#53#5##575#'#3355#•!'  UKK....  <   8H88- 6H64444H6”  "-*  %, 8 _FF %  ÿçôÏ!73533#3#67&'7&''67#535#XVVks3; JJ ,\hX¬##33%, .3 ÿñôÑ'+/37&'3#&'#'67#537#'6767&'3#3#3#¦}C/816 +>M ), Khh„„»»Â   )&" k ÿèõÐ&,28767&'7&''6373#&'#'67#'6'67'6i.1 GO'?R zA"" )),: .Aˆ (@ B> 4S UN >s xÐ  / &"   - ÿéîÏ167'23#5##536'&''&'3&''67&'#367Ø Nq]M )°—?  -  ”"3 6(,: 9$)Ï ..N     ÿèóÏ/4735#5673#35335#535#53#3&''67&'#367(NW#66DA222FUM'#4=,-; 6')#I[  ``f   ÿéñÏ>CGKPbg733533673#3#3#3#27#5'75#535#535#53'#53&'7337#35#35#675#73&''67&'#367_*<6ZMMgv%,ePP\45' 8E'00000P`      Ï     ?I      [ ) + .  )ÿìØ¼ 7#5##535#؈ˆˆ¼ÐЧ”ÿêçÐ 73#"''3267#'6#5##535#K š ’ )cFFFБ1%v$3`f?-ÿèäÅ 73#735#3#"''3267#'67#537™™qq&b  PK BHMÅO)D G%.E5 ÿëïÏ73673#3#5##5'67#35#Oy€ r 9GErr¥re%,‚:U.È73#735#UssKK_9!ÿéäÆ73#"''3255#3###535#!à  ¯‚cPPÆÁ§M];) ÿéõÆ!&+/733##3#5##5'67#5367#5367#3353535#´""t ‹x &*5OTEYJOWqxxÆ,-Y D !  , ~&QÿèæI 7#5##535#æmmmI`a=+ ÿçôÊ %73#735#'333#&''67#53565#335I‰‰aa>¤\DM [ QX\PdAÊI#G2%  90$ÿéòÆ73#735#35#5333#'67&'V€€YYXª““"àI - )p#")ÆF"zn[1 aÿìõÏ,73533533##5##5#333267##"&5467#a((t? +5R­!!""(2  ,ÿéçÆ-73#735##"''32655#&''67##53672  xx¡  K! % A\ÆN(R_ G !ex  Bÿë¢Ï73673&''67&'67#67#T'   ¡C/   "$@&*#FõÐ#-7333#"''67&''667#73&'#E2 '"%S%&"  $  'S"Ð $     *.QÿöñÎ,0767'67'67676767'67'67673#’$  R$  ¡C$ (4/C$ (4-w‹óÉ73533#&''655#Œ%**  &%š// * *$4 )ÿèó¥%)73#3#67&'#67'5##5##535#KŠŠ"ÁP    N% %°mmm¥ *(  1BM M0:ÿéó£#'+735333##3#5##535#535#535#3353535#D<GGL{@<+>ÿé´Å $7'6553'#3###5##53533255j Y55  ƒO)"ONB00P jUgB 9Lÿè÷Ð ,287&''6'3#3#"''32767#'655#53&'&'&'Á  8/)   "WÐ%!%$0%g  =K. 0F-f.XLèÏ 73#"''3267#'67#'67#'6_    0 )% Ï N75$ -%  P±V73#735#Paa;;VG%AõÏ+07&'73#'65535#73#&''67&''667E!L88mC  #   ¹  J &.9(D"  Kÿé£Ð73#&'#5'67#535'6˜    #Ð+ id"0% ÿézÏ7'6553&'73'#3#5##535#+  )#99###d#67h L:()adB1JÿöªÏ%73#3#3#67'753675#535#'6g/ 1% ##  Ï &'VQY& MÿêŒÏ73533#7#"''3255'675#O   ¡..1 E  8:Pÿë—Î73533#67##'32655'75#T Ÿ//1? . < pòÏ73&'735#53533#3673# 7 __^^6å‚ '' ZÿéóÐ&733533#3#53'67&'3353#5#o55A™4   Q^r¾6HP".@cc AÿçòÐ#+177333###5#535#535#5335#35#3#'3'667'67&'˜5500==//""""(s    B  Ð'&uu';1ih0( #&#   ÿéóÐ3;?73673#3#3#3673#53&'735#535#535#53&'#5##535#S87\QQ^^8æ8__QQ\1–‡‡‡Ð      šD D( ÿéóÏ'+3773533#3#535#'3533#3#535##5##535#'#5##535#ƒ-//*h*-v-//*h*-Þ888*888®!!##!!##Occ?,cc?, ÿçæw !73'6573#'3#''67&'7&';1 )™Pe  Q  ]  w;4!';Œˆr"   Yÿð¨Ï '73#53635#35#3673267#"&5s"K''''  Ï \\ 2:1  ,ëÐ"&73#"''3265#'6'3#735###535#‚]   T ]BB3!!Ðj&Q zVC P2!ÿéëÇ %73#735#3#735#73#735#'3353#5#5335˜˜ss2TT..pTT--4D®EÇ=<== k&E 8&ÿëòÏ%)-1573533#3#67&'#67'5#535#3#735#73#735#`^^fi #W"-!* g` CCkBB»T  I@  NT54ÿéê‹"73533#3#535#'6#5##535#I'??\Ög2 ’zzz‹  AH H-QæÉ 73#735#3#735#73#735#6““kk0WW11aXX33É7076ÿëÐ#'73533#3#535##5##53##5##535#.11+g).pLBBP666¿-)+"T T6$ÿéƒÉ $(,73#735##"''3255##5##5##535#35#35#ff@@Z   É><}  .11??H’9'''''OÿèóÏ,0473353353#3#535#3533#67'7&''675#75##5#c!"6D˜A4799 @C%#7o&%È#**!2;>   SÿèñÏ>DJ73533#3#5##535#'67'6776767'7&'#"''32657&'''6_<>>?j=tTTTTTpI  %'' 0)Ìff- **       QÿéðÆ'-39?73#3#3#535335#3#"''3267#733&''&'''67&'^Ž=11A”>u  x j%7  .Æ''5g:$: $  Kÿô®Ï)73533#3#535#3#735#76767'7&'P%&&R %OO))   )3»2;4  CÿèñÈ @DH7'6553'#33#3#"''3255#63&'7&''675##535#535'235#335rŠee 0..5   # !%700-6#1—0D4 4>]1" , ? +@P , 7HÿéöÏ(JPTX^b737533#67'6773673267#"&533#"''255##5#'655'6367#35#33535#735Z %-R    )>' *( %52$$7*b%$7*¿2> E    [  '  #.Dÿï¤Ð%+73533533#3#535#35#35#35#'67&'O  V   2 ¬$$##^^9:*   PÿíóÉ%5;A73#3#3#535#535#3535#5##3&'#33267#"&57&'''6\Ž,%%0•.%%+>%%%%   ^  h  É78`%$$; 1 6 " Gÿë¢Ì $*73&'73#3##"''3255#735#&'''6O!RC  !!*  )  ²  EG  D#=Iÿè«Å#'7367#533#67#5'275#35#35#75#O,0F Ÿ  s"|JM Có{ 735#53#3# iVÀViæU ÿéóÈ ,48@D73#735#'3#735#3673&'73#&'#'67##5##535#7#5##535#SS,,€QQ--S. !L<G 2( ;DZ)))§,,,È>>A    % -M M2 M M2 ÿïôÅ#'+/37#53#3#3#535#53'3#735#73#735#3#735#73#735#vcÚcjjfàfiiSDD eDD ‹DD jDD ³NRRA55O55NÿïöÏ ,9F73#&'#'673#&'#'63#3#535#&''67&''6p*   S.  S?H¨M> d Ï  '   1dd   &  Hÿè£Ï /73#53635#35#3#3#"''3265#'665#53't$N ****.+   !Ï NN +-% 2 " ! KÿéðÏ/HLP733#3'67#37#53#3#&''67#'655333667#"&55'7533#735#•;;F o5-t6>7'+' " 0<9/ ) %``??Ï   H  /7R     () Hÿó™Ð73533#353#67'5#5335#H!    !®""XCT+ 5TCXKÿê¤Ð)/5;73&'73#3#3##"''32655#535#53&'#367#&'''6T     !##,  ¸  ? :+V    V…ðÐ 7#5##53'7'67&'ðt?"  @½        íÈ %+73#735#3353353#7&'''6'67&'ƒff   )' ,   C ÈH&&&&&=ql      >ÿê—Î$*073533#3##"''3255#'667#535#'67&'H   !L ³s  nA6 1;9$ OÿèòÏ8<@DHO73533#3#5##535#3#3#"''675'67#53#&'35#33535#335#7&']=>>CsC=p **ER h  P*C*!<à  "# …  * AAK %  NÿëºÎ%FKQW77&'7''563#"''3265#'67#&'#3#67'675#535#5'63&''6'&'u   4      !!+5$$!2 #.Î+  D; &! 4   !#  ;   ÿêìÐ#)/hlp7#5##535#535#53533#3#535#35#&'''63533533#3#3#67&'#67'5'67#535#535#5#35#ì²`LL]]^^MM::N::S%$#% ( $01455--Cb O   /G9''1x444…%%&& 0      *    nÎw$73'67#'6673#35#535#53#†9 &   8*Zw  #  AGÿê£Ï'-3973#3#3##"''3255#535#53&'#53&'367#&'''6w       $  ( Ï (F  AHY   BÿèžÏ"733#3#53533367'67#''6uN  & "  Ï885+/4ÿéìl!73533#3#535#'6#5##535#=,HHbØb6 ………k 789! ÿéõ”!%)-EK7#37#533#67#5'75#'65535#35#75#73#&''67&''667#î¿A9NA5$$$$$$[5      ”$  > H 3( (0HR ( * h!      #  LÿèôÏLPTX\bh73#&''67&''667#'3533#3#3#3#"''3265#'67#535#535#3#735#35#35#'67&'º0        m"## ,- ! $"‚‚]]]]]] # F Ï            WT<       SÿêòÏ59=AEI]aek73533533##5##5#3#3#"''3255#''75##535#735#33535#335'#3533#&''275#735#335&'#6U%+((+%{5E  "(&2C6&&6%[&&6%K:: :J$#:));)Ç 4(  -; .))  % LÿçöÏ0Ufj€73533533##5##5#3533#3#&'7#'7#535#73533327#"&5#&''67&'77#3533#7'75#3#3#67&'7&''67#N*.%%.*    "Q     N"*$£` # 29 +Æ       1;     %    "    DÿéöÏ!&*.26SY_ek73533533##5##5#33#5'667#35#33535#33573#&'#5'67#535'6'67&''&''4'O()**)(#H    %  W       %s M¾  S=  "5['NM&y =ÿì‰È 73#735#35#35#'67&'I88   *  È¡p O P!9  OÿéòÐ/Ycgt733#3#3##5#535#535#5373#"''3265#'67#33#3#&''67#&''67#535333#5#53335&''67&''6o 6I   <>>>4B7.%;ž     7 6˲+/373733#5367#3353#3#3##5#'7#535#735#35#F$:•&05ay&3311?K@TT/(¥  %&   = , Ò®9?E73673673#3#&'#32767#"&5535#5'67#5367#&'#'&';5 FT& A  +' B; !./b!       #      *T 1 ̰!-73533#3#535#3##5'67#735#&'76?777B—A7|C  "VVb   ¦   %,2$     6É« #73#735#3#735#35#35#'67&'KjjFF\\\\\\  A«) !W=  2Ï­!)-151073533#3#''67#535#7&'7#3#53535#35#35#C322?# *2 *>3&5 % ^ %$¢     / ,,,1 Ϊ#73#3#3#535#535#735#35#3#735#Cy2DD<‹ #§7 7    0а#'-373533#3#535#735#3353#735#35#35#'67&'@666F F6$$8$mXXXXXX F¨#  2J5  4Ê­ 5:73#735#3353353533#3#3#3##5#535#53&'#535#7#;ˆˆ(k0//=!5AAAA5  ?0G)­.,     &1Í« &*773#735#3353353#3#7'5'67#735#&'76>„„%}šš €K  XXa - «+$)      - б$AEIMQW]ciouŒ73'73#6777&'74''67'67276767&'7''67'673#3#3#735#&''&'7&'''6'&'''63533#&'#5'67#e5       _     L----)) T _ c   L   DCC$ ($7¢                             "  IðÄ73&''67&'#367*¦$$6<+*7 5&+#Ä#   #GæÆ !73#&'67&'6'&'6ÇÇeM o  Æ    RîÏ73#73&''67&'767#'3#O%g    PTÏ}w)    oLžÐ7''67'6767767&'Œ  M -#:7@$ ÿðôÎ+73533#3#535#&'''63533#3#535#&QVVdÛcQ‰"O !'OQQjçiO´4  "  CóÎ"3767'7&''667&'7&''6'67&'7''6f ') >GT  &+T %*Î   "  ""   ÿëõb"73533#67'675#73533#3#535#)))1<)t)**1v1)F( ,33>õÏG73533#7#"''32655'675#733327#"&'5#&''67&'767#53%    #%}+     ¯  2A/     ^ÿéóÏ '73&'73#&''67&'763#5#533^C>•b    o\© n 9çÐ#<7'6733#"&55#'665#5'66767#53&''67&'K$ "’ %   *  ,AXr$)  Ð !  ! K=     SBîÏ73##5#'66556Ù )8l#5  AÏFF "'"LÿêðÏ67#'66553&'767#533'67##"''3255#53&'ðy ? Md"   .5¹L?0 -!W  ?  C  ? ÿîñÌ4B735#535'273#3#3#535#73673267#"&5'353#5'675#Xff#)WX %-ddWWfâhX€  ! ‡66'ccl     ) J T¼ 7#5##535#35#¼° ¸G58 BöÏ,73533#&'#5'67#73533#&'#5'67#-&&  %p)0&  °CC %)(JK() ÿðöÏ#'+;73533533#3#&'#'67#535#35#35#35#3533#3#535#)_**3;% .A1 +:1);______ 000XÀT0¾T # T14A ÿèñÏ!1L73533#3#535#3533#7'675#73533#3#535#3#3267#"&55#'67#%QSSbÔ^Q #((+-3#q&''-n.&yàM   ( ) D< A 5 0  &- !=èÉ)7#67'7&''535357##53#"''325€K  ) 777i.S ÉQ&  ƒ zŒ\ Pÿòòi73#3#3#535335#[“@99D¢ @i#??T.îx 7'6'&'&'''6Ñ& !Œ ! !!w5# "2$%03x       Pÿêñz73#3#"''32767#'67#53&'ª>]R D $ ,&Cz  8 )< 8ñÊ?73#67&'7&''735#35#73#3#3267#"&55'67#'7365#XE!2222Rl(/$   " $ 1ÊT' f0/* $#!]ÿïõÏ%+;73673#3#&'#'67#5367#7'6'&'3533#3#535#l/69J# %!,+g  N  %&&9…:%š  # @     ŒI=ôÐ#(.47&'#3##"''3255#535#5'63&''67&'–#, "CC   BB+ 2> dÐ     B    YÿéôÆI7#5##53#67&'#"''32655'67&'''67&'767&''67#ím\#     ' .    (!Æ0 2(  02  "&       ÿïñ¢'+/?73533533#3#3#&'#'67#535#535#35#35#3533#3#535#/%2%%((>>( 2")3 +9=%%%72222,,,]ÅV,•  #/?K<òÊ73#735#35#53#3#3#535#^‡‡bbAF¢JFFK§JAÊ1KRÿéòÏ#06<B73533533#3#&'#'67#535#35#3#"''3257&'''67&'`!&#   "#0!!  A P P  µ" %$"""H[ =$ SÿðôÐ !%73#'63#735#3#53535#35#35#wku kkEEd¡%%Ð >@AAA/////(ÿïð573533#3#535#6JNN\ÈXJ#4òÏ#'+?73533#3#3##5#535#535#35#33535#33573##5#'6556244--2233--2.H.x )G.à  B  B & " P QQ,# #>3ÿòò¤,<73533#&'#5'67#'3533#&'#5'67#3533#3#535#”$     W    CFFW¾TC’  '*  .1P ÿïô§ 073#3#&'#'67#5367#735#35#3533#3#535#+ª]/ 'D ' -D6ƒƒƒƒ455V½S4§L   -* TJLõÊ%+17&'73&'##'32765#'67#&''6'6f ,U    / ,2 >    Ê    6MA    *WÈ7#"''3254'7##5W È)  )ž )\Ï 73&'#''60  Ï  s~UÿéõÏ5:>B73533533##5##5#3533673#3#5##5'67#535#67#35#35#X 3##3 +* +D ZR :<+E ! RRRR½   ] N  G1zÿüÈ` 7##535#35#È<****`W d#4=ŒÐ#'+/37335#535#535#53533#3#3#353#735#33535#33555--22//**66i-D-[< <[ ;ÿë¥Ï 173#53635#35#3&'73#3#"''3267#'667#r$Q ----# 41   ! Ï OO +-7  2   4~Ð6767#"''3265'67&''67''67&'767&''6`    # (#!  (Ð            5ñÍ37INTZ733#"&55#'665'6553'#33533533#3#535#35##53&''67&67#&'''6Ù  jgBB> [ D _     .F   Í  # 0534."       2î«"&*G73#3#3#3##5'673&'5#5#35#''67'67'676767676¹*0(())3i  !$$$$$/?!   «    A %   -     :òÏ!&*06CHL733#3#5##5373&''67'&'#3673#&'''67'#5'6&'35#D**7U0NV    ¡==C @  0 W %> 66Ï !2#        õÊ "&*0AEI7#'65536533#&''67#'3#735#35#7&'#"''3255##55#35ðÀ%  `VV5555  7   >O>>Ê>4' (0H:1-#,33  .; K lÐ&73'67#'6673#35#535#53#‹7 '    :*\  #    B LÿéïÍ #'+/3AH73#735#35#3#3#5##5##535#3#73#3#73#3#3#''67#&'#6[††````’@G43F@##G##W33W33T‡‡£ 8@ +~.$Í=% (++(        yîÏ#'-373533#3#535#735#3353#735#35#35#'67&'***2u0**See?????? 5 Ç) 9X> " !      DÊ73533#67'75#  “77L  V ?ÿêóÈ !'+17=CIY7#'6553#3#3#535#535#735#&'735'6'67&''&''&'3533#3#535#òv244:ƒ7332  .   I  s !877>”D8ÈSE5 6?_8       U         OÿéôÍ#GKOSfjo73#3#5##5##535#3#73#3#73#3533533##3#3##5#535#535#5#5#35#3357#"''255#'65535#35#Z>K95G=))G--V88V::`%% :  \   Í %//' " '  ' / ;n //#4ÿöíÏ73533#3#535#accZÈYa‰FFnn ÿòóÉ73#3#535#535'2Ø )1jj^Î\hh(-_É@RR> ÿçãr 7#'6553#5#3#35#Ï—¿AA—BB,,22XE ?ÿëåK7367327667##"&5??5 8E'=$K  # ÿêòp7#5##533267#"&5'3'66ë¯z'5!.-p./"F  L+,  "ÿðîm73#535##53#5+3'&'7'6¦HÚE.Î.((X    X0.X: ÿïï}#7#5#3#3#535#535##53535#5##3ì9//OÝL./8\///-}1==!3|)((ÿïí„'7#5##53#3#3#535#535#3535#5##3ì²¥/88KÛI88/B!88!88„2 !3 33R"!! ÿéó’-59?73'67#3#3#535#3#3##"''3255#535##5##535#&' à ̧C]Í^Ræ%   EE®`((([  ’   #   D C)  ÿëîÆ37'667#533#"''32767#7#3&''67&'767O +)¶. 3aN # #  fK-JLIaJI!%  #  ÿêõÐ!+73&&''67&''6767#73&'#>= >; ;>$ $  /b% ÐB%"(3*.BH\ ÿé÷Ñ973&''67&''667#3533#3#3##5#535#535#\l (/ =0+? 4& + ^2RRRMM^^^^MMRÑ     NÿéòÎ%7&''67&'7673&''6767p  k+(: >+(8 5 )-"  &@## ~$#3ÿéòÒ5:767&'7&''6&'''63&''67&''667h25 # KT+Y(" (> , 0k %6A,,: 5'2Ò  #     ÿèôÏ3873533#3#535#&'''673&''67&''667'OUUfÞdO( &J ( (. g!:?.+: 3& 3º*   ÿéñÈ%)-1673#3#3&''67&''67#5367#35#35#35#67#×fVhh+)B+,; 2$ '(>Y'‡‡‡‡‡‡FWÈg   g** *Q  ÿçòÓ &BFJNS733#5#&#'67##5'6367##53#3&''67&''6'35#35#35#67Z] 8G5 " >- g [ ,³qo  +?/0:%$ "Ó %  ‚RR   K  /  ÿéóÈ (:>DJbi73#3#5367#5#5#35'33#7'753773#3267#"&5735#'67&''3&''67&''667#ÝdBf~!!!![J  v<, g' )k- *:\'4A/)5 ," +SÈ VV"  @@=C3   !D          ÿáòÐ#3DHNTkq73#3#5367#53&'7365#5#35'33#7'753773#3267#"&5735#'67&''3&''67&''667#¢ Ai?d;3XL q7'  j# %m) '1 D 28*'6 -  /  ;Ð TT  @  @74A6    F          ÿèÍu73'67#&''6c j'‡ }!d   ;u  B3   ÿéñœ ")/7#5'673&''67&''667#7&'C  &NR!! &  !0D   œ{X /4C    %@0/  ÿæëÏ".26:>DJ733#5##53''67#&''635#53#3#735#33535#335'67&'fd&.b²`"* a3L 2 GC™BE 44H2z44H2[,)\* )Ï  ((  m  D) %      ÿçôÏ73533#3#&''67#535# SZZe\ DI"T S\`S¦)))BK:&%4- ÿéóÏ!735333#&'#'67#53655#335$JQ\G MM ET[J^?¦))I7G;&", "" 6 ÿçôÏ#73#&''67#5353533655#335Ô^F J8* N`II45I:¨N6E2!,N''N22;ÿéÏu73653#"''32765#'67#.AL  :F >=V O.H7 ÿçöÏ%73533#3#&''67#53655#'6@0PP`]H NN MX`9 Ç,, 5 55""- " ÿéáw 73533##5# WVVWC44GGÿéñÏ#7366533#'67#7&'&''vW^U Lm: ‰$@S&FH;*ƒZ2ÿéäj733##"''32655#53&'š66  ~~N  j: 6 ÿçÊb 73#'3'6573#¶0 '>byy./"*n)ÿïæ7#3#5&''67&'76Öšª½•  %  k    ÿé÷Ð")/7333#&''67#535367#'636565#335\W 2WD H\ R]a P -68L7Ð C& 41#C k% 0-ÿëó‘!%)7#3267#"&55##535335#33535#335ÎF % 1%3GG33G2y33G2w_  n'9ÿèÞ„'7675653'67'56##53#"''325u #$I 4  +{.V „ 5$9 QwŠR ÿéõÑ97373#3#3#&'#3533#3##5#535#5'67#537#537#!O]ack…* "T 777OOPP: -> 6?J½!''  ÿæôÏ(873533#3#535#'333#&''67#5367#73533#3#535#H?DDS¶P?1mb[B I M AYjg.CEEV»RCÄ   x '" L   ÿïñ’73533#3#535#3533#3#535#;:<<`Î\:NQQjàdN~A ÿçõÏ'A73673#3#3#&'#'67#5367#5367#3#3#&''67#5365#[Z`_h‚1# *J* 2D=GU/l,VZ4&).; AMS-¿ $ Y    SçÏ $73#5'677'673'67#&'&'P !7EJ A8 `  Ï|%   % <- 7ÿèð“"7#3#3#3#67&'7''67#535Ѐxxxx  58 IR8-“     aGïÏ$73353#5#'67#535#73533#3#535#   @4P755/p.7Ì"‡0  ##//=ãÑ 67'2'6'&''&'&'#'677'67676767&'Ù Or_O8 7 ‹NN "/3E$Ñ      0     "#ÿèÚ|"&*7#"''3255#'65535#35#'##55#35Ú  97777'33 |w  ")>(=Cl{.ÿè׊%)-7#"''3255#'66553533#3#535#3#735#×  ƒ &#''2r.#[[;;ŠŠ  t;0& $D   (1'ÿèØs$(,7#"''3255#'65535#35#'#5##535#35#Ø  75555#"""""so   !'9%9 >>>J11   ••u$@.3330 ¡      8    @  ÿèàŒ'-3973353#35#53353#5##535#3#5#'65'&'&''6S+h**i+ %  % ˆ"!1 1!&¤42B B2 &72     # ÿçñÏ$(,8<@73533#537#53#3#&''655#35#35#'3#3#537#35#35#ehh!T!D4 D I ]eŸ####šT#G####½?GK%@7%/D?I +LKK, + ÿéÛ "&*26:>B73&'73#3#3#3#5'65#5#35#5##535#33535#35#S$.777`’@@T>’@@T>>     1   HH # Kì… 73#735#33533573#735#335335gg hh  …::wóÉ 73#&''67&'67#53667#¤C  " $ ! É 2     c( hìÍ73353353#3#535#!@>Rc×`TÁ((/RòÑ &7'67#73533##"''32655#&'. ) /^## ^# ‘  Si; 6   ÿèôf9@73673#&''67&'7#67#'3&''67&'67#53667# ?  "  s3    " $ N      7&      A )ÿ#73#3&''67&'67#5367#67#:`*2 % "0 $‡       Q cÿèôÈ"73#735#333#5367#'67&'”NN--4a ‘b^% HÈF&F< ÿûÖ›733#&'#5'67#53¤   ›IO!)HñÇ0573#67#5'675#35#35#675#73&''67&'#367t&- $/////V`   ÇEQ-1 G.   "FJïÏ%).7533'67#3&''67&'#'65535#67›?*+   & && ¾    ! %#&& IâË!'-7#5##5##5##53'667'3'667&''&'à//Œ2 i1 ƒ [  ËZHI[ZHI[5 5 &  jÿéñÐ !%)-73#5##53&'#5##5##535335#33535#335­9a7R!!44!!4!U!!4!Ð .. Km// o*B`ÿçôÏ%+CJ73673#3#&'#'67#5367#7'6'&'373#&''67'67#67#j1;>L# ',k  O  #B  ( $@  £    :    €      [ÿçòÏ.2673353353#3#535##67'7&''675##535335#335o0>;1w5 :=""211#È#**!36;   H *OÿêµÏ  73353353#3#67'5#'655_  HHH= ½-??-> D  A '$ #Kÿé§Å ,73#735#33535#3353533#"''3267#'67#^II ) <$    $Åa8?@D 7 % 0YÿìôÉ!'-=CI7#3#53#3#'67#535#'6&'&''33267#"&57&'''6ëss†0=!*/ #  $,5    [  `Ég‹   0  -  1 4  M…Ê$7#3#3#&''67#537#'67#3#5…1,      XjÊ    [}4ÿçìJ73#&''67&'67#53667#{b"  "C 2 *5$3J      0  CôÏ59=A73533#3#&''67#535#73#3267#"&55#'67#735#35#35#"""(*   "$'"ck    EEEEEE¼   Z   !  A ! # xÿõÇl7#"''3255#'65535#35#Ç  !   l` ++-{ÿûÖg73533#&'#5'67#{%$$   U  /4  ;õÍ #)/573#3#537#35#35#35#''6'6'6&'''6f‹93u-=OOOOOO;% "#) %!!+ '‡ $ Í VV "  W       Qÿè¯Ï 073#53635#35#3&'73#3#"''3267#'67#| H$$$$""4+   Ï NN *-6   3! 8=ÿéöÏ+05;733#326767#"&55#'67#5367#'6367#335&'o%  -! - * $   "Ï  H; A5!*H  ^(E[ÿèôÓ#H73#3#3#"''3267#53635353#67&'7'5'67#53&'<^vvs   r KKK!C6  -   %2:Ó=   l  L    .      YÿîòÏ8<@DH73533533##5##5#3#3#3#3#535#535#535#535'235#33535#335^!(%%(!~3>>5566A™E8877AA4;&$$7"Y$$7"Á   E    E  K ' UÿêõÐ"&<Y7'6553&'73#3533#&'#5'6773533#&'#5'67#676767'7&''67'67x<PPb>$- "+ (#Ï       ]   \ ,    YÿéðÏ (,04EY]73353353#3&'73#3#3#3#5'67#35#5##"''3255##5'673&'7&'#735#f'#ƒ57////8€ 7&&&&&q  g%  (  ?Ê!  .    > +CR/   ÿèñÉ4733#"''3267#7#'67#33##"''3255#53567#&ž 5  7 C :7 .+`dd  iiGÉ+:"+B($6>. +ÿèïŽ733##"''3255#53567#2™#dd  ccxŽ : 6€áÑ 7'2'6'&''&'× Np]OC  +  Ñ      `îÏ73533#3#5##535#eddb±ce¹22 ÿèðÑ;737#535#53533#3673#33##"''3255#53567#'7#-4!rT@@::$ 2JN#[[ \\J'-1l  ) %  ÿéów733##"''3255#53567#7 hh    kkow. * /ÿéó‘5Q733##"''3255#53567#33##"''3255#5357#'37#"''3255'7567#R|GN UUXCV''  ..;^P   &) 4‘ ?   SíÑG73#67677'7&''67'67#67677&'7''67'67#53&'736ª ;+  $/ %-Y  $/ %-/9 < Ñ              ÿæóf %7#'6553567#533##"''3255#óÄPa†XX Pf*& %-H   GôÐ#'+JO73367353#3673#3#5'67#35#35#73'73#3#3##5#535#53&'#37#7 EHZ 3366X(+/**++/ +$Ç   $#D ) 6 _    Bð° 3873#3#53635#35#73#3#3##5#535#53&'#53&'367#>(FJ[5599* $2++**/-°' &X" > L    + ÿéèq73##"''3255#Ï[    `qZ  WÿéñŽ73533##"''32655#&'‘<< ‘;  n W R  ÿéô™73533#&'#5'67#^`S%9 ;%"9 : Pr''59jg5! 3ÿëï“ 7&'3#'67&'… ]ÛÛG%&-l)(“  ' 2#%#) +"ÿéò73#&''67#535'2 !'mbMJR S ac"L!*.-&ÿêò•&7''6767&''3#3#"''3267#735#Õ 00!%% ˜I:=  = 96:!) @T W1 _:8;ÿèí‹!73#3##"''32655#'67&'6““$Ûb e4 ‹E @ # 0ÿéÖ’ 7#3#5##535#35#Ç„“€rr€€’@Q ©.x!'ÿéÙ 7#5##535335#33535#35#ÙŠNN::N<Š::N<<}” ” 9&&&a(((ÿèðž373'667#&''67#3267#"&553#"''326@3(1,&#    œ3'& [   ž 8B 5'    'f " }= ÿñëƒ73#3#3#535#535#&'3–AKKcÕ^GGAwƒ%44%?  ÿéñš$73656533#'67#7&'&''r S]P ?e9 ˆ% C<17*i    >'ÿéð—%73533#3#3#&''67#53655#535#)MKKHHb^G G!I FXbIIM…  ("  ÿìï 17&'3673#6732767#"&5'675#'67#¦ {AxU( + A 9<  >*  LI/(?*ÿêÙŸ 73533##5#735#3355##5#*MNNM;;O;;;ƒi00>C(ÿèØ73#735##5##535#:ŠŠbbŠˆˆˆCASS2ÿéî•!%)-733##3#5##5'67#5367#5367#3353535#/¢tv !(AE/BPTZkvv•#" C 0   $\ÿéó¢ %73#53&'&'73#3##5#535#536…SÃX` Dh]]^^gˆ¢  )   $$ÿéï #'73533#3#3#3#5##535#535#535#35#/GGGMMeeHKddLLG“ J K|6PÉ› 73#735#35#6““kkkk›K- ) +ÿéÖŸ"(733#"''3255##5335#35#7&'7'6uM  ƒJ6ƒƒƒƒ  ‚ Ÿ*s  0Œ'<^  ÿèð“373#67&'#"''32655'67&''67&''67#.¤H  $% /A F0,6 9)#" -%>“   +0 #% !  ÿéí“#'7#'66553#3#67&'#67''3#X £¤O   D  zz:.# %G6   ;8 {ÿèõ›#473533533#3#5##535#35#3'66733267#"&5(-...!p!-A../?<&   ) ˆL::L1-+!$   ÿæòœ73#3#535635#&'''6·2@‡/Få3F2EES" !"@*'œ %Z`%=   [ÿéß73#3#5##537#35#35#[„7=[.8[[[[DJ ÿéñ  -7'2'6'&''&'3533#&'#5'67#À ñ¤%+7&'3673267#"&''67''67&'v5',7 , 7  ! °  ¤  -'+ +    ÿèô™!A733#3&''67&'767#53'3#3#3276767#"&55#'665#›330     CqKKe %  G3™     *M  R/+ ')ô¦'+/73533533#3#3#&'#'67#535#535#35#35#-%2&&D. !!W& (C%92222›  !0 ÿéì—873353#5#'67#535#73#3#"''3255#&''67##537#7-Oƒ66  $  5;‡$4®B-"<d  O  !k|ÿèô˜273353#5#'65#535#73533#3#&'#5'67#535#"  =-P011:-  &50‰.¯F '$"(ML#  ÿéìŸ 057#5'673#535#535##5##53&''67&'#367B  %/pn\UU^‰|m "* *%  Ÿ†j '$D  >        ÿèó¢'+/5;73533533#3#3#&'#'67#535#535#35#35#&'&'+&4++11F9 '%=0 (5A**&94444)$''DAAC“  2*   ÿéì™ %7<73#535#535#'&'&'#5##5'673&''67&'#367eljXQQZ,  Õv=j !)(#   ™D        "      ÿèðª$*GKOSW736732767#"''677&''67&'3##"''3255##5#53535335#33535#35#F:(*))83* 1¨    PQ==Q<==Q<<¢) !  4    :9  9  ) ÿçñ¬#)/7373#33#53537#35#35#35#35#'67&'+MHKG$Û<Itttttttt( %`$%$#  ee & # # #       ÿèø›=C767'7&''5'665567&'67'7''5'66556&'m     0…      3P  ›y ƒ!3+ )3, Z3:_| ˆ!3+ &4, $&ÿçö¨.26:73533533##5##5#3#3267#"&55#'667#735#35#35#0%4$$4%§. & 1 (",)+€€€€€€ž  h   K *,VÿçêŸ *73#535#535##5##53&''67&'767#gijYRRXƒo_  %$  HŸD  @!"     ÿèò¦)-1573533533#3#3#&'#'677#5367#535#35#35#35#,(0++%AaUBLM ;K[I$(:00#yyyyœ I '# I+ (  ÿêò¦ ,0AGM7&'73'67'3'67#&'&''63##53##"''325''67&'¿M?, .G A$    ,PPT¾W   # % s! !k F   4(  '%'     ÿåòª159=AEIP7#535#5#53535333##3#3#&''67&'67#53'35#33535#33535#33567#`=RIIKKTg„3 !%+%&L 2" 8I77K9„77K9@@TBC H5''    b! 8 F  ÿéò¥/37;A73#33#&'#"''3267#'67#5'67#535367#35#35#35#3&'#/ NQ .   5 A 4 # $38<yyyyyye H¥L   "   L# $ # %ÿèñ™ !);@73#535#535#3353#5#'665#535##5##5#53&''67&67#ljiWOOXQ  5,Ñg _ "((  + ™D  "1¯G   (     ÿèé $,073'73#'3353#5#'67#535#73#3##53#=#j1  8K 9-Ukkjj rN‰ #1¬D4 (E CB  ÿèéš%)1573353#5#'67#535#73#33#537#537#35##5##535# 6+Oh42†!$*$DBBB„1±G6 *?'97C C( ÿæóš&,28>D7367'675#53#5&''675'675#&'7&''67'67'6+L >Q/, 0:/9 +.!#":n $7 ;9 .F HJ 4b eš:  H           9     *  ÿéð§ -15973##7#53737337#37#33#&'7#'67#735#35#35#Ñ"$ž!#10H00G33‹¥ $%D , $(§  Y   @ # # ÿéò¢"*.26G7&''333267#"&5''67&'3#53535#3353353##"''3255#z #  )$ ¢ ã##5"%¢¸P U¢        &"""0   ÿéõ¨'+/DJP73533533#3#3#&'#'67#535#535#35#35#3533##"''3255#'67&',#<##!!>A, 3 3/ (:=""#6<<<<111  1  ] œ    !   ) :& #     ÿêô *.26:>B73673#&'#5##5'67#53&'735'635&'35#35#35#35#È K 3J*( € 0&L. CUA5^#G55G99G55G99    MN  Z  , ÿäí¢%-59>DJPV7'6553&'7'67333#"''3265'3'673&'73737&'''67&''4': UH      V& 59& $mt‚ g  Y  #.+  !4 Q     #   ÿëæ¡*06<B73#35#535#53#3#"''3265#'67#56&''&'''67&'m !77ƒ::DJ7373#67&'##"''3255#5'67&'767#3&'#35#35#'67&',< R6   @   B   ,'X !pppp x ”  8  8   + ( !   ÿéé¥#'+D73&'73#3#3#3#5'65#5#5#3353#"''3255##5##77GGMMMMW¿ UBDDDDN)P  )O(¤    4    (  .ÿèô¥ 3773#735#3353353#'67#53#67&'67'535#-¤¤0©ÕÕ, -%1¡F ! S  ||¥/*N))  +   E  ÿéò¢#'+?73#3#&'#5'67#535#53635#35#35#'3353#5#'67#535#Ÿ80@0  +;.#LLLLLLe 9-¢S   21  S !   8$2°F6 *ÿçóŸEc73673267#"&5733'67#3#33#"&''67335#53&'767#3#3#&''67#537#'6+  P[ * %%  "!   /(  >O8*-# ).Ÿ   $    # 4 N%       ÿçë®!6<@DHLRX73&'7'7##"''3255#'6'3#3#7'75#535#'63#735#35#35#'67&'D    [K ").+d ]¬¬„„„„„„ 7 0Z))('®   # !    U<   ÿêöªCTX\73#3#53&'#53&'37#733#3#3#3#3#;667##"&5535##"''3255##535#35#G* l( #JKKHHGGGGDD .  HH  77777ª  3 *  )    i V  #n,ÿæè¬48<@DJP73#3#353#5335#535#'6'3#3#67'75#535#3#735#35#35#'67&'B#//d00 hU"'+$"¢¢}}}}}} & "g%"$$¬        :U< ! "   $gÖÇ 735#53#535#)˜š¯²˜ `&UéÇ7#32767#"&5535Ж8D NF‚ÇB  [ƒñÏ73533##"''32655#&'ƒ> >  £,,_ Z 6ðÑ+3773673#3#5347#53&'5#35#"&55#'67#3327535#W , GR;³8OAF7! !eÑ  ff - 8   D ÿí—Î 9733533#537'6'&'3673#3#67'75#535#53&'5!€'O  `  &900";F7..6Î:::3 ?   0ÿèï\7&&';*X2 .\*\JO ÿèóÐ $73#'63#"''32657&'''6N˜£-A Di %Ð ,‚ _)0 2'5$ + ÿèóÐ#)7'673'673#"''32657&'''6E&˜  Q Di %–#*3 ‚ _)0 2'5$ +ÿêëÏ0733673#5##53'&'3#3#67&'7''67#v  2®a0   %Ép38  FPBÏ39&(;, M$   # ÿéöÐ28<@FL73673#67&'##"''3255#5'67&'767#3&'#35#35#'67&'QmG    :   A    F?U jjjj$ "ƒ·     :-  );    $1/)  ÿêòÐ8>73733#67676732667#"&5'675#'667#7&'/œv!+.&6=*3C " 5+ .‘ ¥++!     $ $  EHC>>  s'í½73#3#3#535#535#xp.**3z3''.½*44* ÿéôÏ ;73533##5#3533533##5##5#3#3267#"&55#'667#YXXY+c//c+ÚC$/%% >»$$3 9#%  ]óÍ "(048<73#'63#53#3#'#335357&'3#53535#35#35#Ä"'#LJ$$J  – #"Í  4g)7   -666%%%%%ÿèàÄ 7#'66553#5#3ÌŽ"·ŽŽl B5 2"]gT2 ÿéôÃ7'66553#5#&'7#3B#¯6ORJ‡‡i C3 0#]hD(/PG43ÿëõz73333267##"&''#'67#536rA  -B 8*+z P " EC6 _ÿïôs73673267#"&5_:2 7B/ :*s+) %  8ÿíõ&7773267#"&55'75'75'6Ñ $(PR]_ *  4@C472O      ,ÿêö"7367&'#"''325'3'67#‡ ! 2 JC3 ./  5D  X8,+ÿéìr 73#"''3267#3#735#+Á®ooIIrd%PD Bÿæïr73##53#67&'7&''6Vƒƒ#7­^,. ?Fr-"  ?ÿèé† 73#5##53&'&'''66• GzC>#& 9 +† .- ;5== <ÿçî‘73533#3#5##535#35#ÿòô…733533533##5#3#5#53#3X"##J•e""$$$$66I\#Cÿéèy 7#5##535335#33535#335è}HH44H5}44H5d{ {-H>ÿêëŒ %73#53&'3673#3##5#535#53&'G B *.PHHEEJ)Œ #  && óÆ733##"''3255#53567#R##  -- =Æ< 8?ÿèí„'/37#"''3254'7##53##"''32655##53#=#  Fh   G8„' +Š›o kXTO &&7ÿèòŠ173#3#'67#53475#53673#3##5#535#536i $ ] ''Š *  ==8ÿéõˆ#.7'63533533533##5#3#5#5#'#5'6` !9asZV ˆ''''??O`...A YE:ÿéê26:73#3#"''3255#7'7&''75##535#535#'235#335ß#+EEQ  = -719LBB!%R6//B2 /6  " BFM735333##3#3#&''67'7#537#535#5#5;5#33535#33535#33567#E?EEJas 4##7 #) &4*D?,,?3r,,?3x22E79 E•'     '5 =jÿæó(733533#3#5333#33#"&''67ƒ**3y&++ '   )5  &Cÿèç˜"*.273673#53'35#&'735'6#5##535#35#p( )¤& 88  @5 ,mmmmm˜ BB ?$  $$  /P P % jÿèõ›&*.473#3#3&''67&''67#5'635#35#67#ƒY``BC #"   AAAA  7›>    9 ) $ 6  sÿæïŒ!9?733673#&'#5'67#53&'733#&''67'67#53667#§ %  B " %  '  Œ   1    .iÿèô˜#48<73#&'#5'67#537'23'#35##"''3255##53#735#Ø C P +0 + ..V  U::˜    2 8 % %MQ9r ( T2'D 8'9Ä«73673#353#5335#53&'Y  ;"|#=  ªJ;LL;J ÿéí… 7#'66553#3##5#535#í· %šEOOKKA…7/" !@%77ÿåㆠ73'66'3#735#53#5#535#T# 2XUVjaaU†O 79Y#"Ž#ÿðñM73533#3#535#,JNNgàeJ2ÿçô•CI73&'33#673267#"''67&'#7#"''32655'75#535'67&'w8DA  $ ( ;(* 077" 5r  •  *$     cÿéñÆ #733#537#537#37#37#3353#5#533up Ž"+-*2/#k"Æe"S"  =gXXXXi:ƒ  $$ $ÿéõš $73#67&'#7'53&'3535}FE V":7%! K1‚‚‚š X  4/  ‘# ÿèô#173'67#'63533#67'675#73&''66ŒQ  B o &.( (0 &  !&&3 9 ($!+ ÿåô#'+/73#3#3#3##5#535#535#535#5##5#35#35#Ê..\ffbbZ**—*)))=**""'ÿèäŒ,7#"''3255##53673#353#5335#53&'ä  ¡D   "= z <$Œ‹  t’¤   -01- ÿæóœ5<73#&'#5'67#535'23#&''67&'67#53667#Ñ %.gL!0 ;'"8 *#JcLW{) D)$-H <%" 9I) Kœ L     3  ÿéï"473533#&'#5'67#7&'''6&''6767&'$!!   ¶!(B *+#q  OS%./71 < 00  ÿèå†.277'7655#'65535#35#7#"''3255#'65535#35#s 0 ////´  86666†  ! &+B*=K! '*C*=ÿçä‘ !'-73#"''3265'3#735#35#35#73#'67&'Ñ   ·iiCCCCCCtlC  ‘‹ ƒ|W55Ii      ÿæõ›EJ7#67327#"''67&'#37#53#3&''67'67#'66553533'767ï<    k \+4   % |  †+ + +.4   ) "B U  ÿéó‘07&'3533#&'#5'67#73#3#3#535#535#©  …$    "]}611<@114‘   PK ##((# ÿï~73533533##5##5#35#35# / /%////zxx""V"ÿïñ¡373673#3#3#3#3#535#'67#5367#537#53&'X3:oglŠ…BR¶P= *@J  š    -0'  ÿéõ 17;?EK73673#67&'##"''3255#5'67&'767#3&'#35#35#'67&'Ka>    8   C  ;8Q hhhh # !ƒŽ   /  .  % #      7ï—!J7#53#3#67'5#'67#'736573655#53#3#3267#"&55'67#'B,`"& %   O*a%)&     †         S0îÒ,047373#'677#3#3#535##"''3255##535#35#fVa   W$4{5!a  IIIIIÆ     ; LÿèôŽ !=K7#'66553'67#'6'&'73#353#'67#5335#5363&''65é´ ˆ2% M8' # "5= #  # 2Ž;2& "E  "   ', ,'  %ÿéò˜%7;?73#3#3##5#535#53&'#53&'367#'3#3#5##53635#35#³."4++++3!+ +h)BF2 //22˜ '' F9 :F ˜ 4i ÿéø›048=AEK733#67327#"''67&'#7#5'275#53&35#35#675#'3#735#7&'©20     --.  šy>>>>>``<<¬  ›  ?I8 ) , ‚0  ÿèí¢!%)B73&'73#3#3#3#5'65#5#5#3353#"''3255##5##6>QSLLLLY WBBBBBM)R  *P&¢    >    (  -ÿèñÐ 6LZ73#5##536#5'67#53&'735#'273673#&3673#&'#'67#3353353#5#p_”C , 87 2Ž_hR: E N=P?>¤ÐfUUfX         *''2 ÿèõŸFf73673267#"&5733'67#3#33#"&''655#53&'767#3#3#&''67#5365#'6# )  % ic' (("#   .7  L]=(+  $), Ÿ    %   !, J  (        ÿçòš .DJNRZ^73&'73#'67#"''32654''67&''67&'36533#&''67#7&'3#3##53#=#NQ,           ?  |@@AA@‚  '  5    ($'#!"@9  $ D ??  ÿèö›)-15W]c7&''3673&'73#3#3#3##5'675#5#35#7673267#"''67&''7'3'&'''6Ñ  }  #$+((((-`  ¾6      E 8 ›  &     _3   g !   %0.-    ÿéëµ!%)FLP73&'73#3#3#3#5'65#5#5##"''3255#'#5'67##53&'35#<8 VSIIIIU¾TAAAAA¬    j  IWEJJ³     9   <  ( "  BQ& ~ÿéò–7#53#3#5##533'>&'¬'m3*2 ; †_OO_"5  Tÿë÷Ï,MSW[_r733#3'7#73267#"&55'75#'6553673265#"''67&''7'37&'3#3#735#276777'67&'{''-       t     cFF@@ % Ï       G=- .7R%*( - '6HD4  Z ) !     ÿéî£#'3T7#3#3#7'2753635#536735#35#73#535#535##5#3#"''3255##5##535##5mDD""%21  &2233TdeTPPSq#*  *$“+ +  )&0a EL?  ;& 99,;†ÿèñ˜ '73#735#35#3533##5#'67#535'6Œ\\8888  ˜B( # %%11  dÿçòÑ"BF^d73673#53&'3#3#5335#35#73&'73#3#3##5#535#53&'#37#3#&''67'67#53667#–)* '):.  *M * ( # )+Ñ   + *aGD  W    )  ÿçõ¦ 59=AY_73#735#'3#735##367#533#7#5'635#'65535#35#75#73#&''67&''667#Š[[99[[99Á¿B9N $5%%%%%%\5      !¦( ( ! 19*! (;D  V      Sÿé¿Ï.26:JX^733#3'67#'65533267#"&55'7533#3#735##"''3255##53673##5#7&'{--4 B  *    GGAA""8  /   Ï LA. 19V    &! 7 &=J$   ÿðêÄ 7&'67&'67&'6GVXÄ7(/3 ;2066(.4 :2/77(.3 :00ÿêÜÊ 73#'3'6573#È›"LÊÞÙYP2 0ES¹ ÿæâÏ !73'6573#'3#7&'''67&'73 *—O/  €  M  ÏsH.(;sæáܪ%+ -$4 #*$* ,# ÿêõS733267#"&5'3'6673#®   y <SJ  L2)  "*b#–ÜÑ 7&'67&'67&'6E O N Ñ   ÿññÁ 73#3#535#Î^hâf\Áªª%ÿññÆ 7#3#3#535#ì³  ¸ÌŒŒÆ-T.Õ.ÿöòÅ %73#3#535#'67&''67&Ñ`gáf]¡  –  Å©©\$0I$$0I$"ÿîðÄ73#5#3276767#"&5535#"±†=%  PIšÄoX! &  q;ÿðïÁ73#5#32652667##"&55335#¸ƒ2 N-ƒ¤ÁrO- ‹!<$ÿòñÁ73267#"'&553#55#38:I PD ®††]M # ¶q Q>ÿïòÁ73#5#3265267##"&57#335#¿—9 S0UAAVBÁr M ) ¨AAA7ÿíãT73#3267#"&5535#Dy 27 A<ylT5-hòË'+73267#"&553'#33267#"&553'#3™)% Z44¢)% Z44  M;+  M;+"`ÞÏ73#35#535#53#56j%==”@@DX¼*Ï eaJëÎ 673533#3#3#'67#5367#5355#7#"''3254'7##5-//*,7> "  )#&-Ó  0À "  $fwÿéîÑ<733533##5#53533#37#3#5#3#"''3255##5##535##5u0##™ ///B006PG  52EOÑ((!-2  II:L.?ôÏ/3;73533533533533#3267#"&55##5#'67#5##5##5#))  @'  x³µ '' .0 ó¬!7367#53#3#&'#'67#735#35#J-ŒGw6 &%7"- %4:ffff\EE !G %  ø¥ 73#3#&'#'67#5367#735#35#2œ]‡5'-H) ) 1B*vvvv¥I  , ' RÿéôÏ4:>BV7#'6553&'73533#3#535#3533##"''3255#&''3#735#276767'67&'ô~A>9B  ?:: ' ¼MA2 2=Z '%%l  g1(    eÿéöÏ!37;L73#&''6#"'673#&3#67&'7&''735#35#7##53#"''325}% U )g?,   `;   Ï     Z-   o8#¡r ÿéí¾73#3##5#535# ÀVccccV¾DkkDÿêðÅ73#3##5#535#'6'&'ÇXeegg[¦   ÅdQQd ) "$ $ÿètÄ73#3#'67#5365#b')*) #'('Ä9 M"A4ÿçîÏ-73673#3#'67#535#73#3##5#535#536% % 0-00, 2/22$$$ ¥7;& "27<7__7sÿè÷Ñ 7&''63#3##5#535#¬" ']&//00$Ñ   ,&JJ&+ÿéãË7&''67'6767767&'¹BN,)$('!$&6;=1 I(0 #6$A6$%[/ qÿíç½73#"''32765#qv  a½ 0.jÿéëÏ (E73353353#5#77&'7''67'6767767&'7''67'67676ONÃJ    o     ²§ÄħÉ ;&  % 42=$  % 40ÿèõÑ9Vt734733&'33&'73#67327#"''67&'#&''67#7676767'7&''67'67&''67'67676767&'..  ( T  ( ) 6" ),™  #  W "'  H(ab'     #    $-k +  '   ,8ÿëî›73533#&'#5'67#CDJ@. *) +;t''89ca3  67ÿèìž$73533#3&''67&'77667#535#CGOOB!' 2#. )  v;G…'       ;ÿèî!73#3##"''32655'67#'735#IŸ)// ';?%G Db*? -'#&*?ÿêîš73##5#'6556Í 2Aˆ4@Gš ]] ,'!$NBÿéê–%733'67##"''3255#53&'767#M D  6   FJ m–C  >  0ÿéò”#7367#53#3#3267#"&55#'67#B?:“DS;  E =;]B HK;@ÿéî¡"73673#3533#3##5#535#'67#C/^i4::IIRRL#‰  %%?ÿôó‰7&'3673#7&'=h5´  ‰))-&}9EB5‚%..&4ÿìñ¢,073#"''3265#3#3276767#"&55'635co dKA&  G4.¢N8="  Z%Gÿçíž733#3#5##5335#XXMs:&ssž eeD1Kÿèß• 7#5##535335#33535#35#ßl??++?-l++?--z’’7$$$\%%%3ÿèó£ $*735333##&''67#53655#535#33535F>D<; >: 33;HH>R002'($0) ' 1ÿëôœ(7367533#7'6773673267#"&5F 0: _&   x‘5F ˜@ =  3ÿèï¤ &7#5'673533##"''32655#&'f  #M M  ¤„a /((_ Z  6ÿçî™17&'32767#"&55'675#'667#5373#6¾  )!   3)+lF™  ?  AG2;&%49ÿéîŸ 7#5'673533#&'#5'67#g  ,3*  #Ÿ‚d '&&2-``*11ÿèô¢%*73533533##5#5#3&''67&'#367<&=&&c&v=/• /9#%0 - &(("   1ÿîóŸ)73533#3#535#7&''6'&''6CCJJYÂUC| `  4kk  w "+ !7ÿèð¦=73533#3673#33##"''3255#53567#'67#5367#535#K0,, ,< 4EE  LL0) 8 ]@0š      8ÿçò¡=B73533#7#"''3255'675#73533#3&''67&'#535#67;  I)++'    )) ‚%4  (+ *      .4ÿéò¥#'+73533#3#3##5#535#535#35#33535#335?LMMBBSSWWBBL00D/s00D/š UU13)ÿêó¤97&'3673#67676732765#"&''75#'67#°  d'w]% ,. $23% &8#. " + 2 , $¤ "      !cO2,D.ÿèôŸ473#3#535#535'667#'7#5333#"''67&'×00*c&**.k $#(?!">?8C  Ÿ&((#R '(-  ?ÿëéœ$,073#3#5##535#5#35#"&55#'655#3327535#?ª8/v05`/v  ZvvvœŒ ŒP    `9ÿéõ¤3;73533#3#535#'67&'#3&''67&''667#K?DDR±M? ! ]"!+O+6&", ' + C–&         6ÿéñ£%273533#&'#5'675#&''67&''6CGKK#2 .) 3!G l  Ž5+"CA"&9   !  <ÿèí§"',73#3##5#5367#5335#335367#33535|U1??_ +%++=,i#*<2: !§]&& ]'; & =ÿéï¡#'73533533#3#535#35##5##535#35#H#0##.².#600[`````6\ \!04ÿìö¦*48<@D73673#&'#327667##"&55#5'67#3533&'#35#33535#335@7 [- 7  & 9  '(!% & &&8$\&&8$   F   A ,32ÿèòž%+73533533##5#5#&'''67&''&':(;,,a(v;\  qf    }!!!!::(((  "4ÿêñ¢"'73533533##5#5#'6553#&'7#3=&8))^&q8‡/ , 8#5``’S $6 #% 5ÿçïŸ(73#3655335#535#53#&''67#56u +/!!"6=3 <; :6œ\\i!%$f6ÿéêŸ  &,73#"''325'3#735#35#35#73#'67&'Ö  —UU......Y] ?  Ÿš  „];;Vy   <ÿéö˜+=B73#67&'7''735#35#7'665333#"&55#53&''67&67#."$ % %#+33((0)BI­   5AA1 +Aÿéï¦37#67&'7&''53'735357#"''3254'7##5‘<   ***p  '•_2  Ÿ &>67 ²5ÿèò¦/473#35335#535#53#3&''67&'#535#5667#r ""51##(;DC$-$&2 - HH;X¦ HHP K‹ &ÿéò²#'+17=C73533533#3#3#"''3265#7#535#335335&''&'''674'&9)9€•—   ›+99K)'  B  6—7 4 >e   ?ÿèô§ $7<T73#53635#35#7#'665333#"&5#53&''67&67#'367326767#"&5Z$N****| ; - R   "w#" § NN ),)(  /!         Aÿéó™B7#67'7&''5353573#3#33267#"&55'67#'7367#Œ8   &&&V  # ! ,™`7    ¦'76  %" .)*ÿçô¥J73#&''67&''667#'3533#3#3#3#"''3267#'67#535#535#¨>   #o $$",/    % ¥ :! "%*(/ (87ÿèï¬#'F73#53'#"''32654'7##53#735#367#"''3255'7567#p&b(  #bQQ--Z  , >¬  0 3¥¶+ (   4ÿèñ§#'+/HM735333##3#535#5#5;5#33535#33535#3353673#&''67'67#67#I>FFJ¢E>,,?2q,,?2w22E78o$ $$8(/ )f B ((7 $     :ÿêô¤ "5K7&''6'#"''3254'7##5367#53&'733#3#67&'7&''67#¬  )!  G5 C( f wA  )- ¤  ( , ±V    3ÿèö¡ $*06<B73#5'675#'37&''675'675#&'7&''6'67'6™M ;ZK,/ 0-#- + )9j "585 'LM> 2b c¡O =      B       9ÿéó¤-1R73533533533533#3267#"&55##5#'67#5##5#3#"''3255##5##535##5?   6 [b=7  %!37“   ## *,  ::/?*.ÿéð§"&<I7#3#'6553&'75##5#35#3353353673267#"&5'67'533ë6/ŽG1+   4 )“1/% '0G #!(     F 5ÿçí#'+1773#3#3#535#535#735#33535#3355#5#'67&'E™#((2·/%% 00B1s00B1"111 # Y% #I, ( -!   3ÿëó¥$*.2D73533##"''3255#'3533#3#535#&''3#735#7677'67&'ž0 0h***#[$*~  h]]99 0;~''i  e'(2'   8ÿîò©#)/?73#3#3#535#535#735#33535#335&'''63533#3#535#G—CEEP¯MCCB00B1s00B1 O***TºS*©@  ( ! I   ,ÿéõ£4:@73533533#3#535#35#35#35#73##5#'66556'67&'8 # f ######Ž  ?  ( <  ‘RR22e pp3* +6.€    6ÿèò¤#3AGM7&'3#3#67'75#535#5'673'67#'63&''65'6'&'h  :"" '1*## "T4 (    $0 6¤  / 2   .&" 0   9ÿêé¥#7;A73533#3#3##5#535#535#35#35#7#"''3255#'65535#35#;###""''" #----˜   # !!"!”NN.,W– #( )2K/L:ÿéö¥28>BF73#&''67&''667#'33#"''3255##537'6'&'3#735#¶0        X' @+- A  ..¥ 0# ' !02p  [x‰+    BC% 2ÿçõ¥!%)-17=CI73#3#3#535#535'65##5##5#35#35#35#'67&''&''&'Z†»u&'f –    ¥!   +!!!!!!1 6   8ÿèõ¨(Pg76767&'33#"&55#'6553&''33#3#"''3267#735#5'67&'767#67#53&''67&'¨       3TJ/3   6 ,   6Q =Q  ¥    3, 0  s    3ÿèð¨#'+/5;73533533#3#3#535#535#5#35#33535#335'67&'A"7))0UE›DM'"l711C2u11C2^ ,&U" !š  KK ; )     3ÿéó¨$*08<@7&'#5'63&'3#73&'7#33533'67335#5##535#35#”&. ^ 6 ; >šš       `````¨    6    .GG # ,ÿêñ£ ,2:>73&'73#'6553'#373#3##5#535#536'&'#5##535#™ TDM''W &##$3  $3- (28>-..0Z[9(8ÿéñ¤'/37;73533#3#535#&''67&''6#5##535#3#735#AJIIS¹SJ  h +yyyXX44™ ,,    3[[D5 $ 1ÿéð§!'+/48Lf733#"''3255##5#'655'6367#35#33535#73573#"''3265#'67#3533#3##5#535#'6Y"   ,U     !!&& § x !4# .8 Y/$ 6 ((  2ÿèô® 473'73#3#735#3#735#3#&'#5'67#535'2™™ssSS//2’’·T  P* h ® N0! 4     4ÿçï¡/37;RY73#&'7#'67#735#35#35#73#&'7#'67#735#35#35#373#&''67'67#67#?L   ++++++HP   ------u?d" :$ ;'2 1g :¡P  8  :P  8  6       .ÿéò¦ "(.FLRX^733#5'6367#35#33535#3357'6'&'3#3#3##5#535#535#&'''67&''4'T+O   / [  & U"%%!!  D @  ¦  XN 56_   11T  3ÿèû«/37;AQW]73653#3#5367#35#335335'3#7#5'75#35#35#75#3&'33267#"&5''67&'Œ'+.-a!#   ¡I l       `  › @@=5n'#xHJ  +  / 5ÿçõ¬ =AEIMQcgk7&'67&'67&'673&'73#3#3#3##5'65#5#35#'3#735#3267#"&553'#37#3L   )  (  +@#xQQ// &" \4$¬         y #++Q( U   B/! 1ÿçñ¦#W[_cgk73#73##5##53#5##5&'7&'#3#673267#"&55#3#7'5#'6553'75##5#35#335335=OOZSS '¨,5 g 66.0    2((% G !!!2¦!%%$ &   *    6# "3  3ÿíõ¦'+/37MScio73733#3#537#35#335335'3##5#535#35#35#35#3#'3#3#67'75#535#&''33267#"&57&'''6‰&(*([!$   œL7 5ddP5 ‹     F  K ™  :: 71¥U@ % ' "     "   &kíÎ73#3#5335'6Þ((1w HÎ3;wd~ÿèñÌ733533##5#'655#53IJ66J8 /::ÌTTT{{H.); ÿéóÏ73533533##5##5#35# 1\11\1E\\œ3333  qqÿçòÄ73#3##5#'67#53655#335#À'66H 62 =?,@FÄFooN# B /1 FråÐ7&''6767'ª LU)6<º" .+'ZëÈ7#32767#"&5535Ò—8DPE„ÈA  X^ëÎ73#67'7&''67#53&'„Z€38GO@fÎ      ]ïÃ73#3#3#535#535#ÄYOOeÞeNNWÃKïÏ$73353#5#'67#535#73533#3#535#% B7R6660p-6Ì"|' ""..ÿéöÎ7327#"&''7&537&'åh : E UV$ “7E+:LB&&?7ˆJ73#ooJÿûa 73#'6bbm5ACaÿèãÅ73#3#"''2667#735#µš¯4²–¡ÅK)G"0O%ÿôïÆ73#3#"''3267#735#3#!³—« ­ ’ŸÝÝÆA4 C¬ÿéìÐ#'-73673#3#"''3267##5#735#3355#7&'o  Ð B6 VJ*$C &Leÿè÷Ï!&73353#3&''67&'#535#53367#¥22 !& & 20 > Ï?3E'    "E3lÿéîÊ7=C767#735#53#3#"''327'6'67#735#53#3#"''327'67&''&'ÕOCG[DM  $*1OP CG[DM  $*2b  b  4BA\("  BA[)"  1    `ÿæôÑ)-1767&'7'3#7&'7&''675#535'635#335˜"% 66# 5B"445!!3$Ñ"  K#  %Kn''' ÿèˆÑ073533#3#535##5##53#3#3#"''327#735# 433&`&4zUEE\FM  O DJ  ( ! , $* WÿêóÑ,048J73673#53&'3##'3265'#"''3255##535#35#73#3##'3267#'67#„ " %–$f  2  """""C[‘ 6 : 0 4Ñ  (L EN  _ $ !>#3 , "ÿòÛº 73#5#535#535#&µ¥¥——¡ºÈB>ÿòíË 733#537#'77#Z t 8ÚŒz†hË <@@ÿéôl%7367&'#"''3255'67'&'z$ +0   (04+Jl+  #&  "  ÿèóm &73767&'#"''3265'&''6t #<   :  ?-$ 7k  "3F Q ÿêòn"8E73#3#&''67#5365#'673673265#"&5'33#67'd0!  !K     n     "  )  c1 \ë7#5##5ë°##w0ï„$*77677'7&'#5'67'67&'''6*   () r  "      )   ÿéôÐ:@DHN73&533#676767327#"''67&''67''67&'#7&'3#735#'6 ML  # &  €¸  ˜QQ++G,6;ª   $7!     8   HJ&F  X šÏ733#67'5#53i  ÏFN  ]?ÿí¬Î 73353353#3#7'5#'655L  QOOH ½/@@/A @  ;%# "Jÿþ¡Î 73353353#3#3#3#535#535#P  OU! V#!Â3??3DGÿýŸÏ #73353353#3##53#3#3#535#53N Q@@ R "V"Â(55(8!Lÿé¬Ï*.273&'73#7&'7''67##"''3255##535#35#L%'3 #  T   +++++¸    @f  (|#3=ÿì Ï /73#53635#35#3'73#3#"''3267#'67#j!M ))))$"3/   ÏPP )05  4 &1Dÿë¯Ï ;AG73353353#3#276767&'7&'#"''3255'67'67#&'''6OVX*       K6  Â++1 , &  S  Kÿê¦Ï %)73353353#3&'73#3#3##5##535#K[#!YMMMMM(((Ä** 2    B B'>ÿçøÌ ?^73#735#35#367#5335#53353353#353#3#&'#&''67#367&'#"''3255'67Uˆˆeeee&502;)+=7\h$ :  $T    ',!Ì>& ! _            ÿëôÌ#)/7&'36732667#"&55'67''67&'m 3(0>   &" #,² Ì ,_,_ m1"% j90 1+,3 5*ÿò€ 7&'33267#"&57&'''6Z     F  Q €%F  E # :ÿïöš"7&'33267#"&57&''6†   &k  x  šh $ i(0 1'2")ÿëºd%7&'3327667##"&5''67&'f   "    dA # ?%  FâÓ73#"''3267#'67#'67#'6LŠ   2,  :4 "ÓV =7*$-2%(GðÏ73673#&'#'67#&'RbJ9BL CLX­0@A1)   EñÎ 73&''65'3&''65›#)+ 5^  0Î#9'' .( % $5PÿîŸÎ7373&''67&'67#67#R$    £+J.  $'E )-ZBíÈ73533##"''32655#&'Z_!! _  ­> 9 9ÔÐ733#535#535#5'6367#T O6ª—––Ž 1F CÐ  ] ! GðÑ)73533&'73##5#3'66#"&55332[;  "a[%  ´  ±  WW$ 3/AñÐ 87#5'67#"''3267#53276767#"&55'753753G  &ª   " %93 ÐgQ 8 730  1$3HÍÐ 73#53635#7&'¥ -šVStt   ÐVV\2C  9ôÎ-373533##"''32655#'67#53&''67&'&'{E   EK G] ! !s  ® H C*     EôÐ !7#5'635'273#3#535#A  $HDD %MMC’=HÐ^E  "   DöÈ%+73267#"&55#'6553#7'75#4'Î 0gX$&.'"•Èd   V)! 00D I@åÏ"&73&''67&'67#5367#73#735#@2  ' ' # PQQ,,Ï    ?8b?CêÄ"767#53#3#"''3255##5##5##5iZÔd` +$$—  > )6666BT ÿêóÏ#06<B73533533#3#&'#'67#535#35#3#"''3257&'''67&'2B44?=& .9/(><2EBB    Xld  ¶$ &'$$$HY  ?" # $ AèÏ73533#3#535#35#33535#335]aaN¬L]#::L:†::L:½YY555íÐ 7#5'673533#&'#5'67#?  %%?D=,#" )8ÐlN ' &!%JH**F šº73##53#67&'7''6X;; H  º95 JÿèôÇ $7#'6655&'36533#&''67#ïx u  J)30( / 5)ÇSE4 2#_! ' %1F 48HMÿé­Á7#5##53'>&'¨/!   Áš‰Š›'O0&  #*0 aÿêòÏ '73&'73#&''67&'7673#5#533a?>‘]    !p]¬   ‘ }k 1óÒ$)/57&'#3##"''3255#535#5'63&''67&'~26 ,^^   YY. K]& )m&$Ò       @  FõÐ$:@7#"''32654''67&''67&'767367&''66''6\   "   T   $ ,#'  Ð !      "    &.$# Iÿé©Ð73#&'#5'67#535'6ž    'Ð, if#/& @ñÒ&,273#7#'6'#5'63#"''325''67&'€cV  /  $j $^ Ò  $iL % >  $ 3Ïm"7&'33267#"&57&''6z   Xf m5 ;' DïÎ+73533#&'#5'67#73##5#'66556)++  #Ì #/X*  8² > $  =ôÌ.4:733#3##"''3255#5373&''67&'767#&'''6?**40  2/F^ "  I  = Ì-  ($2   (  XEìÐ 73533#3#735#X1QQC†``@K) 4ñ©173'67#&''67#3267#"&553#"''326=7RG.  Ÿ. *$ R   © 5*  :L)  ÿìõÍ#'+1EKQ73533533#3#&'#'67#535#35#35#35#&'33276767#"&57&'''6&d)).7! -D. (6+&9dddddd1  " ; ~‰¾M M.-* +  %  Aÿè›Ï73533#&'#5'67#V   ž11 wb(5F[FêÓ 73#"''3267#'67#'67#'6yd   ! &!  Ó VB8*%.2& )@ÿëšÊ73##5#'66556  0   'Ê192 7E9'íÏ"&*/73533#3#&''75#535#35#33535#335'#6]__L Rc_LL]#::N8†::N8)Á N N ,,+  ÿìôe *06<B7&''&'33267#"&5'332767#"&57'6''67&''&'¹bb   q   Z  m  Ì  ` e   G  MG  @$ $    @ïÎ=73533#7#5'75#'673#"''32765#'67#'67#'6" .oX  9 5 "   Ä -' % 'V  6F8)  RÿèÉ73#3#"''3267#735#R<$(   (")ÉJ'M#3K&>ïÑ$7'673#3#3#535335###5'6J%#2…911>™!:  )Ñ %>>S I: -,Íy 73#735#33535#335-  11E3x11E3yM.,_ÿïïÆ(.47#3#53533#3#&''67#53655#'6'&'ëy} (((37     ).(P 9Ƴ×0    @âÏ"&73533#&'#5'67#73#735#35#35#,''  !*obb======² ?A$%‚[:9 -ôÐ'-157373#3#3#&'#5'67#5367#537#3&'#35#35#Uchaj…,! – ,>4>O3gP qqqqÄ   /2 B & GÿéôÒ <73#"''3265#'6#55#353567#533##"''3255#pr j \UD33hXh…BB  XÒR: == d   7å¨73673#3#5'67#35#I m~ |• #7;pp’   9' 88ñÐ  177'67&'73##5'67&'73##"''3255#'6C! C:NNX  8=\   , Ð     K9 "  5  1  6óÏ9=B73#&''67&''667#'#3#327#"&'#67'535&'# A    %'%'$ ! A#Ï (      $3$#  †6  .òÑ048<7#673265#"''67&'#'65534'33&'73#3#735#ìA      ev  ¥[[OO++º&$ ./' %7  "6Pÿëðz73#3#"''32765#'67#53&'©>\R C $ +&Bz 9 (;  7òÐ"49AE73533#3#535#733#"&55#'667#53&''67&67#'#5##53# 4..$a)4É    Z   ( ,L __½  T     %%+2õÏ1SY_7676767&'7&'#"''3255'67'67'667#5367#"''327655'67&'''6Ö !   !     E€ ?V     AÏ  %  "    " 1 *(    +ÿíô+ !7&''&''33267#"&5''6×  ;    ( +   " &  6ëÌ#'+/5;7&'733#5##5##53&'767#5#'#35#'35'&''6) B„!@.*6  gy.**B.>*z /Ì    k""k  9  1  #  )òÑ $6HM73#3#"''3267#'655635#35#733#"&55#'6673&''67&'#367q!+JKO   < 5#9999§  b     ÑD   P*2 $ B"  ( H     =íÑI73#67677&'7&''67'67#67677&'7&''67'67#53&'736ª <+  %2 &,[   $2 &,0: < Ñ  &  '     ÿéö£ -39?73#3#&'#'67#537#735#35#3#"''325''67&'7&',¦Rz6( /?!+ "4K =€€€€+  U  9  £E &  ) % @9  '   4òÏ#'+?73533#3#3##5#535#535#35#33535#33573##5#'6556333,,1144..3/I/w )G.à  C  C & " Q RR,# #>Hÿé¥Ï#'+73533#3#3##5#535#535#35#33535#335J$%% ##&&$ / ¹_++_9=|ìÐ73533#3#535#'63#735#&&)k/ VV00É"" KF$;óÏ/HNT73533&'73#67&'#"''32655'675#73#&''67&''667#&'1 .       "1ŠA    %€  ·     " !* %         +ïÏC73533#3#3#35#535#535#53533#3#3#3#535#535#535#535#535#+))$$**],,&&**++$$--»¨¤¤©#00&&+Ä          E      4öÏ*D7'67&''67&''6#5'6733#33#"&''67B$ "L  J y  &i77+-  Ï     "    H7  (  .ÿêõg /573#735#33535#335&'7&''33267#"&5''6G™™00B1s00B1> P d  (!  gC) %            1ôÏ#'->DJ73533##"''32655#'6553'#33#7&'3##"''3255#&'''6? ?` jEE9JJo  f[$ %K  2 °R N," !*>, "    ÿèòÒ $(,06<Bin7#3#3'67#'6553&'75##5#35#335335&'''67&''33267##3&''67&''67&567#òE<¹¾ ªZ +,,,?+(R 2 W   "e39#'4 . 2Nà *   B4 4=]  6          9  6ïÐ '37;7&'''673'67#'6'&''67&''6'3#735#Z %}= 1L  $}%   &…RR..Ð      $6 ÿèðË%+RW]73#33#5##53537#35#35#35#&'7&''33267#"'3&''67&''67&567#''6ÜoUµ=Z.7 [  m 'r"4E,(5 +! 1\.  Ë C%%C !            : E  ‚<ñÎ73533533##5#5#5#‚- SP---¯aa1Nÿò¶Ï*73533#3#535#3#735#676767'7&'R'**"U 'WW00  5)  ¹56(z7ìÏ 73#"''3267'675#'6&'œE  ( 39  ÏY  )  7ôÏ2?L73533#&'#5'675#7&'36533#&''67#'&''67&''6100  1Á  @'.* $  "%&e   N   ¿4 *+!/! 2)$3       %ôÐ !&*.I73#53&'73#&''67&''667'3#735#367#"''3255'7567#Q/w2fD    °[[77b .  25 JÐ *     %"' !   MÿéôÑ!N73#&'#'6#'673#&3533#3#"''3255#&'#5'675##535#k- g  ,u@CC@  -* %! ,*<@Ñ   '  ) 9:"&-? ,ôÏ7;?C73#&''67&''667'33#27#5'75#5367#35#35#75#£D    ¶W ,,KD666666Ï*     %"* DK-+- ‡=éÑ 73#53635#35#35#«0b;;;;;;Ñ ~~ 298rÿýÊb7#"''3255#'65535#35#Ê  ) ''''bP  $$ ( yÿúÕj73#&''67&'767#53&'¡&      8!j        Gÿé£Ð $*73&'73#3##"''3255#735#&'''6Q RA &  )  ³ EG  D#<  (îÒ (,04873#5##53'3533#3#3##5#535#535#3#735#335335‚d¸dGNOOKKeeaaJJN««!!1!"Ò %& (     =/ 4ôÏ3IMQ73#&''67&''667'3533533##5##5#3#"''32767#'63#735#¨>      ÄS   I <<Ï %      !C * * Hÿè¤Ï 173#53635#35#3#3#"''3265#'667#53&'r"J&&&&-+    Ï NN +-%  2 "&KÿîòÏ9=AEI73533533##5##5#3#3#3#3#535#535#535#535'235#33535#335Q%-((-%‰ EE::<-4"E6~Ð577#"''32654''67&''67''67&'77&''6f     (, # #.Ð  $      0ÿëó­!%)4:@RX73&'73#3#3#3#5'65#5#5#'#5'6&'7&''3326767#"&5''6~ *+%%%%,v 6&&&&&,  G  U  g , ª @n\Bb     "   8öÏ&OU73533#&'#5'67#'3533##5'67#767#533'7##"''3255'67#53&'&'¥    –  d-A       ±'DD-h;*  5       J*ôÐ,0Q73533533533533#3265#"&55##5#'67#5##5#3#"''3255##5##535##5J   1 U\7;    )"42Á      ..$31ñÏ%+AGMS733533#3#3#7'75#535#53&'#53367#73533##"''32655#''6'&'&'6  6--47A6..6' 1V7   7\—  Ï$$$     &  Q L-    /L.ëÎ(,8E733533##3#"''3255##5##535#5#53#3&''67&''&''67&'h?)G   31E)R??  6  Î  E  1DDIY  0   Kÿë·Î(INTZ767&'767#53#"''3267#'&5'56'675#535#5'67'#3#6'3&''6'&'s  6     M+5$$#  !!20  #0Î,  ; %  D½#   !P  ;    1öÏ $+1<@T73353#53373#&''67&''667#''6#5'673#3#3#3#535#535#mVH3         ‚    $JJU"#Y$!Ï#$ %    2 ! N9    #ôÍ0EIMQU[agm7676767&'7&'#"''3255'67'67'6'3##"''3255#53535#35#35#35#'67&'''6'&'ä  %   $ 7A ,  3 33333333  ¾ 5 #  Í  " / *  W% "W           /E‚X73#/SSX',um7&'5#!mtu73#735#UU--uY3(ÿë–$733#3##"''3255#53'67&'Z++0+  72 L  –E  @  ÿêöÉ ?73#3#537#35#35#35#3'33&'73#67327#"''67&'#ÝkY²D](ŒŒŒŒŒŒ(CF+x   %2= 9( MÉ ee * ) ' .     ÿéòÊH73#33#5##53537#35#35#35#67327#"''67&''7&'37&'7ÜiR»=_0~~~~~~–`   '.@ ;) JB- Ê L&&L % " " ,        ÿéòÏ28>FJN733#67327#"''67&'#53&'#53&'73#3&367#7&'#5##535#35#Ÿ;:     ™&93,X4  7FFFFFÏ-" &$$$ '"  $$0^r s)@ ÿ襉#'+1773#3#3#535#535#735#33535#3355#35#'67&'}(•$%%6#Y%%6#%%% @ ‰C    ( % '     8ÿéñk736533#&''6767#DCLD> <& %@S -0   ÿé~É73#'6655635#t !+CE 5"0/É N4!5D8l(Bÿêçd $7#"''3255##5##5##535#35#35#ç   00 dc  ++--5w0Lÿêéq73#5##5353335#‘Pn3X‰nnML L;GCÿæëh7#"''3255##53#735#ë  ‚,KK''hj  Sn€&>;ÿéòw$73#67&'67'5'67#53'Ž FM <  )4B w  ":0  .  6ÿèèi)/573#"''3255'675#73#"''3255'675#&'7&'@I %6TT ")AG b il  $l  $   KÿèºÎ73533#67#"''3255'75#P+++   )0+ž004 @  5  :g ¢È 767'56›È   žmÿçôÊ %7##53#"''3267#3&''67&67#Œ u  Mi  $3 awà5"D6%     "`ÿéôÏ $7#5##53&'7#'65533267#"&5èY3(%F  ²=**= I:7 ,8"q MŸÐ7&''67'67676767&'Ž  M .#:7 B$ HÿêõÏ 7733"&''67&''667#73265#"&55#'655b&-972   i ÏK6  7C$2$m ‚7@!@?XÿùñÍ7&'73#5363#3#„  T *…GOtt™™Í  \6 NõÐ#73533533#3#&'#'67#535#35#1A11<6! &!A, #8>1DAA»  `ÿìñÏ 37#5##53&'7&'''6333267##"&5477#ça: & g8 ! '6E®**   ")  ( RôÏ !7&'7'6'&'3#&'#'67#x  W y Ü7# ,=/ " :Ï   ' $# IÿêôÏ 3733##"''3255#53'&'&''333#"&'&'75#  66X  I  :* (' 0 "Ï1f  a) Ee    ULÿêóÏ.73533#&''655#'&'333#"&''75#$** )$"  ) '& /  !™66( *$4A Fe   UUÿèòÐ$(7367'673#&'#'67#3'6673#Z0;2O, #"  &#  8“ +(-2( #,h_ÿèôÎ"&*73#3##5#535#535'235#35#35#35#ã  BB99<5""5"W""5"L  ¾`  9<K _ÿèïÓ!'373#"''3267#3#"''3267#536&'3353353#•A   Ikj7aÓ 7! (MR >MM   NN>>§A    ' # M    UÿçõÆ $(,07<@7&''67#53#3'#5##5'6735#33535#33567''35#Ž  LH  H!##5$Y##5$L &HH@ JJ @ >p+ :  5 (P„Ñ#'+73533#3#3##5#535#535#35#33535#335100**//44**1*B*Ç  <   < " " Kÿê±Ï")/5107#"''3255&'#5'#535375#7675#7'6'&'§ '& D  >  ˆŠ #bj+0žGG"9C N   GôÓ!(,0J73#53'73#&''67&''667#'3#735#37#"''3255'7567#Q0w2h>    "ƒYY99b,  47 IÓ         !   wÏ`73#3#3#535#535#zR"X# `Kÿé¥Ð(,073533533#3#535#35##"''3255##535#35#NZ!/    '''''·oA&  &  444=**=4""4"^**<*Ñ #$$    2 B  C U~ òÏ-273533#3#3#3#3##5#535#535#53&'#535#367#…(--20((00//))1/(&.¼  :Oÿè¥Ï 073#53635#35#3#3#"''3265#'665#53&'u"I%%%%+)   Ï NN +-% 2 " !Kÿé÷Ç$59=73#"''3255##53535#335#'&'333#"&''75#73#735#å    I 11 <  " ,- 6  M-- ÇI`  LcrII9$, MU  G3 IÿèõÐ '+/?7&''6'3533#3#3##5#535#535#35#35#73#3##5#535#à  k! !%%%%C@!!Ð "Z''Z<:"FF"RÍ#'+/37335#535#535#53533#3#3#353#735#33535#33544''11//))66d(A(j 33 LKÿé®Ï(,073533533##5##5#3#"''3267#'63#735#K8  - 00º o\   M,Eÿë§Ï"9?73533##5'67#7&'7'6&'3&''67'7#5367#P!##   H   & ! ¦))3 4    4     0 `ñÑ !'+/3773#'6'#3#3#53535357&'3#735#335335˜LS '""&e==q 'jj   Ñ  *i. 0ÿéîV"73#3##"''3255#535#535'2« CCbb  ccJJ*1V      @ÿë”Ï573673267#"&53#3#&''67#537#'6P  +   !  Ï         lÿÿÚy $73&''67&''6673#735#Š4    9MM**y    2.KÿéôÏ,1@FJa73&'73673#3#3#&''67#5365#535#5#35#"&55#'67#333535#7#"''32654'7##5N  '*!   %)%!8;   3;;;“  ´     ^    ^ 6   > s?!! CËÜUÿéöÏ$59=N73#&'#'6#'673#&3#67'7&''735#35#7##53#"''325r+ ]  -qC1  mA Ï       Z.  o8#¡r TÿéòÑ-:KOSW73#&''673#&''63673#53&'3#"''325'##53#"''3255#3#373#q(  T(   2  +ž(d  H F  !Ñ      'a  &x_  I:LRÿø–Î73533#3#535##5##535#R><¯##IX\7' NÿçõÏ-159=AELdk737#535#5#53535333##3#3&''67&'7#735#33535#33535#3356773#&''67&''667#"P# %'&   -1#$  0*      8 +   +    ) G< ¨@) - #P)!‚ ðÑ &6:73&'73#3#"''3255##53&'#367#3533#3#535#35#‚*-  D0"7½  u `t…  0  // . ÿéóÐ)?RhŒ7&''67&'763533#&'#5'67#73533#&'#5'67#67&''67&'3673#&'#'67#3#3##"''3255#535#535#'2   v       7    RRv:" .59 +=“BBcc   bb@@ #Ð    %  $$   /       OÿéôÐCHY_e73533533##5##5#&'#5'67&'77'767#'6733&'73'673##"''3255#'67&'S%*((*%„  A       # 24 $ p|7   2  bà  M         H- *  WÿèïË >B7#5##535#3#735#3353353#3#67&'7'5'67#735#ïttt ``   Ukk\(  ::Ëâ ãÈ· + ( &     =ÿèöÐ/5IMQhn73#3#5#53&'3#735#3&''67&'67#53667#'#"''3255#'65535#35#'66533267#"&55&7# KŠ|ŽK5ŒŒhh&          i +   Ð  B) !   3  5Z  )(+" !1Y - MÿèöÐ SW[g7#5##53&'73533533#3#3#&'#67&'67'5'67#5'67#535#535#5#35#3&'73&'#ên?D* ,  0  # #)H!# & ½       3      4 KÿéöÑ MQU[_7#5##53&'73533533#3#3#'#3#33#"''675#5'67#535#535#5#35#3&'#35#õHG1&*88 Q  / &.K?' HH¿%&          '    &$ @ÿéôÑ"&3Im7#3#'6553'75##5#35#33533567'53373673267#"&5#5'67#53&'73533'673#&ð/)~>+S      $ #/#   , ¾ ' E? 6BO   3 ,     D&'     TÿçöÐ /8ANTZ`f7#5##53&'7&'''63#35#535#53#56367'7367'73327#"&'&'7&'&'7&'èp:     ))d++.@ˆ   :  7 KE ,E½)*      =9FF SG S! %"3        LÿéîÏ )-15FY]73353353#3&'73#3#3#3#5'67#35#5##"''3255##5'673&'7&'#735#[+'‹":92222:‰ =,,,,,z  p'  *  B Ê!   /    > +CR.   GÿéõÐ%;K[73#67#53533#'#5''6553&'#5'67#53533#&33#3#3##'353#5#535#535#¦?…    B@     '''&&**E$))""$Ð >    % @2 3;Y L(&     ^ h  Iÿé ÏI73'73#''7&'76#3353#3#"''3255#67&'7''67##537#I" W4   ++'     º       66DK  8  SbGÿé£Ï48<@73533533##3#3#3#&''67#5365#535#535#5#5#35#335K &'    !4  ¼ 0  0 < HÿèôÐ!<@DHou{73#&'#'673#&'#'63#3#&'#'677#5367#735#35#35#&'#"''3255'67'677767'&'''6t" N- MwE`)#- ,SSSSSSL    < Ð      E 0   D          KÿéòÐ<AZ^bz~‚733#67&'##"''32655'274''67''67#537#'77#3533#67'7&''275#735#335'3533#7'7&''275#735#335{L+J      !-(')+ 4ZHTA'  "  †  '  Ð          x+   +  ÿèñÏ"73533#3&''67&'#535#67ceeN)$3:+/?;&$Oc9!'®!!'0  1':-'bóÌ $(6<73#535#535#3#3##"''3255#535#735#'3#7'675#&'sqr_\\^7E  gg##U=   ÌD  <1    B  ÿæêÐ733#3&''67&'#5367n\\Q%"38(*6 5$B#Ð#$2    .'$ ÿèÜÏ73#&''67&''6667#S} %.*!/.# UÏB+$ 3*,ÿè‡ÎB767&''67&'373#367#"''3255'7567#'67#5367#  0 .7 7  26 )   &Ë     ?  !     ÿé…Å"&733#27#5'75#5367#35#35#75#R "&,A=000000Åe&#p DBE ÿçˆÐ)-17#53673#3#3#"''3267#'667#53&75#35C)!-&)I? . >$@@bV  V  + #  = ÿë‘Ï/373533533##5##5#3#"''3267#3##5'635#  M  A9+ » n)T DML"ÿèˆÎ";A73533##5'67#7&'7'6&'3673&''67&'67#367400 +Y  N'-  # 2 ¤**. 7   4  2     GóÐ;?C73#&''67&''667#'3533#3#&'#5'67#535#35#335¢?     &“322)"  ,3,Ð$     1  %  10ÿè‘Ñ!%)-K73533&'73#3#5##5##535#35#33535#35#3#3#"''3267#'67#53&'78-.7.J.3MC   4  ":¿  PQ & % ($ (ÿéŒÎ+17733#3#5##5335'673#&'#5'67#7'6'&'D445V2/4*1*0,  ".^ ?  Î '%]' *:88     ÿçòÓ#?CGKQ733#5##&''67##5'6367#3#3#&''67&''67#735#35#35#667#Z` 6G7!  B 0 g [ ³y  ,7/(F 1# !"M_Ó  %    /S    ; @  ÿêôr !.;7#'6553533#&'#5'675#&''6'&''6ïÀKNN&8 6$. 7$K†  g   r!-) !*2!   &$       ÿçñÎ73&'73#&''67&'#367g  a'# $; 8-*><))%;%% ¥ &8$(=6! 7ÿèÎd73353#5#'6535#/w|ywd|. )  ÿèÚd #73'6673#'3#3##5#&'''6) vaa s00] > d:.+1vuCC     [zÏ73&'73#&''67&'767#**   Eº     ÿìôˆ)-159AEIM73#3#35335#535#535#533#5##535635#3#3#735#3#53535#35#35#C %Y$.º-::,,(( U*è)ssssssˆ  >> ?  6:3  ): :ÿéñÍ73##5#'66556Û F\«<[)bÍ )……A81VÿçìÎ 73#&'#5&'75#'66556Ø F]¬H& " P# cÎ *2 BK  *)3-$xÿéëu73##5#'6556­ 3C©>XIu DD#  $* ÿï€Ç"&*7#53#3#67'675#535#53#3753'355#m2  0; 2 ;\kCA "ACk0/y!!!!!ÿìŸË6@[v767767'7''67'67676767'7''67'67'33#3#76777'74''67'6767774'7''67'67;     3    mwwo‚*   3   ¬        ]]O       ÿêèp 7&'&'   8& %5p6tÿéô…73567#533##"''3255#t8F^44  8G9 6mÿèò’73##5#'6556Ý %/^,6’[[ +& !#HoÿèõŽ$73##"''3255#'67#53535#&'á 666  ŽM1 .' MM<mÿëó%7'67773267#"&55'75'7š // 79DF $*-&)n  $kÿèïÐ *73#'63533#3#"''3255##5##535#‰Yb  244/  ,2Ð )M  6ffOadÿéó #7'6553'#33267#"&5536‘lDD $ Y86 ,686%#   L hÿèõ™73#3#&''67#5365#'6”K.95 , (1 2 36 ™ *)(, ÿéî–"(733#"''3255##5335#35#7'6'&'¬+   G-GGGGJ A  –0i +|!2Z   nÿèò®&*.736533#&''67#3##"''3255#3#735#‡$*-  ! „   _ ??š  +N  K4cÿçõ›%+73533533#3#535#35#35#35#&'''6r/†&//////-" #  SS12(    kÿé÷  06<73#3#535#5#35#3353353#3##"''3255#'67&'vv$!r"#B!![ff ‚4  ;U   22 #,      hÿéõ¥/37;?73#&'3#5##535'67#53&'735'273635#33535#35#Ë(" "0L0 " #//  @/L/Š  V W      ], cÿéõ©"&,48<7&'#5'63&'3#735#&'735'6#5##535#35#ª @ .+ 5zz$$ /"   FFFFF©   8  (CC ! \ÿêöÐ EK]73#'63&'73673#67'#"''32655'67''67&''67#'&'333#"&''75#~hp "  %  !     !  $&%.  Ð *            "F  9^ÿéóÎ ;AG73#'633#535673#3#35335#533#335#535#535#&'''6€^f P"    ' Î  oc ..8ADq   ÿèòÃ$73#3#32767#"&55#'67#5367#Ä\mT - PIUZTÃ^ dM0,AÿéóÂ'73#3#32767#"&55#'67#'7367#ÃQfN* PKG<^Â$T! ZD.*74-$iÿçöÄ)73#3##'67#'7367#33267#"&5}t)-8-)7@Ä&C3+:6'fC &  ÿùwÐ '73#53635#35#3267#"&55369+X 11118 '$ Ð \\ 4:3 A,ÿéÓÄ 7#5##535#35#ÓÄÛÛYF¢I"ÿï6¿73#"¿Ð1ˆ 7##55#35YYFFˆs‡1ÿççd 767'563#"''32765##5i #$"". *¥  <d 5  QE $`rnñÏ73533533#3#535#35#3B55=â;3GBBµ!!!!ÿèî]73#3#67&'7&''67#*ªªÛ„4=  PO#?]   ÿçñh%73#3#"''32765#'67#'67#'67#á” :6 - (!"5hD #-!") HòÏ *7333#"''67&''667#73&'#<7 I$P&'$  % +U" Ï $     &4)ÿé¹0 73#'3'66¥W0GG bÿéìo73533#"''3267#'67#x!@,:3!VM6B7ÿõòV 73533533#7&'7'6PNä$  ¬ OOOO]    ZóÇ%)73#67&'7''6'67&'7''63#ÓÓ’   %)]   %)!ææÇ       &jðÇ 73#3#535#35#'6'&'Ê@KàH=P''` “  Ç9999   ÿçôu"&7#'6553#3#67&'#67''3#RÈ´¸U   L œœ++44(   :* e ÿéó‘ $*73&'73#3##"''3255#735#'67&' hiæ¬H  P‡‡ # &~w   3&  #(  PÿéžÏ73533#&'#5'67#V  ¡..zc )8ÿéë^ 7#5##535#35#7#5##535#35#u88888Â;;;;;^u u,E>u u,E ÿéô†$+377353&'33#"''67&''667##5##535#;6  $R#*$   ,“xxx† >      >@ @& ÿèòt 773#&''67&''667#'3#3#67'753675#šH     .…e' 1= ,t#     %# B?R OçÓ $(73#3#&''67#5365#'673#735#2@'-/' ) /3 gZZ22Ó    S0LòÏ8<A73#&''67&''667#'#3#327#"&'#67'535&'#¢B     ((&&" % E$Ï     "  . t 2 2ÿëò­-59=73533#&'#5'67#73533#&'#5'67##5##535#35#9$    a$    Ammmmm˜  '&   '( @\ \"0UóË/?73#7&'7&''735#35#73#3#'67#'7367#33267#"&5^L/ ' ::::Zh(05    .8  ËC    T # (    4   ÿêõ¦"&,0473#3#&'#5##5'67#5367#735#35#3&'#35#35#*¨Y 4" n 0C8„„„„d B nnnn¦C  > ? ( % D  ' F êÌ *.2673#735#35#3&'73#3#3#3##5'65#5#35#Xˆˆbbbb#160000:w 9+++++ÌG+ %     F    Sÿè¡Ñ 073#53&'3#735#367#"''3255'7567#wH>>D    +Ñ  431  WóÓ )5E73#53635#35#73#3#'67#'7367#7'533733267#"&5;.a====Yi(05    /WF,( KE Ó99 (    E  )   2ÿèï²5=AE73#&'#5'67#535'6'3#&'#5'67#535'6#5##535#35#Ú#"   '4   "&({ppppp²  *)  *'  jX X -bâÌ!%)7#"''3255#'65535#35#'3#735#35#â  D AABAtJJ&&&&ÌT   $%+2U14ÿèñ|8O7#67'7&''53'73535''67'67'67767277#"''3254'67##5¤6 $$$I1 %    ® lO  z ;   E*  z‹Iÿè¦Ï 173#53635#35#3#3#"''3265#'667#53&'r"J&&&&/*    !Ï NN +-%  2 " ! ÿæ÷Ë RVZ^b73#3#53'#735#35#3#35#53#3#3#3#67&'7'5'67#535#535#535#735#35#5#35#(´SdáiKZ6]6==55Da    N 5# 5)[C55==499j<<666Ë6  2     !     1"ÿõÞ·7#5##535#3#Þ”””·ÂÁœ‰:VäÐ 73#"''3267#'67#'67#'6G•  ! 81 !=7!#Ð C',"#(  ÿéêz"(733#"''32765#&''67#'633#L œ I$ =/|z U" 4    ) RóÏ#'+/73533533#3#535#5#35#33533535#335335 M'LL;Â:M‡';((;'(((;'(ÁOO-QïÐ73533#3#535#35#33535#335dffWÀUd!CCWD›CCWD SS .1Fæz 73#735#335335ÍÍ((:.+z4aàÏ73673#53&'35#33535#335Q )  4Á2 EEYCœEEYCÏ  RR 40\àÒ#73673#53&'35#&'735'6Q *  5Á2 EE  JC&  Ð WW Z5  55  OóÏ;73533#3#&''67#5365#73533##3#&''67#5367#'$$*-  "(-'p'%%/* ! " #  $+'¼          JóÇC73#3#7'5#'67#'737#73#3#3267#"&55#'67#'7365#a'* 1 )! (je&. 2 ' ,Ç !   .'#  &% ÿèîÐ"&*73673#3#"''3255##5'67#35#35#Lx‚  p,BCpppp´ €  5}$+IAUêÑ'+073#767'5#53&'7#"''3255#'65535#35#= *G)# *¾ @ ;;=<Ñ 6 ?`   "."/ ÿéõÏ.26:@DH7'67#535#53533533#3#&'#"''3255##735#35#35#&'#35#35#9%2+&&d)).5   jddddddh JjjjjI : : G  %Á !! * * …WéÊ7#"''3255#'65535#35#é   4 3333ÊZ   /, ÿéóÏ73533#3#&'#5'67#535#$QSS]P%8 ;$$9 < P^Q©&&%79hh8  3% ÿéõÏ73533#3#&'#5'67#535#dee[O$< ;&#: :"LZd¨''&26gg6!3& ÿéôÐ73533#&'3##5#535'667#``Q$8 ;%9988#: 5Q£--H!'KW11UF*> ÿéðÏ (73533##5#7&'3'66#"&55332bggb™a  ´  œ33  E  GA ,0 fbÿèíÎ73533#&'#5'67#7&'cdX#5 7""5 8 W™“;;G %F‡†B&(AJ  \ÿéòÈ $(73#3##"''3255##5#535#53535#35#ß  GGGGGÈ?*7  2PP*??,i*>ÿè¿< 7&'&'g%* ,'@8 8=<  ÿêÔO73533#&'#5'67#B9,!2 5 - +3= "77 VÿéðÏ73#5##5#'665335#53533#3Ø!  6699!„‚tB7   $&DÌS7?%5A!>615gÿèòƒ73533#&'#5'67#WZG!5 :$!5 1Dd1;ea50gÿèðÏ&73533533##5##5##53#"''3255##g!!!!"| 7µ@X BzaÿùòÍ7&'73#5363#3#‹ N '}B Imm‘‘Í  \6Oÿÿ®73&''67&'767#Z7    $®<' &ZÿèõÏ%)/73##"''3255#'67#535'673#35#&'ã  H  ckGG  ‹L(  #& !E . L; ÿçùÏ.4K73533#3&533#67327#"&''67&'#535#7&'3533#&'#5'67#400=A@    " Ž<4²  £511  (2¶&' (%%7&+ b  8?!/KäÏ 733#3#5335#35#oaaQ¥@,}}}}Ï VV"0>éË*A767#53&''27&'67#53&''27'767#53&''27&'D'! € - "&<& Ka  w Kb ¶    9       SçÏ $73#5'677'673'67#&'&'P !7EJ A8 c  Ï|%   % <-  :ÿéòq &,27&''6367&'#"''3265'&''6})= 77(9 M  " "0    .  , ) -q  '    :   ÿîòt )7&''6'&''63533#3#535#¸ $x #WWWhähWt ! ,CCMÿç¤Ï73533#3#3#'67#5365#535#`!  ¥** , ! Uÿè Ï73#5#'67#535#533Œ  .&ÏæYE9TAEÿê¡Ç"(7#53#"''3267#'675#5367#5;5#365#hK   ´¥ ,2 %)g]ÿêï` 73533##"''3255#'67&'i755  7\  N7  3 !  Rÿè÷Ï ,73353#533'67&'#53#"''3267#'66Ÿ&…&$#P !*m  .7Ï1&88&+ 'GF/8 ÿèÑf73'67#&''6m e)Œ ‚#a   0f >.  X‹Í73#&'#5'67#535'2x 00  (61Í  !.ÿéóX73267#"&55#'665&'µ  J*XQ " C)&  !1!TÿçöÉ &7&''667#535#535#53#6''6Ù,8 "$2^YY]r-VX +7 //f   ÿéóÒ?GKO73#&'3533##3#&'#5'67#535#5#535335'67#53&'&'7#65##5#|g3  0''ChV!5 9$!72 RfC%%0 AdCB ,900Ò   !  23!  ) HMÿìöÍ "(8>7&'''667&'7''6&'#'6733267#"&57&'Ã/   ).$  4 "_  Í1 0.*  +& 7  8 ÿéõÏ#'+A73533533#3#&'#'67#535#35#35#35#3533#&'#5'67#%i&&,2 $!L+ &4*%8iiiiii;>*( )#-( )Ä J  J., ;!;:  ÿéïÏ#G73533#3#5#&'#5'675##535##5#&'#5'675##535#53533#cddL95& !.%5 <'=PcÅ;.7 -,$8 >'=PccccÅ  '  ( q1   ), 0  Uÿè÷Ð +177&''6'3#3#"''32765#'655#53&'&'&'à  3,'   S  Ð &!!$0%d# >J/ 0F-f. G{Î7&'73#'65535#C!I54º @ !+/KÿèôËBG7#"''3255#'65535#35#7#"''3255#3&''67'&'##567#—     &=  4ËÈ  :1) 6Aa=,h+ o9 $I 3   váž NðË573#7#5'275#35#35#75#767#53&''67&'u5" #111111d J`   ËH N.. -)   ;ôž#73&'7&'#"''3267#'67#5'6aw2-   5I ?. 0ž  $ '    cñÏ-73533#&'#5'67#73533#&'#5'67#,%% 'n(//   #º  -0 +/ Bÿê²Ï !7'673&3#"''32767#'67#l 0E  & Ï7 %())-*\JU"KdÿéêÇ )7#5#;5#35#'673'67#&ê~HG E % S< ÇLL****&  ; Iÿé¡Ð 73#3#&''67#535#'6g+ !Ð' ( (51 $Pÿé©Ä73#7#5'75#35#35#675#PY    Ĉ.*• U$`'Fÿé¶Î "7'67&''67#7&''6q 1 &  &2  Î/   p #(x™  . $! }QñÏ73#&''67&'767#'6˜J     - Ï     Fÿê©Ç+767#533'67##"''32655'67#53&'j 9Q      -® o L) (1  ÿéó[!73'67#3#33#"&''675#Ð D55<421 $`[  ( ASÿèôÈ .73#735#3353353#3#"''32765#'67#53&'e‡‡%,>ZQ   A & .!;ÈJ(((((> : +< QïÐ #)73#53635#35#'&'7'6&'''6y'W2222CÈk!Ð ff3DE *  TïÏ,73533#&'#5'67#73533#&'#5'67#,&& %l)/,   µ 3:'8;‡ʘ 73#735#3#735#‹::CC ˜8=< Fÿé‘Î73&'73&'#5'67#W     #"­   ie +2QÿèìÇ )-177'66553'#3'6'33#"''3255##5335#35#'&' ZZ ')  ;%;;;;*C6 0$^:(  j ,"3Q  ÿéƒÎ273533#3#535##5##53#3533#&'#5'67#/00,h(/sNDD)++  &½  )#'!  )-=ìÑ!-173#3#&''67#535#'63#53#3'35:3#'   *0 eWjhULL9Ñ     D|3"mÿèøÏ !7&''63533#&'#5'67#¬ ! ,&* #$Ï "%""?''//_L !-Lÿé¥Ð#'73#"''3255'67#5353635#35#35#y   * $/Ð · )&s7A9KÿæôÑ%C7#'6553&'73#3#535#535'6333#"''67&'767#'7#ó†B2 D$V, *,%/ »PC2 2>[   &))" '2   'HÿêöÏ$NTZ7'6'367#"''3255'67567#676767&'7'#"''3255'67'6&'''6à , .uA      -_     ";  4 Ï+N B< 4   E >T # MÿçöÐ"&273#3#&'#'67#537#53635#35#3533##5#–?7K) $* "$/+"PPPP !! ÐT '%T ,2o%%SÿéõÐ9B73&'73673#3#3#535#535#367&'#"''325'3'67#b%"=22A<33<<   $  A7% #±  M     9(„òÏ#'+73533#3#3##5#535#535#35#33535#335ˆ+++'',,//((+)>)»ZZ28<òÏ#'+?73533#3#3##5#535#535#35#33535#33573##5#'6556433,,1155//4/I/w )G-Ä  >  > $ ! K MM'! ;TÿéóÏ 6L73#53635#35#73#3#3265#"&55'67#'7367#3673267#"&5jB:O  ' &K    Ï [[4;A%Y  )%&?80&`     _'ðÇ "&*73#3#535#5#35#"&55#'733567#35#_‘0'~$.O#Z EZZZÇ{{K# )! W EöÏ6<BT73533#3#535#335333267#"&55#&''67&'77#'67&'3533#67'75#(((/p/(r$     X  A @(&&0;0(à ;/*         HÿêøÏ'7=CU735333267#"&55#&''67&'77#'3533#3#535#'67&'3533#67'75#Ÿ    OQ  0  , $,"£,,6&$$)#8J%+5 ($, 1 WÿèòÑ #)/573#53635#35#'63533##5#7&''67&'–>v"OOOOZwHAAH 1"D ÑSS .1+  B73533#3#&''67#535#73#3267#"&55#'67#735#35#35##""(*  "%(#bk   % GGGGGG¼    X   > ! " FñÑ *E73#53635#35#76777'7''67'6767767'7''67'67yAI    ¤     Ñnn 7J/ # 0 # EÿèõÐ ")-=AE7#5'673&''67&''667#3#7##53##'326=#35l  K3  &5]*M  **Ð!¢v 9<      ˜ *uc ?  BôÏ+?R73533#&'#5'67#73533#&'#5'67#'&''67&'76&''67&'76  ‰ !             ²  D6 " DA"-   9     ‚ êÉ$(,04733#"''3255##5##53&'767#35#35#35#35#ƒc!  *  I***É { ++.  G>SO÷Í!'-37&'73&'#"''32765#'667#'6'&''6k -V  . !  - %  Í   &  /J $$      ÿèóe'-173533#&'#5'67#73##"''3255###535#"     ![‰ bM0R <7M  H4 ?#WÿéõÏ+2N73533533##5#3&''67&''67#5#67#3533#3#3##5#535#535#Z!1##1 P (   !- =&7<<88DDBB337     *  @     SÿíôÐ!;73#&'#'6#'673#&3&'73#3#3#535#535#u) \ ,r;<@::G¡F55:Ð   !*  %''%Iÿé«Ð)/767&''67&'3533#&'#5'67#7&'_        >Ë    c$$  @>"3  WÿèúV767&''6''6£  +1 K* V # #) E @ÿêôÇ)-Gb7367#"''3255'67567#'66553'#3357#533##"''3255#3567#533##"''3255#jC    1 —qqh:Lh -5  :: )<   ™4  * /#^.8   A  •÷Ï*073267#"''67&'#67'53&533#67&'Ý    !"! {'  " "6[ z%e  PÿïõÐ.6>BFJ73&'73#67&'7&''67#3#733267#"&5'3'663#53535#35#35#WC@N  280<,  V  z£#&¾     244  !*===+++++\ÿéóÏ">BF73#&'#'6#'673#&3#"''32765#3#5'65#35#y' Y(Vc  VGQ @---Ï       c N SF/"Mÿè¬Ç"&7367#533#67#5'75#35#35#75#S).C  Ÿ s"|JMÿéóÑ %)-1H^73#'63533533533533#3#535#35#35#35#3533#&'#5'67#73533#&'#5'67#=£² Û",,.Ž,%$  %q&/%# Ñ   %>  99 @7u Ó]73#3#3#535#535#xY$&^&#]SÿêòÒKPV7#53&'73#3367&'#7'5'67'67&''67'67&''667#67#ƒ(> @YN 7,   ,  "! - % (J$8­   -         ; @öÐ !'-=MSY_e7&'''6733267#"&57&'&'7&'33265#"&5'33267#"&57&'''67'67&'u ;( " -!‰  {     p  CJ  s  c  Ð    # %     %   )#   )    >ôÐ$*.S73533#3673#3#5'675367#535#35#35#'#"''32654''67&''67&'76t%  "5 5h  92%D=DD8      Å   H) J " s +      _ÿéóÏ(.4<Y7367&''66'367&''667'6''6#5##533265#"&55#3##5#535#À   D    0A‰j\ "$$Ï     %    :()#G :,, Pÿå÷Ï#'+/5;73533533##5#5#3#3#535#35#33535#335'67&'X2 Yd21™E8ƒ8A%%8%]%%8%I (!J  ¾  TT .2'    Rÿé«Ï#73533#3#3##5#535#535#35#35#T!  && !))))¹[%%[=; YÿèîÈ #'+73#735#35##5##535#35#7#5##535#35#mppHHHH‚ÈX563x x-I>y y.I[;ïÐ #/7'2'6'&''&'#53#3#533#535#535#à3K=0  */0r/B”?5zyeeefÐ      9 Eÿë©Ñ .73#5335#35#3&'73#3#"''3267#'655#q!J((((!%4-   ÑSS"143 $ *ZÿîóÈ!%973#27#5'635#35#35#75#73#735#3#3#3#535#535#ZT 2 @88cŒ<22A˜E66>ÈI P0/IiEg~òÏ,7#5'67#53533#&'#5'67#53533#&¿ &.( €&//      J‡Í#'+/37335#535#535#53533#3#3#353#735#33535#33544''11..((55c'?'b 66 Q„ ëÇ!%73#"''3255##53535#335#3#735#à E 3 -"".. ÇJ` MbqJJ:%48  IòÒ1MQ73#&''67'767#'6'3533533##5##5#3#"''32765#3#5'635#¤? $ŠN   C8< Ò     @ % & @ÿê½È 06<73#3#535#5#35#3353353#3##"''3255#'67&'Qk c;    NZZ k,  , P  È99*7.  +   NÿêõÑ/5CI73673#3#3#535#535#53&'3'67#'6'&'3&''66''6†  =77B<55=$ *B 5 , S  $ 6 Ð  i          WQñÐ #)73#53635#35#'&'7'6&'''6žA5 Š   KÐ dd 3FD  ) IÿîöÑ $(,04873673#&'#3#5'67#3&'#3#735#3#735#73#735#W,T)" n…˜ " T  ZZ7733-33º  z‹  () #338ÿèôÑ *@QUY73#'6'3&'73#3#"''3267#'665#36533#&''67#3##"''3255#3#735#¥AH  M !#    S   d H66Ñ i#U28=L    'H E 4]ÿçôÐ ,28RVZ73#5##53&'&'3673267#"''67''67&'3533#67&'7&''675#735#335§9h<    $ o  e588 k>+ MMMMMM; "  (BZM ?# )@ÑQ  Q ! 1   "    õÉ048<@EI73#3#3#'#3265#"&55'67#5367#535#5#35#3353353'##3‚q!39  0 &   '( #@   7,  É 4    $ 4 $I  ^ÿíóÎ#'+/3733533##5##5#53#3#53#735#3#735#73#735#€+""+""r|}+NN**"11,11Î&„¨) (2  2 Éc 73#735#3#735#‚CC!!JJ))c( #-^ÿéöÏ!37;L73#&''6#'673#&3#67&'7&''735#35#7##53#"''325w* W +k@.   g>   Ï      Z-   o8#¡r  ô…)047'67&''67353&'3#"''"3#767#35#-!  #?  ? 6!š¨. 3 „„?  # #=4 HÿëõÐ9^u73#67&'767#533#3#"''32767#735#5''6553&'6767'33#"&55#'6653&'3&''67&'767#¬=„  %7 # &  A*       " 9   %Ð ? .*- @1 2:Y&      n     QÿèñÍBGKO73#&''673#&''63533673#3#5##5'67#535#67#5#5#s%K,!  B(" #7MH )41(E ,HHHÍ    ,   W J  C TÿéóÐ/<LPTX73#&'#'673#&'#'63673#53&'3#"''325'#"''3255##535#35#73#i,  O2  + #,˜#e  1  #####BÐ        ,g  ]e *y .*UGÿéôÏ4:>BS7#'6553&'73533#3#535#3533##"''3255#&''3#735#7677'7&'ôˆFDAH   E@@   #+¼MA2 2 +CR.   OÿçòÏ ?DHLPch7&'7'6'33533#3#3#3#27#5'75#535#535#53&'#5337#35#35#75#73&''67&'#367q  u H6$#=66FP! E77> 5$3!!!!!!9B     Ï      A K    \+- *    AÿéöÏ]aei73533533##5##5#3353533&'73#67375#"''7#53#3#367&'#'67#'67#535#35#35#5#R&(--(& Q      47A  A  ¿ #)  1"3( ) u/ I@5) &%) !36MÿçôÊ #'+/37;djp73#735#33535#3353#735#33535#33573#735#33535#335'67'67676767'7&'#"''3257&'''6d{{&&6%[&&6%|JJ+MM-F    !  %  & < Ê6 :" $:" T          MÿêôÑ9=E]aeƒ‡7#'733#67&'##"'''27&''67&''67#53'3732653533#27'7''275#735#33573533#27&'7&''275#735#335ÁLM@    &&,* 7_2C"  X $   $  £ #        W % -     -    ÿéóÍ&<NRVZ^tƒ‡Œ’73533#&'#5'67#7&''67&'73533#&'#5'67#&''7'763#735#3353353533##"''32655#'#''53535&'#7&'    |            kÉÉ-->*,OG G  &" 999'q  »  !        &-/ 0 ,=   X  $0  TÿìòË#'+/37;GS`73#3#5##5##535#3#'3#3#73#3#735#73#735#73#735#3#3#535#&''67&''6`‡;F55F;S''E$$''H((Y++%++$,,s>EžF>   \  Ë 0!11!0 # +  +  + '..    :ÿé©Ð#AGKO73533533##5##5#3#735#73#735#3&'73#3#3#3##5'65#5#35#F(( #(( 0 C (Á  11$ L   ÿéŠÐ $(,73'72655##5##5##5353335#335335P:+:e ¤!ƒ +33==E˜Mc00000 ÿëÏ1FLR7&'#5'6&'3#735#3#"''3255'675#73#"''3255'675#&'7&'U  H )9 XX44 5   $=4   #3  K  Ï    *%\   \      ÿè“É)=Qbfu{73''67'767#73&''67&'767#3&''67&'767#73&''67'767#3#3#5##5365#5#35#"&55#'67#333535#A    /C@    -CA     /C@     -E…-&V(-H 'V BVVVÉ   +      * ZZ . 8  ÿóóÏ733#3#53533„TT[æ'<ÏImžž ÿñóÂ73#3#3#535335#ÒZSSbæ&6dÂCU‚‚« ÿîõÎ(733#7'7537736732667#"&5Q%%$8EE  !'  ÎE`  ¡½L e ÿèõÏ"473&'33#3267#"'&'#7&'3#33#67'7537BA  Á  ™dd1,,=L“!<@''(RJ 4#3 ZWÿéñh 73#7&'''6'66yJh! "† 9n BFhHB  $ 0 ÿéá€!+73533#&'#5'67#7&'7'673#5#533<::2  /  i  )®šX((,, 6   o ÿçõ‘/>D7#67327#"''67&'#'6553'33&'73#67'675#'6ò;       r…¨b' = (       "-$0- #-6  "- 8 >  ÿêõ->DJ7#67327#"''67&'#'6553'33'73##"''3255#'67&'ò;       r… ªb&   )   N  )   1$0- #-6   "H  E 3ÿïó¬-=73533#&'#5'67#73533#&'#5'67#3#535335339#     a$   SÀ"#F”  -+  -,j//<0ÿîô°7G73#&'#5'67#535'6'3#&'#5'67#535'63#53533533á'    +5!     )=MÀ%*=° /+  *'”++9ÿîoÏ#'73#3#3#67'75375#53635#35#8$<< .. ! ))))Ï3 3 86As ,RÿéìÃ73#3'67#&''67#×p c&+A w'X 7PÃ< & ` $; ÿèõ¾173#6732667#"&55#3'67#&''67#âL$ $+ A> ] O0 #-¾F I  ©t-![  /;ÿèðÇ$)733#"&55#'6653&''67&'#367»(, U ²#%5:.,: 4& )!!Ç9  ,"  *h    ÿè|Ï!%73#3#"''3267#'655635#35#r !,FGJ7 5"3333Ï W 7 !' r<A5 ÿêƒÐ(.4767&''67&'3533##"''3255#&'''6   -&&   -W  9È      SP  K  ) ÿéŽÆ!%+173533533#3#'6553'#335#35#'67&'-e mHHJ% 8  Š!# 4>^<+f##:  ÿè…Ð873533#3#535##5##53#3533#7#5'75#'67#53100$_'1sN+4<!#25* ¼  ( "  ÿéˆÏ#'+3773533#3#3##5#535#535#35#33535#335#5##535#044,,3344--0-G-EEE  G  G ) ) JF F* ÿèÐ,2873#35#535#53#563533#&'#5'67#7'6'&'9A0g2,,  (Z?  Ð [VŠ))  .0 7   ÿíôK $7#53#3#537&''6'&''6xcØbiçkD  u  :<9      ÿéóÏ!*.2DIgmq‚†Š73533#3#535#733#"&55#'665'6553'#3#5#7#53&''67&67#3#&'#5'67#5367'23&'#35##"''3255##53#735#122)d*1½  n `(j^  *,9,z ,G1S(]KZZ‘   ž-ddDDÈ    O %     '& )8  ÿìðÆ 7733##7#7#57#337#37#37#* ¤œ o66K4T66C<9mYYnXGGGGYFFF ÿèóy#(-273#3##"''3265#'67#7#53735#3377##67#ÚF  F=:N=?=y,  ,,, J ÿèôÒ/dhmr733#5'6367#35#3673267#"&5'733#&'#3267#"&55'67#5'67'53337#367#335PW7© &JKL% + * TBS?   $&!? 79 HGO K4Ò #         '   # ! *3 # yçË 733#3#5335#š::-a!;;Ë'XXF4ÿéôÍ&9=AE7773267#"&55'75'75'6'3#67#5'675#35#35#75#Ø /18:  '*$'" 0—g $ #""""""Í%&3  6&" ‹1-•""W$`&!ÿìîZ)767673267#"&55'75'75'6Â#'*!N3(-1 ) 4("%J>A9RZ       g ðÏ&,273533#67&'#"''3255'675#7&'&'l4<< !     4^ =  ¨''"  !   :7  7 féÐ !73#53&'&'73#5363#735#¦4w. A"ƒM Fee??Ð  %  6E# ÿèód%E73267#"&55'75'75'277''277767'5'75'7æ4  ".- (*.- $&.0 $' #*     (     aõÆ /573#735#33535#335&'7&''33267#"&5''6vkk-G-  7  A   Æ`7>- 0  , P ðÍHLP7335#535#535#535#535#535333##3#3#3"&''67&'767#'7#3535a-  # ! !$$ 0*  bÀ!         "* _çÏ"&*.4735#53533533#3#3#'67#537#75#35#35#&'j%1>C + ! +3.L%NNNN6 ¡ I $ I ( B  aêÐ!'+/373#3#535#53635#'&''6'&'3#735#35#¶&*2‰%C R  W  ccAAAAÐ ''G'/  . 6O.1 ]ëÓ $(,04107'6733#736735#33535#3353#3#735#35#m $1 t 88!!1"S!!1"iƒƒ eeDDDD¥ ;H$  !?' ! ]éÓ $*06<@DH107'6733#736735#33535#335'67&''4'7&'3#735#35#m $1 t 88!!1"S!!1"[ KQYeeDDDD¥ ;H$          ?' ! $ÿèòÎ#)73#327#"&'#67'56&'&'Î "#MK)  6M YHK  Î&-6( !C6X  ÄO#9Y $ÿéóÆ %7#3#327#"&'#67'535&'#ßELH - U)%2 “BMÆK"%0.A  Í%%Y!ÿêlP73'66X,(P,) #ÿçŒM 73'6673#8@M-( ")bÿí¥Y 73#5#533533’z)*BU K8PPÿê»i 7'67&'3#"''3267#'67#C YD_ $+&i  '2 + ÿé©i 73533##5#735#33535#335<<<<++=*g++=*ZQ 0/ÿè¼u$*73&''67&''667#&'&'FF ),". ) !/ : ! =* )Ï< ( -*)=` ¼5M':ÿèõÑ-37&'3533#67&'#"''32655'675#&'± _b[ * B +49._!Ñ  %%# %$!Sk <#"< Šnµ¢7&'š  ¢ LÿêöÂ73327#"'&5#3533##5#O{  g&&&&Â__,~G>>kkYÿóí¶7#5##535#3#íjjj``¶ÃàŒ; ÿèöÏ,6I7367&'#"''325'33#5#'6675##533'67#3327267##"&5ª  s'2'D(  ,) >%Ï>  &:  ¡!8& z.EB );A&0*[   D ’Ï733#67'5#53Z$$  ÏFO \2ÿêšÏ73533#"''32765#'6655#O'   ¤++Œ) "bIJB>C šÊ767'7''67'6767  ! –C* *#:6!KÿçìÄ 7#5##53#"''32665#7333#ìt2`   b \•mmÄ12LS# &YJ@ÿê‰Ï 73533#67#"''3255'675#B      ¥**2 I  <:@ÿéŠÏ 7#5'673#f  ϰ‚2’Fÿéö™73533#&'#5'67#TCF9% &*+6r''89fe5  4FÿéµÃ &73533##"''3255#'655#75#7&'FN )N) `ccO M;# =RRAPÿéñÏ '7#5##53&'73533#3##5#535#'6íuD799EEHH# ³5##5  #$$(<<( I‡¼ 7#5##55#35‡,¼±¸J9966_ÿéòj73733#&''67#q*;3 / +9 4(K'*)'OÿèìÈ 17#5##535#3533#3#3#"''3267##5#535#535#ìwww "--**1   ##"Èàà¿­$99Fÿïõ[733533#3#53g 66H¯!GEY(0ÿéªÅ$(73533#"''3255##5##5'6553'#3_    [66ƒO  9jjU?%"MMB0DÿçôÊ #73#735#35#3#3#&''67#5367#Xˆˆ````“CQD3 6 C 9 ?E<ÊX545 '! 9ÿê­Î/73533#3#3#"''3255##5##535#535#'6W)),,( &-- Ê G  2__K[ 8ÿèˆÉ7#"''3255#'65535#35#ˆ ÉÉ ?0) *6v9&c*JÿêðÆ #73#735#33535#335#53##5#'66`€€##7#Z##7#U,¥%,Æb9@QQQ% ‹ÿèõÐ 7&''6&'&'·  & !%Ð $"$$<.^ÿèòi73533#&'#5'67#m390 " "%Q#&JO'!LJçÏ 73#"''3267#'67#'67#'6wf    3-&  Ï P88# /'  ÿéõt"E7367&'#"''3255'67#53'367&'#"''3255'67#53¦    " ##a    % ! 0t  %4  1%"'    0  ;*!CÿïðÎ#733533##5##5#5333#3#53533r-))-''%;;E­!Î+1AeeIÿèôÎ'733#3##5#53533'67&''66Ÿ22=EI"3 p  :2 26Î <<;;#     1ÿèíÊ #)/73'6573#'3533#7&'#5'67#7'6'&'O!Šo+,,    %W  A  ÊlH. ,=lá…[[ RM"-[! LÿëôÐ!'733#3#53533'6'&''67&'Ÿ::A¨"8 ^6$ (C Ð&BB  *BÿéóÌ 67'2'6'&''&'3533#3#&''67#5365#Þ ??IA5 5> : Ì  !   1 # )(! VÿèïÐ !%)-73#5##53&'#5##5##535335#33535#335¡ArA])'9:'':)c'':)Ð .. Gr 55t*CbTíÇ 7#3#3#535#êthhw‹UUÇ2sA<ÿëÍ273533#3#5##535#367#"''3255'7567#F!!%7%D  ' .¹ : %  MÿêõÏ%+/73533533##5##5#3##"''32655###535#M),++,)    rZ;((¶!m h< G+Dÿô„¾ 7##55#3535#„--¾¶Ê6%%$$\&BÿéôÏ*0673533#&'#5'67#3#3##"''3255#'67&'LGI< ! ' '=~~¥G  J!m¾ +)<4  1 >ÿé„Ï73533#7#"''3255'675#@    ¥**0 G  99;ÿêÏ73#3#'67#53655#535'6†  !Ï- 2 &'NÿèôÒ *.273#53&'3673#53&'#"''3255##535#35#¡?”= %(¦.w  `````Ò  *    5g  'y!0<ÿîõÐ '+/37&'''63#"''3267#'67#3#53535#35#35#Ã: f *0 +v¹(+Ð % 7#0#J@@@/////?ÿéóÏ/3733#3#3##5#535#535#533#3#5##5'67#35#•BB99JJII33>>DžceQ %&/QQÏg J 2 AMÿéòÐ373&'73##5##5#'67&'3#3#"''3267#735#R@B0, r tr €qy¼ ::;;    +0'1EÿðóÅ #73#735#35#3533533#7'6'&'Weeee&;:®— r  Åb:>‰VVVV^   :ÿé’Á7#5##53'>&'*   Áš‰Š›'O0&  ",0 7ÿé¢Ð %+17&''63#3##"''3255#535#'67&'k  !9!! ## I  Ð%J G:# FÿéóÇA7#67&'7''5353573#3#33267#"&55'67#'7367#‡/ X "   #. +Çx9   Á$$4"">% D  ,#!&>8/&>ÿèõÐ 973#5##53'&'''6&'67'7''5'66556žFyD+'! t  $     UÐ )'(  A'+LY  f)"  &!:ÿí£Î  73353353#3#67'5#'655H  MSSH ½,==,=C  @ %"  Eÿí‡Ï73#3#5##53635#5#_//Ï J_È E&++JÿéíÆ =7#5##535#3#67&'#"''3265'67&''67&''67#í~~~g+    "  'ÆÝ ݰ       CÿèñÏ=CI73533#3#5##535#'67'677767&'7&'#"''32657&'''6OBIIIyCBI%0**) %   )=  »)(}    ! -    AÿïòÈ =M73#&''67'67676767'7&''67'67676767'3533#3#535#Rœœ= !  c    ‡D@@M±PDÈI  .   -ADÿè€Ç7#"''3254'7##5€ ÇG#'EÎßyÿêõd 73533##"''3255#'67&'„,-- , P  S?  < ' EÿèóÏ-1573353353#3#535#3533#67&'7&''675#75##5#[%%8H¢G8;<< DH&&;w)'È#**!2=<  aÿéöÏ%+KQ73673#3#&'#'67#5367#7'6'&'367&'#"''3255'67'&'r+6;R#  $ &%a I  0      Ÿ   >     j.        GÿêòÈ '+7#5##5'67&'3#3#535##5##535#ïy: + +D!N„:H F8…aaaÈ&'    ";G G,AÿéŠÏ735#535#53533#3#3##5#AD&! !&IIKÿòòÏ/573533533##5##5##5##535#535#53#3#3#7&'K+'..'+¤{H55-n/66I£x  ¸0 0†!!0 AÿëôÐ *.N7#5##53&'733#3&''67'767#53'3#3#3276767#"&55#'665#ï{F!  * X>> N 4% ¸((  "    $M R1' %)?ÿêõÏ-EK73533#&'#5'67#73533#&'#5'67#3267#"&55#'667&'O    P$     *   : # ³  ,0 '#2* RI! <%"  , <ÿèôÓ 6:73#53&''67&'3#67&'67'5'67#735#™ G A# %S# "Iy/  9  2(TTÓ  & ;   : % 'FÿéöÑ */<BH73#5##53&'33#3#5373&''67&'#3673#"''325''67&'™ Hw?"S6G   g  D  Ñ ), 5*;'#/!#0B  9#Bÿé÷Ï#CI73533##5'67#&'&''6367&'#"''32655'67'&'P@FF& '4g  () )+ , ;   %   '-!!  º-"     )     uÿë÷Ð 17&''6'''633#33#"&''673Î  /   %%  "   Ð%3 )6 - !D 2ÿéñÅ +17=C7'66553'#33#3#"''3255##5##535#&''&'&''&'b ˜qqk‰?:  (%78_-G-,C2 /"[5$ _  Jbbfw+        @ÿë€È73#3#"''32767#535#@>&(  (&,ÈK(H" 0J)5ÿéöÉ$(9=A7#3#67&'#67'5#'66553##"''3255##535#35#쇇=  <   $ggo   PPPPPÉ# ) ("E6 3"`NS  "h ' >ÿïòÏ,<73533#&'#5'67#73533#&'#5'67#3533#3#535#M  O#      N???N±O?¯  A;' %B>#m>ÿçõÐ 37;?7'2'6'&''&'3#32767#"&55#'67#735#35#35#Û >O°O;Ï *+&    ==ÿéÐ#73533#3#3##5#535#535#35#35#B#%%""((#++++¼Y--Y977ÿé¢Ð %+17&''63#3##"''3255#535#'67&'k  !9!! ## I  Ð%J G:# FÿéœÏ#'+73533#3#3##5#535#535#35#33535#335H!!! ## ! - ¸]((]9=@ÿéñÆ%+17=73#3#3#535335#3##'3267#733&''&'''67&'O F< ! ;_ ;;;;Ð      ).b !( y$%tX  BKÿçôÎDJP73533533##5##5##5##567&'7&'#"''3255'67'677'67&'P"+''+"œxe**#   >  '  c »**#  )  "  A   9ÿçòÐ+/37?EK73533533##5##5#333###5#535#535#5335#35#3#'3'667'67&'L"3++3"D;;66CC55((((.|  $E  ¿  ^^  , &UT'  ?ÿø†Ê767'67'6767'6t$   "$¢6  !-'j CÿèöÒ0EKQ7&'#5'63'3#735#3#"''3255'675#73#"''3255'675#&''&'  $, K 9. .wwPP$H !'6QH #6  J Ò  #) 'V   V        9ÿê Ñ .73&'73#3#735##"''3255'7567#53B#!Z JJ##?  *. ;T½ 4^   cÿüÐv73#&''67&'767#53'¡'  !  @*v       jÐ`73#3#3#535#535#la&##)f*##(`FÿêíÐ $(04873#3#&''67#5365#'673#735##5##535#35#d1$&   )-  T==!^^^^^Ð       W5Xii%:@SôÏ%+73673#3#&'#'67#5367#7'6'&'Q>CJ]) #())96{ W  °   0  AÿéŸÏ#73533#3#3##5#535#535#35#35#F && ##&&  ,,,,ºZ,,Z478ÿé‰Ð73#&'#5'67#535'6      Ð,  fa$.&CÿêòÏ+:>B73533#&'#5'67#73533#&'#5'67###'3255##55#35M    O#     F bubbº  /, 0. H]  (u .ÿèóÈ (C_7'66553'#333##"''3255#5357#33##"''3255#53567#'367#"''3255'6757#] žxxfn9;  <<M=D    -KA    *˜4E6 3#`0   :     LÿèëÉ 9=7#5##535#3733#537#3353#3#3##5#'735#535#735#ë{{{+n%"F`!##%%) ,,->>Éá áÅ´ &&    4ÿìóÇ-39I[73#"''3255#'665#'3#"''3255#'667#'6''633#3#53533'33#7'75367žP  \P    c  V  }b\)1 ÇS >'$ &S >'$ !! <,II[ GC@ÿýžÏ #73353353#3##53#3#3#535#53IUDD#X#%\%Â(55(8!AÿéŸÐ+/37''67#53&'73#67&'#"''3255##535#35#‡  (#/   (((((¢    2k )€$66ÿè¢Ç $(7367#533#67#5'275#35#35#75#<11G   ! ! Ÿ  s!|JM@ÿè¤Ï%+73533533#3#535#35#35#35#&'''6B c"!   ±mmBC0  JÿêôÇ#'+/373#3#3#5##535#535#5#735+335#33535#35#Jª6//-t/006a,>11E/t11E//Ç9f g9eee&K7<ÿéÎ7'6'67#d #Î-b !( xEÿÿƒÎ 73#5##5365#5#_Î ¤ ®R22D33iÿõÒb73533#&'#5'67#k(,,  "S 26 qÃ` 73#735#35#qRR,,,,`Z687ÿèôÏ.26O733#3'7#73267#"&55'75#'665533#735#3#3#&''67#5365#Ž??O =,.  #&+ >ggCCw3B8', 6- 5;2Ï      I:/ +QE( #@ÿéõÐ#0@73533#3#3##5#535#535#35#35#7&''63#3##5#535#B  %%%%f  F%%##¼Y--Y97n)&MM&Eÿóòx %73#3#535#&''67&''6R–AK­NA a  xaa   %   ÿêíR#7367&'#"''325'3'67#y  6!   N@9-*R    #$  :1 #FÿæôÊ#/D73#3#5##5##535#3#73#3#'3#7&''63&'767#53&'Q“?H58KA**K((''L**< "+ )'!) 2&1 "3h>Ê ,##- '       .ÿ餯"&,273533533#3#'6553'#335#35#'67&'Y   Q ]77:   /  Š!#  5=^<+f##: >ÿê Ñ(.4:73&'73#3#3##"''3255#535#53&'#367#&'''6I ! %   $ % #  -¹  @  <*\    8ÿëñÑ,048>NTZ7&''33#67327#"''67&'#'65533#3#735#&''33267#"&57&'''6Ô  21     FW<5522  %mz Ñ #  !$-$!  @ 37, / } òÏ,173533#3#3#3#3##5#535#535#53'#535#37#„),,21))11..))1 0)' /¼ : |ïÈ"&73#"''3255##53535#335#3#735#ã  O54##44ÈKa  MaqKK:(77 8ÿéôÏ159>BFL733#673267#"''67&'#7#5'75#53&35#35#675#'3#735#7&'±%%      %+ vU.....MM))|  Ï+ #,   0R&#\!C38š8 Cÿó¾ 7#5##535#35#35#¾ÅË6$Z$]'PŸíÏ73533533##5##5#P&$,,$&Á:ÿéöÐ#'+TZ`735#53533533#3#&'#'67#735#35#5#'67'677767&'7&'#"''3257&'''6C!K!/ $/& '4KKKKKK:    + B z; ;A # " ]           @ÿé’Ð#73533#3#3##5#535#535#35#35#C %%%%¼Y--Y97>ÿî¯Î 8733533#53'&'7'63#3#7'75#535#53&'736_ _` &!!*+3'!!% Î:::1 6   >ÿêòÐIOUek73&'73673#676767&'7&''67'67#676767'7''67'67#&'7&''332767#"&5''6J%  +  ( !C "O L  X$0  ³    *   +   r  + -:ÿé Ñ473533#3#535##5##53#&'#5'67#535'6F%##!S %Z7?  !¾*''   /-?ÿéöÏ#PX\`73533#3#7'5#'67#535#'635#'673533#3#3267#"&55#'67##5##535#35#U   ' P  #   AeeeeeË & "     5d d$6EÿêñÏ&,2:T]7367&''65'367&''657'6''6#5##5367&'#"''325'3'67#½    R   8  P  ¢†N   )  ?:/$%Ï             @00   !  7(  =ÿçôÑ #'+/5;7#5##53&'7'6553'#3#5#3#735#35#35#'67&'ðJE,, # "      eÒq73#3#535#535'635#½// T#--+00q  ..  W ÿéóz.28CPV7&'733533##3#"''3255##5##535#5#53#3&'''67'7&''67&'''6"U:((&H   52E& M::¢s  V  … z   A  -CCHX          9ÿ鉯 73#735#35#35#'67&'CAA   4 Æ£rOM5 Dÿè€Ç7#"''3254'7##5€ ÇG#'EÎßMÿéî)73#7&'7&''735#35#7##53#"''325MI7!  %%%%}$G V*   h3!†˜j BÿèðÒ 6<BHN7##3#"''3265#'67#5#53'735#535#535#673&''&'''67&'ðY o  n  F=_**,9y&(    3-¿+DA* D+  P   B    ;ÿî÷Ñ$7INT\`dh73#'3255#'67#5353635#&'733#"&55#'6553&''67&'#367&'3#53535#35#35#g         Q    g€³)*Ñk $ 4 ?#  #     >       8777&&&&&DÿéôÐ 8@DHLP73#5##53&'3673#'#5##5'67#53&'735'63&'#535#35#35#35#žGyCB6# Z '2;+\ $$6$$6$$6$$Ð "%  Q P  ]..BÿëºÎ(JOU[767&'767#53#"''3267#'&''56&'#3#67'675#535#5'63&''6'&'n ;    %  %%0;)) &9 ' 6 Î,  ; %" DE  !#   =   6ÿè¡Ï973533#3#535##5##53#3#&'#5'67#535'6A&((#R&_>55>&&  $'*   $    +)9ÿêžÏ).4:73#3#3##"''32655#535#53&'#53&'367#'67&'n     !!&     C  Ï F AHj   CÿéôÐ#0Lag73533#3#3##5#535#535#35#35#7&''637&'#"''3255'675#73#"''3255'675#&'Cb  "'      0'     ,  ¼Y--Y97m   *!e )  6ˆ (  7  6ÿèöÐ/6JNSjo73#3#5#53&'3#735#3''67&'67#53667#'#"''3255#'65535#35#'66733267#"&55&7#œM€’N6ll(         l ,   Ð  B) !  4  7Z  )(+! !1Y - @ÿè‘Ð(,073533#3#3#535#535##"''3255##535#35#DO G  #####Á    Hi  *"25ÿèóÏW[_73533533##5##5#35333##35#53353#5##535##5#3#5#'6753353#35#535#535#33535D(9**9(;>>4&%43' #2;;LL;M+++Ä   2 "s"+ 99 * 5!2   KZòÏ&,2:7367&''66'367&''667'6''6#5##5Á   R   :  N  ›€Ï          6&'AÿèôÏ06HY]a73673#3#3#535#'67#'#"''3254'7##5&'333#"&'&'75#7#"''3255##535#35#›,31D  ! L"# %t  """""¼   G#'EÎß 4_ # Q R  i * 6ÿëôÐ!%)-?EK73533#3#535#735#335'&'3#735#35#35#'333#"&''75#'67&'{*,,5z2**z  7ffAAAAAAP& 04 >"  `  6 Ç )  0X> " ! 6c  UB   9ÿîôÏ5Y733#3'67#&''673767#53&'''67&'33533#3#3#3#535#535#535#53k ;2,    D 8L    '55..22>¸B33,,11Ï  / #      9ll  4ÿèœÎ-73#&'#5'67#535'267'5#'655‰ #"    & " Î  )) w6 5 '# " ]õÐ:?EKP73#&''67'767#'6'3#33#3##5#7#537'63'7#35#5#'#3'§@     + oQZRQ    Ð      &    ;ÿê©ÍCIO73533#3#535##5##53#676767'7'#"''3255'67'67&'''6B())"U"(^>55       ! .  Á   $  %     4   MÿéïÏ'-3;?CKO7367&''667367&''66''67'6#5##53#735##5##535#r   N    gQJzggAAb___Ï               6-./-99!CÿêvÄ73#3#"''3267#535#C1    ÄG+M5N$ 5ÿçñÊ -;AEW]73#735#335335367&'''6553#6673#"''3265''673#'37&''66''6Jžž-T   ¨–T  kP9    Ê2E     ) &+B: q k Y)     6ÿé¯Ñ  .;7'67&3#3#735#73#735#'67&7'67&s ' 5;;** ++ ,  . µ 99S #   #  Aÿåõ~#'+1773#3#3#535#535#735#33535#3355#35#'67&'VŠ&&0´0''((9-f((9-000 U ~A    ' $ &       ?ÿæóÌ #7;?CGKOU[73#5'675#'3#5'675#&''&'3#3#3#535#535#735#33535#3355#35#'67&'M!;RL ;^  M  &&3´/$$**<-i**<-...  Z ÌE  E     -@    & " &     ?ÿèôÐ.4HLPTX\`fl73533#3'33#673265#"''67&'#535#7&'3#3#3#535#535#735#33535#3355#35#'67&'I(((0+*   u0(”‡fv)B)6 Á->$5- 'O?A    ' ' '  !   _ÿñÐ~"(,273533#3#&'#5'67#535#35#&'735'6a/00))   ")/ &  u  6  $( 6 4   @UôÑ$+06<UZ733#3##"''327#7#537'673#36'7##3#&'7#7'673#&''67&767_F  E ? . Y 0      ·      #      9ÿéôÈ#:BFJN73#3#5##5##535#3#73#3#'3#3533#&'#5'67#7#5##535#35#35#QšDM;8JD,,J1166O11   +++++++È %33% & <:#w w-.^ÿðЂ#'+573#67&'#"''3255#53635#35#3'67#,"  %8888) ‚9     39  "  ?ÿïóÉ #'+/37;K73#735#33535#3353#735#33535#33573#735#33535#3353533#3#535#Uˆˆ''8(`''8(‚JJ  *  JJ * EEEP´PEÉD(( &F),)F),1 IÿïòÏ,048>FJNR73533533##5##5##3673#'#3#535#35#5#7&'3#53535#35#35#N'.((.'Y$) U11f + © *)     e+*  +,,,BÿëœÎ !%8<@7&'67&'67&'63#735##3267#"&5535335R  #  % ;EE%%     K q<XB%z  Jk & '==&!.Ð       !!   "!        ,+60   !   .ôz 7&''&'''67&'Í  YF  z"   ! ' ®èÁ73#ÐÐÁ%hÙË 735#53#535#-—²´Ÿ—¤cUÓÑ73'67#&'&''6k_*‘ ‡$L     6ÑC3   '0çÏ 733#3#5335#qbbS±J6‰‰Ï!PP=*cÿùñÍ7&'73#5363#3#  M &{A HkkŽŽÍ  \6 ,õÑ 7#5'6#5'67#53533#&D  &u) ,3@E8+&Ñ rZ%a_/ *%%$ #WæË7365#53#3##5#'67#7#34$®!--F (0‹ACœ 11+/ %fÐ 73533#7#"''32655'675#% %§))!" &&óË"'+733##3#5'67#5367#5367#3353535##±y’¡ #4IO?RMSZp{{Ë## ! " L!  : VVVVVÎ " ;        +P  !e %  &6Ê73'65#ÊH9# !/ïÏ%)/3973#3#3#3#535#535#535#535'235#&'735'6Ú (1ddTTUUeÝdWWSSffR]F@@DA" Ï  ?    ?  c    Vÿðò] 73&'73#3673#53&'`7=‰$   ,œ- N† êÈ$(,04733#"''3255##5##53&'767#35#35#35#35#ˆ^   .  H)))Èu **-†  H: ;öÏ*C7'67&''67&''6#5'6733#33#"&''67B$ !M  J y  &i77,-   Ï     !     E4  ' õÑ,CJ73533#3#3#3#"''3267#'67#535#535#73#&''67&''667#100,-0D@   0  !4+,1‘B  &¾ + #0 %($ "=óÑ,?EK767&''6''6367&''657367&''65''67'6| # M#@ l:     )k    $‰  m  Ñ     " 1           !óÏ!7;?73533533##5#5#3#5'675#5373267#"&5536'3#735#?;@@c?Ž;& **ª    s<<¿$$b     KO-|ÿýÍo7#"''3255#'65535#35#Í   &  %%%%oY  ))+wÿýØu73#&''67&'767#53&'¨(   7#u        LóÇ #'+/73#535#535#335#3357#3#3#55#35#5#`a! 266&)l/;;Ç{4T4{!#7r×j 7&'33267#"&5''67&'¢   Vj 2  +%ÿéÛ\73#735##5##535#5––qq”‘‘‘\/ )99  >óÐ 17=AEIM73#53&''367&''667367&''66''67'6'3#3#3#735#L?  ™  °  ›  PAAAAAAÐ  *     0A     2#  ' :ïÇ4h73#67&'#"''32655'67&''67&'#'67#73#67&'#"''32655'67&''67&''67#d*      " $md*     !  $Ç                   GÿéöÎ1V\b73533#3#67&'#"''3255#'655#535#73533#3##"''3255#'655#535#'67&'U   R Wž± G  o#?) $8#s  oB+ (:> 9îÏ)-15973#35335#535#535#533#5##53567335#3#3#735#1$Y!. · 66((&& •eed)*\  2V -  õœ5;AS73533#3#535#73533327#"&55#''67&'765#'67&'3533#67'75#(''/r1(m(     V  B <#%%/:0#‘   :&)      yÔw%73'67#'6673#35#535#53#“4 %   6(Vw  "  ? Oÿé÷Ñ!:>BZ^b73533#67&'7&''275#735#3353533#7&'7&''675#735#335'3533#67'7''675#735#335b677 7I#"6$$6%*  !  Œ"  Á5]88  3ó£+;K73533#'#5'67#73533#&'#5'67#3#5#535#535#53733#3#3##8$!!    \"(       <<88;;&AA??DDœ    # +R    QÿíóË#'+/37;GUb73#3#5##5##535#3#'3#3#'3#3#735#73#735#73#735#3#3#535#&''67&''6`‡;F55F;U!!D""D))J((..',,&--r@H¢G<  `  Ë /!22!/ " *  *  * %,,      ÿèóÐkosw{–73#3#35337#537#535#533#5#3#&'#5'67#535#3#&'73#&'#'67#5367#5'67#535##53'635#3#3#735#67&''66''6G"Z! 2(      J  - 'K0 -F    (099++..  6584$!  Ð  II G%         %BE;  |     GÿçöÐ6Mp„Š•›§73#3#353#5335#535#'63533#&'#5'675##5'67#53533#&#5#&'7#33'735&'753#5#5&''67&'767'6'''6'6'67'533Œ   8:     ^' XN       G Yv   % %m:IAÐ           " , 70!           "   ( ÿêòÏ7&&'#5'6556Ô ""aÏEO$$UN¾¼EA838X ÿéïÐ@E7'23'73673#5##53'3673#3&''67'&&''67#67Õ Lo\3     ¤& 8…  *:(%1 ' !.D!Ð    ()C      '!  ÿêðÑ 06;AGMS7'2'6'&''&'33#"''32765#'65537#37#&''67&'#4'× Np]Q>  0œ "   § "ot ’  m[  Ñ    %@ ! 0?% 0 $  ÿéóÎ#'=OSW]7'23&'73673#53&'35#3353353533##"''32655#'#67&'7&''535357&'â W|h=,(¾&&8((IE E L  * 9999  Î   22 3;? ; I  oÿéîÆ 7'67&'&''67&'76S &)r""')5 8,#B ="Æ 1&'&$8 )$*$ ÿèõÏ 17'67&'&''67&'763#"''3267##5#\)&k $ %",/ >)!L :$fž L)Ï  !     @< $__ ÿîõÏ 48<7'67&'&''67&'76#3276767#"&55#;5#\* &k $ &"-/ D&+@ 8#22&!Q@F2244Ï         ;D  b"" ÿé÷È+=Obv7#53#3&'7'#"''3255##5##5'673&''67'767&''67'76&''67&'767&''67&'76ucÙbC !  EA ! 8     ^    R   _    ¶   „   £             5        ÿéÀÏ73#5#'67#535#533¬G; 40ŒjVÏæVF4(P= ÿéåÍ733533#3#5#'65.JE£|j#Ì<==(lY6# *=VÿèôÒ6:>BFJ735#'6553&'73#3&'73#3#"''3255##5##535#'35#35#33535#335|15;6.5/  -1cc/N/w-B1 2=Z  3 Y   o 3q/SìÏ736533#&''67##5##5&MPT0+//, 7EƱ¿  2%)fÿéòÑ )73#5##53&'33##"''3255#53567#ª:^6V;;  == @Ñ .. C; 7JîÒ.573#67673#5#&''67##5367'67#53&'&'#6ƒa{ $W 7B6a #& E_<",Ò   )  * ` 5ÿéðž 673#7'6'&'&'''63533#3##5#535#'6ŠX!!„p  /"#$IIRRVV1 žC6        \‘Ï73#&'#5'67#535'6ƒ11  )6,9Ï  !'~XëÏ73#"''32765#'67#'6œ@  ) # ÏH *-"  ÿéôk573533#7#5'75#'673533#3##5#535#'6%9w))//66h)%   %%  MôÏ%+>73533#3#535#73533##"''32655#&'3533#67'675#)**1v1)t? ?  }-,,:=-à   = 8    1ÿéõ«+E73533#&'#5'67#'3533#&'#5'67#3533#3##5#535#'6”!%  Z     'IIUUZZ3 ™  (* ! <   1ÿçñI73533#3##5#535#'6U+CCQQ[[9 I  IîÎ!&;7#53#3#''75#53'35#35#35##7&'3#3#"''3267#735#¢'`'/ /9400<</µM8= @ 5;¡-- *  *B  c4#/ cÿèôÈ "7HLPe73#735#33533567&'7&''673267#"&5536#"''3255##535#35#73267#"&5536g„„(a  r    +     l    È7*      4'Z  $o +    = WîÐ!%)GKOS73&'73#3#3#3#5'65#5#3573&'73#3#3#3#5'65#5#35/  ^*M  ^ )Ð    A   \    @   BõÑ"',0Kchy73#3265#"&55'67#536365#335367#335'3#&'#5'67#535'23&''7&'67#53667#74''6767'¢3,    ! ,D)d(!"  ","+.   $ $¯  Ñ B'  B# $ 3     ;   "    QÿéöÏ!%5FJPVns73#3#5367#53&'7365#5#35'33#7'753773#3267#"&5735#'67&''3&''67&''667À'B+F' 9 . M) V  k 12 )%   # ÏUU =  A<7C5  #L           ¡ÖÏ7&'²Ï¦§ÓÑ7&'¸  Ñ `ÿêõÐ "(7#5##53&'73533##"''3255#&'í_3Q[&&  [#  ¶22  C[  V  TÿéˆÐ 73'65'3#v%"Ð…<& "4b†Tÿþ—Ê7&'37'5#p  + Ê 3j  p ÿèói "57&'7&'36533#&''67#73533#&''67#g  z  ²)*, !''n$5+ ' ( % $#i   %""$(&!NÿéòÍ%28>7'673'675#53#3#"''3267#73#"''3257&'''6¨B  g1!   $_  ,  3— 5! &L'J 7L   ^#%'"1 Lÿê²Î.73533#3#3#"''3255##5##535#535#'6e ##&&$ !&&ÊG  2__K[ _ÿéêÇ )7#5#;5#35#'673'67#&êƒKJ "H ' V@ÇLL****#  < Lÿë¿737#"''3255'7567#P@     +¿% O C7Kÿê¦Ï 73'73#3#3##5##535#K# "[ FFFFC  ° U U8&Tÿí“Ð73#3#5##53635#5#q,-Ð I^È E'Ž++Pÿé¢Ï#'+73533#3#3##5#535#535#35#33535#335Q! ""!  (  ¹_++_9=DðÐ,I73533#3#3#3#"''3265#'67#535#535#73#&''67'767#'6(00)).=9  -  !.$$(ŠD    + Ä              KÿìªÐ$*/7#"''3255##5##53537'6'&'&'''¦ & :  E "  Šˆ tŒŒŽžFF7   L"))!.Eÿé¡Ï 073#53635#35#3#3#"''3265#'665#53&'qC """".,    Ï RR +0" 5 $ !" ÿéË #'/373#735#73#735#3#735#33535#3353##53#=#88188Nmm-G-f„„sMË--(J, & '=::ÿè¬Ð/37;L`733#3'67#'655332767#"&55'7533#3#735##"''3255##53&'73673##5#FCCTq0A4 $'ss ``==X   P  Ð L?1 19V     (  4 #>J   GÿëzË73#3#"''32765#535#O&   ËK"WòÎ /73#735#35#3#3##'3255#'67#'67#'67#gxxRRRR)¡hg   %   "Î:$$     tïÍ#'73&'73#3#3#3#5'65#5#35— !c /Í  l &")_ÿêôÇ#'+/373#3#3#5##535#535#5#735+335#33535#35#_•/**)d)**.S%8))<(d))<((Ç9f g9eee&K7Gÿë¨Í/373533533##5##5#3#"''3267#3##5'635#R2   '$  º m+Y F FN(OÿíôÉ'-HNT73#3#3#535#535#'3#3#3#535#535#&'36732767#"&''67''67&'§BGLBG@ *     €  ÉX  4*4" 9   Dÿé¬Ñ"&*.M73533&'73#3#5##5##535#35#33535#3353#3#"''3267#'67#53&'Q"  ($!"!5!'83 % &½  Z X ' )*  "%ÿîîÏ)-159S73#35337#537#537#533#5##53'67335#3#3#735#3#3#3&'73#535#535#1Z1´ 88,,,, J§MGG(#ÕbDDH™dd`))Y 0S  ' G >ôÌ+<M]k7'#"''3255##5##5'6735#53#3&'''7&'767''7&'76&''7'767''7'76®## EB$ :cÜfCD    \    N    ]    ¹ H  9OOLV            ƒ òÐ06:73#3#"''3255#3#3#535#535##53&'#53&'367#35#½-  7, "Ð  x  b//u† 5 o;ôË)>P`o73#3'7&'#"''3255##5##5'6735#'3#3#"''327#735#&''67'77''67'76''67'7'&''67'7Z“@'     ((  "AH>'/  /%,|    >        4    Ë  N EZZZ` 41&3%       LÿéîÏ(.26T\`73353353#3#3#3#3#5'673'7##35#5##"''3255#&'#5'67##5&'7#35#[+'@9<3333<‰   AD*++++z  # B  c   Ê! /     > +  CR%   FÿçöÏ$(=AEKQW]c73533#3#535#3'67#3#3#535#3#3533##"''3255#'3#735#&''67&'7&''&'SGFF=Œ=G  o+D–@2¤¤J7  7C;;MG Z  > F  Ç      -    Dÿè»Ð+/37HZ733#3'7#'65533267#"&55'7533#3#735##"''3255##53'73673##5#w((3 E"%   GGCC##: 1   Ð  L?1 29V     (  7  (>J    ÿçóÏ$7&&'67&'7&''5'6556È" &%SÏHQ&%YP© $ ³+^= 7\8‡$õÏ#736533#3#&''67#5367#'6Ÿ *,  +.   %øÍ&*73#"''#3267#"&5533265#'6#3žE  & 3; (ÍO  \85 ) IûÏRX7"'655677&'7&''73#67&'##"''32655'67&''67&''67#&'9 0"    Em1       "   &  ´,% "#* S   o    !      zòÏ#7335#53533#353#3267#"&55#€//00, )“-::/C  !TöÏ,07=73533#3#535#7'6'6#3#27'63&'#735#2767#7'6533(h-5 (&'#,*œh 2=DD    5 -Ä      &  !  ÿé’}733533##5##5#53#3#3'00C0000|jj"ÿéßÏ7#5##5##535335#33535#35#ßB?SS??SB•??SBB­•@@”""9&&&^%%%ÿíôÏ!%)-7#327267##"&55##53535##5#35335ÒS  2 =Q??==?®ƒ    ' !!8%%%%%%%% ÿèæÓ!%)-73#"''32767#'6##55#'#33535#D› ”  ${po$%%%%$$Ó Ÿ1.k  #r‹/ÿêðÏ +73533#735#33535#3353#3#"''3267#7#&OS¶;;O?Ž;;O?¹áž •-ÁW51.3%âÍ 7'6'&''&'ÐM  5 Í )   cåÏ%77'7&''5633#"''3267#'67#i($   ,5g  #% Ï /   L= $1$ :÷Ñ&7&'3#&'#'67#5367'6767'¨ €8$ +"@$& /F %/4Å  #ÿèôn #*7&'''673&''67&''6367#¯$"`% !1b,. 44+?6% 0 Zn          ÿêõÊ'+/37;?73#3533#3#3##5#535#535#535335#735#33535#33535#335#¼T)//Yffhh]!,,)TAAU@•AAU@}))=)ÊU   21Y IõÑ#*067&'#3##"''3255#535#5'63&'#'67&'ƒ04 0XX   \\4 NP (,f( &Ñ      7    ÿèôÆ#'+17735#53#3#3#535#735#33535#335#35#'67&'4'·(55<â>4!==Q>==Q>(AAA &. )f3# "1YVV[4#+    ÿíîs7#5##53#53535#35#35#í±¸"Û"oooooos,,WW * ) ÿíñÐ#'+/37;?G735333##3#3#535#535#535#535#33535#5#;5##;5#'3353##SMMSSdÝeYYSSggSg:::>,,++,,++rªÑÄ        S??  ;;M ÿíðË #'+/373#3#735#33535#3353#3#735#33535#3353#ÙÙµµ==P?==P?·à൵==P?==P?µÞÞË B( $ #C) # $ ÿéóÐ)Fcimquy73&533&'73#67327#"&''67&'#7&''67'67676767&'7&''67'67676767&'##535#33535#335 s  )"Z     xV %   %  QT)A)e.=?,!!  *J  !  !LP ]!. ÿèóÏ37;EOYaeimq75#535#535#535#53533#33##3#33#"&''673535'&'67&'67&'6#5##535#33535#35#‹ &&,,%%--22* *** ! 6²   *   )   ='=': :#$ t#g   Kw w,HÿêîÌ %+3;?CG73#735#33535#335&'7'6'67&'#5##53#53535#35#35#+««88L8„88L8¡2" !0Ä '.)H #66E7% $5b¶¸"× mmmmmmÌA( #       ((EE  ÿé_È'75#53#3#"''3267#73533#67'75#F5H/8  ;  =`&K@Y ÿéôÀ#73'67#3#33#"&''675#Ó  HUU:2;/ %`À DK#=P0 ÿêõÏ59=73533#33##3#33#"&''675#535#535#535#3535fhhRRUU-#CC  #KKZZHHfz>>>¾$%& :#$ÿçòÏ#'I73533#3#5##535#3#735#33535#3353'67#3#33#"''675#XYYa®`X11D2v11D2¤Î F66"/)u  (^Ä  %% &F+ & %    *Kÿêõ¢73&''67#'6ƒA " !"W6  #¢*"% U  (Yÿéê• 73#5#533533Ö}),lƒr_‰‰PÿññŒ7353#3#3#5#P~juun‚GE20CKÿéï7'6675#53#3#"''32765‹+#™cR  D?-(#Q .Uÿèê‘"7#'67#533#"''32767#'67#'6„!4#Sy$)_   4.$ IU -;&"0&]ÿîôŽ7#3276767#"&55#;5#âq $A28$$&&ŽV/  Š33^ÿêôœ%767#3#3267#"&'#67'7&'^P(%41  2 BŽ  !0.)A `(Iÿèô˜(733#"&55#'6653&''67&'767#Ç! 1  |$# +#, % b˜%  L&    Dÿçî #7#'66553533#"''32765#'67#îz "5   "-&!=1( %G9P/A7Oÿíñ£ )7&''6#3267#"&553#"''326!( &$' 46;/  4$ a   £ "8?  T*Hÿêõ“*7327#"&547#'655''67&'76×OJ    “')),(=>.+ !,P%  Iÿòó¡7&'35#535#53#3#3#—  =K66<”D;;Kª¡  ‘(''(Nÿìö¡(,73#"''3265#3#3267#"&55'6#3re Y@5 #/  914!!¡V8 >#  W %<ÿéò¢*.7533'67#3&''67'&'767#'665535#—= )3!# (" %  X ** !*     1% #D3!Rÿéñ™73533533##5##5#35#35#RGG*GGGG|€ €%%a);ÿìò'737533#7'6773673267#"&5P,7 Y   wp”6I —:  F  Rÿðñ›73533533533##5#3#5#5#REwŠqp##++++FF[m444Oÿêó¥ 7&''6'6'67'66!( (# $ 6' 1 52 *? D= /Z 5;¥%4 Jÿëóž#7'2333"&&#"'663267#53&'Û 6O@ /:2!.-2e;ž$   Eÿðó“ 73#53535#35#35#Ú®SSSSSS“‘‘1OOHÿèôŸ73#3#&''67#5365#'6y`7B>3 /? = =A Ÿ +/)* Nÿèêž 73#"''32765#'6##535#qn   b W=**ž rP ? L.Xÿèí™73#5##5353335# Gg4MggibaO_.9ÿéìž$(73533#"''32767#'6655#7#5##535#P'  2 œ}!!l GZ 4/$¡ ¢ƒrLÿêì£ '73&'73#67&'7&''67'67676NEBžp/,&, >= -" ‹  @   $ Nÿêîž73#3#3##5#'6wlUIIPP ž-‡ Kÿðñ73#3#3#535335#Y=99E¦!?/5[[wPÿïó–7'67#53&3#3#535#¥ * P]v  #g…;FœC7W '  &&Xÿèé”7#"''3255##53#3#735#é  j!MMGG##”—  š«#?Lÿéð£"&*73#"''3255##5'67#53673#35#35#ƒa  P "*[cPPPPff *]     +1Oÿèñ¤(7'673'67#&'673'67#&p ' @$\ Q#;! 9,+)l b(, p  3 % C! <0 Iÿéó£<7367#535#53533#3673#33##"''3255#5357#'67#]. UB''!! (7 'CC  QQ$%S    Yÿéë˜"&*.2733#"''3255##5##53&'767#35#35#35#35#^ƒ:  .,4  c,,>..>,,>..˜  j  $$*‚  @6=ÿìó¡0673533#6767673265#"&''75#'67#7&'O!gF  $% !+' ": 1 j  ‚       d`%!S0 Eÿéó– 73#3#5##535'67#35#7&'OšB>g=( 4AggO!–FQ Q0~!S^ÿèæ¡"(733#"''3255##5335#35#7'6'&'–<  d8&ddddc[  ¡1p  -‡&7b    Cÿèò§5;7&''6767&'&'''6&''673&''6767¿8?#& 8% )L#+" ,* œ   & M   - Oÿêê§$(,047'3533#3#"''3255##5##535#35#33535#335À fCEE>  +(ÿìó¢%+173533#3#535#&'33267#"&57&'''6PBGG@;BI  %l  u  ‹3 0 6   Dÿðó¡)73533#3#535#7&''67&''6T=>>N¯M=  a   4mmu!*Iÿéó™!7#53#33#537#535##53#=#})”WIª*I8Yˆ''[ ED >ÿìõž !'73#'&'&'''6'&''6''6­K …  9 5 J ISžhd  %    7'  Gÿéï 573533533##5##5##5##53673#"''3267#'67#O%)**)% v(=  -9 / "'&,  7 $1 "Gÿéô£!%)-273533#3&''67&'#535#735#33535#33567Z;::8# ) "- ' =;))<(d))<(U “P    /.< Gÿéõ¢"',7333#&''67#535367#'65##67#€;(?0 72 +3: 0[!¢ 5 &)  5  T##Qÿééœ+/7&'3#"''3255#33#&'#5'67#53'3#r  +]   I %%    #Dœ ‘  z   9>Hÿêë•/387#"''3255#'65535#35#7#"''3255#'65535#35#™   €    •” (& (1H-H=” (' )/H-HIÿéõ,73533#&'#5'67#73533#&'#5'67#S   L!    ~ XS +1(c_!-Kÿéìž'+73#3#&''67#535#'67#5##535#f. %"# ž &   *&  Ÿ ygLÿèõ¡673#&'#5'67#535'63567#533##"''3255#Ó 7A.% ," ,=* 8NJ FaGG  J¡   z   Lÿíö£&26:>B73673#&'#3267#"&55#5'67#'&&'#35335#33535#335U7H.# 3  % 1 )q  11 Q1  B  >     -Hÿêë /<@73533#3#3#"''3255##5##535#535#'673#"''325'3#`""((&  &,,€   œ5  !II:J  ›  …sOÿèò— !73#735#33535#335#53##5#'6^„„$$7'^$$7'Y'£%/'"—P/.@<<+Iÿêò£#',73#3##5#5367#536367#33537#33535F+::[ %-'*<*c"54< $£ U"" U)2# Xÿêð "*.273#327#"'#7'56&5#5##535#35#Ø?7 :1! Kw[[[[[    (  J  =RR* Mÿèî #'+73&'73#3#3#3##5'65#5#35#s%45....6t@+++++    o  )+Mÿêò™&,07#"''3254'7##533##"''3255###535#‹ Bc   F:%™0  1ž¯†  ƒJ W8'Hÿèô 5<73#&'#5'67#535'23673#&''67&'67#67#Ó E3# )% "4E6=K4[$7 , )X-     \       Bÿè÷¡ +177&''6'3#3#"''3267#'655#53&'&'&'Á  >  4*   $\ ¡ ) T1;$ &7" O  "Hÿêô–?73#67&'#"''32654''67&'''67'767&''67#Yˆ:      - 0"    )5– .3       Dÿèõ¡ 57#5'6733#5367#3#3#&''67#5365#'6o -MwH8D'5- #! ' $ /4¡‡i %$ '   @ÿçñ£(73#3655335#535#53#&''67#56} #.281 930-š  NN e!(&^Qÿêì™"&73#"''3255##535335#35#3#735#Ù  u4L""RR00™BU  >[mB" 00/1MÿéðŸ'+733533##5##5#533533#3#5##535#35#q6""6##$HGG;a7H#aaŸ2L ME Dÿíô¢$*:73533#3673#&''677#53655#&'3533#3#535#S;FF  !?0 =1  1=;8;;L«L8•     TIÿèõ¡*0>73#353#'67#5335#53673'67#'6'&'&''66ˆ"  !/ 01# I g  ¡ B3C  C3B (  5+# -Cÿìö 17=CS73533#3#3##5#535#535#73#"''3267#'667#&'&'''6733267#"&5Q RI       N x $"– C,$ N     %  Iÿéóš %+73#735#3353353#''67&'&'''6W)? \   3" šB 7ic       Dÿéõ¢#'-39?73'#"''3255##5'63&'35#35#'&'7'6&'''6”9  S LA SSSS’  =¢ -G  !X. *x    ?ÿéñ® #+/7&''63#'66553&'3535#5##535#“$, ,%&5 6s ;aaaKKK®   D) 9  %: ;#=ÿèó£%8NT73#"''3255#'67#5353635#4'733#"&55#'6553&''67&'767#4'm   %  %%u  H     5,£  31*F P6  )(    K&        :ÿìô¦#'+0A73#3267#"&55'67#536365#33537#335''6767&'~W= #7 =4#,-@+k'+>0¦ X4  (&%X - 6 4  Rÿéì¤%-159=77&'7''563#"''3267#'67##5##535#33535#35#„   )T  ! Ki++=,i++=,,¤#   <2 , "D^ ^"2Jÿéô¡473#35335#535#53#3&''67&'767#535#56ƒ  ),!!!3>6# .$&  j;;žKKU      O9ÿéó¦1A733#3'67#673267#"&55'75#'66553353#3#3#5#MMZ C7  ' $ 2r_oo`s¦     :/%  Bj  Dÿèò§"&,273673#33#535367#5#3535#5#'67&'QA@D;®0>y[[[[[[[  U™ ``%        Cÿíõ±,04873#&'#6732767#"&55'67#53635#35#35#ŠD (0" "( . 9( &%YYYYYY± ^        ^ % & % ?ÿéô¥#'+A7&''3#3#3#3##5'65#5#35#'3&''67&'767#ÌA"M)Z4     !¥   n #&*i3$#  Aÿéó 06<73#3#535#5#35#3353353#3##"''3255#&'''6Ož3*)1Z&&n||¨M  I| S11!,     8ÿèö£ *J73#3#"''32767#'667#53&'73#'63#3#&''67#5365#'6s%$   " E=D 0%     #  £  V 1A$1>   !$%    Eÿéõ/37;?EK73#676767&'7&'#"''3255'67'67#735#33535#335&'''6XŒK  !%)"     +));+f));+ O  K       ,+_   @ÿëö¤"/5FLR73533#&''655#&''6'&''6&'33267#"&57&'''6N@II< 96 J@{   ]  A$ h  u˜ &#&     , ) &  Dÿêõ£ *D7&''6'&''6''6#5'6733#33#"&''673Ð  3   %   X%%  !  £   &   *"bK" 8Gÿæõœ #06<B73#5'675#73#5'675#&'7&'&''6'67'67'6QE4JG68 V &0 .-# 5 %"7(7 1D.X UœA D    #        % Cÿèò§'+/73#3#53'#53&'367#3#3##5#535#735#35#›F$3ª,B"/+‰=PPLL9cccc§ '(B  ) $ Cÿéô¦&+/@FK73'67#&'&''673&'67#3#3##"''3255#'67'f'/ (   T5  =&?CC(‘@   ?  c 0¦ +    ?% &( %   Lÿèç¤"DQ736533#"''32765#'67#73#735##"''3255#&''67##537&''6O$  [==+  .   )A   "–-" 8:P ;  Td *    ;ÿéñœ *06<B7'6553'#33#3#"''3255##5##535#&'7&'&''&'e”ookˆ>9 '"48"  ?   *  n#7) *2J. J 6KKP`        Bÿèò®#'+/IO735333##3#535#5#5;5#33535#33535#3353673#&''67&'67#67#T;@@E—?;((;-h((;-l,,?2‘2f!4 # 3$ $] ;£  (( 9 %    Fÿèô¢,0473533533##5##5#3#3#&''67#5367#735#35#M*+**+* ˆ>QE/95 )6B7dddd“ C  * " Lÿéö§06FLR7367#'6733#535#535#'#"''3254'7##5&''33267#"&57&'''6Ž+"  * ZHCCH  r     K  R  t    G 6+ /£²p    "Gÿçôš%+EL7#5##5##5##53'65'3'65&''&'3673#&''67'67#367è" !iPe F 35c,  (;))*? šA22AA22A         Fÿæð£#'+/5;73533533#3#3#535#535#35#35#33535#335'67&'U $((0L=Š:D( 4$$&&9*c&&9*R ! T ” II I (    >ÿêö§28<@FL73673#67&'##"''3255#5'67&'767#3&'#35#35#'67&'Q;D2   2   2  /.= SSSS  t–   5  3    , ' !    Jÿéô¡3U73&''67&''667#'##'32654'7##53#3#3#3#535#535#'6735#¤3   '  RA##-r2 ¡     & )ž¯C   Eÿéï©'-3;S7367&''66'367&''667'6''6#5##53533#"''3267#'67#Á     S     : P  ‡.D  1> 2,©    7##&0 /  Nÿéêž  $8<A7##535#35#7#"''3255#535#5##"''3255#'65535#35#’2 Š   5####   )((((žCrµ % (Ÿ YC % F  "! $ Dÿèõ¨'Mc76767&'33#"&55#'6553&'33#3#"''327#735#5'67'767#67#53&''67'®        2OF,0  2 )   3M 8L  ¨    ! 3+!0  s    Aÿèò  #'+/73#735#73#735#3#3##5#535#735#33535#335NEE##@DD##\?QQMM;))<-i))<- ..(G  + ) Oÿéîœ %73#735#3#735#'3#735#3353#5#533_}}YY6GG!!kGG!!2.‚/œ/)55*$7 -Dÿëô¦/3E7&'35#535#53#3#3#'35#53#3#7'675#73#67''67&'š(6Bf8 3==     ¦ C++Cb--,  37  Nÿèëž  $(,07##535#35#7#"''3255#535#5##55#35’2 ‹  6$$$$ G5##žCs¶ % (  ZC % OO  Hÿéô© $*26:7&'#5'63'3#735#&'735'6#5##535#35#ž  , G 2 .D‹‹++  6*  #ZZZZZ©     #6    (GG # 9ÿéö°"37;?EK[a7&'#5'6&'3#"''325'#"''3255##55#3573#&'''6733267#"&57&'  &) M 5EU  3   +=++  7 ! ! * q  °     ? :; L 6      =ÿèô£*1:>O7'673353353#73##&''67&''667#'#5'673#67'5#'655^    CU"    r #::8  £'55'5A* #:"qT  -  0  >ÿëõ§"(.4D73'73#3#53&'#3373#735#35#&'''67&''33265#"&5S?B*£(.)]‚‚\\\\6A Œ ` * ™ *B( #         =ÿèô¦ !%;A73#53&'3#5##5'6553'#335#73#3##5#535#536'&'ËNR4 Ce$#. ¦ D Y6<=?.b)I// Iÿèñ¡#+/37;73#3#5##5##535#3#'3#3#'3##5##535#33535#35#Q˜BJ8:LD_''M''M&&L&&‚n//A-n//A--¡ )11+ "  SV ,Hÿèí©=AEIM733533##5##5#53#"''3255#7&'7&''675##535#53#'35#33535#335r-))-**{   7 '/4F8†;9&&9)b&&9)©  n4   9I DD 4 % Rÿé÷£,5;AGM73#35#535#53#56367'733265#"&'367''&'7&'&''&'Š --i//0C!!  s 9  E 0 £   JEQNY*$ *6MW          <ÿèô©!'048@D733#&'#'67#'655'667#3'73#3#3##5##535#|T$  %   TI5:„ ppppsOOO©   2(9' /  ,, ;ÿèó›!%8NTZ73533533#3#'6553'#335#35#733#"&55#'6553&''67&'767#'67&'b   G T002  f   D       0; +  i )2K2#R Y$    J&    -  ;ÿèô¢59=FL7#5##5367#'673'3533#3#&'#5'67#535#35#3353'>&'ë( („     98   oSDCR    !9  269; "5  >ÿéø¯#)AEIM73#&'#5'67#53635#35#35#3&'#"''325##5##5##535#335335€R8)' [ 05'jjjjjj3\   ,¯M M -.  B :ÿèö¦Ed73673267#"&5733'67#3#33#"&''6735#53'767#3#3#&''67#535#'6L  MQ       &. ;E-    ¦     *  &  9P  .    @ÿéó®6BFJV73&'73673#3#3#&'#67'5'67#5367#5365#3&'73&'#35#3567&'M(!(H@BT* `  '1=25@0 MMM +ž   0  J A     Aÿêô¡!%CIO733#5'6367#35#33535#33573#3#3##5#535#535#536'&''6aI  )  P!$$""* !  #,.¡ TJ ,3]**  ‚ Dÿèð® 159J73#&'#'6#'673#&#67'7&''535357##53#"''325b, j   /64  """T"F ®       P#   €z‹^ ?ÿéõ¦ ).8<P73353353#''6'673#&''665&767#'#5'673##53#3#3#535#53p@  m &    n $66AD›** -5 7 -6  & nS  9ÿêó $@P7#'6553#&'#5'67#535'6#5'67#535'673#&3#53533533ïŒO    N     *<—0784 *6G  4    +&&3 ?ÿéò§#BFJN73#3#5##5##535#3#73#3#73#3&'73#3#3#3##5'65#5#35#T‘?L::L@ --M,,M--N++K)AA9999C† A11111§ /!(("0     <    4ÿéö«=AEKQ7'6733#536735#35#35#'3533#3#&'#5'67#535#35#335'67&'µ  &M$,,,,,,k   1  -    ii 2 *,h9 <; 9:Z  :ÿéô§48<@DJP73533#3#3#535#535#'3#&'#5'675#535'63#735#35#35#&'''6‡)++%%2q-!!)    +^^::::::-  œ     \R $DR:     œÿèô—7#5##537#53#3'66&'ê%Q!  r]NL[2* &  5ÿéô¬!%IOU[a733#5'667#35#33535#33573673#3#3##5#535#535#53&'&'''67&''4'_$L ,)   "$$"""  @  = ¬ [Q  &:_ 44 ‚ Dÿêð¤ %+17PV73#735#35#35#73#735#35#35#'67'67&''&'3673#&''67&'7#67#RCC%%%%%%ACC%%%%%%M  Y  ) G 73d# 0 ": )(] 7¤O7  8O7             Hÿé÷«.4:FLRXh7'2#"''32654'7##53#3#535#536'&''&'3#535#535#&'7&'''6733267#"&5ã '9.1  )2t0&@ _bPPPM( ;  V    «1 4©¸   77 /        AÿèðŸ =AEI73#735#35#35#73#735#35#35#3'73#3#3#3##5'65#5#5#SCC######?CC######N'985566B„ A/////ŸN7  8N7    6    Cÿèò© 37;?IMQcgk7&'67&'673&'73#3#3#3##5'6#35#35#'&'63#735##3267#"&5535335R %  H= %  ?HH((?B  $ ©       y +.„   *' #/   @ =ÿèôª#'+[_cgm73&'73#3#3#3##5'65#5#35#'3533533##3#3#3#'67#535#535#535#5#5#35#335&'´>  p ""), "  &6 !  ª   …0+.x*    * 1 P  œÿêó %73#3#5367#35#35#35#'67&'ŸS  G!&&&&&&  (  pp 310#    Dÿéö­ %@DHLPV\bhnt—£73#53&'''67'6727767&'7''67'6727767''3#3#3#735#'&''&'7&''&'''67'6#"''3255#&''67##537&''6:    ~    ]222200   ’  ‚  v  , 8 *E  ­ '                      ?  0    DP     ò´%76767&'3'67#&'” PcY) ?D´   1n (+ X  ÿçéŠ)733#"&55#'66567#53&''67&'¯-0 4/(‹¥  !(1E5%!Š% d    ÿîðŒ 73#3#735#3673#53&'WVV'››uu 3  Aà> ŒA4  "ÿèÞÐ 73#5##53635#35#mf”? 4””””Ð ÆÅ]:‹> ÿçõt!73673#&'#'67#3533##5#R s?* 4 )7 +>(====Y   !"($$ÿéód #7'6'&'3533##5#7&'''6Õ$"”gjjgŽ%$#$0 &(d   :JJ8   ÿéëf #'+73#5##53635#35#73#5##53635#35#86>>>>>†6>>>>>f i i 0:K i i 0:JÿêªÐ)-173#3#3#"''3267#'67#53&'7#53635#35#w" ,&     # "''''ÐP  6 (4 P )0 ÿçòÏ).7533'67#3&''67&'#535#'665567{U =G+ 5" 3 0# 9F B! ¯  00#  &0I;. + SV! ÿí‚Ï-59=A733#3'7#73265#"&55'75#'65537'7535#35#75#;//6 &     &8U $$$$$$Ï     [13eUGU & ) OîÅ73#3##"''3255#535##¼Raa  ggVÅ   QîÅ7#53#&'#5'6xU¼O =+ ,/(0G² ;C ?êÄ!73#3#"''3267##5#735#3355# ¾Vb MV IThCW9Ä6%++48 MóÒ7&'73#536'67&'E   6Ë~S4 +o&& &&Ò  1   BîÐ 7#535#53533#3#67'7&''6XGdRRSSe~>3  FU~   =óÓ47&'67327#"&''67&''7&''7&'37š  _d   %:0 F ^XA?c`Ó  0            UîÏ 73#'6'3#'3#7&'šJQ=0–Ï # -5zpc& JõÏ7&'#5'63&'3#735#}54 &d PN+››wwÏ!    6;óÒ-37&'3533#67&'#"''3255'675#&'­ Œabb  /.   )18*a Ò       &'    BáÌ!%)7#"''3255#'65535#35#'##535#35#á  CAAAA&<))))Ìn   &:&71i u+F*òÏ#)/5;735333##3#535#535#535#33535'67&''&''&'*KLLb×aMMggK_888•·  (  # à      >        %ôÓ &*9?C7&''637#53&'733#3#535#35#5#"&55#'67#75#335#€09 8;%= C;Ž m796TB¹ºÎ;"0 ,j&%$%Ð    ]C $ # =a     ÿçñÏ#)/733#33#53537#535#35#35#35#'67&'{X[F#â&?^aBsssssss* %a%% %&ÏxxA,+#  2ÿéÏa 7#5##535#35#35#Ïwwwwwwwax x ) ,ÿéñw $7'67#7&''6'&''6u b- "F   o Z sg , ! ÿéîÑ048<73673#3#3#3#5##5'67#537#537#53&'35#35#35#[ ,  8f\c~ˆzm);H=DU;mmmmmmÑ  pX  Ž * ) ^ôÐ!&,2733#3##5#5373&''67&'#367'67&':**72/)L]    § N  Ð 22    %    VˆÊ"73#3#327#"&'#67'735#'#g$%! $ CC Ê.  K-ÿéðÐ/37;A73#3#3#3#3##5#535#53&'#535#535#53635#33533567#boVMMg5.T^^__S-4fLLT8*''9%'2GÐ8      8 0u  ÿéóÏ%*.26<B733#3#5##533#&'#5##5'67#3&'35#35#35#7&'''6j\\o³V: C"Dx  C=_)xxxxxx{ u !Ï )(& ]]"// & & s   ÿéÑ#'+/73533#3#535##5##53##5##55#3535#///(d)/nJ;;M;L;;;;;Ä   ($% k l  ( Oÿë¢Ë73533#3#&''67#53655#` ¡**' ( (7$QÿéïÊ ?CG7'6553'#33#3#"''3255#7&'7&''75##535#535#'235#335z]] -**3  "  1**1+˜0D4 4?]2"+> ,AO+ 7Yÿè¯Ç $(7367#533#67#5'275#35#35#75#[',A   Ÿ s!|JNƒË` 73#735#35#ƒHH""""`Z68"mßÌ 73#735#35#35#73#735#35#35#"UU//////TVV//////Ì_C & & D_C & & VÿéóÏ>BFLRX7''67'6767767&'73#3#"''3255##5##535#53635#35#'67&''4'“    >!   ((((S 5e-*8n V=  )VVEUV .4Y# ZÿçóÑ#)/M73#3#5##53&'#53635#35#35#&'''63#3#"''3267#'667#53'ŽF3>k>+ MMMMMM; "  (BZM ?# )@ÑQ  Q ! 1   "   ÿéñf#9=AEJ73733#33#53537#35#35#35#35#'7537#53733#36'35#35#35#5#6‚.'*%o+22222222$57+.'*%H22222222X II K  E2 kÿïÛ3:>BG7367#533#673#&''67''67#5'75#67#35#35#675#l2     J 7 ^  . !   K(- ÿéíÆ*733'67##"''32655'67#53&'767#*¶*#G ? %F G"\j% “Æ &h W>&)7  ÿééÌ):NR733'67##"''3255#'67#53&'767##"''3255##5'673&'7&'#735#*©J  8   '; 3!NZ  й   0 B  ^::Ì     _Z  C`r9  ,ÿéóÏ73#3#&''67#5367#'6L ŠQ`[K G W T X]0$Ï;>2#!1  %ÿéó† 73#3#&''667#5365#'6GˆLcWB ET %* \b4 †   ,)  KéÏ73533#3#3##5#535#535#YZZOO__]]OOY¾S œÏ73767'5'7k  Ï:Y  cfÿéöÏ)7367&'#"''325'&'3'67#¥   & 3  !Ï?$ --$0N  » 5L&:eÿïõÐ 7&''63#3#535#¦$ "# +e(;‰8'Ð **- (7NN ÿéõÐ048<BF73533533#3#&'#3#5##5'67#5'67#535#35#35#35#&'#35#%c$$+3 c n^ &  %81%8ccccccn I ^^à F ;& F * ) 4 BLQñÏ"&+7533'7#3&''67&'#'65535#67Ÿ=(*  "$  %%  ¿      #"%$  \éÐ &73#53635#35#'3#3#7'75#535#¦3i CCCCyY#!!%*3(!!#Ð\\-8= NóÏ/37;?73##5#'66556#3533#3#3##5#535#535#35#33535#335ç *L 3´044,,))33,,0-G-Ï@@- $ 9   9   Nÿé¦Ï,73533#3#3#3#"''3265#'675#535#535#]$&   µ@ '464ÿéõ¨+?C73533#&'#5'67#'3533#&'#5'67#3#3#5##5'67#35#”!%  Z     ·m qe #01ee™ '& !  8E3< P‡Ð 73533#3#535#'6553'35335211)e*2  dRÇ   Q /!VÿèôÉ!%6:>7#3#67&'#7'5#'6553##"''3255##535#35#íqv6  2  ZZ_  AAAAAÉ#  ) ("F6 7?aNS  "h ' _ÿéòÍ!77&'7#3#3#535#'&''63533#&'#5'67#v ‚H??HZ--: #  ?=3"  4Í  1qB   0 86ˆ Êb 73#735#35#ˆBBbW35-ÿéõ³8LP73#&'#5'67#535'673#&'#5'67#535'63#3#5##5'67#35#†   %({#     (‹½t vi  !/1ii³#"    !"   e?0 6Wÿè¨Ï -73#53&'3#735#37#"''3255'7567#‚G@@C   +Ï  330  Oÿê©Ð 073#53635#35#3&'73#3#"''3267#'67#xD####+$    ÐPP *06 9 !)6 ÿíÔL73#3#5##5'67#35#+©i }v *$ vvL>-6ÿëÍH73#3#5##5'67#35#9‹Y wj %jjH<. 6]¤ñÒ73533533##5##5#]!,##,!Â[ÿéôÐEJ[ag73533533##5##5#&'#5'67&'767&'767#'6733&'73'673##"''3255#'67&'b $%%$ x   B     # 3+ iu0   2 \à  H        ! H- *  gÿçòË +159=AGM7#3#3#535#35#5#73&''67&'#37673#735#35#35#'67&'«H!!7B    quuOOOOOO  DË ) a & & M     S[@ ! !     ÿé÷Ñ&=Ryƒ7''67'763533#&'#5'67#73533#&'#5'67#''67&'763673#&'#3#5##5'67#5'67#3&'#35#”      z             wRt7$ S um %  );B` 6 mmÑ       '&   )-    2  <-   JXÿèóÎ%+1bhn7367&''66'367&''667'6''6#5#676767'7'#"''3255'67'67##5&'''6È    J   4H‹D  $    " %l = Î      :(    %   )a    SÿéòÏ159=AGMShn73533533##5##5#3533&'73#3#5##5##535#5#'#35#'35'&'&''673533##"''3255#&']"'&&'"#.  1*).X*)L    L  L À    D E "  E     *' %    SÿéôÈ#:BFJN73#3#5##5##535#3#'3#3#73#3533#&'#5'67#7#5##535#35#35#e†9B0/A;T""A""%%D''^    """""""È -66+ &   :5(w w-. ÿéóÁ 73#3##"''3255#&'''6%¶¶Úb   d¢$#_#Á-l  i$(+$ 5%8ÿë¾Ð73&'73&'#5'67#G+ ' 9$N²  gf B ÿèöÐ/4EKQ733&'33&'#5'67#&'&''67673##"''3255#&'''6=4h%E  {L)   y ¯Æ[   X" U + %Ð. #:  <    p/ , TñÓ 73#53&'3#735#3#735#‡bãhK²²ŒŒ__;;Ó "V4$  SìÑ#):E73#3#3#67'35375#535#'6''6##53#"''325'#5'6^:!%%""03((   ²=   ¢ Ñ  #"+   ^pQ 8 ;)Jÿé Í!'<7#53533#&'#5'67&'7'6&'3533#&''65#g!     ?  7""   "ˆ55  # P `     !ÿéäÒ&7#"''3255#67&'7&''67##537ä  L (-<U¬¥  ;"  $+  #<°Ã& ÿéèÎ59=73#3#"''3255#67&'7&''275##535#535'235#335Õ '/JJ_  K  0?FZJJ(.^866J6Î>N  7  Ug>LÿçíÒ $K73&'73#&''67'763353##"''32655#67&'7''67##537b `Û—  # & x’·Å  \   .37U»       11CJ 3   Qc ÿéòÐ *T[7'#5'63&'3&'&'''7&'763353#3#"''3255#&''67##5367#67'7#~/4  O(:%" %?4   &n‡Qd   . +/ +JE9  Ð    !    ((:: $   >P5  ÿéõÐ7'673#&'#5'67#53uUhW *.fYA>#9 7"Vf± .B!'?y}C'$@ÿèçQ7#533#"''3267#7#'6Y0 <  @ .G ?@2 H ÿèñË.2673#33##&'#5'67#535#535#535#535'235#35#Ô UddO:!3 8&!: 3!>RddRRaaKX <<<<Ë!! #AA!c1PñÑ 73&'73#3#735#3#735#fe⬬‡‡bb>>à X: $ kÿéïÐ #'+7'2'6'&''&'#5##535#35#'3#å 3J=5 *    €444448Ð /0OA~dÿéôÏ%=EIM73673'73#3267#"&55#'67#36732767#"'&5#5##535#35#h- +    )  %2+ 08 " 2- xPPPPP·       -   T T+ ÿèñF7#3#&'#5'67#535'6² %dH", 9&$6 $%Db QF   )+  ÿèˆÏ773533#3#535##5##53#3#&'#5'67#535'6 255,j*2vPFFK&11  .2!0À* "  $( Rÿì÷Ï%+;A73533#3#535#35#33535#335&'#'6733267#"&57&'e9@@7}49""4%Y""4%0  6   #b ¾VV54&   0 6 Xÿè÷Ñ#)/573#67'6775#53635#35#&'''6'67'6›@6 "@  2%UUUUWF \ +N R8 1` bÑ L" ! ,L (+"   &  ( 0ÿéõ¦,H73533#&'#5'67#73533#&'#5'67#3#&'#5'67#535'2=   W!%    C 'SE031 18ÿèö| 73653333267##"&547#'67##AK   6 LF =W2"  )?0ÿçát736533#"''32765#'667#Mc P. +"JZ  S 4&#ÿêË|73'67#&''6g \#~ tU    1|M?    ! ÿèáu73#3#"''3267#735##¯—© ¬ ”›u8':ÿñï™ 7'67&'3#3#535#c / 2V*$")l»TcØaS™ 788ÿêï|!73533533#3##5#'67#535#5#/?00<<A , ! 7:/‚?d 66  ÿïô…&733#353#5#3267#"&55#5335#53scc99 )  4%J6]]…, ;  2 ,ÿéõx73673#&''67#7&'_h`N M 3& GY S19*37 ÿêér'767'5'75373#"''32765#'667#q," "%5m  (X0  :%"`  >1. **ÿéá|73#3#3##5'6U€xnnoo'|  h-ÿéÓk 7#5##535#35#35#Ó~~~~~~~k‚ ‚$43ÿèðw!7'6333"&&#"'663367#53'Õ YgjK:1B,A@ 1-ŠSw   ÿíõ‚)-73#"''3265#3#32767#"&55'635C „ i_4JS@ !L‚F06  E!ÿêéz9736533#"''32767#'67#&''67'67676767&'8   &! %- )c [5*,>& # /"ÿèèw'73#3#"''3255#&''67##5365#Ô^Z  I% " 1BZcw R  <Yj ÿèôt 7&'67&'7''5'6556Ä  - 4   )#XtC#PU    `*%!/ ÿéä„7335#53353353#5#353#5# BO;;;F°4/;7$11%?;+G ÿçæƒ'73'67'56767657#"''3255##5bL 3  +' $%„  2]$: R 6 2P  8s†ÿîï†73533#3#535#3533#3#535#&RRRbÙdRTXXdÝfTt=ÿèï„ 7'673#3#353#5#5335#535J  †Occ:;ff` ); 1)-<Û…7&''6767&'°BJ(*-s #ÿéí"73533#3#535#'6#5##535#E*OO_Ûh7 ž………‡  BF G* ÿéó~ $)-733##3#5##5'67#5367#537#3353535#/£!!{’y !"?D(;X\anyy~; -   O ÿèò–9737#535#53533#3673#33##"''3255#5357#'67#*=lX1100/K8SS ^^%=(- M       #ÿêá#73533#3##5#535#735#33535#35#2CIIXXRRC00D6ˆ>>RDD~599[ÿéæ%)7#53#3#"''3255#&''67##53'35#w>=]  N  =W(ggL55=  '  CUÿéÝ)73'67#'63#35#535#53#5##56hP  K" 3 '<<’<<>R’,  b \ ÿçä‰ '7'6553'#3335#53353353#353#5#6½——‘7@-.A8•W/+ $*H2"L!%%!1 ÿèî˜17735#53533#3'67#&'3&'736533#'67#&'`TTUU`  º> 60 $biWF\Ž(" 'e    '  ÿèæ€"&73#"''3255##53535#335#3#735#Ì   ©\&nHH66nnJJ€8G  2O`88(  )- ÿéñ†+173533#3#535#'&'&'3533#3#535#''6Y8;;J£F8) G=@@MªJ= t    ' "ÿèí‰!9?733#&'#5'67#537'6'&'3673#&''67'7#367u[H2;$, '#CV=  _*Mw4C )#%D / 2=X+‰      O     ÿéå‰ $(>73#"''3255#'67#5353635#35#35#73#3#"''3267#735#I(   5 *@999999TV>H J ;C‰|   Q$ ' & F51 5 ÿçó‹%+1773673#3#3#535#535#53&''67&'7&''&'U ( 6ZPPeÞdOOZ6  H  ]  ‰  e    ,NÍŽ 7'2'6'&''&'Á ?ZKE 3  %  Ž       ÿéõ‡'+@FL73&''67&''667#'#5'673#73533##"''3255#'67&'ˆK&   - 9 ]  !977   9 Z‡   qX b&       ÿçö@F767'7&''5'665567&'57'7''5#'66556&'n    3Š       8L  \ g-$ #+%&+#J_  l-& $+& "ÿçìœ#)/73733#33#53537#35#35#35#35#'67&'%QNQJ×CNzzzzzzzz& "c& $‰ VV !     ÿçñ’#'+17=73#3#3#"''3&'73267#5363535'67&''&'sMޱ±«   ª@0zzz c    ’ ; ( h G     ÿæõš-159=AEL735333##3#3#''27'7#537#535#5#5;5#33535#33535#33567#)KQQZo„1 M Y%N."42C:TK99K?Š99K?‘@@RFA KŒ$   $0 ;ÿèî‹'+/3B776553'67'56'3#7#5'275#35#35#75#7##53##'265¤ )  yW  ¨9  ‹L>>-e^!g<?FŠ›_ iÿæõ{!%73#3267#"&55#'67#735#35#35#yg   ( "CCCCCC{a  % C) ' ÿèó‰,0AGM73'67#'6'3533#3#535#3&''667'3#3##"''3255#'67&'¡@ 3…333,i+3™% &Žbb v1  3  S ‰   +!        ÿéö“3V73&''67&''667#'#"''3254'7##53#3#3#3#535#535#'6735#‡M!+"$#   ='   bV"6633A•A,,& !“    & (ž>       ÿçöy!%<73#3267#"&55#'67#735#35#35#'3#3#67'675375#zf    . '@@@@@@x^" ,5*y` # C & % A$ GDUrìž73533#3#535#-GPPdØ`G‘   ÿèõ–(1:@FL73#35#535#53#56&'733267#"'367'7367'7&'&'7&'l &??•DDFX¹,   ¡$T'& N _ –   C=I   & YGRH R      ÿçô”'+/GM7#5373#3#3#"''3267#'667#5375#3573#&''67&''667#\bh733#33#"''3255#67&'7&''67##535335#&''67#'3#&'#5'67#535'2'6'&'Ÿ88/   .   #B  & ""   &*!  4  •  7= (  BR77(    0+  ;B)   ZìÏ73#767#53&''67&''3#M: Rj  XÏuR     #^…Aí‡735#53533#3##5#'00##&&*j   ÿéòÑ'73##"''32655#'6'3##5#'6™N   ZB'  Ñ ‹(+>««()ÿèæ…!73#"''32765#'67#'67#'6K  JH"@< $…d&BD3.91% 'ÿéò}"7#5##53'66533267#"&5Ìs?/84(   + }gUTf.2 ('$* &ÿéçˆ733#3#5##5335#ijjZ‰C/‰‰ˆ^ ^@-&ÿçÜ} 7#53#5##575#'#3355#:¶>R><<<pp44: ÿéàŒ 7#5##535335#33535#335à˜UUAAUC˜AAUCqˆˆ4!!!T!!!!ÿéã‚ !7#5##535#67#53''67&'ã››› _w 2% ‚™ ™~l(   ÿóï 73&'73#&'73#536!WVÅ-  y @܆g    ! ÿìò(,73#"''3265#'6#32767#"&5535>‘  ˆ u[2E  R?GM2:  Vÿèã€73#"''3255#3##53#=#'¼  ¨™™)uM€}  fK DC  ÿéñˆ %7#5'673533##"''3255#&'E  !1^##  ^$  ˆ rW R  M   ÿéó‡73533#&'3##5#535'67#\[G!4 :$4455(4 3"Hn)7<##95*ÿðî} 7#55#353#Ο‹ww§ÛÛ}gg*?ÿæéˆ#)7#'676753673#"''3267##5'6'35b2 &!+"(,] H!? : =1 !*KJ%*  ÿéè"&73#3#"''3267##5'67#735#33535#&¶P\ E!@ ?H ORf<“C?8/G?%8=ÿéë†73#3#3##5#'6J–xhhqq(†'v ÿèõ‡1673673&''67&'67#67#7#53&''67&67# 0     "O b  ! " /l 4     " "3     ÿéæŠ73#5'673#"''3266535#Bu{ ™! ‘SSe B;% i%*5Cÿéî–'7&''6767&'3533533##5#'67#©JS(14 ‡8J22J2 )8’ !  K@@' ÿæä†"&73733#"''32765#'667#7#5##535#.  Ì...md  A/1.(‰‰dQÿèñ}73##"''32655#3#735#â% ©kkCC}h cF  ÿéóˆ73#3#&''67#5367#'6CŠMi\$6 =%V Jci6 ˆ !,-#  ÿïó73533533533##5#3#5#5# %-0((X-¨¼%ª0]##$$11H[ ÿéò37&'67327#"&''67&''7''7&'37¢  Sc  "65 7/ `[DC_]  2         ÿéí…/73733&'73#673267#"&''675#'67#@@  +R "  $  83 œ  “|[[HHŒi*V Tb!ÿçä…$(7373&''67&'67#67#7#5##535##2   % "¦...n7     )"0Š ŠmZ ÿéó&,73265#"&55#'6553#67'75#&'Ò5dW#&1 '!  t " h0'67C Iÿéè†%)73533#7#"''32655'75#7#5##535#&%% $ $,&Î===l% Ž Žq^ÿèôœ.267'67333##5##"''3255#535#535#53673535L +" S+< DDccBd<<‘£  ÿéò#'+173#3#&''67&'767#535#35#33535#335ÞePS /KQ83&  MPd(< :$(6 @)[[8 } Š.'"99#&.        ÿéóš!%*.73#3533##5#53'67#536365#335367#335naiKKKˆ#-B3?@S>‘3k "0 &  (D31B0   3  N!   ARÿêò’7&''6767&'#5##535#¾  9B%%' 3]]]„ (! CMM4"ÿèôŽ +177&''6'3#3#"''32765#'655#53&'&'&'¬  &P#<3     ,r   Ž% J 1 / =  ! ÿêó£(.R7&'673267#"''67&''7&'7&'673267#"''677&''7&'7ž Pa   1A H WK  nj   #2C 1$^Q £       9        mÿïò 7#3#5#"''3255##5##5353ímr…}  $|¡*4  NNW“X+;;t2) (0)< 6 ,  ÿéñ 48<73533#67#"''3255'675#73533533##5##5#35#35#!     !Y77%7777s)  %xx##T ÿèó– FL7&'7'6#3267#"&55'67#5367#53673#3#&'#"''3257&'#:  •  Y .9 A; 5IFPfoƒ1   H –  g% +      &ÿêó’ !-73#735#35#3267#"&5536'33#7'&²²ŠŠŠŠ§ %+  )%œAA;'# ’O/+-     <  ÿéó— #@73#5##53'3'667##&''6#3267#"&553#"''326c²a*1&0+$% "—3 +% [  — %( & '1#   >U. ÿéó™'-735#53533#3#3#535##5##5'66&''OYYXXMMiæiO­‡S1= 9+2-0/s     $5%*:  ÿíê&,27#3#53533#3#&''67#53655#&'7'6峸Ë)=??ME$ $'( #5D=e£$        ÿéò“05I73533#7#"''3255'675#73&''67&'#3673533#3##5#535#    ^p'&   U,--::::,v .  $")    Dÿèá $7&''67#53#3'67'#;5#35#\  .7¸ji&ˆ |!$""##m##0   ?? 6 'O ÿéó›#+177333###5#535#535#5335#35#3#'3'667'67&'uPPMMffMM<<<<=   /V  › WW .&PP$   ÿéó“,073533533##5##5#3673#3#5##5'67#35#>C88C>V qwk +DGkk„!  G 5 < ÿêó—.26:73673#53&'3#"''3265'#"''3255##535#35#73#N 9Dæ=   T  88888i— )c Za  &w!.,RÿéŒ"(733#"''3255##5335#35#'&'7'6H0   N0NNNN  d  /`  %u"0Y   ÿéâŠ*7#677'7&''535357#"''3255##5{J$ 888y  +ŠZ2    —$5p  Y¡Eó$*7#'65533267#"&5'3#7'675#&'½.R  ¤R %-…  0 8!# KÿéóŽ *733#5367#3#3#&''67#5365#'6arh] h;I= 4 6 <5 =D%Ž #     ÿêï #)73#'#5##55#3535#7&'''6'6£<)<)))))§  < SL CfY ”&:T" 8 ÿé…Ž73533533##5##5#35#35# 00%0000rw w!!Y% ÿçõš!+/37'#67&'7#7'5'63'73&'3535~58 ;   01 E/! D64(uuuš  @      h     ÿéóœ #;A7'6'&'333#&'##5#'67#53373#&''67&'67#67#µ  l  A`F4A'2 *#E_gR  }=H*%'D 2  Bx :œ   ! B    .óš"73533#3#&''67#535#&'7#6!TSSj4 L\AhT” K?Œ   /  ÿêêœLU73#"''3265#353#3#"''3265#353#'67#5335#'67'67#5'66525#3H“  Y!;  ™  W)> ?-,&.  ( $0& œ8 :        ÿéì‘+17=C75#53#3#"''3267#775#53#3#"''3267#7&'7&''67'6`G[DL   Q µHZDO   T q { 0 &* (+q0K60/K506         ò’ )-7#"''325567#5367&'3'67#3#•   u–  5˜R: 1:››g '     /!2Nÿéò•(,073533#3#3#535#535##"''3255##535#35#W@AA99H¤I99@Ž  bbbbb‡    :? S ÿêô— !(,AGM7#5'6&''673&''6767#3#73533##"''3255#'67&'9  b  "A  &' ~<>>   <c  —€` &    %  k(       ÿéò˜ $673#3#&'#'67#5367#735#35#35#67&'7&''61žYƒ9" +A' 9K.xxxxxx)  /5˜Z   ? # # 7   Yÿéñ› %+17&''63#3##"''3255#535#'67&'ž $ #"' . S 77   44 ^›  )  %,   ÿéï›673#3#5##53635#3573#3#"''3255##5##535#9'DG4114z40  ,3› >J œ 6LdE  .eeL^Mñ™$*7'66533267#"&55'3#67'75#&'– H šR!&/%‚ ‰. ".  #    %@ä• 73#'6'3#'3#7&'–@H;-—  •  LFB   ÿçí™-5973'73#7#"''32654'7##5373#53&'#5##535#, 2uÔ  )e   ‚b@@@„ * .’¥  5I I.ÿèì  K73&'73#&''67&'763353#3#"''3255#67'7''67##537#d^Ù–    uŒWj  `  &+ .LF     ##48  "  ;L ÿéï˜'+/37;?73#3533#3#3##5#535#535#535335#735#33535#33535#335#¹S)**S``__P''*R??SA”??SA**>)˜F    * " F Jó‘273#67&'#"''32655'67&''67''67#SšB $   #/ 2(' & !A‘           ÿéó–&,28>73#3#3#3#3##'32667#7#535335#&''&'''67&'#Â`PPn§—›¬ ® *'+OŠ    I 7  –    /4"i      GóŸ873&''67&''667#3533#3#3##5#535#535#‘C &%4*  #1 =;9<<66BB@@449Ÿ    *       ÿêó¢ 1=CIO7&''677'&''6767''&''6767'&''6'67'67'6¨ 8>%=0 ! V#'  $/9 89)9 N. "> @= -U WG :l ož              "   ÿìó48<@F73#3#&'#"''3255#3267#"&55'67#5367#735#35#35#3&'#*ª]8!   W +7 ?6 0F6„„„„„„_AH     & 3 9  ÿéí™#):E73675#535#'673#3#3#67'7''67#"''3255##5#5'6Q))  1 /%   É   v 85C  ™ s ^–¨( _G Yà‘ 73#735#335335 ÀÀ''9(&‘8ÿéðœ"&*0EK73533#3#''275#535#35#33535#335&'#63533##"''3255#&' VYYR Q]1+SSV@@T@”@@T@ /˜¤++   ¤: ’ 9   9     ÿåîœ#'-373533#3#3#535#535#3#735#35#35#'67&''NRRMMeÛbJJN§§+ &a(&%'—  2O9   ÿéóŽ(.9733#3#3#33#"&''6735#53533''6#5'6 669944*, E[# $ !Ž  ,?++8 " VDÿçôœ (,J7#5##53&'733#3&''67'767#53'3#3#32767#"&55#'667#ìµf **0  =pKKe &< F3&&     !7  =$" W ð˜73533#3#535#'63#735#w55@™G&uuOO”  <7 ÿìôœ#'+;73533533#3#&'#'67#535#35#35#35#3533#3#535##a$$,3 *F- #2,#5aaaaaa,--V¼R, @ @ & & .   ÿçñ.26:>BFL735333##3#3#&''67'67#537#535#5#5;5#33535#33535#33567#)LNNWtˆ/ H -&&M /!4 0>4TL::N;‰::N;@@TCC J—%    %4 > ÿéñ•26>BF73533#7#"''3255'675#73533533#3#535#35##5##535#35#   T!$Œ!-!!LMMMMMy" .  "'2W W . ÿçõš"&<H7#3#'6553&'75##5#35#3353353267#"&5536'33#7'íE:°X))));)( (  "†662" Ž4. '-E"#+   2   |ÿèõ™73'67#'6&''6›E 5 " 2™  $+(/  ÿèô &*.:73&'73#'67#5#53533###67''35#35#67&'__×/60£ T # ~~~~O!  60Œ j    e '     ÿèõ™#);73#3#&'#'67#537#735#35#35#'67&''6767&'+¬b„8% 1B' +C 1„„„„„„  %*g7='! ™Q 9   7    ÿçòš*06:@7'6'#"''3255#3#3#535#535#'655'6##535#7'6×( &0  !FÃ+ )T.™0 /š  Ž  x    8@">@) 3;# $ ÿèõ›7;?733#533#3#3#67&'67'5'67#535#535#5#35#ueÕ^XÉ#22#M    H!  9G#22"“___›     .      ÿèð˜*06<73##5#'665563533#&'#5'67#7'6'&''33#ß %I-#     I 3Ui˜ !^^D (4,/22 *2> „;ñœ%+17&'73#"''3267#'67#'&'7&'''6'62 DJ7373#67&'##"''3255#5'67&'767#3&'#35#35#'67&'W kH     A   G     GEO !uuuu # { ‹   1  1  & &     ÿèô• #'+/73#735#73#735#3#3##5#535#735#33535#335ZZ88^ZZ88x¸RjjiiR??S@“??S@•--&F  * $ K²E 73#735#35#KggBBBBEE* ' 8ÿìÆN73#&''67&'767#53&'…: '  a?N       ÿèñž#'-373533#3#535#735#3353#735#35#35#&'''6(MPPiãgM::M=œ­­‡‡‡‡‡‡c,# "*4 9 4–$ 2O8   ÿéô™!%6:>73#&'#5'67#5367'23'#35##"''3255##53#735#Ä"+w9$ y'9OBQP4UUŒ  ,hhDD™    4 3 9I' ÿïñ–*.2A767#533&'76767&'#5'67&'3#735#3673#53'0  BX <    'N( ””ll/;Ô=z          (3$    ÿçô›#'+/5;73533533#3#3#535#535#35#35#33535#335'67&'.H44>iP´Qk<.@HH!>>Q>>>Q>p . 3e&& &'  JJ J) "    ÿèó˜'+?CIO73267#"&553'#33267#"&553'#33533533#3#535#35#'67&'0 &" X445! +$ Y55­)F((>æ=);FF+ (d,&))i  :/  :0 <   #    ÿèêš#)/G7367&''657367&''65''67'63533#"''3267#'67#E   *k    )ˆ o c6\  HK?5š             P / /  :ô–+L73#3##3267#"&55'677#'73655#'3#3#7'5#'67#'73655#†b!&    ! /l_ % $  ,–             ÿèðDHL735333##35#53353#5##535##5#3#5#'6653353#35#535#535#33535(MSSE5##5ED6*  1COOccM_@@@•(  f' 22 '  ,(   ÿçõ™26>B73&''67&''667#'3#3#67'75375#735##5##535#œ> !    /†R+5 %..¹<<<™       ;" JFPLI I- ÿéò’7=A73#&''67#3#&'#5##5'67#535#&''67#3&'35#"»   #f?& r )>g%   D c Orr’   /6 4 /    ? @ ÿèô˜$(-C73#3##5#5367#53637#335367#33535'33533#3#5#'65£=((R%$1$T/', <. ˜O$$ O (- X&,, R@( #6ÿçõ˜ (,0@7&''6'3533#3#3##5#535#535#35#35#73#3##5#535#¯ $Š*//&$--..&$*7777cQ----˜ I  I ) ) 66ÿèñŸ"+/3;?107'655'6733#&'#'7727#3'73#3#3##5##535#8 6([ 1 , AT JQ³————™tttk5+# ")/  &    (( ÿèö˜#',@DHLRX7533'7#3&&''67&'#'65535#67#'3533533#3#535#35#35#35#'67&'°) "    ) #¡' i"''''''9 † '    /$ %,B0UUKK-.%   ÿéê› '+/377&'7'6'33#5##533#735##5##535#33535#35#@ ‡ ?a¯`7]]‰Œ;;O=Œ;;O==›   ++) "MM ( Vë’!%73#"''3255##53535#335#3#735#Õ  m;G))GG''’7E 0DU77& )' ÿèb™ 73533#7#"''32655'675#   y "/ #( ÿçõ˜"&2A7&'#5'63&'3#735#'3#735#&''67&''6z36 { M c 6VV11wVV00  u   ˜   44&      ÿéð¢/<AEIMQU733##&'#5##5'67#535#'6553'73#3'3&'#35#535#767#353533535335¦/!" $ )5Uc23¯5((.eDJb  &..$   ) *.G   @    ÿéìš3GOSW[_7&''56767&''3533#67#"''3255'75#73#"''3267#'67##5##535#33535#35#“    m    "ŽF   B[$$5&[$$5&&{  > $!.  " '*1 2  %@W W, ÿçôž6:>GM7#5##5367#'673'3533#3#&'#5'67#535#35#3353'665&'ç92#  .½,**$$  %,&K@ fSCAQ  7  -275 1 2î— "(73#'6'#3#3#535#35#5#7&'£?G ' 'n""BB""‰ —    ( a ' (    ÿèö–17=73#3#35335#533#335#535#535#533#5356&'''6K))))7++++2%%$$':ìj*&)(?, (– ##,B>kb}    ÿéñ¢ J73#53&'3#735##5##53#67&'#"''3255'67''67&''67#gÚ^=  zz«¶¢P  #&   ,BB/)7 3)) +2¢           ÿëòŸ?F73533#3#535#3#735##5##53#&'3#3#535#535#'67#&'#6hhhS½Vh©©††±¶§ QQeÝdPP$$…9Aš     ÿéì˜#CGKO7675#53#5'7&'7675#53#5'7&'3&'73#3#3#3##5'65#5#35#<I\"'I\"Y2ROEEEESª !WDDDDD„ C   C "   B    ÿéð$(=EIO73533#3#535#3'67#3#3#535#3#3533##"''3255#'#5##535#&' T\\P­JT Ú Æ FXÁVGßßeK   K111g  —      11   ÿéñ˜&:>FJN73533#3#3#&'#5'67#535#535#73533533#3#535#35##5##535#35#$%%!!))   ))!!$h ~(DDDDDD‰  02 2W W . ÿéñŸ ,@DHLRX7'673'3&'73#3#"''32765#'655#3533533#3#535#35#35#35#&'''6  Rß&#/+  l+~#+++++++#    @'  6?' /C ;; " #    ÿèö˜$*>BFn73673#3#&'#'67#5367#7'6'&''#"''3255#'65535#35#3267&'#"''32655'67&'767k19>K  &**f I   s    u   0  ’ $&.Z0I!        ÿéôš(.4<@DHLR73673#&'#5'67#53&'735#'2'&'&'##53#'#;5##;5#''6×  .#.( *?m  À_…8''''''''p š          nPP?  * "  ÿèôœNRVZ^bfk73#&''67&''667#'35333##3#3&''67'67#5367#535#5#5;5#33535#33535#33567«:     ‘++ +.79 "!".+ ,E,G.6 œ +  ! (!   !0,ÿèõ›NSY735#53533#3'33#673265#"''67&'#3#3#3#7'75#535#535#535#275#7&'@4400B75     1&&##''#@E/))$$&&/A „  n   --%   .        ZY:  ÿéöœ$*>BFpv|73673#3#&'#'67#537#7'6'&''#"''3255#'65535#35#&'#"''3255'67'6767767&'&'''6k09?K  ' ))f I   £     8  |      -   ’ $&.Z0I            ÿêõœ#TZ`f7&'3#3#7'675#535#5'635#533#67&'#"''32655'675#535#&''6'&'?  =###*3!! "VGJ]3     4VG  3œ  - / :    #    ÿéó¡)MSv|‚7&''&'3#3#7'675#535#5'67673267#"''67&''7&'7&'67327#"''67&''7&'7#'6'&'¯ f  =###*3!! "·B   F=   $I3¡   - /        8   #       ÿèñ˜HLPTZ73533#7#"''3255'675#73#3#3#3#3##5#535#53&'#535#535#735#335335367#   Qƒ922<3==>>19..7%A!-y" .  "'//      ` ÿèóž=AEKQ7367#'6733#735#35#35#'3533#3#&'#5'67#535#35#335'67&'‡7'  . b>>>>>>†,**$$  %,&B  :k \B $ $ ]7  -275I   ÿëö›@QUY73&'73#3#53'#367#733#3#3#3#3#3267#"&5535##"''3255##535#35#)+r)#PTTMNJJJJFF$ -' NM ;;;;;Œ   '    ^ Q d & ÿèç˜ $BLV7#"''3255#535#5#'##535#35#3533#3#&'#5'67#535#3&'735#336735ç   F4444&J7777:::4/  (3:  "4  ˜•  S<,A+%%##$$,?š          *,  .       ZX ÿèôž"&*.GKOS7&'#5'63&'3#735#73#735#73#735##"''3255##5##5##535#335335|91 h QO@99599699$  &%%%%7%&ž   & & & !4  J ÿîóœ$JNRVZ`f7&'3#3#67'675#535#5'673#3#3#3#535#535#535#535#'235#33535#335'6'&'?  =##)1!! "¯,55--118€600--223 .J.{3œ  - /   ?  ?  G "    Gÿþï-^733#3'67#73267#"&55'75#'65533#67&'##'3255'67''67&''67#ŒGGM B12 $  7 €6     #%"  -       ,& "36           Nÿþñ¥ $(,I73#3#5#&'#'7##53&'#53635#35#35#3&'73#3#"''327#'67#•:2D L3*TTTTTT?9WR   F  !%¥;     ;7    ÿéñœ6ISm‡?67&'7''67'6776767&'7''67'6773##5#'6556'33#3#?7&'7''67'67777'7''67'67x      ?      Ÿ  : )¹rrm€,      /      …            hhL U-BJA         ÿçö¤,QUY]agm7'673533#3#3267#"&55#'67#535#'67#535#'673533#3#67'3#735#35#35#'67&'— '  *^ * ' $ "¥¥# #) &_%%#%ˆ             L6 ÿèñ¡ )-15Gx73&'73#73&'73#3#3#3##5'65#5#35#'&''67'76#3353#3#"''3255#67&'7&''67##5367#+/nŠ"!M )J    ;>%3   '  +(    x%)+]   $$4= '   @Q ÿéê˜ (HNRV\bh73#735#335335777'7''67'6773&'73#3#3#3##5'65#5#35#'&'''67&'#¹¹&&7'&™  &  P "*$$$$,] */  2  * ˜.=        G      ÿéö¡*.3JO_cgk73'73#3#5#3#735##"''3255#'65535#35#73267#"&55&''6555#'3#&'#'67#735#35#35#ahº¬¿®®ˆˆ   ±    ! eA   !!!!!!• ! H  $ # +@    %)#E  1 ÿèô›#'+/37;?C[_cgms7'#5'6&'73#3#537#35#35#35#'3#735#73#735#73#735##"''3255##5##5##535#335335'67&'JB +1  Uf+)W(555555’"" "" ""    4 3 ›   kk +,-2$ $ $ 7 J     ÿêòÐ .B73#53635#3533673#&'#5'67#53&'3#3#"''3267#7#fi¿?2™™&   ,*  /=å¡• ™ .Ðoo fK     \$ !KâÑ 673#53635#3673#&'#5'67#53&'735#'2qcÄK>ŸŸ†-! !1;ÑwwmU       ŠóÑ73533#3#535#'63#735#ž'f,LL&&Ç '' NE!3Tï¤!'-73533##5'67#'3533##5'67#&''&'™!""   ^!""  ¢  Q  •2# 2#       EóÑ ,04P73#53&'33653353#3673#3#5'67#35#35#73673#3##5#535#53&'¹)f'–2KL^  ::;;v  /((&&.Ñ    %$J+ 6 J    moÐ 7&'7&''68 "  ­ (,pmÏ73353353#353#5335#"["Å!!'$$vjñÉ73&''67&'#367zh    É      sòÏ&73533#&'#5'67#733267#"&50++  ,{  ½   $A aÿéõu)/57676767'7&'#"''3255#'67'67&'''6Œ #'.   *, = V ' "  @   bïÏ"47&''6767'&''6767&''&''6767&'ªCL%+/8 %( ^ %) Ê   -        ÿéõÐ#'+V\b73533533#3#&'#'67#535#35#35#35#67&'7&'#"''3255'67'67676&'''6'l""'<( 0<1 ';-':llllllZ(31(   #&3& M ! Å =  = $ # 0       :   \yÐ7&'73#'65535#C"N 99¼ 6 #%\ÿèôÎ"+377'67333#"'&''67&767#7#53#5##535#w  & ,     M CCC‡  . ,     .i&?VV5#iDõÊ 7&'''667&'7&''6Ê-  &*Ê0 0.+  TÿéôÏ $*073&'#73#33#537#'67#'6&'&'t "[31 a:# 6  d   Ï- ¢Ý'xx4/GL%  % aÿô™¾ 7##55#3535#™&&¾¶Ê6%%%%^(0ÿèí«1agm735#535#53533#3#3##5#73#"''3267#'655#&'#"''3255#'67#'673276767&'&'''6=  !!  ]Q    , "# * ,)< F  $n      D: "" U     "  Tÿó¨Å%7#53#67&'7''63533#7'75#rI   #+#³'  G" & \wÓ"+73#"''3255#&'#'67#5353635#&'#D'    1 ÓN    (, ÿéŒÎEKQ73533#3#535##5##53#676767'7&'#"''3255'67'67#&'''63771q-3xTH"   . D  3  Á   %     #    B     `ÿèôÏ$*TZ`73673#3#&'#'67#5367#7'6'&'&'#"''3255'67'6776767'&'''6n/7<M    +)d D  [       ! 3  ¬  5 }$   +    ÿéyÈ $*073##"''3255#53535#35#35#35#&'''6m +   ---------8  5 Èt@  =t * ) *(  òÏ#'+73533#3#3##5#535#535#35#33535#335'''%%((**$$'%8%»ZZ283ÿéñ¥!'-W]c73533##5'67#'3533##5'67#&''&'7&'7&'#"''3255'67'6766&'''6™"!!   ^"!!  £  Q  C"/K   #" J  —0" 0"      %       5   •ÿé÷Ð'+/7&'3#7&'7''75#535'6767'35#335Þ   "('    »L!#L($~***fÿçöÉ 9?73#735#35#35#3'67'6767367&'3267#"&5'&'pvvPPPPPP/      6  É`D ( & $%< &      ^   YÿèøÓ6:@FL73533#3&533#67327#"''67&'#7'675#535#75#7&''6'&'d'*)   (0&$ X  %>· (H)0.!  "6e m˜iL] N„Ñ#'+73533#3#3##5#535#535#35#33535#335100**//44**1*B*Ç  <   < " Zÿé­Ð(,073533533#3#535#35##"''3255##535#35#_  S )  !!!!!·(t  0  0  Kÿéé›0HLPV\b7#"''3255##5##57767&'74''67'6773533#7'74''675#735#335&'''674'é  NK,    ?    V $ !››  †––¡²;  9 <Vÿè§Ï 173#53635#35#3#3#"''3265#'667#53&'x E!!!!''    Ï NN +-%  2 " "O,õÑ3:733#535#535#'6367#73#&''67&''667#t# @/../ J-       Ñ a  3*    !6bÿîôÊ $?\y733#3#76777&'7''67'676777&'7''67'6767677&'7&''67'6767677&'7&''67'67b|||Žh   G   7  G  Ê^]»     !   z     ‹ òÏ#'73533#3#535#735#335#3#535#35'%%*g,'& >BT,,0à (  B- 0i9QÿéˆÏ 7#5'6tϵŒ$ ÿè÷Ÿ!%PV\1073#3#&'#'67#5367#735#35#35#27767&'7&'#"''3255#'67'67&'''6-¦\2# 0B' ,C1‚‚‚‚‚‚8 '$3    !!  9  O ŸH   2 ;        '   UÿèôÉ !%)-28>DT7#'6553#3#3#535#535#735#33535#335'67&''&'7&'3533#3#535#ñyc)**2t0))()A)N a -,9,++5€9,ÉTF6 6@a:  # I      WÿéðÏ)-15S[_73353353#3#3#3#3#5'673&'7##35#5##"''3255#'#5'67##5&'7#35#e'#;47////8‚   >>%%%%%r    ?  ^  Ê! /    > +  CR%   Bÿì¾Ð767'67'67676'6¤"'&,7%#%3?AŸ<#  &?;#h^ÿèôÎ"*267'67333#"''67&7767#7#53#5##535#x  &+2   L! CCC‡  . 0     /j%?VV5#Zÿô•¾ 7##55#3535#•))¾¶Ê6%%%%^(RÿçòÑ#'+/373#'6553&'3#3#3#535#535#735#33535#335³4v?b(++1x5++((>(Ñ MA1 2;Y 4_7=Wÿü—Ï733#3#535#53##535#o<&'Ï#YL W;*‚ ñÏ#'73533#3#535#735#335#3#535#35#‹'%%-o0''FK]4499 +   D**bFOÿè¤Ï 073#53635#35#3#3#"''3265#'665#53&'u!H$$$$*(    Ï NN +-% 2" ![êË%+7#5##53#5##53'6673'66&'7&'w2Å2I" n! U | ËJ88JJ88J$#  $#       <‰Ï 73533#3#535#'6553'#3#5#011(d)0b(à   T 0"NˆÑ#'+/37335#535#535#53533#3#3#353#735#33535#33511%%..++&&22a(=(h  3 3  O iÿéñÌ #'+/3BI73#735#35#3#3#5##5##535#3#73#3#73#3#3#&''67#'7#6sssPPPP|5:*)95<J**J**Gqq ˆ -3 #d (Ì;$ !  '++'      ÿéð© 7'67&'3#3##5#535#e # "JoÃWddggX©    "'@@'ÿéÑx7'673'67#&C )f%/J ‚"\5& % ; ÿêík 73##5'67#&'Ûc#7?!\“& !$kn[$$ÿèÜ}"7&'73#"''3265'3#'367'5#@• ;t7 %}  q ZR;H  Fÿèô~"7&'67&'7&''5'6556Í  + 2  ,a~H %U\ " h-' #1ÿîñ73#3#3#535#535#53&'y ]`TTgâgTT`] '' ÿîõ{ 73#53535#35#35#Ê+è*kkkkkk{zz*?> ÿèê,733'67##"''32655#'67#53&'767#&´& R  9 &B= Vf ‹  5 0- ÿçíŠ!73533#3#67&'7&''67#535#"NQQg{25 "IQH`Nm   ÿíí73533#3#535#3533#3#535#$QRRcØaQSXXdÚbSo;ÿéï 27'2'6'&''&'33##"''3255#53567#× Lm[NB  /  ¨#[b   ii        ÿéõ,7#5'67#53533#&73533#&'#5'67#S $)'' %)'  $6MN(0>&#$TN'0 ÿëö”(26:>B73673#&'#3267#"&55##5'67#3533&'#35#33535#335Fu8, D " .'2 *7:%10 22D0t22D0…D   F  '-ÿéóƒ733#3#3##'353#5#535#535#ŽNNGGRR}NPPHHNƒ%„˜&ÿèó‡*73533#3#535#73&'#'3533#7'75#133;†71” “0339=J;0y2  QB ÿèï„-?D[767#53&''67&''67#53&''67&'#53&''67&67#'67#53&''67&' Kb   i Lc   sb   ! 1 ˆ Lc   o          =        ÿïò#733#33#53537#535#35#35#35#v^`J"ã#@]^Iyyyyyyy kk 9  % & ÿé’Œ 73#53&'3#3##5##535#T4€5$kkkkkDDDŒ +  9 9!ï‰!7#535#53533#3#67&'7&''6[JeGGKKez6-BQH     ÿéÞ’$,048<7677'7''7#53#"''3267#'6#5##535#33535#35#+ &+   z`   # AŒ<Œ<>„  !   /. &WW .ÿéñ‰ #)-5973&'73#73533##"''32655#3#7&'3##5##535#60z‚:  :uddˆwddc;;;u  W R  7 9 ÿéí‹"&*5;73'73#3#3#3##5'65#5#35#'37&'#''6$  &.(())1h 8$$$$$S    Š   X #m  €…"  já– 7&'6'&'6'&'6Ð 9 = –     ÿéò#'->DJ73533##"''32655#'6553'#33#7&'3##"''3255#&'''6—4   4foMM>IIl  b[' "K  6  r] X0% &,C/ #   ÿèï'+/37;?73#3533#3#3##5#535#535#535335#735#33535#33535#335$¸S***S``__P((*Q??SA”??SA**>*B      ( $ B ÿçæŽ -37JP7#'6655367&''6673#"''3265''673#'367&''66''6æ± L   ! g  „  fF   "   Ž:1& "E      r h  Y)       ÿèã”#+/373&'73673#73&'735#336735#5##535#35#2.9ÇGY€€€€€„>    9R R ) ÿçç” $59=CIO767'7&''67'6767673#735##"''3255##535#35#&''4'''6X  %   )ffBB\  OOOOO(    ,  -*W  #l )  ÿéõË<@DHLPTXb73#3#3#3#&'#"''3255##5##5'67#5367#535#535#735#3353355#35#35#35#3533&'#Å0;;]‚1#  1.  ,A3!77/((:*(.AAA"ƒƒƒƒ -. EË+  ;   ##" ;   %   @ ÿéì“$(,IOU[73&'73#3#3#3##5'65#5#35#'7&'7&''67'67676&''4'''6 )$$$$*[ .9# $       “   _&&f) R ÿèó•'CMQU[agvz€7'67'677767&'7'#"''325'&''67'6776767&'73&'73#3#3#&'7&'''67'#5##53635#'&'à      u    C;;;; £À —  ? 97- , 6 Z   -+     8   ÿèôÊ '73#'3#5#53733##3533#3##5#535#w199d66…RSSiijjRÊIII    == ÿêôY7'67#'673&0B o/Y *!a9 A &     TïË %)733##3#5'67#5367#537#3353535#&¬zŒœ )?D0DW[_jttË+    @ ÿæõ^#)/73'67#&''67#'6'&'&''6€W '7 6  < B   8 ^ 0 &3      ÿéïW!7#'67#5367#535#53#3#3#&„S<R_NNQ¸SOPhS:G    ÿçôÒ%uy73673#3#3#535#535#53&'&''3'33#673265#"&''677&'#&'7#3#3#"''3267#7#5'67#535'635`-8]RRdÚbPP\@v >?A?   (   -4   3   %;&4" Ò      W            > ÿèôx773673#3#3#3#&'#'67#5367#535#535#53&'N =  5`RRhjfN:H#N;GSacQQ`6x          TÿéóÒ#'+/37_djp7#3#3'67#&'#'66553&'75##5#35#33533533265##3&''67&''67&567#''67&'ò'$qu# * <(D<       *   O   à *   C5 1#]  :      8 D 4ÿèò¥#Ko73673#3#3##5#535#535#53&'#53&'73673#3#3#'67#5347#5373673#3#3##5#535#535#53&'r%+E::KKII==C% # $!), !^ #%%$$#¥      n      (   ÿëêÆ)/573#"''3255'675#73#"''3255'675#&'7&'b + 4!Nqc + 5 NW  ƒ  Æ¿3[¿3[    ÿçóx 7&''6'63'67'6}47 8:-5 @5 + *<(N IDB;_x      #   ÿéêy#'+73&'73#3#3#3##5'65#5#35#D8LOEEEEQ£ %R?????y W ! ÿéðw".73#&''67#&''67#53&'3533##5#‚\-  N  '.^`heehw        S$$ ÿêòz*077#53&'#53&'73#3#3#&''67'7#5367367#67#bUB!UV! ?| ~1"$*#&@-35C8N(C<       J  ÿèó†#'+/37#5##53533#3#3##5#535#535#35#33535#335î¹MPPNNllhhLLM::L:†::L:†##CC" " uÿèõÐ 27#5'6733#535#'67#535#'673#3#&•&7 M0%   +  Ð¹Š +*-˜   "jÿéõÏ 5;A7&''63#"''3255'675#73#"''3255'675#&'7&'¬ $ .1 ;5 #8 M Ï! .ƒ & 2‚ ' 1    ÿèvÐ &273673#3#'67#537#735#35#&'33##5#53)%2:   % 4444+ º  O /-@   ))tÿëõÏ#'+1A73533#3#3##5#535#535#35#33535#335'&'333#"''75#   ""##  / Y# '*   »XX3:]Hf W ÿéóÐ;?73533673#'67#535#67###5'673#"''32765#35#$E8 A^7I 5+]ZEi4/N -n i  ::¼  \3 5  !P 1 " ÿèóÏ.3;?73533673#673#"''3267#5'67#535#67##5##535#'@E 7W+Q)1W†….6-bY@n@PPP¾  J4% f? ?%ÿîîV%73#&'3#3#535#535'67#67&'# ¾VVeÜcQQ$% *+-5D V      ÿéóÎ%735#53533#3#3#&'#5'67#535#*KVVVVMMdX$: 9%$7:#UaKˆ+.SS,(€ÿæìÈ 7#3#5##535#35#åQXD>>DDÈTi âB0«7 ÿéóÆ73#7#5'75#35#35#675#Ý&(LW+';hhhh9/hÆ„31!!V"[ÿêðw7#5'75#53#'35#35#5#î''®zffffffXP>3/zðÒ 7'67&''67&® .}1  ¤ !(  (  TæÈ $73#7#5'75#35#35#75#73#735#w (.%//////^RR,,ÈE M,- ?T2 ÿçôÉ5;A73#63#5'75#35#35#75#67&'#5'6'6'6p  $+"//////‰ &" =&!&]?  !/ / 1ÉB K +.     (BX  4ÿøÎq73#67#5'275#35#35#675#7“ 29 %FFFF'Fq?J ( , dæÐ"&73#3#&''67#537#'673#735#3C&/2 # % /6 gTT00Ð      K)iDõÊ 7&'''667&'7&''6Ê-  &*Ê0 0.+  cÿéöÎ:R7676767&'74''67'67676767'74''67'6736533533##5#'67#{    9    i#""$"š ." . "s ??9'xHáÎ 73#53635#7&'Ê i:5CCÎUU[2B  DƒÏ!73533#3#535#'6553'#37353..'d+3  c9Æ   O , \ôÏ )A7'67&''6'67&'#5'6333#33#"''67Á  ‘ N  ?   $a::!N   ¯  +    3&    ÿémÈ .73##5#535#35#35#35#35#53#3#67'675#^ D $$$$$$: ! ÈÏqM-.OÿèóÏ735333###5#535#535#33535,GNNKKeeG[:::²35OO"2"" ÿçóÏ'+17735333###5#535#535#335353'6573#'&'''6)KMMLLffK_999£%  >  ¾()qq(76.c\ $ ÿæõÏCGK735333##35#53353#5##535##5#3#5#'6753353#35#535#535#33535#QXXI4 !5ID3" 0CQQiiQcEEEÅ  7 $‰+$4 DD 4$ @"# 7  qòÐ,37&'73#'65535#73#&''67&''667#@'P;;mB      ,Â4 & (    ÿèïÑ $(73#3#5#53&'#"''3255##535#35#„`¨¤"gg  ~~~~~Ñ +Yq  /Š&6#ÿéÜÏ"(733#"''3255##5335#35#7'6'&'uO ŠO;ŠŠŠŠ†  Ï;  <«/Jw  'ÿéÝÉ!73#735##"''32655##55#351¢¢zz˜  Ž¢ŽŽÉE@u +Œ( ÿéçÏ%)-73#'66553&'#3#"''3255##535#35#‰S° Yažž  yyyyyÏ 8$>0 -V #"n  +†%7pëÑ73#67&'7&''67#53&'†Z~37JSBfÑ       ÿéñÓ6:>7&''67&'763673#3#"''3255##5'67#35#35#Ä ))40 "*,)&šR w†~  z !"A>zzzzÓ     > d  '^!22kÿêôÌ 7&'''63533##5#Ä!5885Ì6 9 8 #J..XXléÏ73#'3#73&''67&'767#K-Y`  !   IÏa[SS    aÿêòÏ"(735337&'#"''32765#'6655#'6o%.    $  ¥**;!N hJKA= % sïÏ #73#5'675#5373673267#"&5\%("FF." #(  !ÏY      ÿê–x!.7#"''3255#&''67##5353&''6–  %   #:  li  T   q 6   `ÿö­Ï!7#535#53533#3#67&'7&''6x  S5##5. % (ÿèô®.2673##53#367&'#7'#"''3255##535#35#A–– #½H H*'   ooooo®  +   S  !h ' gÿéôÐ0487'673&''67&767#"''3255##535#35#ˆ A  &'     AAAAA“ $     I`  &u /[ÿéöÅ '17'66553'#3367&'#"''325'3'67# zTT"    .' „#C5 !/$^A/"  &&0  Y 9.9ÿèï® %GT7#5'673533##"''3255#&'#"''3255#&''67##5365&''6e  M M  a   ;   2L .® ;,     /R  =  Wg )   \ÿéôÐ17=CG73673#3#&'3#"''3267#737#'67#537#3&'7'6'&'3#k)9@P#    Y)A  !'<  M  UU¦   3 &! V ¨dÿé÷Ï"BG73533##5'67#&'&''6367&'#"''3255'67'&'o377 (W ! "! -   # º-    *      Sÿí³Ï'73533#3#535#3#735#7677'7&'Z  H HH!! *3¹9;3 fÿèóÐ 6>B73#53&'3673#5#3#"''3255##5##535##53&'#5##535#­8‚6 #-7  $.'%`GGGÐ %    ''"2nI J,dÿéôÏ+8D73533533##5##5#3&'73#&''67&''63533##5#d--83 J  X=??=½#      %   ,,,ôÐ,0473673#3#3#535#'67##"''3255##55#35Œ;BB!'X   `   .@..½   CN   a 2ÿéì±"&*5EIM73'73#3#3#3##5'65#5#5#'#5'6#"''3255##535#35#z44++++1k 5(((((- — vvvvv°   .  O C+OJ ^ " TÿëõÇ$59=73#"''3255##535335#35#'&'333#"''675#3#735#ã   C # .6  $,, 64 R++ÇJ_ KdsJ%%;;1Il^7  P‰Ì !%+17'6553'#33533533#3#535#35#&'''6-fDD? [    ¥ ,+*'       _ÿì¨Î'73533#3#535#3#735#7677'7&'b?CC 'º9<6 QÿêöÏLPTX73533533##5##5##673265#"''7#53#3#367&'#'6553533&'735#35#5#W%($$(%•!   8@K ]  ^  ¿ +1"" * u. #?8A!?@  D23\ÿéóÏ !:>BFL7#5##53&'73533533##5##5#3#3267#"&55#'67#735#35#35#&'êb9Fr#  + %KKKKKKK   ½ % Y   ' ? " #   ÿéõ!%)-1EIOfl73#735#3#3#&'#5'67#535#735#33535#335'#"''3255#'65535#35#7'65533267#"&554',¤¤}}@     #  9    ‰<  +&6    " `  )),'$* **[ TRÿéùÏ^bfj73533533##5##5#33534'33&'73#673265#"''7#53#3#37&'#'67#'65#535#35#35#5#Z!'**'! O    32 ?   >  ¿ #) ,4(  y0 +=@6( '%. ' 59 GïÐ $(X\`dj73&'73#3#3#3#5'6353535'3533533##3#3#3#'67#5365#535#535#5#5#35#335&'Ÿ !#b  ¬*))--8>!  %0))''P* ' Ð  D  Z      #6 ÿôêÅ 73#53#3#'#33535[ËÈYKJGGG’’HÑ(U}(//B..ÿòôà #'+/73#535#535#335#3357#3#3#55#35#5#aa2::”) (m1>>ÃÑ/S***KQ**²@(9')4)'PK?0 -%;0I81 ©ƒ3I$wÿéñ”73#735##5##535#7#5##535#‹WW11i”:8bbC2bbC2 ÿéöÈ #'+/DHP73#535#535#335#3357#3#3#55#35#5#3673#&'#'67#3#'3'66`c#233„"%d+33†Qm8' / , ; );‡G  Èl,L,l -!   88  ÿèóV73673&'73#&'#'67# `/  +[@JN =U5   0+ ÿéó^ '7'67##7&''6'&''6u b-*G  o   ? YR        ÿíòÐ?F73533#3#535#3#735##5##53#&'3#3#535#535#'67#&'#6 iiiU¾Vi¬¬††³¸¨ RRgßePP$%%‰ 1EÇ   & !''        ÿéóÏ%73#35335#535#53#&''67#56\00AC332FT G MO PO#Æ !{v$x0..'qÿèât735#535#53#5##56732œCCBVœ0#)D'""  |  SáÌ73#35#535#53#56m!)BBœFFBVÄ/ÌrmÿéëÏ*06<B73#35#535#53#3#"''32765#'67#56&''&''&'''6n!99‰BBDVz •  &&Z      ÏfG )b’   ÿééÏ26:>B73#35#535#53#563#3#"''3267#'67#5367#735#33535#335o !*CCFFBUÂ//ÂYd  VL ;LZUDDWCšDDWCÏ    OHRH & # + (  ÿéòÐBHN735#'67#5373#3533#3#35#535#535#533#535673#3#35#'67&'Y#"  ( C####"5å""""M#, (m$ ""g  !…    8     ÿèòÏ17=73#3#35335#533#335#535#535#533#5356'67&'H!!!!0*00+4%%%%$7å +(h+% ((Í ::GSW"“‡¥    'ÿéØL73533#3##5#535#C344NNOO3=## ÿéë¬"&*D73#3#3#3#5'673&'5#5#353#35#535#53#5##56‚ STLLLLZ 6 BDDD !*EE—??DW—0¬   2#!   NJ ÿîòÏ)-159AEIM73#3#35335#535#535#533#5##535635#3#3#735#3#53535#35#35#E &W& !2 ³ 055**** P*æ+kkkkkkÏ  ]][&&SYP # >RR & '  ÿéóÏ3J7'23#5##536'&''&'3'67#&''673533#3##5#'735#à TxdK ,µ—:  .  5a P ( "V1&&+*4$1Ï(*    6[ ?   +++'+ÿéîÐAEQ]dh736733#3#5#&'3#3##5#'7#535'67##53&'67#537#3353&'67#3&'67#&'#635#)9Y ! WW^^S b )/ 0D2GQn< 6 ;9 4 1 &JC9  +   + I  % : ÿéóÐ $(,0D[73#3#3#535#535'635#35#35#5##5##5#3'67#&''673533#3##5#'735#@  !!Ä##  p/,w 4` N ) #U1&&+*4#1Ð  &? G-   ""d‹óÑ 73#&'#'673#&'#'6}$ J'  Ñ     ÿéêÐ!73353#'67#53373353353##5#:')$$J*(Їex. &xeee‡‡exKK ÿéó{76767&''67&'@- %#8 9+*B >&,w8!<     ; ÿéó7327#"&''7&537&'éi / :\['c ($30*  !!8   ÿêòÏ#735#535#53533533533#3#3##5# i],8888,]hhi4) \ll\*77*ÿéâ‡73#3#"''3267#735#,¨“£¢”‡</ =ÿóò73533#3#535#VXXiägVT--::#ÿíî73#3267#"&5535##®“:B HD“›J0 " D'ÿòîŒ73#3#5#53&'„ ]¤›¯!dŒUh  ÿéò‚73567#533##"''3255# nx•"ff    n< - )ÿéíÏ573353353##5#3353353##5#'3353#'67#53365)9>RM_()K+ & $É&,,)<%>LL=P11^3 >Q& P= ÿéðŽ73533#3#&''67#53655#'NQRdXE IQ HU[Nw  &41# ÿêó‘$733#353#3267#"&55#5335#53v\\:N "  .)O;]]‘;(:   ":(; ÿéòƒ#7367#53#3#3267#"&55#'67#WL½]oS  ) M BQR9  ?B3 ÿéò 73#'63#3327#"&'#7§° ““¨”  ((-#/ÿêò”$)733#"&55#'665#53&''67&67#¶). P¡ $7@-,9 5$0 _”$    ^     ÿéô˜73#&''67&'#53&'67„ ], ((>B./7 9' %m(% ˜&!    , -%"ÿêï‰ 73'67#'6'6767&E…  v  FJ2X M‰   1&" 0 ÿéò 7'67#73#3#/ ) 4‚‚¢¢@ ).t\ ÿéîƒ73##5'67#&'ÚW$9N&l”##ƒwb""- ÿêòƒ373327267##"&5'#"''3255'67567#536•  $   Tkƒw  F0 'ÿéáš73#5#'6553&'#3„PR\šO(! #+6 ," ÿéì&733'67##"''32655#53&'767#%»+$O  J iq ” 7 3  "ÿéò“%767'5673#3265#"&''3&'4* ]T ''TO % / SN$::  ‡!!+&1ÿéõŒ !7'67&'3#"''32765#'67#W4 0h'(&(a• C D = (Œ $(.J #>1 ÿéâ•#7#"''3255#&''67##53653â  H! - 2?Uzx  a -‘   ÿïó~ #7&'7&'''67332667#"&5~  _” 0   % ~ *0 /+;' /(X!  ÿéô–"735#53533#3&''67&'#367&QggccG$%4=,.D<% #!%S! !ÿèó‘ %7#5'673673265#"&55'67S  /E(!/$ / ‘xb %(: !5  0  ÿèæ…!73#"''32765#'67#'67#'6K  JH"@< $…d&BD3.91% 'ÿéò›7365#535333#&''67#75#cMML]?H"M A\³8F<'89 +) ÿóòƒ733#3#53533yQQeæ/*ƒ(BZZ ÿéó‚73#3#67&'7&''67#!¹¹æ|7@ ! QR)R‚, ! $ ÿèë73##5#'6556Í CY­=\"_ ZZ,'!$FÿééÒ)S73#"''32765#353#'67#53365#'63#"''32765#353#'67#533655#'6H  N!<: &*  " ™  P&=F 3*#2 Ò I ))  %YJ +( ( ÿèñ"73#3##"''32655'67#'735#Ð-66 2QK+fp.9 2,&. ÿêó{ 73&''65'3&''65¡+&1 @_ $6{3.'$,3" ) ': ÿêó˜ 7&'#53##7&'z  _æs5! ˜ 4oaÿéé™%73533#3#3#"''3267##5#535#535#W[[SSb  NWWHHW„/ AA ÿéì‡ "7#'65536733#"''3267#'67#ì´'/V  E+ & +‡9.$ $,B6 F"+8,ÿêï '7#'6655#3267#"&553#"''326è« ŽH '.  85o  ;1$ $E:L a3ÿéò†#7#5##53'665332767#"&5Ìu?073)  ( †m[Zl25 +*'.  ÿéò“7'63533#&&'#67'5#¼!- +‘8šcB )0$ 8“ (==6&%?  J ÿìò )7&''6#3267#"&553#"''326v4: 87!C LQX"@ J/€  "%$0; R,ÿõì† 73#5##53&'3#‚]°dZØØ† ;)*< w ÿéôˆ!'736733#"''32765#'67#&'''6OE6U NK¿  ¢ n  B1 AZJ    ÿëó—173'67#&''67#3267#"&553#"''326;7_ O ' "£4(% \   — k%O   ( l E ÿéó› $(,73##"''3255##5#53535335#33535#335Ø  ‹PP<8.ÿéò'767&'7&''6'3#3#"''3267#735#¬# ** {O8D  H5;_& ', 8R;7 9 ÿéó™#73#&'#'67#5353533655#335Ò [B HJ BXKK38K9};$4*;;  )ÿéë73#3#3##5#'6J–xhhqq(*|  ÿéô  &,73&''67&''6767#&'&'jT+4 ?2 : 0# 6 M3- 00NE JI      E     ÿéó–"73533#3#&''67#5365#'6=+PPg^H KQ IV^4  '2.#  ÿìó˜  &7'67&'3#"''32657&'''6~-9 @5/8 6; Dj z#- V A & (* ÿæð‹733##5##5#53533#335#²**g%%gggggg‹w v"4! ÿéóŽ73#3##5#535#&'7'6ÆYhhiiX   ” ŽB==B    ÿéó˜ &,2736733#3##"''327#67#767#7&'67#7&' ©  ˜¶' ]‚+# !X!""-( Y(   ÿéñ %7#5'673533##"''3255#&'E  !1^##  ^$   x[ W  R   ÿéó”!7&'67&'7''5#'6556Ó  ( .    !c”Y(.ew &  …+4+&*=ÿéâ7335#53353353#5#353#5#GP=;;F´65C=+99+EC5M ÿéó›17&'#673267#"&''67&'#'6553&'3Ä 4R     ) '$ M \›   +312 ÿæä•%)736533#"''32765#'667#7#5##535#%- #Ö...y  g K571/””mZ ÿêó—&,7&'3673#3&''67&''67#67#ÅŸF‡Œp.."&3- # 6@‚ U!—       "'/J ÿéó‚)733#67'7537736732667#"&5L!!2?A& .   ‚*3d_u1 4!  ÿéó™73533#3#&'#5'67#535#]__[N$8 8&#9 7#KZ]…(-LM*&SÿóîŒ73533#3#535#SCDD=Ž=C\00CC ÿëñÏ&*.73#5#53733##'673#"''326653#735#UFF@HHR!—  vvPPÏ7 #Y5 :5G# ÿñó•7'67#53&3#3#535#—4Qs.‹§ %" *—±PeÞeM\, ''ÿéìŒ2736533&'73#673267#"&55'675#'67#CC  *S    " !8 2@n 3 &)   @O$ Bÿèäž!'+7#3#"''3267#53673#"''326'&'3#¬e ›,M   >  Iššv78%W  (  Fÿéòa7#53327#"&'#3##5#53X%‹ >11AAN6-&*9 22 ÿéó£)77&'3&533#67327#"''67&'#3533#'67#È  ¥tRR " % u/+,2 )-£   . %  ' 6.$$*ÿéëŽ!767'56737#"''3255##5-#"0 -) &(Gw  9?)  x  Ip  XŒŸÿéî#+73#3#5##535#35#35#"&55#'67#5#32ÜI=Ÿ=I\$$>Ÿ$* "+Ÿ*z zv Hÿéò73533#&'#5'67#RBH=' && -8l##03a[."- ÿ鋊73#3'67#&''67#t79C@/  #)Š I<  & ÿéó–!73#735#3525#53#3#&''67#/¢¢}}3fN²QjZ=G!W O^–5Z #  ÿîï›73533#3#535#3533#3#535#$RQQbØbRUVVeÞeU‚Fÿéë‘!73533#67&'7&''675#735#335+KII SY00K77K5sD#  $ ÿéó™$*73'67#'6'&'3&''66''6y` R ?t!0 .=,!S™   ' 0,)+ (!" ÿéí‘73#'66556#5##535#Û Ha±±  nFfff‘0( (1+OR S5#Zÿðñ‘73#3#5#53&'®6ni}K‘\o ÿéóœ$73533#3#&'#5'67#535#'6</RReW%6 9%#8 8#Wd: –!")JG% !  ÿéò“97&''67'67676767'7''67'67676767&'f ',  $ … (,!! %' '1,E  '1, E ÿçã’%)7373&''67&'67#67#7#5##535##3   $ "¥///y<"    / (3” ”vdÿéòœ07#53&'73#67&'7&'3267#"&55'67'6_Kg[u03 $#&% A : .#t    8 <<.ÿéëÏ%;K733653353#'67#73353353##5#33653353#'67#73353353##5#/   n*)n1   n*)¾0 7& 0B  B1BB1C,0 6% 0B B0;;0B"" ÿéóŠ&,73265#"&55#'6553#7'675#&'Ò5dW# &1 !  Š #& s3!*;;K P ÿé Ï)-73533533##5##5#3#3##5#'67#535#35#!&!!&!} $" "$/##¶#'MM/%'''fÿéóˆ73#3##"''3255#pyy &  TˆF  Cÿéî 73#3#"''3255##5##5##537#Þe h  .,)Pb"Y  BSSSS\o"ÿèð¡ &-7#5##53&'7373#&''67&'7#367é®b€J ‚0 '# 2*= :?U  ˆ**  6   $ ÿéó—*73#&''67&''667#'3#5'5367Q"$ " 2F —0 &&(ª? cZ Kÿïï73#3#535#535'2Ý #IID—AIIC.55, ÿéò 073673##5'67#33##"''3255#53567#I|‡ .>[l@@  II PŒ dS ! $ !  ÿéö¡(,73#3#5#53&'3'66733267#"&5'3#„_­ž±h5 ! s   7¡ 1Z)  8  :N ÿéï™!%73673#3##5#'67#535#53&'5#I7  .0;;B9 /8=22 i>™&AA(& R&& ÿêí˜4O736733#"''3265#'67#36533#"''32765#'67#734733#"''32665#'67#!Jb  VF<A '-  (%t!1   "'Œ(' = <  " = "ÿéò˜%+73533#3#&'#'67#53655#&'7'6&PRSjVGJK @Q[P" ˆ ‚(,     ÿèó˜$(7367'273#&'#'67#3'6673#R!%RQ #*nB2 AD7D=!Nb   # HÿéíŸ '73#5##53&'3#3##"''32655#535#^³c> Daa  ggIŸ &&8# ÿèç*.37#"''32654'7##5#"''3255#'65535#35#o   *É B????(,’¤ $!<<,E ÿìï‰ &?67'67'6773#3#535#'6/# '0 8, +/ /062x*0("ÿé÷— &7&''6'#5##535#&'3'67#ª# " % 26‚ -|C 8c—  ~ „_M(3 !ÿèð¡/73533#3#5##535#3567#533##"''3255#_]]a°a_gr–#ee  g ++ \   ÿêæ—-373#"''3267'6765#'63533#67'75#7&'‰Q  )16-H o&/ ‰  — h-  //5 ;    ÿèó¡#(.47&'#3##"''3255#535#5'63&''67&'}29 *TT  QQ. JW#"€¡   0  -  M ÿçó¤49767'7&''6&'''673&''67&''667p*. IJ1M(! #'I#"= Z!24'/> 9( 6¤           ÿñï… %73#3#535#&''67&''6!¾UeßfU  ~   …pp /   ÿèò¤@7&'3#3533#"''3255##5##5'67#5367'67&'76Ê  ") ‡‘ .P  <3 )9F#.($¤   2  >>76  Nÿñô– 73#53&'3#536'&'£;‘@78¦XD  –  /3%0(")*"ÿèïœ&*.2673533&'73#3#"''3255##5##535#35#33535#335d: eQ  >=Pd'==Q>==Q>‡ e  %%&}46Jÿèõ‘$)733#"&55#'6653&''67&'#367È# 1  ‹- *#. ) # ‘&  M      ÿè’73#&'#5'67#535'6‚ 11  (469’KJ%ÿçñ‘#73#5#'67#535#5333533#3#535#TB:'3883s-3‘¨A' "6$//KKTÿêî‘73#3#3##5#'6yhVNNOO ‘,~ Rÿêõ’ 73#7&'''6'6š9 Kc'[ \’m_$ %) !" 6Zÿèñ 73#7&'''6'6¡6  D `$c ZfX $ :Eÿèô“ 7#5#'67##535333267#"&5å+Q H(<   v/L1+A/-B  ÿèà‹73#735##53#=#/  zzÀ˜‹?€UU ÿéäŽ7#5##535#357'67&'35#ä¡‘"¡#D %88Ž¥ ¤Q9xx97 c(ÿéô!73533#&'#5'67##5##535#[\Q ?A!$8 4!Gµ|||Š!  &18'BMM3! ÿéô #'+73533#3#3##5#535#535#35#33535#335dccVVjjkkTTd#AAUB—AAUB OO +- ÿéó %73#53&'3673#3##5#535#53&'€WË^5Di[[[[iB  /  **  ÿéò™ %*.733##3#5##5'67#537#5367#3353535#!®##t€  $2 HN@SKPWv€€™## F3  # a ÿéó•373#3#5335'2'3333#"''67&'767#'7#á 11:~=J$QJCU    +&0•'L:V0   #"ÿéô’473#3#535#535'667#'7#5333#"''67&'Ø 770q.66(>… *%4M%MHAQ  ’!!!O  *   ÿçô“)-73#&''67&''667#'#5'673#‘P$ (   1Z  $“.  %2}Y + kÿñíž+73533#3#535#7&''67&''6!TQQdÜdT '|  #2lls !&  ÿçõ /73#5##53&'3#3#3276767#"&55#'67#`±^7——ÔC 3 'J AA ++2) .:  * ÿéò§ #'7&''67&'33#5##5367#35#05 35.9 A49Š )‚f r ‚‚§ &%   F G F ÿèñŸ67'67#535'273#&'##533#"''3267#7#'67#4 /$Pe#(SS "(gM", 8$% 1 5 : A ;#>     ' 3%DñŸ73&'73#3#5#eg¯œ¯ ‡   2ÿêñ”$*.73#3#5##5365#33535#"&55#'67#333535#áPA >K^!_ . $''r(   ” ƒ ](Ufÿïñ 733#537#537#33737#um ‹1+;.,Ž8222|8*ÿéÕ¡"(733#"''3255##5335#35#7'6'&'vK  ƒK7ƒƒƒƒ…{¡1o  .‡$8d    )ÿéò "&73#67&'#7'53&'3535|GD S!74$ G-~~~  [  51  —$ ÿèó™'-37'233##"''3255#53567#536'&''&'Ô Mo\I $``  qq‡‚ 9+™        ÿçô˜FL73&'33#673267#"&''67&'#67#"''3255'75#535'67&'{ ,?DB    ) ' B  1335u˜  !      ÿéó˜ 73#3#&''67#5367#735#35#)¬Nm[H SUHW`J‡‡‡‡˜X $# 44ÿçé’ -73#735#33535#335373#"''3267#'67# ÀÀBBVB˜BBVB¸`b "R2( DX’R102 -  Iÿé÷73533#&'#5'67#Y<B8) )' ,2n""55c]-".ÿèð .73'67#'63533#7'75#7&''66‚V  G f %-#Š/ -1'  # ++6 9+'"*ÿëö™"(:73#3533#3##5#535#'67#536'&'333#"'&'75#‡OY 22<<EE7 (Z  1 %>' …H6  <#%  H $$=  eÿçñ‰736533#&''67#7&'i1?7 1*.00d  b7 00! :9 ÿñëŠ!7#5##535#535#53#3#3&'73#ë­_HHEŸGII" (ÓŠ,,‡""  ÿèëœ(.27#5##5#3#"''3267#53673#"''32'&'3#ë­žkœ œ/P  <  Q¡¡œ,,>+4 L  # <ÿéô—<B767767'67'673#5#3267#"&55#5335#53533#3'6+ #* ‘ ! 05588c(03^*% @ # *5$66   ÿ阘$*73533#3##'2655##5'675##535#&';994   * 4;^ ˆ( n7,=Q   ÿåóŸ #@73#5##53&'3'67#&''67#3267#"&553#"''326„\¯a17 [ K*   £6" -# \  Ÿ &) (V"=   D Z.ÿèî¤(,073533#3#3#535#535##"''3255##535#35#\^^VVeÜcTT\À  ˆˆˆˆˆ˜     >N b ' ÿìm• 73#5##53635#35#<&/////• ‡ ‹A X'dÿîôŽ 73#53#3'35w}ŠwllY E3!! ÿéó“0573#7#5'75#35#35#675#7#53&''67&67#ä~&+%.....Z d  ! 0“_#k=C&3   ÿãï/573533#3#5##535#35#'3673&''67&'67#367v155+=&1==ƒ(   . u [[ U#=7      $aÿñò‘ 73&'73#3#536'&'k37` .‘M7z  1%/*&(*%ÿëô–4735#533#67&'#"''32655'675#&'#535#2ƒ‰œ#`  # :%   +49-4 ¡ƒsC     ÿéó’#'73533#3#&'#5'67#535#'##535#n166>1 $ %.:12{'-JF%$o…]K"ÿçó— .73#735#35#33#67'73267#"&5536#²²‹‹‹‹DD$!, º #, " .&—O/+'" L   Aÿèó˜!%+7&'73##"''32655#&'3#75#''6'4¦!   r0HPP=*3 ˜  w r  ? &$"ÿéᜠ%)-157&'67&'6'&'6#5##535#33535#35#…   U  ˆ  ´™CCVC™CCVCCœ   6h h$:ÿéò';?C7#"''3267#3&''67&'767##5##"''3255#'65535#35#ã   A[      F   *****(/&     P£‡ )-W*Bkÿèë’ 7#5##535335#33535#35#ëX66""6"X""6""u‹ 6$$$\'''ÿél˜73533#7&'#5'67#%!!    #{ cQ!,ÿîôŸ&*.2673#3#3#3#535#535#535#535'25##5#35#335Ö '/a'00(b[ÉZc+//(`%*Z6'&&&:'ŸF+ÿèð› -7'2'6'&''&'3533#&'#5'67#Ù Nr^H =  .  ddW$5 7$!7 3!S›       , &@C& ÿèô•#DL73533#7#"''3255'75#7&'3673#3&''67&''67#67#"   $"¶  JTXM$"  + #:r##.  &"2  )    #9. rÿíé—73#"''32765#'67#'6–G   73  — ` FB0,7!ÿçõŸ#4:7#5'6733#'6'367##3535#33267#"&57&'vI )]4S a X.U R 6::>>   %!, .5 A2f 6%  +  Aÿêô˜$(-7533'67#3&''67&'#'665535#67›=  &4"$"  "&&„  %    ,$ "@2 1ÿêê–#)37367&'#"''3255'6757#&''3353#5#2$ $&   % ..w !­Á–      (  ^^y ÿëô›)-M73#"''3265#3#3267#"&55'6#3'3533#67#"''3255'675# ^ U B8 #,  5/1&&”  ›J4 :! U *B!!$/  %)ÿçõ +27#3#3#535#35#5#73&''67&&'#3267|!!! f AA [f       ;! 2 LM!!Œ L   '.,ÿèó¢;AGM7'67#5367#53673#3#&'#"''3255#3267#"&57&'#7'6'&'< 5GEOgp…2   Y .9  C;| H s  ~  ,      (< g   ÿèò”,73533#7&'#5'67#73##5#'66556(%%     %Æ $0b#,  8x `T +, !YY&$ (1* ÿèð¦05;7#'6553&'73#3267#"&'#67'5#56&'&'ð´ QA 72  ? H7<  +83 *5<    '$ + [+ / ÿæó¤ 2873#53&'3673#53&'3673#&''67&'7#367‚YÉZ 8 9Ú93H†7! ,&F '/=T ¤ "  4       ÿèó§ !%73#53&'3673#53&'#5##535#„UÅZ >Aæ<’{{{§  &  >O O1ÿèí¥ !%73#5##53&'3#3#5##5'67#35#…S Z\Ùy ‡y 0G=yy¥ ((:M > N ÿîñ#'+73#3#3#3#3#535#535#535#535#35#335ÖaRRZZQQgáfPPZZRRa"??S?2  20KÿèæŽ 73#"''32765#'67##5##535#\Š   </ ) #ŠcccŽ3 3 $EN O4"ÿçð–#'+/73#3#3#3##5#535#535#535#5##5#35#335Í##WffggV"",---A,–&&) ÿéò•#A7&'67&'7&''5'66556#"''3255'67567#53Ý  !   BU  ?X•Y-1bu  €2+ '2*=6 -  ÿèô¦3:73533#3#535#'67&''3&''67&''667# VSScÝfV. ' s&$ $%.T : >**; 2# 6M–#          ÿñó¤*/7&'#3#3673#53&'735#535#5'63&'37 2MM-Þ4  NN6 @g(¤  *   * ÿí÷¦*48<@D73673#'#3256767#"&55#5'67#3533&'#35#33535#335K v?0J #11H 0:6+. 044F8~44F8‘  =   > ,/ÿéã—/7#"''3255##53673#53&'3#3#5#53&'ã  ¢E   "57`Yk;—•  ~œ®   % &ÿéô¨&:7373#3#3#&'#'67#5367#537#3533#3##5#535#Uagdmˆ5%0K' .@ 7AO..,,OOOO.˜  % Qÿèô” +177&''6'3#3#"''32767#'655#53&'&'&'¬  %Q#<3    +t   ”  & M $3! "0 >  #Jÿïñ† 73#53535#35#35#×§IIIIII†……,HH ÿçå§%)-7'66553&'73'#3#"''3255##535#35#6 WTœœ rrrrra4' %G  /U  "j )  ÿéö,73533#&'#5'67#73533#&'#5'67#/%%  !-m)2(  &rYQ#,/.dX+6 ÿéô–.4:733#3##"''3255#5373&''67&'767#&'''6?**40  2/F^& *  H  = –B  =.<&! #6   ÿçï™%+73533533#3#535#35#35#35#'67&'h)Ý'0hhhhhh !('b%# $%ˆQQ10&   ÿèç¤373#"''32765#'63#3#353#5335#535#'67 §  Ÿ ^6KK#€&MM# ¤y, _ !&&! ÿéñ¥#(-73#3533##5#532677#5335#335367#335w X_ /OO% @J7AAU>“:@TD¥Y ## Y#5 ÿéð'7#3#3#3#67&'#67'5#535Öˆˆ‰‰¦d  $ V-!* "   44 @Z ÿêö.2773267#"&553'#37#3'#"''3255#'65535#35#Š(  3,sC/p  % ""#"8/  ŠWE333D‰  ! *4:)@  ÿéó•$173533#&'#5'675#&''67&''6[]]+? ;$*3 A(["  †2,&@?(*2  '   ÿèã‘%)-7#"''3255#'65535#35#'#5##535#35#ã DAABA(*****‘  ! (/H.IOƒ Œ5#T!Pÿèð’73#3##5#535#'6'&'\ˆ;GGEE9t Y  ’M99M   ÿèàœ)73'67#'63#35#535#53#5##56iY R<" ==”??BU”)œ   rj ÿéõ¨48<73533#33##3#33#"&''675#535#535#535#3535\^^MMTT-#EA  %LLggKK\p:::š    .    ÿèñ›$(,73&'73#3#3#3##5'65#5#5#F7JPFFFFX®  (Q?CCCC–   e '(( ÿçô«<73'73#&'''6767&'7&'3267#"&55'67'6 h içŸ" V"!=&+   ) ? 7 +•  &   0  42% ÿéó–!%73#3##5#'67#535#735#35#35#5#)°'AA=0 &?B&ŠŠŠŠŠŠc<–d&& G ' & +ÿèï”*733#3#5##5335#'##'2655##5##5353 ;;/; ;; $”%_ _C1E` KgxÿèÜ’ $7&''67#53#3'67'#;5#35#R   -4·m l&ˆ {" ##%%m$$/   ?? 5 &R ÿéé–0497#"''3255#'65535#35#7#"''3255#'65535#35#y  31111´  31111–‘$A@.I J‘$@@.I Iÿëö¤)-73#"''32765#3#3267#"&55'635#qe  Y C; * 5.))¤Y 9<)  Z !:ÿèë˜ 7#5##53#735##5##535#ë­"‘‘kk‘‘‘‘˜,,"86G G)ÿçë“28>7#5##5&'#"''3255#'67'6767767&'&'''6믧   )*(("&#38I& ! O $ “,,9 '  !    %  3   ÿæñ£'+177333###5#535#535#5335#35#3'6673#''67&'qUUPPbbPPBBBB^   tV £  ]] 1&(!  !SK ÿèëŸ$(,04973#3#"''3255#&''275##535#735#33535#335#67+ªLb   5CJ^J77K8ƒ77K8ŸP D  /  IZ /.=ÿçå™.26<73#3#"''3255#&''275##535#535'235#33567'7Ø (0JJ[   />FYIIR]<77K88 ™ 0=  (  AQ0 :=ÿç‘‘ 73#735#35#35#'67&'llGGGGGG @‘}Y56(     ÿèæ›"&73#"''3255##53535#335#3#735#Ì  ©^&rLL::nnJJ›CX  A^pCC2"06ÿꘔ"(733#"''3255##5335#35#7'6'&'L/   M0MMMMW T  ”0c  'z!1_    ÿèôœ(73#3655335#535#53#&''67#56\00=F001EPFIQ GJ#•AAd ).  #`Nÿéö›%)73&''67&''667##5##535#‚M! ( + & $  ?XLLL›     EJ J. ÿék–7#"''3255#'65535#35#k  )))))–– &)0]0K ÿìõ“  -7&''673#53535#35#35#'&''68 &®•CCCCCCO (“   &’’2 OO,  ":æ©7&''6767&'3#735#¬" MX+14 rªª††£  -1 ÿéì 37;73#"''32765#3#5'635#'#"''3255#'65535#35#ŒV JBC) #####  r* [ IG Y'H“ ')/[,Gÿçô¦:AY`73673#&''67'67#67#3673#&''67&'67#67#'3&''67'67#53667#D|.  -,< 0 / 6tE(E  $  9'u2  ! $ –    >       8  5  0ó¡ 7'67&'3#"''3267#'67#b$6 /Z)3 0.N‡  2= 1'¡   + ( ÿêó–$*<73533##"''3255#'3533#3#535#&'3533#67'75#‡? ?l'((/q/'„  w+**3@1+o''Y  U#   ÿêñ”'-397676767'7''67'6773#3#535#&'#'674'- #  %, ?m08z/*=  2f +  llP  ÿèöš 57#5'6733#535#3#3#&''67#53565#'6=  #*¬nnANB-4? 7>E% šƒg $#"&     ÿéô¨ 673#5##53&'&'''63673&'73#&'#'67#| _´c*. ,. + -8a- %U@ J1% @W¨ (($    *   - !ÿèð›#(-173533673#3#5##5'67537#535#67#5#5#2=) C\Xn(`_=[ #=gnn‹  ` E  D"ÿçé ,0473#3#"''3265#&''67#33#5'67#735#35#*¯w ’ B   % : h{ % ŠŠŠŠ M D-   #/.+ ÿéé™'1;I73533#"''32765#'65#'3#&'67&'67&'63#67'75#‡2  +&www   0   1   Vv51=2/{g K\$ R,   6 ÿèó’073#7#5'75#35#35#75#'3#3'2667#735#mb$::::::‚Q3@ '"A 2>’d lAAd<## < ÿêê©4:?CGKO73#"''32765#3#3#"''3255##5##535#5'6&'7##5#35#33535#3357§ ? I@   -(;Bs + ((;-h((;-©  h X  ##$l    9+ ÿïô¡&*.27&'3#535'67#53673&'#&'35#35#35# 9 æ <IRi0  %%8""4''x) 32! A.   6$$$$$ ÿêï›,H73533#3#5##535#3533#"''32665#'67##"''3255'7567#535557\75„1  6 1,    8; =WŽ   n!=(Z$ Q?  ÿìñ£ +/373#5##5335#35#7#5#327267##"&55353350#&&&&&»H  + £ ––8&b+Vh 3 •7777 ÿçó<736533533##5#'67# C<???7+?* //+ ÿçõ¢!'?F767'7''67#'6'#5'6&'3&''67&''667#†$% ", % 1  #ƒ!&K% .% ,$ %)@¢  # ‚i"       ÿæõžFK7#67327#"''67&'#37#53#3&''67'67#'66553533&'767ï<    k \+4   % } €  ‡- + ,-4   ) "B V Fì› 73#3#535#5#35#335335×F:À:E(8&&8(&›66%(ö273'67#&''67#3267#"&553#"''325@8RI1 ¤1!,% V 5*  4 H' ÿé÷› &C7#5##53533##"''3255#'3#&''3#3267#"&55#'675#í´m=  =^QQs  qk!5 =1(#›$$50  + 1  7/( Jö•$*7'66533267#"&55'3#67'675#&'Ž T ªT!(.!† …+ . " !   ÿêó§-5?E7&'#673267#"''67&'#'655353#5##53'>&'Î  ,6      p‚ 0!6  § + '2  *5:/% &,B"L=?N0  ÿèð›,067#5##53#3#5##5365#5#35#"&55#'67#3#7335ð¹²5:•<9j<•' !% &iiX!›$$ rs  [)   -<  ÿèö› $7JO73#3#"''3267#'655635#35#733#"&55#'667#53&&''67&67#q ",GHJ9 5#5555«     e  $ 2› E *  Y/5 % A#  ^   gÿéô›$*73533#3#535#3533##"''3255#&'n444?;4[   [  =-  *  Zÿè÷ !%73#67&'#67'53&'3535œ46  I 5WWW  U   09  ˜!!ÿèî§!%I73&''67&'7#53667#73#735#3#3##"''3255#535#535'28;  #  ,IXX33. !)RR`` jj[[%)T§   - %>2     yÿèó”7'67#535#535333#&'35± $'!!-2 (' #(:g ( ÿéõ)/5;A73#73#3##"''3255#73##"''3255#'67&'7'67&'ZZo]]yj)   /qo/   -_ P  7T  Q  NR  O *  )  ! !>ÿìóž #7#5'673#53&'3#536'&'o !Y+s4. &|D4žd '+ 07)0/*+.(ÿéë£ ,28<73#"''32765#'6'3&'73#67'76'&'##535#‹V  K n# Y>  '1/ $  «.£o X  0$ /*#,,$@O/Uÿéô˜#(.47&'#3##"''3255#535#5'63&''67&'§# #44   22& .L [˜  *  '  F   Dÿêô–"'-37&'#3##"''3255#535#5'63&'&'''6™#+ &EE   GG.7K <L– (  % H  ÿêó§-;?7#673267#"''67&'#'6553533&'733#3##5335#ë8    r„ ‹**%D 22-"/ !*2;3% '.E  6 A' ÿèñž"37;73533#3#3#535#535#'#5'6#"''3255##535#35#V?AA99H¤H88?  #´  aaaaa‘     €b (,F  Z ! kÿìñ“ 73#53535#35#35#á†>>>>>>“••2 PR"ÿèó¢-38=C7##53#5#33#3265#"&55#'67#5'667#367#335&'[5Ùr S >G " *  4( >= 0<H 4;ND 11    *$8<$$7*a$$7*€!!$2  (( k  **.ƒ03Qÿéñ¥%)-1573533'73#3#"''3255##5##535#35#33535#335QC%  K@  .-?C--?.m--?.Œ l  **+ƒ36 ÿêõ› )>DJP7'67&'676767&'7&''67'67#53#"''3267#'66&'#'674'D %* ˆ " #* \`    0 /=  2›-!(-/ -  !3M6?  ÿéï¥59=AEI73&'73673#33##&'#5##5'67#535#535#535#5#35335353354F4N9,'$!# %%1EE11Cx!!&[!&‘ 199- ÿçôŸ=73#'67'676553&'&'3#3#&''665#5365#'6‘KŸ!QZ  ac:E@4 2? '"‡8,0  " (oo MM    ÿéöŸ/LRX7676767&'7'#"''3255'67'67'6'367#"''3255'7567#'67&'Ú ( &*#    3  G›O$  # 9ffŸ *  -  '   ? 8c   ÿçî›#)7#5##53#3#53&'#735#35#'67&'í´!–CaÜe;pppp ' "q$#›**I, )B   ÿéð¬'/37;?7676767&'7&'#'67'67#53&'73##5##535#33535#35#T  67P' WW,Jdc~v@@R>@@R>>v        ?V V-ÿéñ¢ 2GMS7&'''67&''6767&'3#"''3255'675#73#"''3255'675#&'7&'ª!& $'G 0*b-3xa !(,#Nqc !(,$OU   ¢        0S   S    .î¢!73533#3#&''67#535#&'#6'PPPd2AM;dPŠ7 8“  4 ÿêñ¤ AH7&''6'&''6#535#53533#3#3&''67&''6#326½   {   ?gMMMMgŠ{%#1C+*6 -" &ud&¤    M,,     ;ìª.37353373#6732767#"'&55'67#535#67##B? :]$C8 =H 5/ :A (,%NUBg.Ÿ         ÿçô›>D767&'7''5'665567&'67&'7''5#'66556&'y       7‰     7Q›w   }!5, (4, FGINv  ~"6+ *5,'),% ÿéó¤#'<B7#3#67&'#67'5#'6553#3533##"''3255#&'賸L    B. &w**   w& ¤#  % (1. $/WS     ÿçó« 15973#53&'33##67&'67'5'67#5#5;5#35#ƒaÜe?$$>   M   3#2%%wwww« (   6   !   )  ÿéôš#'+;73533#3#3##5#535#535#35#33535#33573#3##5#535#011**4433))0+C+"_'..,,& F F,( M6OO6Jÿéò  $73'73#3673#53&'#5##535#V8C‘(#0¨-pYYYŠ   :JJ2!"íž73&'73673#3#3#535#535#0 5 4ZRRcÙbQQZ  "ÿíò¬#/E73#5363'67&'7#367335&'7'53373673267#"&5p _ºB58  :'# B$ $+  '!¬ WWL     55 7  D     ÿèî¦.;73#'66553&'533#3#535#535&''67&''6„^¹ W JJX¼QAA h ¦ =3' %G) 6P  !   ÿéñ™%)-F73#3#5##535#5#35#"&55#'733565#35#75#53#3267#"'"&55t$E#AE  9E EE¦@S? !™‰ ‰M+$]>2U=! T)Aç• 73#'6'3#'3#7&'šAI :-‹  • LFB   ÿ왜!%+733#5'667#5#'#335#35#'6:;j . +N-08EGœ UJ !%,ÿèì¨ L73&'73#&''67&'763353#3#"''3255#67&'7&''67##537#e^Ù–    uŒWj  `  &* /LF–    %%6;  % >O ÿæñ’$4>D733'67##"''3255#53&'767##5##537#53#3'6656&'\$   %-  BÕG(1t1 H %’  B  >  ZIJ[!2 &   ÿïô‘(-167#5#&'#3#3#53&'#535#5'67##53&7##35#íK18 1J>Þ3 J2 =)Li\ 3*‘)    )! `  ÿèó¢.26<@7'67#5367#53#3#&'3#'32665#7337#'35#35#&'#3#L #4F7¤Vy>* !)  ‚ DQ ~~~~g 0 5‚‚;  ;;    Y ! >7bÿéòŸ&-48<7'67&''673'#"''3255##767#''&'35#35#v  G  =/ 6 ? ====F    K  ƒ  )  &  ÿêóžJd73&''67&''667#'67#533'67##"''32655'67#53&'36533#"''32765#'67#–G   ) 9 q  E\   )2 V&2   "/ )$ž       H 4&%E6 'ÿèö¤#'+/39K733#"''3255##5##53'767#35#35#35#35#'&'333#"''675#`ƒ/  ,*8 ` **<,,<**<,,  1 %;IRJ ¤  ` !!"p 9 ,X  .X   Iÿèö¢<N7&'73#67&'#"''32654''67&''67&''67#333#"''675#( 3ŸB %  !, /%$ # &C=1 %;IRJ ¢          X   Iÿèö§$6R73&''67&''667#'&'333#"''675#33533#3#3##5#535#535#‰E  '$2( )  ?Z  1 %;IRJ N88833FFFF338§       .X   I     ÿèö¢!%)-1C7&'73533#3#3##5#535#535#35#33535#335'333#"''675#( 8AAA::FFGG88A&&9(a&&9(¾1 %;IRJ ¢    C  C ( % X   IKÿêö›57&''67&''633#33#"&''67{  N "88+-  " ›   (  ,/ Gÿéó’(733533#3#5333#33#"&''67l44?™,99%4# !‡-8  &Fÿèò¡"&73673#3##5#'67#5365#53&'5#|  & ''2, %$' % M0¡'DD0$!Z''ÿðì— 7#3#53#735#3#735#73#735#äµ½Ð>ppII-KK##EII##—…§/,11ÿéð«"&*/DJ73533#3#''275#535#35#33535#335'#63533##"''3255#&'cddR Q^1+SSc#@@T@”@@T@0™¤++   ¤: ¢  >  > " !    ÿéòœ#'+3773&'73#3#3#3##5'65#5#35#'#5##535#Š").''''2h1#####/œ   j $((l~„_N\ÿéò¡#'+73&'73#3#3#3##5'65#5#35#ˆ$)/((((3j3$$$$$¡  o ))ÿéîŸ"(9D73#3#3#7'75375#535#'6''67#"''3255##5#5'6f2_+++ Ì  x Ÿ74@   v a‘£$ ]Fÿéöœ7=CT73533#3#535#73533327#"&55#''67&'767#'67&'3533#7'75#())0p.(m*   R  > >*(((/9/*ŠL(7.: ##        ÿèõœ$*06<B7&''675'675#53673#5'675#&'7&''6'67'6}3: 79$B 8!")-$K^ \HBq #2 .>(RNH:ztk     53I    =      ! ÿèï¢'+/37;?73#3533#3#3##5#535#535#535335#735#33535#33535#335#¹S***S``__P((*R??SA”??SA**>*¢J      - ' L  ÿèî¦ '+/73#5##53'#5'673#3#5##537#35#35#„a¶d3 *6=S'7SSSS¦ -- (fI  %f f9:ÿêí¤ 08<73#53&'#"''32654'7##53673#53&'#5##535#N2x0´  -h `@@@¤  / 1™«    5L L/ÿéë -159=CI73#67767'7&'#"''3255#'67'67#735#33535#335&'''6#·v #*0D#   )(  )??S>‘??S> S$ ! G        , )a   JÿçõŸ3973533#3#&'#'67#535#3&''67&''667#T>@@K 0 !H>(J% -#+ $  - <‘  3       ÿçî•&8<@73#3#3267#"&55'67#'7367#'3#67&'7&''735#35#}k&1/  # / # 2dUB ! ////•; " +*!\0  t: ÿéñ¡ 06:73#3#535#5#35#3353353#3##"''3255#'67'ÕE9½7C}'8%%8''¡¨¨âe   j>" {@=¡ 00 +       ÿèó§3773#53''67&'3#67&'7'5'67#735#ƒcÚa* &r(& '(e–= M$2"  -#)qq§ !    4   5    ÿéô– &67367&''6573#735#35#''63#3##5#535#2   ';~~WWWWg  U8@@??5–0  '9;I*( $ && ÿéö¤4:@FL7&'733#3##"''3255#5373&''67&'767#'&''67&'''6) G ($  '#=K   6‚ o  3  ¤  A  <.?&!  !  ) '% #" ! ÿèó—!%5C73533#3#&'#5'67#535#35#33573'67#'6&''66///($  (/(3> 0   ! % Š 8 7788> '!, ÿçõ¦"&<H7#3#'6553&'75##5#35#3353353267#"&5536'33#7'íE:°Y))));)( ( "†662" ’5/" '0G "$-   5  ÿéõ   $6;CG73#53&'33#"&55#'6653#3##53&''67&67#'#5##535#<%^#© %  uNNNNsk " !# " 3?***   )  +      B D+ ÿéó™ C73#735#335335#673265#"''67&'#&''6553'33&'7 ¿¿&&8&'#Y   #!M \* ™;=         *   õ¡ $(733##3#5'67#5367#537#3353535#¸x Œ¡ $5NUEXNSYs{{¡ 1"     H ÿèí¤ /473#735#35#3#735#33533533&''27&'7#367+««…………&ÏÏ**>,.µ²=-.;-# +3¤>&/(    ÿéö ,0Q73533533533533#3267#"&55##5#'67#5##5#3#"''3255##5##535##5$ &&   D! !| }RK  92EMŒ    !!  %"  55'7& ÿéò­.6:>B733#3'7#73267#"&55'75#'665533#53535#35#35#mNNldPR + 8#$&+ Le Âaaaaaa­     >2( $FKII $ "  ÿçï©#)/5;73#'6553&'3533533##5#5#&'''67&'7&'€ [»[5%7--[%n7b  x ;  A  © 51, $-G<))   ÿéòš#'->DJ73533##"''32655#'6553'#33#7&'3##"''3255#&'''6—5   5isPPEPPs  ha' (R  :  {f a4& (/G1!' $  ÿèó˜,DK735#53533#3#3#3#"''3267#'67#535#73#&''67&''667#,//11++/GD  3 3,ŠF   )k  * #0= /  "ÿèô–!)-1573533#&'#5'67#7'6'&''#5##535#35#35#h;=/ !3q S  $$$$$$$X>>#"'TL)'L   ‘ ”(>=ÿæõª/37;?CGL735333##3#3#&''67'67#537#535#5#5;5#33535#33535#33567#)MNNVn„0 N 0(&N4$< 3C:UM::N;‰::N;AAUB? K ¢'     ' " 8 C kÿëó!'73&''67&''667&'&'’E      :  3. 10     A     ÿêò¢,1BHN733&'73&'#'67#&'&''6673##"''3255#&'''6:3 LL yG#    w ¦¶P   R„! !O% !¢    +    N$ !    ÿéó .CI73'67#&'&''6'3353#5#'67#535#3533##"''3255#&'›=XN3    f 7.J`  `     6 )   )/®F2 ' #  ÿéíª ,28F73#5##53&'&''3673267#"&''67''67&'3353#5#533€ \´d 1"'4 , 7!ª  K=¡=ª **  '   )   8#9 0&-Û© )73#53635#3&''67&'767#'67#oaµ=2I 3    -  0©kk cI       ÿéñ«#)/5;73#3#3#"''3267#5363535&'''67&''&'mZš¶¶± °</†††  vd    «D  2 x  T   ÿéé  PU7#5##535#'6'&'3673#3#&'#"''327#3267#"&55'67#5367#'#é«««ƒ W   6DKW       /  +#   ,.m / ··£“         $  & ÿéí¨ !%)/57#5##53&'73#3#535#35#33535#335'67&'í´d_£HJ¨JG66J6€66J6e+ (h'" $%–$$  OO ,."   ÿéñ048<@73##5#'665563533#3#3##5#535#535#35#33535#335å *K!  2´/00)),,22))/+B+ gg-' )4, QQ/1ÿèóž&,28>73#3#3#3#3##'32767#7#535335#&''&'''67&'ÒbPPm§—š© ª (&*^˜    H 8  ž    17%o    ÿçò¡%:LQW]767&''67'733#"&55#'6653533##"''3255#73&''67&'#367&'''6%  !À    …-++   -v_      i  7 ˜       '   N6  3      ÿçò— &-1;AG7&''673#&''67&''667#3#'767'&'#&'O(p?    #yDDRiD  —     " ""A  :ÿçô¤ +/O73#5##53&'33#3''67&'767#53'3#3#3276767#"&55#'667#„_´d)**/    >oKKe &  G4¤ &&(     ";  @%# ÿèî+/3=C7&'73#3##'32765#&''67#'67#735#35#37'5#33#7 ByPf /    SSSSg1 RQc FE (    * % \  Z* =ë£573#"''3265#'67#'6'3#&'#5'67#535'2—F      "   &- *£ =#*   !"  ÿéì¥&/59?EKQW7333#"''3265#'6553&'7'23'677&'37#67#&''&''4'''6Ø  ž! ^(d 6D (4pv~†‚    ¥ !/ 0/ +    71        ÿéôŸ+V73533#3##'6655#&'#5'675##535#73533#3##'3255#&'#5'675##535#***)    &*m+//(    $(+- -  19&0A,  '35"0A ÿéò¢'/37;?73673#&'#5'67#53&'735'2#5##535#33535#35#Ô &-#,R!5 :#$9 /'P+#S[]ƒ77K8ƒ77K88¢   [XX!.1ÿôÈJ "7&'&'''6733267#"&5€  E  c  !  J   + ÿèô¢ #'+/73#735#73#735#3#3##5#535#735#33535#335[[77\[[77x¸RjjiiR??S@“??S@¢//*L  . * ÿéó¦ +/373#3#535#5#35#3353353#3##5#535#735#35#ÙE9Á9E‚+9''9+&¢©KiillJ¦ )) %B  ' $  ï¦"&*73&'73#3#3#3##5'65#5#5#;8 QSIIII[°  TAAAAA£  K  @ÿéõ© 159=7&'#5'6&'3#"''325'#"''3255##535#35#73#–$1 ^ 1JU 6  '''''I©    U  NV  $m * 'F ÿèô¨$(=A73#&'#5'67#5367'2&'#35#33255##53#"''#735#Å $-w;( y+=O!Q81UU h eDD¨    1 ;& '@P<   ÿéëž $8<A7#"''3255#535#5#'##535#35##"''3255#'6555#35ë  M9999+M9999„  5C33ž›  UA % 3Atµ % $O  %%  †ÿéôš &7#"''3267#3&''67&'##567#æ  ;U     A $š)3)    [±}  ÿçò£!77&'7#3#3#535#'&''63533#&'#5'67#1 Äuhh{VVW 5  $edT$4 8%$8 2%S£   ' ]5     #  22 ÿçõ¡48@D73&''67&''667#'3#3#67'6753675#735##5##535#œ>     /†R+5$..¹<<<¡      =$ NJUPL L/ÿèò« 0J73533#3#535#3533#7'75#73533#3#535#3#3267#"&55#'67#!VUUcÙcV$&&(,7,$k%&&/m*%f¿; $+ @9 1    +  * $ í§"&*.73533#3#&''75#535#35#33535#335'#___L   RdcLL_&99L9…99L9 'œ  D  D % $ #  ÿéô¥ 073#735#3#735#73#735#3#3#3#"''3267#'7#5––nn0^^::d[[77{¸¸ç¡–‘/¥( ' '    ÿçñ¤)-1O7&'3673#3"'6267##5'67#735#3355#'3#&'#5'67#535'6‘  G  39  '$ %+ +0C2!""   )++¤  4C959]  KH ÿçõž !%)?73#735#35#3#7#5'75#35#35#75#73&''67&'767#+ªªƒƒƒƒ1æ} (.$222222S`    Kž@( ! ;D & ',      ÿçð§@GKOU[7367676767&'7'#"''3255'67'67''67&'67#5367#73#735#&'''6:7   (%,/>   *,&  $ +K[[77"!R 0*§           ( #=y   ÿèïª #'+/5;73533##5#3533533#3#535#35#35#35#35#'67&'"UUUU2U33­2DUU‡‡‡‡‡‡$ *-,e&% &'œ   [[ % # #     ÿäñ«#'-373533#3#535#735#3353#735#35#35#&'''6(NNNgãhN;;O;›­­‡‡‡‡‡‡c+# #)4 2 3¡ ' 7U<    ÿéî¥5L7&'&''2#5##53673'67#&''635#53533#3##5#'Ü ,8% am«”}( R A  "S &00))**6¥   )!$ I1   !!  ÿêó873#673"&&'#"''32655'67''67&''67#m& )65/   " & ! &1   '$'  ÿéðœ"&*L7'673&'73#3#3#3##75#5#35#'3#3##"''3255'67#'735#~  "&+%%%%-`2 |\   ! !"4]    l((s'A  8,%! 'ÿëe 7'6'6'6J( ") #" + &    + ÿèõ™ ;I7#'655&'73'67#'6'3#353#5#'67#5335#5363&''65ì»2l2 % ( *$  $7>( 4™A5) +1J    "))9 "1 )&+ %î¤!%)-173#3#3#535#535'65##5##5#35#35#35#8ŸÛ ’/0¤!""  *!!!!!!4"""""nÿéò¡)/5767&'7'#"''3255'67'67676&'''6Æ     B Œ/  7  1" T  ÿèî¨DHL735333##35#53353#5##535##5#3#5#'6653353#35#535#535#33535'POOC5##5CC4&  1BRRggPc<<< +  j& 44'  !- +   ÿéì *06<B73#35#535#53#3#"''3265#'67#56&''&''&'''6n%<<@@BTŸ  Ÿ *e    # O:  Kr   wÿëê—"(733#"''3255##5335#35#7'6'&'¥2 I+IIIIH  J  —2c  'z!1]    ÿèñ¡#'+@7&'3673#3##5#535#735#33535#33573##5#'665565 ? *1122*+C+p 'M  /¡   T$$22I bb,' )5, ÿèõ !%)8?L7'#67'535'63&'73&'3535'3'67&''667#67&'£$ Q  +"  ???&F   p  ,  D$m   b r(  '  F ÿåó¤#0D7#53#3#5##5##533#73#3#73#'&''667#53&'73&'vZÈZdQReH==g<0/• (%%(   7    Tð• /7#3#3##535#73#535#67#53&''67&'•01111;DD22  3F    •8'1C   ÿéï£ +IMQU73#53&'#'67'67'67676767673'73#3#3#3##5'65#5#35#…_Ûe5 &  .&-))((0d , £ ^ '  $A  X  ÿéò™6:>BH73#735#73#67327#"''67&'#7#5'75#53&'35#35#75#7&' ^^99xCA      #Xa555555˜  ™+     ,AHR ( + | ÿæð‘"6:@F7#3#3#3#67'7&''67#53533533#3#535#5335#'67&'vB;;;;A-  $' %n"x E  ‘    \-->-C    ÿéñ¡'+/R735333##3#3##5#535#535#535#535#33535'#3#3#3#67&'7''67#535z(/ /33;;66,,))22(;f=9999@. "" •  $$ 8 ` ÿêï¤#+/37;7#53#3#5##5##533#73#3#73##5##535#33535#35#vZÈZeRQdH==g<"   . (H%   " &1. &.RM    ÿéó¤!'OTZ`7'63&'73673#5##53&'&''33267#"'3&''67&''67&567#7&'''6ÙVlh? 5   ' "­*H #( 1 r%,;/,; /#  )6_f  † ¤    !#       9 I    ÿæõ¤0;?P7'673353353#73#&''67&'767#'6#5'673#67'5#'6651 'Sl2      v   !SSF  ¤  --.<4 )  bO+ ' " ÿéù¯$*08<@7&'#5'63&'3#73&'7#33533'67335#5##535#35#ƒ2; (`! C: O¼¼      {{{{{¯    6    3II &  ÿêõ§<KQ733#3#53533#67327#"''67&'#'65534'33'73#67'675#'6zYYcã.*x:    s„ ¦c' > *  §  !"    %(# #,   ( '   ÿ颣!%+17=733#5'667#35#33535#335&'''67&''4'6=r 60/L/  \Q  £ RE "4&   ÿèñ¨<S7#67&'7&''53&'73535#'67'67'672767767#"''32654'7##5¤6 $$$J0    ¬  ‘a/    )N$# / P7 :¡²ÿéõ¤!'Vj7'2733267#"&5''6'&''&'33#"''3255#7&'7&''67##53&'767#67#53''67' 4K>W  (&(  .   . " c0 2E   ¤ • ! ‹   S @    Zi Q     ÿêóª#)/5H73'73#3#53&'#37#3#735#35#&'7&'''6733272767#"&5XW*Bâ?$E8J5¦¦€€€€Fe  ›%  9(™   #?'         ÿéóœ,28PU73#&'#5'67#535'63533#3#535#&'''63&''67&''667]   !#'8,11=…6,W ; ": ")"  % œ OJ#!       ÿîóª #'+/373#3#735#33535#3353#3#735#33535#3353#Îβ²<7&'73#"''3255##53535#335#333#"''675#3#735#( ¶   dAD//j1 %;IRJ kCC##¢  :G 3GW::* X   I ' ÿéé¤ )-97#5##535#3533#3#535#3##5'67#735#67&'é«««433C˜C4r@ NN4 ¤»»¦• &*     ÿèö¢37I7&'3533#3#3#3#3##5#535#535#53&'#535#37#333#"''675#( ==<«? %P?žU= ! ! ,\7()WLMV*!  ÿéò¥#)-16:Ni733#"''3255##5#'655'6367#35#33535#73573#"''3267#'67#3533#3##5#535#'64,   %"&<&f   & ""''11¥ x "" !'3 18Z," 0''   ÿèö£#37;M73533#3&''67&'#535#67'3533#3#535#3#735#76767'7&'…*11*    )*  É2,,+i,2 cc??  2?Œ-      /I,4(      ÿéó’#<733533#3#3#3#535#535#535#53'3#3'667#&''67#(($$**0•1**##&&~]-,#  ’ŽŽ.7*  & ÿèï¯#'<BHNT73#3#'6553&'5##5#35#3353353#'62667#73&'#&'''67&'„aG;´[&),,,>)(€œ ’0   C  4 ¯ , 9+ +4N' 8  1   Iÿçó¨<73&'73#3#'6553&'#33673533#3#3#535#535#'6e6? '{%*7..))4…=++ • *%# !;  1  ÿêñ¡',AGM73&'73#3#3##"''3255#535#53'#67#73##5#'66556'67&'+/2,,  **0B%¤ +M"  4Ÿ O   &  "=cc.( *5-k  ÿçï§%)-15;AGM73#3#3#3#535#535#535#535'235#33535#335&'''67&''&'Ö '.eeNNXXeÞeYYOOffT\?<73#53635#35#7'6'&'&'''63533#&'#5'67#z&V 0000rª © h !edS%2 8%!; 4"R© WW)69      +  45ÿ莟"9@73533##5'67#7&'7'6&'3&''67'67#53667#744 .  Y 2  #    % }""$  0   *      /  ÿèó§$(,059=73#3673#3#5##5'67#535#535#735#33533567#35#35#Åb= ,P,b‚8.b_FFP));+(5;>‚‚‚‚§/ M <  F7 ' ÿèð¤%)/39?EKQ73#3#3#3#535#535#535#535'235#&'735'6&'''67&''&'Ú (1ddTTUUeÝdWWSSffR^G@@   DA" 1 –}  (  ¤33P  M      ÿéñš!'-LR73533##"''32655#'33533#537'6'&'373#3#7'75#535#53&'7&'”7   7^ ~'L _  &!6--46A6..6†  u%%` [6)))$   /  ÿçöž7&'333#"'&'75#(  2 %;IRJ!ž  ,X  I ÿéñ® "(.6:>BS7#5##53'7&''33267#"&57&'''63#53535#3353353##"''3255#íµ` $! *$‚   µâ""4&%·Û` hœ!!            )  ÿèó©$=EIO73533#3#535#3'67#3#3#535#3#3##"''3255#535##5##535#&' WYYM­MWÝ Ë¢HXÁVGæ   NN·b111d   ¡       44 ÿèî£#D7#53#3#5##5##533#73#3#73#3#3#"''3255##5##5##537#uYÈ[eSQcG==g<D73533#3#535#3#735##5##53#'3#3#535#535#'67#'#6hhhU½Th««……¯·§ PPeÞfQQ%%‚/ =§ " ##    ÿéôœ-?Rfy73#3&'7&'#"''32655##5##5'6735#''67&'767&''67&'76&''67&'767&''67&'76Úc?   A@ % 5cO    Y    M    Z    œg \sswz  .      (          ÿçô¡Ij73673267#"&5767#533'67#3#33#"&''66535#53&'3#3#&''67#537#'6" )  &  Of #((!#   0?f:(+  #(,¡           $ I        ÿèð 4JPV73#63#5'75#35#35#675#73&''67&'767#67&'#5'6'6'6t  (.#55555Wb  !  LB%*  -4G[. '*) $5 6 2 ;  #9    C   %G     ‰ÿèóŸ73'67#'6'667&¦: -  "Ÿ  "V!,.. ÿéòª#'+W\b73533533#3#&'#'67#535#35#35#35##'67#'67676767&'7&'#"''3257&'''6r$6 .?- '5$2rrrrrr5%%#  ('9    /? M +(¢5    5   X        ÿéä  &*.2:>73#735#3353353&'73#73#"''325'3#'3#3##5##535#ÉÉ,,>(+¿<<¾  '‹rroonJJJ 21f  VT= 00 ÿèô° 48<_73#5##53'3533533#3#3#&'#'67#535#535#35#35#3#3##"''3255#535#535'2„b³bF(4((&&E+ !P* !/B''(:4444G FF\\   [[DD".°  #       ÿèô¡17=73#3#35335#533#335#535#535#533#5356'67&'R%%%%1&**'0##$$&9ç(%n&" $$ --6DFrh‚      ÿéóž&:>FJN73533#3#3#&'#5'67#535#535#73533533#3#535#35##5##535#35#$%%!!))   ))!!$f€+CCCCCCŽ  135] ]"1ÿçì¢ #BFJN73#5'675#73#5'675#&'7&'3&'73#3#3#3##5'65#5#35#\"',$In\"&IOY3ROEEEESª "VDDDDD¢H  H      *     E    8î¢ "(73#'6'#3#3#535#35#5#7&'ŸBI  ) +r##DD##‰ ¢ *f,+  ÿîñª#)/5;CGKO735333##3#535#535#535#33535'67&''&'7&'3#53535#35#35#(NGGeÞeOOccNb555    fMCÞ!!3$$6        5      ))) ÿçô¤JNRV73353'33&'73#673267#"''67#53#3#367&'#'67#'65#535#7#33535s -    KN a +%d--"(   0%8 w/ H?5( %%/ ' !ÿèò°">BFJO7#5#&''67##5'673#7#3#33&''67&''67#735#35#35#67#ßA)    ; 5H@ £da "-A+1<2   "&||||||?OŒ$    'B  03 ÿèï #'+HN73#3##'2765#&''67#'67#735#35#'3#&'#5'67#535'633#wkEZ(    GGGG)##   '()7EW GH *   * ( + QK"mÿéñ !%IO733#5'6367#35#33535#33573673#3#3##5#535#535#53&''6;*_ " &;&2  ,((00++##(9- D  V@ *8Z .. ~  ÿèîž&NRVZ^73533#3#3#&'#5'67#535#535#73#3#"''3255#7&'7''75##535#735#33535#335"##&&    %&"dn.9   &  2-.I.Ž  12T <  & CU 20ÿëö£#'+<J]7&'3533#3#&'#5'67#535#35#33573'67#'63&''65'333#"&'&'75#% 1"""    " )/$   ­. %>K T.' £   4  +(  4 39  $W H ÿèñ©.26:>BH[ag733#3#"&55'75#'6553'67#732763#735#33535#335&''3;267##"&57&'''6pKKh .1-08Ni XCE$ ‘,,?+j,,?+2  #  3 p  } ©  <3' '/F!4       ÿèõ ?DWin73&'73#3#67&'#"''32655'67''67''67#53'#67#733#"&55#'6653&''67&'#367),1      '  #?#š  a     Š             9.  "!O     ÿçì«#'+/5;73533#3#535#3#735#3353353#735#35#35#'67&'```N°N`ÑÑ,,@,+­®®ˆˆˆˆˆˆ#!)(h$# #%¡ $ I4 ÿçôª4:@QUck73533#3#535#73533327#"&'#''67&'765#'67&'3533#7'75#3#3#''67#&'7#6)**0u2)q    U 8>)))03?1) ­­â4FO<  K 0¡ %%+-                ÿéö§-26<N73#3#"''3255#3#3#535#535##53'#53'67#35#'&'333#"&''75#ŸN#! -&&?##+#'B+6h  1 %BF`fl73673#3#&'#'67#5367#7'6'&''#"''3255#'65535#35#367&'#"''325'&''6h3;@M  " %!--i J   r    |  2 › ('2^2!N"     .   ÿèï¨ *DZ73#53635#35#727767'7''67'677767'7''67'673533#&'#5'67#z@H     Ÿ     %edO2 6#8 0Q¨ \\-:'  (  ]   0.  ÿéò®%;_7#'6553&'7#5'67#53533#&'3533#&'#5'67#3#3##"''3255#535#535'2ñÁ_4   !% Ÿ   ¥!)CCVV   WWEE#'QžC6, ,2L9    '   $      ÿìï¬7;?CGK73#3#673267#"&55#3#67'5#'66553&'5##5#35#335335ƒaE<;   ' =// V&'(((;')¬  ,   +  7 5( 'J(  Fÿéô£'/37;?73673#&'#5'67#53'735#'2##53#'#;5##;5#×  0#.' ,?5_…8''''''''£      ¦SSC ÿçó£.26:>BFLfm737#535#5#53535333##3#3&''67'7#735#33535#33535#3356773#&''67&''667#$#3..,,0?:  (/I/N!!4= A<       '*&&  l7 0Š # & )' ÿèó!'7;?E7&'73#3#535#5#35#335335&'3#3##5#535#735#35#''6'.¤3-š.2_,,¹DŽ?RROO<hhhh/   **    :  # '$ " ÿêí­7;?CY73#5#&'7#3#"''3255'67#53537'67##53&'35#35#35#73#3#"''3267#735#} _4 6 &   7.I" ,^9888888[XEM M AF­    j   D O =0+ 0 &ó¦#'->DJ73533##"''32655#'6553'#33#7&'3##"''3275#'67&'“;  ;hqMMATTv  mb' *  I  < 7# "3&      ÿêé£ 59Z`fl767&'7''5673#"''3265'3#"''3255#'67#3#''#3#67'675#535#5'63&'#'6'&'G    ¤   wC    OQ 33:I!33 50 2>£    3   •-  uR     -    ÿèõª8<AFK[73#'67'6753&'&'73#3267#"&55'67#53637#335367#33567'7''6”T® Xd oX:"9 6/ *,=-i$':2   ª ?4) #  M H* +$H$*    ÿéð"&*.2673533#&'#5'67#7#3#53#735#3#735#73#735#    Üvx‹-LL))// )-- }   Y_!,1ް. +88ÿéõž&AQ7#67#535'673#&'#5''655#5'67#535'673#&3#53533533î¿#*# !   «  $*#!%  7TÄ *CžC    +) %0TR#!     ,$$0 ÿéð¢ */37;?GK73#53&'3533673#3#5##5'67#535#67#35#35#'3#3##5##535#;&^"P$  0<> 4/$? >>>>yLLLLK%%%¢     ` I E7UE E) ÿéðž %)-`73533673#3#5##5'67#535#67#35#35#'3#67'#"''32655'67&''67''67#€! .89/,!: 9999†Z"     "  #  ` I  E7ƒ        ÿèï¨ -159=EIO73#53&'73#3##'2765#&''67#'67#735#35#3#3##5##535#733#7 $]"PkEZ'   GGGGqLLLLL)))LEW¨ GH *   * ( E G* ÿéë¥  $BFJN7##535#35#7#"''3255#535#5#3&'73#3#3#3##5'65#5#35#tM9999Ä   M9999G 41++++2m :(((((¥Bz¼ $ (£  \B $    =   ÿèø¡ #)?7&'73#735#&'33#735#73#735#'673533#&'#5'67#.DiiCC\>FF""DGG##‰ !NPA( , ) &?¡  -  ++ )&$  0/  ÿèö¥ %)-1AV\b73#53&'3#3267#"&55#'667#735#35#35#'3673#53&'3533##"''3255#'67&'D(d&Rd  ??????dn0%%   0  Q  ¥ q) , Q-.0   8 -  *    ÿèñŸ#'7=AEIOU73533#3#&'#5'67#535#35#335'6733#767#35#35#35#'67&'),,$$   $)%& .a1" ======  :• ? 03 ?? ! cc  **    ÿèñ¡GKOSX73533#7#"''3255'75#73#3#3#3#3##5#535#53&'#535#535#735#33533537#  O‹?88C  9DDAA3<009(E!.‚&5  *,,0      d ÿíð£#'+/37#53#3#3#535#53'3#735#73#735#3#735#73#735#vdÞffffÞdddVLL((cLL((‡LL((cLL((’ABB6+ + C,, ÿéõ§ #)/5;JY_e{7&''673326767#"&57&'&'7&'#&'7&''33267#"&5'33267#"&5''67'63533#&'#5'67#w ='  /!‰  }  ‚  @ ‡  ;   o     s  rdgN"/ :&!?7L§                    %  +,   ÿéõ!%)-8I`7'6733#5367#'635#33535#33573##5'673##"''3255#3653#&''67#7 B(^0 %:%==x  ŠD    j,,/   $&  DD 8 ( J bOV S4     ÿíò®048<@DLPTX733#3'67#732767#"&55'75#'665533#735#33535#3353#53535#35#35#pNNh XFH&" 11')2 K(ŽŽ--=-j--=-Å0/®         <2' #D>4   ÿéø£ $@FLRX733#5'667#35#33535#33573#&'#5'67#535'6&'''67&''4'/0` )#'<'{ ,#  &.(4C  N  G £ RC  "4]+*\W%&w   ÿèî¢ ".6HM73#735#335335#5##5#5'673#535#535##5##5#53&''67&67#-¨¨""2!!+¶1 #+nm[WW\‡z% m *(  ! 1 ¢& !UB /  *   ÿéõ  $08<@DJPV7&''67'6767677&'73#735#&''63#53535#35#35#&'''674'Y # %-llHH"  K “ "#j3(N%" 0SP3   8AAA11111   ÿét¡ 733#3#53533367'67''6>$g >  ¡..& ? 1 ÿèï«#):EIZ`f73#3#3#67'35375#535#'6''6##53#"''325'#5'63#3##"''3255#'67&'d7!%%""03)) " °<     ¬¬Þf   f> ,&w" «    "    L]@ * /! 9      ÿæõ«%;OS73#'6553&'3533#&'#5'67#'3533#&'#5'67#3#3#5##5'67#35#[¿a!%   Z      ·nnf  !/0ff«C7+ *4L)  !     -;* 1 ÿé÷  $@FLRX733#5'667#35#33535#335'3#&'#5'67#535'6&'''67&''4'‹<n 7/.J.t#""  $&+¤Y O   RE  !4U NC %s   ÿêó° 49O73#3#53635#35#73#3#3##5#535#53'#53&'67#3533#&'#5'67#8&BEV 1155Œ/#7//..5/$•eeS&/ 8%#8 .(S°--h$IS + N.. ÿèó­ QUY73&'73#3#735#73#735#'67#535#535#53533533#3#3#67&'67'75#35#__ÖTT00STT00R6S@..55755--?Z   K"  S777ž" " v      +  Sÿéð¤%7INcx~„7#3#53#3#3#&''67#5365#'6733#"&55#'6653&''67&'#3673#"''3255'675#73#"''3255'675#&'7&'?Xji21"  " Ÿ " Y   ³c  $-3%Qlc  $,1%Rbs—C ]        *   0B   B     ÿéó£ #AGMSY_733#5'667#35#33535#33573#3#3##5#535#535#536'&'&'''67&''4'+3_ ,%'<'d/((22,,##+>,  N  F £  RB   "4^ //  ~  ÿèó£48<@QUY_e73&'73#67&'7''67#'3533533#3#3#5#535#35#35#35#7##'32655##55#35'&'''6ƒ+0@  *. v,\Yk $,,,,,,¹   <N< k4     š22/22 8 £  5"% 11%      ÿéö©"(.:FLRbh7'2'#"''32654'7##5'6'&''&'#53#3#533#535#535#&'''6733267#"&57&'à5M?H  ¿ ) /3~:C”@7|{jiik7 0    "h  ©1 4©¹   5  +          ÿéó¡)=EIMQ73533#&''67#3#535#&''67#'3353#5#'67#535##5##535#3#735#a=9  B™D  G1(ÒdddEE!!˜    --   ,5¸I1%YYD4 # 3ò  %+1773#735#35#35#73#735#35#35#&'7&'''67'6[[777777`[[777777C { Ž  ~  N7   8N7          „ÿòñŸ73&'73#3#3#535#535#†*)+**.m,&&*ˆ  ,55, ÿéñ§9=BHNTZ`f7'2'3#5##53635#35#767333#"''3265#'65537#37#7&''&'&'''67&'4'Ù 2G;s"&&&&&™   c@EP X%c ? 9§  ‰ ŠC!X&0 4  %/( /Q    h    ÿèô¯"&*.GKOS7&'#5'6&'"3#735#73#735#73#735##"''3255##5##5##535#335335„ 82 hJS855477699%  &%%%%7%&¯   (  (  ( $:  !P  ÿéîŸ#+/7;CG7#53#3#5##5##533#73#3#73##5##535#7#5##535#7#5##535#uYÈ[eRQdG==g<CINy…73#'673#&''67&'767#'63733#3#7#77#'3&'47##3&'#66767&'7&'#"''3255#'67#'6&'''6:IX }9    & V ha#"$& * ;8K& ##   -.!$Y#!!I% "ª           #      1   ÿéð­BFJNRVp73#3#6732673#&'#5'67#53&'7"'5#'6553&'5##5#35#335335#"&55#3#73533'6„`B8=!&  -C$ -1 '=. Y*.///?.' C998  ­ "       !   +8+ +3L"  I%    ÿìsª#'7#3#3#67'75375#536735#35mDD!!21%222˜, , *(1d 8 ÿéë¥ $CGMQW7#"''3255#535#5#'##535#35#3533#3#&'#5'67#535#35#&'735'6ë  M;;;;+L::::>??88 # '-7>%% 2&¥¢  c:,:‚¼ 3  %  3.   ÿèê¡ -:@DY_73#735#335335#'655367&''6673#"''325''673#'&''66536''6ÇÇ**<*+´H    " !n  Š q"  !B ¡+ ()/..    V  P B      ô¤ <B7&'73#735#35##&'3#3#"''3265#'67#'67#'67#'6) C~~ZZZZX 8®yy  ! &    ¤  3   !        ÿçõ¦ $(,048JOU[a7676767'7&''67'6773#735#35#3#735#3353353&''67&'#367'&'''674'(   #  BFW[_dj73&'73#3&533#67327#"''67#53675&'&'#53'#367#5#35'3#7#5'35#35#35#675#7&'b %$   @I c %%ŽP    ¸  ’  "= % NH   G}n# tFJc ÿèø 26;@Eb{‚767'7#"'"&55'67#53673#327675'6'37#335367#335'3#&'#5'67#535'23&''67&'67#53667#Î    $ #8' ;,F*j $$  %+!( +       2   )$$T  T7  M 5 @      M  0  ÿéó¢#'+;?LRW[agms7'673&'73#3#3#3##75#5#35#'3#3#5##535#5#35#"&55#'7335655#35#&'''67&''&'ˆ  %'!!!!(T,ˆj!@9 @   6@ @@Á L E b  Y! `‡ ŠP  " 4"-`     ÿèõ¨"(.48>DTa73#53'#3&'#73#735#335335''6'6'&'73#7&'''6'6767'767&'§BGj  1‹‹'ÁÖ vB *#! 2 >   0¨    „—' !     ( ,    7  #ÿèñ¦ Y]aey73&'73#73&'73#3#3#3##5'#3#"''3255#67'7&''67##5367#5335365#5#35#'&''67&'76(2nˆ #"P %3   '  +(>+G    –   v @ *   CT6%%%)-a    ÿèô¯#'+/3FY^‡“73533#3#3#353#5335#535#535#35#33535#335733#"&55#'6553&''67&'#36766767'7&'#"''3255#'67#'6&'''6355**33h44++3-G-l $ _    t & 5;H&##   -."W# "!I % "¨ *  *-   .      ,       /   ÿéñ­;K[735#'66553'73#3#&'#5'67#535#3#&'#5'67#353#5#535#535#33#3##533?!+ _Y.)   =     1>>001g77@@:}B6+ &K         . c c  ÿèõ¨ #'+17;AGWd73#53&'3533#67'75#73#735#335335'6'&'73#7&'''6'6767'767&'©A”?† %Uƒƒ$n> (  - <   -¨ -//< B'     ( -    7   " ÿéé£ ,INRV\bh73#735#33533567677&'7&''67'6773'73#3#3#3##5'65#5#35#'&'#'67&'"»»&&7'&š "  &  P!(####*\ +.  3  * £0A      N   Iò¯ +?73#53&'67&'#7''7667#5&'#3#"''3267#'67#„cÛc-# 0   HE  $ ¯%   $<  #! %  ÿêö£ GZ_ekqw7''6'67&3'33#673267#"''67'75#535#535#535#7&'#3#3#3#7635#'&'7&'&''6` 8   Xq'&   2<+m&= SÉ  ´$ £      7+ %     T"   SE     !  # &$ #ÿèïD)/5766767&'7'#"''3255#'67#'6&'''6^ % 435811119t  \L5())))™<9"; &"&    < ;   ÿêî— #'73#735#73#735##5##535#7#5##535#8888vÍ—J*J*KR R6&R R6& ÿçô´)-159diyƒ‰73#3#35335#535#535#533#5##535635#3#3#735#3#3#&'#"''3267#'67#5'67#5365#5#35#"&55#'67#333535#3'7#D #\&- º-==--,, L­;A2$%   7D8 . $ @;b;•/ &f+•••_M´   88   869/# 5     5  #.ÿèõf67333#"''67&''667#73265#"&55#'665R,94.F  z  f .    0  &  4ÿêó^&73673###'3255#53&'735'2Û % "S #X$ !%M^"    !3ÿïïE 733533#537'6'&'v<¼C` z  EDDD@ 2ÿîîG73353353#3#535#533p,>¼>+GGG#//3ÿèñZ #733533#537'6'&''67&'r?¼=d|  0% !Y! !Z5553   >   &ÿè«\-73533#&'#5'67#73533#&'#5'67#0   :    L  :6 "   64  ÿé{Í"(.4733##"''3255#5335#35#7'6'&''67&'=%#   %#6666>  ?    J  Í6W>  ;W%5b   ‡   ^ÿéõÏ !'+?EKQW]cio7#5'673#&''67&''667#3#73#3#3#535#535#75#7767535&'35&'''67&''&'  99     & 0N ""&X$  2   ; 8 Ï­Œ).      t>      $  ?      `ôÊ7767#53&''67&'7&'G  Š¥!&7A/*8 0%? ´    oñÐ73353353#3#535#&<?RjâfOÄ((/ ]òÏ'73533#&'#5'675#733267#"&5/**  / · .*$*V  @íÏ73533#7&'7&''75#75##5#&PPP> Se_P <<µ:  ÿïœx73533#67'7''675#735#335522  5>!5""5 a=  ]ÿè¹Ã73#3'67#&''67#dU)'> 2    Ãz/$a   "B ÿéë˜&+/377'6733#"''32765#3#&''75#75#5##5#'#%+ ›   ^A AKOAA& z..hY h T88& &ÿèñ¬6:>73#3#&'#67'5#67#3533#7'7&''275#75##5#A””Ä  N! *‹ 5 cCBB6G^+(C…/1¬ '  ) .0 cÿé¶Ð73#&'#5'675#535'6¬     #Ð, g_)&WòÏ173#3#5335'2'3333#"''67&'767#'7#ã116x4=F#"JC=Z   )%+Ï1"2   _ÿë°Ï73#3#&''67#537#'6u&  Ï1%#;1Nñ¬ &,7&'36732767#"'"''67''67&'j /"%& ,  ©¬  $" (    RóÉ.267#"''3255#'65535#35#3267#"&553'#37#3p 0 ...._$ .) h<)É^   0 -Z?.hÿèôÐ#73533#3##5#535#73#5#53733##v/00====/Ajff">>"qI""˜ÿêòÐ &73#'63567#533##"''3255#·2: ! +?   !Ð %e7 5 ÿè÷Æ48<TX\735#53327#"&'5#3##5#3533#7'7&''275#735#33573533#7'7&''275#735#335CB¹  R==C((( &2(("((( &2((› " + &&77   7   ‡ÿèò¥%7&'73#353#5#'67#53365#536¡  C- #  +< ¥   -.H&@. .uÿèõÑ $(,7&''63533#67'7&''75#735#335µ  * ,,,  ,42,.Ñ  !:E" $!!!X†Ð73533#3#535##5##53#300+k-3tNcc  & #]ÿêóÏ2<@DJP73673#3#&'#67&'7''275#5'67#5367#3533&'35#35#'&'7'6i07=M!) .<+ )*.  1+2  c ¤/ . !  G‡   ÿê÷Ñ/37=D73&'73#&''67&'767#733#&''67#535#'#33655#35# )*    H1*# "" &+1*»     %u*-,%u3""""1 "  LïÐ@FL73#&''67&''667'3533#3##"''3255#'67#535#'67&'ŸC     ²)''+# "/) `  Ð $      + (8  *$  KñÐ+K73533#3#3#3#"''3265#'67#535#535#73#&''67&'767#'6(00)).=8  ,  !.$$(ŠD    * Ä                WåÊ 73#53#3'352³ÅIJ§§”v s 5$ 3ÿèô¾ %).BFJO73#3##5#53267#53635#335367#3355#3533#&''275#735#335&'#xc->>l.%44E3w-1B7- >FG G]+)F22E4(¾ ;  ; !   $ %-  + LèÏ ,0=7&'''673'67#'6'&'3#5'635#7&''6Z $~: / M DW $33x   #Ï       5'2(  NôÒ#)733&''67&'767#'6&'&'Tr"!5E--; .$ 'g &&(''&.,,-Ò    6     IóÕ .DJ73'7&''667#67&''3353#5#'67#535#3533##"''32655#&'¡D\ 1 0    x# @6Q`  ` Õ(    )$&„-$      ÿæù£&*.8<@F73#3#&'#&''275#5'67#5367#735#35#3533&'#35#335&'7#)ª^ …6(  DZ+(F  #1B3††††-. D 33G2 6£@ & " E $ *QëÈ)733'67##"''3255#'67#53&'767#.±#)X <  #@ 9Xc ‹È        iÿëöÊ$*0?EK73#&'##5#'67#535'2'6'&'&''33267#"&57&'''6â 8$    #79)  C:     R  Y Ê*00 (   b8  = !  fÿæõÓ (,048>D7#5'67&'3265#"&''7&'33#735#35#35#'67&'„ U .. "IooIIIIII@ Ó;$     >gH) ( !   _ÿéöÏ7=AEK73&'73#3&'33#673267#"''67#5367&'#53&'#367#35#35#7&'`)(    =F \  j  ²  #.Q/" &$\T ,! Y=dÿõ¸Î(73533#3#535#3#735#7677'7&'d""JII## !) »2;3  ^ÿéôÍ!77&'3#53#3'35'&''63533#&'#5'67#x :M^\KDD2p '  ;<0  ,Í  Nv3#   4 7:!.ÿèöº5BVZ^c7'673'67'3673#353#5#'67#53365#53&'3&''653533#&''275#735#335&'#´ 3 ‰) ! )s   {GK J`+)G44G7(—     -  &   <1  ,`éÑ 73533#''275#735#335&'#6+IO   Mf/.I66H;-Á51 EõÏ28>73533533#3#535#35#35#35#73##5#'6556&'''6,z',,,,,,« )Q# 2^ ( À;; " # PCC. 8c  _ÿïôÇ!%973#63#5'75#35#35#75#73#735#3#3#3#535#535#aS   ;55Yy3))<‹;++2ÇD M-. B_>_ IòÐ!'+/37Ke733##'3255##5#'655'6367#35#33535#33573#"''3267#'67#3533#3##5#535#'65)   %#'>'e   ( ##((11 ÐP   " % D    !     GóÐ>ENR73533533##5##5#3673#&''67&''#"''#5'6767#3265#35#""O C     4 † &L D Ä  '      * " $&% GõÎ#'+/3F]7335#535#535#53533#3#3#353#735#33535#335733#"&55#'6653&''67&'7367#44''11..((55e)@)f   S"  =b  5 5  U;   9  CïÑ9O7#&''53&'73535'#''67'67'676776767#"''3254'7##5£  &&& #7      ¦  ¾D  h   ):;  !4   !n} ÿåö‹"&<PTZ`73#735#3533#7'7''675#75##5#7#'6553265#"&5'#"''3255#'65535#35#74',¤¤~~  2  h<   ‹* 13  !$) ))Y _Y  )((  ?ôÏ48<@DHN733533#3#3#"''3255#&''275##535#535#53#335#33535#335#67&KCAA!Kb   5FM_L >>UCCc::L9…::L9Ï3&    +93(  =õÏ(,048HNT73533&'73#673265#"''67&'#'3#735#35#35#736533#'67#&'''6gD  5       FRJJ''''''@    ¸     #$lK,,     )õÑ)@Rf7&''67&'763533#&'#5'67#73533#&'#5'67#&''67'76373#&'#'67#’    y    !!         tR t5# -3< .?Ñ       ""   '(     1   LòÐ"&*IN73367353#3673#3#5'67#35#35#73&'73#3#3##5#535#53'#33676 IL^  77::W+,/,,++/$È   #!@ & 2 Z   CïÐ'+73533#3#535##5##53#3#5'67#35#fffR·SfÜ·¤t‚Ÿ  !{{Ç   #%%$  \ÿèôÏW[_73533533##5##5#35333##35#53353#5##535##5#3#5#'6753353#35#535#535#33535d+""+ 022& &(  '00>>0BÄ   2 "s"+ 99* 4! 2    EçÓ8FJ767#"''32655'67&''67&''67&'767&''673#"''3265'3#y   )9<*&4 1'!)   @ˆ ,Ó  !        l aX cÿéôÈ:LQf{‡733#"&55#'667##3#53#3#&''67#5347#'63&''67&'#3673#"''3255'675#73#"''3255'675#&'7&'ã    86F     /@   r@   .E@   .; L È    Rp          7Q   Q      1ÿèõ¾ %).BFJPdhlr73#3##5#53267#53635#335367#3355#3533#&''275#735#335&'#673533#&''275#735#335&'#6xc->>l/%44E3w-1B7- J"" !*"# '"# !*"" ¾ ;  ; !   $ %,*;,* %ôÐ%)-26:?RVZ`73533#'3#''275#535'275#735#335&'#35#335'7#73533#''275#735#335&'7#(OM 8F( '1**/,O==O;/e* 4+, '3++ Æ -   '  '  & 6 &7 (  (_ÿéðÏ(,04RZ^73353353#3#3#3#3#5'673&'7##35#5##"''3255#&'#5'67##5&'7#35#k#!8 14,,,,5{   <<#####l   =  Y Ê! .    > +  CR%    ?÷Ë?FJNR7#'67#'7#53#3#7''67#3573#3#3267#"&55'67#'7#67#353#735#35#P ! j(0[i(0*    *x¯¯‰‰‰‰ž   &   1=& AïÏ#3773533#3#3#5##535#535#35#3353#3#5'67#35#accOOf¸bNNa&;;O<•¤s€Ÿ  %{{È "##"0 #  FöÑ#(,04X^d7&''373#3#3#3##5'67'5#5#35#767327#"''67&''7&'3'&'''6Ò ~ +((((-` # !!!!!¾6    F 7  Ñ    K Q   "   ?ëÏ;~7&''67'67676767&'7&''67'67676767&'73#5#535#67767'7&''67'67#676767'7&''67'67#53_ "'   p "' $ÇÇ5     !'" K    "'" ó            !2            ÿöõÏ 733#5353635#35#35#pgê= 3$$7##6$$Ï   °Qÿê¨À73#3##5#535#UM##!!ÀJhhJAÿé­Î73533#&'#5'67#7&'P"   Hš44 zt1$BC Fÿð¨Ì 7'673#53#3#67'5#53e   ,1E"" ##˜  ( 5 EÿéEÎ7'6#5'64  Î "‚bJÿî²Í#73533533#3#535#5#&'''6Rh5%  %™444499999 # Iÿ驯!73#33#537#537#35##5##535#NR'' `/---Æ5$P$IWW7&Aÿé¸Ï*.373533#3##535#35#7#"''3255#'665535#35#A"d   ¤++*Sb*l1mÇ I7* 1$_6']'Cÿé·Ñ 673733#537#35#3#735##"''3255##5##535#53#R#f#+WW33L &/t3À "-0F  33%5  Bÿê°Ï"8733#5367#'635#33535#3353653#&''67#g*^. %:%R,*, $'Ï  WW E54     <ÿé¸Ê ?CGK73#735#35#35#73#735#35#35#3&'73#3#3#3##5'65#5#35#L//*009'("""")U -Ê^C*,A^C*,   H  ÿë÷Ï47'67#535#535#53533#3#3#67&'#67'E 4NhVV____VVh] + U ' .  !L <   ÿêïž 67&'''6767'7'67&'67'5'67'6©' !%M%(=-$ ) " L   4$+#ž !   ? ,  (   ÿë÷œ(,0733##67&'27'5'67#5#5;5#35#.¡%%H*P+0%  3$5""{{{{œ##    K '  (  #4'Oا 733##5#5335#35#vOOOO<<C7#533'67#67&'7'5'67'3255#'67#53&'67#W*ª? 0  ,L$ (  <+ !6 /OU;R      5    !$ =ðÑ $7#53&'73#67&'7&'#'63#735#`Pgdˆ J) " ST'©©‚‚¯    (5hÿìñÐ #73#'63#"''3257&'''6†ah ,   4  GÐ & ~  Y)*-',% &ÿèð¬BH73'67&''667#367&'7'5'67'67&''667#\[Mb" 1  KL8$&  @" 2" 4#%#1. ( Q 2¬&        7       _ÿëªÍ73''67&'67#5367#~     ÍK* $#c!1& ÿð“|&73&'73#67'5'67#67&'81=  !+A  g  7  0 _ÿé¤Ï7'6#5'6  Ï  f"'?îÓ#73#3#3#"''3267#5363535dWŒ´´«   ª2&zzzÓ<   k   ÿëò§/37;?73#3#3#67&'67'5'67#535#535#735#33535#335*¬LWWcX   G%  *(MdWWL::N9‡::N9§C   =      ) %  ÿéò¤27'67#5673#35#535#53#67&'#67'H .!0)#77778LB $L    WZ   < $   ÿéâe $7#"''3255##5'67&'3#735#â  šG  C ;WW//ed  Mj|   1ÿçò¢59=73#735##3267#67&'#7'5'67&&5535335'©©„„¤¯7Q  >    E$ + -&FE¢' $(   +       5 SïÏ$73353#5#'67#535#73533#3#535#% B7R6660p-6Ì v% ))‰óÐ"73#3533#3##5#535#'67#536°7< ""((00, Ð ##''WÿéóÐ273#'6553&'3#3533#3##5#535#'67#536² 0m< 29 !!((33+ ÐH># ´   *Ð  &&!1   j XK ?ðÊ!%)73#3#&'#5'67#535#735#33535#335$·RdC &8*#; 1$KaR??R?‘??R?ÊH    , & Bñ¦ *73#56737'673#&'#5'67#53/6( 1/ %2lS#  $ )ó°059>C73#67'7&''67#32767#"&55#'67#53365#335367#335Zl     %0"D 6=0@AS:Œ8/! !! ",Í    6           - 83ÿèô¨EIMZ7'67#5'67#535#535#53533533#3#3#'#67&'#67'75#35#&'##3&'7L /* '4>##''0%%%%@7*5   >  J000U;2        1   ‘ 8  .ím 7'6'&'73#7&'''6Ô$"‘P')(''5 .,m)  TÿéóÑ,048<7#'66553&'73533#3#3##5#535#535#35#33535#335òt =9-00))00//''-)@)¼M@2 -"Y %  VV 04‡òÏ#'+73533#3#3##5#535#535#35#33535#335‰)**((--++&&)'='½YY37ÿéôÏ(733#3#5353333#33#"&''673¹""%g      Ï!!??, ?  1ö¬6<BU73533#3#535#73533327#"&55#&''67'765#'67&'3533#67'675#*''1v2*s&      YA 7  0; £   %&         Cï¦ '+73#567373#3#&'#5'67#535#735#0;P(9a&5&  $1);;jT:#       ÿèó§ FJN73#735#73#735#'67#535#535#53533533#3#3#67&'7'75#35# VV//UYY44U 4%T?,,55:77//Bm %P)$ V:::§) ) ˆ        8  d  zÿÿÌd7#"''3255#'65535#35#Ì   $  ####dO   #$ $ \ÿèóÏ#'+9=A7'655#53533#&53#3#5367#35#35#'3#3#5367#35#35#¦'=AABB2 .54h63&% &9RR /– MM,0HLL,/Qÿê©Ï(.4:73#3#3##"''3255#535#53&'#53&'367#'67&'    =Ï F  AH W    VÿéôÎ-3GKOSW[_ek73533#3'33#673265#"''67&'#535#7&'3#3#3#535#535#735#33535#3355#35#'67&']"$$)$$   d("‚qWe"5" 2 Á  ++4#"8)! W =C  ) '(     Yÿé÷Í`735673#3#35335#533#335#535#535#533#&'#673#3##"''3255#535#535''67#^  '!  4 **<<  @@++   nP   (6 6  V      OÿéñÏFLdhlrx73533533##5##5##"''3255##5&'75''67'6763775##567&'73533#27&'7''75#735#335'67&'O0 -- 0¢  8      8( -    e      ‹— #    J¢³[ '8 8GÿêôÏ*?R‹7&''67'763533#7&'#5'67#'3533#'#5'67#&''67'76373#&'#673#3##"''3255#535#535"''67#¥      e    U    Q7 Q) "" ))99   ??,,  'Ï      %+  *      7         YÿçõÎ1S[mqˆ73533533##5##5#3533#3#&'7#'67#535#73533327#"'''67&'765#547#3533#67'75#3#3#''67#67&'7#Z"++"    !N       i %tt“ /5 (+)à           "      bìÈ 73#3#535#5#35#335335ØE9À;G(9''9(%È??.ÿçól"7333"&&#"'63267#53&''2Õ (0N%=4,A=! &@—V#&Zl  ÿèïi73#3##5#535#735#35#0¡GeeggF{{{{iK  . (  ÿèö’'+/FL73#3#3#"''3265#'67#53&'#53635#35#73#&''67&''667#A1-7H<   / ""2$>>>>rC    (’>" > #.$      ÿèõÈ#'73#3267#"&55#'667#735#35#35#-¥/ $  / #'*& *}}}}}}È•+   1!#hDDáÑ 7'2'6'&''&'× Mo\OC  3 Ñ    ÿçó‡"&73#3267#"&55#'67#735#35#35#8’* " . #% 8#kkkkkk‡m  L, *  ÿ逯$*735#53#3##5#367&''66''61(a'..12  ' "  ™ ,   &' lòÐ "(73#'6'#3#3#535#35#5#7&'§@G -&&,r FF ™Ð  "& ' ^ & &   Zîƒ7#5##5()OÿèõÎ/6@P7'673353353#3673#&''67&''65#67#'#5'67'5#'655g<;     5\ d O   Î( 0AA0@(8Z , ": #= ‡l%;  B $$ " lòÑ $(,04873#&'#'6'#3#3#535353573#735#335335•O& '!!&e==AjjÑ  & \   -  ÿê”Ð ;?CGKO73#5##53&'3673#&'3#5##5'67#53&'735#'23535#35#35#35#R1Y64  2 -G !+)  ,,,Ð #"'   V L [+-!wÚÏ 7'2#6'&''&'Ð IiXF2  0 Ï  upìÑ 73#'6&'— LV ' Ñ    ÿéòz7#5##5'66333267#"&5Ãc<67 5/ " -zZHGY!-3  +&  vÿéôÑ 17'67333#"''32765#'667#'667#'67#—  JhYG    $:¤   U3()  !!‚ÿéóÄ.73#"''3267#'67#3533#3##5#535#'6†h   % ##((11Ä6 -!> 11 xÿéôÐ:73673#3#3#535#535#53&'3533#3##5#535#'6ž  0**1v2--3++0055Ï   i&&  ÿè‡Ï>CGKPT73533#3#535##5##53#33#"''3255##5#'655'67#37#35#33535#735500(g,5xSE'(     '='Á  %%& J    "  ÿêÝn#(,059733#"''3255##5#'667'67#35#33535#735RS4 :<   )PK66I:…87K:nM '   $  YõÒ-3_c73673267##3#3#&''67#53'67&565#733'67#3#33#"''6735#53&'7#367"& @ )"   ' $]f **< 25Ï      .C   ! + fÿèóÐ %AEIMR7#5#&''67##5'673#67#3#33&''67&''67#735#35#35#67#ñ#     <1 l@@#"  HHHHHH% 5 ©$  ,P   8   = kÿéïÌ)-15T\`73353353#3#3#3#3#5'673'7##35#5##"''3255#&'#5'67##5&'7#35#u2,,&&&&-p   ?8a  4 T Ç   /    > * !  AQ#  ÿéôÐ 73&'73#3#3##5##535# jgç¶¶¶¶²‰‰‰²  V V6# ÿèíÑ+159AE733#&'#'67#3'73#'6655'6367#3#3##5##535#` PG' 8  #RN¶  , \ M žžšsssÑ     9* )HN  > ># ÿéõÐ !-15=A7&''&'73#&'#'67#5363&'73&'#3#3##5##535#z / ‹ 2/! ¤ , l71 O žžžžŸzzzÐ      A '  ? ?#8ÿöË~ 73'73#3#3#3#735#8=C“oooonnJJl     . ÿèõÐ#'+7;?GK73533533#3#&'#'67#535#35#35#35#&'#3&'73#3##5##535#'h''-4 ›  "0-':hhhhhhn V 5U’’’’¡‰‰‰Æ ?  ? % % -   -- _ÿïöÐ#+/3773&'7&'#3#"''3267#7#5'63#53535#35#35#ƒ N  4@D  m ! Ï ) ' ! r:::(((((]ÿéòÐ#)1573'67#'6'&'3&''66''6#5##535#£@  5 $  O ( ! % 4  pGGGÐ         /XV6$\ÿéòÐ'37;CG73&'73673673#3#'#'67#537#3&'73&'3#3##5##535#f   BP  k  )+.  JnnnnrQQQ¯       /  44 ;ôÒ 59=73#5##53&'3533533#3#3#&'#'67#535#535#35#35#„a·dD$4''..C3%+F+ %1=,,$74444Ò%%$     !  6ôÉ#'+/73#3#3#&'#'67#535#535#735#35#5#35#!¹*44=1" +L* -7--)’’’’iBBBÉ9       "  "  _ÿèðÈ$(173&'73673#3##5#535#'6553'#33#53'€  0))((-  WW*f(H   ''1!>y8' Uÿé¤Ð#'73#"''3255'67#5353635#35#35#}   1  ######Ð ¹  /j 286]‰Ï 73533#3#535#'6553'#3#5#111(d*1 a(Æ  E (‡òÏ#'+73533#3#3##5#535#535#35#33535#335Š***&&,,--&&*&:&¼ZZ38TÿéœÉ73#&'#5'67#535'6Ž    É' gd #!WñÍ,048<73#3#"''3267#535##53#3#&''75#53'35#35#35##7L45 33;-l.4 3>:33LL##4$$ Í- & - $$ %  % 9  Uÿè¬Ç"&7367#533#7#5'75#35#35#75#Y''=   Ÿ r#|JMWÿìôÇ,28K[73#"''3265#'6767#'3#"''3265#'667#'6''6'67537533#6733#3#53533­D   LD     PKC")  0Q  ÇP9(% "O8(% !"   † IESJ+HHVÿè«Ï /73#53&'3#735#367#"''3255'7567#ƒJCCJ   1Ï  330  vÿöÈ^7#"''255#'65535#35#È  %  ""#"^R   , ' \‡Ò$(,7#53673#3#3#"''327#'65#5375#35C($-)0H?    / !6'??˜..     $ Xÿð¢Î"73#35#535#53#56#53#7'7q $!H D$Î jd)  ÿéðÒ#,6:>BFNRZ^73673#3#3##5#535#535#53&'3#53'73#53&'3#'3#3#73##5##535#7#5##535#R 5 5`UUggeeTT^5"["‘$\"MM~MMMM~MM0---¾---Ò    ‰‰  W   #  00 0 1…òÏ#'73533#3#535#735#335#3#535#35‹)''-m/)( AEW//3à (   @, 0h8#ÿçÛj 73'73#3#3##5##535##PT¸œœœœ£†††Z    /0 YÿèìL'-373#"''255'675#73#"''3255'675#&'7&'^D   2IE  3@ P LP   P      [ÿéöÏ7CIOag73533#3#3##5#535#535#73533#3#3##5#535#535#3#535#535#&'7&''3336767#"&5''6cKEoppo@ B  N $           GC  9     ! `ÿèöÐ 6>BFJN73#5##53&'3673#&'#5'67#53&'735'2##53#'#;5##;5#¬8`9= (&# )20Nr.  Ð !#)   £ UUF RóÓ'8OSW7'6736733#537#35#73##5'673##"''3255##535#53#3#3##5#'735#5#3 /& l# C33„ ?  g1*Z$$$$,66Ó   >- / ,$    '-eÿí Î 73&'73#3#3##5##535#e;22336­ QW:* YÿéöÑ"(.:FLRbh7'2'#"'#532654'7#7'6'&'#&'#53#3#533#535#535#&'7&''33267#"&5''6Ý /&(j  S"(^%!VVDBBD%  :  A    Ñ <7ß—@     " A 5     "   ^ÿæðÑ3<EKQW]733673#5##53&'733#735#3#3#3#535#535#73'735#33735'67&''&''&'ž n   *eeCC866@=557   &8  g  x Ð   # 4     U        Mÿè¼Ï/37;L`733#3'67#'6553326565#"&55'7533#3#735##"''3255##53&'73673##5#u117 E  -    JJDD""7 0   Ï M=2 .K!   Tÿè®Ï#'+/5;73533#3#535#3#735#3353353#735#35#35#'67&'U###N#ZZ   ENN****** 'Ä   "+&X> ! !     Eÿñ¾Î7&'367'5#m I !5Î6} yFÿèõÏ#)1573'67#'6'&'&''66''6#5##535#—I  <  %  S% # * 9 PPPÏ  ' !  -[[8&RÿïóÐ$*26:>7&'36732765#"''67''67&'3#53535#35#35#“ &   z  ¡$#Ð  74 ?   = UAAA/////UÿêðÑ+/37I73673#53&'3##'3265'##'2655##535#35#73#3##'3267#'67#‚ "%–%e  2  #####C[‘ 5 : / 5Ñ   (L CL ] % >#3 , Kÿð®Ï2873733#3#"''3255##537#3#3##5#535#536'&'K+&(' 9#)8  ²}  iŠš,   z òÏ#'73533#3#535#735#335#3#535#35‚,++2x4,, KPb99>à (  B- 0i9rÿêòÇ'733265#"&55#3#3#'67#535#535#w_Çà  µ*&6! ,&*màÏ #73533533#735#33533535#3353359';Á'':''›'':''¾Q0/ ÿðóÐ/48<L733&'73&'#5'67#&'&''667#3#735#3673#53&'86b% I p B)     *xžžvv 4=Û<Ð  !,     -    I9*    héÏC7335#535#535#53533#3#3#353#5335#535#535#53533#3#3#3vÔÏU PbbP ÿéòg673#67&'#"''32654''67&''67&''67#Hl* #!&  ,<?.(6 4*"" (%%g       5ÿéòW473#67&'#"''32655'67&''67'"'67#>ªI      &2 5* + )!&3GW         ÿéñ£B73#735##5##53#67&'#"''32655'674''67''67#1  {{©¶!¢R %&  .?E,)7 4*) .4£( "!"    !      ÿë‰ÏN73533#3#535##5##53#3#67&'#"''32655'67&''67&''67#211+h*2sOAAj)    $' '   $          +ÔÁ3f73#67'#"''32654''67''67&''67#'3#67&'#"''32655'67''67&''67#‘=       _?          Á               ÿçðÈ !'73#3#535#3#735#35#35#'67&' ¿WhßcT±±‰‰‰‰‰‰' :2^&+ -)È1rP.-% yôÏ73267#"''7&'77&'æM "&k\  ³     '  yõÐ!73&'7&'#"''3267#'67#7'6In &/  9F 9 !/ *­  2 {ïÑ '7#5'6736732767#"&55'67I   &B)$'. # -"Ñ 8&     eõÐ 7&''63&'73'67#/7 92+> Q)C 0  tÐ"   }ôÉ 73##7#53737337#3#7#Ö"$¤ #3/01F3É  |óÐ73533#3#3#535#535#\^^PPjæhNN\Ä      ÿéïÑ#'-37'655673533#3#5355#5#35#&'''65lO LfQVVF™@ErrrrrS" #!*(%“J3-')}   pp/ $    ÿêöÏ!%)-17=73'33#3267#"'&'#7&''3#3#735#35#35#&'''6 •=<  –ÀkkvvQQQQQQ8% ¡..G* -X;  0nO + ,$    |êÏ73533533533##5#3#5#5#"4..Y"œ¯”4Á $4 xóÏ&733#7'753773673267#"&5F**-7;J" )'Ï 0/@   {ôÐ73533#3#535#735#335%PRRméjP==O?à -   ÿæô«#'-3736733#'#5'67#3&'#35#35#35#'67&'J ~5%› *:?g Awwwwww $*+]"" "#’ JN  0 % %    ÿçì‚ 73#735#35#35#&'''6-§§€€€€€€`($ &&=, (‚tS/0%     vôÔ'7&''#5'67327#"&''7&'3¯ `  $¼G   *@9Ô   <*    \íÏ&*.3873533533#3#"''327##5#'67#735#3353355##67#E&88G   2>+  5EX&%7(" +  , '  zèÐ'767&'7''563#"''3255#'67#k !# # )@b  !# Ð&  A5 #0  qèÐ7373#"''3267#'67#73#735#)2   ! * ! %}WW//¾/ . > yòÐ 73533##5#3533533##5##5#"URRU2^//^2¿   sîÒ 7#5'635'673#3#535#@  %IL.$KKA;IÒ:' {íÉ 73#3#535#5#35#335335ÚD;È;D‚+;((;+'É00 ÿèì£ &,273#673#5'675#35#35#35#7'6'67&'5”?+! &5R¤8-A ,',-\(% '&£  ^O B $ % g z     YõÏ$)/73533#&'&'#5'67&''67#67#75#]\ % <%*5 *  %‡ -'!      " fîÏ773533#3#&''67#5365#73533#3#&''67#537#'&&+/  # ! '.'r(&&+/  #-'À         4ÿéòµ159>BFJ736733##&'#&'7#'67#5'67#537#5367#335353'#35#35#35#G<H    9# $5=7KBHN73&'73#3#3#3#5'65#5#5#'#5'63#735#35#35#'67&'v"23..//3 ;++++++ ““oooooo #X#"!"¶  (   I ?& BS;     ÿåö‹ -AEKQW]73#735#3#735#35#35#7#'6553265#"&5'#"''3255#'65535#35#74''67&',¤¤~~<<d  <   žQ '  ‹* &P9 )#( )(Y _Y  )(( 1    gôÐ #'+17=L73533##5#735#335'#3#3#535#35#5#7&'7&'''6733267#"&5†))))*^e##CC##’   5  N     Ç *   ' ] % $       MÿèõÏ7=IMQU7#673265#"''67&'#'67#'65#535#53353537&'3#53#3#'#33535ò    A  R) 37  ²M$:& !' /IK=0 +(, #I81  ©ƒ1H $ ÿäó` %+1773#735#35#35#73#735#35#35#'67&'7'67&'``<<<<<<]dd@@@@@@d 4 X 8 `V< " >V= " !         0ÿæô¸!,28>DHLPTZ`73#3#3#"''3267#533535'#5'6'67&''&'7&'3#735#35#35#'67&'–@`ooi i NNNv(   Q"&R““qqqqqq! $( 3D&&%$¸+   J $ K4:       ?+ añË73#767#53&''67&''3#N5Xo $  [ËfI   #W6ÿçñ®!7#5##5367#5373#3'67&'Úa5W[LPZ P$ %pUBDW  #]  góÏ 7'67&'3#"''3267#'67#\!/ +j%, -&X‡  > 9 . Ï   (# xÿúòÄ 73#5##53&'3#´+I0)zzÄH68J±bñÐ733533##5#3#5#53533#3g122X"™¬##"D11Ð!!.@k}Ð767&'7&''56k !# " )Ð 1    L“wå¿73#735#“RR,,¿H&K_ïË7'673#3#535#53‘1F8 KK?;FF°ÿèêÏ+3;A73533#&''67#3#5##535#&''67##5##5'66&' VY   '`¯a!  !§i@/5 0**) )+¹   0)+0   PC25F!&   ,ÿãóµ',17=C7367333##&'#5##5'67#5367#537#33535&'#3'67&'F<<)  R (HO9K16< - V M!¡ (%()    / =   ÿéô·-15;CI7&'#5##5'67#535#535#53533533#3#3'35#35#&'#'66&'·! b *3>))!!,##,,@,,,,I 5 &.6 3) /*-,Y ,%'+     - ' - !  :ÿçò¶#'+6>FL73&'73#3#3#3##5'65#5#35#'#5'6#5##5'66&'Š +-))**0e 5#####,  ‹c:). +$(" !%¶    =   P  R=X6&(8  QõÑ$N7'673533#3#67'5#'67#5353'673533#3#3267#"&55#'67#535.   $  2I&&.#   $ -¨ '    #  ÿåö‹%9=CRX73#735##'6553265#"&5'#5##5##"''3255#'65535#35#73&''6574',¤¤~~Ž< 4    K S‹* 6$) ))Y _F78GY  )((   pÿèöÐ(06<73&''67&''667#35#53#3##5##53'67&' 8       -&2!Z&5zl9%G >!Ð      U 8((8;   ÿèòÏ%+173533#3##"''32655#'665#535#'67&'#RTTiG ,#! IgR¥ ·#h cC524#E . "!& &"mæÏ736533#"''32665#'67#}6  #,¥S5095=(SßÏ 73#5'5367Ë ÏÁ5  ~q•îË 73&'#•) Ë, uƒ ñ½73#3##5#535#ˆe*..--(½:RR:„êÌ 73353#533­fÌ£ƒ•”‚wìÏ!73#"''3267'6765#'6&'—I$*/'?   Ï )%  uôÎ 73#7&'''6'6«-  8J F BÎ{b" $5Ar óÏ!735333#'67#53655#335&'‚#+? * # #(#6 ¯ C/!  1Rn îÎ#(73673#"''3267##5'67#'672735¬.    $ Î-7 "\< + "=,kìà 73#53535#35#35#Ù111111Ù™3!RT#{èÅ73#"''3267#'67#3#735#i   %& aa;;ÅB +;0SL({æÏ73353353#353#5335#*k(º4II4FN2DF4N~ õÐ(.7#673267#"''67&'#67'53'37&'ê+         - §"+#0\  ))&  mäÐ733#535#535#5367#'6ž 5 aNGGJ+ + !Ð p  w òÏ73533#3#535##5##535#w366.l,3m<<<³CS S5#oôÎ#73533#3#&'#5'67#535#'6**//  "&/ Ä## @@!"  s ðÆ)/573#"''3255'675#73#"''3255'675#&'7&'{5  #<9  '1  P  Ƨ 0 D§ 2 D    k ñÎ$*73'67#'6'&'&''66''6°9 *  #  H   * Î  #" 6 + '""höÏ)/7367&'3267#"&5'3'67'67'&'´    $)"   Ï2   6  ¦b9$ ' 4d èÏ %)73#"''3265'3#3'67#&''67#3#Ö  jG#4 )   MϨ –_$H  5nw ñÇ 73#735#35#3#3##5#535#bb;;;;j+3344,ÇM.,,((móÎ(73533#3#535#7&''6'''6|*,,68*W I S{{%/ '{ ïÌ"(733#"''3255##535#5#7'6'&'¬+  G-,GGGN  K  Ì8p  0†$!v   jôÑ &,7&''63#3#3#535#535#&'7'6´ # ) N--66--  [ Ñ   44+  eëÐ*0673#"''3267#'63533#&'#5'67#7&'7'6ŒS  J  '!!  @Ѐ3q @11 49  !5   píÐ!%)73&'73#3#3#3#5'65#5#35•"!!!!#g -Ð w ,.còÇ773#7#5'275#35#35#675#767#53&''67&'eN   < -@    Ç{!ƒO S;:  fëÐ@V73#"''3265#'6336553353#3#"''3265#'67'67#336553353#'67#†Z U# T  Q  & 'ÐA'  D)  A" qîÏ#'+/5;73533533#3#3#535#535#35#35#33535#335'67&'x1*g*4,+C+9 9 ½LLQ * !  kõÏ!%6:>73#&'#5'67#5367'2&'#35##"''3255##53#735#Û -? P !0(3",,R  R 77Ï  : E 0EV( e ñÏ 0I73533#3#535#3533#7'75#73533#3#535#3#3265#"&55#'67#{,//8~4, ?E=y%   ' Á  -   (   ) m ñÐ!%)/5;A73&'73#3#3#3#5'65#5#5#&'''67&'7&'Ž$'####(n -"""""Q  T .-Ï L!! eóÊ .73#735#3#735#73#735##53533#&'#5'6~dd@@88399(08;;  $Ê-)-.A  &,f îË ">BFJ75#53#5'675#53#5'6'&'7&'3'73#3#3#3#5'65#5#35•(9 R(: L J +..''''.w 3%%%%£N  N  !   )   >  góÏ(MU`f7'673533#3#265#"&55#'67#535#'673533#3#67'5#'67#535#5##53'6652&'¶   K    [C*9  ®         F>./?$   j÷Í#Oaeim73533#3#7'5#'67#535#'635#'673533#3#32765#"&55#'67#3#&'7#'67#735#35#35#w     ?       :n  .  JJJJJJÌ            #R    9   cõÕ )-7#5'673#&''67&'767#'6'3#D  %eM '   2  3ÕJ6        MOÿé®Ñ"73#3#&''67#53655#'6s-  # Ñ&* &7& #YÿèôÍ &,7'655673#3#5##537733'67&'„@. 34,6*< 4‡*?4 15c VFHX+L[  ÿéö«@DHMQ73533533#3#3#&'#3#33#"''675#5'67#535#535#5#35#3&'#35#-'1&&&&A3( &2>##'j111[ =hh         $    %(VîÏ#'+>73533#3#3##5#535#535#35#33535#33573##5#'6556///((--00++/+D+y )H .Æ 55?66 /ŒóÏ#'+73533#3#3##5#535#535#35#33535#335‘&((%%**++&&&'<'¼ZZ39Yÿé¨Ð#)73'73#3##"''3255#735#&'''6[ M?  %%³ EG  D#< kÿèéŒ#'73533#3#5##5##535#735#33535#335t+//8&"4+-Q""4&{0 ? ## @ R‰ òÏ+173533#3#3#3#3##5#535#535#53'#535#367#$'',+$$++))$$+*$$'¼: UÿêóÐ<@D733533##5##5#533533#3673#3#5##5'675367#535#35#35#€-!!-*## 4 AG 93*GGGGÏ.  ` I  X4Oÿë¬Ï&*.73#3#3#"''3265#'67#53'7#53635#35#z +$     #!!!!ÏO4%6 O */ ÿèôÑ37;?CGLfj733533#3#3#"''3255#''275##535#535#53#335#33535#335#7&3#3#3#"''675#735#KCAA!Mb  # 1?L^J >>UCCc88J;…88J;#o›DQQi)s +EwwÑ  4   $24  )  &    VÿéõÐ &*.2Ia73#'635#53533533533533#3#7#3'#3'#33'67#&''673533#3##5#'735#yoz •s !%#,   ?"# "Ð P' 5)   ]ÿçôÐ&FJNRV733533##5##5#53&'3##'3255#3&'73#3#3#3##5'65#5#35#'3#„".."''  )_ N? %3Ï  ˜  „    U  ROÿê´Ï+/>DH73&'73673#3#3#&''67#537#535#5#35#"&55#'67#333535#W $(   ! $("16   -666´     ^   ^ 6     > RÿéôÏ4:>BT7#'6553&'73533#3#535#3533##"''3255#&''3#735#76767'67&'ô€C@<C  A<<  !( ¼M@3 1>Z '%%l  g1(  XÿèðÏ6B]v7&''67'6776767'7''67'6776767'73#5#535#53''67'6767767'7''67'677767'     O     ††ƒƒM     Q     ™  "   " :æ`D  " %   # OóÑ(9PTX736733#537#35#''673##5'673##"''3255##5#'7#535#53#3#3'35#5#O!& m'!C •00…  ”; ,.3+\ ##'R::É    C3 1 .=    3-tÿöØy"&*73&'73#3#3#3##5'65#5#35#C &x    K ‚ ïÈ159=AGK73#3#3#&'#3267#"&55'67#5367#535#5#35#3353353&'##3†c)0 -"   #$8    -'È2  $ # 2$J RÿèöÐ %+06<@DHL^c73&'73#'3&''6673&''667'6''6''67'673#3#3#735#3&''67&'#367’ ."    c    %  c + &&%%-- ?~ $#/*# » !4  0>. 0"( , *   Ið± 4973#3#53635#35#73&'73#3#3##5#535#53'#67#8'?@R --..M./%622..5!B ±' &X! > 8      OÿéóÐ'+RZ^b73533533##5##5#3533533#3#535#35#'3533#3#3#&'#5'67#535#535##5##535#35#[#-$$-#EU g    •'''''Á ' 928Z [!0 ^ÿèùÔ /5BJRX^d73#5##53&''67&'3#35#535#53#56&'73327#"'&'37'737''&'&'7&'¤:k= :  ''^((,>‚;  l 9      D   Ô         B=I  )")8H   SH   S      TÿçøÒ#6HLRXov73&'73673#3#537#35#35#35#'33#67'7536773327#"&553'#3'67&''3&''67&''667#[.  'D3F@+  f * e  ^ 5 ? " ,!  ! 6»    NN !   9 >: C, 0         \ÿçóÎ!%)/37VZ^b733533##5##5#53##'32655#535#5#'##535#35#3&'73#3#3#3##5'65#5#35#‚+""+&&n  2 3"""" F (Í   © cA # 2A|½ #    ?    ZÿèóÇ48<@7#67673&'73#3#3#3##5'#5'6555#5#35#ò{  A  bÇA+$(  n  kt 5, 7>`h,,ZÿéùÒ;?CGMSci7#67673&'73#3#3#3##5'#5''6553'75#5#35#&'7&''33267#"&5''6òz =  A7  @  À="  H F=D2 6;\  D$      # _ÿçðÑ +AEIMQW]7#5##53&'73#3#353#5335#535#'6'3#3#7'675#535#3#735#35#35#&'''6ðm=& A   @5 qqMMMMMM;( À         ;T= !    ÿéóÏ#'+73533#3#3##5#535#535#35#33535#335cggUUkkggQQc&==QA’==QA¼d$$d<>ÿçì; 7'6'&''67&'Ê "'„% #L&14M4$ "2;       ÿêö¯37;?C73533&'#'67#53673#&'#3#3##5#535#535#35#33535#335;;6:2 &E  w6) ;KKffffKK;88L9…88L9p       >  > $ ÿéí†#'+73533#3#3##5#535#535#35#33535#335;<;;HHccffJJ<77J577J5y  F  F & & ÿé™#'+73533#3#3##5#535#535#35#33535#3356991133;;//60N0  E  E % %  ÿçó©159=A736733#&'#'67#3533#3#3##5#535#535#35#33535#335? ‡3" +J& &-8::LLggggLL8::N9‡::N9–     @  @ % " vïÏ;73533#3#&''67#5367#73533#3#&''67#5365#'""'&     +'k$**5+ $  ##À       ÿèóÑ=AEIMSY73#3#35#535#535#53533#3#3#35#535#535#533#535635#33535#335'67&'GG''""%%&&""((G1æ/$6$I( %v))Ñ   E  E ! “‹@' \   ÿéˆÏ7;?CG73533#3#535##5##53#3533#3#3##5#535#535#35#33535#335433*j-4ySHH1..++1166,,1-G-Æ    ::  òÏ#'+73533#3#3##5#535#535#35#33535#335“%%%""''((##%$4$¼ZZ38 ÿé¯Ï#'+FW[_73533#3#3##5#535#535#35#33535#33573&'73#67'7&''67##"''3255##535#35#  '  (    H   """""»^))^<<[   Af  .} 1^ÿéóÇ 'B^7'6553'#3357#533##"''3255#3567#533##"''3255#'#"''3255'7567#53€\\V,7U #, ,33     4 —3F5 6?_0 7  A      \„Ð#'+/373533#3#3#353#5335#535#535#35#33535#335 444++11d33,,4-H-È /  /^ÿïºÐ 9733533#53'&'7'63&'73673#3#67'75#535#yN  L D  '-$Ï:;;2X  ÿèñq#'+73533#3#3##5#535#535#35#33535#335:=<>Q=Ž>>Q=e  ;  ; " ! ÿçôb#'+GKOSW73533#3#3##5#535#535#35#33535#33573533#3#3##5#535#535#35#33535#335///((,,11((/&=&,//))3300)),)@)\77  877  -ôÐ59=AE_ekqw}ƒ7&''67#'736767&'73533#3#3##5#535#535#35#33535#3357&''67#'73767&'&''&'7&'''6'&'''6I    "!!"  *  N      Œw–  2- )5  E  E & )   0&& ÿæôÐ!73#3533#3##5#535#'67#536j v<JJbbqqS:DÐ"** 77 "ÿæòI,767#53&''67&'767#53&''67&'/ E[   r  Kb  0          ÿç|!733#7#5'75#'67#5373#3P%%'<@1 #:C R#   ]ïÎ:73533#3#&''67#5367#73533#3#&''67#5365#'!"''   $+'k$)*5-! %   ##»          jëÏ73#5#535#535#53733#3#3##bNNBBJJ(JJCCNNÏd     7ðÐ!8PVZ735#'67#53673#3533#3##5#767'67'67676676767'67'67'673#T%' '. %‡$   ´ "   !$uEEc Z!"  #W ^ÿé­Î+/373&'73#67'7&''67##"''3255##535#35#^ (  G    ´    =d  .} 0 ÿèóÐ %73&'73#3&'73673#3##5#535#\ WÉB  9 @hUUXXj¯ +  #??#ÿéuÅ 7#'655#3#5##535#p? ?--ÅO*4!KK+2mmF4GÿéšÏ73533#"''3267#'655#_  %% £,,…w"S3 1H"Fÿë¦Ð(.47'67'67676767&'7'##'3257&'''6p     '  - N'!3#  S > "# ZÿêšÌ 73#53&'3#3##5##535#y@ >>>>=Ì @U U7%)ÿê÷œ73##53#67&'#67'H ,ÅU 'P# œ.  )HW @ôÊ"&7#3#67&'#67'5#'6553#ä«´[    N %‰‰Ê+ -'  1%22 ÿèòÏ #GK73533533#735#33533535#335335#3#67&'#67'5#'66553#":(:Ã'':(''':('½ÀS    D%  #à I- ' && -)  5$ 8eké~73#e„„~UïÏ 73533##5#UBDDBŠEEdd\%äÌ 73353#533–&ˆ&Ì”wЇtHîÏ $73#'6333267##"&5477#whr  f;  (8BÏ 1 & 0NöÇ73327#"&'5#3##5#535#T}1++**$ÇQ((*<&@>;UU;JîË-7#"''3267#53276767##"&55'753753à  " 2 «M(MHO R+&3.[ ðÎ733##"''32655#53&'¯--   TT;Î'm h'!"LíÇ7#53#3#"''32765#'65u#›fU  @))´%[  0A)&6Né 7'66553'#3} €XXv5( 'JL9&U"íÆ73#3#3#535#535#YŽ=77C˜A88=Æ.==.MìÏ$733#353#3267#"&55#5335#53’DD&:! 7#EEÏC3E' ,E3CYìË 77'56#"''3255##5•! !r %Ër € jž±RíÈ73#3#67&'7&''67#ett›R&( 3:2È+2 $ 0MðÏ "73&'73#3267#"&55#'655UA <‘q   /"ªP B" ('ZíÅ"735#53#3##"''32655'67#'t ATŠ"$$   1.>ª44A :, #RðÎ735733#&''67#7&'Z8DE'%%1 ;8k  ˜56"-%#/DE KðÄ73##5'67#&'W”9/"EjÄ †h#=,SêÐ7&'3#&''67&'767#™  /” - / `Ð$,   %[ çÏ7#5##5##535335#35#ç)';;'';))§k@@ j((J777O ðÎ!73533533#3##5#'67#535#35#V#$((++%"(*#7$$¥))))+EE- #+++QèÏ%73533#3#3#"''3267##5#535#535#R>DD99C  .??22>¶2 AAQ èÐ!73#3533#3##5#535#'67#53‰OV $44;;HH9 !)Ð !!&&M߯ 7#5#'665535#&'ÜO OO&!%Æh4( 'LE2S%##bèÏ 73533#3#735#b.DD:|TTr]+Z4JóÈ #7'6553'#33673265#"&5r‡ccN% %+ ! ,ŠG#ED>,#  "  KðË73533533533##5#3#5#5#KDvŠv++..--HH[n555DöÏ 473#'6##'3267#5;267##"&55'753753noy } $   = Ï <962  6!]éÇ7#"''3255##53#735#é  d%AAÇ  …¤·,Z5GíÏ"&73533#"''32765#'6655#7#5##535#Q&  & œ¬##v! J["32%© ªŠxLîÏ$*7'673'673#"''325''67&'x   j >   ( k  ¡ "'  i  P, $"") *"]áÎ 73533#735#33535#335]97„%%9#\%%9#§''‹O(((d)))bâÐ 73#5365#35#”@€*=XXXÐ šš L..F3P ìÏ&73533#3#&''67#53655#'6t55?D&* 2@G# È'' "%#"  M ìÍ73#3#3##5#'6yiUJJLL Í "* 'D òÈ "73&'#'3'67#&''6° G-  5  ÈCbº >+'L     "N ðÏ73533##5'67#7&'&'W>@@':u  ¤++„f3!<<  E$+ -#QïÍ!73533#3#67&'7&''67#535#]9>>ER#% 385E9«""* ! (JòÅ7'67#53&3#3#535#¡ , NRk !%au3B”>.‡& ((XéÄ 73#735#3#735#X‘‘iiCCĦ€R0[çÅ7#"''3255##53#3#735#ç  dPPBBÅž  †¡´%F&KòÏ"&*7#"''3255##5'67#53673#35#35#æ  P #2Vb PPPPh  *n   #0SðÏ%73#3##5#'67#535#5365#'&' "((.% T .   Ï*EE+*Q**e  H ôÑ!'-7&'3##"''32655#'6765#'67&'¥9—0   (    Ñ "n i9' >' $ " QñÈ '73#3#535#33535#"&55#'567#33275Q 6-’,1D?j   Q È‚‚ˆ 17 (,3PìÎ73533#3#535#3#735#PDDD9†9DwwOO´?L&G äÊ '+73#"''3265'3#3'67#&''67#3#Ñ   Z.+B 5    ]ʤ ˜ d&J  6uFáÏ!%73#"''32765#3##5'635#35#w^  SC6  ####ÏvYY ^ 77KñÏ "(.73'67'6773&'3267#"&57'6'&'€6 , &    3 n  Ïb8$+KN=  –   ^æÐ73#"''3255##5363#735#’I  `( <<Ð Œ  t‘¤,W4[ãÏ"(733#"''3255##5335#35#'&'7'6•8  Z6"ZZZZ x Ï5r  ,‹':g   NëÅ $(735#53#3#75#35#"&55#'67#333535#W,55+ŠN*c Kcccœ……R!" !aI ôÌ573#&'#5'67#535'2#533#"''3267#7#'66Ø  E6# (& $7D5@n '   , ( Ì  r+  NðÆ773#67&'#"''32655'67&'5'67&''67#W9 ' ,## %  )>Æ        N óÐ.47&'3533#67&'#"''32655'675#&'Ç  `>DD     " )>  Ð %%2( #1  I êÐ*.273673#3'3267##5'67#735#53&'355#z !8F1% &/5># _Ñ 6 32 TîÇ !-73#&'67&'6'&'63#3#535#Y••  k  "  <‹@F˜@9Ç      <$$EóÏ9?7367&''667'#"''32654''67&''67&'76'6µ  4          Ï4  &- 96( 3      " PðÓ 73&'73#3#3#3#735#PB F ‚‚‚‚XXµ ?ZéÉ#'+/3733#"''3255##5##53&'767#35#35#35#35#ZŒ5  +)?  j))=++=))=++É q ((+„   E7NìÇ73#33#537#537#35#3#735#T–RFž($15>81‚‚\\Ç,?=?IòÏ273533#7#"''32655'75#73##5#'6556P  "– ">)®!!&5 ) ,, "gg 1+ &)OVëÆ73#735#3#3#3#535#535#`||VV†;44D•?339Æ@;LñÏ73533#3#535#'63#735#t88F¥L$ ~~XXÌ OD!KèÑ:767'7&''6&'''63&''67&'767#'6‹!  4:!D8 %=   *" 7 %Ñ          F óÒ773&''67&''667#3533#3#3##5#535#535#‚K )!#0'  %  C'<??77FFBB33<Ò      CO îÏ#'+73533#3#3##5#535#535#35#33535#335PEEE;;GGFF;;E((:(b((:(¾WW33QòÈ$*073##"''3255##53##'25655##5&'7&'Q¡¡G  ” !)aÈ~  g„–~ g†˜*K öÐ26:@735333##67&'#"''3255'675#535#535#33535&'`4::     #(55II4F'''l Á""     #%  KïÆ'-37&'#"''3255#535#535#533#6'&''6Î    Gs\\fzHZ  /  (m    GB    PçÉ$(,7#"''3255#'6553533#3#535#3#735#ç  b!U!FF&&É¢  ‹C:) ,3M(23EïÒ!%)73&'73#3#3#3#5'65#5#35u+ 0911119‹ >,,,,Ò q &/OîÏ+73533#3#535#'67&'3533#3#535#_655C—@6 ]X566D™A5½*    #N îÎ4973#&'#5'67#535'23#&''67&'67#5367#Ò C2 %# .A/:[# . % '1#- Î  Q     - BôÏ#)9733#'67#5367#'6367#335&''33267#"&5r?2B0 (.=6  #)<*     Ï A0#A  K4  & P çÉ!%7#3'67#&''67#5#;5#35#çMJ\SB   ,VTÉH @2  H$$$$LïÍ)-73533533##5##5#'67#53673#3#735#Q!3$$3!$  '2;LU TiBB¼^    L'GðÎ!%)73#3#535#'66556535#35#35#á 6;;.j)8  T !FFFFFFÎrr=3 .<2#C1/M ïÆ 27'66553'#335#535#53&'73673#3#3##5#t ‡aa_3((. 0))443“ 6* 'L3"l   EðÏ)E73&'73#3#"''3267#'655#73#'63567#533##"''3255#J+&   c8? % %;  %° O"?=& ';0  Q  * 'VëÈ"&73#"''3255##53535#335#3#735#Ö   mAH//HH$$ÈH[  D\nHH7&55E ëÉ%)-373#3#"''3265#&''67#'67#735#35#33#_Of  .   " %ZZZZCUÉJL3   - ) P"M ñÏ-373533#3#3#3#3##5#535#535#53&'#535#367#W>>>H!&B99EEEE99B"H>2*>¾  7 PôÑ;7'67#&'&''6733#3#353#5335#535#'6t `:   %L>[7DD"'HH u %   ''(  UêÍ'+/37;767&'7&''563#"''3267#'67#3#735#33535#335…    +Q    Aˆˆ&&8)a&&8)Í(   D4 $0&JR21BøÎ-LRX767767'7'#"''3255'67'67'6367#"''3255'67567#&'''6á      8€E    0˜  3 Î (  5 .= 4* e   KêÈ %+73#735#3353353#''67&'&'''6UŒŒ(<Z5ÈF#####;mh     HïÏ#'73533#3#535#735#335#3#535#35#X;88H§K;'';$nr†ZZ^^à +   ?, ,b C JïÌ 77'2'6'&'7&''673#3#353#5#5335#535× 9RD< _  ?   dE73533#3#&'#5'67#535#35#33573#&''67''667#I###    !#" ..    ¼> 78>?"""A$! 0  PïÏ#'+/37;73533533#3#535#5#35#33533535#3353353#735#35#P100'Ž)1[**i*tWWWWà  FF  ( 'E) ' EðÐ#)/5;73#3533533##5#'6553&'5#&'''67&'7&'¨;€'LC*'A  R  -0Ð  .. 2& '.Eo G ôÈO7#'7655#'65535#35#73#67&'#"''32655'67&''67&''67#Œ   0Z&       !È   !$ %.Y4#W$W        M óÏ.2:S73533533533533#33265#"&55##5#'67#5##5##5#"''3255##5##5353P    0 RTtˆ  -º   $$ ''+(  ::,<LíÌ#0=73533533##5##5#3533#3#535#7&''67&''6L"4$$4"6::FœC6  \   ¾`KK\    L òÑ-2=AHLR73673#3#3##"''3255#535#5365#53&'3535#"&55#567#333535#&' "(90!!   ssi08+'=l  "N lll  Ñ   U   U 8    7 5 M ïÏ 0J73533#3#535#3533#7'75#73533#3#535#3#3267#"&55#'67#e044?‹:0 ( Q!PQ˜0  - (( /   )  ! JñÈ37;?CIM73#3#3#&'#3267#"&55'6765#537#535#5#35#3353353&'##3O3+HZ  P )  2* "30*2Z((SH13==È .  + (  . AM ðÌ)-AEKP73#3265#"&5735#'#326565#"&55353533533#3#535#35#'67' G7   &&5   %.!(%%-£*!3(( K /Ì/  &0  ES &   J éË(9?EIM73'767#533'67##"''3255#'67##"''3255##5'67&'3#735#O<  `1   - $7–   h/  3 (@@¨       $S  ?Td   ( IðÏ#'-373533#3#535#735#3353#735#35#35#'67&'X9<Ç(   :W> " !   C ïÐ-`733#3'67#73267#"&55'75#'65533#267&'#"''32655'67&5'67&''67#‰JJP?46  %$ !8}=   #&   $Ð       ='& %LA           JîÏ ,9F73#&''673#&''63#3#535#&''6'67&j(  P/   MŠ>GœC: `   Ï     #QQ     &  CòÏ -L73#53635#35#73#&''67'767#'63#3#"''3267#'67#53&'nL ))))V1       4&8,    +Ï II '-='   &0%P ïÏ6:>BFJ733533##5##5#53#"''3255#''75##535#53#'35#33535#335'#u-))-%%w   %-(.A9‡<8&&8)a&&8) Ï  k9  $ 8H CC 2 % A AñÑ=CGKQUi733673533#3##5#535#'#"''3255##5#'655'6367#35#33535#73573#"''3265#'67#f   ""      *  L  ÑB%%  4 33 !)(  ,; ^.$ M ïÑ Y73#5##53&''67&'3673#67&'#"''32654''67&''67&''67#53&' CzE  F *)D      "14%-+ #9+Ñ             F ñÈ &*773#735#3353353#3#7'5'67#735#67&'X‰‰%†¨¨{A # #!WW2   !$È3. ,     #    MíÑ !%)73#53&'3#735#3#735#3#735#35#3#œH B2ŠŠbbDD!!+wwSSSS!››Ñ %A ' ,5!AôÌ"&*.>767&'76'3'67'767#3#3#735#3673#53&'Ô  6uB6 -*@@yySS  )—$ Ê4.  " 2&   C ÷Ë"(9JZj73#3#"''3255##5##535#&'''6&''67'7'&''67'7''7&'7'''7&'7PE@    ..@FpB # e    8    F    7    Ë} h€€~  *         &  KðÓ"(.2673#3#5##53&'#53635#35#35#'67&'3#735#†L?IF1(aaaaaa 4E€€\\ÓN N   0 .L ðÒ"(.J7#53673#3#5##53'35#35#35#'67&'3&'73#3#"''327#'67#“1&=2E~L#RRRRRR  <U? 8WR  C  $~FF:-       P ñÑ !%6<IQZ`fl7&'6'&'6'&'63#735#67&''7'&'733265#"&'37''367'7&'&'7&'Ï  '  +  jj   R 47  U .   >  Ñ     !F$  .  ! ##); F7B     LôÒ#'+/3_e7&##5'67&''673'67''5#'#33535#33#67&'##'3255#&'#537#537#'6»"†     NJ  R)''''))M„E    ! xcfs3 &©&%  !        3  EìÉ#'+IMQU[ag73#76767'7''67'67#735#3353353&'73#3#3#3#5'65#5#5#'&''&'''6P—      ,4T %#   É1  "   % P C ñË#6:>BFJVl73#73##5##53#5##5&'7&'#3#'6553&'75##5#35#33533567'53373673267#"&5KPPULL $–&1 ] 30(ƒ D.X3 "     Ë#$$# ) . 7 0    ’ÕÑ 7&'6'&'67&'6 y N Ñ    ÿö”Ê 7'7537537'6'&'Ž7G +   W  % ·³±­;/ .6.88. ÿò”Ï"4767&''67&'373#'67#&''6767&'*   " 1 8?!)d %*Î     L 4! ',  2, ÿê£Å573#7#5'75#35#35#75#767#53&''67&'o  B -?    Å($˜$$[%`$69mÿêöÎ !%8<@7&'67&'67&'63#735#3267#"&553'#37#3‹ 3  6 \jjFF)  3*o?.Î    4,b W:* ÿæ™È )373#735#35#35#'33#&'6'&'67&'64XX4444445s†G      i   ÈaF & & :b   ]ÿó©Ð &73#53635#35#3673267#"&5tE   Ð bb 5>4     ÿæ˜Ï#37;?C73533533##5##5#3#735#73#735#3#3##5#535#735#33535#335 ( (88688Su2999900O0  --&L  . * ÿð¡É#+/7;CG73#3#5##5##535#3#73#3#73##53#=##53#=##53#=#w4@..@2 !!>""C&&C%%G+ e) 3+É*;;,0 ]bZ 11]Z 11^Z 11 ÿé—Ï '+/3DJPTX73353353#3'73#3#3#3#5'63#35#5##"''3255##5&'''63#735#" y/2++++3u 2!!!!!g  ]O   ::Ê   /    ? ,CR   ! eôÏ 7&''63&'73'67#€14 65*: A? 8  vÏ    yêÑ &73'67#&''6'3#5'67'&'Ÿ=S K6  %>"%  Ñ2 $  V  (  n­Ï73533#3##535#35#n'¥***Sb*k0oÿíôÏ!)-157#5#'67##535333267#"&53#53535#35#35#ë1- . …   º.!(1/'(  LLL;;;;;˜ îÎ"73533#&'#5'67#7'6'&'   ?0   MM9=%LlÿïóÏ 473533533##5##5#'67&3#3#3#535#535#q##= + EO((1t0''¶'   qÿðôÒ#'+73#3#5'67#53635#3#53535#35#35#§=EEY  &33L €    Ò:&  X9LLL:::::oÿïõÑ)-5=AEI7#53&'73#67'7&''633265#"&5'3#'3'663#53535#35#35#œ&03>  +08   ` †  ¬    !  #43 'AAA11111 rÿêòÈ#+/7;CG73#3#5##5##535#3#'3#3#'3##5##535#7#5##535#7#5##535#{p/6$&8/I:9%%E&& C C È .??. (  l lO?l lO?l lO?fÿéõÏ%;QW]7#'6553&'73533#'#5'67#'3533#'#5'67#3533#&'#5'67#7'6'&'óo ;  6   --"   !W 6»Q96 -7a %    Z!! +( /   ÿæõÔ)-159FK\bfˆ73#3#35335#535#535#533#5##535635#3#3#735#3#3#5365#5#35#"&55#'67#333535#3&'7&'#"''327#'67#5'6C $^'!0Ã->>55.. Oµ>D¾>=g<š2   #h-ššš o (   8A 31 .Ô  AA ?#$9=6 * ??! +    ’êÎ 7'67&'Z),c' ##Î bìÐ 73#'6'3#'3#7&'–NW =/” Ð  !$^WR Gÿô±Ð#)/7&'3#3#7'75#535#5'6'6'&'z  =""(+6*%% !4>  Ð= A  dvÿéóÊ.373#367&''66''63&''67&'#367zrr1   %!#  h      Ê    #L    \ëÐ 273#"''3267'67&'775#'63533#67'75#ŽQ  #  !F m#)1(#ÐF      " '[ÿé²Î73#&'#5'67#535'6©   'Î ) r_!+$d~É 7#3#3#535#35#5#~g AA É)e*) WÐ 733#3#533#7&'''67..7t*0  6  Ð 97    O`òÏ,73533#3#3267#"&55#'67#535#'6o77D/   - ')E&Ï      oÿéóÏ'/373533533##5##5#3#"''3267#'67##5##535#o++w  ,* $'sJJJ»9 "/$EP R7&iÿêóÐ;AG73533#3#5##535#'67'6776767'7&'#"''3257&'''6p4557\647   "    '1 ·)'x     1  !   HPòÒ-187#53&'73#&''6&'7#633267#"&5'3#''66€&=?"6=S + !   *&%  ²      "+*&  S÷Ò)-BHN73&''27&''667#'#5'673#73533##"''3255#'67&'‡P &%  FL  A?? A&R Ò    XA V*     Xÿè®Ð&,2767&''67&'3533##"''3255#'67&'h        9  Ë    XT Q   ŠòÌ#'+73533#3#3##5#535#535#35#33535#335Œ())%%--**##(#6#»XX48/ÿíô\ +7&''63#3#3673#53&'735#535#Œ(5<-!- 4_&HH&»&EE&\           F‰Ï 73533#3#535#'6553'#3#5#011(d)0b(Å   M .\ÿë’È73#3#"''3267#535#\4!   !"ÈK(H" ;J)bÿéöÐ "O73#'673#'6&''&'3533#3#"''3255#&'#5'675##535#"( H%+$85;;8  &' " (!35Ð      ) $9: $.?Zÿé¬Ð(,073533533#3#535#35##"''3255##535#35#^ R+   #####¶ . ) ** ÇI`  LcrII9$93  iÿêòÎ!'-39?V\7&'7&''67&'76'3353#7&'7&'&''67&'3&''67&''667#© %   MW} E   N+A  "   4Î        LM^H   "          VÿïºÐ 9733533#53'&'7'63&'73673#3#7'675#535#uS  U H  "%'- Ï:;;2X   QïÏ#'+/8BKW73533#3#3##5#535#535#35#33535#33573#&'67&'67&'63#3#535#/++''))11((/)?)ee '  *  DX$,i+"Ç :   :  :       $ añÑ "(,04873#'6'#3#3#53535357&'3#735#335335˜KS '""&e==q 'jj   Ñ +h / 0†óÏ#'73533#3#535#735#335#3#53535#%&&.m.%$ @EV//33à (  B, -fJ\ÿéóÏ*17Hd73533533##5##5#3&''67&''667#'&'333#"''75#73533#3#3##5#535#535#`$%&&%$F/     $1!''0/ +%%%&&%%%Á      1T F      ÿéôe).Y^7&'#3#3673#53'735#535#5'63&'''#3#7677'7&'735#535#5'63&'² ** m ,, &,  f &&  09 )) ";e               `ÿéõÏ159=AGMShn73533533##5##5#3533&'73#3#5##5##535#5#'#35#'35'&'&''673533##"''3255#&'i #### !+ .('+R'%F  G G À    D E "  E     *' %    ^ÿéóÐ MQU[_7#5##53&'73533533#3#3#'#3#33#"''6735#5'67#535#535#5#35#3&'#35#íj:9*#  %--D  &  "(> 5 ;;¿'(        '     )$fÿéðÏ(,04S[_73353353#3#3#3#3#5'673&'7##35#5##"''3255#&'#5'67##5&'7#35#r"6 .1****2u   :9!!!!!f   : U  Ê! ,    ? ,  CR%   YÿéöÐ]aei733533##5##5#53&'3353533#673265#"''67#53#3#367&'#'65#'67#535#35#35#5#ƒ&%%&$$] s K    .0 ;  <  Ð  '$ E. ( s+ G@4* )-!  22^ÿîóÍ #'+/37;K73#735#33535#3353#735#33535#33573#735#33535#3353533#3#535#orr/N/mAA  !  BB  !  y999B•A9ÍF* ( %K-0+K-04 HŠÏBH73533533673#3#3#35#535#53#5673#35#535#53'#53&'367#   111&j /// *%Î     - 40  -  'Wÿé´Á7#5##53'>&'¯,   Áš‰Š›'O0&  #*0 ‚ÿÿÕ•73#3##5#'655#535#35#‡K •+GG)  +++‹Ç 73#735#35#‹<<pBP"lÿéëÇ &7#5#;5#35#'673'67#&ëxDC A0 M8 ÇLL****‚% 2 ; Uÿë¤Ì73##5#'66556š . "Ì %††=3 3C8_DéÏ 73#"''3267#'67#'67#'6ˆW   /)"  Ï R::' !3)  _ÿéóÏ ;7&''63#3#735#3#3##"''3255#535#535#'2¥ " " " 0(( hhFFX 300;;   ==448Ï  )     Xÿè¦Ï /73#53&'3#735#37#"''3255'7567#IDDD    +Ï  330  kÿèéŒ#'73533#3#5##5##535#735#33535#335t+//8&"4+-Q""4&{0 ? ## @ RZÿë’È73#3#"''3267#535#Z6 "  " $ÈK(I!6J)ÿéðÈ(7#3#3#3#67&'#677'5#535ÜŽ„„„„Ÿb  &R / 5/) #(È  PM   VlÿêìÎ73533#&'#67'5#7'64–]D M# 4¯#3 -s[[? N\  lm +F-·?73#Fqq?9Ãd 7&''6w&  % 8d:Ã` 73#3#3#@||oo ‰‰`9ÿñÅa73#3##5#535#Dv1<<<<1a44@ Àc 73353#533v"€"cH9KK97ÿðÅh73#3##5#'67#535#5#Bz""%" !N$h55& 5Ìz 73#53&'3267#"&55#'6659ˆ:3   )  z (*  1ÿöÊs 73&'73#3#"''3267#'>5#6D :YO  >))[  . -ÿ÷Ãv73673#'67#&''6767';/EK1 ((g +0 e (& ,):Æ`73#3#3#535#535#Eu0--<Œ<..1`1Åv&7773267#"&55'75'75'6§68CE  ) 7:,/ÿï¾h 7##53#5##75#'#33535#u%€%7%%%%%%% UU /Z=ÿð¿w"73&'73#3#"''3255##5##535#=5994  "17d .  BB1A6ÿîÈk73#3##5#535#&'7'6@}4????5V  k.--. ;ÿóÈi73##"''3255#3#735#;   c BBiK  G/8ÿêÈx%7''6767'3533533##5#'67#-2  V#$##&% p   :..+1ÿüÐy#)7&'3673267#"''67''67&'€  & #   ~  y   7+ 3  5 6Ée73#3#3&'73#535#535#;‰>55 “>009e 1ÿïÐx!%73&''67&''667#3#735#fG '*  ) 8%jjDDx    .50ÿôÌs27&''#5'6767327#"''67&''7&'3¨   C  u/     s   ^F  #  =ÿøÇu 733#67'7&''275#5335#35#v22  /=44!!!5 u:  :)Gÿé¿}$7#67'53&'73535&'76¶]  - 1KKK  $iC$  r      BÿþÂn 73#735#3#735#KkkEE€€ZZn/.3„Õa 7'67&®   /4/ÿñÎ|'159=A73#&'#3265#"&55#5'677#5363533&'#35#33535#335xB * * !1  ,E,| 3  / *  ! 8ÿïÄ|"&*73#3#&''67&'767#53&'7#735#35#Hr8:# ' _:/NNNN|;    % 3ÿý¿w%73'67#'6673#35#535#53#bA  8 ! %%Y''';w  #    C+ÿðÔt,2873#3#"''3267#'667#53&'7&''6&'&'X*&    [      t  9 %) (      @ÿíÈz#'+73#327#"'#7'56'#55#35³ 4- 3. C,gtbPPz       ; 1?? 3ÿïÉy%)-373'33&'73#67327#"''67&'#3#735#'64M 4      O@@+$&f  % " 1( 8ÿéÇ#973673#5##53&'7'23&'767#53&''67'¹ #  k @"& ) D\  )  !! &  7     5ÿéÁƒ!%).73#3#3&''67&'7#535#735#35#35#67#Cw:<>:>>o0)55;ÿïÉ~ $73#3#53&'#53&'367#3#735#35#‚6&Ž$6*$jjEEEE~ ) $E* '1ÿðÌs%+7&'73#3#535#535'635#'&''6F ,,"W",,!/33@   s  55h6    5ÿéÉy!'+173533#3#&'#5'67#535#35#&'735'67>BB7. ! &+4>"" 0%n  7  **7 1  1ÿðÇ{!%)73533673#3#5'67#535#67#35#35#E*! 46c#87*E @@@@m   J6    6,8ÿêȈ$(,047373#33#&'7#'67#535367#5#3535#5#=:7<8/ (  &)5jOOOOOOO} O  O 1ÿêÅ"&*735#53673#3#&'#5'67#735#35#35#7@2*82<0 % #. RRRRRR!Q  Q  $ Q  >ÿðÂ| &73353353#3#3#735#3673#53&'F! s llKK"„!u &  6ÿðÈ{"*.2673533#3#&''67#535#&'7#23#53535#35#35#F/11>$ 17'9/T H ’ #"o      # &&&.ÿðÔu1?73'67#'6'3673#353#'67#53365#53'&''66˜/ ! Q  ""  $ o   u     -  - !  3ÿêÄq!%+17=7#3#3#3#"''3267#55#5#5#&'''67&''4'½1))))8  n6%%%%%GQF q .T        0ÿñÅ6:>B73533#3#&''67#5365#73#3267#"&55#'67#735#35#35#7 @J  ((((((j     !V"  %& = " " 8ÿðÈy+/73533673#5##53&'3#3#3#535#535#735#U  l Z$339622$88v   ""('   /ÿðÑ8<@E73#&''67&''667#'367#533#63#5'635#35#35#675#—/       m*);  9           = G ' * .ÿïÌŒ-AGM7&'#5'6'3#735#3#"''3255'675#73#"''3255'675#&'7&'|"! H 19!qqMM$D  4JD  4< S Œ    8   8       5ÿéÊv #'+/73#735#73#735#3#3##5#535#735#33535#3359@@ =AA!!W8BBAA7%%7&]%%7&v# # 7" 9ÿêdž&*.26733673#5##53&'733#735##5##535#35#35#35#v  j  "XX77YU!!3""3!!3""† (( $ DD # 6ÿìÉ~ 2673#735#3353353#3#67&'67'5'67#735#A~~!u’’t1     #&RR~%  !   /ÿóÉ…;AG73533#3#3#3#3#3#"''75#5335#535#535#53&'#535#367#'&'c(''.*&&--/30 #'**&&)/(&F   z   2?   , EP¹c73#Ettc;ÄŽ 73#3#3#Dxxpp ‰‰Ž O"­73#735#O^^66_9?¿‘7#53#3#3#535#53t/r/++7€5**"&&<ÿüÀ§%735#53533#3#3#"''3267##5#535#F+0066//=   )55+n+>>8ÿ÷¤733##5'67#53&'u77 *8.  ¤%vg0 .( < ÄŸ7373#'67#67'7&''6C+>C&F  "&… :$$,-   R­ 7#55#35­[H55ww2 !!=ÿþ¼£7&'3#&''67&'767#}  (y% #R£  !  ; ħ 73&'73#3267#"&55#'655A53|\   $ ‹  F >  :É™ !7&'&''33267#"&5''6~  C  <   ™ H G' Hÿõ½“ 7#53##5#;5##;5#x0u2-ff8*@ÿòÁ¨"7##5##535#53&'73#3#"''325¤.575:0   P^^@Q > >ÿö˜7'75#53#7#55#5#75—Vz,,,,[V&#7á*73533#&''65#'&'333#"'&'75#h%%     # 9 (* }$$   . -?  1<½¡7'7&''275#53533#535#35#ž,:-----&#AA!2I ·œ 73#735#3#735#SYY55nnHHœ?=C!4É 27&''#5'6767327#"''67&''7&'3§  > q/    pS   %  5ÿþϦ $73&''67&''667#3#735#f? & $!&   !  4ffBB¦       K>Lÿö¹¨%73&'73#67'735#35#67&'L*%Q  ????  #‘  T1 p3(  ?ÿöÁ¤167'23#5##536'&''&'3&''67&'#367² -@5* _V  T     ¤ ##    ;   HÿõĦ$(,073#327#"&&''#67'56&53#735#35#§.(    . 2 aa====¦    J :M-- ;µ§$7'673'6735#535#53#5673a  @  >L#5p€  T^[  1ÿ÷Σ,2873#3#"''3267#'667#53&'7&''6&'&']%"    Q      £  J46 ,7  !'  6ÿì¦!'+173533#3#&'#5'67#535#35#&'735'6<;882&  !%2;  .   ’ D;:D B'  ''   6 ÆŸ &,73#3#535#535'635#'&'&''6³ (( P&& $,,4   Ÿ<<}a    $ 9Æ«!)-157#535#53533#3#67&'7&''63#53535#35#35#j*7,,,,8@  ,1^r      /// ;ÿòĨ!%+173673#33#53537#35#35#35#35#'67&'E-6<4‰(<<<<<<<< @ ˜WW      7ÿøÊ©/5C73#67#'6'3#753#5'67'53765#536'&'&''66›# $    !' _  ©   '7% .$ '  6 %7ÿøÈ¡8<@D7'673#&''67&'767#5367#533#7#5'77#335#75#ž %      g +';   )s )2    # I!Q0gÿéóÐ73533#3#353#5#5335#535#p266>> e;;2¦**$W@\ P?W$ZÿóòÆ&,73#3#"''3255#&''65##535#33#fŒ9.    +A †˜Æu  `  )|&ŠXÿéóÐ 47&''6367#53&'733#3#67'7&''67#¡& $ # 3= P. $ v ŠJ!  /5*Ð !W        YÿïôÐ?73&''67&''667#35#53#3#3#3#535#535#'6F  $( #   8"Y#7722?–C//'Ð     P YÿïóÐ!73#35#535#53#563#3#535#”$$\&&%9„…:AšE7Ð rh‚,,} îÎ!%)73673#3#"''3255##5'67#35#35#†4=H   0  #0000³  j  )q :4MÿíóÐ77'67#5373#3#3#535'67#5373#3#3#535‚  # !+KRW1;Š<# ,!+KRW1;Š<   t   NÿéóÐ"(.473533##"''3255#735#35#7'67&''67&'j211   1QQQQ [B b†JJU0 -23r  Ž }îÐA73&'73673#67&'#"''32655'67&''67&''67#… +        "«             u óÐ-1573673#3#3#535#'67##53#"''32=#5#‚?GH &^&   $W   222À ‰bQ +  VÿêðÏ 159=CIOU73#7&'''63#3#3#3#"''3265#5'65#5#5#&'''67&''&'•, : [ R2....8  pG&&&&&B  L F  Ï9,      0 G(        ÿéuÏ*0673533#&'#5'67#3#3##"''3255#&'''6**    !UU e(  *T  5  ¼  $# 6=  9  ÿéóÐ%)-73&'73#3#3#3##5'65#5#35#H=  HPFFFFW° )SCEEEEÏ !!"‡ 0&!2!!4"ÿêòÐ#'+/5;73&'73#3#3#3##5'675363535357&'''6µ *GI>LDDDDPª >)[FFFFF8n ¯  zB9 F##°  \ÿéð¯#'+73&'73#3#3#3##5'65#5#35#! $*$$$$+b!5$$$$$¯   x ("+,2ÿéï#'+73&'73#3#3#3##5'65#5#35#\. BD====H‘H77777   W!#˜ñÏ73#5#53733##VGG@HHÏ7 ÿéæ>73353#"''3255##5## N'Q  +N'>&&= *''Eÿèí¨<@DH77676767'67'67'6773&'73#3#3#3##5'65#5#35#(   = + N  &+####+c5%%%%%l (F$ &$)   u !"**ÿéê› .26:73#735#'3#735#3'73#3#3#3##5'65#5#35#Š\\88‚]]775UQGGGGU«UCCCCC›//$    I    ÿí†Ï !%8<@7&'67&'67&'63#735#3267#"&553'#37#3& 0   0  PYY55!-& f>,Ï       2.d U:* ÿéîÓ*26:>Oae7'67#53367353#3#3#3#3#5'67&'7##35#5##"''3255##5'673'7&'#735#. 1PZ QSIIIIZÃa 9AAAAA¬  §3  ;  `<<•      7     > *CR.    ÿçõh#'+IMQU73&'73#3#3#3##5'65#5#35#73'73#3#3#3##5'65#5#35#- O )h"&!!!!*Y*g   F  [  A  "ÿéÛN 73#5#535#535##¸§§žž¦Ne  ÿçõd#73&'7&'#"''3267#'67#5'6T m 9  : M D '2b% *3  $  ÿéóa#73#&'#'67#5353533655#335ÕX;FRA]ML6:L=T( &( ( (  ÿæñl  7&''6&'67#53&'|/8 56*8 L& g‚!-l   5   ÿéóa73533533##5##5#35#35# *h,,h*>hhhhOTT< ÿêód)-73#"''3265#3#32767#"&55'6358   „h]1M  Y? Jd;-   4  ÿéîd)733'67##"''32655#'67#53'767##·B9 "B 9!T[ —d   ( $#  ÿçóx773&''27&'767#'636733#"''3267#'67#Uo!2F*)>"/ c 'ES E; (7x      B!   ÿéón 73&'73#3#3##5##535# eiæ ¥¥¥¥¥]   00 ÿéõc473#3#535#535'2'3333#"''67&'767#'7#Ò<<3u/88)4‹B ZC=a    )c      ÿéóe$(7#3#&'#67'5#'665567#'3#é¶¶ "R  †= U‘‘e#  0( 1" 3T 3Uÿéï` 73533#3#"''3255##5##535#UCDD<  )&9CT - ;;0Aÿïï[73#3#3#535#35#'6'&'1žžÈCMÞK?R W ‚  [////    ÿèìl#'+73&'73#3#3#3##5'65#5#35#:;TSHHHHV­ YCCCCCi  H ÿéów4973&'73#3#53&'7367#3673#&''67'67#67#\U6=Û8@‰J†8 &) /))L = ; ;| F g .     ÿéó`&,287&''6767&''3#3#"''327#735#'&'&''6Û$$}C/1  1+1(  - #*88  C. (+       _ÿéód733#3#5##5335#ŒTTGc-ccdG G. ÿêö`,73533#&'#5'67#73533#&'#5'67#,)) "t&.%  N  7A#ED Yÿéëk7#"''3255##53#3#735#ë  lVVNN,,kk Vq‚ . ÿéâa"&*73533#&'#5'67#7#5##535#35#35#*%%  "ÏDDDDDDDO  7> " t t *,ÿêæW #7#5##535#7#5##535#7#5##535#RpsWmmN=mmN=mmN=ÿéöh .77&''6'3&'73#7&''7&'7676773'67#²  *Œ($`¢4*5   .Z# Bh     2 #ÿéçz!%73#735#3#&'7#'67#735#35#35#.¡¡{{°7$# '' , !/ ( ;ŠŠŠŠŠŠz! H    3   ÿéès )159=A7567&'7&'773#"''3255#'67##5##535#33535#35#6   / Rf + %"Y“??QB“??QBB>*   $  +II (ÿéór =7#5##53#3#67&'#"''32655'67&''67''67#ä¥#††(×h  ).   2? B3,6 5+2.Hr""          ÿêòt39?7'63533#&'#5'67#73533#&'#5'67#7'6'6Û! !º   J   „% #0 .t   G@  HB   ÿêõpGa73&''67&''667#'67#533'67##"''32655'67#53&'36533#"''3265#'67#•G    + 8o B[#   &0 S'2   "/ '#p       . $ -(    ÿéòq#'->DJ73533##"''32655#'6553'#33#7&'3##"''3255#&'''6—4   4foMM>IIl  bY$ #K  7  [F A' $7)        ÿèív $(F73&'73#7#"''32654'7##53#735#367#537#"''3255'758‚Ü  (jjGG Rp $  ?i! #u†# 2    ÿéòo (.4:@7'6'&'3#3#535#535'67'67'&''&''&''6à>NKq ¸ #IIA”@II=A2 2G * o  #          ÿéåq #04875#53#5'675#53#5'6'&''&'3#5##53635#35#`K]%.N`!)  j WT‹F9‹‹‹‹P9  :     GG! # ÿçóx#'+17735#53#3#3#535#735#33535#335#35#'67&'4&¶+99@ã>4 ??R@’??R@*CCC '/ *e3$ "12 <<   ?   ÿéíx"&1>D7&'73#3#"''3265#'67#735#35#367'5#&''633#;  GnBX  U  LLLLo5  $  *?Px  :4   # J  E   Tÿîów'+/373533533#3#&'7#'67#3#5#535#35#35#35#\F+  $  !uˆ&FFFFFFn 4   "04    ÿîòu)6:@767#533&'76767&'#5'7&'3#3#53&'#735#367#*  C[ G   b" # ” <Ó:pp6J]       )  ,  ÿéót26GKO73#&''67&''667#'3533533#3#535#35##"''3255##535#35#¤=      &–|(?  =====t        B T  ÿéòm59AE73&''67&''6267#'3#3#67'275375#735##5##535#’A !!  6}Q-7"--¯666m     3 /-899 9!ÿéö€3V73&''67&''667#'#"''3254'7##53#3#3#3#535#535#'6735#‰L +"%$  <&   aV"6633A•B--' "€    " #}6      ÿèøs7;?DHL7&''33#67327#"''67&'#7#5'35#53&35#35#675#'3#735#ß$2/    .-/ šy>>>>>``<OSW73&'73#3#53'#37#733#3#3#3#3#3267#"&5535##"''3255##535#35#*+r(%QUUMNKKKKGG$ -' NM ;;;;;o       MA  R ÿíòq #0<73#735#73#735#73#735#3#3#535#&''67&''6<<;::<<<¥Ò^gæla-  ~ q(  (  ( $22       Bÿêîr %AQ7#'6553#&'#5'67#535'673#&'#5'67#535'63#53533533ì‰O   Y    8Œ+r1) &8               V  ÿéï~!@DHLRX^d73#3#3#"''267#533535'3&'73#3#3#3##5'65#5#35#&''&'''674'¤2P\\Z  Z ???£H%› $"~2 ([ )  P        ÿéï~!MSW[agms73#3#3#"''267#533535'#5#3&'73#3#3#3##5'67##53675#5#35#7&''&'''674'¤2P\\Z  Z ???Y&  I 'ž  &"~2 ([   B <            ÿèóÏ(,073533#3#3#535#535##53#"''3255'#335#\^^VVjæhTT\%¯  O88O;À’5u]  / ÿèóÏ(,073533#3#3#535#535##"''3255##535#35#\^^VVjæhTT\À  ‡‡‡‡‡ÀR]  &u / ÿéòÏ73#5#535#535#53733#3#3##ZMMAAAA5GG>>OOÏå0+*''*+1 ZòÐ73533#3#535#'63#735#<.YYiåh> ±±‹‹Ð  9,5ÿéó£-=M73533#7&'#5'67#73533#&'#5'67#35#535#5353#5#733#3#3##;     W"&   ]?::;;?cCCAAFF–        "" y mW 2ÿéóµ"&7;?OSW[_c736533#&''67#7&''3#735#35##"''3255##535#35#3#3#5##537#35#35#35#35#35#œ&"   A  ‘UU4444I   ;;;;;Ád]‰>JuQ??????—  .  *. ;' GI=)))BÿéôÐ!EIMQ73&''67&''667#3#73533533##3#3##5#535#535#5#5#35#335‹I' ( *>R2!88AABB99#_2&&9$Ð    —i  (  (  0 mÿèôÏ'C733533##5##5#533673##5'67#33##"''3255#53567#Ž  $EK   3C ""  && ,Ï4  nS * '   eóÑ"-?QV73#"''3255#&'7#'67#5353635#&'7#733#"&55#'665#53&''67&67#<.     7  ¦    c  ## - ÑI  (.    =  aÿê±Ð /73'73#3#735#367#"''3255'67567#b O@@G     2¹  31   SÿèòÈ159=AGKQd73#3#3#&'#3265#"&55'67#5367#535#5#35#3353353&'##3'&'333#"&'&'75#‡e*1 -#   %%9    /)S  ('1  È2  $  "2$J ‡QY   K ]†Ð733#3'67#&''673E..*!K B9      Ð  *   ÿéöÑ ;Ag7&''67&''63'33#673265#"''67&'#7&'37533#3#3#7'675#535#535#536  J _˜87    šÀ  ƒ**''++>B''$$&&Ñ     70''""$!?B  =vt XòÏ (<73#53&'67#5&'67&'67''3#"''3265#'67#€dßf   A"   " ‹J  Ï    +,   $ 5/! ÿé…Ñ +/?EI7'67&367#53&'733#3#5##535#5#35#"&55#'665#333535#M $ N9 ?" ! F!$= F   8 FFF·  5    dd5  =  ÿèƒÐ47333533##5#'67#535'67#&'&''6A2.  ?*    Ð 5%%BB)!6     ÿéxo 73#3##"''3255#&'''6XX k+ -X  9 o9  6  ! KÑ 7&''6&'3'67#@ %M  7Ñ    ÿñÇ %73#735#35#'75327537'6'&'[[5555N/:!R Ça8=y SPOLE ÿì€Î"(8>7#53533#&'#5'67'6'&'&'3653#'67#&'3#,// I @  WK-14 *  )K //  #Q    b    #  TñÏ&*.28>D733#3#67'675#5353373#3#537#35#35#35#''6'67&'C&* B /7w40h&1EEEEEEi  † /Ï  %$%DD     –ñÇ!735#53#3##"''32655'67#'ª 3Y   !®!//H 2œ!ïÎ 73533#3#735#œ$$ O((yU'X6ƒìÌ &*73#"''325'3#3'67&''67#67#73#Ý  U>&    *̦  šY#  1=3s‹ðÉ 073#735#35#3#3#"''3265#'67#'67#'67#›JJ((((b<>   &      ÉC) % $;#, #  —òÏ473#35335#535#53#3&''67&'767#535#56®  $!    ?!% Ê PPU        N’ôÏ(,048<767&'767#53#"''3255#'7&''563#735#33535#335±   2  YY$8$Ï ) A 0*  EWS03ƒòÉ #/5;A75#53#5'6'5#53#5'67&''&'&''6'67'67'6Ü. *. 0   -   6   " " !* " ŸII   (         ! ôÈ 06<73#3#535#5#35#3353353#3##"''3255#'67&'Žb]6    HUU g)  , D È11$. ' $   ÿçrÐ1FLR736533#&''67#7&'3533#''655#73533#&''67#7&''&'#&)    G<   2     * & ¯  /  ~   #   )0    ƒõÎ!'<Q7&'36533#&''67#&'7&''33#&''67#53#3533#&''67#×  @'*,  !#/ =   E   Î     +          …õÐ17;?EK73673#67&'##"''3255#5'67&'767#3&'#35#35#&'''6‹",   " %%%%/ * ¼   -% #,   ' & !    …ôÇ'-FLR73#3#3#535#535#73#3#3#535#535#&'3673267#"&''67''67&'‡. / 4-/         V  ÇE  * , ‹ñÏ373#35335#535#53#3&''67&'767#535#56§ #,*     N)*È VVU    Q ÿîÐ"8LR736533#&''67#7&'&'3533#&''655#73533#''67#'&'*,/  #&Q   Z  7   ²    .  W     "  )-  v òÍ,?EK767&''6''6367&''67'367&''67''67'6°   1 ;    :     =  Í      / ?   0   -      ÿçõÑ6AEIV73673#3#3#&'#367'5'67#5367#537#53&'#3'73&3535&'76U= 3pkrˆ+z#  1@;DR7jR32 kggg  $5 Ñ    @ _  U       aðÑ &,287&''6'3#3'67##&''67#3'67'67'6´  %†`24%+ > (    !% *,0 - 0Ñ   #        \ÿé¶Ï !7'67&'#5'67&''6|  '   $  Ï )  ! |_   ' '% #‹ÿèõÇ )733#5367#3#3#&''67#535#'6œFf=3=!(&   ! (*Ç 4 #" Oç±!%)G73&'73#3#3#3#5'65#5#5#'27676767'67'67'67(/****1s . N   C$ ±   . ,%     aòÏ)-15I^733#3'67#732727#"&55'65535#'3#735#3#3#"''3267#7#3267#"&55#'65Ÿ77; &   'pJJ&&b;8  ; Æ   Ï      '#      ÿçôÌ +GKOY]ags7#'655&''3#735#35#36533#'67#5##53'#67'5'675#353&'73&'35357&'67&'ñÁÀ   •TT3333K(*5W 1+ z /!55(.2'.hhh  " %'ÌUF7 7?a  )   4 @-* @2 : !d  l  Sÿí£Î(,073533533#3#535#35##"''3255##535#35#X  O  )    ²8g (z"1kêÐ"&73#3#5367#53&'73635#35#35#Á#61j$4"   2BBBBBBÎ zz  V55kÿê¢Ð 7#5'6  Ч 'oÿéóÆ37;73&'''67&'#367#67&'7&''275##535335#335zl!     + -<,,,Æ   R?   "O.nÿéïÏ/3733#3#3##5#535#535#533#3#5##5'67#35#©00))3333))002xCG7 !)77Ï g I + A ÿçõªCGKQUY]cio73533533#3#3#&'#3#3#3##'3267#&'7#5'67#535#535#35#35#3&'#5#5#5#'67&''&'-!=%%$$@9$ 6AA@@\  '   u  (2<!3====ZB"55555  ]  ¢    & <  !      còÏ!7733#3#67'675#'67#53533'#"''3254'7##5 //@= 3Y2   D  Ï     !!"  Wg ]ÿéóÏ?EIMQW]ci7'#3#3#3#"''3267#5'67#537#53&'73673673#3&'#5#5#5#&''&'''674'Ï ((((7 g *+  =J) @2  )ƒ    . B               ÿçéY $(,28>7#3#3#3#"''3267#&'7#55#5#5#'67&''&'Í=??GGY   " {K77777  h Y  " J       mÿéõÇ (Ea7'6553'#333##"''3255#5357##"''3255'7567#5373567#533##"''3255#Ž vRRHO %%  ++7%  / * ˜4F5 4@_/ _    _ÿë«Ï 073#53&'3#735#367#"''3255'67567#…L ==@     (Ï  -50  gÿêõÏEKOS73533#3'33#673265#"''67'75#535#53#3#6767&'#535#7&'3#735#p((  $H R"m  _CC»44/2!    %C   =+ fÿéðÇ#9AEIM73#3#5##5##535#3#73#3#73#3533#'#5'67#7#5##535#35#35#rw29'(:3=C C!!P   }Ç /55 0 &  <4w w,. jÿéðÏ (,04DR[_73353353#3&'73#3#3#3#5'67#35#5##"''#5'#5673&'75#&'325#35#u!w*+''''-r 5"""""b 2 "VV 5Ê!  .    >   )R%      ÿéñ\!%?CGKQW]ciou{7#3#3#3#"''3267#55#5#5#7#3#3#3#"''3267#55#5#5#&'7&'''67'6'&'7&''&'7&'}&!!!!(  V.Å&!!!!(  V.@ | «  w  = } {~\   (G:   (G             cñÏ06733#3#67'675#53533'#"''3254'7##5'6ž//@< 3Y(AB  g  Ï   !!"  Wg3   ÿêòª;?CHL73533533#3#3#&'3#"''3267#737#5'67#535#535#35#35#3'#3#/%2%%%%B- (  ŒNX #0@%%%72222fF3€€Ÿ     .     ' *?aÿéóÇ (Ea7'6553'#333##"''3255#5357##"''3255'757#5363567#533##"''3255#ƒ~YYNU ''  --<( !2 -  ˜4F5 5?_/ _    ‘ òÏ!%)73673#3#"''3255##5'67#5#5#˜,3 7  !  A!!!³ k  ,p ;"rÿéóÏ=CY73533533##5##5#3#673265#"&55#3'67&''67#67#3533533##5#'67#w  r!         ½      ; ,   # H** fÿçôÎ!26:L73673#3#3#535#'67#'&'#"''3255##55#35'333#"'&'75#”4::!M   |  '8''m&$ )+ ½    HN  a  !U EÿèíÑ"&*.27#53&'73#3#"''3255##537#335#35#3#735#@-aa-)  «*kWWWWWWWppJJ¬ P]  HctP 006ÿéò@73#3267#"&55#'667#ÜH & -+)B@) 0 ÿìõR*737537#"''327#53267#"'&55'717R  <77D$4C #L )-*&  ' ÿêóO $(73#3##"''3255##5#535#53535#35#Ø   ŠŠŠŠŠO   * ÿçòS$7#5#'67##536733267#"&5âM 2/ N=U "  . E*& .+ % ÿéàS73#"''3267#'67##5##535#Ç  RN<HÆ“““S $77 ÿîóP73##5'67#&'3#ÛS "?O#m†/*-,ƒååP/"  $ ÿèó[(-73673&'73#3&''67&''67#67#FJ  Šw"# /''2 '-<]H      ,  ÿéóV $(,73##"''3255##5#53535335#33535#335Ù  ŒNO;;O=Œ;;O=L4 4  %  ÿêõg,073#"''3265#3#;6767##"&55'635HŠ  h`1,U* ( Mg7 "*  4ÿéïl#',7533'67#3&''67&'#'65535#67#ƒXB:#+ 1%$*)JJTS_  ! !0%<  ÿéôT73#7#5'75#35#35#75#Ú',.¥,%8iiiiiiT6 ? " &UÿéóU73533#&'#5'67#^:=," &! +> "?>#ÿèól973&''67&''667#3533#3#3##5#535#535#\n&.?133&$ + \)LJJRR^^__TTLl   ,    ÿîóX +7&''67&''63533#3#535#@ $ƒ  %–WXXiähWX     #66ÿèçm )-73#"''3265'3#&'#5'67#535'63#Õ T51  &48'6Omk _33Mÿèîl !'-73#5##53'3##53##"''325''67&'‰\¶kAB_Ð^  ' % "r# ""l %$ (      ÿêê`0487#"''3255#'65535#35#7#"''3255#'65535#35#{  75555¶  75555`^  **+ 6^  **+ ÿçíc+/373533#3#5##535#5#7#"''3255#'6555#350.."7'0S7Á  <L::NA A7QV  ((  ÿêäh ,04873#"''3265'35#53533#3#&'#5'67#735#33573#Ñ  ¶5>>::33!  ".""5 $he =   )  "   J ÿéô[0673267&''65'3#&'#5'67#535'6'6«  " & 4>(#   (./D  [' #%  )'    $ðv/732767#"&55'67#535#53533#32673#Íz ,5 A8.*#KF//22 8 ?c9J      ÿéòm59=AEI73673#33##&'#5##5'67#535#535#535#53&'5#3533535335X7AL9+& %&& "(5II55F=G&&'_&'l    &&    ÿæòv"&,273673#33#535367#35#35#35#35#&'''6]VZQâGY ‡‡‡‡‡‡‡‡b))((H ) &l J J  ÿçðl  &,7#5##53'73#3#535635#&'''6ë¬g& 8EŽ4Là&N:GGZ&% &&A* &a!! /3   ÿçór-15733533##5##5#533#3#&'#'67#5367#735#35#R?;;?BB%¨Km_;H#G 6L`K„„„„q2  ÿçóh(,9D733533##3#"''3255##5##535#5#53#3&'7&''67'7''6GR662`  NI[200dRR_    h    h 4 "44:H  ;        ÿèñt -573#735#35#3#735#335335#53&''27&7#327)®®ŠŠŠŠ"ÎÎ--?.+™²$5+0@/#ka t-# *    ÿèàu!)-173673#53'3'735#336735#5##535#35#^9*À5DV€€€€€t55+    /@@  ÿåïg $*0673#3#537#35#35#35#''6'6'6&'''6dŠ>5t+8PPPPPP1 .& .* 71 "  gNNN         ÿæôm 4873#735#3353353#3#67&'#67'5'67#735#$··##5&&¼ææª=   N   ††m!  !    ÿçô€ %-157'#'63&'3#73&'735#336735#5##535#35#‡+8«K AaÆÆ" HZ  ŒŒŒŒŒ€   -    (43ÿèì !%)-39?73#5##53&'3#673#5'675#35#35#35#7'6'67&'‡`´d?‘>+" !)A¢7,?~~~~~~ *+',.V*%''  @5*C T  ÿèó}  $/7;AGSZagm7&''6'&''6'&''63#73'67'727#3353&'7&'73327#"'37'737''&'7&'  5  5  ½½!6&v…"MQeV2  œ/9 N-:/V}  2      :) 2) "   ÿéõƒ FJNRV[73#53&'3#35#53#3#3#3#&'367'5'67#535#535#535#735#35#5#35#67WÖjXW7V2??55D" "H$  6,_D66@@.44f33777-  ƒ     &       *  .ÿïÒs9=AF73#&''67&''667#'33#7#5'75#5367#35#35#675#*       e<  2-s        )  6@& # ' +ÿôÐ;CGX7#3#267#"&55##535#535#5335##535#535#5335#53673535#3567&''7&'Ê177* 4&--'5 4&..'5 4%  0kK(   |A     %     ee %))   OáÏ!'-37&'7&''67&'76'3353#7&''&'&'?, €ŸÅžbNÏ   ]]oY    !  ÿéóÐ4JRXj†Œ’˜¤73#3#353#5335#535#'63533#&'#5'67#'3533#&'#5'67##5##5&'7&''67&'76'37&'3&'735&'753#7'6'6'6'33#7'n, G   B  œ  äÀG $    C (  m® +%" + .! 6 8§NNO1+ Ð     "   " 9$$       ;;        ;ÿèêo ).73#3#735###53#"''3255#3##5#53367#;¯¯ff ¯    **$#o $ -6E6  $  róË!I7#53#3#67'5#'67#'73657#53#3#32767#"&55'67#'7365F/f%*   %  n+e(-&      ¼          ‡ðÏ#73533#3&''67&'767#535#‡+++!    E%+®!!!!    !ïË73##5#'6556à $E  ,Ë  ii/ E#‚ôÏ73533#3#&'#5'67#535#‰&$$+!    !-&¯ $&SSƒ ïÎ(.7#67327#"''67&'#67'53537&'í-     ( ­%"("  ,0a }!! ƒòÏ%+733#"''3255#'65535#5#'&'7'6±"  1 $111  _  Ï4u %J&'~   wìÌ!%)73&'73#3#3#3#5'65#35#5#œ ^ ,Ì  d"+HðÌ%+73533533#3#535#35#35#35#'67&'‚%q"%%%%%%9  ¸XX55+  † ëÅ 07#"''3255##536735#&'#53&'73#3#ë  B#B (Å   Qn¹: *  U€óÅ573#3#"''3255#67&'7&'#5#67&'7'#535#€s/+       ,2Å‚ l;  !' +=  "(-˜íÐ L73#53&'&''67&'763353#3#"''3255#67&'7''67##5367#»*l/    8=*1  %   $$Ð       ,,;?  ,  AQ ~òÈ 06<73#3#535#5#35#3353353#3##"''3255#'67&'~s# l"@ Tbbr/ 1 G  È77(4 !    1ÿè÷¨+_dins73533#&'#5'67#'3533#&'#5'67#3#67&'7''67#32767#"'"&55#'67#536367#335367#335”!&    Z     IS!    .8 -0:-14D;~(-?B         !@   !   $' @  # wõÎ8PUmr73733&'33'73#67327#"''677&'#&''67#7''67'6776767'7''67'6776767'x -     (      X      _!NV          E          {òÐ-F733#3'7#75373267#"&55'65533353673#535&'7«..3 F     %   ]  Ð      & !3K;;    'ÿèö²#'8<@jnsx|‚736533&'73#&''67#'3#735#35##"''3255##535#35#3#''67#32767#"&55'67#53635#335367#3357'7#—  $ [SS3333I ;;;;;s  "( KC;55H803F; –    +++ 62     !2  YóÐ#'+?EKQ73533#3#3##5#535#535#35#33535#33573##5#'66556'&'&''6?'++%%''&&##'$9$Z 8$¯  "  Ç 4  4===+ !      KÿçôÏ&,159=AEKQW]7'673&'33#5'67'67&767#3735#33535#335'3#7&'''67&'7&'ƒ > $,(s    3 ).1O1‹–  _  05œ    D9    : & & t›  hÿéºÍ73#&'#5'67#535'6±   (Í) i\")% ÿæ÷Ð.<AEIMQW]ci7#'67#5367#537#53&'73673#3#3#&'33#5'637#35#33535#335'67&''&'7&'§B8 %8K.        nÿéóÎ )157'67333#"''67&767#7#53&#5##535#…  #&.   C :::… - -    /i# LUU5#bÿè÷Ð +177&''6'3#3#"''32767#'655#53&'&'&'Æ  -($   L Ð $!$1%g  @L- 0G-g,kÿý À 7#5##535#35# À¹ ÃM<Œ?gÿêœÎ73#3#5##53635#5#y$$ Î MW ÄM-++`ÿé Ï73&'73&'#5'67#e  '° ) iZ ?dÿìòÏ#'+1B73533#3#3##5#535#535#35#33535#335'&'333#"&''75#“%##!!((&&!!% / [  #&!+  ¼ZZ48\Gd  U`ñÐ+CI73533#3#3#3#"''3265#'67#535#535#73#&''67&''667#(00)).=8  -  !.$$(ŠC    +Ç           @ÿç­Ï !%)-17=CI73353353##53#33#5'637#35#33535#335&'''67&''&'NUT,$W   #5# B ? Â,, 0 G3  ! )        œÿé÷Ï39?73&''67&''667#3533##"''3255#&'''6¹%     !  !G  +  Ï     !  BB ?  ^óË>73#67&'7&''735#35#73#3#3267#"&55'67#'7367#XF#5555Ti#-'    % 5Ë?J ! &      Œ õÂ573#67&'#"''32655'67&''67&''67#b&        )         h‘ïÑ73#&''6'3#&''6½& 7! Ñ     kÿèóÏ@LPT73673#3#3#&'#67&'7#67'5'67#535#535#53&'3&'73&'#3535– 4..6        5--3 $888Î    7    Z    q   ÿðô!%)7#5'673'3675#'#33535#3#Õ¢ 3FH A(6000066wàà_QA!   /.pÿø¤´ 7#5##535#35#¤´² ¼I8ƒ:7ÿêò¶!'-3973#3#3#"''267#5363535&''&'#'674'€Gw““Ž ,ddd   >  2¶ G  9 #y  R /ÿ꿬#'-39?73#3#3#3#"''3267#5365#3535&''&'''674'@y93Xddh   g$-FFF   1  +¬> 2 n   K    ÿêŒÏ8767'7675#53533#"''32765#'67''67'67676A    *    Œ=" "@,,Ž &dx/  +!74  läÏ &*73#"''325'3#3'67#&''67#73#Ñ   À†KD!P E ;  &’ÏF  = '   1=„¸ 73#67'75#C> %¸j r pßÐ#73&''67'7#5367#73#735#>8  & %& ,USS++Ð  $ > |èÏ !7'67#73#3#535#535'6'  £ FF@=EE S› 0Q    5ÿê„Ì1073533#&'#5'67#:   ž..yd#-= ÿì€Ä"2873#3267#"&5535#&'&''33265#"&5''6ZG ,GG3  .  1    Ä?3j  8  :" ÿéŠÊ"6:?73''67&'#53#"''3255#7#'#"''3255#'65535#35#^)   8    (  m/  \á: &~!}  42%'UV=-i,ÿéxÌ 67'2'6'&''&''67#53655#53533#3#&k '7.'     2  "&)$$!!*, Ì  !  ˆ! ÿë“Ï"573533#&'#5'67#7&'&'333#"&'&'75#>  @ I  &$ ( ¥**eU"-65  @e   U oïÏ067367&''66'3#&'#5'67#535'6'6­   % <)"  +.#1G  Ï  $      wñÏ#)/5;73#3#3#"''3267#53635#35&''&'''674'£2ISSV  V777 ( %ÏF  9 &x %  T  ÿé“Ï)-273533#3##535#35#7#"''3255#'6555#35%j   &¥***Sb*l1nÆ =/( 4@_9''+ ÿéÎ@733533##5##5#5333'67##"''32655'67#53&'767#*b"      &=  IÎ-  E 8%!   ÿê}Î 067#5##53&'7&'''636533#&''67#7&'}I-  */0 #&(W  ·)+     4&1 oëÏ'+0735#53533#3#735#7#"''3255#'65535#35#'0022&]::Á   <::::¨   , 3G  !! !  [òÑ:@FL73&'73#3#"''3267#'667#&''67'6767677&'&'4'#'6r74PE   3  %)  &    ¿  +        ÿäóÒ HLP[_clrx~7#5##53&'73533533#3#3#&'#3#3#"''&'7#5'67#535#535#35#35#3673&'#35353267'67&''&'íµda'3++%%B0# —´´©   „ %2=""':3333? C ……… © f¿$$    !   C  &7      tÿí¥Ï73#3##53635#35# !! Ï HRÆE'•2nÿéóÏ %)-39?E73#'63#3#3#"''3267#53635#35&'''67&''&'P[ 5Tbb^   ]BBB =  9 Ï    B  / r % M   qíÑE73#6777'7''67'67#6777&'7''67'67#53&'736ª 8/  + &.Y  !, &.*7 > Ñ                ÿéÏ>BFLRX73533#3#535##5##5#53#3#3#3#"''3267#&'7#5363535&'''67&'944.m/9{Z+T)4QbbY    A @@@  ' "Ä   &3 $ Y=      ÿé‡Ð6;AG73533533##5##5#'#3##"''3255#535#5'63&''67&'4 ** // )5M ¹   3 /  P    ÿé…Ð"&273#3#&'#'67#537#53635#35#3533##5#<-&9   % 4444 ÐQ   Q +1g++ ÿèÅ "&373#735#35##3#67'5#'6553#&'76gg@@@@UXY=  KKC   ÅD* & ''.  ; $&K   ÿé…Ð);73#&''6'3#&''63#534'76767'7&'V  8 7,v5   0;! Ð   "   +  +"' *" %yïÓ!%)-17'673&'73#3#3#3#75#5#5#'3#735#r  %.0++++4}8'''''n@@¤  6 >F' jòÐ"&@H73533#3#&'#5'67#535#35#33573##&''67&''6267#222**  !+2+1B      (Ç !  ! (    7gó¶#3A73673#353#'67#53367#53&'73'67#'63&''66O +(  )j5*   ¶          eñÓFLRX^d7&''67'67676767&'7'#"''3255'67'67676767&'&'7&''&'7'6''6l &."  "   k  †  ‰  \  m  ³                     oõÏ(59=73533533##5#5#3673265#"&5'3#5'75#533#735# C6GG\CŒ6Q    }*%%#KK))É     +9  & (ÿùib7#"''3255#'65535#35#i bU   /+(ÿúog73533#'#5'67#*   U  -1 dÿé­Ï /73#53&'3#735#37#"''3255'7567#ˆF??A     *Ï  330   ÿåö–)-1H\`flrx~73#735#3#3#3#"''327&'765#53635357#'65533267#"&5'#"''3255#'65535#35#74''67&''4',¤¤~~0!3999 :%%%B6  €     c  )  –% - # P)2 0/j qk  00!2  :    7ÿé›Ì 1E7'6'6'&'&'''67'67777&'3533#&''67#’'/.     M #    ;#$&  " ' Ì   :   1   còÒ%)-HO7#5373#3#3#"''327#'67#53&75#3573#&''67&''6667#C(%-)0H?    / "7(??2A    %# ›, ,      %    *  ÿé‹Ï*.26O733#3'67#73265#"&55'65535#3#735#'67#537#53#3#&A..5"     + NN++  !&"S (,Ï     ):0 ,9S'( [    _ñÍ"G73533#&'#5'67#73#735#35#3#3#"''3265#'67#'67#'67#$    ]rrQQQQ”jd         º  //!*         eôÑ#-AGKOSW767#"''32654''67&''67'3&'73#736533#&''67#7&'3#3#3#735#%        ;"!TX ; CCDDDD$$Ì      ! "%    ÿèñÏ16;GMQ73#&'#"''3267#3#"''3267#5'67#5353735#'#36#3673&&'3#Ë#>+   a    3G"@ B8)2, "/(O‹‹¿*  *2 @ * *    !  <hìÑ-1767'67'67276'67'67'676763#Ò +5 \*3  NØØ¿     =eõÏF73533#7#"''3255'75#733327#"&'5#&''67&'767#53&    $*&~*      ¹   '/        ;ÿê—Ì73533#&'#5'67#F   ž.. }m++?=„¸73#67'675#C> % ¸j r ÿé‰Ï)-273533#3##535#35#7#"''3255#'6555#35 &g    &¥***Sb*l1rÊ ?3& 7?a<***2ÿêì°=AEISY]7#5'673&'73#3#3#3#3#"''3265#3#"''3267#5375#5#5#'#5'6&'3#|  /,''''/]M   d‹   Œ*4#####, 1=~~V*  &:A   M A- ] (5íÏ.BHTX\`73#3#3#535#'63'735&'75#&'7#67&''67&'&''#3#3#535#35#5#ŒQ:==9o&  *  '     [44Ï \\" s       b8,DD ÿèóÐ"&3J73#3#'6553&'5##5#35#33533533#67'73267#"&5536ŠZ=9µ\(,+++=,%’44"   $!Ð >>/ 2=Y7-6%  Q  L  ˆÙÑ73'267#'6ii8Œ/T] 7Ñ % )ÿíòF 73#53535#35#35#ÔÉjjjjjjFJJ $ # /ÿêðD73#&'#5'67#535'2Ò &TD18/ 2FS"JD "   +ÿîóG73#3#3#535#535#53&'TUNN^ÈWIIOOG    (ÿçòZ+/573#&''67#53&''7#633267#"&5'3#'3'6S( CK8S< 7 *   /.* #Z &   ,*  +ÿåïN&7#3#3#67'5#'655673&'èž••| f   :N   *%%8  %,ÿêõO-73#35#535#53#326767#"&55#'67#56y 77~778J5 ' ; / .%O  ;  6†òÎ+73533#&'#5'67#73533#&'#5'67#*+*  #s'/&             0ÿéòS$,487353&'33#"''67&''667##5##535#X0   G   ( tttS *     ,, ;ÿéæP &7#5##535#3#&'#5'67#535'2懇‡m(60 +5)/PggSF       ~êÌ#73#73##5##53#5##5&'7&'bbnee3É3H | Ì 2##21""1  *ÿèõT.26:7#673267#"''67&'#'6553&533&'73#3#735#ï5     Zj ‰IIDD$$F  "    % 5ÿéôN +07#3#3##535#73#535##53&''67&67#ŠDAA@@22PUUCC [    *N$ b " +    5ÿéóO%)-173#3#"''3267#535#73#7#5'75#35#35#75#5A/5   5./LpP 333333O) % 7? # % +ÿèôU $(>D73#"''3255#'67#5353635#35#35#73533##"''32655#&'a%   ) ,666666M2  2  UP  6& 1 , &ÿéôu #'+/373#3#735#33535#3353#3#735#33535#3353#/Ãà ££88J588J5¡ÈÈ ªª;;M9†;;M9«ÌÌu ) ) 5ÿêõ¤,H73533#&'#5'67#'3533#&'#5'67#'#'67'67676767'”!%   Z     Œ ?@" )-9 ‘ )'   !  \    & 5ÿéõ¤,2C73533#&'#5'67#'3533#&'#5'67#'6767'7&''6”!%   Z     A#%5#&8?/‘ )'   !  7 (  5ÿíõ¬+Q73533#&'#5'67#73533#&'#5'67#773267#"&55'75'75'6:     Z!%  9"%MO_` " -#BE8;8N    #  .       5ÿéõ¨+/3;?73533#&'#5'67#'3533#&'#5'67#3#735##5##535#”!%  Z      ““mmŒ………›         /,+9 9 0ÿéõ¨+=AEJ[`73533#&'#5'67#'3533#&'#5'67#3#7#5'675#35#35#675#7#53&''67&67#”!%  Z     ·b"& %%%%%K O    " œ        0<F ' )      6ÿæò¬+KOSW[ag73533#&'#5'67#'3533#&'#5'67#3533#3533#3#535#535335#35#35#35#35#&'''6” "      Y     FGG))—))F,FFttttttY 8 $             CC      ÿéðÏ#'+1773533533##5#5#3#3#735#33535#335'67&'4K55s4“KKáá­­99L9…99L9j 3 /b*% ''¾ T22$     ÿéóÐ#'+/5;73533533#3#3#535#535#35#5#'#335#35#'67&'0F22=iM­Kh;0DFFg977777L991 3 /b*% ''º^^]&+    ÿèëš#'+/5;73533533#3#3#535#535#35#35#33535#335'67&'4#)$$DaJ¨JaB#7))+66J6€66J6` . 0W&% &&Ž  HH E *     ÿçòu#'+/5;73533533#3#3#535#535#5#35#33535#335'67&')';((ChO®LjC't;$99L<ˆ99L   X 36p°Ð7''67'67676767&'¤     M .#:5 =( >ÿé©Ï #'-17=CIO73353353#3#3#3#3#535#535#735#&'735'6&''&'''67&'G`\\\'&&+c+$$(  "   -  )Ç$=       Q     ÿçóÍ 0AEI]afjou{‡7#'6553#735#35#7&'36533#&''67#'#"''3255##55#5#3#3#3#535#535#73'#335337335'67&'7&'7&'ð¿RR3333 8*#    9I999£HFFVÀYHHJ … 8A=ÍVG7 7@a(     , 7$   E        ÿíöÆ"&*.26:7#3#327267##"&55#535#55#7355#355#5#735àGGG ; EEDn !4q1n4q111n4Æ9c  d9ǵ¬µ5)ÿìóÈ $(,0473#3#327667##"&55##535#735#35#33535#335&¥KYY  3 ATG AATFšAATFÈ:` $ s_;rñ’ 7'67&'` "0 8X,'**’   [ñ¡ 73#735#33535#3353#%³³AAQ@‘AAQ@¸ââ¡3 _ïÌ #'73#735#'3#735#3#735#33535#3353#„YY77}YY66¬¬<2 Z !t* , $ ÿéôf"(047353&'3#"''67&''667##5##535#9=  CG*+" -2 €€€f 4     (11 ÿéò« 2EJPV767#5&'67&'67''3#"''3265#'65#3353#5##5#'6735#&'''6n    A"    ‹J ‰<;‰‰f  ;«   )& " 2*"4 r:77'5      ÿéò« 2UZ`767#5&'67&'67''3#"''3265#'65#'667#'6753353#5#67&'35#'6n    A"    ‹J j & ;‰<   [‰‰ «   )& " 2*"‹ +5r>  @  #ð® 3BG767#5&'7&'7'563#"''3267#'67#3353#5#'6635#m  ƒ     !´L  Š’  ‹®   $%  $ 0$, >   ÿçô¯3CGKOSW]c767'567&'67#5&''3#"''3267#'67#3353#5#'65735#3#735#35#35#'67&'Å     _    MK   " ““““ssOOOOOO A›  )  -       ! i1 '$ E2    ÿæó®4cgk767'567&'67#5&'#53#"''3255#'63353#5#3#3#3#3#535#535#535#535#'67735#35#à !  `    8H   " š7**%%,,1˜5))$$((2ššBš -   2    &  ‡]  EB`K!ÿè¾O 73#'3'65ªd'%Odc/%ÿèÞm#+/73#535#535#535#53533533#3#3'3'6573#š)…( ""%% %—£    gg  R)3! *(x FóÏ.2EKOSfkqv733#3'67#73267#"&553#'65535#3533#&''67#7&'3#735###'3255##5##53&'#3367335IAAE @()    qq  2 t)!    = œ[[??V #  Ï    % "2""#$* *. 6  &"ÿéái 7'67&73#5#533{& 7«—6!+7t iWÿêô\)-MTt{ŠŽ’£§«73&'73#3#53'#367#73&'73#3#53'#37#'33#3#3#3#3#"&5535##32733#3#3#3#3#"&5535##32'#"''35##535#35#7#"''3255##535#35#  7  `  8  N###$ $#' K$$## ##( £ ™ R        ;>d    ;>64  A4 A ÿéóÏ"&*CGKO7&'#5'63'3#735#73#735#73#735##"''3255##5##5##535#335335€ 45 e PF%T66288477&  (%###6%(Ï   *2220H  !!!!+_# ÿéóÏ#'+73533#3#3##5#535#535#35#33535#335dffTTjjhhRRd&>>R@’>>R@¼d$$d;>zîÊ 73#3#535#5#35#335335ÙD6À6Aƒ04""40#Ê 44 "GÿéìÆ &*.73#5##5353535##3#"''3255##535#35#Õ0OO  IIIIIÆ?""?? !e  '}#4ÿéäÏ#'73533#3#5##5##535#735#33535#335'NPPZFFZN::O<—FF[F¹EV//Z{!!!ÿêæÐ!73#"''3267#'6#5##535#K ™ ’ )fFFFЊ&v$1`f?, ÿëøÓBGMQUYm733#3#;267##"&55##535#535#5335##535#535#5335#5'667#5#7355#35&''67&'76_Q1CGG  : @0>>/?>.==.>B 5XRR0e/d7    Ó  -Z    5  % ®Ÿ–Ÿ4<<       ÿëøÓBGMQUYm733#3#;267##"&55##535#535#5335##535#535#5335#5'667#5#7355#35&''67&'76_Q1CGG  : @0>>/?>.==.>B 5XRR0e/d7    Ó  -Z    5  % ®Ÿ–Ÿ4<<      JåÏ573533#3#67#5'675#535#73#"''3267#'667#)''""$$)n`  # ¼T=/' $' ÿïøÐ %+7&''63#3#3673#535#535#&'~-= 65.> Qz5ZZ :ßeZZ1  Ð%-+%"";;"=ÿéçƒ 73#3##"''3255#'67&'Cvv+Ï] ^1yƒ<  9 •ÿçõÂ#)/73#"''3267#'67#3#735#35#35#'67&' R    II%%%%%% 5  Â( 0nM/."     ÿçõÏ048>RVZ^bhn7#'67'6753533533#3#'#5'67#535#35#335'&'73#"''3267#'67#3#735#35#35#'67&'ó¶ YU     h —N    MM,,,,,,  , ÂRC4 ,*  ` +9=< 9:># *bF ' '    ÿéï•?CGKQW77&'7&'#5'67&'67673673#3#3#3##5'65#5#35#&'''6Z!'    <(,&&&&.b 2!!!!!*  9  ƒ+B?  #   f && ÿèït?CGKQW767'7&'#5'67&'67673673#3#3#3##5'65#5#35#'&'''6\     @%)####*[ 1!!!!!+  9  l# :7      R  fÿêôÇ%)-15;A73#6767&'7&'#5'67&'#'67#735#33535#335&'''6ox= !'$ $ $2 R2  @ÇP   CA 00v    ÿéøÏ!%)-1G7'67#5353367&'#73#735#33535#3353533#&'#5'67#/ #0     +%%'j EE nKK¡  !)e+* ÿè^Ï7353367&'#5'67#  !.®!!$  hc =\ÿóóÏ73533#3#536'&'h6:„g1—Q<¤++ G4=?5591 ÿéóÐ *.2H7#'655353#7&'767&''7535335#35#7#"''3254'7##5óÃ`<  " ****›   '¼M@2 3;Y+].     &9?78ž°ÿï~Ï7#7'7''7535335#35#yI+   ' %%6666·hB" ±+D ÿéõÏ$273533#&'#5'675#&''6'&''6aaa*@ <$'7 @*a¤  w µ<@3][1:?  $ !Aÿê÷Ñ "7&''63#3#"''3255##5#–$/ .$!+ 8 aaˆ 3.Ñ %'*'%: $TTÿçëÐ'-3M7367&''66'367&''66''67'63673#"''3267#'67#­   g    jfE\  LC 9>Ð     !     r 8!5 %HÿéóÐ1=AEIMd733#3'67#6753673267#"&55'655333##5#5;5#33535#33533##'3267#'67#536•>>I r & %:hh *D*0< - . # (2Ð     ,>/ /8TJ!      GÿëõÐ048<@DLPTX733#3'67#753673267#"&55'65533#735#33535#3353#53535#35#35#BBS p&.1ll,J, ‘!#Ð    *>. /8SH<$ ! !$$$ ÿìöÏ048<@DLPTX733#3#67#'655332767#"'&55'7533#735#33535#3353#53535#35#35#jbbrªKcZ )% 25 +-0’’//@.n//@. Ì 2##4 Ï   I84 +5X     +?' ! #%%% ÿíò®+/37;?CKOSW733#3'67#73267#"&55'665535#3#735#33535#3353#53535#35#35#pNNhYFH %%.12 K2ŽŽ-->,j-->,Å00®      "2' #E #4   ÿèíÐ3\`dhl733#3'67#6732767#"'"&5'675#'6655333##3#"''3265#'6765#'#5367#5#5;5#33535#335t]]eQ$ #$ 0 3> S-˜DR F= #  (GA00B2t00B2Ð      I=/ +!SH "   !  ÿéõh26>B73&''67&''667#'3#3#7'75375#735##5##535#’A #   7zR"-8"..¯666h    0)(237 7! .óÑ $*06<733#5'667#35#33535#335&'7&'''67&'UQ4³ 2L G;;O>;;O>) K  ŸE ÑM< +"         uòÑ37;?73&''67&''667#'3#3#67'635375#735#3#735#™> " ( 0 W!!!,6%55][[;;Ñ   "  ! * ]ÿéóÏ.287#"''32655'675#537#'733#67&'37#&'±    'AQAH+=   !C; ;  >; %8 6  ŠT  ÿéóÐ.26>DHN7#'733#67&'#"''3'3255'675#53'37'3#3##5#'673#7&'À9A$9      "2F2µFF \%$<.  Š7 8  .9  %8&ŒŒ9% !2UN  ÿéóÐ-1RX^d7#'733#67&'#"''53255'675#53'3767&'7&'#5'67&'676&'&'''6¾;C&;      4H4 {   5  2  Š7 8  .:  &8:! UP&"9   ÿëô™'+17737#'733#67&'#"''32655#737#&''6‡jm:]   9%   c7cb% H&02S +(  ++ :0 A   ÿéóÐ-1>Z`f7#'733#67&'#"''53255'675#53'37''67&3#3#677'675#535#&'&'¾;C&;      #4H4 Ž" 3< "+##\  N Š7 8  .:  &8     D  ÿæóÐ!%3K7#3533533#'665535335#33533567'7533732767#"&5536ë¶+,9µ [[++=,%}"+ 6U %¼>@/ 0"[V[% P   N  ÿìgÌ 73#3#3#3##5##535#MM\\ HHHHJ&&&ÌS U4! (õÐ'/?PTX73533#733#3#3#3#3#"&5535##326'3673#53&'#"''3255##535#35#(-hrUUMNOOOOO*' MM]L ²tX  ;;;;;Ä   &   Y Zw  &I \ # [ïÃ73#3#3#535#535#ÄYOOeÞeNNWÃÿé÷› (0@QUY733#3#3#3#3#"&5535##326'3533#3673#53&'#"''3255##535#35#‡UUMMNNNNN*( MN]J Ì),htV   ;;;;;›  )   ` b’   )O  c ' IöÐ'9?PTX733#3#3#3#3#3267#"&5535#'3533#3#53&'#367##"''3255##535#35#†VVNNOOOOJJ#,& LMn'+r'#> ?????Ð #      H  9 LÿéìÏ &7#5##53533533#3##5#535#'6ê®`E-HH``dd8 ·9&&9& %%&;;&  ÿêî\)-73#3#5##5'67#35#'3#3#5##5'67#35#…i9 =* &**—i9 <* &**\M .B7M .B -ës #'73#735#33535#33573#735#33535#335dd'@'"cc&?&sF)) *F))  ÿèñ¥26:>BFJQ735333##3#3#&''67&'67#5367#535#5#5;5#33535#33535#33567#I>FFJ_q# %#8% ;I-E>$$,,?2q,,?2w22E78 D‘ %   % 4 = 5ÿçôÐ#'-7'655673#3533#&''67'35&'b P: 9Kƒƒ6A;1 24 4 2p 1'! 26d  5  &($!](  1ÿéðÅ'+17=C73#3#"''3255##5##535#'66553'#3&''&'&''&'`A=  +(:< ›ss 1   J 1   _  Jbbfw B3 0"[5$\        ÿëìÉ%)-15;A73#6767&'7&'#5#'67&'67#735#33535#335&'''6$·c "48F& ! ))8==Q>==Q># !!O' $ÉV  % 54 44{      ÿëkÎ$*767'7'#5'67&'676&'''6Q   3  ­:! VP&"^  \ÿêòÄ$,73#3#"''3255#&''67##535#33##gŠ7,    -B ƒƒÄu  `' (|$Š ÿëmÎ$*767'7'#5'67&'676&'''6Q   3  ­9" UO&"_   ÿèôÏ48<@DHLTX^d73533#3#535#'3#3#73#735#3265#"&55#'67#3#3#73#735#35#35#'#5##535#&'''6b>BB:5>QGGUU\‡‡c   dBBBBZxxTTTTTT+–" Ç  6   Q: O Q1#   EóÑ +F73#53635#35#77'7''67&'676''67&'67677&'zAh    ‚  Ñ mm4K30  '  . ÿìaÉ 73#3#3#3##5##535#HHVV EEEECÉO Q1 ÿéòg $73#53535#3353353##"''3255#ÙÔ""5!%¹åf lg$$$1   >ïÏ.31073&''67&'67#53667#73&''67&'#367</ ! % !) "R` Ï     J:-!    9ñÏ#)/5;73533#6767&'7&''67&'67#&'7'6'67&'gdi  $ '. c  »…”¶ &         ÿèôÇ '+1773#735#33535#3353533533#3#535#5#'67&'$ºº@@T@”@@T@²2A88?â<2‡A &. )f3# "1ÇZ56:    ÿëê”!'-7'#5'67&''676767&'&'''6¼  (+  $ 39@3 $ !"I ' "_ B@ ' 3    ÿèóÓ@FLS767&'7''667'767'6767&'7'&''67''6'67'67'66e$&  ;B        6 C'Q +#` 3 55 -R VG 9m AGÓ         '#   &    )  . ÿïñª'+/?73533533#3#3#&'#'67#535#535#35#35#3533#3#535#0$2%%((>5$ .8. %1<%%$62222%466]ÅV4– 0> ÿéïÒ ,15973#"''325''67&'3#5##5'7532635#35#35#x   5– 'W (IRr Ò8 * " „ h C02 ÿéò¡373533533533##5#3#5#5#3533#&'#5'67##8,,^#¡´ž8eedS<A !@ 4 O’ ->=   #23 ÿé÷Î )-15=AG73&'#'3#7'63#3#32765#"&55#735#'3#3##5##535#7'6; *ŠHHr  nVVnf   ;@@wDDDDCg. *Î"   N; A* O Q1 2 ÿèõÐ*@F[`767&''67&'73265#"&55#'6553533#&'#5'67#7&'#53&''67&67#   Æ   %}))    P  7 n   % 8 È     B 8 m(( RR# %6  $0     ÿç÷Ç$(7#3#67&'#67'75#'66553#貸T 'P$. &ÇF  )HR WB2 1$`+ ÿéñ›73673#3#5##5'67#35# V z… …v -IAvvz  ] G %^* ÿéòÏ (073533#3#735##5##533267#"&5'3'66fdà$™™tt¥±{   " ;%' $ ½54,-", 2!#ÿéðÇ+<73#3#"''3255##5##535#3&''67#73&''67#ßeY  EEYf'( Z(  Ç–  ~‘‘œ¯H XYòÉ!73&'#"''32765#'67#'6cl    8 2,  É 3H?  ÿéfÏ"7353673#&'#5'67#7&'       ~Q. XV#/S ÿèòÏ!%7#67&'#67'67535335#35#ÖR !% W!1&,9LL„„„„²i  HF  ³*D ÿìeÉ 73#3#3#3##5##535#JJXXFFFFG"""ÉO Q1ÿéŸÈ@DHLP7#3533533##5##5#'6553#3#"''3255#7'675##535#735#33535#335Ÿv_)1    -'%<%È  7C7 5@`<@A - DS' & ÿéñÐ=AEIMQY]ae7#'665535333#3'67#73267#"&55'75#'65533#735#33535#3353#53535#35#35#ð¾ \WWe Q@A&$ '7uu/#R/# ¨()ÁQB4 /"\        ?4( (/G88"  ÿèóÏ *H73#'6#3533#3#"''3267#'655#&&'67'675676ŽV^  v'%1,  ×   %2#Ï  "((^TJ06N1 :4h |   9ÿêòÐ-159=AGMSc733#3#"&55'75#'6553'7#73263#735#33535#335&'7&'''6733267#"&5…EER , "5Y C2 imm-I-%  C a  # Ð   I=/ /8S'?& !       =ÿþ»m 73#3#537#735#35#Fo5B~(%HH ZZm/ 33 O cÿéóÌ8<@DYg73#73##5##53#5##53#73##3533533#'65535335#3353353673265#"&5'67'7533p;;A==}*B $k"j  55#"      Ì / /.. )$$ $-2 8        0  ÿèóÌ8<@D\k73#73##5##53#5##53#73##3533533#'65535335#335335367326767#"&5'67'63533bbnee3É6Jn<»*);³[\**<)'<%$  *B", 2Ì / #21" /  *$$ #.2 8     0  ÿéòÏ(HN73#"''3265#'67#'6&''6367&'#"''32655'67'&'›?      /8 67$A H#   !   !*0#( ÏA*+  ;           $ÿèô²9AEI73#&'#5'67#535'6'3#&'#5'67#535'6#5##535#35#á$      "+7     3636…rrrrr²(#    ! gX X -#ÿîô°7G73#&'#5'67#535'6'3#&'#5'67#535'63#53533533à (  ,7 "    +35JNÄ%)>° /+  *(‘++9_ÿèõÐ *F\73#53635#35#''67&'67767'74''67&'676767'3533#&'#5'67#¥*     n    {;;0 ! $0Ðgg 5G    ,    ( .  9:  <óÒ;?CGKOSY_ek7'#5'67&'676767''&'#5'67&'676767&'73#3#3#3#3#735#'&'7&'''67'6á      ‡      $88 JJ<<<<==!  Ÿ  ·   š   ‘ 1,   % 1,  (E   +         GÿçôÏ28>DJP73'67&''667#67&'736533#&''67#7&'&'''67&''&'p%F  #   =" ! $8    d Y Ï f$   '   '& &3A   š  5ÿäøÆ 7&'&'333#"''75#V- 13 =; $Æ    #\OUÿéòÏ!'073533#3#&'#5'67#535#35#&'76735d=<<4& ( " 4=!! 0  ¸T%)IS/$TW0 # 0CÿäøÌ#'+17I73533#3#3##5#535#535#35#33535#335'&'&'333#"'&'75#„+++((--..''+'='u    * .- 77!»XX36_    !\ O ÿéòÏ!'0PV\73533#3#&'#5'67#535#35#&'76735'67&'7'#5'67&'676&'''6k9992$ $ 09 . …  2  ¸T$)GS/%TW0! 0.9" UO&"^   ÿèöÐ6DHLQ[i767&'74''67&'67677'7&''67&'676'3##5'675#35#35#675#73##533'3353'67#Ÿ      L    Ì]! ±&s %$»0 *   Ê/‘&&\$V22k)"#*( ÿéðÏ;W[_cg73533#3#&''67#5367#73533#3#&''67#5365#3533#3#3##5#535#535#35#33535#335'""'&     +'k$**5+ $  ##k\^^PPiieeOO\ <   - ÿë÷Ï#'+17I73533#3#3##5#535#535#35#33535#335'&'&'333#"&''75#PEEE;;GGFF;;E((:(b((:(¬4 &GÏ:  /  d    < $8) ÿèõÏ #)-39?E73#"''3265'3#3'67&''67#67#73#&'''67&''&'Ò  »t7 8+  "( /^8  —}"  ω {/ $20k,   ÿçóÍ '+P73#"''325'3#3'67&''67#67#73#3533#67&'67'75'67#Ð   ¹t<8K  %! /`ˆcfc  $O!)  =TÍb  Y7 % *H.   :   ÿé÷Î )-15=AG73&'#'3#7'63#3#32765#"&55#735#'3#3##5##535#7'6; *ŠHHr  nVVnf   ;@@wDDDDCg. *Î"   N; A* O Q1 2 ÿéòÏMQUY]a7#35#535#535'6735'673#33##&'#5##5'67#535#'66553535#3533535335ð¾5""//% " $BB*! "" %7 a""L"ÂQ        /::)   .& 1!] Y   0ôÐ 7'67&'3#3'67#~); ?326 6UJJ'• |³#. ! XDõÑ 7&''63#3'67#§& &% *88m  VÑ    ÿèaÃ73#3'67&''67#67#Q*.;     Ãu.. (=M  ÿéò¡?EIMQUY73#33##&'#5##5'67#535#535#535#53&'7#'66553533#'#365#3533535335¸3@3(& $ "%..%%/* 0 Rf5 @$  O v   %//"     ?4) &H !   2ÿéʃ73#3#"''3255##5#Kjj˜ C.ƒ9 #__/ѱ #7&''63#3#"''3255##5#}1 0) +88p   . ±  % :: ÿéòÒ !'-59=AR7#5##5353&''33267#"&57&'''63#53535#3353353##"''3255#î´d !  ,%€Š ¹ã##6%(¸ÚZ   mÃ""       "'''1   ÿé|š%7&'3#5'63#"''3255##5#?  3; #\   "š   4* FF ÿégÏ 73#7&''6.&  1 ÏæÃ ) ÿíîÏ'-3;U7367&''657367&''65''67'6#5##53#3#3&'73#535#535#D   )k    (ˆ  o  _´«OLL' &Ó]HHJÏ             ;++   ÿègÏ'7&'73#3#7'67'767#535#536&< "$)  (Ï.$ ÿépÄ 73##5'75#35#35#675# c $""""""ÄÉ/$$[%W ÿîuÏ '-7'67&3#3#677'675#535#&'@!3?## &)4$$  ®"    C5 ÿéóv'7&'#5'63&'3#"''3255##5#~19 i OS:— B3v   %  55 ÿîòp 6@73#735#73#735#73#735#3#3#535#&''67#&''67#<<;::<<<¥Ò1  æj2    )Á  (p' ' ' " 2    2   2ÿîÏ "7&''63#3#"''3255##5#=  #66a "Ï,+* %5 "YYAÿé©Â73#3'67&''67#767#L]//D   Âz0$ .:M   ÿêa 73#3##5#'673#@@ S   4Â(ŒŒ:$ !2UÿêuÇ!*/373#3#5##535#5#35#"&55#'75#326655#35#g#=7 =  76 ==DZ´i 8' &4 CòÉ73#3#3#535#535#3535#5##3ÖG99NåL88DX#99#88É89a&%% ÿéöÏ >DHLRX7#5##53533673#67&'##"''3255#5'67&'767#3&'#35#35#'67&'ë°a^=S6   @   B  -&Y pppp x ¼,,'  8  8   * ( !   -ÿêò†#7367&'#"''325'3'67#‡  " /  NG$$ -3† 7I  ^B2 ÿéwÏ"7353673#&'#5'67#7&'( '' #  ~Q2 Z_%-S EóÑ +F73#53635#35#77'7''67&'676''67&'67677&'zAh    ‚  Ñ mm4K30  '  . ÿçõÏEKOSY_e7#'67'6753533673#67&'##"''3255#5'67&'767#3&'#35#35#'&''67&'ò° UG;D2   3  1   /.= SSSSV  [ r¼OB2 .(  [&   5  3    , ' h     ÿèõ06<B7&''675'675#'67#53673#5'675#'67#'6'67'6}3: 79$B 8!* 4 & $^ \ #'  (#2 .>(RNH:ztk       64J   F      !  ÿë÷Ê 7&'&'333#"&''75##4 &K!44 6  ¯ ;  '; '% 3   ' ) D  Vÿê§Ï73'67'756776‹    £Q3'"ƒ n FÿèìÐ'/37;?7''756767&'73#"''3267#'67##5##535#33535#35#†  ! %Q   Kg**?(g**?((§ E  0 #E 06 ,Wr q*CaåÑ'7''675677&'73#"''3267#'65#\ %*$#0j% ª H  4 !=%-! ÿërÎ%+767'7'#5'67&'676&'''6W    2  ±># TO&" _   ÿé~Ï!'8>7#5353673#&'#5'67&'&'3653#'665#&'3!*  .   PE*13( &E 0/  #O   c    $   ÿïòÏ 73533#&'''6feß“-!"+8(*2™6659>5 I*4 ÿèŸÆ/5;B737&''67#5'675'67#73#5'675'67#'6'67'6>' ( $ !G: !( &+7 432. JÆH     W    ^  \ÿïòÏ%573533#3#3265#"&55#'67#535#3533#3#535#m,88D( %9,044A•@0µ   $ m  IÿéóÇ 173#3#535#5#35#3353353533#&'#5'67#Yš2*).W))‡EF7%$) &5ÇFF5$$$$$L#FF)"bîÇ 73#3#535#5#35#335335ÙC5À:E‚*9&&9*"Ç??.9óÏ$*06<73533#6767&'7&''67&'67#&'7'6'67&'ifl  " %,  c  »ˆ•¶ (      "   ]ÿïói!73#3533#3#3#535#535#'6|\\7722?–C--'i   fÿéò›&*.473#3#3&''67&''67#5'635#35#67#€Ya_: > $!   AAAA  6› =    8 ) # 5  ÿæéh!7'673#"''3265#'67#'67> +˜  OK#? 6C J19$.* P‹Î73#&'#5'67#535'6ƒ.--  &26:Î () ÿéóÑ5BF7#'67'675353&'73#&'#5'67#535'673#"''325'3#ó´ Xz $$   #$)` &»M?2 *"  b  QN& ™  }iÿéí‰!%)4:7373#3#3#3##5'65#5#35#'37&'#''6~" -0**++3h 7"""""R    ‰  W   "q }!  ÿéòÐ:>BFJ73533#3#3#3#67&'67'275'67#535#535#735#33535#335eeÞ¬O[[gY  H%+-  +)NbUUK99K<‡99K<Ä  C   @    ( %  ÿèdÐ7353367&'#5'67#     $2§))   ed 7ÿóðÇ#73#3#3#535#535#735#33535#335&¶QRReßfWWQ==Q=Ž==Q=ÇxC"""R ÿéóÐUY]as73533#335367373#3#3#3##5'#3#"''3255#7&'7''2767##537#75#5#35#'&''67'76/4wF   !$O *5  ) 0-ªK     ½ 11&*)&"$"I  2  Pb""4$$2"y    @ÿèíÇ!C73#3#"''3267'6765'67#735#73#3#"''3267'6747'67#735#ND,3  $ 4 *2TI,3  #%6 *6Ç:h!    <:i     < ÿèóÐ#'73533#&''67&'#367#5##535#a]%%:D.,: 3&5"xxx¶  Zaa@- ÿéê£$(,048EIM7#373#3#3#3##5'67##535#35#5#5#35#7##'3255#535#5#v 7600007m /8888U$$$$$Ž O====£B   ; xº $ B  Œ¡  YC $  ÿé|Ï $9H7#3#'6553535##5#35#3353353673267#"&5'67'27533tN  %       ¸;:/ 1\$0 3¥¶+ (   ÿêóÀ7#53#3267#"&55#'>L7ØF "3  ­¥ $  ªK#2 '1ÿéöÏ'/BGKSW73533#3#535#73265#"&55#'667#5##5#53&''67&67#'3##5##535#...&`'.Ç    I‚\   -…??K333¿<  /$  (G)+.-      %U U6$HñÒ#'C7373#3#3#3#5'6353535'3533#&''67&'767#! %(####,s"""""ž$&     =Ò G N Xÿé÷ÉIP7#5##53#67&'##"''32654'''67&''67&'767&''67#67&'îe‚            &0&  É&&,  &1Y&G        M  ÿéôÐ,26:73533#'3353#5#53373673##"''3255#7&'3#735#m64~> ; 7N  *   e%  FF º#§€Ÿ ’€Xh  d8  E?NÿéóÏ3973533533##5##5##5'673533##"''3255#&'\/##/(  &9  9  ¶pX "R  N MÿéöÒ!E7&'3673#&'#'67#7&'3#3##"''3255#535#535'2Ÿ  5]  %# +!   Z 22BB   ??11  Ò 0)(B L    )AÇ 7&''6 Ç1 ,)'VÿéñÏ.4873533#3673#&'3#5##5'675367&##535#5#5#k$$$   9C   I9$a@CC·    s W v) 9òË 73&'#''63#'673&'#fJ!>"!RRBSGË('& )$" ÿônÐ73533#7'676'&'%(`D (1#¨(( =- >0.03, ÿëêÅ#)/573#"''3255#73#"''3255#'67'6'67'6b Nqc N:&'Š&'R - -Œ , ,ž¥¾¥  *!! ÿèíGKO7#"''3255#'65535#35#73#3#"''3265#&''67#33#5'67#735#35#_ GkF[  $   ! K]  EEEEŸ .-2a0M@G H0    ,+ ' ÿéö©BGLPT`emŠ7'6733#3#;267##"&55##535#535#5335##535#535#5335#767#5#7355#767567&35&''3#&'#5'67#535'6k "A'00 ' ) ( $$ 'J4 / ?? !!  l     !#|  % M    *   % w )&     PG! ÿéòÏ*.26:>BJN73533#3673#&'3#5##5'67#535#35#35#'3#3#3#3##5##535#y  $  @; &D3 ;;;;}EE ^^MMMMM&&&¶! p ^tB­Q Q3  ÿèôÏ(4:@73533#3#3#33#"&''6535#535##5'753'&'&'"""++""Y6/M6 00"ÔDGB  ²"/  $E S"D<9  zwj  '  F òÉ"7'65533&''67&''37367w#o) %  0%|C#CC&9    (:&&:"BôÏ)-17733#3267#"&55#'67#5367#'635#335&'r?20   3 -(=6  $$8(  Ï A- 03%A  K4   ÿê•Ï,0473533#3673#&'3#5##5'675367#535#3535""  7=  C,===·! r VZ+iÿéôÏ8=737#535#5353373#33##"''3255#53567#'67#767#u =3))! "0 566  >>/ C i  ( %  5 iÿéòÏ%+73533#3#3#3##5#535#5367#535#&'u/00;!877445L\;/¸ 11 .  `ÿèñÑ'+/73#3#3#"''3267#353#5335#5363535–:]nnl ?eIIIÑK C+$()$ˆ  ÿèóÑ"&*FK7&'#3#3#3##5'63&'35#35#7#3&''67&'#'65567<9MA@@@@ ! % ....ÃXV )Ñ P  “ ! < ,r->+  '0D3 4>^Q(!# ÿézÑ!%)7&'#3#3#3##5'63&'35#35#> : NBAAAA " & ////Ñ P  “ = , ÿèòÑ#'3?CG7'#3#3#3##5'63&'35#35#7#5##5353#53#3#5'35#35?2 L@???? # ! ----ÅV4"VCK8008Ñ  P  ” = ,e,,Ä ¢>M jSÿéÐ )-157#5##5353373#3#3#3##5'65#5#35#N1* P ,º-/  d"()ÿÿ ÿèòÑ&ó+îÿÿÿé÷Ð&+ï1ÿÿÿèîÏ&1PÿÿÿíóÏ&1 ÿÿÿéóÐ&÷1ÿÿ ÿëîÐ&(0ŒÿÿÿëîÆ&0(ÿÿÿéóÏ&1cÿÿÿéóÑ&%†1ÿÿÿëîÒ&(1eÿÿÿëóÏ&(0Ëÿÿ ÿéõÐ& ¡ÿÿ ÿêóÐ&11fÿÿÿéõÏ&—*[ÿÿ ÿêóÏ&1*\ÿÿ ÿëóÏ&*]1ÿÿ ÿñôÏ&+ + ÿÿ ÿêòÐ&›šÿÿÿèòÐ&)ã™ÿÿÿèòÐ&œ1pÿÿ ÿéòÐ&™1qÿÿÿéòÐ&œ1rÿÿ ÿéòÐ&™1sÿÿÿíòÐ&žÿÿ ÿéòÐ&œ&(1tÿÿ ÿîóÐ&œ1uÿÿÿïóÒ&ܺÿÿ õÎ&+ð1wÿÿ ÿéóÏ& ëØÿÿ ÿçóÏ&V ëÿÿ ÿéóÏ& ëÙÿÿ ÿèëÏ& ëÚÿÿ ÿéóÏ& ëÐÿÿ ÿëòÇ&*a1xÿÿ ÿéóÏ&%Œ îÿÿ ÿéæÐ& ë+ãÿÿ ÿéôÏ& ì%ÿÿ ÿèöÏ& îïÿÿ ÿéõÏ&¹ îÿÿ ÿéñÏ& îÛÿÿ ÿçõÐ&«1zÿÿ ÿéôÏ&6 ëÿÿ ÿìõÐ& ÿÿ ÿìõÐ&ÿÿ ÿéôÏ&! îÿÿ ÿéôÏ& ëÿÿ ÿéòÏ& ìÿÿ ÿèóÏ& îÿÿ ÿéòÐ& ëÿÿ ÿéêÏ& îãÿÿ ÿéõÐ&äÿÿ ÿéôÏ& îÉÿÿ ÿïõÐ&ÿÿ ÿéëÏ& îÿÿ ÿéóÏ& îŸÿÿ ÿéõÑ& î%ÿÿ ÿéôÏ& ë%Žÿÿ ÿéóÏ& ì*–ÿÿ ÿéòÏ& ë\ÿÿ ÿèõÏ&-ã îÿÿ ÿéòÏ& ë1{ÿÿ ÿéíÐ&Õ îÿÿ ÿéùÏ& î%ÿÿ ÿèõÏ&| ìÿÿ ÿéëÏ&Ì& í1|ÿÿ ÿèøÐ& ë%ÿÿ ÿéëÏ& îºÿÿ ÿéõÏ& î,ÿÿ ÿéçÏ& î%‘ÿÿ ÿéòÏ& î%–ÿÿ ÿéôÏ& ì% ÿÿ ÿèöÏ& ëŸÿÿ ÿéñÏ& î:ÿÿ ÿéõÏ& î%·ÿÿ ÿéôÏ& îÜÿÿ ÿéòÏ& î$—ÿÿ ÿéóÏ& î&vÿÿ ÿçòÏ& î^ÿÿ ÿéðÏ& î*cÿÿ ÿéîÏ&%¸ îÿÿ ÿéøÏ& î%¹ÿÿ ÿéøÐ&%º îÿÿ ÿéòÏ& ëbÿÿ ÿéôÏ& ìLÿÿ ÿèóÏ& î…ÿÿ ÿéòÏ&¸%½ÿÿ ÿèõÏ& îµÿÿ ÿéöÏ& îRÿÿ ÿéóÏ& ëGÿÿ ÿé÷Ï& ì%¾ÿÿ ÿéóÏ& îaÿÿ ÿéõÏ&Û îÿÿ ÿéñÏ& ì-âÿÿ ÿéõÏ& î%¿ÿÿ ÿçõÐ&1}ÿÿ ÿèôÏ&@ ëÿÿ ÿèõÏ&%À ëÿÿ ÿéñÏ&%þ ëÿÿ ÿéõÏ& î%ÿÿÿ ÿçõÏ& î`ÿÿ ÿêõÐ&1~ÿÿ ÿèëÏ&& ëÿÿ ÿéòÐ& ë&ÿÿ ÿéñÏ& ë0•ÿÿ ÿèôÏ& î1ÿÿ ÿèõÏ& î,Žÿÿ ÿéõÏ& ëEÿÿ ÿéóÏ& ì&ÿÿ ÿéëÏ&& ëÿÿ ÿéñÏ& ë1€ÿÿ ÿèöÏ& î&ÿÿ ÿéóÏ& î&ÿÿ ÿéçÑ& ë&ÿÿ ÿéòÏ& î¡ÿÿ ÿçòÏ& î&ÿÿ ÿéóÏ&_ îÿÿ ÿèóÏ& ìÿÿ ÿèõÏ& î*dÿÿ ÿéêÏ& ì{ÿÿ ÿéòÏ& îÝÿÿ ÿéêÏ& ì‰ÿÿ ÿéóÏ&d îÿÿ ÿéòÏ& ì.Ñÿÿ ÿèìÏ&e&&t¿ÿÿ ÿéòÏ& î,ÿÿ ÿéõÏ& ë&ÿÿ ÿéòÐ& îhÿÿ ÿéèÏ& ì& ÿÿ ÿé÷Ï& ì®ÿÿ ÿéòÐ& î¤ÿÿ ÿèòÏ&&  ìÿÿ ÿéòÏ&*e îÿÿ ÿéòÏ&Ü ìÿÿ ÿéóÐ& ëgÿÿ ÿèôÏ& î”ÿÿ ÿéóÏ&  îÿÿ ÿéóÏ& ìÝÿÿ ÿéóÏ& îÞÿÿ ÿçöÏ&` îÿÿ ÿèõÏ& î–ÿÿ ÿéóÏ& ëbÿÿ ÿéòÏ&} îÿÿ ÿéóÏ& ì& ÿÿ ÿéðÏ& î£ÿÿ ÿèñÏ&(, îÿÿ ÿéòÏ& î8ÿÿ ÿéóÏ& î Ëÿÿ ÿéëÏ& î¢ÿÿ ÿèñÏ& í1ÿÿ ÿèõÐ& î& ÿÿ ÿèðÏ& ë&ÿÿ ÿéõÐ& î&å™ÿÿ ÿéóÏ&Á îÿÿ ÿéèÏ& î&ÿÿ ÿéöÏ& îbÿÿ ÿéñÏ& ë¡ÿÿ ÿéúÏ&e`ÿÿ ÿéêÏ&# îÿÿ ÿéõÐ& îaÿÿ ÿéòÏ& îWÿÿ ÿéôÑ&Ü ìÿÿ ÿéòÏ& î*fÿÿ ÿéóÏ& ì¦ÿÿ ÿéõÏ& ìÿÿ ÿéòÏ&+ ëÿÿ ÿéóÏ& îäÿÿ ÿéóÏ& î0Óÿÿ ÿéöÏ&$ îÿÿ ÿéõÏ& · ëÿÿ ÿéõÑ& îŒÿÿ ÿéöÑ&] ëÿÿ ÿé÷Ï& î¥ÿÿ ÿèõÏ& î¨ÿÿ ÿéõÑ&¶& ìÿÿ ÿéõÏ& î9ÿÿ ÿéóÐ& ìxÿÿ ÿèëÏ& í&œàÿÿ ÿéóÏ&÷ ìÿÿ ÿéòÏ& î1‚ÿÿ ÿéòÏ& í1ƒÿÿ ÿéóÏ& î$ÿÿ ÿéôÐ& î ÿÿ ÿè÷Ï& ì5ÿÿ ÿèìÏ& ìÿÿ ÿèõÏ& îÑÿÿ ÿçöÏ& îéÿÿ ÿçìÏ&¸&¬ÿÿ ÿéóÐ& ì&"ÿÿ ÿéöÏ&¸œÿÿ ÿéôÏ& î¾ÿÿ ÿéòÏ& î§ÿÿ ÿèôÏ& î0¼ÿÿ ÿèòÑ& ëÕÿÿ ÿéïÏ& ìÃÿÿ ÿéîÏ& ë.ÿÿ ÿéòÐ& ëÛÿÿ ÿéìÑ& ì¡ÿÿ ÿèïÏ&Å ìÿÿ ÿçõÐ& ë(ÿÿ ÿéôÏ&À ìÿÿ ÿéìÏ&¸0Iÿÿ ÿæöÏ& ìpÿÿ ÿéïÏ& ì½ÿÿ ÿèåÏ& î¾ÿÿ ÿåôÑ& ìÿÿ ÿèíÏ& ë¡ÿÿ ÿéëÏ&à&e&$ÿÿ ÿèöÏ& ì&%ÿÿ ÿèóÏ& ëWÿÿ ÿçóÐ& î&#ÿÿ ÿèóÑ& î&úùÿÿ ÿçöÏ& îÕÿÿ ÿç÷Ï& î&&ÿÿ ÿéõÐ& ì ±ÿÿ ÿèóÏ& ì&'ÿÿ ÿè÷Ï& î&(ÿÿ ÿéòÏ& ì.˜ÿÿ ÿéóÏ& ì&)ÿÿ ÿéíÏ& îvÿÿ ÿèîÏ&¸&*ÿÿ ÿéôÏ& ì0yÿÿ ÿéõÏ&/= ìÿÿ ÿéôÏ&] îÿÿ ÿè÷Ï&¸"äÿÿ ÿèñÏ& ìŒÿÿ ÿæõÏ&-á ìÿÿ ÿéðÏ& ì&+ÿÿ ÿéöÏ& ì&,ÿÿ ÿéøÏ& ¹ íÿÿ ÿéóÏ& ë&-ÿÿ ÿéóÐ& ì&JIÿÿ ÿéòÏ&&. îÿÿ ÿèôÑ& ìXÿÿ ÿéôÏ& î&uÿÿ ÿèöÑ& ë&/ÿÿ ÿíõÌ&ªÿÿ ÿéçÐ&&0 îÿÿ ÿéìÐ& í&ùÿÿ ÿéëÏ& ì&1ÿÿ ÿéòÏ&% îÿÿ ÿéòÏ& î©ÿÿ ÿéóÏ&&2 îÿÿ ÿé÷Ï& ìUÿÿ ÿéóÐ& ì&3ÿÿ ÿéñÐ& î&4ÿÿ ÿéóÏ& î¬ÿÿ ÿéóÐ& ì«ÿÿ ÿéõÐ& î&5ÿÿ ÿéöÏ& î&6ÿÿ ÿåðÏ& î-àÿÿ ÿçõÏ& Ö îÿÿ ÿéóÏ& î&7ÿÿ ÿéóÏ& îÖÿÿ ÿéïÏ& î&8ÿÿ ÿéóÏ&&| îÿÿ ÿéòÏ& î)ÿÿ ÿèðÏ& î0ÿÿ ÿéïÏ&( îÿÿ ÿéñÏ& ì&}ÿÿ ÿéòÐ&õ&¸ùÿÿ ÿéõÏ& ëÈÿÿ ÿéôÑ&ÉWÿÿ ÿéóÐ& í ÿÿ ÿçïÏ& î*gÿÿ ÿéóÐ& î^ÿÿ ÿèôÒ& î_ÿÿ ÿéóÏ& î*åÿÿ ÿéõÏ& í.Rÿÿ ÿéöÏ&¸1„ÿÿ ÿéõÏ& í*hÿÿ ÿéöÏ&*i ìÿÿ ÿèóÐ& ì\ÿÿ ÿèòÏ& ì¯ÿÿ ÿèôÏ&Ç ìÿÿ ÿçóÐ& î,aÿÿ ÿéïÏ& î°ÿÿ ÿèñÏ& í&~ÿÿ ÿéöÏ& ì&ÿÿ ÿéëÏ&î íÿÿ ÿèðÐ&f îÿÿ ÿéòÐ& ì*jÿÿ ÿçóÏ&© ìÿÿ ÿéõÑ&W&KJÿÿ ÿéìÏ&¸îÿÿ ÿéëÏ&%&eàÿÿ ÿèóÏ&Ü îÿÿ ÿéïÏ& ì(@ÿÿ ÿéôÐ&&€ ìÿÿ ÿéõÏ& í¾ÿÿ ÿèîÏ& íÈÿÿ ÿéëÏ&&‚ îÿÿ ÿéóÑ&WVÿÿ ÿéóÏ& î&Èÿÿ ÿèñÏ& î&ƒÿÿ ÿéëÏ& ì&„ÿÿ ÿéôÏ&| ëÿÿ ÿéòÏ& ì&…ÿÿ ÿéôÏ&{ îÿÿ ÿééÏ& ì±ÿÿ ÿèñÏ& î,bÿÿ ÿéôÏ& í&,1…ÿÿ ÿéòÏ& î-äÿÿ ÿéóÐ& ì¯ÿÿ ÿéõÐ& Ê ìÿÿ ÿéóÑ&Q îÿÿ ÿéñÏ& ì­ÿÿ ÿéóÏ& î²ÿÿ ÿéöÏ& ì®ÿÿ ÿéøÏ& ì„ÿÿ ÿéòÏ& î³ÿÿ ÿæöÏ& í”ÿÿ ÿéõÏ& ì.ÿÿ ÿéõÏ&¸&&w1†ÿÿ ÿèóÏ& ì{ÿÿ ÿéõÏ& î&†ÿÿ ÿèòÏ& î*éÿÿ ÿéõÏ&&‡ îÿÿ ÿçðÏ& ìÿÿ ÿéôÏ& C ìÿÿ ÿéôÑ& É ìÿÿ ÿåôÏ&*ú ëÿÿ ÿèñÏ&.Qeÿÿ ÿéòÏ& îrÿÿ ÿéóÏ& ¢&}¸ÿÿ ÿèôÏ&!Þ ìÿÿ ÿéöÐ&"¬ ìÿÿ ÿéòÐ& ì#£ÿÿ ÿéñÏ& î#Éÿÿ ÿéôÏ& î!jÿÿ ÿéôÏ&"Z ìÿÿ ÿéöÏ& í´ÿÿ ÿéîÏ& î&ˆÿÿ ÿéîÐ& í »ÿÿ ÿéíÏ& ì-åÿÿ ÿéòÏ&w îÿÿ ÿéòÏ& ì&‰ÿÿ ÿéñÏ& î"ÿÿ ÿèóÏ& î#@ÿÿ ÿèîÐ& ì0ºÿÿ ÿèôÏ& î!åÿÿ ÿéõÏ& í#‹ÿÿ ÿéõÏ& î#Ùÿÿ ÿéôÏ& ì-ÿÿ ÿéóÏ& î"ÿÿ ÿéóÏ& ì"xÿÿ ÿéôÏ& ì&,ÿÿ ÿèòÏ& î!õÿÿ ÿéïÑ& í!³ÿÿ ÿéôÏ&&Š îÿÿ ÿèõÏ& î@ÿÿ ÿéõÑ& î'ÿÿ ÿçóÏ&&‹ îÿÿ ÿéðÏ& î#Mÿÿ ÿèöÏ&%ĸÿÿ ÿéóÑ& î!Âÿÿ ÿéóÏ& ì&Œÿÿ ÿéóÏ&0reÿÿ ÿéòÏ& î1‡ÿÿ ÿèðÏ& î"wÿÿ ÿéíÏ& ì"ÿÿ ÿéóÐ&"’& ì!8ÿÿ ÿéõÏ& î"Žÿÿ ÿéïÏ& î"Gÿÿ ÿäöÏ& î"oÿÿ ÿéòÐ&^ îÿÿ ÿéôÏ& ì#Ÿÿÿ ÿéóÏ& ì"(ÿÿ ÿèóÏ& î‡ÿÿ ÿéìÏ& í&!ÿÿ ÿéñÏ&¸ hÿÿ ÿéíÏ& í qÿÿ ÿéõÏ&¸#„ÿÿ ÿéõÑ& ì#…ÿÿ ÿèòÐ&¹& ì1ˆÿÿ ÿèõÏ& î#³ÿÿ ÿéòÑ&e#êÿÿ ÿéóÐ& ì!ðÿÿ ÿéíÏ& î1‰ÿÿ ÿéñÑ& î#óÿÿ ÿè÷Ï&$Þ ìÿÿ ÿéóÏ&-Ý îÿÿ ÿéöÏ& ì¶ÿÿ ÿéóÏ& íTÿÿ ÿæõÏ& ì$ÿÿ ÿèôÐ& î,Åÿÿ ÿéìÏ& î"Õÿÿ ÿéïÑ& íBÿÿ ÿçòÏ&&‘ îÿÿ ÿéôÏ& ì-Þÿÿ ÿèôÐ& ìfÿÿ ÿèôÐ&&’ îÿÿ ÿéðÏ&$« îÿÿ ÿèöÒ& î$%ÿÿ ÿéóÐ&$_ îÿÿ ÿéôÏ& ì&,1Šÿÿ ÿéöÑ& î$ÿÿ ÿéòÏ&&“ îÿÿ ÿéëÏ& î$Sÿÿ ÿéñÏ& î# ÿÿ ÿéóÑ& î# ÿÿ ÿéóÐ& î#ÿÿ ÿéòÏ& î$>ÿÿ ÿèðÐ&¸/Lÿÿ ÿéóÏ& ì&°#ÿÿ ÿéóÏ& ì&˜|ÿÿ ÿéòÏ&e-ßÿÿ ÿèñÓ&¸1ÿÿ ÿèóÏ& î&”ÿÿ ÿéöÑ&&• ìÿÿ ÿéíÏ& ì-:ÿÿ ÿéöÐ& ëEÿÿ ÿéôÏ&&,eÿÿ ÿéóÏ& ì)ÿÿ ÿéóÏ& ì&šÿÿ ÿèõÐ& í ÿÿ ÿéòÒ&¸1‹ÿÿ ÿéóÑ&b ìÿÿ ÿèôÐ& ì&œÿÿ ÿéöÏ& ì*æÿÿ ÿçõÐ& î&ÿÿ ÿéóÑ& î&›ÿÿ ÿéòÏ& í& ¢ ¡ÿÿ ÿéòÏ& ì1Œÿÿ ÿéõÏ&4&Ý îÿÿ ÿçõÏ&¸+ ÿÿ ÿéóÏ& ì&¡ÿÿ ÿéóÏ&Ð ìÿÿ ÿéôÏ&Ý& ìÜÿÿ ÿé÷Ï&¸&¢ÿÿ ÿéóÏ& îJÿÿ ÿéöÏ&&¥¸ÿÿ ÿçôÐ& ì&¦ÿÿ ÿéïÏ&è& ó íÿÿ ÿèôÏ& î’ÿÿ ÿéôÐ& î&§ÿÿ ÿéóÏ&Æ ìÿÿ ÿçôÏ& îÄÿÿ ÿéóÒ& ë%æÿÿ ÿéóÏ& ì&£ÿÿ ÿéõÏ&·¸ÿÿ ÿèïÏ&&¨ îÿÿ ÿèõÐ&e&1ÿÿ ÿéôÏ& ízÿÿ ÿéöÏ&¸&%1Žÿÿ ÿéîÏ& ì1ÿÿ ÿéñÏ& í#ëÿÿ ÿéóÏ& ì&©ÿÿ ÿéôÏ& ì&ªÿÿ ÿéòÏ&&«¸ÿÿ ÿèôÏ&¸&¬ÿÿ ÿè÷Ï& í&61ÿÿ ÿéìÑ& îšÿÿ ÿèöÐ&&­ ìÿÿ ÿéëÏ&&®&(L ìÿÿ ÿçêÏ&%ë îÿÿ ÿéöÏ&%ì ìÿÿ ÿèóÏ&¸0Ùÿÿ ÿéóÐ& ìtÿÿ ÿéôÏ& î*Óÿÿ ÿèõÏ&¢1‘ÿÿ ÿéòÏ& ì&¯ÿÿ ÿèóÏ&&° ìÿÿ ÿéìÏ&î& í1’ÿÿ ÿéõÏ&¼ ìÿÿ ÿéøÏ&¸&±ÿÿ ÿéóÏ& ì.äÿÿ ÿçóÏ&¸'ÿÿ ÿéòÏ& í.Ôÿÿ ÿéõÏ& ì1“ÿÿ ÿèôÏ& ì&Éÿÿ ÿéõÑ& ì-îÿÿ ÿèôÐ&½ íÿÿ ÿéðÑ& ì&€1”ÿÿ ÿçôÏ& ì&Êÿÿ ÿéóÒ& ì´ÿÿ ÿéôÑ& í'ˆÿÿ ÿéðÏ& ë'ÿÿ ÿèõÐ&&¸1•ÿÿ ÿéõÏ& ì&Ëÿÿ ÿéõÒ& î&Ìÿÿ ÿé÷Ñ& ì½ÿÿ ÿèõÏ& ì1–ÿÿ ÿèóÑ& ì&Íÿÿ ÿèôÏ& í&ä&,1—ÿÿ ÿçôÑ&¸&Îÿÿ ÿèòÏ&&Ï îÿÿ ÿéñÏ&e&Ðÿÿ ÿéôÏ&1 íÿÿ ÿéóÏ&¸¾ÿÿ ÿéõÑ&¸%vÿÿ ÿéòÐ&)'eÿÿ ÿéóÏ& í&†‡ÿÿ ÿéôÏ& ì¨ÿÿ ÿçðÏ&¸*çÿÿ ÿéñÐ& î)$ÿÿ ÿèñÏ&¸%Oÿÿ ÿç÷Ò& î&Ñÿÿ ÿéòÏ&¸¿ÿÿ ÿéôÐ& ì&Òÿÿ ÿé÷Ï& ë÷ÿÿ ÿçôÐ& î&Óÿÿ ÿéñÐ&-- ìÿÿ ÿéïÏ&e&çæÿÿ ÿçôÏ&e),ÿÿ ÿèøÏ&¸&,c1˜ÿÿ ÿé÷Ï&eÿÿ ÿéðÐ& î1™ÿÿ ÿéöÐ&H îÿÿ ÿéóÏ&e&-1šÿÿ ÿèòÑ& ì&Ôÿÿ ÿéñÑ&¸&Õÿÿ ÿæõÐ& í1›ÿÿ ÿéóÏ&¸&Öÿÿ ÿéóÏ&¸1œÿÿ ÿçòÐ&e&×ÿÿ ÿèôÐ&e&~}ÿÿ ÿæóÑ&¸Tÿÿ ÿéõÏ&e1ÿÿ ÿçòÏ&1&e%iÿÿÿéòÐ&™1ŸÿÿÿçóÑ&ÈðÿÿÿçòÐ&É&™1¤ÿÿÿéõÐ&™ÿÿ ÿéöÏ&!ÿÿ ÿéöÏ&!yÿÿ ÿéöÏ&!! ÿÿ ÿéöÏ&ï!ÿÿ ÿèõÏ&àáÿÿ ÿéöÏ&!Ýÿÿ ÿèõÏ&ÁÂÿÿ ÿéöÏ&! !ÿÿ ÿêøÐ&ê%€ÿÿ ÿçöÏ&ÑÿÿÿéçÇ&/1³ÿÿÿêîÉ&ª&«©ÿÿÿêöÆ&Ä1·ÿÿÿëíÆ&Ä1¹ÿÿÿçîÆ&Ä1ºÿÿ ÿðõÆ&ÞÄÿÿ ÿéòÆ&ÄYÿÿ ÿèòÈ&(& é ìÿÿÿéñÆ&Ä1»ÿÿ ÿèõÆ&Å1¼ÿÿÿèíÆ&Ä1½ÿÿ ÿèòÈ&(& é1¾ÿÿÿéíÆ&Ä"ÿÿÿìíÆ&Ä1¿ÿÿ ÿèéÈ&Ç:ÿÿ ÿéöÏ&ÇÆÿÿ ÿîõÈ&Ç&óÿÿ ÿéëÏ&Ǻÿÿ ÿéöÏ&Ç&ôÿÿÿéñÅ&±&õÿÿ ÿéöÈ&Çñÿÿ ÿéòÐ&Çiÿÿ ÿèõÏ&Ç*dÿÿ ÿçòÐ&Ç&öÿÿ ÿéóÏ&Ç&÷ÿÿ ÿéóÏ&Ç÷ÿÿÿçìÏ&&¬ÿÿ ÿéôÑ&ÇÜÿÿÿéóÑ& ÿÿÿéõÏ&ÿÿÿéëÈ&çÿÿ ÿéôÐ&Ç—ÿÿ ÿéõÏ&.òÿÿ ÿéôÑ&ÇÈÿÿ ÿëôÏ&Ç|ÿÿ ÿéóÏ&²Çÿÿ ÿçëÈ&Ç&sÿÿÿèóÏ&{ÿÿ ÿè÷Ñ&ÏÇÿÿ ÿîóÏ&Ç™ÿÿÿéõÐ&!ÿÿ ÿîõÉ& •Çÿÿ ÿéôÏ&,dÿÿÿé÷Ñ&$#ÿÿÿéðÑ&&€ÿÿÿèóÎ&ƒ&‚ÿÿÿèôÏ&Þ&1ÃÿÿÿèôÒ&&øÿÿ ÿéöÑ&&ùÇÿÿÿéóÎ&&†‡ÿÿ ÿèôÈ&hÿÿ ÿé÷Æ&XTÿÿÿéõÏ&_`ÿÿ ÿé÷Æ&TUÿÿ ÿé÷Æ&TVÿÿ ÿé÷Æ&TWÿÿ ÿéñÒ&-·°ÿÿ ÿé÷Æ&T1Äÿÿ ÿçðÐ&>&;1ÅÿÿÿêõÏ&´&±²ÿÿ ÿé÷Æ&T&zÿÿ ÿéúÏ&µ&¶³ÿÿÿêíÄ&÷öÿÿÿêíÅ&ö1ÉÿÿÿêíÇ&ö1ÊÿÿÿéôÏ&ø1Ëÿÿ ÿçëÏ&&{Èÿÿ ÿéæÏ&Ô¢ÿÿ ÿéëÐ&›Õÿÿ ÿéæÏ&'¢ÿÿÿçæÏ&¢1ÌÿÿÿéæÏ&Ö¢ÿÿÿéëÐ&&ú›ÿÿ ÿéëÎ&›kÿÿÿèæÏ&¢ÿÿÿéëÎ&R›ÿÿ ÿçëÎ& í›ÿÿÿéëÏ&&û›ÿÿ ÿéëÎ&&ü›ÿÿÿéæÏ&§¢ÿÿÿéæÏ&¢&ýÿÿ ÿèæÏ&¢&þÿÿÿéëÎ&&ÿ›ÿÿ ÿéëÐ&'›ÿÿÿèëÏ&›0Åÿÿ ÿèèÎ&óÒÿÿ ÿéëÎ&ß›ÿÿÿèìÏ&¤ÿÿÿéëÎ&›'ÿÿÿèëÏ&'›ÿÿ ÿéæÏ& ¢ÿÿ ÿéìÏ&Ç'ÿÿ ÿéëÑ&f›ÿÿ ÿéæÐ&'¢ÿÿÿéëÏ&£àÿÿÿèëÎ& ›ÿÿ ÿéëÎ&›eÿÿÿéëÎ&›dÿÿ ÿéæÏ&0Æ0Çÿÿ ÿé÷Ï&C0ÿÿ ÿéëÐ&›' ÿÿ ÿèëÐ&Í›ÿÿ ÿéëÎ&› ÿÿ ÿéëÏ&!¯›ÿÿÿéëÎ&!°›ÿÿ ÿéõÐ&ò!­ÿÿÿèëÎ&¤›ÿÿ ÿéëÏ&!®›ÿÿ ÿéæÐ&¢¡ÿÿ ÿéëÑ&Y›ÿÿ ÿéëÏ&›.ãÿÿÿéæÏ&¢.ÖÿÿÿéëÎ&'&›ÿÿ ÿèëÐ&T›ÿÿ ÿéëÐ&›' ÿÿ ÿéëÎ&£›ÿÿÿéæÏ&¢ ÿÿÿéæÏ&!€¢ÿÿ ÿéëÏ&›' ÿÿÿéëÐ&›' ÿÿ ÿèôÑ&' 'ÿÿ ÿéëÏ&!~›ÿÿ ÿéæÏ&¡¢ÿÿ ÿéîÑ&)™ÿÿÿéëÎ&¥›ÿÿ ÿéëÐ&›¢ÿÿ ÿéëÏ&£›ÿÿ ÿéëÎ&›¤ÿÿÿéëÐ& H›ÿÿÿéæÐ&0Ç&]ÿÿÿèëÏ&›*èÿÿÿéìÏ&ÿÿ ÿçëÎ&'›ÿÿÿéëÏ&›'ÿÿÿéëÏ&'›ÿÿ ÿèìÏ& ÙÿÿÿçëÏ&Ý›ÿÿÿèëÎ&'(›ÿÿÿéëÐ& &›ÿÿ ÿéëÐ&,e›ÿÿÿéëÎ&''›ÿÿ ÿéëÎ&›ºÿÿÿéìÏ&$ÑÿÿÿéñÐ&')'*ÿÿ ÿèìÏ&$ÿÿ ÿèìÏ&†ÿÿ ÿéìÏ&#ÚÿÿÿéìÏ&'+ÿÿÿéëÎ&›"ÿÿ ÿéëÏ&˜›ÿÿ ÿéîÐ&0à0áÿÿÿéëÑ&›,fÿÿÿéëÏ&#B›ÿÿÿéëÏ&',›ÿÿ ÿéëÐ&›ÿÿÿéìÏ&0Èÿÿ ÿéëÏ&›*êÿÿ ÿçóÐ&þ1Íÿÿ ÿéëÏ&à-æÿÿ ÿçìÑ&'.ÿÿ ÿéëÎ&›'-ÿÿ ÿéëÐ&›'/ÿÿ ÿéìÏ&*ëÿÿ ÿéëÎ&'0›ÿÿÿèëÏ&'1àÿÿ ÿéëÏ&³›ÿÿ ÿéëÏ&›&1ÎÿÿÿéëÐ&ßàÿÿ ÿéòÑ&É.ÿÿÿéëÎ&›1Ïÿÿ ÿéìÒ&'2ÿÿ ÿéëÎ&'4›ÿÿÿéìÏ&'3ÿÿÿéëÑ&&Á›ÿÿ ÿéìÏ&0æÿÿ ÿçìÑ&%uÿÿÿéîÑ&0á0âÿÿ ÿçëÐ&9›ÿÿÿé÷Ñ&&Â0âÿÿ ÿèëÑ&à'5ÿÿ ÿçëÐ&à'6ÿÿ ÿéëÒ&à1ÐÿÿÿéëÐ&à1Ñÿÿ ÿéóÏ&ê1ÿÿ ÿëèÐ&ëÿÿ ÿéíÏ&ìÆÿÿ ÿæêÏ&í*uÿÿÿèïÑ&NLÿÿ ÿéîÏ&,g ðÿÿÿêïÎ&,hûÿÿ ÿéíÏ&î´ÿÿ ÿéíÏ&î'7ÿÿ ÿéíÏ&ÜîÿÿÿêôÐ&û0‰ÿÿ ÿéîÏ&' ðÿÿ ÿéîÏ&¸ ðÿÿ ÿéîÏ&Œ ðÿÿ ÿæîÏ& ð(+ÿÿ ÿéîÏ&'8 ðÿÿ ÿéïÏ&*î òÿÿ ÿéíÏ&î’ÿÿÿèñÐ&v&÷*ïÿÿÿéëÍ&ÿÿÿéõÏ&!²!±ÿÿ ÿéîÏ& ð¥ÿÿÿéïÏ& ñÿÿ ÿéîÏ&, ðÿÿ ÿéîÐ& ð¢ÿÿÿçõÏ&(&'91Òÿÿ ÿèíÏ&îÁÿÿÿéîÏ&¤ ðÿÿ ÿéîÏ&* ðÿÿÿéïÏ&¥ ñÿÿÿéîÏ& ¯ ðÿÿÿéæÉ&ò ôÿÿ ÿë÷Ï&';':ÿÿ ÿèîÏ&’ ðÿÿ ÿéïÑ&“ ñÿÿ ÿéïÏ&'< ñÿÿ ÿéîÏ& ï ðÿÿÿéïÏ& ñ.ÿÿ ÿéïÏ& ñ!iÿÿÿéïÏ& ñ …ÿÿÿéîÈ& &àáÿÿ ÿéïÏ&] ñÿÿ ÿêóÐ&*ð1Óÿÿ ÿéïÏ&$ ñÿÿ ÿéöÏ&3-çÿÿÿèîÏ&L&å ÿÿ ÿçôÐ&%)1Ôÿÿ ÿéîÏ& ðŠÿÿÿé÷Ï&(.&† õÿÿ ÿèïÏ&*ñ ñÿÿ ÿéïÏ&#“ ñÿÿ ÿéïÐ&Ê ñÿÿÿéïÐ& ò'=ÿÿ ÿéïÐ& ñ1Õÿÿ ÿéïÏ& ò'>ÿÿ ÿéïÑ&'? òÿÿÿêõÎ&í"-ÿÿÿèïÏ&'@ òÿÿ ÿèõÐ&ô&õpÿÿ ÿèïÏ&ó òÿÿ ÿéïÏ& òÿÿÿéïÏ&& óÿÿ ÿèïÑ& ò'Aÿÿ ÿéïÏ& ò*ÿÿ ÿéçÐ&Y_ÿÿ ÿéçÐ&Y^ÿÿ ÿéçÐ&Y`ÿÿ ÿéçÐ&Y1Öÿÿ ÿéçÐ&Yaÿÿ ÿéùÐ&Y1×ÿÿ ÿéçÐ&bYÿÿ ÿéçÐ&Y1Øÿÿ ÿéíÍ&Z\ÿÿ ÿéçÏ&[cÿÿ ÿéçÏ&[dÿÿ ÿéíÍ&Z1Ùÿÿ ÿéíÍ&ëZÿÿ ÿêóÐ&üûÿÿ ÿéíÍ&Z1Úÿÿ ÿéíÍ&Z1Ûÿÿ ÿéóÏ& ëëÿÿ ÿçöÏ&.vÿÿÿòîÇ&âéÿÿÿòîÇ&âêÿÿÿòîÇ&âíÿÿÿòîÇ&â1ÜÿÿÿòîÇ&âéÿÿÿòîÇ&âãÿÿÿòîÇ&âçÿÿÿòîÇ&èâÿÿÿòñÇ&â1ÝÿÿÿòîÇ&â1ÞÿÿÿòôÇ&æ&âåÿÿÿòîÇ&äâÿÿÿòîÇ&â1ßÿÿÿòîÇ&â1àÿÿÿðîÊ&ðñÿÿÿòîÇ&âîÿÿÿòîÇ&â1áÿÿÿòîÇ&â1âÿÿÿòîÇ&â1ãÿÿÿòîÇ&â1äÿÿÿòðÇ&â1åÿÿÿòîÇ&â1æÿÿÿðîÊ&ñòÿÿÿòîÇ&âóÿÿÿòîÇ&â1çÿÿ ÿéõÏ&êÿÿ ÿèòÏ&"0ÿÿ ÿèñÏ&"!ÿÿ ÿèöÏ&"¶ÿÿÿéæÐ&*#+ãÿÿ ÿêëÏ&&SúÿÿÿêëÏ&úÃÿÿÿéêÎ&`1ôÿÿÿéêÐ&`1öÿÿ ÿéëÄ&ÌxÿÿÿéêÀ&*ó`ÿÿ ÿéëÏ&*òÌÿÿÿìõÏ&!±1÷ÿÿ ÿéëÐ&Ìÿÿ ÿéëÐ&¿Ìÿÿ ÿëðË&àáÿÿ ÿéëË&ÍÌÿÿ ÿéõÏ&1øÿÿÿéëÑ&Ì1ùÿÿÿèîÏ&,i/¸ÿÿ ÿèîÇ&Gsÿÿ ÿèîÇ&s1úÿÿ ÿæðÇ&s1ûÿÿ ÿèîÇ&?sÿÿ ÿèîÇ&s1üÿÿ ÿèîÇ&Csÿÿ ÿèîÇ&sÿÿ ÿèòÇ&‘sÿÿ ÿèîÊ&Aÿÿ ÿèòÇ&>sÿÿ ÿèðÇ&s1ýÿÿ ÿèóÇ&s1þÿÿ ÿèîÇ&s1ÿÿÿ ÿèðÇ&Îsÿÿ ÿèîÇ&sHÿÿ ÿèóÊ&A2ÿÿ ÿèòÇ&s! ÿÿ ÿèôÇ&s2ÿÿ ÿèòÇ&Isÿÿ ÿèóÇ&sJÿÿ ÿèóÇ&Ksÿÿ ÿèñÇ&s2ÿÿ ÿèîÇ&s2ÿÿ ÿèîÇ&Nsÿÿ ÿèïÇ&s&MLÿÿ ÿè÷Ê&AOÿÿ ÿçóÇ&s2ÿÿ ÿèôÊ&A2ÿÿ ÿæóÇ&@sÿÿ ÿèòÇ&s2ÿÿ ÿçõÇ&sPÿÿ ÿèòÇ&s2ÿÿ ÿèõÇ&s&—˜ÿÿ ÿèñÇ&sQÿÿ ÿèõÊ&A2ÿÿ ÿèîÊ&A2 ÿÿ ÿèóÊ&A2 ÿÿ ÿéõÏ&ëêÿÿ ÿèõÂ&œÿÿÿèõÏ&œBÿÿ ÿêõÎ&,j'Sÿÿ ÿéõÇ&0Ÿ'SÿÿÿèðÏ&,kïÿÿ ÿèõÐ&'Tœÿÿ ÿéòÏ&¿¾ÿÿ ÿéôÏ&'U4ÿÿÿíìÌ&âãÿÿ ÿéöÏ&™ÿÿÿéèÃ&Ò*.ÿÿÿéêÀ&`*$ÿÿÿéÞÏ&Ç*#ÿÿÿèöÊ&i*%ÿÿÿêóÄ&Ñ*#ÿÿÿíóÊ&ë*2ÿÿÿòîÇ&â2ÿÿÿéòÏ&j*#ÿÿÿçõÁ&Ó*#ÿÿÿè÷Ï&k*.ÿÿÿéíÏ&ì*#ÿÿÿééÃ&Ò*#ÿÿÿêõÂ&¹*2ÿÿÿéðÀ&l*#ÿÿÿîõÐ&m*%ÿÿÿéïÑ&NÿÿÿéîÊ&n*#ÿÿÿéôÆ&o*%ÿÿÿêòÏ&(*#ÿÿÿôöÏ&p*%ÿÿÿìóÌ&q*%ÿÿÿéóÃ&ï*%ÿÿÿêñÍ&s*%ÿÿÿèïÆ&;*#ÿÿÿéòÏ&¬*%ÿÿÿèóÏ&%Á*%ÿÿÿîóÄ&)*2ÿÿ ÿéöÐ&ÿÿ ÿéõÃ&«ÿÿÿèöÑ&Ó*%ÿÿÿéöÏ&*%ÿÿÿìõÍ&,*'ÿÿÿîõÎ&/*2ÿÿÿèöÏ&¡*%ÿÿÿéóÃ& *%ÿÿ ÿéóÇ&0‘*öÿÿÿìõÄ&õ*'ÿÿÿìõÏ&!q*'ÿÿÿéôÏ&Û*'ÿÿÿêñÏ&ú&Q*'ÿÿÿéöÐ&*ô*õÿÿÿéñÍ&ñ*2ÿÿÿéòÐ&±*2ÿÿÿèôÏ&Ê*'ÿÿ ÿèæÐ&0’2ÿÿÿèôÏ&'W*%ÿÿÿèõÏ&*#ÿÿÿèèÐ&/&'X*%ÿÿÿèôÏ&(/*%ÿÿÿéîÐ&'Y*'ÿÿÿéöÏ&B*'ÿÿÿéóÆ&…*/ÿÿÿéõÑ&²*%ÿÿÿìðÏ&{*'ÿÿÿìóÊ&'Z&'[**ÿÿÿéóÏ&%¢*%ÿÿ ÿéôÇ&*÷*õÿÿÿêñÅ&0•*2ÿÿÿêìÐ&*2*ÙÿÿÿèòÆ&0$*/ÿÿÿéõÍ&*2ÿÿ ÿéøÏ&'E'\ÿÿÿéöÏ&/*2ÿÿÿèöÄ&Ó*%ÿÿÿéñÌ&¦*2ÿÿÿèíÏ&£*%ÿÿÿéòÁ&*&. ÿÿÿìõÏ&*%2ÿÿÿéõÏ&¢*2ÿÿÿòñÇ&%þ*'ÿÿÿèñÅ&À*&ÿÿÿèðÂ&& *%ÿÿÿëóÏ&'F**ÿÿÿêìÏ&)þ*#ÿÿÿéóÏ&Ô*%ÿÿÿèõÏ&–*1ÿÿÿéóÅ&'ì*%ÿÿÿêðÇ&Ã*&ÿÿÿèôÂ&Ø*'ÿÿÿçõÏ&Y*'ÿÿÿèòÏ&&*2ÿÿÿêïÏ&(0&***ŠÿÿÿèóÏ&î*#ÿÿÿéõÃ&3*%ÿÿÿéõÏ&*#ÿÿÿêëÇ&*'0ñÿÿÿéòÆ&*3*'ÿÿÿéôÌ&(1ÿÿÿè÷Ï&ñ*%ÿÿÿíòÌ&-**ÿÿÿé÷Ï&S*/ÿÿÿêëÐ&W*2ÿÿÿéóÁ&¶*%ÿÿÿéöÏ&**&2ÿÿÿèìÇ&&*%ÿÿÿõòÆ&*20iÿÿÿéóÅ&&*%ÿÿÿéïÐ&R*#ÿÿÿêóÌ&&*'ÿÿÿõöÄ&Á*%ÿÿÿéóÏ&"W*#ÿÿÿòõÆ&*#ÿÿÿéóÎ&*%ÿÿÿòòÇ&&*'ÿÿÿééÏ&µ*%ÿÿÿíôÐ&?**ÿÿÿèöÎ&***™ÿÿÿéòÏ&**0°ÿÿÿêõÐ&'G*%ÿÿÿéóÐ&U*%ÿÿ ÿéêÐ&÷*uÿÿÿéóÐ&*%0÷ÿÿÿéõÐ&2ÿÿÿéõÐ&* *'ÿÿÿéòÎ&²*'ÿÿÿêóÏ&g&f*'ÿÿ ÿéóÆ&¸·ÿÿÿéñÍ&¡*'ÿÿÿèðÎ&(2*%ÿÿÿêêÏ&+Õ&(3*+ÿÿÿèòÏ&'H*'ÿÿÿíôÏ&'I*/ÿÿÿéõÏ&!*%ÿÿÿêòÏ&S*#ÿÿÿîóÏ&Â*%ÿÿÿöñÎ&**2ÿÿÿéóÇ&Á*#ÿÿÿé÷Ï&+*'ÿÿÿëòÐ&Ù*'ÿÿÿðóÄ&Õ*%ÿÿÿè÷Ï&)*2ÿÿÿèëÏ&­&à**ÿÿ ÿéóÐ&-&ÇÿÿÿéðÏ&¶*%ÿÿÿéôÏ&Z*/ÿÿÿèóÈ&'K&³ÿÿÿèõÍ&©*%ÿÿÿéòÏ&*%0ÕÿÿÿéöÏ&˜*/ÿÿÿéõÐ&\*2ÿÿÿêíÑ&ž*'ÿÿÿééÐ&'J*%ÿÿÿèöÎ&Ö*2ÿÿÿéóÐ&•*'ÿÿÿéóÏ&?*'ÿÿÿéóÏ&x*%ÿÿÿé÷Ì&B*'ÿÿÿòõÅ&Ô*%ÿÿÿéôÏ&N**ÿÿÿéëÉ& ³*'ÿÿÿëòÎ&±*'ÿÿÿéóÏ&K&q*+ÿÿÿéóÇ&Ö*'ÿÿÿéîÈ&.*'ÿÿÿèïÍ&0*'ÿÿÿéîÏ&v*'ÿÿÿèíÏ&*%ÿÿÿïóÏ&*%ÿÿÿéôÑ& ¸*%ÿÿÿéñÐ&ô*/ÿÿÿèíÒ&¾*%ÿÿÿéóÏ&*2-èÿÿÿêöÉ&$*'ÿÿÿïóÈ&*'ÿÿÿññÄ&ß*'ÿÿÿëóÉ&**&ú2 ÿÿÿëôÏ&*'ÿÿÿéòÏ&'N*'ÿÿÿêíÏ&*%.âÿÿÿêóÓ&¹*'ÿÿÿéõÐ&V**ÿÿÿéóÎ&Ø&Ù**ÿÿÿèóÏ&X*'ÿÿÿéõÇ&'O*'ÿÿÿèñÑ&ë*%ÿÿÿçôÏ&Ö*'ÿÿÿèòÐ&Ö*'ÿÿÿëïÏ&º&•**ÿÿÿêóÍ&E*%ÿÿÿæóÆ&Í*%ÿÿÿèóÏ&'P*/ÿÿÿé÷Ï&'Q*'ÿÿÿéòÏ&'R*'ÿÿÿéêÐ&c*2ÿÿÿñóÄ&ç*'ÿÿÿèñÅ&&i&&e*+ÿÿÿéöÆ&&,*/ÿÿÿêóÆ&¸'_ÿÿÿéôÏ&'^*'ÿÿÿêôÏ& *'ÿÿÿéñÏ&0fÿÿÿéóÏ&**0qÿÿÿèôÍ&(8*2ÿÿÿèñÍ&*'ÿÿÿéðÒ&0í*'ÿÿÿéôÈ&/*'ÿÿÿéóÏ&ò*%ÿÿÿæ÷Æ&'b*'ÿÿÿèîÐ&Î*!ÿÿÿêòÏ&*20ŽÿÿÿæîÐ&=*/ÿÿÿèôÆ&é*%ÿÿÿé÷Ñ&*2,ÍÿÿÿçõÑ&*% ÿÿ ÿèóÇ&s2!ÿÿÿëòÆ&'c*%ÿÿÿéôÏ&*'ÿÿÿçõÏ& Õ*'ÿÿÿéõÐ&ã**ÿÿÿéõÊ&**ÿÿÿéìÐ&–&*'ÿÿÿéòÐ&**'ÿÿ ÿéóÐ&Ç2"ÿÿÿðóÏ&*'.—ÿÿÿéóÈ&'d*'ÿÿÿéóÅ&Š*'ÿÿÿñóÇ&*"**ÿÿÿéóÏ&Í*%ÿÿÿéöÇ&”*%ÿÿÿèóÐ&*/2#ÿÿÿìöÎ&*ù2$ÿÿÿèîÐ&*2,lÿÿÿéðÐ&Q*2ÿÿÿëñÏ&­&¬*2ÿÿÿéóÐ&*'*(ÿÿÿêöÏ&`&_*'ÿÿÿéîÁ&**/¸ÿÿÿèøÎ&'±**ÿÿÿèòÏ&²*/ÿÿÿèöÎ&*'»ÿÿ ÿéîÑ&„…ÿÿÿéôÐ&Ÿ**ÿÿÿèïÏ&*1& 2%ÿÿÿéíÃ&°*/ÿÿÿçöÏ& _*2ÿÿÿçõÏ&Þ*&ÿÿÿçòÏ&Ù*'ÿÿÿìöÏ&*''eÿÿÿéóÏ&%Ó*%ÿÿÿéòÐ&*''fÿÿÿìõÑ&Ü&Ý*'ÿÿÿè÷Ð&**2&ÿÿÿéóÏ&&*+ÿÿÿêòÏ&*',mÿÿÿïòÏ&£*'ÿÿÿíòÏ&*/&è2'ÿÿÿèðÇ&, *1ÿÿÿéëÇ&'Û*2ÿÿÿéóÐ&*',nÿÿÿêøÅ&ü**ÿÿÿéòÏ& V*'ÿÿÿéòÏ&¿*'ÿÿÿéöÏ&*1.éÿÿÿéóÀ&*+&~*ÿÿÿéñÎ&*2(AÿÿÿñòÏ&+*'ÿÿÿêóÑ&"f*'ÿÿ ÿéóÏ&­ýÿÿÿéìÊ&f2(ÿÿÿéóÏ&1*'ÿÿÿèóÏ&*2+­ÿÿÿéîÄ&*/*0ÿÿÿéõÏ&2)ÿÿÿèìÏ&'g*'ÿÿÿèôÏ&Û*%ÿÿÿéëÎ&'h*'ÿÿÿèõÆ& Õ**ÿÿÿéìÐ&*1&¿2*ÿÿÿóòÅ&#j*'ÿÿ ÿèõÏ&-2+ÿÿÿéóÐ& I*'ÿÿÿèñÆ&'i*+ÿÿÿéïÏ&*+&[2,ÿÿÿèôÐ&]*%ÿÿÿèõÑ&&*+ÿÿÿêóÐ&*+&b2-ÿÿÿæñÏ&*'*ûÿÿÿëîÐ&**&,o2.ÿÿ ÿéòÏ&, 2/ÿÿÿèðÏ&*+&*ü 8ÿÿÿéóÐ&*'20ÿÿÿéôÏ&€&®*1ÿÿÿéôÑ&9*'ÿÿÿèñÑ&**0—ÿÿÿçòÐ&*'21ÿÿÿéìÑ&!À…ÿÿÿéîÑ&ã**ÿÿÿèóÏ&!ê*'ÿÿÿèöÏ&á&%Ã*+ÿÿÿïóÎ&Ù*'ÿÿÿêôÐ&"¤*'ÿÿÿëîÉ& r*'ÿÿÿèóÆ&#>*'ÿÿÿéóÏ&*'"µÿÿÿéëÏ&!}&à*1ÿÿÿéñÏ&#Ñ*'ÿÿÿé÷Ï&q&r*+ÿÿÿéöÐ&ß**ÿÿÿèóÎ&?**ÿÿ ÿçæÉ&924ÿÿÿéõÏ&.&/**ÿÿÿéîÇ&!#*'ÿÿÿéñÏ&'j*1ÿÿÿéóÑ&X*2ÿÿÿéôÏ&¼*'ÿÿÿçòÇ&'›*'ÿÿÿéõÈ&*%ÿÿÿéïÅ&"G**ÿÿÿèóÏ&â**ÿÿÿéõÏ&"ë*/ÿÿÿéõÏ&£**ÿÿÿéîÈ&&ˆ**ÿÿÿéïÏ&**&[25ÿÿÿèìÉ&à*'ÿÿÿéòÐ&"ö*'ÿÿÿèóÎ&!ö*'ÿÿÿêòÐ&L26ÿÿÿìõÑ&*2"±ÿÿÿèôÏ&$€*/ÿÿÿîòÏ&"*'ÿÿÿéóÏ&!»*'ÿÿÿéõÑ&ä**ÿÿÿéôÏ&!"*'ÿÿÿèòÏ&!æ*/ÿÿÿèõÓ&'œ**ÿÿÿëôÇ&! */ÿÿÿëïÐ&”&•*+ÿÿÿòôÏ&"g**ÿÿÿéòÏ&*'0¢ÿÿÿéëÑ&*ý.ÏÿÿÿéóÐ&!ñ*'ÿÿÿíõÐ&**/ÿÿÿéöÏ&*'ÿÿÿèôÏ&#´*'ÿÿÿéëÑ&.Ï29ÿÿ ÿèóÉ&è2:ÿÿÿèõÐ&T2;ÿÿÿéóÏ&'Þ*2ÿÿÿéòÐ&% *'ÿÿÿêóÉ&*/-éÿÿÿéóÏ&$l*'ÿÿÿèõÐ& */ÿÿÿìôÏ&*'/ÿÿÿêôÏ&*''ßÿÿÿéôÈ&*'1ÿÿÿéïÑ&**-êÿÿÿïôÏ&*'*)ÿÿÿçíË&$ì*+ÿÿÿéñÇ&*2ÿÿÿéóÏ&R*'ÿÿÿêðÑ&*2‡ÿÿÿîõÏ&)i*%ÿÿÿéõÏ&*'#CÿÿÿéóË&'n*'ÿÿÿçóÐ&æ*'ÿÿÿéôÆ&'o*/ÿÿÿèöÏ&% *'ÿÿÿéîÑ&$–*'ÿÿÿçñÏ&#*2ÿÿÿèõÐ&*''pÿÿÿéóÏ&$D*'ÿÿÿéðÆ&*'$ÿÿÿíóÐ&å*/ÿÿÿéõÏ&***oÿÿÿðôÅ&É*2ÿÿÿéïÉ&.þ2<ÿÿÿèóÏ&**2=ÿÿÿçöÐ&*/.ÿÿÿÿèñÏ&*'2>ÿÿ ÿéóÐ&/'qÿÿÿéõÐ&€&*+ÿÿÿêðÏ&$|*'ÿÿÿèôÏ&**$eÿÿÿéòÈ&**/;ÿÿÿèòÐ&**2?ÿÿÿìóÈ&$A*'ÿÿÿèöÐ&**2@ÿÿÿéóÏ&**/ÿÿÿíõÉ&*+&Þ2AÿÿÿéôÉ&*'/9ÿÿÿèõÐ&*+&2BÿÿÿíõÏ&*+&Þ2CÿÿÿéòÏ&**-<ÿÿÿèôÏ&%**'ÿÿÿéõÏ&*+&!ä2DÿÿÿéõÏ&ç&è&é*+ÿÿÿçôÐ&'r**ÿÿÿéîÑ&¹*2ÿÿÿéõÒ&~*1ÿÿÿéëÏ&'s&'t2EÿÿÿéôÑ&*'2Fÿÿÿê÷Ð&°**ÿÿÿéóÏ&¡**ÿÿ ÿçóÏ&'u2GÿÿÿéóÉ&'v**ÿÿÿçóÏ&**+ÿÿÿèôÌ&**2Hÿÿ ÿéöÏ& ‹ÿÿÿé÷Í&'w**ÿÿÿêòÏ&*'/SÿÿÿéîÇ&q*+ÿÿÿòóÇ&&š*+ÿÿÿéðÆ&*'2IÿÿÿèõÐ&'x**ÿÿÿéîÐ&d&efÿÿÿéóÏ&'y*/ÿÿÿéøÑ&'z*1ÿÿÿìôÏ&'{*'ÿÿÿèôÎ&>&’*+ÿÿÿéïÏ& ó&!;*+ÿÿÿèñÏ&$&&e*+ÿÿÿéëÏ&**-ëÿÿÿæïÇ&*+,(ÿÿÿéõÑ&**#}ÿÿÿéóÏ&†**ÿÿÿçóÈ&**-ìÿÿÿéõÈ&**,×ÿÿÿéøÏ&*+&.ý2JÿÿÿèïÎ&&¨*+ÿÿÿéòÏ&%à*+ÿÿÿéõÑ&¼**ÿÿÿèñÈ&*/2KÿÿÿèíÐ&ê&Æ*+ÿÿÿçôÏ&'|*'ÿÿÿéöÏ&*+2LÿÿÿèôÎ&<**ÿÿÿèôÐ&*+&Þ2MÿÿÿéöÐ&ë*+ÿÿÿéôÏ&%é*'ÿÿÿèõÏ&'}**ÿÿÿéòÏ&'~*'ÿÿÿéòÈ&*%ÿÿÿéóÉ&'*'ÿÿÿèñÆ&'€*'ÿÿÿèôË&'**ÿÿÿíóÉ&*'2NÿÿÿéóÒ&%æ*'ÿÿÿéòÏ&#ì*/ÿÿÿèôÈ&**0Øÿÿÿè÷Ì&*+&62OÿÿÿèõÐ&*+&2PÿÿÿçìÇ&%ê*'ÿÿÿêíÑ&'‚*'ÿÿÿêõÏ&%è**ÿÿÿîïÏ&2**ÿÿ ÿêóÊ&'ƒ&'„2QÿÿÿéóÏ&ÿ*/ÿÿÿîöË&%**ÿÿÿêóÐ&&¤*'ÿÿÿèõÊ&Ô*/ÿÿÿéõÏ&*'._ÿÿÿéóÌ&%í**ÿÿÿêóÑ&**.ØÿÿÿèôÐ&**,)ÿÿÿé÷Ñ&&Ã**ÿÿÿêõÏ&*+.üÿÿÿèöÑ&'…**ÿÿÿéñÈ&'*'ÿÿÿéòÏ&**.åÿÿÿçôÏ&'†*/ÿÿÿêöÏ&'‡*1ÿÿÿé÷Ê&ö**ÿÿÿìöÑ&)ô**ÿÿÿïöÏ&**2TÿÿÿèõÐ&*+&2UÿÿÿéõË&¤**ÿÿÿèôÏ&'Š*+ÿÿÿéóÐ&*+/ÿÿÿèôÏ&*/-ÿÿÿéõÔ&'‹**ÿÿÿéðÏ&*12VÿÿÿèöÐ&'Œ*'ÿÿÿéðÏ&**,†ÿÿÿéõÑ&!ä&!Ã*+ÿÿÿéöÐ&*-&2WÿÿÿéðÏ&'**ÿÿÿèôÐ&*+&Þ2XÿÿÿïõÑ&*+-îÿÿÿéòÏ&*1.ÕÿÿÿéòÐ&**&!Ä2YÿÿÿèóÊ&**.æÿÿÿéôÒ&Q**ÿÿÿéñÊ&'Ž**ÿÿÿíôÐ&P**ÿÿÿíõÈ&*+&Þ2ZÿÿÿéôÏ&'**ÿÿÿéòÊ&'*+ÿÿÿèôÏ&í*+ÿÿÿêõÎ&*-&/2[ÿÿÿéôÐ&*'7ÿÿÿçøÒ&Õ**ÿÿÿîôÏ&'‘**ÿÿÿéïÑ&*++ÿÿÿéöÏ&**/ ÿÿÿêóÐ&***,ÿÿÿéõÏ&**.`ÿÿÿèòÏ&**2\ÿÿÿéöÒ&**)øÿÿÿé÷È&÷*+ÿÿÿçõÌ&*+0”ÿÿÿéòÏ&'’**ÿÿÿééÊ&È&ÄÅÿÿÿîñË&%Q**ÿÿÿèôÒ&%*/ÿÿÿèïÏ&*+& 2]ÿÿ ÿéôË&’&“”ÿÿÿçôÐ&*+*þÿÿÿè÷È&R*1ÿÿÿéøÑ&û*/ÿÿÿéöÐ&H*+ÿÿÿéëÊ&*+&&®2_ÿÿÿèøÏ&*+&,c2`ÿÿÿèöÏ&*+&2aÿÿ ÿéóÏ&,~,€ÿÿÿèîÐ&»-ïÿÿÿèñÈ&**,ÀÿÿÿéòÑ&*ÿ+ÿÿÿéîÑ&¿2bÿÿ ÿéõÌ&,2cÿÿÿèòÑ&7*%ÿÿÿèòË&*+,}ÿÿÿéñÑ&%÷**ÿÿÿéòÎ&*+-ðÿÿÿèôÏ&*+2dÿÿÿéóÏ&O*+ÿÿÿéóÏ&*-&šYÿÿÿéóÌ&'“*+ÿÿÿëñË&ÿ& ¤ £ÿÿÿéóÏ&†&)“*-ÿÿ ÿéöÈ&%-$ÉÿÿÿêòÏ&**2eÿÿÿçöÏ&*+2fÿÿÿéóÉ&*+.çÿÿÿçìÑ&ï&îíÿÿÿçõÐ&**‡ÿÿÿéöÏ&*+2gÿÿ ÿéôÏ&,,€ÿÿÿêïÑ&*-&è2hÿÿÿéðÌ&*10åÿÿÿéòÐ&*+2iÿÿÿèïÏ&1*+ÿÿÿééÇ&2jÿÿÿééÇ&2kÿÿÿééÇ&2lÿÿÿééÇ&ÿÿÿééÇ&2mÿÿÿééÇ&zÿÿÿééÇ&2nÿÿÿééÇ&2oÿÿÿéèÇ&2pÿÿÿééÇ&2qÿÿÿééÇ&lÿÿÿééÇ&mÿÿÿééÇ&2rÿÿÿééÇ&nÿÿÿééÇ&oÿÿÿééÇ&2tÿÿÿééÇ&wÿÿÿééÇ&2uÿÿÿééÇ&xÿÿÿééÇ&2vÿÿÿééÇ&yÿÿÿééÇ&ÿÿÿééÇ&zÿÿÿéèÇ&2wÿÿÿéèÇ&&|{ÿÿÿéèÇ&}ÿÿÿéèÇ&2xÿÿÿéèÇ&2yÿÿÿéèÇ&2zÿÿÿéèÇ&ÿÿÿéèÇ&2{ÿÿÿéèÇ&2|ÿÿÿéèÇ&2}ÿÿÿéèÇ&›ÿÿÿéèÇ&‘ÿÿÿéèÇ&2~ÿÿÿéèÇ&2ÿÿÿéèÇ&2€ÿÿÿéèÇ&2ÿÿÿéèÇ&2‚ÿÿÿéèÇ&2ƒÿÿÿéèÇ&2„ÿÿÿéèÇ&2…ÿÿÿéèÇ&2†ÿÿÿéèÇ&2‡ÿÿÿéèÇ&2ˆÿÿÿíòÏ&2½ÿÿÿêóÌ&½ÑÿÿÿñòÄ&2‰ÿÿÿè÷Ï&ðkÿÿ ÿìôÅ&'ž'ÿÿÿéðÌ&ðlÿÿ ÿîõÐ&µmÿÿÿêðÌ&ðÿÿÿî÷Ì&ðÿÿÿìõÌ&ðÿÿ ÿîôÏ&µ·ÿÿÿèíÐ&Åðÿÿ ÿéìÏ&( µÿÿÿéóÌ&ðïÿÿ ÿéêÏ&µ¾ÿÿÿêóÐ&ð¿ÿÿ ÿéëË&µ%3ÿÿ ÿéñÍ&µñÿÿ ÿéóË&µ…ÿÿÿðóÌ&ðßÿÿ ÿèôË&µÿÿ ÿêóÎ&µÀÿÿ ÿèöÑ&µÓÿÿ ÿêìÐ&µ*Ùÿÿ ÿìøÏ&µ#ÿÿÿèòÏ&ð0«ÿÿ ÿéôÏ&Ûµÿÿ ÿðóÏ&›Ùÿÿ ÿèðË&lµÿÿÿéõÑ&ð²ÿÿ ÿéóË&µ ÿÿ ÿéòÏ&¶bÿÿ ÿéöÏ&Bµÿÿ ÿðòÆ&›2ŠÿÿÿñòÏ&2‹ÿÿÿçõÌ&ð!vÿÿ ÿèñË&µÀÿÿ ÿèðË&µ& ÿÿÿêìÏ&ð)þÿÿ ÿéõÐ&µ' ÿÿ ÿðóÏ&›&œšÿÿ ÿèôÏ&µÿÿ ÿèðÐ&'¡µÿÿ ÿéìÏ&µ!wÿÿÿòõÌ&ðÿÿ ÿõöË&µÁÿÿ ÿîóÏ&µÂÿÿ ÿéóÎ&µÿÿ ÿéóË&¶dÿÿ ÿéõÏ&µÿÿ ÿêðË&õÿÿ ÿéòÐ&kµÿÿ ÿõòË&µ,ÿÿ ÿéíË&%ʵÿÿ ÿêöÏ&0®µÿÿ ÿéòÏ&0°µÿÿ ÿéïÐ&& ò2Œÿÿ ÿîòÌ&µ'¢ÿÿ ÿèôË&µØÿÿ ÿéóË&µ¶ÿÿ ÿèôÏ&¶”ÿÿ ÿçóÎ&'£µÿÿ ÿçõÏ&¶‡ÿÿ ÿéòÎ&²µÿÿ ÿêóÌ&µ&ÿÿ ÿóóÐ&¶gÿÿ ÿðóÏ&+å›ÿÿ ÿíóÏ&µ'¦ÿÿ ÿêòÏ&µ(Êÿÿ ÿñòÑ&&I'¥ÿÿ ÿíôÐ&ø¶ÿÿ ÿðòË&›&žŸÿÿ ÿéîË&.µÿÿ ÿéôÏ& ¶ÿÿ ÿðóÎ&›2Žÿÿ ÿéóÐ&¶•ÿÿÿðñÉ&++ÿÿ ÿðòÏ&›ÿÿ ÿé÷Ì&¶Bÿÿ ÿéòÑ&¶&SQÿÿ ÿé÷Ï&+µÿÿ ÿëõÏ&+2ÿÿ ÿéõË&µ'Oÿÿ ÿêõÑ&µŽÿÿ ÿëòÐ&µÙÿÿ ÿéðÏ&¶µÿÿ ÿêöË&µ$ÿÿ ÿðóÑ&H&I›ÿÿ ÿéóË&µÿÿ ÿòõË&µÿÿÿ ÿðóË&µÕÿÿ ÿéôÑ&µ ¸ÿÿ ÿðóË&B›ÿÿ ÿèíÒ&µ¾ÿÿÿñòÆ&Þÿÿ ÿèõÏ&µáÿÿ ÿðõÏ&›2ÿÿ ÿèïÍ&µ0ÿÿ ÿññË&¶ßÿÿ ÿéõÐ&µóÿÿ ÿéôÏ&µ°ÿÿ ÿíôÎ&µ,”ÿÿ ÿéóÎ&¶&ØÙÿÿ ÿéóÏ&µ2‘ÿÿ ÿèóÏ&µ0½ÿÿ ÿéôÐ&µ'§ÿÿ ÿçõÑ&µŽÿÿ ÿèñÐ&&f&&e¶ÿÿ ÿêòÑ&'¨¶ÿÿ ÿîôÐ&è2’ÿÿ ÿðòÏ&˜&›2“ÿÿ ÿêðÏ&µ2”ÿÿ ÿéõÏ&/=¶ÿÿ ÿæ÷Ë&µ'bÿÿ ÿéôÏ&µÿÿ ÿæîÐ&¶=ÿÿ ÿèíË&µ'©ÿÿ ÿéôÑ&'ªµÿÿ ÿñóË&µçÿÿ ÿêôÏ&'«µÿÿ ÿçøÏ&¶:ÿÿ ÿéõË&ÿÿ ÿéñË&µ'¬ÿÿ ÿéõÌ&µ'aÿÿ ÿêòÓ&µiÿÿ ÿéðÒ&µ0íÿÿ ÿñòË&µ0@ÿÿ ÿéöÏ&µ'­ÿÿ ÿéóÏ&&2–ÿÿ ÿéôË&[µÿÿ ÿèìË&µ'®ÿÿ ÿðöÏ&›2—ÿÿ ÿìöÑ&¶ ÿÿ ÿèöÏ&¶<ÿÿ ÿèòÐ&µzÿÿ ÿóòË&µ#jÿÿ ÿìõÐ& Êÿÿ ÿéóÏ&µ1ÿÿ ÿéôÏ&'¯µÿÿ ÿéóÏ&µ'°ÿÿ ÿçðË&µÿÿ ÿéóÑ&µ!ÿÿ ÿèõÒ&¶ ÿÿ ÿéöÏ&Iÿÿ ÿèôÏ&µÛÿÿ ÿíòÏ&+¶ÿÿ ÿéñÎ&(Aµÿÿ ÿéöÏ&.Sÿÿ ÿèøÎ&'±¶ÿÿ ÿéëÎ&¶'hÿÿ ÿòòÎ&µrÿÿ ÿïòÏ&£¶ÿÿÿéøÏ&'²ÿÿÿ ÿéøÏ&ÿÀÿÿ ÿéìË&µÿÿ ÿéòÐ&µ%Ðÿÿ ÿêóÑ&"fµÿÿ ÿéôÏ&ÿµÿÿ ÿéóË&µŸÿÿ ÿéïË&¶(@ÿÿ ÿêõË&µ/ÿÿ ÿçöÏ& _µÿÿ ÿðòÇ&›0Ïÿÿ ÿéôÐ&¶Ÿÿÿ ÿéíË&'³µÿÿ ÿéòÐ&µ'fÿÿ ÿðòÇ&#k›ÿÿ ÿèíË&&ÇÆÿÿ ÿéîË&¶èÿÿ ÿìôÎ&,¶ÿÿ ÿèôÏ&'صÿÿ ÿìôË&¶'´ÿÿÿíòÐ&à 4ÿÿ ÿéòË&¶.Lÿÿ ÿîôÑ&y&èzÿÿ ÿðôË&¶ÿÿ ÿéíË&5µÿÿ ÿéõÏ&:¶ÿÿ ÿéîË&µ!#ÿÿ ÿèõÎ&¶@ÿÿ ÿé÷Ï&¶&rqÿÿ ÿîôÏ&$a&'µèÿÿ ÿéîË&¶ sÿÿ ÿéñË&µ"ÿÿ ÿñôÐ&&Ú#fÿÿ ÿè÷Ë&¶"Cÿÿ ÿéîË&&ˆ¶ÿÿ ÿéôÏ&&Øÿÿ ÿïóÎ&µÙÿÿ ÿéöÏ&¶ÿÿ ÿìõÑ&'¶ÿÿ ÿêôË&µ3ÿÿ ÿïñË&¶#ÉÿÿÿéôÏ&Á4ÿÿ ÿðòÉ&›2šÿÿ ÿéëË&µ þÿÿ ÿçõË&Yµÿÿ ÿéóÏ&¶Íÿÿ ÿéñÏ&µ)‚ÿÿ ÿéóÑ&µXÿÿ ÿêõË&¶:ÿÿ ÿîôÏ&¶!^ÿÿ ÿéõË&¶ pÿÿ ÿîôÐ&…& èÿÿ ÿòòË&J&¶2›ÿÿ ÿéöÐ&ßÿÿ ÿéòË&¶wÿÿ ÿîôÈ&„&è2œÿÿ ÿêñË&J&¶2ÿÿ ÿîôÊ&è2žÿÿ ÿéöÒ&/E¶ÿÿ ÿéñÑ&µ#ôÿÿÿíòÏ&Þ&ßàÿÿ ÿêîË&µ#{ÿÿ ÿéõÏ&32Ÿÿÿ ÿéöÏ&Nµÿÿ ÿîòÏ&Lµÿÿ ÿðòÑ&›&¿Àÿÿ ÿéóÐ&${&Mÿÿ ÿèóË& áµÿÿ ÿéõÏ&µ#Cÿÿ ÿéõÏ&¶*oÿÿ ÿîôÐ&ð&è2 ÿÿ ÿéôÑ&¶Ðÿÿ ÿéòÐ&¶% ÿÿ ÿéôË&¶2¡ÿÿ ÿéõË&¶$ÿÿ ÿéîÑ&$–¶ÿÿÿïñÑ&G2¢ÿÿ ÿéóÑ&µ'¶ÿÿ ÿçñÏ&µ#ÿÿ ÿîôÏ&è&…2£ÿÿ ÿèõË&¢µÿÿ ÿéðË&µ$ÿÿ ÿéòÏ&¶2¤ÿÿ ÿðôÐ&¶2¥ÿÿ ÿçóÐ&µæÿÿ ÿéôË&ȶÿÿ ÿðôË&¶Îÿÿ ÿéñÏ&¶%ÿÿ ÿîõÑ&…&èÿÿ ÿðòÐ&›&  ÿÿ ÿéóÑ&bÿÿ ÿéíÏ&-:ÿÿ ÿçðÒ&¼2¦ÿÿ ÿêôÑ&'·ÿÿ ÿîôÏ&è2§ÿÿ ÿéòÐ&Ç2¨ÿÿ ÿéöÏ&µNÿÿ ÿéóÏ&¶+ÿÿ ÿèôÐ&¶'¸ÿÿ ÿîôÏ&'¹èÿÿ ÿçôÐ&µ1ÿÿ ÿèôË&.™ÿÿ ÿéôË&µ&žÿÿ ÿéóË&¶'vÿÿ ÿèöÑ&¶,yÿÿ ÿîôÉ&é&êèÿÿ ÿéõÏ&,„¶ÿÿ ÿéôÑ&n¶ÿÿ ÿéïÏ& ó&#Nÿÿ ÿèñÓ&1ÿÿ ÿîöÐ&è0 ÿÿ ÿçõÑ&'ºÿÿ ÿèñÐ&&e&&gÿÿ ÿðòÒ&›sÿÿ ÿïòÏ&$þµÿÿ ÿéîÑ&'»ÿÿ ÿéóÏ&“¶ÿÿ ÿïôÏ&k2©ÿÿ ÿéòÏ&µ-<ÿÿ ÿéíÏ&µ,zÿÿ ÿéõÐ&ê&,{ÿÿ ÿéñÐ&'¼ÿÿ ÿé÷Ë&&ì2ªÿÿ ÿîôÏ&!¨&!§èÿÿ ÿèôÎ&<ÿÿ ÿêíÑ&¶'‚ÿÿ ÿéóÏ&¶'yÿÿ ÿéòË&µÿÿ ÿéóÐ&'½¶ÿÿ ÿêóÐ&&¤¶ÿÿ ÿíóÐ&¶'¾ÿÿ ÿéõÏ&¶'¿ÿÿ ÿîôË&,|èÿÿ ÿéôÐ&'À&,"ÿÿ ÿéóÒ&µ%æÿÿ ÿîôÒ&"ì&!¨èÿÿ ÿìóÑ&"Š&$2«ÿÿ ÿìóÑ&"Š&$2¬ÿÿ ÿîöË&¶%ÿÿ ÿéöÐ&ëÿÿ ÿèöÏ&µ'Áÿÿ ÿéõÏ&¶2­ÿÿ ÿéìË&&î2®ÿÿ ÿèöÑ&¶'Âÿÿ ÿéôÏ&'öÿÿ ÿîõÐ&u&è2¯ÿÿ ÿèõÐ&&2°ÿÿ ÿî÷Ð&C&è2±ÿÿ ÿéôË&¶'Äÿÿ ÿðòÑ&›.ÿÿ ÿîôÍ&è2²ÿÿ ÿîôÐ&œ&è2³ÿÿÿñòÑ&ÿÿ ÿïóÒ&´¶ÿÿ ÿé÷Ð&¶'Åÿÿ ÿèôÏ&¶-ÿÿ ÿêòÏ&.š¶ÿÿ ÿêøÐ&+æÿÿ ÿèõÐ&µ¢ÿÿ ÿíôÐ&P¶ÿÿ ÿîôÏ&è2´ÿÿ ÿíóÏ&.uÿÿ ÿìõÊ&$2µÿÿ ÿéòÏ&0Ãÿÿ ÿéïÑ&¶+ÿÿ ÿéðË&¶%óÿÿ ÿîôÏ&'‘ÿÿ ÿîôË&%jèÿÿ ÿèôÒ&%¶ÿÿ ÿéøÑ&û¶ÿÿ ÿèïË&&ô2¶ÿÿ ÿéïÍ&2·ÿÿ ÿëôÏ&Ü&2¸ÿÿ ÿèòÐ&¶.aÿÿ ÿìöÐ&$.›ÿÿ ÿè÷Ë&Rÿÿ ÿçõÏ&#&!2¹ÿÿ ÿéñÑ&¶%÷ÿÿ ÿêóË&2ºÿÿ ÿéóË&.Gÿÿ ÿîôÉ&&¹&&¸èÿÿ ÿéôÍ&2»ÿÿ ÿèôÏ&  ÿÿ ÿéíÏ&+Kÿÿ ÿçðÐ&+2¾ÿÿÿëëÏ&'Æ2¿ÿÿÿêòÏ&'Æ2ÀÿÿÿððÐ&+2ÁÿÿÿïïÏ&+ 2Âÿÿ ÿéñË&¶$ZÿÿÿïîÏ&V2Ãÿÿ ÿéóÐ&+ 2Äÿÿ ÿëóÏ& û úÿÿ ÿéóÒ&¶%æÿÿÿèïÑ&MNÿÿÿêòÏ&øðÿÿÿèñÑ&PQÿÿÿêëÏ&”úÿÿÿìóÎ&”'ÇÿÿÿéëÎ&”Ìÿÿ ÿèðÉ&+è2Ïÿÿ ÿéòÐ&™2Ðÿÿ ÿèïÏ&¸ÿÿ ÿèìÏ&ÿÿ ÿèïÏ&|ÿÿ ÿéôÐ&+ç2Õÿÿ ÿéôÐ&+ç2×ÿÿ ÿéôÐ&+ç2Ùÿÿ ÿçôÐ&+ç2Úÿÿ ÿéòÄ&}Kÿÿ ÿïõÐ&&2Ûÿÿ ÿëôÐ&¾2Ýÿÿ ÿèôÐ&¾2Þÿÿ ÿèõÏ&&º+éÿÿ ÿïôÐ&¾2áÿÿ ÿéóÏ&& ÿÿ ÿçôÐ&*‹¾ÿÿ ÿéóÏ&ñ ÿÿ ÿéòÏ&K2ãÿÿ ÿèôÐ&¾2äÿÿ ÿéòÏ& 2åÿÿ ÿçôÑ&+ê2æÿÿ ÿèõÐ&&2çÿÿ ÿéóÐ& J ÿÿ ÿèôÐ&¾2èÿÿ ÿéõÐ&&%ÿÿ ÿèõÇ&§2éÿÿ ÿçôÒ&+ê2êÿÿ ÿçôÒ&+ê2ëÿÿ ÿéòÏ&  ÿÿ ÿìôÐ&¾2ìÿÿ ÿêöÐ&‡2íÿÿ ÿèöÐ&‡2îÿÿ ÿéòÐ&j ÿÿ ÿéõÑ&+ë2ðÿÿ ÿéòÉ&Á& 2ñÿÿ ÿçôÒ&+ê-ñÿÿ ÿéòÏ&1'ÿÿ ÿèõÏ&%œÿÿ ÿèìÏ&(Þÿÿ ÿèóÏ& #ÿÿ ÿèóÏ&&%ÿÿ ÿèôÏ&·(ÿÿ ÿèôÏ&#üÿÿ ÿèóÏ&#ýÿÿ ÿèôÏ&‡oÿÿ ÿèêÏ&(¾ÿÿ ÿèöÏ&þ2òÿÿÿèôÏ&üÿÿ ÿèìÏ&#Yÿÿ ÿèéÎ&'È'Éÿÿ ÿè÷Ï&%ÿÿ ÿèòÏ&+Ãÿÿ ÿèóÏ&(Èÿÿ ÿèóÐ&  ÿÿ ÿèëÏ&-ò%ÿÿ ÿèïÏ&#;ÿÿ ÿèñÏ&‡®ÿÿ ÿèôÏ&(ÿÿ ÿèöÏ&(¡ÿÿ ÿèõÏ&‡Rÿÿ ÿèòÏ&‡&yÿÿ ÿèìÏ&‡(¾ÿÿ ÿèõÏ&#ÿÿ ÿèõÏ&`#ÿÿ ÿèöÑ&‡­ÿÿ ÿçõÏ&(!vÿÿ ÿèôÏ&((/ÿÿ ÿèòÍ&2óÿÿ ÿèôÏ&üKÿÿ ÿèóÏ&()ÿÿ ÿèîÏ&ð#ÿÿ ÿèóÏ&‡!rÿÿ ÿèôÏ&‡Úÿÿ ÿèõÏ&‡ÿÿ ÿèñÏ&(8ÿÿ ÿçóÎ&¤¥ÿÿ ÿèôÏ&%:ÿÿ ÿèöÏ&Þ(ÿÿ ÿèóÐ&#…ÿÿ ÿèöÏ&(Þÿÿ ÿèôÏ&‡…ÿÿ ÿèëÏ&('Ìÿÿ ÿèòÏ&‡Îÿÿ ÿèòÏ&('Êÿÿ ÿèëÏ&‡)ÿÿÿ ÿèêÏ&‡jÿÿ ÿèöÏ&(äÿÿ ÿèîÏ&*Xÿÿ ÿèóÑ&-ó Kÿÿ ÿèóÏ&‡'Ëÿÿ ÿèóÏ&(Ôÿÿ ÿèõÏ&('Íÿÿ ÿèöÏ&'Î(ÿÿ ÿè÷Ï&*ÿÿ ÿèïÐ&#Rÿÿ ÿèòÏ&'Ïÿÿ ÿèóÐ&‡'Ðÿÿ ÿèëÐ&*Wÿÿ ÿèôÏ&!m(ÿÿ ÿèóÏ&#ÿÿ ÿèôÏ&‡ÿÿ ÿèóÑ& K2ôÿÿ ÿçõÏ&¦‡ÿÿ ÿèïÏ&]‡ÿÿ ÿèïÏ&‡'Ñÿÿ ÿèòÐ&#0öÿÿ ÿèòÏ&&*ÿÿ ÿèöÏ&*¢ÿÿ ÿèöÏ&±#ÿÿ ÿèöÏ&‡ÿÿ ÿèõÏ&(ÿÿ ÿèóÏ&‡ÿÿ ÿèòÏ&*.Òÿÿ ÿèóÏ&ˆ‡ÿÿ ÿèóÐ&· Kÿÿ ÿèóÏ&(Áÿÿ ÿèõÏ&*Ïÿÿ ÿèóÏ&‡æÿÿ ÿèôÐ&*&@?ÿÿ ÿè÷Ï&(Eÿÿ ÿèìÏ&a‡ÿÿ ÿèóÐ&"é Kÿÿ ÿèöÏ&(—ÿÿ ÿèóÏ&‡0Öÿÿ ÿèíÒ&*¾ÿÿ ÿèóÏ&‡gÿÿ ÿèôÐ&(Pÿÿ ÿèóÏ&(ÿÿ ÿèòÏ&‡Xÿÿ ÿèôÐ&*š2õÿÿ ÿè÷Ï&)(ÿÿ ÿèóÓ&*¹ÿÿ ÿçóÐ&Õ*Œÿÿ ÿèëÏ&‡Æÿÿ ÿèóÏ&‡Çÿÿ ÿçóÑ&È#ÿÿ ÿèõÏ&(Ôÿÿ ÿèõÐ&ó*ÿÿ ÿèóÏ&(0½ÿÿ ÿèêÏ&(µÿÿ ÿèóÍ&¨&© Kÿÿ ÿçúÐ&_*Œÿÿ ÿèôÑ&* ¸ÿÿ ÿèòÏ&‡{ÿÿ ÿèóÏ&(æÿÿ ÿèòÐ&(Ùÿÿ ÿèóÏ&*âÿÿ ÿèìÏ&‡aÿÿ ÿèîÏ&‡ÿÿ ÿèõÑ&(2ÿÿ ÿèôÏ&*`ÿÿ ÿèòÏ& ÿÿ ÿçöÐ&ø*Œÿÿ ÿéõÏ&-ô2öÿÿ ÿèóÏ&(~ÿÿ ÿèñÏ&(àÿÿ ÿèõÏ&*¼ÿÿ ÿèöÏ&(áÿÿ ÿèòÏ&ðÿÿ ÿèóÏ&‡'ÿÿ ÿèñÏ&(Lÿÿ ÿèóÏ&(ëÿÿ ÿçôÐ&*Œ0Ýÿÿ ÿèóÏ& K0Êÿÿ ÿçóÐ&Ó*Œÿÿ ÿèôÏ&( ®ÿÿ ÿèòÏ&('Òÿÿ ÿçòÐ&%>*Œÿÿ ÿèõÐ&L‡ÿÿ ÿçòÐ&¨*Œÿÿ ÿèëÏ&‡-õÿÿ ÿèôÏ&(,sÿÿ ÿçñÐ&&e&&h*Œÿÿ ÿèñÏ&(Žÿÿ ÿèéÏ&‡ÿÿ ÿè÷Ï&*'Óÿÿ ÿèóÐ&(Œÿÿ ÿèöÏ&*'Ôÿÿ ÿèøÑ&* ÿÿ ÿèôÏ&(ÿÿ ÿèòÏ&‡'Õÿÿ ÿèôÏ&‡2÷ÿÿ ÿçòÏ&(¨ÿÿ ÿèìÏ&*'®ÿÿ ÿçëÐ&–&à*Œÿÿ ÿèíÏ&*&Ó2øÿÿ ÿçõÐ&*Œ.3ÿÿÿèòÇ&2ùÿÿ ÿçòÐ&£*Œÿÿ ÿèöÏ&‡'Öÿÿ ÿçóÐ&-ö&}*Œÿÿ ÿèîÏ&‡±ÿÿ ÿçôÐ&'×*Œÿÿ ÿçóÐ&"%&**Œÿÿ ÿèïÐ&‡xÿÿ ÿèõÑ&*Oÿÿ ÿèõÐ&‡#¡ÿÿÿèòÐ&•&2úÿÿ ÿèñÏ&*(Aÿÿ ÿèôÏ&*'Øÿÿ ÿçöÐ&"H*Œÿÿ ÿç÷Ð&*Œ+)ÿÿ ÿçöÐ&*Œ.Wÿÿ ÿèóÏ&‡&Çÿÿ ÿè÷Ï&(1ÿÿ ÿèõÑ&‰(ÿÿ ÿèôÏ&(Ûÿÿ ÿèóÐ& Kÿÿ ÿèóÏ&(,ÿÿ ÿèöÏ&* ÿÿ ÿèöÏ&( `ÿÿ ÿèõÏ&*'Ùÿÿ ÿèôÐ&‡'Úÿÿ ÿèôÏ&*Yÿÿ ÿèóÈ& K0Íÿÿ ÿçôÑ&9*Œÿÿ ÿèòÏ&*¿ÿÿ ÿèîÏ&*éÿÿ ÿèñÐ&‡gÿÿ ÿèóÏ&#)ÿÿ ÿçëÐ&'Û*Œÿÿ ÿèòÏ&‡ Wÿÿ ÿçóÐ&Ÿ*Œÿÿ ÿèóÏ&‡'ÿÿ ÿçóÐ&/ø*Œÿÿ ÿèõÏ&&bcÿÿ ÿèòÏ&‡,tÿÿ ÿèòÏ&(#jÿÿ ÿçõÐ&¨*ŒÿÿÿèòË&2ûÿÿ ÿèôÏ&*Òÿÿ ÿèñÐ&‡2üÿÿ ÿèðÑ&*/ƒÿÿ ÿçõÏ&*Yÿÿ ÿèòÏ&&Ú#aÿÿ ÿèóÏ&*"µÿÿ ÿèñÏ&‡'Üÿÿ ÿçöÐ& ‹*Œÿÿ ÿèñÏ&*$[ÿÿ ÿèõÏ&(#Iÿÿ ÿèôÏ&(!•ÿÿ ÿçòÐ&#¥*Œÿÿ ÿèöÏ&‡"_ÿÿ ÿèõÏ&'݇ÿÿ ÿèóÏ&*Íÿÿ ÿèóÏ&(ˆÿÿÿèòÉ&É&Êÿÿ ÿè÷Ï&"c(ÿÿ ÿèõÑ&‡1ÿÿ ÿèòÏ&‡"Fÿÿ ÿèôÏ&*!ëÿÿ ÿèòÏ&*"ÿÿ ÿçïÐ& ÿ*Œÿÿ ÿçòÐ&"¥*Œÿÿ ÿèóÏ&‡ fÿÿ ÿèòÐ&"Êÿÿ ÿèóÏ&("ÿÿ ÿèõÏ&(°ÿÿ ÿèìÏ& †‡ÿÿ ÿè÷Ï&¥(ÿÿ ÿçïÐ&*Œ0¹ÿÿ ÿèëÏ&‡"*ÿÿ ÿèîÏ&*!#ÿÿ ÿçíÐ&Æ&")*Œÿÿ ÿçôÐ&É*Œÿÿ ÿèöÏ&*"Äÿÿ ÿèöÏ&*ÿÿ ÿèòÐ&*#íÿÿ ÿèîÑ&(%®ÿÿ ÿèóÏ&('Þÿÿ ÿèóÏ&‡,uÿÿ ÿçõÑ&$‰*Œÿÿ ÿèòÏ&‡$Áÿÿ ÿçôÏ&32ýÿÿ ÿèöÐ&*Vÿÿ ÿèôÏ&(üÿÿ ÿçòÏ&(2þÿÿ ÿèñÏ&*%ÿÿ ÿçóÐ&÷&*Œ2ÿÿÿ ÿèòÑ&&¸&ÿÿ ÿçõÐ&*Œÿÿ ÿèñÏ&("Öÿÿ ÿçôÐ&$2*Œÿÿ ÿèôÑ&(Œÿÿ ÿèõÏ&*$nÿÿ ÿèõÑ&(—ÿÿ ÿèòÏ&‡0¤ÿÿ ÿç÷Ð&Ë*Œÿÿ ÿèöÏ&*Nÿÿ ÿèóÏ& á*ÿÿ ÿèóÏ&&  Kÿÿ ÿçôÐ&$…*Œÿÿ ÿèôÏ&*'ßÿÿ ÿèïÏ&*+ÿÿ ÿèõÐ&(ÿÿ ÿèóÏ&‡$¸ÿÿ ÿçóÐ&,&*Œ3ÿÿ ÿçóÐ&/*Œÿÿ ÿèòÐ&*/Mÿÿ ÿçôÐ&*Œ3ÿÿ ÿèóÏ&(†ÿÿ ÿèôÏ&#~*ÿÿ ÿèôÏ&*'àÿÿ ÿèõÐ&0L ­ÿÿ ÿèôÏ&(%ÞÿÿÿèóË&k&3ÿÿ ÿçôÑ&n*Œÿÿ ÿçöÑ&|*Œÿÿ ÿçôÒ&*£ÿÿ ÿèóÏ&*$ùÿÿ ÿçóÐ&ÿ&"Ï3ÿÿ ÿèîÑ&*¹ÿÿ ÿèôÏ&3ÿÿ ÿèñÏ&(-÷ÿÿ ÿèóÏ&*+ÿÿ ÿèñÏ&*Øÿÿ ÿç÷Ð&°*Œÿÿ ÿèôÏ& ­& ´,ÿÿ ÿè÷Ï&‡ÿÿ ÿèöÏ&(Nÿÿ ÿçöÐ&Ò*Œÿÿ ÿçðÑ&(pÿÿ ÿèóÏ&*#ÿÿ ÿèñÑ&*'áÿÿÿèôÏ&9ÿÿ ÿèóÐ&*/_ÿÿ ÿçöÐ&.#*Œÿÿ ÿçõÐ&%è*Œÿÿ ÿçóÑ&,&"%*Œÿÿ ÿèóÐ&'â*ÿÿ ÿçòÏ&*%âÿÿ ÿèëÏ&*&+ì3ÿÿ ÿèîÏ&*&ï3ÿÿ ÿçôÐ&'ã*Œÿÿ ÿçòÐ&´*Œÿÿ ÿèöÏ&(ÿÿ ÿçöÐ&F*Œÿÿ ÿèõÍ&+*3ÿÿ ÿèôÏ&*'äÿÿ ÿçôÏ&*'åÿÿ ÿçôÐ&%(*Œÿÿ ÿèõÏ&(šÿÿ ÿèòÏ&*ÿÿ ÿèõÏ&*%åÿÿ ÿèòÏ&(üÿÿ ÿèöÑ&*&Äÿÿ ÿçóÐ&÷&*Œ3ÿÿ ÿèöÏ&,&%M3 ÿÿ ÿèòÑ&.ÿÿ ÿèõÓ&(Sÿÿ ÿèõÏ&'ç*ÿÿ ÿçóÑ&,v*Œÿÿ ÿèøÏ&*'æÿÿ ÿèôÓ&*3 ÿÿ ÿçòÐ&*Œ3 ÿÿ ÿèøÏ&¡(ÿÿ ÿèôÏ&*%òÿÿ ÿèõÑ&*. ÿÿ ÿèôÒ&Q*ÿÿ ÿçõÐ&*Œ3 ÿÿ ÿèòÏ&‡ðÿÿ ÿçóÐ&%õ*Œÿÿ ÿçôÐ&%ô*Œÿÿ ÿçóÐ&*Œ3 ÿÿ ÿçóÑ&(¡ÿÿ ÿèðÏ&*%óÿÿ ÿçöÐ&'è*Œÿÿ ÿçñÊ&A3ÿÿ ÿèñÏ&*(PÿÿÿèòÉ&Ïÿÿ ÿëðÐ&-ø&-ù3ÿÿ ÿåöÓ&¨3ÿÿ ÿèòÐ&*8ÿÿ ÿçõÐ&*Œ3ÿÿ ÿèõÐ&*3ÿÿ ÿèïÏ& ­& 3ÿÿ ÿèõÏ&*3ÿÿ ÿçöÏ& ­& ¬ ´ÿÿ ÿçôÐ&+(*Œÿÿ ÿçðÐ&*Œ3ÿÿ ÿèòÑ&‡-ÿÿ ÿèõÏ& ­+,ÿÿ ÿèôÏ&,3ÿÿ ÿèðÏ&*3ÿÿ ÿçóÐ&*l*Œÿÿ ÿçóÓ&#…ÿÿ ÿçõÐ&-@*Œÿÿ ÿèðÏ&,0åÿÿ ÿêòÏ&03ÿÿ ÿéôÆ&ðoÿÿÿèïÑ&G3ÿÿ ÿéóÏ&ð>ÿÿÿéóÑ&-ú3ÿÿ ÿéóÏ&53ÿÿ ÿèõÏ&ðÿÿ ÿîóÇ&6 öÿÿ ÿêôÐ&ðøÿÿ ÿéóÏ&5ÿÿ ÿè÷Ï&ðñÿÿ ÿéóÐ&40Šÿÿ ÿéóÑ&.Ï3ÿÿ ÿéôÐ&ð7ÿÿ ÿéóÏ&5zÿÿ ÿêñÏ&ð{ÿÿÿèóÂ&~&yxÿÿ ÿéõÑ&ðOÿÿÿèøÒ&(Zÿÿÿ ÿèóÊ&E3ÿÿ ÿêòÅ&ð#lÿÿ ÿéóÑ&3ÿÿ ÿéóÏ&ÿÿ ÿæóÐ&þ3 ÿÿ ÿéóÑ&ÿÿ ÿéðÊ&ð%óÿÿ ÿêôÏ&,w%ôÿÿ ÿéôÐ&,3!ÿÿ ÿéóÑ&,&3"ÿÿ ÿéóÒ&,xÿÿÿéíÑ&03#ÿÿÿñíÑ&0/ÿÿÿéõÑ&GìÿÿÿéíÑ&GîÿÿÿéñÑ&03$ÿÿÿèïÑ&G¾ÿÿ ÿéôÑ&G3%ÿÿÿëïÑ&03&ÿÿÿéòÑ&G3'ÿÿ ÿéíÑ&ÓGÿÿÿìòÑ&ÔGÿÿÿëðÑ&Õ0ÿÿ ÿéîÑ&GÖÿÿÿêòÑ&G3(ÿÿÿèíÑ&G3)ÿÿÿéíÑ&G3*ÿÿÿéíÑ&G3+ÿÿÿèðÑ&G3,ÿÿ ÿðõÑ&GÞÿÿÿñíÑ&03-ÿÿÿéñÑ&G3.ÿÿÿéðÑ&G3/ÿÿ ÿìïÑ&G30ÿÿÿêíÑ&G31ÿÿ ÿèóÑ&G€ÿÿÿòîÑ&GÖÿÿÿïòÑ&GHÿÿ ÿéíÑ&G|ÿÿÿóíÑ&GËÿÿÿîíÑ&ÌGÿÿ ÿè÷Ñ&IGÿÿÿêíÑ&GãÿÿÿèíÑ&G32ÿÿ ÿèïÑ&G;ÿÿÿéîÑ&G33ÿÿÿéíÑ&G#ÿÿÿéóÑ&G34ÿÿÿéïÑ&G35ÿÿ ÿçóÑ&G&#36ÿÿÿéíÑ&G37ÿÿÿèðÑ&G38ÿÿÿéíÑ&G39ÿÿ ÿéóÑ&GVÿÿÿèõÑ&G3:ÿÿ ÿæòÑ&G3;ÿÿ ÿéíÑ&G&T3<ÿÿ ÿéñÑ&G3=ÿÿÿèóÑ&G3>ÿÿ ÿéôÑ&G3?ÿÿÿéôÑ&G3@ÿÿ ÿéôÑ&G3AÿÿÿçíÑ&G3BÿÿÿêñÑ&G&æ3CÿÿÿèôÑ&G3Dÿÿ ÿêíÑ&äGÿÿÿçíÑ&GãÿÿÿëôÑ&&â3EÿÿÿéíÑ&G" ÿÿ ÿîóÑ& ø&GÙÿÿ ÿéìÑ&3FÿÿÿèôÑ&G3Gÿÿ ÿéíÑ&G3Hÿÿ ÿèóÑ&G3IÿÿÿéíÑ&G tÿÿÿéòÑ&G"ÿÿÿéíÑ&G3JÿÿÿèðÑ&3KÿÿÿçñÑ&3Lÿÿ ÿèøÑ&3MÿÿÿçöÑ&3Nÿÿ ÿçìÑ&&3OÿÿÿèòÑ&3Pÿÿ ÿêòÑ&3QÿÿÿåòÑ&3Rÿÿ ÿéòÑ&3SÿÿÿèñÑ&G3Tÿÿ ÿèíÑ&G3Uÿÿ ÿèíÑ&G3Vÿÿ ÿæóÑ&G3WÿÿÿéðÑ&3XÿÿÿéòÑ&G3Yÿÿ ÿéõÑ&3Zÿÿ ÿêôÑ&G3[ÿÿÿäíÑ&G3\ÿÿÿëíÑ&G3]ÿÿÿéóÑ&G3^ÿÿ ÿéöÑ&G3_ÿÿÿéìÑ&3`ÿÿÿèôÑ&3aÿÿ ÿéòÑ&3bÿÿÿçóÑ&G3cÿÿÿçíÑ&-û3dÿÿÿêöÑ&-ü3eÿÿÿæíÑ&-ü3fÿÿ ÿêòÏ&(ÿÿÿéîÇ&,3gÿÿÿéîÇ&,3hÿÿ ÿêóÏ&'éÿÿ ÿêóÏ&‚ÿÿ ÿéóÐ&Öÿÿ ÿéöÏ&!3iÿÿ ÿéóÒ&0Þÿÿ ÿéõÒ&K,‚ÿÿ ÿéóÏ&|}ÿÿÿéðÑ&-ý3jÿÿ ÿéóÏ&}%ÿÿÿéóÏ&}3kÿÿÿçóÑ&tuÿÿÿèïÏ&@3lÿÿ ÿéõÐ&hÿÿ ÿéîÇ&ÜÝÿÿ ÿéóÍ&ÿÿ ÿñòÍ&Aÿÿ ÿèöÏ&B&CDÿÿ ÿçöÏ&"vÿÿ ÿïõÐ&"0Ðÿÿ ÿêòÏ&,»ÿÿ ÿêòÏ&,3rÿÿ ÿêóÏ&,¢ÿÿ ÿéñÎ&!g!hÿÿ ÿéõÏ&:<ÿÿ ÿéñÎ&!h#&ÿÿ ÿéñÐ&!h$1ÿÿ ÿéóÎ&!h3tÿÿ ÿèõÇ&+Ö3wÿÿ ÿèôÇ&+Ö3xÿÿ ÿèõÉ&:3yÿÿ ÿèöÉ&:3zÿÿ ÿèìÉ&:3{ÿÿ ÿèòÉ&:ÿÿ ÿæïÉ&:3|ÿÿ ÿèëÉ&:3}ÿÿ ÿçîÉ&:3~ÿÿ ÿèëÉ&:3ÿÿ ÿèëÉ&:&»ÿÿ ÿèëÉ&:3€ÿÿ ÿèôÉ&83ÿÿ ÿèëÉ&:3‚ÿÿ ÿèïÉ&8*ÿÿ ÿèëÉ&8Šÿÿ ÿèòÉ&89ÿÿ ÿèöÉ&;:ÿÿ ÿèñÉ&8<ÿÿ ÿèõÉ&8&>=ÿÿ ÿèëÉ&8?ÿÿ ÿèëÉ&@Aÿÿ ÿçõÍ&#™#˜ÿÿ ÿèëÉ&83ƒÿÿ ÿéóÉ&,3„ÿÿ ÿèíÉ&A3…ÿÿ ÿèòÉ&83†ÿÿ ÿèõÉ&83‡ÿÿ ÿèðÉ& L8ÿÿ ÿèëÉ&B3ˆÿÿ ÿèìÉ&A(ÿÿ ÿèòÉ&B#¶ÿÿ ÿèñÊ&E3‰ÿÿ ÿæóÉ&C&A3Šÿÿ ÿèëÉ&B3‹ÿÿ ÿèõÊ&E&F3Œÿÿ ÿæïÉ&>&A3ÿÿ ÿèóÉ&C&DBÿÿ ÿçñÊ&F&GEÿÿ ÿèôÊ&F&E3Žÿÿ ÿèñÊ&E3ÿÿ ÿèìË&+×3ÿÿ ÿæðË&+×3‘ÿÿ ÿéôÐ&+ÛäÿÿÿéçÏ&+Ú+ØÿÿÿêåÏ&+Ù+ØÿÿÿêòÎ&žÿÿÿî÷Ë&žÿÿÿêìË&žœÿÿÿéõË&´žÿÿÿéëÏ&a'ëÿÿÿéðÏ&ž-þÿÿÿçâÏ&¤3”ÿÿÿìðÏ&¤3•ÿÿÿéõË&ž`ÿÿÿéñË&žyÿÿÿìðÏ&žgÿÿÿéïÅ&3/ÿÿÿéóË&ž‡ÿÿÿèõÏ&eˆÿÿÿéôË&žÿÿÿéöË&ÞžÿÿÿèõÏ&žÿÿ ÿéóÏ&¤ÿÿÿèöÑ&ž­ÿÿÿêóË&!ržÿÿ ÿéóÏ&3Þÿÿ ÿèôÏ&£¤ÿÿÿòôË&ž…ÿÿÿéäÏ&e3–ÿÿÿèôË&äžÿÿ ÿèôÌ&-ÿ($ÿÿ ÿçöÏ&e)ÙÿÿÿîñÏ&“¤ÿÿÿéïÏ&)ØeÿÿÿêöÏ&ž±ÿÿÿòôË&žžÿÿÿéçÇ&/3˜ÿÿÿéóÏ&e)ÛÿÿÿêìÐ&ž-¯ÿÿÿéòÐ&ž&òóÿÿÿèóÏ&ŸÿÿÿððÏ&)Úeÿÿ ÿéâÏ&}eÿÿÿòõË&žÿÿ ÿèîÏ&.¤ÿÿÿèíÏ&vŒÿÿÿéëÏ&ž)ÿÿÿÿèéË&/0ÑÿÿÿçõÏ&ž¦ÿÿÿððÏ&žiÿÿÿõòË&ž-©ÿÿÿéïÏ&Ÿ&!I óÿÿ ÿèòÐ&)Ü&>%œÿÿÿéóÏ&)Ý3ÿÿÿéóÏ&žÿÿÿéèÐ&%žžÿÿÿéóË&ž'ìÿÿÿéíÏ&e3™ÿÿ ÿæöÏ&eZÿÿÿèóÏ&žîÿÿÿéóË&žÿÿÿêîÏ&.eÿÿÿéóÏ&žÿÿÿåãÏ&e3šÿÿÿêâÏ&)Þ¤ÿÿÿææÏ&e ÿÿÿéðË&ž*ÖÿÿÿéòÐ&ž,ÿÿÿé÷Ñ&ŸÞÿÿÿèõÏ&eßÿÿÿéõÐ&žÿÿ ÿéõÏ&Œ‚ÿÿ&ÿèÜÑ&£¢ÿÿÿêíÑ&ŸŸÿÿÿðóË&ž&ÿÿÿéôÏ&DŒÿÿÿêòË&žÄÿÿÿéôÐ&ž™ÿÿÿéìË&ažÿÿÿè÷Ï&ž7ÿÿÿëòÏ&YžÿÿÿèóÏ&ž0¾ÿÿÿêõÑ&2ŸÿÿÿòõË&ÜžÿÿÿéóÐ&0ÑNÿÿ ÿðöÏ&e&´3›ÿÿ ÿäâÏ&e&ª«ÿÿ ÿçôÏ&Œÿÿ ÿéìÏ&|ŒÿÿÿéñÏ&ž±ÿÿÿæöÏ&Ÿ³ÿÿÿèöÏ&áŸÿÿÿéóÑ&ž"ÿÿÿéíÑ&ˆ3ÿÿÿé÷Ï&žcÿÿÿçôÏ&Œ3œÿÿÿéïÌ&ŸWÿÿÿêóÒ&Ÿ0ìÿÿÿéêÐ&ž–ÿÿÿéòË&žÿÿ ÿæöÏ&'íÿÿÿéôÏ&žÿÿ ÿéñÐ&n3ÿÿÿèôË&žrÿÿÿéòÐ&/ŸÿÿÿêòÏ&Œ3žÿÿÿçøÏ&Ÿ?ÿÿ ÿêóÒ&âçÿÿÿæöË&žAÿÿÿçõÑ&Ÿ ÿÿÿçõÏ&Ÿ ØÿÿÿéóË&žýÿÿÿéõÏ&Œ3Ÿÿÿ ÿèôÏ&e3 ÿÿÿéïÐ&ž,9ÿÿÿéöÏ&žÿÿÿñóÐ&žÉÿÿÿéìÏ&ŒPÿÿ ÿåôÏ&Œ3¡ÿÿÿéðË&ž»ÿÿÿéóÏ&Ÿ'îÿÿÿéóÎ&ž&ÇÿÿÿéôÏ&ž'ïÿÿÿèòÏ&Œ,ƒÿÿÿéñÏ&Œnÿÿ ÿéðÏ&eˆÿÿÿéôË&ž,ÿÿ ÿéðÏ&Œ,ÿÿÿèäÏ&Œ3¢ÿÿÿéøÏ&Ÿ ÿÿ ÿéôÏ&Œ ÿÿÿèöÏ&'ðžÿÿÿéîË&Ÿ, ÿÿÿéóÏ&ž'ÿÿÿêóÑ&Ÿ%%ÿÿ ÿïóÏ&e˜ÿÿÿéôÏ&Ÿ ÿÿÿéôÑ&žÿÿÿæóÏ&3£ÿÿÿèòÒ&/žÿÿÿéóÎ&ž)ÿÿÿìöÏ&Ÿ'ñÿÿ ÿéïÏ&e3¤ÿÿÿèóÏ&Ÿ,ÿÿ ÿèåÏ&e3¥ÿÿÿçôÏ&Œ 9ÿÿÿéãÏ&ŒêÿÿÿéðÐ&ž# ÿÿÿçäÏ&Œ3¦ÿÿÿìõÑ&ž1ÿÿÿéöÏ&ŸÇÿÿ ÿæõÏ&Œ3§ÿÿÿçõË&ž!0ÿÿÿéòÏ&feÿÿÿéóÏ&ž&ŽÿÿÿèõË&žxÿÿÿéñÑ&žÿÿ ÿèðÏ&Œ"ÂÿÿÿéóË&žóÿÿÿêòÏ&Œ&"+€ÿÿÿçòË&žÿÿÿêõË&žÿÿ ÿéóÏ&e3¨ÿÿÿïóÎ&žÿÿ ÿéòÏ&Œ0}ÿÿÿè÷Ï&Ÿ ÿÿ ÿèðÏ&!Œÿÿ ÿèóÐ&=&>ÿÿÿêòÐ&Ÿ!´ÿÿÿæôÍ&$ÒŸÿÿÿçìË&!žÿÿ ÿèóÏ&Œ& ¹3©ÿÿÿëðË&ž uÿÿ ÿçúÏ&ŒhÿÿÿéðË&’žÿÿÿêëÇ&ßæÿÿÿôëÏ&eàÿÿÿéöË&Ÿ#ÍÿÿÿéóÏ&Ÿ#Þÿÿ ÿéóÏ&œ&›ŒÿÿÿçóÏ&Œ#‡ÿÿÿêîÏ&Œ+ÿÿÿèöÏ&#²žÿÿ ÿêóÓ&á&èéÿÿÿèöÒ&Ÿ$&ÿÿÿèòÐ&Ÿ$ÿÿÿéòÏ&Ÿ.ÿÿÿéïÐ&ž%ÿÿÿçñÏ&Ÿ#ÿÿÿéñÏ&%ÿÿÿèóÐ&ŸtÿÿÿèõÏ&Œ#õÿÿÿéðÑ&Ÿ$•ÿÿÿíòÐ&ž2ÿÿÿé÷Ð&$ŸÿÿÿëõÑ&Ÿ/ÿÿÿïñÏ&3ªÿÿÿéöÒ&/ŸÿÿÿèðË&wŸÿÿÿêöÐ&Ÿ*ÿÿÿèòÏ&Œ3«ÿÿÿé÷Í&žÿÿÿéôÒ&žÿÿÿéóÏ&Ÿ0ÿÿ ÿèöÏ&'òÿÿÿèõÏ&i&hŒÿÿÿéòË&Ÿ/‰ÿÿÿçõÏ&Ÿ0›ÿÿÿéôÒ&Ÿ'óÿÿÿéñÏ&Œ3¬ÿÿÿèóÏ&ž{ÿÿÿòóË&#`ŸÿÿÿéðÏ&'ôŒÿÿÿéðÏ&e&‰3­ÿÿÿéðÏ&e&ЉÿÿÿéòÏ&žÿÿÿèòÏ&gÿÿÿéîË&Ÿ%ÛÿÿÿéöÏ&Œ&Ò3®ÿÿÿêîÑ&ž'ÿÿÿêòÏ&üŸÿÿ ÿèóÏ&Œ& ¹3¯ÿÿÿéöÏ&'õŸÿÿÿèïÎ&Ÿ'öÿÿÿéôÎ&Ÿ*Ñÿÿ ÿéõÏ&3°ÿÿÿéïÏ&@&3±ÿÿÿîöË&ŸÿÿÿêîÒ&ç&!¨3²ÿÿÿéóÒ&žiÿÿÿéóÏ&Ÿ'÷ÿÿÿèôÏ&Œ3³ÿÿÿèôÎ&ž'øÿÿÿéôË&žØÿÿÿéíÑ&3,‡ÿÿÿçõÏ&'ùžÿÿÿéðÏ&,ˆÿÿÿèôÐ&'úŸÿÿÿéòÏ&Œ3´ÿÿÿé÷Ñ&Ÿ&Åÿÿ ÿéøÏ&3µÿÿÿéöÐ&'ü'ûÿÿÿéðÎ&Ÿ,…ÿÿ ÿèíÏ&3¶ÿÿÿéòË&Ÿ.ÿÿÿèõÏ&3¸ÿÿÿêõÏ&Ÿ,ŠÿÿÿéóÏ&Ÿ0ÄÿÿÿèóÏ&Œ&[\ÿÿÿéõÎ&,‹Ÿÿÿ ÿçòÏ&Œ3¹ÿÿ ÿèöÏ&Œ3ºÿÿÿéëÏ&*3»ÿÿÿëöÏ&'ýÿÿ ÿèòÏ&&/3¼ÿÿÿéðÏ&Ÿ/ÿÿÿë÷Ï&'ü3½ÿÿÿèòÑ&Ÿ7ÿÿ ÿéîÏ&3¾ÿÿ ÿèôÏ&Œ‹ÿÿÿéõÏ&ŽÿÿÿéñÏ&Ÿ'þÿÿÿçñÏ&%&3¿ÿÿÿçõÐ&Ÿ'ÿÿÿ ÿêóÑ&ç,ŒÿÿÿçõÏ&& ¦ ¥ÿÿ ÿçõÏ&/& ¥ÿÿÿçòÑ&Ÿ3Àÿÿ ÿçõÏ&+®3Áÿÿÿé÷Ï&+¯&'ü3Âÿÿ ÿêõÏ&+Â3Æÿÿ ÿëôÉ&\uÿÿÿèñÑ&(3Çÿÿ ÿêñÀ&ÅÆÿÿ ÿèôÁ&€ÿÿ ÿèöÐ&%&ÿÿ ÿèöÐ&;§ÿÿ ÿìóÌ&T,ÿÿ ÿíõÐ&ò3Ïÿÿ ÿèóË&+°3ÐÿÿÿéóÏ&ÑjÿÿÿééÐ&ÿÿÿèöÏ&÷ÿÿÿéðÏ&ÿÿÿéõÏ&÷ÿÿÿéìÐ&ÿÿ ÿéðÑ&¶·ÿÿÿèôÏ&÷!ÿÿÿéêÏ&÷ÿÿÿèõÏ&÷ÿÿÿéôÐ&0‰ÿÿÿèóÏ&÷ÿÿÿéêÐ&MjÿÿÿéòÏ&jNÿÿÿçòÐ&÷PÿÿÿèîÒ&+±­ÿÿÿéòÏ&÷(-ÿÿ"ÿéßÐ&‹ÿÿÿçôÏ&÷%ÌÿÿÿéíÏ&òÿÿ"ÿéßÏ&3ÑÿÿÿéóÏ&å÷ÿÿÿéôÑ&÷àÿÿ ÿéõÐ&+³ñÿÿÿéêÐ&0‹ÿÿÿéëÐ&¤¦ÿÿÿåðÏ&÷¢ÿÿÿéôÏ&÷bÿÿÿéêÐ&÷–ÿÿÿéòÐ&(¥ÿÿÿéëÎ&3ÒÿÿÿéñÏ&ÿÿÿéôÏ&÷*ÿÿÿèõÏ&÷(ÿÿÿçöÒ&÷fÿÿÿéôÏ&+²3ÔÿÿÿéõÐ&ý‹ÿÿÿèóÏ&(÷ÿÿÿéîÏ&÷ãÿÿÿéìÏ&ý †ÿÿÿéóÏ&÷6ÿÿÿèóÐ&p&@YÿÿÿéóÏ&÷ fÿÿÿèõÏ&j^ÿÿ ÿéóÈ&(&+´3ÕÿÿÿéóÐ&÷!ŠÿÿÿéõÏ&ýÿÿÿéîÏ&÷" ÿÿ ÿéòÐ&8gÿÿÿéòÏ&ý1ÿÿ ÿéòÑ&¸&(y8ÿÿÿéöÏ&ý$OÿÿÿéóÏ&ý$¸ÿÿÿèóÏ& â÷ÿÿÿéõÑ&ý—ÿÿÿçõÑ&xýÿÿÿéôÏ&p%Þÿÿ ÿéøÏ&k&+´3ÖÿÿÿéîÏ&poÿÿÿèõÐ&÷(ÿÿÿéöÏ&ý%,ÿÿÿéôÒ&ý'óÿÿÿéóÏ&ý(ÿÿÿéòÏ&pÿÿÿéóÐ&ý* ÿÿÿéöÏ&pFÿÿÿéöÐ&p.#ÿÿÿéòÏ&ýüÿÿÿéóÏ&ý´ÿÿÿéôÏ&98ÿÿÿéôÐ&8ùÿÿ ÿéòÑ&.8ÿÿÿéøÏ&ý¡ÿÿÿéóÒ&pÄÿÿÿèöÐ&ý'ÿÿÿéñÏ&ý(ÿÿÿéðÐ&h2ÿÿÿéóÏ&p0ÄÿÿÿéõÏ&÷ËÿÿÿéôÏ&p3×ÿÿÿéöÏ&ý3ØÿÿÿèõÐ&/ýÿÿÿèóÄ&!,3Ûÿÿ ÿè÷Ñ&¥3Ýÿÿ ÿíçÐ&,’3ßÿÿÿéíÏ&_îÿÿ ÿèðÐ&ü1ÿÿ ÿèíÐ&ü2ÿÿ ÿéóÐ&Æ ÿÿ ÿéòÐ&Æ3ÿÿ ÿèíÐ&ü4ÿÿ ÿéïÐ&ýÆÿÿ ÿéðÐ&0Æÿÿ ÿèñÐ&þÇÿÿ ÿéíÐ&Çÿÿÿ ÿéîÐ&Æ3âÿÿ ÿèíÐ&Æ3ãÿÿ ÿèîÐ&Æ3äÿÿ ÿéîÐ&Æ3åÿÿ ÿéíÐ&Æ3æÿÿ ÿæíÐ&Æùÿÿ ÿéòÐ&Æ3çÿÿ ÿéîÐ&Æ3èÿÿ ÿèóÐ&ü3éÿÿ ÿéðÐ&Æ•ÿÿ ÿéñÐ&Ç3êÿÿ ÿçíÐ&Æ3ëÿÿ ÿèíÐ&ü3ìÿÿ ÿèóÐ&Æ3íÿÿ ÿéôÐ&Æ3îÿÿ ÿèïÐ&Ç3ïÿÿ ÿçîÐ&ü3ðÿÿ ÿéòÐ&Æ/uÿÿ ÿéïÐ&Æ·ÿÿ ÿéòÐ&'Æÿÿ ÿèôÐ&ÆCÿÿ ÿèíÐ&ÆHÿÿ ÿéîÐ&Æ3ñÿÿ ÿèôÐ&Æ3òÿÿ ÿéóÐ&Æ3óÿÿ ÿèðÐ&Æ3ôÿÿ ÿçòÐ&Æ3õÿÿ ÿéòÐ&Ç3öÿÿ ÿéóÐ&Æ3÷ÿÿ ÿèôÐ&Ç3øÿÿ ÿéíÐ&Æ3ùÿÿ ÿèïÐ&Æàÿÿ ÿéõÐ&Æ3úÿÿ ÿéñÐ&Ç3ûÿÿ ÿèíÐ&Æ3üÿÿ ÿéïÐ&Æ3ýÿÿ ÿéöÐ&Ç3þÿÿ ÿèòÐ&Ç3ÿÿÿ ÿéôÑ&$Jÿÿ ÿéñÐ&Æ4ÿÿ ÿçïÐ&Æ4ÿÿ ÿéíÐ&Ç4ÿÿ ÿéíÐ&Çqÿÿ ÿéòÐ&$<Çÿÿ ÿéöÐ&Ç4ÿÿ ÿéíÐ&Ç%ÿÿ ÿé÷Ð&Ç#öÿÿ ÿéíÐ&Ç4ÿÿ ÿéòÐ&Ç4ÿÿ ÿèõÑ&$4ÿÿ ÿéïÐ&Ç4ÿÿ ÿèòÐ&Ç4ÿÿ ÿéòÐ&Ç4 ÿÿ ÿçõÐ&Ç& ¥ §ÿÿ ÿèôÐ&Ç4 ÿÿ ÿéóÐ&Ç4 ÿÿ ÿéðÑ&$$ÿÿÿ ÿçôÐ&Ç4 ÿÿ ÿèðÑ&$4 ÿÿ ÿèñÐ&Ç4ÿÿ ÿéôÐ&Ç4ÿÿ ÿèöÐ&Ç4ÿÿ ÿéóÐ&Ç4ÿÿ ÿéðÐ&Ç4ÿÿ ÿçíÐ&Ç4ÿÿ ÿéóÐ&Ç4ÿÿ ÿéòÑ&$4ÿÿ ÿéðÑ&*&)$ÿÿ ÿéõÐ&Ç4ÿÿ ÿèòÐ&Ç4ÿÿ ÿéíÐ&Ç4ÿÿ ÿéöÐ&Ç4ÿÿ ÿçõÐ&Ç4ÿÿ ÿèõÑ&$4ÿÿ ÿèðÑ&$4ÿÿ ÿéóÐ&Ç4ÿÿ ÿéñÐ&Ç4ÿÿ ÿéñÐ&Ç4ÿÿ ÿéðÐ&Ç4 ÿÿ ÿèôÑ&$4!ÿÿ ÿåòÑ&$4"ÿÿ ÿéóÑ&$œÿÿ ÿçïÐ&Ç4#ÿÿ ÿéòÐ&Ç4$ÿÿ ÿèûÑ&$4%ÿÿ ÿçõÑ&$4&ÿÿ ÿçñÑ&$4'ÿÿ ÿéõÐ&Ç4(ÿÿ ÿèôÎ&%@4)ÿÿ ÿèôÎ&%B%@ÿÿÿéöÏ&%AÿÿÿéöÏ&%A"ÿÿÿéöÆ&%A!ÿÿÿéöÆ&%A ÿÿ ÿêóÐ&+µ4-ÿÿ ÿçóÈ&M4.ÿÿ ÿçóÎ&M4/ÿÿ ÿçóÃ&M40ÿÿ ÿçóÏ&öÙÿÿ ÿçóÏ&ñöÿÿ ÿçóÏ&ö41ÿÿ ÿçôÏ&9öÿÿÿçòÏ&+¶43ÿÿÿçòÏ&+¶44ÿÿ ÿèôÏ& FÿÿÿéôÐ& ¦ÿÿÿéØÏ&ø ýÿÿÿèôÏ&ß þÿÿÿêôÏ&· üÿÿÿêõÇ&¸ ÿÿÿÿèõÍ& ü0îÿÿÿêóÆ&Á üÿÿÿè÷Ï& ÿ49ÿÿÿéòÎ& ü²ÿÿÿèóÏ& ÿîÿÿÿèîÏ&X üÿÿÿéóÏ& üÔÿÿÿè÷Ï&ñ üÿÿÿéêÆ&j ÿÿÿÿèóÐ&0ƒÿÿÿêõÆ& ÿ%"ÿÿÿéóÇ& ÿÁÿÿ ÿèõÐ&LÿÿÿèîÐ&úÿÿÿéêÐ& ÿcÿÿÿêòÆ&ʨÿÿÿêóÑ& ü"fÿÿÿèõÉ&+ üÿÿÿêôÏ& üYÿÿÿæôÑ& ü4;ÿÿÿéíÉ&ÉÊÿÿÿéôÎ& üÒÿÿÿèóÈ& ü,ÿÿÿèòÇ&o&ÿÿÿéóÑ& üjÿÿ ÿèôÑ&ÿ4<ÿÿÿéòÊ&#þ üÿÿÿéôÉ&Ê/9ÿÿÿêôÆ&Ê#~ÿÿÿêóÑ&Ê4=ÿÿÿéôÑ&ûÿÿÿéòÈ&ÊÿÿÿçòÏ&Ê%âÿÿÿêôÈ& ÿ ÿÿÿéõË&¤ÿÿÿé÷É&üÿÿ ÿèñÒ&,xÿÿÿéðÎ&ÃÿÿÿéêÏ&,“ÿÿÿéôÏ&+º4@ÿÿÿèóÉ&+»4AÿÿÿêòÏ&+¹4Bÿÿ ÿéóÒ&+·&14CÿÿÿçñÉ&+¸&+½&+¾+¼ÿÿÿçñÒ&+·&+¸&+½+¾ÿÿÿçðÒ&+·&+¸&+½4Dÿÿ ÿéõÍ&Ü&ÿÿ ÿéõÍ&m&ÿÿ ÿéõÎ&&(ÿÿÿéóÏ&$#ÿÿ ÿè÷Ê&('ÿÿÿè÷Ï&'.êÿÿ ÿêõÏ&%&ÿÿÿè÷Ê&'(ÿÿ ÿè÷Ð&‹'ÿÿ ÿéõÍ&&( ÿÿ ÿèëÏ& Ã( ÿÿ ÿèóÏ& Éÿÿ ÿèðÏ& Ã×ÿÿ ÿèóÏ& Ã&xÿÿ ÿèôÏ& Ã(·ÿÿ ÿéíÐ&+À&&4Fÿÿ ÿèôÐ&&ÿÿ ÿèôÏ& Ôÿÿ ÿçõÐ&‡&ÿÿ ÿéòÏ&8öÿÿ ÿéóÏ&ö Âÿÿ ÿèôÏ& Éÿÿ ÿèòÏ& ÃÝÿÿ ÿèôÏ& Ã%Dÿÿ ÿèõÏ& Ã%"ÿÿ ÿèóÐ& ÃIÿÿ ÿèóÏ& ÃÖÿÿ ÿêíÑ&&žÿÿ ÿèöÏ& Ã$ÿÿ ÿèðÏ& øÿÿ ÿéêÐ&&#ÿÿ ÿéöÐ&õÃÿÿ ÿèöÐ&&Âÿÿ ÿéõÐ&&ãÿÿ ÿêòÐ&&%ÿÿ ÿèóÏ& ÃÍÿÿ ÿèõÐ& Ä Ãÿÿ ÿèöÏ& Ãùÿÿ ÿèõÑ& Ãýÿÿ ÿèóÏ& Ãþÿÿ ÿéóÐ&ö]ÿÿ ÿèõÏ& ÃZÿÿ ÿèôÏ&ÿ Ãÿÿ ÿèìÐ&ø Ãÿÿ ÿèôÐ&öôÿÿ ÿèëÏ& Ã&ÿÿ ÿèóÏ& Ã&ÿÿ ÿèðÏ&õ&ûúÿÿ ÿèñÏ& Ã"ÿÿ ÿéöÏ&õ´ÿÿ ÿêõÑ&&'ÿÿ ÿèôÐ&ö!„ÿÿ ÿèóÏ&öZÿÿ ÿéîÐ& »õÿÿ ÿéîÑ&&$–ÿÿ ÿéòÐ&&&“ÿÿ ÿéôÏ&õ&,4Gÿÿ ÿèôÐ&föÿÿ ÿèôÐ&/.&ÿÿ ÿê÷Ð&&.ÿÿ ÿèõÐ&&õ4Hÿÿ ÿéôÏ&õ&,4Iÿÿ ÿèóÏ&øùÿÿ ÿéòÏ&.öÿÿ ÿèõÐ&õ&4Jÿÿ ÿéõÒ&ö&Ìÿÿ ÿéôÏ&õ&,4Kÿÿ ÿèõÐ&õ&4Lÿÿ ÿèõÐ&õ&4Mÿÿ ÿéóÐ&õ+ÿÿ ÿéñÑ&&%÷ÿÿ ÿçøÏ&ö4Nÿÿ ÿéóÏ&iØÿÿ ÿéèÏ&AÒÿÿ ÿîõÅ&[ÿÿ ÿîõÇ&æ[ÿÿ ÿéóÏ&Ÿ@ÿÿ ÿïóÏ&^]ÿÿ ÿïòÅ&^`ÿÿÿçòÏ&+¶4Pÿÿ ÿéòÏ&Aÿÿ ÿé÷Ï&Aÿÿ ÿéòÏ&7ÿÿ ÿïòÏ&+Á^ÿÿ ÿïòÏ&^+Âÿÿ ÿéóÏ&Aÿÿ ÿéöÐ&Æ4Qÿÿ ÿïöÐ&^ÿÿ ÿïòÐ&( ÿÿ ÿéëÏ&7 ÿÿ ÿèóÏ&…7ÿÿ ÿéòÏ&@¬ÿÿÿéõÒ&[4Rÿÿ ÿéòÏ&m7ÿÿ ÿéöÏ&Þiÿÿ ÿéóÏ&&x@ÿÿ ÿéöÏ&BAÿÿ ÿéìÐ&7ÿÿ ÿèõÏ&iÿÿ ÿèôÏ&7ÿÿ ÿéöÏ&A&ÿÿ ÿéôÏ&@"ÿÿ ÿéøÏ&7#ÿÿ ÿèöÑ&Ó@ÿÿ ÿîõÑ&ê[ÿÿ ÿéìÏ&'@ÿÿ ÿéóÏ&i)ÿÿ ÿéõÑ&²iÿÿ ÿéñÏ&iñÿÿ ÿîõÓ&[4Sÿÿ ÿéõÐ&+0ïÿÿ ÿîõÏ&Þ§ÿÿ ÿéõÏ&Û7ÿÿ ÿîõÏ&[4Tÿÿ ÿîõÎ&[4Uÿÿ ÿéòÏ&@. ÿÿ ÿéôÏ&@…ÿÿ ÿèõÏ&i0îÿÿ ÿéóÏ&9'Fÿÿ ÿéôÐ&–?ÿÿ ÿéêÏ&ijÿÿ ÿéõÏ&9cÿÿ ÿéòÏ&@,ÿÿ ÿéóÐ&U@ÿÿ ÿîõÏ&!¬[ÿÿ ÿçöÏ&–`ÿÿ ÿéëÐ&@Wÿÿ ÿèóÏ&@+-ÿÿ ÿîõÐ&0ˆ[ÿÿ ÿéöÏ&&–4Vÿÿ ÿéôÏ&‰@ÿÿ ÿéèÐ&i%žÿÿ ÿèòÏ&@+.ÿÿ ÿéóÏ&iÿÿ ÿéòÏ&+/@ÿÿ ÿéòÏ&@Ýÿÿ ÿéöÏ&@Áÿÿ ÿçõÏ&9‡ÿÿ ÿîõÄ&&¼[ÿÿ ÿéëÏ&@»ÿÿ ÿîõÏ&¦§ÿÿ ÿéòÐ&@kÿÿ ÿèõÏ&@+0ÿÿ ÿîõÐ&[&I4Wÿÿ ÿëõÐ&„4Xÿÿ ÿéóÏ&@dÿÿ ÿéôÏ&9%Dÿÿ ÿîõÑ&,‘[ÿÿ ÿéðÏ&@Ãÿÿ ÿé÷Ï&;iÿÿ ÿéòÏ&90°ÿÿ ÿéëÏ&90ðÿÿ ÿé÷Ï&@+2ÿÿ ÿéïÏ&9& ò(0ÿÿ ÿéòÏ&@*eÿÿ ÿîõÐ&*[ÿÿ ÿéôÏ&%Ë7ÿÿ ÿéõÏ&@3ÿÿ ÿçõÐ&+1@ÿÿ ÿéõÏ&–¥ÿÿ ÿîõÑ&§4Yÿÿ ÿîõÐ&§4Zÿÿ ÿéõÐ&– ´ÿÿ ÿîõÐ&§4[ÿÿ ÿîõÎ&[4\ÿÿ ÿéðÏ&@+3ÿÿ ÿèîÏ&iÿÿ ÿîõÐ&[4]ÿÿ ÿéîÑ&9+ÿÿ ÿéóÐ&iKÿÿ ÿéóÏ&90Óÿÿ ÿéòÏ&±@ÿÿ ÿéòÏ&iŽÿÿ ÿéóÏ&9ÿÿ ÿéðÏ&@ÿÿ ÿéñÏ&9!ÿÿ ÿîõÑ&ˆ[ÿÿ ÿé÷Ï&B@ÿÿ ÿé÷Ï&@+ÿÿ ÿîöÈ&[4^ÿÿ ÿéõÏ&ÿAÿÿ ÿéóÏ&@Öÿÿ ÿèôÐ&Piÿÿ ÿîõÏ&[4_ÿÿ ÿé÷Ï&@'ÿÿ ÿîõÐ&Å[ÿÿ ÿëõÏ&ƒ„ÿÿ ÿéêÏ&#–ÿÿ ÿîõÏ&§&ÿÿ ÿè÷Ï&@)ÿÿ ÿéîÏ&–vÿÿ ÿéòÏ&U@ÿÿ ÿèöÏ&9@ÿÿ ÿîõÏ&-&,[ÿÿ ÿéôÏ&9Àÿÿ ÿéöÎ&86ÿÿ ÿèíÒ&@¾ÿÿ ÿîõÄ&[4`ÿÿ ÿéöÏ&$@ÿÿ ÿîõÆ&f§ÿÿ ÿéõÐ&7\ÿÿ ÿéîÏ&9.ÿÿ ÿéõÏ&– ·ÿÿ ÿéöÑ&“9ÿÿ ÿîõÒ&Χÿÿ ÿéôÑ&@ ¸ÿÿ ÿèõÏ&á7ÿÿ ÿîõË&§Bÿÿ ÿîõÏ&§4bÿÿ ÿîõÆ&[âÿÿÿîõÐ&§4cÿÿ ÿéïÏ&–& ò4dÿÿ ÿèôÏ&@4eÿÿ ÿéôÏ&@,”ÿÿ ÿéëÏ&–&à4fÿÿ ÿéòÏ&@4gÿÿ ÿéóÏ&©9ÿÿÿêòÈ&€,•ÿÿ ÿèíÏ&9'©ÿÿ ÿéêÏ&i(9ÿÿ ÿéîÏ&9Þÿÿ ÿéêÐ&c@ÿÿ ÿéôÐ&7ÿÿ ÿëõÒ&„4hÿÿ ÿéõÐ&ã–ÿÿ ÿéôÏ&.09ÿÿ ÿîöÍ&,–[ÿÿ ÿîõÏ&[0gÿÿ ÿéõÐ&9. ÿÿ ÿéïÏ&–&8ÿÿ ÿéôÏ&7/ÿÿ ÿéóÏ&E@ÿÿ ÿîõÐ&[4iÿÿ ÿéòÏ&7'cÿÿ ÿéõÐ&–‚ÿÿ ÿéòÐ&@*ÿÿ ÿéôÏ&– ÿÿ ÿéôÐ&+(4ÿÿ ÿéùÏ&70ÿÿ ÿéôÑ&9'ªÿÿ ÿéòÏ&0@@ÿÿ ÿéóÏ&7çÿÿ ÿéóÏ&@Šÿÿ ÿëõÏ&ð&ñ„ÿÿ ÿéôÏ&7'«ÿÿ ÿëõÏ&x„ÿÿ ÿëõÐ&‚„ÿÿ ÿèõÑ&@`ÿÿ ÿéìÐ&&–4jÿÿ ÿîõÒ&§4kÿÿ ÿéîÏ&×7ÿÿ ÿìôÏ&%gÿÿ ÿìôÈ&gÿÿ ÿéõÏ&@*4ÿÿ ÿéíÐ&Ô&9Õÿÿ ÿéõÑ&ý9ÿÿ ÿéóÐ&–]ÿÿ ÿîõÐ&[ JÿÿÿêòÒ&.€ÿÿ ÿéóÏ&A1ÿÿ ÿèõÏ&i2ÿÿÿéìÊ&f4lÿÿ ÿçõÏ&Þ9ÿÿ ÿèõÏ& 9ÿÿÿêòÒ&€hÿÿ ÿèðÐ&7iÿÿ ÿéòÏ&9¿ÿÿ ÿéòÏ&9 Xÿÿ ÿéõÏ&9Ýÿÿ ÿéóÐ&7Èÿÿ ÿé÷Ï&9 ÿÿ ÿéøÏ&– ÿÿ ÿîõÎ&§4mÿÿ ÿéôÏ&A(mÿÿ ÿîõÌ&§4nÿÿ ÿéóÏ&–²ÿÿ ÿéëÏ&9&ÿÿ ÿéóÑ&@"fÿÿ ÿéõÏ&/@ÿÿ ÿîõÐ&ð&§4oÿÿ ÿéôÏ&@Zÿÿ ÿéñÐ&++ÿÿ ÿîõÑ&§&4pÿÿ ÿéõÏ&š–ÿÿ ÿèóÏ&–&.è4rÿÿ ÿë÷Ï&=„ÿÿ ÿéõÐ&i%ªÿÿ ÿèôÏ&@Ûÿÿ ÿéíÏ&i¾ÿÿ ÿèíÏ&9,—ÿÿ ÿèõÏ& Ý9ÿÿ ÿéõÓ&9&Ý4sÿÿ ÿéóÏ&@*5ÿÿ ÿéóÏ&@%Óÿÿ ÿéìÐ&9øÿÿ ÿéöÏ&>&%4tÿÿ ÿéôÐ&9ŸÿÿÿêòÏ&€4uÿÿ ÿîõÇ&§#mÿÿ ÿìôÏ&+44vÿÿ ÿîõÎ&§4wÿÿ ÿèõÏ&–&,˜4xÿÿ ÿéðÐ&@ ÿÿ ÿçïÏ&@*gÿÿ ÿèøÐ&– .ÿÿ ÿîõÑ&[4yÿÿ ÿìôÓ&g&0“4zÿÿ ÿéïÏ&94{ÿÿ ÿèôÏ&–&Þ 8ÿÿ ÿéôÏ&@Òÿÿ ÿçñÏ&9/Jÿÿ ÿéñÏ&@"‹ÿÿ ÿéïÏ&7Áÿÿ ÿéóÏ&@!ÿÿ ÿîõÏ&§4|ÿÿ ÿèóÏ&9âÿÿ ÿèóÏ&?9ÿÿ ÿéõÑ&9'ÿÿ ÿìôÐ&g4}ÿÿ ÿéôÒ&94~ÿÿ ÿëõÏ&l&„4ÿÿ ÿéóÏ&@7ÿÿ ÿéëÏ&!&–àÿÿ ÿèîÐ&–0ºÿÿ ÿéõÏ&9#Ìÿÿ ÿéñÏ&@"ÿÿ ÿèöÏ&%Ã&>áÿÿ ÿîõÐ&§0þÿÿ ÿéòÏ&9"ÿÿ ÿèóÏ&9#@ÿÿ ÿéñÏ&9!<ÿÿ ÿîõÐ&§4€ÿÿ ÿêöÐ&#ˆ€ÿÿ ÿéöÏ&–#‰ÿÿ ÿéíÏ&5iÿÿ ÿèòÏ&9Ÿÿÿ ÿëõÏ&„4ÿÿ ÿèöÐ&A!…ÿÿ ÿìôÒ&[gÿÿ ÿéïÏ&9"Gÿÿ ÿéêÏ&9Iÿÿ ÿéñÏ&7"Dÿÿ ÿçõÏ&Yiÿÿ ÿéòÑ&@+ÿÿ ÿéôÏ&93ÿÿ ÿéóÏ&@Ùÿÿ ÿéôÐ&9"£ÿÿÿêòÇ& v€ÿÿÿéõÐ&G&hFÿÿ ÿéïÏ&_–ÿÿ ÿéñÏ&–#Éÿÿ ÿëõÑ&„4‚ÿÿ ÿéôÏ&9Îÿÿ ÿéöÏ&–"ÿÿ ÿéðÏ&J&@4ƒÿÿ ÿéóÐ&!ñ9ÿÿ ÿéðÏ&9"ÿÿ ÿéñÑ&9#ôÿÿ ÿëõÐ&„4„ÿÿ ÿéôÏ&@1ÿÿ ÿéõÏ&–.ÿÿ ÿîõÑ&¿&[Àÿÿ ÿéòÏ&7'mÿÿ ÿéøÒ&,™7ÿÿ ÿéòÏ&@$Pÿÿ ÿéïÏ&9#'ÿÿ ÿèöÒ&–$%ÿÿ ÿéïÑ&–-êÿÿ ÿéòÏ&9Lÿÿ ÿëõÏ&„4…ÿÿ ÿéóÑ&@'¶ÿÿ ÿéöÏ&9$tÿÿ ÿéöÏ&–$hÿÿ ÿêôÈ&É4†ÿÿ ÿèôÐ&9*6ÿÿÿêòÈ&&~€ÿÿ ÿëõÌ&„4‡ÿÿ ÿéõÏ&9$ÿÿ ÿéôÏ&@"„ÿÿ ÿèóÏ&7$“ÿÿ ÿêòÑ&€4ˆÿÿ ÿîõÑ&§4‰ÿÿ ÿéñÏ&9,ðÿÿ ÿèõÐ&9'pÿÿÿêòÒ&/ë€ÿÿ ÿèöÏ&9ÿÿ ÿéõÏ&@ÿÿ ÿçóÐ&@æÿÿ ÿèóÏ&A áÿÿ ÿéòÏ&@/;ÿÿ ÿéóÏ&9¡ÿÿ ÿéóÏ&9'vÿÿ ÿéöÏ&9%+ÿÿ ÿéöÏ&n4Šÿÿ ÿéîÏ&–qÿÿ ÿçõÑ&9'ºÿÿ ÿëõÏ&„4‹ÿÿ ÿèôÏ&>&Þ4Œÿÿ ÿéòÏ&@.ÿÿ ÿìôÊ&$øgÿÿ ÿéôÑ&–*7ÿÿ ÿéïÏ&>& ó!fÿÿ ÿèôÐ&–'¸ÿÿ ÿéóÏ&9Jÿÿ ÿèôÏ&9,Öÿÿ ÿëõÏ&v„ÿÿ ÿéõÐ&Þ&@4ÿÿ ÿîõÏ&§4Žÿÿ ÿìôÏ&g4ÿÿ ÿéõÏ&œ–ÿÿ ÿéôÏ&@#~ÿÿ ÿëöÏ&„4ÿÿ ÿéòÏ&@$þÿÿ ÿêõÐ&˜4‘ÿÿ ÿéóÑ&7(Gÿÿ ÿêôÏ&€4’ÿÿ ÿéóÏ&@+ÿÿ ÿéòÏ&@ Þÿÿ ÿéõÏ&–%Úÿÿ ÿéíÏ&9:ÿÿ ÿèñÓ&–*8ÿÿ ÿçöÑ&–*9ÿÿ ÿëöÐ&„0 ÿÿ ÿçóÏ&@+ÿÿ ÿëõÐ&„ÿÿ ÿéõÒ&–~ÿÿ ÿîõÐ&§4”ÿÿ ÿé÷Ï&–'wÿÿ ÿéöÑ&9%Øÿÿ ÿìõÑ&gÄÿÿ ÿëõÎ&h&„4–ÿÿ ÿé÷Ï&–&n4—ÿÿ ÿêòÏ&$a&$`€ÿÿ ÿëõÏ&„úÿÿ ÿëõÏ&„&j4˜ÿÿ ÿèõÏ&9'}ÿÿ ÿéíÑ&9'‚ÿÿ ÿéôÏ&9*Òÿÿ ÿêòÈ&"Ø&"×€ÿÿ ÿçôÏ&'|+ÿÿ ÿéóÐ&º@ÿÿ ÿéöÐ&ž&4+ÿÿ ÿîõÏ&§4™ÿÿ ÿéòÏ&@'~ÿÿÿêóÏ&S.ÿÿ ÿéòÏ&@ÿÿ ÿéóÏ&9'ÿÿ ÿìôÐ&g4šÿÿ ÿèóÏ&–&°ÿÿ ÿéôÑ&–4›ÿÿ ÿèôÏ&–<ÿÿ ÿèöÐ&–'Œÿÿ ÿéóÐ&–'¾ÿÿ ÿêôÏ&€4œÿÿ ÿëõÑ&„&h4ÿÿ ÿéîÏ&–&0b4žÿÿ ÿéîÏ&9&0b4Ÿÿÿ ÿéóÏ&@*:ÿÿ ÿéôÏ&9'ãÿÿ ÿéöÐ&ë–ÿÿ ÿèôÏ&>&º&»¹ÿÿ ÿçìÏ&9%êÿÿ ÿè÷Ð&6&–4 ÿÿ ÿìôÒ&g4¡ÿÿ ÿéóÏ&*<9ÿÿ ÿéøÏ&–*;ÿÿ ÿîõÑ&§.ÿÿ ÿéöÑ&–)ôÿÿ ÿéõÏ&9.ÿÿ ÿéöÑ&7&Äÿÿ ÿéòÐ&0¥9ÿÿ ÿëõÏ&„4¢ÿÿ ÿéôÑ&9/"ÿÿ ÿèõÐ&–&4£ÿÿ ÿéõÏ&@¤ÿÿ ÿéòÏ&–4¤ÿÿ ÿìôÐ&%&g4¥ÿÿ ÿèôÏ&9-ÿÿ ÿé÷Ï&9öÿÿ ÿë÷Ð&„&C4¦ÿÿ ÿéöÐ&?>ÿÿ ÿéóÑ&$4§ÿÿ ÿèöÑ&9'…ÿÿ ÿîöÏ&§4¨ÿÿ ÿéñÏ&–)ÿÿ ÿè÷Ð&–+5ÿÿ ÿéõÐ&. 9ÿÿ ÿëõÏ&…&„„ÿÿ ÿçóÐ&<& ª «ÿÿ ÿèôÐ&(ˆ9ÿÿ ÿëõÏ&„&jiÿÿ ÿêôÐ&…&€4©ÿÿ ÿéñÏ&9FÿÿÿêòÏ&€4ªÿÿ ÿçøÒ&9Õÿÿ ÿêòÏ&…&€4«ÿÿ ÿéòÏ&–0Ãÿÿ ÿéöÏ&–/ ÿÿ ÿéòÏ&–*=ÿÿ ÿéôÒ&9Qÿÿ ÿèôÏ&/D>ÿÿ ÿèõÑ&(+ÿÿ ÿé÷Ï&9÷ÿÿ ÿèòÏ&%[9ÿÿ ÿèôÒ&9%ÿÿ ÿçõÏ&90”ÿÿ ÿèïÏ&>& 4¬ÿÿ ÿéõÏ&@+6ÿÿ ÿëöÏ&„4­ÿÿ ÿéõÏ&56ÿÿ ÿéóÐ&§9ÿÿ ÿçõÐ&=<ÿÿ ÿèðÐ&–. ÿÿ ÿìôÍ&g4®ÿÿ ÿéñÑ&9%÷ÿÿ ÿéôÏ&>++ÿÿ ÿèôÏ&>,šÿÿ ÿéòÏ&–*>ÿÿ ÿéóÏ&–Oÿÿ ÿéóÏ&9'“ÿÿ ÿëóÏ&3&ÿÿ ÿëõÒ&„,›ÿÿÿêòÏ&U€ÿÿ ÿæóÑ&>Tÿÿ ÿéðÏ&ÖÿÿÿêïÒ&SRÿÿ ÿìôÒ&1gÿÿ ÿèõÒ&“4¯ÿÿ ÿèõÒ&“4°ÿÿ ÿéôÏ&.ÿÿ ÿéöÐ&UVÿÿ ÿèúÐ&T4±ÿÿ ÿèóÏ&XKÿÿ ÿéòÐ&âZÿÿÿèóÏ&YXÿÿÿéõÐ&5[ÿÿ ÿéõÏ&-ô4²ÿÿÿèóÏ&\Xÿÿ ÿéòÐ&âáÿÿ ÿéòÐ&]âÿÿÿéõÐ&^5ÿÿ ÿêóÐ&4<ÿÿ ÿéõÐ&:5ÿÿ ÿéòÐ&‘âÿÿ ÿéõÐ&5_ÿÿ ÿéõÐ&5aÿÿ ÿéôÐ&=>ÿÿÿèöÏ&ghÿÿ ÿéòÐ&bâÿÿÿéõÐ&5cÿÿ ÿéóÐ&;<ÿÿÿéõÐ&d5ÿÿÿéõÐ&e5ÿÿ ÿéõÐ&*?5ÿÿÿéõÐ&f5ÿÿ ÿéõÐ&i5ÿÿ ÿèöÏ&. 4¶ÿÿ ÿéòÐ&*@(½ÿÿ ÿéñÐ&ü4·ÿÿ ÿçòÐ&ýþÿÿ ÿçóÐ&ýÿÿÿ ÿèóÏ&ÿÿ ÿéòÌ&0­4¸ÿÿ ÿèçÏ&4¹ÿÿ ÿèéÏ&4ºÿÿ ÿæëÏ&4»ÿÿ ÿèòÏ&4¼ÿÿ ÿèèÏ&4½ÿÿ ÿéòÐ&ÿÿ ÿèïÏ& Mÿÿ ÿèôÏ&áÿÿ ÿéðÏ&þœÿÿ ÿéèÐ&ëþÿÿ ÿéëÏ&úþÿÿ ÿèöÏ&-ïÿÿ ÿéóÏ&Ñ-ÿÿ ÿéìÏ&Þÿÿ ÿéôÏ&þ6ÿÿ ÿéóÏ&-ýÿÿ ÿéôÏ&-( ÿÿ ÿéìÏ&-( ÿÿ ÿéóÏ&È-ÿÿ ÿéðÏ&lÿÿ ÿéóÏ&-&ÿÿ ÿèõÏ&-šÿÿ ÿéôÏ&„·ÿÿ ÿéòÏ&-ÿÿ ÿéçÏ&þ*Aÿÿ ÿéõÏ&-³ÿÿ ÿéòÏ&-(ÿÿ ÿéóÏ&- ÿÿ ÿéòÏ&(ÿÿ ÿéìÏ&(ÿÿ ÿéóÐ&¿-ÿÿ ÿèíÏ&Óÿÿ ÿéêÏ&,“-ÿÿ ÿéëÏ&„%3ÿÿ ÿéóÏ&)„ÿÿ ÿéôÏ&„Ûÿÿ ÿéóÏ&-ßÿÿ ÿéóÏ&5ÿÿ ÿéóÏ&‰-ÿÿ ÿèöÑ&Óÿÿ ÿéóÏ&Àÿÿ ÿèöÏ& ÿÿ ÿéöÏ&„/ÿÿ ÿéòÏ&(%ÿÿÿéõÏ&ÂÿÿÿèôÏ&Âÿÿ ÿéõÑ&²ÿÿ ÿèòÏ&0$ÿÿ ÿéòÏ&ºÿÿ ÿéôÏ&.-ÿÿ ÿèõÏ&ÿÿ ÿèõÏ&Ëÿÿ ÿéôÏ&wÿÿ ÿéìÐ&„ÿÿ ÿèôÏ&(/ÿÿ ÿéõÏ&R-ÿÿ ÿéíÏ&ô-ÿÿ ÿééÏ&*Bÿÿ ÿéöÏ&B.7ÿÿ ÿéõÏ&„õÿÿ ÿéôÏ&"ÿÿ ÿçõÏ&!vÿÿ ÿéöÏ&Þÿÿ ÿèðÏ&„&ú4¿ÿÿ ÿéñÏ&„8ÿÿ ÿé÷Ï&*Cÿÿ ÿéõÏ&Ûÿÿ ÿèóÏ&*Dÿÿ ÿéõÏ&-‘ÿÿÿéòÐ&±ÿÿ ÿéñÏ&-ñÿÿ ÿéòÏ&„. ÿÿ ÿéõÐ&&ïðÿÿÿéòÏ&ÂAÿÿ ÿèöÏ&-+8ÿÿ ÿéôÏ&+7ÿÿ ÿéôÏ&…ÿÿ ÿéôÏ&Fÿÿ ÿéóÏ&„'Fÿÿ ÿéëÏ&-(Áÿÿ ÿçôÏ&-4Àÿÿ ÿéôÏ&%Ëÿÿ ÿéóÏ&-ÿÿ ÿéóÏ&/'ÿÿ ÿèòÏ&+..7ÿÿ ÿèôÏ&ÿÿ ÿéòÐ&kÿÿ ÿéôÏ&4Áÿÿ ÿèöÐ&Âÿÿ ÿéòÏ&ÝÿÿÿéöÏ&Â%!ÿÿ ÿéôÐ&?ÿÿ ÿéðÏ&Ãÿÿ ÿéóÏ&+ÿÿ ÿèóÏ&-îÿÿ ÿèõÏ&+ÿÿ ÿéôÏ&-+ÿÿ ÿéõÏ&-kÿÿ ÿéïÐ&Rÿÿ ÿèìÏ&&ÿÿ ÿéëÏ&»ÿÿ ÿéóÏ&"Wÿÿ ÿéóÏ&)Kÿÿ ÿéòÏ&0°ÿÿ ÿéóÏ&-'Ëÿÿ ÿéöÏ&-äÿÿ ÿçóÏ&-'£ÿÿ ÿèôÏ&„Øÿÿ ÿéóÏ&ÿÿ ÿéóÐ&+9ÿÿ ÿéòÏ&².7ÿÿ ÿèöÐ&/(&ð.7ÿÿ ÿèóÏ&-ÿÿ ÿéèÐ&-%žÿÿ ÿçõÏ&„‡ÿÿÿéóÐ&0ƒ^ÿÿ ÿéíÏ&,Çÿÿ ÿéóÏ&ÿÿ ÿéóÏ&Áÿÿ ÿéòÏ&-Îÿÿ ÿçòÐ&+:ÿÿ ÿéóÐ&/)ÿÿ ÿéïÐ&& ò4Âÿÿ ÿéëÐ&Wÿÿ ÿééÏ&µÿÿ ÿéïÐ&,œÿÿ ÿéêÏ&jÿÿÿéóÎ&,+;ÿÿ ÿéïÏ&+<ÿÿ ÿéòÏ&.Òÿÿ ÿéõÐ&4Ãÿÿ ÿéõÏ&ÿÿ ÿéóÏ&'¦ÿÿ ÿéöÏ&/*ÿÿ ÿéçÏ&+=ÿÿÿéñÏ&Â4Äÿÿ ÿéòÏ&Sÿÿ ÿéôÑ&/sÿÿ ÿéðÏ&„+3ÿÿ ÿéõÏ&~-ÿÿ ÿéõÏ&„ ·ÿÿ ÿéõÏ&sÿÿ ÿéòÏ&„0Õÿÿ ÿéöÏ&Uÿÿ ÿéòÐ&q&<ÿÿ ÿèïÏ&0ÿÿ ÿèõÐ&/,4Åÿÿ ÿèõÐ&L/,ÿÿ ÿéöÑ&“ÿÿ ÿéôÏ&P.7ÿÿ ÿéòÏ&¨ÿÿ ÿéóÏ&ÿÿ ÿèîÏ&ÿÿ ÿéñÏ&$.7ÿÿ ÿéõÏ&Šÿÿ ÿèöÏ&+ÿÿÿèõÏ&Âáÿÿ ÿçôÐ&%ÿÿ ÿéôÑ& ¸ÿÿÿéôÑ&íÍÿÿ ÿé÷Ï&õÿÿ ÿéóÐ&-Kÿÿ ÿéóÏ&„ÿÿÿéóÏ&ÕÂÿÿ ÿéðÏ&-ÿÿÿéðÏ&^&ÿÿÿèóÏ&Â0½ÿÿ ÿéðÏ&Íÿÿ ÿéõÐ&„\ÿÿ ÿèôÐ&Pÿÿ ÿèõÏ&,ž.7ÿÿ ÿéîÏ&.„ÿÿÿéðÐ&0†^ÿÿ ÿé÷Ï&BÿÿÿéòÐ&ÂÙÿÿ ÿéôÏ&­ÿÿ ÿéòÏ&+ÿÿ ÿéñÏ&4Æÿÿ ÿèôÏ&/,4ÇÿÿÿéõÏ&Í&ÉÊÿÿÿèòÐ&úËÿÿ ÿéôÏ&.74Èÿÿ ÿéóÏ&.74Éÿÿ ÿæöÏ&pÿÿ ÿéôÏ&„ÿÿ ÿéíÏ&-éÿÿ ÿèòÐ&.74Êÿÿ ÿéóÑ&!.7ÿÿ ÿèñÑ&„ëÿÿ ÿéóÏ&©ÿÿ ÿéïÏ&,ÿÿ ÿéôÏ&ÿÿ ÿéôÐ&ÿÿ ÿèñÏ&&i&&e.7ÿÿ ÿéóÏ&.7.—ÿÿ ÿéôÏ& ÿÿ ÿæ÷Ï&„(¿ÿÿ ÿè÷Ï&&(.7ÿÿÿéóÏ&^0Éÿÿ ÿéòÏ&%ÿÿ ÿéõÐ&ƒÿÿ ÿèñÏ&%Ïÿÿ ÿéòÏ&©ÿÿ ÿéòÏ&'cÿÿ ÿéôÏ&%=.7ÿÿ ÿéõÏ&.7ÿÿÿèñÏ&ÂŽÿÿ ÿéôÐ&(4ÿÿ ÿçõÏ& Õÿÿ ÿèôÏ&4Ëÿÿ ÿéôÏ&%$ÿÿÿéóÏ&EÂÿÿ ÿéóÏ&Š„ÿÿ ÿéôÏ&ì.7ÿÿ ÿéóÏ&(5ÿÿ ÿèíÏ&'©ÿÿ ÿéîÏ&Þÿÿ ÿéòÏ&„'Rÿÿ ÿéõÐ&ã.7ÿÿ ÿéóÏ&(6ÿÿ ÿéóÏ&(7ÿÿÿèôÏ&Â(8ÿÿ ÿèìÐ&&ÿÿ ÿéôÏ&/ÿÿ ÿéêÐ&cÿÿ ÿéõÏ&.ÿÿ ÿéêÏ&(9ÿÿ ÿçöÏ&4Ìÿÿ ÿéíÏ&?ÿÿ ÿéðÒ&0íÿÿ ÿçõÑ&Žÿÿ ÿéóÏ&Àÿÿ ÿéôÑ&'ª„ÿÿ ÿéóÏ&(:ÿÿ ÿéóÏ&ìÿÿ ÿéöÐ&4Íÿÿ ÿèîÐ&,Ÿ.7ÿÿÿéôÏ&Â[ÿÿ ÿéõÏ&+>ÿÿ ÿéõÐ&®ÿÿ ÿèïÓ&-4Îÿÿ ÿéöÏ&"H„ÿÿ ÿèøÏ&'±.7ÿÿ ÿèõÑ&&.7ÿÿ ÿçõÏ&Þÿÿ ÿéîÏ&.70bÿÿ ÿèóÐ&(<ÿÿ ÿéñÏ&¼ÿÿ ÿéëÏ&(&à.7ÿÿ ÿéõÏ&/ÿÿ ÿèðÏ&, ÿÿÿéõÐ&Â%ªÿÿ ÿçóÏ&©.7ÿÿ ÿéòÏ&£.7ÿÿ ÿèóÏ&„,¡ÿÿ ÿé÷Ï&Kÿÿ ÿéõÏ&„ @ÿÿ ÿéõÑ& ÿÿ ÿèõÑ&‰ÿÿÿéóÏ&1Âÿÿ ÿéõÏ&„Ýÿÿ ÿéõÐ&&!ä4Ïÿÿ ÿèõÏ&2.7ÿÿÿéðÐ& ÿÿ ÿéóÏ&Ÿÿÿ ÿéóÏ& ÿÿ ÿéóÏ&(=ÿÿ ÿèõÏ& Ý.7ÿÿ ÿéñÏ&..7ÿÿÿéòÏ& Vÿÿ ÿéòÐ&%ÐÿÿÿéôÏ&Â(mÿÿ ÿéóÏ&„(>ÿÿ ÿèìÏ&(?.7ÿÿ ÿéíÏ&%ÕÿÿÿèöÏ&»ÿÿ ÿéóÐ& I.7ÿÿÿéôÈ&Í0Íÿÿ ÿéõÏ&d.7ÿÿ ÿéòÏ&#jÿÿ ÿéïÏ&„(@ÿÿ ÿéòÒ&¢.7ÿÿ ÿé÷Ð&&ýìÿÿÿèöÏ& `Âÿÿ ÿèöÏ&<ÿÿ ÿèôÏ&Ûÿÿ ÿéôÑ&9ÿÿÿéôÏ&ÂYÿÿ ÿéñÏ&„(Aÿÿ ÿéòÏ&.L.7ÿÿÿéôÑ&Ï&ÐÍÿÿ ÿéíÏ&É„ÿÿ ÿéòÏ&„,mÿÿ ÿéòÏ&+ÿÿ ÿéôÐ&Ÿÿÿ ÿéöÏ&'e.7ÿÿ ÿéóÏ&%Óÿÿ ÿéóÏ&.5.7ÿÿ ÿéîÏ&¿ÿÿ ÿèöÏ& .7ÿÿ ÿéíÐ&,¢ÿÿ ÿéóÐ&,nÿÿ ÿéòÎ&á&âÑÿÿ ÿéóÏ&Ó&ÒÔÿÿ ÿéëÏ&Ðÿÿ ÿçðÑ&‡ÿÿ ÿéíÏ&Ñÿÿ ÿèõÒ&„/-ÿÿ ÿèñÐ&×&&eÿÿ ÿçòÑ&Óÿÿ ÿèøÐ& +.7ÿÿ ÿéôÏ&„4Ðÿÿ ÿçñÏ&/J.7ÿÿ ÿéñÏ&,£ÿÿ ÿéõÏ&"ë.7ÿÿ ÿéõÏ&:.7ÿÿ ÿéôÐ&&.7ÿÿ ÿéòÐ&#¥ÿÿ ÿéöÏ&#‰.7ÿÿ ÿéôÌ&Í4Ñÿÿ ÿéõÏ&"z.7ÿÿ ÿéóÏ&"µ.7ÿÿ ÿéíÏ&/›.7ÿÿ ÿéôÏ&#J.7ÿÿ ÿéëÏ&„" ÿÿ ÿèóÏ&#@.7ÿÿ ÿéöÏ&„",ÿÿ ÿéöÏ&,¤.7ÿÿ ÿéòÏ&„"ÿÿ ÿéòÏ&0¢ÿÿ ÿéñÏ&„"ÿÿ ÿèóÏ&!ö.7ÿÿ ÿéöÐ&ç&,êÿÿ ÿéóÏ&Ùÿÿ ÿäöÏ&„"oÿÿ ÿèóÏ&Z.7ÿÿ ÿéõÑ&'ÿÿ ÿèïÐ&„0¹ÿÿ ÿçõÏ&„Yÿÿ ÿéõÏ&£ÿÿ ÿèóÏ&!ê.7ÿÿ ÿéôÏ&¼.7ÿÿ ÿéóÑ&„Xÿÿ ÿéñÏ&„$Zÿÿ ÿéñÏ&#É.7ÿÿ ÿéõÏ&#Ù.7ÿÿ ÿèóÏ&â.7ÿÿ ÿéîÏ&/¸.7ÿÿ ÿéîÑ&ã.7ÿÿÿéôÐ&Ð&Í4Òÿÿ ÿéðÑ&/ƒÿÿ ÿéôÏ&-.7ÿÿ ÿèöÐ&&á%ÃÿÿÿéôÐ&Í"Êÿÿ ÿéñÏ&"Dÿÿ ÿéóÏ&!ÿÿ ÿéóÐ&&ÿÿ ÿéôÏ&!^ÿÿÿéôÏ&Ð&Í4Óÿÿ ÿèóÏ&?ÿÿ ÿéôÏ&„!"ÿÿ ÿèòÏ&„Ÿÿÿ ÿéôÏ&.70{ÿÿ ÿèñÏ&&e&(C.7ÿÿ ÿèóÏ&„!÷ÿÿ ÿéôÏ&„"hÿÿ ÿéóÏ&„#°ÿÿ ÿéóÏ&„(Bÿÿ ÿéóÐ&0–ÿÿ ÿéöÐ&(D&%ÿÿ ÿéóÐ&oÿÿ ÿéíÐ&Õ&.74Ôÿÿ ÿèôÏ&#´.7ÿÿ ÿéóÏ&4Õÿÿ ÿèôÐ&,Åÿÿ ÿéðÏ&$¬.7ÿÿ ÿéîÑ&+ÿÿ ÿè÷Ï&$ß.7ÿÿ ÿéõÏ&„$Êÿÿ ÿèõÏ&„¢ÿÿ ÿéóÏ&.74Öÿÿ ÿéöÏ&$tÿÿ ÿéòÏ&.6.7ÿÿ ÿéîÑ&$–.7ÿÿ ÿéóÐ&åÿÿ ÿéôÏ&"„.7ÿÿÿéõÏ&Â)iÿÿ ÿèòÏ&;.7ÿÿ ÿéîÐ&„#Áÿÿ ÿéóÏ&$D.7ÿÿ ÿéïÑ&-ê.7ÿÿ ÿèõÐ&'p.7ÿÿ ÿèöÏ&% .7ÿÿ ÿéòÐ&„% ÿÿ ÿéóÐ&&,Ä,¥ÿÿ ÿçíÐ&$ìÿÿ ÿé÷Ï&„&ì#vÿÿ ÿéðÏ&#wÿÿ ÿéóÐ&#z.7ÿÿ ÿéôÏ&*)ÿÿ ÿéöÑ&#u&â.7ÿÿ ÿèïÏ&„+ÿÿ ÿéóÏ&#|ÿÿ ÿéîÏ&#{.7ÿÿ ÿéôÑ&Ð.7ÿÿ ÿèôÑ&#x#yÿÿ ÿçõÐ&&&  ÿÿ ÿéõÏ&„#Cÿÿ ÿéõÏ&„$ÿÿ ÿèóÏ&„$“ÿÿÿéóÏ&ÂMÿÿ ÿéðÑ&‡ÿÿ ÿéôÑ&4×ÿÿÿéõÏ&Âÿÿ ÿèõÐ& ÿÿ ÿçóÐ&æÿÿ ÿéðÏ&$.7ÿÿ ÿèòÐ&Ýÿÿ ÿéóÏ&R.7ÿÿ ÿéîÏ&$‘„ÿÿ ÿéòÑ&á&â4ØÿÿÿçñÏ&Â#ÿÿ ÿéóÏ&$Aÿÿ ÿèôÏ&„4Ùÿÿ ÿéôÏ&1ÿÿ ÿéòÏ&/;.7ÿÿ ÿéõÑ&„&†4Úÿÿ ÿæïÏ&.74Ûÿÿ ÿéòÏ&'m.7ÿÿ ÿèòÐ&„/Mÿÿ ÿéóÏ&)’&)“.7ÿÿ ÿèôÐ&(&.74Üÿÿ ÿéôÐ&.8.7ÿÿ ÿé÷Ï&„(Eÿÿ ÿéöÐ&E.7ÿÿ ÿéîÏ&q.7ÿÿ ÿéòÏ&w.7ÿÿ ÿéôÐ&.ûÿÿ ÿéôÑ&.9.7ÿÿ ÿéîÑ&„¹ÿÿ ÿéõÏ&„4Ýÿÿ ÿéðÑ&(Fÿÿ ÿèôÏ&,Ö.7ÿÿ ÿéôÑ&'·.7ÿÿ ÿéôÏ&„'àÿÿ ÿçóÏ&+ÿÿ ÿéöÑ&%Øÿÿ ÿçîÐ&4Þÿÿ ÿéóÑ&(G.7ÿÿ ÿçõÐ&&ÏÐÿÿ ÿéòÏ&..7ÿÿ ÿèôÏ&„/.ÿÿ ÿéõÑ&$4ßÿÿ ÿéõÐ&&)ñ4àÿÿ ÿèöÑ&,y.7ÿÿ ÿèöÐ&„(HÿÿÿéôÐ&Í&#\+ÿÿ ÿéöÐ&Í0 ÿÿÿéöÏ&Í4áÿÿ ÿèôÐ&&Þ4âÿÿ ÿéôÏ&#~ÿÿ ÿéòÏ&,¦.7ÿÿ ÿéõÒ&~.7ÿÿ ÿéóÏ&+ÿÿ ÿéõÑ&„#€ÿÿ ÿéöÏ&%+ÿÿÿéõÏ&j4ãÿÿ ÿéíÏ&:ÿÿ ÿçõÑ&'º.7ÿÿ ÿéóÏ&„'vÿÿ ÿéöÏ&.7ÿÿ ÿçõÏ&4äÿÿÿèôÑ&k&#x4åÿÿ ÿæïÏ&,(.7ÿÿ ÿèõÏ&Ô.7ÿÿ ÿéóÐ&&÷4æÿÿ ÿèïÏ&(I.7ÿÿÿèôÓ&(J4çÿÿ ÿéëÐ&&&®(Lÿÿ ÿéîÏ&.7&0b4èÿÿ ÿçôÏ&(Kÿÿ ÿéóÏ&%íÿÿ ÿéîÏ&„/!ÿÿ ÿèôÏ&(Mÿÿ ÿèõÐ&&4éÿÿ ÿèôÏ&<.7ÿÿ ÿèôÐ&&Þ4êÿÿ ÿèõÐ&&.74ëÿÿ ÿçòÏ&%â.7ÿÿ ÿéöÑ&/Ž.7ÿÿ ÿéóÒ&„%æÿÿ ÿèõÐ&ì.7ÿÿ ÿéöÏ&%.7ÿÿ ÿéòÏ&„#îÿÿ ÿéóÐ&'¾ÿÿ ÿèõÏ&'}.7ÿÿ ÿéôÐ&ê&,§ÿÿ ÿéóÏ&„'ÿÿ ÿéòÏ&„ÿÿ ÿèõÐ&&4ìÿÿ ÿèõÏ&(N.7ÿÿ ÿèöÏ&,¨„ÿÿ ÿéôÐ&(Oÿÿ ÿéöÐ&ëÿÿ ÿèôÐ&//ÿÿ ÿéõÏ&'¿.7ÿÿ ÿéõÏ&.7,×ÿÿ ÿèôÏ&’ÿÿ ÿéõÑ&&,Ù ÿÿ ÿéóÐ&&¤ÿÿ ÿéõÐ&!ä&4íÿÿ ÿéòÐ&%..7ÿÿ ÿéóÐ&&4îÿÿ ÿèôÐ&,).7ÿÿ ÿéòÏ&.:.7ÿÿ ÿèóÑ&.74ïÿÿ ÿéõÐ&&Þ4ðÿÿ ÿéôÑ&/".7ÿÿ ÿèõÐ&&.74ñÿÿ ÿé÷Ï&.74òÿÿ ÿé÷Ñ&&Ã.7ÿÿ ÿèõÐ&4óÿÿ ÿéóÐ&/ÿÿ ÿéðÐ&0¶ÿÿ ÿçôÏ&„-Oÿÿ ÿéòÐ&,©.7ÿÿ ÿéóÒ&´.7ÿÿ ÿéôÏ&'Ä.7ÿÿ ÿéñÏ&'.7ÿÿÿèôÍ&k&#x4ôÿÿ ÿéðÏ&'.7ÿÿ ÿé÷Ï&ö.7ÿÿ ÿéôÐ&Í,ªÿÿ ÿéóÐ&&÷4õÿÿ ÿéõÏ&„¤ÿÿ ÿéõÏ&/#.7ÿÿ ÿéòÐ&.70¦ÿÿ ÿéðÏ&,†„ÿÿ ÿéòÐ&.Óÿÿ ÿéôÐ&Í.ÿÿ ÿèöÑ&'….7ÿÿ ÿèôÏ&-.7ÿÿ ÿéöÏ&/Þ.7ÿÿ ÿèõÐ&&4öÿÿ ÿçøÒ&Õ.7ÿÿ ÿéñÏ&(P.7ÿÿ ÿéóÏ&Êÿÿ ÿéòÏ&0Ã.7ÿÿÿéòÐ&Â8ÿÿÿéôÑ&Í4÷ÿÿ ÿé÷Ð&.;ÿÿ ÿéöÐ&.<4øÿÿ ÿèôÐ&$à&$áÿÿ ÿéðÏ&„%óÿÿ ÿèôÐ&/Dÿÿ ÿéóÐ&&‡4ùÿÿ ÿéôÏ&„'ÿÿ ÿçôÑ&(Q.7ÿÿ ÿéôÒ&Q.7ÿÿ ÿèïÐ&&ô4úÿÿ ÿéôÐ&4ûÿÿ ÿéöÏ&.74üÿÿ ÿèôÒ&%.7ÿÿ ÿéòÑ&.74ýÿÿ ÿçñÐ&& ©4þÿÿ ÿç÷Ò&(R.7ÿÿ ÿèôÐ&/£ÿÿ ÿçõÐ&4ÿÿÿ ÿéöÒ&)ø.7ÿÿ ÿèóÐ&@ÿÿ ÿçõÏ&.70”ÿÿ ÿéõÑ&&Þ5ÿÿ ÿèõÑ&(.7ÿÿ ÿéôÐ&.75ÿÿ ÿéòÐ&)÷.7ÿÿ ÿèóÐ&?&=.7ÿÿ ÿèóÐ&>&¡.7ÿÿ ÿèòÐ&)0.7ÿÿ ÿèñÏ&,À.7ÿÿ ÿèïÏ&.75ÿÿ ÿèöÐ&5ÿÿ ÿéøÑ&û.7ÿÿ ÿéöÐ&H.7ÿÿ ÿèöÐ&.75ÿÿ ÿçôÐ&0ÿÿ ÿéöÑ&5ÿÿ ÿéíÏ&£.7ÿÿ ÿé÷Ð&;ÿÿ ÿèòÏ&,}.7ÿÿ ÿéôÑ&.75ÿÿ ÿéñÑ&%÷.7ÿÿ ÿèòÑ&(Sÿÿ ÿçöÐ&5ÿÿ ÿéîÏ&.75 ÿÿ ÿéóÏ&(T.7ÿÿ ÿéõÐ&.75 ÿÿ ÿéòÐ&&.,5 ÿÿ ÿçõÐ&‡.7ÿÿ ÿèôÓ&…#xÿÿ ÿéòÐ&&.,5 ÿÿ ÿèôÐ&.75 ÿÿ ÿéóÐ&&Öÿÿ ÿçñÑ&%ø.7ÿÿ ÿéôÒ&.Aÿÿ ÿéðÐ&Ãÿÿ ÿæóÐ&.=ÿÿ ÿéòÐ&.75ÿÿ ÿèïÐ&1ÿÿÿèõÏ&(U(Vÿÿ ÿéóÏ&«5ÿÿÿèõÏ&Bÿÿ ÿèôÏ&)ÿÿ ÿèõÏ&AÿÿÿèõÏ&ÿÿ ÿèõÐ&Æ(Wÿÿ ÿèõÏ&,­Pÿÿ ÿèõÏ&Q-ÿÿ ÿèõÏ&(X-ÿÿÿéöÏ&NÿÿÿèôÏ&çOÿÿ ÿèôÏ&+‘ÿÿ ÿéöÑ&äÿÿ ÿèôÏ&oÿÿ ÿèôÏ&•ÿÿ ÿéóÎ&+?.Bÿÿ ÿèôÏ&nÿÿ ÿéöÐ&LÿÿÿèõÏ&-5ÿÿ ÿèôÐ&+çÿÿ ÿèõÐ&T-ÿÿ ÿèõÏ&a-ÿÿ ÿèôÏ&ç(Yÿÿ ÿèõÏ&- °ÿÿ ÿèõÏ&-ÿÿ ÿèôÏ&ÿÿ ÿèõÏ&-,=ÿÿ ÿèõÐ&,«-ÿÿ ÿèõÐ&,¬,­ÿÿ ÿèôÑ& çÿÿÿèôÏ&”æÿÿÿèôÏ&÷æÿÿ ÿèõÏ&-5ÿÿ ÿèõÏ&.C-ÿÿ ÿéöÏ&|ÿÿÿçõÏ&âãÿÿÿèõÒ&(Z-ÿÿÿéóÐ&$(Vÿÿ ÿèõÐ&-([ÿÿ ÿèôÏ& Úçÿÿ ÿçõÐ&-5ÿÿ ÿèôÏ&ç5ÿÿ ÿèôÏ&ç"ÿÿÿéóÐ&#$ÿÿÿèõÏ&-5ÿÿÿèóÐ&% $ÿÿÿèôÏ&æ(\ÿÿ ÿíóÐ&*5ÿÿÿèôÑ&æ(]ÿÿÿèõÐ&&ÿÿÿèôÑ&ç5ÿÿ ÿçôÏ&(ÄæÿÿÿèôÏ&ç5ÿÿÿéóÐ&$™ÿÿ ÿéóÐ&$(ÿÿ ÿèôÑ&æ,¯ÿÿ ÿèôÏ&,®æÿÿ ÿéóÎ&+?+„ÿÿ ÿèôÏ&,°æÿÿÿèôÑ&æ0äÿÿÿçôÑ&ûûÿÿ ÿêôÒ&/5ÿÿ ÿèõÐ&'&(&ÿÿ ÿéöÐ&5Áÿÿ ÿèöÐ&Á5ÿÿ ÿéöÐ&ÂÁÿÿ ÿéõÐ&¢)ÿÿ ÿèöÐ&Á5ÿÿ ÿèôÐ&ÿÿ ÿêôÏ&&øÿÿ ÿèïÐ&¢0¹ÿÿÿçíÑ&“”ÿÿ ÿçöÐ&&,²5 ÿÿÿéíÍ&“–ÿÿ ÿìõÑ&—5!ÿÿ ÿèøÏ&M•ÿÿ ÿèöÐ&BCÿÿ ÿéøÐ&LMÿÿÿéðÉ&&W,³ÿÿÿèöÐ&C,±ÿÿ ÿéöÏ&C]ÿÿ ÿéöÏ&$3Cÿÿ ÿèöÐ&´¥ÿÿ ÿéøÏ&M+šÿÿÿéõÏ&,Ã5$ÿÿ ÿéòÏ&K0­ÿÿ ÿêóÎ&¸}ÿÿ ÿêóÊ&»!rÿÿ ÿéóÏ& Í}ÿÿÿêóÏ&(Ã}ÿÿ ÿêóÏ&(Â}ÿÿ ÿèóÏ&}±ÿÿ ÿéóÑ&|}ÿÿ ÿêóË&}5%ÿÿ ÿêóÎ&}%ÿÿ ÿéðÍ& Ç#7ÿÿÿèôË&Þ5&ÿÿ ÿèôÌ&Þ/$ÿÿ ÿé÷Ï&w&§¹ÿÿ ÿéôÐ&w&º5'ÿÿ ÿéöÏ&y,éÿÿ ÿéôÏ&w&§5(ÿÿ ÿèòÏ&&y5)ÿÿ ÿèõÏ&y&5*ÿÿ ÿéóÏ&y&5+ÿÿ ÿéõÏ&yxÿÿ ÿèïÐ&y5,ÿÿ ÿèöÏ&w0mÿÿ ÿéôÏ&w&ÿÿ ÿéöÏ&]&yÿÿ ÿéóÐ&y&=5-ÿÿ ÿèõÏ&y&5.ÿÿ ÿçóÏ&D&yÿÿ ÿéõÐ&<&w=ÿÿ ÿéòÏ&y&5/ÿÿ ÿèòÏ&y&­50ÿÿ ÿçõÏ&y&­51ÿÿ ÿéòÏ&yüÿÿ ÿé÷Ñ&y&.E52ÿÿ ÿéõÑ&y&.E53ÿÿ ÿèõÑ&!©&.E54ÿÿ ÿèöÐ&!©55ÿÿ ÿèóÎ&!©56ÿÿÿçöÄ&U59ÿÿÿêöÐ&.F5:ÿÿ"ÿéèÃ&(¬5<ÿÿ ÿéçÏ&[5=ÿÿ ÿéõÏ& ¯Hÿÿ ÿéõÏ&òñÿÿ ÿèõÇ&IóÿÿÿéóÄ&V¨ÿÿÿéðÇ&ILÿÿ ÿéòÆ&KJÿÿÿéìÎ&Y–ÿÿÿéðÀ&lTÿÿ ÿè߯&)ÜJÿÿÿêòÏ&(–ÿÿÿêóÐ&¿0ªÿÿÿóôÂ&wVÿÿ ÿèôÆ&JÿÿÿéõÍ&TRÿÿÿìøÏ&V#ÿÿÿéòÏ&¬TÿÿÿêìÐ&*ÙVÿÿÿççÇ&I5>ÿÿ ÿéðÇ&w&ÿvÿÿÿèõÏ&‘0ªÿÿÿèóÆ&R…ÿÿ*ÿëïÇ&I3ÿÿÿêïÇ&¨§ÿÿÿêëÏ&0ª(ÁÿÿÿèòÏ&0ª0«ÿÿ ÿçôÇ&wªÿÿ ÿéõÃ&«òÿÿÿéáÇ&I(ÀÿÿÿéíÂ&ô–ÿÿÿéëÉ&%“%’ÿÿÿèìÐ&%”ÿÿÿéôÎ&TÚÿÿÿèöÑ&ÓTÿÿÿìðÏ&{VÿÿÿéñÏ&ò5?ÿÿÿéñÍ&ñRÿÿÿèîÇ&I5@ÿÿÿçñÇ&¨5AÿÿÿéòÏ&“5BÿÿÿéôÂ&T%ËÿÿÿêöÏ&R0®ÿÿÿéóÏ&VÔÿÿÿééÏ&TµÿÿÿçõÏ&DYÿÿ ÿéôÇ& ƒ&¨5Cÿÿÿé÷Ï&RSÿÿÿéóÐ&UTÿÿÿêëÐ&VWÿÿÿéêÄ&Tjÿÿ ÿéìÇ& €&¨5Dÿÿ ÿïóÇ&|wÿÿÿðòÇ&I,µÿÿÿéòÏ&D0°ÿÿÿèõÏ&R+0ÿÿÿçåÇ&¨,¶ÿÿÿêðÇ&RÃÿÿ ÿé÷Ñ&MNÿÿÿéõÐ&/&* ÿÿÿèðÈ&,· ÿÿ ÿçêÇ&¨&  €ÿÿ ÿîöÅ&æ0hÿÿÿõòÆ&J5EÿÿÿêõÏ&RÿÿÿéôÇ&*IÿÿÿéóÐ&TKÿÿ ÿéñÇ&ëwÿÿÿé÷Ï&R+ÿÿÿòõÅ&TÔÿÿÿéõÐ&Tóÿÿ ÿèóÇ&%”5FÿÿÿðóÄ&TÕÿÿÿéðÇ&ò5GÿÿÿèíÒ&¾VÿÿÿèîÈ& ½ÿÿÿèãÇ&¨¼ÿÿÿéóÇ&VÖÿÿÿëôÏ&RÿÿÿéôÐ&UVÿÿÿéíÉ&«ªÿÿÿéóÊ&T¬ÿÿÿé÷Ñ&V,ÍÿÿÿçõÑ&R ÿÿÿêøÑ& RÿÿÿéñÆ&TòÿÿÿééÉ&ª,¸ÿÿÿéòÐ&D*ÿÿ ÿçöÇ&¨<ÿÿÿéðÒ&0íVÿÿÿéñÏ&0eòÿÿÿéóÅ&VŠÿÿÿçõÑ&RŽÿÿÿéõÐ&RƒÿÿÿêóÍ&ETÿÿ ÿçôÈ& 5HÿÿÿêõÐ&R,ÂÿÿÿçôÏ&ªDÿÿÿéòÏ&V YÿÿÿéóÏ&V1ÿÿ ÿéóÉ&ª5IÿÿÿéóÏ&G&'`5JÿÿÿèôÏ&ÛTÿÿÿçöÏ&R _ÿÿ ÿéïÎ&òÜÿÿÿéóÏ&V(=ÿÿÿéëÇ&I5Kÿÿ ÿéôÉ&ª5Lÿÿ ÿèòÇ&¨5MÿÿÿéìÇ&Rÿÿ ÿéçÓ&ò5NÿÿÿìöÏ&D'eÿÿÿéöÏ&R"HÿÿÿëôÏ&RZÿÿÿéóÏ&D&f,¹ÿÿÿèóÎ&R%ÖÿÿÿéñÐ& :“ÿÿ ÿèòÇ&¨ NÿÿÿîòÏ&V"ÿÿÿéöÐ&,º&ç,êÿÿÿéöÄ&G Œÿÿ ÿéòË&ä,»ÿÿÿéóÇ&V!ÿÿÿèõÈ&TxÿÿÿéòÏ&“5OÿÿÿéõÍ&/&"zÿÿÿéðÈ&V’ÿÿÿè÷Ï&!ßRÿÿÿéòÐ&V"öÿÿÿéóÏ&V"¶ÿÿÿéõÏ&R:ÿÿÿèòÌ&RŸÿÿÿéóÑ&VXÿÿÿçõÉ&YVÿÿÿéöÎ&V"YÿÿÿèóÇ& áVÿÿÿîòÏ&LDÿÿÿéóË&%äÿÿÿéõÏ&D*oÿÿÿçõÏ&"!0ÿÿ ÿèòÇ&s5PÿÿÿéóÏ&/&/ÿÿÿîóË&,¼5QÿÿÿéöÏ&G+!ÿÿÿéòÏ& ÞDÿÿ ÿéòÐ&“0øÿÿ ÿêõÏ&l5RÿÿÿèôÏ&%*VÿÿÿêöÐ&,½EÿÿÿîóÊ&G$÷ÿÿÿéôÑ&VnÿÿÿêòÏ&D/Sÿÿÿê÷Ð&°GÿÿÿéóÏ&D+ÿÿÿéôÏ&D'ãÿÿ ÿëôÌ&u5SÿÿÿéòÈ&DÿÿÿéóÉ&D)PÿÿÿéôÏ&“9ÿÿÿéôÎ&D%'ÿÿÿèôÑ&G&,5TÿÿÿéõÏ&VšÿÿÿîïÏ&G2ÿÿÿîóÓ&,¼5UÿÿÿéóÏ&G†ÿÿ ÿèïÇ&s5VÿÿÿæòË&äãÿÿÿíóÐ&D'¾ÿÿÿèôÎ&G<ÿÿÿèôÐ&G,¾ÿÿÿéóÉ&D'ÿÿÿïêÌ&Ê5WÿÿÿèñÈ& 5XÿÿÿèõÐ&G&5YÿÿÿèôÏ&G'ŠÿÿÿéðÊ&D%óÿÿÿçôÇ&R€ÿÿÿéñÏ&GFÿÿÿèõÐ&V¢ÿÿÿéóÊ&GÊÿÿÿéõÈ&G%cÿÿÿéòÉ&,¿RÿÿÿèôÒ&%‚/&ÿÿÿçôÐ&G+(ÿÿÿèñÈ&G,ÀÿÿÿèôÏ&G%öÿÿÿéöÐ&HGÿÿÿéóÒ&@-ñÿÿÿêóÌ&G*lÿÿÿçñÑ&G%øÿÿÿéóË&.G,ºÿÿÿéäÐ&ò5\ÿÿ ÿéêÇ&w5]ÿÿ ÿéóÏ&“5^ÿÿÿéïÐ&“5_ÿÿ ÿéóÇ&w×ÿÿÿèðÉ&ª& 5`ÿÿÿéàÏ&ò5aÿÿÿèàÒ&%”5bÿÿÿéóÏ&ò5cÿÿ ÿéóÈ&  ÿÿ ÿéóÇ&“5dÿÿÿéöÏ&"ÛÿÿÿéðÐ&,Á’ÿÿ ÿéôÉ&õ çÿÿ ÿéôÉ&14ÿÿ ÿçõÏ&Yÿÿ ÿéëÏ&õ´ÿÿ ÿéìÐ&30ÿÿÿ ÿèìÎ&õ|ÿÿ ÿé÷Ì&3Eÿÿ ÿéöÎ&õØÿÿ ÿèõÐ&õLÿÿÿèêÏ&I ÿÿ ÿçõÑ&3 ÿÿÿïðÑ&-(5fÿÿ ÿèêÏ& Iÿÿ ÿèêÏ&°±ÿÿ ÿèõÏ&!àÿÿ ÿéöË&3#ÍÿÿÿïðÊ&-(&Ì5hÿÿ ÿèóÏ&-Nÿÿ ÿèñÏ&(ÿÿÿèöÐ&HÄÿÿ ÿéòÏ&ÿ2ÿÿÿèöÏ&¸iÿÿ ÿéëÏ&ÿúÿÿ ÿèôÈ&ÙÿÿÿéèÏ&Ò¸ÿÿ ÿéíÏ&îÿÿ ÿéôÏ&º&ÿÿÿéõÏ&¸¹ÿÿ ÿéßÏ&˜ÿÿ ÿéóÏ&MÿÿÿéîÏ&¸*ÿÿÿéóÏ&ѸÿÿÿêîÑ&Ûÿÿ ÿè÷Ï&ºkÿÿ ÿêõÏ&ñôÿÿÿçõÏ&¸ÓÿÿÿéðÏ&¸ÂÿÿÿéóÏ&¸&ÿÿÿéðÏ&¸ÿÿÿèõÏ&¸šÿÿ ÿéõÏ&õÿÿ ÿèöÏ&º‚ÿÿÿéõÏ&¸³ÿÿ ÿéôÏ&oÿÿ ÿéóÐ&~5ÿÿ ÿéõÏ&ÿÿ ÿéòÏ&ÿÿ ÿéòÏ&º(ÿÿÿéìÏ&¸Yÿÿ ÿé÷Ï&ºÿÿ ÿéôÏ&º( ÿÿ ÿèôÏ&”+ÃÿÿÿéóÏ&¸ÿÿ ÿéòÏ&ºÿÿÿéõÏ&¸yÿÿÿéöÏ&¸ÿÿÿé÷Ï&¸ÿÿÿéóÏ&¸ÈÿÿÿêóÑ&Vôÿÿ ÿñõÏ&ÿÿ ÿéêÏ&¾ºÿÿÿèóÏ&¸+ÅÿÿÿéõÏ&+ĸÿÿÿéíÏ&¸%9ÿÿÿèïÏ&;¸ÿÿ ÿèôÏ&º(/ÿÿÿéöÏ&Þ¸ÿÿ ÿéòÐ&º±ÿÿ ÿéóÏ&º ÿÿ ÿêôÏ&+ÆLÿÿ ÿèôÆ&JÙÿÿ ÿéõÏ&)ÕòÿÿÿéõÑ&¸²ÿÿ ÿéòÏ&¬ÿÿ ÿéòÏ&ººÿÿ ÿéõÏ&ºõÿÿ ÿéðÏ&+"ºÿÿ ÿéñÏ&º&ú/Õÿÿ ÿéõÏ&/ºÿÿÿéóÏ&¸1ÿÿ ÿéñÏ&º8ÿÿÿéóÐ&&¸ÿÿ ÿéòÏ&º&yÿÿ ÿéóÏ&ºÀÿÿ ÿéóÏ&º‰ÿÿ ÿéìÐ&º*ÙÿÿÿéìÏ&¸Òÿÿ ÿéôÏ&ºÿÿ ÿéõÏ&nºÿÿ ÿéõÏ&º,ÿÿ ÿéôÏ&ºwÿÿ ÿèòÏ&º0«ÿÿÿéôÏ&¸Úÿÿ ÿéóÏ&º!sÿÿ ÿéöÏ&/ ÿÿ ÿéòÏ& 5nÿÿÿéóÏ&¸!rÿÿÿéôÏ&¸)ÖÿÿÿéñÏ&¸)×ÿÿÿéõÏ&¸‘ÿÿ ÿèöÑ&ÓºÿÿÿèôÏ&¸!ÿÿ ÿéõÏ&…ÿÿ ÿèíÏ&º£ÿÿ ÿèòÏ&º0$ÿÿÿèõÏ&¸ÿÿ ÿèõÏ&ÿÿ ÿèöÏ&ºŸÿÿ ÿçõÏ&º!vÿÿÿéöÏ&¸iÿÿ ÿéñÏ&©ÿÿ ÿéôÏ&º…ÿÿ ÿèöÏ&‰5oÿÿ ÿèñÏ&ºÀÿÿÿéëÏ&¸(Áÿÿ ÿæõÏ&º)IÿÿÿèõÏ&¸ÿÿÿåñÐ&~šÿÿ ÿéóÏ&º,$ÿÿ ÿçöÏ&+dÿÿ ÿêßÒ&°5pÿÿ ÿéõÏ&ºÿÿ ÿéóÏ&ºÿÿ ÿéóÏ&ºÿÿ ÿèóÏ&èlÿÿÿçôÏ&¸%Ìÿÿ ÿéíÏ&º.Hÿÿ ÿéóÏ&&ÿÿ ÿèôÐ&”0Œÿÿ ÿéìÏ& Îÿÿ ÿéëÐ&Wºÿÿ ÿéôÐ&øÿÿÿéõÏ&k¸ÿÿ ÿéóÏ&ºQÿÿ ÿéðÏ&º5qÿÿ ÿèóÏ&ºÿÿ ÿéóÏ&ºÂÿÿ ÿéöÏ&,éÿÿ ÿçõÏ&Yÿÿ ÿéôÏ&%Ëÿÿ ÿéðÏ&ºÃÿÿÿéóÐ&¸)vÿÿÿèóÏ&¸ÿÿÿéôÏ&¸+ÿÿ ÿéõÏ&!ÿÿ ÿèôÑ&Ù¨ÿÿ ÿéêÏ&(oÿÿ ÿéöÏ&%! ÿÿ ÿéóÏ&º&/Õÿÿ ÿéèÐ&º%žÿÿ ÿèóÐ&è5rÿÿ ÿéóÏ&º™ÿÿ ÿèôÎ&”&˜—ÿÿ ÿèôÐ&•&–”ÿÿ ÿèóÉ&è5sÿÿ ÿéñÏ& Ãÿÿ ÿèìÏ&º&ÿÿ ÿéëÏ&º»ÿÿ ÿéìÏ&!wÿÿ ÿéóÏ&ºÁÿÿ ÿçóÏ&º'£ÿÿÿéóÐ&¸Uÿÿ ÿèòÏ&º&ÿÿÿéòÏ&¸Sÿÿ ÿèôÏ&º”ÿÿ ÿèõÏ&+ºÿÿ ÿéòÏ&ÝÿÿÿññÐ&,Æ~ÿÿ ÿéöÏ&ºÁÿÿ ÿè÷Ï&ºñÿÿ ÿéîÏ& &õ5tÿÿ ÿéïÐ& &!o òÿÿÿéòÏ&0°0²ÿÿ ÿçòÐ&ºPÿÿ ÿééÏ&ºµÿÿ ÿéóÏ&º¶ÿÿÿèñÐ&~4ÿÿ ÿéóÏ&º'Ëÿÿ ÿé÷Ï&ºÿÿ ÿéïÏ& /¶ÿÿ ÿèôÏ&,%”ÿÿÿéõÏ&¡0²ÿÿ ÿéíÏ&º0òÿÿ ÿéõÏ&3ºÿÿ ÿéòÏ&º0jÿÿ ÿéíÏ&º,ÇÿÿÿîòÐ&~5uÿÿ ÿéóÏ&º'ÿÿ ÿéòÏ&ººÿÿ ÿéôÏ&‰ÿÿ ÿèñÏ&º,&ÿÿ ÿéôÏ&º5vÿÿ ÿéïÐ&h&[5wÿÿ ÿèôÏ& Øÿÿ ÿæñÏ&5xÿÿÿèòÑ&.Ï5yÿÿÿèòÏ&0²0´ÿÿ ÿèôÏ&º)€ÿÿ ÿèõÏ&»ÿÿ ÿèðÏ&º5zÿÿ ÿéóÏ&'¦ÿÿ ÿéóÏ&º)ÿÿ ÿéòÏ&º(Êÿÿ ÿéõÏ&º ÿÿ ÿéòÏ&º5{ÿÿÿéóÏ&&0²5|ÿÿ ÿéíÑ&ºŸÿÿ ÿéöÑ&“ÿÿ ÿèóÏ&è&ÿÿ ÿéóÏ&Öÿÿ ÿèîÏ&ºÿÿ ÿèöÏ& Öÿÿ ÿéõÏ&Šºÿÿ ÿéóÏ&xºÿÿ ÿèôÈ&Ùçÿÿ ÿéóÐ&ãºÿÿ ÿèôÐ&>&=èÿÿ ÿèõÏ&º©ÿÿ ÿéóÏ&ºÿÿ ÿèôÏ&” ÿÿ ÿéìÏ&,Èhÿÿ ÿéòÏ& ÿÿÿéïÏ&,0²ÿÿ ÿéöÏ& –ÿÿ ÿéôÏ&Qÿÿ ÿéòÏ&ºÅÿÿÿéòÏ&¸0ÿÿ ÿéòÏ&{ºÿÿ ÿèïÏ&1ºÿÿ ÿéóÏ& ÿÿ ÿéòÏ&ºXÿÿ ÿèõÏ&5}ÿÿ ÿèïÏ&h&¦ ÿÿ ÿéóÏ&º¹ÿÿ ÿéôÐ&7ºÿÿ ÿéöÏ&$ÿÿÿéðÏ&¸ÿÿ ÿéõÏ& ºÿÿ ÿéõÐ&ºÿÿ ÿèôÏ&”ðÿÿ ÿèôÏ&Ø”ÿÿÿéóÏ&Ø&Ù0²ÿÿ ÿéóÏ&ºÿÿ ÿé÷Ï& Bÿÿ ÿé÷Ï&+ÿÿ ÿéõÑ&Žÿÿ ÿéóÏ&ÿÿ ÿèóÏ&Zèÿÿ ÿèóÏ&º0½ÿÿ ÿéõÐ&úòÿÿ ÿè÷Ï&)ÿÿ ÿèóÏ&è5ÿÿ ÿéõÐ&óÿÿ ÿéóÏ&ºÕÿÿÿèñÏ&Ä&&e0²ÿÿ ÿéîÏ& .ÿÿ ÿèôË&Ø5€ÿÿ ÿèôÍ&×Ùÿÿ ÿéõÏ&ºÿÿÿ ÿéòÏ&0ÕÿÿÿéìÏ&¸Òÿÿ ÿèòÐ&Öÿÿ ÿéóÏ& -ÿÿ ÿéóÏ&hÙÿÿ ÿéôÒ&ÿÿ ÿéñÏ&àÿÿ ÿèõÏ&¼ÿÿ ÿåðÏ&º£ÿÿ ÿéíÏ&ºéÿÿ ÿéôÏ&º,”ÿÿ ÿèöÏ& áÿÿ ÿéôÐ& Uÿÿ ÿèóÏ&Vÿÿ ÿèóÏ&è5ÿÿ ÿéóÑ&ºÔÿÿ ÿéöÏ&&`_ÿÿ ÿè÷Ï&º'Óÿÿ ÿéóÏ&,ɺÿÿ ÿéòÏ& 0@ÿÿÿéòÏ&¸©ÿÿ ÿéóÏ&º,Êÿÿ ÿéóÐ&º³ÿÿ ÿèñÏ&Žÿÿ ÿèíÏ& '©ÿÿ ÿéíÏ&?ÿÿ ÿéòÐ&*ÿÿÿèõÐ&¸Lÿÿ ÿéôÏ& %$ÿÿÿéòÐ&ç5‚ÿÿÿîòÐ&ç5ƒÿÿ ÿéòÏ&*Çÿÿ ÿéôÏ&º/ÿÿ ÿéùÏ&0ºÿÿ ÿèôÐ&•&(”ÿÿ ÿéóÏ&(5ÿÿ ÿéôÏ& %=ÿÿ ÿéõÐ& „ÿÿÿçñÏ&&e&0²5„ÿÿ ÿæðÏ&ºÎÿÿ ÿèôÏ&,Ì& 5…ÿÿ ÿèóÏ&è0fÿÿÿééÏ&¸ÿÿ ÿéöÐ&(lÿÿ ÿéñÏ&º&­¬ÿÿ ÿéóÏ&ºEÿÿ ÿéóÏ&ÿÿ ÿèöÏ& &K%Ãÿÿ ÿé÷Ñ&,Íÿÿ ÿéóÏ&*ºÿÿ ÿéóÏ& îÿÿ ÿèôÏ&ºéÿÿ ÿæ÷Ï&(¿ÿÿÿèñÏ&&&e5†ÿÿ ÿçõÏ& Øÿÿ ÿêõÐ&[&K5‡ÿÿÿéòÒ&ÊËÿÿ ÿèêÏ&ºÌÿÿ ÿéõÏ&º’ÿÿ ÿéêÐ&ºcÿÿ ÿèõÏ& /?ÿÿÿè÷Ï&0²5ˆÿÿ ÿèõÏ&b&c5‰ÿÿ ÿéóÏ& Šÿÿ ÿèôÏ&³&”5Šÿÿ ÿéóÏ&ºëÿÿÿéôÏ&¸õÿÿ ÿéöÏ&”ÿÿ ÿéóÏ&'ºÿÿ ÿçõÑ& ÿÿ ÿèñÏ&%Ϻÿÿ ÿèóÐ&ºŒÿÿ ÿéôÐ& .Kÿÿ ÿéîÏ&ßÿÿÿéôÐ&0²ÿÿ ÿèôÐ&º>ÿÿÿéõÏ&0²ÿÿ ÿéõÏ&b&c5‹ÿÿ ÿèóÏ&ºÓÿÿ ÿéóÏ&º%Òÿÿ ÿéõÏ&b&caÿÿ ÿéóÏ&+ÿÿ ÿéõÏ&)zºÿÿ ÿçöÏ&º5Œÿÿ ÿèôÏ& /0ÿÿ ÿéóÏ&  ÿÿ ÿéöÏ&5Žÿÿ ÿéóÏ&º(=ÿÿ ÿèïÏ&ºwÿÿ ÿèöÏ&»ºÿÿ ÿéóÏ&º+Nÿÿ ÿéôÏ&º(mÿÿ ÿéóÏ&.Mÿÿ ÿéòÏ&ºÿÿ ÿèôÐ&”ÿÿ ÿéóÐ&º Oÿÿ ÿé÷Ï& (;ÿÿ ÿéòÐ&%Ðÿÿ ÿéôÐ&'Úºÿÿ ÿéõÑ& ýÿÿ ÿèõÏ&2ÿÿÿéõÐ&,Î,Ïÿÿ ÿéíÏ& Éÿÿ ÿè÷Ð& 5‘ÿÿ ÿéîÏ& èÿÿ ÿéîÏ&ìÿÿ ÿèõÒ& ÿÿ ÿèôÏ&ÖØÿÿ ÿéïÏ&%­ÿÿ ÿé÷Ï&Kÿÿ ÿéóÏ&%Óÿÿ ÿéóÑ& !ÿÿ ÿçõÓ&)@ÿÿ ÿèôÐ&#f&è5’ÿÿÿçìÏ&/10²ÿÿ ÿèôÏ&ºÛÿÿ ÿèöÏ& <ÿÿ ÿéõÐ&º%ªÿÿ ÿéöÐ&~&€ÿÿ ÿéõÑ&º ÿÿÿéòÏ&£0²ÿÿ ÿèôÏ&'Ø ÿÿ ÿäôÏ&àÿÿ ÿéöÏ& ׺ÿÿÿèôÏ&0²5“ÿÿ ÿéõÏ& /ÿÿ ÿéóÏ&'îÿÿ ÿéõÏ& .3ÿÿ ÿèóË&è5”ÿÿ ÿéòÏ&º Yÿÿ ÿèðÐ& iÿÿ ÿèôÏ&k&Ø5•ÿÿ ÿçõÏ&b&c+Ìÿÿ ÿèõÏ&.N5–ÿÿ ÿéöÏ&"Hÿÿ ÿéóÑ&"fÿÿ ÿéóÏ&,Ðÿÿ ÿéóÏ&º&Çÿÿ ÿéëÏ&¾ºÿÿÿçðÏ&¸ÿÿ ÿéîÏ&ºþÿÿ ÿèòÏ&.ÿÿ ÿéôÏ&ºYÿÿ ÿéóÐ&ɺÿÿ ÿéòÏ& rÿÿ ÿéôÐ& Ÿÿÿ ÿéòÏ&#jÿÿ ÿéñÏ&¼ºÿÿ ÿéôÏ&'¯ºÿÿÿéöÏ&.Uÿÿ ÿéøÏ&ü ÿÿ ÿéðÐ&º# ÿÿ ÿèõÏ&,Ñ&h5—ÿÿ ÿéôÑ&9 ÿÿ ÿéîÏ&º±ÿÿ ÿéîÏ& ïÿÿ ÿéöÏ& '­ÿÿ ÿéôÐ&  (ÿÿ ÿèöÏ&%«ÿÿ ÿèôÐ&Ø 4ÿÿÿéëÏ&0²&à(ÿÿ ÿéíÏ& Ñÿÿ ÿçõÏ&¨ÿÿ ÿéêÏ&º5˜ÿÿ ÿéìÐ&h&¿5™ÿÿ ÿéùÏ& .Pÿÿ ÿèõÒ&.Oÿÿ ÿéóÐ&  ÿÿ ÿéñÏ& ,£ÿÿÿéòÏ&~&}0²ÿÿ ÿèóÏ&ˆºÿÿÿèñÏ&&e&0²5šÿÿ ÿéóÐ& "÷ÿÿ ÿèóÏ&#;ÿÿÿèöÏ&#&˜0²ÿÿÿéöÏ& Œ0²ÿÿ ÿéöÏ& #ÎÿÿÿéöÐ&ß0²ÿÿ ÿéöÐ&h&ç,êÿÿ ÿéóÏ& ÙÿÿÿéñÏ&#É0²ÿÿÿéòÏ&/&5›ÿÿ ÿéõÏ& "îÿÿ ÿéöÏ& "Yÿÿ ÿéòÏ&.Xÿÿ ÿéôÐ& "¤ÿÿ ÿéôÏ&"hÿÿ ÿèïÐ&º0¹ÿÿ ÿéíÏ&5ºÿÿ ÿéñÏ&º$[ÿÿ ÿéñÏ&'ܺÿÿ ÿçõÏ&YÿÿÿèïÏ& ±& 0²ÿÿ ÿèòÏ& !æÿÿ ÿéóÏ&!ÿÿ ÿéõÐ&/ ÿÿÿéõÏ&"z0²ÿÿ ÿéöÏ&",ÿÿ ÿéõÏ&: ÿÿÿéôÏ&#ž0²ÿÿ ÿéñÏ&º)‚ÿÿÿéîÏ&/¸0²ÿÿ ÿéôÏ&0{hÿÿ ÿèóÏ&è&Ú5œÿÿÿèõÏ&,Ñ&0²5ÿÿ ÿéõÏ&c&b5žÿÿ ÿéóÏ&.Yºÿÿ ÿéîÏ&h&KJÿÿ ÿéõÏ& :ÿÿ ÿèôÏ&5Ÿÿÿ ÿéðÑ& /ƒÿÿ ÿéóÏ& "µÿÿÿéõÑ&ä0²ÿÿÿéôÐ&&0²ÿÿ ÿéëÏ& þÿÿ ÿèòÏ& Ÿÿÿ ÿéòÏ&"žÿÿ ÿèóÐ& gºÿÿ ÿèôÏ&q&"å ÿÿ ÿèõÏ&º°ÿÿ ÿäöÏ&ºýÿÿ ÿéðÏ&’ÿÿÿéóÏ&#­+ÿÿ ÿèòÏ&)hÿÿ ÿèõÐ&º,Òÿÿ ÿéöÏ& 01ÿÿ ÿé÷Ï&"cÿÿ ÿéïÑ&!Áÿÿ ÿéñÏ& ÿÿ ÿèóÒ& /Òÿÿ ÿéòÐ&º<ÿÿÿèöÏ&á&%Ã0²ÿÿÿéóÏ&30²ÿÿ ÿéõÏ&#Iÿÿ ÿéõÑ&º"±ÿÿ ÿèôÏ& #´ÿÿ ÿèóÐ&è5 ÿÿ ÿéôÐ&#XºÿÿÿéñÏ&#­%×ÿÿ ÿéóÐ&Hÿÿ ÿéõÏ&hœÿÿÿèïÏ&+#5¡ÿÿÿéóÐ&0–0²ÿÿ ÿéöÏ& ÿÿ ÿéòÏ&º!¿ÿÿ ÿéíÐ& &Õ5¢ÿÿÿéõÏ&!”0²ÿÿ ÿéïÏ&h&,'5£ÿÿ ÿèìÏ&º5¤ÿÿ ÿéóÏ& -éÿÿ ÿéóÏ&º$Íÿÿ ÿéõÏ&$uÿÿ ÿéóÐ&/†ÿÿÿèñÑ&0—0²ÿÿ ÿéöÏ& Nÿÿ ÿèôÎ&ÿ5¥ÿÿ ÿéðÏ&#w ÿÿ ÿèôÑ&Ø5¦ÿÿ ÿéõÏ&#CÿÿÿéòÏ&,Ó0²ÿÿ ÿèõÏ& $nÿÿ ÿéðÑ&$•ÿÿ ÿè÷Ï& Ëÿÿ ÿèóÏ& áºÿÿ ÿéôÏ& 'ßÿÿÿéòÏ&'m0²ÿÿ ÿéôÏ& .Dÿÿ ÿéöÏ&º$Oÿÿ ÿèøÏ&¦5§ÿÿ ÿéòÏ&/4ÿÿ ÿéîÏ& $‘ÿÿ ÿèôÐ& $ñÿÿ ÿéñÏ&ÿÿÿéóÐ&/60²ÿÿ ÿéóÏ&$Ⱥÿÿ ÿéóÐ& &/â5¨ÿÿ ÿèôÏ&”& ÿÿÿéóÐ&L&M0²ÿÿ ÿéóÏ&$Cºÿÿ ÿé÷Ñ&0± ÿÿ ÿéõÏ&ºÿÿÿæôÑ&0²5©ÿÿ ÿéñÏ& %ÿÿ ÿéöÐ&Vÿÿ ÿèôÐ&$ÿÿ ÿéðÏ&º$­ÿÿ ÿéóÏ&$›ÿÿ ÿéîÏ&$Tÿÿ ÿéõÏ&)iºÿÿ ÿèôÐ&ºÿÿ ÿéóÏ&Mºÿÿ ÿéòÏ&L ÿÿ ÿéòÐ& % ÿÿÿéöÏ&5ªÿÿ ÿèóÑ&¸&ºèÿÿ ÿèóÏ&$“ÿÿÿéóÏ&#¬#­ÿÿ ÿéóÑ& '¶ÿÿÿéóÏ&$„0²ÿÿ ÿèôÑ&¿&ÀØÿÿ ÿèôÐ& ,Åÿÿ ÿéôÐ& 0oÿÿÿèõÐ& 0²ÿÿ ÿéïÏ&+$ ÿÿ ÿèõÐ&ÿÿ ÿéôÑ&Œÿÿ ÿéôÏ&1ÿÿ ÿçöÐ& 5«ÿÿ ÿéõÐ&5¬ÿÿ ÿèôÏ&(‚ºÿÿ ÿéóÐ&$0ÿÿ ÿéñÐ&º#Âÿÿ ÿéøÑ& $õÿÿ ÿèòÐ&/Mÿÿ ÿéóÏ& &.-ÿÿ ÿéîÏ&%ÛÿÿÿéõÏ&Þ&0²5­ÿÿ ÿéòÏ& /Sÿÿ ÿèñÓ&(ƒÿÿ ÿèôÏ&Ø5®ÿÿÿèñÑ&&e&%ç0²ÿÿÿéóÏ&5¯ÿÿ ÿéóÏ& +ÿÿÿçõÏ&Ï&Ðÿÿ ÿéõÒ&h~ÿÿ ÿçõÑ&xÿÿ ÿéöÏ&4&º5°ÿÿ ÿèôÏ&h&’>ÿÿ ÿèôÐ&ØjÿÿÿéõÐ&/U0²ÿÿ ÿéîÏ&qhÿÿ ÿèöÏ&Ø5±ÿÿÿéøÏ&5²ÿÿ ÿèòÑ& 5³ÿÿÿèøÏ&,c&0²5´ÿÿ ÿèöÏ&Ø5µÿÿ ÿéóÏ&¡ ÿÿ ÿéôÏ& &žÿÿ ÿéòÏ& $þÿÿ ÿéîÑ&º¹ÿÿ ÿé÷Ð& /Yÿÿ ÿèôÑ&Ø5¶ÿÿÿéöÏ&&  ÿÿ ÿéöÐ&Ehÿÿ ÿéðÐ&º*¸ÿÿÿèõÐ&0³5·ÿÿÿèöÑ&,y0²ÿÿÿèôÐ&'¸0²ÿÿ ÿéôÏ& 5¸ÿÿÿéõÏ&Þ&0²5¹ÿÿ ÿèôÏ&,Õÿÿ ÿèõÐ& 'xÿÿ ÿéôÏ&º'àÿÿÿé÷Ï&,&0²5ºÿÿÿéõÑ&#}0²ÿÿ ÿçôÐ& 1ÿÿ ÿéõÑ& #€ÿÿ ÿçöÐ& &##‚ÿÿ ÿèöÑ&ã5»ÿÿ ÿéóÏ& #ÿÿ ÿéóÏ& ¦ÿÿ ÿéóÏ&º†ÿÿ ÿé÷Ï&ºÿÿ ÿèôÐ&/Z ÿÿ ÿéôÏ&#~ ÿÿ ÿéôÑ& nÿÿ ÿéòÏ& Þÿÿ ÿéöÏ&Nºÿÿ ÿéîÏ&ºÿÿ ÿç÷Ð&$Ýÿÿ ÿéõÏ&5¼ÿÿÿéôÐ&0²5½ÿÿ ÿéôÐ&h&(5¾ÿÿ ÿèôÏ&.ZÿÿÿéóÐ&ë0²ÿÿ ÿçòÏ& %âÿÿÿéõÏ&%Ú0²ÿÿ ÿèúÏ&&¼5¿ÿÿÿéñÐ&'¼0²ÿÿ ÿéïÏ&º4ÿÿÿæïÏ&,(0²ÿÿ ÿéôÏ& /[ÿÿ ÿéöÏ&F ÿÿ ÿéõÏ& %èÿÿÿéõÏ&,×0²ÿÿ ÿéóÐ& &¤ÿÿÿéóÐ&P&/â0²ÿÿÿéóÏ&†0²ÿÿ ÿçôÏ&hÄÿÿÿéôÏ&0²5Àÿÿ ÿéóÒ& %æÿÿÿé÷Ð&&%5Áÿÿ ÿéòÏ&ºÿÿ ÿéõÐ&h5Âÿÿ ÿéóÏ& 5Ãÿÿ ÿèõÐ&h&5ÄÿÿÿçöÏ&/^0²ÿÿÿèôÏ&<0²ÿÿ ÿéôÏ& %'ÿÿÿèõÏ&'}0²ÿÿÿéîÏ&0b&0²5Æÿÿ ÿéòÏ&ºüÿÿ ÿéóÐ&'âºÿÿ ÿéõÏ&á&àßÿÿ ÿéôÏ&'ãÿÿÿèñÏ&70²ÿÿ ÿèðÏ& .\ÿÿÿèõÑ&&%ç0²ÿÿ ÿéïÏ&.[ÿÿ ÿéôÐ& ,Øÿÿ ÿçìÏ& %êÿÿÿéöÏ&%0²ÿÿÿéòÏ&%à0²ÿÿ ÿèõÏ& Ôÿÿ ÿéóÏ&'ÿÿ ÿéóÐ&º ÿÿÿéõÑ&¼0²ÿÿÿéòÒ&0²5Çÿÿ ÿéôÐ& ÿÿÿéõÑ&&,Ù ÿÿÿèöÐ&Ø5Èÿÿ ÿèõÐ&&B5Éÿÿ ÿéóÏ&´ºÿÿ ÿéíÑ& '‚ÿÿ ÿèöÐ&'ÿÿ ÿéóÏ& 5Êÿÿ ÿèõÐ& ,Úÿÿ ÿå÷Ï& 5Ëÿÿ ÿéóÐ&/_ ÿÿÿèïÏ&(I0²ÿÿÿéòÏ&/a0²ÿÿ ÿéõÏ&šÿÿ ÿéöÏ&h&!.]ÿÿ ÿé÷Ð&W&h5ÌÿÿÿèîÏ&0²5ÍÿÿÿèôÐ&,)0²ÿÿÿé÷Ï&"ð&"ï0²ÿÿ ÿéøÏ&¡ÿÿ ÿéðÏ&(„ ÿÿ ÿéõÓ& Sÿÿ ÿé÷Ð& 'Åÿÿ ÿèõÐ&z&&B5Îÿÿ ÿèõÑ&h&5Ïÿÿ ÿéôÏ& (…ÿÿÿéðÏ&,Û0²ÿÿ ÿéóÏ& 5Ðÿÿ ÿéòÏ& .^ÿÿ ÿé÷Ñ&.£ÿÿÿéõÏ&._0²ÿÿÿéòÐ&0¦0²ÿÿ ÿéðÏ& 0µÿÿÿçúÏ&#ß5Ñÿÿ ÿéôÏ&h&)(ÿÿÿéðÏ&'0²ÿÿ ÿèôÍ&Ø&&5ÒÿÿÿéõÏ&Þ&!¦0²ÿÿ ÿèóÑ&è.ÿÿÿéõÏ&.0²ÿÿÿéõÏ&&Þ5ÓÿÿÿéõÔ&'‹0²ÿÿ ÿéóÏ&(‡hÿÿ ÿçóÏ&(†ºÿÿ ÿèôÒ&Ø5Ôÿÿ ÿéôÏ&Øÿÿ ÿéöÑ&&Ä ÿÿ ÿéõÏ&'ç ÿÿÿéõÐ&!œ&Þ0²ÿÿÿèôÐ&%ñ0²ÿÿ ÿèïÏ& &h5Õÿÿ ÿéõÑ&5Öÿÿ ÿèôÐ&(ˆÿÿ ÿé÷Ð& &ì5×ÿÿ ÿéõÏ& .`ÿÿÿéñÏ&F0²ÿÿÿé÷Ð&&EFÿÿÿéóÏ&%õ0²ÿÿ ÿéóÏ&(‰hÿÿ ÿçñÏ& ,+ÿÿ ÿéôÏ&'ÿÿÿéöÑ&0²5Øÿÿ ÿé÷Ï& üÿÿÿéôÒ&Q0²ÿÿÿèôÑ&5Ùÿÿ ÿéðÑ&h,*ÿÿÿéôÐ&P0²ÿÿ ÿéñÏ&0"ÿÿ ÿçôÐ&5ÚÿÿÿéóÏ&Ê0²ÿÿÿéòÏ&0²5ÛÿÿÿçøÒ&Õ0²ÿÿ ÿéóÏ&—&“hÿÿÿéöÐ&&ÿÿ ÿçóÑ& 5Üÿÿ ÿçõÏ&þÿÿ ÿèòÏ&%[ÿÿÿéõÏ&Þ&0²5ÝÿÿÿêñË&(%kÿÿ ÿéóÏ&h%hÿÿÿéöÒ&)ø0²ÿÿ ÿéóÏ&5ÞÿÿÿéîÏ&0b&0²5ßÿÿ ÿéöÏ& 5àÿÿ ÿéôÐ&ã&â5áÿÿ ÿçôÏ&  ÿÿÿéøÐ&–&"ñÿÿÿèóÐ&@ÿÿ ÿéõÐ& 5âÿÿ ÿèñÏ& 5ãÿÿÿçóÏ&&%…÷ÿÿÿéóÐ&0²5äÿÿÿéôÏ&0²5åÿÿ ÿéôÏ&h&25æÿÿÿéøÑ&û0²ÿÿ ÿè÷Ï&hRÿÿ ÿèôÑ&Ø5çÿÿ ÿéûÏ&h&,Ý5èÿÿ ÿéóÏ& ,ÜÿÿÿéøÐ&.b&5éÿÿ ÿèòÐ&.a ÿÿ ÿêôÐ&(5êÿÿÿéöÐ&H0²ÿÿÿèòÐ&)00²ÿÿÿé÷Ï&0²5ëÿÿ ÿèôÏ& 5ìÿÿ ÿéñÏ&h5íÿÿ ÿèòÏ&h,}ÿÿ ÿéõÏ&h+,ÿÿ ÿéñÑ& %÷ÿÿ ÿéóÏ& 5îÿÿ ÿèòÑ& 7ÿÿ ÿéíÏ&£hÿÿÿéùÐ&5ïÿÿÿéîÏ&0²5ðÿÿ ÿçòÏ&h5ñÿÿ ÿéóÏ& Oÿÿ ÿéòÏ& (ŠÿÿÿéöÏ&5òÿÿ ÿéóÏ&h.cÿÿ ÿéóÏ& *lÿÿÿçõÐ&‡0²ÿÿÿêóÒ&(-ñÿÿÿçñÑ&%ø0²ÿÿ ÿæóÐ&h.=ÿÿÿéóÐ&-ÿÿÿéðÏ&0²0åÿÿÿçôÏ&5óÿÿÿéôÑ&0²5ôÿÿÿéòÏ&0²5öÿÿÿéûÐ&&,Ý5÷ÿÿÿéõÑ&±°ÿÿ ÿéõÑ&²ÿÿ ÿéöÏ&´³ÿÿ ÿéöÏ&³µÿÿÿéõÑ&T²ÿÿÿéõÏ&·ƒÿÿ ÿéõÏ&¸áÿÿ ÿéõÐ&¹ƒÿÿÿéõÏ&báÿÿ ÿéõÏ&eƒÿÿ ÿéõÑ&äáÿÿ ÿéõÏ&áxÿÿÿéöÐ&%5øÿÿÿéõÏ&ƒ ÿÿÿéõÏ& ¯áÿÿ ÿéõÑ&,Þáÿÿ ÿéõÐ&(‹áÿÿÿéõÏ&(Vàÿÿ ÿèõÏ&±ƒÿÿÿçõÏ&áâÿÿ ÿèõÏ&à Ûÿÿ ÿéõÑ&¶ÿÿ ÿéõÏ&áºÿÿÿéõÏ&èƒÿÿ ÿéõÏ&á]ÿÿ ÿéõÏ&à‰ÿÿÿéõÏ&á!øÿÿ ÿéõÏ&à –ÿÿÿéöÑ&³!Åÿÿ ÿèõÏ&á(Œÿÿ ÿéöÏ&%#ŠÿÿÿéõÐ&,íàÿÿÿèõÏ&á% ÿÿ ÿèöÏ&$â%ÿÿ ÿéõÏ&$áÿÿÿçõÏ&à#ÿÿ ÿéõÏ&€áÿÿÿéõÏ&™áÿÿ ÿçöÑ&%,ßÿÿÿéôÐ&&Æ'=ÿÿÿéöÏ&%dÿÿ ÿèõÐ&à%‰ÿÿ ÿéõÏ&à(ÿÿ ÿéõÏ&á5ùÿÿÿéõÑ&à0ãÿÿ ÿéöÏ&%(Žÿÿ ÿéõÏ&á Íÿÿ ÿéöÏ&%,àÿÿ ÿèöÏ&%5úÿÿÿéöÏ&S%ÿÿ ÿèõÏ&(ÿÿ ÿéóÐ&*5ÿÿÿ ÿïóÄ&}|ÿÿ ÿéóÐ&(NÿÿÿéòÏ&,á6ÿÿ ÿçõÏ&,â6ÿÿ ÿêõÏ&,â6ÿÿ ÿèóÇ&s6ÿÿÿèôÌ& w0ÿÿ ÿèôÊ&A6ÿÿÿéôÏ&E6ÿÿ ÿåóÊ& ‘ÿÿ ÿåðÏ&g‘ÿÿ ÿåóÐ&‘(°ÿÿ ÿåõË&‘`ÿÿÿçõÇ&UVÿÿ ÿåõÆ&‘ÿÿÿêöÏ&%!1ÿÿÿéöÐ&³1ÿÿ ÿåòÐ&‘0öÿÿ ÿåòÏ&&‘ÿÿ ÿåôÏ&‘ÁÿÿÿêíÑ&Ÿ1ÿÿ ÿåöÏ&‘—ÿÿ ÿåõÏ&‘»ÿÿÿêòÄ&©1ÿÿ ÿåóÐ&‘³ÿÿÿèôÏ& Ù1ÿÿ ÿåòÏ&‘-±ÿÿ ÿåõÏ&(‘ÿÿ ÿåöÈ&‘ÿÿ ÿåðÏ&‘+Uÿÿ ÿå÷Ï&‘Lÿÿ ÿåõÐ&‘#¡ÿÿ ÿåòÎ&‘(‘ÿÿÿêöÏ&'ñ1ÿÿÿçõÓ&)@1ÿÿ ÿåôÏ&'ï‘ÿÿ ÿåôÎ&‘ÔÿÿÿêòÃ&(’1ÿÿ ÿåõÈ&‘$ÿÿ ÿåôÅ&‘Éÿÿ ÿåóÏ&$‘ÿÿÿèòÐ&/M1ÿÿÿéóÏ&01ÿÿÿêóÏ&#_1ÿÿÿéóÑ&(“1ÿÿÿêïÏ&.„1ÿÿ ÿåóÐ&‘ÿÿÿè÷Ï&?&61ÿÿÿêïÏ&41ÿÿÿéòÈ&1ÿÿÿêôÈ& 1ÿÿÿé÷Ñ&&Å1ÿÿÿçóÑ&¡1ÿÿ ÿåõÐ&‘# ÿÿÿéöÏ&(”1ÿÿÿêõÏ&+,1ÿÿÿèõÇ&·Tÿÿ ÿèõÏ&# Tÿÿ ÿèõÍ&(•Uÿÿ ÿèõÏ&T6 ÿÿ ÿèõÐ&T6 ÿÿ ÿèôÏ&(–ÿÿÿ ÿèõÏ&wTÿÿ ÿèôÎ&/gÿÿÿ ÿèöÇ&˜6 ÿÿ ÿèõÏ&(—TÿÿÿèõÏ&(˜TÿÿÿèôÐ&ÿ6 ÿÿÿèöÏ&% ˜ÿÿÿèôÏ&ÿ6 ÿÿ ÿèõÐ&—TÿÿÿèöÇ&™˜ÿÿ ÿèõÐ&T6ÿÿ ÿè÷Ï&&&ÿÿ ÿíôÌ&/h6ÿÿ ÿèóÏ&+ 6ÿÿ ÿéóÏ&ÓÔÿÿ ÿçöÐ&‡(™ÿÿÿéðÐ&ÿÿÿé÷Î&21ÿÿÿì÷Í&pÿÿ&ÿëïÆ&3ÿÿÿçñÐ&45ÿÿÿê÷Ï&67ÿÿ ÿìòÑ&ÍÐÿÿÿìòÐ&ÐÎÿÿ ÿíôÐ&6ÿÿ ÿíôÐ&Ìÿÿÿê÷Ê&F6ÿÿ ÿéùÎ&ïðÿÿ ÿíõÐ&÷Yÿÿ ÿíôÐ&äYÿÿ ÿíôÐ&×YÿÿÿìîÓ&,ã6ÿÿ ÿíôÐ&Y6ÿÿ ÿíôÔ&YZÿÿ ÿíôÐ&Y6ÿÿ ÿèõÏ& Úÿÿ ÿèóÎ&(š6ÿÿ ÿèõÐ& - ,ÿÿÿéõÏ& ‡ÿÿ ÿíõÐ&Y6ÿÿ ÿéõÏ&#ŠÿÿÿéõÏ&"ŒÿÿÿëõÏ&$· -ÿÿÿì÷Ñ&(›6ÿÿ ÿéõÏ&$Uÿÿ ÿçõÑ&,äÿÿ ÿçõÏ&(Äÿÿÿì÷Ñ&(›6ÿÿ ÿéóÐ&&þÿÿ ÿéõÐ&,å -ÿÿ ÿéõÏ&(œÿÿÿêóÐ&[( ÿÿ ÿíôÐ&Y6ÿÿ ÿíôÓ&Y6ÿÿ ÿìõÑ&€ -ÿÿ ÿèõÏ&(ÿÿÿéõÏ&(žÿÿ ÿíôÓ&Y6ÿÿ ÿéõÏ&(Ÿÿÿ ÿéóË&(¡'ìÿÿÿçöÐ&Ø6"ÿÿÿæõÒ&[ÖÿÿÿçöÐ&ØXÿÿÿçöÐ&Ø6#ÿÿÿçöÐ&Ø6$ÿÿÿèõÒ&[ÕÿÿÿéõÒ&[6%ÿÿÿéõÒ&y[ÿÿÿèõÑ&\9ÿÿÿéõÒ&[6&ÿÿÿèõÑ&\6'ÿÿÿéõÒ&[6(ÿÿÿèõÒ&[[ÿÿÿéõÒ&[6)ÿÿÿèõÑ&\6*ÿÿÿæõÒ&[žÿÿÿéõÒ&[ºÿÿÿçõÑ&\6+ÿÿÿéõÒ&[6,ÿÿÿèõÑ&\6-ÿÿÿèõÑ&ª\ÿÿÿéõÒ&#n[ÿÿÿäõÒ&[äÿÿÿèõÑ&\6.ÿÿÿçóÐ&(¢6/ÿÿ ÿèõÑ&\Íÿÿ ÿèõÑ&\$Fÿÿ ÿèëÏ&Ú ÿÿ ÿéôÐ&žáÿÿ ÿéùÎ&  ÿÿ ÿéøÏ& ²áÿÿ ÿêóÍ&ÖÐÿÿ ÿçóÏ& Vÿÿ ÿèöÎ& ïÿÿ ÿéôÐ&+Ûžÿÿ ÿêîÍ&Öõÿÿ ÿéóÍ& ²%Œÿÿ ÿèõÍ& ²&(£65ÿÿ ÿéèÏ& (ÿÿ ÿèçÐ& (¤ÿÿ ÿèøÏ& (ÿÿ ÿèôÍ&Öƒÿÿ ÿèõÏ& (¥ÿÿ ÿèíÏ& (¦ÿÿ ÿéòÐ& ²(§ÿÿ ÿéõÑ&% ÿÿ ÿéêÏ& ²ãÿÿ ÿéóÎ& ¨ÿÿ ÿéðÎ& ¬ÿÿ ÿéòÎ& /jÿÿ ÿêöÍ&Ö66ÿÿ ÿéõÎ& («ÿÿ ÿèóÍ& ²(ªÿÿ ÿêôÍ&ÖÉÿÿ ÿéôÏ& ²(©ÿÿ ÿéðÍ& ²(¨ÿÿ ÿéöÏ& ²pÿÿ ÿéíÍ& ²%2ÿÿ ÿèõÏ& ²µÿÿ ÿèôÎ& ÿÿ ÿéôÎ& +Üÿÿ ÿéèÍ& ²(¬ÿÿ ÿéíÍ& ²67ÿÿ ÿéôÎ& wÿÿ ÿéòÏ&D ÿÿ ÿéìÏ& ²(­ÿÿ ÿèôÏ& ²(®ÿÿ ÿéõÏ& ²–ÿÿ ÿéöÏ& Cÿÿ ÿèóÎ& …ÿÿ ÿéóÎ& Áÿÿ ÿéìÐ& ÿÿ ÿéõÎ& ÿÿ ÿéòÏ&$—Öÿÿ ÿéêÍ& ²)ÿÿ ÿéöÏ& ²&ôÿÿ ÿéóÎ&® ÿÿ ÿéõÐ& ²(¯ÿÿ ÿéôÏ& ²Üÿÿ ÿèïÐ&*,çÿÿ ÿéøÐ& ²%ºÿÿ ÿéóÍ& ²aÿÿ ÿéòÍ& ²(&ÿÿ ÿçõÎ& `ÿÿ ÿéòÍ& ê ²ÿÿ ÿéòÏ&b ²ÿÿ ÿèõÏ& Ìÿÿ ÿéôÏ& ²Áÿÿ ÿéñÍ& ²-âÿÿ ÿéòÏ& mÿÿ ÿêòÏ&×Öÿÿ ÿêõÍ&Ö&óÿÿ ÿéñÏ&Ö&qúÿÿ ÿéìÏ& ²&Ç69ÿÿ ÿé÷Ï&Ö%¾ÿÿ ÿèóÐ& (±ÿÿÿéõÏ&(áòÿÿ ÿêðÍ&Ö(²ÿÿ ÿéðÏ& {ÿÿ ÿéëÏ&Öºÿÿ ÿéõÎ& 8ÿÿ ÿèõÏ& (³ÿÿ ÿéóÎ& (´ÿÿ ÿçòÏ&Ö^ÿÿ ÿèñÏ&(µ ÿÿ ÿèõÐ&(¶,æÿÿ ÿéëÐ& Óÿÿ ÿèôÎ& (·ÿÿ ÿèöÎ& &ÿÿ ÿéðÏ&Ö(¹ÿÿ ÿêñÍ&Ö(ºÿÿ ÿèñÍ&/n ²ÿÿ ÿéõÏ& ²Eÿÿ ÿéóÏ& ²&ÿÿ ÿéëÏ& ²(âÿÿ ÿéêÏ& (»ÿÿ ÿéôÏ&Ö(ãÿÿ ÿéõÏ& ²¤ÿÿ ÿéõÏ&¥ ²ÿÿ ÿéòÎ& Ýÿÿ ÿéñÍ&ÖÃÿÿ ÿêðÏ&Ö£ÿÿ ÿêôÐ&Ö,èÿÿ ÿéòÍ&Ö}ÿÿ ÿèöÐ& Âÿÿ ÿèòÍ& ²*Eÿÿ ÿçòÐ& ²(äÿÿ ÿéòÏ& ²8ÿÿ ÿééÏ& ²(¸ÿÿ ÿéèÍ& ²& ÿÿ ÿéòÐ& ²iÿÿ ÿéêÍ& ²0êÿÿ ÿéòÏ& ²¡ÿÿ ÿéóÏ& bÿÿ ÿéóÎ& +Çÿÿ ÿéêÍ& ²‰ÿÿ ÿé÷Í& ²òÿÿ ÿéçÍ& ²(åÿÿ ÿéëÎ& ¢ÿÿ ÿéóÍ& ²_ÿÿ ÿééÍ&/oÖÿÿ ÿèñÏ& (,ÿÿ ÿéìÏ& ²&¿6:ÿÿ ÿéçÑ& &ÿÿ ÿéóÍ& ²& ÿÿ ÿèõÏ&Ö–ÿÿ ÿéæÏ& ²(æÿÿ ÿéïÏ&Ö&  ñÿÿ ÿéïÏ& ²& ò6;ÿÿ ÿçóÏ&Ö(Æÿÿ ÿéòÍ& ²&õ*Ëÿÿ ÿéóÎ&Öÿÿ ÿéòÏ& ²*eÿÿ ÿéîÏ& ²/¼ÿÿ ÿéêÍ& ²(Åÿÿ ÿéóÍ& ²dÿÿ ÿéòÍ& ²Üÿÿ ÿçóÐ&Ö.dÿÿ ÿèôÏ& ”ÿÿ ÿçóÎ& '£ÿÿ ÿéòÐ& ²¤ÿÿ ÿèõÏ& ²*dÿÿ ÿéôÐ& ?ÿÿ ÿèôÏ& ÿÿ ÿéóÐ& gÿÿ ÿçñÍ& ²Éÿÿ ÿçóÑ&Ö(çÿÿ ÿéóÏ& ² Âÿÿ ÿéòÎ& %Eÿÿ ÿéäÍ& ²(Çÿÿ ÿéóÏ& Ôÿÿ ÿéóÐ&Ö&›šÿÿ ÿéóÏ&Ö&qÿÿ ÿèóÏ& ²ÿÿ ÿéõÍ& ²cÿÿ ÿçöÏ& ²`ÿÿ ÿèîÏ& (Èÿÿ ÿéõÐ& ´ ²ÿÿ ÿèòÄ&+Èÿÿ ÿèóÍ&(èÿÿ ÿéóÏ& ²(éÿÿ ÿéòÏ& (Éÿÿ ÿé÷Í& ²®ÿÿ ÿèöÏ& ² ÿÿ ÿçìÍ& ²6<ÿÿ ÿéóÏ&Ö/rÿÿ ÿéðÍ& ²*Õÿÿ ÿéõÎ& %"ÿÿ ÿçõÐ&( ²ÿÿ ÿéóÏ& ²0Ôÿÿ ÿèòÏ&A ²ÿÿ ÿéêÍ&#Öÿÿ ÿéëÍ&Öcÿÿ ÿéñÐ& ²ÿÿ ÿéóÍ& ²ÿÿ ÿéôÏ& ²Rÿÿ ÿéòÏ& ²*fÿÿ ÿèìÏ&&¥.ôÿÿ ÿéóÍ& ²Îÿÿ ÿééÐ& ²*Fÿÿ ÿéïÍ&ÖÃÿÿ ÿéóÎ& ²&ìíÿÿ ÿéòÐ& ²&MQÿÿ ÿèôË&Ñ.ôÿÿ ÿéóÍ& ²Öÿÿ ÿéóÏ&÷ ²ÿÿ ÿéóÏ& ²ÿÿ ÿéöÏ& ”ÿÿ ÿéóÐ&yÖÿÿ ÿéõÐ& ²aÿÿ ÿèôÏ&Ö0¼ÿÿ ÿéêÍ& ²©ÿÿ ÿè÷Ï& ²5ÿÿ ÿéñÐ& ²Øÿÿ ÿéóÏ&M&K ²ÿÿ ÿéöÐ& ²Ãÿÿ ÿéòÏ&§Öÿÿ ÿèõÍ& ²¨ÿÿ ÿçôÐ&Ö'ÿÿ ÿèïÍ& ²Åÿÿ ÿéôÏ& ²Âÿÿ ÿéøÍ& ²›ÿÿ ÿéòÍ& ²ÿÿ ÿé÷Í&¥ ²ÿÿ ÿèòÏ&&ÿÿ ÿêðÍ&Ö*Gÿÿ ÿéðÍ& ²*Hÿÿ ÿèèÏ& ²vÿÿ ÿèìÍ&.ô0Iÿÿ ÿéóÏ& ²äÿÿ ÿéìÑ& ²¡ÿÿ ÿéíÏ& ²wÿÿ ÿéóÍ& ²)ÿÿ ÿéñÏ& ²ìÿÿ ÿéòÍ& ²×ÿÿ ÿéèÏ& ¶ÿÿ ÿéõÏ& ² ·ÿÿ ÿêóÏ&Ö€ÿÿ ÿéôÑ& ²Üÿÿ ÿéõÍ& ²öÿÿ ÿèõÏ& ²Ñÿÿ ÿéíÏ&­ ²ÿÿ ÿèôÐ& ²oÿÿ ÿèòÐ& ²Ùÿÿ ÿæöÏ&p ²ÿÿ ÿéóÑ& ² ÿÿ ÿèòÏ& ²*IÿÿÿéñÏ&&ÿÿ ÿåôÑ& ²ÿÿ ÿèíÏ&¡ ÿÿ ÿèôÏ& ²’ÿÿ ÿèìÏ&&&$.ôÿÿ ÿèóÏ& ²Wÿÿ ÿçóÐ& ²&#ÿÿ ÿéìÐ&& ²³ÿÿ ÿéóÍ& ²²ÿÿ ÿéóÏ&°&¯Öÿÿ ÿçöÏ& ²Õÿÿ ÿèòÍ&± ²ÿÿ ÿèóÍ& ²Ôÿÿ ÿèóÏ&}&.ô6=ÿÿ ÿèôÑ&X ²ÿÿ ÿéõÍ&+Í ²ÿÿ ÿéöÍ& ²&,ÿÿ ÿèôÏ& ²&æ6>ÿÿ ÿéñÐ& ²&4ÿÿ ÿéôÏ&  ÿÿ ÿéòÍ& ²öÿÿ ÿéõÏ& ²‘ÿÿ ÿéïÐ&/v ²ÿÿ ÿéôÎ& &uÿÿ ÿêðÑ&Ö*Jÿÿ ÿêòÍ&Ö*Kÿÿ ÿéöÐ& ²&š6?ÿÿ ÿéóÍ& ²&:ÿÿ ÿèöÑ& &/ÿÿ ÿéóÍ& ²¬ÿÿ ÿè÷Í& ²"äÿÿ ÿéòÐ& ²*Lÿÿ ÿéóÎ& Šÿÿ ÿéëÐ& ²&ù›ÿÿ ÿé÷Í& ²Uÿÿ ÿé÷Í& ²&n6@ÿÿ ÿéñÏ& ²6Aÿÿ ÿéõÐ& ² ±ÿÿ ÿéóÍ& ²&)ÿÿ ÿçõÏ& ² Öÿÿ ÿèîÏ&N&l.ôÿÿ ÿéìÍ&%; ²ÿÿ ÿéóÐ&«Öÿÿ ÿèñÍ& ²ÿÿ ÿéóÏ& ².eÿÿ ÿæñÎ& êÿÿ ÿéñÎ& ñÿÿ ÿéóÐ& ²êÿÿ ÿéëÍ&à ²ÿÿ ÿéõÐ& ²&5ÿÿ ÿéõÎ& Ùÿÿ ÿèòË&4&.ô6Bÿÿ ÿéòÍ& ²«ÿÿ ÿéçÐ& ²&0ÿÿ ÿéïÎ& ²*Mÿÿ ÿéòÍ&ç&è ²ÿÿ ÿéôÐ&ê& ²šÿÿ ÿéëÍ& ²&1ÿÿ ÿéõÎ&Öéÿÿ ÿèõË&.ôÿÿ ÿéøÏ& ¹ ²ÿÿ ÿèôÏ& ²ëÿÿ ÿéôÍ& ²ìÿÿ ÿééÍ&Ö*Nÿÿ ÿéõÏ& ²/=ÿÿ ÿéïÏ& ²&8ÿÿ ÿêóÏ&Ö&Mjÿÿ ÿéôÐ& ²€ÿÿ ÿèôÐ& ²*˜ÿÿ ÿéòÏ& ²&6Cÿÿ ÿéòÏ& ²)ÿÿ ÿéóÏ&.f ²ÿÿ ÿçîÐ& ².gÿÿ ÿéöÏ&ù ÿÿ ÿèôÐ&Ü&+É.ôÿÿ ÿèìÍ& ²6Dÿÿ ÿèîÍ& ².hÿÿ ÿéòÐ& ²*Oÿÿ ÿéóÐ&Î&Ï ²ÿÿ ÿèìÎ&×& ²Öÿÿ ÿèìÎ&Ø& ²Öÿÿ ÿèöÍ&,ú&.i.ôÿÿ ÿêõÍ&Ö&( 6Eÿÿ ÿéòÐ&Ö*jÿÿ ÿèéÐ&Öjÿÿ ÿéïÏ&ÖÃÿÿ ÿèëÏ&à&.ô6Fÿÿ ÿéôÍ& ²(êÿÿ ÿèõÑ&e.ôÿÿ ÿêóÐ&¯Öÿÿ ÿéöÏ& ²(ëÿÿ ÿéîÍ& ²(ìÿÿ ÿè÷Ñ&ÖÏÿÿ ÿéëÍ& ²îÿÿ ÿéñÍ& ²­ÿÿ ÿèõÑ& ²&ÿÿ ÿêôÏ&Ö|ÿÿ ÿéòÎ&(í ²ÿÿ ÿé÷Ï& ²/õÿÿ ÿêøÍ&Öüÿÿ ÿéóÑ&ÖËÿÿ ÿéóÍ& ²þÿÿ ÿéõÐ& Ê ²ÿÿ ÿêîÎ&Ö0/ÿÿ ÿèóÏ&'—&™.ôÿÿ ÿèôÑ& ²00ÿÿ ÿèñÏ&Ö&ƒÿÿ ÿéïÍ&(@Öÿÿ ÿéõÍ& ².ÿÿ ÿééÎ& ²(îÿÿ ÿèöÏ&.ì.ôÿÿ ÿèëÐ& ²ÿÿ ÿéëÍ& ²&„ÿÿ ÿçôÍ& ²6Gÿÿ ÿééÍ&±Öÿÿ ÿèöÎ&.T.ôÿÿ ÿèõÏ&.ôÿÿ ÿèòÏ&Ö/yÿÿ ÿêôÐ&.lÖÿÿ ÿêñÎ&*PÖÿÿ ÿéòÏ& ²³ÿÿ ÿéíÏ& ²ÿÿÿ ÿèëÏ&(ï.ôÿÿ ÿéóÑ&ÖQÿÿ ÿéõÏ& ²(ðÿÿ ÿèëÏ&à&.ô6Hÿÿ ÿèîÍ& ²Èÿÿ ÿèóË&.k&.ô6Iÿÿ ÿèõÏ&.ó.ôÿÿ ÿçóÏ&© ²ÿÿ ÿéðÍ& ²6Jÿÿ ÿèóÏ& ²Üÿÿ ÿèïÏ& ²?ÿÿ ÿéöÏ& ²®ÿÿ ÿèõÐ&»&.ô6Kÿÿ ÿéóÏ&(ñÖÿÿ ÿêóÏ&Ö™ÿÿ ÿéôÑ& ²Èÿÿ ÿèóÏ&{ ²ÿÿ ÿéøÏ&„Öÿÿ ÿéñÎ& ².jÿÿ ÿéïÏ& ²°ÿÿ ÿèòÏ&&.ô6Lÿÿ ÿéôÐ& ²—ÿÿ ÿéòÐ&Ö(òÿÿ ÿêõÑ&Ö ÿÿ ÿéòÍ&Ö.Lÿÿ ÿèòÏ&¯ ²ÿÿ ÿéóÑ&[ ²ÿÿ ÿêòÏ&Ö&è6Mÿÿ ÿçëË&/z.ôÿÿ ÿéóÏ& ²&ÿÿ ÿêõÍ&Ö&†ÿÿ ÿéóÏ& ²(óÿÿ ÿéöÏ& ²*iÿÿ ÿèôÒ&_ ²ÿÿ ÿèõË& .ôÿÿÿéõÐ&(ô6Nÿÿ ÿêðÎ&Ö6Oÿÿ ÿéôÏ&Ö Eÿÿ ÿéòÏ& ²&‰ÿÿ ÿéóÏ&Ö²ÿÿ ÿéëÍ&Ï ²ÿÿ ÿéñÐ&.mÖÿÿ ÿèôÎ&Ö6Pÿÿ ÿèíË&.ô6Qÿÿ ÿéôÐ& ²6Rÿÿ ÿéõÍ&Ö(õÿÿ ÿèïÏ&Ö(÷ÿÿ ÿèöÏ& ²(öÿÿ ÿèòÏ& 6.ôÿÿ ÿêòÍ&.oÖÿÿ ÿéóÍ& ²6Sÿÿ ÿéñÏ& ².nÿÿ ÿéìÏ& ²&Úÿÿ ÿèïÐ& ²6Tÿÿ ÿèøÐ& ² .ÿÿ ÿéõÏ& ²"¯ÿÿ ÿéòÏ& ²/ÿÿ ÿèõÐ&!.ôÿÿ ÿéóÍ& ²"Bÿÿ ÿéõÏ& ²#„ÿÿ ÿéðÑ& ²!µÿÿ ÿèóÐ&•&è6Uÿÿ ÿèôÏ& ²$ÿÿ ÿéõÍ& ²#‹ÿÿ ÿéöÏ& ²"iÿÿ ÿèïÏ&*Š&.ô6Vÿÿ ÿèòË&#Û.ôÿÿ ÿéìÍ&q ²ÿÿ ÿéðÑ& ² ÿÿ ÿèîÍ& ²#?ÿÿ ÿéóÍ& ²1ÿÿ ÿèõÎ& ²@ÿÿ ÿéìÏ&& ²!ÿÿ ÿèèÍ&Ö"3ÿÿ ÿêõÏ&Ö6Wÿÿ ÿèóÏ&!z.ôÿÿ ÿèóÏ& ²!íÿÿ ÿéôÑ&Å& ²Æÿÿ ÿêòÏ&Ö"Ÿÿÿ ÿèôË&+Ê&+Ë.ôÿÿ ÿéñÎ& "Dÿÿ ÿèòÏ&(ø.ôÿÿ ÿèôÏ& ²!Þÿÿ ÿèòÎ&»&¹&º.ôÿÿ ÿèìÏ&/œ ²ÿÿ ÿèöÏ&_&.ô6Xÿÿ ÿéóÏ&"xÖÿÿ ÿèîÎ&Ö!–ÿÿ ÿêôÏ&!ýÖÿÿ ÿéóÍ&Ö!ÿÿ ÿèôÏ&.ô6Yÿÿ ÿéóÍ& ²"{ÿÿ ÿèõÑ&å&.ô6Zÿÿ ÿèóÏ&.p&.ô6[ÿÿ ÿèçË&!.ôÿÿ ÿéòÏ&Ö×ÿÿ ÿéóÑ& ²!Âÿÿ ÿèôÒ& ²6\ÿÿ ÿèóÏ&l&k.ôÿÿ ÿèõÏ&.q.ôÿÿ ÿéîÐ& ² »ÿÿ ÿèóÏ& ²‡ÿÿ ÿèòË&"J.ôÿÿ ÿéñÍ&Ö$\ÿÿ ÿäöÍ& ²"qÿÿ ÿéõÐ& ²6]ÿÿ ÿéòÐ& ²#£ÿÿ ÿèóÏ&0r.ôÿÿ ÿèëÏ&#¾&#½.ôÿÿ ÿèëÏ&r.ôÿÿ ÿèôÏ&#¼.ôÿÿ ÿèëÎ&#O.ôÿÿ ÿéñÍ&Ö"ÿÿ ÿéôÍ& ²-ÿÿ ÿéñÏ& h ²ÿÿ ÿéõÑ& 'ÿÿ ÿéóÏ&a ²ÿÿ ÿéíÍ& ² qÿÿ ÿéíÍ&Ö"ÿÿ ÿéóÍ&) ²ÿÿ ÿèöÐ&,ê&».ôÿÿ ÿéòÏ&m ²ÿÿ ÿéîÍ& ²Òÿÿ ÿéëÍ&¦ ²ÿÿ ÿéõÍ&Ö":ÿÿ ÿêóÏ&Ö!eÿÿ ÿèöÏ&,ë&%Ã.ôÿÿ ÿêõÍ&Ö •ÿÿ ÿçðÍ& ²"ÿÿ ÿéóÏ& ²6^ÿÿ ÿèòÍ& ²"¦ÿÿ ÿéòÏ& ²"·ÿÿ ÿéðÍ& ²,ìÿÿ ÿéôÐ& ²$†ÿÿ ÿéôÎ& ²"Zÿÿ ÿéóÏ& ²!¼ÿÿ ÿéðÍ& ²! ÿÿ ÿèöÏ&"Å.ôÿÿ ÿéòÐ&Ö6_ÿÿ ÿéóÍ& ²6`ÿÿ ÿéóÏ&K ²ÿÿ ÿèëÏ&!|&à.ôÿÿ ÿçòÏ&Ö"ÿÿ ÿèóÏ&,î&.ô6aÿÿ ÿèöÐ&&.ô6bÿÿ ÿèñÐ&#ï.ôÿÿ ÿèóË&.ô6cÿÿ ÿéöÎ& ²$;ÿÿ ÿéïÍ& ²*Qÿÿ ÿèôÏ&™&(ù.ôÿÿ ÿèòÑ&$.ôÿÿ ÿè÷Ë&Ê.ôÿÿ ÿéóÏ& ²$Çÿÿ ÿèõÐ& ²(úÿÿ ÿéòÎ& ²,ÔÿÿÿéðÑ&ð&€ÿÿ ÿéôÍ& ²$Óÿÿ ÿéòÏ& ²%ÿÿ ÿéóÐ& ²#ÿÿ ÿèõÐ&.ô6dÿÿ ÿéìÏ&Ö=ÿÿ ÿèñÐ&$4.ôÿÿ ÿèðË&"….ôÿÿ ÿèïË&*R.ôÿÿ ÿéòÏ& ²#ÿÿ ÿèóÐ&M&$z.ôÿÿ ÿèõÎ&$K.ôÿÿ ÿèóÏ& !& %.ôÿÿ ÿéìÍ&Ö"Õÿÿ ÿéöÏ& ²¶ÿÿ ÿèôÎ&,&.ô6eÿÿ ÿæõÍ& ²$ÿÿ ÿèôÐ& ²fÿÿ ÿéõÍ& ²Cÿÿ ÿèóÏ&,ï&.ô6fÿÿ ÿçíË&$í.ôÿÿ ÿéðÏ& ²(ûÿÿ ÿèñÐ&$o.ôÿÿ ÿèôÎ&% .ôÿÿ ÿèõÎ& ¢ÿÿ ÿéóÏ& ²$kÿÿ ÿéöÑ& ²$ÿÿ ÿèíË&.ô6gÿÿ ÿèñÏ&Ö6hÿÿ ÿèíÍ& ²(üÿÿ ÿéëÍ& ²$Sÿÿ ÿéòÍ& ²6iÿÿ ÿéôÍ& ²gÿÿ ÿéðÑ& ²#÷ÿÿ ÿèðÏ&&½&&¾.ôÿÿ ÿéñÏ&Ö,ðÿÿ ÿèôÏ&,ñ&.ô6jÿÿ ÿèïÑ&B.ôÿÿ ÿéôÏ& ²*pÿÿ ÿèöÒ& ²$%ÿÿ ÿéòÑ&*S ²ÿÿ ÿéðÍ& ²$ ÿÿ ÿéïÐ& ²(ýÿÿ ÿéòÐ& ²%ÿÿ ÿéïÍ& ²$Qÿÿ ÿéöÏ& ²$iÿÿ ÿèïÐ&(þ.ôÿÿ ÿèöÐ&Ë&Ê&.ô6kÿÿ ÿèóÏ& ²6lÿÿ ÿèòÏ&& ÿÿ ÿéóÏ&$Õ ²ÿÿ ÿéôÏ& ²-Þÿÿ ÿéìÍ& ²#(ÿÿ ÿêóÍ&$Öÿÿ ÿéñÐ&$©Öÿÿ ÿèóÎ& ²$¹ÿÿ ÿéöÏ&36mÿÿ ÿéôÑ& ²/~ÿÿ ÿéôÐ&& ²ÿÿ ÿéòÍ& ²6nÿÿ ÿèöÐ&/¯.ôÿÿ ÿçöÐ& ²,òÿÿ ÿéõÐ& ²$ôÿÿ ÿéñÐ&Ö øÿÿ ÿèôÐ&z&.ô6oÿÿ ÿèõÍ& ²/:ÿÿ ÿéóÏ&Öƒÿÿ ÿêòÏ&Ö6pÿÿ ÿèôÑ&‰&ˆ.ôÿÿ ÿéóÐ&$/ ²ÿÿ ÿçóÐ&ó&÷ ²ÿÿ ÿèðÐ& ²/Lÿÿ ÿèóÏ&|&˜.ôÿÿ ÿéöÐ&Ë& ²&ÊÌÿÿ ÿéöÐ& ²/Vÿÿ ÿéóÍ& ²(ÿÿÿ ÿçñÏ&°&±.ôÿÿ ÿèõÏ&,ó.ôÿÿ ÿéôÐ& ²6qÿÿ ÿçõÑ& ²'ºÿÿ ÿéîÑ&Ö'»ÿÿ ÿéôÑ& ²,ôÿÿ ÿèôÏ&,&.ôÿÿ ÿèñÏ& ²*Tÿÿ ÿèòÐ&µ&´.ôÿÿ ÿçðÑ&¶.ôÿÿ ÿéõÒ& ²¡ÿÿ ÿéõÏ& ²6rÿÿ ÿèñÓ& ²1ÿÿ ÿèôÓ&.ô6sÿÿ ÿèíÏ&).ôÿÿ ÿéôÏ&)ÿÿ ÿèõÒ&)Öÿÿ ÿéóÍ& ²&¡ÿÿ ÿéöÑ& ²6tÿÿ ÿéõÑ& ²)ÿÿ ÿé÷Ï& ²6uÿÿ ÿèöÏ&,ö&,õ.ôÿÿ ÿéöÏ& ²*æÿÿ ÿéôÑ& ²'·ÿÿ ÿçõÏ&+ .ôÿÿ ÿéîÍ& ²)ÿÿ ÿè÷Ð&,ö&.ô6vÿÿ ÿèñË&.ô6wÿÿ ÿèóÏ&S.ôÿÿ ÿèõË&,÷&.ô6xÿÿ ÿèðÑ&h.ôÿÿ ÿèìÏ&).ôÿÿ ÿèóÏ&).ôÿÿ ÿéöÍ& ²6yÿÿ ÿéóÏ& ²)ÿÿ ÿéóÍ& ²&šÿÿ ÿèòÏ&.ô6zÿÿ ÿçõÐ&Ö6{ÿÿ ÿêðÏ&Ö)ÿÿ ÿéöÏ&Ö%+ÿÿ ÿèóÑ&b.ôÿÿ ÿé÷Ð& ²) ÿÿ ÿèôË&Ü&Ý.ôÿÿ ÿçòÏ&.ô6|ÿÿ ÿèõÏ&.ô6}ÿÿ ÿéóÐ&&þÿÿ ÿèõÐ&,ø&.ô6~ÿÿ ÿèõÐ&.ô0]ÿÿ ÿèóÐ&0&'š.ôÿÿ ÿéóÍ&J ²ÿÿ ÿèõÐ& ² ÿÿ ÿèòÐ&#¿.ôÿÿ ÿçòÑ& ²) ÿÿ ÿéôÍ& ²) ÿÿ ÿéíÏ& ²-:ÿÿ ÿçöÏ& ²&%.ôÿÿ ÿèõË&,ù&,ú.ôÿÿ ÿéóÑ& ²&›ÿÿ ÿèôÐ&,&.ô6ÿÿ ÿéõÏ&y ²ÿÿ ÿèñÐ&&e& ²&gÿÿ ÿèôÏ&Þ&.ô6€ÿÿ ÿéñÍ&Ö6ÿÿ ÿèôÐ&&œ.ôÿÿ ÿé÷Î& ²&¢ÿÿ ÿéòÏ& ².rÿÿ ÿéôÑ& ²$Üÿÿ ÿéñÐ&j) ÿÿ ÿéñÍ& ²6‚ÿÿÿéóÏ&„6ƒÿÿ ÿèóÐ&.ô6„ÿÿ ÿéóÐ& ²) ÿÿ ÿçôÎ& ²6…ÿÿ ÿçòÐ&Ö6†ÿÿ ÿèõÐ&&,û.ôÿÿ ÿèóÏ&˜&.ô6‡ÿÿ ÿèóÏ&•&÷.ôÿÿ ÿçêÍ& ²%ëÿÿ ÿèöÏ&%ì.ôÿÿ ÿèõÍ& ²)ÿÿ ÿéôÐ& ²&§ÿÿ ÿèòÐ&).ôÿÿ ÿèîÏ&&&.ôÿÿ ÿéöÐ& ²ëÿÿ ÿéöÏ&0Ú ²ÿÿ ÿéóÏ& ²&©ÿÿ ÿéòÏ& ²%àÿÿ ÿèóË&.ô0Ùÿÿ ÿéôÏ&Ö&ªÿÿ ÿèöÒ&Ö6ˆÿÿ ÿèöÐ&*n&*m.ôÿÿ ÿèñÎ&).ôÿÿ ÿèôÍ&Ö’ÿÿ ÿèôÑ&,&.ô6‰ÿÿ ÿçòÏ& ²)ÿÿ ÿèíË&ð&.ô6Šÿÿ ÿèîË&ñ&.ô6‹ÿÿ ÿéôÏ& ²zÿÿ ÿéìÑ& ²šÿÿ ÿçòÍ&) ²ÿÿ ÿêíÐ&Ö6Œÿÿ ÿèôÏ&&.ô6ÿÿ ÿéòÍ& ²&«ÿÿ ÿèóË&i.ôÿÿ ÿèîÏ&J&.ô6Žÿÿ ÿèóÌ&).ôÿÿ ÿçôÏ&Ä ²ÿÿ ÿèðÐ&,ü&.ô6ÿÿ ÿèñÍ&,ýÖÿÿ ÿèóÏ&#&0.ôÿÿ ÿèñË&).ôÿÿ ÿéóÐ&&Öÿÿ ÿêòÏ&Ö6ÿÿ ÿèóË&.ô6‘ÿÿ ÿèôÎ&,þ.ôÿÿ ÿéóÐ&t ²ÿÿ ÿéóÐ&b ²ÿÿ ÿéôÏ& ²*Óÿÿ ÿèëË&.ô6’ÿÿ ÿèóË&.ô6“ÿÿ ÿéòÏ& ²²ÿÿ ÿèôÏ&,&.ô6”ÿÿ ÿêöÍ&Ö%ÿÿ ÿêòÏ&µÖÿÿ ÿèôÏ&&¬.ôÿÿ ÿèïÎ& ²&¨ÿÿ ÿèôÐ&,&.ô6•ÿÿ ÿèôÎ&,&.ô6–ÿÿ ÿéóÍ& ²)ÿÿ ÿèôÏ&Þ&.ô6—ÿÿ ÿèóÐ& ü&.ô/âÿÿ ÿè÷Ï& ü&'.ôÿÿ ÿèñÍ&Ö8ÿÿ ÿéôÍ& ²6˜ÿÿ ÿèòË&Ç&´.ôÿÿ ÿèòÐ&)&.ô6™ÿÿ ÿèóÎ&&;&.ô6šÿÿ ÿéñÏ&Ö)ÿÿ ÿèîË&ñ&.ô6›ÿÿ ÿèîË&ñ&.ô6œÿÿ ÿçíÑ&).ôÿÿ ÿèôÏ& ²6ÿÿ ÿèøË&&±.ôÿÿ ÿèòË&).ôÿÿ ÿéïÏ& ²)ÿÿ ÿèõÐ&.ô6žÿÿ ÿéñÍ& ²)ÿÿ ÿèóÎ&-.ôÿÿ ÿçñË& ¨& ©.ôÿÿ ÿéóÐ&) ²ÿÿ ÿéôÐ&& ²6ŸÿÿÿêíÑ&6 ÿÿ ÿæôË&.ô6¡ÿÿ ÿèòÏ&).ôÿÿ ÿçõÑ& ²/åÿÿ ÿèòÐ&.ö.ôÿÿ ÿéõÒ&Ö&Ìÿÿ ÿéôÐ& ².õÿÿ ÿé÷Ñ&½ ²ÿÿ ÿèôË&(&.ô6¢ÿÿ ÿéóÏ& ²,ÿÿÿ ÿèöÑ& ²jÿÿ ÿéõÍ& ²&Ëÿÿ ÿèôÑ&Þ&.ô6£ÿÿ ÿêóÒ&´Öÿÿ ÿèñÑ&.ô6¤ÿÿ ÿèóÑ&&Í.ôÿÿ ÿêôÑ&Ö)ÿÿ ÿèòÏ&.Ô.ôÿÿ ÿèòÏ& ²/cÿÿ ÿéôÏ& ²&Ü6¥ÿÿ ÿèóÏ&.ô.äÿÿ ÿèôÏ&ã&å&,.ôÿÿ ÿéðÍ&­ ²ÿÿ ÿèôÑ& ²-ÿÿ ÿçôÏ& ²&Êÿÿ ÿèôË&Ü&.ô6¦ÿÿ ÿèöÐ& ²&­ÿÿ ÿèñÏ&).ôÿÿ ÿèôÏ&.ô6§ÿÿ ÿèóÏ&˜&.ô6¨ÿÿ ÿéòÏ& ²) ÿÿ ÿéõÏ& ².ÿÿ ÿéóÏ&!d/ôÿÿ ÿéôÏ&"& ²6©ÿÿ ÿéìÍ&)! ²ÿÿ ÿéõÍ&)" ²ÿÿ ÿçóÐ& «& ².ôÿÿ ÿèóÏ&Ž& ³.ôÿÿ ÿèøË&)#.ôÿÿ ÿèòÍ& ²&Ïÿÿ ÿéñÐ& ²)$ÿÿ ÿéóÏ& ².sÿÿ ÿèñÏ&)%.ôÿÿ ÿèôÏ&¨.ôÿÿ ÿèöÐ&.ô6ªÿÿ ÿèòÐ&6.ôÿÿ ÿèõÑ&%v.ôÿÿ ÿèñÑ&-.ôÿÿ ÿèñË&&Ð.ôÿÿ ÿèòÍ&.{ ²ÿÿ ÿèöÐ&µ&.ô6«ÿÿ ÿèóÏ&¾.ôÿÿ ÿéõÑ&.t ²ÿÿ ÿèóÐ&.ô&/â6¬ÿÿ ÿèòÐ&.ô6­ÿÿ ÿèõÏ&)&.ôÿÿ ÿèòÐ&)'.ôÿÿ ÿèôÏ&)(.ôÿÿ ÿêóÏ&Ö.uÿÿ ÿèõÐ& !&* .ôÿÿ ÿèóË&)).ôÿÿ ÿèóÐ&˜&—.ôÿÿ ÿçôÑ&Ö&Îÿÿ ÿèôÑ&(&.ô6®ÿÿ ÿèöÏ&.ô6¯ÿÿ ÿèñÏ&.ô6°ÿÿ ÿçôÑ&.ô6±ÿÿ ÿèíË&ð&.ô6²ÿÿ ÿéóÐ&)*6³ÿÿ ÿèõÑ&ë&.ô6´ÿÿ ÿèõÏ&)+&.ô6µÿÿ ÿèóÐ& ²@ÿÿ ÿéôÐ& ²&Òÿÿ ÿéòÍ& ²-ÿÿ ÿçôÍ& ²),ÿÿ ÿèõÑ&)..ôÿÿ ÿéôÐ& ²&6¶ÿÿ ÿéòÏ& ²%Yÿÿ ÿçñÐ& ²)-ÿÿ ÿèôÒ& ²%ƒÿÿ ÿèðÒ& ²6·ÿÿ ÿè÷Ñ&.ô6¸ÿÿ ÿéôÐ& ²6¹ÿÿ ÿèñÐ&--.ôÿÿ ÿèòÐ&%U.ôÿÿ ÿçóÏ&)/.ôÿÿ ÿèïÏ& &.ô6ºÿÿ ÿè÷Ë&%d.ôÿÿ ÿèôÏ&(&.ô6»ÿÿ ÿçñÏ&Ž& ©.ôÿÿ ÿèìË&-.ôÿÿ ÿèòÐ&)1.ôÿÿ ÿéøÑ& ²Êÿÿ ÿèøÏ&,c&.ô6¼ÿÿ ÿèôÐ&.ô6½ÿÿ ÿèöÐ&.ô6¾ÿÿ ÿèôÏ&&$ .ôÿÿ ÿé÷Í& ²ÿÿ ÿèñÑ&#&.ô6¿ÿÿ ÿèóÏ&.ô6Àÿÿ ÿéòÏ&& ²6Áÿÿ ÿèôÏ&.ô6Âÿÿ ÿèôÐ&.ô6Ãÿÿ ÿèôÏ&.ô6Äÿÿ ÿèðÐ& ². ÿÿ ÿèôÏ&2&1.ôÿÿ ÿèöÐ&)2.ôÿÿ ÿçõÐ&)3& ².ôÿÿ ÿçñÎ& ©&.ô6Åÿÿ ÿèõÐ&#T6Æÿÿ ÿèôÍ&(&.ô6Çÿÿ ÿç÷Ì& ª&i.ôÿÿ ÿéïÏ&Ö6Èÿÿ ÿèõË&+Ó&.ô6Éÿÿ ÿçñË&.ô6Êÿÿ ÿèõÑ&&.ô6Ëÿÿ ÿèïÐ&)4.ôÿÿ ÿéòÍ&- ²ÿÿ ÿåõÑ&\& ²6Ìÿÿ ÿæóÍ& ²6Íÿÿ ÿè÷Î&)6.ôÿÿ ÿéõÎ& ²*„ÿÿ ÿèñÑ&)7.ôÿÿ ÿèôÐ&.ô6Îÿÿ ÿèñÑ&)8.ôÿÿ ÿèêË&ò&.ô6Ïÿÿ ÿçôÑ&1&.ô6Ðÿÿ ÿèôË&.ô6Ñÿÿ ÿèêË&ò&.ô6Òÿÿ ÿèòÎ&.v.ôÿÿ ÿéôÏ&)9 ²ÿÿ ÿéóÍ& ²):ÿÿ ÿéóÍ& ²6Óÿÿ ÿéòÏ& ²6Ôÿÿ ÿéòÍ& ²);ÿÿ ÿèóÏ&)“&.ô6Õÿÿ ÿèòË&.ô6Öÿÿ ÿèìÏ&)<.ôÿÿ ÿèóË&&.ôÿÿ ÿèóÏ&.ô6×ÿÿ ÿèóÍ&&Ö.ôÿÿ ÿçòÐ&&×.ôÿÿ ÿèôÐ&}&.ô6Øÿÿ ÿèõÒ&.ô6Ùÿÿ ÿèõÒ&&Œ.ôÿÿ ÿèôÐ&~&}.ôÿÿ ÿèóÒ&.w.ôÿÿ ÿèïÍ& ²&ó6Úÿÿ ÿèöË&&.ôÿÿ ÿèìÌ&.ô6Ûÿÿ ÿèíÌ&.ô6Üÿÿ ÿèòÐ&.>.ôÿÿ ÿèôÐ&-.ôÿÿ ÿçñÑ&)=.ôÿÿ ÿæöÐ&.ô6Ýÿÿ ÿèöÐ&.ô6Þÿÿ ÿæôÒ&#U&#V#Wÿÿ ÿç÷Ë&i&.ô6ßÿÿ ÿèöÑ&.ô6àÿÿ ÿèõÎ&%&%.ôÿÿ ÿçóÐ&.ô6áÿÿÿçöÁ&%Æ6ãÿÿ ÿêóÏ&mÑÿÿ ÿçëÏ&mÈÿÿ ÿêóÏ&mÊÿÿ ÿèóË& 6äÿÿ ÿêõÏ&ymÿÿÿèõÒ&%Ç ÿÿ ÿêóÏ& µ²ÿÿ ÿéìÏ&mYÿÿ ÿèóÐ&Æ ÿÿÿçôÑ&0%Èÿÿ ÿéêÏ&¾ µÿÿ ÿéíÏ&% %9ÿÿ ÿéòÏ& µ&yÿÿ ÿéöÏ&ÕÙÿÿ ÿéóÏ&)ëÿÿ ÿèóÇ& Iÿÿ ÿéõÏ& µRÿÿ ÿêìÏ&m(¾ÿÿ ÿéõÑ& µ²ÿÿ ÿèóÑ&3 ÿÿ ÿèôÏ& µ%Éÿÿ ÿèôÏ&% (/ÿÿ ÿéôÏ&”mÿÿ ÿéöÏ&ëBÿÿ ÿéòÏ& µíÿÿ ÿêõÏ& µÿÿ ÿéñÏ&ñëÿÿ ÿèóÑ& 6åÿÿÿèóÏ&V%Áÿÿ ÿèìÏ&% %Âÿÿ ÿêóÏ& µ'Fÿÿ ÿéòÏ&è% ÿÿ ÿéôÏ&!m% ÿÿ ÿéêÏ&j% ÿÿ ÿçõÏ&‡ µÿÿ ÿéóÏ&ëÔÿÿ ÿéóÏ&Á% ÿÿ ÿêôÐ& µøÿÿ ÿéíÏ&ë%ÊÿÿÿêòÐ&)>LÿÿÿåõÏ&¦ÿÿ ÿéôÏ&ë%Ëÿÿ ÿéöÏ&% %!ÿÿ ÿéõÏ& µ!ÿÿ ÿêóÏ& µ'Ëÿÿ ÿéóÐ& µUÿÿÿêòÏ&L6æÿÿ ÿéòÏ& µÎÿÿ ÿéõÏ&ë/+ÿÿ ÿçôÏ&%Ì µÿÿ ÿéõÏ&ë3ÿÿ ÿêóÏ& µ%Íÿÿ ÿéõÏ&ë ÿÿ ÿéñÏ&% 6çÿÿ ÿéõÏ&% %"ÿÿ ÿéôÏ&Àëÿÿ ÿéóÏ&ë&ØÙÿÿ ÿéöÑ&ë“ÿÿÿêòÍ&L&®¯ÿÿ ÿéðÏ& µ¶ÿÿ ÿéõÑ&O6èÿÿ ÿéóÏ&â% ÿÿ ÿèóË& 6éÿÿ ÿé÷Ï&ëEÿÿ ÿéõÏ&sëÿÿ ÿéóÏ&~% ÿÿ ÿéîÏ&ë.ÿÿ ÿéôÐ&7 µÿÿ ÿèïÏ& µ1ÿÿ ÿéõÐ& µ\ÿÿ ÿéôÑ& ¸ µÿÿ ÿêîÏ&!Ž µÿÿ ÿêõÏ& µÜÿÿ ÿèõÈ&-tÿÿ ÿé÷Ï&í&ìëÿÿ ÿéëÏ&ë ³ÿÿ ÿéòÏ&{% ÿÿÿéóÑ&32ÿÿ ÿéòÐ&ëÙÿÿ ÿêóÏ& µÿÿ ÿéóÏ&“% ÿÿ ÿèõÏ&¼% ÿÿ ÿéôÐ&ëUÿÿ ÿèóÏ& µVÿÿÿåõÏ&ð&ÿÿ ÿç÷Ï&ëÿÿ ÿèõÐ&t&(6êÿÿ ÿéòÐ&% *ÿÿ ÿéóÐ&³% ÿÿ ÿéíÏ&ë%<ÿÿ ÿéðÒ&ë0íÿÿ ÿéòÏ&©% ÿÿ ÿéôÏ&.ù%=ÿÿ ÿéõÏ&’ëÿÿ ÿéõÐ&ëƒÿÿ ÿèõÑ&ópÿÿ ÿèõÐ& µLÿÿ ÿéõÏ&ëÿÿ ÿéöÏ&% %#ÿÿ ÿéôÏ&ë%$ÿÿ ÿç÷Ï&o&nøÿÿ ÿéöÏ&X% ÿÿ ÿéõÏ&ò&óôÿÿ ÿèõË&t6ëÿÿ ÿééÏ& µÿÿ ÿæóÆ&- 6ìÿÿ ÿéôÏ&/øÿÿ ÿéóÏ&ò6íÿÿ ÿçõÑ& % ÿÿ ÿèóÐ&Œ% ÿÿÿêóÏ&L6îÿÿ ÿéóÏ&ëŠÿÿ ÿé÷Ñ& µ,Íÿÿ ÿéîÑ& µ ¶ÿÿ ÿéõÐ&ë®ÿÿ ÿéíÐ&ë&ÙÕÿÿ ÿèñÏ&ë%Ïÿÿ ÿèõÑ&,pÿÿ ÿéòÐ&ë%Ðÿÿ ÿèóÏ&b& %ÑÿÿÿèíÉ&6ïÿÿ ÿéôÏ&% (mÿÿ ÿéóÑ&% %%ÿÿ ÿéóÏ&ë%Óÿÿ ÿéóÏ&ë1ÿÿ ÿéóÐ&ë%Ôÿÿ ÿèõÄ&t6ðÿÿ ÿéöÏ&ë"Hÿÿ ÿèîÏ&ë1ÿÿ ÿçöÐ&ø&)?#‚ÿÿ ÿéòÏ&ë Yÿÿ ÿéíÏ& µ%ÕÿÿÿêóÑ&36ñÿÿ ÿéõÏ&d*ÿÿ ÿéñÏ&O6òÿÿ ÿéôÏ&›&·% ÿÿ ÿèóÏ&ë%Öÿÿ ÿéóÏ&ëÙÿÿÿéòÏ&0ú0üÿÿÿêõÐ&/0üÿÿ ÿéñÏ&ë!aÿÿ ÿèöÏ&ø&#"#!ÿÿ ÿéöÏ& ‹ëÿÿ ÿéóÏ&*!ÿÿ ÿéõÏ&ëØÿÿ ÿéòÏ&ë"žÿÿ ÿêóÏ& µ8ÿÿ ÿéõÑ&% "±ÿÿÿèöÏ&0ü&á%Ãÿÿ ÿèõÐ&#¦tÿÿ ÿè÷Ï&!ßëÿÿ ÿéóÐ&"ø% ÿÿ ÿèóÏ&ˆ% ÿÿÿçóÏ&O- ÿÿ ÿèõÊ&Ï&tÐÿÿ ÿèòÏ&øŸÿÿ ÿéöÐ&ë!ÿÿ ÿéôÏ&ëÿÿ ÿéóÊ&ò6óÿÿ ÿéôÏ&ë6ôÿÿ ÿèïÏ&!ëÿÿ ÿèõÐ&t6õÿÿ ÿèíÏ&"4% ÿÿ ÿèõÏ&ë0ýÿÿ ÿéôÏ&ë0tÿÿÿè÷Ï&å&æ ÿÿ ÿéõÏ&ë#Iÿÿ ÿé÷Ï&ë"cÿÿ ÿéõÏ&ë£ÿÿÿêòÏ&{&L6öÿÿ ÿèõÆ&{&ztÿÿ ÿèóÏ&#;% ÿÿ ÿèõÏ&x% ÿÿ ÿéóÏ& µ&Žÿÿ ÿçõÏ&ëYÿÿ ÿèõÏ&3pÿÿ ÿéñÏ&%×ëÿÿ ÿåõÏ&"Æÿÿ ÿéîÏ&*&JKÿÿ ÿèïÐ&ë0¹ÿÿ ÿéöÏ&ë&Jâÿÿ ÿéôÑ&ËÐÿÿ ÿéóÏ&ø#|ÿÿ ÿéöÏ&ë$Rÿÿ ÿéïÏ&ë6÷ÿÿ ÿé÷Ï&ë$gÿÿ ÿéõÑ&ë$‰ÿÿ ÿéõÏ&ëÿÿ ÿéõÏ&% )iÿÿ ÿéòÐ&ø% ÿÿ ÿèõÊ&Ñ&t&Ò6øÿÿ ÿèõÏ&ë¢ÿÿ ÿèõÒ&t/ìÿÿ ÿèõÏ&p6ùÿÿ ÿèóÏ& áëÿÿ ÿéóÏ&ò&Þÿÿ ÿéöÏ&ëNÿÿ ÿéôÏ&ë1ÿÿ ÿèõÐ& ëÿÿ ÿéñÏ&ë%ÿÿ ÿèõÄ&Ó&Ôtÿÿ ÿéôÏ&ë/9ÿÿ ÿéóÏ&†% ÿÿ ÿêöÑ&Ë%Øÿÿ ÿêôÑ&ø%Ùÿÿ ÿêõÏ&.ù%Úÿÿ ÿèõÑ&Wtÿÿ ÿéîÏ&ë%Ûÿÿ ÿçóÏ&.ù+ÿÿ ÿêôÏ&.ù.ûÿÿ ÿéòÏ&ë&E6úÿÿ ÿêõÏ&*&Þ6ûÿÿ ÿåöÏ&6üÿÿ ÿéöÏ&Õ&»¼ÿÿ ÿèõÐ&/Wëÿÿ ÿèðÏ&*&á%Üÿÿ ÿèõÑ&t6ýÿÿ ÿé÷Ð&ë%Ýÿÿ ÿéôÏ&ë#~ÿÿ ÿèùÏ&è&épÿÿ ÿéõÌ&5&6!ÿÿ ÿéôÏ& µ%Þÿÿ ÿéòÏ&ë”ÿÿ ÿèôÏ&*0ØÿÿÿèñÑ&%ä/ ÿÿ ÿéõÏ&ëšÿÿ ÿçôÏ&ë%ßÿÿ ÿéòÏ&.ù1 ÿÿÿéöÏ&F0üÿÿ ÿçòÏ&ë%âÿÿ ÿéòÏ&ëÿÿ ÿéóÏ&ø†ÿÿ ÿéóÏ&ë%ãÿÿ ÿèõÐ&ëìÿÿÿèôÏ&çèÿÿ ÿèôÒ&éçÿÿ ÿéõÏ&ë%åÿÿÿéóÒ&%æ0üÿÿ ÿêöÏ&*%ÿÿ ÿèõÑ&Ë&%çÿÿ ÿèôÑ&Ø6þÿÿ ÿéõÏ&ë%èÿÿ ÿéôÏ&ë%éÿÿ ÿçìÏ&ë%êÿÿ ÿéôÏ&ë%'ÿÿ ÿèôÏ&ë%(ÿÿ ÿéõÏ&% %&ÿÿ ÿèõÏ&t6ÿÿÿ ÿéóÏ&% %íÿÿ ÿéðÏ&ø&ú7ÿÿ ÿéðÏ&ú&ø7ÿÿ ÿåõÏ&…&"ÿÿÿçõÏ&- - ÿÿ ÿéöÇ&Õ7ÿÿ ÿéîÏ&Ë&0b7ÿÿÿéðÏ&& 7ÿÿ ÿèöÑ&ë%îÿÿ ÿéôÏ&Ø% ÿÿ ÿéóÑ&òÿÿ ÿéòÏ&ë%ïÿÿ ÿé÷Ï&ëöÿÿ ÿéôÐ&ë%ðÿÿ ÿêõÏ&ø&Þ!¦ÿÿÿèôÐ&%ñ0üÿÿ ÿéôÏ&*&)(ÿÿ ÿéñÏ&ë'ÿÿ ÿèóÐ& 7ÿÿ ÿèôÏ&ë%òÿÿ ÿé÷Ñ&ë.£ÿÿ ÿèóÑ&ë&&%ÿÿ ÿéöÒ&ë*€ÿÿ ÿêóÏ&*.øÿÿÿéðÎ&%ó0üÿÿÿåõÇ&7ÿÿ ÿèõÐ&ë¢ÿÿ ÿéôÏ&ë%ôÿÿ ÿéóÏ&ë%õÿÿ ÿèõÐ&+âpÿÿ ÿéóÏ&*Êÿÿ ÿéöÏ&*7ÿÿ ÿêôÐ&*Pÿÿ ÿéöÏ&Õ7ÿÿ ÿêõÐ&*- ÿÿ ÿéñÏ&ë%Rÿÿ ÿé÷Ï&ø÷ÿÿ ÿèõÏ&p&l7 ÿÿ ÿêòÐ&Ë-.ÿÿ ÿèôÑ&ë%„ÿÿ ÿèóÐ&*@ÿÿ ÿéøÑ&ûËÿÿ ÿéðÏ&Ë&ú7 ÿÿ ÿèôÏ&*%öÿÿ ÿéñÑ&ø%÷ÿÿ ÿéöÏ&**…ÿÿ ÿéíÏ&*–ÿÿ ÿéòÏ&ë- ÿÿ ÿé÷Ñ&0û7 ÿÿ ÿéóÏ&*Oÿÿ ÿèóÐ&Ç&‰7 ÿÿ ÿçñÑ&*%øÿÿ ÿæóÐ&*.=ÿÿ ÿêóÏ&*7 ÿÿ ÿçöÐ&*7ÿÿ ÿéöÑ&lkÿÿ ÿæõÏ&ÿÿ ÿéõÏ&U&VWÿÿÿòõÌ&Ðÿÿ ÿèôÏ&%ÉKÿÿ ÿéóÏ&¶$'ÿÿ ÿéóÏ&¹Kÿÿ ÿèöÒ&$'$&ÿÿ ÿéõÏ&$''çÿÿ ÿéòÏ& Âÿÿ ÿèóÏ& ÿÿ ÿéðÏ& |ÿÿ ÿçõÓ&#Œ)@ÿÿ ÿéóÏ& )ÿÿ ÿèöÏ&'! ÿÿ ÿèöÏ&#ŒÇÿÿ ÿèõÏ& ¯ÿÿ ÿéñÑ& $”ÿÿ ÿèôÒ&)A7ÿÿ ÿçôÏ&Å#ŒÿÿÿêìÐ&)D)Cÿÿ ÿéóÏ&xMÿÿ ÿéèÐ&ëxÿÿÿéîÐ&ö%ÿÿ ÿéôÏ&z·ÿÿ ÿéõÏ&xyÿÿÿéíÑ&0%™ÿÿ ÿéìÏ&œ¬ÿÿ ÿéòÏ&z%¡ÿÿ ÿèôÏ&xÿÿ ÿéðÏ&{zÿÿ ÿéóÏ&%š¬ÿÿ ÿèîÏ&¬%›ÿÿÿèòÐ&r&%¤%œÿÿ ÿéóÏ&¬ÿÿ ÿéëÏ&z)ÿÿÿ ÿéóÏ&¬%£ÿÿ ÿèôÏ&%¦ÿÿ ÿéòÏ&¬%§ÿÿÿèîÏ&%¤7ÿÿ ÿèõÐ&ñ%¥ÿÿ ÿéôÏ&`zÿÿ ÿéòÑ&z7ÿÿ ÿéóÐ&zJÿÿ ÿéòÏ&zÒÿÿ ÿèôÏ& 0Ýÿÿ ÿéòÏ&©¬ÿÿÿèîÒ&%¬7ÿÿ ÿéóÏ&¬ýÿÿ ÿéóÏ&zEÿÿ ÿèðÉ&A7ÿÿÿèîÏ&³&%¥7ÿÿÿèîÏ& &%¥7 ÿÿ ÿéóÏ&z&Çÿÿ ÿéïÏ&z%­ÿÿ ÿéòÏ&¬%©ÿÿ ÿéôÏ&%¨7!ÿÿ ÿéõÐ&z%ªÿÿ ÿéóÑ&¬%%ÿÿ ÿèöÏ&z%«ÿÿ ÿçóÏ&¬ÿÿ ÿèöÎ& ‹ ÿÿ ÿèóÏ& 0sÿÿ ÿèôÏ&%¬7"ÿÿ ÿèïÐ&z0¹ÿÿ ÿéôÐ&•&–zÿÿ ÿéõÏ&¬";ÿÿ ÿèòÐ& % ÿÿ ÿéîÑ&z%®ÿÿ ÿéóÐ&z$bÿÿÿèîÏ&ø&%¥ ÿÿ ÿéðÑ&z‡ÿÿ ÿéõÑ&$7#ÿÿ ÿéôÏ&%—&»¼ÿÿ ÿçóÐ&ÿ&þ7$ÿÿ ÿéóÏ&z´ÿÿ ÿéõÏ&z%´ÿÿÿéîÎ&%—7%ÿÿ ÿèöÐ&z%µÿÿ ÿéòÏ&z,¿ÿÿ ÿçôÏ&zÅÿÿ ÿç÷Ò&z±ÿÿ ÿèôÏ&z7&ÿÿ ÿéòÐ&z-/ÿÿ ÿéöÏ&z%eÿÿ ÿèôÏ&)E%öÿÿ ÿèîÐ&%¬7'ÿÿÿéõÑ&%—7(ÿÿ ÿèöÏ& 7)ÿÿ ÿéöÏ&ª7*ÿÿ ÿèïÑ&%»7+ÿÿ ÿéñÐ&nßÿÿ ÿéõÐ&$nÿÿ ÿçøÐ&n%¼ÿÿ ÿéòÐ&n}ÿÿ ÿéóÐ&n¨ÿÿ ÿéõÐ&nmÿÿ ÿèöÏ& ÿÿ ÿéóÐ&n¿ÿÿ ÿèïÐ&n;ÿÿ ÿéòÐ&mnÿÿ ÿéòÐ&obÿÿ ÿéñÐ&p'Bÿÿ ÿéöÐ&oCÿÿ ÿéìÐ&nÿÿ ÿéöÏ&$'ÿÿ ÿèôÐ&oÊÿÿ ÿéôÐ&wnÿÿ ÿéóÐ&o)ÿÿ ÿèóÐ&%Ánÿÿ ÿéñÐ&n®ÿÿ ÿéëÐ&n ÿÿ ÿèðÐ&n& ÿÿ ÿéòÐ&o0iÿÿÿèïÈ&--ÿÿ ÿèôÐ&n,,ÿÿ ÿéóÐ&n%£ÿÿ ÿéôÐ&nøÿÿ ÿèìÐ&n&ÿÿ ÿè÷Ð&ñnÿÿ ÿçõÐ&oYÿÿ ÿéòÐ&o0°ÿÿ ÿéðÐ&oÃÿÿ ÿéóÐ&p&›šÿÿ ÿéëÐ&nWÿÿ ÿçóÐ&n%Ÿÿÿ ÿéòÐ&oÝÿÿ ÿéòÐ&nèÿÿ ÿéèÐ&n%žÿÿ ÿéòÐ&¡oÿÿ ÿéòÐ&nSÿÿ ÿéõÐ&pÿÿÿ ÿéöÐ&o$ÿÿ ÿèôÐ&nPÿÿ ÿéõÐ&o\ÿÿ ÿé÷Ð&oBÿÿ ÿéòÐ&n0Õÿÿ ÿèõÐ&oÏÿÿ ÿéöÐ&oøÿÿ ÿéõÐ&n7,ÿÿ ÿéîÐ&o.ÿÿ ÿéòÐ&o±ÿÿ ÿéöÐ&oŽÿÿ ÿæöÐ&n³ÿÿ ÿéóÐ&p&,ï7-ÿÿ ÿèóÐ&nVÿÿ ÿéóÑ&o!ÿÿ ÿèôÐ&o&]7.ÿÿ ÿéôÐ&o&FEÿÿ ÿéõÐ&pãÿÿ ÿéóÐ&oÿÿ ÿéòÐ&o*ÿÿ ÿééÐ&nÿÿ ÿéóÐ&oìÿÿ ÿçõÐ&o Õÿÿ ÿéòÐ&n0Žÿÿ ÿçõÑ&n ÿÿ ÿèõÐ&nLÿÿ ÿèôÐ&néÿÿ ÿéóÐ&p0qÿÿ ÿéõÐ&pÿÿ ÿéöÐ&p&`_ÿÿ ÿéëÐ&o&–àÿÿ ÿéõÐ&pÈÿÿ ÿèòÐ&p²ÿÿ ÿéôÐ&o'¯ÿÿ ÿçöÐ&o _ÿÿ ÿèóÏ&+Î7/ÿÿ ÿèôÐ&]&aÿÿ ÿéóÐ&o%Óÿÿ ÿéíÐ&o-ÿÿ ÿéôÐ&n(mÿÿÿèôÐ&)F]ÿÿ ÿé÷Ð&n1ÿÿ ÿéòÏ&¿70ÿÿ ÿéîÐ&n±ÿÿ ÿéóÐ&n&Çÿÿ ÿèïÏ&¿& 71ÿÿ ÿéóÐ&¤oÿÿ ÿéòÐ&o >ÿÿ ÿéóÐ&o(=ÿÿ ÿéóÐ&o1ÿÿ ÿèõÑ&&pÿÿ ÿéõÐ&o•ÿÿ ÿéêÐ&o72ÿÿ ÿéîÐ&p&JKÿÿ ÿéõÐ&o#Ìÿÿ ÿéõÐ&o"zÿÿ ÿèóÐ&o#>ÿÿ ÿêõÏ&¿:ÿÿ ÿéîÐ&n!#ÿÿ ÿéóÐ&nÓÿÿ ÿéóÐ&n+ÿÿ ÿéòÐ&o0¢ÿÿ ÿèìÐ&oàÿÿ ÿéõÐ&n"îÿÿÿèôÏ&P"¸ÿÿ ÿèóÐ&nˆÿÿ ÿéôÐ&o!"ÿÿ ÿéôÐ&o#Jÿÿ ÿéðÐ&’nÿÿ ÿéöÐ&o ‹ÿÿ ÿé÷Ð&r&pqÿÿ ÿèïÐ&o0¹ÿÿ ÿéôÐ&&oÿÿ ÿèôÐ&&]ÿÿ ÿèïÐ&o!ÿÿ ÿéôÐ&o"hÿÿ ÿéòÐ&o'mÿÿ ÿéóÏ&¿&-73ÿÿ ÿéõÐ&o$uÿÿ ÿéóÐ&nMÿÿ ÿéóÐ&o$Æÿÿ ÿèöÐ&o% ÿÿ ÿè÷Ð&oËÿÿÿèôÐ&](\ÿÿ ÿêóÏ&¿&+Ï74ÿÿ ÿéñÐ&¿&†75ÿÿ ÿèõÐ&o$nÿÿ ÿèõÐ&o ÿÿ ÿéôÐ&o&žÿÿ ÿèöÑ&o,yÿÿ ÿéôÒ&stÿÿ ÿéöÐ&nNÿÿ ÿéôÑ&onÿÿ ÿèôÏ&¿&Þ76ÿÿÿæñÐ&77ÿÿ ÿèõÐ&pÔÿÿÿæóÏ&+'ÿÿ ÿéóÐ&¿&÷78ÿÿ ÿçòÐ&o%âÿÿ ÿéóÐ&o&¤ÿÿ ÿçêÐ&p%ëÿÿ ÿéóÐ&n´ÿÿ ÿèôÐ&p<ÿÿ ÿéôÐ&o%éÿÿ ÿéòÐ&o&Ÿÿÿ ÿéõÐ&o%åÿÿ ÿèôÐ&& ]ÿÿ ÿéôÐ&p&,79ÿÿ ÿéðÐ&p,†ÿÿ ÿéõÐ&p¤ÿÿ ÿéñÐ&o'ÿÿ ÿéöÐ&p'‡ÿÿ ÿéõÔ&o'‹ÿÿ ÿé÷Ñ&p½ÿÿ ÿéöÐ&?+Ðÿÿ ÿçóÐ& ª& «+Ðÿÿ ÿé÷Ð&püÿÿ ÿèõÐ&o¢ÿÿ ÿéôÒ&pQÿÿ ÿéôÐ&p'ÿÿ ÿéðÐ&o%óÿÿ ÿç÷Ò&p(Rÿÿ ÿçõÐ&p0”ÿÿ ÿèôÑ&o%„ÿÿ ÿèôÏ&P7:ÿÿ ÿçõÐ&¿& ´+ÑÿÿÿèóÐ&+Ï7;ÿÿ ÿéõÏ&¿&+Ó7<ÿÿ ÿéñÑ&p%÷ÿÿ ÿéóÐ&pOÿÿ ÿèôÏ&¿7=ÿÿ ÿéóÐ&p.cÿÿ ÿéóÐ&p.Gÿÿ ÿéòÏ&¿¾ÿÿ ÿéðÐ&pÃÿÿ ÿèõÏ&þ¹ÿÿ ÿíðÏ&þ.ðÿÿÿéòÐ&™&7>ÿÿ ÿéõÏ&xþÿÿÿõîÁ&)G7?ÿÿÿõîÁ&)G7@ÿÿ ÿêóÄ&ÑÀÿÿ ÿêõÂ&À¹ÿÿ ÿñóÂ&Ênÿÿ ÿéìÎ&nYÿÿ ÿèëÐ&À)Hÿÿ ÿéóÄ&&nÿÿ ÿêõÏ&À+Äÿÿ ÿéðÂ&nÂÿÿ ÿî÷Æ&nÿÿ ÿèïÆ&À;ÿÿ ÿéòÏ&¬Àÿÿ ÿéõÍ&Àÿÿ ÿèöÏ&À¡ÿÿ ÿéñÅ&X'Bÿÿ ÿéôÎ&ÀÚÿÿ ÿéôÏ&:nÿÿ ÿéëÉ&n%’ÿÿ ÿéöÏ&Bÿÿ ÿèõÏ&ÀËÿÿ ÿóôÂ&wÀÿÿ ÿéöÃ&ÀÞÿÿ ÿèõÏ&nÿÿ ÿèðÅ&lXÿÿ ÿìõÍ&,ÿÿ ÿèìÏ&À%Âÿÿ ÿéóÃ& ÿÿ ÿæõÇ&)IÀÿÿ ÿçõÏ&^Yÿÿ ÿçôÐ&@&X+Ôÿÿ ÿ÷óÊ&ÀQÿÿ ÿéóÎ&Àÿÿ ÿéóÅ&Àÿÿ ÿéóÏ&Àÿÿ ÿíôÐ&øÀÿÿ ÿéóÏ&ÀÔÿÿÿîîÐ&)J7Aÿÿ ÿèôÏ&ÿÿ ÿíöÌ&1ÿÿ ÿêëÐ&ÀWÿÿ ÿèìÇ&&ÿÿ ÿéêÄ&Àjÿÿ ÿéèÐ&À%žÿÿ ÿéóÂ&À¶ÿÿ ÿèòÏ&X&ÿÿ ÿéïÐ&Rnÿÿ ÿéòÐ&kÀÿÿ ÿòõÆ&nÿÿ ÿêìÏ&+Õ& ¿ÿÿ ÿéóÆ&À)Kÿÿ ÿèòË& Ÿÿÿ ÿéïÏ&X/¶ÿÿ ÿêõË&^5ÿÿ ÿèöÐ&ÀÂÿÿ ÿèîÏ&ÀXÿÿ ÿóôÂ&À&w7Bÿÿ ÿéòÏ&nTÿÿ ÿíóÏ&'¦ÿÿ ÿéóÏ&Àÿÿ ÿèôÐ&ÀPÿÿ ÿéôÏ&XPÿÿ ÿé÷Ï&+Xÿÿ ÿéóÏ&Xâÿÿ ÿèñÐ&'ÿÿ ÿèïÍ&^0ÿÿ ÿéìÉ&Àaÿÿ ÿéòÏ&À{ÿÿ ÿéðÏ&¶ÿÿ ÿêïÆ&Gÿÿ ÿéõÐ&\ÿÿ ÿéöÏ&–ÿÿ ÿêíÑ&žÀÿÿ ÿëóÍ&)Lÿÿ ÿéóÇ&ÀÁÿÿ ÿèíÒ&¾Àÿÿ ÿé÷Ì&Eÿÿ ÿéôÑ& ¸Àÿÿ ÿéóÎ&X&ÙØÿÿ ÿïóÏ&Àÿÿ ÿéóÏ&À'ÿÿ ÿèôÏ&&ÿÿ ÿëúÅ& ^ÿÿ ÿêóË&-ÿÿ ÿéóÊ&X©ÿÿ ÿé÷Ï&X'Qÿÿ ÿñòÇ&À0@ÿÿ ÿèóÐ&ÀŒÿÿ ÿêõÏ& &‡ÿÿ ÿéóÅ&Šÿÿ ÿçøÏ&=ÿÿ ÿéòÃ&*Çÿÿ ÿèôÆ&Àéÿÿ ÿéòÎ&X%>ÿÿ ÿéñÆ&Àòÿÿ ÿëóÆ&À(6ÿÿ ÿé÷Ñ&À,Íÿÿ ÿéóÏ&^0nÿÿ ÿêóÏ&X(5ÿÿ ÿéêÉ&(9ÿÿ ÿèõÐ&ÀLÿÿ ÿñóÄ&Xìÿÿ ÿæôÎ&-ÿÿ ÿéóÐ&³Àÿÿ ÿèôÐ&À>ÿÿ ÿèñÇ& &&e7Cÿÿ ÿéòÐ&X*ÿÿ ÿèõÏ&/>ÿÿ ÿéëÏ&à& 7Dÿÿ ÿêöÐ&X&âIÿÿ ÿéðÐ&ÀQÿÿ ÿçõÑ&Žÿÿ ÿçõÓ&X)@ÿÿ ÿéñÅ&¼Xÿÿ ÿéóÄ&.Mÿÿ ÿéöÈ&7Eÿÿ ÿçôÏ&ªXÿÿ ÿéöÏ&.V ÿÿ ÿêøÅ&Xüÿÿ ÿéòÐ&X%Ðÿÿ ÿéóÑ&!Xÿÿ ÿèòÏ&X²ÿÿ ÿéóÎ&À&Çÿÿ ÿëõÆ&X)Mÿÿ ÿéíÃ&X°ÿÿ ÿèöÎ&X»ÿÿ ÿé÷Î&(;Xÿÿ ÿéöÏ&"HXÿÿ ÿé÷Ä&ŒÀÿÿ ÿéõÑ&ýXÿÿ ÿèðÐ&iXÿÿ ÿèôÏ&ÛXÿÿ ÿéëÇ&À¾ÿÿ ÿéóÐ& OXÿÿ ÿéöÏ& .íÿÿ ÿéñÉ&.ï.îÿÿÿìòÆ&-9ÿÿÿîñÈ&)N-ÿÿ ÿéòÏ& YXÿÿ ÿçóÏ&X&ú-ÿÿ ÿëôÏ&X[ÿÿ ÿéóÇ&!ÿÿ ÿéòÎ&X.Xÿÿ ÿéíÈ& ˆXÿÿ ÿèïÇ&X!ÿÿ ÿéöÎ&X"Yÿÿ ÿîòÏ&À"žÿÿ ÿïóÉ&8Ôÿÿ ÿéöÐ& ßÿÿ ÿéóÐ&X"÷ÿÿ ÿéõÏ&X£ÿÿ ÿéòÐ&<^ÿÿ ÿèòÐ&X7Fÿÿ ÿéòÐ&#£ ÿÿ ÿéõÏ&"îÿÿ ÿçõÉ&Yÿÿ ÿéôÐ&#XXÿÿ ÿéöÄ& ‹Xÿÿ ÿèòÌ&Ÿÿÿ ÿéñÏ&¿Àÿÿ ÿéîÏ&J&K ÿÿ ÿè÷Ï&!ßXÿÿ ÿéöÏ&Xÿÿ ÿèóÏ&Àˆÿÿÿè÷Æ&--ÿÿ ÿéñÏ&%Xÿÿ ÿéöÏ&Nÿÿ ÿêðÏ&$|Àÿÿ ÿêòÏ&)OXÿÿ ÿðôÅ&ÀÉÿÿ ÿèõÏ&$nXÿÿ ÿêðÇ&#wXÿÿÿíëÏ& 7Gÿÿ ÿéñÇ&ÿÿ ÿéôÑ&Рÿÿ ÿéõÆ&$Xÿÿ ÿèñÑ&0— ÿÿ ÿéôÑ&ŒÀÿÿ ÿèôÏ&(‚Xÿÿ ÿèõÐ& Xÿÿ ÿíóÐ&Àåÿÿ ÿêôÅ&"†ÿÿ ÿéòÏ&X'mÿÿ ÿéóÏ& /ÿÿ ÿéôÏ&X7Hÿÿ ÿéóÏ&X+ÿÿ ÿêöÐ& Eÿÿ ÿïóÏ&#_ÿÿÿìóÌ&-&k7Iÿÿ ÿéòÏ&X-<ÿÿ ÿêöÑ&X%Øÿÿ ÿïöÍ&X7Jÿÿ ÿéðÑ& (Fÿÿ ÿéõÑ&X#€ÿÿ ÿé÷Í&X(Eÿÿ ÿéõÐ& 0^ÿÿ ÿèõÐ& &ÿÿ ÿëòÏ&X&ú7Kÿÿ ÿéòÏ&X Þÿÿ ÿéôÑ&Xnÿÿ ÿæïÇ& ,(ÿÿ ÿêõÐ& &-7Lÿÿ ÿîöË& %ÿÿ ÿêíÑ&X'‚ÿÿ ÿéóÌ&X%íÿÿÿìòÏ&ð&-7Mÿÿ ÿéôÏ& *Òÿÿ ÿçìÇ&X%êÿÿ ÿçòÏ&X%âÿÿ ÿêóÐ&X&¤ÿÿ ÿéóÉ&X)Pÿÿ ÿêòÏ&^üÿÿ ÿíõÍ&Þ& 7Nÿÿ ÿêôÇ&X7Oÿÿ ÿèôÐ&Xýÿÿ ÿèõÐ& &7Pÿÿ ÿèôÏ& 'Šÿÿ ÿíòÑ&-.ÿÿ ÿêôÐ& %ðÿÿ ÿèôÏ& -ÿÿ ÿéøÊ&À¡ÿÿ ÿéðÏ&X'ÿÿ ÿíõÇ& &!Þÿÿ ÿéõÔ&X'‹ÿÿ ÿéõË&¤ÿÿ ÿíôÉ& 7Qÿÿ ÿíõÌ& &Þ!¦ÿÿ ÿêôÍ&- ÿÿ ÿîôÏ&X%ôÿÿ ÿéóÑ&÷& 7Rÿÿ ÿçóÑ&¡ÿÿ ÿéóÏ&X%õÿÿ ÿèôÉ&.|Xÿÿ ÿìôÌ&-7Tÿÿ ÿéõÑ&5ÿÿ ÿéøÏ& )Qÿÿ ÿéðÊ&X%óÿÿ ÿéõÏ&X!×ÿÿ ÿíôÏ&X.zÿÿ ÿéóÆ& %hÿÿ ÿèóÐ& @ÿÿ ÿèòÍ&X%[ÿÿ ÿèõÑ&X/üÿÿ ÿíõÐ& &Þ7Uÿÿ ÿéöÐ&H ÿÿ ÿçôÏ&0 ÿÿ ÿèòË&X-ÿÿÿêôË&-7Vÿÿ ÿéñÑ& %÷ÿÿ ÿéîÏ& 7Wÿÿ ÿéóÏ&O ÿÿ ÿçöÏ& 7Xÿÿ ÿçõÐ& ‡ÿÿ ÿèöÐ& &07Yÿÿ ÿçòÏ&(¼ÿÿ ÿçõÏ&¼7[ÿÿ ÿçøÏ&¼7\ÿÿ ÿçøÏ&EüÿÿÿçõÏ&GFÿÿ ÿç÷Í&z)Rÿÿ ÿéóÐ&u&wvÿÿ ÿè÷Ñ&)S)Rÿÿ ÿçûÏ&! 7]ÿÿ ÿéóÎ&xÿÿ ÿêõÄ&)Vÿÿ ÿéóË&xyÿÿ ÿéöÏ&ynÿÿÿèõÏ&›1 ÿÿÿëõÄ&+·ÿÿ ÿéôÆ&x! ÿÿ ÿéóÉ&xïÿÿÿéõÏ&7^ÿÿÿêõÏ&_aÿÿ ÿéöÎ&mnÿÿ ÿêõÑ&*)™ÿÿ ÿèõÏ& 1 ÿÿÿéõÆ&Ýÿÿ ÿéöÑ&)T)UÿÿÿêõÐ&.ÿÿ ÿèöË&.ÝnÿÿÿéöÐ&)Xnÿÿ ÿêöÏ&)Y)Tÿÿ ÿçöÏ&- nÿÿ ÿèöÐ&)W"½ÿÿÿêõÑ&  ÿÿ ÿëõÉ& —+ÿÿÿéõÉ& ˜ÿÿÿçñÏ&& øÿÿ ÿêöÐ&.á)Tÿÿ ÿéöÑ&)[)WÿÿÿêöÄ&)WšÿÿÿçñÏ&&ÿÿ ÿéöÏ&)T)ZÿÿÿêöÏ&.7_ÿÿ ÿêõÎ&%‡0ÿÿÿéõÏ&µ+ÿÿ ÿêöÎ&)\)Wÿÿ ÿêõÑ&..ÿÿ ÿéöÒ&)])WÿÿÿêõÑ&-,ÿÿÿêõÉ&/.ÿÿ ÿèöÐ&0)WÿÿÿçòÏ&+¶7`ÿÿ ÿéóÏ&5&Nÿÿ ÿéöË&nÿÿ ÿêóÎ&³´ÿÿÿéíÒ&)`)^ÿÿ ÿòòÎ&%Fÿÿ ÿêëÎ&-!ÿÿÿêöÎ&)_%GÿÿÿèòÂ&~ÿÿ ÿèåÑ&€ÿÿÿêìÑ&ƒ&‚ÿÿ ÿêâÆ&ÿÿÿèóÂ&qoÿÿÿéíÆ&rÿÿÿèíÐ&FÅÿÿÿèÞÐ&)áÆÿÿÿðóÏ&p´ÿÿ ÿçóÆ&&¿-"ÿÿÿéâÍ&)â7eÿÿÿéìÐ&%5%4ÿÿ ÿéóÐ&ÂÃÿÿÿêïÎ&G*ØÿÿÿêòÎ&F¾ÿÿÿéöÎ&ÄFÿÿÿéõÏ&FEÿÿÿèôÏ&GÿÿÿèöÏ&F¥ÿÿÿéöÏ&{ÿÿ ÿêèÏ& µïÿÿÿèõÏ&(á)àÿÿÿèóÏ&ÿÿÿéåÏ&)ß7fÿÿ ÿè÷Ñ&M7gÿÿÿéöÐ&{³ÿÿÿèðÐ&-1+#ÿÿ ÿéõÐ&ÀÁÿÿÿèôÉ&-07hÿÿ!ÿéÞÐ&-))ßÿÿ ÿè÷Ð&-2äÿÿÿéóÐ&GNÿÿÿéõÐ&ÿÿÿïôÏ&Gôÿÿ ÿêõÈ&ƒ„ÿÿÿé÷Ï&®ÿÿ ÿèõÎ&-3Mÿÿ ÿèõÑ&ä7jÿÿÿêõÏ&GdÿÿÿçõÑ&{ ÿÿ ÿè÷Ñ&äåÿÿÿíîÈ&„7lÿÿÿéôÏ&|{ÿÿÿéöÇ& ×{ÿÿÿéóÎ&&ÇÿÿÿéöÐ&"IÿÿÿîñÏ&!aÿÿÿíóÏ&´ÿÿÿéôÎ&*Ñÿÿ ÿéôÈ& 7rÿÿÿéóÏ&0ÄÿÿÿîòÍ&& ÿÿ ÿèöÏ&?ÿÿ ÿèöÐ&?&ÿÿ ÿéóÐ&ˆ-#ÿÿ ÿèðÑ&‚sÿÿ ÿèðÑ&‚1ÿÿ ÿèðÑ&‚7ÿÿ ÿèðÑ&‚•ÿÿ ÿèðÑ&‚8ÿÿÿèóÒ&9}ÿÿ ÿèõÑ&‚7vÿÿ ÿèðÑ&‚7wÿÿ ÿèñÑ&‚7xÿÿ ÿèðÑ&‚7yÿÿ ÿèðÑ&‚7zÿÿ ÿèöÑ&%ù‚ÿÿ ÿèðÑ&‚7ÿÿ ÿèôÑ&‚7{ÿÿ ÿèòÑ&¦‚ÿÿ ÿèôÑ&‚7|ÿÿÿèóÒ&}:ÿÿ ÿèôÑ&‚7}ÿÿ ÿçðÑ&‚7~ÿÿ ÿèñÑ&‚7ÿÿ ÿèõÑ&‚7€ÿÿ ÿèóÑ&‚7ÿÿ ÿèöÑ&‚7‚ÿÿÿèóÒ&}7ƒÿÿ ÿèñÑ&‚7„ÿÿ ÿèðÑ&§‚ÿÿÿéòÒ&€7…ÿÿ ÿèñÑ&‚7†ÿÿÿèôÒ&}éÿÿ ÿèóÑ&‚7‡ÿÿ ÿèóÑ&‚7ˆÿÿÿèóÒ&}&´ÿÿÿæ÷Ò&}~ÿÿÿèóÒ&}7‰ÿÿ ÿèôÑ&‚7Šÿÿ ÿçðÑ&u‚ÿÿ ÿèðÑ&‚7‹ÿÿ ÿèðÑ&‚7ŒÿÿÿèóÒ&}7ÿÿÿèóÒ&}7Žÿÿ ÿèðÑ&‚7ÿÿÿèóÒ&}ÿÿ ÿèñÑ&‚7ÿÿ ÿèðÑ&‚‘ÿÿ ÿèóÑ&‚7‘ÿÿÿèôÒ&}_ÿÿÿèóÒ&}ÿÿ ÿèðÑ&‚7’ÿÿÿèôÒ&}9ÿÿ ÿèðÑ&‚Ÿÿÿ ÿèðÑ&‚7“ÿÿÿèóÒ&}uÿÿ ÿèñÑ&‚7”ÿÿÿèóÒ&}»ÿÿÿèóÒ&}äÿÿÿèôÒ&}Gÿÿ ÿèðÑ&‚ãÿÿÿèóÒ&}åÿÿ ÿèóÑ&÷‚ÿÿ ÿèóÑ&­‚ÿÿÿèóÒ&}7•ÿÿ ÿèðÑ&‚7–ÿÿÿèóÒ&}7—ÿÿÿèóÒ&}7˜ÿÿ ÿèðÑ&‚7™ÿÿÿèòÒ&€7šÿÿÿèóÒ&}7›ÿÿÿèóÒ&}7œÿÿÿèóÒ&}7ÿÿÿèóÒ&}7žÿÿÿèóÒ&}7ŸÿÿÿèõÒ&}7 ÿÿÿèóÒ&}7¡ÿÿ ÿèôÑ&‚7¢ÿÿ ÿèõÑ&‚7£ÿÿÿèóÒ&}7¤ÿÿ ÿèðÑ&‚7¥ÿÿ ÿèðÑ&k‚ÿÿ ÿèðÑ&ë‚ÿÿÿèóÒ& P}ÿÿÿèúÒ&€ÿÿ ÿèõÑ&‚7¦ÿÿ ÿèðÑ&‚7§ÿÿ ÿèõÑ&‚7¨ÿÿ ÿèñÑ&«‚ÿÿ ÿèöÑ&‚7©ÿÿÿèóÒ&}7ªÿÿ ÿèòÑ&‚7«ÿÿ ÿèòÑ&‚7¬ÿÿ ÿèðÑ&‚7­ÿÿ ÿèðÑ&ë‚ÿÿ ÿèðÑ&‚7®ÿÿÿéòÒ&€7¯ÿÿÿèôÒ&}7°ÿÿÿè÷Ò&}7±ÿÿÿèóÒ&}oÿÿÿèôÒ&}7²ÿÿÿèóÒ&}ÕÿÿÿèóÒ&#}ÿÿÿèóÒ&}#ÿÿÿèõÒ&}7³ÿÿÿéúÒ&€#àÿÿÿèóÒ&}& µ ¶ÿÿÿèóÒ&}"ÿÿÿèóÒ&}4ÿÿÿçóÒ&}7´ÿÿÿèóÒ&}7µÿÿÿçôÒ&}"°ÿÿÿèóÒ&}7¶ÿÿÿçóÒ&} ŽÿÿÿèóÒ&!Æ}ÿÿÿèôÒ&}7·ÿÿÿèôÒ&}#·ÿÿÿèôÒ&}"‡ÿÿÿèõÒ&}7¸ÿÿÿèöÒ&}7¹ÿÿÿèôÒ&}$ŠÿÿÿèóÒ&}7ºÿÿÿéöÒ&€& Ú ÛÿÿÿéõÒ&€ÌÿÿÿèõÒ&}7»ÿÿÿçòÓ&}7¼ÿÿÿèóÒ&€7½ÿÿÿèôÒ&}7¾ÿÿÿèóÒ&}7¿ÿÿ ÿèòÑ&‚#ÿÿ ÿèôÑ&‚7ÀÿÿÿéóÒ&€7ÁÿÿÿèóÒ&}7Âÿÿÿè÷Ò&}#DÿÿÿèõÒ&}7ÃÿÿÿèôÒ&}7ÄÿÿÿèóÒ&}7ÅÿÿÿèöÒ&}7ÆÿÿÿèõÒ&}7ÇÿÿÿéöÒ&€7ÈÿÿÿèõÒ&}7ÉÿÿÿæõÒ&}7ÊÿÿÿèòÒ&€7ËÿÿÿèôÒ&}7ÌÿÿÿèóÒ&}7ÍÿÿÿèóÒ&}7ÎÿÿÿçòÓ&}7ÏÿÿÿèôÒ&}7ÐÿÿÿèôÒ&}%ÿÿÿéöÒ&€7ÑÿÿÿçôÒ&}7ÒÿÿÿæóÒ&}7ÓÿÿÿèöÒ&}7ÔÿÿÿéôÒ&€7ÕÿÿÿçòÓ&}7ÖÿÿÿéòÒ&€7×ÿÿÿçõÓ&}7ØÿÿÿèòÒ&€7ÙÿÿÿèóÒ&}7ÚÿÿÿèôÒ&}7ÛÿÿÿèòÒ&€7ÜÿÿÿèôÒ&}7ÝÿÿÿçöÓ&}7ÞÿÿÿèôÒ&€7ßÿÿÿèõÒ&}7àÿÿÿèôÒ&}7áÿÿÿèòÒ&€7âÿÿÿçòÓ&}7ãÿÿÿè÷Ò&}7äÿÿÿèôÒ&}7åÿÿÿèóÒ&}7æÿÿÿèôÒ&}7çÿÿÿçøÓ&}7èÿÿÿèôÒ&€%wÿÿÿçöÓ&}7éÿÿÿçóÓ&}7êÿÿÿéôÒ&€7ëÿÿÿçòÓ&}7ìÿÿÿéõÒ&€7íÿÿÿèóÒ&}7îÿÿÿçòÓ&}7ïÿÿÿçöÓ&}7ðÿÿÿçôÓ&}7ñÿÿÿæôÒ&}&‘7òÿÿÿçôÓ&}7óÿÿÿçòÓ&}7ôÿÿÿç÷Ó&}7õÿÿÿèóÒ&}7öÿÿÿçòÓ&}7÷ÿÿÿçôÓ&}7øÿÿÿæóÒ&}&‘7ùÿÿÿçöÓ&}7úÿÿ ÿçöÏ&ƒ7üÿÿ ÿîöÏ&ƒ7ýÿÿ ÿçöÏ&ƒ&…„ÿÿÿìðÐ&œ-%ÿÿ'ÿìèÐ&T‹ÿÿÿéðÒ&-$ÿÿ ÿéðÐ&‹ÿÿ ÿêñÐ&ŒÿÿÿéìÏ&Y%6ÿÿ"ÿèòÏ&-&7ÿÿÿïðÐ&-'-(ÿÿÿèõÏ&‘ÿÿÿìöÎ&D-,ÿÿÿçõÏ&’Yÿÿ ÿçõÐ&-)7ÿÿÿÿèôÐ&PÿÿÿéóÏ&æ“ÿÿÿéóÐ&-)8ÿÿÿíôÎ&’,”ÿÿÿé÷Ï&c“ÿÿÿêóÎ&E’ÿÿÿéïÁ&ÿÿÿëõÏ&’’ÿÿ ÿéïÎ&-*ÜÿÿÿîòÏ&L-,ÿÿÿéëÐ&-)8ÿÿÿéòÐ&% -,ÿÿÿèöÒ&îíÿÿÿèõÑ&-+’ÿÿÿêòÏ&’üÿÿÿèõÐ&&-,8ÿÿÿèóÐ&+R-,ÿÿÿêòÐ&¨-.ÿÿÿéòÎ&- -,ÿÿÿçóÐ& ã!,ÿÿ ÿéóÐ&-4ûÿÿ ÿéôÐ&®-5ÿÿÿéôÏ&­®ÿÿ ÿéõÏ&%°†ÿÿÿéõÏ&+¬†ÿÿ ÿéõÏ&† ýÿÿ ÿéõÏ&†! ÿÿÿçôÐ&!! ãÿÿ ÿéõÑ&†%¯ÿÿ ÿéõÏ&†8ÿÿ ÿéõÐ&%±†ÿÿ ÿéõÐ&%²%³ÿÿ ÿîóÅ& ö8ÿÿ ÿîóÅ& ö8ÿÿ ÿîóÄ& ø8ÿÿ ÿîóÐ& ûÿÿ ÿîóÏ&Ù ÷ÿÿ ÿîóÈ&r øÿÿ ÿîóÐ& ÷ÿÿ ÿîóÒ& ö8ÿÿ ÿîóÐ& ø8 ÿÿ ÿîóÐ&$+ ÷ÿÿ ÿîóÓ& ø8 ÿÿ ÿîóÏ& û&ïîÿÿ ÿîóÏ& û8 ÿÿ ÿîõÏ& ø8 ÿÿ ÿîóÏ&ñ&ð øÿÿ ÿîóÏ&ò øÿÿ ÿîóÐ&Å øÿÿ ÿîóÏ&-&, øÿÿ ÿîóÐ&Æ øÿÿ ÿîóÒ&8 ÿÿ ÿîóÑ&‹ øÿÿ ÿîóÐ&•& öÇÿÿ ÿîôË& ùÿÿ ÿîóÐ& ú ÿÿ ÿîóÌ& ø8ÿÿ ÿîóÏ& ù8ÿÿ ÿîóÐ&Ð øÿÿ ÿîõÏ&;&ÿÿ ÿîóÏ&Èÿÿ ÿîôÓ&Ô8ÿÿ ÿîôÏ&Ó& øÒÿÿ ÿîôÏ&…&" úÿÿ ÿîóÒ&Ñ øÿÿ ÿîóÑ& ú8ÿÿÿêóÄ&ÑtÿÿÿéóÄ& ߨÿÿÿéðÀ&tÂÿÿÿðóÏ& ßÿÿÿêòÎ& ßÿÿÿêîÏ&t*ÚÿÿÿééÏ&¸!pÿÿÿìõÏ& à!qÿÿÿêóÊ& ß!rÿÿÿêóÏ& ß!sÿÿÿéôÎ&Ú ßÿÿÿçõÄ& ß!vÿÿÿêðÁ& ß!nÿÿÿèõÏ&‘0 ÿÿÿèôÏ& à(/ÿÿÿëôÏ& à"ÿÿÿíõÍ&n ßÿÿÿòôÇ& ß…ÿÿÿòôÂ& ß!mÿÿÿéïÏ& ß& ó!IÿÿÿéìÏ& ß!wÿÿÿçóÐ& ß%ŸÿÿÿèöÐ& ßÿÿÿéòÐ&t0öÿÿ ÿêîÐ&%H)bÿÿÿé÷Ï&S0¡ÿÿÿêòÏ&tSÿÿÿéóÅ& ß'ìÿÿ ÿéöÐ&2-6ÿÿÿèõÏ& ß+ÿÿÿêðÇ&Ã0¡ÿÿ ÿéôÏ&ƒ2ÿÿÿíöÌ&‡1ÿÿÿéêÄ&j ßÿÿÿê÷Ï&t³ÿÿÿéóÏ& ßÔÿÿÿïóÏ& ß~ÿÿÿéôÏ&0 ]ÿÿÿè÷Ï& à)ÿÿÿéòÆ&0 ßÿÿÿêêÏ&µ ßÿÿÿêíÑ& àžÿÿÿèíÏ& ßÿÿÿïóÈ& ßÿÿ ÿéõÐ&ñ8ÿÿÿèòÐ& ßÖÿÿÿèöÎ&Ö ßÿÿÿé÷Ì&B‡ÿÿÿéðÏ& ß¶ÿÿÿêõÉ& ß~ÿÿÿéòÐ&‡÷ÿÿÿéñÈ&8ÿÿÿéóÑ&‡!ÿÿÿçõÑ&  ßÿÿÿéêÐ&c ßÿÿÿéôÈ&‡/ÿÿÿëõÏ& ß’ÿÿÿèóÐ&Œ0 ÿÿÿééÉ& ßÿÿÿé÷Ï&‡'QÿÿÿêøÑ& 0 ÿÿÿëñÆ& ßLÿÿÿéòÐ& à*ÿÿÿêîÈ& àßÿÿÿéöÏ& ßÿÿÿñõÏ&)z ßÿÿÿèôÏ& àÛÿÿÿéóÏ& à ÿÿÿéöÏ&"H àÿÿÿèôÏ& à'ØÿÿÿçõÏ&Þ0¡ÿÿÿìôÊ&'×0 ÿÿÿéóÏ& ß'°ÿÿÿéóÏ& à¤ÿÿÿéóÏ& à)aÿÿÿéóÏ&1 ßÿÿÿìõÏ&‡'ÙÿÿÿïòÏ&‡£ÿÿÿéôÐ& ߟÿÿÿêôÐ&)b8ÿÿÿéôÏ&'¯ àÿÿÿïñÍ&‡)cÿÿÿêóÐ&‡)dÿÿÿèöÏ& à `ÿÿÿé÷Ä&Œ ßÿÿÿçòÈ&ÇÆÿÿÿèóÏ&+­0 ÿÿÿéñÎ& à(AÿÿÿéëÇ&¾ àÿÿÿéöÏ& àÿÿÿéóÏ&#\&)e8ÿÿÿéóÏ& ß+ÿÿÿéóÊ&"0 ÿÿÿèõÍ& à"|ÿÿ ÿêôÐ&#b&#c)bÿÿÿéõÈ& ß";ÿÿ ÿçõÏ&)f)gÿÿÿèòÍ&)h0¡ÿÿÿéòÏ&‡0¢ÿÿÿè÷Ï&‡&"Î%ýÿÿÿëòÎ&ú&ù‡ÿÿÿéõÏ&‡*oÿÿ ÿèõÑ&T8ÿÿÿçóÐ&‡æÿÿÿìôÎ&‡*qÿÿÿèôÏ&0 0£ÿÿÿêðÑ&‡‡ÿÿ ÿèóÊ&$ÅÿÿÿèóÇ& á àÿÿÿéôÏ&‡‚ÿÿÿéôÑ&‡nÿÿÿéòÏ&tÿÿÿèõÏ&£‡ÿÿÿëîÏ& à)jÿÿÿêöÐ&‡)kÿÿÿçôÐ& ß1ÿÿÿéðÑ&‡)lÿÿÿéòÏ& Þ‡ÿÿÿéóÉ&†‡ÿÿÿðóÏ& à¦ÿÿÿèøË&,c&0¡8ÿÿÿéñÏ&n&M&)nÿÿÿìõÏ& à/ÿÿÿéôÑ&û)eÿÿÿêõÏ&%è‡ÿÿÿêóÐ&‡&¤ÿÿÿéïÊ&0 8ÿÿÿîöË& ßÿÿÿéóÉ& ß%ãÿÿÿèðÎ&.\.xÿÿÿéôÏ&‡'ãÿÿÿèõÐ&‡&8 ÿÿÿèôÏ&‡'äÿÿÿçìÇ&.x%êÿÿÿíóÐ&‡'¾ÿÿÿéöÐ&‡.#ÿÿÿéôÎ&‡%'ÿÿÿçôÏ&‡'|ÿÿÿéîÊ&‡&ï8!ÿÿÿèôÏ&‡%òÿÿÿéöÒ&‡*€ÿÿÿéòÐ&0¡0¥ÿÿÿéöÑ&‡&ÄÿÿÿéòÑ&W)eÿÿ ÿéðÌ&-¹8"ÿÿÿéøÊ& ß¡ÿÿÿèõÐ&‡¢ÿÿÿéñÏ& ß(ÿÿÿçóÑ& ß¡ÿÿÿéóÏ&‡8#ÿÿÿèôÑ&%„0 ÿÿÿèõÑ& à/üÿÿÿçóÑ& à8$ÿÿÿèñÈ&.x,ÀÿÿÿéöÐ&}‡ÿÿÿéñÏ&‡)mÿÿ ÿéðÓ&)n…ÿÿ ÿéñÒ&/ý8%ÿÿÿæðÑ&‡)oÿÿÿèïÉ&ô&.y8&ÿÿÿéðÌ&/Œ0åÿÿ ÿèõÏ&!C)rÿÿ ÿéóÏ&)rÿÿÿéóÐ&ö8*ÿÿ ÿëêÏ&)p*uÿÿ ÿéèÐ&‹&/6ÿÿ ÿéõÏ&Š`ÿÿ ÿëôÏ&‹žÿÿ ÿèöÏ&Šáÿÿ ÿëôÏ&Š&Aÿÿ ÿëôÏ&Šøÿÿ ÿèõÑ&Љÿÿ ÿéõÏ&Š%´ÿÿ ÿêîÑ&Š'ÿÿ ÿéõÏ&Š!×ÿÿ ÿèôÏ&/¢/þÿÿ ÿêõÂ&»ªÿÿ ÿéôÆ&Ã)qÿÿ ÿéóÄ&Ã&ÿÿÿéõ¿&g´ÿÿÿìóÌ&gýÿÿ ÿêòÎ&Ãÿÿ ÿñóÁ&ÃÊÿÿÿñðÎ&g)uÿÿ ÿèöÁ&»ÿÿ ÿêóÐ&¿@ÿÿÿéíÇ&g%9ÿÿ ÿèïÆ&Ã;ÿÿ ÿèôÏ&@(/ÿÿ ÿéóÅ&p»ÿÿÿéöÏ&C)sÿÿ ÿéöÎ&ÃÄÿÿ ÿèîÏ&)t8+ÿÿÿéíÏ&C&+À8,ÿÿ ÿéõÑ&²Ãÿÿ ÿèöÏ&çÿÿÿêôÎ&¿gÿÿ ÿéóÆ&‡»ÿÿÿéñÅ&gyÿÿÿìõÍ&gÿÿ ÿèõÇ&»Uÿÿ ÿéôÅ&ÃÿÿÿéöÏ&giÿÿ ÿéôÐ&Ã*rÿÿÿèðÏ&·Cÿÿ ÿìõÏ&Ãÿÿ ÿæõÇ&@)IÿÿÿçöÇ&Ì+dÿÿÿéóÏ&*s¸ÿÿ ÿéóÐ&ÃUÿÿ ÿñõÆ&Ãÿÿ ÿñòÁ&Ã&ÿÿÿéóÁ&C¶ÿÿ ÿîóÏ&òÿÿÿèóÏ&gîÿÿ ÿèôÏ&63ÿÿÿéòÏ&gNÿÿÿéòÏ&/’CÿÿÿéóÐ&*s0ÒÿÿÿèôÂ&*sÿÿ ÿñóÏ&Ã'ËÿÿÿñóÐ&g)vÿÿÿê÷Ï&g³ÿÿ ÿèôÐ&)t0‰ÿÿ ÿéöÏ&Ã8-ÿÿ ÿéóÅ&ÃÿÿÿçõÏ&FgÿÿÿíôÐ&øCÿÿÿéò¿&Îgÿÿ ÿèóÏ&@ÿÿ ÿèôÏ&Ã)wÿÿ ÿéïÐ&ÃRÿÿÿñòÇ&C)xÿÿ ÿèòÏ&Ã-ºÿÿ ÿèóÅ&»lÿÿ ÿèóÏ&@)tÿÿ ÿïõÐ&Ã8.ÿÿÿêòÏ&g ÿÿ ÿêõÎ&»¹ÿÿ ÿéëÏ&ôÿÿÿéöÏ&˜CÿÿÿïóÏ&*s~ÿÿÿéìÐ&CÝÿÿÿéóÏ&g0Öÿÿ ÿéóÏ&Ãÿÿ ÿêõÑ&»2ÿÿ ÿéõÐ&Ãÿÿ ÿêõÉ&ÃHÿÿÿèïÏ&C&¡ ÿÿÿëóÆ&Cæÿÿ ÿéìÈ&ÃaÿÿÿéòÇ&ÒCÿÿ ÿéöÇ&Ã|ÿÿÿæöÏ&C³ÿÿ ÿæôÏ&Ãÿÿ ÿîòÄ&éÿÿ ÿéêÐ&Öÿÿ ÿêóÍ&ÃEÿÿ ÿèõÐ&ÃLÿÿÿéöÐ&C(lÿÿÿèôÏ&C Ùÿÿ ÿèôÏ&@0Ýÿÿ ÿéóÏ&Ã)yÿÿ ÿèñÏ&0e)tÿÿÿé÷Ï&gcÿÿ ÿèôÐ&>@ÿÿ ÿæöÆ&»AÿÿÿðóÍ&0gÿÿ ÿéíÏ&?Ãÿÿ ÿèôÆ&Ãrÿÿ ÿèóÏ&)t0ÊÿÿÿêîÈ&Cßÿÿ ÿéïÌ&ÃWÿÿ ÿéöÏ&Öÿÿ ÿñòÌ&Ã)ÇÿÿÿéõÏ&*t&.œÿÿ ÿêøÅ&»){ÿÿ ÿèñÈ&0Í)tÿÿÿéíÉ&ÉÌÿÿ ÿïôÏ&Ã)|ÿÿÿñóÐ&gÉÿÿ ÿéóÑ&Ã"ÿÿ ÿéóÏ&Ã'ÿÿÿéöÏ&.í*tÿÿÿéîÇ&ìCÿÿ ÿèñÐ&•&)}80ÿÿÿéôÑ&9Ìÿÿ ÿéëÇ&@¾ÿÿÿé÷Ä&ŒCÿÿÿêòÆ&*sÿÿÿèòÏ&C.ÿÿ ÿéóÏ&ÃÿÿÿèôÐ&*s]ÿÿ ÿéõÐ&ËÿÿÿéõÐ&C)ÿÿ ÿéóÎ&Ã&Çÿÿ ÿéøÏ&à $ÿÿÿéöÏ&C"HÿÿÿçôÏ&CªÿÿÿéïÇ&%­Cÿÿ ÿéõÐ&Ã#¡ÿÿÿåóÏ&-7*sÿÿ ÿè÷Ð&à /ÿÿ ÿèîÉ&-8)}ÿÿÿèõÎ&°*sÿÿÿéðÑ&C/ƒÿÿ ÿèóÏ&Ã/×ÿÿ ÿéñÆ&Ã!Œÿÿ ÿéðÈ&Ã’ÿÿÿèõÏ&g!áÿÿ ÿçíÐ&»:ÿÿ ÿèîÐ&)t81ÿÿ ÿèóÆ&Ã/®ÿÿ ÿèõÈ&Ã^ÿÿÿïóÎ&CÙÿÿÿéôÏ&C&##(ÿÿÿéöÄ& ‹Cÿÿ ÿçõÉ&Ã!0ÿÿ ÿéñÏ&ÂÃÿÿÿïñÏ&Ì,£ÿÿ ÿéöÐ&@!ÿÿÿéïÑ&C!ÁÿÿÿéóÏ&cCÿÿÿñôÏ&C"hÿÿ ÿéóÏ&» fÿÿ ÿîòÏ&Ã" ÿÿÿêðÏ&g$­ÿÿ ÿéòÐ&Ã$Îÿÿ ÿéñÇ&Ã"Ûÿÿ ÿéóÈ&@$ËÿÿÿèóÐ&CDÿÿÿéóÌ&$›Ìÿÿ ÿèòÐ&»$ÿÿÿéðÑ&C$¦ÿÿÿéïÆ&C#'ÿÿ ÿéôÑ&»#øÿÿÿéóË&Ì'nÿÿ ÿíòÐ&»2ÿÿ ÿèóÎ&)~ÃÿÿÿêðÑ&C‡ÿÿÿèôÐ&Cÿÿ ÿèõÐ&@ÿÿ ÿèòÑ&)&¸ºÿÿÿîòÏ&ÌLÿÿÿêôÍ&C/…ÿÿÿîõÏ&C)iÿÿÿëöÐ&C/°ÿÿÿéóÏ&C*ÿÿ ÿèóÏ&)82ÿÿÿèõÐ&Ì&83ÿÿÿéíÏ&C-9ÿÿÿé÷Í&(ECÿÿ ÿèñÏ&Ã*ÿÿÿéñÏ&*&#Q*tÿÿÿèóÐ&Ì*ÿÿÿçõÑ&xCÿÿ ÿéôÇ&Ã)Ëÿÿ ÿèõÐ&Ã(ÿÿ ÿéõÑ&$84ÿÿÿé÷Ð&Ì/±ÿÿÿéòÏ&C-;ÿÿ ÿèóÐ&k&)}85ÿÿÿèôÉ&C86ÿÿÿèôÐ&ýÌÿÿÿéòÍ&C87ÿÿ ÿêïÑ&Ã'#ÿÿÿîöË&CÿÿÿéîÊ&C&ï88ÿÿÿéôÎ&Ì%'ÿÿÿéóÉ&C%ãÿÿÿçòÏ&C%âÿÿÿêòÏ&Cüÿÿ ÿéöÏ&»0ÛÿÿÿèôÎ&%(*tÿÿÿéòÈ&Cÿÿ ÿèõÊ&A89ÿÿÿéöÏ&*s'õÿÿÿéõÏ&CšÿÿÿéõÏ&C%åÿÿÿèõÐ&&*t8:ÿÿÿèöÑ&%î*tÿÿÿèõÐ&&Ì8;ÿÿÿéðË&C0·ÿÿÿéõÏ&/¦Cÿÿ ÿííÑ&8<ÿÿÿéñÏ&C*vÿÿÿèöÐ&C%µÿÿÿîôÈ&C ÿÿÿéòÏ&*t/§ÿÿÿéõÎ&,‹CÿÿÿçóÑ&¡CÿÿÿèöË&Ž*tÿÿÿìôÐ&C*xÿÿ ÿëöÐ&.¬8=ÿÿÿéðÊ&C%óÿÿÿéóÏ&C-=ÿÿÿéòÒ&$v&*t8>ÿÿÿéõÏ&+6ÌÿÿÿéôÐ&C8?ÿÿÿçòË&C8@ÿÿÿèôÑ&Ì%„ÿÿÿéóÆ&%o*tÿÿ ÿéîË&n%tÿÿÿèòÍ&C%[ÿÿÿéòÈ&C->ÿÿÿèóÐ&C)õÿÿÿèòÈ&.¥CÿÿÿèóÎ&*t8BÿÿÿèöÈ&Ì-?ÿÿ ÿéöÐ&¯%tÿÿÿéòÏ&*t8CÿÿÿéôÈ&Ì8DÿÿÿçõÐ&*t‡ÿÿÿéõË&-@*tÿÿ ÿéòÐ&21ÿÿ ÿéìÑ&±Þÿÿ ÿéõÐ&1yÿÿ ÿéìÑ&±Yÿÿ ÿéõÑ&±ÿÿ ÿéðÐ&2ÿÿ ÿéóÑ&±²ÿÿ ÿèöÑ&± ÿÿ ÿéõÑ&`±ÿÿ ÿè÷Ñ&±¬ÿÿ ÿèôÑ&4ÿÿ ÿèñÑ&ñ-Dÿÿ ÿéóÑ&±ßÿÿ ÿéòÑ&±0¬ÿÿ ÿèõÑ&±Uÿÿ ÿéîÑ&4œÿÿ ÿèòÑ&Î-Dÿÿ ÿéóÑ&K-Aÿÿ ÿéòÑ&±(-ÿÿ ÿéêÑ&j4ÿÿ ÿçòÑ&±Pÿÿ ÿéòÑ&²4ÿÿ ÿéõÑ&54ÿÿ ÿéõÑ&±ÿÿ ÿèóÑ&î-Dÿÿ ÿéóÑ&±Uÿÿ ÿéóÑ&±¸ÿÿ ÿéóÑ&±ÿÿ ÿéõÑ&3±ÿÿ ÿèìÑ&!w-DÿÿÿèïÏ&.§.¦ÿÿ ÿéêÑ&4(oÿÿ ÿèôÏ&ƒ4ÿÿ ÿèîÑ&4Xÿÿ ÿéõÑ&±ÿÿÿ ÿéïÑ&4Hÿÿ ÿéðÑ&4¶ÿÿ ÿé÷Ñ&KEÿÿÿëîÈ&µ*}ÿÿ ÿéöÑ&4˜ÿÿ ÿéõÑ&4Žÿÿ ÿèôÑ& ¸-Dÿÿ ÿåðÑ&£-Dÿÿ ÿéóÑ&4Eÿÿ ÿéöÑ&”4ÿÿ ÿè÷Ñ&'Ó-Dÿÿ ÿéôÑ&K.Kÿÿ ÿéôÑ&±|ÿÿ ÿèìÑ&K'®ÿÿ ÿèíÑ&4*ÿÿ ÿèöÑ&4»ÿÿ ÿé÷Ñ&41ÿÿ ÿéóÑ&K1ÿÿ ÿéóÑ&4*|ÿÿ ÿéóÓ&*~8Hÿÿ ÿëõÏ&*}&bcÿÿ ÿèëÑ&¾-Dÿÿ ÿè÷Ñ&Œ-Dÿÿ ÿéôÑ&4Òÿÿ ÿéóÑ&4!ÿÿ ÿéôÑ&4!"ÿÿ ÿéôÑ&4 ™ÿÿ ÿéîÑ&K!#ÿÿ ÿèóÐ&* gÿÿ ÿéíÑ&45ÿÿ ÿèòÑ&4Ÿÿÿ ÿéîÑ&4 xÿÿ ÿéõÑ&4"îÿÿ ÿçõÑ&KYÿÿ ÿéóÑ&4"ÿÿ ÿèóÑ&"ø-Dÿÿ ÿé÷Ñ&4"cÿÿ ÿéöÑ&4",ÿÿ ÿéïÑ&4ÿÿ ÿèòÑ&-C-Dÿÿ ÿçóÑ&4æÿÿÿçîÏ&ì&ê ÿÿ ÿéôÑ&4žÿÿ ÿéóÑ&$›Kÿÿ ÿéñÑ&4ÿÿ ÿéïÑ&4&œ›ÿÿ ÿéîÑ&I&JKÿÿ ÿéóÑ&*~8Iÿÿ ÿèõÑ&š-Dÿÿ ÿèôÑ&ýKÿÿ ÿéòÑ&4ÿÿ ÿéóÑ&4'ÿÿ ÿèöÒ&**€ÿÿ ÿéôÑ&4&!¦úÿÿ ÿéóÑ&4*‚ÿÿ ÿéöÑ&K'èÿÿ ÿéóÑ&-E0Âÿÿ ÿéòÑ&K->ÿÿ ÿéôÑ&K*ƒÿÿ ÿéñÑ&K*†ÿÿ ÿçõÑ&‡-Eÿÿ ÿç÷Ñ&i&-E8Jÿÿ ÿêñÐ&·ÿÿÿèñÐ&·8Pÿÿ ÿèôÐ&ß÷ÿÿ ÿçóÐ&;ÿÿ ÿéóÍ&ýÿÿ ÿéóÍ&&ÿÿ ÿéëÏ&-FÿÿÿéñÐ&¸·ÿÿÿé÷Ð& °%úÿÿÿéîÐ& °œÿÿÿéôÐ& °ÚÿÿÿéõÐ&n °ÿÿÿéôÐ& °”ÿÿÿèôÐ& °(/ÿÿ ÿéõÐ&,-Rÿÿ ÿéôÏ& Òÿÿ ÿé÷Ï&ÿÿ ÿéðÐ&Ã-Rÿÿ ÿéöÐ&!Jÿÿ ÿéëÏ&)ÿÿÿ ÿéõÍ&ÿÿÿéòÐ& °-Gÿÿ ÿçòÐ&Pÿÿ ÿéõÏ&kÿÿ ÿéóÍ&ÿÿ ÿéöÏ&±ÿÿÿèöÐ& °+ÿÿ ÿèóÏ&îÿÿÿéöÐ& °*ÿÿ ÿéôÍ&žÿÿ ÿèîÏ&%›ÿÿÿéòÐ& °0öÿÿ ÿçôÍ&%ÌÿÿÿèîÐ&* °ÿÿ ÿêõÏ& ÿÿ ÿéóÍ&&ÿÿ ÿéóÏ&0ÖÿÿÿéòÐ& °ÚÿÿÿèíÐ& °ÿÿÿéíÐ& °&  ÿÿ ÿéòÐ&*-RÿÿÿèõÐ& °LÿÿÿéóÐ& °³ÿÿÿçõÑ& ° ÿÿÿéöÐ& °ÿÿ ÿèìÍ&ÁÿÿÿéôÐ& °-Hÿÿ ÿèóÐ&Œÿÿ ÿéòÍ&0Aÿÿ ÿéöÐ&(l-Rÿÿ ÿéêÐ&–ÿÿ ÿéôÏ&bÿÿ ÿéóÐ&  "ÿÿ ÿéñÍ&+Mÿÿ ÿéîÐ&è-RÿÿÿéóÐ& °ÿÿÿéõÑ& ° ÿÿ ÿéóÑ&%%ÿÿÿèôÐ& °]ÿÿ ÿèöÎ&»ÿÿ ÿéòÎ&%©ÿÿÿéõÐ&‹-Iÿÿ ÿéîÐ&ì-Rÿÿ ÿèôÐ&'Ø-Rÿÿ ÿé÷Í&1ÿÿ ÿçôÑ&-J8RÿÿÿéëÐ& °¾ÿÿ ÿèöÐ&<-Rÿÿ ÿéöÐ&D!JÿÿÿéóÐ& °"øÿÿ ÿèïÐ&-R0¹ÿÿ ÿéíÍ&5ÿÿÿéôÐ& °!_ÿÿ ÿéöÐ&#Î-RÿÿÿéñÐ& °$]ÿÿÿéóÐ& °"­ÿÿ ÿéïÐ&8Sÿÿ ÿéøÐ&-R/²ÿÿ ÿéöÐ&^-Rÿÿ ÿéôÐ&ž-Rÿÿ ÿèôÐ&(‚-Rÿÿ ÿéóÎ&$¸ÿÿÿéõÑ& °—ÿÿ ÿéôÐ&-R8Tÿÿ ÿèñÔ&% 8Uÿÿ ÿéòÐ&% -Rÿÿ ÿèôÏ&ÿ8Vÿÿ ÿé÷Ð&-R8Wÿÿ ÿéöÐ&N-RÿÿÿéöÐ&û+!ÿÿ ÿè÷Ñ&-R8Xÿÿ ÿçõÑ&-K-Rÿÿ ÿéõÐ&Æ8Yÿÿ ÿèôÐ&.Z-RÿÿÿéõÐ&›ûÿÿ ÿé÷Ð&(E-Rÿÿ ÿéóÐ&-L)åÿÿÿèõÐ&-I&˜ÿÿ ÿéõÏ&z!ÿÿ ÿéöÐ&.I-Rÿÿ ÿéõÒ&.J-Rÿÿ ÿéñÑ&'á-Rÿÿ ÿçòÐ&-M-Rÿÿ ÿèôÐ&ý-RÿÿÿéóÐ&ûºÿÿ ÿèôÐ&%(-Rÿÿ ÿéõÐ&%´-RÿÿÿéõÐ&û%èÿÿ ÿéóÐ&-N-RÿÿÿéõÐ&Þ&û!¦ÿÿ ÿçôÐ&-O-Rÿÿ ÿéõÐ&'ç-RÿÿÿéôÐ&û(…ÿÿ ÿéõÑ&-R. ÿÿ ÿçøÒ&Õ-Rÿÿ ÿçôÏ&-P/»ÿÿ ÿéöÑ&.~-Rÿÿ ÿéôÐ&'-Rÿÿ ÿèôÒ&%‚-Rÿÿ ÿé÷Ò&-Q-RÿÿÿéòÐ&û-.ÿÿ ÿéôÑ&*ƒ-Rÿÿ ÿéòÐ&- -RÿÿÿèîÑ&08ZÿÿÿìîÒ&(­ÿÿÿèöÒ&­8[ÿÿÿçîÒ&­8\ÿÿÿêîÒ&­8]ÿÿÿèëÑ&—8^ÿÿÿñïÑ&G8_ÿÿÿêîÒ&­®ÿÿÿêïÑ&—8`ÿÿ ÿêòÒ&­('ÿÿ ÿéëÑ&—˜ÿÿÿïôÑ&—8aÿÿÿéõÒ&­8bÿÿÿêëÑ&—8cÿÿÿéîÒ&­8dÿÿÿéîÒ&­8eÿÿÿèðÑ&—8fÿÿÿíõÑ&š8gÿÿÿêîÒ&­8hÿÿÿèëÑ&—8iÿÿÿèôÒ&­8jÿÿÿéîÑ&š8kÿÿÿçîÑ&š8lÿÿ ÿêëÑ&+&,—ÿÿÿéòÑ&°&¯šÿÿÿîïÑ&—8mÿÿÿèïÑ&š8nÿÿÿïðÑ&*—ÿÿ ÿîõÒ&­&§8oÿÿ ÿèñÑ&—¦ÿÿÿéôÑ&—ÿÿ ÿéóÑ&Š8pÿÿ ÿéóÑ&Љÿÿ ÿéóÑ&š8qÿÿ ÿèóÑ&Š8rÿÿÿêîÑ&š8sÿÿÿéîÑ&š8tÿÿÿéîÑ&š8uÿÿ ÿçìÔ&68vÿÿÿèõÑ&®‘ÿÿÿéóÏ&A@ÿÿÿéïÑ&pšÿÿÿæòÑ&š&æåÿÿÿèîÑ&‘8wÿÿ ÿèóÑ&Š!ÇÿÿÿèîÑ&š8xÿÿ ÿéñÑ&š8yÿÿÿéïÑ&‘#œÿÿ ÿèöÑ&š#ŽÿÿÿèîÑ&š8zÿÿ ÿéóÑ&Š8{ÿÿ ÿçóÑ&š8|ÿÿÿéîÑ&‘&l8}ÿÿ ÿéõÑ&š8~ÿÿÿéñÑ&š&™˜ÿÿ ÿçöÑ&š8ÿÿÿçìÔ&68€ÿÿÿçñÑ&š8ÿÿÿæõÔ&68‚ÿÿÿèîÑ&‘8ƒÿÿ ÿìôÑ&‘&5gÿÿ ÿæõÑ&å&Š8„ÿÿ ÿèóÑ&Š8…ÿÿÿéöÑ&‘8†ÿÿÿçöÑ&š8‡ÿÿÿåðÔ&6/]ÿÿÿç÷Ô&"8&"98ˆÿÿÿèõÔ&68‰ÿÿÿçôÔ&68ŠÿÿÿçíÔ&"98‹ÿÿÿéúÔ&"98Œÿÿ ÿèîÔ&"98ÿÿ ÿéóÏ&ijÿÿ ÿéóÏ&k ÿÿ ÿèôÏ&lmÿÿ ÿíõÏ&nlÿÿ ÿéôÏ&lÚÿÿÿðòÏ&,µ8Žÿÿ ÿèôÏ&l(/ÿÿ ÿêìÏ&lÿÿ ÿéóÏ&iÿÿ ÿêòÏ&lSÿÿ ÿóóÏ&kjÿÿÿçõÐ&ó-Sÿÿ ÿèñÏ&iDÿÿ ÿéôÏ&l-Tÿÿ ÿçõÑ&Š ÿÿ ÿéòÐ&Š/ÿÿ ÿèöÏ&lÿÿ ÿèøÑ&l-UÿÿÿïòÈ&Ö0Ìÿÿ ÿéóÑ&Š$ÿÿ ÿéðÏ&l’ÿÿ ÿéòÏ&Š#—ÿÿ ÿèóÏ&Šˆÿÿ ÿëöÏ&Šuÿÿ ÿèøÑ&-W-Vÿÿ ÿéóÔ&Œ&W&X8ÿÿ ÿè÷Ñ&-X-Yÿÿ ÿõóÑ& çÿÿ ÿëòÑ&Ô-Zÿÿ ÿèòÑ&³0¨ÿÿ ÿçòÑ&Ô-[ÿÿ ÿñòÑ&Ô-\ÿÿ ÿñóÑ& èÿÿ ÿêóÑ&(0§ÿÿ ÿéòÑ&<0§ÿÿ ÿéòÑ&-]0§ÿÿ ÿéòÑ& éÑÿÿ ÿîòÑ&“0§ÿÿ ÿéòÑ& ºÔÿÿ ÿéòÑ&Ôÿÿ ÿçöÑ&Ôÿÿ ÿèòÑ&O0§ÿÿ ÿéòÑ& ëÕÿÿ ÿèòÑ&Õ8‘ÿÿ ÿêôÑ&0§ÿÿ ÿèôÑ&0¨ÿÿ ÿéóÑ&0¨ÿÿ ÿéòÑ&;0§ÿÿ ÿíòÑ&ÏÕÿÿ ÿéòÑ&Õ8’ÿÿ ÿéòÑ&0¨8“ÿÿ ÿñòÑ&%I0¨ÿÿ ÿçòÑ&0¨8”ÿÿ ÿéòÑ&0¨8•ÿÿ ÿéòÑ&0§8–ÿÿ ÿéòÑ&o éÿÿ ÿóòÑ&Ô8—ÿÿ ÿèòÑ& éÿÿ ÿìòÑ&0§8˜ÿÿ ÿéòÑ&}0§ÿÿ ÿèòÑ&0§8™ÿÿ ÿéòÑ&Õ8šÿÿ ÿéóÑ&0¨8›ÿÿ ÿðòÑ&0¨8œÿÿ ÿæòÑ&0¨8ÿÿ ÿéòÑ& é8žÿÿ ÿæöÑ&Z0¨ÿÿ ÿéòÑ&0§8Ÿÿÿ ÿèõÑ&0§8 ÿÿ ÿèòÑ& évÿÿ ÿéòÑ&0§8¡ÿÿ ÿéòÑ& é8¢ÿÿ ÿæòÑ&0§8£ÿÿ ÿèòÑ&Ô8¤ÿÿ ÿèòÑ&Û&Ú0§ÿÿ ÿéóÑ&Ô8¥ÿÿ ÿìòÑ&-^0§ÿÿ ÿïóÑ&Õ8¦ÿÿ ÿéòÑ&Õ8§ÿÿ ÿçòÑ&Ô&ËÌÿÿ ÿéòÑ&0§8¨ÿÿ ÿèóÑ&ß&K0§ÿÿ ÿîòÑ&0¨8©ÿÿ ÿéôÑ&Õÿÿ ÿêòÑ&å0¨ÿÿ ÿéòÑ& êÿÿ ÿéòÑ&Ë&Õ8ªÿÿ ÿéóÑ&0§8«ÿÿ ÿêòÑ& ê-_ÿÿ ÿèóÑ&§ éÿÿ ÿèòÑ&0§8¬ÿÿ ÿîôÑ&”0¨ÿÿ ÿéòÑ&0§8­ÿÿ ÿçòÑ&Ô8®ÿÿ ÿéóÑ& é&TJÿÿ ÿïòÑ& éÿÿ ÿéóÑ&0¨8¯ÿÿ ÿèòÑ& éªÿÿ ÿèõÑ&ß0¨ÿÿ ÿéóÑ&Ì‹ÿÿ ÿéòÑ&0§8°ÿÿ ÿéòÑ& é*ÿÿ ÿéòÑ&&0§ÿÿÿèôÑ&i8±ÿÿ ÿêòÑ&0§8²ÿÿ ÿéòÑ& é8³ÿÿ ÿèóÑ&0§8´ÿÿ ÿéòÑ&£& é8µÿÿ ÿéòÑ& é8¶ÿÿ ÿéòÑ&0§8·ÿÿ ÿéõÑ& é8¸ÿÿ ÿéõÑ&ô éÿÿ ÿéòÑ& é8¹ÿÿ ÿéóÑ&>0§ÿÿ ÿéòÑ&Ï êÿÿ ÿðòÑ&Ô8ºÿÿ ÿéòÑ&ç& é8»ÿÿ ÿèôÑ&Ô&öõÿÿ ÿéòÑ& é8¼ÿÿ ÿêõÑ&%?0§ÿÿ ÿéõÑ& é Üÿÿ ÿéóÑ& é ÿÿ ÿéòÑ& é&<ÿÿ ÿéóÑ&0§8½ÿÿ ÿèòÑ& é8¾ÿÿ ÿéòÑ&- éÿÿ ÿîòÑ& é8¿ÿÿ ÿéòÑ& é8Àÿÿ ÿèóÑ& é8Áÿÿ ÿñóÑ&0¨8Âÿÿ ÿéòÑ&0§8Ãÿÿ ÿéóÑ&0¨8Äÿÿ ÿéóÑ& é8Åÿÿ ÿéóÑ& é8Æÿÿ ÿìòÑ& é8Çÿÿ ÿéòÑ&ê éÿÿ ÿêòÑ&5& é8Èÿÿ ÿèôÑ&0§8Éÿÿ ÿêóÑ&i8Êÿÿ ÿéòÑ& é&4£ÿÿ ÿêòÑ& ê&t8ËÿÿÿéòÑ&iµÿÿ ÿéóÑ&¥ÌÿÿÿéòÑ&i8Ìÿÿ ÿéõÑ&i8ÍÿÿÿêòÑ&iFÿÿ ÿèòÑ&Û&0§8Îÿÿ ÿéòÑ& é8Ïÿÿ ÿêóÑ&0§8Ðÿÿ ÿéóÑ& ê8ÑÿÿÿéòÑ&iÒÿÿ ÿéòÑ& é8Òÿÿ ÿêòÑ& é&Ýæÿÿ ÿéôÑ& é8Óÿÿ ÿïòÑ& é ÿÿ ÿéòÑ& é8Ôÿÿ ÿèóÑ& ê8Õÿÿ ÿêóÑ& ê8Öÿÿ ÿîòÑ& êÿÿÿéòÑ&ilÿÿ ÿéóÑ& é8×ÿÿ ÿéòÑ& énÿÿ ÿéóÑ&i8Øÿÿ ÿíòÑ& é8Ùÿÿ ÿéòÑ& é8Úÿÿ ÿèòÑ& ê8Ûÿÿ ÿèòÑ& éÖÿÿ ÿéóÑ&Ì8Üÿÿ ÿéóÑ& é8Ýÿÿ ÿêóÑ& é8Þÿÿ ÿéóÑ&T&"æ éÿÿ ÿéòÑ&s éÿÿ ÿéòÑ& ê!ÿÿ ÿéòÑ&"yiÿÿ ÿèòÑ&" éÿÿ ÿèòÑ&5 éÿÿ ÿéòÑ&#Ë éÿÿ ÿéòÑ&«& é8ßÿÿ ÿéòÑ& é8àÿÿ ÿíóÑ&i"²ÿÿ ÿéóÑ&Ü&Ý éÿÿ ÿéòÑ&i"òÿÿ ÿéòÑ&i"¾ÿÿ ÿèôÑ& ê&Ø8áÿÿ ÿéòÑ&5&4 éÿÿÿïòÑ&`iÿÿ ÿéóÑ& é&ç8âÿÿ ÿêòÑ&0§8ãÿÿ ÿèóÑ& é& ¹8äÿÿÿéòÑ&i"ÿÿ ÿçõÑ& ê8åÿÿ ÿéóÑ& é8æÿÿ ÿçòÑ&$ êÿÿ ÿîóÑ& ù&i8çÿÿ ÿêòÑ&i8èÿÿÿéóÑ&%iÿÿ ÿíòÑ& é/3ÿÿ ÿéòÑ& é8éÿÿ ÿèõÑ&p& é8êÿÿ ÿéóÑ&i$5ÿÿ ÿêõÑ& é&ÛÚÿÿ ÿéòÑ&T& é8ëÿÿ ÿêôÑ& ê8ìÿÿ ÿéòÑ&Ì8íÿÿ ÿêóÑ&$iÿÿÿéòÑ&$§iÿÿ ÿéòÑ&"Ù éÿÿ ÿèôÑ& ê$ÿÿÿìòÑ&i/7ÿÿ ÿéòÑ&$¯iÿÿ ÿéòÑ&Ò& é8îÿÿ ÿéòÑ& é8ïÿÿ ÿêòÑ&Ì$ãÿÿÿèôÑ&Ì&#x8ðÿÿ ÿìóÑ&i$öÿÿ ÿîóÑ& ø& é8ñÿÿ ÿçòÑ& é8òÿÿÿèòÑ&Ì8óÿÿÿçòÑ&i/RÿÿÿéòÑ&Ì8ôÿÿ ÿçöÑ& ê&á8õÿÿ ÿéóÑ&Ì8öÿÿÿçöÑ&Ì&á8÷ÿÿ ÿêóÑ&Ì8øÿÿ ÿìóÒ&÷8ùÿÿÿéòÑ&{iÿÿÿçòÑ&i ÿÿ ÿéòÑ&i8úÿÿ ÿèòÑ& é&˜8ûÿÿÿéòÑ&Ì8üÿÿÿåòÑ&Ì8ýÿÿ ÿéóÑ&0§8þÿÿÿèòÑ&inÿÿ ÿèòÑ&œ& é ÿÿ ÿèòÑ&iœÿÿÿçôÑ&i8ÿÿÿ ÿçòÑ& ê0[ÿÿ ÿèóÑ& é&ß9ÿÿ ÿìôÑ&Ì9ÿÿ ÿîóÑ&I& é úÿÿ ÿèóÑ& ¸& é ¹ÿÿÿçòÑ&Ì9ÿÿÿéòÑ&i9ÿÿ ÿçõÑ& é9ÿÿ ÿèõÑ&Ü& é9ÿÿ ÿèôÑ&i9ÿÿ ÿèõÑ&Ì9ÿÿ ÿçòÑ& ê9ÿÿ ÿèõÑ&i9 ÿÿ ÿèòÑ& é9 ÿÿ ÿèôÑ& é&Ø9 ÿÿÿéöÑ&i&$w9 ÿÿ ÿçòÑ&5& é" ÿÿ ÿéõÑ& ê9 ÿÿ ÿèôÑ&i9ÿÿÿèðÒ&÷øÿÿ ÿëóÑ&&ÌŒÿÿÿèòÑ&õ&i9ÿÿÿéòÑ&ö&i9ÿÿÿèòÑ&Ì9ÿÿ ÿéôÑ&i9ÿÿ ÿïòÑ& é9ÿÿ ÿçôÑ&Ì9ÿÿ ÿèóÑ&i9ÿÿÿèòÑ&&i9ÿÿÿéôÑ&@&i9ÿÿ ÿèòÑ&Ì9ÿÿ ÿçõÑ& é9ÿÿ ÿéòÑ& é9ÿÿ ÿèôÑ& ê9ÿÿ ÿçõÑ& é9ÿÿÿèòÑ&Ì9ÿÿÿèöÑ&i9ÿÿÿéòÑ&i9ÿÿ ÿèóÑ& ê&à9 ÿÿÿèöÑ&Ì&$69!ÿÿ ÿçõÑ& ê9"ÿÿ ÿéòÑ&Ì9#ÿÿÿêöÑ&i&$w5ÿÿÿéòÑ&i9$ÿÿ ÿçôÑ& é9%ÿÿ ÿîóÑ& ù&i9&ÿÿ ÿèöÑ& ê9'ÿÿÿéòÑ&i9(ÿÿÿêõÑ& š& ›iÿÿÿëòÒ&÷9)ÿÿÿéòÑ&i9*ÿÿÿéòÑ&Ì9+ÿÿ ÿéòÑ&i9,ÿÿ ÿéòÑ&Ì9-ÿÿ ÿèöÑ& é9.ÿÿ ÿéôÑ&i9/ÿÿÿèôÑ&i90ÿÿÿèõÑ&Ì91ÿÿÿéðÒ&/I÷ÿÿ ÿéöÑ& ê92ÿÿ ÿêõÑ& é93ÿÿ ÿíòÑ&©Ìÿÿ ÿéóÑ& é94ÿÿÿèòÑ&i95ÿÿ ÿèóÑ& é96ÿÿÿëöÑ&i97ÿÿÿèòÑ&i98ÿÿ ÿêõÑ& ê99ÿÿ ÿèôÑ&i9:ÿÿ ÿîóÑ& é9;ÿÿÿçöÑ&á&Ì9<ÿÿÿçöÑ&á&Ì9=ÿÿÿéòÑ&i9>ÿÿÿçöÒ&÷9?ÿÿÿèòÑ&i9@ÿÿ ÿéòÑ&i9Aÿÿ ÿéöÑ&i9Bÿÿ ÿèôÑ&i9Cÿÿ ÿéôÐ&_+Ûÿÿ ÿèóÏ&j•ÿÿ ÿèöÏ&˜/lÿÿ ÿèôÏ&•üÿÿ ÿèõÐ&•¡ÿÿ ÿéóÑ& `ÿÿ ÿèëÏ&•aÿÿ ÿèôÏ&•bÿÿ ÿèîÏ&•ÿÿ ÿèóÏ&•ÿÿ ÿèôÏ&•cÿÿ ÿèòÏ&•dÿÿ ÿéõÒ&efÿÿ ÿéõÏ&˜ÿÿ ÿèòÏ&•¾ÿÿ ÿèðÏ&•gÿÿ ÿèòÏ&•hÿÿ ÿèôÏ&•¿ÿÿ ÿéóÎ&2xÿÿ ÿèöÏ&•iÿÿ ÿèèÐ&+%&/•ÿÿ ÿèôÏ&•¤ÿÿ ÿèìÏ&•(¾ÿÿ ÿèõÏ&•ÿÿ ÿèóÏ&•jÿÿ ÿèôÏ&•žÿÿ ÿèêÐ&•Mÿÿ ÿèõÏ&•kÿÿ ÿèõÏ&•ÿÿ ÿèòÏ&•Nÿÿ ÿéòÏ&-`xÿÿ ÿèóÏ&•lÿÿ ÿèñÏ&•Óÿÿ ÿèìÏ&•aÿÿ ÿéòÑ&x/Óÿÿ ÿèôÏ&½žÿÿÿèòÏ&n&moÿÿ ÿéóÑ&˜Ôÿÿ ÿèñÏ&•ÿÿÿçòÒ&pqÿÿ ÿéòÏ&˜Äÿÿ ÿéôÑ&˜àÿÿ ÿèõÐ&•Lÿÿ ÿèôÏ&•rÿÿ ÿéòÐ&•&(!xÿÿ ÿéóÏ&yxÿÿ ÿæöÏ&•Aÿÿ ÿéóÏ&˜ëÿÿÿéòÑ&0‚9Eÿÿ ÿèòÏ&½.ÿÿ ÿèóÏ&•)ÿÿ ÿèõÏ&•-aÿÿ ÿéõÎ&åÿÿ ÿèõÑ&•Rÿÿ ÿéóÏ&˜'ÿÿ ÿè÷Ï&•1ÿÿ ÿèöÏ&•–ÿÿ ÿè÷Ð&• /ÿÿ ÿèóÏ&•sÿÿ ÿèöÏ&•#Hÿÿ ÿèóÐ&½&@Yÿÿ ÿéñÏ&˜$]ÿÿ ÿèîÏ&„&J#×ÿÿ ÿéòÐ&˜#¢ÿÿ ÿéóÏ&¾½ÿÿ ÿèóÐ&˜tÿÿ ÿéöÏ&˜uÿÿ ÿéöÏ&˜vÿÿ ÿèðÏ&½wÿÿ ÿéóÐ&½$bÿÿ ÿèôÏ&•!ÿÿ ÿèòÏ&˜-Cÿÿ ÿéôÑ&˜$ÿÿ ÿéóÏ&˜$ÿÿ ÿéõÑ&—˜ÿÿ ÿéõÑ&G&½9Fÿÿ ÿèôÐ&‹&Ç9Gÿÿ ÿçõÑ&˜xÿÿ ÿçòÒ&yzÿÿ ÿèóÏ&½{ÿÿ ÿçöÑ&½|ÿÿ ÿèõÏ&˜£ÿÿ ÿéòÏ&˜,ÿÿ ÿèõÏ&½~ÿÿ ÿéòÑ&.ÿÿ ÿçôÏ&˜™ÿÿ ÿèóÐ&•*yÿÿ ÿéñÏ&½0"ÿÿ ÿéïÏ&½ÿÿÿèôÑ&¨9Hÿÿ ÿéòÏ&½->ÿÿ ÿèóÐ&‚&ƒ9Iÿÿ ÿèóÏ&ƒ&‚9Jÿÿ ÿéòÐ&-b½ÿÿ ÿéðÏ&œ›ÿÿ ÿéóÏ&Ñ›ÿÿ ÿéßÏ&Z˜ÿÿ ÿé÷Ï&Zÿÿ ÿèõÏ&šQÿÿ ÿéóÏ&›ÿÿ ÿèíÐ&QÅÿÿ ÿéìÏ&YZÿÿ ÿéòÏ&Zÿÿ ÿéðÏ&´Zÿÿ ÿéòÏ& Ñÿÿ ÿéõÏ&Q›ÿÿ ÿéìÏ&œQÿÿ ÿçöÐ&Áÿÿ ÿéõÏ&RQÿÿ ÿéôÏ&*ÌQÿÿ ÿéîÏ&ð Ñÿÿ ÿéöÏ&Qÿÿ ÿéôÏ&” Ñÿÿ ÿéóÏ&Q1ÿÿ ÿéôÏ&ž›ÿÿ ÿèöÏ&Q§ÿÿ ÿéïÏ&*›ÿÿ ÿéòÏ&º Ñÿÿ ÿéõÏ&žÿÿ ÿéèÐ& Ñ&6/ÿÿ ÿèôÏ&Q(/ÿÿ ÿèôÏ&]mÿÿ ÿéôÏ& Ñ Òÿÿ ÿéóÏ&‡Qÿÿ ÿéôÏ&ÚQÿÿ ÿéöÏ&Z¬ÿÿ ÿéïÏ&Q¬ÿÿ ÿèôÏ&Q!ÿÿ ÿèöÑ& Ñ­ÿÿ ÿçóÏ&Óÿÿ ÿéòÏ&Q0¬ÿÿÿçëÐ&¯®ÿÿÿçñË&°&ª9Kÿÿ ÿéóÏ& Ñ&}/Õÿÿ ÿéòÏ&Q(-ÿÿ ÿçôÏ&ƒªÿÿ ÿéëÏ& Ð)ÿÿÿ ÿçòÏ&ª9LÿÿÿçëÉ&-0ÿÿ ÿéèÏ& ïÿÿ ÿèôÐ&žÐÿÿ ÿéóÏ& ÑQÿÿ ÿéïÐ&R Ñÿÿ ÿéòÏ& ÑSÿÿ ÿéòÏ& ÑTÿÿ ÿéôÏ&Qœÿÿ ÿéîÏ& Ñÿÿ ÿéöÏ& Ñÿÿ ÿéöÏ&ž±ÿÿ ÿéóÐ&¸0Òÿÿ ÿéóÏ& Ѳÿÿ ÿéöÐ& ѳÿÿ ÿéòÐ& Ñ0öÿÿ ÿéëÏ& Ñ´ÿÿ ÿéöÏ&ž,éÿÿ ÿéõÏ&ž·ÿÿ ÿéðÏ&Q.}ÿÿ ÿéõÏ&Qÿÿ ÿéïÏ& Ѹÿÿ ÿèðÏ&ÇZÿÿ ÿéìÏ&Zÿÿ ÿéêÐ&ZMÿÿ ÿèõÏ&Qgÿÿ ÿêõÏ&]¹ÿÿ ÿéòÏ&Qºÿÿ ÿéôÏ& &»/ÿÿ ÿçõÐ&(Qÿÿ ÿéòÏ&Z0×ÿÿ ÿéöÏ&]™ÿÿ ÿèìÏ&¸¼ÿÿ ÿéôÏ&Qôÿÿ ÿèñÏ&D Ñÿÿ ÿéôÏ&~ Ñÿÿ ÿéöÏ&Qóÿÿ ÿè÷Ï& Ñ ÿÿ ÿéõÐ&[&Y9MÿÿÿçíÐ&&ªÿÿ ÿéòÏ&Q¤ÿÿ ÿéôÏ&Q`ÿÿ ÿéõÐ&‹ Ñÿÿ ÿéíÑ& ÑŸÿÿ ÿéóÏ& åÿÿ ÿéôÑ&à Ñÿÿ ÿéìÏ& Ñaÿÿ ÿéöÏ&Aøÿÿ ÿé÷Ï& ѽÿÿ ÿéìÏ&ždÿÿÿéïÏ&19Nÿÿ ÿéõÐ&ùñÿÿÿçëÐ&ª0‡ÿÿ ÿéôÐ&™Qÿÿ ÿéóÏ&Q+ÿÿ ÿéóÏ& Ð'ÿÿ ÿéôÑ&˜ Ñÿÿ ÿéóÐ& Ðzÿÿ ÿèõÏ& ÑZÿÿ ÿéöÐ& ÑvÿÿÿéõÏ&É&ʾÿÿ ÿééÏ& Ñÿÿ ÿéòÐ& ¿ÿÿ ÿêøÑ&¸ ÿÿ ÿéôÐ& ÑÀÿÿ ÿèìÏ& ÑÁÿÿ ÿé÷Ð& Ñ-²ÿÿ ÿèöÏ&\ÿÿ ÿèñÐ&g&&e&jÿÿ ÿéêÐ& Ñ–ÿÿ ÿçõÏ&Qÿÿ ÿéöÏ&¸”ÿÿ ÿæöÏ&AQÿÿ ÿèõÐ&Q•ÿÿ ÿæôÏ&¸-ÿÿ ÿé÷Ï&ZÆÿÿ ÿéôÏ& Ñ,Ëÿÿ ÿéòÏ&j%>ÿÿ ÿèñÏ&žÿÿ ÿéïÏ& Ðáÿÿ ÿéóÐ& Ѳÿÿ ÿéòÏ&© Ðÿÿ ÿéôÏ&üíÿÿ ÿéõÏ&A!ÿÿ ÿéóÏ&—žÿÿ ÿéóÏ&.€¸ÿÿ ÿéóÏ&îAÿÿ ÿéõÑ&]Rÿÿ ÿéöÏ&-z.ñÿÿ ÿéôÏ& )|ÿÿ ÿçõÏ&]+Bÿÿ ÿéõÑ&-g ÿÿ ÿéôÏ&`\ÿÿ ÿéëÏ&¾Aÿÿ ÿìõÐ&g%ªÿÿ ÿêóÑ&¸%%ÿÿ ÿéöÐ& "Iÿÿ ÿéóÏ& Ñ'ÿÿ ÿçöÒ&f Ñÿÿ ÿéñÏ& Ð.ÿÿ ÿéõÐ&‹ Ñÿÿ ÿçòÐ&1&ª9Pÿÿ ÿèíÏ&¸+Cÿÿ ÿéñÐ&X Ñÿÿ ÿéíÏ&¸-iÿÿ ÿèïÏ&¸-hÿÿ ÿéöÏ& Ð ×ÿÿ ÿèõÏ&]-jÿÿ ÿèòÏ&¸.ÿÿ ÿéøÏ&¸ ÿÿ ÿèôÏ&¸9Qÿÿ ÿéóÏ&ž&Çÿÿ ÿéôÑ&QÌÿÿ ÿéóÏ&ž)ÿÿ ÿéòÏ& Zžÿÿ ÿèõÏ& ÑVÿÿ ÿèðÏ& Ñuÿÿ ÿéõÏ& Þÿÿ ÿèóÏ& Ð-dÿÿ ÿèóÏ&Qïÿÿ ÿéôÏ& (mÿÿ ÿêõÌ&-z.3ÿÿ ÿéìÏ&žÿÿ ÿéðÐ& # ÿÿ ÿèñÏ&¸ÿÿÿèñÈ&«0Íÿÿ ÿéôÐ& Ñÿÿ ÿèõÑ&¸‰ÿÿ ÿèöÏ&žhÿÿ ÿëõÏ&]&!9Rÿÿ ÿé÷Ï& Ñ"nÿÿ ÿéóÏ& Ñ6ÿÿ ÿéñÐ&Q-kÿÿ ÿéöÏ& Ñ"mÿÿ ÿéìÏ&tjÿÿ ÿéöÐ&A!ÿÿ ÿéïÏ& !=ÿÿ ÿéöÐ&]#Yÿÿ ÿèòÏ& Ð"@ÿÿ ÿéôÏ&víÿÿ ÿäöÏ&]ýÿÿ ÿéôÏ&g&!1(ÿÿ ÿéôÏ& Ð!_ÿÿ ÿéïÑ&žÿÿ ÿéóÏ&ž*ÿÿ ÿéõÏ&A"îÿÿ ÿèõÏ& аÿÿ ÿë÷Ï&]¥ÿÿ ÿéóÏ& Ñ&Žÿÿ ÿçíÐ&¸:ÿÿ ÿèõÏ& Ó]ÿÿ ÿéôÏ&g9Sÿÿ ÿéòÏ& Ð"Fÿÿ ÿèôÐ&ž!†ÿÿ ÿéóÐ&ž!Šÿÿ ÿéöÏ& Çÿÿ ÿèóÐ&Y& @ÿÿ ÿèöÏ&«&-l9Tÿÿ ÿèðÑ&$9Uÿÿ ÿéõÏ&]Ùÿÿ ÿèôÐ& &@"çÿÿ ÿéñÏ& Ñ!(ÿÿ ÿéóÏ&¸óÿÿ ÿéñÏ& !Œÿÿ ÿèõÐ&«&9Vÿÿ ÿéôÏ& Ð"óÿÿ ÿéñÏ& Ñ$]ÿÿ ÿéöÏ& "7ÿÿ ÿè÷Ñ&A/ÖÿÿÿéîÏ& &ø1ÿÿ ÿêðÏ&g#wÿÿ ÿéòÏ&Q$Jÿÿ ÿéôÐ&A0pÿÿ ÿéôÏ&Ã&úAÿÿ ÿéñÑ&Q$”ÿÿ ÿéóÏ& ÑMÿÿ ÿèïÓ&«&9Wÿÿ ÿçïÏ& -mÿÿ ÿèõÐ&]ÿÿ ÿéòÐ& Ð2ÿÿ ÿè÷Ï&¸Íÿÿ ÿé÷Ï&-n¸ÿÿ ÿéõÏ&Qÿÿ ÿêðÑ&g‡ÿÿ ÿéóÐ& Ñ.“ÿÿ ÿéóÏ& $¸ÿÿ ÿéöÏ& Ñvÿÿ ÿèõÏ&ž$ÿÿ ÿçòÐ&ž-oÿÿ ÿéòÐ& $Îÿÿ ÿéôÏ&üAÿÿÿèôÎ&ÿ9Xÿÿ ÿéïÏ& $ªÿÿ ÿèôÏ&39Yÿÿ ÿéôÏ&í9Zÿÿ ÿéôÏ&A'ßÿÿ ÿèôÏ&¸$rÿÿ ÿéòÏ&f&egÿÿ ÿéöÏ&A-pÿÿ ÿéóÏ&¸.ÿÿ ÿéôÏ&.úAÿÿ ÿéðÐ&j*¸ÿÿ ÿéïÐ&g-…ÿÿ ÿêïÏ&¸.„ÿÿ ÿéõÏ&g&f-qÿÿ ÿèõÑ&g&f-rÿÿ ÿéôÏ&¸)Ëÿÿ ÿéóÏ&¸*ÿÿ ÿéóÒ&.”žÿÿ ÿéôÏ&g%Þÿÿ ÿéöÐ&0 1ÿÿ ÿçõÏ& 0›ÿÿ ÿèõÏ&£ Ðÿÿ ÿéóÏ&¸†ÿÿ ÿêõÏ&]&G9[ÿÿ ÿéñÐ&Ç9\ÿÿ ÿèõÐ&«0Lÿÿ ÿéòÑ&A)Ìÿÿ ÿèõÐ&¸&˜ÿÿ ÿçõÑ&Axÿÿ ÿéòÏ& -sÿÿ ÿèóÐ&«ÿÿ ÿéõÐ&.•¸ÿÿ ÿéíÏ&A-9ÿÿÿèïÌ&«/2ÿÿ ÿéõÑ& Ð*·ÿÿ ÿé÷Ï&žÿÿ ÿéóÏ&-t-ÿÿ ÿé÷Ð&g&}9]ÿÿ ÿçöÏ& 9^ÿÿ ÿèøÓ&«9_ÿÿÿéóÑ&k&-v9`ÿÿ ÿèôÐ&-u Ðÿÿ ÿéòÏ&/¥jÿÿ ÿéóÐ&A+`ÿÿ ÿéóÏ&¸'÷ÿÿ ÿéïÑ&Q'#ÿÿ ÿèöÏ&]-íÿÿ ÿéöÏ&jFÿÿ ÿéòÐ&A*¹ÿÿ ÿèóÐ&«&÷9aÿÿ ÿéôÏ&¸*Ñÿÿ ÿçïÏ&¸-wÿÿ ÿéòÏ&žüÿÿ ÿéôÏ&]* ÿÿ ÿéóÒ&¸iÿÿ ÿéîÏ&ï&j9bÿÿ ÿèôÏ&¸'øÿÿ ÿéñÏ& Ð'ÿÿ ÿèóÏ&«9cÿÿ ÿéòÏ&j%áÿÿ ÿçôÏ& (Kÿÿ ÿêòÐ&¸·ÿÿ ÿèõÏ&g~ÿÿ ÿèòÏ&ž9ÿÿ ÿéôÏ&A.÷ÿÿ ÿéøÏ&Ÿ ÿÿ ÿéöÒ&g*€ÿÿÿèïÒ&«&9dÿÿÿéñÏ&l9eÿÿ ÿéõÏ&]*ºÿÿ ÿéøÏ&¡Aÿÿ ÿèöÐ&«'ûÿÿ ÿèõÐ&«&9fÿÿ ÿéòÐ&¾.ÿÿ ÿêõÓ&¸Sÿÿ ÿé÷Ñ&A.£ÿÿ ÿçôÏ&A-xÿÿ ÿéöÏ&j&â!£ÿÿ ÿéôÏ&]Øÿÿ ÿèöÑ&4&«9gÿÿ ÿéñÏ&¸0"ÿÿ ÿéôÏ&j9hÿÿ ÿçóÑ&¡ ÿÿ ÿéöÏ&j&â9iÿÿ ÿéóÐ&ž*yÿÿ ÿéôÏ&j&-y9jÿÿ ÿèõÐ&A¢ÿÿ ÿè÷Ò&÷9kÿÿ ÿéõÑ& Ð5ÿÿ ÿêñÏ&¸%Sÿÿ ÿéòÏ&´& å æÿÿ ÿç÷Ï&h&ijÿÿ ÿèóÐ&«&?=ÿÿ ÿèôÐ&]*µÿÿ ÿçõÏ&Aþÿÿ ÿçôÏ& ÐÅÿÿÿèïÍ&«ÿÿ ÿêõÏ&-z-{ÿÿ ÿèòÐ&A%Tÿÿ ÿç÷Ï&«&iªÿÿ ÿéóÑ&AÍÿÿ ÿèôÏ&«9lÿÿ ÿèòÏ&g-ÿÿ ÿèòÑ&g7ÿÿ ÿéôÑ& Ñêÿÿ ÿêõÎ&-z+bÿÿ ÿéðÏ&j9mÿÿ ÿçõÐ&«‡ÿÿ ÿéóÏ&j.@ÿÿ ÿéòÏ&A*Ðÿÿ ÿéôÐ&¬¢ÿÿ ÿêòÐ&¸.?ÿÿ ÿéÞÏ&Ç-|ÿÿ ÿéðÏ&,lÿÿ ÿñóÏ&,Èÿÿ ÿêòÏ&,(ÿÿ ÿéóÏ&, ÿÿ ÿîõÐ&m,ÿÿ ÿéìÏ&,Yÿÿ ÿéóÏ&£‰ÿÿ ÿçøÏ&,%¼ÿÿ ÿêóÐ&¿,ÿÿ ÿî÷Ï&,ÿÿ ÿéìÏ&,("ÿÿ ÿéêÏ&,ÿÿ ÿçõÏ&,!vÿÿ ÿìõÏ&,ÿÿ ÿìõÏ&,ÿÿ ÿèôÏ&,(/ÿÿ ÿéëÏ&š,ÿÿ ÿèíÏ&££ÿÿ ÿèöÏ&£Ÿÿÿ ÿìôÏ&,Fÿÿ ÿéôÏ&,Úÿÿ ÿêôÏ&,*¶ÿÿ ÿéõÏ&,Rÿÿ ÿéòÏ&,0¬ÿÿ ÿîóÏ&£)ÿÿ ÿéñÏ&,8ÿÿ ÿèõÏ&,»ÿÿ ÿéöÏ&,ÿÿ ÿ÷óÏ&,Qÿÿ ÿçòÐ&£Pÿÿ ÿêõÏ&£/+ÿÿ ÿòõÏ&,ÿÿ ÿéïÐ&R,ÿÿ ÿëèÏ&ï,ÿÿ ÿéòÏ&,&µÿÿ ÿéõÏ&,!ÿÿ ÿéçÐ&,-}ÿÿ ÿèðÐ&'¡£ÿÿ ÿéòÏ&-0°ÿÿ ÿééÏ&£µÿÿ ÿéêÏ&j,ÿÿ ÿéðÏ&,*Öÿÿ ÿîõÏ&,%"ÿÿ ÿéóÐ&,0÷ÿÿ ÿèñÐ&&e&-&kÿÿ ÿéöÏ&£øÿÿ ÿéóÏ&,0Öÿÿ ÿéõÐ&,óÿÿ ÿèõÏ&¼£ÿÿ ÿéóÏ&-&ÙØÿÿ ÿèóÏ&,Vÿÿ ÿéôÑ& ¸,ÿÿ ÿêíÑ&,Ÿÿÿ ÿéóÐ&,zÿÿ ÿéõÐ&,ÿÿ ÿíöÐ&,ÿÿ ÿèôÐ&,Pÿÿ ÿéóÏ&,'ÿÿ ÿæöÏ&,-~ÿÿ ÿéêÐ&,cÿÿ ÿééÏ&,ÿÿ ÿæôÏ&,-ÿÿ ÿèñÏ&,Žÿÿ ÿêôÏ&,-‚ÿÿ ÿòóÏ&—,ÿÿ ÿèóÐ&,Œÿÿ ÿèïÏ&£-ƒÿÿ ÿéóÏ&,6ÿÿ ÿèôÏ&£'Øÿÿ ÿèöÏ&£%«ÿÿ ÿéóÏ&,&Çÿÿ ÿéóÐ&£ Oÿÿ ÿèòÏ&£ Wÿÿ ÿéìÐ&£øÿÿ ÿëôÏ&,(mÿÿ ÿìöÏ&£-„ÿÿ ÿéõÐ&‹,ÿÿ ÿèïÏ&,wÿÿ ÿéñÏ&,.ÿÿ ÿéíÏ&-Éÿÿ ÿéëÏ&,¾ÿÿ ÿèôÏ&,9oÿÿ ÿìõÐ&£%ªÿÿ ÿéõÑ&£Oÿÿ ÿéôÑ&,Íÿÿ ÿéñÐ&,gÿÿ ÿé÷Ï&,Œÿÿ ÿéöÏ&£ ×ÿÿ ÿéðÐ&£# ÿÿ ÿéïÏ&,!=ÿÿ ÿéíÏ&.&2-ÿÿ ÿéöÐ&£!ÿÿ ÿéòÏ&,"Kÿÿ ÿéóÐ&-0–ÿÿ ÿéóÏ&,"ÿÿ ÿêöÏ&-&-l9pÿÿ ÿäöÏ&,ýÿÿ ÿæòÏ&,!ÿÿÿ ÿì÷Ï&,¥ÿÿ ÿïòÏ&-£ÿÿ ÿèöÏ&-&#"#!ÿÿ ÿèôÐ&,&@"çÿÿ ÿèóÐ&,&@Yÿÿ ÿìôÐ&£0oÿÿ ÿèõÏ&, Óÿÿ ÿéïÑ&,ÿÿ ÿèôÐ&£#¸ÿÿ ÿèïÐ&£0¹ÿÿ ÿéòÏ&+,ÿÿ ÿéõÏ&£"îÿÿ ÿêðÏ&£#wÿÿ ÿêöÏ&,vÿÿ ÿéôÏ&,üÿÿ ÿçóÐ&,&rÿÿ ÿëôÏ&-.ûÿÿ ÿéòÐ&£% ÿÿ ÿçòÑ&£9qÿÿ ÿéðÐ&£*¸ÿÿ ÿîòÏ&,$Iÿÿ ÿèõÐ&,ÿÿ ÿèòÐ&£/Mÿÿ ÿéóÏ&,†ÿÿ ÿéóÏ&,*ÿÿ ÿéôÏ&,)Ëÿÿ ÿæïÏ&-,(ÿÿ ÿéïÐ&£-…ÿÿ ÿé÷Ï&,ÿÿ ÿéõÑ&,*·ÿÿ ÿéóÏ&-&9rÿÿ ÿéôÏ&£* ÿÿ ÿéòÐ&,*¹ÿÿ ÿêîÑ&,'ÿÿ ÿîôÏ&, ÿÿ ÿíõÏ&-&Þ9sÿÿ ÿéøÏ&,¡ÿÿ ÿéõÏ&,*ºÿÿ ÿèõÐ&-&9tÿÿ ÿçôÏ&-0ÿÿ ÿðòÐ&¤ÿÿÿéñÑ&dOÿÿ ÿéôÐ&feÿÿ ÿèñÐ&ehÿÿ ÿèóÐ&çeÿÿ ÿèóÐ&*»ÿÿ ÿçõË&j9uÿÿ ÿçõÏ&j& ÿÿ ÿéóÏ&l&k9vÿÿ ÿçðÑ&qpÿÿ ÿéóÒ&oiÿÿ ÿèôÐ&o*ÿÿÿéòÑ&m&º9wÿÿÿéðÑ&rsÿÿÿéîÉ&ÏlÿÿÿéðË&mnÿÿ ÿéñÐ&o9xÿÿ ÿéóÑ&Îqÿÿ ÿéòÐ&o*¼ÿÿÿéðÆ&Ä9yÿÿÿéÝÈ&9zÿÿÿêíÈ&9{ÿÿÿèÝÈ&9|ÿÿÿèôÈ&9}ÿÿÿîñÈ&9~ÿÿ ÿîõÉ&ï9ÿÿ ÿèêÉ&Á9€ÿÿÿéîÈ&ÿÿ"ÿéêÉ&Á/ÿÿ ÿðóÈ&0ÿÿÿçíÈ&9ÿÿÿííÉ&ï9‚ÿÿ"ÿçÜÊ&1ÿÿÿéïÊ&9ƒÿÿÿéõÉ&ï9„ÿÿ ÿëöÊ&9…ÿÿÿéðÊ& [ÿÿÿéóÉ&ï9†ÿÿÿèóÉ&Á9‡ÿÿÿèïÉ&Á9ˆÿÿÿéóÉ&ÁBÿÿÿïòÊ&9‰ÿÿÿéâÉ&"&Á9ŠÿÿÿèðÉ&*ÎÁÿÿ ÿéñÉ&Á*Ïÿÿ ÿìôÉ&"/&gÁÿÿ ÿèõÉ&Á&p9‹ÿÿÿéïÊ&"ÚÿÿÿéÞÊ&9ŒÿÿÿéñÉ&Á9ÿÿÿéíÉ&Á9Žÿÿ ÿéóÊ&&19ÿÿ ÿéòÊ&9ÿÿÿèïÊ&9‘ÿÿÿçæÊ&9’ÿÿÿèãÊ&9“ÿÿ ÿîôÊ&¹ÿÿ ÿèîÊ&G&=ÿÿÿççÊ&9”ÿÿÿéìÊ&9–ÿÿÿèñÍ&/ /Ÿÿÿ ÿèôÊ&&G!>ÿÿ ÿèñÊ&&G!?ÿÿ ÿèóÊ&9—ÿÿ ÿéôÐ&½¾ÿÿ ÿéòÐ&Å ÿÿÿêôÑ&Å9™ÿÿ ÿèôÏ&¥¿ÿÿÿêòÒ&MLÿÿ ÿèõÏ&¥Uÿÿ ÿçõÏ&¥FÿÿÿçðÏ&ÂÁÿÿ ÿèòÏ&¥Äÿÿ ÿèòÏ&¥%§ÿÿ ÿèõÏ&¥Qÿÿ ÿè÷Ï&¥ÃÿÿÿæõÑ&-‡Åÿÿ ÿèöÏ&ú¥ÿÿ ÿéòË&N9šÿÿ ÿéòÏ&RNÿÿ ÿèòÏ&¥ÿÿ ÿçõÏ&¥ÿÿ ÿçõÑ& -‰ÿÿÿæõÑ&P9›ÿÿ ÿèöÐ&dÆÿÿ ÿèöÏ&dÇÿÿ ÿéóÐ&-ˆ9œÿÿ ÿèðÏ&d’ÿÿ ÿèóÏ&c-‰ÿÿ ÿè÷Ï&-‰Ìÿÿ ÿèòÏ&ü-‰ÿÿ ÿèöÐ&'-Šÿÿ ÿèõÓ&S-Šÿÿ ÿè÷Ñ&&Å-Šÿÿ ÿåöÓ&¨©ÿÿÿèôÑ&-‹9žÿÿ ÿèñÏ&-Š0"ÿÿ ÿèóÒ&-‰9Ÿÿÿ ÿèòÊ&E9 ÿÿ ÿêòÅ&Oÿÿ ÿçóÉ&MWÿÿ ÿéîÏ&LNÿÿÿèðÏ&›.ÿÿ ÿéôÍ&O-Œÿÿ ÿêëÏ&QPÿÿ ÿéòÏ&«ªÿÿÿéìË&SRÿÿ ÿçôË&UTÿÿ ÿèëÎ&VQÿÿ ÿêïÏ&G#éÿÿ ÿêóÐ&ObÿÿÿðòÉ&,µWÿÿ ÿéõÏ&X†ÿÿÿêëÏ&aQÿÿ ÿçóË&R9¢ÿÿ ÿèõÌ&O-Žÿÿ ÿêîÎ&O-ÿÿÿèãÊ&F-ÿÿ ÿèïÏ&G-ŠÿÿÿéóÑ&í Qÿÿ ÿèëÏ&Q ÿÿ ÿè÷Ï&ÿÿ ÿêñÐ&[&YZÿÿÿèóË&R Ýÿÿ ÿêôÏ&O_ÿÿÿéêË&R9£ÿÿÿéðË&R9¤ÿÿÿéïÐ& Qÿÿ ÿéïÇ&:9ÿÿ ÿêòË&R9¥ÿÿÿçòÏ&87ÿÿ ÿçôÒ&#§8ÿÿ ÿèôÊ&;"ÿÿ ÿèìÐ&^"½ÿÿ ÿè÷Ë&X#ÐÿÿÿéøÇ& î ïÿÿ ÿèóÍ&.9¦ÿÿ ÿèõÐ&X9§ÿÿÿéïÇ&:$ ÿÿÿéíÊ&;%ÿÿ ÿéõÏ&¦9¨ÿÿ ÿèëÐ&Q9©ÿÿ ÿéëÉ&äQÿÿÿéîÌ& Q/2ÿÿ ÿéõÏ&X9ªÿÿ ÿéòÏ&X+iÿÿ ÿêìÎ&%ˆ^ÿÿ ÿèìÐ&^%‰ÿÿ ÿéõÏ&-ÿÿ ÿéïÎ&:*ÔÿÿÿçïÌ&.zÿÿÿêìÏ&^]ÿÿ ÿéïË&-‘:ÿÿ ÿéìÏ&-’^ÿÿ ÿèòÏ&ïðÿÿ ÿêóÏ&[ZÿÿÿéñÏ&-“\ÿÿ ÿîñÏ&_9­ÿÿ ÿèóÅ&Æ Kÿÿ ÿéóÅ& ÆÿÿÿéôÌ&ÈÇÿÿÿéóÏ&}Çÿÿ ÿéóÏ&¤Éÿÿ ÿèôÏ&bùÿÿ ÿèõÏ&Eèÿÿ ÿèõÏ&­¹ÿÿ ÿèôÏ&è¤ÿÿ ÿèöÏ&¬­ÿÿ ÿèõÏ&­ÿÿ ÿèòÐ&è0öÿÿ ÿæìÏ&­9¯ÿÿ ÿéìÐ&ÝÎÿÿ ÿèôÏ&ž­ÿÿ ÿè÷Ñ&èçÿÿ ÿéïÐ&Ýßÿÿ ÿéïÐ&ú,9ÿÿ ÿèóÏ&èÿÿ ÿéìÐ&ú‘ÿÿ ÿéðÐ& uúÿÿ ÿèõÐ&ú&ûˆÿÿ ÿéôÐ&úüÿÿ ÿéôÐ&ú$7ÿÿ ÿéñÑ&ú$”ÿÿ ÿçõÐ&ú0›ÿÿ ÿçõÐ&Ý!Uÿÿ ÿçõÐ&Ýþÿÿ ÿèôÐ&ÿÝÿÿ ÿéòÏ&3-”ÿÿ ÿèóÇ&8qÿÿ ÿéðÇ&-”ÿÿ ÿêôÐ&¾9±ÿÿÿêðÒ&-•9²ÿÿ ÿèöÑ&0ž­ÿÿ ÿéõÊ&-–0žÿÿ ÿèôÏ&8-—ÿÿ ÿèôÏ&z0žÿÿ ÿé÷Ï&-˜0žÿÿ ÿèõÏ&-™!«ÿÿ ÿçõÏ&F8ÿÿ ÿéòÆ&-š0žÿÿ ÿéïÏ& ó&!I!¶ÿÿ ÿéïÏ&!«/¹ÿÿÿêðÑ&-«!·ÿÿ ÿéòÆ&&¶0žÿÿ ÿéòÎ&Ä8ÿÿ ÿéòÆ&Ê!«ÿÿ ÿéóÏ&0Ö8ÿÿ ÿèôÇ&&ç8ÿÿ ÿéóÏ&58ÿÿ ÿéöÎ&Ø8ÿÿ ÿïðÈ&-(9³ÿÿ ÿéóÏ&'!«ÿÿ ÿçôÉ&Î9´ÿÿ ÿéóÐ&É!«ÿÿ ÿéöÏ&0è!«ÿÿÿèíÉ&9µÿÿÿêðÐ&!·9¶ÿÿ ÿéõÊ&!«&!9·ÿÿ ÿéôÑ&!«Ìÿÿ ÿéòÐ&!´!¶ÿÿ ÿéõÍ&"‚!«ÿÿ ÿéöÎ&!«9¸ÿÿ ÿéôÏ&!¸8ÿÿ ÿéõÎ&!«&!9¹ÿÿ ÿéôÐ&-ž!«ÿÿ ÿèöÎ&-£!«ÿÿ ÿéòÑ&)Ì!«ÿÿÿéóÐ&#\&-Ÿ+ÿÿ ÿéîÏ&&-Ÿ9ºÿÿÿêôÏ&- 9»ÿÿ ÿé÷Ð&.!«ÿÿ ÿèõÏ&+ß8ÿÿ ÿéðË&®&¯°ÿÿ ÿéöÏ&F-¡ÿÿ ÿéóÒ&Ä!¶ÿÿ ÿéñÐ&-¢!¶ÿÿ ÿéôÏ&.9¼ÿÿ ÿê÷Ò&s-¤ÿÿ ÿåóÏ&‘ÿÿ ÿéóÐ&ˆ‰ÿÿ ÿéóÏ&‰ÿÿ ÿèòÐ&-¥9Àÿÿ ÿéôÉ&1›ÿÿ ÿèíÐ&1+@ÿÿ ÿéõÉ&1´ÿÿ ÿèôÑ&€ÿÿ ÿéòÎ&õÿÿ ÿéõÏ&õ›ÿÿ ÿéìÉ&œõÿÿ ÿéóÏ&1ÿÿ ÿéõÏ&õyÿÿ ÿéóÉ&õÊÿÿ ÿéõÍ&1õÿÿ ÿéóÉ&1&ÿÿ ÿéðÉ&1ÿÿ ÿéíÉ&3%9ÿÿ ÿèõÉ&õUÿÿ ÿèõÏ&õÿÿ ÿèöÑ&Ó3ÿÿ ÿéöÎ&õÄÿÿ ÿéõÉ&õÿÿ ÿéòÏ&õ0¬ÿÿ ÿéõÏ&õÿÿ ÿéôÏ&õ*Ìÿÿ ÿéîÏ&õ°ÿÿ ÿéöÏ&1aÿÿÿéòÏ&-¦-§ÿÿ ÿèôÏ&õmÿÿÿéëÑ&-¨9Åÿÿ ÿéóÊ&!rõÿÿ ÿéõÑ&1¶ÿÿ ÿéôÌ&õ9Çÿÿ ÿèïÏ&3Ùÿÿ ÿéõÏ&õEÿÿ ÿéôÏ&õ—ÿÿÿééÏ&-¨9Èÿÿ ÿéîÏ&õœÿÿ ÿèõÍ&õÿÿ ÿéòÏ&39Éÿÿ ÿéïÐ&õRÿÿ ÿéòÏ&õ(-ÿÿ ÿéõÉ&õêÿÿ ÿéõÏ&wõÿÿ ÿèôÐ&õÐÿÿ ÿéêÐ&M1ÿÿ ÿêìÐ&-®-¯ÿÿÿéïÏ&-¨9Êÿÿ ÿè÷Ï&ñÿÿ ÿéòÐ&õ0öÿÿ ÿèïÏ&õ'Ñÿÿ ÿéëÏ&´-®ÿÿ ÿçôÉ&õ%Ìÿÿ ÿèôÏ&ƒ‚ÿÿ ÿéóÏ&3&}/Õÿÿ ÿèóÏ&õÿÿ ÿéöÐ&3³ÿÿ ÿèóÏ&Ôÿÿ ÿéóÐ&3Uÿÿ ÿéòÉ&õ-©ÿÿ ÿèéÉ&õ/ÿÿ ÿéóÏ&1ÿÿ ÿèóÏ&õîÿÿ ÿéôÐ&3øÿÿ ÿéóÏ&õ"Wÿÿ ÿéêÏ&"X¡ÿÿ ÿéöÏ&3,éÿÿÿéóÇ&-¨-°ÿÿ ÿéöÏ&õ±ÿÿ ÿéóÏ&õ-ªÿÿ ÿéóÏ&õ-¬ÿÿ ÿéñÍ&õ*­ÿÿ ÿéòÏ&1(Ëÿÿ ÿéõÉ&3%"ÿÿÿèóÐ&0ƒ0„ÿÿ ÿéìÉ&õdÿÿ ÿéõÐ&3óÿÿ ÿè÷Ï&õ7ÿÿ ÿéöÌ&õóÿÿ ÿéôÐ&õ7ÿÿ ÿéõÐ&õÿÿ ÿéìÉ&3aÿÿ ÿéóÉ&3&ÿÿ ÿèôÐ&P3ÿÿ ÿéïÏ&3xÿÿ ÿéòÉ&Äõÿÿ ÿèóÏ&30¾ÿÿ ÿéôÎ&õ&»/ÿÿ ÿéóÎ&õåÿÿÿéõÐ&ñ&ò&óôÿÿÿêõÏ&÷9Ëÿÿ ÿéðÌ&-,ÿÿ ÿé÷Ì&E-­ÿÿ ÿéðÏ&õ.ÿÿ ÿèòÑ&ÈÉÿÿ ÿéõÑ&23ÿÿ ÿéôÌ&õ+ÿÿ ÿèòÐ&÷ÿÿ ÿéõÐ&30¯ÿÿ ÿèõÏ&õZÿÿ ÿéóÎ&õ¥ÿÿ ÿéóÑ&õÕÿÿ ÿèôÑ&õ¦ÿÿ ÿéòÐ&3&&*ÿÿ ÿéôÏ&õ…ÿÿ ÿçôÏ&3×ÿÿÿèïÏ&z0„ÿÿ ÿéøÑ&3 ÿÿ ÿéôÏ&õ,Ëÿÿ ÿçõÏ&õÿÿ ÿéòÏ&3-±ÿÿ ÿèïÏ&&[9Ìÿÿ ÿéòÉ&©õÿÿ ÿéóÏ&ôõÿÿ ÿéóÏ&3.–ÿÿ ÿèôÍ&3(8ÿÿ ÿèõÎ&0xÿÿ ÿèõÐ&„ÿÿ ÿèôÊ&A9Íÿÿ ÿèôÉ&.œ3ÿÿ ÿçõÏ&3 Øÿÿ ÿçõÑ& -­ÿÿ ÿéôÑ&W9Îÿÿ ÿèôÏ&õcÿÿ ÿéóÐ&õ³ÿÿ ÿéòÉ&õ0Aÿÿ ÿéóÒ&30ìÿÿ ÿéôÉ&ø3ÿÿ ÿéôÏ&õbÿÿ ÿèöÉ&9Ïÿÿ ÿéíË&3Øÿÿ ÿéîÉ&õ-Bÿÿ ÿéõÏ&3)zÿÿ ÿèõÉ&-aõÿÿ ÿèòÏ&3.ÿÿ ÿéõÐ&õ‹ÿÿ ÿèôÐ&3]ÿÿ ÿéõÐ&3+Lÿÿ ÿéôÏ&3.’ÿÿ ÿçõÏ&3¨ÿÿ ÿèõÑ&3‰ÿÿ ÿéóÏ&õ'ÿÿ ÿéóÏ&1ÿÿ ÿéóÐ&3.ÿÿ ÿéöÏ&3'ñÿÿ ÿéõÑ&3 ÿÿÿèñÈ&É0Íÿÿ ÿèöÉ& ×ÿÿ ÿèðÑ&$9ÐÿÿÿèóÐ&Ä ÿÿ ÿéðÉ&»õÿÿ ÿéóÐ&3 Oÿÿ ÿéóÐ&Éõÿÿ ÿèöÏ&"Hÿÿ ÿéõÑ&3Oÿÿ ÿéôÑ&3Íÿÿ ÿèõÉ&ÿÿ ÿæõÏ&3"dÿÿ ÿéôÏ&3"ôÿÿ ÿéóÐ&3Hÿÿ ÿèöÏ&01ÿÿ ÿéñÉ&õ!Œÿÿ ÿéîÉ&3 xÿÿ ÿéóÑ&3Xÿÿ ÿéóÉ&3Óÿÿ ÿéñÏ&3¿ÿÿ ÿéöÏ&3Çÿÿ ÿéòÏ&3"¹ÿÿ ÿéôÏ&õ!_ÿÿ ÿéõÊ&õÿÿ ÿé÷É&3¥ÿÿ ÿèóÍ&õ!‹ÿÿ ÿçòÉ&3ÿÿÿèôÏ&Ä0tÿÿ ÿèóÉ&3#;ÿÿÿèïÉ&Ä&[ÿÿ ÿèõÐ&3,Òÿÿ ÿèôÏ&&##(ÿÿ ÿéíÉ&53ÿÿ ÿçõÉ&õ!0ÿÿ ÿèðÐ&3!%ÿÿ ÿéöÐ&õ#Zÿÿ ÿèóÐ&!ôÿÿ ÿéòÉ&3"Kÿÿ ÿéôÉ&3Èÿÿ ÿèôÐ&9ÑÿÿÿèöÉ&Ä&Jâÿÿ ÿéðÑ&3$•ÿÿ ÿéïÐ&&ÿÿ ÿéôÉ&3$Eÿÿ ÿéòÎ&3.žÿÿ ÿéóÑ&3&#s#tÿÿ ÿéðÉ&3$ ÿÿ ÿéòÏ&3$Iÿÿ ÿéöÏ&õvÿÿÿéðÏ&ð& ÿÿ ÿéöÒ&3/ÿÿ ÿéóÏ&3,uÿÿ ÿèòÑ&ÿÿ ÿèòÐ&3/Mÿÿ ÿéóÑ&3(“ÿÿ ÿèîÉ&oÿÿ ÿéòÏ&-;3ÿÿ ÿéóÉ&3†ÿÿ ÿèõÉ&~ÿÿ ÿèóÏ&¦ÿÿ ÿèöÏ&Nÿÿ ÿé÷Ï&39Òÿÿ ÿéóÏ&3*ÿÿ ÿéõÐ&3.•ÿÿ ÿé÷Í&3ÿÿ ÿçõÏ&õ0›ÿÿ ÿéóÑ&3&/3ÿÿ ÿèïÉ&4ÿÿ ÿéôÎ&3*Ñÿÿ ÿêóÏ&´-­ÿÿÿè÷Ï&Ä&n9Óÿÿ ÿèôÏ&/\ÿÿ ÿèóÐ&39Ôÿÿ ÿèôÏ&* ÿÿ ÿèøÑ&.Ÿÿÿ ÿèôÎ&%(ÿÿ ÿéòÏ&3üÿÿÿèöÏ&ÄFÿÿ ÿéöÏ&3'õÿÿ ÿéòÐ&3*¹ÿÿ ÿèöÐ&.#ÿÿ ÿèôÏ&9Õÿÿ ÿèóÑ&0š&. 0™ÿÿ ÿèõÐ&&G9Öÿÿ ÿèöÐ&3'ÿÿ ÿéðÑ&$9×ÿÿ ÿèõÓ&SÿÿÿèõÉ&Ä9Øÿÿ ÿèóÒ&Äÿÿ ÿéöÒ&*€3ÿÿ ÿçôÏ&-xÿÿ ÿéóÌ&-&k9Ùÿÿ ÿèôÑ&.¡ÿÿ ÿéòÐ&.ÿÿÿèôÐ&Ä.¢ÿÿ ÿèõÏ&/dÿÿÿèñÉ&Ä'ÿÿ ÿè÷Ñ&.£ÿÿ ÿèðÏ&,4ÿÿ ÿéðÎ&3,…ÿÿ ÿé÷Ñ&&Å3ÿÿ ÿéøÊ&3¡ÿÿ ÿèõÏ&&/‹9Úÿÿ ÿéõÑ&35ÿÿ ÿçóÑ&¡3ÿÿ ÿèõÐ&¢ÿÿ ÿèñÊ&0"ÿÿ ÿéõÏ&3!×ÿÿÿèöÏ&Ä9ÛÿÿÿèòÐ&Ä.¤ÿÿ ÿèóÏ&9Üÿÿ ÿç÷Ò&±3ÿÿÿçôÐ&Ä+(ÿÿ ÿéóÑ&3Îÿÿ ÿèòÉ&.¥ÿÿ ÿéõÓ&§9Ýÿÿ ÿéòË&3.¨ÿÿÿèùÏ&Ä9Þÿÿ ÿèðÓ&„…ÿÿÿèïÐ&†9ßÿÿÿçõÐ&‡ÄÿÿÿèöÌ&®¬ÿÿÿéòÏ&&*Ü9ãÿÿ ÿèôÒ&ÎØÿÿ ÿèóÒ&Î9åÿÿÿéóÒ&Ï9æÿÿ ÿêõÑ&‘.áÿÿ ÿèõÏ&--ÿÿÿéõÐ&.ÿÿ ÿîóÄ&T2ÿÿ ÿçøÏ&1?ÿÿ ÿéóÐ&1$pÿÿÿèâÎ&¤9éÿÿ ÿçóÌ&ö9êÿÿ ÿéöÐ&.«9ïÿÿ ÿéñÏ&n9ðÿÿ ÿéôÏ&n ÒÿÿÿèõÏ&.©.ªÿÿ ÿèïÐ&)*ÿÿÿé÷Î&p.©ÿÿÿèóÏ&ñ.©ÿÿ ÿèóÐ&,+ÿÿ ÿéóÐ&.­,ÿÿ ÿèòÐ&+Vÿÿ ÿéìÑ&Çÿÿ ÿéòÑ&ÿÿ ÿéëÑ&aÿÿ ÿèõÑ&*ÿÿ ÿéõÑ&ÿÿ ÿéóÑ&Ãÿÿ ÿéóÑ&+ÿÿ ÿéöÑ&aÿÿ ÿéóÑ&…ÿÿ ÿèõÑ&Tÿÿ ÿé÷Ñ&ÿÿ ÿéìÑ&(¾ÿÿ ÿéíÑ&.®ÿÿ ÿèôÑ&,ÿÿ ÿéõÑ&-ÿÿ ÿçõÏ&A¦ÿÿ ÿéëÑ&·ÿÿ ÿæïÑ&¸ÿÿ ÿéðÑ&jÿÿ ÿéêÑ&Mÿÿ ÿéðÑ&.}ÿÿ ÿéóÑ&.ÿÿ ÿéòÑ&*¬ÿÿ ÿèéÑ&/ÿÿ ÿéòÑ&(Ëÿÿ ÿèñÑ&8ÿÿ ÿéóÑ&{ÿÿ ÿéðÑ&0ÿÿ ÿéöÑ&Òÿÿ ÿéóÑ&²ÿÿ ÿéôÑ&ÿÿ ÿèìÑ&!Xÿÿ ÿéõÑ&dÿÿ ÿéõÑ& 0wÿÿ ÿèóÑ&Õÿÿ ÿèôÏ&A =ÿÿ ÿèõÑ&A1ÿÿ ÿéóÑ&!›ÿÿ ÿèöÏ&A#Íÿÿ ÿçíÑ&: ÿÿ ÿèéÏ&A ‰ÿÿ ÿèõÏ&A¯ÿÿ ÿéðÑ& $•ÿÿ ÿèòÐ&A2ÿÿ ÿéòÑ& $Jÿÿ ÿèòÏ&A0¤ÿÿ ÿèõÐ&A$(ÿÿ ÿèóÏ&A3ÿÿ ÿçõÏ&A0›ÿÿ ÿéòÑ& 0ÿÿ ÿéïÑ& 4ÿÿ ÿçóÑ& &D9õÿÿ ÿéóÑ&´ ÿÿ ÿèñÏ&A*wÿÿ ÿèòÏ&A.¯ÿÿ ÿèðÑ&,3 ÿÿ ÿèóÐ&A*Äÿÿ ÿèóÐ&A*yÿÿ ÿéñÑ& (ÿÿ ÿéõÑ&%x5ÿÿ ÿéõÒ&.° ÿÿ ÿéóÑ& 6ÿÿ ÿèòÑ&7.±ÿÿ ÿèòÏ&.².±ÿÿ ÿêõÉ&~ÿÿ ÿéõÏ&€ÿÿ ÿéöÐ&uvÿÿ ÿèôÐ&xwÿÿ ÿêôÑ&‚)™ÿÿ ÿéôÐ&yzÿÿÿéôÐ&€zÿÿÿðñÐ&v(ÿÿÿêñÐ&uvÿÿ ÿèõÏ&öõÿÿ ÿéóÏ&õ9÷ÿÿ ÿéðÏ&"õÿÿÿèñÐ&vÏÿÿÿèñÐ&vçÿÿÿéôÐ&v.³ÿÿ ÿêóÐ&v(ÿÿ ÿéóÏ&m9øÿÿÿéðÏ&õ¹ÿÿÿéñÏ&mîÿÿÿéñÏ&m½ÿÿÿéñÏ&m9úÿÿÿóòÏ&õ9ûÿÿÿéñÐ&vdÿÿÿíñÐ&v9üÿÿÿòðÏ&õ9ýÿÿ ÿéòÐ&v9þÿÿÿéñÏ&mHÿÿÿéòÏ&;õÿÿÿéñÐ&v:ÿÿÿêóÏ&m:ÿÿÿèòÏ&Nmÿÿ ÿéòÏ&m:ÿÿÿéöÏ&õIÿÿ ÿéòÏ&Ñ:ÿÿÿêòÏ&Ñ:ÿÿ ÿéôÐ&v:ÿÿÿêñÐ&v:ÿÿ ÿéòÏ&m:ÿÿ ÿéñÏ&m:ÿÿ ÿêòÏ&m: ÿÿ ÿèõÐ&v¨ÿÿÿéñÏ&m: ÿÿ ÿéñÏ&m: ÿÿÿèõÐ&ˆvÿÿ ÿéóÏ&õÿÿÿéòÏ&m: ÿÿ ÿéòÏ&m ðÿÿÿéõÏ&m: ÿÿÿîñÐ&v“ÿÿÿéñÏ&m:ÿÿ ÿïóÏ&õ:ÿÿ ÿéôÐ&v:ÿÿÿèóÏ&m:ÿÿÿéñÐ&v$˜ÿÿÿèñÐ&v:ÿÿÿéòÏ&m:ÿÿÿéñÏ&Ômÿÿ ÿóòÏ&õ:ÿÿ ÿéóÐ&v:ÿÿ ÿèñÏ&m:ÿÿ ÿêôÏ&((mÿÿÿìòÏ&ÑÔÿÿÿèñÏ&Ñ:ÿÿÿéñÐ&ÚvÿÿÿéñÏ&ç&æmÿÿÿêôÐ&vÿÿ ÿêóÏ&õ:ÿÿ ÿéóÐ&%ûvÿÿ ÿêöÏ&?mÿÿ ÿêóÐ&v:ÿÿ ÿéðÏ&õ&!"ÿÿÿéñÏ&m:ÿÿ ÿéñÏ&m:ÿÿÿêñÏ&m:ÿÿÿéòÏ&m:ÿÿ ÿéòÏ&m:ÿÿ ÿìòÏ&m: ÿÿÿõðÏ&õ:!ÿÿ ÿéôÏ&õ:"ÿÿ ÿëóÏ&m:#ÿÿ ÿéóÏ&m:$ÿÿ ÿæöÐ&vZÿÿÿéñÏ&mpÿÿ ÿéñÐ&}vÿÿÿéñÐ&v:%ÿÿÿèñÐ&v)ãÿÿÿéñÐ&v:&ÿÿÿôñÐ&v:'ÿÿÿèñÏ&m:(ÿÿÿéñÏ&m:)ÿÿ ÿíòÏ&Ñ:*ÿÿ ÿéñÏ&m:+ÿÿÿèñÏ&mÿÿÿèñÏ&m:,ÿÿÿïñÏ&m:-ÿÿ ÿñòÐ&v:.ÿÿÿéñÐ&v:/ÿÿ ÿéòÐ&v:0ÿÿÿéñÏ&m&r:1ÿÿ ÿêóÏ&Ñ:2ÿÿÿéñÏ&m:3ÿÿÿéñÐ&v:4ÿÿÿéñÏ&/pmÿÿÿêñÏ&Ñ:5ÿÿ ÿéóÐ&v:6ÿÿÿéòÏ&m:7ÿÿ ÿéóÏ&m:8ÿÿÿéñÏ&m:9ÿÿ ÿéôÏ&Ñ::ÿÿ ÿðõÏ&mÞÿÿ ÿéóÏ&m:;ÿÿ ÿìóÐ&v:<ÿÿÿæñÏ&m:=ÿÿ ÿéóÏ&m:>ÿÿ ÿéóÏ&k:?ÿÿ ÿéñÏ&m:@ÿÿ ÿéóÏ&m:AÿÿÿëñÐ&ÕvÿÿÿèñÏ&vÑÿÿÿéñÐ&v:Bÿÿ ÿéóÐ&v:CÿÿÿêõÏ&m&ÛÞÿÿ ÿæñÏ&m:Dÿÿ ÿéñÏ&mŸÿÿÿæñÏ&m ÿÿ ÿêóÏ&m:Eÿÿ ÿéóÐ&v:Fÿÿ ÿéóÏ&m:GÿÿÿéñÏ&ç&m:Hÿÿ ÿñóÏ&Ñ:JÿÿÿéñÏ&m:KÿÿÿèñÏ&m:Lÿÿ ÿñòÐ&v&AWÿÿÿéòÏ&m& :Mÿÿ ÿèóÏ&l€ÿÿ ÿéñÏ&Ñ·ÿÿÿêñÏ&Ñÿÿ ÿéóÏ&m:NÿÿÿéñÏ&m:OÿÿÿéôÏ&DmÿÿÿéñÏ&Ñ:PÿÿÿðñÏ&+&mÿÿÿéòÏ&Ñ&ç:Qÿÿ ÿéñÏ&m&£:Rÿÿ ÿéóÏ&Ñ:SÿÿÿæñÏ& ÑÿÿÿîñÏ&m:Tÿÿ ÿéóÏ&m‹ÿÿÿéðÏ&õ:Uÿÿ ÿéóÏ&m:Vÿÿ ÿéñÏ&m:WÿÿÿéôÏ&ñmÿÿÿëñÏ&m&5:Xÿÿ ÿêñÏ&mVÿÿÿèóÐ&§vÿÿÿéôÏ&Ñ&çêÿÿÿéóÏ&m:Yÿÿ ÿéòÏ&m:ZÿÿÿëñÐ&5&8vÿÿÿéñÏ&mvÿÿÿéñÏ&ÑeÿÿÿéóÏ&ç&JmÿÿÿçñÏ&m:[ÿÿÿéòÏ&m:\ÿÿÿèñÏ&ªmÿÿ ÿéóÏ&m:^ÿÿ ÿéñÏ&Ñ#®ÿÿÿñòÏ&#¯mÿÿÿèóÏ&ÑÓÿÿ ÿîôÏ&”õÿÿÿçñÏ&ÑÿÿÿèõÐ&vßÿÿ ÿéëÏ&›:_ÿÿÿéóÏ& &m:`ÿÿ ÿéóÏ&mÛÿÿ ÿéñÏ&m&¢£ÿÿÿéñÏ&m:aÿÿÿèñÏ&m:bÿÿÿéóÏ&Ñ:cÿÿÿîñÏ&0ÑÿÿÿéñÏ&m&ç:dÿÿ ÿéòÏ&Ñ:eÿÿÿçòÏ&8mÿÿ ÿéöÏ&m:fÿÿ ÿéñÏ&Ñ:gÿÿ ÿêñÏ&m:hÿÿ ÿìòÏ&Ñ`ÿÿ ÿêñÏ&Ñ&ÿÿÿéòÏ&m:iÿÿÿèñÏ& ÑÿÿÿéòÏ&m+ÿÿ ÿèóÏ&Ñ:jÿÿ ÿéôÐ&[vÿÿÿèñÏ&mìÿÿÿåñÏ&&mÛÿÿÿéñÏ&m:kÿÿ ÿèôÏ&m& ÙÿÿÿéñÏ&ѯÿÿ ÿèòÐ&&vWÿÿÿèñÏ&%¶& mÿÿ ÿèóÐ&v&W ÿÿÿéòÏ&Ñÿÿ ÿèòÏ&mÿÿÿèñÐ&H&vGÿÿÿèñÏ&m:lÿÿÿéñÏ&mýÿÿÿìñÐ&v:mÿÿÿêòÏ&m:nÿÿÿêñÏ&m&¾:oÿÿÿïñÏ&ÑÿÿÿèõÏ&Ñ&t:pÿÿ ÿëõÏ&Ñ&#„ÿÿÿé÷Ï&Ñ:qÿÿÿéñÏ&Ñ&ç§ÿÿÿèñÏ&Ñ:rÿÿÿêñÏ&m:sÿÿÿéõÏ&m&%ü9ÿÿ ÿèóÏ&m:tÿÿ ÿçóÏ&‘mÿÿÿçóÏ&k:uÿÿ ÿèñÏ&Ñ;ÿÿÿññÏ&m:vÿÿ ÿèòÏ&k:wÿÿÿéôÏ&Ñ&ç:xÿÿÿèñÏ&m:yÿÿÿéñÏ&mÞÿÿ ÿçõÏ&Ñ&r:zÿÿ ÿèñÏ&Ñ&£:{ÿÿÿçñÏ&Ñ:|ÿÿÿéñÏ&Ñ&ç:}ÿÿ ÿèôÏ&kˆÿÿÿèôÏ&Ñÿÿ ÿçõÏ&Ñ&r:~ÿÿÿèñÏ&t&Ñ:ÿÿÿèôÏ&Ñ&5:€ÿÿÿèñÏ&m:ÿÿÿèôÏ&kˆÿÿÿéñÏ&Ñ:‚ÿÿÿéôÏ&Ñ:ƒÿÿÿíñÏ&ѵÿÿ ÿéôÏ&Ñ:„ÿÿ ÿéóÏ&m:…ÿÿ ÿéòÏ&l:†ÿÿ ÿéóÏ&Ñ:‡ÿÿÿéôÏ&m:ˆÿÿ ÿçôÏ&m:‰ÿÿÿññÏ&Ñ:ŠÿÿÿçõÏ&m:‹ÿÿ ÿéòÏ&Ñ:Œÿÿ ÿèñÏ&k:ÿÿ ÿçóÏ&Ñ Þÿÿ ÿîõÏ&§&Ñ:ŽÿÿÿêñÏ&Ñ:ÿÿÿéñÏ&Ñ&9:ÿÿÿéñÏ&l:‘ÿÿ ÿçõÏ&lóÿÿÿéòÏ&Ñ:’ÿÿ ÿèóÏ&Ñ:“ÿÿÿçôÏ&Ñ:”ÿÿ ÿéóÏ&Ñ:•ÿÿÿçñÏ&Ñ:–ÿÿÿé÷Ï&m&5:—ÿÿÿèñÐ&v:˜ÿÿ ÿéòÏ&ÑÿÿÿëöÏ&m:™ÿÿÿéõÏ&m:šÿÿÿçñÏ&Ñ:›ÿÿÿéôÏ&m:œÿÿ ÿòòÐ&v*ŽÿÿÿçñÏ&m&9:ÿÿÿéõÏ&9&8mÿÿÿññÏ&m:žÿÿÿèñÏ&l:ŸÿÿÿéôÏ&Ñ: ÿÿ ÿéñÏ&l&æ:¡ÿÿ ÿåóÏ&m:¢ÿÿÿèñÏ&l:£ÿÿÿêñÏ&Ñ&¿:¤ÿÿÿëôÏ&5&Ñ:¥ÿÿ ÿéöÏ&Ñ ÿÿÿèñÏ&Ulÿÿ ÿéóÏ&Ñ:¦ÿÿÿãñÏ&m:§ÿÿÿêòÏ&Š&m:¨ÿÿÿëôÏ&Ñ:©ÿÿÿèñÏ&Ñ ÿÿÿéóÏ&m:ªÿÿÿéñÏ&ÑÒÿÿÿçóÏ&l:«ÿÿÿèóÏ&m:¬ÿÿÿéñÏ&Ñ:­ÿÿÿèñÏ&¯lÿÿÿéòÏ&m:®ÿÿ ÿéòÏ&m #ÿÿÿèñÏ&l²ÿÿÿèñÏ&Ñ&Š:¯ÿÿÿéóÏ&Ñ&:°ÿÿÿîôÏ&k:±ÿÿÿéñÏ&l1 ÿÿÿèñÏ&Ñ:²ÿÿÿèôÏ&m:³ÿÿ ÿéñÏ&Ñ&œ:´ÿÿÿçõÏ&l:µÿÿ ÿçôÏ&Ñ&r:¶ÿÿÿêñÏ&Ñ:·ÿÿ ÿëôÏ&m:¸ÿÿÿçõÏ&m:¹ÿÿÿèóÏ&Ñ:ºÿÿ ÿèòÏ&Ñ:»ÿÿ ÿèñÏ&Ñ:¼ÿÿ ÿæóÏ&Ñ:½ÿÿ ÿèóÏ&Ñ:¾ÿÿÿèñÏ&Ñ:¿ÿÿÿîñÏ&n:ÀÿÿÿèñÏ&5&Ñ:Áÿÿ ÿèñÏ&ÑtÿÿÿçñÏ&Ñ:Âÿÿ ÿéòÏ&Ñ:ÃÿÿÿèôÏ&Ñ:ÄÿÿÿéñÏ&Ñ Rÿÿ ÿñóÏ&m:Åÿÿÿí÷Ï&l:ÆÿÿÿéñÏ&Ñ:ÇÿÿÿéôÏ&l:ÈÿÿÿêñÏ&FÑÿÿÿèôÏ&m:ÉÿÿÿêñÏ&Û&m:Êÿÿ ÿçñÏ&Ñ:Ëÿÿ ÿéöÏ&Ñ:ÌÿÿÿèóÏ&òmÿÿ ÿéôÏ&Ñ:Íÿÿ ÿéóÏ&Ñ ÿÿ ÿéñÏ&4&£ÑÿÿÿçñÏ&Ñ:Îÿÿ ÿéóÏ&Ñqÿÿ ÿèñÏ&l:ÏÿÿÿéñÏ&Ñ:ÐÿÿÿéñÏ&l:Ñÿÿ ÿêöÏ&Ñ:Òÿÿ ÿéóÏ&m:ÓÿÿÿçñÏ&lßÿÿÿèñÏ&m:Ôÿÿ ÿçñÏ&Ñ&r:ÕÿÿÿçñÏ&_žÿÿÿèñÏ&m:Öÿÿ ÿéõÏ&l:×ÿÿ ÿèñÏ&Ñ:Øÿÿ ÿçôÏ&l:ÙÿÿÿîñÏ&lÙÿÿ ÿéóÏ&m Aÿÿ ÿéóÏ&Ñ:ÚÿÿÿèñÏ&Ñ:ÛÿÿÿèñÏ&Ñ:Üÿÿ ÿéñÏ&Ñ:Ýÿÿ ÿçöÏ&Ñ&r:Þÿÿ ÿêõÏ&ÎÑÿÿÿçñÏ&m&  ÿÿÿèñÏ&Ñ:ßÿÿÿçñÏ&Ñ:àÿÿ ÿæñÏ&l:áÿÿÿçñÏ&Ñ&ÑÒÿÿ ÿéôÏ&Ñ"Ìÿÿ ÿéóÏ&Ñ&œ›ÿÿ ÿéõÏ&Ñ"“ÿÿÿèñÏ&l:âÿÿÿçñÏ&Ñ:ãÿÿÿèñÏ&n"vÿÿ ÿéôÏ&ÑÚÿÿÿññÏ&Ñ"¡ÿÿ ÿèòÏ&k"¨ÿÿÿéñÏ&"ºÑÿÿÿçñÏ&Ñ&£:äÿÿÿèñÏ&l:åÿÿ ÿéñÏ&k"[ÿÿÿêñÏ&æ&Ñ:æÿÿ ÿèôÏ&Ñ:çÿÿ ÿéñÏ&"¾ÑÿÿÿéñÏ&l ŠÿÿÿéñÏ&!ÈÑÿÿ ÿêóÏ&n"Òÿÿ ÿçöÏ&Ñ&r:èÿÿ ÿçòÏ&r&qÑÿÿÿéòÏ&t&slÿÿ ÿéôÏ& & lÿÿÿéóÏ&u&vÑÿÿ ÿéñÏ&w&l:éÿÿ ÿìõÏ&Ñ:êÿÿ ÿéöÏ&l"Çÿÿ ÿéôÏ&l#Kÿÿ ÿéôÏ&n&q:ëÿÿ ÿéñÏ&l:ìÿÿÿçôÏ&l:íÿÿÿêñÏ&l" ÿÿ ÿéòÏ&l0~ÿÿ ÿîóÏ&l& ù:îÿÿÿêóÏ&Ñ:ïÿÿ ÿêñÏ&m:ðÿÿ ÿèöÏ&l:ñÿÿÿéôÏ&Ñ:òÿÿÿèñÏ&Ñ:óÿÿ ÿéñÏ&msÿÿÿðñÏ&#RlÿÿÿçñÏ&l:ôÿÿ ÿçôÏ&#›Ñÿÿ ÿéñÏ&l:õÿÿÿèóÏ&Ñ:öÿÿ ÿíóÏ&Ñ"²ÿÿ ÿèñÏ&"Ð&Tlÿÿ ÿêñÏ&l:÷ÿÿ ÿïôÏ&Ñ:øÿÿÿðñÏ&n!cÿÿÿéñÏ&#¨lÿÿÿèñÏ&n"ùÿÿ ÿêñÏ&l:ùÿÿÿèñÏ&#<lÿÿÿìñÏ&l:úÿÿÿëñÏ&l#Øÿÿ ÿçóÏ&l&p:ûÿÿÿéñÏ&Ñ ÿÿ ÿéõÏ&l&#$#%ÿÿ ÿéñÏ&m#Ëÿÿ ÿçõÏ&Ñ:üÿÿ ÿëõÏ&l&"‘„ÿÿ ÿæõÏ&Ñ:ýÿÿ ÿèñÏ&Ñ!ÿÿ ÿçóÏ&l"}ÿÿÿèñÏ&!¹ÑÿÿÿéñÏ&n!$ÿÿÿêòÏ&"+&€mÿÿ ÿèñÏ&l"ÃÿÿÿæòÏ&n"rÿÿÿèòÏ&l&:þÿÿ ÿëöÏ&„&l:ÿÿÿÿéñÏ&l"ÿÿÿé÷Ï&l;ÿÿ ÿçöÏ&Ñ&#;ÿÿ ÿêóÏ&o;ÿÿÿéõÏ&#ÒÑÿÿÿéñÏ&l"ÿÿ ÿéòÏ&l ÿÿÿæñÏ&#¹mÿÿÿéñÏ&Ñ#ðÿÿ ÿçóÏ&ø&rmÿÿÿèñÏ&l;ÿÿÿèõÏ&Ñ#ùÿÿ ÿèöÏ&Ñ;ÿÿÿéôÏ&l&u;ÿÿÿè÷Ï&5&Ñ;ÿÿÿèñÏ&n;ÿÿÿéñÏ&n$ ÿÿ ÿèóÏ&Ñ&t;ÿÿ ÿéõÏ&m; ÿÿ ÿéñÏ&$~lÿÿ ÿçóÏ&l&r; ÿÿÿéñÏ&l; ÿÿ ÿëõÏ&l$‹ÿÿÿèñÏ&$¨lÿÿÿéôÏ&Ñ&Ò; ÿÿÿêôÏ&5&Ñ; ÿÿ ÿêóÏ&o;ÿÿ ÿèñÏ&l;ÿÿ ÿéñÏ&œ&Ñ;ÿÿÿçñÏ&$xkÿÿ ÿïñÏ&l#ÿÿÿèóÏ&n;ÿÿ ÿêñÏ&k;ÿÿ ÿéñÏ&Ñ$®ÿÿ ÿèïÏ& ;ÿÿ ÿçòÏ&Ñ;ÿÿ ÿéñÏ&l;ÿÿ ÿçñÏ&o&r;ÿÿÿèñÏ&Á&Âmÿÿ ÿêõÏ&Ñ;ÿÿ ÿèõÏ&l&qpÿÿÿéñÏ&j;ÿÿ ÿçôÏ&m;ÿÿÿéñÏ&n;ÿÿ ÿéóÏ&l$)ÿÿ ÿìôÏ&l&g;ÿÿÿçñÏ&%lÿÿÿéöÏ&l;ÿÿ ÿçôÏ&l$qÿÿÿçñÏ&l;ÿÿÿéñÏ&l;ÿÿ ÿç÷Ï&Ñ&rBÿÿ ÿéñÏ&kZÿÿÿéñÏ&#)lÿÿ ÿéôÏ&l$ŽÿÿÿéñÏ&n;ÿÿ ÿîóÏ&Ñ& ù; ÿÿÿêñÏ&l;!ÿÿ ÿéñÏ&n&f;"ÿÿ ÿçôÏ&l$ÿÿÿçôÏ&Ñ;#ÿÿ ÿéóÏ&n;$ÿÿ ÿçóÏ&l;%ÿÿ ÿéôÏ&l;&ÿÿÿéòÏ&ç&Ñ;'ÿÿ ÿèõÏ&t&l;(ÿÿÿíòÏ&l;)ÿÿ ÿéõÏ&Ñ&&ÿÿ ÿèñÏ&Ñ;*ÿÿ ÿéóÏ&Ñ&Þüÿÿ ÿéôÏ&l&ŒÿÿÿéñÏ&l;+ÿÿ ÿîóÏ&m& ø;,ÿÿ ÿêñÏ&æ&Ñ;-ÿÿÿèñÏ&l;.ÿÿ ÿæñÏ&Ñ;/ÿÿ ÿïôÏ&Ñ;0ÿÿ ÿèóÏ&n;1ÿÿ ÿéòÏ&l&üýÿÿ ÿéòÏ&l&ü;2ÿÿ ÿêóÏ&l;3ÿÿÿèöÏ&n;4ÿÿÿèöÏ&l;5ÿÿÿèöÏ&l;6ÿÿÿèöÏ&k;7ÿÿÿéöÏ&Ñ& ;8ÿÿÿéóÏ& &m;9ÿÿ ÿçòÏ&Ñ&r;:ÿÿÿðñÏ&Ñ;;ÿÿÿíòÏ&%lÿÿÿéñÏ&n;<ÿÿÿéòÏ&Ñ;=ÿÿÿéòÏ&l&t;>ÿÿÿéñÏ&Ñ;?ÿÿÿéöÏ&l;@ÿÿ ÿéõÏ&l0 ÿÿ ÿèõÏ&l;AÿÿÿèñÏ&n;BÿÿÿéñÏ&orÿÿ ÿèñÏ&l;CÿÿÿêñÏ&n;DÿÿÿéñÏ&n;Eÿÿ ÿçõÏ&l&r;FÿÿÿçñÏ&Ñ;GÿÿÿéñÏ&n;Hÿÿ ÿèóÏ&Ñ;Iÿÿ ÿéôÏ&Ñ;Jÿÿ ÿéöÏ&l;KÿÿÿèóÏ&Ñ;Lÿÿ ÿçõÏ&Ñ;MÿÿÿéõÏ&Ñ;NÿÿÿéñÏ&l•ÿÿ ÿéóÏ&Ñ;Oÿÿ ÿèõÏ&p&n;PÿÿÿèñÏ&n;Qÿÿ ÿêñÏ&l^ÿÿÿéöÏ&l;Rÿÿ ÿéòÏ&ž;Sÿÿ ÿçñÏ&l;Tÿÿ ÿèöÏ&k'òÿÿ ÿèöÏ&0_lÿÿ ÿéòÏ&Ñ;Uÿÿ ÿèóÏ&Ñ;VÿÿÿèôÏ&Ñ;WÿÿÿæõÏ&n;Xÿÿ ÿçòÏ&Ñ0[ÿÿÿëóÏ&&Ñ;Yÿÿ ÿêòÏ&l;Zÿÿ ÿéóÏ&l;[ÿÿÿéñÏ&l;\ÿÿ ÿìôÏ&g&l;]ÿÿÿéñÏ&l;^ÿÿÿçñÏ&l/QÿÿÿéñÏ&k;_ÿÿÿéñÏ&l;`ÿÿÿéñÏ&l;aÿÿÿèóÏ&l;bÿÿ ÿèôÏ&l&DCÿÿÿèôÏ&jpÿÿÿèñÏ&nmÿÿÿéöÏ&&kÒÿÿ ÿéøÏ&n/Xÿÿ ÿçòÏ&l;cÿÿ ÿêôÏ& & kÿÿÿèòÏ& lÿÿÿçñÏ& mÿÿÿçòÏ&Ñ;dÿÿÿæñÏ&Ú&ÛkÿÿÿçôÏ&Ñ;eÿÿÿèñÏ&l;fÿÿÿèôÏ&Ñÿÿ ÿèôÏ&n&Ø;gÿÿ ÿéñÏ&k;hÿÿ ÿéôÏ&l;iÿÿÿêòÏ&lkÿÿ ÿéòÏ&k;jÿÿÿéñÏ&l&ù;kÿÿ ÿçñÏ&l&r zÿÿ ÿéôÏ& &oÿÿ ÿèôÏ&n;lÿÿ ÿéóÏ&n;mÿÿ ÿèõÏ&k&p;nÿÿ ÿíõÏ&lJÿÿÿìñÏ&Klÿÿ ÿçõÏ&k&r;oÿÿ ÿèôÏ&ž;pÿÿÿéñÏ&l;qÿÿÿæòÏ&n:ÿÿÿéôÏ&l&Ä;rÿÿ ÿèñÏ&l&!ž!ÿÿ ÿçòÏ&l;sÿÿÿçõÏ&k;tÿÿÿèòÏ&n;uÿÿÿêñÏ&S&l;vÿÿ ÿéôÏ&n;wÿÿ ÿçñÏ&Ñ;xÿÿÿëóÏ&l&‚ÿÿ ÿçõÏ&l;yÿÿÿçñÏ&j;zÿÿÿèñÏ&l;{ÿÿÿäñÏ&n;|ÿÿÿéñÏ&k;}ÿÿ ÿêóÏ&m&%J;~ÿÿÿéñÏ&Ñ;ÿÿÿéñÏ&l& À;€ÿÿ ÿçôÏ&l&!‡ÿÿ ÿèõÏ&l;ÿÿ ÿêñÏ&n&"!"ÿÿ ÿèõÏ&l&p;‚ÿÿÿíòÏ&l/¨ÿÿÿéòÏ&k&;ƒÿÿ ÿèñÏ&n;„ÿÿÿéñÏ&l;…ÿÿ ÿéñÏ&Ñ&œ;†ÿÿÿèñÏ&Ñ;‡ÿÿ ÿðôÏ&Ë&ÊÑÿÿ ÿèõÏ&k;ˆÿÿÿåóÏ&j;‰ÿÿÿçôÏ&l& ¿ ¾ÿÿÿçöÏ&l&á;ŠÿÿÿéñÏ&Ñ;‹ÿÿ ÿéòÏ&k;Œÿÿ ÿæñÏ&m;ÿÿ ÿéñÏ&n;ŽÿÿÿêñÏ&j;ÿÿ ÿçõÏ&Ñ&r$GÿÿÿéôÏ&l;ÿÿÿéôÏ&l&;‘ÿÿ ÿçñÏ&k&%rÿÿ ÿçòÏ&k&r$yÿÿ ÿèñÏ&Ñ;’ÿÿÿéóÏ&k;“ÿÿ ÿæõÏ&k;”ÿÿ ÿéùÏ&n;•ÿÿ ÿêõÏ&n;–ÿÿ ÿéñÏ&Ñ&æ;—ÿÿÿåñÏ&n/äÿÿÿèñÏ&l;˜ÿÿÿéõÏ&n;™ÿÿÿçñÏ&L&K&&MnÿÿÿêóÏ&l;šÿÿ ÿéóÏ&l;›ÿÿ ÿîóÑ&;œÿÿÿéñÏ&n;ÿÿ ÿçôÏ&k;žÿÿÿèöÏ&l;ŸÿÿÿéñÏ&n; ÿÿÿèöÏ&l;¡ÿÿ ÿéõÏ&Ñ;¢ÿÿ ÿåôÏ&l&"";£ÿÿÿéòÏ&Ñ;¤ÿÿÿéñÏ&l(€ÿÿ ÿèñÏ&ž;¥ÿÿ ÿèõÏ&n;¦ÿÿ ÿèõÏ&l;§ÿÿ ÿéñÏ&l& À ÁÿÿÿèñÏ&n;¨ÿÿ ÿéòÏ&l;©ÿÿ ÿèöÏ&n;ªÿÿ ÿéóÏ&Ñ;«ÿÿÿèñÏ&n;¬ÿÿÿçñÏ&n&rqÿÿÿçñÏ&n&s&tuÿÿÿçóÏ&g&ž;­ÿÿ ÿêñÏ&l;®ÿÿÿçñÏ&ž;¯ÿÿ ÿçòÏ&l;°ÿÿÿèôÏ&n&;±ÿÿ ÿèóÏ&l;²ÿÿÿèñÏ&k;³ÿÿÿéñÏ&l;´ÿÿÿçöÏ&k&$Ä;µÿÿÿéñÏ&n;¶ÿÿ ÿèóÏ&n;·ÿÿ ÿêóÏ&w&vjÿÿÿèñÏ&n;¸ÿÿ ÿçóÏ&n&r;¹ÿÿ ÿìòÑ&;ºÿÿÿçõÏ&n%yÿÿÿêõÏ&n&  œÿÿ ÿéôÏ&k;»ÿÿÿçôÏ&l;¼ÿÿ ÿçôÏ&õ&ô&lóÿÿ ÿéõÏ&n&%áÿÿ ÿèñÏ&l;½ÿÿÿèóÏ&n&%;¾ÿÿ ÿéòÏ&ž;¿ÿÿÿéñÏ&n;Àÿÿ ÿèôÏ&n;Áÿÿ ÿèôÏ&k;ÂÿÿÿèõÏ&l&""~ÿÿ ÿéóÏ&l;ÃÿÿÿçñÏ&n;Äÿÿ ÿîóÏ&n& ù;ÅÿÿÿîñÏ&n;Æÿÿ ÿçôÏ&l;Çÿÿ ÿç÷Ï&n&Žÿÿ ÿèòÑ&;Èÿÿ ÿèñÏ&n;ÉÿÿÿéñÏ&Ñ;Êÿÿ ÿèñÏ&l;ËÿÿÿëöÏ&n;Ìÿÿ ÿèñÏ&n;ÍÿÿÿèõÏ&l;ÎÿÿÿçñÏ&n;Ïÿÿ ÿèôÏ&n%_ÿÿ ÿçôÑ&;ÐÿÿÿéñÏ&l%aÿÿÿêñÏ&l%mÿÿÿéöÏ&n;Ñÿÿ ÿèôÏ&n;ÒÿÿÿéñÏ&n/¡ÿÿ ÿèöÏ&l;ÓÿÿÿèñÏ&l;Ôÿÿ ÿéòÏ&n;Õÿÿ ÿèñÏ&k&‰;Öÿÿ ÿçôÏ&k&r;×ÿÿÿçóÏ&n;Øÿÿ ÿèóÏ&l;ÙÿÿÿçòÏ&j&gfÿÿ ÿêñÏ&l;Úÿÿ ÿìôÏ&g&n;ÛÿÿÿêñÏ&l;Üÿÿ ÿèõÏ&l;ÝÿÿÿéñÏ&l;ÞÿÿÿéõÏ&l;ßÿÿÿéñÏ&l;àÿÿ ÿéñÏ&n;áÿÿÿèñÏ&k;âÿÿÿéñÏ&n;ãÿÿ ÿèøÏ&k;äÿÿ ÿèöÏ&l;åÿÿ ÿèñÏ&l;æÿÿ ÿéñÏ&n/HÿÿÿèñÏ&l;çÿÿÿíñÏ&n;èÿÿÿéõÏ&l;éÿÿ ÿéõÏ&Ñ;êÿÿ ÿíòÏ&ž;ëÿÿ ÿéøÏ&Ñ;ìÿÿÿèñÏ&n;íÿÿÿéõÏ&l;îÿÿ ÿçôÏ&k& ¾;ïÿÿÿèñÏ&n;ðÿÿÿæõÏ&l;ñÿÿ ÿé÷Ï&k;òÿÿ ÿêóÑ&;óÿÿÿêñÏ&n&(~(ÿÿÿèóÏ&n;ôÿÿÿéñÏ&n;õÿÿ ÿéóÏ&l;öÿÿ ÿèóÏ&k;÷ÿÿ ÿéñÏ&n&!A!@ÿÿ ÿèôÏ&n;øÿÿÿéöÏ&n;ùÿÿ ÿéóÏ&j;úÿÿ ÿèóÏ&n&*;ûÿÿÿëöÏ&l'ýÿÿ ÿèñÏ&ð&n;üÿÿÿéñÏ&k;ýÿÿÿèôÏ&j;þÿÿÿéñÏ&l;ÿÿÿÿçöÏ&n<ÿÿÿèòÏ&n<ÿÿÿéñÏ&n<ÿÿ ÿéñÏ&n&G<ÿÿÿéñÏ&n<ÿÿ ÿèñÏ&n<ÿÿ ÿîôÏ&Ô&n<ÿÿ ÿçõÏ&n<ÿÿ ÿçóÏ&n<ÿÿ ÿïóÏ&n< ÿÿ ÿèóÏ&n&ð< ÿÿ ÿêôÑ&< ÿÿ ÿèöÏ&n< ÿÿÿèøÏ&k< ÿÿÿéóÏ&j<ÿÿ ÿèõÏ&ž<ÿÿÿèñÏ&k<ÿÿ ÿèôÑ&<ÿÿ ÿéñÏ&l<ÿÿ ÿèõÏ&ž<ÿÿ ÿéñÏ&j<ÿÿ ÿîóÏ&!x&ž<ÿÿÿêöÏ&j<ÿÿ ÿèòÑ&&%n<ÿÿÿéóÏ&Ñ<ÿÿÿçñÏ& Â&l<ÿÿ ÿçôÑ&<ÿÿ ÿéöÑ&&ÿÿÿèðÑ&‹ŒÿÿÿèñÑ&ŽÿÿÿèòÑ&ÿÿ ÿèïÍ&’‘ÿÿ ÿèôÏ&ÿÿÿæóÑ&–ÿÿ ÿçõÏ&—<ÿÿ ÿêóÐ&.Ú<ÿÿÿèôÑ&“ÿÿÿèðÑ&‹<ÿÿÿèðÑ&<ÿÿ ÿèíÐ&˜”ÿÿ ÿèïÐ&˜•ÿÿ ÿèôÏ&¶ÿÿ ÿèñÐ&.Ú<ÿÿ ÿèõÏ&¸·ÿÿ ÿéóÏ&/{¹ÿÿ ÿèöÏ&º»ÿÿ ÿéöÑ&¼ºÿÿÿéðÏ&¾½ÿÿ ÿè÷Ñ&™&'< ÿÿ ÿéóÏ&¹ÿÿÿéõÐ& ã.•ÿÿÿéóÑ&/ÙLÿÿÿéóÏ& ã+Dÿÿ ÿæöÐ&|0 ÿÿÿèöÑ&L&—ÿÿÿèõÑ&L£ÿÿ ÿæùÏ&nÿÿ ÿçõÑ&!Ÿ! ÿÿ ÿæòÐ&|òÿÿ ÿéôÑ&µ´ÿÿ ÿèòÎ&ò*Çÿÿ ÿéôÏ&0YµÿÿÿçòÐ&œ&C=ÿÿÿéõÐ&o‹ÿÿ ÿèóÑ&ÕÇÿÿ ÿæòÏ& qÿÿÿéôÐ&o›ÿÿÿç÷Ç& oÿÿÿé÷Ð&o-²ÿÿ ÿè÷Å&Ç'ÿÿ ÿæòÏ&Ïÿÿ ÿéõÏ&lkÿÿ ÿèõÐ&Ç.ÿÿÿéóÏ&o6ÿÿÿèöÏ&o'!ÿÿÿéìÇ&oÿÿ ÿãóÑ&$=ÿÿ ÿéòÐ&mnÿÿ ÿèóÏ&Çñÿÿ ÿéòÏ& °' ÿÿÿæóÐ&#\&Ï+ÿÿ ÿéöÏ&vlÿÿ ÿèõÐ&Ç'"ÿÿ ÿéôÑ&=ÿÿÿçòÎ&0Ÿÿÿ ÿçòÊ&A=ÿÿÿæõÑ&Ï=ÿÿÿéïÑ&o'#ÿÿ ÿèóÒ&Ç'$ÿÿ ÿåöÓ&§=ÿÿ ÿèöÑ&Œ=ÿÿ ÿèõÏ&-0ÿÿ ÿéõÎ&Ä0ÿÿ ÿèóÏ&Å0ÿÿ ÿêôÐ&‚0ÿÿ ÿêöÎ&00ÿÿ ÿéóÏ& j0ÿÿ ÿéóÏ&#0ÿÿ ÿéöÎ& ’ ‘ÿÿ ÿéôÑ& ‘$ ÿÿ ÿçôÏ&Ë=ÿÿ ÿçôÏ&Ë=ÿÿ ÿçôÏ&Ë=ÿÿ ÿçôÏ&#Ëÿÿ ÿçôÏ&Ë=ÿÿ ÿçôÏ&ËÉÿÿ ÿçôÏ&Ê=ÿÿ ÿçôÏ&Ê=ÿÿ ÿçôÏ&Ê=ÿÿ ÿçôÏ&Ê=ÿÿ ÿçôÏ&Ê=ÿÿ ÿçôÑ&ÌÊÿÿ ÿçôÏ&Ê= ÿÿ ÿçôÏ&Ê=!ÿÿ ÿçôÏ&Ê="ÿÿ ÿçõÐ&Ê=#ÿÿ ÿçôÐ&Ê=$ÿÿ ÿçôÏ&Ê=%ÿÿ ÿçôÏ&Ê ÿÿ ÿçôÏ&Ê=&ÿÿ ÿçôÏ&yÊÿÿ ÿçôÏ&Ê='ÿÿ ÿçôÏ&Ê=(ÿÿ ÿçöÏ&#=)ÿÿ ÿçöÏ&;#ÿÿ ÿçöÏ&#=*ÿÿ ÿçôÏ&Ê=+ÿÿ ÿçöÏ&#=,ÿÿ ÿçôÏ&Ê=-ÿÿ ÿçöÑ&#=.ÿÿ ÿçöÐ&#=/ÿÿ ÿçôÏ&Ê’ÿÿ ÿçôÏ& \Êÿÿ ÿçôÐ&Ê=0ÿÿ ÿçöÏ&#=1ÿÿ ÿçöÏ&&#ÿÿ ÿçöÏ&Ê"ÿÿ ÿçöÐ&#=2ÿÿ ÿçôÏ&Ê=3ÿÿ ÿçöÏ&#=4ÿÿ ÿçöÏ&#=5ÿÿ ÿçôÐ&Ê=6ÿÿ ÿçöÏ&#=7ÿÿ ÿçöÏ&#=8ÿÿ ÿçöÏ&#=9ÿÿ ÿç÷Ï&#=:ÿÿ ÿèöÊ&Ñôÿÿ ÿéìÎ&ÑYÿÿ ÿéðÃ&ŠÂÿÿ ÿêòÎ&Œÿÿ ÿèóÇ&¡+Jÿÿ ÿéôÏ&ÑÃÿÿ ÿéöÎ&ŠÄÿÿ ÿéôÅ&Ñÿÿ ÿíóÊ&ßÿÿ ÿéóÆ&чÿÿ ÿëõÇ&Ñÿÿ ÿèõÏ&Šÿÿ ÿéõË&`Šÿÿ ÿìõÑ&Š-ÿÿ ÿçóÎ&Ѹÿÿ ÿéòÐ&Ñ0öÿÿ ÿíóÊ&ŒQÿÿ ÿéöÐ&³ÿÿ ÿèôÐ&ÐÑÿÿ ÿèöÏ&Š+ÿÿ ÿéóÏ&Ñÿÿ ÿíðÏ&Šiÿÿ ÿêìÏ&ÎÍÿÿ ÿíöÌ&1Íÿÿ ÿíôÐ&Àÿÿ ÿíóÏ&Ñ'Ëÿÿ ÿéóÏ&OŠÿÿ ÿéòÄ&ÑÎÿÿ ÿéòÎ&²ÿÿ ÿèóÏ&Šÿÿ ÿíõÆ&Œÿÿ ÿèõË&ÏÍÿÿ ÿèóÏ&Ñÿÿ ÿêðÇ&ÍÃÿÿ ÿíôÆ&Šžÿÿ ÿêòÏ&Ñ ÿÿ ÿêõÉ&Ñ~ÿÿ ÿè÷Ï&Ñ7ÿÿ ÿéõÑ&Œôÿÿ ÿèîÏ&Ñÿÿ ÿéóÏ&Ñæÿÿ ÿèôÐ&PŒÿÿ ÿéöÏ&Ñ—ÿÿ ÿíöÑ&Œaÿÿ ÿéõÐ&óÿÿ ÿçõÐ&Ñ(ÿÿ ÿêõÑ&Ñ2ÿÿ ÿèôÉ&00ÿÿ ÿíóÏ&~Ñÿÿ ÿíóÄ&Ñ&ÿÿ ÿéõÐ&Š‹ÿÿ ÿéóÏ&æŒÿÿ ÿéóÐ&ŠNÿÿ ÿéôÑ&àÑÿÿ ÿé÷Ì&Eÿÿ ÿéñÇ&Óÿÿ ÿèõÏ&Œ»ÿÿ ÿæôÏ&Ñÿÿ ÿéòÏ&Š,ÿÿ ÿêûË&Œ&Hºÿÿ ÿéõÈ&Ñ<ÿÿ ÿèôÑ&Ѧÿÿ ÿèñÆ&+Iÿÿ ÿìõÄ& &!ÿÿ ÿèõÕ&+J=;ÿÿ ÿéôÏ&Œ$ÿÿ ÿéõÄ&Œ+Hÿÿ ÿéóÅ&Ðÿÿ ÿéêÐ&Š–ÿÿ ÿéóÎ&Ñ0ÿÿ ÿèóÏ&+K0Yÿÿ ÿçõÑ& Œÿÿ ÿéõÐ&„ÿÿ ÿéôÏ& ®ÿÿ ÿèõÐ&LÑÿÿ ÿéìÈ&+Fÿÿ ÿéóÏ&Žÿÿ ÿéôÏ&+Gÿÿ ÿéöÏ&Œ/öÿÿ ÿçõÓ&)@ÿÿ ÿèöÎ&Œ»ÿÿ ÿèõÑ&‰Œÿÿ ÿéõÐ&Œ‹ÿÿ ÿèòÏ&Ñ Wÿÿ ÿèóÏ&Œ-dÿÿ ÿéóÏ&Šÿÿ ÿìõÑ& ÿÿ ÿéîÏ& ÿÿ ÿêõÇ&.3/`ÿÿ ÿéøÏ& ÿÿ ÿíñÍ&Œ+Mÿÿ ÿèöÏ&Œ'ðÿÿ ÿé÷Ç&Œ1ÿÿ ÿéðÅ&Œ»ÿÿ ÿéíÑ&/&/`=<ÿÿ ÿéöÏ&Í"Hÿÿ ÿìõÐ&Œ+Lÿÿ ÿéíÇ&Ñÿÿ ÿéõÐ&Ñ#¡ÿÿ ÿèòÏ&Œ.ÿÿ ÿèõÐ&0Œÿÿ ÿéóÎ&Ñ&Çÿÿ ÿéôÏ&/ú/`ÿÿ ÿéóÎ&+Nÿÿ ÿéõÑ&Oÿÿ ÿíñÍ&0ÿÿ ÿèôÍ&==ÿÿ ÿèñÐ&Ñ ÿÿ ÿèñÎ&Í&Û&eÿÿ ÿéöÏ&/`ÿÿ ÿèôÏ&$‚ÿÿ ÿéöÎ&Œ"_ÿÿ ÿéíÉ&ÑJÿÿ ÿíñÏ&Œ!aÿÿ ÿéóÊ&Œóÿÿ ÿíóÎ&Œÿÿ ÿèóÏ&Ñ‹ÿÿ ÿéóÏ&/`0sÿÿ ÿçõÉ&ŒYÿÿ ÿéòÎ&Œ.¹ÿÿ ÿéíÇ&5ÿÿ ÿéõÏ&0/`ÿÿ ÿèõÎ&°ÿÿ ÿèïÐ&Í0¹ÿÿ ÿéõÈ&#Iÿÿ ÿéïÑ&Œÿÿ ÿíôÏ&Œ"jÿÿ ÿéöÑ&=>ÿÿ ÿéóÎ&Œ$¸ÿÿ ÿíòÐ&Œ2ÿÿ ÿèôÐ&ÿÿ ÿêîË&$Tÿÿ ÿèõÐ& /`ÿÿ ÿéòÈ&Œ$Ìÿÿ ÿçóÐ&æÿÿ ÿéöÒ&/ÿÿ ÿèõÇ&/8ÿÿ ÿéòÏ&Œÿÿ ÿéïÐ&Ñ%ÿÿ ÿèñÏ&+O=?ÿÿ ÿéôÉ&/9ÿÿ ÿé÷Ð&/Y/`ÿÿ ÿêôÑ&+Pÿÿ ÿèôÒ&0 +Oÿÿ ÿìóÏ&¦/`ÿÿ ÿéóÏ&0ÿÿ ÿéïÐ&-…ÿÿ ÿéõÏ&f&-q/`ÿÿ ÿéöÇ&Í& Ãÿÿ ÿèõÐ&Œ&˜ÿÿ ÿèöÐ&ÒÍÿÿÿéóÐ&ÓÛÿÿ ÿéîÑ&Œ¹ÿÿ ÿéòÏ&Í Þÿÿ ÿèõÑ&f&-r/`ÿÿ ÿêöÏ&â&/`=@ÿÿ ÿéíÏ&Í-9ÿÿ ÿèóÏ&{ÿÿ ÿèôÑ&û+Oÿÿ ÿçôÏ&(Kÿÿ ÿíöË&Œÿÿ ÿêîÑ&Œ'ÿÿ ÿêòÏ&üÿÿ ÿéóÈ&/`/bÿÿ ÿéóÒ&iÿÿ ÿèõÌ&þÿÿ ÿè÷Ð&6&/`=AÿÿÿèõÊ&ÔÓÿÿ ÿéôÎ&Œ*Ñÿÿ ÿèôÎ&+Qÿÿ ÿéóÏ&'÷ÿÿ ÿêóÐ&Í&¤ÿÿ ÿèðÑ&&3=Bÿÿ ÿéøÊ&Œ¡ÿÿ ÿëòÏ&ú&/`=Cÿÿ ÿèòÐ&/ÿ.ÿÿ ÿéñÈ&Í'ÿÿ ÿèõÏ&/dÿÿ ÿêóÐ&=Dÿÿ ÿèõÐ&&/`=Eÿÿ ÿéóÏ&%õ/`ÿÿ ÿçøÒ&Õ/`ÿÿ ÿéõÐ&/`=Gÿÿ ÿéòÊ&Œðÿÿ ÿéöÉ&'è/`ÿÿ ÿçôÐ&/`=Hÿÿ ÿç÷Ò&±ÿÿÿéóÏ&Ó&0=Iÿÿ ÿèóÐ&+R/`ÿÿ ÿèòÍ&%\ÿÿÿéòÐ&Ó%Vÿÿ ÿéôÏ&/`=Jÿÿ ÿèðÏ&/`=Kÿÿ ÿêóÑ&0=Lÿÿ ÿéöÐ&}ÿÿ ÿéðË&ú&/`=Mÿÿ ÿëòÈ&ú&/`=Nÿÿ ÿçôÏ&0/`ÿÿ ÿéíÊ&–/`ÿÿ ÿèöÐ&/`=Oÿÿ ÿéñÑ&Í+Sÿÿ ÿèòÑ&&0=Pÿÿ ÿéóÌ&(T/`ÿÿ ÿéòË&.¨ÿÿÿéóÐ&Ó=Qÿÿ ÿèùÔ&/`=Rÿÿ ÿçõÐ&‡/`ÿÿ ÿçøÒ&/`=Sÿÿ ÿéöÎ&Æ/`ÿÿ ÿçóÎ&/`=Tÿÿ ÿéêÐ&Ö×ÿÿ ÿéòÐ&Iÿÿ ÿèõÐ&gÿÿ ÿèôÐ&&ÿÿ ÿéõÐ&<ÿÿ ÿèîÐ&”“ÿÿ ÿéñÐ&#Ç”ÿÿ ÿèóÐ&!—ÿÿ ÿéóÐ&çÿÿ ÿèïÐ&'ö/‘ÿÿ ÿèóÐ&/‘=Uÿÿ ÿéòÐ&”-†ÿÿ ÿéùÒ&/‘=Vÿÿ ÿçðÑ&/‘=Wÿÿ ÿéóÏ& Ì1ÿÿ ÿéøÏ&à ÍÿÿÿéïÏ&!+…ÿÿ ÿéõÏ& Í!*ÿÿ ÿèöÏ& ÍHÿÿ ÿéóÏ& Í!,ÿÿ ÿéöÏ& ΄ÿÿ ÿéîÏ& Íÿÿ ÿèõÏ& ÎUÿÿ ÿéõÐ&¬ Îÿÿ ÿèòÏ& Î0%ÿÿ ÿéïÏ& Ξÿÿ ÿéôÏ& Î Òÿÿ ÿéôÏ& Τÿÿ ÿéõÏ& ̓ÿÿ ÿéñÏ& Í)µÿÿ ÿèõÏ&!C Îÿÿ ÿéöÏ& ͬÿÿÿçïÏ&!+=Yÿÿ ÿéìÐ&2 Íÿÿ ÿéõÏ& Îôÿÿ ÿèóÏ& Ôîÿÿ ÿçõÏ& ÔFÿÿ ÿéòÐ& Î0ôÿÿ ÿèõÐ& Î&åÿÿ ÿêöÒ&ø=Zÿÿ ÿéõÏ& Î!Mÿÿ ÿéñÏ& Îþÿÿ ÿçõÏ& ÎFÿÿ ÿéôÏ& Íœÿÿ ÿéòÏ& Ô²ÿÿ ÿéòÏ& Î/”ÿÿ ÿçòÐ& Î/‚ÿÿ ÿéëÏ& Í·ÿÿ ÿéòÏ& Í&¶ÿÿ ÿéîÏ& Îÿÿ ÿéóÏ& Î.ÿÿ ÿéòÏ& Î(-ÿÿ ÿéòÏ& Îÿÿ ÿéôÏ& Î ÿÿ ÿéóÏ& Î ÿÿ ÿéïÏ&E Îÿÿ ÿèïÏ& Î ÿÿ ÿéóÏ&/•=[ÿÿ ÿéòÏ& Τÿÿ ÿéõÐ& ΋ÿÿ ÿéôÐ& Ιÿÿ ÿéöÑ& Îbÿÿ ÿéòÏ&8 Îÿÿ ÿèöÏ&. =\ÿÿ ÿéóÏ& Î+ÿÿ ÿçóÏ&=]ÿÿ ÿéóÏ& Ô ÿÿ ÿéôÏ& Î ÿÿ ÿéêÐ& Îÿÿ ÿçõÏ& Ôÿÿ ÿéòÏ& Îÿÿ ÿéóÏ&Ñ Ôÿÿ ÿéöÏ& Î)–ÿÿ ÿéóÐ& Î,ÿÿ ÿéòÏ& Îÿÿ ÿéëÏ&¾ Ôÿÿ ÿçöÏ& Îÿÿ ÿèõÏ&V Îÿÿ ÿé÷Ï& Ô.4ÿÿ ÿçöÒ&f Îÿÿ ÿèñÏ& Ôÿÿ ÿéðÐ& Ô# ÿÿ ÿèñÏ&!(ïÿÿ ÿèïÏ& Ô-hÿÿ ÿéöÏ& Ô Øÿÿ ÿéõÏ& Î1ÿÿ ÿéíÏ& Ô/–ÿÿ ÿéóÏ& Î)éÿÿ ÿéôÏ& Î+TÿÿÿéòÏ&/—=^ÿÿ ÿéòÏ& Î,AÿÿÿéòÏ&/˜/—ÿÿ ÿéøÏ& Ô $ÿÿ ÿéôÏ& Î`ÿÿ ÿéöÏ& Î#Hÿÿ ÿäöÏ& Î"sÿÿ ÿéóÏ& ÎŒÿÿ ÿé÷Ï& Ô/™ÿÿ ÿéóÏ&/š Îÿÿ ÿéñÏ& Îÿÿ ÿéóÏ& Ô&Žÿÿ ÿéñÏ& Î/ÿÿ ÿéöÏ& Ôÿÿ ÿèóÐ& Ï Îÿÿ ÿéïÏ& Îÿÿ ÿéöÏ& Ôÿÿ ÿéõÏ& Îÿÿ ÿèôÏ&ÿ=`ÿÿ ÿèôÏ& Ô$rÿÿ ÿéòÑ& Ô/ÿÿ ÿéòÏ& Ô$Âÿÿ ÿéôÑ& Ô.‚ÿÿ ÿé÷Ï& Ôÿÿ ÿéõÑ& Î0ÿÿ ÿéóÏ& Î(Ùÿÿ ÿéõÏ& Ô&G=aÿÿ ÿéïÏ& Ô4ÿÿ ÿéóÏ&÷=bÿÿ ÿéóÏ& Ô'÷ÿÿ ÿéóÏ& Ô=cÿÿ ÿéõÐ& Î* ÿÿ ÿéõÏ& Ô*ÿÿ ÿèöÐ& Ô)òÿÿ ÿéòÏ& Ôüÿÿ ÿéôÏ& Ô*Ñÿÿ ÿéïÏ& Ô0ÿÿ ÿéòÏ&.¯ Ôÿÿ ÿéøÑ& Ô0ÿÿ ÿéõÏ& Ô0 ÿÿ ÿèôÐ&%q'úÿÿ ÿçóÐ&#h&#g=dÿÿ ÿéóÐ&%q&/á=eÿÿ ÿéñÏ& Ô0"ÿÿÿè÷Ï&,Y=fÿÿ ÿéóÐ& Ô*yÿÿÿçôÑ&0!=gÿÿ ÿéòÏ&%r%qÿÿ ÿéôÐ&…=hÿÿ ÿèóÐ&%q)õÿÿ ÿéöÏ& Ô0#ÿÿ ÿéóÑ& ÔÎÿÿÿèòÏ&0(3ÿÿ ÿéõÏ&þÿÿ ÿéóÏ&&þÿÿ ÿéìÏ&œþÿÿ ÿéôÐ&þ*rÿÿ ÿèòÏ&0%þÿÿ ÿéôÏ&þFÿÿ ÿéõÑ&þ²ÿÿÿæòÏ&ÿ=jÿÿ ÿéóÏ&þÿÿ ÿéóÐ&¶ÿÿ ÿèñÏ&þ*zÿÿ ÿéëÏ&þ)ÿÿÿ ÿçôÏ&þ%Ìÿÿ ÿéòÏ&þ(-ÿÿ ÿéóÏ&þ0)ÿÿ ÿéöÐ&þ³ÿÿ ÿéòÏ&þ ÿÿ ÿéðÏ&þ|ÿÿ ÿéõÏ&þQÿÿ ÿéõÏ&þ ÿÿÿçõÏ&÷=kÿÿ ÿéóÏ&þ&ÿÿ ÿèöÐ&áÿÿ ÿéöÑ&“ÿÿ ÿéõÐ&‹þÿÿ ÿéòÏ&¤þÿÿ ÿéóÐ&Ðÿÿ ÿéóÒ&0ìÿÿ ÿéîÐ&0*ÿÿÿçïÎ&0+=lÿÿÿçîÏ&0+=mÿÿ ÿèóÏ&°ïÿÿ ÿéôÏ&þ0,ÿÿ ÿèîÐ&0-ÿÿ ÿéöÐ& ×ÿÿ ÿéòÐ&þ0.ÿÿ ÿéöÐ&01ÿÿ ÿéíÐ&5ÿÿ ÿäöÏ&ýþÿÿ ÿéöÐ&ÿÿ ÿéðÐ&…=nÿÿ ÿéòÐ&$Áÿÿ ÿéðÑ&‡ÿÿ ÿéöÏ&þÿÿ ÿéôÑ&+Pÿÿ ÿéóÐ&&÷=oÿÿ ÿéôÐ&*Ñÿÿ ÿéóÏ&n02ÿÿÿéóÏ&03=qÿÿ ÿèöÐ&ÿÿ ÿéðÐ&É&Ê=rÿÿ ÿéðÐ&Ê&ÉËÿÿ ÿéðÐ&É&ÊÌÿÿ ÿéðÐ&É&ÊÍÿÿ ÿéðÐ&É&ÊÎÿÿÿéóÏ&.Í04ÿÿ ÿéðÐ&u&Ê=sÿÿ ÿéðÐ&Ê&u=tÿÿ ÿè÷Ç&s=uÿÿÿèôÊ&05=vÿÿ ÿèöÊ&/B%-ÿÿ ÿëôÉ&u=xÿÿ ÿëôÏ&ãuÿÿ ÿëôÉ&;uÿÿ ÿëôÏ&u=yÿÿ ÿëôÐ&äuÿÿ ÿëôÉ&–uÿÿ ÿëôÐ&åuÿÿ ÿëôÌ&u=zÿÿ ÿëôÊ&uÿÿ ÿëôÉ& uÿÿ ÿëôÏ&u={ÿÿ ÿëöÉ&u=|ÿÿ ÿëôË&u=}ÿÿ ÿëôÎ&u=~ÿÿ ÿëôÉ&u=ÿÿ ÿëôÉ&u=€ÿÿ ÿëôÉ&u=ÿÿ ÿëôÏ&u=‚ÿÿ ÿëôË&u=ƒÿÿ ÿëôÉ&u=„ÿÿ ÿëôÍ&¼uÿÿ ÿëôÏ&u=…ÿÿ ÿëôÉ&u=†ÿÿ ÿëôÏ&®uÿÿ ÿëôÏ&»uÿÿ ÿëôÎ&u=‡ÿÿ ÿëôÉ&®uÿÿ ÿëôÉ&u=ˆÿÿ ÿëôÐ&u=‰ÿÿ ÿëôÏ&u=Šÿÿ ÿëôÎ&u=‹ÿÿ ÿëôÉ& ñuÿÿ ÿëôÏ&u=Œÿÿ ÿëôÐ&u=ÿÿ ÿëôÉ&u=Žÿÿ ÿëôÏ&u=ÿÿ ÿëôÉ&u=ÿÿ ÿëôÉ&~uÿÿ ÿëôË&u=‘ÿÿ ÿëöÏ&u=’ÿÿ ÿëôÉ&u=“ÿÿ ÿëôÏ&u=”ÿÿ ÿëôÏ&suÿÿ ÿëôÏ&u=•ÿÿ ÿëôÎ&u=–ÿÿ ÿëôÐ&u=—ÿÿ ÿëôÏ&u=˜ÿÿ ÿëôÍ&u=™ÿÿ ÿëôÉ&u=šÿÿ ÿëôÏ&u=›ÿÿ ÿëôÍ&u=œÿÿ ÿëôÉ&u=ÿÿ ÿëôÉ&u=žÿÿ ÿëôÉ&u=Ÿÿÿ ÿëôÏ&u= ÿÿ ÿëôÏ&$uÿÿ ÿëôÏ&u=¡ÿÿ ÿëôÑ&u=¢ÿÿ ÿëôÉ&u=£ÿÿ ÿëôÑ& uÿÿ ÿëôÎ&u=¤ÿÿ ÿëôÊ&u=¥ÿÿ ÿëôÏ&u=¦ÿÿ ÿëôÉ&Muÿÿ ÿëôÑ&uÜÿÿ ÿëôÌ&zuÿÿ ÿëôÏ&u=§ÿÿ ÿëôÎ&|uÿÿ ÿëôË&uÿÿ ÿëôÏ&Åuÿÿ ÿëôÐ&u=¨ÿÿ ÿëôÏ&çuÿÿ ÿëôÏ&J&uIÿÿ ÿëôÑ&-uÿÿ ÿëôÏ&uÿÿ ÿëôÏ&u=©ÿÿ ÿëôÉ&u=ªÿÿ ÿëôÌ&u=«ÿÿ ÿëôÉ&u=¬ÿÿ ÿëôÐ&u=­ÿÿ ÿëôÐ&u=®ÿÿ ÿëôÏ&3uÿÿ ÿëôÑ&u=¯ÿÿ ÿëôÉ&u=°ÿÿ ÿëôÏ&u=±ÿÿ ÿëôÉ&uÿÿ ÿëôÓ&u=²ÿÿ ÿëôÉ&u=³ÿÿ ÿëôÏ&N&Muÿÿ ÿëôÉ&u=´ÿÿ ÿëôÏ&u=µÿÿ ÿëôÉ&u=¶ÿÿ ÿëôÐ& ºuÿÿ ÿëôÏ&u=·ÿÿ ÿëôÑ&u=¸ÿÿ ÿëôÒ&u=¹ÿÿ ÿëôÏ&u=ºÿÿ ÿëôÏ&d&cuÿÿ ÿëôÉ&u=»ÿÿ ÿëöÍ&\uÿÿ ÿëôÐ&Tuÿÿ ÿëöÐ&u=¼ÿÿ ÿëôÉ&u=½ÿÿ ÿëôÉ&u=¾ÿÿ ÿëôÒ&u=¿ÿÿ ÿëôÎ&u ]ÿÿ ÿëôÏ&u=Àÿÿ ÿëôÎ&u=Áÿÿ ÿëôÏ&u=Âÿÿ ÿëôÏ&uÅÿÿ ÿëôÉ&u=Ãÿÿ ÿëôÉ&" uÿÿ ÿëôÍ&u=Äÿÿ ÿëôÐ&#–uÿÿ ÿëôÉ&u"#ÿÿ ÿëôÎ&u=Åÿÿ ÿëôÐ&!¥uÿÿ ÿëôÏ&uÿÿ ÿëôÉ&u=Æÿÿ ÿëôÉ& {uÿÿ ÿëôÏ& kuÿÿ ÿëôÏ&u=Çÿÿ ÿëôÉ&!-uÿÿ ÿëôÐ&"¿uÿÿ ÿëôÉ&u=Èÿÿ ÿëôÉ&u=Éÿÿ ÿëôÉ& “uÿÿ ÿëôÐ&"³uÿÿ ÿëôÐ&!¡uÿÿ ÿëôÏ&u!šÿÿ ÿëôÏ&u=Êÿÿ ÿëôÏ&"ûuÿÿ ÿëôÏ&"¼uÿÿ ÿëôÏ&"uÿÿ ÿëôÏ&$9uÿÿ ÿëôÑ&u=Ëÿÿ ÿëôÍ&u=Ìÿÿ ÿëøÎ&u=Íÿÿ ÿëôÉ&u=Îÿÿ ÿëôÏ&$äuÿÿ ÿëôÏ&vuÿÿ ÿëôÐ&$ðuÿÿ ÿëôË&$Vuÿÿ ÿëôÏ&u=Ïÿÿ ÿëôÌ&u=Ðÿÿ ÿëôÐ&uÿÿ ÿëõÐ&u=Ñÿÿ ÿëôÒ&u=Òÿÿ ÿëõÏ&u=Óÿÿ ÿëôÏ&u=Ôÿÿ ÿëôÐ&u=Õÿÿ ÿëôÉ&u=Öÿÿ ÿëôÏ&u=×ÿÿ ÿëôË&/uÿÿ ÿëôÌ&u=Øÿÿ ÿëôÐ&%Šuÿÿ ÿëôÑ&u=Ùÿÿ ÿëôÏ&u=Úÿÿ ÿëôÉ&u=Ûÿÿ ÿëôÌ&u=Üÿÿ ÿëôË&u=Ýÿÿ ÿëôÏ&u=Þÿÿ ÿëôÉ&Æ&Çuÿÿ ÿëõÒ&uƒÿÿ ÿëôÐ&u=ßÿÿ ÿëôÏ&u=àÿÿ ÿëôÏ&(}uÿÿ ÿëôÏ&u=áÿÿ ÿëôÏ&u=âÿÿ ÿëôÑ&u=ãÿÿ ÿëôÑ&u=äÿÿ ÿëôÉ&u=åÿÿ ÿëôÑ&u=æÿÿ ÿëôÌ&u=çÿÿ ÿë÷Ë&u=èÿÿ ÿë÷Ð&‘&’uÿÿ ÿëôÓ&u=éÿÿ ÿëôÒ&u=êÿÿ ÿëôÑ&u=ëÿÿ ÿëôÒ&u=ìÿÿ ÿëôÉ&u=íÿÿ ÿëôË&u=îÿÿ ÿéðÃ&&LÿÿÿéðÃ&&KÿÿÿêòÑ&&P=ïÿÿ ÿéñÄ&'þÿÿÿéðÃ&µÿÿÿéñË&&IþÿÿÿéðÃ&Òÿÿ ÿéðÏ&&Jÿÿ ÿéðÏ&&Hÿÿ ÿéðÆ&&Gÿÿ ÿéñÌ&þPÿÿ ÿéðÏ&Qÿÿ ÿéñÅ&Üþÿÿ ÿéñÃ&åþÿÿ ÿéñÏ&þ&Fÿÿ ÿéñÐ&&Eþÿÿ ÿéñÃ& òþÿÿ ÿéñÐ&þ&Dÿÿ ÿéñÇ&Éþÿÿ ÿéðÏ&&CÿÿÿéñÏ&þ&Mÿÿ ÿéñÐ&06þÿÿ ÿéñÎ&þ07ÿÿ ÿéñÍ&08þÿÿ ÿèñÊ&09ŠÿÿÿèñÆ&0:ŠÿÿÿèñÃ&Š&Rÿÿ ÿéðÄ&xÿÿ ÿéñÍ&0;þÿÿÿéñÏ&þ&QÿÿÿéñÐ&0<þÿÿ ÿèñÊ&Š=ðÿÿ ÿéñÏ&`þÿÿ ÿéñÏ&þ&Sÿÿ ÿéñÏ&þšÿÿ ÿéñÐ&þ0=ÿÿÿèñÏ&Šÿÿ ÿéñÑ&þäÿÿ ÿéñÏ&þ=ñÿÿ ÿéñÄ&0Æþÿÿ ÿèñÑ&Š‹ÿÿ ÿèñÊ&Šÿÿ ÿéðÏ&¥ÿÿÿéðÐ&ÐÿÿÿéðÏ& ÿÿ ÿéñÏ&þýÿÿ ÿèñÑ&Š\ÿÿÿèñÍ&ÝþÿÿÿèñÊ&±ŠÿÿÿèñÊ&"&eÿÿ ÿçñÏ&&X&eÿÿ ÿéñÃ&&Tþÿÿ ÿèñÏ&0>ŠÿÿÿéñÆ&þ&UÿÿÿèñÐ&Š.ÿÿÿèñÆ&&VŠÿÿ ÿéñÐ&&Wþÿÿ ÿéñÌ&&=þÿÿ ÿèñÏ&&YŠÿÿÿéðÎ&&Zÿÿ ÿçñÏ&þ àÿÿ ÿèñÆ&Š&[ÿÿ ÿèñÅ&Š&\ÿÿÿéðÇ&0?ÿÿÿèñÏ&¥Šÿÿ ÿéñË&þÍÿÿÿéñÆ&þ!€ÿÿÿèñÄ&Š!ÿÿÿèñÉ&ŠŽÿÿÿéñÐ&þ&]ÿÿ ÿèñÐ&0CŠÿÿ ÿçñÏ&áŠÿÿ ÿéñÐ&&^þÿÿ ÿèñÐ&Š&_ÿÿ ÿéñÐ&&`þÿÿÿçñÏ&ÝŠÿÿÿèñÅ&&e=òÿÿ ÿéñÑ&þ)šÿÿ ÿèñÏ&Š&aÿÿÿèñÏ& cŠÿÿÿèñÏ&&e.ëÿÿ ÿèñÎ&&dŠÿÿ ÿèñÍ&Ë&&e/½ÿÿ ÿæñÐ&ŠØÿÿ ÿéðÈ&"<ÿÿ ÿçöÐ&0D=óÿÿ ÿæñÈ&Š=ôÿÿ ÿèñÐ&Š"üÿÿÿéñÏ&þ&cÿÿÿèñÆ&Š#Æÿÿ ÿèñÈ&Š!ÿÿ ÿèñÏ&Š&bÿÿ ÿèñÏ&Š#±ÿÿÿèñÇ&Š"Óÿÿ ÿèñÏ&Š#Šÿÿ ÿèñÉ&Š –ÿÿÿèñÎ&Š/¾ÿÿ ÿèñÆ&Š!.ÿÿ ÿèñÏ& í&&e&lÿÿÿèñÍ&Š^ÿÿ ÿèñÑ&0—ËÿÿÿèñÏ&Š)›ÿÿ ÿèñÇ&Š)œÿÿ ÿèñÐ&Š$ˆÿÿ ÿèñÆ&)ŠÿÿÿèñÒ&Š/¿ÿÿ ÿèñÆ&Š)Ÿÿÿ ÿèñÑ&Š)žÿÿÿçñÏ&Š#ÿÿ ÿèñÐ&Ë&&e=õÿÿÿèñÉ&$ŠÿÿÿèñÐ&Š%ÿÿ ÿèñÓ&&e&mÿÿ ÿèñÆ&‰Šÿÿ ÿèñÍ&) Šÿÿ ÿèñÐ&ŠÊÿÿÿèñÑ&)¡Šÿÿ ÿèñÍ&;&eÿÿ ÿèñÏ&%Šÿÿ ÿèñÏ&Š)¢ÿÿ ÿèñÉ&Š)£ÿÿ ÿèñÎ&/ËŠÿÿ ÿèñÆ&Š/Àÿÿ ÿèñÐ&‹ŠÿÿÿèñÊ&Š)¤ÿÿ ÿèñÏ&)¥Šÿÿ ÿèñÊ&)¦ŠÿÿÿîôÑ&ü)§ÿÿ ÿèñË&Š/Âÿÿ ÿèñÏ&&e/ÁÿÿÿèñÑ&Š*œÿÿÿèñÏ&Š#òÿÿÿèñÐ&/Êÿÿ ÿåñÒ&Š/Çÿÿ ÿèñÏ&*Šÿÿ ÿèñÎ&å&eÿÿ ÿèñÏ&Š'>ÿÿÿèñÈ&ŠeÿÿÿèñÇ&Š&nÿÿ ÿèñÏ&&e/Äÿÿ ÿèñÉ&(Šÿÿ ÿèñÐ&*žŠÿÿÿèñÎ&/ÆŠÿÿ ÿçñÆ&&e/ÅÿÿÿèñÒ&%&eÿÿÿèñÑ&%P&eÿÿ ÿçñË&&e&oÿÿ ÿæñÏ&Š=öÿÿ ÿçñÐ&&e/Èÿÿ ÿèñÑ&&e'5ÿÿÿèñÉ&&e=÷ÿÿÿèñÏ&ŠSÿÿ ÿèñÏ&Š=øÿÿÿèñÐ&&e&pÿÿ ÿçñÐ&/ÊŠÿÿ ÿèñÌ&&e/Éÿÿ ÿèóÈ&²qÿÿ ÿéðÐ&)äÿÿ ÿé÷È&²ÿÿ ÿéóÏ&ÿÿ ÿéôÏ&Ÿÿÿ ÿéóÈ&²!,ÿÿ ÿèòË&/Ì.ôÿÿ ÿéôÏ&=ùÿÿ ÿé÷Ï&²/Íÿÿ ÿéôÍ&¤ÿÿ ÿéõÏ&%1ÿÿ ÿéìË&²+ÿÿ ÿèõÈ&²Tÿÿ ÿéôÎ&#¿ÿÿ ÿéöÈ&¬ÿÿ ÿçõÏ&˜ÿÿ ÿéóÏ&²Oÿÿ ÿéóÈ&.ÿÿ ÿéòÏ&²lÿÿ ÿæïÐ&¸ÿÿ ÿèòÏ&¹ÿÿ ÿéïÏ&²#-ÿÿ ÿéöÐ&!JÿÿÿèõÐ&ÿÿ ÿéîÏ&ÿÿ ÿéôÐ&²…ÿÿ ÿèëÏ&Sÿÿ ÿéïÈ&*›ÿÿ ÿéðÏ&ÿÿ ÿéõÏ&²áÿÿ ÿéóÑ&=úÿÿ ÿéôÈ&0Bÿÿ ÿèôÐ&&²ÿÿ ÿéõÏ&dÿÿ ÿéöÎ&*Ÿÿÿ ÿéõÐ&ÿÿ ÿéóÍ&²&>ÿÿ ÿèõÑ&eÿÿ ÿéõÌ&²ÿÿ ÿéòÐ&Úÿÿ ÿèóÈ&1ÿÿ ÿéòÈ&#* ÿÿ ÿéóÐ&²&ëÿÿ ÿéóÐ&)ÿÿ ÿé÷È&#"nÿÿ ÿèöÏ&#/Îÿÿ ÿéùÏ&# 3ÿÿ ÿèîÏ&&ïÿÿ ÿéòÐ&²mÿÿ ÿçöÒ&fÿÿ ÿéóÑ&#ÿÿ ÿéòÏ&rÿÿ ÿéöÈ& Ö#ÿÿ ÿéóÏ&ÿÿ ÿéôÈ&²*¡ÿÿ ÿéõÉ&²"ÿÿ ÿéóÏ&#6ÿÿ ÿéîÏ&#&/Ï=ûÿÿ ÿéñÈ&²$^ÿÿ ÿéóÉ&²9ÿÿ ÿéôÏ&#=üÿÿ ÿéóÐ&$:#ÿÿ ÿèòÏ&ý0¤ÿÿ ÿèöÎ&#&=ýÿÿ ÿéóÏ&#=þÿÿ ÿéôÑ&#úÿÿ ÿéòÏ&#ÿÿ ÿéõÈ&#ÿÿÿéìÏ&ü&úùÿÿ ÿé÷Ð&$,#ÿÿ ÿéïÏ&#$’ÿÿ ÿéôÒ&=ÿÿÿ ÿéôÑ&$!ÿÿ ÿéóÒ& ÿÿ ÿéóÉ&#$-ÿÿ ÿéóÈ&çÿÿ ÿéðÑ&²"Qÿÿ ÿé÷Í&*¢ÿÿ ÿéóÌ&/2 ÿÿ ÿéóÕ& ÿÿ ÿéõÐ&* ÿÿ ÿéõÏ&/fÿÿ ÿéõÑ&#>ÿÿ ÿéóÉ&*£ÿÿ ÿèõÌ&þýÿÿ ÿçôÏ&-ÿÿ ÿéôÈ&ýØÿÿ ÿéòÐ&#-†ÿÿ ÿéõÏ&#/eÿÿ ÿéöÑ&#-›ÿÿ ÿéøÒ&#-œÿÿ ÿéòÊ&#*¤ÿÿ ÿèóÏ&#*¥ÿÿ ÿèòÐ&ý)Áÿÿ ÿéòÈ&#>ÿÿ ÿéõÏ&ý>ÿÿ ÿéôÑ&#êÿÿ ÿéóÎ&#-ÿÿ ÿéòÉ&ý*kÿÿ ÿéöË&ý/«ÿÿ ÿéôÎ&¤*¦ÿÿÿçöÎ&98ÿÿÿéëÏ&·;ÿÿÿéòÎ&<*×ÿÿÿéôÎ&ÙØÿÿ ÿéïÆ&*§*ÿÿ ÿìóÒ&/.ÿÿ ÿíòÑ&3˜ÿÿ ÿëôÎ&›ÿÿ ÿêïÑ&—˜ÿÿ ÿçëÏ&Èÿÿ ÿéæÑ&¢˜ÿÿ ÿèóÑ&q˜ÿÿ ÿêëÑ&ú˜ÿÿ ÿéøÏ&àÿÿ ÿéíÏ&îÿÿ ÿéòÑ&˜Àÿÿ ÿèøÑ&˜Áÿÿ ÿèöÏ&Úÿÿ ÿðòÎ&œ>ÿÿ ÿèóÏ&èÿÿ ÿéìÎ&Yÿÿ ÿêõÑ&&˜ÿÿ ÿèôÐ&Lÿÿ ÿñêÏ&*uÿÿ ÿèíÐ&Åÿÿ ÿéôÎ&bÿÿ ÿéöÏ&„ÿÿ ÿéðÎ&´ÿÿ ÿêðÎ&ÿÿ ÿéóÎ&žÿÿ ÿñòÏ&ÿÿ ÿêñÏ&$ÿÿ ÿèöÏ&Hÿÿ ÿîõÐ&¡ÿÿ ÿêóÏ&ÿÿ ÿèöÏ&Ÿÿÿ ÿîôÏ&Ÿÿÿ ÿñòÏ& ÿÿ ÿéôÎ&*¨ÿÿ ÿèôÏ&üÿÿ ÿéöÏ&ÿÿ ÿêöÐ& ÿÿ ÿéòÏ&0­ÿÿ ÿëõÎ&ÿÿ ÿéóÐ&…ÿÿ ÿèôÏ&â!ÿÿ ÿéóÎ&ÿÿ ÿéôÏ&”ÿÿ ÿéëÏ&%’ÿÿ ÿéòÎ&¨&yÿÿ ÿéöÎ&¨Äÿÿ ÿéïÏ&žÿÿ ÿëöÎ&6¨ÿÿ ÿéóÏ&£ÿÿ ÿëõÐ&¬ÿÿ ÿéïÐ&Öÿÿ ÿéèÐ&¨&/6ÿÿ ÿèöÑ&­ÿÿ ÿéóÐ&Ãÿÿ ÿèõÏ&!Fÿÿ ÿèõÏ&¹ÿÿ ÿëóÎ&¨1ÿÿ ÿêôÏ&¿ÿÿ ÿèõÏ&Íÿÿ ÿèôÏ&%ÿÿ ÿìõÏ&âÿÿ ÿèôÏ&âmÿÿ ÿêîÏ&*Úÿÿ ÿéòÎ&™ÿÿ ÿéíÎ&ôÿÿ ÿé÷Ï&â%úÿÿ ÿéôÏ&—ÿÿ ÿéöÏ&aÿÿ ÿêìÏ&(¾ÿÿ ÿçöÏ&9ÿÿ ÿîôÏ&6öÿÿ ÿçõÏ&"•ÿÿ ÿèïÐ&*‰¨ÿÿ ÿéóÎ&*©ÿÿ ÿçõÏ&¨Fÿÿ ÿéóÎ&.ÿÿ ÿçõÏ&¦ÿÿ ÿéòÐ&0ôÿÿ ÿéóÏ&¨ÿÿ ÿçòÐ&/‚ÿÿ ÿéôÏ&®¨ÿÿ ÿëòÎ&&¨ÿÿ ÿæïÐ&¸ÿÿ ÿèòÏ&¨*ªÿÿ ÿêëÏ&·ÿÿ ÿëèÎ&ï¨ÿÿ ÿèéÎ&/ÿÿ ÿèöÏ&+ÿÿ ÿëôÎ&žÿÿ ÿéóÏ&Oÿÿ ÿëðÏ&jÿÿ ÿëðÏ&.}ÿÿ ÿéîÎ&ÿÿ ÿëôÐ&¨Àÿÿ ÿéöÐ&!Jÿÿ ÿêõÏ&¤5ÿÿ ÿëóÏ&ˆ¨ÿÿ ÿñîÏ&!Hÿÿ ÿëîÎ&*«ÿÿ ÿéêÐ&Mÿÿ ÿëôÏ&œÿÿ ÿèðÑ&4ÿÿ ÿëðÎ&¨/­ÿÿ ÿéõÏ&â·ÿÿ ÿèòÏ&¹ÿÿ ÿéòÎ&&¶ÿÿ ÿéïÏ&â/¹ÿÿ ÿêòÎ&*¬ÿÿ ÿçóÐ&&ÿÿ ÿéõÏ&¨!Mÿÿ ÿèóÏ&âÿÿ ÿèõÏ&gÿÿ ÿéòÏ&¨Tÿÿ ÿêìÎ&ÿÿ ÿêöÏ&ÿÿ ÿïôÏ&!m¤ÿÿ ÿèôÎ&¨ÿÿ ÿééÎ&!p¨ÿÿ ÿëóÎ&íÿÿ ÿèõÎ&¨/Ðÿÿ ÿéíÎ&ˆÿÿ ÿêõÏ&¤¹ÿÿ ÿéñÎ&¨*­ÿÿ ÿîôÐ&ö>ÿÿ ÿèïÏ&â&¤ ÿÿ ÿèñÎ&8ÿÿ ÿéòÏ&¤¨ÿÿ ÿèïÏ&+^¨ÿÿ ÿèôÎ&&çÿÿ ÿéõÐ&‹¨ÿÿ ÿèóÐ&çÿÿ ÿéõÏ& âÿÿ ÿèôÏ&Ùÿÿ ÿéöÑ&éÿÿ ÿêõÎ&Lÿÿ ÿèëÏ&Sâÿÿ ÿéóÏ&*®ÿÿ ÿéìÎ&a¨ÿÿ ÿèñÎ&¨Dÿÿ ÿèôÏ&¨ÿÿ ÿëôÏ&¨ôÿÿ ÿéõÒ&¨™ÿÿ ÿéôÏ&¨&F/Õÿÿ ÿéôÏ&âSÿÿ ÿëóÎ&Tÿÿ ÿîôÉ&0Eöÿÿ ÿéóÏ&æâÿÿ ÿñöÑ&bÿÿ ÿêóÎ&=ÿÿ ÿè÷Ï&¨7ÿÿ ÿéöÏ&—¨ÿÿ ÿèóÏ&ÿÿ ÿêíÏ&¸ÿÿ ÿéöÑ&Òÿÿ ÿé÷Î&½¨ÿÿ ÿéóÏ&5ÿÿ ÿéôÐ&õ&/>ÿÿ ÿé÷Ï&â'ÿÿ ÿëòÏ&¨Yÿÿ ÿéòÏ&0×ÿÿ ÿéòÎ& ¨ÿÿÿëïÐ&Ü0Jÿÿ ÿéôÏ&¨…ÿÿ ÿé÷Ï&®¨ÿÿ ÿéìÎ&¨dÿÿ ÿéöÏ&óâÿÿ ÿèóÏ&¨0¿ÿÿ ÿéòÎ&@ÿÿ ÿéòÏ&€ÿÿ ÿëöÐ&ƒÿÿ ÿêóÏ&¨ÿÿ ÿéóÐ&¨ÿÿ ÿîôÐ&úöÿÿ ÿéñÎ&¨-ÿÿ ÿèôÏ&âcÿÿ ÿîôÏ&ö0cÿÿ ÿêõÏ&¨*¯ÿÿ ÿê÷Ð&¨-²ÿÿ ÿéêÐ&ÿÿ ÿéõÎ&¨-€ÿÿ ÿèõÐ&¨•ÿÿ ÿïôÏ&&Aâÿÿ ÿëóÎ&ÿÿ ÿéðÎ&*°ÿÿ ÿéõÐ&¨Šÿÿ ÿéøÑ&*±ÿÿ ÿéóÎ&>ÿÿ ÿéóÏ&&íÿÿ ÿîôÐ&ö>ÿÿ ÿçðÎ&*²ÿÿÿïóÐ& ;&()•ÿÿ ÿèöÏ&¤ÿÿ ÿé÷Î&ÆÿÿÿéõÐ&Ü!ÿÿ ÿéòÏ&»%>ÿÿ ÿêóÏ&"—ÿÿ ÿçõÏ&¨ÿÿ ÿè÷Ï& ßâÿÿ ÿéòÐ&¤/ÿÿ ÿèõÑ&¨eÿÿ ÿéôÏ&âÿÿÿéëÐ&Ü&à> ÿÿ ÿìóÏ&"¤ÿÿ ÿééÎ&¨ÿÿ ÿéôÎ&¨×ÿÿ ÿéóÎ&¨ýÿÿ ÿéõÎ&…¨ÿÿ ÿëòÎ&¨ÿÿ ÿéôÏ&â“ÿÿ ÿè÷Ï&â'ÿÿ ÿé÷Ñ&/CÿÿÿéïÐ&ßÜÿÿ ÿèòÎ&¨&èÿÿ ÿéòÏ&Jÿÿ ÿé÷Ï&c¨ÿÿ ÿëóÐ&/Ñÿÿ ÿêòÐ&Úÿÿ ÿéôÏ&bâÿÿ ÿçøÏ&¤?ÿÿ ÿêóÏ&Eâÿÿ ÿëóÎ&WÿÿÿéóÐ&HÜÿÿ ÿéóÐ&0Fâÿÿ ÿêõÏ&¨.ÿÿ ÿê÷Ï&¤.4ÿÿ ÿéðÏ&»âÿÿ ÿèõÎ&#ÿÿ ÿéöÐ&"IâÿÿÿïóÉ& ;&ì> ÿÿ ÿéíÏ&-iâÿÿ ÿèíÏ&â+Cÿÿ ÿèîÐ&¨“ÿÿ ÿéøÏ& $¨ÿÿ ÿéõÎ&¨1ÿÿ ÿèõÏ&¨Vÿÿ ÿéõÑ&â-gÿÿ ÿéóÏ&¨'ÿÿ ÿìõÐ&â*ÿÿ ÿéôÐ&¨'Úÿÿ ÿéíÏ&¤/–ÿÿ ÿéóÐ&¨/ùÿÿ ÿéóÎ&)¨ÿÿ ÿéíÎ&åÿÿ ÿïòÏ&¤#lÿÿ ÿéõÐ&‹¨ÿÿ ÿèóÏ&"%&*»ÿÿ ÿèóÐ&âÛÿÿ ÿéöÏ&¨/÷ÿÿ ÿëôÎ&+Tÿÿ ÿïóÐ&ì& ;> ÿÿ ÿïôÏ&)|âÿÿ ÿéòÐ&0.¨ÿÿ ÿéóÑ&â"ÿÿ ÿéöÐ&¨ Fÿÿ ÿéõÑ&Râÿÿ ÿêóÑ&¨+Aÿÿ ÿèóÏ&¨ïÿÿ ÿëôÑ&̨ÿÿ ÿéóÏ&*ÿÿ ÿçöÒ&f¨ÿÿ ÿéöÏ& ؤÿÿ ÿèöÎ&¨.ÿÿ ÿéòÑ&.‘ÿÿ ÿèðÏ&¨uÿÿ ÿéòÐ&V¨ÿÿ ÿéòÐ&'¨ÿÿ ÿéíÎ&³ÿÿ ÿçõÏ&¨­ÿÿ ÿéìÎ&¨ÿÿ ÿéôÏ& ¤ÿÿ ÿéëÏ&â¾ÿÿ ÿéìÎ&1 ¨ÿÿ ÿéóÏ&ÿÿ ÿé÷Î&"n¨ÿÿ ÿïòÏ&â <ÿÿ ÿëñÎ&¨+Mÿÿ ÿéöÏ&¨–ÿÿ ÿéòÏ&.Œâÿÿ ÿé÷Ï&.ލÿÿ ÿéóÐ&¨.ÿÿ ÿéòÐ&/x¨ÿÿ ÿéõÐ&¤.ÿÿ ÿéöÐ&¨ BÿÿÿïóÐ& ; 5ÿÿ ÿëôÏ&¨`ÿÿ ÿéíÏ&ûâÿÿ ÿéòÏ&!ÿÿ ÿéóÏ&!Ѩÿÿ ÿéóÏ&âóÿÿ ÿéöÏ&¤Õÿÿ ÿéñÎ&!Œ¨ÿÿÿïóÏ&]& ;> ÿÿ ÿèôÑ&¨$ƒÿÿ ÿèóÏ&â!‹ÿÿ ÿéóÐ&¨!Šÿÿ ÿéöÏ&â#Íÿÿ ÿèôÐ&¨!ˆÿÿ ÿéôÎ&&#ÿÿ ÿêòÎ&¨!‰ÿÿ ÿéñÎ&¨!(ÿÿ ÿëíÎ&¨!/ÿÿ ÿéñÑ&¨ÿÿÿéëÐ&à&Ü!‚ÿÿ ÿìôÐ&•&<=ÿÿ ÿçõÎ&¨!0ÿÿ ÿéôÏ&â&!1(ÿÿ ÿéõÏ&â ÿÿ ÿéóÏ& f¨ÿÿ ÿëõÑ&¨1ÿÿ ÿèóÎ&¨#Aÿÿ ÿéóÏ&¨> ÿÿ ÿèòÎ&¨!úÿÿ ÿéôÏ&»!"ÿÿ ÿêñÏ&â/ÿÿ ÿîôÏ&#c&#eöÿÿÿéöÐ&Ü.‹ÿÿÿèóÐ&@&ÜYÿÿ ÿéöÏ&¨ÿÿ ÿèôÏ&â"©ÿÿ ÿèõÎ&¯¨ÿÿ ÿéóÏ&0s»ÿÿ ÿì÷Ï&¤¥ÿÿ ÿîõÐ&¤/€ÿÿ ÿëòÏ&¨" ÿÿ ÿéóÏ&6âÿÿ ÿéñÏ&âÿÿ ÿéöÐ&¤!ÿÿ ÿëôÏ&¨!_ÿÿÿéõÐ&ÜAÿÿ ÿèóÎ&!—¨ÿÿÿçõÐ&ú&Üûÿÿ ÿëòÐ&¨2ÿÿ ÿêîÎ&¨$Xÿÿ ÿéñÑ&¨$”ÿÿ ÿèõÐ&¤ÿÿ ÿêóÐ&¨>ÿÿ ÿêöÏ&$fâÿÿ ÿìôÒ&ð&¶>ÿÿ ÿëóÐ&.Ѝÿÿ ÿéôÏ&¤üÿÿ ÿé÷Ð&â$ÿÿ ÿèòÐ&¤$ÿÿ ÿéîÐ&$}¨ÿÿ ÿèõÑ&â$*ÿÿ ÿéðÎ&¨$ÿÿÿêîÐ&$ïÜÿÿÿêõÐ&#r&GÜÿÿ ÿêöÏ&¨vÿÿ ÿéõÏ&¨#Eÿÿ ÿéóÏ&.ˆ¨ÿÿ ÿé÷Ï&-nâÿÿÿèóÐ&ÜDÿÿ ÿçõÏ&¨#ÿÿÿïóÏ& & ;ÿÿ ÿêöÏ&â$Oÿÿ ÿì÷Ò&=>ÿÿ ÿéïÐ&¨%ÿÿ ÿëòÏ&.‰ÿÿ ÿéóÐ&â/5ÿÿÿèôÐ&Ü&(>ÿÿ ÿèòÏ&â0¤ÿÿ ÿéòÐ&¨$Îÿÿ ÿéóÏ&â.‡ÿÿ ÿçóÐ&¨&rÿÿÿèñÑ&Ü0˜ÿÿ ÿëòÏ&¨$Jÿÿ ÿéòÏ&$¤ÿÿ ÿéõÏ&â$@ÿÿ ÿêõÐ&¨/ÿÿ ÿëõÑ&¤$Œÿÿ ÿéõÑ&¤—ÿÿ ÿéñÎ&¨"Ûÿÿ ÿêõÏ&¤&GÞÿÿ ÿèñÏ&â*ÿÿ ÿëóÎ&çÿÿÿéõÐ&Ü0Zÿÿ ÿéóÏ&â*ÿÿ ÿèôÎ&¨.ƒÿÿÿëõÐ&)ý0LÿÿÿëòÐ&ú&Ü>ÿÿ ÿìôÐ&¶&#\+ÿÿ ÿèõÏ&â£ÿÿ ÿéôÎ&èÿÿ ÿéóÏ&â.ÿÿ ÿêòÏ&¨/Pÿÿ ÿé÷Ï&âÿÿ ÿéîÑ&â¹ÿÿ ÿçõÑ&âxÿÿ ÿêïÏ&¤.„ÿÿ ÿéôÑ&â.‚ÿÿ ÿçôÒ&ê>ÿÿÿíõÐ&Ü.…ÿÿÿéóÐ&ÛÜÿÿ ÿéòÏ&â.†ÿÿ ÿéöÑ&¤0Gÿÿ ÿëóÏ&¨§ÿÿ ÿéóÎ&¨+Dÿÿ ÿçôÒ&£¤ÿÿ ÿéôÒ&âÿÿ ÿèöÑ&â,:ÿÿ ÿéóÎ&¨$-ÿÿÿèöÐ&ÜÒÿÿ ÿçõÏ&â0›ÿÿÿéïÐ&Ü-…ÿÿÿêöÐ&Ü*ÿÿ ÿìôÏ&¶&>ÿÿ ÿìôÐ&¶0ùÿÿ ÿçðÑ&¤pÿÿ ÿçöÑ&¤+àÿÿ ÿéóÏ&+á¨ÿÿ ÿéöÏ&¤0Ûÿÿ ÿêõÐ&* ¨ÿÿ ÿëõÐ&¨*¿ÿÿÿèõÐ&Ü&,<>ÿÿ ÿèõÏ&âþÿÿ ÿéôÏ&â*Ñÿÿ ÿéöÐ&¤>ÿÿÿéòÐ&Ü%áÿÿÿéóÐ&÷&Ü>ÿÿ ÿéñÐ&â)ºÿÿ ÿèõÏ&¨+ßÿÿ ÿèóÏ&#6ÿÿ ÿçòÏ&¨*¾ÿÿ ÿìôÐ&=&!ª!¤ÿÿ ÿêòÏ&âüÿÿÿèõÐ&Ü(jÿÿ ÿèõÏ&»&"%"$ÿÿÿçõÐ&ú&Ü"&ÿÿ ÿéóÐ&â(Ôÿÿ ÿêíÎ&ž¨ÿÿ ÿéöÏ&*Àâÿÿ ÿéóÒ&¨ÿÿ ÿéõÏ&¨*ÿÿ ÿéóÐ&»&lmÿÿ ÿèòÏ&â*ÃÿÿÿèõÐ&Ü&>ÿÿ ÿéóÎ&*Á¨ÿÿ ÿèôÏ&â,1ÿÿ ÿèôÐ&»ýÿÿ ÿíóÏ&´âÿÿ ÿîöÏ&âÿÿ ÿìõÏ&¤&#q!ÿÿ ÿéôÐ&âcÿÿ ÿêóÐ&¼»ÿÿ ÿéóÐ&ýÿÿ ÿèöÐ&¨,2ÿÿÿêöÐ&Ü&â!£ÿÿ ÿèðÏ&,3âÿÿ ÿéðÏ&â,4ÿÿ ÿêöÏ&¤,5ÿÿÿèôÑ&Ü.¡ÿÿ ÿéøÏ&¡¤ÿÿ ÿé÷Ñ&¨)¿ÿÿ ÿêðÏ&¤#7ÿÿ ÿéñÏ&¤0¸ÿÿ ÿéóÏ&»>ÿÿ ÿéõÎ&0 ¨ÿÿ ÿéöÏ&¤/Ýÿÿ ÿéôÎ&بÿÿ ÿêõÏ&¤&G>ÿÿ ÿéñÏ&¨*wÿÿ ÿéöÐ&â/ßÿÿ ÿèöÐ&¨)òÿÿÿêôÐ&Ü.÷ÿÿ ÿïóÐ& ;.ÿÿ ÿìöÑ&â)óÿÿÿèôÐ&Ü%òÿÿ ÿêòÏ&â>ÿÿÿéóÐ&Ü0Äÿÿ ÿêõÐ&¤,‰ÿÿÿéóÐ&Ü&/á>ÿÿ ÿéõÑ&â5ÿÿÿéöÐ&Ü'èÿÿ ÿëóÏ&/à¨ÿÿ ÿéõÏ&!Öÿÿ ÿìôÏ&¶>ÿÿ ÿçóÑ&¡âÿÿ ÿéñÐ&-¢¤ÿÿÿéñÐ&Ü0"ÿÿ ÿíóÐ&â*yÿÿ ÿìôÑ&¶>ÿÿÿêöÐ&Ü&â>ÿÿ ÿèòÏ&¤%\ÿÿÿéóÐ&Ü%^ÿÿÿèóÐ&Ü&%W%XÿÿÿèòÒ&Ü%~ÿÿÿéóÐ&Ü> ÿÿ ÿç÷Ò&¤±ÿÿÿèóÐ&Ü)õÿÿ ÿêöÐ&¤)öÿÿÿêòÐ&Ü-/ÿÿ ÿéöÏ&â%fÿÿÿéöÐ&Ü}ÿÿ ÿïóÏ&¤,6ÿÿ ÿéóÑ&¤Îÿÿ ÿéôÑ&)ù>!ÿÿÿéíÐ&Ü)úÿÿ ÿéõÏ&¤>"ÿÿÿê÷Ð&Ü*‘ÿÿ ÿéöÏ&â*‡ÿÿÿèòÑ&Ü7ÿÿ ÿéòÑ&¤-ÿÿÿéóÐ&Ü>#ÿÿ ÿéðÏ&¨>$ÿÿ ÿéóÏ&¨(ÎÿÿÿéöÐ&Ü>%ÿÿÿéóÐ&Ü)ûÿÿÿíóÐ&Ü>&ÿÿÿéóÐ&Ü.@ÿÿ ÿçõÐ&â(pÿÿ ÿìôÒ&¶,xÿÿ ÿêôÏ&¹&)ü>'ÿÿÿèöÏ&0H&0)ýÿÿ ÿéóÏ&»ÅÿÿÿæðÑ&)ý)oÿÿÿéóÐ&Ü/éÿÿ ÿíòÏ&&3ÿÿ ÿïôÏ&w›ÿÿ ÿéóÏ&wjÿÿ ÿèóÏ&qwÿÿ ÿéæÏ&¢&ÿÿ ÿêëÏ&wúÿÿ ÿêïÏ&w—ÿÿ ÿïòÏ& &ÿÿ ÿéóÏ&Q ÿÿ ÿèíÐ&Å&ÿÿ ÿêõÏ&wõÿÿ ÿéöÏ&„&ÿÿ ÿéìÏ&Y&ÿÿ ÿèðÒ&Q¡ÿÿ ÿèôÏ&ü&ÿÿ ÿèöÏ&Ÿ&ÿÿ ÿéòÏ&™&ÿÿ ÿéôÏ&Q›ÿÿ ÿéôÏ&—&ÿÿ ÿïôÏ&ž&ÿÿ ÿìõÏ&Qÿÿ ÿèôÏ&O(/ÿÿ ÿéîÏ&Qœÿÿ ÿéîÏ&Q°ÿÿ ÿéïÏ&Q&ÿÿ ÿéëÏ&Ošÿÿ ÿêòÏ&O¾ÿÿ ÿèöÑ&­Qÿÿ ÿéêÏ&¡&ÿÿ ÿéõÑ&¶&ÿÿ ÿêïÏ&w*Øÿÿ ÿêìÏ&O)þÿÿ ÿéíÐ&QÕÿÿ ÿéöÏ&a&ÿÿ ÿéóÐ&…&ÿÿ ÿé÷Ï&%ú&ÿÿ ÿéôÏ&”&ÿÿ ÿîóÏ&Q1ÿÿ ÿëõÏ&&ÿÿ ÿïòÏ&Q&ÿÿ ÿèõÏ&P»ÿÿ ÿïôÏ&O!mÿÿ ÿéöÏ&Qÿÿ ÿéóÏ&Qÿÿ ÿèôÏ&Q)wÿÿ ÿéóÏ&Q.ÿÿ ÿïòÏ&Q,7ÿÿ ÿèòÏ&O&ÿÿ ÿèôÐ&OÐÿÿ ÿçóÐ&&&ÿÿ ÿéóÏ&Qÿÿ ÿééÏ&Q!pÿÿ ÿïóÏ&î&ÿÿ ÿèìÏ&O&ÿÿ ÿëèÏ&Qïÿÿ ÿéëÏ&Q)ÿÿÿ ÿéòÏ&Q(-ÿÿ ÿéêÐ&M&ÿÿ ÿçõÏ&¦Qÿÿ ÿêòÏ&Q ÿÿ ÿêñÏ&Q*ˆÿÿ ÿéïÏ&O/¹ÿÿ ÿèïÐ&Q*‰ÿÿ ÿíðÏ&Q.}ÿÿ ÿïðÏ&j&ÿÿ ÿë÷Ï&Pÿÿ ÿéòÏ&O'Êÿÿ ÿèóÏ&Oÿÿ ÿéðÏ&Q*Öÿÿ ÿêóÏ&Qÿÿ ÿëòÏ&QYÿÿ ÿéóÏ&ÁQÿÿ ÿéòÏ&Q€ÿÿ ÿçøÏ&P?ÿÿ ÿæöÏ&Qÿÿ ÿèñÏ&à&È&eÿÿ ÿæôÏ&Qÿÿ ÿéíÏ&Qêÿÿ ÿéìÏ&aOÿÿ ÿèìÏ&Á&ÿÿ ÿéîÏ&Q‹ÿÿ ÿéìÏ&Qdÿÿ ÿíóÐ&Q,8ÿÿ ÿèïÏ&à& >(ÿÿ ÿèôÏ&O›ÿÿ ÿéóÏ&Qæÿÿ ÿéõÏ&P0xÿÿ ÿéòÐ&QAÿÿ ÿéôÐ&QTÿÿ ÿïöÑ&Oaÿÿ ÿéóÏ&Q¥ÿÿ ÿéôÑ&Qàÿÿ ÿé÷Ï&PEÿÿ ÿéõÐ&Q‹ÿÿ ÿêíÏ&¸&ÿÿ ÿéóÑ&Q"ÿÿ ÿíöÐ&Qvÿÿ ÿèôÐ&POÿÿ ÿé÷Ï&O®ÿÿ ÿêóÐ&OÓÿÿ ÿéóÏ&O'ÿÿ ÿéíÏ&à&%7%8ÿÿ ÿèóÏ&Q0¾ÿÿ ÿêõÏ&Q~ÿÿ ÿëïÏ&à0Jÿÿ ÿéóÏ&PŽÿÿ ÿéïÐ&Q,9ÿÿ ÿêóÒ&P0ìÿÿ ÿéöÏ&Oÿÿ ÿéóÐ&PHÿÿ ÿëóÐ&à&Iúÿÿ ÿïõÏ&O*ÿÿ ÿéêÐ&cOÿÿ ÿçôÏ&RQÿÿ ÿïóÏ&Oëÿÿ ÿïòÏ&Q0Aÿÿ ÿéïÐ&ßàÿÿ ÿéîÏ&-BOÿÿ ÿêóÏ&Q&?ÿÿ ÿé÷Ï&Ocÿÿ ÿæôÏ&O-ÿÿ ÿïôÏ&O&Aÿÿ ÿéõÏ&Q…ÿÿ ÿéôÏ&Oÿÿ ÿéóÏ&Q*ÿÿ ÿèöÐ&Q&ÿÿ ÿèíÏ&P&Ó>)ÿÿ ÿèíÏ&P&Ó>*ÿÿ ÿéôÏ&Obÿÿ ÿèóÐ&ŒPÿÿ ÿèõÐ&QLÿÿ ÿéöÏ&P”ÿÿ ÿèòÏ&Q&èÿÿ ÿéóÏ&à&~*ÿÿ ÿéóÏ&O'ÿÿ ÿéóÏ&Q6ÿÿ ÿéñÏ&O'Üÿÿ ÿéóÏ&&ÿÿ ÿéõÏ&O'Ýÿÿ ÿéóÏ&P Gÿÿ ÿêòÏ&Oÿÿ ÿéõÏ&O1ÿÿ ÿëôÏ&O(mÿÿ ÿéíÏ&Oÿÿ ÿéìÏ&Q1 ÿÿ ÿéëÏ&Q>+ÿÿ ÿïòÏ&£àÿÿ ÿéõÐ&O‹ÿÿ ÿéïÐ&Qxÿÿ ÿçöÐ&à&#‚>,ÿÿ ÿìõÐ&O*ÿÿ ÿìõÏ&P&!>-ÿÿ ÿéõÐ&Q#¡ÿÿ ÿèóÏ&Qïÿÿ ÿëôÑ&QÌÿÿ ÿéóÏ&à0sÿÿ ÿéðÏ&P»ÿÿ ÿïòÏ&O <ÿÿ ÿéðÐ&O# ÿÿ ÿéôÏ&O#šÿÿ ÿéòÐ&Q<ÿÿ ÿéòÐ&à&0ßÿÿ ÿì÷Ï&O¥ÿÿ ÿêõÏ&Oÿÿ ÿèòÏ&Q!ûÿÿ ÿéõÏ&à"Ëÿÿ ÿîôÏ&!_Qÿÿ ÿèöÏ&à&#"#!ÿÿ ÿèòÏ&Q0¤ÿÿ ÿèõÏ&P Óÿÿ ÿéóÐ&O]ÿÿ ÿèôÑ&O$ƒÿÿ ÿèôÏ&O!˜ÿÿ ÿèôÐ&P#¸ÿÿ ÿéòÐ&#Oÿÿ ÿçìÏ&O!ÿÿ ÿéöÏ&PNÿÿ ÿçóÐ&Q&rÿÿ ÿéðÏ&O$ ÿÿ ÿèõÏ&/8Pÿÿ ÿéñÏ&P$Ïÿÿ ÿëõÑ&O/ÿÿ ÿéóÏ&O>.ÿÿ ÿéïÐ&O%ÿÿ ÿéòÐ&P%ÿÿ ÿéðÑ&Q$•ÿÿ ÿîòÏ&P$Iÿÿ ÿéõÑ&P—ÿÿ ÿêóÐ&O/Nÿÿ ÿéóÏ&P†ÿÿ ÿïóÏ&à¦ÿÿ ÿéóÏ&O*ÿÿ ÿéôÏ&P)Ëÿÿ ÿçôÒ&à£ÿÿ ÿèöÑ&P,:ÿÿ ÿéîÑ&P¹ÿÿ ÿéõÏ&à0Zÿÿ ÿëõÐ&0K0Lÿÿ ÿèôÏ&O*ÿÿ ÿèóÏ&Püÿÿ ÿéôÏ&P* ÿÿ ÿêóÐ&O* ÿÿ ÿéôÐ&P,;ÿÿ ÿèõÐ&à&>/ÿÿ ÿçíÑ&à”ÿÿ ÿéôÐ&Ocÿÿ ÿèðÑ&P&3>0ÿÿ ÿèõÏ&à&,<>1ÿÿ ÿîöÏ&Pÿÿ ÿéõÏ&P!×ÿÿ ÿéðÏ&P0·ÿÿ ÿéñÏ&P'ÿÿ ÿèôÑ&à.¡ÿÿ ÿìöÑ&O)óÿÿ ÿéôÏ&à0Mÿÿ ÿêòÐ&à-/ÿÿ ÿéòÑ&O-ÿÿ ÿêòÎ&(*ÿÿ ÿèöÏ&+ÿÿ ÿéïÇ&* * ÿÿ ÿéõÏ&*ÿÿÿéìÊ&f>4ÿÿÿéìÊ&f>5ÿÿÿéìÊ&f>6ÿÿÿéìÊ&feÿÿÿéíË&ü>7ÿÿÿéìÊ&f~ÿÿÿéìÊ&f>8ÿÿÿéíË&ü>9ÿÿÿèíÉ&>:ÿÿÿéíË&ü>;ÿÿÿèíÉ&><ÿÿÿéìÊ&f>=ÿÿÿèíÉ&>>ÿÿÿéìÊ&f>?ÿÿÿèíÉ&>@ÿÿÿéìÊ&f>AÿÿÿèíÉ&>BÿÿÿèíÉ&>CÿÿÿèíÉ&>DÿÿÿèíÉ&>EÿÿÿèíÉ&>FÿÿÿèíÉ&>GÿÿÿèíÉ&>HÿÿÿèíÉ&>IÿÿÿéíË&ü>JÿÿÿèíÉ&œÿÿÿèíÉ&ßÿÿÿèíÉ&>KÿÿÿèíÉ&êÿÿÿèíÉ&>LÿÿÿèíÉ&>ÿÿÿèíÉ&õÿÿÿèíÉ&>MÿÿÿèíÉ&ãÿÿÿèíÉ&>NÿÿÿèíÉ&>OÿÿÿèíÉ&%CÿÿÿèíÉ&ÓÿÿÿèíÉ&‹ÿÿÿèíÉ&ŠÿÿÿéëÈ&ÛdÿÿÿèíÉ&´ÿÿ ÿèíÎ&û&§>PÿÿÿèíÉ&>QÿÿÿéëÈ&d>RÿÿÿèíÉ&>SÿÿÿèíÉ&>TÿÿÿèíÉ&>UÿÿÿèíÉ&>VÿÿÿéëÈ&d>WÿÿÿéëÈ&d!{ÿÿÿèíÉ&"=ÿÿÿéëÈ&d>XÿÿÿèíÉ&>YÿÿÿèíÉ&>ZÿÿÿéëÈ&d"ýÿÿÿèíÉ& ŸÿÿÿèíÉ&>[ÿÿÿçíÉ&"€ÿÿÿèíÉ&>\ÿÿÿèíÉ&>]ÿÿÿéëÈ&d>^ÿÿÿéëÈ&d>_ÿÿÿèíÉ&$YÿÿÿèíÉ&>`ÿÿÿèíÉ&>aÿÿÿèíÉ&>bÿÿÿèíÉ&>cÿÿÿèíÉ&&ÒÿÿÿéëÈ&d>dÿÿÿèíÉ&>eÿÿÿèíÉ&$ÿÿÿéëÈ&d>fÿÿÿéëÈ&d>gÿÿÿéëÈ&deÿÿÿèíÉ&>hÿÿÿèíÉ&(|ÿÿÿéëÈ&d>iÿÿÿéëÈ&d>jÿÿÿéëÈ&d>kÿÿÿèæÒ&’>lÿÿÿèæÒ&’¤ÿÿÿèæÒ&’>mÿÿÿèæÒ&’ÿÿÿèæÒ&’>nÿÿÿèæÒ&F’ÿÿÿèæÒ&’>oÿÿÿèæÒ&’>pÿÿÿèæÒ&’>qÿÿÿèæÒ&’>rÿÿÿèæÒ&’>sÿÿÿèæÒ&’>tÿÿÿèæÒ&’>uÿÿÿèæÒ&’>vÿÿÿèæÒ&’>wÿÿÿèæÒ&’>xÿÿÿèæÒ&’öÿÿÿèæÒ&’>yÿÿÿèæÒ&’>zÿÿÿèæÒ&’>{ÿÿÿèæÒ&’>|ÿÿÿèæÒ&’>}ÿÿÿèæÒ&’>~ÿÿÿèæÒ&£’ÿÿÿèæÒ&’äÿÿÿèæÒ&’ïÿÿÿèæÒ&‰’ÿÿÿèæÒ&’>ÿÿÿèæÒ&‘’ÿÿÿèæÒ&’ÿÿÿèæÒ&µ’ÿÿÿèæÒ&’ dÿÿÿèæÒ&’>€ÿÿÿèæÒ&’>ÿÿÿèæÒ&’>‚ÿÿÿèæÒ&’>ƒÿÿÿèæÒ&’“ÿÿÿèæÒ&’>„ÿÿÿèæÒ&">’ÿÿÿèæÒ&’>…ÿÿÿèæÒ&’"ÿÿÿèæÒ&’>†ÿÿÿèæÒ&’>‡ÿÿÿèæÒ&’>ˆÿÿÿèæÒ&’>‰ÿÿÿèíÏ&ÝìÿÿÿçõÏ&Ý«ÿÿÿéöÆ&m/mÿÿÿéóÊ&m ÿÿÿéõÆ&m³ÿÿÿéõÐ&mmÿÿÿéóÎ&m²ÿÿÿèòÆ&m0$ÿÿÿèõÏ&Ý‘ÿÿÿéòÐ&m±ÿÿÿèõÏ&ÝËÿÿÿèöÇ&ÝÞÿÿÿèóÊ&ßÝÿÿÿéõÍ&m,ÿÿÿèóÏ&m=ÿÿÿèòÏ&Ý0«ÿÿÿèíÇ&ôÝÿÿÿèëÉ&Ý%’ÿÿÿèðÏ&·mÿÿÿèöÏ&Ý¡ÿÿÿèóÏ&Ý"WÿÿÿèóÏ&ÝîÿÿÿèõÇ&ÝÿÿÿèóÐ&ÝUÿÿÿèóÏ&ÝÿÿÿéóÆ&m¶ÿÿÿéóÏ&mÂÿÿÿèóÏ&mÿÿÿéôÆ&m%ËÿÿÿéóÐ&m&@}ÿÿÿèôÆ&m)€ÿÿÿèóÐ&Ý>ŠÿÿÿéóÏ&m'¦ÿÿÿéóÏ&m)ÿÿÿéõÆ&m%"ÿÿÿèíÏ&mÿÿÿéòÆ&>‹ÿÿÿéóÆ&mÿÿÿéóÐ&m}ÿÿÿéöÏ&–mÿÿÿèòÏ&Ý{ÿÿÿèõÉ&~ÝÿÿÿéòÆ&mÅÿÿÿéõÐ&móÿÿÿéôÐ&m7ÿÿÿæöÏ&m³ÿÿÿéòÆ&m©ÿÿÿéóÏ&mÿÿÿèôÏ&m ÙÿÿÿéõÏ&àmÿÿÿéóÍ&&ªÿÿÿéóÎ&mÀÿÿÿéóÏ&ÍmÿÿÿéõÏ&m’ÿÿÿéóÏ&m(:ÿÿÿèõÐ&ZãÿÿÿèîÑ&Ý ¶ÿÿÿéóÏ&m+ÿÿÿéõÆ&m.ÿÿÿéôÈ&m[ÿÿÿéõÏ&)zmÿÿÿéòÐ&m%ÐÿÿÿéóÐ& OmÿÿÿèõÇ&Z.3ÿÿÿéóÎ&m&ÇÿÿÿéøÏ&m ÿÿÿéóÐ&m>ŒÿÿÿéîÏ&¿ÿÿÿéòÏ&£ÿÿÿéõÏ&mÿÿÿéôÏ&m'¯ÿÿÿèôÏ&m'ØÿÿÿèìÏ&m'gÿÿÿéëÎ&m'hÿÿÿéñÍ&m)cÿÿÿéõÐ&m )ÿÿÿéóÏ&+mÿÿÿçõÉ&YÿÿÿèõÈ&m"AÿÿÿéôÏ&!^ÿÿÿéöÏ&mÿÿÿéóÊ&m"ÿÿÿéîÉ& rÿÿÿéôÐ&m>ÿÿÿè÷Ñ&0NÿÿÿèóÆ&m#;ÿÿÿéóÐ&m>ŽÿÿÿéøÐ&m©ÿÿÿéñÏ&m)‚ÿÿÿéõÑ&m"±ÿÿÿéñÏ&m#ÓÿÿÿèòÎ&Z&ú>ÿÿÿéøÏ&/²mÿÿÿéòÏ&mLÿÿÿèõÐ&'pÿÿÿéóÐ&m>ÿÿÿéðÆ&m$ ÿÿÿèõÈ&m$ÿÿÿéñÑ&m#ôÿÿÿéôÏ&*)ÿÿÿéóÐ&m>‘ÿÿÿéöÏ& ÿÿÿéôÑ&mnÿÿÿéîÏ&mÿÿÿèõÐ&Z&ÿÿÿéöÏ&.IÿÿÿéõÒ&¢ÿÿÿèôÎ&%(ÿÿÿéôÎ&%'ÿÿÿçôÏ&'|mÿÿÿéõÐ&&Þ>’ÿÿÿéõÐ&&Þ>“ÿÿÿèöÑ&'Âÿÿÿé÷Ñ&&Ãÿÿÿè÷É&ZüÿÿÿçøÒ&ÕÿÿÿèóÏ&Z%õÿÿÿèòÊ&)ƒÿÿÿéöÑ&0OÿÿÿéðÏ&m>”ÿÿ ÿêôÒ&³²ÿÿÿèöÐ&ZHÿÿ ÿé÷Ï&1Nÿÿ ÿé÷Ï&1>•ÿÿÿèðÒ& ÿÿ ÿéñÑ&„)„ÿÿ ÿéõÐ&‹ÿÿ ÿéóÐ& n)…ÿÿ ÿèðÇ&s&R>˜ÿÿ ÿèóÒ&)† nÿÿ ÿçóÐ&)Œ nÿÿ ÿéóÐ& nPÿÿ ÿéõÐ&‡‹ÿÿ ÿèôÐ&UØÿÿ ÿèïÏ&)>™ÿÿ ÿéñÏ&ˆ>šÿÿ ÿéõÐ&‹ŠÿÿÿéóÐ&)tÿÿÿééÒ&>›ÿÿ ÿéóÐ&7)ÿÿÿèòÐ&œ>œÿÿ ÿéõÐ&)Ž‹ÿÿ ÿéõÐ&‹-5ÿÿ ÿéóÐ&(&')ÿÿÿéóÐ&†ÿÿ ÿéóÐ&,= nÿÿ ÿéóÏ&˜)ÿÿ ÿéóÏ&9˜ÿÿÿéóÐ& m nÿÿ ÿéòÏ&¦&¨§ÿÿ ÿéõÏ&q!×ÿÿ ÿèðÐ&r& sÿÿÿéñÏ&k>ÿÿ ÿéóÑ&˜%¯ÿÿ ÿéóÐ&$»˜ÿÿ ÿéóÏ&˜>žÿÿ ÿèóÑ&),Qÿÿ ÿéóÏ&)‘&))“ÿÿ ÿéóÏ&˜Šÿÿ ÿéóÑ&,>˜ÿÿ ÿéóÏ&€˜ÿÿ ÿçõÒ&,?> ÿÿÿéðË&0P ¾ÿÿÿéïË& ¼>¡ÿÿÿéïË& ¼ Áÿÿ ÿèôË& ½ÿÿ ÿçõË& ¾>¢ÿÿÿéòË&$¢ ¾ÿÿ ÿèïË&(&' ¾ÿÿ ÿéóË& ¾>£ÿÿÿæñÌ& À>¤ÿÿÿèïË&+# ¼ÿÿ ÿéóË& ¾>¥ÿÿ ÿêóË& ¾>¦ÿÿ ÿéïÌ& À>§ÿÿ ÿéóË& ¾)ÿÿÿçóÌ& À>¨ÿÿÿéôË& ¾*ÿÿÿèïË& ½QÿÿÿèïÌ& À+ÿÿÿçôË&-&, ¾ÿÿÿéïÌ&R Àÿÿ ÿéóÌ& À>©ÿÿ ÿéõÌ& À>ªÿÿ ÿéóÌ& À>«ÿÿÿçïË& ¾&->¬ÿÿÿéòÌ& À‹ÿÿÿïïË& ¾>­ÿÿÿæðÌ& ¿.ÿÿ ÿèïÌ& À>®ÿÿ ÿéóÎ&>¯ÿÿ ÿèòÎ& Nÿÿ ÿéóÌ& À>°ÿÿÿçóÌ& À&->±ÿÿÿè÷Ð&,@;ÿÿÿèòÌ& À eÿÿ ÿêöË& ¾>²ÿÿ ÿéðÎ&&>³ÿÿ ÿêóÎ&!âÿÿ ÿéïË& ¾>´ÿÿÿêïË& ¾>µÿÿÿéòÌ& À ”ÿÿ ÿèôÎ&&ÿÿÿéöÌ& À>¶ÿÿ ÿèóÎ&ý&üÿÿÿéïÌ& ¿>·ÿÿÿéðÎ&>¸ÿÿÿéóÎ&>¹ÿÿ ÿêòÎ&>ºÿÿÿêõÎ&>»ÿÿ ÿéòÎ&>¼ÿÿ ÿèðÎ&>½ÿÿ ÿéòÎ&>¾ÿÿÿéðÎ&>¿ÿÿ ÿçóÌ& ¿>ÀÿÿÿéïÌ& ¿>ÁÿÿÿéóÌ&°& ¿>Âÿÿ ÿîòÎ&>Ãÿÿ ÿéóÎ&>Äÿÿ ÿéòÎ&>ÅÿÿÿéöÌ& ¿>Æÿÿ ÿèøÎ&>Çÿÿ ÿéðÎ&&ÿÿ ÿéðÎ&({ÿÿÿéóÎ&>Èÿÿ ÿîòÌ& ¿>Éÿÿ ÿçõÌ& ¿%zÿÿÿèòÎ&>Êÿÿ ÿéóÎ&>Ëÿÿ ÿêðÌ& ¿>Ìÿÿ ÿéðÎ&>ÍÿÿÿéïÌ& ¿>ÎÿÿÿèöÐ&&)”>ÏÿÿÿëöÌ& ¿>Ðÿÿ ÿíòÎ&>ÑÿÿÿèòÐ&0Q)”ÿÿ ÿéðÎ&&>Òÿÿ ÿéïÌ& ¿>Óÿÿ ÿéïÌ& ¿>Ôÿÿ ÿèôÐ&,„ÿÿ ÿéóÏ&'+íÿÿ ÿéóÏ&Š'°ÿÿ ÿéôÐ&w„ÿÿ ÿéóÑ&„%ÿÿ ÿéðÐ&„Iÿÿ ÿéôÑ&…„ÿÿ ÿéôÑ&„¦ÿÿ ÿéòÐ&0R>Øÿÿ ÿéóÐ&Ç>Ùÿÿ ÿêóÑ&õ"Mÿÿ ÿèîÇ&E&sDÿÿ ÿêðÆ&H"Mÿÿ ÿèóÊ&A>Úÿÿ ÿèóÏ&qÿÿ ÿèöÏ&Ÿÿÿ ÿéóÏ&!,ÿÿ ÿéîÏ&ÿÿ ÿéìÏ&Yÿÿ ÿéõÏ&!*ÿÿ ÿéöÏ&ÿÿ ÿèöÑ&!Z­ÿÿ ÿéóÏ&}ÿÿ ÿéõÏ&&!E!Dÿÿ ÿéõÏ&ÿÿ ÿéèÐ&/& 6ÿÿ ÿèõÏ&!Fÿÿ ÿéîÏ& °ÿÿ ÿéõÏ&!Gÿÿ ÿéîÏ&!Hÿÿ ÿéóÏ&íÿÿ ÿèðÏ&Çÿÿ ÿéóÏ& Qÿÿ ÿéïÏ& & ó!Iÿÿ ÿéîÏ&ÿÿ ÿéôÏ& ®ÿÿ ÿéöÐ&!Jÿÿ ÿéóÏ& &!L!Kÿÿ ÿéõÏ&3ÿÿ ÿéõÏ& !Mÿÿ ÿéòÏ&!Nÿÿ ÿé÷Ñ&çÿÿ ÿéòÏ&0×ÿÿ ÿéôÏ& ôÿÿ ÿèóÏ& 0¿ÿÿ ÿéõÏ&Lÿÿ ÿèôÊ&0S!Oÿÿ ÿéóÏ&²ÿÿ ÿèöÏ& &!Pÿÿ ÿèõÏ&!Z)•ÿÿ ÿéöÏ&)–ÿÿ ÿéôÐ& í>Ûÿÿ ÿèìÑ&!Xÿÿ ÿéëÏ&!Wÿÿ ÿéóÐ&Yÿÿ ÿéöÏ& /÷ÿÿ ÿèîÐ& “ÿÿ ÿéóÏ&) ÿÿ ÿéðÏ&  ÿÿ ÿéõÐ& &!R!Qÿÿ ÿèõÏ&¯ ÿÿ ÿéöÏ&&ÿÿ ÿèóÐ& 2ÿÿ ÿèôÏ& !îÿÿ ÿéõÏ& "Íÿÿ ÿéñÏ& ÿÿ ÿèóÐ&0&1ÿÿ ÿéñÏ&!Z/ÿÿ ÿéóÏ&0s0zÿÿ ÿèôÏ& &Q"èÿÿ ÿéóÏ& óÿÿ ÿèôÏ& >Üÿÿ ÿèôÐ&!Z!Yÿÿ ÿéöÏ&!Z#Fÿÿ ÿéòÐ& $cÿÿ ÿèóÑ& >Ýÿÿ ÿèóÉ&  ÿÿ ÿéóÐ&0& >Þÿÿ ÿçõÏ& !Sÿÿ ÿçõÏ& !Uÿÿ ÿéõÏ&!Tÿÿ ÿéôÏ& .÷ÿÿ ÿéõÏ& !Öÿÿ ÿèôÏ& !Vÿÿ ÿèòÏ& >ßÿÿ ÿçõÐ& # ÿÿ ÿéõÏ&Ë ÿÿ ÿéôÐ&)5 ÿÿ ÿéîÐ&#ÿÿ ÿçòÐ&"ÿ#ÿÿ ÿéõÐ&#!Gÿÿ ÿèõÐ&öóÿÿ ÿé÷Ñ&ç#ÿÿ ÿéóÐ&¦#ÿÿ ÿèõÐ&##ÿÿ ÿéóÑ&##ÿÿ ÿéôÐ&&##ÿÿ ÿéòÐ&!2#ÿÿ ÿéöÐ&·#ÿÿ ÿçöÐ&!3tÿÿ ÿèóÐ&##ÿÿ ÿèôÐ&!Y#ÿÿ ÿéôÐ&Ç#ÿÿ ÿè÷Ñ&# #ÿÿ ÿéôÐ&##ÿÿ ÿéïÐ&##ÿÿ ÿçõÑ&# # ÿÿ ÿéîÎ&q 'ÿÿ ÿèíÏ&¥rÿÿ ÿçöÏ&stÿÿ ÿéôÏ&Æ1ÿÿ ÿèóÏ&Æ$ºÿÿ ÿóóÏ&Ñ!\ÿÿ ÿîóÐ&)—&ì>àÿÿ ÿîòÏ&!]>âÿÿÿéîÑ&!Ë!ÊÿÿÿèðÑ&!Ì!Êÿÿ ÿéôÑ&!ÍÿÿÿéôÑ&!Î!Ïÿÿ ÿéóÑ&!Í!ÑÿÿÿèõÑ&!Î!Ðÿÿ ÿéóÑ&!Ò>ãÿÿ ÿéóÐ&™!ÓÿÿÿéñÒ&!Ô!Óÿÿ ÿéõÑ&!Í!Öÿÿ ÿèõÈ&yxÿÿÿèõÈ&:xÿÿ ÿèõÎ&^ÿÿ ÿèõÈ&xÿÿ ÿèõÏ&]^ÿÿ ÿèöÈ& Åÿÿ ÿèõÉ&)˜xÿÿ ÿèõÈ&Àxÿÿ ÿéõÇ&ž!ÿÿ ÿèõÏ&^ Æÿÿ ÿèõÍ&^ Çÿÿ ÿéõÇ&! ÈÿÿÿéõÇ& É!ÿÿ ÿèõÇ&!—ÿÿ ÿéõÍ&!˜ÿÿ ÿéõÍ&"!ÿÿ ÿéõÏ&!¿ÿÿÿçóÐ& ã„ÿÿÿéõÏ&!cÿÿ ÿéóÇ&„ äÿÿ ÿèõÏ&!­ÿÿ ÿéõÐ&!ëÿÿ ÿéóÍ&o„ÿÿ ÿèóÏ&„0Áÿÿ ÿéòÏ&“´ÿÿ ÿéõÏ&,!ÿÿÿéõÇ&!Ÿÿÿ ÿéóÐ&„ ÿÿÿèõÐ&^¥ÿÿ ÿéóÇ&X„ÿÿ ÿéóÑ&„)™ÿÿ ÿéòÌ&´Gÿÿ ÿéóÏ&D„ÿÿ ÿéõÇ&!ÿÿ ÿèòÐ& ¡>äÿÿ ÿçóÏ& á„ÿÿ ÿçñÎ& ©0|ÿÿ ÿéõÌ&5&!>åÿÿ ÿéòÇ&R´ÿÿ ÿèóÑ& Ô&„>æÿÿÿéóÇ&„ Óÿÿ ÿéóÍ&/µ„ÿÿ ÿéóÐ&=„ÿÿ ÿéóÏ& °„ÿÿ ÿéóÍ&/³„ÿÿ ÿéòÑ&´ÏÿÿÿçóÏ&„- ÿÿÿéòÇ&´ ÐÿÿÿéòÏ& Ò´ÿÿ ÿéóÊ&|„ÿÿ ÿèóÌ&5& Ñ„ÿÿ ÿéõÏ&!ÿÿÿèóÐ&„yÿÿ ÿéòÇ&´"0ÿÿ ÿçöÊ&"tÿÿ ÿéòÏ&´„ÿÿ ÿéóÇ&„zÿÿ ÿéòÐ&!è ¡ÿÿ ÿéòÇ& ¡! ÿÿ ÿéòÏ& Ï!ÿÿÿéòÉ&´ |ÿÿ ÿèòÏ&´Žÿÿ ÿèòÏ&´…ÿÿ ÿéóÇ&„>çÿÿÿéòÏ&)¨ ¡ÿÿ ÿéòÇ&³´ÿÿÿéòË&´ÿÿ ÿéòÏ&´)©ÿÿ ÿçóÏ&„‚ÿÿ ÿéòÏ&$8´ÿÿ ÿéòÉ& ¡4ÿÿ ÿéòÎ& ¡>èÿÿ ÿéòÍ&´Šÿÿ ÿçòÈ&´zÿÿ ÿéòÏ&´)ªÿÿ ÿéöÑ&€ÿÿ ÿéòÎ&´‚ÿÿ ÿéòÉ&ƒ´ÿÿÿéòÐ&i´ÿÿÿéòÑ&´0âÿÿÿéòÏ& Ï]ÿÿ ÿéòÑ&´ Îÿÿ ÿéòÇ& Í´ÿÿÿèñÏ&0X>éÿÿ ÿèòÑ& Ë Ìÿÿ ÿéòÍ&x&ý&î´ÿÿ ÿéöË& Êÿÿ ÿéòÏ&´~ÿÿ ÿéóÇ&y“ÿÿÿéóÇ&:;ÿÿ ÿéöÇ&|ÿÿ ÿéóÇ&;ÿÿ ÿéóÏ&}–ÿÿ ÿèóÉ&;)˜ÿÿ ÿéóÇ&À“ÿÿ ÿèöÇ&|—ÿÿ ÿéóÇ&}0&ÿÿ ÿéóÍ&{"ÿÿ ÿéóÍ& Ç{ÿÿ ÿéóÍ&{˜ÿÿ ÿéóÇ&{žÿÿ ÿéóÇ& È{ÿÿÿéöÇ&}|ÿÿÿèóÏ&{*{ÿÿÿéöÏ&a|ÿÿÿçóÐ&{ ãÿÿ ÿéóÇ&{’ÿÿ ÿéóÏ&,{ÿÿ ÿéóÏ&D{ÿÿ ÿéóÐ&{)«ÿÿ ÿéóÌ&5&<}ÿÿ ÿéóÐ&{ ÿÿÿéóÇ&{Ÿÿÿ ÿéóÐ&{=ÿÿ ÿéóÍ&}/³ÿÿ ÿéóÒ&}ÿÿ ÿéóÏ&{zÿÿ ÿéóÊ&}|ÿÿ ÿçöÊ&u~ÿÿ ÿéóÇ&z}ÿÿ ÿèóÏ&}ÿÿ ÿèóÏ&…ÿÿ ÿéóÏ&„ÿÿ ÿçóÇ&ƒÿÿÿéóÏ&€ÿÿ ÿçóÏ&}‚ÿÿÿéóË&ÿÿ ÿéóÉ&ƒÿÿ ÿéóÑ&€ÿÿ ÿèóÈ&}ÿÿÿèñÑ&{0Xÿÿ ÿéóÏ&~ÿÿ ÿéóË&á#áÿÿ ÿçúË&hgÿÿ ÿéóÉ&á>êÿÿ ÿéóÎ&á>ëÿÿ ÿéöÐ&~}ÿÿ ÿéøÏ&|#éÿÿ ÿéõÐ&âáÿÿ ÿéóÌ&°>ìÿÿ ÿéóÉ&{áÿÿ ÿéôÉ&áÿÿ ÿéöÈ&"1°ÿÿ ÿéóÉ&°>íÿÿ ÿéøÏ&#ã#âÿÿ ÿéóÏ&á>îÿÿ ÿéøÏ&"Þãÿÿ ÿéóÈ&"ˆ°ÿÿÿéøÉ&éãÿÿ ÿéõÏ&}>ïÿÿ ÿéøÉ&#äãÿÿ ÿéóÉ&°>ðÿÿ ÿéôÈ&°>ñÿÿ ÿéøÉ&äãÿÿ ÿçøÐ&ã>òÿÿ ÿéõÎ&°>óÿÿ ÿéõÐ&°>ôÿÿ ÿéôÈ&°>õÿÿÿéøÏ&#â#åÿÿ ÿêôÎ&#æÿÿ ÿçöÏ&#è#éÿÿ ÿêñÈ&ÿÿ ÿêñÏ&>öÿÿ ÿç÷É&)¬)­ÿÿ ÿç÷Ð&)­>÷ÿÿ ÿêõÍ&)®>øÿÿ ÿéøÎ& ÿÿ ÿèõÓ&Ç)°ÿÿÿéõÑ&>´ÿÿÿèóÑ&>qÿÿÿéóÑ&>"ßÿÿ ÿèõÓ&)³)±ÿÿÿèõÓ&)²)±ÿÿÿéõÑ&)´ ÅÿÿÿéñÑ& Å)µÿÿÿéòÑ&(* ÆÿÿÿéðÑ&ü&û ÅÿÿÿéõÑ&)¶ƒÿÿ ÿéóÑ&¯ÃÿÿÿéõÑ&ƒ>ÿÿÿéòÑ& Å0ôÿÿÿéôÑ& È"–ÿÿÿéïÑ& Ç/¹ÿÿ ÿçôÌ&0ÿÿÿéíÑ&ˆ ÅÿÿÿéõÑ&3 ÅÿÿÿèðÑ&4 ÅÿÿÿèöÑ& Å0kÿÿÿéóÑ& Å5ÿÿÿèõÑ& ÆQÿÿÿèóÑ&ç ÆÿÿÿéìÑ&a Çÿÿ ÿåõÏ& )·ÿÿÿèíÑ&b ÆÿÿÿèôÑ&&ç Åÿÿ ÿæõÊ&C&BAÿÿ ÿçôÐ&æÿÿÿéóÑ&"— ÆÿÿÿèóÑ& Å’ÿÿÿé÷Ñ&c ÇÿÿÿéòÑ& ÆÚÿÿÿèõÑ& ÈeÿÿÿéóÑ& ÆÿÿÿéõÑ& · ÅÿÿÿéõÑ&d ÆÿÿÿéóÑ& È0TÿÿÿéôÑ& Æ&ñÿÿÿéôÑ&/w ÈÿÿÿçöÒ&f ÆÿÿÿéöÒ&g ×ÿÿÿéòÑ& Ç,AÿÿÿéíÑ&å ÅÿÿÿèóÑ& Æíÿÿ ÿçôÏ&)¹ÿÿÿé÷Ñ&(x ÈÿÿÿéòÑ& ÈWÿÿÿçõÑ& È&©ªÿÿÿèòÑ& Ç"@ÿÿÿéòÑ& Å!2ÿÿÿèðÒ&)¸&g!ÿÿÿéòÑ& Èÿÿ ÿåõÑ&)·>úÿÿÿéöÑ& È"õÿÿÿéòÒ&g&/>ûÿÿÿèõÒ&g&@>üÿÿÿèðÑ&0 ÆÿÿÿçõÑ& È!0ÿÿÿèóÑ& È#Aÿÿ ÿéóÑ&¯#1ÿÿÿéöÑ&$f$jÿÿÿéôÑ& È#úÿÿÿéïÑ&% ÈÿÿÿéóÑ&(g ÆÿÿÿéóÑ& È(sÿÿÿéôÑ& È1ÿÿÿèõÑ& È(tÿÿÿéóÑ& Æ$ØÿÿÿéóÑ& Ç#`ÿÿÿéôÑ&$Ù ÈÿÿÿéòÑ& Æ%ÿÿÿåôÑ&(u ÆÿÿÿèôÑ& Ç(vÿÿÿéóÑ& ÆýÿÿÿéõÑ& È(wÿÿÿéðÑ& È5ÿÿÿçõÑ&$j!UÿÿÿèóÑ& Ç#6ÿÿÿéñÑ& Ç)ºÿÿ ÿçõÒ&)»&º>ýÿÿÿçõÏ&Ì>þÿÿÿéôÒ&g(rÿÿÿçõÒ&!ÔÌÿÿÿéòÒ& È!ÕÿÿÿèöÑ& È)òÿÿÿéñÑ&$j(ÿÿÿèòÑ& Ç(qÿÿÿéòÑ&$j-ÿÿÿçõÑ&$j(pÿÿ ÿêõÐ&«ªÿÿ ÿéíÐ&«%9ÿÿ ÿëõÐ&¬«ÿÿ ÿç÷Ð&­)¼ÿÿ ÿëñÐ&«®ÿÿ ÿéõÐ&«`ÿÿ ÿçóÐ&¯)¼ÿÿ ÿêòÐ&«¾ÿÿ ÿéõÑ&«¶ÿÿ ÿèõÐ&»)¼ÿÿ ÿèîÑ&¿)¼ÿÿ ÿëõÐ&«3ÿÿ ÿéêÐ&(o)¼ÿÿ ÿéòÐ&«0öÿÿ ÿéóÐ&Á)¼ÿÿ ÿèõÐ&¼)¼ÿÿ ÿèíÒ&½¾ÿÿ ÿéòÐ&«¤ÿÿ ÿéóÐ&æ)¼ÿÿ ÿêôÐ&)¼,Ëÿÿ ÿé÷Ð&c)¼ÿÿ ÿéöÐ&½(lÿÿ ÿèñÐ&“)¼ÿÿ ÿëôÐ&(m)¼ÿÿ ÿéìÐ&«(nÿÿ ÿéñÐ&½Xÿÿ ÿëôÐ&"j)¼ÿÿ ÿæòÐ&!ÿ)¼ÿÿ ÿèòÐ&½0¤ÿÿ ÿéóÐ&½pÿÿ ÿèõÐ&£)¼ÿÿ ÿéñÐ&½%ÿÿ ÿëôÑ&½$Úÿÿ ÿëóÐ&#_)¼ÿÿ ÿéôÐ&½%Þÿÿ ÿèõÐ&&(k?ÿÿ ÿèõÐ&½(jÿÿ ÿêôÐ&½)½ÿÿ ÿè÷Ð&(i?ÿÿ ÿèöÏ&Chÿÿ ÿçõÉ&Ã"•ÿÿ ÿéôË&Ã"–ÿÿ ÿéóÏ&"—Ãÿÿ ÿéôÐ&ÃÂÿÿ ÿéöÏ&Ã"˜ÿÿ ÿèóÐ&Ã!‘ÿÿ ÿéôÐ&Ã"™ÿÿ ÿéôÉ&Ã1ÿÿ ÿé÷Ð&™šÿÿ ÿèöÒ&"š&"›"œÿÿÿèõÇ&æœÿÿ ÿéìÈ&Ç"ÕÿÿÿéóÇ&!,æÿÿÿéðÐ&æ)äÿÿÿèöÏ&æHÿÿÿéóÌ&"߈ÿÿÿéõÎ&"àæÿÿÿèíÐ&ˆ"áÿÿÿèðÊ&"ã"âÿÿÿéëÇ&ˆ&ÙÿÿÿéóÇ&ˆ&ÚÿÿÿéõÏ&ÎæÿÿÿèôÍ&ˆ&ÜÿÿÿéíÊ&&Û"âÿÿÿçøÏ&ùˆÿÿ ÿéòÈ&q&ÝÿÿÿéõÏ&ˆBÿÿÿéôÏ&—éÿÿÿèøÈ&úˆÿÿÿéòÇ&&ÞæÿÿÿèõÏ&ˆ-ÿÿÿéóÌ&æ äÿÿÿéîÇ&ˆ&ßÿÿÿèðÇ&!̈ÿÿ ÿéôÔ&,]ÎÿÿÿéôÇ&æ&àÿÿÿéëÏ&æ·ÿÿÿéóÇ&ˆ ûÿÿÿéôÏ&æœÿÿÿéóÑ&&â&áÿÿÿéìÎ&éÿÿÿéõÇ&æ,CÿÿÿéîÇ&æ!HÿÿÿéíÐ&&ã'qÿÿÿèöÏ&dæÿÿÿèõÐ&æ&åÿÿÿéòÐ&æ0ôÿÿÿéóÐ&é&,D?ÿÿÿéôÏ&æ&äÿÿÿéôË&é"–ÿÿÿéðÏ&éiÿÿÿéîÇ&æ0óÿÿÿèóÐ&æçÿÿÿé÷Ì&SæÿÿÿéóÇ&æTÿÿÿéóÏ&ûéÿÿÿéìÈ&é&æÿÿÿéöÑ&ébÿÿÿèòÏ&èéÿÿÿèôÇ&&çæÿÿÿæôÎ&æ#.ÿÿÿéòÏ&¤éÿÿÿéíÉ&æwÿÿÿéõÐ&é‹ÿÿ ÿèëÏ&S*ÿÿÿéóÏ&é0UÿÿÿèòÇ&é&èÿÿÿéõÏ&æ ·ÿÿÿéôÇ&é&éÿÿÿçóÏ&é&êÿÿÿéóÐ&&ëæÿÿÿéñÈ&æ&ìÿÿÿéõÏ&déÿÿÿéëÉ&æ!WÿÿÿéóÐ&édÿÿÿèõÑ&éeÿÿÿéóÏ&é(ÿÿÿéóÏ&æ&íÿÿÿéôÏ&é+_ÿÿÿé÷Ç&é"nÿÿÿéõÐ&é‹ÿÿÿéìÇ&éŒÿÿÿéôÐ&æ&îÿÿÿéòÏ&æ,BÿÿÿéôÇ&æ&ñÿÿÿèîÏ&æ&ïÿÿÿéóÏ&é&ðÿÿÿéòÇ&é1ÿÿÿéóÐ&é)ÈÿÿÿèòÏ&æ+tÿÿÿéôÐ&ÂéÿÿÿéóÇ&é?ÿÿÿéóÏ&é *ÿÿÿéñÈ&éÿÿÿéòÇ&é(hÿÿ ÿéòÐ&Î&01ÿÿÿéðÐ&é"ÀÿÿÿéôÏ&é#ªÿÿÿéøÉ&éÿÿÿéôÑ&æ!Ïÿÿ ÿéôÏ&*0vÿÿÿéïÏ&é?ÿÿÿéóÉ&é"ÿÿ ÿéõÇ&* ÿÿÿéôË&é#ÏÿÿÿéõÍ&é"‚ÿÿÿéöÈ&é&ÿÿÿéîÇ&é"ƒÿÿÿéóÐ&kæÿÿÿéôÑ&æ#úÿÿÿéóÏ&é(gÿÿ ÿçõÑ&?ÿÿÿéòÏ&é$ÔÿÿÿéòÏ&(a?ÿÿÿéïÐ&é%ÿÿ ÿèóÏ&?ÿÿÿéóÐ&é(eÿÿÿéóÏ&æWÿÿÿéòÇ&$úéÿÿÿéôÇ&éÏÿÿÿéïÏ&é(fÿÿÿéôÇ&é!ÿÿ ÿéïÏ&)Ê*ÿÿÿéòÏ&%éÿÿ ÿéöÐ&0(aÿÿÿéîÇ&é(cÿÿÿéôÇ&èæÿÿÿéóÐ&é(bÿÿ ÿçöÐ&0V?ÿÿÿéñÐ&(a0WÿÿÿèõÐ&é!ÝÿÿÿéóÉ&é$-ÿÿÿé÷Ñ&é(dÿÿÿéóÇ&æçÿÿÿéòÈ&é(_ÿÿÿéíÇ&éžÿÿÿéôÏ&é(`ÿÿÿéôÏ&é#ÿÿÿèõÏ&)¾éÿÿÿèóÏ&é#6ÿÿÿéôÎ&éÿÿÿéõÇ&é? ÿÿ ÿèõÐ&& ? ÿÿÿéòÈ&æ'ÿÿÿéïÑ&é'#ÿÿÿéóÉ&é*£ÿÿÿéóÏ&é(Õÿÿ ÿêõÏ&*? ÿÿÿé÷Ñ&é)¿ÿÿÿéòÒ&é!Õÿÿ ÿéôÐ&ÍÎÿÿÿèòÉ&é)ÀÿÿÿçòÐ&)Âéÿÿ ÿéñÈ&)*ÿÿ ÿèòÐ&)Á*ÿÿ ÿéóÑ&*6ÿÿÿéôÑ&êéÿÿÿèòÏ&,éÿÿ ÿéðÇ&*? ÿÿ ÿéñÏ& &  ÿÿÿéðÏ&é? ÿÿÿéóÏ&é(Îÿÿ ÿêòÉ&**kÿÿ ÿéñÌ&)Ã?ÿÿ ÿèõÈ&œ?ÿÿ ÿèöÏ&?HÿÿÿèíÐ&Å@ÿÿÿêöÏ&@ÿÿÿêòÇ&@Iÿÿ ÿçøÏ&?ùÿÿÿéëÐ&)Ä@ÿÿ ÿêîÈ&?!HÿÿÿêôÏ&@&äÿÿÿêëÇ&)ÅAÿÿÿéóÏ&A&/ÕÿÿÿêìÎ&@ÿÿÿéêÐ&@,Eÿÿ ÿêôÏ&?œÿÿÿêðÏ&@iÿÿÿéóÐ&0ƒBÿÿÿééÐ&ÎCÿÿÿéòÇ&@*×ÿÿÿéòÐ&@0ôÿÿÿæôÏ&EÿÿÿééÉ&,³<ÿÿÿèöÑ&E)ÆÿÿÿéôÐ&ATÿÿÿéõÐ&@‹ÿÿÿéôÐ&@™ÿÿÿéóÎ&AåÿÿÿéòÇ&ATÿÿÿêóÏ&E'ÿÿÿêòÌ&A)ÇÿÿÿèõÑ&e@ÿÿÿèòÎ&@)ÉÿÿÿêóÐ&@)ÈÿÿÿéõÇ&A1ÿÿÿéõÐ&A‹ÿÿÿè÷Ð&E /ÿÿÿçíÐ&E:ÿÿÿêñÏ&#d?ÿÿÿêôÇ&@!ÿÿ ÿêôÐ&#c&#b#dÿÿÿêôÐ&#b&#^#dÿÿÿéïÐ&@%ÿÿ ÿêòÑ&?ÿÿÿéïÏ&E)ÊÿÿÿéóÉ&$-AÿÿÿéôÇ&A)ËÿÿÿêòÑ&E)ÌÿÿÿéóÇ&E?ÿÿÿéñÈ&)EÿÿÿèòÏ&E+ÿÿÿéòÑ&E-ÿÿ ÿéøÏ&ÿ3ÿÿ ÿéñÉ&#,4ÿÿ ÿéöÏ&a3ÿÿ ÿèõÉ&T3ÿÿ ÿçòÏ&ª3ÿÿ ÿéõÏ&†4ÿÿÿéóÍ&65ÿÿ ÿéóÎ&73ÿÿ ÿéïÏ&#-4ÿÿ ÿæôÎ&4#.ÿÿ ÿèöÐ&4#/ÿÿ ÿèóÌ&3ÿÿ ÿéôÐ&Ô3ÿÿ ÿéôÐ&…3ÿÿ ÿèõÉ&R3ÿÿ ÿèóÐ&ç4ÿÿ ÿéóÎ�3ÿÿ ÿéõÉ&31ÿÿ ÿéøÐ&98ÿÿÿèöÏ&&5?ÿÿ ÿéòÏ&3#ºÿÿ ÿéóÏ3ÿÿ ÿéñÐ&3#2ÿÿ ÿéòÏ&#3ÿÿ ÿéôÐ3ÿÿ ÿéôÐ&/O3ÿÿÿèòÐ5ÿÿ ÿçóÏ&3#5ÿÿ ÿèóÏ&8#6ÿÿ ÿéðÉ8ÿÿ ÿéóÏ&8?ÿÿÿçôÎ&5?ÿÿ ÿéòÐ&8#8ÿÿ ÿçñÑ 8ÿÿ ÿè÷Ð&#:8ÿÿÿèòÑ&%&¸¹ÿÿÿéôÑ&%)Íÿÿ ÿéöÎ& ?ÿÿ ÿìõÏ&?ÿÿ ÿéòÏ&$¢ÿÿ ÿêóÏ&ë?ÿÿ ÿêóÏ&[ÿÿ ÿçòÏ&?ÿÿ ÿéôÏ&@ÿÿ ÿéòÏ&?ÿÿ ÿîóÏ&?ÿÿ ÿèöÎ& 8ÿÿ ÿèóÏ&ë?ÿÿ ÿéóÏ&?ÿÿ ÿêõÏ&?ÿÿÿéòÐ&?ÿÿ ÿéòÐ&,´ÿÿÿçòÐ&Âÿÿ ÿéôÏ&? ÿÿ ÿéòÏ&¯ÿÿ ÿçóÏ&L&ë?!ÿÿ ÿéòÏ&ÿÿ ÿéóÏ&nÿÿÿèóÐ&?"ÿÿ ÿîóÏ&?#ÿÿÿéòÐ&RÿÿÿèòÐ&?$ÿÿÿèòÐ&?%ÿÿÿçòÐ&ÿÿÿêòÐ&?&ÿÿ ÿèöÏ&ìëÿÿ ÿèõÐ&(^ÿÿ ÿèóÐ&"`ÿÿÿéòÐ&#«ÿÿ ÿçòÐ&"ÿÿ ÿçòÏ&?'ÿÿ ÿêòÐ&?(ÿÿ ÿéôÏ&?)ÿÿÿéòÐ&$¾&a?*ÿÿÿéòÐ&?+ÿÿÿæòÐ&$¾?,ÿÿÿçòÐ&?-ÿÿÿçóÐ&$¾?.ÿÿ ÿçòÐ&$¾$¿ÿÿÿçóÐ&?/ÿÿÿèòÐ&$¼?0ÿÿÿèòÐ&$¾?1ÿÿ ÿåòÐ&?2ÿÿÿèòÐ&$À$¼ÿÿ ÿæôÐ&$¾?3ÿÿ ÿçôÐ&$¼?4ÿÿÿèòÐ&$¼?5ÿÿÿèóÐ&$¼?6ÿÿÿéõÐ&$¼?7ÿÿÿèîÏ&"#ÿÿÿèîÏ&$&ÿÿÿèîÏ&&%ÿÿÿèîÏ&&'ÿÿÿèîÏ&"?8ÿÿÿèîÏ&!?9ÿÿÿìèÏ&T?:ÿÿÿèíÐ&.Ü?<ÿÿÿéóË&™?=ÿÿÿè÷Ë&$ #ÐÿÿÿéóÑ&$$ÿÿÿéïÏ&š™ÿÿ ÿéôÏ&Ž?>ÿÿ ÿéõÏ&Š??ÿÿ ÿéõÏ&Š‹ÿÿ ÿéôÑ&Œÿÿ ÿéôÏ&ŽÿÿÿéôÑ&Œÿÿ ÿéôÏ&Ž?@ÿÿ ÿéóÐ&+?Aÿÿ ÿè÷Ç&F&Esÿÿ ÿéóÐ&+?Bÿÿ ÿéóÐ&)+ÿÿ ÿéôÐ&*+ÿÿ ÿéóÐ&+?Cÿÿ ÿéóÐ&+?Dÿÿ ÿéóÐ&+?Eÿÿ ÿéóÐ&+?Fÿÿ ÿèôÑ&.Ý#üÿÿ ÿéóÐ&+?Gÿÿ ÿéóÐ&+?Hÿÿ ÿè÷Ñ&$?Iÿÿ ÿéõÐ&+?Jÿÿ ÿéóÐ&+?Kÿÿ ÿèöÊ&A?Lÿÿ ÿèôÐ&#ý?Mÿÿ ÿéìÐ&íÇÿÿ ÿéòÐ&íÿÿ ÿéóÐ&Oýÿÿ ÿéðÐ&)ä)åÿÿ ÿéõÐ&!E&!DOÿÿ ÿèõÐ&¹íÿÿ ÿéöÐ&Qaÿÿ ÿéõÐ&¬Oÿÿ ÿéóÐ&QÃÿÿ ÿéóÑ&)Î@ÿÿ ÿèôÐ&í&Üÿÿ ÿéôÐ&í)Ïÿÿ ÿéíÐ&í)Ðÿÿ ÿéóÐ&…Qÿÿ ÿéôÐ&¿Qÿÿ ÿéïÐ&Ožÿÿ ÿçöÐ&*Ííÿÿ ÿéóÐ&O.ÿÿ ÿèéÐ&O/ÿÿ ÿéòÐ&O)Ñÿÿ ÿèòÐ&¹Oÿÿ ÿéòÐ&Q,Fÿÿ ÿéðÐ&Ojÿÿ ÿéîÐ&O/qÿÿ ÿéñÐ&Oþÿÿ ÿéôÐ&†"–ÿÿÿçôÌ&)Ò0ÿÿ ÿéïÐ&)Óíÿÿ ÿéìÐ&Oÿÿ ÿéòÐ&)‰)åÿÿ ÿéóÐ&í%Kÿÿ ÿéòÐ&O0ôÿÿ ÿéóÐ&ûOÿÿ ÿéóÐ&O&!E/âÿÿ ÿæïÐ&í¸ÿÿ ÿéïÐ&)å#-ÿÿ ÿéîÐ&O!:ÿÿ ÿéõÐ&)å+¦ÿÿ ÿéóÐ&fíÿÿ ÿéôÐ&Oîÿÿ ÿéïÐ&OEÿÿ ÿèòÐ&O0Àÿÿ ÿéõÑ&Q‘ÿÿ ÿé÷Ð&SOÿÿ ÿèôÐ&)ÔQÿÿÿçòÍ&±&²ÿÿ ÿéôÐ&…Oÿÿ ÿéìÐ&†&æÿÿ ÿéðÐ&Oÿÿ ÿéòÐ&€Oÿÿ ÿèõÐ&Qíÿÿ ÿéóÐ&í(Ìÿÿ ÿéòÐ&íNÿÿ ÿé÷Ñ&Oçÿÿ ÿéòÐ&Y†ÿÿ ÿèóÐ&†&.è/Õÿÿ ÿéóÐ&Qdÿÿ ÿéóÐ&Qƒÿÿ ÿéöÐ&O)–ÿÿ ÿèìÑ&!XOÿÿ ÿèõÑ&Oeÿÿ ÿéõÐ&dOÿÿ ÿéôÐ&†Òÿÿ ÿéóÐ&O(Íÿÿ ÿèõÐ&ROÿÿ ÿéòÐ&O!5ÿÿ ÿé÷Ð&O-³ÿÿ ÿéòÐ&OÚÿÿ ÿè÷Ð&Qÿÿ ÿçôÏ&¸?Nÿÿ ÿéóÐ&WQÿÿÿçñÑ&.Þ)Òÿÿ ÿèïÐ&†& ?Oÿÿ ÿéòÐ&O)æÿÿ ÿéìÐ&îOÿÿ ÿéøÐ&O)çÿÿ ÿéòÐ&Q)èÿÿ ÿèòÐ&O+tÿÿ ÿéóÐ&O)éÿÿ ÿéóÑ&O#ÿÿ ÿéôÐ&O ÿÿ ÿéìÐ&OŒÿÿ ÿéòÐ&O,Gÿÿ ÿéõÐ&OHÿÿ ÿéóÐ&&ðQÿÿ ÿéôÐ&†ÿÿ ÿçöÐ&Qÿÿ ÿéìÐ&†!ÿÿ ÿéôÐ&O&ñÿÿ ÿéóÐ&Q)êÿÿ ÿéóÐ&O?Qÿÿ ÿéïÐ&¶Oÿÿ ÿéòÐ&Qaÿÿ ÿèõÐ&VOÿÿ ÿê÷Ï&.4ÿÿ ÿçòÏ&,Hÿÿ ÿéöÑ&Q ÿÿ ÿèõÐ&†·ÿÿ ÿè÷Ð&†?Rÿÿ ÿé÷Ò&OPÿÿ ÿéóÐ&Q"ÿÿ ÿèöÐ&†&/Ô/Õÿÿ ÿéîÐ&†/ºÿÿ ÿèõÐ&O"«ÿÿ ÿè÷Ñ&†.ßÿÿ ÿéðÐ&O }ÿÿ ÿéöÐ&†"\ÿÿ ÿéöÐ&Q#Gÿÿ ÿéöÐ&·Qÿÿ ÿéòÐ&Oÿÿ ÿéöÐ&QÛÿÿ ÿéñÐ&†#Åÿÿ ÿéóÐ&†&Žÿÿ ÿè÷Ï&%ý&"2ÿÿ ÿéôÏ&0uÿÿ ÿéòÐ&O!ÿÿ ÿèóÐ&† Ïÿÿ ÿéòÐ&Q".ÿÿ ÿé÷Ð&†!ÿÿ ÿéõÏ& ÿÿ ÿèíÏ&&Æ!ÿÿ ÿéôÐ&Q1ÿÿ ÿéôÐ&Q"™ÿÿ ÿéñÐ&O#2ÿÿ ÿéóÐ&Q(àÿÿ ÿéõÐ&-´&ù?Sÿÿ ÿéóÎ&ù&?Tÿÿ ÿéóÐ&+óOÿÿ ÿéîÐ&†$Wÿÿ ÿéóÐ&O(ßÿÿ ÿéóÐ&O$ÿÿ ÿéòÐ&$ò†ÿÿ ÿéòÐ&O$Bÿÿ ÿéòÐ&Q$Hÿÿ ÿèðÐ&†(Üÿÿ ÿéðÏ&ù&-µ?Uÿÿ ÿêòÏ&?VÿÿÿçòÐ&?Wÿÿ ÿéñÏ&úùÿÿ ÿçõÐ&õ&?Xÿÿ ÿéöÐ&†(Ýÿÿ ÿé÷Ð&$×&ù?Yÿÿ ÿéôÐ&†(Þÿÿ ÿèõÐ&!ÝOÿÿ ÿéóÐ&O$Øÿÿ ÿéîÐ&(×Qÿÿ ÿèóÐ&†3ÿÿ ÿéóÐ&$-†ÿÿ ÿèóÐ&O'ÿÿÿçóË&(Ø?Zÿÿ ÿêûÏ&H&?[ÿÿ ÿéóÐ&O(Ùÿÿ ÿéòÐ&(ÚQÿÿ ÿçóÑ&†(Ûÿÿ ÿéïÐ&¯OÿÿÿçôÑ&1 ÿÿ ÿéíÐ&ž†ÿÿ ÿéôÐ&(`Oÿÿ ÿéóÐ&†(Ôÿÿ ÿèõÏ&þÿÿ ÿéóÐ&†(Õÿÿ ÿèõÐ&)¾†ÿÿ ÿéóÒ&†ÿÿ ÿéóÐ&ýOÿÿ ÿéòÐ&†(Öÿÿ ÿèóÎ&ùüÿÿ ÿéôÐ&†ÿÿ ÿéòÐ&O(Óÿÿ ÿèóÐ&†#6ÿÿ ÿéõÐ&†(wÿÿ ÿéöÐ&†(ÒÿÿÿçòÑ&¿ÿÿ ÿéõÒ&Oïÿÿ ÿèòÐ&†(Ñÿÿ ÿéòÒ&!ÕQÿÿ ÿéøÐ&†(Ðÿÿ ÿéòÐ&O#8ÿÿ ÿéòÐ&O)ëÿÿ ÿé÷Ñ&†%{ÿÿ ÿçóÐ&)ì†ÿÿ ÿéòÏ&-¶ÿÿ ÿéõÐ&†(Ïÿÿ ÿéõÐ&ˆÿÿ ÿéóÑ&!&†?\ÿÿ ÿèóÐ&†?]ÿÿ ÿéóÐ&,K†ÿÿ ÿéóÑ&†6ÿÿ ÿéóÐ&†(Îÿÿ ÿéòÐ&†*kÿÿ ÿéõÏ&O:ÿÿ ÿéóÑ&@Bÿÿ ÿéóÐ&C…ÿÿ ÿçòÐ&C"ÿÿÿ ÿéñÏ&Cþÿÿ ÿéóÏ&COÿÿ ÿéòÏ&C(Ëÿÿ ÿéóÐ&D&F/âÿÿ ÿíóÐ&CûÿÿÿðôÑ&.Ï?^ÿÿ ÿéòÐ&C0ôÿÿ ÿïóÏ&C(Ìÿÿ ÿéòÏ&C0×ÿÿ ÿéòÏ&D€ÿÿ ÿêïÏ&DEÿÿ ÿèõÑ&DKÿÿ ÿèõÐ&CQÿÿ ÿéòÏ&NOÿÿ ÿíõÐ&LMÿÿ ÿêòÏ&CSÿÿ ÿèõÏ&CRÿÿ ÿéòÏ&JTÿÿ ÿêûÐ&I&HJÿÿ ÿðõÏ&DUÿÿ ÿñóÏ&CWÿÿ ÿéóÐ&J&/â?_ÿÿ ÿêóÏ&þJÿÿ ÿêóÏ&D(ÍÿÿÿðôÏ&ûúÿÿ ÿè÷Ð&Cÿÿ ÿéîÏ&û/·ÿÿ ÿéóÏ&D)éÿÿ ÿèõÏ&DVÿÿ ÿê÷Ï&ÿ.4ÿÿ ÿéôÐ&DÂÿÿ ÿëôÏ&D&ñÿÿ ÿéíÏ&D³ÿÿ ÿéìÏ&J1ÿÿ ÿçöÏ&Cÿÿ ÿìöÑ&D ÿÿ ÿêìÏ&DŒÿÿ ÿéòÐ&Caÿÿ ÿéôÏ&J!ÿÿ ÿéòÏ&C)èÿÿ ÿéòÏ&D!òÿÿ ÿèõÏ&D¯ÿÿ ÿìòÏ&D".ÿÿ ÿêòÏ&D!ÿÿ ÿè÷Ï&%ý&û"2ÿÿ ÿèóÐ&D Ïÿÿ ÿíòÏ&Dÿÿ ÿçíÐ&ÿ:ÿÿ ÿêôÏ&D!ÿÿ ÿíòÐ&œ0Wÿÿ ÿèôÏ&J&bcÿÿ ÿêîÏ&J$Xÿÿ ÿéóÏ&+óCÿÿ ÿéóÏ&D(ßÿÿ ÿéñÏ&ûúÿÿ ÿéóÏ&D$-ÿÿ ÿéïÏ&D¯ÿÿ ÿíôÑ&œ1 ÿÿ ÿéóÏ&D$Øÿÿ ÿíóÑ&œ,Nÿÿ ÿèòÑ&J!’ÿÿ ÿèóÏ&ûüÿÿ ÿéóÐ&Dýÿÿ ÿéôÏ&Jÿÿ ÿéóÒ&Dÿÿ ÿïòÐ&D#8ÿÿÿëòÑ&k(ÿÿ ÿçôÒ&ðñÿÿ ÿéòÐ&ÿÿÿÿéîÐ&ÿÿ ÿèòÊ&A?`ÿÿ ÿéòÒ&Ê-·ÿÿ ÿéòÏ&Äÿÿ ÿéòÏ&,ÿÿ ÿéóÐ&ÿÿ ÿéòÏ&)íÿÿ ÿé÷Æ&T?aÿÿÿéîÏ&*%ÿÿ ÿèòÐ&+öóÿÿÿèôÒ&hgÿÿ ÿèòÏ& Æÿÿ ÿèòÒ&)†ÿÿ ÿéòÏ&)îÿÿ ÿéòÏ&˜ÿÿ ÿéòÏ&+ôÿÿ ÿçòÏ&)Œÿÿ ÿéòÏ&nÿÿ ÿéòÏ&uÿÿ ÿéòÏ&+n+õÿÿÿéòÏ&+itÿÿ ÿéòÏ&+÷ÿÿ ÿéòÏ&r+iÿÿ ÿéòÏ&qÿÿ ÿèóÊ&A&RSÿÿ ÿéòÏ&‡ÿÿÿéòÏ&+i0©ÿÿ ÿçñÐ&'q+ýÿÿÿéòÏ&cÿÿ ÿéòÏ&+i+øÿÿÿëòÑ&klÿÿ ÿéòÏ&kÿÿÿèòÐ&+ùÿÿ ÿéòÏ&‹ÿÿ ÿçñÑ&,M+ýÿÿÿéòÏ&tÿÿ ÿéòÏ&+úÿÿÿéòÏ&nÿÿ ÿéòÏ&ïÿÿ ÿéôÏ&þ?bÿÿ ÿéòÏ&+ûÿÿ ÿèòÏ&+ÿ+nÿÿ ÿçôÐ&+ü+ýÿÿÿéòÏ&+jÿÿ ÿéòÏ&+kÿÿÿéòÏ&+i,ÿÿÿéóÐ&{ÿÿÿèòÑ&+þgÿÿÿéòÐ&§ÿÿ ÿéòÏ&ü+iÿÿÿèòÐ&óËÿÿ ÿéòÏ&nÿÿ ÿéòÏ&-»ÿÿ ÿèòÏ&+i0Áÿÿ ÿéòÏ&,ÿÿ ÿèïÏ& ?cÿÿÿéòÏ&ÿÿ ÿèòÐ&ó&.ô?dÿÿ ÿèñÐ&P?eÿÿ ÿèòÐ&Úÿÿ ÿéòÐ&‘ÿÿ ÿèñÏ&P?fÿÿ ÿéòÏ&¬ÿÿÿèòÐ&,&ó?gÿÿ ÿéòÑ&ÿÿ ÿéòÏ&2+iÿÿÿéòÐ&†ÿÿ ÿéôÏ&ö&,/ÿÿ ÿéòÏ&0žÿÿ ÿéòÐ& âÿÿ ÿèòÐ&ó?hÿÿ ÿê÷Ð&+p+nÿÿÿèòÐ&ó/ÿÿÿéòÏ&,OÿÿÿéòÏ&+i+lÿÿ ÿéòÏ&9ÿÿÿéòÏ&+mÿÿ ÿéòÐ&+o+nÿÿÿéòÏ&Uÿÿ ÿèòÑ&)Uóÿÿ ÿéòÏ&+i-ÿÿ ÿéòÏ&Æÿÿ ÿéòÏ&+i/´ÿÿ ÿéòÏ&+i§ÿÿ ÿèòÐ&ó+qÿÿ ÿèòÐ&òóÿÿÿæòÐ&,(zÿÿ ÿèóÑ&OPÿÿ ÿéòÏ&&@+iÿÿ ÿèòÐ&ó/|ÿÿ ÿèòÐ&+i’ÿÿ ÿéòÐ&+eÿÿ ÿèòÐ&+ÿÿ ÿéôÏ&þ?iÿÿ ÿèòÐ&+fóÿÿ ÿéòÏ& ^+iÿÿÿèôÏ&+gþÿÿ ÿéòÐ&+hÿÿ ÿèòÐ&ó9ÿÿÿéòÏ&'²+iÿÿÿéòÏ&+r+iÿÿÿèòÐ&,óÿÿ ÿèòÐ&ó ÿÿ ÿèòÐ&ó,Pÿÿ ÿèòÐ&,óÿÿ ÿèòÐ&ó*ÿÿ ÿèïÏ& ,Iÿÿ ÿèôÏ&+sþÿÿ ÿéóÐ&)+nÿÿ ÿèòÐ& Üóÿÿ ÿèòÏ&¸&¹+nÿÿ ÿèòÏ&+n+tÿÿÿéòÏ&b+iÿÿ ÿèòÐ&, óÿÿ ÿéòÐ&„+iÿÿ ÿèòÐ&, óÿÿ ÿéòÏ&, ÿÿ ÿéòÏ&ÿÿÿèòÐ&óâÿÿÿéòÑ&+i+ÿÿ ÿèòÐ&sóÿÿ ÿèòÐ&ó½ÿÿÿçòÐ&ó, ÿÿÿéòÏ&+i?jÿÿÿéôÏ&þ?kÿÿ ÿéóÏ& »& ¼ ½ÿÿ ÿèòÐ&#Lóÿÿ ÿèïÏ& ?lÿÿ ÿçöÏ&t?mÿÿÿéóÏ& ½?nÿÿÿèòÐ&!óÿÿ ÿèòÐ&ózÿÿÿèòÐ&ó#Ôÿÿ ÿèòÐ&ó?oÿÿÿèòÐ&ó"ÿÿ ÿèòÐ&-¸óÿÿ ÿèòÐ&ó?pÿÿÿèòÐ&ó#ÄÿÿÿèòÐ&$·óÿÿ ÿèòÐ&"ªóÿÿÿèòÐ&ó"Áÿÿ ÿèòÐ&ó! ÿÿ ÿèïÏ& ?qÿÿ ÿèòÐ&ó!ãÿÿ ÿèòÐ&"êóÿÿ ÿèòÏ&$µ&$¶Pÿÿ ÿéòÏ&"?+iÿÿÿéòÏ&"aÿÿ ÿèòÐ&"bóÿÿ ÿèòÑ&"'?rÿÿ ÿèñÐ&$£&$¤Pÿÿ ÿèòÐ&$´óÿÿ ÿèòÏ&.à&$æ?tÿÿ ÿèòÐ&$°óÿÿ ÿèòÑ&ó%¯ÿÿ ÿéñÑ&$"ÿÿÿèòÑ&ó$±ÿÿ ÿèôÏ&þ$²ÿÿÿèòÐ&ó$³ÿÿ ÿèòÐ&/Góÿÿ ÿéòÏ&3+iÿÿÿèòÑ&ó+uÿÿ ÿéóÏ&¥?uÿÿ ÿèïÑ& ?vÿÿ ÿèòÐ&ó$MÿÿÿèòÐ&ó+”ÿÿÿèòÐ&$ûóÿÿ ÿèòÑ&ó,Qÿÿ ÿèòÐ&$óÿÿÿèòÐ&,Róÿÿ ÿèöÏ&˜?wÿÿ ÿèõÏ&$æ$åÿÿÿèòÐ&$ óÿÿ ÿèòÐ&ó?xÿÿ ÿéòÏ&+v+nÿÿ ÿéòÐ&+i.áÿÿ ÿèòÐ&ó?yÿÿ ÿéòÏ&+i+wÿÿ ÿèòÐ&ó?zÿÿÿèòÐ&ó?{ÿÿ ÿèòÐ&ó)Zÿÿ ÿèòÐ&,Sóÿÿ ÿèñÓ&P?|ÿÿ ÿèñÍ& ,`ÿÿÿèòÐ&ópÿÿ ÿèòÐ& ?}ÿÿ ÿèöÐ& 0ÿÿ ÿçòÐ&ó+xÿÿÿèñÓ&+}ÿÿ ÿèòÐ&ó+|ÿÿ ÿèòÐ&ó+{ÿÿÿèòÐ&óoÿÿ ÿæñÑ&0\(zÿÿ ÿèòÐ&,Tóÿÿ ÿèóÊ&A&¬?~ÿÿ ÿèòÐ&ó+yÿÿ ÿéòÏ&+i%-ÿÿ ÿèñÓ& ?ÿÿÿéòÏ&+i+~ÿÿ ÿèòÐ&ó+zÿÿ ÿèôÔ&Ÿ ÿÿÿéñÑ&+ÿÿ ÿçòÐ&ó+€ÿÿ ÿèòÐ&ó*ÔÿÿÿéñÑ&+ÿÿ ÿéñÑ&+‚ÿÿ ÿèõÏ& ?€ÿÿ ÿèñÓ&B&A ÿÿÿéôÏ&þ&ý?ÿÿÿéôÏ&þ&ý?‚ÿÿ ÿèñÑ&ÿÿÿ ÿèòÐ&,Uóÿÿ ÿèòÐ&ó+ƒÿÿ ÿéñÑ&!Ùÿÿ ÿèòÓ&«¬ÿÿ ÿèõÒ&‡ ÿÿ ÿéóÐ&+†&÷?ƒÿÿ ÿèïÑ& ,VÿÿÿèòÐ&+‡óÿÿ ÿæòÑ&(z.ÿÿ ÿèòÐ&ó+„ÿÿ ÿåöÓ&,W?„ÿÿ ÿèóÏ& ½&.ô?…ÿÿ ÿèôÏ&,X$æÿÿÿæõÒ&+…?†ÿÿ ÿèòÐ&ó+ˆÿÿ ÿéôÏ&þ?‡ÿÿ ÿèòÐ&%±óÿÿ ÿèñÍ&"'?ˆÿÿ ÿèòÐ&ó+‰ÿÿÿéôÏ&þ+Òÿÿ ÿèòÐ&ó+ŠÿÿÿéñÑ&+‹ÿÿ ÿèôÑ&"'?‰ÿÿÿæ÷Ï&+…,Yÿÿ ÿéôÏ&þ%pÿÿ ÿèöÏ&%g$æÿÿ ÿéñÑ&+ŒÿÿÿçöÐ&++¨ÿÿÿèòÐ&ó+Žÿÿ ÿéñÑ&,Zÿÿ ÿèòÐ&ó~ÿÿÿéôÏ&þ+ÿÿ ÿæñÏ&,[(zÿÿ ÿéîÐ&ÿfÿÿ ÿèîÑ&ÿÿÿçóÒ&ÿÿÿèîÑ&*%ÿÿÿêïÏ&·ÿÿ ÿéíÏ&‡sÿÿ ÿéîÏ&qfÿÿ ÿéîÏ&frÿÿÿêîÏ&+ÿÿÿèñÑ&,\*ìÿÿÿèïÏ&*{ÿÿÿéîÏ&+jÿÿÿêïÏ&nÿÿÿéîÏ&ftÿÿ ÿèôÔ&,]+“ÿÿÿéòÏ&lmÿÿÿéìÑ&+’?‹ÿÿÿéõÏ&D?ŒÿÿÿêïÏ&Ëÿÿ ÿéîÏ&fnÿÿ ÿéðÏ& & í?ÿÿ ÿêïÐ&‘ÿÿÿèïÏ&+“õÿÿ ÿèïÏ&&.ô?ŽÿÿÿêïÏ&+mÿÿÿéðÏ& !ÿÿÿéïÏ&+lÿÿ ÿéïÏ&&@ÿÿ ÿéïÏ&ò/}ÿÿ ÿéïÏ&~ÿÿÿéíÏ&ÿÿ ÿéñÑ&*ì+qÿÿ ÿéïÏ&/|/}ÿÿÿêïÏ&+rÿÿ ÿéïÐ&,"ÿÿ ÿêïÏ&+fÿÿ ÿéïÐ&+hÿÿÿèíÏ&+gÿÿÿéïÑ&+ÿÿ ÿéðÏ& ?ÿÿ ÿêïÏ&zÿÿ ÿéïÏ&4ÿÿÿèíÐ&!ÿÿ ÿéíÏ&!ÿÿ ÿéòÐ&D&01ÿÿÿêïÏ&+”ÿÿÿêïÑ&+uÿÿ ÿèïÐ&$°ÿÿ ÿéíÏ&,^ÿÿ ÿéíÐ&,#ÿÿ ÿéíÏ&Šÿÿ ÿéíÐ&‰ÿÿ ÿéíÏ&*íÿÿÿéñÓ&C&ADÿÿ ÿéñÑ&*ì!Ùÿÿ ÿéôÒ&ˆDÿÿ ÿéðÑ&$?ÿÿ ÿéõÐ&!Ø!×ÿÿ ÿéíÏ&~ÿÿÿéõÐ&tuÿÿÿé÷Ð&vtÿÿ ÿéòÏ&##ÿÿ ÿéõÑ&#+•ÿÿ ÿîóÏ& ù?‘ÿÿ ÿéòÏ&##ÿÿ ÿçïÒ&=¼ÿÿ ÿêòÑ&‡?“ÿÿ ÿçóÒ&¼½ÿÿ ÿçñÒ&‰ˆÿÿ ÿçòÒ&Š?”ÿÿ ÿçðÒ&+–?•ÿÿ ÿçóÒ&+–?–ÿÿ ÿçõÊ&èéÿÿ ÿçõÏ&†Œÿÿ ÿçôÒ&‹Šÿÿ ÿçïÒ&ëêÿÿ ÿçòÒ&ê?—ÿÿ ÿåïÒ&ê?˜ÿÿ ÿçõÒ&Š?™ÿÿ ÿèôÑ&+—+˜ÿÿ ÿçõÎ&é?šÿÿ ÿçòÒ&ê?›ÿÿ ÿçïÒ&ê?œÿÿ ÿçõÌ&Œ?ÿÿ ÿçõÒ&ê?žÿÿ ÿçôÒ&ê?Ÿÿÿ ÿçóÒ&ê? ÿÿ ÿçóÒ&$êÿÿ ÿçôÒ&ê?¡ÿÿ ÿéôÐ&%‹ÿÿÿéôÓ&$é?¢ÿÿ ÿäóÒ&%|$êÿÿ ÿæöÔ&"U&"S"Tÿÿ ÿéóÏ&ÂÃÿÿ ÿèõÐ&ô&¿¾ÿÿ ÿèõÏ&ôÀÿÿ ÿèñÏ&Áôÿÿ ÿèóÑ&õôÿÿ ÿèòÏ&ô"Vÿÿ ÿèôÏ&ÛÜÿÿ ÿèïÏ&Ü ÿÿ ÿèóÏ&ÜÝÿÿ ÿèðÑ&Ü"Qÿÿ ÿéóÐ&"O"Pÿÿ ÿèõÐ&"NÀÿÿ ÿèïÏ&  ÿÿ ÿèóÏ& Ýÿÿ ÿèõÐ&Ç&FGÿÿ ÿéõÐ&Ç?£ÿÿ ÿéõÐ&Ç?¤ÿÿ ÿéõÑ&$?¥ÿÿ ÿéõÑ&$?¦ÿÿ ÿéõÑ&$?§ÿÿ ÿæòÑ&$?¨ÿÿ ÿéóÏ&+™+šÿÿÿèëÑ&+?«ÿÿ ÿçòÑ&,V?¬ÿÿ ÿéòÐ&+œ)‰ÿÿ ÿéðÑ&"Q+›ÿÿ ÿêóÏ&)ˆöÿÿ ÿèöÑ&ö)‡ÿÿ ÿéõÏ&o%1ÿÿ ÿéöÈ&o?®ÿÿ ÿèôÐ&]öÿÿ ÿèõÎ&t?¯ÿÿ ÿèñÏ&o)ŠÿÿÿæòÒ&-¼)‹ÿÿ ÿêïÏ&*oÿÿ ÿéñÐ&*& 2?°ÿÿ ÿéóÏ&Ooÿÿ ÿèïÏ&oÿÿ ÿéóÏ&foÿÿ ÿèõÑ& 0eÿÿ ÿêùÏ& 2 3ÿÿÿéòÐ&caÿÿÿéöÏ&+ cÿÿ ÿéòÏ&,J+žÿÿÿéòÏ&,_+žÿÿ ÿèöÏ&!Ûoÿÿÿé÷Ò&cPÿÿ ÿêòÈ& 1 0ÿÿÿèôÏ&!ïcÿÿ ÿêòÎ& 0!Üÿÿ ÿéóÑ&!Ú 0ÿÿ ÿèóÏ& 0+Ÿÿÿ ÿèõÐ& 2!ÝÿÿÿéòÍ&+¡,`ÿÿ ÿèõÐ&ù&?±ÿÿÿéóÐ&*’cÿÿÿéóÏ&cÿÿ ÿéôÏ&1*”ÿÿ ÿçòÐ&1*“ÿÿ ÿéóÐ&10ÿÿ ÿéõË& ó ôÿÿÿéõÏ&+ñ& ô?µÿÿÿéøÐ&+òýÿÿ ÿêôÈ&+¢+£ÿÿ ÿéøÐ&,LýÿÿÿéøÑ&ýüÿÿÿéöË&þ&ÿ?¶ÿÿ ÿéöÐ&.ÿÿÿëõË& ö õÿÿÿéøÌ&+¤?·ÿÿÿèíÈ&('ÿÿ ÿèðÌ&#$ÿÿ ÿèëÐ&%&ÿÿÿèôÑ&]Xÿÿ ÿêõÐ&ZYÿÿÿèôÐ&-¾Uÿÿ ÿèôÑ&]?¸ÿÿÿèôÑ&]0Xÿÿ ÿèóÒ&-½[ÿÿ ÿéôÒ&[?¹ÿÿ ÿèóÒ&"‰[ÿÿ ÿìóÒ&[\ÿÿÿéôÌ&÷*”ÿÿÿèôÐ&]÷ÿÿÿéõÍ&÷+¥ÿÿÿçòÐ&÷"ÿÿÿÿéõÏ&÷+¦ÿÿÿéìÐ&÷2ÿÿÿéóÎ&÷%LÿÿÿéîÌ&÷!:ÿÿÿéíÏ&÷øÿÿÿçóÐ&!9!8ÿÿÿèöÌ&÷!7ÿÿÿéòÌ&÷!5ÿÿÿéðÍ&nðÿÿÿéóÏ&÷!6ÿÿÿéôÌ&÷!!ÿÿÿéôÍ&n!4ÿÿÿéñÍ&n#ÃÿÿÿéóÏ&lnÿÿÿçõÐ&"l$çÿÿÿçôÐ&*³nÿÿÿçôÐ&"l*´ÿÿÿéôÌ&÷$üÿÿ ÿéøÐ&,àÿÿ ÿéòÐ&43ÿÿ ÿéõÐ&,+ÿÿ ÿéìÐ&,2ÿÿ ÿé÷Ð&,1ÿÿ ÿèðÐ&,0ÿÿ ÿéõÐ&,"kÿÿ ÿéôÐ&,/ÿÿ ÿèôÐ&+.ÿÿ ÿçôÐ&-,ÿÿ ÿéôÐ&+*ÿÿ ÿéòÒ&º?ºÿÿ ÿéòÒ&º?»ÿÿ ÿëóÒ&Œ&º?¼ÿÿ ÿçôÒ&º?½ÿÿ ÿæóÒ&º?¾ÿÿ ÿèöÐ&?¿ÿÿ ÿèöÐ&Á?ÀÿÿÿéñÏ&úùÿÿÿéõÐ&NùÿÿÿéñÏ&N'•ÿÿÿéóÏ&'—NÿÿÿèõÏ&«Nÿÿ ÿéóÑ&õOÿÿ ÿéóÏ&'–Oÿÿ ÿéùÏ&POÿÿ ÿéòÐ&0õOÿÿÿéòÏ&&·NÿÿÿéîÏ&N'˜ÿÿ ÿèðÏ&!ÌOÿÿÿçõÏ&eNÿÿ ÿçõÐ&feÿÿÿéìÐ&2Nÿÿ ÿëõÒ&õôÿÿÿç÷Ð&)NÿÿÿéõÏ&Nÿÿ ÿçóÏ& !ÿÿ ÿéòÏ&'™Oÿÿ ÿéðÏ&åOÿÿ ÿéòÏ&O!5ÿÿ ÿéóÐ&O'šÿÿ ÿçöÏ& aÿÿ ÿéõÏ&*Oÿÿ ÿèôÏ&ÿÿÿ ÿéðÏ&-¿Oÿÿ ÿèõÏ&!éOÿÿ ÿéïÏ& ~Oÿÿ ÿéóÏ&O"Ôÿÿ ÿéôÏ&O#Üÿÿ ÿéôÏ&$NOÿÿ ÿéòÓ&##ÿÿ ÿéðÏ&+§ÿÿ ÿèóÏ&+Ÿÿÿ ÿêóÏ&*?Áÿÿ ÿéóÐ&*?Âÿÿ ÿéñÏ&+Ýúÿÿ ÿéîÎ&R*ÿÿ ÿèöÐ&dgÿÿ ÿéóÐ&ûRÿÿ ÿèðÎ&!ÌRÿÿ ÿéùÎ&PRÿÿ ÿèôÎ&QRÿÿ ÿéòÎ&R!5ÿÿ ÿéòÎ&R'™ÿÿ ÿéðÎ&R-¿ÿÿ ÿéòÐ&g#Ýÿÿ ÿéóÐ&rÇÿÿ ÿéöÐ&¯-Àÿÿ ÿé÷Ò&s7ÿÿ ÿç÷Ò&¸sÿÿ ÿë÷Ô&ì+©ÿÿÿêöÐ&+¨?ÃÿÿÿçóÏ&@?ÿÿÿèóÑ&íAÿÿÿéöÐ&û<ÿÿ ÿéóÑ&+ª+«ÿÿ ÿéóÏ&#Ö#Õÿÿ ÿéòÑ& Ï+«ÿÿÿëöÎ&˜UÿÿÿëõÎ&®&\ xÿÿÿëõÎ&®&[ ›ÿÿÿéõÎ&®&[ °ÿÿÿðöÎ&£&X »ÿÿÿéõÎ&®&[ ÚÿÿÿçõÎ&¹&a ïÿÿÿìõÎ&®&[ ÿÿÿíõÎ&®&[ ÿÿÿëõÎ&¹&a .ÿÿÿíõÎ&¹&a CÿÿÿñõÎ&¹&a XÿÿÿìõÎ&¹&a mÿÿÿíõÎ&¹&a ‚ÿÿÿíõÎ&¹&a —ÿÿÿëõÎ&¹&a ¬ÿÿÿïõÎ&®&[ ÁÿÿÿîõÎ&®&[ ÖÿÿÿêõÎ&¹&a ëÿÿÿèöÎ&®&^ ÿÿÿéõÎ&®&[ ÿÿÿçöÎ&®&^ *ÿÿÿçõÎ&®&[ 1ÿÿÿçõÎ&¹&[ TÿÿÿëõÎ&®&[ iÿÿÿìõÎ&¹&a ~ÿÿÿíõÎ&®&[ “ÿÿÿçõÎ&¹&[ ¨ÿÿ ÿëÐÎ&šdÿÿ ÿëÐÎ&°&j ˆÿÿ ÿëÐÎ&°&j ÿÿ ÿéìÎ&°&j ²ÿÿ ÿíÚÎ&¥&g Çÿÿ ÿéãÎ&°&j Üÿÿ ÿçßÎ&»&p ñÿÿ ÿìÕÎ&°&j ÿÿ ÿíÕÎ&»&p ÿÿ ÿëÐÎ&»&p 0ÿÿ ÿíÐÎ&»&p Eÿÿ ÿìÐÎ&»&p Zÿÿ ÿìéÎ&»&p oÿÿ ÿíÔÎ&»&p „ÿÿ ÿíÕÎ&»&p ™ÿÿ ÿëÛÎ&»&p ®ÿÿ ÿïÐÎ&°&j Ãÿÿ ÿîÐÎ&°&j Øÿÿ ÿêìÎ&»&p íÿÿ ÿèåÎ&°&m ÿÿ ÿééÎ&°&j ÿÿ ÿçÔÎ&°&m ,ÿÿ ÿçÞÎ&°&j Aÿÿ ÿçÞÎ&»&j Vÿÿ ÿëÐÎ&°&j kÿÿ ÿìÕÎ&»&p €ÿÿ ÿíØÎ&°&j •ÿÿ ÿçÜÎ&»&j ªÿÿÿëöÎ&˜sÿÿÿëöÎ&®&y †ÿÿÿëöÎ&®&y ›ÿÿÿéöÎ&®&y °ÿÿÿíöÎ&£&v ÅÿÿÿéöÎ&®&y ÚÿÿÿçöÎ&¹& ïÿÿÿìöÎ&®&y ÿÿÿíöÎ&¹& ÿÿÿëöÎ&¹& .ÿÿÿíöÎ&¹& CÿÿÿñöÎ&¹& XÿÿÿìöÎ&¹& mÿÿÿíöÎ&¹& ‚ÿÿÿíöÎ&¹& —ÿÿÿëöÎ&¹& ¬ÿÿÿïöÎ&®&y ÁÿÿÿîöÎ&®&y ÖÿÿÿêöÎ&¹& ëÿÿÿèöÎ&®&| ÿÿÿéöÎ&®&y ÿÿÿçöÎ&®&| *ÿÿÿçöÎ&®&y ?ÿÿÿçöÎ&¹&y TÿÿÿëöÎ&®&y iÿÿÿìöÎ&¹& ~ÿÿÿíöÎ&®&y “ÿÿÿçöÎ&¹&y ¨ÿÿ ÿëÐÎ&š‚ÿÿ ÿëÐÎ&°&ˆ ˆÿÿ ÿëÐÎ&°&ˆ ÿÿ ÿéìÎ&°&ˆ ²ÿÿ ÿíÚÎ&¥&… Çÿÿ ÿéãÎ&°&ˆ Üÿÿ ÿçßÎ&»&Ž ñÿÿ ÿìÕÎ&°&ˆ ÿÿ ÿíÕÎ&»&Ž ÿÿ ÿëÐÎ&»&Ž 0ÿÿ ÿíÐÎ&»&Ž Eÿÿ ÿìÐÎ&»&Ž Zÿÿ ÿìéÎ&»&Ž oÿÿ ÿíÔÎ&»&Ž „ÿÿ ÿíÕÎ&»&Ž ™ÿÿ ÿëÛÎ&»&Ž ®ÿÿ ÿïÐÎ&°&ˆ Ãÿÿ ÿîÐÎ&°&ˆ Øÿÿ ÿêìÎ&»&Ž íÿÿ ÿèåÎ&°&‹ ÿÿ ÿééÎ&°&ˆ ÿÿ ÿçÔÎ&°&‹ ,ÿÿ ÿçÞÎ&°&ˆ Aÿÿ ÿçÞÎ&»&ˆ Vÿÿ ÿëÐÎ&°&ˆ kÿÿ ÿìÕÎ&»&Ž €ÿÿ ÿíØÎ&°&ˆ •ÿÿ ÿçÜÎ&»&ˆ ªÿÿ ÿëÐÎ&™‘ÿÿ ÿëÐÎ&¯&¤ ‡ÿÿ ÿëÐÎ&¯&¤ œÿÿ ÿéìÎ&¯&¤ ±ÿÿÿðÕÎ&›& ¸£ÿÿ ÿéãÎ&¯&¤ Ûÿÿ ÿçßÎ&º&® ðÿÿ ÿìÕÎ&¯&¤ ÿÿ ÿíÕÎ& &¯¤ÿÿ ÿëÐÎ&º&® /ÿÿ ÿíÐÎ&º&® Dÿÿ ÿìÐÎ&º&® Yÿÿ ÿìéÎ&º&® nÿÿ ÿíÔÎ&º&® ƒÿÿ ÿíÕÎ&º&® ˜ÿÿ ÿëÛÎ&º&® ­ÿÿ ÿïÐÎ&¯&¤ Âÿÿ ÿîÐÎ&¯&¤ ×ÿÿ ÿêìÎ&º&® ìÿÿ ÿèãÎ&¸& ó¤ÿÿ ÿééÎ&¯&¤ ÿÿ ÿçÔÎ&¯&¸ +ÿÿ ÿçÞÎ&¯&¤ @ÿÿ ÿçÞÎ&º&® Uÿÿ ÿëÐÎ&¯&¤ jÿÿ ÿìÕÎ&º&® ÿÿ ÿíØÎ&¯&¤ ”ÿÿ ÿçÖÎ&º&® ©ÿÿ ÿëÐÎ&šÂÿÿ ÿëÐÎ&°&Ô ˆÿÿ ÿëÐÎ&°&Ô ÿÿ ÿéìÎ&°&Ô ²ÿÿ ÿíÚÎ&¥&Ê Çÿÿ ÿéãÎ&°&Ô Üÿÿ ÿçßÎ&»&Þ ñÿÿ ÿìÕÎ&°&Ô ÿÿ ÿíÕÎ&»&Þ ÿÿ ÿëÐÎ&»&Þ 0ÿÿ ÿíÐÎ&»&Þ Eÿÿ ÿìÐÎ&»&Þ Zÿÿ ÿìéÎ&»&Þ oÿÿ ÿíÔÎ&»&Þ „ÿÿ ÿíÕÎ&»&Þ ™ÿÿ ÿëÛÎ&»&Þ ®ÿÿ ÿïÐÎ&°&Ô Ãÿÿ ÿîÐÎ&°&Ô Øÿÿ ÿêìÎ&»&Þ íÿÿ ÿèåÎ&°&è ÿÿ ÿééÎ&Ý&° ÿÿ ÿçÔÎ&°&è ,ÿÿ ÿçÞÎ&°&Ô Aÿÿ ÿçÞÎ&»&Þ Vÿÿ ÿëÐÎ&°&Ô kÿÿ ÿìÕÎ&»&Þ €ÿÿ ÿíØÎ&°&Ô •ÿÿ ÿçÜÎ&»&Þ ªÿÿ ÿëÐÎ&™òÿÿ ÿëÐÎ&¯& ‡ ÿÿ ÿëÐÎ&¯&  œÿÿ ÿéìÎ&¯&  ±ÿÿ ÿðÕÎ&ü& ¸¤ÿÿ ÿéãÎ&¯&  Ûÿÿ ÿçßÎ&º&  ðÿÿ ÿìÕÎ&¯&  ÿÿ ÿíÕÎ&¯&  ÿÿ ÿëÐÎ&º&  /ÿÿ ÿíÐÎ&º&  Dÿÿ ÿìÐÎ&º&  Yÿÿ ÿìéÎ&º&  nÿÿ ÿíÔÎ&º&  ƒÿÿ ÿíÕÎ&º&  ˜ÿÿ ÿëÛÎ&º&  ­ÿÿ ÿïÐÎ&¯&  Âÿÿ ÿîÐÎ&¯&  ×ÿÿ ÿêìÎ&º&  ìÿÿ ÿèäÎ&¯&  ÿÿ ÿééÎ&¯&  ÿÿ ÿçÔÎ& &¯ +ÿÿ ÿçÞÎ&¯&  @ÿÿ ÿçÞÎ&º&  Uÿÿ ÿëÐÎ&¯&  jÿÿ ÿìÕÎ&º&  ÿÿ ÿíØÎ&¯&  ”ÿÿ ÿçÖÎ&º&  ©ÿÿ ÿëÐÎ&š !ÿÿ ÿëÐÎ&°& 5 ˆÿÿ ÿëÐÎ&°& 5 ÿÿ ÿéìÎ&°& 5 ²ÿÿ ÿíÚÎ&¥& + Çÿÿ ÿéãÎ&°& 5 Üÿÿ ÿçßÎ&»& ? ñÿÿ ÿìÕÎ&°& 5 ÿÿ ÿíÕÎ&»& ? ÿÿ ÿëÐÎ&»& ? 0ÿÿ ÿíÐÎ&»& ? Eÿÿ ÿìÐÎ&»& ? Zÿÿ ÿìéÎ&»& ? oÿÿ ÿíÔÎ&»& ? „ÿÿ ÿíÕÎ&»& ? ™ÿÿ ÿëÛÎ&»& ? ®ÿÿ ÿïÐÎ&°& 5 Ãÿÿ ÿîÐÎ&°& 5 Øÿÿ ÿêìÎ&»& ? íÿÿ ÿèåÎ&°& I ÿÿ ÿééÎ&°& 5 ÿÿ ÿçÔÎ&°& I ,ÿÿ ÿçÞÎ&°& 5 Aÿÿ ÿçÞÎ&»& ? Vÿÿ ÿëÐÎ&°& 5 kÿÿ ÿìÕÎ&»& ? €ÿÿ ÿíØÎ&°& 5 •ÿÿ ÿçÜÎ&»& ? ªÿÿ ê½&› SÿÿÿëêÉ&±& d ‰ÿÿÿëêÉ&±& d žÿÿÿéêÉ&±& d ³ÿÿÿíêÉ&¦& [ ÈÿÿÿéêÉ&±& d ÝÿÿÿçêÉ&¼& n òÿÿÿíêÉ&±& d ÿÿÿíêÉ&¼& n ÿÿÿìêÉ&¼& n 1ÿÿÿíêÉ&¼& n FÿÿÿíêÉ&¼& n [ÿÿÿìêÉ&¼& n pÿÿÿìêÉ&¼& n …ÿÿÿíêÉ&¼& n šÿÿÿëêÉ&¼& n ¯ÿÿÿïêÉ&±& d ÄÿÿÿîêÉ&±& d ÙÿÿÿêìÉ&¼& n îÿÿÿèêÉ& õ& d¼ÿÿÿéêÉ&±& d ÿÿÿçêÉ&¼& d -ÿÿÿçêÉ&±& d BÿÿÿçêÉ&¼& n WÿÿÿëêÉ&±& d lÿÿÿìêÉ&¼& n ÿÿÿíêÉ&±& d –ÿÿÿçêÉ&¼& n «ÿÿÿëöÎ& ÿÿÿëöÎ&³& • ŠÿÿÿëöÎ&³& • ŸÿÿÿêöÎ&³& • ´ÿÿÿðöÎ& ‹&¨ »ÿÿÿéöÎ&³& • ÞÿÿÿçöÎ&¾& Ÿ óÿÿÿìöÎ&³& • ÿÿÿíöÎ&¾& Ÿ ÿÿÿëöÎ&¾& Ÿ 2ÿÿÿîöÎ&¾& Ÿ GÿÿÿîöÎ&¾& Ÿ \ÿÿÿìöÎ&¾& Ÿ qÿÿÿíöÎ&¾& Ÿ †ÿÿÿíöÎ&¾& Ÿ ›ÿÿÿéöÎ&¾& Ÿ °ÿÿÿïöÎ&³& • ÅÿÿÿîöÎ&³& • ÚÿÿÿêöÎ&¾& Ÿ ïÿÿÿçöÎ&³& © ÿÿÿéöÎ&³& • ÿÿÿçöÎ&³& © .ÿÿÿçöÎ&³& • CÿÿÿçöÎ&¾& Ÿ XÿÿÿëöÎ&³& • mÿÿÿìöÎ&¾& Ÿ ‚ÿÿÿíöÎ&³& • —ÿÿÿçöÎ&¾& Ÿ ¬ÿÿÿëÐÎ&Ÿ ³ÿÿÿëÐÎ&µ& Ç ŠÿÿÿëÐÎ&µ& Ç ŸÿÿÿêëÎ&µ& Ç ´ÿÿÿíÚÎ&ª& ½ ÉÿÿÿéãÎ&µ& Ç ÞÿÿÿçßÎ&À& Ñ óÿÿÿìÕÎ&µ& Ç ÿÿÿíÕÎ&À& Ñ ÿÿÿëÐÎ&À& Ñ 2ÿÿÿîÐÎ&À& Ñ GÿÿÿîÐÎ&À& Ñ \ÿÿÿììÎ&À& Ñ qÿÿÿíÔÎ&À& Ñ †ÿÿÿíÕÎ&À& Ñ ›ÿÿÿéÛÎ&À& Ñ °ÿÿÿïÐÎ&µ& Ç ÅÿÿÿîÐÎ&µ& Ç ÚÿÿÿêìÎ&À& Ñ ïÿÿÿçåÎ&µ& Û ÿÿÿééÎ&µ& Ç ÿÿÿçÔÎ&µ& Û .ÿÿÿçâÎ&µ& Ç CÿÿÿçâÎ&À& Ñ XÿÿÿëÐÎ&µ& Ç mÿÿÿìÕÎ&À& Ñ ‚ÿÿÿíØÎ&µ& Ç —ÿÿÿçÜÎ&À& Ñ ¬ÿÿÿëÐÎ& åÿÿÿëÐÎ&³& ø ŠÿÿÿëÐÎ&³& ø ŸÿÿÿêëÎ&³& ø ´ÿÿÿíÚÎ&¨& î ÉÿÿÿéãÎ&³& ø ÞÿÿÿçßÎ&¾&  óÿÿÿìÕÎ&³& ø ÿÿÿíÕÎ&¾&  ÿÿÿëÐÎ&¾&  2ÿÿÿîÐÎ&¾&  GÿÿÿîÐÎ&¾&  \ÿÿÿììÎ&¾&  qÿÿÿíÔÎ&¾&  †ÿÿÿíÕÎ&¾&  ›ÿÿÿéÛÎ&¾&  °ÿÿÿïÐÎ&³& ø ÅÿÿÿîÐÎ&³& ø ÚÿÿÿêìÎ&¾&  ïÿÿÿçåÎ&³&  ÿÿÿééÎ&³& ø ÿÿÿçÔÎ&³&  .ÿÿÿçâÎ&³& ø CÿÿÿçâÎ&¾&  XÿÿÿëÐÎ&³& ø mÿÿÿìÕÎ&¾&  ‚ÿÿÿíØÎ&³& ø —ÿÿÿçÜÎ&¾&  ¬ÿÿ ë½&› ÿÿÿëëÉ&±& * ‰ÿÿÿëëÉ&±& * žÿÿÿéëÉ&±& * ³ÿÿÿíëÉ&¦&  ÈÿÿÿéëÉ&±& * ÝÿÿÿçëÉ&¼& 4 òÿÿÿíëÉ&±& * ÿÿÿíëÉ&¼& 4 ÿÿÿìëÉ&¼& 4 1ÿÿÿíëÉ&¼& 4 FÿÿÿíëÉ&¼& 4 [ÿÿÿìëÉ&¼& 4 pÿÿÿìëÉ&¼& 4 …ÿÿÿíëÉ&¼& 4 šÿÿÿëëÉ&¼& 4 ¯ÿÿÿïëÉ&±& * ÄÿÿÿîëÉ&±& * ÙÿÿÿêìÉ&¼& 4 îÿÿÿèëÉ&±& > ÿÿÿéëÉ&±& * ÿÿÿçëÉ&±& > -ÿÿÿçëÉ&±& * BÿÿÿçëÉ&¼& 4 WÿÿÿëëÉ&±& * lÿÿÿìëÉ&¼& 4 ÿÿÿíëÉ&±& * –ÿÿÿçëÉ&¼& 4 «ÿÿÿëëÉ& HœÿÿÿëëÉ& ‰&² SÿÿÿëëÉ&²& S žÿÿÿéëÉ&²& S ³ÿÿÿíëÉ&§& N ÈÿÿÿéëÉ&²& S ÝÿÿÿçëÉ&½& h òÿÿÿïëÊ& U& ùÂÿÿÿíëÉ&½& h ÿÿÿìëÉ&½& h 1ÿÿÿíëÉ&½& h FÿÿÿíëÉ&½& h [ÿÿÿìëÉ&½& h pÿÿÿìëÉ&½& h …ÿÿÿíëÉ&½& h šÿÿÿëëÉ&½& h ¯ÿÿÿïëÉ&²& S ÄÿÿÿîëÉ&²& S ÙÿÿÿêìÉ&½& h îÿÿÿèëÉ&²& a ÿÿÿéëÉ&²& S ÿÿÿçëÉ& & U²ÿÿÿçëÉ&²& S BÿÿÿçëÉ&½& Z WÿÿÿëëÉ&²& S lÿÿÿìëÉ&½& h ÿÿÿíëÉ&²& S –ÿÿÿçëÉ&½& Z «ÿÿÿëÐÎ&ž oÿÿÿëÐÎ&´& } ŒÿÿÿëÐÎ&´& } ¡ÿÿÿéìÎ&´& } ¶ÿÿÿíÚÎ& v& Ë´ÿÿÿéãÎ&´& } àÿÿÿçßÎ&¿& ’ õÿÿÿìÕÎ&´& } ÿÿÿíÕÎ&¿& ’ ÿÿÿëÐÎ&¿& ’ 4ÿÿÿîÐÎ&¿& ’ IÿÿÿîÐÎ&¿& ’ ^ÿÿÿìéÎ&¿& ’ sÿÿÿíÔÎ&¿& ’ ˆÿÿÿíÕÎ&¿& ’ ÿÿÿèÛÎ&¿& ’ ²ÿÿÿïÐÎ&´& } ÇÿÿÿîÐÎ&´& } ÜÿÿÿêìÎ&¿& ’ ñÿÿÿçåÎ&´& ‹ ÿÿÿééÎ&´& } ÿÿÿçÔÎ&´& ‹ 0ÿÿÿçÞÎ&´& } EÿÿÿçßÎ&¿& „ ZÿÿÿëÐÎ&´& } oÿÿÿìÕÎ&¿& ’ „ÿÿÿíØÎ&´& } ™ÿÿÿçÜÎ&¿& „ ®ÿÿÿëÐÎ&  ™ÿÿÿëÐÎ&¶& § ŒÿÿÿëÐÎ&¶& § ¡ÿÿÿéìÎ&¶& § ¶ÿÿÿíÚÎ&«&   ËÿÿÿéãÎ&¶& § àÿÿÿçßÎ&Á& ¼ õÿÿÿìÕÎ&¶& § ÿÿÿíÕÎ&Á& ¼ ÿÿÿëÐÎ&Á& ¼ 4ÿÿÿîÐÎ&Á& ¼ IÿÿÿîÐÎ&Á& ¼ ^ÿÿÿìéÎ&Á& ¼ sÿÿÿíÔÎ&Á& ¼ ˆÿÿÿíÕÎ&Á& ¼ ÿÿÿèÛÎ&Á& ¼ ²ÿÿÿïÐÎ&¶& § ÇÿÿÿîÐÎ&¶& § ÜÿÿÿêìÎ&Á& ¼ ñÿÿÿçåÎ&¶& µ ÿÿÿééÎ&¶& § ÿÿÿçÔÎ&¶& µ 0ÿÿÿçÞÎ&¶& § EÿÿÿçßÎ&Á& ® ZÿÿÿëÐÎ&¶& § oÿÿÿìÕÎ&Á& ¼ „ÿÿÿíØÎ&¶& § ™ÿÿÿçÜÎ&Á& ® ®ÿÿÿëÐÎ&ž ÃÿÿÿëÐÎ&´& Ñ ‹ÿÿÿëÐÎ&´& Ñ  ÿÿÿêëÎ&´& Ñ µÿÿÿíÚÎ&©& Ê ÊÿÿÿéãÎ&´& Ñ ßÿÿÿçßÎ&¿& æ ôÿÿÿìÕÎ&´& Ñ ÿÿÿíÕÎ&¿& æ ÿÿÿëÐÎ&¿& æ 3ÿÿÿîÐÎ&¿& æ HÿÿÿîÐÎ&¿& æ ]ÿÿÿìéÎ&¿& æ rÿÿÿíÔÎ&¿& æ ‡ÿÿÿíÕÎ&¿& æ œÿÿÿëÛÎ&¿& æ ±ÿÿÿïÐÎ&´& Ñ ÆÿÿÿîÐÎ&´& Ñ ÛÿÿÿêìÎ&¿& æ ðÿÿÿçåÎ&´& ß ÿÿÿééÎ&´& Ñ ÿÿÿçÔÎ&´& ß /ÿÿÿçÞÎ&´& Ñ DÿÿÿçßÎ&¿& Ø YÿÿÿëÐÎ&´& Ñ nÿÿÿìÕÎ&¿& æ ƒÿÿÿíØÎ&´& Ñ ˜ÿÿÿç×Î&¿& Ø ­ÿÿÿíëÉ&œ íÿÿÿëëÉ&²& û ‰ÿÿÿëëÉ&²& û žÿÿÿéëÉ&²& û ³ÿÿÿíëÉ&§& ô ÈÿÿÿéëÉ&²& û ÝÿÿÿçëÉ&½&  òÿÿÿíëÉ&²& û ÿÿÿíëÉ&½&  ÿÿÿìëÉ&½&  1ÿÿÿíëÉ&½&  FÿÿÿíëÉ&½&  [ÿÿÿìëÉ&½&  pÿÿÿìëÉ&½&  …ÿÿÿíëÉ&½&  šÿÿÿëëÉ&½&  ¯ÿÿÿïëÉ&²& û ÄÿÿÿîëÉ&²& û ÙÿÿÿêìÉ&½&  îÿÿÿèëÉ&²&  ÿÿÿéëÉ&²& û ÿÿÿçëÉ&²&  -ÿÿÿçëÉ&²& û BÿÿÿçëÉ&½&  WÿÿÿëëÉ&²& û lÿÿÿìëÉ&½&  ÿÿÿíëÉ&²& û –ÿÿÿçëÉ&½&  «ÿÿ ë½&¡ ÿÿÿëëÉ&§& $ ‰ÿÿÿëëÉ&·& $ žÿÿÿéëÉ&·& $ ³ÿÿÿíëÊ& È&¬ &ÿÿÿéëÉ&·& $ ÝÿÿÿçëÊ&Â& 9 òÿÿÿíëÉ&·& $ ÿÿÿíëÊ&Â& 9 ÿÿÿìëÊ&Â& 9 1ÿÿÿíëÊ&Â& 9 FÿÿÿíëÊ&Â& 9 [ÿÿÿìëÊ&Â& 9 pÿÿÿìëÊ&Â& 9 …ÿÿÿíëÊ&Â& 9 šÿÿÿëëÊ&Â& 9 ¯ÿÿÿïëÊ& $& ÄÿÿÿîëÉ&·& $ ÙÿÿÿêìÊ&Â& 9 îÿÿÿèëÉ&·& 2 ÿÿÿéëÉ&·& $ ÿÿÿçëÉ&·& 2 -ÿÿÿçëÉ&·& $ BÿÿÿçëÊ&Â& + WÿÿÿëëÉ&·& $ lÿÿÿìëÊ&Â& 9 ÿÿÿíëÉ&·& $ –ÿÿÿçëÊ&Â& + «ÿÿÿëÐÎ&¢ @ÿÿÿëÐÎ&¸& M ŠÿÿÿëÐÎ&¸& M ŸÿÿÿêëÎ&¸& M ´ÿÿÿíÚÎ&­& F ÉÿÿÿéãÎ&¸& M ÞÿÿÿçßÎ&Ã& b óÿÿÿìÕÎ&¸& M ÿÿÿíÕÎ&Ã& b ÿÿÿëÐÎ&Ã& b 2ÿÿÿîÐÎ&Ã& b GÿÿÿîÐÎ&Ã& b \ÿÿÿììÎ&Ã& b qÿÿÿíÔÎ&Ã& b †ÿÿÿíÕÎ&Ã& b ›ÿÿÿéÛÎ&Ã& b °ÿÿÿïÐÎ&¸& M ÅÿÿÿîÐÎ&¸& M ÚÿÿÿêìÎ&Ã& b ïÿÿÿçåÎ&¸& [ ÿÿÿééÎ&¸& M ÿÿÿçÔÎ&¸& [ .ÿÿÿçâÎ&¸& M CÿÿÿçâÎ&Ã& T XÿÿÿëÐÎ&¸& M mÿÿÿìÕÎ&Ã& b ‚ÿÿÿíØÎ&¸& M —ÿÿÿçÜÎ&Ã& T ¬ÿÿÿëÐÎ&˜ iÿÿÿëÐÎ&®& o ‡ÿÿÿëÐÎ&®& o œÿÿÿéìÎ&®& o ±ÿÿÿðÕÎ& l&£ »ÿÿÿéãÎ&®& o ÛÿÿÿçßÎ&¹& u ðÿÿÿìÕÎ&®& o ÿÿÿíÕÎ&¹& u ÿÿÿëÐÎ&¹& u /ÿÿÿíÐÎ&¹& u DÿÿÿìÐÎ&¹& u YÿÿÿìéÎ&¹& u nÿÿÿíÔÎ&¹& u ƒÿÿÿíÕÎ&¹& u ˜ÿÿÿëÛÎ&¹& u ­ÿÿ ÿïÐÎ&¯& p ÂÿÿÿîÐÎ&®& o ×ÿÿÿêìÎ&¹& u ìÿÿÿèäÎ&®& r ÿÿÿééÎ&®& o ÿÿÿçÔÎ&®& r +ÿÿÿçÞÎ&®& o @ÿÿÿçÞÎ&¹& o UÿÿÿëÐÎ&®& o jÿÿÿìÕÎ&¹& u ÿÿÿíØÎ&®& u ”ÿÿÿçÖÎ&¹& o ©ÿÿÿëöÎ&VÄÿÿÿëõÎ&Ú&\ †ÿÿÿëõÎ&Ú&\ ›ÿÿÿéõÎ&Ú&\ °ÿÿÿíöÎ&Ï&Y ÅÿÿÿéõÎ&Ú&\ ÚÿÿÿçõÎ&å&b ïÿÿÿìõÎ&Ú&\ ÿÿÿíõÎ&å&b ÿÿÿëõÎ&å&b .ÿÿÿíõÎ&å&b CÿÿÿñõÎ&å&b XÿÿÿìõÎ&å&b mÿÿÿíõÎ&å&b ‚ÿÿÿíõÎ&å&b —ÿÿÿëõÎ&å&b ¬ÿÿÿïõÎ&Ú&\ ÁÿÿÿîõÎ&Ú&\ ÖÿÿÿêõÎ&å&b ëÿÿÿèõÎ&Ú&_ ÿÿÿéõÎ&Ú&\ ÿÿÿçõÎ&Ú&_ *ÿÿÿçõÎ&Ú&\ ?ÿÿÿçõÎ&å&\ TÿÿÿëõÎ&Ú&\ iÿÿÿìõÎ&å&b ~ÿÿÿíõÎ&Ú&\ “ÿÿÿçõÎ&å&\ ¨ÿÿ ÿëÑÎ&Æeÿÿ ÿëÐÎ&Ü&k ˆÿÿ ÿëÐÎ&Ü&k ÿÿ ÿéìÎ&Ü&k ²ÿÿÿíÚÎ&Ñ&h Çÿÿ ÿéãÎ&Ü&k Üÿÿ ÿçßÎ&ç&q ñÿÿ ÿìÕÎ&Ü&k ÿÿ ÿíÕÎ&ç&q ÿÿ ÿëÑÎ&ç&q 0ÿÿ ÿíÑÎ&ç&q Eÿÿ ÿìÑÎ&ç&q Zÿÿ ÿìéÎ&ç&q oÿÿ ÿíÔÎ&ç&q „ÿÿ ÿíÕÎ&ç&q ™ÿÿ ÿëÛÎ&ç&q ®ÿÿ ÿïÐÎ&Ü&k Ãÿÿ ÿîÐÎ&Ü&k Øÿÿ ÿêìÎ&ç&q íÿÿ ÿèåÍ&Ü&n ÿÿ ÿééÎ&Ü&k ÿÿ ÿçÔÍ&Ü&n ,ÿÿ ÿçÞÎ&Ü&k Aÿÿ ÿçÞÎ&ç&k Vÿÿ ÿëÐÎ&Ü&k kÿÿ ÿìÕÎ&ç&q €ÿÿ ÿíØÎ&Ü&k •ÿÿ ÿçÜÎ&ç&k ªÿÿÿëöÎ&ÄtÿÿÿëöÎ&Ú&z †ÿÿÿëöÎ&Ú&z ›ÿÿÿéöÎ&Ú&z °ÿÿÿíöÎ&Ï&w ÅÿÿÿéöÎ&Ú&z ÚÿÿÿçöÎ&å&€ ïÿÿÿìöÎ&Ú&z ÿÿÿíöÎ&å&€ ÿÿÿëöÎ&å&€ .ÿÿÿíöÎ&å&€ CÿÿÿñöÎ&å&€ XÿÿÿìöÎ&å&€ mÿÿÿíöÎ&å&€ ‚ÿÿÿíöÎ&å&€ —ÿÿÿëöÎ&å&€ ¬ÿÿÿïöÎ&Ú&z ÁÿÿÿîöÎ&Ú&z ÖÿÿÿêöÎ&å&€ ëÿÿÿèöÎ&Ú&} ÿÿÿéöÎ&Ú&z ÿÿÿçöÎ&Ú&} *ÿÿÿçöÎ&Ú&z ?ÿÿÿçöÎ&å&z TÿÿÿëöÎ&Ú&z iÿÿÿìöÎ&å&€ ~ÿÿÿíöÎ&Ú&z “ÿÿÿçöÎ&å&z ¨ÿÿ ÿëÐÎ&ƃÿÿ ÿëÐÎ&Ü&‰ ˆÿÿ ÿëÐÎ&Ü&‰ ÿÿ ÿéìÎ&Ü&‰ ²ÿÿÿíÚÎ&Ñ&† Çÿÿ ÿéãÎ&Ü&‰ Üÿÿ ÿçßÎ&ç& ñÿÿ ÿìÕÎ&Ü&‰ ÿÿ ÿíÕÎ&ç& ÿÿ ÿëÐÎ&ç& 0ÿÿ ÿíÐÎ&ç& Eÿÿ ÿìÐÎ&ç& Zÿÿ ÿìéÎ&ç& oÿÿ ÿíÔÎ&ç& „ÿÿ ÿíÕÎ&ç& ™ÿÿ ÿëÛÎ&ç& ®ÿÿ ÿïÐÎ&Ü&‰ Ãÿÿ ÿîÐÎ&Ü&‰ Øÿÿ ÿêìÎ&ç& íÿÿ ÿèåÎ&Ü&Œ ÿÿ ÿééÎ&Ü&‰ ÿÿ ÿçÔÎ&Ü&Œ ,ÿÿ ÿçÞÎ&Ü&‰ Aÿÿ ÿçÞÎ&ç&‰ Vÿÿ ÿëÐÎ&Ü&‰ kÿÿ ÿìÕÎ&ç& €ÿÿ ÿíØÎ&Ü&‰ •ÿÿ ÿçÜÎ&ç&‰ ªÿÿ ÿëÐÎ&Å’ÿÿ ÿëÐÎ&Û&¥ ‡ÿÿ ÿëÐÎ&Û&¥ œÿÿ ÿéìÎ&Û&¥ ±ÿÿ ÿíÚÎ&Ð&œ Æÿÿ ÿéãÎ&Û&¥ Ûÿÿ ÿçßÎ&æ&¯ ðÿÿ ÿìÕÎ&Û&¥ ÿÿ ÿíÕÎ&æ&¯ ÿÿ ÿëÐÎ&æ&¯ /ÿÿ ÿíÐÎ&æ&¯ Dÿÿ ÿìÐÎ&æ&¯ Yÿÿ ÿìéÎ&æ&¯ nÿÿ ÿíÔÎ&æ&¯ ƒÿÿ ÿíÕÎ&æ&¯ ˜ÿÿ ÿëÛÎ&æ&¯ ­ÿÿ ÿïÐÎ&Û&¥ Âÿÿ ÿîÐÎ&Û&¥ ×ÿÿ ÿêìÎ&æ&¯ ìÿÿ ÿèäÎ&Û&¹ ÿÿ ÿééÎ&Û&¥ ÿÿ ÿçÔÎ&Û&¹ +ÿÿ ÿçÞÎ&Û&¥ @ÿÿ ÿçÞÎ&æ&¯ Uÿÿ ÿëÐÎ&Û&¥ jÿÿ ÿìÕÎ&æ&¯ ÿÿ ÿíØÎ&Û&¥ ”ÿÿ ÿçÖÎ&æ&¯ ©ÿÿ ÿëÐÎ&ÃÆÿÿ ÿëÐÎ&Ü&Õ ˆÿÿ ÿëÐÎ&Ü&Õ ÿÿ ÿéìÎ&Ü&Õ ²ÿÿÿíÚÎ&Ñ&Ë Çÿÿ ÿéãÎ&Ü&Õ Üÿÿ ÿçßÎ&ç&ß ñÿÿ ÿìÕÎ&Ü&Õ ÿÿ ÿíÕÎ&ç&ß ÿÿ ÿëÐÎ&ç&ß 0ÿÿ ÿíÐÎ&ç&ß Eÿÿ ÿìÐÎ&ç&ß Zÿÿ ÿìéÎ&ç&ß oÿÿ ÿíÔÎ&ç&ß „ÿÿ ÿíÕÎ&ç&ß ™ÿÿ ÿëÛÎ&ç&ß ®ÿÿ ÿïÐÎ&Ü&Õ Ãÿÿ ÿîÐÎ&Ü&Õ Øÿÿ ÿêìÎ&ç&ß íÿÿ ÿèåÎ&Ü&é ÿÿ ÿééÎ&Ü&Õ ÿÿ ÿçÔÎ&Ü&é ,ÿÿ ÿçÞÎ&Ü&Õ Aÿÿ ÿçÞÎ&ç&ß Vÿÿ ÿëÐÎ&Ü&Õ kÿÿ ÿìÕÎ&ç&ß €ÿÿ ÿíØÎ&Ü&Õ •ÿÿ ÿçÜÎ&ç&ß ªÿÿ ÿëÐÎ&Åóÿÿ ÿëÐÎ&Û&  ‡ÿÿ ÿëÐÎ&Û&  œÿÿ ÿéìÎ&Û&  ±ÿÿ ÿíÚÎ&Ð&ý Æÿÿ ÿéãÎ&Û&  Ûÿÿ ÿçßÎ&æ&  ðÿÿ ÿìÕÎ&Û&  ÿÿ ÿíÕÎ&æ&  ÿÿ ÿëÐÎ&æ&  /ÿÿ ÿíÐÎ&æ&  Dÿÿ ÿìÐÎ&æ&  Yÿÿ ÿìéÎ&æ&  nÿÿ ÿíÔÎ&æ&  ƒÿÿ ÿíÕÎ&æ&  ˜ÿÿ ÿëÛÎ&æ&  ­ÿÿ ÿïÐÎ&Û&  Âÿÿ ÿîÐÎ&Û&  ×ÿÿ ÿêìÎ&æ&  ìÿÿ ÿèäÎ&Û&  ÿÿ ÿééÎ&Û&  ÿÿ ÿçÔÎ&Û&  +ÿÿ ÿçÞÎ&Û&  @ÿÿ ÿçÞÎ&æ&  Uÿÿ ÿëÐÎ&Û&  jÿÿ ÿìÕÎ&æ&  ÿÿ ÿíØÎ&Û&  ”ÿÿ ÿçÖÎ&æ&  ©ÿÿ ÿëÐÎ&Æ "ÿÿ ÿëÐÎ&Ü& 6 ˆÿÿ ÿëÐÎ&Ü& 6 ÿÿ ÿéìÎ&Ü& 6 ²ÿÿÿíÚÎ&Ñ& , Çÿÿ ÿéãÎ&Ü& 6 Üÿÿ ÿçßÎ&ç& @ ñÿÿ ÿìÕÎ&Ü& 6 ÿÿ ÿíÕÎ&ç& @ ÿÿ ÿëÐÎ&ç& @ 0ÿÿ ÿíÐÎ&ç& @ Eÿÿ ÿìÐÎ&ç& @ Zÿÿ ÿìéÎ&ç& @ oÿÿ ÿíÔÎ&ç& @ „ÿÿ ÿíÕÎ&ç& @ ™ÿÿ ÿëÛÎ&ç& @ ®ÿÿ ÿïÐÎ&Ü& 6 Ãÿÿ ÿîÐÎ&Ü& 6 Øÿÿ ÿêìÎ&ç& @ íÿÿ ÿèåÎ&Ü& J ÿÿ ÿééÎ&Ü& 6 ÿÿ ÿçÔÎ&Ü& J ,ÿÿ ÿçÞÎ&Ü& 6 Aÿÿ ÿçÞÎ&ç& @ Vÿÿ ÿëÐÎ&Ü& 6 kÿÿ ÿìÕÎ&ç& @ €ÿÿ ÿíØÎ&Ü& 6 •ÿÿ ÿçÜÎ&ç& @ ªÿÿ êÀ&Ç TÿÿÿëêÉ&Ý& e ‰ÿÿÿëêÉ&Ý& e žÿÿÿéêÉ&Ý& e ³ÿÿÿíêÉ&Ò& \ ÈÿÿÿéêÉ&Ý& e ÝÿÿÿçêÉ&è& o òÿÿÿíêÉ&Ý& e ÿÿÿíêÉ&è& o ÿÿÿìêÉ&è& o 1ÿÿÿíêÉ&è& o FÿÿÿíêÉ&è& o [ÿÿÿìêÉ&è& o pÿÿÿìêÉ&è& o …ÿÿÿíêÉ&è& o šÿÿÿëêÉ&è& o ¯ÿÿÿïêÉ&Ý& e ÄÿÿÿîêÉ&Ý& e ÙÿÿÿêìÉ&è& o îÿÿÿèêÉ&Ý& x ÿÿÿéêÉ&Ý& e ÿÿÿçêÉ&Ý& x -ÿÿÿçêÉ&Ý& e BÿÿÿçêÉ&è& o WÿÿÿëêÉ&Ý& e lÿÿÿìêÉ&è& o ÿÿÿíêÉ&Ý& e –ÿÿÿçêÉ&è& o «ÿÿÿëöÎ&É ‚ÿÿÿëöÎ&ß& – ŠÿÿÿëöÎ&ß& – ŸÿÿÿêöÎ&ß& – ´ÿÿÿíöÎ&Ô& Œ ÉÿÿÿéöÎ&ß& – ÞÿÿÿçöÎ&ê&   óÿÿÿìöÎ&ß& – ÿÿÿíöÎ&ê&   ÿÿÿëöÎ&ê&   2ÿÿÿîöÎ&ê&   GÿÿÿîöÎ&ê&   \ÿÿÿìöÎ&ê&   qÿÿÿíöÎ&ê&   †ÿÿÿíöÎ&ê&   ›ÿÿÿéöÎ&ê&   °ÿÿÿïöÎ&ß& – ÅÿÿÿîöÎ&ß& – ÚÿÿÿêöÎ&ê&   ïÿÿÿçöÎ&ß& ª ÿÿÿéöÎ&ß& – ÿÿÿçöÎ&ß& ª .ÿÿÿçöÎ&ß& – CÿÿÿçöÎ&ê&   XÿÿÿëöÎ&ß& – mÿÿÿìöÎ&ê&   ‚ÿÿÿíöÎ&ß& – —ÿÿÿçöÎ&ê&   ¬ÿÿÿëÐÎ&Ë ´ÿÿÿëÐÎ&á& È ŠÿÿÿëÐÎ&á& È ŸÿÿÿêëÎ&á& È ´ÿÿÿíÚÎ&Ö& ¾ ÉÿÿÿéãÎ&á& È ÞÿÿÿçßÎ&ì& Ò óÿÿÿìÕÎ&á& È ÿÿÿíÕÎ&ì& Ò ÿÿÿëÐÎ&ì& Ò 2ÿÿÿîÐÎ&ì& Ò GÿÿÿîÐÎ&ì& Ò \ÿÿÿììÎ&ì& Ò qÿÿÿíÔÎ&ì& Ò †ÿÿÿíÕÎ&ì& Ò ›ÿÿÿéÛÎ&ì& Ò °ÿÿÿïÐÎ&á& È ÅÿÿÿîÐÎ&á& È ÚÿÿÿêìÎ&ì& Ò ïÿÿÿçåÎ&á& Ü ÿÿÿééÎ&á& È ÿÿÿçÔÎ&á& Ü .ÿÿÿçâÎ&á& È CÿÿÿçâÎ&ì& Ò XÿÿÿëÐÎ&á& È mÿÿÿìÕÎ&ì& Ò ‚ÿÿÿíØÎ&á& È —ÿÿÿçÜÎ&ì& Ò ¬ÿÿÿëÐÎ&É æÿÿÿëÐÎ&ß& ù ŠÿÿÿëÐÎ&ß& ù ŸÿÿÿêëÎ&ß& ù ´ÿÿÿíÚÎ&Ô& ï ÉÿÿÿéãÎ&ß& ù ÞÿÿÿçßÎ&ê&  óÿÿÿìÕÎ&ß& ù ÿÿÿíÕÎ&ê&  ÿÿÿëÐÎ&ê&  2ÿÿÿîÐÎ&ê&  GÿÿÿîÐÎ&ê&  \ÿÿÿììÎ&ê&  qÿÿÿíÔÎ&ê&  †ÿÿÿíÕÎ&ê&  ›ÿÿÿéÛÎ&ê&  °ÿÿÿïÐÎ&ß& ù ÅÿÿÿîÐÎ&ß& ù ÚÿÿÿêìÎ&ê&  ïÿÿÿçåÎ&ß&  ÿÿÿééÎ&ß& ù ÿÿÿçÔÎ&ß&  .ÿÿÿçâÎ&ß& ù CÿÿÿçâÎ&ê&  XÿÿÿëÐÎ&ß& ù mÿÿÿìÕÎ&ê&  ‚ÿÿÿíØÎ&ß& ù —ÿÿÿçÜÎ&ê&  ¬ÿÿ ëÀ&Ç ÿÿÿëëÉ&Ý& + ‰ÿÿÿëëÉ&Ý& + žÿÿÿéëÉ&Ý& + ³ÿÿÿíëÉ&Ò& ! ÈÿÿÿéëÉ&Ý& + ÝÿÿÿçëÉ&è& 5 òÿÿÿíëÉ&Ý& + ÿÿÿíëÉ&è& 5 ÿÿÿìëÉ&è& 5 1ÿÿÿíëÉ&è& 5 FÿÿÿíëÉ&è& 5 [ÿÿÿìëÉ&è& 5 pÿÿÿìëÉ&è& 5 …ÿÿÿíëÉ&è& 5 šÿÿÿëëÉ&è& 5 ¯ÿÿÿïëÉ&Ý& + ÄÿÿÿîëÉ&Ý& + ÙÿÿÿêìÉ&è& 5 îÿÿÿèëÉ&Ý& ? ÿÿÿéëÉ&Ý& + ÿÿÿçëÉ&Ý& ? -ÿÿÿçëÉ&Ý& + BÿÿÿçëÉ&è& 5 WÿÿÿëëÉ&Ý& + lÿÿÿìëÉ&è& 5 ÿÿÿíëÉ&Ý& + –ÿÿÿçëÉ&è& 5 «ÿÿÿëëÉ&È HÿÿÿëëÉ&Þ& S ‰ÿÿÿëëÉ&Þ& S žÿÿÿéëÉ&Þ& S ³ÿÿÿíëÉ&Ó& N ÈÿÿÿéëÉ&Þ& S ÝÿÿÿçëÉ&é& h òÿÿÿíëÉ&Þ& S ÿÿÿíëÉ&é& h ÿÿÿìëÉ&é& h 1ÿÿÿíëÉ&é& h FÿÿÿíëÉ&é& h [ÿÿÿìëÉ&é& h pÿÿÿìëÉ&é& h …ÿÿÿíëÉ&é& h šÿÿÿëëÉ&é& h ¯ÿÿÿïëÉ&Þ& S ÄÿÿÿîëÉ&Þ& S ÙÿÿÿêìÉ&é& h îÿÿÿèëÉ&Þ& a ÿÿÿéëÉ&Þ& S ÿÿÿçëÉ&Þ& S -ÿÿÿçëÉ&Þ& S BÿÿÿçëÉ&é& Z WÿÿÿëëÉ&Þ& S lÿÿÿìëÉ&é& h ÿÿÿíëÉ&Þ& S –ÿÿÿçëÉ&é& Z «ÿÿÿëÐÎ&Ê oÿÿÿëÐÎ&à& } ŒÿÿÿëÐÎ&à& } ¡ÿÿÿéìÎ&à& } ¶ÿÿÿíÚÎ&Õ& v ËÿÿÿéãÎ&à& } àÿÿÿçßÎ&ë& ’ õÿÿÿìÕÎ&à& } ÿÿÿíÕÎ&ë& ’ ÿÿÿëÐÎ&ë& ’ 4ÿÿÿîÐÎ&ë& ’ IÿÿÿîÐÎ&ë& ’ ^ÿÿÿìéÎ&ë& ’ sÿÿÿíÔÎ&ë& ’ ˆÿÿÿíÕÎ&ë& ’ ÿÿÿèÛÎ&ë& ’ ²ÿÿÿïÐÎ&à& } ÇÿÿÿîÐÎ&à& } ÜÿÿÿêìÎ&ë& ’ ñÿÿÿçåÎ&à& ‹ ÿÿÿééÎ&à& } ÿÿÿçÔÎ&à& ‹ 0ÿÿÿçÞÎ&à& } EÿÿÿçßÎ&ë& „ ZÿÿÿëÐÎ&à& } oÿÿÿìÕÎ&ë& ’ „ÿÿÿíØÎ&à& } ™ÿÿÿçÜÎ&ë& „ ®ÿÿÿëÐÎ&Ì ™ÿÿÿëÐÎ&â& § ŒÿÿÿëÐÎ&â& § ¡ÿÿÿéìÎ&â& § ¶ÿÿÿíÚÎ&×&   ËÿÿÿéãÎ&â& § àÿÿÿçßÎ&í& ¼ õÿÿÿìÕÎ&â& § ÿÿÿíÕÎ&í& ¼ ÿÿÿëÐÎ&í& ¼ 4ÿÿÿîÐÎ&í& ¼ IÿÿÿîÐÎ&í& ¼ ^ÿÿÿìéÎ&í& ¼ sÿÿÿíÔÎ&í& ¼ ˆÿÿÿíÕÎ&í& ¼ ÿÿÿèÛÎ&í& ¼ ²ÿÿÿïÐÎ&â& § ÇÿÿÿîÐÎ&â& § ÜÿÿÿêìÎ&í& ¼ ñÿÿÿçåÎ&â& µ ÿÿÿééÎ&â& § ÿÿÿçÔÎ&â& µ 0ÿÿÿçÞÎ&â& § EÿÿÿçßÎ&í& ® ZÿÿÿëÐÎ&â& § oÿÿÿìÕÎ&í& ¼ „ÿÿÿíØÎ&â& § ™ÿÿÿçÜÎ&í& ® ®ÿÿÿëÐÎ& ÃÊÿÿÿëÐÎ&à& Ñ ‹ÿÿÿëÐÎ&à& Ñ  ÿÿÿêëÎ&à& Ñ µÿÿÿíÚÎ&Õ& Ê ÊÿÿÿéãÎ&à& Ñ ßÿÿÿçßÎ&ë& æ ôÿÿÿìÕÎ&à& Ñ ÿÿÿíÕÎ&ë& æ ÿÿÿëÐÎ&ë& æ 3ÿÿÿîÐÎ&ë& æ HÿÿÿîÐÎ&ë& æ ]ÿÿÿìéÎ&ë& æ rÿÿÿíÔÎ&ë& æ ‡ÿÿÿíÕÎ&ë& æ œÿÿÿëÛÎ&ë& æ ±ÿÿÿïÐÎ&à& Ñ ÆÿÿÿîÐÎ&à& Ñ ÛÿÿÿêìÎ&ë& æ ðÿÿÿçåÎ&à& ß ÿÿÿééÎ&à& Ñ ÿÿÿçÔÎ&à& ß /ÿÿÿçÞÎ&à& Ñ DÿÿÿçßÎ&ë& Ø YÿÿÿëÐÎ&à& Ñ nÿÿÿìÕÎ&ë& æ ƒÿÿÿíØÎ&à& Ñ ˜ÿÿÿç×Î&ë& Ø ­ÿÿÿíëÉ&È íÿÿÿëëÉ&Þ& û ‰ÿÿÿëëÉ&Þ& û žÿÿÿéëÉ&Þ& û ³ÿÿÿíëÉ&Ó& ô ÈÿÿÿéëÉ&Þ& û ÝÿÿÿçëÉ&é&  òÿÿÿíëÉ&Þ& û ÿÿÿíëÉ&é&  ÿÿÿìëÉ&é&  1ÿÿÿíëÉ&é&  FÿÿÿíëÉ&é&  [ÿÿÿìëÉ&é&  pÿÿÿìëÉ&é&  …ÿÿÿíëÉ&é&  šÿÿÿëëÉ&é&  ¯ÿÿÿïëÉ&Þ& û ÄÿÿÿîëÉ&Þ& û ÙÿÿÿêìÉ&é&  îÿÿÿèëÉ&Þ&  ÿÿÿéëÉ&Þ& û ÿÿÿçëÉ&Þ&  -ÿÿÿçëÉ&Þ& û BÿÿÿçëÉ&é&  WÿÿÿëëÉ&Þ& û lÿÿÿìëÉ&é&  ÿÿÿíëÉ&Þ& û –ÿÿÿçëÉ&é&  «ÿÿ ë½&Í ÿÿÿëëÉ&ã& $ ‰ÿÿÿëëÉ&ã& $ žÿÿÿéëÉ&ã& $ ³ÿÿÿíëÉ&Ø&  ÈÿÿÿéëÉ&ã& $ ÝÿÿÿçëÉ&î& 9 òÿÿÿíëÉ&ã& $ ÿÿÿíëÉ&ã& $ ÿÿÿìëÉ&î& 9 1ÿÿÿíëÉ&î& 9 FÿÿÿíëÉ&î& 9 [ÿÿÿìëÉ&î& 9 pÿÿÿìëÉ&î& 9 …ÿÿÿíëÉ&î& 9 šÿÿÿëëÉ&î& 9 ¯ÿÿÿïëÉ&ã& $ ÄÿÿÿîëÉ&ã& $ ÙÿÿÿêìÉ&î& 9 îÿÿÿèëÉ&ã& 2 ÿÿÿéëÉ&ã& $ ÿÿÿçëÉ&ã& 2 -ÿÿÿçëÉ&ã& $ BÿÿÿçëÉ&î& + WÿÿÿëëÉ&ã& $ lÿÿÿìëÉ&ã& $ ÿÿÿíëÉ&ã& $ –ÿÿÿçëÉ&î& + «ÿÿÿëÐÎ&Î @ÿÿÿëÐÎ&ä& M ŠÿÿÿëÐÎ&ä& M ŸÿÿÿêëÎ&ä& M ´ÿÿÿíÚÎ&Ù& F ÉÿÿÿéãÎ&ä& M ÞÿÿÿçßÎ&ï& b óÿÿÿìÕÎ&ä& M ÿÿÿíÕÎ&ï& b ÿÿÿëÐÎ&ï& b 2ÿÿÿîÐÎ&ï& b GÿÿÿîÐÎ&ï& b \ÿÿÿììÎ&ï& b qÿÿÿíÔÎ&ï& b †ÿÿÿíÕÎ&ï& b ›ÿÿÿéÛÎ&ï& b °ÿÿÿïÐÎ&ä& M ÅÿÿÿîÐÎ&ä& M ÚÿÿÿêìÎ&ï& b ïÿÿÿçåÎ&ä& [ ÿÿÿééÎ&ä& M ÿÿÿçÔÎ&ä& [ .ÿÿÿçâÎ&ä& M CÿÿÿçâÎ&ï& T XÿÿÿëÐÎ&ä& M mÿÿÿìÕÎ&ï& b ‚ÿÿÿíØÎ&ä& M —ÿÿÿçÜÎ&ï& T ¬ÿÿ ÿëÐÎ& jÅÿÿÿëÐÎ&Ú& p ‡ÿÿÿëÐÎ&Ú& p œÿÿÿéìÎ&Ú& p ±ÿÿÿíÚÎ&Ï& m ÆÿÿÿéãÎ&Ú& p ÛÿÿÿçßÎ&å& v ðÿÿÿìÕÎ&Ú& p ÿÿÿíÕÎ&å& v ÿÿÿëÐÎ&å& v /ÿÿÿíÐÎ&å& v DÿÿÿìÐÎ&å& v YÿÿÿìéÎ&å& v nÿÿÿíÔÎ&å& v ƒÿÿÿíÕÎ&å& v ˜ÿÿÿëÛÎ&å& v ­ÿÿÿïÐÎ&Ú& p ÂÿÿÿîÐÎ&Ú& p ×ÿÿÿêìÎ&å& v ìÿÿÿèäÎ&Ú& s ÿÿÿééÎ&Ú& p ÿÿÿçÔÎ&Ú& s +ÿÿÿçÞÎ&Ú& p @ÿÿÿçÞÎ&å& p UÿÿÿëÐÎ&Ú& p jÿÿÿìÕÎ&å& v ÿÿÿíØÎ&Ú& p ”ÿÿÿçÖÎ&å& p ©ÿÿÿëöÎ&UðÿÿÿëõÎ&&[ xÿÿÿëõÎ&&[ ÿÿÿèõÎ&&[ ¢ÿÿÿíöÎ&ù&Z ÅÿÿÿêõÎ&&[ ÌÿÿÿçõÎ& &a áÿÿÿïõÎ&&[ öÿÿÿíõÎ&[&  ÿÿÿëõÎ& &a ÿÿÿíõÎ& &a 5ÿÿÿíõÎ& &a JÿÿÿìõÎ& &a _ÿÿÿíõÎ& &a tÿÿÿíõÎ& &a ‰ÿÿÿçõÎ& &a žÿÿÿïõÎ&&[ ³ÿÿÿîõÎ&&[ ÈÿÿÿèõÎ& &a ÝÿÿÿèöÎ&&^ òÿÿÿéõÎ&&[ ÿÿÿçöÎ&&^ ÿÿÿçõÎ&&[ 1ÿÿÿçõÎ& &[ FÿÿÿëõÎ&&[ [ÿÿÿìõÎ& &a pÿÿÿíõÎ&&[ …ÿÿÿçõÎ& &[ šÿÿÿëÐÎ&òdÿÿÿëÐÎ&&j zÿÿÿëÐÎ&&j ÿÿÿèìÎ&&j ¤ÿÿÿðÕÎ&û&… ¹ÿÿÿéãÎ&&j ÎÿÿÿçßÎ& &p ãÿÿÿïÕÎ&&j øÿÿÿíÕÎ& &p ÿÿÿëÐÎ& &p "ÿÿÿíÐÎ& &p 7ÿÿÿíÐÎ& &p LÿÿÿìéÎ& &p aÿÿÿíÔÎ& &p vÿÿÿíÕÎ& &p ‹ÿÿÿçÛÎ& &p  ÿÿÿïÐÎ& µ&jÿÿÿîÐÎ&&j ÊÿÿÿèìÎ& &p ßÿÿÿèàÎ&&m ôÿÿÿééÎ&&j ÿÿÿçÔÎ&&m ÿÿÿçÞÎ&&j 3ÿÿÿçÞÎ& &j HÿÿÿëÐÎ&&j ]ÿÿÿìÕÎ& &p rÿÿÿíØÎ&&j ‡ÿÿÿçÜÎ& &j œÿÿÿëöÎ&ðsÿÿÿëöÎ&&y xÿÿÿëöÎ&&y ÿÿÿèöÎ&&y ¢ÿÿÿðöÎ&ù&v ·ÿÿÿêöÎ&&y ÌÿÿÿçöÎ& & áÿÿÿïöÎ&&y öÿÿÿíöÎ& & ÿÿÿëöÎ& & ÿÿÿíöÎ& & 5ÿÿÿíöÎ& & JÿÿÿìöÎ& & _ÿÿÿíöÎ& & tÿÿÿíöÎ& & ‰ÿÿÿçöÎ& & žÿÿÿïöÎ&&y ³ÿÿÿîöÎ&&y ÈÿÿÿèöÎ& & ÝÿÿÿèöÎ&&| òÿÿÿéöÎ&&y ÿÿÿçöÎ&&| ÿÿÿçöÎ&&y 1ÿÿÿçöÎ& &y FÿÿÿëöÎ&&y [ÿÿÿìöÎ& & pÿÿÿíöÎ&&y …ÿÿÿçöÎ& &y šÿÿÿëÐÎ&ò‚ÿÿÿëÐÎ&&ˆ zÿÿÿëÐÎ&&ˆ ÿÿÿèìÎ&&ˆ ¤ÿÿÿðÕÎ&û&… ¹ÿÿÿéãÎ&&ˆ ÎÿÿÿçßÎ& &Ž ãÿÿÿïÕÎ&&ˆ øÿÿÿíÕÎ& &Ž ÿÿÿëÐÎ& &Ž "ÿÿÿíÐÎ& &Ž 7ÿÿÿíÐÎ& &Ž LÿÿÿìéÎ& &Ž aÿÿÿíÔÎ& &Ž vÿÿÿíÕÎ& &Ž ‹ÿÿÿçÛÎ& &Ž  ÿÿÿïÐÎ&&ˆ µÿÿÿîÐÎ&&ˆ ÊÿÿÿèìÎ& &Ž ßÿÿÿèàÎ&&‹ ôÿÿÿééÎ&&ˆ ÿÿÿçÔÎ&&‹ ÿÿÿçÞÎ&&ˆ 3ÿÿÿçÞÎ& &ˆ HÿÿÿëÐÎ&&ˆ ]ÿÿÿìÕÎ& &Ž rÿÿÿíØÎ&&ˆ ‡ÿÿÿçÜÎ& &ˆ œÿÿÿëÐÎ&ñ”ÿÿÿëÐÎ&&§ yÿÿÿëÐÎ&&§ ŽÿÿÿèìÎ&&§ £ÿÿÿðÕÎ&ú&ž ¸ÿÿÿéãÎ&&§ ÍÿÿÿçßÎ& &± âÿÿÿïÕÎ&&§ ÷ÿÿÿíÕÎ& &± ÿÿÿëÐÎ& &± !ÿÿÿíÐÎ& &± 6ÿÿÿíÐÎ& &± KÿÿÿìéÎ& &± `ÿÿÿíÔÎ& &± uÿÿÿíÕÎ& &± ŠÿÿÿçÛÎ& &± ŸÿÿÿïÐÎ&¤& ´ÿÿÿîÐÎ&&§ ÉÿÿÿèìÎ& &± ÞÿÿÿèãÎ&&» óÿÿÿééÎ&&§ ÿÿÿçÔÎ&&» ÿÿÿçÞÎ&&§ 2ÿÿÿçÞÎ& &± GÿÿÿëÐÎ&&§ \ÿÿÿìÕÎ& &± qÿÿÿíØÎ&&§ †ÿÿÿçÖÎ& &± ›ÿÿÿëÐÎ&òÄÿÿÿëÐÎ&&× zÿÿÿëÐÎ&&× ÿÿÿèìÎ&&× ¤ÿÿÿðÕÎ&û&Í ¹ÿÿÿéãÎ&&× ÎÿÿÿçßÎ& &á ãÿÿÿïÕÎ&&× øÿÿÿíÕÎ& &á ÿÿÿëÐÎ& &á "ÿÿÿíÐÎ& &á 7ÿÿÿíÐÎ& &á LÿÿÿìéÎ& &á aÿÿÿíÔÎ& &á vÿÿÿíÕÎ& &á ‹ÿÿÿçÛÎ& &á  ÿÿÿïÐÎ&&× µÿÿÿîÐÎ&&× ÊÿÿÿèìÎ& &á ßÿÿÿèàÎ&&ë ôÿÿÿééÎ&&× ÿÿÿçÔÎ&&ë ÿÿÿçÞÎ&&× 3ÿÿÿçÞÎ& &á HÿÿÿëÐÎ&&× ]ÿÿÿìÕÎ& &á rÿÿÿíØÎ&&× ‡ÿÿÿçÜÎ& &á œÿÿÿëÐÎ&ñõÿÿÿëÐÎ&&  yÿÿÿëÐÎ&&  ŽÿÿÿèìÎ&&  £ÿÿÿðÕÎ&ú&  ¸ÿÿÿéãÎ&&  ÍÿÿÿçßÎ& &  âÿÿÿïÕÎ&&  ÷ÿÿÿíÕÎ& &  ÿÿÿëÐÎ& &  !ÿÿÿíÐÎ& &  6ÿÿÿíÐÎ& &  KÿÿÿìéÎ& &  `ÿÿÿíÔÎ& &  uÿÿÿíÕÎ& &  ŠÿÿÿçÛÎ& &  ŸÿÿÿïÐÎ& &  µÿÿÿîÐÎ&&  ÉÿÿÿèìÎ& &  ÞÿÿÿèãÎ&&  óÿÿÿééÎ&&  ÿÿÿçÔÎ&&  ÿÿÿçÞÎ&&  2ÿÿÿçÞÎ& &  GÿÿÿëÐÎ&&  \ÿÿÿìÕÎ& &  qÿÿÿíØÎ&&  †ÿÿÿçÖÎ& &  ›ÿÿÿëÐÎ&ò $ÿÿÿëÐÎ&& 8 zÿÿÿëÐÎ&& 8 ÿÿÿèìÎ&& 8 ¤ÿÿÿðÕÎ&û& . ¹ÿÿÿéãÎ&& 8 ÎÿÿÿçßÎ& & B ãÿÿÿïÕÎ&& 8 øÿÿÿíÕÎ& & B ÿÿÿëÐÎ& & B "ÿÿÿíÐÎ& & B 7ÿÿÿíÐÎ& & B LÿÿÿìéÎ& & B aÿÿÿíÔÎ& & B vÿÿÿíÕÎ& & B ‹ÿÿÿçÛÎ& & B  ÿÿÿïÐÎ&& 8 µÿÿÿîÐÎ&& 8 ÊÿÿÿèìÎ& & B ßÿÿÿèàÎ&& L ôÿÿÿééÎ&& 8 ÿÿÿçÔÎ&& L ÿÿÿçÞÎ&& 8 3ÿÿÿçÞÎ& & B HÿÿÿëÐÎ&& 8 ]ÿÿÿìÕÎ& & B rÿÿÿíØÎ&& 8 ‡ÿÿÿçÜÎ& & B œÿÿ êÅ&ó VÿÿÿëêÏ&& g {ÿÿÿëêÏ&& g ÿÿÿêêÏ&& g ¥ÿÿÿíêÏ&& È zÿÿÿéêÏ&& g ÏÿÿÿçêÏ&& q äÿÿÿïêÏ&& g ùÿÿÿíêÏ&& q ÿÿÿëêÏ&& q #ÿÿÿíêÏ&& q 8ÿÿÿðêÏ&& q MÿÿÿìêÏ&& q bÿÿÿíêÏ&& q wÿÿÿíêÏ&& q ŒÿÿÿçêÏ&& q ¡ÿÿÿïêÏ&& g ¶ÿÿÿîêÏ&& g ËÿÿÿèìÏ&& q àÿÿÿèêÏ&& z õÿÿÿéêÏ&& g ÿÿÿçêÏ&& z ÿÿÿçêÏ&& g 4ÿÿÿçêÏ&& q IÿÿÿëêÏ&& g ^ÿÿÿìêÏ&& q sÿÿÿíêÏ&& g ˆÿÿÿçêÏ&& g ÿÿÿëöÎ&õ „ÿÿÿëöÎ&& ˜ |ÿÿÿëöÎ&& ˜ ‘ÿÿÿêöÎ&& ˜ ¦ÿÿÿðöÎ&þ& Ž »ÿÿÿêöÎ&& ˜ ÐÿÿÿçöÎ&& ¢ åÿÿÿïöÎ&& ˜ úÿÿÿíöÎ&& ¢ ÿÿÿëöÎ&& ¢ $ÿÿÿíöÎ&& ¢ 9ÿÿÿíöÎ&& ¢ NÿÿÿìöÎ&& ¢ cÿÿÿîöÎ&& ¢ xÿÿÿíöÎ&& ¢ ÿÿÿçöÎ&& ¢ ¢ÿÿÿïöÎ&& ˜ ·ÿÿÿîöÎ&& ˜ ÌÿÿÿèöÎ&& ¢ áÿÿÿèöÎ&& ¬ öÿÿÿéöÎ&& ˜ ÿÿÿçöÎ&& ¬ ÿÿÿçöÎ&& ˜ 5ÿÿÿçöÎ&& ¢ JÿÿÿëöÎ&& ˜ _ÿÿÿìöÎ&& ¢ tÿÿÿíöÎ&& ˜ ‰ÿÿÿçöÎ&& ¢ žÿÿÿëÐÎ&÷ ¶ÿÿÿëÐÎ& & Ê |ÿÿÿëÐÎ& & Ê ‘ÿÿÿêëÎ& & Ê ¦ÿÿÿðÕÎ&& À »ÿÿÿêãÎ& & Ê ÐÿÿÿçßÎ&& Ô åÿÿÿïÕÎ& & Ê úÿÿÿíÕÎ&& Ô ÿÿÿëÐÎ&& Ô $ÿÿÿíÐÎ&& Ô 9ÿÿÿíÐÎ&& Ô NÿÿÿìéÎ&& Ô cÿÿÿîÔÎ&& Ô xÿÿÿíÕÎ&& Ô ÿÿÿçÛÎ&& Ô ¢ÿÿÿïÐÎ& & Ê ·ÿÿÿîÐÎ& & Ê ÌÿÿÿèéÎ&& Ô áÿÿÿèãÎ& & Þ öÿÿÿééÎ& & Ê ÿÿÿçÔÎ& & Þ ÿÿÿçâÎ& & Ê 5ÿÿÿçâÎ&& Ô JÿÿÿëÐÎ& & Ê _ÿÿÿìÕÎ&& Ô tÿÿÿíØÎ& & Ê ‰ÿÿÿçÜÎ&& Ô žÿÿÿëÐÎ&õ èÿÿÿëÐÎ&& û |ÿÿÿëÐÎ&& û ‘ÿÿÿêëÎ&& û ¦ÿÿÿðÕÎ&þ& ñ »ÿÿÿêãÎ&& û ÐÿÿÿçßÎ&&  åÿÿÿïÕÎ&& û úÿÿÿíÕÎ&&  ÿÿÿëÐÎ&&  $ÿÿÿíÐÎ&&  9ÿÿÿíÐÎ&&  NÿÿÿìéÎ&&  cÿÿÿîÔÎ&&  xÿÿÿíÕÎ&&  ÿÿÿçÛÎ&&  ¢ÿÿÿïÐÎ&& û ·ÿÿÿîÐÎ&& û ÌÿÿÿèéÎ&&  áÿÿÿèãÎ&&  öÿÿÿééÎ&& û ÿÿÿçÔÎ&&  ÿÿÿçâÎ&& û 5ÿÿÿçâÎ&&  JÿÿÿëÐÎ&& û _ÿÿÿìÕÎ&&  tÿÿÿíØÎ&& û ‰ÿÿÿçÜÎ&&  žÿÿ ëÅ&ó ÿÿÿëëÏ&& - {ÿÿÿëëÏ&& - ÿÿÿêëÏ&& - ¥ÿÿÿðëÏ&ü& # ºÿÿÿéëÏ&& - ÏÿÿÿçëÏ&& 7 äÿÿÿïëÏ&& - ùÿÿÿíëÏ&& 7 ÿÿÿëëÏ&& 7 #ÿÿÿíëÏ&& 7 8ÿÿÿðëÏ&& 7 MÿÿÿìëÏ&& 7 bÿÿÿíëÏ&& 7 wÿÿÿíëÏ&& 7 ŒÿÿÿçëÏ&& 7 ¡ÿÿÿïëÏ&& - ¶ÿÿÿîëÏ&& - ËÿÿÿèìÏ&& 7 àÿÿÿèëÏ&& A õÿÿÿéëÏ&& - ÿÿÿçëÏ&& A ÿÿÿçëÏ&& - 4ÿÿÿçëÏ&& 7 IÿÿÿëëÏ&& - ^ÿÿÿìëÏ&& 7 sÿÿÿíëÏ&& - ˆÿÿÿçëÏ&& 7 ÿÿÿëëÏ& JôÿÿÿëëÏ&& U {ÿÿÿëëÏ&& U ÿÿÿêëÏ&& U ¥ÿÿÿíëÏ&& N ÈÿÿÿéëÏ&& U ÏÿÿÿçëÏ&& j äÿÿÿïëÏ&& U ùÿÿÿíëÏ&& j ÿÿÿëëÏ&& j #ÿÿÿíëÏ&& j 8ÿÿÿðëÏ&& j MÿÿÿìëÏ&& j bÿÿÿíëÏ&& j wÿÿÿíëÏ&& j ŒÿÿÿçëÏ&& j ¡ÿÿÿïëÏ&& U ¶ÿÿÿîëÏ&& U ËÿÿÿèìÏ&& j àÿÿÿèëÏ&& c õÿÿÿéëÏ&& U ÿÿÿçëÏ&& U ÿÿÿçëÏ&& U 4ÿÿÿçëÏ&& \ IÿÿÿëëÏ&& U ^ÿÿÿìëÏ&& j sÿÿÿíëÏ&& U ˆÿÿÿçëÏ&& \ ÿÿÿëÐÎ&ö qÿÿÿëÐÎ&&  ~ÿÿÿëÐÎ&&  “ÿÿÿêëÎ&&  ¨ÿÿÿðÕÎ&ÿ& x ½ÿÿÿéãÎ&&  ÒÿÿÿçßÎ&& ” çÿÿÿïÕÎ&&  üÿÿÿíÕÎ&& ” ÿÿÿëÐÎ&& ” &ÿÿÿíÐÎ&& ” ;ÿÿÿíÐÎ&& ” PÿÿÿëéÎ&& ” eÿÿÿîÔÎ&& ” zÿÿÿíÖÎ&& ” ÿÿÿçÛÎ&& ” ¤ÿÿÿïÐÎ&&  ¹ÿÿÿîÐÎ&&  ÎÿÿÿêéÎ&& ” ãÿÿÿèãÎ&&  øÿÿÿçéÎ&&  ÿÿÿçÔÎ&&  "ÿÿÿçÞÎ&&  7ÿÿÿíÞÎ&& † LÿÿÿëÐÎ&&  aÿÿÿìÕÎ&& ” vÿÿÿíØÎ&&  ‹ÿÿÿçÜÎ&& †  ÿÿÿëÐÎ&ø ›ÿÿÿëÐÎ& & © ~ÿÿÿëÐÎ& & © “ÿÿÿêëÎ& & © ¨ÿÿÿðÕÎ&& ¢ ½ÿÿÿéãÎ& & © ÒÿÿÿçßÎ&& ¾ çÿÿÿïÕÎ& & © üÿÿÿíÕÎ&& ¾ ÿÿÿëÐÎ&& ¾ &ÿÿÿíÐÎ&& ¾ ;ÿÿÿíÐÎ&& ¾ PÿÿÿëéÎ&& ¾ eÿÿÿîÔÎ&& ¾ zÿÿÿíÖÎ&& ¾ ÿÿÿçÛÎ&& ¾ ¤ÿÿÿïÐÎ& & © ¹ÿÿÿîÐÎ& & © ÎÿÿÿêéÎ&& ¾ ãÿÿÿèãÎ& & · øÿÿÿçéÎ& & © ÿÿÿçÔÎ& & · "ÿÿÿçÞÎ& & © 7ÿÿÿíÞÎ&& ° LÿÿÿëÐÎ& & © aÿÿÿìÕÎ&& ¾ vÿÿÿíØÎ& & © ‹ÿÿÿçÜÎ&& °  ÿÿÿëÐÎ&ö ÅÿÿÿëÐÎ&& Ó }ÿÿÿëÐÎ&& Ó ’ÿÿÿêëÎ&& Ó §ÿÿÿðÕÎ&ÿ& Ì ¼ÿÿÿéãÎ&& Ó ÑÿÿÿçßÎ&& è æÿÿÿïÕÎ&& Ó ûÿÿÿíÕÎ&& è ÿÿÿëÐÎ&& è %ÿÿÿíÐÎ&& è :ÿÿÿíÐÎ&& è OÿÿÿëèÎ&& è dÿÿÿîÔÎ&& è yÿÿÿíÖÎ&& è ŽÿÿÿçÛÎ&& è £ÿÿÿïÐÎ&& Ó ¸ÿÿÿîÐÎ&& Ó ÍÿÿÿêéÎ&& è âÿÿÿèãÎ&& á ÷ÿÿÿçéÎ&& Ó ÿÿÿçÔÎ&& á !ÿÿÿçÞÎ&& Ó 6ÿÿÿçÞÎ&& Ú KÿÿÿëÐÎ&& Ó `ÿÿÿìÕÎ&& è uÿÿÿíØÎ&& Ó ŠÿÿÿçÖÎ&& Ú ŸÿÿÿíëÏ&ô ïÿÿÿëëÏ&& ý {ÿÿÿëëÏ&& ý ÿÿÿêëÏ&& ý ¥ÿÿÿðëÏ&ý& ö ºÿÿÿéëÏ&& ý ÏÿÿÿçëÏ&&  äÿÿÿïëÏ&& ý ùÿÿÿíëÏ&&  ÿÿÿëëÏ&&  #ÿÿÿíëÏ&&  8ÿÿÿðëÏ&&  MÿÿÿìëÏ&&  bÿÿÿíëÏ&&  wÿÿÿíëÏ&&  ŒÿÿÿçëÏ&&  ¡ÿÿÿïëÏ&& ý ¶ÿÿÿîëÏ&& ý ËÿÿÿèìÏ&&  àÿÿÿèëÏ&&  õÿÿÿéëÏ&& ý ÿÿÿçëÏ&&  ÿÿÿçëÏ&& ý 4ÿÿÿçëÏ&&  IÿÿÿëëÏ&& ý ^ÿÿÿìëÏ&&  sÿÿÿíëÏ&& ý ˆÿÿÿçëÏ&&  ÿÿ ëÅ&ó ÿÿÿëëÏ&& & {ÿÿÿëëÏ&& & ÿÿÿêëÏ&& & ¥ÿÿÿíëÏ&& & ÈÿÿÿéëÏ&& & ÏÿÿÿçëÏ&& ; äÿÿÿïëÏ&& & ùÿÿÿíëÏ& & ;ÿÿÿëëÏ&& ; #ÿÿÿíëÏ&& ; 8ÿÿÿðëÏ&& ; MÿÿÿìëÏ&& ; bÿÿÿíëÏ&& ; wÿÿÿíëÏ&& ; ŒÿÿÿçëÏ&& ; ¡ÿÿÿïëÏ&& & ¶ÿÿÿîëÏ&& & ËÿÿÿèìÏ&& ; àÿÿÿèëÏ&& 4 õÿÿÿéëÏ&& & ÿÿÿçëÏ&& & -ÿÿÿçëÏ&& & 4ÿÿÿçëÏ&& - IÿÿÿëëÏ&& & ^ÿÿÿìëÏ&& ; sÿÿÿíëÏ&& & ˆÿÿÿçëÏ&& - ÿÿÿëÐÎ&õ BÿÿÿëÐÎ&& O |ÿÿÿëÐÎ&& O ‘ÿÿÿêëÎ&& O ¦ÿÿÿðÕÎ&þ& H »ÿÿÿêãÎ&& O ÐÿÿÿçßÎ&& d åÿÿÿïÕÎ&& O úÿÿÿíÕÎ&& d ÿÿÿëÐÎ&& d $ÿÿÿíÐÎ&& d 9ÿÿÿíÐÎ&& d NÿÿÿìéÎ&& d cÿÿÿîÔÎ&& d xÿÿÿíÕÎ&& d ÿÿÿçÛÎ&& d ¢ÿÿÿïÐÎ&& O ·ÿÿÿîÐÎ&& O ÌÿÿÿèéÎ&& d áÿÿÿèãÎ&& ] öÿÿÿééÎ&& O ÿÿÿçÔÎ&& ] ÿÿÿçâÎ&& O 5ÿÿÿçâÎ&& V JÿÿÿëÐÎ&& O _ÿÿÿìÕÎ&& d tÿÿÿíØÎ&& O ‰ÿÿÿçÜÎ&& V žÿÿÿëÐÎ& iðÿÿÿëÐÎ&& o yÿÿÿëÐÎ&& o ŽÿÿÿèìÎ&& o £ÿÿÿðÕÎ&ù& l ¸ÿÿÿéãÎ&& o ÍÿÿÿçßÎ& & u âÿÿÿïÕÎ&& o ÷ÿÿÿíÕÎ& & u ÿÿÿëÐÎ& & u !ÿÿÿíÐÎ& & u 6ÿÿÿíÐÎ& & u KÿÿÿìéÎ& & u `ÿÿÿíÔÎ& & u uÿÿÿíÕÎ& & u ŠÿÿÿçÛÎ& & u ŸÿÿÿïÐÎ&& ´ oÿÿÿîÐÎ&& o ÉÿÿÿèìÎ& & u ÞÿÿÿèãÎ&& r óÿÿÿééÎ&& o ÿÿÿçÔÎ&& r ÿÿÿçÞÎ&& o 2ÿÿÿçÞÎ& & o GÿÿÿëÐÎ&& o \ÿÿÿìÕÎ& & u qÿÿÿíØÎ&& o †ÿÿÿçÖÎ& & o ›ÿÿÿëöÎ&UÿÿÿëõÎ&&&[ xÿÿÿëõÎ&&&[ ÿÿÿèõÎ&&&[ ¢ÿÿÿðöÎ&X& ·ÿÿÿêõÎ&&&[ ÌÿÿÿçõÎ&/&a áÿÿÿïõÎ&&&[ öÿÿÿíõÎ&/&[ ÿÿÿëõÎ&/&a ÿÿÿíõÎ&/&a 5ÿÿÿíõÎ&/&a JÿÿÿìõÎ&/&a _ÿÿÿíõÎ&/&a tÿÿÿíõÎ&/&a ‰ÿÿÿçõÎ&/&a žÿÿÿïõÎ&[&/ ³ÿÿÿîõÎ&[&/ ÈÿÿÿèõÎ&/&a ÝÿÿÿèöÎ&&&^ òÿÿÿéõÎ&&&[ ÿÿÿçõÎ&&&` ÿÿÿçõÎ&&&[ 1ÿÿÿçõÎ&/&[ FÿÿÿëõÎ&&&[ [ÿÿÿìõÎ&/&a pÿÿÿíõÎ&&&[ …ÿÿÿçõÎ&/&[ šÿÿÿëÐÎ&dÿÿÿëÐÎ&(&j zÿÿÿëÐÎ&(&j ÿÿÿèìÎ&(&j ¤ÿÿÿðÕÎ&&g ¹ÿÿÿéãÎ&(&j ÎÿÿÿçßÎ&1&p ãÿÿÿïÕÎ&(&j øÿÿÿíÕÎ&1&p ÿÿÿëÐÎ&1&p "ÿÿÿíÐÎ&1&p 7ÿÿÿíÐÎ&1&p LÿÿÿìéÎ&1&p aÿÿÿíÔÎ&1&p vÿÿÿíÕÎ&1&p ‹ÿÿÿçÛÎ&1&p  ÿÿÿïÐÎ&(&j µÿÿÿîÐÎ&(&j ÊÿÿÿèìÎ&1&p ßÿÿÿèàÎ&(&m ôÿÿÿééÎ&(&j ÿÿÿçÔÎ&(&m ÿÿÿçÞÎ&(&j 3ÿÿÿçÞÎ&1&j HÿÿÿëÐÎ&(&j ]ÿÿÿìÕÎ&1&p rÿÿÿíØÎ&(&j ‡ÿÿÿçÜÎ&1&j œÿÿÿëöÎ&sÿÿÿëöÎ&&&y xÿÿÿëöÎ&&&y ÿÿÿèöÎ&&&y ¢ÿÿÿðöÎ&&v ·ÿÿÿêöÎ&&&y ÌÿÿÿçöÎ&/& áÿÿÿïöÎ&&&y öÿÿÿíöÎ&/& ÿÿÿëöÎ&/& ÿÿÿíöÎ&/& 5ÿÿÿíöÎ&/& JÿÿÿìöÎ&/& _ÿÿÿíöÎ&/& tÿÿÿíöÎ&/& ‰ÿÿÿçöÎ&/& žÿÿÿïöÎ&&&y ³ÿÿÿîöÎ&&&y ÈÿÿÿèöÎ&/& ÝÿÿÿèöÎ&&&| òÿÿÿéöÎ&&&y ÿÿÿçöÎ&&&| ÿÿÿçöÎ&&&y 1ÿÿÿçöÎ&/&y FÿÿÿëöÎ&&&y [ÿÿÿìöÎ&/& pÿÿÿíöÎ&&&y …ÿÿÿçöÎ&/&y šÿÿÿëÐÎ&‚ÿÿÿëÐÎ&(&ˆ zÿÿÿëÐÎ&(&ˆ ÿÿÿèìÎ&(&ˆ ¤ÿÿÿðÕÎ&&… ¹ÿÿÿéãÎ&(&ˆ ÎÿÿÿçßÎ&1&Ž ãÿÿÿïÕÎ&(&ˆ øÿÿÿíÕÎ&1&Ž ÿÿÿëÐÎ&1&Ž "ÿÿÿíÐÎ&1&Ž 7ÿÿÿíÐÎ&1&Ž LÿÿÿìéÎ&1&Ž aÿÿÿíÔÎ&1&Ž vÿÿÿíÕÎ&1&Ž ‹ÿÿÿçÛÎ&1&Ž  ÿÿÿïÐÎ&(&ˆ µÿÿÿîÐÎ&(&ˆ ÊÿÿÿèìÎ&1&Ž ßÿÿÿèàÎ&(&‹ ôÿÿÿééÎ&(&ˆ ÿÿÿçÔÎ&(&‹ ÿÿÿçÞÎ&(&ˆ 3ÿÿÿçÞÎ&1&ˆ HÿÿÿëÐÎ&(&ˆ ]ÿÿÿìÕÎ&1&Ž rÿÿÿíØÎ&(&ˆ ‡ÿÿÿçÜÎ&1&ˆ œÿÿÿëÐÎ&”ÿÿÿëÐÎ&'&© yÿÿÿëÐÎ&'&© ŽÿÿÿèìÎ&'&© £ÿÿÿðÕÎ&'&ž ¸ÿÿÿéãÎ&'&© ÍÿÿÿçßÎ&0&³ âÿÿÿïÕÎ&'&© ÷ÿÿÿíÕÎ&0&³ ÿÿÿëÐÎ&0&³ !ÿÿÿíÐÎ&0&³ 6ÿÿÿíÐÎ&0&³ KÿÿÿìéÎ&0&³ `ÿÿÿíÔÎ&0&³ uÿÿÿíÕÎ&0&³ ŠÿÿÿçÛÎ&0&³ ŸÿÿÿïÐÎ&'&© ´ÿÿÿîÐÎ&'&© ÉÿÿÿèìÎ&0&³ ÞÿÿÿèãÎ&'&½ óÿÿÿééÎ&'&© ÿÿÿçÔÎ&'&½ ÿÿÿçÞÎ&'&© 2ÿÿÿçÞÎ&0&³ GÿÿÿëÐÎ&'&© \ÿÿÿìÕÎ&0&³ qÿÿÿíØÎ&'&© †ÿÿÿçÖÎ&0&³ ›ÿÿÿëÐÎ&ÄÿÿÿëÐÎ&(&Ù zÿÿÿëÐÎ&(&Ù ÿÿÿèìÎ&(&Ù ¤ÿÿÿðÕÎ&&Ï ¹ÿÿÿéãÎ&(&Ù ÎÿÿÿçßÎ&1&ã ãÿÿÿïÕÎ&(&Ù øÿÿÿíÕÎ&1&ã ÿÿÿëÐÎ&1&ã "ÿÿÿíÐÎ&1&ã 7ÿÿÿíÐÎ&1&ã LÿÿÿìéÎ&1&ã aÿÿÿíÔÎ&1&ã vÿÿÿíÕÎ&1&ã ‹ÿÿÿçÛÎ&1&ã  ÿÿÿïÐÎ&(&Ù µÿÿÿîÐÎ&(&Ù ÊÿÿÿèìÎ&1&ã ßÿÿÿèàÎ&(&í ôÿÿÿééÎ&(&Ù ÿÿÿçÔÎ&(&í ÿÿÿçÞÎ&(&Ù 3ÿÿÿçÞÎ&1&ã HÿÿÿëÐÎ&(&Ù ]ÿÿÿìÕÎ&1&ã rÿÿÿíØÎ&(&Ù ‡ÿÿÿçÜÎ&1&ã œÿÿÿëÐÎ&÷ÿÿÿëÐÎ&'&  yÿÿÿëÐÎ&'&  ŽÿÿÿèìÎ&'&  £ÿÿÿðÕÎ&&ÿ ¸ÿÿÿéãÎ&'&  ÍÿÿÿçßÎ&0&  âÿÿÿïÕÎ&'&  ÷ÿÿÿíÕÎ&0&  ÿÿÿëÐÎ&0&  !ÿÿÿíÐÎ&0&  6ÿÿÿíÐÎ&0&  KÿÿÿìéÎ&0&  `ÿÿÿíÔÎ&0&  uÿÿÿíÕÎ&0&  ŠÿÿÿçÛÎ&0&  ŸÿÿÿïÐÎ&'&  ´ÿÿÿîÐÎ&'&  ÉÿÿÿèìÎ&0&  ÞÿÿÿèãÎ&'&  óÿÿÿééÎ&'&  ÿÿÿçÔÎ&'&  ÿÿÿçÞÎ&'&  2ÿÿÿçÞÎ&0&  GÿÿÿëÐÎ&'&  \ÿÿÿìÕÎ&0&  qÿÿÿíØÎ&'&  †ÿÿÿçÖÎ&0&  ›ÿÿÿëÐÎ& &ÿÿÿëÐÎ&(& : zÿÿÿëÐÎ&(& : ÿÿÿèìÎ&(& : ¤ÿÿÿðÕÎ&& 0 ¹ÿÿÿéãÎ&(& : ÎÿÿÿçßÎ&1& D ãÿÿÿïÕÎ&(& : øÿÿÿíÕÎ&1& D ÿÿÿëÐÎ&1& D "ÿÿÿíÐÎ&1& D 7ÿÿÿíÐÎ&1& D LÿÿÿìéÎ&1& D aÿÿÿíÔÎ&1& D vÿÿÿíÕÎ&1& D ‹ÿÿÿçÛÎ&1& D  ÿÿÿïÐÎ&(& : µÿÿÿîÐÎ&(& : ÊÿÿÿèìÎ&1& D ßÿÿÿèàÎ&(& N ôÿÿÿééÎ&(& : ÿÿÿçÔÎ&(& N ÿÿÿçÞÎ&(& : 3ÿÿÿçÞÎ&1& D HÿÿÿëÐÎ&(& : ]ÿÿÿìÕÎ&1& D rÿÿÿíØÎ&(& : ‡ÿÿÿçÜÎ&1& D œÿÿ ê½& VÿÿÿëêÉ&)& h {ÿÿÿëêÉ&)& h ÿÿÿêêÉ&)& h ¥ÿÿÿðêÉ& & ^ ºÿÿÿéêÉ&)& h ÏÿÿÿçêÉ&2& r äÿÿÿïêÉ&)& h ùÿÿÿíêÉ& &2 rÿÿÿëêÉ&2& r #ÿÿÿíêÉ&2& r 8ÿÿÿðêÉ&2& r MÿÿÿìêÉ&2& r bÿÿÿíêÉ&2& r wÿÿÿíêÉ&2& r ŒÿÿÿçêÉ&2& r ¡ÿÿÿïêÉ&)& h ¶ÿÿÿîêÉ&)& h ËÿÿÿèìÉ&2& r àÿÿÿèêÉ&)& { õÿÿÿéêÉ&)& h ÿÿÿçêÉ&)& h ÿÿÿçêÉ&)& h 4ÿÿÿçêÉ&2& r IÿÿÿëêÉ&)& h ^ÿÿÿìêÉ&2& r sÿÿÿíêÉ&)& h ˆÿÿÿçêÉ&2& r ÿÿÿëöÎ& …ÿÿÿëöÎ&+& ™ |ÿÿÿëöÎ&+& ™ ‘ÿÿÿêöÎ&+& ™ ¦ÿÿÿðöÎ&"&  »ÿÿÿêöÎ&+& ™ ÐÿÿÿçöÎ&4& £ åÿÿÿïöÎ&+& ™ úÿÿÿíöÎ&4& £ ÿÿÿëöÎ&4& £ $ÿÿÿíöÎ&4& £ 9ÿÿÿíöÎ&4& £ NÿÿÿìöÎ&4& £ cÿÿÿîöÎ&4& £ xÿÿÿíöÎ&4& £ ÿÿÿçöÎ&4& £ ¢ÿÿÿïöÎ&+& ™ ·ÿÿÿîöÎ&+& ™ ÌÿÿÿèöÎ&4& £ áÿÿÿèöÎ&+& ­ öÿÿÿéöÎ&+& ™ ÿÿÿçöÎ&+& ­ ÿÿÿçöÎ&+& ™ 5ÿÿÿçöÎ&4& £ JÿÿÿëöÎ&+& ™ _ÿÿÿìöÎ&4& £ tÿÿÿíöÎ&+& ™ ‰ÿÿÿçöÎ&4& £ žÿÿÿëÐÎ& ·ÿÿÿëÐÎ&-& Ë |ÿÿÿëÐÎ&-& Ë ‘ÿÿÿêëÎ&-& Ë ¦ÿÿÿðÕÎ&$& Á »ÿÿÿêãÎ&-& Ë ÐÿÿÿçßÎ&6& Õ åÿÿÿïÕÎ&-& Ë úÿÿÿíÕÎ&6& Õ ÿÿÿëÐÎ&6& Õ $ÿÿÿíÐÎ&6& Õ 9ÿÿÿíÐÎ&6& Õ NÿÿÿìéÎ&6& Õ cÿÿÿîÔÎ&6& Õ xÿÿÿíÕÎ&6& Õ ÿÿÿçÛÎ&6& Õ ¢ÿÿÿïÐÎ&-& Ë ·ÿÿÿîÐÎ&-& Ë ÌÿÿÿèéÎ&6& Õ áÿÿÿèãÎ&-& ß öÿÿÿééÎ&-& Ë ÿÿÿçÔÎ&-& ß ÿÿÿçâÎ&-& Ë 5ÿÿÿçâÎ&6& Õ JÿÿÿëÐÎ&-& Ë _ÿÿÿìÕÎ&6& Õ tÿÿÿíØÎ&-& Ë ‰ÿÿÿçÜÎ&6& Õ žÿÿÿëÐÎ& èÿÿÿëÐÎ&+& ü |ÿÿÿëÐÎ&+& ü ‘ÿÿÿêëÎ&+& ü ¦ÿÿÿðÕÎ& ñ& »#ÿÿÿêãÎ&+& ü ÐÿÿÿçßÎ&4&  åÿÿÿïÕÎ&+& ü úÿÿÿíÕÎ& &4 ÿÿÿëÐÎ&4&  $ÿÿÿíÐÎ&4&  9ÿÿÿíÐÎ&4&  NÿÿÿìéÎ&4&  cÿÿÿîÔÎ&4&  xÿÿÿíÕÎ&4&  ÿÿÿçÛÎ&4&  ¢ÿÿÿïÐÎ&+& ü ·ÿÿÿîÐÎ&+& ü ÌÿÿÿèéÎ&4&  áÿÿÿèãÎ&+&  öÿÿÿééÎ&+& ü ÿÿÿçÔÎ&+&  ÿÿÿçâÎ&+& ü 5ÿÿÿçâÎ&4&  JÿÿÿëÐÎ&+& ü _ÿÿÿìÕÎ&4&  tÿÿÿíØÎ&+& ü ‰ÿÿÿçÜÎ&4&  žÿÿ ë½& ÿÿÿëëÉ&)& . {ÿÿÿëëÉ&)& . ÿÿÿêëÉ&)& . ¥ÿÿÿðëÉ& & $ ºÿÿÿéëÉ&)& . ÏÿÿÿçëÉ&2& 8 äÿÿÿïëÉ&)& . ùÿÿÿíëÉ&2& 8 ÿÿÿëëÉ&2& 8 #ÿÿÿíëÉ&2& 8 8ÿÿÿðëÉ&2& 8 MÿÿÿìëÉ&2& 8 bÿÿÿíëÉ&2& 8 wÿÿÿíëÉ&2& 8 ŒÿÿÿçëÉ&2& 8 ¡ÿÿÿïëÉ&)& . ¶ÿÿÿîëÉ&)& . ËÿÿÿèìÉ&2& 8 àÿÿÿèëÉ&)& B õÿÿÿéëÉ&)& . ÿÿÿçëÉ&)& B ÿÿÿçëÉ&)& . 4ÿÿÿçëÉ&2& 8 IÿÿÿëëÉ&)& . ^ÿÿÿìëÉ&2& 8 sÿÿÿíëÉ&)& . ˆÿÿÿçëÉ&2& 8 ÿÿÿëëÉ& JÿÿÿëëÉ&*& V {ÿÿÿëëÉ&*& V ÿÿÿêëÉ&*& V ¥ÿÿÿðëÉ&!& Q ºÿÿÿéëÉ&*& V ÏÿÿÿçëÉ&3& k äÿÿÿïëÉ&*& V ùÿÿÿíëÉ&3& k ÿÿÿëëÉ&3& k #ÿÿÿíëÉ&3& k 8ÿÿÿðëÉ&3& k MÿÿÿìëÉ&3& k bÿÿÿíëÉ&3& k wÿÿÿíëÉ&3& k ŒÿÿÿçëÉ&3& k ¡ÿÿÿïëÉ&*& V ¶ÿÿÿîëÉ&*& V ËÿÿÿèìÉ&3& k àÿÿÿèëÉ&*& d õÿÿÿéëÉ&*& V ÿÿÿçëÉ& &* VÿÿÿçëÉ&*& V 4ÿÿÿçëÉ&3& ] IÿÿÿëëÉ&*& V ^ÿÿÿìëÉ&3& k sÿÿÿíëÉ&*& V ˆÿÿÿçëÉ&3& ] ÿÿÿëÐÎ& rÿÿÿëÐÎ&,& € ~ÿÿÿëÐÎ&,& € “ÿÿÿêëÎ&,& € ¨ÿÿÿðÕÎ&#& y ½ÿÿÿéãÎ&,& € ÒÿÿÿçßÎ&5& • çÿÿÿïÕÎ&,& € üÿÿÿíÕÎ&5& • ÿÿÿëÐÎ&5& • &ÿÿÿíÐÎ&5& • ;ÿÿÿíÐÎ&5& • PÿÿÿëéÎ&5& • eÿÿÿîÔÎ&5& • zÿÿÿíÖÎ&5& • ÿÿÿçÛÎ&5& • ¤ÿÿÿïÐÎ&,& € ¹ÿÿÿîÐÎ&,& € ÎÿÿÿêéÎ&5& • ãÿÿÿèãÎ&,& Ž øÿÿÿçéÎ&,& € ÿÿÿçÔÎ&,& Ž "ÿÿÿçÞÎ&,& € 7ÿÿÿíÞÎ&5& ‡ LÿÿÿëÐÎ&,& € aÿÿÿìÕÎ&5& • vÿÿÿíØÎ&,& € ‹ÿÿÿçÜÎ&5& ‡  ÿÿÿëÐÎ& œÿÿÿëÐÎ&.& ª ~ÿÿÿëÐÎ&.& ª “ÿÿÿêëÎ&.& ª ¨ÿÿÿðÕÎ&%& £ ½ÿÿÿéãÎ&.& ª ÒÿÿÿçßÎ&7& ¿ çÿÿÿïÕÎ&.& ª üÿÿÿíÕÎ&7& ¿ ÿÿÿëÐÎ&7& ¿ &ÿÿÿíÐÎ&7& ¿ ;ÿÿÿíÐÎ&7& ¿ PÿÿÿëéÎ&7& ¿ eÿÿÿîÔÎ&7& ¿ zÿÿÿíÖÎ&7& ¿ ÿÿÿçÛÎ&7& ¿ ¤ÿÿÿïÐÎ&.& ª ¹ÿÿÿîÐÎ&.& ª ÎÿÿÿêéÎ&7& ¿ ãÿÿÿèãÎ&.& ¸ øÿÿÿçéÎ&.& ª ÿÿÿçÔÎ&.& ¸ "ÿÿÿçÞÎ&.& ª 7ÿÿÿíÞÎ&7& ± LÿÿÿëÐÎ&.& ª aÿÿÿìÕÎ&7& ¿ vÿÿÿíØÎ&.& ª ‹ÿÿÿçÜÎ&7& ±  ÿÿÿëÐÎ& ÆÿÿÿëÐÎ&,& Ô }ÿÿÿëÐÎ&,& Ô ’ÿÿÿêëÎ&,& Ô §ÿÿÿðÕÎ&#& Í ¼ÿÿÿéãÎ&,& Ô ÑÿÿÿçßÎ&5& é æÿÿÿïÕÎ&,& Ô ûÿÿÿíÕÎ&5& é ÿÿÿëÐÎ&5& é %ÿÿÿíÐÎ&5& é :ÿÿÿíÐÎ&5& é OÿÿÿëèÎ&5& é dÿÿÿîÔÎ&5& é yÿÿÿíÖÎ&5& é ŽÿÿÿçÛÎ&5& é £ÿÿÿïÐÎ&,& Ô ¸ÿÿÿîÐÎ&,& Ô ÍÿÿÿêéÎ&5& é âÿÿÿèãÎ&,& â ÷ÿÿÿçéÎ&,& Ô ÿÿÿçÔÎ&,& â !ÿÿÿçÞÎ&,& Ô 6ÿÿÿçÞÎ&5& Û KÿÿÿëÐÎ&,& Ô `ÿÿÿìÕÎ&5& é uÿÿÿíØÎ&,& Ô ŠÿÿÿçÖÎ&5& Û ŸÿÿÿíëÉ& ðÿÿÿëëÉ&*& þ {ÿÿÿëëÉ&*& þ ÿÿÿêëÉ&*& þ ¥ÿÿÿðëÉ&!& ÷ ºÿÿÿéëÉ&*& þ ÏÿÿÿçëÉ&3&  äÿÿÿïëÉ&*& þ ùÿÿÿíëÉ&3&  ÿÿÿëëÉ&3&  #ÿÿÿíëÉ&3&  8ÿÿÿðëÉ&3&  MÿÿÿìëÉ&3&  bÿÿÿíëÉ&3&  wÿÿÿíëÉ&3&  ŒÿÿÿçëÉ&3&  ¡ÿÿÿïëÉ&*& þ ¶ÿÿÿîëÉ&*& þ ËÿÿÿèìÉ&3&  àÿÿÿèëÉ&*&  õÿÿÿéëÉ&*& þ ÿÿÿçëÉ&*&  ÿÿÿçëÉ&*& þ 4ÿÿÿçëÉ&3&  IÿÿÿëëÉ&*& þ ^ÿÿÿìëÉ&3&  sÿÿÿíëÉ&*& þ ˆÿÿÿçëÉ&3&  ÿÿ ë½& ÿÿÿëëÉ&!& ' {ÿÿÿëëÉ&)& ' ÿÿÿêëÉ&)& ' ¥ÿÿÿðëÉ&!& º ÿÿÿéëÉ&)& ' ÏÿÿÿçëÉ&2& < äÿÿÿïëÉ&!& ù 'ÿÿÿíëÉ& <& 3ÿÿÿëëÉ&2& < #ÿÿÿíëÉ&2& < 8ÿÿÿðëÉ&2& < MÿÿÿìëÉ&2& < bÿÿÿíëÉ&2& < wÿÿÿíëÉ&2& < ŒÿÿÿçëÉ&2& < ¡ÿÿÿïëÉ&)& ' ¶ÿÿÿîëÉ&)& ' ËÿÿÿèìÉ&2& < àÿÿÿèëÉ&)& 5 õÿÿÿéëÉ&)& ' ÿÿÿçëÉ&)& 5 ÿÿÿçëÉ&)& ' 4ÿÿÿçëÉ&2& . IÿÿÿëëÉ&)& ' ^ÿÿÿìëÉ&2& < sÿÿÿíëÉ&)& ' ˆÿÿÿçëÉ&2& . ÿÿÿëÐÎ& CÿÿÿëÐÎ&+& P |ÿÿÿëÐÎ&+& P ‘ÿÿÿêëÎ&+& P ¦ÿÿÿðÕÎ&"& I »ÿÿÿêãÎ&+& P ÐÿÿÿçßÎ&4& e åÿÿÿïÕÎ&+& P úÿÿÿíÕÎ&4& e ÿÿÿëÐÎ&4& e $ÿÿÿíÐÎ&4& e 9ÿÿÿíÐÎ&4& e NÿÿÿìéÎ&4& e cÿÿÿîÔÎ&4& e xÿÿÿíÕÎ&4& e ÿÿÿçÛÎ&4& e ¢ÿÿÿïÐÎ&+& P ·ÿÿÿîÐÎ&+& P ÌÿÿÿèéÎ&4& e áÿÿÿèãÎ&+& ^ öÿÿÿééÎ&+& P ÿÿÿçÔÎ&+& ^ ÿÿÿçâÎ&+& P 5ÿÿÿçâÎ&4& W JÿÿÿëÐÎ&+& P _ÿÿÿìÕÎ&4& e tÿÿÿíØÎ&+& P ‰ÿÿÿçÜÎ&4& W žÿÿÿëÐÎ& iÿÿÿëÐÎ&&& o yÿÿÿëÐÎ&&& o ŽÿÿÿèìÎ&&& o £ÿÿÿðÕÎ&& l ¸ÿÿÿéãÎ&&& o ÍÿÿÿçßÎ&/& u âÿÿÿïÕÎ&&& o ÷ÿÿÿíÕÎ&/& u ÿÿÿëÐÎ&/& u !ÿÿÿíÐÎ&/& u 6ÿÿÿíÐÎ&/& u KÿÿÿìéÎ&/& u `ÿÿÿíÔÎ&/& u uÿÿÿíÕÎ&/& u ŠÿÿÿçÛÎ&/& u ŸÿÿÿïÐÎ&&& o ´ÿÿÿîÐÎ&&& o ÉÿÿÿèìÎ&/& u ÞÿÿÿèãÎ&&& r óÿÿÿééÎ&&& o ÿÿÿçÔÎ&&& r ÿÿÿçÞÎ&&& o 2ÿÿÿçÞÎ&/& o GÿÿÿëÐÎ&&& o \ÿÿÿìÕÎ&/& u qÿÿÿíØÎ&&& o †ÿÿÿçÖÎ&/& o ›ÿÿÿëöÎ&9VÿÿÿëõÎ&J&\ xÿÿÿëõÎ&J&\ ÿÿÿèõÎ&J&\ ¢ÿÿÿðöÎ&A&Y ·ÿÿÿêõÎ&J&\ ÌÿÿÿçõÎ&S&b áÿÿÿïõÎ&J&\ öÿÿÿíõÎ&S&b ÿÿÿëõÎ&S&b ÿÿÿíõÎ&S&b 5ÿÿÿíõÎ&S&b JÿÿÿìõÎ&S&b _ÿÿÿíõÎ&S&b tÿÿÿíõÎ&S&b ‰ÿÿÿçõÎ&S&b žÿÿÿïõÎ&J&\ ³ÿÿÿîõÎ&J&\ ÈÿÿÿèõÎ&S&b ÝÿÿÿèõÎ&J&_ òÿÿÿéõÎ&J&\ ÿÿÿçõÎ&_& *JÿÿÿçõÎ&J&\ 1ÿÿÿçõÎ&S&\ FÿÿÿëõÎ&J&\ [ÿÿÿìõÎ&S&b pÿÿÿíõÎ&J&\ …ÿÿÿçõÎ&S&\ šÿÿÿëÑÎ&e:ÿÿÿëÐÎ&L&k zÿÿÿëÐÎ&L&k ÿÿÿèìÎ&L&k ¤ÿÿÿðÕÎ&C&h ¹ÿÿÿéãÎ&L&k ÎÿÿÿçßÎ&U&q ãÿÿÿïÕÎ&L&k øÿÿÿíÕÎ&U&q ÿÿÿëÑÎ&U&q "ÿÿÿíÑÎ&U&q 7ÿÿÿíÑÎ&U&q LÿÿÿìéÎ&U&q aÿÿÿíÔÎ&U&q vÿÿÿíÕÎ&U&q ‹ÿÿÿçÛÎ&U&q  ÿÿÿïÐÎ&L&k µÿÿÿîÐÎ&L&k ÊÿÿÿèìÎ&U&q ßÿÿÿèàÍ&L&n ôÿÿÿééÎ&L&k ÿÿÿçÔÍ&L&n ÿÿÿçÞÎ&L&k 3ÿÿÿçÞÎ&U&k HÿÿÿëÐÎ&L&k ]ÿÿÿìÕÎ&U&q rÿÿÿíØÎ&L&k ‡ÿÿÿçÜÎ&U&k œÿÿÿëöÎ&8tÿÿÿëöÎ&J&z xÿÿÿëöÎ&J&z ÿÿÿèöÎ&J&z ¢ÿÿÿðöÎ&A&w ·ÿÿÿêöÎ&J&z ÌÿÿÿçöÎ&S&€ áÿÿÿïöÎ&J&z öÿÿÿíöÎ&S&€ ÿÿÿëöÎ&S&€ ÿÿÿíöÎ&S&€ 5ÿÿÿíöÎ&S&€ JÿÿÿìöÎ&S&€ _ÿÿÿíöÎ&S&€ tÿÿÿíöÎ&S&€ ‰ÿÿÿçöÎ&S&€ žÿÿÿïöÎ&J&z ³ÿÿÿîöÎ&J&z ÈÿÿÿèöÎ&S&€ ÝÿÿÿèöÎ&J&} òÿÿÿéöÎ&J&z ÿÿÿçöÎ&J&} ÿÿÿçöÎ&J&z 1ÿÿÿçöÎ&S&z FÿÿÿëöÎ&J&z [ÿÿÿìöÎ&S&€ pÿÿÿíöÎ&J&z …ÿÿÿçöÎ&S&z šÿÿÿëÐÎ&:ƒÿÿÿëÐÎ&L&‰ zÿÿÿëÐÎ&L&‰ ÿÿÿèìÎ&L&‰ ¤ÿÿÿðÕÎ&C&† ¹ÿÿÿéãÎ&L&‰ ÎÿÿÿçßÎ&U& ãÿÿÿïÕÎ&L&‰ øÿÿÿíÕÎ&U& ÿÿÿëÐÎ&U& "ÿÿÿíÐÎ&U& 7ÿÿÿíÐÎ&U& LÿÿÿìéÎ&U& aÿÿÿíÔÎ&U& vÿÿÿíÕÎ&U& ‹ÿÿÿçÛÎ&U&  ÿÿÿïÐÎ&L&‰ µÿÿÿîÐÎ&L&‰ ÊÿÿÿèìÎ&U& ßÿÿÿèàÎ&L&Œ ôÿÿÿééÎ&L&‰ ÿÿÿçÔÎ&L&Œ ÿÿÿçÞÎ&L&‰ 3ÿÿÿçÞÎ&U&‰ HÿÿÿëÐÎ&L&‰ ]ÿÿÿìÕÎ&U& rÿÿÿíØÎ&L&‰ ‡ÿÿÿçÜÎ&U&‰ œÿÿÿëÐÎ&9“ÿÿÿëÐÎ&K&¦ yÿÿÿëÐÎ&K&¦ ŽÿÿÿèìÎ&K&¦ £ÿÿÿðÕÎ&B& ¸ÿÿÿéãÎ&K&¦ ÍÿÿÿçßÎ&T&° âÿÿÿïÕÎ&K&¦ ÷ÿÿÿíÕÎ&¤& KÿÿÿëÐÎ&T&° !ÿÿÿíÐÎ&T&° 6ÿÿÿíÐÎ&T&° KÿÿÿìéÎ&T&° `ÿÿÿíÔÎ&T&° uÿÿÿíÕÎ&T&° ŠÿÿÿçÛÎ&T&° ŸÿÿÿïÐÎ&K&¦ ´ÿÿÿîÐÎ&K&¦ ÉÿÿÿèìÎ&T&° ÞÿÿÿèãÎ&K&º óÿÿÿééÎ&K&¦ ÿÿÿçÔÎ&K&º ÿÿÿçÞÎ&K&¦ 2ÿÿÿçÞÎ&T&° GÿÿÿëÐÎ&K&¦ \ÿÿÿìÕÎ&T&° qÿÿÿíØÎ&K&¦ †ÿÿÿçÖÎ&T&° ›ÿÿÿëÐÎ&:ÃÿÿÿëÐÎ&L&Ö zÿÿÿëÐÎ&L&Ö ÿÿÿèìÎ&L&Ö ¤ÿÿÿðÕÎ&C&Ì ¹ÿÿÿéãÎ&L&Ö ÎÿÿÿçßÎ&U&à ãÿÿÿïÕÎ&L&Ö øÿÿÿíÕÎ&U&à ÿÿÿëÐÎ&U&à "ÿÿÿíÐÎ&U&à 7ÿÿÿíÐÎ&U&à LÿÿÿìéÎ&U&à aÿÿÿíÔÎ&U&à vÿÿÿíÕÎ&U&à ‹ÿÿÿçÛÎ&U&à  ÿÿÿïÐÎ&L&Ö µÿÿÿîÐÎ&L&Ö ÊÿÿÿèìÎ&U&à ßÿÿÿèàÎ&L&ê ôÿÿÿééÎ&L&Ö ÿÿÿçÔÎ&L&ê ÿÿÿçÞÎ&L&Ö 3ÿÿÿçÞÎ&U&à HÿÿÿëÐÎ&L&Ö ]ÿÿÿìÕÎ&U&à rÿÿÿíØÎ&L&Ö ‡ÿÿÿçÜÎ&U&à œÿÿÿëÐÎ&9ôÿÿÿëÐÎ&K&  yÿÿÿëÐÎ&K&  ŽÿÿÿèìÎ&K&  £ÿÿÿðÕÎ&B&þ ¸ÿÿÿéãÎ&K&  ÍÿÿÿçßÎ&T&  âÿÿÿïÕÎ&K&  ÷ÿÿÿíÕÎ&T&  ÿÿÿëÐÎ&T&  !ÿÿÿíÐÎ&T&  6ÿÿÿíÐÎ&T&  KÿÿÿìéÎ&T&  `ÿÿÿíÔÎ&T&  uÿÿÿíÕÎ&T&  ŠÿÿÿçÛÎ&T&  ŸÿÿÿïÐÎ&K&  ´ÿÿÿîÐÎ&K&  ÉÿÿÿèìÎ&T&  ÞÿÿÿèãÎ&K&  óÿÿÿééÎ&K&  ÿÿÿçÔÎ&K&  ÿÿÿçÞÎ&K&  2ÿÿÿçÞÎ&T&  GÿÿÿëÐÎ&K&  \ÿÿÿìÕÎ&T&  qÿÿÿíØÎ&K&  †ÿÿÿçÖÎ&T&  ›ÿÿÿëÐÎ&: #ÿÿÿëÐÎ&L& 7 zÿÿÿëÐÎ&L& 7 ÿÿÿèìÎ&L& 7 ¤ÿÿÿðÕÎ&C& - ¹ÿÿÿéãÎ&L& 7 ÎÿÿÿçßÎ&U& A ãÿÿÿïÕÎ&L& 7 øÿÿÿíÕÎ&U& A ÿÿÿëÐÎ&U& A "ÿÿÿíÐÎ&U& A 7ÿÿÿíÐÎ&U& A LÿÿÿìéÎ&U& A aÿÿÿíÔÎ&U& A vÿÿÿíÕÎ&U& A ‹ÿÿÿçÛÎ&U& A  ÿÿÿïÐÎ&L& 7 µÿÿÿîÐÎ&L& 7 ÊÿÿÿèìÎ&U& A ßÿÿÿèàÎ&L& K ôÿÿÿééÎ&L& 7 ÿÿÿçÔÎ&L& K ÿÿÿçÞÎ&L& 7 3ÿÿÿçÞÎ&U& A HÿÿÿëÐÎ&L& 7 ]ÿÿÿìÕÎ&U& A rÿÿÿíØÎ&L& 7 ‡ÿÿÿçÜÎ&U& A œÿÿ ê½&; UÿÿÿëêÊ&M& h {ÿÿÿëêÊ&M& h ÿÿÿêêÊ&M& h ¥ÿÿÿðêÊ&D& ^ ºÿÿÿéêÊ&M& h ÏÿÿÿçêÉ&V& r äÿÿÿïêÊ&M& h ùÿÿÿíêÉ&V& r ÿÿÿëêÉ&V& r #ÿÿÿíêÉ&V& r 8ÿÿÿðêÉ&V& r MÿÿÿìêÉ&V& r bÿÿÿíêÉ&V& r wÿÿÿíêÉ&V& r ŒÿÿÿçêÉ&V& r ¡ÿÿÿïêÊ&M& h ¶ÿÿÿîêÊ&M& h ËÿÿÿèìÉ&V& r àÿÿÿèêÊ&M& { õÿÿÿéêÊ&M& h ÿÿÿçêÊ&M& { ÿÿÿçêÊ&M& h 4ÿÿÿçêÉ&V& r IÿÿÿëêÊ&M& h ^ÿÿÿìêÉ&V& r sÿÿÿíêÊ&M& h ˆÿÿÿçêÉ&V& r ÿÿÿëöÎ&= …ÿÿÿëöÎ&O& ™ |ÿÿÿëöÎ&O& ™ ‘ÿÿÿêöÎ&O& ™ ¦ÿÿÿðöÎ&F&  »ÿÿÿêöÎ&O& ™ ÐÿÿÿçöÎ&X& £ åÿÿÿïöÎ&O& ™ úÿÿÿíöÎ&X& £ ÿÿÿëöÎ&X& £ $ÿÿÿíöÎ&X& £ 9ÿÿÿíöÎ&X& £ NÿÿÿìöÎ&X& £ cÿÿÿîöÎ&X& £ xÿÿÿíöÎ&X& £ ÿÿÿçöÎ&X& £ ¢ÿÿÿïöÎ&O& ™ ·ÿÿÿîöÎ&O& ™ ÌÿÿÿèöÎ&X& £ áÿÿÿèöÎ&O& ­ öÿÿÿéöÎ&O& ™ ÿÿÿçöÎ&O& ­ ÿÿÿçöÎ&O& ™ 5ÿÿÿçöÎ&X& £ JÿÿÿëöÎ&O& ™ _ÿÿÿìöÎ&X& £ tÿÿÿíöÎ&O& ™ ‰ÿÿÿçöÎ&X& £ žÿÿÿëÐÎ&? ·ÿÿÿëÐÎ&Q& Ë |ÿÿÿëÐÎ&Q& Ë ‘ÿÿÿêëÎ&Q& Ë ¦ÿÿÿðÕÎ&H& Á »ÿÿÿêãÎ&Q& Ë ÐÿÿÿçßÎ&Z& Õ åÿÿÿïÕÎ&Q& Ë úÿÿÿíÕÎ&Z& Õ ÿÿÿëÐÎ&Z& Õ $ÿÿÿíÐÎ&Z& Õ 9ÿÿÿíÐÎ&Z& Õ NÿÿÿìéÎ&Z& Õ cÿÿÿîÔÎ&Z& Õ xÿÿÿíÕÎ&Z& Õ ÿÿÿçÛÎ&Z& Õ ¢ÿÿÿïÐÎ&Q& Ë ·ÿÿÿîÐÎ&Q& Ë ÌÿÿÿèéÎ&Z& Õ áÿÿÿèãÎ&Q& ß öÿÿÿééÎ&Q& Ë ÿÿÿçÔÎ&Q& ß ÿÿÿçâÎ&Q& Ë 5ÿÿÿçâÎ&Z& Õ JÿÿÿëÐÎ&Q& Ë _ÿÿÿìÕÎ&Z& Õ tÿÿÿíØÎ&Q& Ë ‰ÿÿÿçÜÎ&Z& Õ žÿÿÿëÐÎ&= éÿÿÿëÐÎ&O& ü |ÿÿÿëÐÎ&O& ü ‘ÿÿÿêëÎ&O& ü ¦ÿÿÿðÕÎ&F& ò »ÿÿÿêãÎ&O& ü ÐÿÿÿçßÎ&X&  åÿÿÿïÕÎ&O& ü úÿÿÿíÕÎ&X&  ÿÿÿëÐÎ&X&  $ÿÿÿíÐÎ&X&  9ÿÿÿíÐÎ&X&  NÿÿÿìéÎ&X&  cÿÿÿîÔÎ&X&  xÿÿÿíÕÎ&X&  ÿÿÿçÛÎ&X&  ¢ÿÿÿïÐÎ&O& ü ·ÿÿÿîÐÎ&O& ü ÌÿÿÿèéÎ&X&  áÿÿÿèãÎ&O&  öÿÿÿééÎ&O& ü ÿÿÿçÔÎ&O&  ÿÿÿçâÎ&O& ü 5ÿÿÿçâÎ&X&  JÿÿÿëÐÎ&O& ü _ÿÿÿìÕÎ&X&  tÿÿÿíØÎ&O& ü ‰ÿÿÿçÜÎ&X&  žÿÿ ë½&; ÿÿÿëëÊ&M& . {ÿÿÿëëÊ&M& . ÿÿÿêëÊ&M& . ¥ÿÿÿðëÊ&D& $ ºÿÿÿéëÊ&M& . ÏÿÿÿçëÉ&V& 8 äÿÿÿïëÊ&M& . ùÿÿÿíëÉ&V& 8 ÿÿÿëëÉ&V& 8 #ÿÿÿíëÉ&V& 8 8ÿÿÿðëÉ&V& 8 MÿÿÿìëÉ&V& 8 bÿÿÿíëÉ&V& 8 wÿÿÿíëÉ&V& 8 ŒÿÿÿçëÉ&V& 8 ¡ÿÿÿïëÊ&M& . ¶ÿÿÿîëÊ&M& . ËÿÿÿèìÉ&V& 8 àÿÿÿèëÊ&M& B õÿÿÿéëÊ&M& . ÿÿÿçëÊ&M& B ÿÿÿçëÊ&M& . 4ÿÿÿçëÉ&V& 8 IÿÿÿëëÊ&M& . ^ÿÿÿìëÉ&V& 8 sÿÿÿíëÊ&M& . ˆÿÿÿçëÉ&V& 8 ÿÿÿëëÊ&< IÿÿÿëëÊ&N& T {ÿÿÿëëÊ&N& T ÿÿÿêëÊ&N& T ¥ÿÿÿðëÊ&E& O ºÿÿÿéëÊ&N& T ÏÿÿÿçëÉ&W& i äÿÿÿïëÊ&N& T ùÿÿÿíëÉ&W& i ÿÿÿëëÉ&W& i #ÿÿÿíëÉ&W& i 8ÿÿÿðëÉ&W& i MÿÿÿìëÉ&W& i bÿÿÿíëÉ&W& i wÿÿÿíëÉ&W& i ŒÿÿÿçëÉ&W& i ¡ÿÿÿïëÊ&N& T ¶ÿÿÿîëÊ&N& T ËÿÿÿèìÉ&W& i àÿÿÿèëÊ&N& b õÿÿÿéëÊ&N& T ÿÿÿçëÊ&N& T ÿÿÿçëÊ&N& T 4ÿÿÿçëÉ&W& [ IÿÿÿëëÊ&N& T ^ÿÿÿìëÉ&W& i sÿÿÿíëÊ&N& T ˆÿÿÿçëÉ&W& [ ÿÿÿëÐÎ&> pÿÿÿëÐÎ&P& ~ ~ÿÿÿëÐÎ&P& ~ “ÿÿÿêëÎ&P& ~ ¨ÿÿÿðÕÎ&G& w ½ÿÿÿéãÎ&P& ~ ÒÿÿÿçßÎ&Y& “ çÿÿÿïÕÎ&P& ~ üÿÿÿíÕÎ&Y& “ ÿÿÿëÐÎ&Y& “ &ÿÿÿíÐÎ&Y& “ ;ÿÿÿíÐÎ&Y& “ PÿÿÿëéÎ&Y& “ eÿÿÿîÔÎ&Y& “ zÿÿÿíÖÎ&Y& “ ÿÿÿçÛÎ&Y& “ ¤ÿÿÿïÐÎ&P& ~ ¹ÿÿÿîÐÎ&P& ~ ÎÿÿÿêéÎ&Y& “ ãÿÿÿèãÎ&P& Œ øÿÿÿçéÎ&P& ~ ÿÿÿçÔÎ&P& Œ "ÿÿÿçÞÎ&P& ~ 7ÿÿÿíÞÎ&Y& … LÿÿÿëÐÎ&P& ~ aÿÿÿìÕÎ&Y& “ vÿÿÿíØÎ&P& ~ ‹ÿÿÿçÜÎ&Y& …  ÿÿÿëÐÎ&@ šÿÿÿëÐÎ&R& ¨ ~ÿÿÿëÐÎ&R& ¨ “ÿÿÿêëÎ&R& ¨ ¨ÿÿÿðÕÎ&I& ¡ ½ÿÿÿéãÎ&R& ¨ ÒÿÿÿçßÎ&[& ½ çÿÿÿïÕÎ&R& ¨ üÿÿÿíÕÎ&[& ½ ÿÿÿëÐÎ&[& ½ &ÿÿÿíÐÎ&[& ½ ;ÿÿÿíÐÎ&[& ½ PÿÿÿëéÎ&[& ½ eÿÿÿîÔÎ&[& ½ zÿÿÿíÖÎ&[& ½ ÿÿÿçÛÎ&[& ½ ¤ÿÿÿïÐÎ&R& ¨ ¹ÿÿÿîÐÎ&R& ¨ ÎÿÿÿêéÎ&[& ½ ãÿÿÿèãÎ&R& ¶ øÿÿÿçéÎ&R& ¨ ÿÿÿçÔÎ&R& ¶ "ÿÿÿçÞÎ&R& ¨ 7ÿÿÿíÞÎ&[& ¯ LÿÿÿëÐÎ&R& ¨ aÿÿÿìÕÎ&[& ½ vÿÿÿíØÎ&R& ¨ ‹ÿÿÿçÜÎ&[& ¯  ÿÿÿëÐÎ&> ÄÿÿÿëÐÎ&P& Ò }ÿÿÿëÐÎ&P& Ò ’ÿÿÿêëÎ&P& Ò §ÿÿÿðÕÎ&G& Ë ¼ÿÿÿéãÎ&P& Ò ÑÿÿÿçßÎ&Y& ç æÿÿÿïÕÎ&P& Ò ûÿÿÿíÕÎ&Y& ç ÿÿÿëÐÎ&Y& ç %ÿÿÿíÐÎ&Y& ç :ÿÿÿíÐÎ&Y& ç OÿÿÿëèÎ&Y& ç dÿÿÿîÔÎ&Y& ç yÿÿÿíÖÎ&Y& ç ŽÿÿÿçÛÎ&Y& ç £ÿÿÿïÐÎ&P& Ò ¸ÿÿÿîÐÎ&P& Ò ÍÿÿÿêéÎ&Y& ç âÿÿÿèãÎ&P& à ÷ÿÿÿçéÎ&P& Ò ÿÿÿçÔÎ&P& à !ÿÿÿçÞÎ&P& Ò 6ÿÿÿçÞÎ&Y& Ù KÿÿÿëÐÎ&P& Ò `ÿÿÿìÕÎ&Y& ç uÿÿÿíØÎ&P& Ò ŠÿÿÿçÖÎ&Y& Ù ŸÿÿÿíëÊ&< îÿÿÿëëÊ&N& ü {ÿÿÿëëÊ&N& ü ÿÿÿêëÊ&N& ü ¥ÿÿÿðëÊ&E& õ ºÿÿÿéëÊ&N& ü ÏÿÿÿçëÉ&W&  äÿÿÿïëÊ&N& ü ùÿÿÿíëÉ&W&  ÿÿÿëëÉ&W&  #ÿÿÿíëÉ&W&  8ÿÿÿðëÉ&W&  MÿÿÿìëÉ&W&  bÿÿÿíëÉ&W&  wÿÿÿíëÉ&W&  ŒÿÿÿçëÉ&W&  ¡ÿÿÿïëÊ&N& ü ¶ÿÿÿîëÊ&N& ü ËÿÿÿèìÉ&W&  àÿÿÿèëÊ&N&  õÿÿÿéëÊ&N& ü ÿÿÿçëÊ&N&  ÿÿÿçëÊ&N& ü 4ÿÿÿçëÉ&W&  IÿÿÿëëÊ&N& ü ^ÿÿÿìëÉ&W&  sÿÿÿíëÊ&N& ü ˆÿÿÿçëÉ&W&  ÿÿ ë½&; ÿÿÿëëÊ& %& {MÿÿÿëëÊ&M& % ÿÿÿêëÊ&M& % ¥ÿÿÿðëÊ&D&  ºÿÿÿéëÊ&M& % ÏÿÿÿçëÉ&V& : äÿÿÿïëÊ&M& % ùÿÿÿíëÉ&V& : ÿÿÿëëÉ&V& : #ÿÿÿíëÉ&V& : 8ÿÿÿðëÉ&V& : MÿÿÿìëÉ&V& : bÿÿÿíëÉ&V& : wÿÿÿíëÉ&V& : ŒÿÿÿçëÉ&V& : ¡ÿÿÿïëÊ&M& % ¶ÿÿÿîëÊ&M& % ËÿÿÿèìÉ&V& : àÿÿÿèëÊ& 3& õMÿÿÿéëÊ&M& % ÿÿÿçëÊ&M& 3 ÿÿÿçëÊ&M& % 4ÿÿÿçëÉ&V& , IÿÿÿëëÊ&M& % ^ÿÿÿìëÉ&V& : sÿÿÿíëÊ&M& % ˆÿÿÿçëÉ&V& , ÿÿÿëÐÎ&= AÿÿÿëÐÎ&O& N |ÿÿÿëÐÎ&O& N ‘ÿÿÿêëÎ&O& N ¦ÿÿÿðÕÎ&F& G »ÿÿÿêãÎ&O& N ÐÿÿÿçßÎ&X& c åÿÿÿïÕÎ&O& N úÿÿÿíÕÎ&X& c ÿÿÿëÐÎ&X& c $ÿÿÿíÐÎ&X& c 9ÿÿÿíÐÎ&X& c NÿÿÿìéÎ&X& c cÿÿÿîÔÎ&X& c xÿÿÿíÕÎ&X& c ÿÿÿçÛÎ&X& c ¢ÿÿÿïÐÎ&O& N ·ÿÿÿîÐÎ&O& N ÌÿÿÿèéÎ&X& c áÿÿÿèãÎ&O& \ öÿÿÿééÎ&O& N ÿÿÿçÔÎ&O& \ ÿÿÿçâÎ&O& N 5ÿÿÿçâÎ&X& U JÿÿÿëÐÎ&O& N _ÿÿÿìÕÎ&X& c tÿÿÿíØÎ&O& N ‰ÿÿÿçÜÎ&X& U žÿÿÿëÐÎ&8 jÿÿÿëÐÎ&J& p yÿÿÿëÐÎ&J& p ŽÿÿÿèìÎ&J& p £ÿÿÿðÕÎ&A& m ¸ÿÿÿéãÎ&J& p ÍÿÿÿçßÎ&S& v âÿÿÿïÕÎ&J& p ÷ÿÿÿíÕÎ&S& v ÿÿÿëÐÎ&S& v !ÿÿÿíÐÎ&S& v 6ÿÿÿíÐÎ&S& v KÿÿÿìéÎ&S& v `ÿÿÿíÔÎ&S& v uÿÿÿíÕÎ&S& v ŠÿÿÿçÛÎ&S& v ŸÿÿÿïÐÎ&J& p ´ÿÿÿîÐÎ&J& p ÉÿÿÿèìÎ&S& v ÞÿÿÿèãÎ&J& s óÿÿÿééÎ&J& p ÿÿÿçÔÎ&J& s ÿÿÿçÞÎ&J& p 2ÿÿÿçÞÎ&S& p GÿÿÿëÐÎ&J& p \ÿÿÿìÕÎ&S& v qÿÿÿíØÎ&J& p †ÿÿÿçÖÎ&S& p ›ÿÿÿëöÎ&U\ÿÿÿëõÎ&[& ymÿÿÿëõÎ&m&[ ÿÿÿèõÎ&m&[ ¢ÿÿÿðöÎ&e& ·XÿÿÿêõÎ&m&[ ÌÿÿÿçõÎ&v&a áÿÿÿïõÎ&m&[ öÿÿÿíõÎ&v&a ÿÿÿëõÎ&v&a ÿÿÿíõÎ&v&a 5ÿÿÿíõÎ&v&a JÿÿÿìõÎ&v&a _ÿÿÿíõÎ&v&a tÿÿÿíõÎ&v&a ‰ÿÿÿçõÎ&v&a žÿÿÿïõÎ&[&m ³ÿÿÿîõÎ&m&[ ÈÿÿÿèõÎ&v&a ÝÿÿÿèöÎ&m&^ òÿÿÿéõÎ&m&[ ÿÿÿçöÎ&m&^ ÿÿÿçõÎ&m&[ 1ÿÿÿçõÎ&v&[ FÿÿÿëõÎ&m&[ [ÿÿÿìõÎ&v&a pÿÿÿíõÎ&m&[ …ÿÿÿçõÎ&v&[ šÿÿÿëÐÎ&d^ÿÿÿëÐÎ&o&j zÿÿÿëÐÎ&o&j ÿÿÿèìÎ&o&j ¤ÿÿÿðÕÎ&f&g ¹ÿÿÿéãÎ&o&j ÎÿÿÿçßÎ&x&p ãÿÿÿïÕÎ&o&j øÿÿÿíÕÎ&x&p ÿÿÿëÐÎ&x&p "ÿÿÿíÐÎ&x&p 7ÿÿÿíÐÎ&x&p LÿÿÿìéÎ&x&p aÿÿÿíÔÎ&x&p vÿÿÿíÕÎ&x&p ‹ÿÿÿçÛÎ&x&p  ÿÿÿïÐÎ&o&j µÿÿÿîÐÎ&o&j ÊÿÿÿèìÎ&x&p ßÿÿÿèàÎ&o&m ôÿÿÿééÎ&o&j ÿÿÿçÔÎ&o&m ÿÿÿçÞÎ&o&j 3ÿÿÿçÞÎ&x&j HÿÿÿëÐÎ&o&j ]ÿÿÿìÕÎ&x&p rÿÿÿíØÎ&o&j ‡ÿÿÿçÜÎ&x&j œÿÿÿëöÎ&\sÿÿÿëöÎ&m& yyÿÿÿëöÎ&m&y ÿÿÿèöÎ&m&y ¢ÿÿÿðöÎ&e&v ·ÿÿÿêöÎ&m&y ÌÿÿÿçöÎ&v& áÿÿÿïöÎ&m&y öÿÿÿíöÎ&v& ÿÿÿëöÎ&v& ÿÿÿíöÎ&v& 5ÿÿÿíöÎ&v& JÿÿÿìöÎ&v& _ÿÿÿíöÎ&v& tÿÿÿíöÎ&v& ‰ÿÿÿçöÎ&v& žÿÿÿïöÎ&m&y ³ÿÿÿîöÎ&m&y ÈÿÿÿèöÎ&v& ÝÿÿÿèöÎ&m&| òÿÿÿéöÎ&m&y ÿÿÿçöÎ&m&| ÿÿÿçöÎ&m&y 1ÿÿÿçöÎ&v&y FÿÿÿëöÎ&m&y [ÿÿÿìöÎ&v& pÿÿÿíöÎ&m&y …ÿÿÿçöÎ&v&y šÿÿÿëÐÎ&^‚ÿÿÿëÐÎ&o&ˆ zÿÿÿëÐÎ&o&ˆ ÿÿÿèìÎ&o&ˆ ¤ÿÿÿðÕÎ&f&… ¹ÿÿÿéãÎ&o&ˆ ÎÿÿÿçßÎ&x&Ž ãÿÿÿïÕÎ&o&ˆ øÿÿÿíÕÎ&x&Ž ÿÿÿëÐÎ&x&Ž "ÿÿÿíÐÎ&x&Ž 7ÿÿÿíÐÎ&x&Ž LÿÿÿìéÎ&x&Ž aÿÿÿíÔÎ&x&Ž vÿÿÿíÕÎ&x&Ž ‹ÿÿÿçÛÎ&x&Ž  ÿÿÿïÐÎ&o&ˆ µÿÿÿîÐÎ&o&ˆ ÊÿÿÿèìÎ&x&Ž ßÿÿÿèàÎ&o&‹ ôÿÿÿééÎ&o&ˆ ÿÿÿçÔÎ&o&‹ ÿÿÿçÞÎ&o&ˆ 3ÿÿÿçÞÎ&x&ˆ HÿÿÿëÐÎ&o&ˆ ]ÿÿÿìÕÎ&x&Ž rÿÿÿíØÎ&o&ˆ ‡ÿÿÿçÜÎ&x&ˆ œÿÿÿëÐÎ&]šÿÿÿëÐÎ&n&¬ yÿÿÿëÐÎ&n&¬ ŽÿÿÿèìÎ&n&¬ £ÿÿÿðÕÍ& ¸&e ÿÿÿéãÎ&n&¬ ÍÿÿÿçßÎ&w&¶ âÿÿÿïÕÎ&n&¬ ÷ÿÿÿíÕÎ&w&¶ ÿÿÿëÐÎ&w&¶ !ÿÿÿíÐÎ&w&¶ 6ÿÿÿíÐÎ&w&¶ KÿÿÿìéÎ&w&¶ `ÿÿÿíÔÎ&w&¶ uÿÿÿíÕÎ&w&¶ ŠÿÿÿçÛÎ&w&¶ ŸÿÿÿïÐÎ&n& ´¬ÿÿÿîÐÎ&¬&n ÉÿÿÿèìÎ&w&¶ ÞÿÿÿèãÎ&n&À óÿÿÿééÎ&n&¬ ÿÿÿçÔÎ&n&À ÿÿÿçÞÎ&n&¬ 2ÿÿÿçÞÎ&w&¶ GÿÿÿëÐÎ&n&¬ \ÿÿÿìÕÎ&w&¶ qÿÿÿíØÎ&n&¬ †ÿÿÿçÜÎ& š&¶wÿÿÿëÐÎ&^ÃÿÿÿëÐÎ&o&Ü zÿÿÿëÐÎ&o&Ü ÿÿÿèìÎ&o&Ü ¤ÿÿÿðÕÎ&f&Ò ¹ÿÿÿéãÎ&o&Ü ÎÿÿÿçßÎ&x&æ ãÿÿÿïÕÎ&o&Ü øÿÿÿíÕÎ&x&æ ÿÿÿëÐÎ&x&æ "ÿÿÿíÐÎ&x&æ 7ÿÿÿíÐÎ&x&æ LÿÿÿìéÎ&x&æ aÿÿÿíÔÎ&x&æ vÿÿÿíÕÎ&x&æ ‹ÿÿÿçÛÎ&x&æ  ÿÿÿïÐÎ&o&Ü µÿÿÿîÐÎ&o&Ü ÊÿÿÿèìÎ&x&æ ßÿÿÿèàÎ&o&ð ôÿÿÿééÎ&o&Ü ÿÿÿçÔÎ&o&ð ÿÿÿçÞÎ&o&Ü 3ÿÿÿçÞÎ&x&æ HÿÿÿëÐÎ&o&Ü ]ÿÿÿìÕÎ&x&æ rÿÿÿíØÎ&o&Ü ‡ÿÿÿçÜÎ&x&æ œÿÿÿëÐÎ&]÷ÿÿÿëÐÎ& &n yÿÿÿëÐÎ&n&  ŽÿÿÿèìÎ&n&  £ÿÿÿðÕÎ&ÿ&f ¹ÿÿÿéãÎ&n&  ÍÿÿÿçßÎ&w&  âÿÿÿïÕÎ&n&  ÷ÿÿÿíÕÎ&w&  ÿÿÿëÐÎ&w&  !ÿÿÿíÐÎ&w&  6ÿÿÿíÐÎ&w&  KÿÿÿìéÎ&w&  `ÿÿÿíÔÎ&w&  uÿÿÿíÕÎ&w&  ŠÿÿÿçÛÎ&w&  ŸÿÿÿïÐÎ&n&  ´ÿÿÿîÐÎ&n&  ÉÿÿÿèìÎ&w&  ÞÿÿÿèãÎ&n&  óÿÿÿééÎ&n&  ÿÿÿçÔÎ&n&  ÿÿÿçÞÎ&n&  2ÿÿÿçÞÎ&w&  GÿÿÿëÐÎ&n&  \ÿÿÿìÕÎ&w&  qÿÿÿíØÎ&n&  †ÿÿÿçÖÎ&w&  ›ÿÿÿëÐÎ&^ &ÿÿÿëÐÎ&o& = zÿÿÿëÐÎ&o& = ÿÿÿèìÎ&o& = ¤ÿÿÿðÕÎ&f& 3 ¹ÿÿÿéãÎ&o& = ÎÿÿÿçßÎ&x& G ãÿÿÿïÕÎ&o& = øÿÿÿíÕÎ&x& G ÿÿÿëÐÎ&x& G "ÿÿÿíÐÎ&x& G 7ÿÿÿíÐÎ&x& G LÿÿÿìéÎ&x& G aÿÿÿíÔÎ&x& G vÿÿÿíÕÎ&x& G ‹ÿÿÿçÛÎ&x& G  ÿÿÿïÐÎ&o& = µÿÿÿîÐÎ&o& = ÊÿÿÿèìÎ&x& G ßÿÿÿèàÎ&o& Q ôÿÿÿééÎ&o& = ÿÿÿçÔÎ&o& Q ÿÿÿçÞÎ&o& = 3ÿÿÿçÞÎ&x& G HÿÿÿëÐÎ&o& = ]ÿÿÿìÕÎ&x& G rÿÿÿíØÎ&o& = ‡ÿÿÿçÜÎ&x& G œÿÿ ê¿&_ WÿÿÿëêÉ&p& m {ÿÿÿëêÉ&p& m ÿÿÿêêÉ&p& m ¥ÿÿÿðêÉ&g& c ºÿÿÿéêÉ&p& m ÏÿÿÿçêÌ&y& w äÿÿÿïêÉ&p& m ùÿÿÿíêÌ&y& w ÿÿÿëêÌ&y& w #ÿÿÿíêÌ&y& w 8ÿÿÿðêÌ&y& w MÿÿÿìêÌ&y& w bÿÿÿíêÌ&y& w wÿÿÿíêÌ&y& w ŒÿÿÿçêÌ&y& w ¡ÿÿÿïêÉ&p& m ¶ÿÿÿîêÉ&p& m ËÿÿÿèìÌ&y& w àÿÿÿèêÉ&p& € õÿÿÿéêÉ&p& m ÿÿÿçêÉ&p& € ÿÿÿçêÉ&p& m 4ÿÿÿçêÌ&y& w IÿÿÿëêÉ&p& m ^ÿÿÿìêÌ&y& w sÿÿÿíêÉ&p& m ˆÿÿÿçêÌ&y& w ÿÿÿëöÎ&a ŠÿÿÿëöÎ&r& ž ƒÿÿÿëöÎ&r& ž ˜ÿÿÿêöÎ&r& ž ­ÿÿÿíöÎ&i& ” ÂÿÿÿéöÎ&r& ž ×ÿÿÿçöÎ&{& ¨ ìÿÿÿíöÎ&r& ž ÿÿÿíöÎ&{& ¨ ÿÿÿëöÎ&{& ¨ +ÿÿÿíöÎ&{& ¨ @ÿÿÿìöÎ&{& ¨ UÿÿÿìöÎ&{& ¨ jÿÿÿîöÎ&{& ¨ ÿÿÿíöÎ&{& ¨ ”ÿÿÿèöÎ&{& ¨ ©ÿÿÿïöÎ&r& ž ¾ÿÿÿîöÎ&r& ž ÓÿÿÿêöÎ&{& ¨ èÿÿÿêöÎ&r& ² ýÿÿÿìöÎ&r& ž ÿÿÿêöÎ&r& ² 'ÿÿÿëöÎ&r& ž <ÿÿÿëöÎ&{& ¨ QÿÿÿëöÎ&r& ž fÿÿÿíöÎ&{& ¨ {ÿÿÿðöÎ&r& ž ÿÿÿçöÎ&{& ¨ ¥ÿÿÿëÐÎ&c ¼ÿÿÿëÐÎ&t& Ð ƒÿÿÿëÐÎ&t& Ð ˜ÿÿÿêëÎ&t& Ð ­ÿÿÿíÕÎ&k& Æ ÂÿÿÿéãÎ&t& Ð ×ÿÿÿçßÎ&}& Ú ìÿÿÿíÕÎ&t& Ð ÿÿÿíÕÎ&}& Ú ÿÿÿëÐÎ&}& Ú +ÿÿÿíÐÎ&}& Ú @ÿÿÿìÐÎ&}& Ú UÿÿÿìéÎ&}& Ú jÿÿÿîÔÎ&}& Ú ÿÿÿíÕÎ&}& Ú ”ÿÿÿèÛÎ&}& Ú ©ÿÿÿïÐÎ&t& Ð ¾ÿÿÿîÐÎ&t& Ð ÓÿÿÿêéÎ&}& Ú èÿÿÿêãÎ&t& ä ýÿÿÿìéÎ&t& Ð ÿÿÿêÔÎ&t& ä 'ÿÿÿëâÎ&t& Ð <ÿÿÿëáÎ&}& Ú QÿÿÿëÐÎ&t& Ð fÿÿÿíÕÎ&}& Ú {ÿÿÿðØÎ&t& Ð ÿÿÿçÜÎ&}& Ú ¥ÿÿÿëÐÎ& íaÿÿÿëÐÎ&r&  ƒÿÿÿëÐÎ&r&  ˜ÿÿÿêëÎ&r&  ­ÿÿÿíÕÎ&i& ÷ ÂÿÿÿéãÎ&r&  ×ÿÿÿçßÎ&{&  ìÿÿÿíÕÎ&r&  ÿÿÿíÕÎ&{&  ÿÿÿëÐÎ&{&  +ÿÿÿíÐÎ&{&  @ÿÿÿìÐÎ&{&  UÿÿÿìéÎ&{&  jÿÿÿîÔÎ&{&  ÿÿÿíÕÎ&{&  ”ÿÿÿèÛÎ&{&  ©ÿÿÿïÐÎ&r&  ¾ÿÿÿîÐÎ&r&  ÓÿÿÿêéÎ&{&  èÿÿÿêãÎ&r&  ýÿÿÿìéÎ&r&  ÿÿÿêÔÎ&r&  'ÿÿÿëâÎ&r&  <ÿÿÿëáÎ&{&  QÿÿÿëÐÎ&r&  fÿÿÿíÕÎ&{&  {ÿÿÿðØÎ&r&  ÿÿÿçÜÎ&{&  ¥ÿÿ ë¿&_ ÿÿÿëëÉ&p& 3 {ÿÿÿëëÉ&p& 3 ÿÿÿêëÉ&p& 3 ¥ÿÿÿðëÉ&g& ) ºÿÿÿéëÉ&p& 3 ÏÿÿÿçëÌ&y& = äÿÿÿïëÉ&p& 3 ùÿÿÿíëÌ&y& = ÿÿÿëëÌ&y& = #ÿÿÿíëÌ&y& = 8ÿÿÿðëÌ&y& = MÿÿÿìëÌ&y& = bÿÿÿíëÌ&y& = wÿÿÿíëÌ&y& = ŒÿÿÿçëÌ&y& = ¡ÿÿÿïëÉ&p& 3 ¶ÿÿÿîëÉ&p& 3 ËÿÿÿèìÌ&y& = àÿÿÿèëÉ&p& G õÿÿÿéëÉ&p& 3 ÿÿÿçëÉ&p& G ÿÿÿçëÉ&p& 3 4ÿÿÿçëÌ&y& = IÿÿÿëëÉ&p& 3 ^ÿÿÿìëÌ&y& = sÿÿÿíëÉ&p& 3 ˆÿÿÿçëÌ&y& = ÿÿÿëëÉ&` KÿÿÿëëÌ& Y&q {ÿÿÿëëÌ&q& Y ÿÿÿêëÌ&q& Y ¥ÿÿÿðëÌ&h& R ºÿÿÿéëÌ&q& Y ÏÿÿÿçëÌ&z& n äÿÿÿïëÌ&q& Y ùÿÿÿíëÌ& &z nÿÿÿëëÌ&z& n #ÿÿÿíëÌ&z& n 8ÿÿÿðëÌ&z& n MÿÿÿìëÌ&z& n bÿÿÿíëÌ&z& n wÿÿÿíëÌ&z& n ŒÿÿÿçëÌ&z& n ¡ÿÿÿïëÌ& Y& ¶qÿÿÿîëÌ&z& Y ËÿÿÿèìÌ&z& n àÿÿÿèëÌ&q& g õÿÿÿéëÌ&q& Y ÿÿÿçëÌ&q& Y ÿÿÿçëÌ&q& Y 4ÿÿÿçëÌ&z& ` IÿÿÿëëÌ&q& Y ^ÿÿÿìëÌ&z& n sÿÿÿíëÌ&q& Y ˆÿÿÿçëÌ&z& ` ÿÿÿëÐÎ&b uÿÿÿëÐÎ&s& ƒ …ÿÿÿëÐÎ&s& ƒ šÿÿÿêëÎ&s& ƒ ¯ÿÿÿíÕÎ&j& | ÄÿÿÿéãÎ&s& ƒ ÙÿÿÿçßÎ&|& ˜ îÿÿÿìÕÎ&s& ƒ ÿÿÿíÕÎ&|& ˜ ÿÿÿëÐÎ&|& ˜ -ÿÿÿíÐÎ&|& ˜ BÿÿÿìÐÎ&|& ˜ WÿÿÿìéÎ&|& ˜ lÿÿÿîÔÎ&|& ˜ ÿÿÿîÕÎ&|& ˜ –ÿÿÿçÛÎ&|& ˜ «ÿÿÿïÐÎ&s& ƒ ÀÿÿÿîÐÎ&s& ƒ ÕÿÿÿêéÎ&|& ˜ êÿÿÿêäÎ&s& ‘ ÿÿÿÿìéÎ&s& ƒ ÿÿÿêÔÎ&s& ‘ )ÿÿÿêÞÎ&s& ƒ >ÿÿÿëÞÎ&|& Š SÿÿÿëÐÎ&s& ƒ hÿÿÿíÕÎ&|& ˜ }ÿÿÿðØÎ&s& ƒ ’ÿÿÿçÜÎ&|& Š §ÿÿÿëÐÎ&d ŸÿÿÿëÐÎ&u& ­ …ÿÿÿëÐÎ&u& ­ šÿÿÿêëÎ&u& ­ ¯ÿÿÿíÕÎ&l& ¦ ÄÿÿÿéãÎ&u& ­ ÙÿÿÿçßÎ&~&  îÿÿÿìÕÎ&u& ­ ÿÿÿíÕÎ&~&  ÿÿÿëÐÎ&~&  -ÿÿÿíÐÎ&~&  BÿÿÿìÐÎ&~&  WÿÿÿìéÎ&~&  lÿÿÿîÔÎ&~&  ÿÿÿîÕÎ&~&  –ÿÿÿçÛÎ&~&  «ÿÿÿïÐÎ&u& ­ ÀÿÿÿîÐÎ&u& ­ ÕÿÿÿêéÎ&~&  êÿÿÿêäÎ&u& » ÿÿÿÿìéÎ&u& ­ ÿÿÿêÔÎ&u& » )ÿÿÿêÞÎ&u& ­ >ÿÿÿëÞÎ&~& ´ SÿÿÿëÐÎ&u& ­ hÿÿÿíÕÎ&~&  }ÿÿÿðØÎ&u& ­ ’ÿÿÿçÜÎ&~& ´ §ÿÿÿëÑÎ&b ÉÿÿÿëÐÎ&s& × „ÿÿÿëÐÎ&s& × ™ÿÿÿêëÎ&s& × ®ÿÿÿíÕÎ&j& Ð ÃÿÿÿéãÎ&s& × ØÿÿÿçßÎ&|& ì íÿÿÿìÕÎ&s& × ÿÿÿíÕÎ&|& ì ÿÿÿëÐÎ&|& ì ,ÿÿÿíÐÎ&|& ì AÿÿÿìÐÎ&|& ì VÿÿÿìéÎ&|& ì kÿÿÿîÔÎ&|& ì €ÿÿÿîÕÎ&|& ì •ÿÿÿèÛÎ&|& ì ªÿÿÿïÐÎ&s& × ¿ÿÿÿîÐÎ&s& × ÔÿÿÿêéÎ&|& ì éÿÿÿêãÎ&s& å þÿÿÿìéÎ&s& × ÿÿÿêÔÎ&s& å (ÿÿÿêÞÎ&s& × =ÿÿÿëÞÎ&|& Þ RÿÿÿëÐÎ&s& × gÿÿÿíÕÎ&|& ì |ÿÿÿðØÎ&s& × ‘ÿÿÿç×Î&|& Þ ¦ÿÿÿíëÉ&` ðÿÿÿëëÌ&q&  {ÿÿÿëëÌ&q&  ÿÿÿêëÌ&q&  ¥ÿÿÿðëÌ&h& ú ºÿÿÿéëÌ&q&  ÏÿÿÿçëÌ&z&  äÿÿÿïëÌ&q&  ùÿÿÿíëÌ&z&  ÿÿÿëëÌ&z&  #ÿÿÿíëÌ&z&  8ÿÿÿðëÌ&z&  MÿÿÿìëÌ&z&  bÿÿÿíëÌ&z&  wÿÿÿíëÌ&z&  ŒÿÿÿçëÌ&z&  ¡ÿÿÿïëÌ&q&  ¶ÿÿÿîëÌ&q&  ËÿÿÿèìÌ&z&  àÿÿÿèëÌ&q&  õÿÿÿéëÌ&q&  ÿÿÿçëÌ&q&  ÿÿÿçëÌ&q&  4ÿÿÿçëÌ&z&  IÿÿÿëëÌ&q&  ^ÿÿÿìëÌ&z&  sÿÿÿíëÌ&q&  ˆÿÿÿçëÌ&z&  ÿÿ ë¿&_ ÿÿÿëëÉ&p& * {ÿÿÿëëÉ&p& * ÿÿÿêëÉ&p& * ¥ÿÿÿðëÌ& & ºhÿÿÿéëÉ&p& * ÏÿÿÿçëÌ&y& ? äÿÿÿïëÉ&p& * ùÿÿÿíëÉ&p&  ?ÿÿÿëëÌ&y& ? #ÿÿÿíëÌ&y& ? 8ÿÿÿðëÌ&y& ? MÿÿÿìëÌ&y& ? bÿÿÿíëÌ&y& ? wÿÿÿíëÌ&y& ? ŒÿÿÿçëÌ&y& ? ¡ÿÿÿïëÉ&p& ¶ 'ÿÿÿîëÉ&p& * ËÿÿÿèìÌ&y& ? àÿÿÿèëÉ&p& * õÿÿÿéëÉ&p& * ÿÿÿçëÉ&p& 8 ÿÿÿçëÉ&p& * 4ÿÿÿçëÌ&y& 1 IÿÿÿëëÉ&p& * ^ÿÿÿìëÌ&y& ? sÿÿÿíëÉ&p& * ˆÿÿÿçëÌ&y& 1 ÿÿÿëÐÎ&a EÿÿÿëÐÎ&r& S ƒÿÿÿëÐÎ&r& S ˜ÿÿÿêëÎ&r& S ­ÿÿÿíÕÎ&i& L ÂÿÿÿéãÎ&r& S ×ÿÿÿçßÎ&{& h ìÿÿÿíÕÎ&r& S ÿÿÿíÕÎ&{& h ÿÿÿëÐÎ&{& h +ÿÿÿíÐÎ&{& h @ÿÿÿìÐÎ&{& h UÿÿÿìéÎ&{& h jÿÿÿîÔÎ&{& h ÿÿÿíÕÎ&{& h ”ÿÿÿèÛÎ&{& h ©ÿÿÿïÐÎ&r& S ¾ÿÿÿîÐÎ&r& S ÓÿÿÿêéÎ&{& h èÿÿÿêãÎ&r& a ýÿÿÿìéÎ&r& S ÿÿÿêÔÎ&r& a 'ÿÿÿëâÎ&r& S <ÿÿÿëáÎ&{& Z QÿÿÿëÐÎ&r& S fÿÿÿíÕÎ&{& h {ÿÿÿðØÎ&r& S ÿÿÿçÜÎ&{& Z ¥ÿÿÿëÐÎ&\ iÿÿÿëÐÎ&m& o yÿÿÿëÐÎ&m& o ŽÿÿÿèìÎ&m& o £ÿÿÿðÕÎ&e& l ¸ÿÿÿéãÎ&m& o ÍÿÿÿçßÎ&v& u âÿÿÿïÕÎ&m& o ÷ÿÿÿíÕÎ&v& u ÿÿÿëÐÎ&v& u !ÿÿÿíÐÎ&v& u 6ÿÿÿíÐÎ&v& u KÿÿÿìéÎ&v& u `ÿÿÿíÔÎ&v& u uÿÿÿíÕÎ&v& u ŠÿÿÿçÛÎ&v& u ŸÿÿÿïÐÎ&m& o ´ÿÿÿîÐÎ&m& o ÉÿÿÿèìÎ&v& u ÞÿÿÿèãÎ&m& r óÿÿÿééÎ&m& o ÿÿÿçÔÎ&m& r ÿÿÿçÞÎ&m& o 2ÿÿÿçÞÎ&v& o GÿÿÿëÐÎ&m& o \ÿÿÿìÕÎ&v& u qÿÿÿíØÎ&m& o †ÿÿÿçÖÎ&v& o ›ÿÿÿëöÎ&UÿÿÿëõÎ&[& xÿÿÿëõÎ&&[ ÿÿÿèõÎ&&[ ¢ÿÿÿðöÎ&&X ·ÿÿÿêõÎ&&[ ÌÿÿÿçõÎ&&[ áÿÿÿïõÎ&&[ öÿÿÿíõÎ&& aÿÿÿëõÎ&™&a ÿÿÿíõÎ&™&a 5ÿÿÿíõÎ&™&a JÿÿÿìõÎ&™&a _ÿÿÿíõÎ&™&a tÿÿÿíõÎ&™&a ‰ÿÿÿçõÎ&™&a žÿÿÿïõÎ&&[ ³ÿÿÿîõÎ&&[ ÈÿÿÿèõÎ&™&a ÝÿÿÿèöÎ&&^ òÿÿÿéõÎ&&[ ÿÿÿçöÎ&&^ ÿÿÿçõÎ&&\ ?ÿÿÿçõÎ&™&[ FÿÿÿëõÎ&&[ [ÿÿÿìõÎ&&a pÿÿÿíõÎ&&[ …ÿÿÿçõÎ&™&[ šÿÿÿëÐÎ&dÿÿÿëÐÎ&j&’ zÿÿÿëÐÎ&’&j ÿÿÿèìÎ&’&j ¤ÿÿÿðÕÎ&‰&g ¹ÿÿÿéãÎ&’&j ÎÿÿÿçßÎ&›&p ãÿÿÿïÕÎ&’&j øÿÿÿíÕÎ&›&p ÿÿÿëÐÎ&›&p "ÿÿÿíÐÎ&›&p 7ÿÿÿíÐÎ&›&p LÿÿÿìéÎ&›&p aÿÿÿíÔÎ&›&p vÿÿÿíÕÎ&›&p ‹ÿÿÿçÛÎ&›&p  ÿÿÿïÐÎ&’&j µÿÿÿîÐÎ&’&j ÊÿÿÿèìÎ&›&p ßÿÿÿèàÎ&’&m ôÿÿÿééÎ&’&j ÿÿÿçÔÎ&’&m ÿÿÿçÞÎ&’&j 3ÿÿÿçÞÎ&›&j HÿÿÿëÐÎ&’&j ]ÿÿÿìÕÎ&›&p rÿÿÿíØÎ&’&j ‡ÿÿÿçÜÎ&›&j œÿÿÿëöÎ&sÿÿÿëöÎ&&y xÿÿÿëöÎ&&y ÿÿÿèöÎ&&y ¢ÿÿÿðöÎ&ˆ&v ·ÿÿÿêöÎ&&y ÌÿÿÿçöÎ&™& áÿÿÿïöÎ&&y öÿÿÿíöÎ&™& ÿÿÿëöÎ&™& ÿÿÿíöÎ&™& 5ÿÿÿíöÎ&™& JÿÿÿìöÎ&™& _ÿÿÿíöÎ&™& tÿÿÿíöÎ&™& ‰ÿÿÿçöÎ&™& žÿÿÿïöÎ&&y ³ÿÿÿîöÎ&&y ÈÿÿÿèöÎ&™& ÝÿÿÿèöÎ&&| òÿÿÿéöÎ&&y ÿÿÿçöÎ&&| ÿÿÿçöÎ&&y 1ÿÿÿçöÎ&™&y FÿÿÿëöÎ&&y [ÿÿÿìöÎ&™& pÿÿÿíöÎ&&y …ÿÿÿçöÎ&™&y šÿÿÿëÐÎ&‚ÿÿÿëÐÎ&’&ˆ zÿÿÿëÐÎ&’&ˆ ÿÿÿèìÎ&’&ˆ ¤ÿÿÿðÕÎ&‰&… ¹ÿÿÿéãÎ&’&ˆ ÎÿÿÿçßÎ&›&Ž ãÿÿÿïÕÎ&’&ˆ øÿÿÿíÕÎ&›&Ž ÿÿÿëÐÎ&›&Ž "ÿÿÿíÐÎ&›&Ž 7ÿÿÿíÐÎ&›&Ž LÿÿÿìéÎ&›&Ž aÿÿÿíÔÎ&›&Ž vÿÿÿíÕÎ&›&Ž ‹ÿÿÿçÛÎ&›&Ž  ÿÿÿïÐÎ&’&ˆ µÿÿÿîÐÎ&’&ˆ ÊÿÿÿèìÎ&›&Ž ßÿÿÿèàÎ&’&‹ ôÿÿÿééÎ&’&ˆ ÿÿÿçÔÎ&’&‹ ÿÿÿçÞÎ&’&ˆ 3ÿÿÿçÞÎ&›&ˆ HÿÿÿëÐÎ&’&ˆ ]ÿÿÿìÕÎ&›&Ž rÿÿÿíØÎ&’&ˆ ‡ÿÿÿçÜÎ&›&ˆ œÿÿÿëÐÎ&€•ÿÿÿëÐÎ&‘&¨ yÿÿÿëÐÎ&‘&¨ ŽÿÿÿèìÎ&‘&¨ £ÿÿÿíÚÍ&ˆ& Æ ÿÿÿéãÎ&‘&¨ ÍÿÿÿçßÎ&š&² âÿÿÿïÕÎ&‘&¨ ÷ÿÿÿíÕÎ&š&² ÿÿÿëÐÎ&š&² !ÿÿÿíÐÎ&š&² 6ÿÿÿíÐÎ&š&² KÿÿÿìéÎ&š&² `ÿÿÿíÔÎ&š&² uÿÿÿíÕÎ&š&² ŠÿÿÿçÛÎ&š&² ŸÿÿÿïÐÎ&‘&¨ ´ÿÿÿîÐÎ&‘&¨ ÉÿÿÿèìÎ&š&² ÞÿÿÿèãÎ&‘&¼ óÿÿÿééÎ&‘&¨ ÿÿÿçÔÎ&‘&¼ ÿÿÿçÞÎ&‘&¨ 2ÿÿÿçÞÎ&š&² GÿÿÿëÐÎ&‘&¨ \ÿÿÿìÕÎ&š&² qÿÿÿíØÎ&‘&¨ †ÿÿÿçÖÎ&š&² ›ÿÿÿëÐÎ&ÅÿÿÿëÐÎ&’&Ø zÿÿÿëÐÎ&’&Ø ÿÿÿèìÎ&’&Ø ¤ÿÿÿðÕÎ&‰&Î ¹ÿÿÿéãÎ&’&Ø ÎÿÿÿçßÎ&›&â ãÿÿÿïÕÎ&’&Ø øÿÿÿíÕÎ&›&â ÿÿÿëÐÎ&›&â "ÿÿÿíÐÎ&›&â 7ÿÿÿíÐÎ&›&â LÿÿÿìéÎ&›&â aÿÿÿíÔÎ&›&â vÿÿÿíÕÎ&›&â ‹ÿÿÿçÛÎ&›&â  ÿÿÿïÐÎ&’&Ø µÿÿÿîÐÎ&’&Ø ÊÿÿÿèìÎ&›&â ßÿÿÿèàÎ&’&ì ôÿÿÿééÎ&’&Ø ÿÿÿçÔÎ&’&ì ÿÿÿçÞÎ&’&Ø 3ÿÿÿçÞÎ&›&â HÿÿÿëÐÎ&’&Ø ]ÿÿÿìÕÎ&›&â rÿÿÿíØÎ&’&Ø ‡ÿÿÿçÜÎ&›&â œÿÿÿëÐÎ&€÷ÿÿÿëÐÎ&‘&  yÿÿÿëÐÎ&‘&  ŽÿÿÿèìÎ&‘&  £ÿÿÿðÕÎ&ÿ& ¸‘ÿÿÿéãÎ&‘&  ÍÿÿÿçßÎ&š&  âÿÿÿïÕÎ&‘&  ÷ÿÿÿíÕÎ&š&  ÿÿÿëÐÎ&š&  !ÿÿÿíÐÎ&š&  6ÿÿÿíÐÎ&š&  KÿÿÿìéÎ&š&  `ÿÿÿíÔÎ&š&  uÿÿÿíÕÎ&š&  ŠÿÿÿçÛÎ&š&  ŸÿÿÿïÐÎ&‘&  ´ÿÿÿîÐÎ&‘&  ÉÿÿÿèìÎ&š&  ÞÿÿÿèãÎ&‘&  óÿÿÿééÎ&‘&  ÿÿÿçÔÎ&‘&  ÿÿÿçÞÎ&‘&  2ÿÿÿçÞÎ&‘&  GÿÿÿëÐÎ&‘&  \ÿÿÿìÕÎ&š&  qÿÿÿíØÎ&‘&  †ÿÿÿçÖÎ&š&  ›ÿÿÿëÐÎ& %ÿÿÿëÐÎ&’& 9 zÿÿÿëÐÎ&’& 9 ÿÿÿèìÎ&’& 9 ¤ÿÿÿðÕÎ&‰& / ¹ÿÿÿéãÎ&’& 9 ÎÿÿÿçßÎ&›& C ãÿÿÿïÕÎ&’& 9 øÿÿÿíÕÎ&›& C ÿÿÿëÐÎ&›& C "ÿÿÿíÐÎ&›& C 7ÿÿÿíÐÎ&›& C LÿÿÿìéÎ&›& C aÿÿÿíÔÎ&›& C vÿÿÿíÕÎ&›& C ‹ÿÿÿçÛÎ&›& C  ÿÿÿïÐÎ&’& 9 µÿÿÿîÐÎ&’& 9 ÊÿÿÿèìÎ&›& C ßÿÿÿèàÎ&’& M ôÿÿÿééÎ&’& 9 ÿÿÿçÔÎ&’& M ÿÿÿçÞÎ&’& 9 3ÿÿÿçÞÎ&›& C HÿÿÿëÐÎ&’& 9 ]ÿÿÿìÕÎ&›& C rÿÿÿíØÎ&’& 9 ‡ÿÿÿçÜÎ&›& C œÿÿ ê½&‚ VÿÿÿëêÉ& h&“ {ÿÿÿëêÉ& h& “ÿÿÿêêÉ&“& h ¥ÿÿÿðêÉ&Š& ^ ºÿÿÿéêÉ&“& h ÏÿÿÿçêÉ&œ& r äÿÿÿïêÉ&“& h ùÿÿÿíêÉ&œ& r ÿÿÿëêÉ&œ& r #ÿÿÿíêÉ&œ& r 8ÿÿÿðêÉ&œ& r MÿÿÿìêÉ&œ& r bÿÿÿíêÉ&œ& r wÿÿÿíêÉ&œ& r ŒÿÿÿçêÉ&œ& r ¡ÿÿÿïêÉ&“& h ¶ÿÿÿîêÉ&“& h ËÿÿÿèìÉ&œ& r àÿÿÿèêÉ& õ& {“ÿÿÿéêÉ&“& h ÿÿÿçêÉ&“& { ÿÿÿçêÉ&“& h 4ÿÿÿçêÉ&œ& r IÿÿÿëêÉ&“& h ^ÿÿÿìêÉ&œ& r sÿÿÿíêÉ&“& h ˆÿÿÿçêÉ&œ& r ÿÿÿëöÎ&„ …ÿÿÿëöÎ&•& ™ |ÿÿÿëöÎ&•& ™ ‘ÿÿÿêöÎ&•& ™ ¦ÿÿÿðöÎ&Œ&  »ÿÿÿêöÎ&•& ™ ÐÿÿÿçöÎ&ž& £ åÿÿÿïöÎ&•& ™ úÿÿÿíöÎ&ž& £ ÿÿÿëöÎ&ž& £ $ÿÿÿíöÎ&ž& £ 9ÿÿÿíöÎ&ž& £ NÿÿÿìöÎ&ž& £ cÿÿÿîöÎ&ž& £ xÿÿÿíöÎ&ž& £ ÿÿÿçöÎ&ž& £ ¢ÿÿÿïöÎ&•& ™ ·ÿÿÿîöÎ&•& ™ ÌÿÿÿèöÎ&ž& £ áÿÿÿèöÎ&•& ­ öÿÿÿéöÎ&•& ™ ÿÿÿçöÎ&•& ­ ÿÿÿçöÎ&•& ™ 5ÿÿÿçöÎ&ž& £ JÿÿÿëöÎ&•& ™ _ÿÿÿìöÎ&ž& £ tÿÿÿíöÎ&•& ™ ‰ÿÿÿçöÎ&ž& £ žÿÿÿëÐÎ&† ·ÿÿÿëÐÎ&—& Ë |ÿÿÿëÐÎ&—& Ë ‘ÿÿÿêëÎ&—& Ë ¦ÿÿÿðÕÎ&Ž& Á »ÿÿÿêãÎ&—& Ë ÐÿÿÿçßÎ& & Õ åÿÿÿïÕÎ&—& Ë úÿÿÿíÕÎ& & Õ ÿÿÿëÐÎ& & Õ $ÿÿÿíÐÎ& & Õ 9ÿÿÿíÐÎ& & Õ NÿÿÿìéÎ& & Õ cÿÿÿîÔÎ& & Õ xÿÿÿíÕÎ& & Õ ÿÿÿçÛÎ& & Õ ¢ÿÿÿïÐÎ&—& Ë ·ÿÿÿîÐÎ&—& Ë ÌÿÿÿèéÎ& & Õ áÿÿÿèãÎ&—& ß öÿÿÿééÎ&—& Ë ÿÿÿçÔÎ&—& ß ÿÿÿçâÎ&—& Ë 5ÿÿÿçâÎ& & Õ JÿÿÿëÐÎ&—& Ë _ÿÿÿìÕÎ& & Õ tÿÿÿíØÎ&—& Ë ‰ÿÿÿçÜÎ& & Õ žÿÿÿëÐÎ&„ éÿÿÿëÐÎ&•& ü |ÿÿÿëÐÎ&•& ü ‘ÿÿÿêëÎ&•& ü ¦ÿÿÿðÕÎ&Œ& ò »ÿÿÿêãÎ&•& ü ÐÿÿÿçßÎ&ž&  åÿÿÿïÕÎ&•& ü úÿÿÿíÕÎ&ž&  ÿÿÿëÐÎ&ž&  $ÿÿÿíÐÎ&ž&  9ÿÿÿíÐÎ&ž&  NÿÿÿìéÎ&ž&  cÿÿÿîÔÎ&ž&  xÿÿÿíÕÎ&ž&  ÿÿÿçÛÎ&ž&  ¢ÿÿÿïÐÎ&•& ü ·ÿÿÿîÐÎ&•& ü ÌÿÿÿèéÎ&ž&  áÿÿÿèãÎ&•&  öÿÿÿééÎ&•& ü ÿÿÿçÔÎ&•&  ÿÿÿçâÎ&•& ü 5ÿÿÿçâÎ&ž&  JÿÿÿëÐÎ&•& ü _ÿÿÿìÕÎ&ž&  tÿÿÿíØÎ&•& ü ‰ÿÿÿçÜÎ&ž&  žÿÿ ë½&‚ ÿÿÿëëÉ&“& . {ÿÿÿëëÉ&“& . ÿÿÿêëÉ&“& . ¥ÿÿÿðëÉ&Š& $ ºÿÿÿéëÉ&“& . ÏÿÿÿçëÉ&œ& 8 äÿÿÿïëÉ&“& . ùÿÿÿíëÉ&œ& 8 ÿÿÿëëÉ&œ& 8 #ÿÿÿíëÉ&œ& 8 8ÿÿÿðëÉ&œ& 8 MÿÿÿìëÉ&œ& 8 bÿÿÿíëÉ&œ& 8 wÿÿÿíëÉ&œ& 8 ŒÿÿÿçëÉ&œ& 8 ¡ÿÿÿïëÉ&“& . ¶ÿÿÿîëÉ&“& . ËÿÿÿèìÉ&œ& 8 àÿÿÿèëÉ&“& B õÿÿÿéëÉ&“& . ÿÿÿçëÉ&“& B ÿÿÿçëÉ&“& . 4ÿÿÿçëÉ&œ& 8 IÿÿÿëëÉ&“& . ^ÿÿÿìëÉ&œ& 8 sÿÿÿíëÉ&“& . ˆÿÿÿçëÉ&œ& 8 ÿÿÿëëÉ&ƒ JÿÿÿëëÉ&”& V {ÿÿÿëëÉ&”& V ÿÿÿêëÉ&”& V ¥ÿÿÿðëÉ& Q& º‹ÿÿÿéëÉ&”& V ÏÿÿÿçëÉ&& k äÿÿÿïëÉ&‹& ù VÿÿÿíëÉ& k& ÿÿÿëëÉ&& k #ÿÿÿíëÉ&& k 8ÿÿÿðëÉ&& k MÿÿÿìëÉ&& k bÿÿÿíëÉ&& k wÿÿÿíëÉ&& k ŒÿÿÿçëÉ&& k ¡ÿÿÿïëÉ&”& V ¶ÿÿÿîëÉ&”& V ËÿÿÿèìÉ&& k àÿÿÿèëÉ&”& d õÿÿÿéëÉ&”& V ÿÿÿçëÉ&”& V ÿÿÿçëÉ&”& V 4ÿÿÿçëÉ&& ] IÿÿÿëëÉ&”& V ^ÿÿÿìëÉ&& k sÿÿÿíëÉ&”& V ˆÿÿÿçëÉ&& ] ÿÿÿëÐÎ&… rÿÿÿëÐÎ&–& € ~ÿÿÿëÐÎ&–& € “ÿÿÿêëÎ&–& € ¨ÿÿÿðÕÎ&& y ½ÿÿÿéãÎ&–& € ÒÿÿÿçßÎ&Ÿ& • çÿÿÿïÕÎ&–& € üÿÿÿíÕÎ&Ÿ& • ÿÿÿëÐÎ&Ÿ& • &ÿÿÿíÐÎ&Ÿ& • ;ÿÿÿíÐÎ&Ÿ& • PÿÿÿëéÎ&Ÿ& • eÿÿÿîÔÎ&Ÿ& • zÿÿÿíÖÎ&Ÿ& • ÿÿÿçÛÎ&Ÿ& • ¤ÿÿÿïÐÎ&–& € ¹ÿÿÿîÐÎ&–& € ÎÿÿÿêéÎ&Ÿ& • ãÿÿÿèãÎ&–& Ž øÿÿÿçéÎ&–& € ÿÿÿçÔÎ&–& Ž "ÿÿÿçÞÎ&–& € 7ÿÿÿíÞÎ&Ÿ& ‡ LÿÿÿëÐÎ&–& € aÿÿÿìÕÎ&Ÿ& • vÿÿÿíØÎ&–& € ‹ÿÿÿçÜÎ&Ÿ& ‡  ÿÿÿëÐÎ&‡ œÿÿÿëÐÎ&˜& ª ~ÿÿÿëÐÎ&˜& ª “ÿÿÿêëÎ&˜& ª ¨ÿÿÿðÕÎ&& £ ½ÿÿÿéãÎ&˜& ª ÒÿÿÿçßÎ&¡& ¿ çÿÿÿïÕÎ&˜& ª üÿÿÿíÕÎ&¡& ¿ ÿÿÿëÐÎ&¡& ¿ &ÿÿÿíÐÎ&¡& ¿ ;ÿÿÿíÐÎ&¡& ¿ PÿÿÿëéÎ&¡& ¿ eÿÿÿîÔÎ&¡& ¿ zÿÿÿíÖÎ&¡& ¿ ÿÿÿçÛÎ&¡& ¿ ¤ÿÿÿïÐÎ&˜& ª ¹ÿÿÿîÐÎ&˜& ª ÎÿÿÿêéÎ&¡& ¿ ãÿÿÿèãÎ&˜& ¸ øÿÿÿçéÎ&˜& ª ÿÿÿçÔÎ&˜& ¸ "ÿÿÿçÞÎ&˜& ª 7ÿÿÿíÞÎ&¡& ± LÿÿÿëÐÎ&˜& ª aÿÿÿìÕÎ&¡& ¿ vÿÿÿíØÎ&˜& ª ‹ÿÿÿçÜÎ&¡& ±  ÿÿÿëÐÎ&… ÆÿÿÿëÐÎ&–& Ô }ÿÿÿëÐÎ&–& Ô ’ÿÿÿêëÎ&–& Ô §ÿÿÿðÕÎ&& Í ¼ÿÿÿéãÎ&–& Ô ÑÿÿÿçßÎ&Ÿ& é æÿÿÿïÕÎ&–& Ô ûÿÿÿíÕÎ&Ÿ& é ÿÿÿëÐÎ&Ÿ& é %ÿÿÿíÐÎ&Ÿ& é :ÿÿÿíÐÎ&Ÿ& é OÿÿÿëèÎ&Ÿ& é dÿÿÿîÔÎ&Ÿ& é yÿÿÿíÖÎ&Ÿ& é ŽÿÿÿçÛÎ&Ÿ& é £ÿÿÿïÐÎ&–& Ô ¸ÿÿÿîÐÎ&–& Ô ÍÿÿÿêéÎ&Ÿ& é âÿÿÿèãÎ&–& â ÷ÿÿÿçéÎ&–& Ô ÿÿÿçÔÎ&–& â !ÿÿÿçÞÎ&–& Ô 6ÿÿÿçÞÎ&Ÿ& Û KÿÿÿëÐÎ&–& Ô `ÿÿÿìÕÎ&Ÿ& é uÿÿÿíØÎ&–& Ô ŠÿÿÿçÖÎ&Ÿ& Û ŸÿÿÿíëÉ&ƒ ðÿÿÿëëÉ&”& þ {ÿÿÿëëÉ&”& þ ÿÿÿêëÉ&”& þ ¥ÿÿÿðëÉ&‹& ÷ ºÿÿÿéëÉ&”& þ ÏÿÿÿçëÉ&&  äÿÿÿïëÉ&”& þ ùÿÿÿíëÉ&&  ÿÿÿëëÉ&&  #ÿÿÿíëÉ&&  8ÿÿÿðëÉ&&  MÿÿÿìëÉ&&  bÿÿÿíëÉ&&  wÿÿÿíëÉ&&  ŒÿÿÿçëÉ&&  ¡ÿÿÿïëÉ&”& þ ¶ÿÿÿîëÉ&”& þ ËÿÿÿèìÉ&&  àÿÿÿèëÉ&”&  õÿÿÿéëÉ&”& þ ÿÿÿçëÉ&”&  ÿÿÿçëÉ&”& þ 4ÿÿÿçëÉ&&  IÿÿÿëëÉ&”& þ ^ÿÿÿìëÉ&&  sÿÿÿíëÉ&”& þ ˆÿÿÿçëÉ&&  ÿÿ ë½&‚ ÿÿÿëëÉ&“& ' {ÿÿÿëëÉ&“& ' ÿÿÿêëÉ&“& ' ¥ÿÿÿðëÉ&Š&  ºÿÿÿéëÉ&“& ' ÏÿÿÿçëÉ&œ& < äÿÿÿïëÉ&“& ' ùÿÿÿíëÉ&œ& < ÿÿÿëëÉ&œ& < #ÿÿÿíëÉ&œ& < 8ÿÿÿðëÉ&œ& < MÿÿÿìëÉ&œ& < bÿÿÿíëÉ&œ& < wÿÿÿíëÉ&œ& < ŒÿÿÿçëÉ&œ& < ¡ÿÿÿïëÉ&“& ' ¶ÿÿÿîëÉ&“& ' ËÿÿÿèìÉ&œ& < àÿÿÿèëÉ&“& 5 õÿÿÿéëÉ&“& ' ÿÿÿçëÉ&“& 5 ÿÿÿçëÉ&“& ' 4ÿÿÿçëÉ&œ& . IÿÿÿëëÉ&“& ' ^ÿÿÿìëÉ&œ& < sÿÿÿíëÉ&“& ' ˆÿÿÿçëÉ&œ& . ÿÿÿëÐÎ&„ CÿÿÿëÐÎ&•& P |ÿÿÿëÐÎ&•& P ‘ÿÿÿêëÎ&•& P ¦ÿÿÿðÕÎ&Œ& I »ÿÿÿêãÎ&•& P ÐÿÿÿçßÎ&ž& e åÿÿÿïÕÎ&•& P úÿÿÿíÕÎ&ž& e ÿÿÿëÐÎ&ž& e $ÿÿÿíÐÎ&ž& e 9ÿÿÿíÐÎ&ž& e NÿÿÿìéÎ&ž& e cÿÿÿîÔÎ&ž& e xÿÿÿíÕÎ&ž& e ÿÿÿçÛÎ&ž& e ¢ÿÿÿïÐÎ&•& P ·ÿÿÿîÐÎ&•& P ÌÿÿÿèéÎ&ž& e áÿÿÿèãÎ&•& ^ öÿÿÿééÎ&•& P ÿÿÿçÔÎ&•& ^ ÿÿÿçâÎ&•& P 5ÿÿÿçâÎ&ž& W JÿÿÿëÐÎ&•& P _ÿÿÿìÕÎ&ž& e tÿÿÿíØÎ&•& P ‰ÿÿÿçÜÎ&ž& W žÿÿÿëÐÎ&€ iÿÿÿëÐÎ&& o yÿÿÿëÐÎ&& o ŽÿÿÿèìÎ&& o £ÿÿÿðÕÎ& l&ˆ ·ÿÿÿéãÎ&& o ÍÿÿÿçßÎ&™& u âÿÿÿïÕÎ&& ö oÿÿÿíÕÎ& o& ÿÿÿëÐÎ&™& u !ÿÿÿíÐÎ&™& u 6ÿÿÿíÐÎ&™& u KÿÿÿìéÎ&™& u `ÿÿÿíÔÎ&™& u uÿÿÿíÕÎ&™& u ŠÿÿÿçÛÎ&™& u ŸÿÿÿïÐÎ&& o ´ÿÿÿîÐÎ&& o ÉÿÿÿèìÎ&™& u ÞÿÿÿèãÎ&& r óÿÿÿééÎ&& o ÿÿÿçÔÎ&& r ÿÿÿçÞÎ&& o 2ÿÿÿçÞÎ& p& G‘ÿÿÿëÐÎ&& o \ÿÿÿìÕÎ&™& u qÿÿÿíØÎ&& o †ÿÿÿçÖÎ&™& o ›ÿÿÿëöÎ&U¢ÿÿÿëõÎ&³&\ xÿÿÿëõÎ&³&\ ÿÿÿèõÎ&³&[ ¢ÿÿÿðöÎ&³&X ·ÿÿÿêõÎ&³&[ ÌÿÿÿçõÎ&¼&a áÿÿÿìõÎ&\& ¼ÿÿÿíõÎ&¼& aÿÿÿëõÎ&¼& aÿÿÿíõÎ&¼&a 5ÿÿÿíõÎ&¼&a JÿÿÿìõÎ&¼&a _ÿÿÿíõÎ&¼&a tÿÿÿíõÎ&¼&a ‰ÿÿÿçõÎ&¼&a žÿÿÿïõÎ&³&[ ³ÿÿÿîõÎ&³&[ ÈÿÿÿèõÎ&¼&a ÝÿÿÿèöÎ&³&^ òÿÿÿéõÎ&³&[ ÿÿÿçöÎ&^&³ ÿÿÿçõÎ&³&[ 1ÿÿÿçõÎ&¼&[ FÿÿÿëõÎ&³&[ [ÿÿÿìõÎ&¼&a pÿÿÿíõÎ&³&[ …ÿÿÿçõÎ&¼&[ šÿÿÿëÐÎ&¤dÿÿÿëÐÎ&j&µ zÿÿÿëÐÎ&µ&j ÿÿÿèìÎ&µ&j ¤ÿÿÿðÕÎ&¬&g ¹ÿÿÿéãÎ&µ&j ÎÿÿÿçßÎ&¾&p ãÿÿÿïÕÎ&µ&j øÿÿÿíÕÎ&¾&p ÿÿÿëÐÎ&¾&p "ÿÿÿíÐÎ&¾&p 7ÿÿÿíÐÎ&¾&p LÿÿÿìéÎ&¾&p aÿÿÿíÔÎ&¾&p vÿÿÿíÕÎ&¾&p ‹ÿÿÿçÛÎ&¾&p  ÿÿÿïÐÎ&µ&j µÿÿÿîÐÎ&µ&j ÊÿÿÿèìÎ&¾&p ßÿÿÿèàÎ&µ&m ôÿÿÿééÎ&µ&j ÿÿÿçÔÎ&µ&m ÿÿÿçÞÎ&µ&j 3ÿÿÿçÞÎ&¾&j HÿÿÿëÐÎ&µ&j ]ÿÿÿìÕÎ&¾&p rÿÿÿíØÎ&µ&j ‡ÿÿÿçÜÎ&¾&j œÿÿÿëöÎ&¢sÿÿÿëöÎ&³&y xÿÿÿëöÎ&³&y ÿÿÿèöÎ&³&y ¢ÿÿÿðöÎ&«&v ·ÿÿÿêöÎ&³&y ÌÿÿÿçöÎ&¼& áÿÿÿïöÎ&³&y öÿÿÿíöÎ&¼& ÿÿÿëöÎ&¼& ÿÿÿíöÎ&¼& 5ÿÿÿíöÎ&¼& JÿÿÿìöÎ&¼& _ÿÿÿíöÎ&¼& tÿÿÿíöÎ&¼& ‰ÿÿÿçöÎ&¼& žÿÿÿïöÎ&³&y ³ÿÿÿîöÎ&³&y ÈÿÿÿèöÎ&¼& ÝÿÿÿèöÎ&³&| òÿÿÿéöÎ&³&y ÿÿÿçöÎ&³&| ÿÿÿçöÎ&³&y 1ÿÿÿçöÎ&¼&y FÿÿÿëöÎ&³&y [ÿÿÿìöÎ&¼& pÿÿÿíöÎ&³&y …ÿÿÿçöÎ&¼&y šÿÿÿëÐÎ&¤‚ÿÿÿëÐÎ&µ&ˆ zÿÿÿëÐÎ&µ&ˆ ÿÿÿèìÎ&µ&ˆ ¤ÿÿÿðÕÎ&¬&… ¹ÿÿÿéãÎ&µ&ˆ ÎÿÿÿçßÎ&¾&Ž ãÿÿÿïÕÎ&µ&ˆ øÿÿÿíÕÎ&¾&Ž ÿÿÿëÐÎ&¾&Ž "ÿÿÿíÐÎ&¾&Ž 7ÿÿÿíÐÎ&¾&Ž LÿÿÿìéÎ&¾&Ž aÿÿÿíÔÎ&¾&Ž vÿÿÿíÕÎ&¾&Ž ‹ÿÿÿçÛÎ&¾&Ž  ÿÿÿïÐÎ&µ&ˆ µÿÿÿîÐÎ&µ&ˆ ÊÿÿÿèìÎ&¾&Ž ßÿÿÿèàÎ&µ&‹ ôÿÿÿééÎ&µ&ˆ ÿÿÿçÔÎ&µ&‹ ÿÿÿçÞÎ&µ&ˆ 3ÿÿÿçÞÎ&¾&ˆ HÿÿÿëÐÎ&µ&ˆ ]ÿÿÿìÕÎ&¾&Ž rÿÿÿíØÎ&µ&ˆ ‡ÿÿÿçÜÎ&¾&ˆ œÿÿÿëÐÎ&£™ÿÿÿëÐÎ&´&¨ yÿÿÿëÐÎ&´&¨ ŽÿÿÿèìÎ&´&¨ £ÿÿÿðÕÍ&«& ¸ ÿÿÿéãÎ&´&¨ ÍÿÿÿçßÎ&½&² âÿÿÿïÕÎ&´&¨ ÷ÿÿÿíÕÎ&´& ²ÿÿÿëÐÎ&½&² !ÿÿÿíÐÎ&½&² 6ÿÿÿíÐÎ&½&² KÿÿÿìéÎ&½&² `ÿÿÿíÔÎ&½&² uÿÿÿíÕÎ&½&² ŠÿÿÿçÛÎ&½&² ŸÿÿÿïÐÎ&²&½ ´ÿÿÿîÐÎ&½&² ÉÿÿÿèìÎ&½&² ÞÿÿÿèãÎ& ó&¼´ÿÿÿééÎ&´&¨ ÿÿÿçÔÎ&´&¼ ÿÿÿçÞÎ&´&¨ 2ÿÿÿçÞÎ&½&² GÿÿÿëÐÎ&´&¨ \ÿÿÿìÕÎ&½&² qÿÿÿíØÎ&´&¨ †ÿÿÿçÖÎ&½&² ›ÿÿÿëÐÎ&¤ÅÿÿÿëÐÎ&µ&Ø zÿÿÿëÐÎ&µ&Ø ÿÿÿèìÎ&µ&Ø ¤ÿÿÿðÕÎ&¬&Î ¹ÿÿÿéãÎ&µ&Ø ÎÿÿÿçßÎ&¾&â ãÿÿÿïÕÎ&µ&Ø øÿÿÿíÕÎ&¾&â ÿÿÿëÐÎ&¾&â "ÿÿÿíÐÎ&¾&â 7ÿÿÿíÐÎ&¾&â LÿÿÿìéÎ&¾&â aÿÿÿíÔÎ&¾&â vÿÿÿíÕÎ&¾&â ‹ÿÿÿçÛÎ&¾&â  ÿÿÿïÐÎ&µ&Ø µÿÿÿîÐÎ&µ&Ø ÊÿÿÿèìÎ&¾&â ßÿÿÿèàÎ&µ&ì ôÿÿÿééÎ&µ&Ø ÿÿÿçÔÎ&µ&ì ÿÿÿçÞÎ&µ&Ø 3ÿÿÿçÞÎ&¾&â HÿÿÿëÐÎ&µ&Ø ]ÿÿÿìÕÎ&¾&â rÿÿÿíØÎ&µ&Ø ‡ÿÿÿçÜÎ&¾&â œÿÿÿëÐÎ&£öÿÿÿëÐÎ&´&  yÿÿÿëÐÎ&´&  ŽÿÿÿèìÎ&´&  £ÿÿÿðÕÎ&´&ÿ ¸ÿÿÿéãÎ&´&  ÍÿÿÿçßÎ&½&  âÿÿÿïÕÎ&´&  ÷ÿÿÿíÕÎ&½&  ÿÿÿëÐÎ&½&  !ÿÿÿíÐÎ&½&  6ÿÿÿíÐÎ&½&  KÿÿÿìéÎ&½&  `ÿÿÿíÔÎ&½&  uÿÿÿíÕÎ&½&  ŠÿÿÿçÛÎ&½&  ŸÿÿÿïÐÎ&´&  ´ÿÿÿîÐÎ&´&  ÉÿÿÿèìÎ&½&  ÞÿÿÿèãÎ&´&  óÿÿÿééÎ&´&  ÿÿÿçÔÎ&´&  ÿÿÿçÞÎ&´&  2ÿÿÿçÞÎ&½&  GÿÿÿëÐÎ&´&  \ÿÿÿìÕÎ&½&  qÿÿÿíØÎ&´&  †ÿÿÿçÖÎ&½&  ›ÿÿÿëÐÎ&¤ %ÿÿÿëÐÎ&µ& 9 zÿÿÿëÐÎ&µ& 9 ÿÿÿèìÎ&µ& 9 ¤ÿÿÿðÕÎ&¬& / ¹ÿÿÿéãÎ&µ& 9 ÎÿÿÿçßÎ&¾& C ãÿÿÿïÕÎ&µ& 9 øÿÿÿíÕÎ&¾& C ÿÿÿëÐÎ&¾& C "ÿÿÿíÐÎ&¾& C 7ÿÿÿíÐÎ&¾& C LÿÿÿìéÎ&¾& C aÿÿÿíÔÎ&¾& C vÿÿÿíÕÎ&¾& C ‹ÿÿÿçÛÎ&¾& C  ÿÿÿïÐÎ&µ& 9 µÿÿÿîÐÎ&µ& 9 ÊÿÿÿèìÎ&¾& C ßÿÿÿèàÎ&µ& M ôÿÿÿééÎ&µ& 9 ÿÿÿçÔÎ&µ& M ÿÿÿçÞÎ&µ& 9 3ÿÿÿçÞÎ&¾& C HÿÿÿëÐÎ&µ& 9 ]ÿÿÿìÕÎ&¾& C rÿÿÿíØÎ&µ& 9 ‡ÿÿÿçÜÎ&¾& C œÿÿ ê½&¥ WÿÿÿëêÉ&¶& h {ÿÿÿëêÉ&¶& h ÿÿÿêêÉ&¶& h ¥ÿÿÿðêÉ& ^& º­ÿÿÿéêÉ&¶& h ÏÿÿÿçêÉ&¿& r äÿÿÿïêÉ&¶& h ùÿÿÿíêÉ&¿& r ÿÿÿëêÉ&¿& r #ÿÿÿíêÉ&¿& r 8ÿÿÿðêÉ&¿& r MÿÿÿìêÉ&¿& r bÿÿÿíêÉ&¿& r wÿÿÿíêÉ&¿& r ŒÿÿÿçêÉ&¿& r ¡ÿÿÿïêÉ&¶& h ¶ÿÿÿîêÉ&¶& h ËÿÿÿèìÉ&¿& r àÿÿÿèêÉ&¶& { õÿÿÿéêÉ&¶& h ÿÿÿçêÉ&¶& { ÿÿÿçêÉ&¶& h 4ÿÿÿçêÉ&¿& r IÿÿÿëêÉ&¶& h ^ÿÿÿìêÉ&¿& r sÿÿÿíêÉ&¶& h ˆÿÿÿçêÉ&¿& r ÿÿÿëöÎ&§ …ÿÿÿëöÎ&¸& ™ |ÿÿÿëöÎ&¸& ™ ‘ÿÿÿêöÎ&¸& ™ ¦ÿÿÿðöÎ&¯&  »ÿÿÿêöÎ&¸& ™ ÐÿÿÿçöÎ&Á& £ åÿÿÿïöÎ&¸& ™ úÿÿÿíöÎ&Á& £ ÿÿÿëöÎ&Á& £ $ÿÿÿíöÎ&Á& £ 9ÿÿÿíöÎ&Á& £ NÿÿÿìöÎ&Á& £ cÿÿÿîöÎ&Á& £ xÿÿÿíöÎ&Á& £ ÿÿÿçöÎ&Á& £ ¢ÿÿÿïöÎ&¸& ™ ·ÿÿÿîöÎ&¸& ™ ÌÿÿÿèöÎ&Á& £ áÿÿÿèöÎ&¸& ­ öÿÿÿéöÎ&¸& ™ ÿÿÿçöÎ&¸& ­ ÿÿÿçöÎ&¸& ™ 5ÿÿÿçöÎ&Á& £ JÿÿÿëöÎ&¸& ™ _ÿÿÿìöÎ&Á& £ tÿÿÿíöÎ&¸& ™ ‰ÿÿÿçöÎ&Á& £ žÿÿÿëÐÎ&© ·ÿÿÿëÐÎ&º& Ë |ÿÿÿëÐÎ&º& Ë ‘ÿÿÿêëÎ&º& Ë ¦ÿÿÿðÕÎ&±& Á »ÿÿÿêãÎ&º& Ë ÐÿÿÿçßÎ&Ã& Õ åÿÿÿïÕÎ&º& Ë úÿÿÿíÕÎ&Ã& Õ ÿÿÿëÐÎ&Ã& Õ $ÿÿÿíÐÎ&Ã& Õ 9ÿÿÿíÐÎ&Ã& Õ NÿÿÿìéÎ&Ã& Õ cÿÿÿîÔÎ&Ã& Õ xÿÿÿíÕÎ&Ã& Õ ÿÿÿçÛÎ&Ã& Õ ¢ÿÿÿïÐÎ&º& Ë ·ÿÿÿîÐÎ&º& Ë ÌÿÿÿèéÎ&Ã& Õ áÿÿÿèãÎ&º& ß öÿÿÿééÎ&º& Ë ÿÿÿçÔÎ&º& ß ÿÿÿçâÎ&º& Ë 5ÿÿÿçâÎ&Ã& Õ JÿÿÿëÐÎ&º& Ë _ÿÿÿìÕÎ&Ã& Õ tÿÿÿíØÎ&º& Ë ‰ÿÿÿçÜÎ&Ã& Õ žÿÿÿëÐÎ&§ éÿÿÿëÐÎ&¸& ü |ÿÿÿëÐÎ&¸& ü ‘ÿÿÿêëÎ&¸& ü ¦ÿÿÿðÕÎ&¯& ò »ÿÿÿêãÎ&¸& ü ÐÿÿÿçßÎ&Á&  åÿÿÿïÕÎ&¸& ü úÿÿÿíÕÎ&Á&  ÿÿÿëÐÎ&Á&  $ÿÿÿíÐÎ&Á&  9ÿÿÿíÐÎ&Á&  NÿÿÿìéÎ&Á&  cÿÿÿîÔÎ&Á&  xÿÿÿíÕÎ&Á&  ÿÿÿçÛÎ&Á&  ¢ÿÿÿïÐÎ&¸& ü ·ÿÿÿîÐÎ&¸& ü ÌÿÿÿèéÎ&Á&  áÿÿÿèãÎ&¸&  öÿÿÿééÎ&¸& ü ÿÿÿçÔÎ&¸&  ÿÿÿçâÎ&¸& ü 5ÿÿÿçâÎ&Á&  JÿÿÿëÐÎ&¸& ü _ÿÿÿìÕÎ&Á&  tÿÿÿíØÎ&¸& ü ‰ÿÿÿçÜÎ&Á&  žÿÿ ë½&¥ ÿÿÿëëÉ&¶& . {ÿÿÿëëÉ&¶& . ÿÿÿêëÉ&¶& . ¥ÿÿÿðëÉ&­& $ ºÿÿÿéëÉ&¶& . ÏÿÿÿçëÉ&¿& 8 äÿÿÿïëÉ&¶& . ùÿÿÿíëÉ&¿& 8 ÿÿÿëëÉ&¿& 8 #ÿÿÿíëÉ&¿& 8 8ÿÿÿðëÉ&¿& 8 MÿÿÿìëÉ&¿& 8 bÿÿÿíëÉ&¿& 8 wÿÿÿíëÉ&¿& 8 ŒÿÿÿçëÉ&¿& 8 ¡ÿÿÿïëÉ&¶& . ¶ÿÿÿîëÉ&¶& . ËÿÿÿèìÉ&¿& 8 àÿÿÿèëÉ&¶& B õÿÿÿéëÉ&¶& . ÿÿÿçëÉ&¶& B ÿÿÿçëÉ&¶& . 4ÿÿÿçëÉ&¿& 8 IÿÿÿëëÉ&¶& . ^ÿÿÿìëÉ&¿& 8 sÿÿÿíëÉ&¶& . ˆÿÿÿçëÉ&¿& 8 ÿÿÿëëÉ&¦ JÿÿÿëëÉ&·& V {ÿÿÿëëÉ&·& V ÿÿÿêëÉ&·& V ¥ÿÿÿðëÉ& Q&® ºÿÿÿéëÉ&·& V ÏÿÿÿçëÉ&À& k äÿÿÿïëÉ&·& V ùÿÿÿíëÉ&·& V ÿÿÿëëÉ&À& k #ÿÿÿíëÉ&À& k 8ÿÿÿðëÉ&À& k MÿÿÿìëÉ&À& k bÿÿÿíëÉ&À& k wÿÿÿíëÉ&À& k ŒÿÿÿçëÉ&À& k ¡ÿÿÿïëÉ&·& V ¶ÿÿÿîëÉ&·& V ËÿÿÿèìÉ&À& k àÿÿÿèëÉ&·& d õÿÿÿéëÉ&·& V ÿÿÿçëÉ&·& V ÿÿÿçëÉ&·& V 4ÿÿÿçëÉ&À& ] IÿÿÿëëÉ&·& V ^ÿÿÿìëÉ&·& k sÿÿÿíëÉ&·& V ˆÿÿÿçëÉ&À& ] ÿÿÿëÐÎ&¨ rÿÿÿëÐÎ&¹& € ~ÿÿÿëÐÎ&¹& € “ÿÿÿêëÎ&¹& € ¨ÿÿÿðÕÎ&°& y ½ÿÿÿéãÎ&¹& € ÒÿÿÿçßÎ&Â& • çÿÿÿïÕÎ&¹& € üÿÿÿíÕÎ&Â& • ÿÿÿëÐÎ&Â& • &ÿÿÿíÐÎ&Â& • ;ÿÿÿíÐÎ&Â& • PÿÿÿëéÎ&Â& • eÿÿÿîÔÎ&Â& • zÿÿÿíÖÎ&Â& • ÿÿÿçÛÎ&Â& • ¤ÿÿÿïÐÎ&¹& € ¹ÿÿÿîÐÎ&¹& € ÎÿÿÿêéÎ&Â& • ãÿÿÿèãÎ&¹& Ž øÿÿÿçéÎ&¹& € ÿÿÿçÔÎ&¹& Ž "ÿÿÿçÞÎ&¹& € 7ÿÿÿíÞÎ&Â& ‡ LÿÿÿëÐÎ&¹& € aÿÿÿìÕÎ&Â& • vÿÿÿíØÎ&¹& € ‹ÿÿÿçÜÎ&Â& ‡  ÿÿÿëÐÎ&ª œÿÿÿëÐÎ&»& ª ~ÿÿÿëÐÎ&»& ª “ÿÿÿêëÎ&»& ª ¨ÿÿÿðÕÎ&²& £ ½ÿÿÿéãÎ&»& ª ÒÿÿÿçßÎ&Ä& ¿ çÿÿÿïÕÎ&»& ª üÿÿÿíÕÎ&Ä& ¿ ÿÿÿëÐÎ&Ä& ¿ &ÿÿÿíÐÎ&Ä& ¿ ;ÿÿÿíÐÎ&Ä& ¿ PÿÿÿëéÎ&Ä& ¿ eÿÿÿîÔÎ&Ä& ¿ zÿÿÿíÖÎ&Ä& ¿ ÿÿÿçÛÎ&Ä& ¿ ¤ÿÿÿïÐÎ&»& ª ¹ÿÿÿîÐÎ&»& ª ÎÿÿÿêéÎ&Ä& ¿ ãÿÿÿèãÎ&»& ¸ øÿÿÿçéÎ&»& ª ÿÿÿçÔÎ&»& ¸ "ÿÿÿçÞÎ&»& ª 7ÿÿÿíÞÎ&Ä& ± LÿÿÿëÐÎ&»& ª aÿÿÿìÕÎ&Ä& ¿ vÿÿÿíØÎ&»& ª ‹ÿÿÿçÜÎ&Ä& ±  ÿÿÿëÐÎ&¨ ÆÿÿÿëÐÎ&¹& Ô }ÿÿÿëÐÎ&¹& Ô ’ÿÿÿêëÎ&¹& Ô §ÿÿÿðÕÎ&°& Í ¼ÿÿÿéãÎ&¹& Ô ÑÿÿÿçßÎ&Â& é æÿÿÿïÕÎ&¹& Ô ûÿÿÿíÕÎ&Â& é ÿÿÿëÐÎ&Â& é %ÿÿÿíÐÎ&Â& é :ÿÿÿíÐÎ&Â& é OÿÿÿëèÎ&Â& é dÿÿÿîÔÎ&Â& é yÿÿÿíÖÎ&Â& é ŽÿÿÿçÛÎ&Â& é £ÿÿÿïÐÎ&¹& Ô ¸ÿÿÿîÐÎ&¹& Ô ÍÿÿÿêéÎ&Â& é âÿÿÿèãÎ&¹& â ÷ÿÿÿçéÎ&¹& Ô ÿÿÿçÔÎ&¹& â !ÿÿÿçÞÎ&¹& Ô 6ÿÿÿçÞÎ&Â& Û KÿÿÿëÐÎ&¹& Ô `ÿÿÿìÕÎ&Â& é uÿÿÿíØÎ&¹& Ô ŠÿÿÿçÖÎ&Â& Û ŸÿÿÿíëÉ&¦ ðÿÿÿëëÉ&·& þ {ÿÿÿëëÉ&·& þ ÿÿÿêëÉ&·& þ ¥ÿÿÿðëÉ&®& ÷ ºÿÿÿéëÉ&·& þ ÏÿÿÿçëÉ&À&  äÿÿÿïëÉ&·& þ ùÿÿÿíëÉ&À&  ÿÿÿëëÉ&À&  #ÿÿÿíëÉ&À&  8ÿÿÿðëÉ&À&  MÿÿÿìëÉ&À&  bÿÿÿíëÉ&À&  wÿÿÿíëÉ&À&  ŒÿÿÿçëÉ&À&  ¡ÿÿÿïëÉ&·& þ ¶ÿÿÿîëÉ&·& þ ËÿÿÿèìÉ&À&  àÿÿÿèëÉ&·&  õÿÿÿéëÉ&·& þ ÿÿÿçëÉ&·&  ÿÿÿçëÉ&·& þ 4ÿÿÿçëÉ&À&  IÿÿÿëëÉ&·& þ ^ÿÿÿìëÉ&À&  sÿÿÿíëÉ&·& þ ˆÿÿÿçëÉ&À&  ÿÿ ë½&¥ ÿÿÿëëÉ&¶& ' {ÿÿÿëëÉ&¶& ' ÿÿÿêëÉ&¶& ' ¥ÿÿÿðëÉ&­&  ºÿÿÿéëÉ&¶& ' ÏÿÿÿçëÉ&¿& < äÿÿÿïëÉ&¶& ' ùÿÿÿíëÉ&¿& < ÿÿÿëëÉ&¿& < #ÿÿÿíëÉ&¿& < 8ÿÿÿðëÉ&¿& < MÿÿÿìëÉ&¿& < bÿÿÿíëÉ&¿& < wÿÿÿíëÉ&¿& < ŒÿÿÿçëÉ&¿& < ¡ÿÿÿïëÉ&¶& ' ¶ÿÿÿîëÉ&¶& ' ËÿÿÿèìÉ&¿& < àÿÿÿèëÉ&¶& 5 õÿÿÿéëÉ&¶& ' ÿÿÿçëÉ&¶& 5 ÿÿÿçëÉ&¶& ' 4ÿÿÿçëÉ&¿& . IÿÿÿëëÉ&¶& ' ^ÿÿÿìëÉ&¿& < sÿÿÿíëÉ&¶& ' ˆÿÿÿçëÉ&¿& . ÿÿÿëÐÎ&§ CÿÿÿëÐÎ&¸& P |ÿÿÿëÐÎ&¸& P ‘ÿÿÿêëÎ&¸& P ¦ÿÿÿðÕÎ&¯& I »ÿÿÿêãÎ&¸& P ÐÿÿÿçßÎ&Á& e åÿÿÿïÕÎ&¸& P úÿÿÿíÕÎ&Á& e ÿÿÿëÐÎ&Á& e $ÿÿÿíÐÎ&Á& e 9ÿÿÿíÐÎ&Á& e NÿÿÿìéÎ&Á& e cÿÿÿîÔÎ&Á& e xÿÿÿíÕÎ&Á& e ÿÿÿçÛÎ&Á& e ¢ÿÿÿïÐÎ&¸& P ·ÿÿÿîÐÎ&¸& P ÌÿÿÿèéÎ&Á& e áÿÿÿèãÎ&¸& ^ öÿÿÿééÎ&¸& P ÿÿÿçÔÎ&¸& ^ ÿÿÿçâÎ&¸& P 5ÿÿÿçâÎ&Á& W JÿÿÿëÐÎ&¸& P _ÿÿÿìÕÎ&Á& e tÿÿÿíØÎ&¸& P ‰ÿÿÿçÜÎ&Á& W žÿÿÿëÐÎ&¢ iÿÿÿëÐÎ&³& o yÿÿÿëÐÎ&³& o ŽÿÿÿèìÎ&³& o £ÿÿÿðÕÎ&«& l ¸ÿÿÿéãÎ&³& o ÍÿÿÿçßÎ&¼& u âÿÿÿïÕÎ&³& o ÷ÿÿÿíÕÎ&¼& u ÿÿÿëÐÎ&¼& u !ÿÿÿíÐÎ&¼& u 6ÿÿÿíÐÎ&¼& u KÿÿÿìéÎ&¼& u `ÿÿÿíÔÎ&¼& u uÿÿÿíÕÎ&¼& u ŠÿÿÿçÛÎ&¼& u ŸÿÿÿïÐÎ&³& o ´ÿÿÿîÐÎ&³& o ÉÿÿÿèìÎ&¼& u ÞÿÿÿèãÎ&³& r óÿÿÿééÎ&³& o ÿÿÿçÔÎ&³& r ÿÿÿçÞÎ& o&³ 2ÿÿÿçÞÎ&¼& o GÿÿÿëÐÎ&³& o \ÿÿÿìÕÎ&¼& u qÿÿÿíØÎ&³& o †ÿÿÿçÖÎ&¼& o ›ÿÿÿëöÎ&ÅWÿÿÿëöÎ&×&] xÿÿÿëöÎ&×&] ÿÿÿèöÎ&×&] ¢ÿÿÿðöÎ&Î&Z ·ÿÿÿêöÎ&×&] ÌÿÿÿçõÎ&à&c áÿÿÿïöÎ&×&] öÿÿÿíõÎ&à&c ÿÿÿëõÎ&à&c ÿÿÿíõÎ&à&c 5ÿÿÿíõÎ&à&c JÿÿÿìõÎ&à&c _ÿÿÿíõÎ&à&c tÿÿÿíõÎ&à&c ‰ÿÿÿçõÎ&à&c žÿÿÿïöÎ&×&] ³ÿÿÿîöÎ&×&] ÈÿÿÿèõÎ&à&c ÝÿÿÿèõÎ&×&` òÿÿÿéöÎ&×&] ÿÿÿçõÎ&×&` ÿÿÿçöÎ&×&] 1ÿÿÿçöÎ&à&] FÿÿÿëöÎ&×&] [ÿÿÿìõÎ&à&c pÿÿÿíöÎ&×&] …ÿÿÿçöÎ&à&] šÿÿÿëÑÎ&ÇfÿÿÿëÑÎ&Ù&l zÿÿÿëÑÎ&Ù&l ÿÿÿèìÎ&Ù&l ¤ÿÿÿðÕÎ&Ð&i ¹ÿÿÿéãÎ&Ù&l ÎÿÿÿçßÎ&â&r ãÿÿÿïÕÎ&Ù&l øÿÿÿíÕÎ&â&r ÿÿÿëÑÎ&â&r "ÿÿÿíÑÎ&â&r 7ÿÿÿíÑÎ&â&r LÿÿÿìéÎ&â&r aÿÿÿíÔÎ&â&r vÿÿÿíÕÎ&â&r ‹ÿÿÿçÛÎ&â&r  ÿÿÿïÑÎ&Ù&l µÿÿÿîÑÎ&Ù&l ÊÿÿÿèìÎ&â&r ßÿÿÿèàÎ&Ù&o ôÿÿÿééÎ&Ù&l ÿÿÿçÔÎ&Ù&o ÿÿÿçÞÎ&Ù&l 3ÿÿÿçÞÎ&â&l HÿÿÿëÑÎ&Ù&l ]ÿÿÿìÕÎ&â&r rÿÿÿíØÎ&Ù&l ‡ÿÿÿçÜÎ&â&l œÿÿÿëöÎ&ÅuÿÿÿëöÎ&×&{ xÿÿÿëöÎ&×&{ ÿÿÿèöÎ&×&{ ¢ÿÿÿðöÎ&Î&x ·ÿÿÿêöÎ&×&{ ÌÿÿÿçöÎ&à& áÿÿÿïöÎ&×&{ öÿÿÿíöÎ&à& ÿÿÿëöÎ&à& ÿÿÿíöÎ&à& 5ÿÿÿíöÎ&à& JÿÿÿìöÎ&à& _ÿÿÿíöÎ&à& tÿÿÿíöÎ&à& ‰ÿÿÿçöÎ&à& žÿÿÿïöÎ&×&{ ³ÿÿÿîöÎ&×&{ ÈÿÿÿèöÎ&à& ÝÿÿÿèöÎ&×&~ òÿÿÿéöÎ&×&{ ÿÿÿçöÎ&×&~ ÿÿÿçöÎ&×&{ 1ÿÿÿçöÎ&à&{ FÿÿÿëöÎ&×&{ [ÿÿÿìöÎ&à& pÿÿÿíöÎ&×&{ …ÿÿÿçöÎ&à&{ šÿÿÿëÐÎ&Ç„ÿÿÿëÑÎ&Ù&Š zÿÿÿëÑÎ&Ù&Š ÿÿÿèìÎ&Ù&Š ¤ÿÿÿðÕÎ&Ð&‡ ¹ÿÿÿéãÎ&Ù&Š ÎÿÿÿçßÎ&â& ãÿÿÿïÕÎ&Ù&Š øÿÿÿíÕÎ&â& ÿÿÿëÑÎ&â& "ÿÿÿíÑÎ&â& 7ÿÿÿíÑÎ&â& LÿÿÿìéÎ&â& aÿÿÿíÔÎ&â& vÿÿÿíÕÎ&â& ‹ÿÿÿçÛÎ&â&  ÿÿÿïÑÎ&Ù&Š µÿÿÿîÑÎ&Ù&Š ÊÿÿÿèìÎ&â& ßÿÿÿèàÎ&Ù& ôÿÿÿééÎ&Ù&Š ÿÿÿçÔÎ&Ù& ÿÿÿçÞÎ&Ù&Š 3ÿÿÿçÞÎ&â&Š HÿÿÿëÑÎ&Ù&Š ]ÿÿÿìÕÎ&â& rÿÿÿíØÎ&Ù&Š ‡ÿÿÿçÜÎ&â&Š œÿÿÿëÑÎ&ƘÿÿÿëÐÎ&Ø&« yÿÿÿëÐÎ&Ø&« ŽÿÿÿèìÎ&Ø&« £ÿÿÿðÕÎ&Ï&¡ ¸ÿÿÿéãÎ&Ø&« ÍÿÿÿçßÎ&á&µ âÿÿÿïÕÎ&Ø&« ÷ÿÿÿíÕÎ&á&µ ÿÿÿëÐÎ&á&µ !ÿÿÿíÐÎ&á&µ 6ÿÿÿíÐÎ&á&µ KÿÿÿìéÎ&á&µ `ÿÿÿíÔÎ&á&µ uÿÿÿíÕÎ&á&µ ŠÿÿÿçÛÎ&á&µ ŸÿÿÿïÐÎ&Ø&« ´ÿÿÿîÐÎ&Ø&« ÉÿÿÿèìÎ&á&µ ÞÿÿÿèãÎ&Ø&¿ óÿÿÿééÎ&Ø&« ÿÿÿçÔÎ&Ø&¿ ÿÿÿçÞÎ&Ø&« 2ÿÿÿçÞÎ&á&µ GÿÿÿëÐÎ&Ø&« \ÿÿÿìÕÎ&á&µ qÿÿÿíØÎ&Ø&« †ÿÿÿçÖÎ&á&µ ›ÿÿÿëÐÎ&ÇÈÿÿÿëÑÎ&Ù&Û zÿÿÿëÑÎ&Ù&Û ÿÿÿèìÎ&Ù&Û ¤ÿÿÿðÕÎ&Ð&Ñ ¹ÿÿÿéãÎ&Ù&Û ÎÿÿÿçßÎ&â&å ãÿÿÿïÕÎ&Ù&Û øÿÿÿíÕÎ&â&å ÿÿÿëÑÎ&â&å "ÿÿÿíÑÎ&â&å 7ÿÿÿíÑÎ&â&å LÿÿÿìéÎ&â&å aÿÿÿíÔÎ&â&å vÿÿÿíÕÎ&â&å ‹ÿÿÿçÛÎ&â&å  ÿÿÿïÑÎ&Ù&Û µÿÿÿîÑÎ&Ù&Û ÊÿÿÿèìÎ&â&å ßÿÿÿèàÎ&Ù&ï ôÿÿÿééÎ&Ù&Û ÿÿÿçÔÎ&Ù&ï ÿÿÿçÞÎ&Ù&Û 3ÿÿÿçÞÎ&â&å HÿÿÿëÑÎ&Ù&Û ]ÿÿÿìÕÎ&â&å rÿÿÿíØÎ&Ù&Û ‡ÿÿÿçÜÎ&â&å œÿÿÿëÐÎ&ÆùÿÿÿëÐÎ&Ø&  yÿÿÿëÐÎ&Ø&  ŽÿÿÿèìÎ&Ø&  £ÿÿÿðÕÎ&Ï&  ¸ÿÿÿéãÎ&Ø&  ÍÿÿÿçßÎ&á&  âÿÿÿïÕÎ&Ø&  ÷ÿÿÿíÕÎ&á&  ÿÿÿëÐÎ&á&  !ÿÿÿíÐÎ&á&  6ÿÿÿíÐÎ&á&  KÿÿÿìéÎ&á&  `ÿÿÿíÔÎ&á&  uÿÿÿíÕÎ&á&  ŠÿÿÿçÛÎ&á&  ŸÿÿÿïÐÎ&Ø&  ´ÿÿÿîÐÎ&Ø&  ÉÿÿÿèìÎ&á&  ÞÿÿÿèãÎ&Ø&  óÿÿÿééÎ&Ø&  ÿÿÿçÔÎ&Ø&  ÿÿÿçÞÎ&Ø&  2ÿÿÿçÞÎ&á&  GÿÿÿëÐÎ&Ø&  \ÿÿÿìÕÎ&á&  qÿÿÿíØÎ&Ø&  †ÿÿÿçÖÎ&á&  ›ÿÿÿëÐÎ&Ç (ÿÿÿëÐÎ&Ù& < zÿÿÿëÐÎ&Ù& < ÿÿÿèìÎ&Ù& < ¤ÿÿÿðÕÎ&Ð& 2 ¹ÿÿÿéãÎ&Ù& < ÎÿÿÿçßÎ&â& F ãÿÿÿïÕÎ&Ù& < øÿÿÿíÕÎ&â& F ÿÿÿëÑÎ&â& F "ÿÿÿíÑÎ&â& F 7ÿÿÿíÑÎ&â& F LÿÿÿìéÎ&â& F aÿÿÿíÔÎ&â& F vÿÿÿíÕÎ&â& F ‹ÿÿÿçÛÎ&â& F  ÿÿÿïÐÎ&Ù& < µÿÿÿîÐÎ&Ù& < ÊÿÿÿèìÎ&â& F ßÿÿÿèàÎ&Ù& P ôÿÿÿééÎ&Ù& < ÿÿÿçÔÎ&Ù& P ÿÿÿçÞÎ&Ù& < 3ÿÿÿçÞÎ&â& F HÿÿÿëÐÎ&Ù& < ]ÿÿÿìÕÎ&â& F rÿÿÿíØÎ&Ù& < ‡ÿÿÿçÜÎ&â& F œÿÿ ê¼&È YÿÿÿëêÈ&Ú& k {ÿÿÿëêÈ&Ú& k ÿÿÿêêÈ&Ú& k ¥ÿÿÿðêÈ&Ñ& a ºÿÿÿéêÈ&Ú& k ÏÿÿÿçêÈ&ã& u äÿÿÿïêÈ&Ú& k ùÿÿÿíêÈ&ã& u ÿÿÿëêÈ&ã& u #ÿÿÿíêÈ&ã& u 8ÿÿÿðêÈ&ã& u MÿÿÿìêÈ&ã& u bÿÿÿíêÈ&ã& u wÿÿÿíêÈ&ã& u ŒÿÿÿçêÈ&ã& u ¡ÿÿÿïêÈ&Ú& k ¶ÿÿÿîêÈ&Ú& k ËÿÿÿèìÈ&ã& u àÿÿÿèêÈ&Ú& ~ õÿÿÿéêÈ&Ú& k ÿÿÿçêÈ&Ú& ~ ÿÿÿçêÈ&Ú& k 4ÿÿÿçêÈ&ã& u IÿÿÿëêÈ&Ú& k ^ÿÿÿìêÈ&ã& u sÿÿÿíêÈ&Ú& k ˆÿÿÿçêÈ&ã& u ÿÿÿëöÎ&Ê ˆÿÿÿëõÎ&Ü& œ |ÿÿÿëõÎ&Ü& œ ‘ÿÿÿêõÎ&Ü& œ ¦ÿÿÿðöÎ&Ó& ’ »ÿÿÿêõÎ&Ü& œ ÐÿÿÿçöÎ&å& ¦ åÿÿÿïõÎ&Ü& œ úÿÿÿíöÎ&å& ¦ ÿÿÿëöÎ&å& ¦ $ÿÿÿíöÎ&å& ¦ 9ÿÿÿíöÎ&å& ¦ NÿÿÿìöÎ&å& ¦ cÿÿÿîöÎ&å& ¦ xÿÿÿíöÎ&å& ¦ ÿÿÿçöÎ&å& ¦ ¢ÿÿÿïõÎ&Ü& œ ·ÿÿÿîõÎ&Ü& œ ÌÿÿÿèöÎ&å& ¦ áÿÿÿèöÎ&Ü& ° öÿÿÿéõÎ&Ü& œ ÿÿÿçöÎ&Ü& ° ÿÿÿçõÎ&Ü& œ 5ÿÿÿçöÎ&å& ¦ JÿÿÿëõÎ&Ü& œ _ÿÿÿìöÎ&å& ¦ tÿÿÿíõÎ&Ü& œ ‰ÿÿÿçöÎ&å& ¦ žÿÿÿëÐÎ&Ì ºÿÿÿëÐÎ&Þ& Î |ÿÿÿëÐÎ&Þ& Î ‘ÿÿÿêëÎ&Þ& Î ¦ÿÿÿðÕÎ&Õ& Ä »ÿÿÿêãÎ&Þ& Î ÐÿÿÿçßÎ&ç& Ø åÿÿÿïÕÎ&Þ& Î úÿÿÿíÕÎ&ç& Ø ÿÿÿëÐÎ&ç& Ø $ÿÿÿíÐÎ&ç& Ø 9ÿÿÿíÐÎ&ç& Ø NÿÿÿìéÎ&ç& Ø cÿÿÿîÔÎ&ç& Ø xÿÿÿíÕÎ&ç& Ø ÿÿÿçÛÎ&ç& Ø ¢ÿÿÿïÐÎ&Þ& Î ·ÿÿÿîÐÎ&Þ& Î ÌÿÿÿèéÎ&ç& Ø áÿÿÿèãÎ&Þ& â öÿÿÿééÎ&Þ& Î ÿÿÿçÔÎ&Þ& â ÿÿÿçâÎ&Þ& Î 5ÿÿÿçâÎ&ç& Ø JÿÿÿëÐÎ&Þ& Î _ÿÿÿìÕÎ&ç& Ø tÿÿÿíØÎ&Þ& Î ‰ÿÿÿçÜÎ&ç& Ø žÿÿÿëÑÎ&Ê ëÿÿÿëÐÎ&Ü& ÿ |ÿÿÿëÐÎ&Ü& ÿ ‘ÿÿÿêëÎ&Ü& ÿ ¦ÿÿÿðÕÎ&Ó& õ »ÿÿÿêãÎ&Ü& ÿ ÐÿÿÿçßÎ&å&  åÿÿÿïÕÎ&Ü& ÿ úÿÿÿíÕÎ&å&  ÿÿÿëÑÎ&å&  $ÿÿÿíÑÎ&å&  9ÿÿÿíÑÎ&å&  NÿÿÿìéÎ&å&  cÿÿÿîÔÎ&å&  xÿÿÿíÕÎ&å&  ÿÿÿçÛÎ&å&  ¢ÿÿÿïÐÎ&Ü& ÿ ·ÿÿÿîÐÎ&Ü& ÿ ÌÿÿÿèéÎ&å&  áÿÿÿèãÎ&Ü&  öÿÿÿééÎ&Ü& ÿ ÿÿÿçÔÎ&Ü&  ÿÿÿçâÎ&Ü& ÿ 5ÿÿÿçâÎ&å&  JÿÿÿëÐÎ&Ü& ÿ _ÿÿÿìÕÎ&å&  tÿÿÿíØÎ&Ü& ÿ ‰ÿÿÿçÜÎ&å&  žÿÿ ë¼&È ÿÿÿëëÈ&Ú& 1 {ÿÿÿëëÈ&Ú& 1 ÿÿÿêëÈ&Ú& 1 ¥ÿÿÿðëÈ&Ñ& ' ºÿÿÿéëÈ&Ú& 1 ÏÿÿÿçëÈ&ã& ; äÿÿÿïëÈ&Ú& 1 ùÿÿÿíëÈ&ã& ; ÿÿÿëëÈ&ã& ; #ÿÿÿíëÈ&ã& ; 8ÿÿÿðëÈ&ã& ; MÿÿÿìëÈ&ã& ; bÿÿÿíëÈ&ã& ; wÿÿÿíëÈ&ã& ; ŒÿÿÿçëÈ&ã& ; ¡ÿÿÿïëÈ&Ú& 1 ¶ÿÿÿîëÈ&Ú& 1 ËÿÿÿèìÈ&ã& ; àÿÿÿèëÈ&Ú& E õÿÿÿéëÈ&Ú& 1 ÿÿÿçëÈ&Ú& E ÿÿÿçëÈ&Ú& 1 4ÿÿÿçëÈ&ã& ; IÿÿÿëëÈ&Ú& 1 ^ÿÿÿìëÈ&ã& ; sÿÿÿíëÈ&Ú& 1 ˆÿÿÿçëÈ&ã& ; ÿÿÿëëÈ&É LÿÿÿëëÈ&Û& X {ÿÿÿëëÈ&Û& X ÿÿÿêëÈ&Û& X ¥ÿÿÿðëÈ&Ò& º QÿÿÿéëÈ&Û& X ÏÿÿÿçëÈ&ä& m äÿÿÿïëÈ&Û& X ùÿÿÿíëÈ&ä& m ÿÿÿëëÈ&ä& m #ÿÿÿíëÈ&ä& m 8ÿÿÿðëÈ&ä& m MÿÿÿìëÈ&ä& m bÿÿÿíëÈ&ä& m wÿÿÿíëÈ&ä& m ŒÿÿÿçëÈ&ä& m ¡ÿÿÿïëÈ&Û& X ¶ÿÿÿîëÈ&Û& X ËÿÿÿèìÈ&ä& m àÿÿÿèëÈ&Û& f õÿÿÿéëÈ&Û& X ÿÿÿçëÈ&Û& X ÿÿÿçëÈ&Û& X 4ÿÿÿçëÈ&ä& _ IÿÿÿëëÈ&Û& X ^ÿÿÿìëÈ&ä& m sÿÿÿíëÈ&Û& X ˆÿÿÿçëÈ&ä& _ ÿÿÿëÐÎ&Ë tÿÿÿëÐÎ&Ý& ‚ ~ÿÿÿëÐÎ&Ý& ‚ “ÿÿÿêëÎ&Ý& ‚ ¨ÿÿÿðÕÎ&Ô& { ½ÿÿÿéãÎ&Ý& ‚ ÒÿÿÿçßÎ&æ& — çÿÿÿïÕÎ&Ý& ‚ üÿÿÿíÕÎ&æ& — ÿÿÿëÐÎ&æ& — &ÿÿÿíÐÎ&æ& — ;ÿÿÿíÐÎ&æ& — PÿÿÿëéÎ&æ& — eÿÿÿîÔÎ&æ& — zÿÿÿíÖÎ&æ& — ÿÿÿçÛÎ&æ& — ¤ÿÿÿïÐÎ&Ý& ‚ ¹ÿÿÿîÐÎ&Ý& ‚ ÎÿÿÿêéÎ&æ& — ãÿÿÿèãÎ&Ý&  øÿÿÿçéÎ&Ý& ‚ ÿÿÿçÔÎ&Ý&  "ÿÿÿçÞÎ&Ý& ‚ 7ÿÿÿíÞÎ&æ& ‰ LÿÿÿëÐÎ&Ý& ‚ aÿÿÿìÕÎ&æ& — vÿÿÿíØÎ&Ý& ‚ ‹ÿÿÿçÜÎ&æ& ‰  ÿÿÿëÐÎ&Í žÿÿÿëÐÎ&ß& ¬ ~ÿÿÿëÐÎ&ß& ¬ “ÿÿÿêëÎ&ß& ¬ ¨ÿÿÿðÕÎ&Ö& ¥ ½ÿÿÿéãÎ&ß& ¬ ÒÿÿÿçßÎ&è& Á çÿÿÿïÕÎ&ß& ¬ üÿÿÿíÕÎ&è& Á ÿÿÿëÐÎ&è& Á &ÿÿÿíÐÎ&è& Á ;ÿÿÿíÐÎ&è& Á PÿÿÿëéÎ&è& Á eÿÿÿîÔÎ&è& Á zÿÿÿíÖÎ&è& Á ÿÿÿçÛÎ&è& Á ¤ÿÿÿïÐÎ&ß& ¬ ¹ÿÿÿîÐÎ&ß& ¬ ÎÿÿÿêéÎ&è& Á ãÿÿÿèãÎ&ß& º øÿÿÿçéÎ&ß& ¬ ÿÿÿçÔÎ&ß& º "ÿÿÿçÞÎ&ß& ¬ 7ÿÿÿíÞÎ&è& ³ LÿÿÿëÐÎ&ß& ¬ aÿÿÿìÕÎ&è& Á vÿÿÿíØÎ&ß& ¬ ‹ÿÿÿçÜÎ&è& ³  ÿÿÿëÑÎ&Ë ÈÿÿÿëÐÎ&Ý& Ö }ÿÿÿëÐÎ&Ý& Ö ’ÿÿÿêëÎ&Ý& Ö §ÿÿÿðÕÎ&Ô& Ï ¼ÿÿÿéãÎ&Ý& Ö ÑÿÿÿçßÎ&æ& ë æÿÿÿïÕÎ&Ý& Ö ûÿÿÿíÕÎ&æ& ë ÿÿÿëÐÎ&æ& ë %ÿÿÿíÐÎ&æ& ë :ÿÿÿíÐÎ&æ& ë OÿÿÿëèÎ&æ& ë dÿÿÿîÔÎ&æ& ë yÿÿÿíÖÎ&æ& ë ŽÿÿÿçÛÎ&æ& ë £ÿÿÿïÐÎ&Ý& Ö ¸ÿÿÿîÐÎ&Ý& Ö ÍÿÿÿêéÎ&æ& ë âÿÿÿèãÎ&Ý& ä ÷ÿÿÿçéÎ&Ý& Ö ÿÿÿçÔÎ&Ý& ä !ÿÿÿçÞÎ&Ý& Ö 6ÿÿÿçÞÎ&æ& Ý KÿÿÿëÐÎ&Ý& Ö `ÿÿÿìÕÎ&æ& ë uÿÿÿíØÎ&Ý& Ö ŠÿÿÿçÖÎ&æ& Ý ŸÿÿÿíëÈ&É òÿÿÿëëÈ&Û&  {ÿÿÿëëÈ&Û&  ÿÿÿêëÈ&Û&  ¥ÿÿÿðëÈ&Ò& ù ºÿÿÿéëÈ&Û&  ÏÿÿÿçëÈ&ä&  äÿÿÿïëÈ&Û&  ùÿÿÿíëÈ&ä&  ÿÿÿëëÈ&ä&  #ÿÿÿíëÈ&ä&  8ÿÿÿðëÈ&ä&  MÿÿÿìëÈ&ä&  bÿÿÿíëÈ&ä&  wÿÿÿíëÈ&ä&  ŒÿÿÿçëÈ&ä&  ¡ÿÿÿïëÈ&Û&  ¶ÿÿÿîëÈ&Û&  ËÿÿÿèìÈ&ä&  àÿÿÿèëÈ&Û&  õÿÿÿéëÈ&Û&  ÿÿÿçëÈ&Û&  ÿÿÿçëÈ&Û&  4ÿÿÿçëÈ&ä&  IÿÿÿëëÈ&Û&  ^ÿÿÿìëÈ&ä&  sÿÿÿíëÈ&Û&  ˆÿÿÿçëÈ&ä&  ÿÿ ë¼&È ÿÿÿëëÈ&Ú& ) {ÿÿÿëëÈ&Ú& ) ÿÿÿêëÈ&Ú& ) ¥ÿÿÿðëÈ&Ñ& " ºÿÿÿéëÈ&Ú& ) ÏÿÿÿçëÈ&ã& > äÿÿÿïëÈ&Ú& ) ùÿÿÿíëÈ&ã& > ÿÿÿëëÈ&ã& > #ÿÿÿíëÈ&ã& > 8ÿÿÿðëÈ&ã& > MÿÿÿìëÈ&ã& > bÿÿÿíëÈ&ã& > wÿÿÿíëÈ&ã& > ŒÿÿÿçëÈ&ã& > ¡ÿÿÿïëÈ&Ú& ) ¶ÿÿÿîëÈ&Ú& ) ËÿÿÿèìÈ&ã& > àÿÿÿèëÈ&Ú& 7 õÿÿÿéëÈ&Ú& ) ÿÿÿçëÈ&Ú& 7 ÿÿÿçëÈ&Ú& ) 4ÿÿÿçëÈ&ã& 0 IÿÿÿëëÈ&Ú& ) ^ÿÿÿìëÈ&ã& > sÿÿÿíëÈ&Ú& ) ˆÿÿÿçëÈ&ã& 0 ÿÿÿëÐÎ&Ê DÿÿÿëÐÎ&Ü& R |ÿÿÿëÐÎ&Ü& R ‘ÿÿÿêëÎ&Ü& R ¦ÿÿÿðÕÎ&Ó& K »ÿÿÿêãÎ&Ü& R ÐÿÿÿçßÎ&å& g åÿÿÿïÕÎ&Ü& R úÿÿÿíÕÎ&å& g ÿÿÿëÐÎ&å& g $ÿÿÿíÐÎ&å& g 9ÿÿÿíÐÎ&å& g NÿÿÿìéÎ&å& g cÿÿÿîÔÎ&å& g xÿÿÿíÕÎ&å& g ÿÿÿçÛÎ&å& g ¢ÿÿÿïÐÎ&Ü& R ·ÿÿÿîÐÎ&Ü& R ÌÿÿÿèéÎ&å& g áÿÿÿèãÎ&Ü& ` öÿÿÿééÎ&Ü& R ÿÿÿçÔÎ&Ü& ` ÿÿÿçâÎ&Ü& R 5ÿÿÿçâÎ&å& Y JÿÿÿëÐÎ&Ü& R _ÿÿÿìÕÎ&å& g tÿÿÿíØÎ&Ü& R ‰ÿÿÿçÜÎ&å& Y žÿÿÿëÑÎ&Å kÿÿÿëÐÎ&×& q yÿÿÿëÐÎ&×& q ŽÿÿÿèìÎ&×& q £ÿÿÿðÕÎ&Î& n ¸ÿÿÿéãÎ&×& q ÍÿÿÿçßÎ&à& w âÿÿÿïÕÎ&×& q ÷ÿÿÿíÕÎ&à& w ÿÿÿëÑÎ&à& w !ÿÿÿíÑÎ&à& w 6ÿÿÿíÑÎ&à& w KÿÿÿìéÎ&à& w `ÿÿÿíÔÎ&à& w uÿÿÿíÕÎ&à& w ŠÿÿÿçÛÎ&à& w ŸÿÿÿïÐÎ&×& q ´ÿÿÿîÐÎ&×& q ÉÿÿÿèìÎ&à& w ÞÿÿÿèãÎ&×& t óÿÿÿééÎ&×& q ÿÿÿçÔÎ&×& t ÿÿÿçÞÎ&×& q 2ÿÿÿçÞÎ&à& q GÿÿÿëÐÎ&×& q \ÿÿÿìÕÎ&à& w qÿÿÿíØÎ&×& q †ÿÿÿçÖÎ&à& q ›ÿÿÿëöÎ&Uéÿÿ ÿëõÎ&û&[ xÿÿ ÿëõÎ&û&[ ÿÿ ÿèõÎ&û&[ ¢ÿÿ ÿðöÎ&ò& ·Xÿÿ ÿêõÎ&û&[ Ìÿÿ ÿçõÎ&&a áÿÿ ÿïõÎ&û&[ öÿÿ ÿíõÎ&a& ûÿÿ ÿëõÎ&&a ÿÿ ÿíõÎ&&a 5ÿÿ ÿíõÎ&&a Jÿÿ ÿìõÎ&&a _ÿÿ ÿíõÎ&&a tÿÿ ÿíõÎ&&a ‰ÿÿ ÿçõÎ&&a žÿÿ ÿïõÎ&û&[ ³ÿÿ ÿîõÎ&û&[ Èÿÿ ÿèõÎ&&a Ýÿÿ ÿèöÎ&û&^ òÿÿ ÿéõÎ&û&[ ÿÿ ÿçöÎ&û&^ -ÿÿ ÿçõÎ&û&[ 1ÿÿ ÿçõÎ&&[ Fÿÿ ÿëõÎ&û&[ [ÿÿ ÿìõÎ&&a pÿÿ ÿíõÎ&û&[ …ÿÿ ÿçõÎ&&[ šÿÿ ÿëÐÎ&ëdÿÿÿëÐÎ&j&ý zÿÿÿëÐÎ&ý&j ÿÿÿèìÎ&ý&j ¤ÿÿÿðÕÎ&ô&g ¹ÿÿÿéãÎ&ý&j Îÿÿ ÿçßÎ&&p ãÿÿÿïÕÎ&ý&j øÿÿ ÿíÕÎ&&p ÿÿ ÿëÐÎ&&p "ÿÿ ÿíÐÎ&&p 7ÿÿ ÿíÐÎ&&p Lÿÿ ÿìéÎ&&p aÿÿ ÿíÔÎ&&p vÿÿ ÿíÕÎ&&p ‹ÿÿ ÿçÛÎ&&p  ÿÿÿïÐÎ&ý&j µÿÿÿîÐÎ&ý&j Êÿÿ ÿèìÎ&&p ßÿÿÿèàÎ&ý&m ôÿÿÿééÎ&ý&j ÿÿÿçÔÎ&m& ,ýÿÿÿçÞÎ&ý&j 3ÿÿ ÿçÞÎ&&j HÿÿÿëÐÎ&ý&j ]ÿÿ ÿìÕÎ&&p rÿÿÿíØÎ&ý&j ‡ÿÿ ÿçÜÎ&&j œÿÿÿëöÎ&ésÿÿ ÿëöÎ&û&y xÿÿ ÿëöÎ&û&y ÿÿ ÿèöÎ&û&y ¢ÿÿ ÿðöÎ&ò&v ·ÿÿ ÿêöÎ&û&y Ìÿÿ ÿçöÎ&& áÿÿ ÿïöÎ&û&y öÿÿ ÿíöÎ&& ÿÿ ÿëöÎ&& ÿÿ ÿíöÎ&& 5ÿÿ ÿíöÎ&& Jÿÿ ÿìöÎ&& _ÿÿ ÿíöÎ&& tÿÿ ÿíöÎ&& ‰ÿÿ ÿçöÎ&& žÿÿ ÿïöÎ&û&y ³ÿÿ ÿîöÎ&û&y Èÿÿ ÿèöÎ&& Ýÿÿ ÿèöÎ&û&| òÿÿ ÿéöÎ&û&y ÿÿ ÿçöÎ&û&| ÿÿ ÿçöÎ&û&y 1ÿÿ ÿçöÎ&&y Fÿÿ ÿëöÎ&û&y [ÿÿ ÿìöÎ&& pÿÿ ÿíöÎ&û&y …ÿÿ ÿçöÎ&&y šÿÿ ÿëÐÎ&ë‚ÿÿÿëÐÎ&ý&ˆ zÿÿÿëÐÎ&ý&ˆ ÿÿÿèìÎ&ý&ˆ ¤ÿÿÿðÕÎ&ô&… ¹ÿÿÿéãÎ&ý&ˆ Îÿÿ ÿçßÎ&&Ž ãÿÿÿïÕÎ&ý&ˆ øÿÿ ÿíÕÎ&&Ž ÿÿ ÿëÐÎ&&Ž "ÿÿ ÿíÐÎ&&Ž 7ÿÿ ÿíÐÎ&&Ž Lÿÿ ÿìéÎ&&Ž aÿÿ ÿíÔÎ&&Ž vÿÿ ÿíÕÎ&&Ž ‹ÿÿ ÿçÛÎ&&Ž  ÿÿÿïÐÎ&ý&ˆ µÿÿÿîÐÎ&ý&ˆ Êÿÿ ÿèìÎ&&Ž ßÿÿÿèàÎ&ý&‹ ôÿÿÿééÎ&ý&ˆ ÿÿÿçÔÎ&ý&‹ ÿÿÿçÞÎ&ý&ˆ 3ÿÿ ÿçÞÎ&&ˆ HÿÿÿëÐÎ&ý&ˆ ]ÿÿ ÿìÕÎ&&Ž rÿÿÿíØÎ&ý&ˆ ‡ÿÿ ÿçÜÎ&&ˆ œÿÿÿëÐÎ&ê‘ÿÿÿëÐÎ&¤& ‡üÿÿÿëÐÎ&ü&© ŽÿÿÿèìÎ&ü&© £ÿÿÿðÕÎ&ó& ¸›ÿÿÿéãÎ&ü&© ÍÿÿÿçßÎ&&³ âÿÿÿïÕÎ&ü&© ÷ÿÿÿíÕÎ&ü& ·ÿÿÿëÐÎ&&³ !ÿÿÿíÐÎ&&³ 6ÿÿÿíÐÎ&&³ KÿÿÿìéÎ&&³ `ÿÿÿíÔÎ&&³ uÿÿÿíÕÎ&&³ ŠÿÿÿçÛÎ&&³ ŸÿÿÿïÐÎ&ü&© ´ÿÿÿîÐÎ&ü&© ÉÿÿÿèìÎ&&³ ÞÿÿÿèãÎ&ü&½ óÿÿÿééÎ&ü&© ÿÿÿçÔÎ&À&ü ÿÿÿçÞÎ&ü&© 2ÿÿÿçÞÎ&&³ GÿÿÿëÐÎ&ü&© \ÿÿÿìÕÎ&&³ qÿÿÿíØÎ&ü&© †ÿÿÿçÖÎ&&³ ›ÿÿ ÿëÐÎ&ëÉÿÿÿëÐÎ&ý&Ù zÿÿÿëÐÎ&ý&Ù ÿÿÿèìÎ&ý&Ù ¤ÿÿÿðÕÎ&ô&Ï ¹ÿÿÿéãÎ&ý&Ù Îÿÿ ÿçßÎ&&ã ãÿÿÿïÕÎ&ý&Ù øÿÿ ÿíÕÎ&&ã ÿÿ ÿëÐÎ&&ã "ÿÿ ÿíÐÎ&&ã 7ÿÿ ÿíÐÎ&&ã Lÿÿ ÿìéÎ&&ã aÿÿ ÿíÔÎ&&ã vÿÿ ÿíÕÎ&&ã ‹ÿÿ ÿçÛÎ&&ã  ÿÿÿïÐÎ&ý&Ù µÿÿÿîÐÎ&ý&Ù Êÿÿ ÿèìÎ&&ã ßÿÿÿèàÎ&ý&í ôÿÿÿééÎ&ý&Ù ÿÿÿçÔÎ&ý&í ÿÿÿçÞÎ&ý&Ù 3ÿÿ ÿçÞÎ&&ã HÿÿÿëÐÎ&ý&Ù ]ÿÿ ÿìÕÎ&&ã rÿÿÿíØÎ&ý&Ù ‡ÿÿ ÿçÜÎ&&ã œÿÿÿëÐÎ&ê÷ÿÿÿëÐÎ&ü&  yÿÿÿëÐÎ&ü&  ŽÿÿÿèìÎ&ü&  £ÿÿÿðÕÎ&ó&ÿ ¸ÿÿÿéãÎ&ü&  ÍÿÿÿçßÎ&&  âÿÿÿïÕÎ&ü&  ÷ÿÿÿíÕÎ&&  ÿÿÿëÐÎ&&  !ÿÿÿíÐÎ&&  6ÿÿÿíÐÎ&&  KÿÿÿìéÎ&&  `ÿÿÿíÔÎ&&  uÿÿÿíÕÎ&&  ŠÿÿÿçÛÎ&&  ŸÿÿÿïÐÎ&ü&  ´ÿÿÿîÐÎ&ü&  ÉÿÿÿèìÎ&&  ÞÿÿÿèãÎ&ü&  óÿÿÿééÎ&ü&  ÿÿÿçÔÎ&ü&  ÿÿÿçÞÎ&ü&  2ÿÿÿçÞÎ&&  GÿÿÿëÐÎ&ü&  \ÿÿÿìÕÎ&&  qÿÿÿíØÎ&ü&  †ÿÿÿçÖÎ&&  ›ÿÿ ÿëÐÎ&ë &ÿÿÿëÐÎ&ý& : zÿÿÿëÐÎ&ý& : ÿÿÿèìÎ&ý& : ¤ÿÿÿðÕÎ&ô& 0 ¹ÿÿÿéãÎ&ý& : Îÿÿ ÿçßÎ&& D ãÿÿÿïÕÎ&ý& : øÿÿ ÿíÕÎ&& D ÿÿ ÿëÐÎ&& D "ÿÿ ÿíÐÎ&& D 7ÿÿ ÿíÐÎ&& D Lÿÿ ÿìéÎ&& D aÿÿ ÿíÔÎ&& D vÿÿ ÿíÕÎ&& D ‹ÿÿ ÿçÛÎ&& D  ÿÿÿïÐÎ&ý& : µÿÿÿîÐÎ&ý& : Êÿÿ ÿèìÎ&& D ßÿÿÿèàÎ&ý& N ôÿÿÿééÎ&ý& : ÿÿÿçÔÎ&ý& N ÿÿÿçÞÎ&ý& : 3ÿÿ ÿçÞÎ&& D HÿÿÿëÐÎ&ý& : ]ÿÿ ÿìÕÎ&& D rÿÿÿíØÎ&ý& : ‡ÿÿ ÿçÜÎ&& D œÿÿ êÃ&ì WÿÿÿëêÎ& i&þ {ÿÿÿëêÎ&þ& i ÿÿÿêêÎ&þ& i ¥ÿÿÿðêÎ&õ& _ ºÿÿÿéêÎ&þ& i ÏÿÿÿçêÎ&& s äÿÿÿïêÎ&þ& i ùÿÿÿíêÎ&& s ÿÿÿëêÎ&& s #ÿÿÿíêÎ&& s 8ÿÿÿðêÎ&& s MÿÿÿìêÎ&& s bÿÿÿíêÎ&& s wÿÿÿíêÎ&& s ŒÿÿÿçêÎ&& s ¡ÿÿÿïêÎ&þ& i ¶ÿÿÿîêÎ&þ& i ËÿÿÿèìÎ&& s àÿÿÿèêÎ&þ& | õÿÿÿéêÎ&þ& i ÿÿÿçêÎ&þ& | ÿÿÿçêÎ&þ& i 4ÿÿÿçêÎ&& s IÿÿÿëêÎ&þ& i ^ÿÿÿìêÎ&& s sÿÿÿíêÎ&þ& i ˆÿÿÿçêÎ&& s ÿÿÿëöÎ&î †ÿÿÿëöÎ&& š |ÿÿÿëöÎ&& š ‘ÿÿÿêöÎ&& š ¦ÿÿÿðöÎ&÷&  »ÿÿÿêöÎ&& š ÐÿÿÿçöÎ& & ¤ åÿÿÿïöÎ&& š úÿÿÿíöÎ& & ¤ ÿÿÿëöÎ& & ¤ $ÿÿÿíöÎ& & ¤ 9ÿÿÿíöÎ& & ¤ NÿÿÿìöÎ& & ¤ cÿÿÿîöÎ& & ¤ xÿÿÿíöÎ& & ¤ ÿÿÿçöÎ& & ¤ ¢ÿÿÿïöÎ&& š ·ÿÿÿîöÎ&& š ÌÿÿÿèöÎ& & ¤ áÿÿÿèöÎ&& ® öÿÿÿéöÎ&& š ÿÿÿçöÎ&& ® ÿÿÿçöÎ&& š 5ÿÿÿçöÎ& & ¤ JÿÿÿëöÎ&& š _ÿÿÿìöÎ& & ¤ tÿÿÿíöÎ&& š ‰ÿÿÿçöÎ& & ¤ žÿÿ ÿëÐÎ&ð ¸ÿÿÿëÐÎ&& Ì |ÿÿÿëÐÎ&& Ì ‘ÿÿÿêëÎ&& Ì ¦ÿÿÿðÕÎ&ù&  »ÿÿÿêãÎ&& Ì ÐÿÿÿçßÎ& & Ö åÿÿÿïÕÎ&& Ì úÿÿÿíÕÎ& & Ö ÿÿÿëÐÎ& & Ö $ÿÿÿíÐÎ& & Ö 9ÿÿÿíÐÎ& & Ö NÿÿÿìéÎ& & Ö cÿÿÿîÔÎ& & Ö xÿÿÿíÕÎ& & Ö ÿÿÿçÛÎ& & Ö ¢ÿÿÿïÐÎ&& Ì ·ÿÿÿîÐÎ&& Ì ÌÿÿÿèéÎ& & Ö áÿÿÿèãÎ&& à öÿÿÿééÎ&& Ì ÿÿÿçÔÎ&& à ÿÿÿçâÎ&& Ì 5ÿÿÿçâÎ& & Ö JÿÿÿëÐÎ&& Ì _ÿÿÿìÕÎ& & Ö tÿÿÿíØÎ&& Ì ‰ÿÿÿçÜÎ& & Ö žÿÿÿëÐÎ&î íÿÿÿëÐÎ&& ý |ÿÿÿëÐÎ&& ý ‘ÿÿÿêëÎ&& ý ¦ÿÿÿðÕÎ&÷& ó »ÿÿÿêãÎ&& ý ÐÿÿÿçßÎ& &  åÿÿÿïÕÎ&& ý úÿÿÿíÕÎ& &  ÿÿÿëÐÎ& &  $ÿÿÿíÐÎ& &  9ÿÿÿíÐÎ& &  NÿÿÿìéÎ& &  cÿÿÿîÔÎ& &  xÿÿÿíÕÎ& &  ÿÿÿçÛÎ& &  ¢ÿÿÿïÐÎ&& ý ·ÿÿÿîÐÎ&& ý ÌÿÿÿèéÎ& &  áÿÿÿèãÎ&&  öÿÿÿééÎ&& ý ÿÿÿçÔÎ&&  ÿÿÿçâÎ&& ý 5ÿÿÿçâÎ& &  JÿÿÿëÐÎ&& ý _ÿÿÿìÕÎ& &  tÿÿÿíØÎ&& ý ‰ÿÿÿçÜÎ& &  žÿÿ ëÃ&ì ÿÿÿëëÎ&þ& / {ÿÿÿëëÎ&þ& / ÿÿÿêëÎ&þ& / ¥ÿÿÿðëÎ&õ& % ºÿÿÿéëÎ&þ& / ÏÿÿÿçëÎ&& 9 äÿÿÿïëÎ&þ& / ùÿÿÿíëÎ&& 9 ÿÿÿëëÎ&& 9 #ÿÿÿíëÎ&& 9 8ÿÿÿðëÎ&& 9 MÿÿÿìëÎ&& 9 bÿÿÿíëÎ&& 9 wÿÿÿíëÎ&& 9 ŒÿÿÿçëÎ&& 9 ¡ÿÿÿïëÎ&þ& / ¶ÿÿÿîëÎ&þ& / ËÿÿÿèìÎ&& 9 àÿÿÿèëÎ&þ& C õÿÿÿéëÎ&þ& / ÿÿÿçëÎ&þ& C ÿÿÿçëÎ&þ& / 4ÿÿÿçëÎ&& 9 IÿÿÿëëÎ&þ& / ^ÿÿÿìëÎ&& 9 sÿÿÿíëÎ&þ& / ˆÿÿÿçëÎ&& 9 ÿÿÿëëÎ& KíÿÿÿëëÎ&ÿ& V {ÿÿÿëëÎ&ÿ& V ÿÿÿêëÎ&ÿ& V ¥ÿÿÿðëÎ&ÿ& Q ºÿÿÿéëÎ&ÿ& V ÏÿÿÿçëÎ&& k äÿÿÿïëÎ&ÿ& V ùÿÿÿíëÎ&& k ÿÿÿëëÎ&& k #ÿÿÿíëÎ&& k 8ÿÿÿðëÎ&& k MÿÿÿìëÎ&& k bÿÿÿíëÎ&& k wÿÿÿíëÎ&& k ŒÿÿÿçëÎ&& k ¡ÿÿÿïëÎ&ÿ& V ¶ÿÿÿîëÎ&ÿ& V ËÿÿÿèìÎ&& k àÿÿÿèëÎ&ÿ& d õÿÿÿéëÎ&ÿ& V ÿÿÿçëÎ&ÿ& V ÿÿÿçëÎ&ÿ& V 4ÿÿÿçëÎ&& ] IÿÿÿëëÎ&ÿ& V ^ÿÿÿìëÎ&& k sÿÿÿíëÎ&ÿ& V ˆÿÿÿçëÎ&& ] ÿÿÿëÐÎ&ï rÿÿÿëÐÎ&& € ~ÿÿÿëÐÎ&& € “ÿÿÿêëÎ&& € ¨ÿÿÿðÕÎ&ø& y ½ÿÿÿéãÎ&& € ÒÿÿÿçßÎ& & • çÿÿÿïÕÎ&& € üÿÿÿíÕÎ& & • ÿÿÿëÐÎ& & • &ÿÿÿíÐÎ& & • ;ÿÿÿíÐÎ& & • PÿÿÿëéÎ& & • eÿÿÿîÔÎ& & • zÿÿÿíÖÎ& & • ÿÿÿçÛÎ& & • ¤ÿÿÿïÐÎ&& € ¹ÿÿÿîÐÎ&& € ÎÿÿÿêéÎ& & • ãÿÿÿèãÎ&& Ž øÿÿÿçéÎ&& € ÿÿÿçÔÎ&& Ž "ÿÿÿçÞÎ&& € 7ÿÿÿíÞÎ& & ‡ LÿÿÿëÐÎ&& € aÿÿÿìÕÎ& & • vÿÿÿíØÎ&& € ‹ÿÿÿçÜÎ& & ‡  ÿÿÿëÐÎ&ñ œÿÿÿëÐÎ&& ª ~ÿÿÿëÐÎ&& ª “ÿÿÿêëÎ&& ª ¨ÿÿÿðÕÎ&ú& £ ½ÿÿÿéãÎ&& ª ÒÿÿÿçßÎ& & ¿ çÿÿÿïÕÎ&& ª üÿÿÿíÕÎ& & ¿ ÿÿÿëÐÎ& & ¿ &ÿÿÿíÐÎ& & ¿ ;ÿÿÿíÐÎ& & ¿ PÿÿÿëéÎ& & ¿ eÿÿÿîÔÎ& & ¿ zÿÿÿíÖÎ& & ¿ ÿÿÿçÛÎ& & ¿ ¤ÿÿÿïÐÎ&& ª ¹ÿÿÿîÐÎ&& ª ÎÿÿÿêéÎ& & ¿ ãÿÿÿèãÎ&& ¸ øÿÿÿçéÎ&& ª ÿÿÿçÔÎ&& ¸ "ÿÿÿçÞÎ&& ª 7ÿÿÿíÞÎ& & ± LÿÿÿëÐÎ&& ª aÿÿÿìÕÎ& & ¿ vÿÿÿíØÎ&& ª ‹ÿÿÿçÜÎ& & ±  ÿÿÿëÐÎ&ï ÆÿÿÿëÐÎ&& Ô }ÿÿÿëÐÎ&& Ô ’ÿÿÿêëÎ&& Ô §ÿÿÿðÕÎ&ø& Í ¼ÿÿÿéãÎ&& Ô ÑÿÿÿçßÎ& & é æÿÿÿïÕÎ&& Ô ûÿÿÿíÕÎ& & é ÿÿÿëÐÎ& & é %ÿÿÿíÐÎ& & é :ÿÿÿíÐÎ& & é OÿÿÿëèÎ& & é dÿÿÿîÔÎ& & é yÿÿÿíÖÎ& & é ŽÿÿÿçÛÎ& & é £ÿÿÿïÐÎ&& Ô ¸ÿÿÿîÐÎ&& Ô ÍÿÿÿêéÎ& & é âÿÿÿèãÎ&& â ÷ÿÿÿçéÎ&& Ô ÿÿÿçÔÎ&& â !ÿÿÿçÞÎ&& Ô 6ÿÿÿçÞÎ& & Û KÿÿÿëÐÎ&& Ô `ÿÿÿìÕÎ& & é uÿÿÿíØÎ&& Ô ŠÿÿÿçÖÎ& & Û ŸÿÿÿíëÎ&í ðÿÿÿëëÎ&ÿ& þ {ÿÿÿëëÎ&ÿ& þ ÿÿÿêëÎ&ÿ& þ ¥ÿÿÿðëÎ&ö& ÷ ºÿÿÿéëÎ&ÿ& þ ÏÿÿÿçëÎ&&  äÿÿÿïëÎ&ÿ& þ ùÿÿÿíëÎ&&  ÿÿÿëëÎ&&  #ÿÿÿíëÎ&&  8ÿÿÿðëÎ&&  MÿÿÿìëÎ&&  bÿÿÿíëÎ&&  wÿÿÿíëÎ&&  ŒÿÿÿçëÎ&&  ¡ÿÿÿïëÎ&ÿ& þ ¶ÿÿÿîëÎ&ÿ& þ ËÿÿÿèìÎ&&  àÿÿÿèëÎ&ÿ&  õÿÿÿéëÎ&ÿ& þ ÿÿÿçëÎ&ÿ&  ÿÿÿçëÎ&ÿ& þ 4ÿÿÿçëÎ&&  IÿÿÿëëÎ&ÿ& þ ^ÿÿÿìëÎ&&  sÿÿÿíëÎ&ÿ& þ ˆÿÿÿçëÎ&&  ÿÿ ëÃ&ì ÿÿÿëëÎ&þ& ' {ÿÿÿëëÎ&þ& ' ÿÿÿêëÎ&þ& ' ¥ÿÿÿðëÎ& & ºöÿÿÿéëÎ&þ& ' ÏÿÿÿçëÎ&& < äÿÿÿïëÎ&þ& ' ùÿÿÿíëÎ&& < ÿÿÿëëÎ&& < #ÿÿÿíëÎ&& < 8ÿÿÿðëÎ&& < MÿÿÿìëÎ&& < bÿÿÿíëÎ&& < wÿÿÿíëÎ&& < ŒÿÿÿçëÎ&& < ¡ÿÿÿïëÎ&þ& ' ¶ÿÿÿîëÎ&þ& ' ËÿÿÿèìÎ&& < àÿÿÿèëÎ&þ& 5 õÿÿÿéëÎ&þ& ' ÿÿÿçëÎ& 5& þÿÿÿçëÎ&þ& ' 4ÿÿÿçëÎ&& . IÿÿÿëëÎ&þ& ' ^ÿÿÿìëÎ&& < sÿÿÿíëÎ&þ& ' ˆÿÿÿçëÎ&& . ÿÿÿëÐÎ&î CÿÿÿëÐÎ&& P |ÿÿÿëÐÎ&& P ‘ÿÿÿêëÎ&& P ¦ÿÿÿðÕÎ&÷& I »ÿÿÿêãÎ&& P ÐÿÿÿçßÎ& & e åÿÿÿïÕÎ&& P úÿÿÿíÕÎ& & e ÿÿÿëÐÎ& & e $ÿÿÿíÐÎ& & e 9ÿÿÿíÐÎ& & e NÿÿÿìéÎ& & e cÿÿÿîÔÎ& & e xÿÿÿíÕÎ& & e ÿÿÿçÛÎ& & e ¢ÿÿÿïÐÎ&& P ·ÿÿÿîÐÎ&& P ÌÿÿÿèéÎ& & e áÿÿÿèãÎ&& ^ öÿÿÿééÎ&& P ÿÿÿçÔÎ&& ^ ÿÿÿçâÎ&& P 5ÿÿÿçâÎ& & W JÿÿÿëÐÎ&& P _ÿÿÿìÕÎ& & e tÿÿÿíØÎ&& P ‰ÿÿÿçÜÎ& & W žÿÿÿëÐÎ&é iÿÿ ÿëÐÎ& o&û xÿÿ ÿëÐÎ&û& o Žÿÿ ÿèìÎ&û& o £ÿÿ ÿðÕÎ& l& »òÿÿ ÿéãÎ&û& o Íÿÿ ÿçßÎ&& u âÿÿ ÿïÕÎ&û& o ÷ÿÿ ÿíÕÎ&û& o ÿÿ ÿëÐÎ&& u !ÿÿ ÿíÐÎ&& u 6ÿÿ ÿíÐÎ&& u Kÿÿ ÿìéÎ&& u `ÿÿ ÿíÔÎ&& u uÿÿ ÿíÕÎ&& u Šÿÿ ÿçÛÎ&& u Ÿÿÿ ÿïÐÎ&û& o ´ÿÿ ÿîÐÎ&û& o Éÿÿ ÿèìÎ&& u Þÿÿ ÿèãÎ&û& r óÿÿ ÿééÎ&û& o ÿÿ ÿçÔÎ&û& r ÿÿ ÿçÞÎ&û& o 2ÿÿ ÿçÞÎ&& o Gÿÿ ÿëÐÎ&û& o \ÿÿ ÿìÕÎ&& u qÿÿ ÿíØÎ&û& o †ÿÿ ÿçÖÎ&& o ›ÿÿ ÿëöÎ&V ÿÿÿëõÎ&&\ xÿÿÿëõÎ&&\ ÿÿÿèõÎ&&\ ¢ÿÿ ÿðöÎ&&Y ·ÿÿÿêõÎ&&\ Ìÿÿ ÿçõÎ&(&b áÿÿÿïõÎ&&\ öÿÿ ÿíõÎ&(&b ÿÿ ÿëõÎ&(&b ÿÿ ÿíõÎ&(&b 5ÿÿ ÿíõÎ&(&b Jÿÿ ÿìõÎ&(&b _ÿÿ ÿíõÎ&(&b tÿÿ ÿíõÎ&(&b ‰ÿÿ ÿçõÎ&(&b žÿÿÿïõÎ&&\ ³ÿÿÿîõÎ&&\ Èÿÿ ÿèõÎ&(&b ÝÿÿÿèõÎ&&_ òÿÿÿéõÎ&&\ ÿÿÿçõÎ&&_ ÿÿÿçõÎ&&\ 1ÿÿ ÿçõÎ&(&\ FÿÿÿëõÎ&&\ [ÿÿ ÿìõÎ&(&b pÿÿÿíõÎ&&\ …ÿÿ ÿçõÎ&(&\ šÿÿÿëÑÎ&eÿÿÿëÐÎ&!&k zÿÿÿëÐÎ&!&k ÿÿÿèìÎ&!&k ¤ÿÿÿðÕÎ&&h ¹ÿÿÿéãÎ&!&k ÎÿÿÿçßÎ&*&q ãÿÿÿïÕÎ&!&k øÿÿÿíÕÎ&*&q ÿÿÿëÑÎ&*&q "ÿÿÿíÑÎ&*&q 7ÿÿÿíÑÎ&*&q LÿÿÿìéÎ&*&q aÿÿÿíÔÎ&*&q vÿÿÿíÕÎ&*&q ‹ÿÿÿçÛÎ&*&q  ÿÿÿïÐÎ&!&k µÿÿÿîÐÎ&!&k ÊÿÿÿèìÎ&*&q ßÿÿÿèàÍ&!&n ôÿÿÿééÎ&!&k ÿÿÿçÔÍ&!&n ÿÿÿçÞÎ&!&k 3ÿÿÿçÞÎ&*&k HÿÿÿëÐÎ&!&k ]ÿÿÿìÕÎ&*&q rÿÿÿíØÎ&!&k ‡ÿÿÿçÜÎ&*&k œÿÿ ÿëöÎ& tÿÿÿëöÎ&&z xÿÿÿëöÎ&&z ÿÿÿèöÎ&&z ¢ÿÿ ÿðöÎ&&w ·ÿÿÿêöÎ&&z Ìÿÿ ÿçöÎ&(&€ áÿÿÿïöÎ&&z öÿÿ ÿíöÎ&(&€ ÿÿ ÿëöÎ&(&€ ÿÿ ÿíöÎ&(&€ 5ÿÿ ÿíöÎ&(&€ Jÿÿ ÿìöÎ&(&€ _ÿÿ ÿíöÎ&(&€ tÿÿ ÿíöÎ&(&€ ‰ÿÿ ÿçöÎ&(&€ žÿÿÿïöÎ&&z ³ÿÿÿîöÎ&&z Èÿÿ ÿèöÎ&(&€ ÝÿÿÿèöÎ&&} òÿÿÿéöÎ&&z ÿÿÿçöÎ&&} ÿÿÿçöÎ&&z 1ÿÿ ÿçöÎ&(&z FÿÿÿëöÎ&&z [ÿÿ ÿìöÎ&(&€ pÿÿÿíöÎ&&z …ÿÿ ÿçöÎ&(&z šÿÿÿëÐÎ&ƒÿÿÿëÐÎ&!&‰ zÿÿÿëÐÎ&!&‰ ÿÿÿèìÎ&!&‰ ¤ÿÿÿðÕÎ&&† ¹ÿÿÿéãÎ&!&‰ ÎÿÿÿçßÎ&*& ãÿÿÿïÕÎ&!&‰ øÿÿÿíÕÎ&*& ÿÿÿëÐÎ&*& "ÿÿÿíÐÎ&*& 7ÿÿÿíÐÎ&*& LÿÿÿìéÎ&*& aÿÿÿíÔÎ&*& vÿÿÿíÕÎ&*& ‹ÿÿÿçÛÎ&*&  ÿÿÿïÐÎ&!&‰ µÿÿÿîÐÎ&!&‰ ÊÿÿÿèìÎ&*& ßÿÿÿèàÎ&!&Œ ôÿÿÿééÎ&!&‰ ÿÿÿçÔÎ&!&Œ ÿÿÿçÞÎ&!&‰ 3ÿÿÿçÞÎ&*&‰ HÿÿÿëÐÎ&!&‰ ]ÿÿÿìÕÎ&*& rÿÿÿíØÎ&!&‰ ‡ÿÿÿçÜÎ&*&‰ œÿÿÿëÐÎ&“ÿÿÿëÐÎ& &¦ yÿÿÿëÐÎ& &¦ ŽÿÿÿèìÎ& &¦ £ÿÿÿðÕÎ&& ¸ÿÿÿéãÎ& &¦ ÍÿÿÿçßÎ&)&° âÿÿÿïÕÎ& &¦ ÷ÿÿÿíÕÎ&)&° ÿÿÿëÐÎ&)&° !ÿÿÿíÐÎ&)&° 6ÿÿÿíÐÎ&)&° KÿÿÿìéÎ&)&° `ÿÿÿíÔÎ&)&° uÿÿÿíÕÎ&)&° ŠÿÿÿçÛÎ&)&° ŸÿÿÿïÐÎ& &¦ ´ÿÿÿîÐÎ& &¦ ÉÿÿÿèìÎ&)&° ÞÿÿÿèãÎ& &º óÿÿÿééÎ& &¦ ÿÿÿçÔÎ& &º ÿÿÿçÞÎ& &¦ 2ÿÿÿçÞÎ&)&° GÿÿÿëÐÎ& &¦ \ÿÿÿìÕÎ&)&° qÿÿÿíØÎ& &¦ †ÿÿÿçÖÎ&)&° ›ÿÿÿëÐÎ&ÃÿÿÿëÐÎ&!&Ö zÿÿÿëÐÎ&!&Ö ÿÿÿèìÎ&!&Ö ¤ÿÿÿðÕÎ&&Ì ¹ÿÿÿéãÎ&!&Ö ÎÿÿÿçßÎ&*&à ãÿÿÿïÕÎ&!&Ö øÿÿÿíÕÎ&*&à ÿÿÿëÐÎ&*&à "ÿÿÿíÐÎ&*&à 7ÿÿÿíÐÎ&*&à LÿÿÿìéÎ&*&à aÿÿÿíÔÎ&*&à vÿÿÿíÕÎ&*&à ‹ÿÿÿçÛÎ&*&à  ÿÿÿïÐÎ&!&Ö µÿÿÿîÐÎ&!&Ö ÊÿÿÿèìÎ&*&à ßÿÿÿèàÎ&!&ê ôÿÿÿééÎ&!&Ö ÿÿÿçÔÎ&!&ê ÿÿÿçÞÎ&!&Ö 3ÿÿÿçÞÎ&*&à HÿÿÿëÐÎ&!&Ö ]ÿÿÿìÕÎ&*&à rÿÿÿíØÎ&!&Ö ‡ÿÿÿçÜÎ&*&à œÿÿÿëÐÎ&ôÿÿÿëÐÎ& &  yÿÿÿëÐÎ& &  ŽÿÿÿèìÎ& &  £ÿÿÿðÕÎ&&þ ¸ÿÿÿéãÎ& &  ÍÿÿÿçßÎ&)&  âÿÿÿïÕÎ& &  ÷ÿÿÿíÕÎ&)&  ÿÿÿëÐÎ&)&  !ÿÿÿíÐÎ&)&  6ÿÿÿíÐÎ&)&  KÿÿÿìéÎ&)&  `ÿÿÿíÔÎ&)&  uÿÿÿíÕÎ&)&  ŠÿÿÿçÛÎ&)&  ŸÿÿÿïÐÎ& &  ´ÿÿÿîÐÎ& &  ÉÿÿÿèìÎ&)&  ÞÿÿÿèãÎ& &  óÿÿÿééÎ& &  ÿÿÿçÔÎ& &  ÿÿÿçÞÎ& &  2ÿÿÿçÞÎ&)&  GÿÿÿëÐÎ& &  \ÿÿÿìÕÎ&)&  qÿÿÿíØÎ& &  †ÿÿÿçÖÎ&)&  ›ÿÿÿëÐÎ& #ÿÿÿëÐÎ&!& 7 zÿÿÿëÐÎ&!& 7 ÿÿÿèìÎ&!& 7 ¤ÿÿÿðÕÎ&& - ¹ÿÿÿéãÎ&!& 7 ÎÿÿÿçßÎ&*& A ãÿÿÿïÕÎ&!& 7 øÿÿÿíÕÎ&*& A ÿÿÿëÐÎ&*& A "ÿÿÿíÐÎ&*& A 7ÿÿÿíÐÎ&*& A LÿÿÿìéÎ&*& A aÿÿÿíÔÎ&*& A vÿÿÿíÕÎ&*& A ‹ÿÿÿçÛÎ&*& A  ÿÿÿïÐÎ&!& 7 µÿÿÿîÐÎ&!& 7 ÊÿÿÿèìÎ&*& A ßÿÿÿèàÎ&!& K ôÿÿÿééÎ&!& 7 ÿÿÿçÔÎ&!& K ÿÿÿçÞÎ&!& 7 3ÿÿÿçÞÎ&*& A HÿÿÿëÐÎ&!& 7 ]ÿÿÿìÕÎ&*& A rÿÿÿíØÎ&!& 7 ‡ÿÿÿçÜÎ&*& A œÿÿ ê¾& UÿÿÿëêÎ&"& f {ÿÿÿëêÎ&"& f ÿÿÿêêÎ&"& f ¥ÿÿÿðêË&& ] ºÿÿÿéêÎ&"& f ÏÿÿÿçêË&+& p äÿÿÿïêÎ&"& f ùÿÿÿíêË&+& p ÿÿÿëêË&+& p #ÿÿÿíêË&+& p 8ÿÿÿðêË&+& p MÿÿÿìêË&+& p bÿÿÿíêË&+& p wÿÿÿíêË&+& p ŒÿÿÿçêË&+& p ¡ÿÿÿïêÎ&"& f ¶ÿÿÿîêÎ&"& f ËÿÿÿèìË&+& p àÿÿÿèêÎ&"& y õÿÿÿéêÎ&"& f ÿÿÿçêÎ&"& y ÿÿÿçêÎ&"& f 4ÿÿÿçêË&+& p IÿÿÿëêÎ&"& f ^ÿÿÿìêË&+& p sÿÿÿíêÎ&"& f ˆÿÿÿçêË&+& p ÿÿ ÿëöÎ& ƒÿÿÿëöÎ&$& — |ÿÿÿëöÎ&$& — ‘ÿÿÿêöÎ&$& — ¦ÿÿÿðöÎ&&  »ÿÿÿêöÎ&$& — ÐÿÿÿçöÎ&-& ¡ åÿÿÿïöÎ&$& — úÿÿÿíöÎ&-& ¡ ÿÿÿëöÎ&-& ¡ $ÿÿÿíöÎ&-& ¡ 9ÿÿÿíöÎ&-& ¡ NÿÿÿìöÎ&-& ¡ cÿÿÿîöÎ&-& ¡ xÿÿÿíöÎ&-& ¡ ÿÿÿçöÎ&-& ¡ ¢ÿÿÿïöÎ&$& — ·ÿÿÿîöÎ&$& — ÌÿÿÿèöÎ&-& ¡ áÿÿÿèöÎ&$& « öÿÿÿéöÎ&$& — ÿÿÿçöÎ&$& « ÿÿÿçöÎ&$& — 5ÿÿÿçöÎ&-& ¡ JÿÿÿëöÎ&$& — _ÿÿÿìöÎ&-& ¡ tÿÿÿíöÎ&$& — ‰ÿÿÿçöÎ&-& ¡ žÿÿ ÿëÐÎ& µÿÿ ÿëÐÎ&&& É |ÿÿ ÿëÐÎ&&& É ‘ÿÿ ÿêëÎ&&& É ¦ÿÿ ÿðÕÎ&& ¿ »ÿÿ ÿêãÎ&&& É ÐÿÿÿçßÎ&/& Ó åÿÿ ÿïÕÎ&&& É úÿÿÿíÕÎ&/& Ó ÿÿÿëÐÎ&/& Ó $ÿÿÿíÐÎ&/& Ó 9ÿÿÿíÐÎ&/& Ó NÿÿÿìéÎ&/& Ó cÿÿÿîÔÎ&/& Ó xÿÿÿíÕÎ&/& Ó ÿÿÿçÛÎ&/& Ó ¢ÿÿ ÿïÐÎ&&& É ·ÿÿ ÿîÐÎ&&& É ÌÿÿÿèéÎ&/& Ó áÿÿ ÿèãÎ&&& Ý öÿÿ ÿééÎ&&& É ÿÿ ÿçÔÎ&&& Ý ÿÿ ÿçâÎ&&& É 5ÿÿÿçâÎ&/& Ó Jÿÿ ÿëÐÎ&&& É _ÿÿÿìÕÎ&/& Ó tÿÿ ÿíØÎ&&& É ‰ÿÿÿçÜÎ&/& Ó žÿÿ ÿëÐÎ& çÿÿÿëÐÎ&$& ú |ÿÿÿëÐÎ&$& ú ‘ÿÿÿêëÎ&$& ú ¦ÿÿÿðÕÎ&& ð »ÿÿÿêãÎ&$& ú ÐÿÿÿçßÎ&-&  åÿÿÿïÕÎ&$& ú úÿÿÿíÕÎ&-&  ÿÿÿëÐÎ&-&  $ÿÿÿíÐÎ&-&  9ÿÿÿíÐÎ&-&  NÿÿÿìéÎ&-&  cÿÿÿîÔÎ&-&  xÿÿÿíÕÎ&-&  ÿÿÿçÛÎ&-&  ¢ÿÿÿïÐÎ&$& ú ·ÿÿÿîÐÎ&$& ú ÌÿÿÿèéÎ&-&  áÿÿÿèãÎ&$&  öÿÿÿééÎ&$& ú ÿÿÿçÔÎ&$&  ÿÿÿçâÎ&$& ú 5ÿÿÿçâÎ&-&  JÿÿÿëÐÎ&$& ú _ÿÿÿìÕÎ&-&  tÿÿÿíØÎ&$& ú ‰ÿÿÿçÜÎ&-&  žÿÿ ë¾& ÿÿÿëëÎ&"& , {ÿÿÿëëÎ&"& , ÿÿÿêëÎ&"& , ¥ÿÿÿðëË&& " ºÿÿÿéëÎ&"& , ÏÿÿÿçëË&+& 6 äÿÿÿïëÎ&"& , ùÿÿÿíëË&+& 6 ÿÿÿëëË&+& 6 #ÿÿÿíëË&+& 6 8ÿÿÿðëË&+& 6 MÿÿÿìëË&+& 6 bÿÿÿíëË&+& 6 wÿÿÿíëË&+& 6 ŒÿÿÿçëË&+& 6 ¡ÿÿÿïëÎ&"& , ¶ÿÿÿîëÎ&"& , ËÿÿÿèìË&+& 6 àÿÿÿèëÎ&"& @ õÿÿÿéëÎ&"& , ÿÿÿçëÎ&"& @ ÿÿÿçëÎ&"& , 4ÿÿÿçëË&+& 6 IÿÿÿëëÎ&"& , ^ÿÿÿìëË&+& 6 sÿÿÿíëÎ&"& , ˆÿÿÿçëË&+& 6 ÿÿÿëëË& IÿÿÿëëË&#& T {ÿÿÿëëË&#& T ÿÿÿêëË&#& T ¥ÿÿÿðëË&& O ºÿÿÿéëË&#& T ÏÿÿÿçëË&,& i äÿÿÿïëË&#& T ùÿÿÿíëË&,& i ÿÿÿëëË&,& i #ÿÿÿíëË&,& i 8ÿÿÿðëË&,& i MÿÿÿìëË&,& i bÿÿÿíëË&,& i wÿÿÿíëË&,& i ŒÿÿÿçëË&,& i ¡ÿÿÿïëË&#& T ¶ÿÿÿîëË&#& T ËÿÿÿèìË&,& i àÿÿÿèëË&#& b õÿÿÿéëË&#& T ÿÿÿçëË&#& T ÿÿÿçëË&#& T 4ÿÿÿçëË&,& [ IÿÿÿëëË&#& T ^ÿÿÿìëË&,& i sÿÿÿíëË&#& T ˆÿÿÿçëË&,& [ ÿÿ ÿëÐÎ& pÿÿÿëÐÎ&%& ~ ~ÿÿÿëÐÎ&%& ~ “ÿÿÿêëÎ&%& ~ ¨ÿÿÿðÕÎ&& w ½ÿÿÿéãÎ&%& ~ ÒÿÿÿçßÎ&.& “ çÿÿÿïÕÎ&%& ~ üÿÿÿíÕÎ&.& “ ÿÿÿëÐÎ&.& “ &ÿÿÿíÐÎ&.& “ ;ÿÿÿíÐÎ&.& “ PÿÿÿëéÎ&.& “ eÿÿÿîÔÎ&.& “ zÿÿÿíÖÎ&.& “ ÿÿÿçÛÎ&.& “ ¤ÿÿÿïÐÎ&%& ~ ¹ÿÿÿîÐÎ&%& ~ ÎÿÿÿêéÎ&.& “ ãÿÿÿèãÎ&%& Œ øÿÿÿçéÎ&%& ~ ÿÿÿçÔÎ&%& Œ "ÿÿÿçÞÎ&%& ~ 7ÿÿÿíÞÎ&.& … LÿÿÿëÐÎ&%& ~ aÿÿÿìÕÎ&.& “ vÿÿÿíØÎ&%& ~ ‹ÿÿÿçÜÎ&.& …  ÿÿ ÿëÐÎ& šÿÿÿëÐÎ&'& ¨ ~ÿÿÿëÐÎ&'& ¨ “ÿÿÿêëÎ&'& ¨ ¨ÿÿ ÿðÕÎ&& ¡ ½ÿÿÿéãÎ&'& ¨ Òÿÿ ÿçßÎ&0& ½ çÿÿÿïÕÎ&'& ¨ üÿÿ ÿíÕÎ&0& ½ ÿÿ ÿëÐÎ&0& ½ &ÿÿ ÿíÐÎ&0& ½ ;ÿÿ ÿíÐÎ&0& ½ Pÿÿ ÿëéÎ&0& ½ eÿÿ ÿîÔÎ&0& ½ zÿÿ ÿíÖÎ&0& ½ ÿÿ ÿçÛÎ&0& ½ ¤ÿÿÿïÐÎ&'& ¨ ¹ÿÿÿîÐÎ&'& ¨ Îÿÿ ÿêéÎ&0& ½ ãÿÿÿèãÎ&'& ¶ øÿÿÿçéÎ&'& ¨ ÿÿÿçÔÎ&'& ¶ "ÿÿÿçÞÎ&'& ¨ 7ÿÿ ÿíÞÎ&0& ¯ LÿÿÿëÐÎ&'& ¨ aÿÿ ÿìÕÎ&0& ½ vÿÿÿíØÎ&'& ¨ ‹ÿÿ ÿçÜÎ&0& ¯  ÿÿ ÿëÐÎ& ÄÿÿÿëÐÎ&%& Ò }ÿÿÿëÐÎ&%& Ò ’ÿÿÿêëÎ&%& Ò §ÿÿÿðÕÎ&& Ë ¼ÿÿÿéãÎ&%& Ò ÑÿÿÿçßÎ&.& ç æÿÿÿïÕÎ&%& Ò ûÿÿÿíÕÎ&.& ç ÿÿÿëÐÎ&.& ç %ÿÿÿíÐÎ&.& ç :ÿÿÿíÐÎ&.& ç OÿÿÿëèÎ&.& ç dÿÿÿîÔÎ&.& ç yÿÿÿíÖÎ&.& ç ŽÿÿÿçÛÎ&.& ç £ÿÿÿïÐÎ&%& Ò ¸ÿÿÿîÐÎ&%& Ò ÍÿÿÿêéÎ&.& ç âÿÿÿèãÎ&%& à ÷ÿÿÿçéÎ&%& Ò ÿÿÿçÔÎ&%& à !ÿÿÿçÞÎ&%& Ò 6ÿÿÿçÞÎ&.& Ù KÿÿÿëÐÎ&%& Ò `ÿÿÿìÕÎ&.& ç uÿÿÿíØÎ&%& Ò ŠÿÿÿçÖÎ&.& Ù ŸÿÿÿíëË& îÿÿÿëëË&#& ü {ÿÿÿëëË&#& ü ÿÿÿêëË&#& ü ¥ÿÿÿðëË&& õ ºÿÿÿéëË&#& ü ÏÿÿÿçëË&,&  äÿÿÿïëË&#& ü ùÿÿÿíëË&,&  ÿÿÿëëË&,&  #ÿÿÿíëË&,&  8ÿÿÿðëË&,&  MÿÿÿìëË&,&  bÿÿÿíëË&,&  wÿÿÿíëË&,&  ŒÿÿÿçëË&,&  ¡ÿÿÿïëË&#& ü ¶ÿÿÿîëË&#& ü ËÿÿÿèìË&,&  àÿÿÿèëË&#&  õÿÿÿéëË&#& ü ÿÿÿçëË&#&  ÿÿÿçëË&#& ü 4ÿÿÿçëË&,&  IÿÿÿëëË&#& ü ^ÿÿÿìëË&,&  sÿÿÿíëË&#& ü ˆÿÿÿçëË&,&  ÿÿ ë¾& ÿÿÿëëÎ&"& % {ÿÿÿëëÎ&"& % ÿÿÿêëÎ&"& % ¥ÿÿÿðëË&&  ºÿÿÿéëÎ&"& % ÏÿÿÿçëË&+& : äÿÿÿïëÎ&"& % ùÿÿÿíëË&+& : ÿÿÿëëË&+& : #ÿÿÿíëË&+& : 8ÿÿÿðëË&+& : MÿÿÿìëË&+& : bÿÿÿíëË&+& : wÿÿÿíëË&+& : ŒÿÿÿçëË&+& : ¡ÿÿÿïëÎ&"& % ¶ÿÿÿîëÎ&"& % ËÿÿÿèìË&+& : àÿÿÿèëÎ&"& 3 õÿÿÿéëÎ&"& % ÿÿÿçëÎ&"& 3 ÿÿÿçëÎ&"& % 4ÿÿÿçëË&+& , IÿÿÿëëÎ&"& % ^ÿÿÿìëË&+& : sÿÿÿíëÎ&"& % ˆÿÿÿçëË&+& , ÿÿ ÿëÐÎ& AÿÿÿëÐÎ&$& N |ÿÿÿëÐÎ&$& N ‘ÿÿÿêëÎ&$& N ¦ÿÿÿðÕÎ&& G »ÿÿÿêãÎ&$& N ÐÿÿÿçßÎ&-& c åÿÿÿïÕÎ&$& N úÿÿÿíÕÎ&-& c ÿÿÿëÐÎ&-& c $ÿÿÿíÐÎ&-& c 9ÿÿÿíÐÎ&-& c NÿÿÿìéÎ&-& c cÿÿÿîÔÎ&-& c xÿÿÿíÕÎ&-& c ÿÿÿçÛÎ&-& c ¢ÿÿÿïÐÎ&$& N ·ÿÿÿîÐÎ&$& N ÌÿÿÿèéÎ&-& c áÿÿÿèãÎ&$& \ öÿÿÿééÎ&$& N ÿÿÿçÔÎ&$& \ ÿÿÿçâÎ&$& N 5ÿÿÿçâÎ&-& U JÿÿÿëÐÎ&$& N _ÿÿÿìÕÎ&-& c tÿÿÿíØÎ&$& N ‰ÿÿÿçÜÎ&-& U žÿÿ ÿëÐÎ&  jÿÿÿëÐÎ&& p yÿÿÿëÐÎ&& p ŽÿÿÿèìÎ&& p £ÿÿ ÿðÕÎ&& m ¸ÿÿÿéãÎ&& p Íÿÿ ÿçßÎ&(& v âÿÿÿïÕÎ&& p ÷ÿÿ ÿíÕÎ&(& v ÿÿ ÿëÐÎ&(& v !ÿÿ ÿíÐÎ&(& v 6ÿÿ ÿíÐÎ&(& v Kÿÿ ÿìéÎ&(& v `ÿÿ ÿíÔÎ&(& v uÿÿ ÿíÕÎ&(& v Šÿÿ ÿçÛÎ&(& v ŸÿÿÿïÐÎ&& p ´ÿÿÿîÐÎ&& p Éÿÿ ÿèìÎ&(& v ÞÿÿÿèãÎ&& s óÿÿÿééÎ&& p ÿÿÿçÔÎ&& s ÿÿÿçÞÎ&& p 2ÿÿ ÿçÞÎ&(& p GÿÿÿëÐÎ&& p \ÿÿ ÿìÕÎ&(& v qÿÿÿíØÎ&& p †ÿÿ ÿçÖÎ&(& p ›ÿÿÿëöÎ&U1ÿÿÿëõÎ&A&[ xÿÿÿëõÎ&A&[ ÿÿÿèõÎ&A&[ ¢ÿÿÿðöÎ&:&X »ÿÿÿêõÎ&A&[ ÌÿÿÿçõÎ& ã&aJÿÿÿïõÎ&A&[ öÿÿÿíõÎ&J&a ÿÿÿëõÎ&J&a ÿÿÿíõÎ&J&a 5ÿÿÿíõÎ&J&a JÿÿÿìõÎ&J&a _ÿÿÿíõÎ&J&a tÿÿÿíõÎ&J&a ‰ÿÿÿçõÎ&J&a žÿÿÿïõÎ&J&a ³ÿÿÿîõÎ&A&[ ÈÿÿÿèõÎ&J&a ÝÿÿÿèöÎ&A&^ òÿÿÿéõÎ&A&a ÿÿÿçöÎ&A&^ ÿÿÿçõÎ&A&[ 1ÿÿÿçõÎ&J&[ FÿÿÿëõÎ&A&[ [ÿÿÿìõÎ&J&a pÿÿÿíõÎ&J&a …ÿÿÿçõÎ&J&[ šÿÿÿëÐÎ&3dÿÿÿëÐÎ&C&j zÿÿÿëÐÎ&C&j ÿÿÿèìÎ&C&j ¤ÿÿÿðÕÎ&;&g ¹ÿÿÿéãÎ&C&j ÎÿÿÿçßÎ&L&p ãÿÿÿïÕÎ&C&j øÿÿÿíÕÎ&L&p ÿÿÿëÐÎ&L&p "ÿÿÿíÐÎ&L&p 7ÿÿÿíÐÎ&L&p LÿÿÿìéÎ&L&p aÿÿÿíÔÎ&L&p vÿÿÿíÕÎ&L&p ‹ÿÿÿçÛÎ&L&p  ÿÿÿïÐÎ&C&j µÿÿÿîÐÎ&C&j ÊÿÿÿèìÎ&L&p ßÿÿÿèàÎ&C&m ôÿÿÿééÎ&C&j ÿÿÿçÔÎ&C&m ÿÿÿçÞÎ&C&j 3ÿÿÿçÞÎ&L&j HÿÿÿëÐÎ&C&j ]ÿÿÿìÕÎ&L&p rÿÿÿíØÎ&C&j ‡ÿÿÿçÜÎ&L&j œÿÿÿëöÎ&s1ÿÿÿëöÎ&A&y xÿÿÿëöÎ&A&y ÿÿÿèöÎ&A&y ¢ÿÿÿðöÎ&:&v ·ÿÿÿêöÎ&A&y ÌÿÿÿçöÎ&J& áÿÿÿïöÎ&A&y öÿÿÿíöÎ&J& ÿÿÿëöÎ&J& ÿÿÿíöÎ&J& 5ÿÿÿíöÎ&J& JÿÿÿìöÎ&J& _ÿÿÿíöÎ&J& tÿÿÿíöÎ&J& ‰ÿÿÿçöÎ&J& žÿÿÿïöÎ&A&y ³ÿÿÿîöÎ&A&y ÈÿÿÿèöÎ&J& ÝÿÿÿèöÎ&A&| òÿÿÿéöÎ&A&y ÿÿÿçöÎ&A&| *ÿÿÿçöÎ&A&y 1ÿÿÿçöÎ&J&y FÿÿÿëöÎ&A&y [ÿÿÿìöÎ&J& pÿÿÿíöÎ&A&y …ÿÿÿçöÎ&J&y šÿÿÿëÐÎ&3‚ÿÿÿëÐÎ&C&ˆ zÿÿÿëÐÎ&C&ˆ ÿÿÿèìÎ&C&ˆ ¤ÿÿÿðÕÎ&;&… ¹ÿÿÿéãÎ&C&ˆ ÎÿÿÿçßÎ&L&Ž ãÿÿÿïÕÎ&C&ˆ øÿÿÿíÕÎ&L&Ž ÿÿÿëÐÎ&L&Ž "ÿÿÿíÐÎ&L&Ž 7ÿÿÿíÐÎ&L&Ž LÿÿÿìéÎ&L&Ž aÿÿÿíÔÎ&L&Ž vÿÿÿíÕÎ&L&Ž ‹ÿÿÿçÛÎ&L&Ž  ÿÿÿïÐÎ&C&ˆ µÿÿÿîÐÎ&C&ˆ ÊÿÿÿèìÎ&L&Ž ßÿÿÿèàÎ&C&‹ ôÿÿÿééÎ&C&ˆ ÿÿÿçÔÎ&C&‹ ÿÿÿçÞÎ&C&ˆ 3ÿÿÿçÞÎ&L&ˆ HÿÿÿëÐÎ&C&ˆ ]ÿÿÿìÕÎ&L&Ž rÿÿÿíØÎ&C&ˆ ‡ÿÿÿçÜÎ&L&ˆ œÿÿÿëÐÎ&2‘ÿÿÿëÐÎ&B&¨ yÿÿÿëÐÎ&B&¨ ŽÿÿÿèìÎ&B&¨ £ÿÿÿðÕÎ& ¸&›:ÿÿÿéãÎ&B&¨ ÍÿÿÿçßÎ&K&² âÿÿÿïÕÎ&B&¨ ÷ÿÿÿíÕÎ& &¨BÿÿÿëÐÎ&K&² !ÿÿÿíÐÎ&K&² 6ÿÿÿíÐÎ&K&² KÿÿÿìéÎ&K&² `ÿÿÿíÔÎ&K&² uÿÿÿíÕÎ&K&² ŠÿÿÿçÛÎ&K&² ŸÿÿÿïÐÎ&B&¨ ´ÿÿÿîÐÎ&B&¨ ÉÿÿÿèìÎ&B&¨ ÞÿÿÿèãÎ&B& ó¼ÿÿÿééÎ&B&¨ ÿÿÿçÔÎ&B&¼ ÿÿÿçÞÎ&B&¨ 2ÿÿÿçÞÎ&K&² GÿÿÿëÐÎ&B&¨ \ÿÿÿìÕÎ&K&² qÿÿÿíØÎ&B&¨ †ÿÿÿçÖÎ&K&² ›ÿÿÿëÐÎ&É3ÿÿÿëÐÎ&C&Ø zÿÿÿëÐÎ&C&Ø ÿÿÿèìÎ&C&Ø ¤ÿÿÿðÕÎ&;&Î ¹ÿÿÿéãÎ&C&Ø ÎÿÿÿçßÎ&L&â ãÿÿÿïÕÎ&C&Ø øÿÿÿíÕÎ&L&â ÿÿÿëÐÎ&L&â "ÿÿÿíÐÎ&L&â 7ÿÿÿíÐÎ&L&â LÿÿÿìéÎ&L&â aÿÿÿíÔÎ&L&â vÿÿÿíÕÎ&L&â ‹ÿÿÿçÛÎ&L&â  ÿÿÿïÐÎ&C&Ø µÿÿÿîÐÎ&C&Ø ÊÿÿÿèìÎ&L&â ßÿÿÿèàÎ&C&ì ôÿÿÿééÎ&C&Ø ÿÿÿçÔÎ&C&ì ÿÿÿçÞÎ&C&Ø 3ÿÿÿçÞÎ&L&â HÿÿÿëÐÎ&C&Ø ]ÿÿÿìÕÎ&L&â rÿÿÿíØÎ&C&Ø ‡ÿÿÿçÜÎ&L&â œÿÿÿëÐÎ&2÷ÿÿÿëÐÎ& &B yÿÿÿëÐÎ&B&  ŽÿÿÿèìÎ&B&  £ÿÿÿðÕÎ& ¸&:ÿÿÿÿéãÎ&B&  ÍÿÿÿçßÎ&K&  âÿÿÿïÕÎ&B&  ÷ÿÿÿíÕÎ&B&  ÿÿÿëÐÎ&K&  !ÿÿÿíÐÎ&K&  6ÿÿÿíÐÎ&K&  KÿÿÿìéÎ&K&  `ÿÿÿíÔÎ&K&  uÿÿÿíÕÎ&K&  ŠÿÿÿçÛÎ&K&  ŸÿÿÿïÐÎ&B&  ´ÿÿÿîÐÎ&B&  ÉÿÿÿèìÎ&K&  ÞÿÿÿèãÎ&B&  óÿÿÿééÎ&B&  ÿÿÿçÔÎ& &B ÿÿÿçÞÎ&B&  2ÿÿÿçÞÎ&K&  GÿÿÿëÐÎ&B&  \ÿÿÿìÕÎ&K&  qÿÿÿíØÎ&B&  †ÿÿÿçÖÎ&K&  ›ÿÿÿëÐÎ& &3ÿÿÿëÐÎ&C& 9 zÿÿÿëÐÎ&C& 9 ÿÿÿèìÎ&C& 9 ¤ÿÿÿðÕÎ&;& / ¹ÿÿÿéãÎ&C& 9 ÎÿÿÿçßÎ&L& C ãÿÿÿïÕÎ&C& 9 øÿÿÿíÕÎ&L& C ÿÿÿëÐÎ&L& C "ÿÿÿíÐÎ&L& C 7ÿÿÿíÐÎ&L& C LÿÿÿìéÎ&L& C aÿÿÿíÔÎ&L& C vÿÿÿíÕÎ&L& C ‹ÿÿÿçÛÎ&L& C  ÿÿÿïÐÎ&C& 9 µÿÿÿîÐÎ&C& 9 ÊÿÿÿèìÎ&L& C ßÿÿÿèàÎ&C& M ôÿÿÿééÎ&C& 9 ÿÿÿçÔÎ&C& M ÿÿÿçÞÎ&C& 9 3ÿÿÿçÞÎ&L& C HÿÿÿëÐÎ&C& 9 ]ÿÿÿìÕÎ&L& C rÿÿÿíØÎ&C& 9 ‡ÿÿÿçÜÎ&L& C œÿÿ êÁ&4 WÿÿÿëêÏ&D& h {ÿÿÿëêÏ&D& h ÿÿÿêêÏ&D& h ¥ÿÿÿðêÏ& ^& º<ÿÿÿéêÏ&D& h ÏÿÿÿçêÏ&M& r äÿÿÿïêÏ&D& h ùÿÿÿíêÏ&M&  rÿÿÿëêÏ&M& r #ÿÿÿíêÏ&M& r 8ÿÿÿðêÏ&M& r MÿÿÿìêÏ&M& r bÿÿÿíêÏ&M& r wÿÿÿíêÏ&M& r ŒÿÿÿçêÏ&M& r ¡ÿÿÿïêÏ&D& h ¶ÿÿÿîêÏ&D& h ËÿÿÿèìÏ&M& r àÿÿÿèêÏ&D& { õÿÿÿéêÏ&D& h ÿÿÿçêÏ&D& { ÿÿÿçêÏ&D& h 4ÿÿÿçêÏ&M& r IÿÿÿëêÏ&D& h ^ÿÿÿìêÏ&M& r sÿÿÿíêÏ&D& h ˆÿÿÿçêÏ&M& r ÿÿÿëöÎ&6 †ÿÿÿëöÎ&F& ™ |ÿÿÿëöÎ&F& ™ ‘ÿÿÿêöÎ&F& ™ ¦ÿÿÿðöÎ& & »=ÿÿÿêöÎ&F& ™ ÐÿÿÿçöÎ&O& £ åÿÿÿïöÎ&F& ™ úÿÿÿíöÎ&O& £ ÿÿÿëöÎ&O& £ $ÿÿÿíöÎ&O& £ 9ÿÿÿíöÎ&O& £ NÿÿÿìöÎ&O& £ cÿÿÿîöÎ&O& £ xÿÿÿíöÎ&O& £ ÿÿÿçöÎ&O& £ ¢ÿÿÿïöÎ&F& ™ ·ÿÿÿîöÎ&F& ™ ÌÿÿÿèöÎ&O& £ áÿÿÿèöÎ&F& ­ öÿÿÿéöÎ&F& ™ ÿÿÿçöÎ& ­&F ÿÿÿçöÎ&F& ™ 5ÿÿÿçöÎ&O& £ JÿÿÿëöÎ&F& ™ _ÿÿÿìöÎ&O& £ tÿÿÿíöÎ&F& ™ ‰ÿÿÿçöÎ&O& £ žÿÿÿëÐÎ&8 ·ÿÿÿëÐÎ&H& Ë |ÿÿÿëÐÎ&H& Ë ‘ÿÿÿêëÎ&H& Ë ¦ÿÿÿðÕÎ&?& Á »ÿÿÿêãÎ&H& Ë ÐÿÿÿçßÎ&Q& Õ åÿÿÿïÕÎ&H& Ë úÿÿÿíÕÎ&Q& Õ ÿÿÿëÐÎ&Q& Õ $ÿÿÿíÐÎ&Q& Õ 9ÿÿÿíÐÎ&Q& Õ NÿÿÿìéÎ&Q& Õ cÿÿÿîÔÎ&Q& Õ xÿÿÿíÕÎ&Q& Õ ÿÿÿçÛÎ&Q& Õ ¢ÿÿÿïÐÎ&H& Ë ·ÿÿÿîÐÎ&H& Ë ÌÿÿÿèéÎ&Q& Õ áÿÿÿèãÎ&H& ß öÿÿÿééÎ&H& Ë ÿÿÿçÔÎ&H& ß ÿÿÿçâÎ&H& Ë 5ÿÿÿçâÎ&Q& Õ JÿÿÿëÐÎ&H& Ë _ÿÿÿìÕÎ&Q& Õ tÿÿÿíØÎ&H& Ë ‰ÿÿÿçÜÎ&Q& Õ žÿÿÿëÐÎ&6 íÿÿÿëÐÎ&F& ü |ÿÿÿëÐÎ&F& ü ‘ÿÿÿêëÎ&F& ü ¦ÿÿÿðÕÎ&=& ò »ÿÿÿêãÎ&F& ü ÐÿÿÿçßÎ&O&  åÿÿÿïÕÎ&F& ü úÿÿÿíÕÎ&O&  ÿÿÿëÐÎ&O&  $ÿÿÿíÐÎ&O&  9ÿÿÿíÐÎ&O&  NÿÿÿìéÎ&O&  cÿÿÿîÔÎ&O&  xÿÿÿíÕÎ&O&  ÿÿÿçÛÎ&O&  ¢ÿÿÿïÐÎ&F& ü ·ÿÿÿîÐÎ&F& ü ÌÿÿÿèéÎ&O&  áÿÿÿèãÎ&F&  öÿÿÿééÎ&F& ü ÿÿÿçÔÎ&F&  ÿÿÿçâÎ&F& ü 5ÿÿÿçâÎ&O&  JÿÿÿëÐÎ&F& ü _ÿÿÿìÕÎ&O&  tÿÿÿíØÎ&F& ü ‰ÿÿÿçÜÎ&O&  žÿÿ ëÁ&4 ÿÿÿëëÏ&D& . {ÿÿÿëëÏ&D& . ÿÿÿêëÏ&D& . ¥ÿÿÿðëÏ&<& $ ºÿÿÿéëÏ&D& . ÏÿÿÿçëÏ&M& 8 äÿÿÿïëÏ&D& . ùÿÿÿíëÏ&M& 8 ÿÿÿëëÏ&M& 8 #ÿÿÿíëÏ&M& 8 8ÿÿÿðëÏ&M& 8 MÿÿÿìëÏ&M& 8 bÿÿÿíëÏ&M& 8 wÿÿÿíëÏ&M& 8 ŒÿÿÿçëÏ&M& 8 ¡ÿÿÿïëÏ&D& . ¶ÿÿÿîëÏ&D& . ËÿÿÿèìÏ&M& 8 àÿÿÿèëÏ&D& B õÿÿÿéëÏ&D& . ÿÿÿçëÏ& .&D ÿÿÿçëÏ&D& . 4ÿÿÿçëÏ&M& 8 IÿÿÿëëÏ&D& . ^ÿÿÿìëÏ&M& 8 sÿÿÿíëÏ&D& . ˆÿÿÿçëÏ&M& 8 ÿÿÿëëÏ&5 KÿÿÿëëÏ&E& V {ÿÿÿëëÏ&E& V ÿÿÿêëÏ&E& V ¥ÿÿÿðëÏ& Q& º<ÿÿÿéëÏ&E& V ÏÿÿÿçëÏ&N& k äÿÿÿïëÏ&E& V ùÿÿÿíëÏ&E& V ÿÿÿëëÏ&N& k #ÿÿÿíëÏ&N& k 8ÿÿÿðëÏ&N& k MÿÿÿìëÏ&N& k bÿÿÿíëÏ&N& k wÿÿÿíëÏ&N& k ŒÿÿÿçëÏ&N& k ¡ÿÿÿïëÏ& ¶& YEÿÿÿîëÏ&E& V ËÿÿÿèìÏ&N& k àÿÿÿèëÏ&E& õ VÿÿÿéëÏ&E& V ÿÿÿçëÏ&E& V ÿÿÿçëÏ&E& 4 VÿÿÿçëÏ&N& ] IÿÿÿëëÏ&E& V ^ÿÿÿìëÏ&N& k sÿÿÿíëÏ&E& V ˆÿÿÿçëÏ&N& ] ÿÿÿëÐÎ& r7ÿÿÿëÐÎ&G& € ~ÿÿÿëÐÎ&G& € “ÿÿÿêëÎ&G& € ¨ÿÿÿðÕÎ&>& y ½ÿÿÿéãÎ&G& € ÒÿÿÿçßÎ&P& • çÿÿÿïÕÎ&G& € üÿÿÿíÕÎ&G& € ÿÿÿëÐÎ&P& • &ÿÿÿíÐÎ&P& • ;ÿÿÿíÐÎ&P& • PÿÿÿëéÎ&P& • eÿÿÿîÔÎ&P& • zÿÿÿíÖÎ&P& • ÿÿÿçÛÎ&P& • ¤ÿÿÿïÐÎ&G& € ¹ÿÿÿîÐÎ&G& € ÎÿÿÿêéÎ&P& • ãÿÿÿèãÎ&G& Ž øÿÿÿçéÎ&G& € ÿÿÿçÔÎ&G& Ž "ÿÿÿçÞÎ&G& € 7ÿÿÿíÞÎ&P& ‡ LÿÿÿëÐÎ&G& € aÿÿÿìÕÎ&P& • vÿÿÿíØÎ&G& € ‹ÿÿÿçÜÎ&P& ‡  ÿÿÿëÐÎ&9 œÿÿÿëÐÎ&I& ª ~ÿÿÿëÐÎ&I& ª “ÿÿÿêëÎ&I& ª ¨ÿÿÿðÕÎ&@& £ ½ÿÿÿéãÎ&I& ª ÒÿÿÿçßÎ&R& ¿ çÿÿÿïÕÎ&I& ª üÿÿÿíÕÎ&R& ¿ ÿÿÿëÐÎ&R& ¿ &ÿÿÿíÐÎ&R& ¿ ;ÿÿÿíÐÎ&R& ¿ PÿÿÿëéÎ&R& ¿ eÿÿÿîÔÎ&R& ¿ zÿÿÿíÖÎ&R& ¿ ÿÿÿçÛÎ&R& ¿ ¤ÿÿÿïÐÎ&I& ª ¹ÿÿÿîÐÎ&I& ª ÎÿÿÿêéÎ&R& ¿ ãÿÿÿèãÎ&I& ¸ øÿÿÿçéÎ&I& ª ÿÿÿçÔÎ&I& ¸ "ÿÿÿçÞÎ&I& ª 7ÿÿÿíÞÎ&R& ± LÿÿÿëÐÎ&I& ª aÿÿÿìÕÎ&R& ¿ vÿÿÿíØÎ&I& ª ‹ÿÿÿçÜÎ&R& ±  ÿÿÿëÐÎ&7 ÆÿÿÿëÐÎ&G& Ô }ÿÿÿëÐÎ&G& Ô ’ÿÿÿêëÎ&G& Ô §ÿÿÿðÕÎ&>& Í ¼ÿÿÿéãÎ&G& Ô ÑÿÿÿçßÎ&P& é æÿÿÿïÕÎ&G& Ô ûÿÿÿíÕÎ&P& é ÿÿÿëÐÎ&P& é %ÿÿÿíÐÎ&P& é :ÿÿÿíÐÎ&P& é OÿÿÿëèÎ&P& é dÿÿÿîÔÎ&P& é yÿÿÿíÖÎ&P& é ŽÿÿÿçÛÎ&P& é £ÿÿÿïÐÎ&G& Ô ¸ÿÿÿîÐÎ&G& Ô ÍÿÿÿêéÎ&P& é âÿÿÿèãÎ&G& â ÷ÿÿÿçéÎ&G& Ô ÿÿÿçÔÎ&G& â !ÿÿÿçÞÎ&G& Ô 6ÿÿÿçÞÎ&P& Û KÿÿÿëÐÎ&G& Ô `ÿÿÿìÕÎ&P& é uÿÿÿíØÎ&G& Ô ŠÿÿÿçÖÎ&P& Û ŸÿÿÿíëÏ& ð5ÿÿÿëëÏ&E& þ {ÿÿÿëëÏ&E& þ ÿÿÿêëÏ&E& þ ¥ÿÿÿðëÏ&<& ÷ ºÿÿÿéëÏ&E& þ ÏÿÿÿçëÏ&N&  äÿÿÿïëÏ&E& þ ùÿÿÿíëÏ&N&  ÿÿÿëëÏ&N&  #ÿÿÿíëÏ&N&  8ÿÿÿðëÏ&N&  MÿÿÿìëÏ&N&  bÿÿÿíëÏ&N&  wÿÿÿíëÏ&N&  ŒÿÿÿçëÏ&N&  ¡ÿÿÿïëÏ&E& þ ¶ÿÿÿîëÏ&E& þ ËÿÿÿèìÏ&N&  àÿÿÿèëÏ&E&  õÿÿÿéëÏ&E& þ ÿÿÿçëÏ&E& þ ÿÿÿçëÏ&E& þ 4ÿÿÿçëÏ&N&  IÿÿÿëëÏ&E& þ ^ÿÿÿìëÏ&N&  sÿÿÿíëÏ&E& þ ˆÿÿÿçëÏ&N&  ÿÿ ëÁ&4 ÿÿÿëëÏ&D& ' {ÿÿÿëëÏ&D& ' ÿÿÿêëÏ&D& ' ¥ÿÿÿðëÏ& & º<ÿÿÿéëÏ&D& ' ÏÿÿÿçëÏ&M& < äÿÿÿïëÏ&D& ' ùÿÿÿíëÏ&M&  <ÿÿÿëëÏ&M& < #ÿÿÿíëÏ&M& < 8ÿÿÿðëÏ&M& < MÿÿÿìëÏ&M& < bÿÿÿíëÏ&M& < wÿÿÿíëÏ&M& < ŒÿÿÿçëÏ&M& < ¡ÿÿÿïëÏ& ¶& 'DÿÿÿîëÏ&D& ' ËÿÿÿèìÏ&M& < àÿÿÿèëÏ&D& 5 õÿÿÿéëÏ&D& ' ÿÿÿçëÏ&D& 5 ÿÿÿçëÏ&D& ' 4ÿÿÿçëÏ&M& . IÿÿÿëëÏ&D& ' ^ÿÿÿìëÏ&M& < sÿÿÿíëÏ&D& ' ˆÿÿÿçëÏ&M& . ÿÿÿëÐÎ&6 CÿÿÿëÐÎ&F& P |ÿÿÿëÐÎ&F& P ‘ÿÿÿêëÎ&F& P ¦ÿÿÿðÕÎ&=& I »ÿÿÿêãÎ&F& P ÐÿÿÿçßÎ&O& e åÿÿÿïÕÎ&F& P úÿÿÿíÕÎ&O& e ÿÿÿëÐÎ&O& e $ÿÿÿíÐÎ&O& e 9ÿÿÿíÐÎ&O& e NÿÿÿìéÎ&O& e cÿÿÿîÔÎ&O& e xÿÿÿíÕÎ&O& e ÿÿÿçÛÎ&O& e ¢ÿÿÿïÐÎ&F& P ·ÿÿÿîÐÎ&F& P ÌÿÿÿèéÎ&O& e áÿÿÿèãÎ&F& ^ öÿÿÿééÎ&F& P ÿÿÿçÔÎ&F& ^ ÿÿÿçâÎ&F& P 5ÿÿÿçâÎ&O& W JÿÿÿëÐÎ&F& P _ÿÿÿìÕÎ&O& e tÿÿÿíØÎ&F& P ‰ÿÿÿçÜÎ&O& W žÿÿÿëÐÎ& i2ÿÿÿëÐÎ&A& o yÿÿÿëÐÎ&A& o ŽÿÿÿèìÎ&A& o £ÿÿÿðÕÎ&:& » lÿÿÿéãÎ&A& o ÍÿÿÿçßÎ&J& u âÿÿÿïÕÎ&A& o ÷ÿÿÿíÕÎ& o&B ÿÿÿëÐÎ&J& u !ÿÿÿíÐÎ&J& u 6ÿÿÿíÐÎ&J& u KÿÿÿìéÎ&J& u `ÿÿÿíÔÎ&J& u uÿÿÿíÕÎ&J& u ŠÿÿÿçÛÎ&J& u ŸÿÿÿïÐÎ&J& o ´ÿÿÿîÐÎ&J& o ÉÿÿÿèìÎ&J& u ÞÿÿÿèãÎ&A& r óÿÿÿééÎ&B& o ÿÿÿçÔÎ&A& r ÿÿÿçÞÎ&A& o 2ÿÿÿçÞÎ&J& o GÿÿÿëÐÎ&A& o \ÿÿÿìÕÎ&J& u qÿÿÿíØÎ&A& o †ÿÿÿçÖÎ&J& o ›ÿÿÿëöÎ&USÿÿÿëõÎ&e&[ xÿÿÿëõÎ&e&[ ÿÿÿèõÎ&e&[ ¢ÿÿÿðöÎ&\&X ·ÿÿÿêõÎ&e&[ ÌÿÿÿçõÎ&n&a áÿÿÿïõÎ&e&[ öÿÿÿíõÎ&n&a ÿÿÿëõÎ&n&a ÿÿÿíõÎ&n&a 5ÿÿÿíõÎ&n&a JÿÿÿìõÎ&n&a _ÿÿÿíõÎ&n&a tÿÿÿíõÎ&n&a ‰ÿÿÿçõÎ&n&a žÿÿÿïõÎ&e&[ ³ÿÿÿîõÎ&e&[ ÈÿÿÿèõÎ&n&a ÝÿÿÿèöÎ&e&^ òÿÿÿéõÎ&e&[ ÿÿÿçöÎ&e&^ *ÿÿÿçõÎ&e&[ 1ÿÿÿçõÎ&n&[ FÿÿÿëõÎ&e&[ [ÿÿÿìõÎ&n&a pÿÿÿíõÎ&e&[ …ÿÿÿçõÎ&n&[ šÿÿÿëÐÎ&Udÿÿ ÿëÐÎ&g&j zÿÿ ÿëÐÎ&g&j ÿÿ ÿèìÎ&g&j ¤ÿÿ ÿðÕÎ&^&g ¹ÿÿ ÿéãÎ&g&j Îÿÿ ÿçßÎ&p&p ãÿÿ ÿïÕÎ&g&j øÿÿ ÿíÕÎ&p&p ÿÿ ÿëÐÎ&p&p "ÿÿ ÿíÐÎ&p&p 7ÿÿ ÿíÐÎ&p&p Lÿÿ ÿìéÎ&p&p aÿÿ ÿíÔÎ&p&p vÿÿ ÿíÕÎ&p&p ‹ÿÿ ÿçÛÎ&p&p  ÿÿ ÿïÐÎ&g&j µÿÿ ÿîÐÎ&g&j Êÿÿ ÿèìÎ&p&p ßÿÿ ÿèàÎ&g&m ôÿÿ ÿééÎ&g&j ÿÿ ÿçÔÎ&m&g ÿÿ ÿçÞÎ&g&j 3ÿÿ ÿçÞÎ&p&j Hÿÿ ÿëÐÎ&g&j ]ÿÿ ÿìÕÎ&p&p rÿÿ ÿíØÎ&g&j ‡ÿÿ ÿçÜÎ&p&j œÿÿÿëöÎ&SsÿÿÿëöÎ&e&y xÿÿÿëöÎ&e&y ÿÿÿèöÎ&e&y ¢ÿÿÿðöÎ&\&v ·ÿÿÿêöÎ&e&y ÌÿÿÿçöÎ&n& áÿÿÿïöÎ&e&y öÿÿÿíöÎ&n& ÿÿÿëöÎ&n& ÿÿÿíöÎ&n& 5ÿÿÿíöÎ&n& JÿÿÿìöÎ&n& _ÿÿÿíöÎ&n& tÿÿÿíöÎ&n& ‰ÿÿÿçöÎ&n& žÿÿÿïöÎ&e&y ³ÿÿÿîöÎ&e&y ÈÿÿÿèöÎ&n& ÝÿÿÿèöÎ&e&| òÿÿÿéöÎ&e&y ÿÿÿçöÎ&e&| ÿÿÿçöÎ&e&y 1ÿÿÿçöÎ&n&y FÿÿÿëöÎ&e&y [ÿÿÿìöÎ&n& pÿÿÿíöÎ&e&y …ÿÿÿçöÎ&n&y šÿÿÿëÐÎ&U‚ÿÿ ÿëÐÎ&g&ˆ zÿÿ ÿëÐÎ&g&ˆ ÿÿ ÿèìÎ&g&ˆ ¤ÿÿ ÿðÕÎ&^&… ¹ÿÿ ÿéãÎ&g&ˆ Îÿÿ ÿçßÎ&p&Ž ãÿÿ ÿïÕÎ&g&ˆ øÿÿ ÿíÕÎ&p&Ž ÿÿ ÿëÐÎ&p&Ž "ÿÿ ÿíÐÎ&p&Ž 7ÿÿ ÿíÐÎ&p&Ž Lÿÿ ÿìéÎ&p&Ž aÿÿ ÿíÔÎ&p&Ž vÿÿ ÿíÕÎ&p&Ž ‹ÿÿ ÿçÛÎ&p&Ž  ÿÿ ÿïÐÎ&g&ˆ µÿÿ ÿîÐÎ&g&ˆ Êÿÿ ÿèìÎ&p&Ž ßÿÿ ÿèàÎ&g&‹ ôÿÿ ÿééÎ&g&ˆ ÿÿ ÿçÔÎ&g&‹ ÿÿ ÿçÞÎ&g&ˆ 3ÿÿ ÿçÞÎ&p&ˆ Hÿÿ ÿëÐÎ&g&ˆ ]ÿÿ ÿìÕÎ&p&Ž rÿÿ ÿíØÎ&g&ˆ ‡ÿÿ ÿçÜÎ&p&ˆ œÿÿ ÿëÐÎ&T‘ÿÿÿëÐÎ&e& x©ÿÿ ÿëÐÎ&f&© Žÿÿ ÿèìÎ&f&© £ÿÿ ÿðÕÎ&]& ¸›ÿÿ ÿéãÎ&f&© Íÿÿ ÿçßÎ&o&³ âÿÿ ÿïÕÎ&f&© ÷ÿÿÿíÕÎ& &n³ÿÿ ÿëÐÎ&o&³ !ÿÿ ÿíÐÎ&o&³ 6ÿÿ ÿíÐÎ&o&³ Kÿÿ ÿìéÎ&o&³ `ÿÿ ÿíÔÎ&o&³ uÿÿ ÿíÕÎ&o&³ Šÿÿ ÿçÛÎ&o&³ ŸÿÿÿïÐÎ&³&n ´ÿÿ ÿîÐÎ&f&© Éÿÿ ÿèìÎ&o&³ Þÿÿ ÿèãÎ&f&½ óÿÿ ÿééÎ&f&© ÿÿ ÿçÔÎ&f&½ ÿÿ ÿçÞÎ&f&© 2ÿÿ ÿçÞÎ&o&³ Gÿÿ ÿëÐÎ&f&© \ÿÿ ÿìÕÎ&o&³ qÿÿ ÿíØÎ&f&© †ÿÿ ÿçÖÎ&o&³ ›ÿÿÿëÐÎ&ÉUÿÿ ÿëÐÎ&g&Ù zÿÿ ÿëÐÎ&g&Ù ÿÿ ÿèìÎ&g&Ù ¤ÿÿ ÿðÕÎ&^&Ï ¹ÿÿ ÿéãÎ&g&Ù Îÿÿ ÿçßÎ&p&ã ãÿÿ ÿïÕÎ&g&Ù øÿÿ ÿíÕÎ&p&ã ÿÿ ÿëÐÎ&p&ã "ÿÿ ÿíÐÎ&p&ã 7ÿÿ ÿíÐÎ&p&ã Lÿÿ ÿìéÎ&p&ã aÿÿ ÿíÔÎ&p&ã vÿÿ ÿíÕÎ&p&ã ‹ÿÿ ÿçÛÎ&p&ã  ÿÿ ÿïÐÎ&g&Ù µÿÿ ÿîÐÎ&g&Ù Êÿÿ ÿèìÎ&p&ã ßÿÿ ÿèàÎ&g&í ôÿÿ ÿééÎ&g&Ù ÿÿ ÿçÔÎ&g&í ÿÿ ÿçÞÎ&g&Ù 3ÿÿ ÿçÞÎ&p&ã Hÿÿ ÿëÐÎ&g&Ù ]ÿÿ ÿìÕÎ&p&ã rÿÿ ÿíØÎ&g&Ù ‡ÿÿ ÿçÜÎ&p&ã œÿÿ ÿëÐÎ&T÷ÿÿ ÿëÐÎ&f&  yÿÿ ÿëÐÎ&f&  Žÿÿ ÿèìÎ&f&  £ÿÿ ÿðÕÎ&]&ÿ ¸ÿÿ ÿéãÎ&f&  Íÿÿ ÿçßÎ&o&  âÿÿ ÿïÕÎ&f&  ÷ÿÿ ÿíÕÎ&o&  ÿÿ ÿëÐÎ&o&  !ÿÿ ÿíÐÎ&o&  6ÿÿ ÿíÐÎ&o&  Kÿÿ ÿìéÎ&o&  `ÿÿ ÿíÔÎ&o&  uÿÿ ÿíÕÎ&o&  Šÿÿ ÿçÛÎ&o&  Ÿÿÿ ÿïÐÎ&f&  ´ÿÿ ÿîÐÎ&f&  Éÿÿ ÿèìÎ&o&  Þÿÿ ÿèãÎ&f&  óÿÿ ÿééÎ& & fÿÿ ÿçÔÎ&f&  ÿÿ ÿçÞÎ&f&  2ÿÿ ÿçÞÎ&o&  Gÿÿ ÿëÐÎ&f&  \ÿÿ ÿìÕÎ&o&  qÿÿ ÿíØÎ&f&  †ÿÿ ÿçÖÎ&o&  ›ÿÿÿëÐÎ&U &ÿÿ ÿëÐÎ&g& : zÿÿ ÿëÐÎ&g& : ÿÿ ÿèìÎ&g& : ¤ÿÿ ÿðÕÎ&^& 0 ¹ÿÿ ÿéãÎ&g& : Îÿÿ ÿçßÎ&p& D ãÿÿ ÿïÕÎ&g& : øÿÿ ÿíÕÎ&p& D ÿÿ ÿëÐÎ&p& D "ÿÿ ÿíÐÎ&p& D 7ÿÿ ÿíÐÎ&p& D Lÿÿ ÿìéÎ&p& D aÿÿ ÿíÔÎ&p& D vÿÿ ÿíÕÎ&p& D ‹ÿÿ ÿçÛÎ&p& D  ÿÿ ÿïÐÎ&g& : µÿÿ ÿîÐÎ&g& : Êÿÿ ÿèìÎ&p& D ßÿÿ ÿèàÎ&g& N ôÿÿ ÿééÎ&g& : ÿÿ ÿçÔÎ&g& N ÿÿ ÿçÞÎ&g& : 3ÿÿ ÿçÞÎ&p& D Hÿÿ ÿëÐÎ&g& : ]ÿÿ ÿìÕÎ&p& D rÿÿ ÿíØÎ&g& : ‡ÿÿ ÿçÜÎ&p& D œÿÿ ê½&V WÿÿÿëêÉ&h& i {ÿÿÿëêÉ&h& i ÿÿÿêêÉ&h& i ¥ÿÿÿðêÉ& º&h _ÿÿÿéêÉ&h& i ÏÿÿÿçêÉ&q& s äÿÿÿïêÉ&h& i ùÿÿÿíêÉ&q& s ÿÿÿëêÉ&q& s #ÿÿÿíêÉ&q& s 8ÿÿÿðêÉ&q& s MÿÿÿìêÉ&q& s bÿÿÿíêÉ&q& s wÿÿÿíêÉ&q& s ŒÿÿÿçêÉ&q& s ¡ÿÿÿïêÉ&h& i ¶ÿÿÿîêÉ&h& i ËÿÿÿèìÉ&q& s àÿÿÿèêÉ&h& | õÿÿÿéêÉ&h& i ÿÿÿçêÉ&h& | ÿÿÿçêÉ&h& i 4ÿÿÿçêÉ&q& s IÿÿÿëêÉ&h& i ^ÿÿÿìêÉ&q& s sÿÿÿíêÉ&h& i ˆÿÿÿçêÉ&q& s ÿÿÿëöÎ& †XÿÿÿëöÎ&j& š |ÿÿÿëöÎ&j& š ‘ÿÿÿêöÎ&j& š ¦ÿÿÿðöÎ&a&  »ÿÿÿêöÎ&j& š ÐÿÿÿçöÎ&s& ¤ åÿÿÿïöÎ&j& š úÿÿÿíöÎ&s& ¤ ÿÿÿëöÎ&s& ¤ $ÿÿÿíöÎ&s& ¤ 9ÿÿÿíöÎ&s& ¤ NÿÿÿìöÎ&s& ¤ cÿÿÿîöÎ&s& ¤ xÿÿÿíöÎ&s& ¤ ÿÿÿçöÎ&s& ¤ ¢ÿÿÿïöÎ&j& š ·ÿÿÿîöÎ&j& š ÌÿÿÿèöÎ&s& ¤ áÿÿÿèöÎ&j& ® öÿÿÿéöÎ&j& š ÿÿÿçöÎ&j& ® ÿÿÿçöÎ&j& š 5ÿÿÿçöÎ&s& ¤ JÿÿÿëöÎ&j& š _ÿÿÿìöÎ&s& ¤ tÿÿÿíöÎ&j& š ‰ÿÿÿçöÎ&s& ¤ žÿÿÿëÐÎ&Z ¸ÿÿÿëÐÎ&l& Ì |ÿÿÿëÐÎ&l& Ì ‘ÿÿÿêëÎ&l& Ì ¦ÿÿÿðÕÎ&c&  »ÿÿÿêãÎ&l& Ì ÐÿÿÿçßÎ&u& Ö åÿÿÿïÕÎ&l& Ì úÿÿÿíÕÎ&u& Ö ÿÿÿëÐÎ&u& Ö $ÿÿÿíÐÎ&u& Ö 9ÿÿÿíÐÎ&u& Ö NÿÿÿìéÎ&u& Ö cÿÿÿîÔÎ&u& Ö xÿÿÿíÕÎ&u& Ö ÿÿÿçÛÎ&u& Ö ¢ÿÿÿïÐÎ&l& Ì ·ÿÿÿîÐÎ&l& Ì ÌÿÿÿèéÎ&u& Ö áÿÿÿèãÎ&l& à öÿÿÿééÎ&l& Ì ÿÿÿçÔÎ&l& à ÿÿÿçâÎ&l& Ì 5ÿÿÿçâÎ&u& Ö JÿÿÿëÐÎ&l& Ì _ÿÿÿìÕÎ&u& Ö tÿÿÿíØÎ&l& Ì ‰ÿÿÿçÜÎ&u& Ö žÿÿÿëÐÎ&X íÿÿÿëÐÎ&j& ý |ÿÿÿëÐÎ&j& ý ‘ÿÿÿêëÎ&j& ý ¦ÿÿÿðÕÎ&a& ó »ÿÿÿêãÎ&j& ý ÐÿÿÿçßÎ&s&  åÿÿÿïÕÎ&j& ý úÿÿÿíÕÎ&s&  ÿÿÿëÐÎ&s&  $ÿÿÿíÐÎ&s&  9ÿÿÿíÐÎ&s&  NÿÿÿìéÎ&s&  cÿÿÿîÔÎ&s&  xÿÿÿíÕÎ&s&  ÿÿÿçÛÎ&s&  ¢ÿÿÿïÐÎ&j& ý ·ÿÿÿîÐÎ&j& ý ÌÿÿÿèéÎ&s&  áÿÿÿèãÎ&j&  öÿÿÿééÎ&j& ý ÿÿÿçÔÎ&j&  ÿÿÿçâÎ&j& ý 5ÿÿÿçâÎ&s&  JÿÿÿëÐÎ&j& ý _ÿÿÿìÕÎ&s&  tÿÿÿíØÎ&j& ý ‰ÿÿÿçÜÎ&s&  žÿÿ ë½&V ÿÿÿëëÉ&h& / {ÿÿÿëëÉ&h& / ÿÿÿêëÉ&h& / ¥ÿÿÿðëÉ&_& % ºÿÿÿéëÉ&h& / ÏÿÿÿçëÉ&q& 9 äÿÿÿïëÉ&h& / ùÿÿÿíëÉ&q& 9 ÿÿÿëëÉ&q& 9 #ÿÿÿíëÉ&q& 9 8ÿÿÿðëÉ&q& 9 MÿÿÿìëÉ&q& 9 bÿÿÿíëÉ&q& 9 wÿÿÿíëÉ&q& 9 ŒÿÿÿçëÉ&q& 9 ¡ÿÿÿïëÉ&h& / ¶ÿÿÿîëÉ&h& / ËÿÿÿèìÉ&q& 9 àÿÿÿèëÉ&h& C õÿÿÿéëÉ&h& / ÿÿÿçëÉ&h& C ÿÿÿçëÉ&h& / 4ÿÿÿçëÉ&q& 9 IÿÿÿëëÉ&h& / ^ÿÿÿìëÉ&q& 9 sÿÿÿíëÉ&h& / ˆÿÿÿçëÉ&q& 9 ÿÿÿëëÉ&W KÿÿÿëëÉ&i& V {ÿÿÿëëÉ&i& V ÿÿÿêëÉ&i& V ¥ÿÿÿðëÉ& Q& º`ÿÿÿéëÉ&i& V ÏÿÿÿçëÉ&r& k äÿÿÿïëÉ&i& ù VÿÿÿíëÉ& &r kÿÿÿëëÉ&r& k #ÿÿÿíëÉ&r& k 8ÿÿÿðëÉ&r& k MÿÿÿìëÉ&r& k bÿÿÿíëÉ&r& k wÿÿÿíëÉ&r& k ŒÿÿÿçëÉ&r& k ¡ÿÿÿïëÉ&i& V ¶ÿÿÿîëÉ&i& V ËÿÿÿèìÉ&r& k àÿÿÿèëÉ&i& d õÿÿÿéëÉ&i& V ÿÿÿçëÉ&i&  VÿÿÿçëÉ&i& V 4ÿÿÿçëÉ&r& ] IÿÿÿëëÉ&i& V ^ÿÿÿìëÉ&r& k sÿÿÿíëÉ&i& V ˆÿÿÿçëÉ&r& ] ÿÿÿëÐÎ&Y rÿÿÿëÐÎ&k& € ~ÿÿÿëÐÎ&k& € “ÿÿÿêëÎ&k& € ¨ÿÿÿðÕÎ&b& y ½ÿÿÿéãÎ&k& € ÒÿÿÿçßÎ&t& • çÿÿÿïÕÎ&k& € üÿÿÿíÕÎ&t& • ÿÿÿëÐÎ&t& • &ÿÿÿíÐÎ&t& • ;ÿÿÿíÐÎ&t& • PÿÿÿëéÎ&t& • eÿÿÿîÔÎ&t& • zÿÿÿíÖÎ&t& • ÿÿÿçÛÎ&t& • ¤ÿÿÿïÐÎ&k& € ¹ÿÿÿîÐÎ&k& € ÎÿÿÿêéÎ&t& • ãÿÿÿèãÎ&k& Ž øÿÿÿçéÎ&k& € ÿÿÿçÔÎ&k& Ž "ÿÿÿçÞÎ&k& € 7ÿÿÿíÞÎ&t& ‡ LÿÿÿëÐÎ&k& € aÿÿÿìÕÎ&t& • vÿÿÿíØÎ&k& € ‹ÿÿÿçÜÎ&t& ‡  ÿÿÿëÐÎ&[ œÿÿÿëÐÎ&m& ª ~ÿÿÿëÐÎ&m& ª “ÿÿÿêëÎ&m& ª ¨ÿÿÿðÕÎ&d& £ ½ÿÿÿéãÎ&m& ª ÒÿÿÿçßÎ&v& ¿ çÿÿÿïÕÎ&m& ª üÿÿÿíÕÎ&v& ¿ ÿÿÿëÐÎ&v& ¿ &ÿÿÿíÐÎ&v& ¿ ;ÿÿÿíÐÎ&v& ¿ PÿÿÿëéÎ&v& ¿ eÿÿÿîÔÎ&v& ¿ zÿÿÿíÖÎ&v& ¿ ÿÿÿçÛÎ&v& ¿ ¤ÿÿÿïÐÎ&m& ª ¹ÿÿÿîÐÎ&m& ª ÎÿÿÿêéÎ&v& ¿ ãÿÿÿèãÎ&m& ¸ øÿÿÿçéÎ&m& ª ÿÿÿçÔÎ&m& ¸ "ÿÿÿçÞÎ&m& ª 7ÿÿÿíÞÎ&v& ± LÿÿÿëÐÎ&m& ª aÿÿÿìÕÎ&v& ¿ vÿÿÿíØÎ&m& ª ‹ÿÿÿçÜÎ&v& ±  ÿÿÿëÐÎ&Y ÆÿÿÿëÐÎ&k& Ô }ÿÿÿëÐÎ&k& Ô ’ÿÿÿêëÎ&k& Ô §ÿÿÿðÕÎ&b& Í ¼ÿÿÿéãÎ&k& Ô ÑÿÿÿçßÎ&t& é æÿÿÿïÕÎ&k& Ô ûÿÿÿíÕÎ&t& é ÿÿÿëÐÎ&t& é %ÿÿÿíÐÎ&t& é :ÿÿÿíÐÎ&t& é OÿÿÿëèÎ&t& é dÿÿÿîÔÎ&t& é yÿÿÿíÖÎ&t& é ŽÿÿÿçÛÎ&t& é £ÿÿÿïÐÎ&k& Ô ¸ÿÿÿîÐÎ&k& Ô ÍÿÿÿêéÎ&t& é âÿÿÿèãÎ&k& â ÷ÿÿÿçéÎ&k& Ô ÿÿÿçÔÎ&k& â !ÿÿÿçÞÎ&k& Ô 6ÿÿÿçÞÎ&t& Û KÿÿÿëÐÎ&k& Ô `ÿÿÿìÕÎ&t& é uÿÿÿíØÎ&k& Ô ŠÿÿÿçÖÎ&t& Û ŸÿÿÿíëÉ&W ðÿÿÿëëÉ&i& þ {ÿÿÿëëÉ&i& þ ÿÿÿêëÉ&i& þ ¥ÿÿÿðëÉ&`& ÷ ºÿÿÿéëÉ&i& þ ÏÿÿÿçëÉ&r&  äÿÿÿïëÉ&i& þ ùÿÿÿíëÉ&r&  ÿÿÿëëÉ&r&  #ÿÿÿíëÉ&r&  8ÿÿÿðëÉ&r&  MÿÿÿìëÉ&r&  bÿÿÿíëÉ&r&  wÿÿÿíëÉ&r&  ŒÿÿÿçëÉ&r&  ¡ÿÿÿïëÉ&i& þ ¶ÿÿÿîëÉ&i& þ ËÿÿÿèìÉ&r&  àÿÿÿèëÉ&i&  õÿÿÿéëÉ&i& þ ÿÿÿçëÉ&i&  ÿÿÿçëÉ&i& þ 4ÿÿÿçëÉ&r&  IÿÿÿëëÉ&i& þ ^ÿÿÿìëÉ&r&  sÿÿÿíëÉ&i& þ ˆÿÿÿçëÉ&r&  ÿÿ ë½&V ÿÿÿëëÉ&h& ' {ÿÿÿëëÉ&h& ' ÿÿÿêëÉ&h& ' ¥ÿÿÿðëÉ&_&  ºÿÿÿéëÉ&h& ' ÏÿÿÿçëÉ&q& < äÿÿÿïëÉ&h& ' ùÿÿÿíëÉ&q& < ÿÿÿëëÉ&q& < #ÿÿÿíëÉ&q& < 8ÿÿÿðëÉ&q& < MÿÿÿìëÉ&q& < bÿÿÿíëÉ&q& < wÿÿÿíëÉ&q& < ŒÿÿÿçëÉ&q& < ¡ÿÿÿïëÉ&h& ¶ %ÿÿÿîëÉ&h& ' ËÿÿÿèìÉ&q& < àÿÿÿèëÉ&h& 5 õÿÿÿéëÉ&h& ' ÿÿÿçëÉ&h&  5ÿÿÿçëÉ&h& ' 4ÿÿÿçëÉ&q& . IÿÿÿëëÉ&h& ' ^ÿÿÿìëÉ&q& < sÿÿÿíëÉ&h& ' ˆÿÿÿçëÉ&q& . ÿÿÿëÐÎ&X CÿÿÿëÐÎ&j& P |ÿÿÿëÐÎ&j& P ‘ÿÿÿêëÎ&j& P ¦ÿÿÿðÕÎ&a& I »ÿÿÿêãÎ&j& P ÐÿÿÿçßÎ&s& e åÿÿÿïÕÎ&j& P úÿÿÿíÕÎ&s& e ÿÿÿëÐÎ&s& e $ÿÿÿíÐÎ&s& e 9ÿÿÿíÐÎ&s& e NÿÿÿìéÎ&s& e cÿÿÿîÔÎ&s& e xÿÿÿíÕÎ&s& e ÿÿÿçÛÎ&s& e ¢ÿÿÿïÐÎ&j& P ·ÿÿÿîÐÎ&j& P ÌÿÿÿèéÎ&s& e áÿÿÿèãÎ&j& ^ öÿÿÿééÎ&j& P ÿÿÿçÔÎ&j& ^ ÿÿÿçâÎ&j& P 5ÿÿÿçâÎ&s& W JÿÿÿëÐÎ&j& P _ÿÿÿìÕÎ&s& e tÿÿÿíØÎ&j& P ‰ÿÿÿçÜÎ&s& W žÿÿ ÿëÐÎ&T iÿÿÿëÐÎ& o&e xÿÿÿëÐÎ&e& o ŽÿÿÿèìÎ&e& o £ÿÿÿðÕÎ&\& l »ÿÿÿéãÎ&e& o ÍÿÿÿçßÎ&n& u âÿÿÿïÕÎ&e& o ÷ÿÿÿíÕÎ&e&  uÿÿÿëÐÎ&n& u !ÿÿÿíÐÎ&n& u 6ÿÿÿíÐÎ&n& u KÿÿÿìéÎ&n& u `ÿÿÿíÔÎ&n& u uÿÿÿíÕÎ&n& u ŠÿÿÿçÛÎ&n& u ŸÿÿÿïÐÎ&n& u ´ÿÿÿîÐÎ&n& u ÉÿÿÿèìÎ&n& u ÞÿÿÿèãÎ&n& r óÿÿÿééÎ&e& o ÿÿÿçÔÎ&e& r ÿÿÿçÞÎ&e& o 2ÿÿÿçÞÎ&n& o GÿÿÿëÐÎ&e& o \ÿÿÿìÕÎ&n& u qÿÿÿíØÎ&e& o †ÿÿÿçÖÎ&n& o ›ÿÿ ÿëöÎ&wVÿÿÿëõÎ&‰&\ xÿÿÿëõÎ&‰&\ ÿÿÿèõÎ&‰&\ ¢ÿÿ ÿðöÎ&€&Y ·ÿÿÿêõÎ&‰&\ ÌÿÿÿçõÎ&’&b áÿÿÿïõÎ&‰&\ öÿÿÿíõÎ&’&b ÿÿÿëõÎ&’&b ÿÿÿíõÎ&’&b 5ÿÿÿíõÎ&’&b JÿÿÿìõÎ&’&b _ÿÿÿíõÎ&’&b tÿÿÿíõÎ&’&b ‰ÿÿÿçõÎ&’&b žÿÿÿïõÎ&‰&\ ³ÿÿÿîõÎ&‰&\ ÈÿÿÿèõÎ&’&b ÝÿÿÿèõÎ&‰&_ òÿÿÿéõÎ&‰&\ ÿÿÿçõÎ&‰&_ ÿÿÿçõÎ&‰&\ 1ÿÿÿçõÎ&’&\ FÿÿÿëõÎ&‰&\ [ÿÿÿìõÎ&’&b pÿÿÿíõÎ&‰&\ …ÿÿÿçõÎ&’&\ šÿÿÿëÑÎ&yeÿÿÿëÐÎ&‹&k zÿÿÿëÐÎ&‹&k ÿÿÿèìÎ&‹&k ¤ÿÿÿðÕÎ&‚&h ¹ÿÿÿéãÎ&‹&k ÎÿÿÿçßÎ&”&q ãÿÿÿïÕÎ&‹&k øÿÿÿíÕÎ&”&q ÿÿÿëÑÎ&”&q "ÿÿÿíÑÎ&”&q 7ÿÿÿíÑÎ&”&q LÿÿÿìéÎ&”&q aÿÿÿíÔÎ&”&q vÿÿÿíÕÎ&”&q ‹ÿÿÿçÛÎ&”&q  ÿÿÿïÐÎ&‹&k µÿÿÿîÐÎ&‹&k ÊÿÿÿèìÎ&”&q ßÿÿÿèàÍ&‹&n ôÿÿÿééÎ&‹&k ÿÿÿçÔÍ&‹&n ÿÿÿçÞÎ&‹&k 3ÿÿÿçÞÎ&”&k HÿÿÿëÐÎ&‹&k ]ÿÿÿìÕÎ&”&q rÿÿÿíØÎ&‹&k ‡ÿÿÿçÜÎ&”&k œÿÿ ÿëöÎ&wtÿÿÿëöÎ&‰&z xÿÿÿëöÎ&‰&z ÿÿÿèöÎ&‰&z ¢ÿÿ ÿðöÎ&€&w ·ÿÿÿêöÎ&‰&z ÌÿÿÿçöÎ&’&€ áÿÿÿïöÎ&‰&z öÿÿÿíöÎ&’&€ ÿÿÿëöÎ&’&€ ÿÿÿíöÎ&’&€ 5ÿÿÿíöÎ&’&€ JÿÿÿìöÎ&’&€ _ÿÿÿíöÎ&’&€ tÿÿÿíöÎ&’&€ ‰ÿÿÿçöÎ&’&€ žÿÿÿïöÎ&‰&z ³ÿÿÿîöÎ&‰&z ÈÿÿÿèöÎ&’&€ ÝÿÿÿèöÎ&‰&} òÿÿÿéöÎ&‰&z ÿÿÿçöÎ&‰&} ÿÿÿçöÎ&‰&z 1ÿÿÿçöÎ&’&z FÿÿÿëöÎ&‰&z [ÿÿÿìöÎ&’&€ pÿÿÿíöÎ&‰&z …ÿÿÿçöÎ&’&z šÿÿÿëÐÎ&yƒÿÿÿëÐÎ&‹&‰ zÿÿÿëÐÎ&‹&‰ ÿÿÿèìÎ&‹&‰ ¤ÿÿÿðÕÎ&‚&† ¹ÿÿÿéãÎ&‹&‰ ÎÿÿÿçßÎ&”& ãÿÿÿïÕÎ&‹&‰ øÿÿÿíÕÎ&”& ÿÿÿëÐÎ&”& "ÿÿÿíÐÎ&”& 7ÿÿÿíÐÎ&”& LÿÿÿìéÎ&”& aÿÿÿíÔÎ&”& vÿÿÿíÕÎ&”& ‹ÿÿÿçÛÎ&”&  ÿÿÿïÐÎ&‹&‰ µÿÿÿîÐÎ&‹&‰ ÊÿÿÿèìÎ&”& ßÿÿÿèàÎ&‹&Œ ôÿÿÿééÎ&‹&‰ ÿÿÿçÔÎ&‹&Œ ÿÿÿçÞÎ&‹&‰ 3ÿÿÿçÞÎ&”&‰ HÿÿÿëÐÎ&‹&‰ ]ÿÿÿìÕÎ&”& rÿÿÿíØÎ&‹&‰ ‡ÿÿÿçÜÎ&”&‰ œÿÿ ÿëÐÎ&x“ÿÿÿëÐÎ&Š&¦ yÿÿÿëÐÎ&Š&¦ ŽÿÿÿèìÎ&Š&¦ £ÿÿÿðÕÎ&& ¸ÿÿÿéãÎ&Š&¦ ÍÿÿÿçßÎ&“&° âÿÿÿïÕÎ&Š&¦ ÷ÿÿÿíÕÎ&Š&¦ ÿÿÿëÐÎ&“&° !ÿÿÿíÐÎ&“&° 6ÿÿÿíÐÎ&“&° KÿÿÿìéÎ&“&° `ÿÿÿíÔÎ&“&° uÿÿÿíÕÎ&“&° ŠÿÿÿçÛÎ&“&° ŸÿÿÿïÐÎ&Š&¦ ´ÿÿÿîÐÎ&Š&¦ ÉÿÿÿèìÎ&“&° ÞÿÿÿèãÎ&Š&º óÿÿÿééÎ&Š&¦ ÿÿÿçÔÎ&Š&º ÿÿÿçÞÎ&Š&¦ 2ÿÿÿçÞÎ&“&° GÿÿÿëÐÎ&Š&¦ \ÿÿÿìÕÎ&“&° qÿÿÿíØÎ&Š&¦ †ÿÿÿçÖÎ&“&° ›ÿÿÿëÐÎ&yÃÿÿÿëÐÎ&‹&Ö zÿÿÿëÐÎ&‹&Ö ÿÿÿèìÎ&‹&Ö ¤ÿÿÿðÕÎ&‚&Ì ¹ÿÿÿéãÎ&‹&Ö ÎÿÿÿçßÎ&”&à ãÿÿÿïÕÎ&‹&Ö øÿÿÿíÕÎ&”&à ÿÿÿëÐÎ&”&à "ÿÿÿíÐÎ&”&à 7ÿÿÿíÐÎ&”&à LÿÿÿìéÎ&”&à aÿÿÿíÔÎ&”&à vÿÿÿíÕÎ&”&à ‹ÿÿÿçÛÎ&”&à  ÿÿÿïÐÎ&‹&Ö µÿÿÿîÐÎ&‹&Ö ÊÿÿÿèìÎ&”&à ßÿÿÿèàÎ&‹&ê ôÿÿÿééÎ&‹&Ö ÿÿÿçÔÎ&‹&ê ÿÿÿçÞÎ&‹&Ö 3ÿÿÿçÞÎ&”&à HÿÿÿëÐÎ&‹&Ö ]ÿÿÿìÕÎ&”&à rÿÿÿíØÎ&‹&Ö ‡ÿÿÿçÜÎ&”&à œÿÿ ÿëÐÎ&xôÿÿÿëÐÎ&Š&  yÿÿÿëÐÎ&Š&  ŽÿÿÿèìÎ&Š&  £ÿÿÿðÕÎ&&þ ¸ÿÿÿéãÎ&Š&  ÍÿÿÿçßÎ&“&  âÿÿÿïÕÎ&Š&  ÷ÿÿÿíÕÎ&“&  ÿÿÿëÐÎ&“&  !ÿÿÿíÐÎ&“&  6ÿÿÿíÐÎ&“&  KÿÿÿìéÎ&“&  `ÿÿÿíÔÎ&“&  uÿÿÿíÕÎ&“&  ŠÿÿÿçÛÎ&“&  ŸÿÿÿïÐÎ&Š&  ´ÿÿÿîÐÎ&Š&  ÉÿÿÿèìÎ&“&  ÞÿÿÿèãÎ&Š&  óÿÿÿééÎ&Š&  ÿÿÿçÔÎ&Š&  ÿÿÿçÞÎ&Š&  2ÿÿÿçÞÎ&“&  GÿÿÿëÐÎ&Š&  \ÿÿÿìÕÎ&“&  qÿÿÿíØÎ&Š&  †ÿÿÿçÖÎ&“&  ›ÿÿÿëÐÎ&y #ÿÿÿëÐÎ&‹& 7 zÿÿÿëÐÎ&‹& 7 ÿÿÿèìÎ&‹& 7 ¤ÿÿÿðÕÎ&‚& - ¹ÿÿÿéãÎ&‹& 7 ÎÿÿÿçßÎ&”& A ãÿÿÿïÕÎ&‹& 7 øÿÿÿíÕÎ&”& A ÿÿÿëÐÎ&”& A "ÿÿÿíÐÎ&”& A 7ÿÿÿíÐÎ&”& A LÿÿÿìéÎ&”& A aÿÿÿíÔÎ&”& A vÿÿÿíÕÎ&”& A ‹ÿÿÿçÛÎ&”& A  ÿÿÿïÐÎ&‹& 7 µÿÿÿîÐÎ&‹& 7 ÊÿÿÿèìÎ&”& A ßÿÿÿèàÎ&‹& K ôÿÿÿééÎ&‹& 7 ÿÿÿçÔÎ&‹& K ÿÿÿçÞÎ&‹& 7 3ÿÿÿçÞÎ&”& A HÿÿÿëÐÎ&‹& 7 ]ÿÿÿìÕÎ&”& A rÿÿÿíØÎ&‹& 7 ‡ÿÿÿçÜÎ&”& A œÿÿ ê½&z UÿÿÿëêÉ&Œ& f {ÿÿÿëêÉ&Œ& f ÿÿÿêêÉ&Œ& f ¥ÿÿÿðêÉ&ƒ& ] ºÿÿÿéêÉ&Œ& f ÏÿÿÿçêÉ&•& p äÿÿÿïêÉ&Œ& f ùÿÿÿíêÉ&•& p ÿÿÿëêÉ&•& p #ÿÿÿíêÉ&•& p 8ÿÿÿðêÉ&•& p MÿÿÿìêÉ&•& p bÿÿÿíêÉ&•& p wÿÿÿíêÉ&•& p ŒÿÿÿçêÉ&•& p ¡ÿÿÿïêÉ&Œ& f ¶ÿÿÿîêÉ&Œ& f ËÿÿÿèìÉ&•& p àÿÿÿèêÉ&Œ& y õÿÿÿéêÉ&Œ& f ÿÿÿçêÉ&Œ& y ÿÿÿçêÉ&Œ& f 4ÿÿÿçêÉ&•& p IÿÿÿëêÉ&Œ& f ^ÿÿÿìêÉ&•& p sÿÿÿíêÉ&Œ& f ˆÿÿÿçêÉ&•& p ÿÿ ÿëöÎ&| ƒÿÿ ÿëöÎ&Ž& — |ÿÿ ÿëöÎ&Ž& — ‘ÿÿ ÿêöÎ&Ž& — ¦ÿÿ ÿðöÎ&…&  »ÿÿ ÿêöÎ&Ž& — Ðÿÿ ÿçöÎ&—& ¡ åÿÿ ÿïöÎ&Ž& — úÿÿ ÿíöÎ&—& ¡ ÿÿ ÿëöÎ&—& ¡ $ÿÿ ÿíöÎ&—& ¡ 9ÿÿ ÿíöÎ&—& ¡ Nÿÿ ÿìöÎ&—& ¡ cÿÿ ÿîöÎ&—& ¡ xÿÿ ÿíöÎ&—& ¡ ÿÿ ÿçöÎ&—& ¡ ¢ÿÿ ÿïöÎ&Ž& — ·ÿÿ ÿîöÎ&Ž& — Ìÿÿ ÿèöÎ&—& ¡ áÿÿ ÿèöÎ&Ž& « öÿÿ ÿéöÎ&Ž& — ÿÿ ÿçöÎ&Ž& « ÿÿ ÿçöÎ&Ž& — 5ÿÿ ÿçöÎ&—& ¡ Jÿÿ ÿëöÎ&Ž& — _ÿÿ ÿìöÎ&—& ¡ tÿÿ ÿíöÎ&Ž& — ‰ÿÿ ÿçöÎ&—& ¡ žÿÿ ÿëÐÎ&~ µÿÿ ÿëÐÎ&& É |ÿÿ ÿëÐÎ&& É ‘ÿÿ ÿêëÎ&& É ¦ÿÿ ÿðÕÎ&‡& ¿ »ÿÿ ÿêãÎ&& É Ðÿÿ ÿçßÎ&™& Ó åÿÿ ÿïÕÎ&& É úÿÿ ÿíÕÎ&™& Ó ÿÿ ÿëÐÎ&™& Ó $ÿÿ ÿíÐÎ&™& Ó 9ÿÿ ÿíÐÎ&™& Ó Nÿÿ ÿìéÎ&™& Ó cÿÿ ÿîÔÎ&™& Ó xÿÿ ÿíÕÎ&™& Ó ÿÿ ÿçÛÎ&™& Ó ¢ÿÿ ÿïÐÎ&& É ·ÿÿ ÿîÐÎ&& É Ìÿÿ ÿèéÎ&™& Ó áÿÿ ÿèãÎ&& Ý öÿÿ ÿééÎ&& É ÿÿ ÿçÔÎ&& Ý ÿÿ ÿçâÎ&& É 5ÿÿ ÿçâÎ&™& Ó Jÿÿ ÿëÐÎ&& É _ÿÿ ÿìÕÎ&™& Ó tÿÿ ÿíØÎ&& É ‰ÿÿ ÿçÜÎ&™& Ó žÿÿ ÿëÐÎ&| çÿÿ ÿëÐÎ&Ž& ú |ÿÿ ÿëÐÎ&Ž& ú ‘ÿÿ ÿêëÎ&Ž& ú ¦ÿÿ ÿðÕÎ&…& ð »ÿÿ ÿêãÎ&Ž& ú Ðÿÿ ÿçßÎ&—&  åÿÿ ÿïÕÎ&Ž& ú úÿÿ ÿíÕÎ&—&  ÿÿ ÿëÐÎ&—&  $ÿÿ ÿíÐÎ&—&  9ÿÿ ÿíÐÎ&—&  Nÿÿ ÿìéÎ&—&  cÿÿ ÿîÔÎ&—&  xÿÿ ÿíÕÎ&—&  ÿÿ ÿçÛÎ&—&  ¢ÿÿ ÿïÐÎ&Ž& ú ·ÿÿ ÿîÐÎ&Ž& ú Ìÿÿ ÿèéÎ&—&  áÿÿ ÿèãÎ&Ž&  öÿÿ ÿééÎ&Ž& ú ÿÿ ÿçÔÎ&Ž&  ÿÿ ÿçâÎ&Ž& ú 5ÿÿ ÿçâÎ&—&  Jÿÿ ÿëÐÎ&Ž& ú _ÿÿ ÿìÕÎ&—&  tÿÿ ÿíØÎ&Ž& ú ‰ÿÿ ÿçÜÎ&—&  žÿÿ ë½&z ÿÿÿëëÉ&Œ& , {ÿÿÿëëÉ&Œ& , ÿÿÿêëÉ&Œ& , ¥ÿÿÿðëÉ&ƒ& " ºÿÿÿéëÉ&Œ& , ÏÿÿÿçëÉ&•& 6 äÿÿÿïëÉ&Œ& , ùÿÿÿíëÉ&•& 6 ÿÿÿëëÉ&•& 6 #ÿÿÿíëÉ&•& 6 8ÿÿÿðëÉ&•& 6 MÿÿÿìëÉ&•& 6 bÿÿÿíëÉ&•& 6 wÿÿÿíëÉ&•& 6 ŒÿÿÿçëÉ&•& 6 ¡ÿÿÿïëÉ&Œ& , ¶ÿÿÿîëÉ&Œ& , ËÿÿÿèìÉ&•& 6 àÿÿÿèëÉ&Œ& @ õÿÿÿéëÉ&Œ& , ÿÿÿçëÉ&Œ& @ ÿÿÿçëÉ&Œ& , 4ÿÿÿçëÉ&•& 6 IÿÿÿëëÉ&Œ& , ^ÿÿÿìëÉ&•& 6 sÿÿÿíëÉ&Œ& , ˆÿÿÿçëÉ&•& 6 ÿÿÿëëÉ&{ IÿÿÿëëÉ&& T {ÿÿÿëëÉ&& T ÿÿÿêëÉ&& T ¥ÿÿÿðëÉ&„& O ºÿÿÿéëÉ&& T ÏÿÿÿçëÉ&–& i äÿÿÿïëÉ&& T ùÿÿÿíëÉ&–& i ÿÿÿëëÉ&–& i #ÿÿÿíëÉ&–& i 8ÿÿÿðëÉ&–& i MÿÿÿìëÉ&–& i bÿÿÿíëÉ&–& i wÿÿÿíëÉ&–& i ŒÿÿÿçëÉ&–& i ¡ÿÿÿïëÉ&& T ¶ÿÿÿîëÉ&& T ËÿÿÿèìÉ&–& i àÿÿÿèëÉ&& b õÿÿÿéëÉ&& T ÿÿÿçëÉ&& T ÿÿÿçëÉ&& T 4ÿÿÿçëÉ&–& [ IÿÿÿëëÉ&& T ^ÿÿÿìëÉ&–& i sÿÿÿíëÉ&& T ˆÿÿÿçëÉ&–& [ ÿÿ ÿëÐÎ&} pÿÿ ÿëÐÎ&& ~ ~ÿÿ ÿëÐÎ&& ~ “ÿÿ ÿêëÎ&& ~ ¨ÿÿÿðÕÎ&†& w ½ÿÿ ÿéãÎ&& ~ Òÿÿ ÿçßÎ&˜& “ çÿÿ ÿïÕÎ&& ~ üÿÿ ÿíÕÎ&˜& “ ÿÿ ÿëÐÎ&˜& “ &ÿÿ ÿíÐÎ&˜& “ ;ÿÿ ÿíÐÎ&˜& “ Pÿÿ ÿëéÎ&˜& “ eÿÿ ÿîÔÎ&˜& “ zÿÿ ÿíÖÎ&˜& “ ÿÿ ÿçÛÎ&˜& “ ¤ÿÿ ÿïÐÎ&& ~ ¹ÿÿ ÿîÐÎ&& ~ Îÿÿ ÿêéÎ&˜& “ ãÿÿ ÿèãÎ&& Œ øÿÿ ÿçéÎ&& ~ ÿÿ ÿçÔÎ&& Œ "ÿÿ ÿçÞÎ&& ~ 7ÿÿ ÿíÞÎ&˜& … Lÿÿ ÿëÐÎ&& ~ aÿÿ ÿìÕÎ&˜& “ vÿÿ ÿíØÎ&& ~ ‹ÿÿ ÿçÜÎ&˜& …  ÿÿ ÿëÐÎ& šÿÿ ÿëÐÎ&‘& ¨ ~ÿÿ ÿëÐÎ&‘& ¨ “ÿÿ ÿêëÎ&‘& ¨ ¨ÿÿ ÿðÕÎ&ˆ& ¡ ½ÿÿ ÿéãÎ&‘& ¨ Òÿÿ ÿçßÎ&š& ½ çÿÿ ÿïÕÎ&‘& ¨ üÿÿ ÿíÕÎ&š& ½ ÿÿ ÿëÐÎ&š& ½ &ÿÿ ÿíÐÎ&š& ½ ;ÿÿ ÿíÐÎ&š& ½ Pÿÿ ÿëéÎ&š& ½ eÿÿ ÿîÔÎ&š& ½ zÿÿ ÿíÖÎ&š& ½ ÿÿ ÿçÛÎ&š& ½ ¤ÿÿ ÿïÐÎ&‘& ¨ ¹ÿÿ ÿîÐÎ&‘& ¨ Îÿÿ ÿêéÎ&š& ½ ãÿÿ ÿèãÎ&‘& ¶ øÿÿ ÿçéÎ&‘& ¨ ÿÿ ÿçÔÎ&‘& ¶ "ÿÿ ÿçÞÎ&‘& ¨ 7ÿÿ ÿíÞÎ&š& ¯ Lÿÿ ÿëÐÎ&‘& ¨ aÿÿ ÿìÕÎ&š& ½ vÿÿ ÿíØÎ&‘& ¨ ‹ÿÿ ÿçÜÎ&š& ¯  ÿÿ ÿëÐÎ&} Äÿÿ ÿëÐÎ&& Ò }ÿÿ ÿëÐÎ&& Ò ’ÿÿ ÿêëÎ&& Ò §ÿÿÿðÕÎ&†& Ë ¼ÿÿ ÿéãÎ&& Ò Ñÿÿ ÿçßÎ&˜& ç æÿÿ ÿïÕÎ&& Ò ûÿÿ ÿíÕÎ&˜& ç ÿÿ ÿëÐÎ&˜& ç %ÿÿ ÿíÐÎ&˜& ç :ÿÿ ÿíÐÎ&˜& ç Oÿÿ ÿëèÎ&˜& ç dÿÿ ÿîÔÎ&˜& ç yÿÿ ÿíÖÎ&˜& ç Žÿÿ ÿçÛÎ&˜& ç £ÿÿ ÿïÐÎ&& Ò ¸ÿÿ ÿîÐÎ&& Ò Íÿÿ ÿêéÎ&˜& ç âÿÿ ÿèãÎ&& à ÷ÿÿ ÿçéÎ&& Ò ÿÿ ÿçÔÎ&& à !ÿÿ ÿçÞÎ&& Ò 6ÿÿ ÿçÞÎ&˜& Ù Kÿÿ ÿëÐÎ&& Ò `ÿÿ ÿìÕÎ&˜& ç uÿÿ ÿíØÎ&& Ò Šÿÿ ÿçÖÎ&˜& Ù ŸÿÿÿíëÉ&{ îÿÿÿëëÉ&& ü {ÿÿÿëëÉ&& ü ÿÿÿêëÉ&& ü ¥ÿÿÿðëÉ&„& õ ºÿÿÿéëÉ&& ü ÏÿÿÿçëÉ&–&  äÿÿÿïëÉ&& ü ùÿÿÿíëÉ&–&  ÿÿÿëëÉ&–&  #ÿÿÿíëÉ&–&  8ÿÿÿðëÉ&–&  MÿÿÿìëÉ&–&  bÿÿÿíëÉ&–&  wÿÿÿíëÉ&–&  ŒÿÿÿçëÉ&–&  ¡ÿÿÿïëÉ&& ü ¶ÿÿÿîëÉ&& ü ËÿÿÿèìÉ&–&  àÿÿÿèëÉ&&  õÿÿÿéëÉ&& ü ÿÿÿçëÉ&&  ÿÿÿçëÉ&& ü 4ÿÿÿçëÉ&–&  IÿÿÿëëÉ&& ü ^ÿÿÿìëÉ&–&  sÿÿÿíëÉ&& ü ˆÿÿÿçëÉ&–&  ÿÿ ë½&z ÿÿÿëëÉ&Œ& % {ÿÿÿëëÉ&Œ& % ÿÿÿêëÉ&Œ& % ¥ÿÿÿðëÉ&ƒ&  ºÿÿÿéëÉ&Œ& % ÏÿÿÿçëÉ&•& : äÿÿÿïëÉ&Œ& % ùÿÿÿíëÉ&•& : ÿÿÿëëÉ&•& : #ÿÿÿíëÉ&•& : 8ÿÿÿðëÉ&•& : MÿÿÿìëÉ&•& : bÿÿÿíëÉ&•& : wÿÿÿíëÉ&•& : ŒÿÿÿçëÉ&•& : ¡ÿÿÿïëÉ&Œ& % ¶ÿÿÿîëÉ&Œ& % ËÿÿÿèìÉ&•& : àÿÿÿèëÉ&Œ& 3 õÿÿÿéëÉ&Œ& % ÿÿÿçëÉ&Œ& 3 ÿÿÿçëÉ&Œ& % 4ÿÿÿçëÉ&•& , IÿÿÿëëÉ&Œ& % ^ÿÿÿìëÉ&•& : sÿÿÿíëÉ&Œ& % ˆÿÿÿçëÉ&•& , ÿÿ ÿëÐÎ&| Aÿÿ ÿëÐÎ&Ž& N |ÿÿ ÿëÐÎ&Ž& N ‘ÿÿ ÿêëÎ&Ž& N ¦ÿÿ ÿðÕÎ&…& G »ÿÿ ÿêãÎ&Ž& N Ðÿÿ ÿçßÎ&—& c åÿÿ ÿïÕÎ&Ž& N úÿÿ ÿíÕÎ&—& c ÿÿ ÿëÐÎ&—& c $ÿÿ ÿíÐÎ&—& c 9ÿÿ ÿíÐÎ&—& c Nÿÿ ÿìéÎ&—& c cÿÿ ÿîÔÎ&—& c xÿÿ ÿíÕÎ&—& c ÿÿ ÿçÛÎ&—& c ¢ÿÿ ÿïÐÎ&Ž& N ·ÿÿ ÿîÐÎ&Ž& N Ìÿÿ ÿèéÎ&—& c áÿÿ ÿèãÎ&Ž& \ öÿÿ ÿééÎ&Ž& N ÿÿ ÿçÔÎ&Ž& \ ÿÿ ÿçâÎ&Ž& N 5ÿÿ ÿçâÎ&—& U Jÿÿ ÿëÐÎ&Ž& N _ÿÿ ÿìÕÎ&—& c tÿÿ ÿíØÎ&Ž& N ‰ÿÿ ÿçÜÎ&—& U žÿÿ ÿëÐÎ&w jÿÿÿëÐÎ&‰& p yÿÿÿëÐÎ&‰& p ŽÿÿÿèìÎ&‰& p £ÿÿ ÿðÕÎ&€& m ¸ÿÿÿéãÎ&‰& p ÍÿÿÿçßÎ&’& v âÿÿÿïÕÎ&‰& p ÷ÿÿÿíÕÎ&’& v ÿÿÿëÐÎ&’& v !ÿÿÿíÐÎ&’& v 6ÿÿÿíÐÎ&’& v KÿÿÿìéÎ&’& v `ÿÿÿíÔÎ&’& v uÿÿÿíÕÎ&’& v ŠÿÿÿçÛÎ&’& v ŸÿÿÿïÐÎ&‰& p ´ÿÿÿîÐÎ&‰& p ÉÿÿÿèìÎ&’& v ÞÿÿÿèãÎ&‰& s óÿÿÿééÎ&‰& p ÿÿÿçÔÎ&‰& s ÿÿÿçÞÎ&‰& p 2ÿÿÿçÞÎ&’& p GÿÿÿëÐÎ&‰& p \ÿÿÿìÕÎ&’& v qÿÿÿíØÎ&‰& p †ÿÿÿçÖÎ&’& p ›ÿÿÿëöÎ&›UÿÿÿëõÎ&­&[ xÿÿÿëõÎ&­&[ ÿÿÿèõÎ&­&[ ¢ÿÿÿðöÎ&¤& ·XÿÿÿêõÎ&­&[ ÌÿÿÿçõÎ&¶&a áÿÿÿïõÎ&­&[ öÿÿÿíõÎ&¶&a ÿÿÿëõÎ&¶&a ÿÿÿíõÎ&¶&a 5ÿÿÿíõÎ&¶&a JÿÿÿìõÎ&¶&a _ÿÿÿíõÎ&¶&a tÿÿÿíõÎ&¶&a ‰ÿÿÿçõÎ&¶&a žÿÿÿïõÎ&[& ³­ÿÿÿîõÎ&­&[ ÈÿÿÿèõÎ&¶&a ÝÿÿÿèöÎ&­&^ òÿÿÿéõÎ&­&[ ÿÿÿçöÎ&­&^ ÿÿÿçõÎ&­&[ 1ÿÿÿçõÎ&¶&[ FÿÿÿëõÎ&­&[ [ÿÿÿìõÎ&¶&a pÿÿÿíõÎ&­&[ …ÿÿÿçõÎ&¶&[ šÿÿ ÿëÐÎ&dÿÿ ÿëÐÎ&¯&j zÿÿ ÿëÐÎ&¯&j ÿÿ ÿèìÎ&¯&j ¤ÿÿ ÿðÕÎ&¦&g ¹ÿÿ ÿéãÎ&¯&j Îÿÿ ÿçßÎ&¸&p ãÿÿ ÿïÕÎ&¯&j øÿÿ ÿíÕÎ&¸&p ÿÿ ÿëÐÎ&¸&p "ÿÿ ÿíÐÎ&¸&p 7ÿÿ ÿíÐÎ&¸&p Lÿÿ ÿìéÎ&¸&p aÿÿ ÿíÔÎ&¸&p vÿÿ ÿíÕÎ&¸&p ‹ÿÿ ÿçÛÎ&¸&p  ÿÿ ÿïÐÎ&¯&j µÿÿ ÿîÐÎ&¯&j Êÿÿ ÿèìÎ&¸&p ßÿÿ ÿèàÎ&¯&m ôÿÿ ÿééÎ&¯&j ÿÿ ÿçÔÎ&¯&m ÿÿ ÿçÞÎ&¯&j 3ÿÿ ÿçÞÎ&¸&j Hÿÿ ÿëÐÎ&¯&j ]ÿÿ ÿìÕÎ&¸&p rÿÿ ÿíØÎ&¯&j ‡ÿÿ ÿçÜÎ&¸&j œÿÿÿëöÎ&›sÿÿÿëöÎ&­&y xÿÿÿëöÎ&­&y ÿÿÿèöÎ&­&y ¢ÿÿÿðöÎ&¤&v ·ÿÿÿêöÎ&­&y ÌÿÿÿçöÎ&¶& áÿÿÿïöÎ&­&y öÿÿÿíöÎ&¶& ÿÿÿëöÎ&¶& ÿÿÿíöÎ&¶& 5ÿÿÿíöÎ&¶& JÿÿÿìöÎ&¶& _ÿÿÿíöÎ&¶& tÿÿÿíöÎ&¶& ‰ÿÿÿçöÎ&¶& žÿÿÿïöÎ&­&y ³ÿÿÿîöÎ&­&y ÈÿÿÿèöÎ&¶& ÝÿÿÿèöÎ&­&| òÿÿÿéöÎ&­&y ÿÿÿçöÎ&­&| ÿÿÿçöÎ&­&y 1ÿÿÿçöÎ&¶&y FÿÿÿëöÎ&­&y [ÿÿÿìöÎ&¶& pÿÿÿíöÎ&­&y …ÿÿÿçöÎ&¶&y šÿÿ ÿëÐÎ&‚ÿÿ ÿëÐÎ&¯&ˆ zÿÿ ÿëÐÎ&¯&ˆ ÿÿ ÿèìÎ&¯&ˆ ¤ÿÿ ÿðÕÎ&¦&… ¹ÿÿ ÿéãÎ&¯&ˆ Îÿÿ ÿçßÎ&¸&Ž ãÿÿ ÿïÕÎ&¯&ˆ øÿÿ ÿíÕÎ&¸&Ž ÿÿ ÿëÐÎ&¸&Ž "ÿÿ ÿíÐÎ&¸&Ž 7ÿÿ ÿíÐÎ&¸&Ž Lÿÿ ÿìéÎ&¸&Ž aÿÿ ÿíÔÎ&¸&Ž vÿÿ ÿíÕÎ&¸&Ž ‹ÿÿ ÿçÛÎ&¸&Ž  ÿÿ ÿïÐÎ&¯&ˆ µÿÿ ÿîÐÎ&¯&ˆ Êÿÿ ÿèìÎ&¸&Ž ßÿÿ ÿèàÎ&¯&‹ ôÿÿ ÿééÎ&¯&ˆ ÿÿ ÿçÔÎ&¯&‹ ÿÿ ÿçÞÎ&¯&ˆ 3ÿÿ ÿçÞÎ&¸&ˆ Hÿÿ ÿëÐÎ&¯&ˆ ]ÿÿ ÿìÕÎ&¸&Ž rÿÿ ÿíØÎ&¯&ˆ ‡ÿÿ ÿçÜÎ&¸&ˆ œÿÿ ÿëÐÎ&‘œÿÿ ÿëÐÎ&®&­ yÿÿ ÿëÐÎ&®&­ Žÿÿ ÿèìÎ&®&­ £ÿÿ ÿðÕÎ&¥& ¸£ÿÿ ÿéãÎ&®&­ Íÿÿ ÿçßÎ&·&· âÿÿ ÿïÕÎ&®&­ ÷ÿÿ ÿíÕÎ&·&· ÿÿ ÿëÐÎ&·&· !ÿÿ ÿíÐÎ&·&· 6ÿÿ ÿíÐÎ&·&· Kÿÿ ÿìéÎ&·&· `ÿÿ ÿíÔÎ&·&· uÿÿ ÿíÕÎ&·&· Šÿÿ ÿçÛÎ&·&· Ÿÿÿ ÿïÐÎ&®&­ ´ÿÿ ÿîÐÎ&®&­ Éÿÿ ÿèìÎ&·&· ÞÿÿÿèãÎ& ó&­Áÿÿ ÿééÎ&®&­ ÿÿÿçÔÎ&Á&­ ÿÿ ÿçÞÎ&®&­ 2ÿÿ ÿçÞÎ&·&· Gÿÿ ÿëÐÎ&®&­ \ÿÿ ÿìÕÎ&·&· qÿÿ ÿíØÎ&®&­ †ÿÿ ÿçÖÎ&·&· ›ÿÿ ÿëÐÎ&Éÿÿ ÿëÐÎ&¯&Ý zÿÿ ÿëÐÎ&¯&Ý ÿÿ ÿèìÎ&¯&Ý ¤ÿÿ ÿðÕÎ&¦&Ó ¹ÿÿ ÿéãÎ&¯&Ý Îÿÿ ÿçßÎ&¸&ç ãÿÿ ÿïÕÎ&¯&Ý øÿÿ ÿíÕÎ&¸&ç ÿÿ ÿëÐÎ&¸&ç "ÿÿ ÿíÐÎ&¸&ç 7ÿÿ ÿíÐÎ&¸&ç Lÿÿ ÿìéÎ&¸&ç aÿÿ ÿíÔÎ&¸&ç vÿÿ ÿíÕÎ&¸&ç ‹ÿÿ ÿçÛÎ&¸&ç  ÿÿ ÿïÐÎ&¯&Ý µÿÿ ÿîÐÎ&¯&Ý Êÿÿ ÿèìÎ&¸&ç ßÿÿ ÿèàÎ&¯&ñ ôÿÿ ÿééÎ&¯&Ý ÿÿ ÿçÔÎ&¯&ñ ÿÿ ÿçÞÎ&¯&Ý 3ÿÿ ÿçÞÎ&¸&ç Hÿÿ ÿëÐÎ&¯&Ý ]ÿÿ ÿìÕÎ&¸&ç rÿÿ ÿíØÎ&¯&Ý ‡ÿÿ ÿçÜÎ&¸&ç œÿÿ ÿëÐÎ&œûÿÿ ÿëÐÎ&®&  yÿÿ ÿëÐÎ&®&  Žÿÿ ÿèìÎ&®&  £ÿÿ ÿðÕÎ&¥&  ¸ÿÿ ÿéãÎ&®&  Íÿÿ ÿçßÎ&·&  âÿÿ ÿïÕÎ&®&  ÷ÿÿ ÿíÕÎ&·&  ÿÿ ÿëÐÎ&·&  !ÿÿ ÿíÐÎ&·&  6ÿÿ ÿíÐÎ&·&  Kÿÿ ÿìéÎ&·&  `ÿÿ ÿíÔÎ&·&  uÿÿ ÿíÕÎ&·&  Šÿÿ ÿçÛÎ&·&  Ÿÿÿ ÿïÐÎ&®&  ´ÿÿ ÿîÐÎ&®&  Éÿÿ ÿèìÎ&·&  Þÿÿ ÿèãÎ&®&  óÿÿ ÿééÎ& &® ÿÿ ÿçÔÎ&®&  ÿÿ ÿçÞÎ&®&  2ÿÿ ÿçÞÎ&·&  Gÿÿ ÿëÐÎ&®&  \ÿÿ ÿìÕÎ&·&  qÿÿ ÿíØÎ&®&  †ÿÿ ÿçÖÎ&·&  ›ÿÿ ÿëÐÎ& *ÿÿ ÿëÐÎ&¯& > zÿÿ ÿëÐÎ&¯& > ÿÿ ÿèìÎ&¯& > ¤ÿÿ ÿðÕÎ&¦& 4 ¹ÿÿ ÿéãÎ&¯& > Îÿÿ ÿçßÎ&¸& H ãÿÿ ÿïÕÎ&¯& > øÿÿ ÿíÕÎ&¸& H ÿÿ ÿëÐÎ&¸& H "ÿÿ ÿíÐÎ&¸& H 7ÿÿ ÿíÐÎ&¸& H Lÿÿ ÿìéÎ&¸& H aÿÿ ÿíÔÎ&¸& H vÿÿ ÿíÕÎ&¸& H ‹ÿÿ ÿçÛÎ&¸& H  ÿÿ ÿïÐÎ&¯& > µÿÿ ÿîÐÎ&¯& > Êÿÿ ÿèìÎ&¸& H ßÿÿ ÿèàÎ&¯& R ôÿÿ ÿééÎ&¯& > ÿÿ ÿçÔÎ&¯& R ÿÿ ÿçÞÎ&¯& > 3ÿÿ ÿçÞÎ&¸& H Hÿÿ ÿëÐÎ&¯& > ]ÿÿ ÿìÕÎ&¸& H rÿÿ ÿíØÎ&¯& > ‡ÿÿ ÿçÜÎ&¸& H œÿÿ êÉ&ž ZÿÿÿëêÏ&°& m {ÿÿÿëêÏ&°& m ÿÿÿêêÏ&°& m ¥ÿÿÿðêÏ&§& c ºÿÿÿéêÏ&°& m ÏÿÿÿçêÏ&¹& w äÿÿÿïêÏ&°& m ùÿÿÿíêÏ&¹& w ÿÿÿëêÏ&¹& w #ÿÿÿíêÏ&¹& w 8ÿÿÿðêÏ&¹& w MÿÿÿìêÏ&¹& w bÿÿÿíêÏ&¹& w wÿÿÿíêÏ&¹& w ŒÿÿÿçêÏ&¹& w ¡ÿÿÿïêÏ&°& m ¶ÿÿÿîêÏ&°& m ËÿÿÿèìÏ&¹& w àÿÿÿèêÏ&°& € õÿÿÿéêÏ&°& m ÿÿÿçêÏ&°& € ÿÿÿçêÏ&°& m 4ÿÿÿçêÏ&¹& w IÿÿÿëêÏ&°& m ^ÿÿÿìêÏ&¹& w sÿÿÿíêÏ&°& m ˆÿÿÿçêÏ&¹& w ÿÿÿëöÎ&  ŠÿÿÿëöÎ&²& ž ƒÿÿÿëöÎ&²& ž ˜ÿÿÿêöÎ&²& ž ­ÿÿÿíöÎ&©& ” ÂÿÿÿéöÎ&²& ž ×ÿÿÿçöÎ&»& ¨ ìÿÿÿíöÎ&²& ž ÿÿÿíöÎ&»& ¨ ÿÿÿëöÎ&»& ¨ +ÿÿÿíöÎ&»& ¨ @ÿÿÿìöÎ&»& ¨ UÿÿÿìöÎ&»& ¨ jÿÿÿîöÎ&»& ¨ ÿÿÿíöÎ&»& ¨ ”ÿÿÿèöÎ&»& ¨ ©ÿÿÿïöÎ&²& ž ¾ÿÿÿîöÎ&²& ž ÓÿÿÿêöÎ&»& ¨ èÿÿÿêöÎ&²& ² ýÿÿÿìöÎ&²& ž ÿÿÿêöÎ&²& ² 'ÿÿÿëöÎ&²& ž <ÿÿÿëöÎ&»& ¨ QÿÿÿëöÎ&²& ž fÿÿÿíöÎ&»& ¨ {ÿÿÿðöÎ&²& ž ÿÿÿçöÎ&»& ¨ ¥ÿÿÿëÐÎ&¢ ¼ÿÿÿëÐÎ&´& Ð ƒÿÿÿëÐÎ&´& Ð ˜ÿÿÿêëÎ&´& Ð ­ÿÿ ÿíÕÎ&«& Æ ÂÿÿÿéãÎ&´& Ð ×ÿÿ ÿçßÎ&½& Ú ìÿÿÿíÕÎ&´& Ð ÿÿ ÿíÕÎ&½& Ú ÿÿ ÿëÐÎ&½& Ú +ÿÿ ÿíÐÎ&½& Ú @ÿÿ ÿìÐÎ&½& Ú Uÿÿ ÿìéÎ&½& Ú jÿÿ ÿîÔÎ&½& Ú ÿÿ ÿíÕÎ&½& Ú ”ÿÿ ÿèÛÎ&½& Ú ©ÿÿÿïÐÎ&´& Ð ¾ÿÿÿîÐÎ&´& Ð Óÿÿ ÿêéÎ&½& Ú èÿÿÿêãÎ&´& ä ýÿÿÿìéÎ&´& Ð ÿÿÿêÔÎ&´& ä 'ÿÿÿëâÎ&´& Ð <ÿÿ ÿëáÎ&½& Ú QÿÿÿëÐÎ&´& Ð fÿÿ ÿíÕÎ&½& Ú {ÿÿÿðØÎ&´& Ð ÿÿ ÿçÜÎ&½& Ú ¥ÿÿÿëÐÎ&  íÿÿÿëÐÎ&²&  ƒÿÿÿëÐÎ&²&  ˜ÿÿÿêëÎ&²&  ­ÿÿÿíÕÎ&©& ÷ ÂÿÿÿéãÎ&²&  ×ÿÿÿçßÎ&»&  ìÿÿÿíÕÎ&²&  ÿÿÿíÕÎ&»&  ÿÿÿëÐÎ&»&  +ÿÿÿíÐÎ&»&  @ÿÿÿìÐÎ&»&  UÿÿÿìéÎ&»&  jÿÿÿîÔÎ&»&  ÿÿÿíÕÎ&»&  ”ÿÿÿèÛÎ&»&  ©ÿÿÿïÐÎ&²&  ¾ÿÿÿîÐÎ&²&  ÓÿÿÿêéÎ&»&  èÿÿÿêãÎ&²&  ýÿÿÿìéÎ&²&  ÿÿÿêÔÎ&²&  'ÿÿÿëâÎ&²&  <ÿÿÿëáÎ&»&  QÿÿÿëÐÎ&²&  fÿÿÿíÕÎ&»&  {ÿÿÿðØÎ&²&  ÿÿÿçÜÎ&»&  ¥ÿÿ ëÉ&ž ÿÿÿëëÏ&°& 3 {ÿÿÿëëÏ&°& 3 ÿÿÿêëÏ&°& 3 ¥ÿÿÿðëÏ&§& ) ºÿÿÿéëÏ&°& 3 ÏÿÿÿçëÏ&¹& = äÿÿÿïëÏ&°& 3 ùÿÿÿíëÏ&¹& = ÿÿÿëëÏ&¹& = #ÿÿÿíëÏ&¹& = 8ÿÿÿðëÏ&¹& = MÿÿÿìëÏ&¹& = bÿÿÿíëÏ&¹& = wÿÿÿíëÏ&¹& = ŒÿÿÿçëÏ&¹& = ¡ÿÿÿïëÏ&°& 3 ¶ÿÿÿîëÏ&°& 3 ËÿÿÿèìÏ&¹& = àÿÿÿèëÏ&°& G õÿÿÿéëÏ&°& 3 ÿÿÿçëÏ&°& G ÿÿÿçëÏ&°& 3 4ÿÿÿçëÏ&¹& = IÿÿÿëëÏ&°& 3 ^ÿÿÿìëÏ&¹& = sÿÿÿíëÏ&°& 3 ˆÿÿÿçëÏ&¹& = ÿÿÿëëÏ&Ÿ MÿÿÿëëÏ&±& Y {ÿÿÿëëÏ&±& Y ÿÿÿêëÏ&±& Y ¥ÿÿÿðëÏ&¨& R ºÿÿÿéëÏ&±& Y ÏÿÿÿçëÏ&º& n äÿÿÿïëÏ&±& Y ùÿÿÿíëÏ&±& k ÿÿÿëëÏ&º& n #ÿÿÿíëÏ&º& n 8ÿÿÿðëÏ&º& n MÿÿÿìëÏ&º& n bÿÿÿíëÏ&º& n wÿÿÿíëÏ&º& n ŒÿÿÿçëÏ&º& n ¡ÿÿÿïëÏ&±& Y ¶ÿÿÿîëÏ&±& Y ËÿÿÿèìÏ&º& n àÿÿÿèëÏ&±& g õÿÿÿéëÏ&±& Y ÿÿÿçëÏ&±& Y ÿÿÿçëÏ&±& Y 4ÿÿÿçëÏ&º& ` IÿÿÿëëÏ&±& Y ^ÿÿÿìëÏ&º& n sÿÿÿíëÏ&±& Y ˆÿÿÿçëÏ&º& ` ÿÿÿëÐÎ&¡ uÿÿÿëÐÎ&³& ƒ …ÿÿÿëÐÎ&³& ƒ šÿÿÿêëÎ&³& ƒ ¯ÿÿÿíÕÎ&ª& | ÄÿÿÿéãÎ&³& ƒ ÙÿÿÿçßÎ&¼& ˜ îÿÿÿìÕÎ&³& ƒ ÿÿÿíÕÎ&¼& ˜ ÿÿÿëÐÎ&¼& ˜ -ÿÿÿíÐÎ&¼& ˜ BÿÿÿìÐÎ&¼& ˜ WÿÿÿìéÎ&¼& ˜ lÿÿÿîÔÎ&¼& ˜ ÿÿÿîÕÎ&¼& ˜ –ÿÿÿçÛÎ&¼& ˜ «ÿÿÿïÐÎ&³& ƒ ÀÿÿÿîÐÎ&³& ƒ ÕÿÿÿêéÎ&¼& ˜ êÿÿÿêäÎ&³& ‘ ÿÿÿÿìéÎ&³& ƒ ÿÿÿêÔÎ&³& ‘ )ÿÿÿêÞÎ&³& ƒ >ÿÿÿëÞÎ&¼& Š SÿÿÿëÐÎ&³& ƒ hÿÿÿíÕÎ&¼& ˜ }ÿÿÿðØÎ&³& ƒ ’ÿÿÿçÜÎ&¼& Š §ÿÿÿëÐÎ&£ Ÿÿÿ ÿëÐÎ&µ& ­ …ÿÿ ÿëÐÎ&µ& ­ šÿÿ ÿêëÎ&µ& ­ ¯ÿÿÿíÕÎ&¬& ¦ Äÿÿ ÿéãÎ&µ& ­ Ùÿÿ ÿçßÎ&¾&  îÿÿ ÿìÕÎ&µ& ­ ÿÿ ÿíÕÎ&¾&  ÿÿ ÿëÐÎ&¾&  -ÿÿ ÿíÐÎ&¾&  Bÿÿ ÿìÐÎ&¾&  Wÿÿ ÿìéÎ&¾&  lÿÿ ÿîÔÎ&¾&  ÿÿ ÿîÕÎ&¾&  –ÿÿ ÿçÛÎ&¾&  «ÿÿ ÿïÐÎ&µ& ­ Àÿÿ ÿîÐÎ&µ& ­ Õÿÿ ÿêéÎ&¾&  êÿÿ ÿêäÎ&µ& » ÿÿÿ ÿìéÎ&µ& ­ ÿÿ ÿêÔÎ&µ& » )ÿÿ ÿêÞÎ&µ& ­ >ÿÿ ÿëÞÎ&¾& ´ Sÿÿ ÿëÐÎ&µ& ­ hÿÿ ÿíÕÎ&¾&  }ÿÿ ÿðØÎ&µ& ­ ’ÿÿ ÿçÜÎ&¾& ´ §ÿÿÿëÑÎ&¡ ÉÿÿÿëÐÎ&³& × „ÿÿÿëÐÎ&³& × ™ÿÿÿêëÎ&³& × ®ÿÿÿíÕÎ&ª& Ð ÃÿÿÿéãÎ&³& × ØÿÿÿçßÎ&¼& ì íÿÿÿìÕÎ&³& × ÿÿÿíÕÎ&¼& ì ÿÿÿëÐÎ&¼& ì ,ÿÿÿíÐÎ&¼& ì AÿÿÿìÐÎ&¼& ì VÿÿÿìéÎ&¼& ì kÿÿÿîÔÎ&¼& ì €ÿÿÿîÕÎ&¼& ì •ÿÿÿèÛÎ&¼& ì ªÿÿÿïÐÎ&³& × ¿ÿÿÿîÐÎ&³& × ÔÿÿÿêéÎ&¼& ì éÿÿÿêãÎ&³& å þÿÿÿìéÎ&³& × ÿÿÿêÔÎ&³& å (ÿÿÿêÞÎ&³& × =ÿÿÿëÞÎ&¼& Þ RÿÿÿëÐÎ&³& × gÿÿÿíÕÎ&¼& ì |ÿÿÿðØÎ&³& × ‘ÿÿÿç×Î&¼& Þ ¦ÿÿÿíëÏ&Ÿ óÿÿÿëëÏ&±&  {ÿÿÿëëÏ&±&  ÿÿÿêëÏ&±&  ¥ÿÿÿðëÏ&¨& ú ºÿÿÿéëÏ&±&  ÏÿÿÿçëÏ&º&  äÿÿÿïëÏ&±&  ùÿÿÿíëÏ&º&  ÿÿÿëëÏ&º&  #ÿÿÿíëÏ&º&  8ÿÿÿðëÏ&º&  MÿÿÿìëÏ&º&  bÿÿÿíëÏ&º&  wÿÿÿíëÏ&º&  ŒÿÿÿçëÏ&º&  ¡ÿÿÿïëÏ&±&  ¶ÿÿÿîëÏ&±&  ËÿÿÿèìÏ&º&  àÿÿÿèëÏ&±&  õÿÿÿéëÏ&±&  ÿÿÿçëÏ&±&  ÿÿÿçëÏ&±&  4ÿÿÿçëÏ&º&  IÿÿÿëëÏ&±&  ^ÿÿÿìëÏ&º&  sÿÿÿíëÏ&±&  ˆÿÿÿçëÏ&º&  ÿÿ ëÉ&ž ÿÿÿëëÏ&°& * {ÿÿÿëëÏ&°& * ÿÿÿêëÏ&°& * ¥ÿÿÿðëÏ&§& # ºÿÿÿéëÏ&°& * ÏÿÿÿçëÏ&¹& ? äÿÿÿïëÏ&°& * ùÿÿÿíëÏ&¹& ? ÿÿÿëëÏ&¹& ? #ÿÿÿíëÏ&¹& ? 8ÿÿÿðëÏ&¹& ? MÿÿÿìëÏ&¹& ? bÿÿÿíëÏ&¹& ? wÿÿÿíëÏ&¹& ? ŒÿÿÿçëÏ&¹& ? ¡ÿÿÿïëÏ&°& * ¶ÿÿÿîëÏ&°& * ËÿÿÿèìÏ&¹& ? àÿÿÿèëÏ&°& 8 õÿÿÿéëÏ&°& * ÿÿÿçëÏ&°& 8 ÿÿÿçëÏ&°& * 4ÿÿÿçëÏ&¹& 1 IÿÿÿëëÏ&°& * ^ÿÿÿìëÏ&¹& ? sÿÿÿíëÏ&°& * ˆÿÿÿçëÏ&¹& 1 ÿÿÿëÐÎ&  EÿÿÿëÐÎ&²& S ƒÿÿÿëÐÎ&²& S ˜ÿÿÿêëÎ&²& S ­ÿÿÿíÕÎ&©& L ÂÿÿÿéãÎ&²& S ×ÿÿÿçßÎ&»& h ìÿÿÿíÕÎ&²& S ÿÿÿíÕÎ&»& h ÿÿÿëÐÎ&»& h +ÿÿÿíÐÎ&»& h @ÿÿÿìÐÎ&»& h UÿÿÿìéÎ&»& h jÿÿÿîÔÎ&»& h ÿÿÿíÕÎ&»& h ”ÿÿÿèÛÎ&»& h ©ÿÿÿïÐÎ&²& S ¾ÿÿÿîÐÎ&²& S ÓÿÿÿêéÎ&»& h èÿÿÿêãÎ&²& a ýÿÿÿìéÎ&²& S ÿÿÿêÔÎ&²& a 'ÿÿÿëâÎ&²& S <ÿÿÿëáÎ&»& Z QÿÿÿëÐÎ&²& S fÿÿÿíÕÎ&»& h {ÿÿÿðØÎ&²& S ÿÿÿçÜÎ&»& Z ¥ÿÿÿëÐÎ&› iÿÿÿëÐÎ& o&­ xÿÿÿëÐÎ&­& o ŽÿÿÿèìÎ&­& o £ÿÿÿðÕÎ& l& ¸¤ÿÿÿéãÎ&­& o ÍÿÿÿçßÎ&¶& u âÿÿÿïÕÎ&­& o ÷ÿÿÿíÕÎ&­&  uÿÿÿëÐÎ&¶& u !ÿÿÿíÐÎ&¶& u 6ÿÿÿíÐÎ&¶& u KÿÿÿìéÎ&¶& u `ÿÿÿíÔÎ&¶& u uÿÿÿíÕÎ&¶& u ŠÿÿÿçÛÎ&¶& u ŸÿÿÿïÐÎ& u&­ ³ÿÿÿîÐÎ&­& o ÉÿÿÿèìÎ&¶& u ÞÿÿÿèãÎ&­& r óÿÿÿééÎ&­& o ÿÿÿçÔÎ&­& r !ÿÿÿçÞÎ&­& o 2ÿÿÿçÞÎ&¶& o GÿÿÿëÐÎ&­& o \ÿÿÿìÕÎ&¶& u qÿÿÿíØÎ&­& o †ÿÿÿçÖÎ&¶& o ›ÿÿÿëöÎ&¿UÿÿÿëõÎ&Ô&[ xÿÿÿëõÎ&Ô&[ ÿÿÿèõÎ&Ô&[ ¢ÿÿÿðöÎ&Ê&X ·ÿÿÿêõÎ&Ô&[ ÌÿÿÿçõÎ&ß&a áÿÿÿïõÎ&Ô&[ öÿÿÿíõÎ&ß&a ÿÿÿëõÎ&ß&a ÿÿÿíõÎ&ß&a 5ÿÿÿíõÎ&ß&a JÿÿÿìõÎ&ß&a _ÿÿÿíõÎ&ß&a tÿÿÿíõÎ&ß&a ‰ÿÿÿçõÎ&ß&a žÿÿÿïõÎ&Ô&[ ³ÿÿÿîõÎ&Ô&[ ÈÿÿÿèõÎ&ß&a ÝÿÿÿèöÎ&Ô&^ òÿÿÿéõÎ&Ô&[ ÿÿÿçöÎ&Ô&^ ÿÿÿçõÎ&Ô&[ 1ÿÿÿçõÎ&ß&[ FÿÿÿëõÎ&Ô&[ [ÿÿÿìõÎ&ß&a pÿÿÿíõÎ&Ô&[ …ÿÿÿçõÎ&ß&[ šÿÿ ÿëÐÎ&Ádÿÿ ÿëÐÎ&Ö&j zÿÿ ÿëÐÎ&Ö&j ÿÿ ÿèìÎ&Ö&j ¤ÿÿ ÿðÕÎ&Ì&g ¹ÿÿ ÿéãÎ&Ö&j Îÿÿ ÿçßÎ&á&p ãÿÿ ÿïÕÎ&Ö&j øÿÿ ÿíÕÎ&á&p ÿÿ ÿëÐÎ&á&p "ÿÿ ÿíÐÎ&á&p 7ÿÿ ÿíÐÎ&á&p Lÿÿ ÿìéÎ&á&p aÿÿ ÿíÔÎ&á&p vÿÿ ÿíÕÎ&á&p ‹ÿÿ ÿçÛÎ&á&p  ÿÿ ÿïÐÎ&Ö&j µÿÿ ÿîÐÎ&Ö&j Êÿÿ ÿèìÎ&á&p ßÿÿ ÿèàÎ&Ö&m ôÿÿ ÿééÎ&Ö&j ÿÿ ÿçÔÎ&Ö&m ÿÿ ÿçÞÎ&Ö&j 3ÿÿ ÿçÞÎ&á&j Hÿÿ ÿëÐÎ&Ö&j ]ÿÿ ÿìÕÎ&á&p rÿÿ ÿíØÎ&Ö&j ‡ÿÿ ÿçÜÎ&á&j œÿÿÿëöÎ&¿sÿÿÿëöÎ&Ô&y xÿÿÿëöÎ&Ô&y ÿÿÿèöÎ&Ô&y ¢ÿÿÿðöÎ&Ê&v ·ÿÿÿêöÎ&Ô&y ÌÿÿÿçöÎ&ß& áÿÿÿïöÎ&Ô&y öÿÿÿíöÎ&ß& ÿÿÿëöÎ&ß& ÿÿÿíöÎ&ß& 5ÿÿÿíöÎ&ß& JÿÿÿìöÎ&ß& _ÿÿÿíöÎ&ß& tÿÿÿíöÎ&ß& ‰ÿÿÿçöÎ&ß& žÿÿÿïöÎ&Ô&y ³ÿÿÿîöÎ&Ô&y ÈÿÿÿèöÎ&ß& ÝÿÿÿèöÎ&Ô&| òÿÿÿéöÎ&Ô&y ÿÿÿçöÎ&Ô&| ÿÿÿçöÎ&Ô&y 1ÿÿÿçöÎ&ß&y FÿÿÿëöÎ&Ô&y [ÿÿÿìöÎ&ß& pÿÿÿíöÎ&Ô&y …ÿÿÿçöÎ&ß&y šÿÿ ÿëÐÎ&Á‚ÿÿ ÿëÐÎ&Ö&ˆ zÿÿ ÿëÐÎ&Ö&ˆ ÿÿ ÿèìÎ&Ö&ˆ ¤ÿÿ ÿðÕÎ&Ì&… ¹ÿÿ ÿéãÎ&Ö&ˆ Îÿÿ ÿçßÎ&á&Ž ãÿÿ ÿïÕÎ&Ö&ˆ øÿÿ ÿíÕÎ&á&Ž ÿÿ ÿëÐÎ&á&Ž "ÿÿ ÿíÐÎ&á&Ž 7ÿÿ ÿíÐÎ&á&Ž Lÿÿ ÿìéÎ&á&Ž aÿÿ ÿíÔÎ&á&Ž vÿÿ ÿíÕÎ&á&Ž ‹ÿÿ ÿçÛÎ&á&Ž  ÿÿ ÿïÐÎ&Ö&ˆ µÿÿ ÿîÐÎ&Ö&ˆ Êÿÿ ÿèìÎ&á&Ž ßÿÿ ÿèàÎ&Ö&‹ ôÿÿ ÿééÎ&Ö&ˆ ÿÿ ÿçÔÎ&Ö&‹ ÿÿ ÿçÞÎ&Ö&ˆ 3ÿÿ ÿçÞÎ&á&ˆ Hÿÿ ÿëÐÎ&Ö&ˆ ]ÿÿ ÿìÕÎ&á&Ž rÿÿ ÿíØÎ&Ö&ˆ ‡ÿÿ ÿçÜÎ&á&ˆ œÿÿ ÿëÐÎ&À‘ÿÿ ÿëÐÎ&Õ&¤ yÿÿ ÿëÐÎ&Õ&¤ Žÿÿ ÿèìÎ&Õ&¤ £ÿÿ ÿðÕÎ&Ë&› ¸ÿÿ ÿéãÎ&Õ&¤ Íÿÿ ÿçßÎ&à&® âÿÿ ÿïÕÎ&Õ&¤ ÷ÿÿ ÿíÕÎ&à&® ÿÿ ÿëÐÎ&à&® !ÿÿ ÿíÐÎ&à&® 6ÿÿ ÿíÐÎ&à&® Kÿÿ ÿìéÎ&à&® `ÿÿ ÿíÔÎ&à&® uÿÿ ÿíÕÎ&à&® Šÿÿ ÿçÛÎ&à&® Ÿÿÿ ÿïÐÎ&Õ&¤ ´ÿÿ ÿîÐÎ&Õ&¤ Éÿÿ ÿèìÎ&à&® Þÿÿ ÿèãÎ&Õ&¸ óÿÿ ÿééÎ&Õ&¤ ÿÿ ÿçÔÎ&Õ&¸ ÿÿ ÿçÞÎ&Õ&¤ 2ÿÿ ÿçÞÎ&à&® Gÿÿ ÿëÐÎ&Õ&¤ \ÿÿ ÿìÕÎ&à&® qÿÿ ÿíØÎ&Õ&¤ †ÿÿ ÿçÖÎ&à&® ›ÿÿ ÿëÐÎ&ÂÁÿÿ ÿëÐÎ&Ö&Ô zÿÿ ÿëÐÎ&Ö&Ô ÿÿ ÿèìÎ&Ö&Ô ¤ÿÿ ÿðÕÎ&Ì&Ê ¹ÿÿ ÿéãÎ&Ö&Ô Îÿÿ ÿçßÎ&á&Þ ãÿÿ ÿïÕÎ&Ö&Ô øÿÿ ÿíÕÎ&á&Þ ÿÿ ÿëÐÎ&á&Þ "ÿÿ ÿíÐÎ&á&Þ 7ÿÿ ÿíÐÎ&á&Þ Lÿÿ ÿìéÎ&á&Þ aÿÿ ÿíÔÎ&á&Þ vÿÿ ÿíÕÎ&á&Þ ‹ÿÿ ÿçÛÎ&á&Þ  ÿÿ ÿïÐÎ&Ö&Ô µÿÿ ÿîÐÎ&Ö&Ô Êÿÿ ÿèìÎ&á&Þ ßÿÿ ÿèàÎ&Ö&è ôÿÿ ÿééÎ&Ö&Ô ÿÿ ÿçÔÎ&Ö&è ÿÿ ÿçÞÎ&Ö&Ô 3ÿÿ ÿçÞÎ&á&Þ Hÿÿ ÿëÐÎ&Ö&Ô ]ÿÿ ÿìÕÎ&á&Þ rÿÿ ÿíØÎ&Ö&Ô ‡ÿÿ ÿçÜÎ&á&Þ œÿÿ ÿëÐÎ&Àòÿÿ ÿëÐÎ&Õ&  yÿÿ ÿëÐÎ&Õ&  Žÿÿ ÿèìÎ&Õ&  £ÿÿ ÿðÕÎ&Ë&ü ¸ÿÿ ÿéãÎ&Õ&  Íÿÿ ÿçßÎ&à&  âÿÿ ÿïÕÎ&Õ&  ÷ÿÿ ÿíÕÎ&à&  ÿÿ ÿëÐÎ&à&  !ÿÿ ÿíÐÎ&à&  6ÿÿ ÿíÐÎ&à&  Kÿÿ ÿìéÎ&à&  `ÿÿ ÿíÔÎ&à&  uÿÿ ÿíÕÎ&à&  Šÿÿ ÿçÛÎ&à&  Ÿÿÿ ÿïÐÎ&Õ&  ´ÿÿ ÿîÐÎ&Õ&  Éÿÿ ÿèìÎ&à&  Þÿÿ ÿèãÎ&Õ&  óÿÿ ÿééÎ&Õ&  ÿÿ ÿçÔÎ&Õ&  ÿÿ ÿçÞÎ&Õ&  2ÿÿ ÿçÞÎ&à&  Gÿÿ ÿëÐÎ&Õ&  \ÿÿ ÿìÕÎ&à&  qÿÿ ÿíØÎ&Õ&  †ÿÿ ÿçÖÎ&à&  ›ÿÿ ÿëÐÎ&Á !ÿÿ ÿëÐÎ&Ö& 5 zÿÿ ÿëÐÎ&Ö& 5 ÿÿ ÿèìÎ&Ö& 5 ¤ÿÿ ÿðÕÎ&Ì& + ¹ÿÿ ÿéãÎ&Ö& 5 Îÿÿ ÿçßÎ&á& ? ãÿÿ ÿïÕÎ&Ö& 5 øÿÿ ÿíÕÎ&á& ? ÿÿ ÿëÐÎ&á& ? "ÿÿ ÿíÐÎ&á& ? 7ÿÿ ÿíÐÎ&á& ? Lÿÿ ÿìéÎ&á& ? aÿÿ ÿíÔÎ&á& ? vÿÿ ÿíÕÎ&á& ? ‹ÿÿ ÿçÛÎ&á& ?  ÿÿ ÿïÐÎ&Ö& 5 µÿÿ ÿîÐÎ&Ö& 5 Êÿÿ ÿèìÎ&á& ? ßÿÿ ÿèàÎ&Ö& I ôÿÿ ÿééÎ&Ö& 5 ÿÿ ÿçÔÎ&Ö& I ÿÿ ÿçÞÎ&Ö& 5 3ÿÿ ÿçÞÎ&á& ? Hÿÿ ÿëÐÎ&Ö& 5 ]ÿÿ ÿìÕÎ&á& ? rÿÿ ÿíØÎ&Ö& 5 ‡ÿÿ ÿçÜÎ&á& ? œÿÿ ê½& SÿÿÿëêÉ&×& l {ÿÿÿëêÉ&×& l ÿÿÿêêÉ&×& l ¥ÿÿÿðêÉ&Í& b ºÿÿÿéêÉ&×& l ÏÿÿÿçêÉ&â& v äÿÿÿïêÉ&×& l ùÿÿÿíêÉ&â& v ÿÿÿëêÉ&â& v #ÿÿÿíêÉ&â& v 8ÿÿÿðêÉ&â& v MÿÿÿìêÉ&â& v bÿÿÿíêÉ&â& v wÿÿÿíêÉ&â& v ŒÿÿÿçêÉ&â& v ¡ÿÿÿïêÉ&×& l ¶ÿÿÿîêÉ&×& l ËÿÿÿèìÉ&â& v àÿÿÿèêÉ&×&  õÿÿÿéêÉ&×& l ÿÿÿçêÉ&×&  ÿÿÿçêÉ&×& l 4ÿÿÿçêÉ&â& v IÿÿÿëêÉ&×& l ^ÿÿÿìêÉ&â& v sÿÿÿíêÉ&×& l ˆÿÿÿçêÉ&â& v ÿÿÿëöÎ&Ä ‰ÿÿÿëöÎ&Ù&  |ÿÿÿëöÎ&Ù&  ‘ÿÿÿêöÎ&Ù&  ¦ÿÿÿðöÎ&Ï& “ »ÿÿÿêöÎ&Ù&  ÐÿÿÿçöÎ&ä& § åÿÿÿïöÎ&Ù&  úÿÿÿíöÎ&ä& § ÿÿÿëöÎ&ä& § $ÿÿÿíöÎ&ä& § 9ÿÿÿíöÎ&ä& § NÿÿÿìöÎ&ä& § cÿÿÿîöÎ&ä& § xÿÿÿíöÎ&ä& § ÿÿÿçöÎ&ä& § ¢ÿÿÿïöÎ&Ù&  ·ÿÿÿîöÎ&Ù&  ÌÿÿÿèöÎ&ä& § áÿÿÿèöÎ&Ù& ± öÿÿÿéöÎ&Ù&  ÿÿÿçöÎ&Ù& ± ÿÿÿçöÎ&Ù&  5ÿÿÿçöÎ&ä& § JÿÿÿëöÎ&Ù&  _ÿÿÿìöÎ&ä& § tÿÿÿíöÎ&Ù&  ‰ÿÿÿçöÎ&ä& § žÿÿÿëÐÎ&Æ »ÿÿÿëÐÎ&Û& Ï |ÿÿÿëÐÎ&Û& Ï ‘ÿÿÿêëÎ&Û& Ï ¦ÿÿÿðÕÎ&Ñ& Å »ÿÿÿêãÎ&Û& Ï ÐÿÿÿçßÎ&æ& Ù åÿÿÿïÕÎ&Û& Ï úÿÿÿíÕÎ&æ& Ù ÿÿÿëÐÎ&æ& Ù $ÿÿÿíÐÎ&æ& Ù 9ÿÿÿíÐÎ&æ& Ù NÿÿÿìéÎ&æ& Ù cÿÿÿîÔÎ&æ& Ù xÿÿÿíÕÎ&æ& Ù ÿÿÿçÛÎ&æ& Ù ¢ÿÿÿïÐÎ&Û& Ï ·ÿÿÿîÐÎ&Û& Ï ÌÿÿÿèéÎ&æ& Ù áÿÿÿèãÎ&Û& ã öÿÿÿééÎ&Û& Ï ÿÿÿçÔÎ&Û& ã ÿÿÿçâÎ&Û& Ï 5ÿÿÿçâÎ&æ& Ù JÿÿÿëÐÎ&Û& Ï _ÿÿÿìÕÎ&æ& Ù tÿÿÿíØÎ&Û& Ï ‰ÿÿÿçÜÎ&æ& Ù žÿÿÿëÐÎ&Ä ìÿÿÿëÐÎ&Ù&  |ÿÿÿëÐÎ&Ù&  ‘ÿÿÿêëÎ&Ù&  ¦ÿÿÿðÕÎ&Ï& ö »ÿÿÿêãÎ&Ù&  ÐÿÿÿçßÎ&ä&  åÿÿÿïÕÎ&Ù&  úÿÿÿíÕÎ&ä&  ÿÿÿëÐÎ&ä&  $ÿÿÿíÐÎ&ä&  9ÿÿÿíÐÎ&ä&  NÿÿÿìéÎ&ä&  cÿÿÿîÔÎ&ä&  xÿÿÿíÕÎ&ä&  ÿÿÿçÛÎ&ä&  ¢ÿÿÿïÐÎ&Ù&  ·ÿÿÿîÐÎ&Ù&  ÌÿÿÿèéÎ&ä&  áÿÿÿèãÎ&Ù&  öÿÿÿééÎ&Ù&  ÿÿÿçÔÎ&Ù&  ÿÿÿçâÎ&Ù&  5ÿÿÿçâÎ&ä&  JÿÿÿëÐÎ&Ù&  _ÿÿÿìÕÎ&ä&  tÿÿÿíØÎ&Ù&  ‰ÿÿÿçÜÎ&ä&  žÿÿ ë½& ÿÿÿëëÉ&×& 2 {ÿÿÿëëÉ&×& 2 ÿÿÿêëÉ&×& 2 ¥ÿÿÿðëÉ&Í& ( ºÿÿÿéëÉ&×& 2 ÏÿÿÿçëÉ&â& < äÿÿÿïëÉ&×& 2 ùÿÿÿíëÉ&â& < ÿÿÿëëÉ&â& < #ÿÿÿíëÉ&â& < 8ÿÿÿðëÉ&â& < MÿÿÿìëÉ&â& < bÿÿÿíëÉ&â& < wÿÿÿíëÉ&â& < ŒÿÿÿçëÉ&â& < ¡ÿÿÿïëÉ&×& 2 ¶ÿÿÿîëÉ&×& 2 ËÿÿÿèìÉ&â& < àÿÿÿèëÉ&×& F õÿÿÿéëÉ&×& 2 ÿÿÿçëÉ&×& F ÿÿÿçëÉ&×& 2 4ÿÿÿçëÉ&â& < IÿÿÿëëÉ&×& 2 ^ÿÿÿìëÉ&â& < sÿÿÿíëÉ&×& 2 ˆÿÿÿçëÉ&â& < ÿÿÿëëÉ&à HÿÿÿëëÉ&Ø& U {ÿÿÿëëÉ&Ø& U ÿÿÿêëÉ&Ø& U ¥ÿÿÿðëÉ&Î& P ºÿÿÿéëÉ&Ø& U ÏÿÿÿçëÉ&ã& j äÿÿÿïëÉ&Ø& U ùÿÿÿíëÉ&ã& j ÿÿÿëëÉ&ã& j #ÿÿÿíëÉ&ã& j 8ÿÿÿðëÉ&ã& j MÿÿÿìëÉ&ã& j bÿÿÿíëÉ&ã& j wÿÿÿíëÉ&ã& j ŒÿÿÿçëÉ&ã& j ¡ÿÿÿïëÉ&Ø& U ¶ÿÿÿîëÉ&Ø& U ËÿÿÿèìÉ&ã& j àÿÿÿèëÉ&Ø& c õÿÿÿéëÉ&Ø& U ÿÿÿçëÉ&Ø& U ÿÿÿçëÉ&Ø& U 4ÿÿÿçëÉ&ã& \ IÿÿÿëëÉ&Ø& U ^ÿÿÿìëÉ&ã& j sÿÿÿíëÉ&Ø& U ˆÿÿÿçëÉ&ã& \ ÿÿÿëÐÎ&Å qÿÿÿëÐÎ&Ú&  ~ÿÿÿëÐÎ&Ú&  “ÿÿÿêëÎ&Ú&  ¨ÿÿÿðÕÎ&Ð& x ½ÿÿÿéãÎ&Ú&  ÒÿÿÿçßÎ&å& ” çÿÿÿïÕÎ&Ú&  üÿÿÿíÕÎ&å& ” ÿÿÿëÐÎ&å& ” &ÿÿÿíÐÎ&å& ” ;ÿÿÿíÐÎ&å& ” PÿÿÿëéÎ&å& ” eÿÿÿîÔÎ&å& ” zÿÿÿíÖÎ&å& ” ÿÿÿçÛÎ&å& ” ¤ÿÿÿïÐÎ&Ú&  ¹ÿÿÿîÐÎ&Ú&  ÎÿÿÿêéÎ&å& ” ãÿÿÿèãÎ&Ú&  øÿÿÿçéÎ&Ú&  ÿÿÿçÔÎ&Ú&  "ÿÿÿçÞÎ&Ú&  7ÿÿÿíÞÎ&å& † LÿÿÿëÐÎ&Ú&  aÿÿÿìÕÎ&å& ” vÿÿÿíØÎ&Ú&  ‹ÿÿÿçÜÎ&å& †  ÿÿÿëÐÎ&Ç ›ÿÿÿëÐÎ&Ü& © ~ÿÿÿëÐÎ&Ü& © “ÿÿÿêëÎ&Ü& © ¨ÿÿÿðÕÎ&Ò& ¢ ½ÿÿÿéãÎ&Ü& © ÒÿÿÿçßÎ&ç& ¾ çÿÿÿïÕÎ&Ü& © üÿÿÿíÕÎ&ç& ¾ ÿÿÿëÐÎ&ç& ¾ &ÿÿÿíÐÎ&ç& ¾ ;ÿÿÿíÐÎ&ç& ¾ PÿÿÿëéÎ&ç& ¾ eÿÿÿîÔÎ&ç& ¾ zÿÿÿíÖÎ&ç& ¾ ÿÿÿçÛÎ&ç& ¾ ¤ÿÿÿïÐÎ&Ü& © ¹ÿÿÿîÐÎ&Ü& © ÎÿÿÿêéÎ&ç& ¾ ãÿÿÿèãÎ&Ü& · øÿÿÿçéÎ&Ü& © ÿÿÿçÔÎ&Ü& · "ÿÿÿçÞÎ&Ü& © 7ÿÿÿíÞÎ&ç& ° LÿÿÿëÐÎ&Ü& © aÿÿÿìÕÎ&ç& ¾ vÿÿÿíØÎ&Ü& © ‹ÿÿÿçÜÎ&ç& °  ÿÿÿëÐÎ& ÃÅÿÿÿëÐÎ&Ú& Ó }ÿÿÿëÐÎ&Ú& Ó ’ÿÿÿêëÎ&Ú& Ó §ÿÿÿðÕÎ&Ð& Ì ¼ÿÿÿéãÎ&Ú& Ó ÑÿÿÿçßÎ&å& è æÿÿÿïÕÎ&Ú& Ó ûÿÿÿíÕÎ&å& è ÿÿÿëÐÎ&å& è %ÿÿÿíÐÎ&å& è :ÿÿÿíÐÎ&å& è OÿÿÿëèÎ&å& è dÿÿÿîÔÎ&å& è yÿÿÿíÖÎ&å& è ŽÿÿÿçÛÎ&å& è £ÿÿÿïÐÎ&Ú& Ó ¸ÿÿÿîÐÎ&Ú& Ó ÍÿÿÿêéÎ&å& è âÿÿÿèãÎ&Ú& á ÷ÿÿÿçéÎ&Ú& Ó ÿÿÿçÔÎ&Ú& á !ÿÿÿçÞÎ&Ú& Ó 6ÿÿÿçÞÎ&å& Ú KÿÿÿëÐÎ&Ú& Ó `ÿÿÿìÕÎ&å& è uÿÿÿíØÎ&Ú& Ó ŠÿÿÿçÖÎ&å& Ú ŸÿÿÿíëÉ&à ïÿÿÿëëÉ&Ø& ý {ÿÿÿëëÉ&Ø& ý ÿÿÿêëÉ&Ø& ý ¥ÿÿÿðëÉ&Î& ö ºÿÿÿéëÉ&Ø& ý ÏÿÿÿçëÉ&ã&  äÿÿÿïëÉ&Ø& ý ùÿÿÿíëÉ&ã&  ÿÿÿëëÉ&ã&  #ÿÿÿíëÉ&ã&  8ÿÿÿðëÉ&ã&  MÿÿÿìëÉ&ã&  bÿÿÿíëÉ&ã&  wÿÿÿíëÉ&ã&  ŒÿÿÿçëÉ&ã&  ¡ÿÿÿïëÉ&Ø& ý ¶ÿÿÿîëÉ&Ø& ý ËÿÿÿèìÉ&ã&  àÿÿÿèëÉ&Ø&  õÿÿÿéëÉ&Ø& ý ÿÿÿçëÉ&Ø&  ÿÿÿçëÉ&Ø& ý 4ÿÿÿçëÉ&ã&  IÿÿÿëëÉ&Ø& ý ^ÿÿÿìëÉ&ã&  sÿÿÿíëÉ&Ø& ý ˆÿÿÿçëÉ&ã&  ÿÿ ë½&È ÿÿÿëëÉ&Ý& & {ÿÿÿëëÉ&Ý& & ÿÿÿêëÉ&Ý& & ¥ÿÿÿðëÉ& &&Ý ºÿÿÿéëÉ&Ý& & ÏÿÿÿçëÉ&è& ; äÿÿÿïëÉ&Ý& & ùÿÿÿíëÉ&è& ; ÿÿÿëëÉ&è& ; #ÿÿÿíëÉ&è& ; 8ÿÿÿðëÉ&è& ; MÿÿÿìëÉ&è& ; bÿÿÿíëÉ&è& ; wÿÿÿíëÉ&è& ; ŒÿÿÿçëÉ&è& ; ¡ÿÿÿïëÉ&Ý& & ¶ÿÿÿîëÉ&Ý& & ËÿÿÿèìÉ&è& ; àÿÿÿèëÉ&Ý& 4 õÿÿÿéëÉ&Ý& & ÿÿÿçëÉ&Ý& 4 ÿÿÿçëÉ&Ý& & 4ÿÿÿçëÉ&è& - IÿÿÿëëÉ&Ý& & ^ÿÿÿìëÉ&è& ; sÿÿÿíëÉ&Ý& & ˆÿÿÿçëÉ&è& - ÿÿÿëÐÎ&É BÿÿÿëÐÎ&Þ& O |ÿÿÿëÐÎ&Þ& O ‘ÿÿÿêëÎ&Þ& O ¦ÿÿÿðÕÎ&Ó& H »ÿÿÿêãÎ&Þ& O ÐÿÿÿçßÎ&é& d åÿÿÿïÕÎ&Þ& O úÿÿÿíÕÎ&é& d ÿÿÿëÐÎ&é& d $ÿÿÿíÐÎ&é& d 9ÿÿÿíÐÎ&é& d NÿÿÿìéÎ&é& d cÿÿÿîÔÎ&é& d xÿÿÿíÕÎ&é& d ÿÿÿçÛÎ&é& d ¢ÿÿÿïÐÎ&Þ& O ·ÿÿÿîÐÎ&Þ& O ÌÿÿÿèéÎ&é& d áÿÿÿèãÎ&Þ& ] öÿÿÿééÎ&Þ& O ÿÿÿçÔÎ&Þ& ] ÿÿÿçâÎ&Þ& O 5ÿÿÿçâÎ&é& V JÿÿÿëÐÎ&Þ& O _ÿÿÿìÕÎ&é& d tÿÿÿíØÎ&Þ& O ‰ÿÿÿçÜÎ&é& V žÿÿÿëÐÎ&¿ iÿÿÿëÐÎ&Ô& o yÿÿÿëÐÎ&Ô& o ŽÿÿÿèìÎ&Ô& o £ÿÿÿðÕÎ&Ê& l ¸ÿÿÿéãÎ&Ô& o ÍÿÿÿçßÎ&ß& u âÿÿÿïÕÎ&Ô& o ÷ÿÿÿíÕÎ&ß& u ÿÿÿëÐÎ&ß& u !ÿÿÿíÐÎ&ß& u 6ÿÿÿíÐÎ&ß& u KÿÿÿìéÎ&ß& u `ÿÿÿíÔÎ&ß& u uÿÿÿíÕÎ&ß& u ŠÿÿÿçÛÎ&ß& u ŸÿÿÿïÐÎ&Ô& o ´ÿÿÿîÐÎ&Ô& o ÉÿÿÿèìÎ&ß& u ÞÿÿÿèãÎ&Ô& r óÿÿÿééÎ&Ô& o ÿÿÿçÔÎ&Ô& r ÿÿÿçÞÎ&Ô& o 2ÿÿÿçÞÎ&ß& o GÿÿÿëÐÎ&Ô& o \ÿÿÿìÕÎ&ß& u qÿÿÿíØÎ&Ô& o †ÿÿÿçÖÎ&ß& o ›ÿÿÿëöÎ&UêÿÿÿëõÎ&ü&[ xÿÿÿëõÎ&ü&[ ÿÿÿèõÎ&ü&[ ¢ÿÿÿðöÎ&ó& ¸XÿÿÿêõÎ&ü&[ ÌÿÿÿçõÎ&&a áÿÿÿïõÎ&ü& ö[ÿÿÿíõÎ&[& ÿÿÿëõÎ&&a ÿÿÿíõÎ&&a 5ÿÿÿíõÎ&&a JÿÿÿìõÎ&&a _ÿÿÿíõÎ&&a tÿÿÿíõÎ&&a ‰ÿÿÿçõÎ&&a žÿÿÿïõÎ&ü&[ ³ÿÿÿîõÎ&ü&[ ÈÿÿÿèõÎ&&a ÝÿÿÿèöÎ&ü&^ òÿÿÿéõÎ&ü&[ ÿÿÿçöÎ&ü&^ ÿÿÿçõÎ&ü&[ 1ÿÿÿçõÎ&&[ FÿÿÿëõÎ&ü&[ [ÿÿÿìõÎ&&a pÿÿÿíõÎ&ü&[ …ÿÿÿçõÎ&&[ šÿÿÿëÐÎ&dìÿÿÿëÐÎ&þ&j zÿÿÿëÐÎ&þ&j ÿÿÿèìÎ&þ&j ¤ÿÿÿðÕÎ&õ&g ¹ÿÿÿéãÎ&þ&j ÎÿÿÿçßÎ&&p ãÿÿÿïÕÎ&þ&j øÿÿÿíÕÎ&&p ÿÿÿëÐÎ&&p "ÿÿÿíÐÎ&&p 7ÿÿÿíÐÎ&&p LÿÿÿìéÎ&&p aÿÿÿíÔÎ&&p vÿÿÿíÕÎ&&p ‹ÿÿÿçÛÎ&&p  ÿÿÿïÐÎ&þ&j µÿÿÿîÐÎ&þ&j ÊÿÿÿèìÎ&&p ßÿÿÿèàÎ&þ&m ôÿÿÿééÎ&þ&j ÿÿÿçÔÎ&þ&m ÿÿÿçÞÎ&þ&j 3ÿÿÿçÞÎ&&j HÿÿÿëÐÎ&þ&j ]ÿÿÿìÕÎ&&p rÿÿÿíØÎ&þ&j ‡ÿÿÿçÜÎ&&j œÿÿÿëöÎ&êsÿÿÿëöÎ&ü&y xÿÿÿëöÎ&ü&y ÿÿÿèöÎ&ü&y ¢ÿÿÿðöÎ&ó&v ·ÿÿÿêöÎ&ü&y ÌÿÿÿçöÎ&& áÿÿÿïöÎ&ü&y öÿÿÿíöÎ&& ÿÿÿëöÎ&& ÿÿÿíöÎ&& 5ÿÿÿíöÎ&& JÿÿÿìöÎ&& _ÿÿÿíöÎ&& tÿÿÿíöÎ&& ‰ÿÿÿçöÎ&& žÿÿÿïöÎ&ü&y ³ÿÿÿîöÎ&ü&y ÈÿÿÿèöÎ&& ÝÿÿÿèöÎ&ü&| òÿÿÿéöÎ&ü&y ÿÿÿçöÎ&ü&| ÿÿÿçöÎ&ü&y 1ÿÿÿçöÎ&&y FÿÿÿëöÎ&ü&y [ÿÿÿìöÎ&& pÿÿÿíöÎ&ü&y …ÿÿÿçöÎ&&y šÿÿÿëÐÎ&ì‚ÿÿÿëÐÎ&þ&ˆ zÿÿÿëÐÎ&þ&ˆ ÿÿÿèìÎ&þ&ˆ ¤ÿÿÿðÕÎ&õ&… ¹ÿÿÿéãÎ&þ&ˆ ÎÿÿÿçßÎ&&Ž ãÿÿÿïÕÎ&þ&ˆ øÿÿÿíÕÎ&&Ž ÿÿÿëÐÎ&&Ž "ÿÿÿíÐÎ&&Ž 7ÿÿÿíÐÎ&&Ž LÿÿÿìéÎ&&Ž aÿÿÿíÔÎ&&Ž vÿÿÿíÕÎ&&Ž ‹ÿÿÿçÛÎ&&Ž  ÿÿÿïÐÎ&þ&ˆ µÿÿÿîÐÎ&þ&ˆ ÊÿÿÿèìÎ&&Ž ßÿÿÿèàÎ&þ&‹ ôÿÿÿééÎ&þ&ˆ ÿÿÿçÔÎ&þ&‹ ÿÿÿçÞÎ&þ&ˆ 3ÿÿÿçÞÎ&&ˆ HÿÿÿëÐÎ&þ&ˆ ]ÿÿÿìÕÎ&&Ž rÿÿÿíØÎ&þ&ˆ ‡ÿÿÿçÜÎ&&ˆ œÿÿÿëÐÎ&ë‘ÿÿÿëÐÎ&¬&ý yÿÿÿëÐÎ&ý&¬ ŽÿÿÿèìÎ&ý&¬ £ÿÿÿðÕÎ&ô&¢ ¸ÿÿÿéãÎ&ý&¬ ÍÿÿÿçßÎ&&¶ âÿÿÿïÕÎ&ý&¬ ÷ÿÿÿíÕÎ&&¶ ÿÿÿëÐÎ&&¶ !ÿÿÿíÐÎ&&¶ 6ÿÿÿíÐÎ&&¶ KÿÿÿìéÎ&&¶ `ÿÿÿíÔÎ&&¶ uÿÿÿíÕÎ&&¶ ŠÿÿÿçÛÎ&&¶ ŸÿÿÿïÐÎ&ý&¬ ´ÿÿÿîÐÎ&ý&¬ ÉÿÿÿèìÎ&&¶ ÞÿÿÿèãÎ&ý&À óÿÿÿééÎ&ý&¬ ÿÿÿçÔÎ&ý&À ÿÿÿçÞÎ&ý&¬ 2ÿÿÿçÞÎ&&¶ GÿÿÿëÐÎ&ý&¬ \ÿÿÿìÕÎ&&¶ qÿÿÿíØÎ&ý&¬ †ÿÿÿçÖÎ&&¶ ›ÿÿÿëÐÎ&ìÉÿÿÿëÐÎ&þ&Ü zÿÿÿëÐÎ&þ&Ü ÿÿÿèìÎ&þ&Ü ¤ÿÿÿðÕÎ&õ&Ò ¹ÿÿÿéãÎ&þ&Ü ÎÿÿÿçßÎ&&æ ãÿÿÿïÕÎ&þ&Ü øÿÿÿíÕÎ&ã& ÿÿÿëÐÎ&&æ "ÿÿÿíÐÎ&&æ 7ÿÿÿíÐÎ&&æ LÿÿÿìéÎ&&æ aÿÿÿíÔÎ&&æ vÿÿÿíÕÎ&&æ ‹ÿÿÿçÛÎ&&æ  ÿÿÿïÐÎ&þ&Ü µÿÿÿîÐÎ&þ&Ü ÊÿÿÿèìÎ&&æ ßÿÿÿèàÎ&þ&ð ôÿÿÿééÎ&þ&Ü ÿÿÿçÔÎ&þ&ð ÿÿÿçÞÎ&þ&Ü 3ÿÿÿçÞÎ&&æ HÿÿÿëÐÎ&þ&Ü ]ÿÿÿìÕÎ&&æ rÿÿÿíØÎ&þ&Ü ‡ÿÿÿçÜÎ&&æ œÿÿÿëÐÎ&ëúÿÿÿëÐÎ&ý&  yÿÿÿëÐÎ&ý&  ŽÿÿÿèìÎ&ý&  £ÿÿÿðÕÎ&ô&  ¸ÿÿÿéãÎ&ý&  ÍÿÿÿçßÎ&&  âÿÿÿïÕÎ&ý&  ÷ÿÿÿíÕÎ&&  ÿÿÿëÐÎ&&  !ÿÿÿíÐÎ&&  6ÿÿÿíÐÎ&&  KÿÿÿìéÎ&&  `ÿÿÿíÔÎ&&  uÿÿÿíÕÎ&&  ŠÿÿÿçÛÎ&&  ŸÿÿÿïÐÎ&ý&  ´ÿÿÿîÐÎ&ý&  ÉÿÿÿèìÎ&&  ÞÿÿÿèãÎ&ý&  óÿÿÿééÎ&ý&  ÿÿÿçÔÎ&ý&  ÿÿÿçÞÎ&ý&  2ÿÿÿçÞÎ&&  GÿÿÿëÐÎ&ý&  \ÿÿÿìÕÎ&&  qÿÿÿíØÎ&ý&  †ÿÿÿçÖÎ&&  ›ÿÿÿëÐÎ&ì )ÿÿÿëÐÎ&þ& = zÿÿÿëÐÎ&þ& = ÿÿÿèìÎ&þ& = ¤ÿÿÿðÕÎ&õ& 3 ¹ÿÿÿéãÎ&þ& = ÎÿÿÿçßÎ&& G ãÿÿÿïÕÎ&þ& = øÿÿÿíÕÎ&& G ÿÿÿëÐÎ&& G "ÿÿÿíÐÎ&& G 7ÿÿÿíÐÎ&& G LÿÿÿìéÎ&& G aÿÿÿíÔÎ&& G vÿÿÿíÕÎ&& G ‹ÿÿÿçÛÎ&& G  ÿÿÿïÐÎ&þ& = µÿÿÿîÐÎ&þ& = ÊÿÿÿèìÎ&& G ßÿÿÿèàÎ&þ& Q ôÿÿÿééÎ&þ& = ÿÿÿçÔÎ&þ& Q ÿÿÿçÞÎ&þ& = 3ÿÿÿçÞÎ&& G HÿÿÿëÐÎ&þ& = ]ÿÿÿìÕÎ&& G rÿÿÿíØÎ&þ& = ‡ÿÿÿçÜÎ&& G œÿÿ ê¿&í WÿÿÿëêÉ&ÿ& m {ÿÿÿëêÉ&ÿ& m ÿÿÿêêÉ&ÿ& m ¥ÿÿÿðêÉ&ö& c ºÿÿÿéêÉ&ÿ& m ÏÿÿÿçêÌ&& w äÿÿÿïêÉ&ÿ& m ùÿÿÿíêÌ&& w ÿÿÿëêÌ&& w #ÿÿÿíêÌ&& w 8ÿÿÿðêÌ&& w MÿÿÿìêÌ&& w bÿÿÿíêÌ&& w wÿÿÿíêÌ&& w ŒÿÿÿçêÌ&& w ¡ÿÿÿïêÉ&ÿ& m ¶ÿÿÿîêÉ&ÿ& m ËÿÿÿèìÌ&& w àÿÿÿèêÉ&ÿ& € õÿÿÿéêÉ&ÿ& m ÿÿÿçêÉ& &ÿ €ÿÿÿçêÉ&ÿ& m 4ÿÿÿçêÌ&& w IÿÿÿëêÉ&ÿ& m ^ÿÿÿìêÌ&& w sÿÿÿíêÉ&ÿ& m ˆÿÿÿçêÌ&& w ÿÿÿëöÎ&ï ŠÿÿÿëöÎ&& ž ƒÿÿÿëöÎ&& ž ˜ÿÿÿêöÎ&& ž ­ÿÿÿíöÎ&ø& ” ÂÿÿÿéöÎ&& ž ×ÿÿÿçöÎ& & ¨ ìÿÿÿíöÎ&& ž ÿÿÿíöÎ& & ¨ ÿÿÿëöÎ& & ¨ +ÿÿÿíöÎ& & ¨ @ÿÿÿìöÎ& & ¨ UÿÿÿìöÎ& & ¨ jÿÿÿîöÎ& & ¨ ÿÿÿíöÎ& & ¨ ”ÿÿÿèöÎ& & ¨ ©ÿÿÿïöÎ&& ž ¾ÿÿÿîöÎ&& ž ÓÿÿÿêöÎ& & ¨ èÿÿÿêöÎ&& ² ýÿÿÿìöÎ&& ž ÿÿÿêöÎ&& ² 'ÿÿÿëöÎ&& ž <ÿÿÿëöÎ& & ¨ QÿÿÿëöÎ&& ž fÿÿÿíöÎ& & ¨ {ÿÿÿðöÎ&& ž ÿÿÿçöÎ& & ¨ ¥ÿÿÿëÐÎ&ñ ¼ÿÿÿëÐÎ&& Ð ƒÿÿÿëÐÎ&& Ð ˜ÿÿÿêëÎ&& Ð ­ÿÿÿíÕÎ&ú& Æ ÂÿÿÿéãÎ&& Ð ×ÿÿÿçßÎ& & Ú ìÿÿÿíÕÎ&& Ð ÿÿÿíÕÎ& & Ú ÿÿÿëÐÎ& & Ú +ÿÿÿíÐÎ& & Ú @ÿÿÿìÐÎ& & Ú UÿÿÿìéÎ& & Ú jÿÿÿîÔÎ& & Ú ÿÿÿíÕÎ& & Ú ”ÿÿÿèÛÎ& & Ú ©ÿÿÿïÐÎ&& Ð ¾ÿÿÿîÐÎ&& Ð ÓÿÿÿêéÎ& & Ú èÿÿÿêãÎ&& ä ýÿÿÿìéÎ&& Ð ÿÿÿêÔÎ&& ä 'ÿÿÿëâÎ&& Ð <ÿÿÿëáÎ& & Ú QÿÿÿëÐÎ&& Ð fÿÿÿíÕÎ& & Ú {ÿÿÿðØÎ&& Ð ÿÿÿçÜÎ& & Ú ¥ÿÿÿëÐÎ&ï íÿÿÿëÐÎ&&  ƒÿÿÿëÐÎ&&  ˜ÿÿÿêëÎ&&  ­ÿÿÿíÕÎ&ø& ÷ ÂÿÿÿéãÎ&&  ×ÿÿÿçßÎ& &  ìÿÿÿíÕÎ&&  ÿÿÿíÕÎ& &  ÿÿÿëÐÎ& &  +ÿÿÿíÐÎ& &  @ÿÿÿìÐÎ& &  UÿÿÿìéÎ& &  jÿÿÿîÔÎ& &  ÿÿÿíÕÎ& &  ”ÿÿÿèÛÎ& &  ©ÿÿÿïÐÎ&&  ¾ÿÿÿîÐÎ&&  ÓÿÿÿêéÎ& &  èÿÿÿêãÎ&&  ýÿÿÿìéÎ&&  ÿÿÿêÔÎ&&  'ÿÿÿëâÎ&&  <ÿÿÿëáÎ& &  QÿÿÿëÐÎ&&  fÿÿÿíÕÎ& &  {ÿÿÿðØÎ&&  ÿÿÿçÜÎ& &  ¥ÿÿ ë¿&í ÿÿÿëëÉ&ÿ& 3 {ÿÿÿëëÉ&ÿ& 3 ÿÿÿêëÉ&ÿ& 3 ¥ÿÿÿðëÉ&ö& ) ºÿÿÿéëÉ&ÿ& 3 ÏÿÿÿçëÌ&& = äÿÿÿïëÉ&ÿ& 3 ùÿÿÿíëÌ&& = ÿÿÿëëÌ&& = #ÿÿÿíëÌ&& = 8ÿÿÿðëÌ&& = MÿÿÿìëÌ&& = bÿÿÿíëÌ&& = wÿÿÿíëÌ&& = ŒÿÿÿçëÌ&& = ¡ÿÿÿïëÉ&ÿ& 3 ¶ÿÿÿîëÉ&ÿ& 3 ËÿÿÿèìÌ&& = àÿÿÿèëÉ&ÿ& G õÿÿÿéëÉ&ÿ& 3 ÿÿÿçëÉ&ÿ& G ÿÿÿçëÉ&ÿ& 3 4ÿÿÿçëÌ&& = IÿÿÿëëÉ&ÿ& 3 ^ÿÿÿìëÌ&& = sÿÿÿíëÉ&ÿ& 3 ˆÿÿÿçëÌ&& = ÿÿÿëëÉ&î MÿÿÿëëÌ&& Y {ÿÿÿëëÌ&& Y ÿÿÿêëÌ&& Y ¥ÿÿÿðëÌ&÷& R ºÿÿÿéëÌ&& Y ÏÿÿÿçëÌ& & n äÿÿÿïëÌ&& Y ùÿÿÿíëÌ& & n ÿÿÿëëÌ& & n #ÿÿÿíëÌ& & n 8ÿÿÿðëÌ& & n MÿÿÿìëÌ& & n bÿÿÿíëÌ& & n wÿÿÿíëÌ& & n ŒÿÿÿçëÌ& & n ¡ÿÿÿïëÌ&& Y ¶ÿÿÿîëÌ&& Y ËÿÿÿèìÌ& & n àÿÿÿèëÌ&& g õÿÿÿéëÌ&& Y ÿÿÿçëÌ&& Y ÿÿÿçëÌ&& Y 4ÿÿÿçëÌ& & ` IÿÿÿëëÌ&& Y ^ÿÿÿìëÌ& & n sÿÿÿíëÌ&& Y ˆÿÿÿçëÌ& & ` ÿÿÿëÐÎ&ð uÿÿÿëÐÎ&& ƒ …ÿÿÿëÐÎ&& ƒ šÿÿÿêëÎ&& ƒ ¯ÿÿÿíÕÎ&ù& | ÄÿÿÿéãÎ&& ƒ ÙÿÿÿçßÎ& & ˜ îÿÿÿìÕÎ&& ƒ ÿÿÿíÕÎ& & ˜ ÿÿÿëÐÎ& & ˜ -ÿÿÿíÐÎ& & ˜ BÿÿÿìÐÎ& & ˜ WÿÿÿìéÎ& & ˜ lÿÿÿîÔÎ& & ˜ ÿÿÿîÕÎ& & ˜ –ÿÿÿçÛÎ& & ˜ «ÿÿÿïÐÎ&& ƒ ÀÿÿÿîÐÎ&& ƒ ÕÿÿÿêéÎ& & ˜ êÿÿÿêäÎ&& ‘ ÿÿÿÿìéÎ&& ƒ ÿÿÿêÔÎ&& ‘ )ÿÿÿêÞÎ&& ƒ >ÿÿÿëÞÎ& & Š SÿÿÿëÐÎ&& ƒ hÿÿÿíÕÎ& & ˜ }ÿÿÿðØÎ&& ƒ ’ÿÿÿçÜÎ& & Š §ÿÿÿëÐÎ&ò ŸÿÿÿëÐÎ&& ­ …ÿÿÿëÐÎ&& ­ šÿÿÿêëÎ&& ­ ¯ÿÿÿíÕÎ&û& ¦ ÄÿÿÿéãÎ&& ­ ÙÿÿÿçßÎ& &  îÿÿÿìÕÎ&& ­ ÿÿÿíÕÎ& &  ÿÿÿëÐÎ& &  -ÿÿÿíÐÎ& &  BÿÿÿìÐÎ& &  WÿÿÿìéÎ& &  lÿÿÿîÔÎ& &  ÿÿÿîÕÎ& &  –ÿÿÿçÛÎ& &  «ÿÿÿïÐÎ&& ­ ÀÿÿÿîÐÎ&& ­ ÕÿÿÿêéÎ& &  êÿÿÿêäÎ&& » ÿÿÿÿìéÎ&& ­ ÿÿÿêÔÎ&& » )ÿÿÿêÞÎ&& ­ >ÿÿÿëÞÎ& & ´ SÿÿÿëÐÎ&& ­ hÿÿÿíÕÎ& &  }ÿÿÿðØÎ&& ­ ’ÿÿÿçÜÎ& & ´ §ÿÿÿëÑÎ&ð ÉÿÿÿëÐÎ&& × „ÿÿÿëÐÎ&& × ™ÿÿÿêëÎ&& × ®ÿÿÿíÕÎ&ù& Ð ÃÿÿÿéãÎ&& × ØÿÿÿçßÎ& & ì íÿÿÿìÕÎ&& × ÿÿÿíÕÎ& & ì ÿÿÿëÐÎ& & ì ,ÿÿÿíÐÎ& & ì AÿÿÿìÐÎ& & ì VÿÿÿìéÎ& & ì kÿÿÿîÔÎ& & ì €ÿÿÿîÕÎ& & ì •ÿÿÿèÛÎ& & ì ªÿÿÿïÐÎ&& × ¿ÿÿÿîÐÎ&& × ÔÿÿÿêéÎ& & ì éÿÿÿêãÎ&& å þÿÿÿìéÎ&& × ÿÿÿêÔÎ&& å (ÿÿÿêÞÎ&& × =ÿÿÿëÞÎ& & Þ RÿÿÿëÐÎ&& × gÿÿÿíÕÎ& & ì |ÿÿÿðØÎ&& × ‘ÿÿÿç×Î& & Þ ¦ÿÿÿíëÉ&î óÿÿÿëëÌ&&  {ÿÿÿëëÌ&&  ÿÿÿêëÌ&&  ¥ÿÿÿðëÌ&÷& ú ºÿÿÿéëÌ&&  ÏÿÿÿçëÌ& &  äÿÿÿïëÌ&&  ùÿÿÿíëÌ& &  ÿÿÿëëÌ& &  #ÿÿÿíëÌ& &  8ÿÿÿðëÌ& &  MÿÿÿìëÌ& &  bÿÿÿíëÌ& &  wÿÿÿíëÌ& &  ŒÿÿÿçëÌ& &  ¡ÿÿÿïëÌ&&  ¶ÿÿÿîëÌ&&  ËÿÿÿèìÌ& &  àÿÿÿèëÌ&&  õÿÿÿéëÌ&&  ÿÿÿçëÌ&&  ÿÿÿçëÌ&&  4ÿÿÿçëÌ& &  IÿÿÿëëÌ&&  ^ÿÿÿìëÌ& &  sÿÿÿíëÌ&&  ˆÿÿÿçëÌ& &  ÿÿ ë¿&í ÿÿÿëëÉ&ÿ& * {ÿÿÿëëÉ&ÿ& * ÿÿÿêëÉ&ÿ& * ¥ÿÿÿðëÉ& º& #öÿÿÿéëÉ&ÿ& * ÏÿÿÿçëÌ&& ? äÿÿÿïëÉ&ÿ& * ùÿÿÿíëÌ&& ? ÿÿÿëëÌ&& ? #ÿÿÿíëÌ&& ? 8ÿÿÿðëÌ&& ? MÿÿÿìëÌ&& ? bÿÿÿíëÌ&& ? wÿÿÿíëÌ&& ? ŒÿÿÿçëÌ&& ? ¡ÿÿÿïëÉ&ÿ& * ¶ÿÿÿîëÉ&ÿ& * ËÿÿÿèìÌ&& ? àÿÿÿèëÉ&ÿ& 8 õÿÿÿéëÉ&ÿ& * ÿÿÿçëÉ&ÿ& 8 ÿÿÿçëÉ&ÿ& * 4ÿÿÿçëÌ&& 1 IÿÿÿëëÉ&ÿ& * ^ÿÿÿìëÌ&& ? sÿÿÿíëÉ&ÿ& * ˆÿÿÿçëÌ&& 1 ÿÿÿëÐÎ&ï EÿÿÿëÐÎ&& S ƒÿÿÿëÐÎ&& S ˜ÿÿÿêëÎ&& S ­ÿÿÿíÕÎ&ø& L ÂÿÿÿéãÎ&& S ×ÿÿÿçßÎ& & h ìÿÿÿíÕÎ&& S ÿÿÿíÕÎ& & h ÿÿÿëÐÎ& & h +ÿÿÿíÐÎ& & h @ÿÿÿìÐÎ& & h UÿÿÿìéÎ& & h jÿÿÿîÔÎ& & h ÿÿÿíÕÎ& & h ”ÿÿÿèÛÎ& & h ©ÿÿÿïÐÎ&& S ¾ÿÿÿîÐÎ&& S ÓÿÿÿêéÎ& & h èÿÿÿêãÎ&& a ýÿÿÿìéÎ&& S ÿÿÿêÔÎ&& a 'ÿÿÿëâÎ&& S <ÿÿÿëáÎ& & Z QÿÿÿëÐÎ&& S fÿÿÿíÕÎ& & h {ÿÿÿðØÎ&& S ÿÿÿçÜÎ& & Z ¥ÿÿÿëÐÎ&ê iÿÿÿëÐÎ&ü& o yÿÿÿëÐÎ&ü& o ŽÿÿÿèìÎ&ü& o £ÿÿÿðÕÎ&ó& l ¸ÿÿÿéãÎ&ü& o ÍÿÿÿçßÎ&& u âÿÿÿïÕÎ&ü& o ÷ÿÿÿíÕÎ&& u ÿÿÿëÐÎ&& u !ÿÿÿíÐÎ&& u 6ÿÿÿíÐÎ&& u KÿÿÿìéÎ&& u `ÿÿÿíÔÎ&& u uÿÿÿíÕÎ&& u ŠÿÿÿçÛÎ&& u ŸÿÿÿïÐÎ&ü& o ´ÿÿÿîÐÎ&ü& o ÉÿÿÿèìÎ&& u ÞÿÿÿèãÎ&ü& r óÿÿÿééÎ&ü& o ÿÿÿçÔÎ&ü& r ÿÿÿçÞÎ&ü& o 2ÿÿÿçÞÎ&& o GÿÿÿëÐÎ&ü& o \ÿÿÿìÕÎ&& u qÿÿÿíØÎ&ü& o †ÿÿÿçÖÎ&& o ›ÿÿÿëöÎ&UÿÿÿëõÎ& &[ xÿÿÿëõÎ& &[ ÿÿÿèõÎ& &[ ¢ÿÿÿðöÎ&&X ·ÿÿÿêõÎ& &[ ÌÿÿÿçõÎ&)&a áÿÿÿïõÎ& &[ öÿÿÿíõÎ&)&a ÿÿÿëõÎ&)&a ÿÿÿíõÎ&)&a 5ÿÿÿíõÎ&)&a JÿÿÿìõÎ&)&a _ÿÿÿíõÎ&)&a tÿÿÿíõÎ&)&a ‰ÿÿÿçõÎ&)&a žÿÿÿïõÎ& &[ ³ÿÿÿîõÎ& &[ ÈÿÿÿèõÎ&)&a ÝÿÿÿèöÎ& &^ òÿÿÿéõÎ& &[ ÿÿÿçöÎ& &^ ÿÿÿçõÎ& &[ 1ÿÿÿçõÎ&)&[ FÿÿÿëõÎ& &[ [ÿÿÿìõÎ&)&a pÿÿÿíõÎ& &[ …ÿÿÿçõÎ&)&[ šÿÿ ÿëÐÎ&dÿÿ ÿëÐÎ&"&j zÿÿ ÿëÐÎ&"&j ÿÿ ÿèìÎ&"&j ¤ÿÿ ÿðÕÎ&&g ¹ÿÿ ÿéãÎ&"&j Îÿÿ ÿçßÎ&+&p ãÿÿ ÿïÕÎ&"&j øÿÿ ÿíÕÎ&+&p ÿÿ ÿëÐÎ&+&p "ÿÿ ÿíÐÎ&+&p 7ÿÿ ÿíÐÎ&+&p Lÿÿ ÿìéÎ&+&p aÿÿ ÿíÔÎ&+&p vÿÿ ÿíÕÎ&+&p ‹ÿÿ ÿçÛÎ&+&p  ÿÿ ÿïÐÎ&"&j µÿÿ ÿîÐÎ&"&j Êÿÿ ÿèìÎ&+&p ßÿÿ ÿèàÎ&"&m ôÿÿ ÿééÎ&"&j ÿÿ ÿçÔÎ&"&m ÿÿ ÿçÞÎ&"&j 3ÿÿ ÿçÞÎ&+&j Hÿÿ ÿëÐÎ&"&j ]ÿÿ ÿìÕÎ&+&p rÿÿ ÿíØÎ&"&j ‡ÿÿ ÿçÜÎ&+&j œÿÿÿëöÎ&sÿÿÿëöÎ& &y xÿÿÿëöÎ& &y ÿÿÿèöÎ& &y ¢ÿÿÿðöÎ&&v ·ÿÿÿêöÎ& &y ÌÿÿÿçöÎ&)& áÿÿÿïöÎ& &y öÿÿÿíöÎ&)& ÿÿÿëöÎ&)& ÿÿÿíöÎ&)& 5ÿÿÿíöÎ&)& JÿÿÿìöÎ&)& _ÿÿÿíöÎ&)& tÿÿÿíöÎ&)& ‰ÿÿÿçöÎ&)& žÿÿÿïöÎ& &y ³ÿÿÿîöÎ& &y ÈÿÿÿèöÎ&)& ÝÿÿÿèöÎ& &| òÿÿÿéöÎ& &y ÿÿÿçöÎ& &| ÿÿÿçöÎ& &y 1ÿÿÿçöÎ&)&y FÿÿÿëöÎ& &y [ÿÿÿìöÎ&)& pÿÿÿíöÎ& &y …ÿÿÿçöÎ&)&y šÿÿ ÿëÐÎ&‚ÿÿ ÿëÐÎ&"&ˆ zÿÿ ÿëÐÎ&"&ˆ ÿÿ ÿèìÎ&"&ˆ ¤ÿÿ ÿðÕÎ&&… ¹ÿÿ ÿéãÎ&"&ˆ Îÿÿ ÿçßÎ&+&Ž ãÿÿ ÿïÕÎ&"&ˆ øÿÿ ÿíÕÎ&+&Ž ÿÿ ÿëÐÎ&+&Ž "ÿÿ ÿíÐÎ&+&Ž 7ÿÿ ÿíÐÎ&+&Ž Lÿÿ ÿìéÎ&+&Ž aÿÿ ÿíÔÎ&+&Ž vÿÿ ÿíÕÎ&+&Ž ‹ÿÿ ÿçÛÎ&+&Ž  ÿÿ ÿïÐÎ&"&ˆ µÿÿ ÿîÐÎ&"&ˆ Êÿÿ ÿèìÎ&+&Ž ßÿÿ ÿèàÎ&"&‹ ôÿÿ ÿééÎ&"&ˆ ÿÿ ÿçÔÎ&"&‹ ÿÿ ÿçÞÎ&"&ˆ 3ÿÿ ÿçÞÎ&+&ˆ Hÿÿ ÿëÐÎ&"&ˆ ]ÿÿ ÿìÕÎ&+&Ž rÿÿ ÿíØÎ&"&ˆ ‡ÿÿ ÿçÜÎ&+&ˆ œÿÿ ÿëÐÎ&–ÿÿ ÿëÐÎ&!&© yÿÿ ÿëÐÎ&!&© Žÿÿ ÿèìÎ&!&© £ÿÿ ÿðÕÎ&&Ÿ ¸ÿÿ ÿéãÎ&!&© Íÿÿ ÿçßÎ&*&³ âÿÿ ÿïÕÎ&!&© ÷ÿÿ ÿíÕÎ&*&³ ÿÿ ÿëÐÎ&*&³ !ÿÿ ÿíÐÎ&*&³ 6ÿÿ ÿíÐÎ&*&³ Kÿÿ ÿìéÎ&*&³ `ÿÿ ÿíÔÎ&*&³ uÿÿ ÿíÕÎ&*&³ Šÿÿ ÿçÛÎ&*&³ Ÿÿÿ ÿïÐÎ&!&© ´ÿÿ ÿîÐÎ&!&© Éÿÿ ÿèìÎ&*&³ Þÿÿ ÿèãÎ&!&½ óÿÿ ÿééÎ&!&© ÿÿ ÿçÔÎ&!&½ ÿÿ ÿçÞÎ&!&© 2ÿÿ ÿçÞÎ&*&³ Gÿÿ ÿëÐÎ&!&© \ÿÿ ÿìÕÎ&*&³ qÿÿ ÿíØÎ&!&© †ÿÿ ÿçÖÎ&*&³ ›ÿÿ ÿëÐÎ&Æÿÿ ÿëÐÎ&"&Ù zÿÿ ÿëÐÎ&"&Ù ÿÿ ÿèìÎ&"&Ù ¤ÿÿ ÿðÕÎ&&Ï ¹ÿÿ ÿéãÎ&"&Ù Îÿÿ ÿçßÎ&+&ã ãÿÿ ÿïÕÎ&"&Ù øÿÿ ÿíÕÎ&+&ã ÿÿ ÿëÐÎ&+&ã "ÿÿ ÿíÐÎ&+&ã 7ÿÿ ÿíÐÎ&+&ã Lÿÿ ÿìéÎ&+&ã aÿÿ ÿíÔÎ&+&ã vÿÿ ÿíÕÎ&+&ã ‹ÿÿ ÿçÛÎ&+&ã  ÿÿ ÿïÐÎ&"&Ù µÿÿ ÿîÐÎ&"&Ù Êÿÿ ÿèìÎ&+&ã ßÿÿ ÿèàÎ&"&í ôÿÿ ÿééÎ&"&Ù ÿÿ ÿçÔÎ&"&í ÿÿ ÿçÞÎ&"&Ù 3ÿÿ ÿçÞÎ&+&ã Hÿÿ ÿëÐÎ&"&Ù ]ÿÿ ÿìÕÎ&+&ã rÿÿ ÿíØÎ&"&Ù ‡ÿÿ ÿçÜÎ&+&ã œÿÿ ÿëÐÎ&÷ÿÿ ÿëÐÎ&!&  yÿÿ ÿëÐÎ&!&  Žÿÿ ÿèìÎ&!&  £ÿÿ ÿðÕÎ&& ¸ ÿÿ ÿéãÎ&!&  Íÿÿ ÿçßÎ&*&  âÿÿ ÿïÕÎ&!&  ÷ÿÿ ÿíÕÎ&*&  ÿÿ ÿëÐÎ&*&  !ÿÿ ÿíÐÎ&*&  6ÿÿ ÿíÐÎ&*&  Kÿÿ ÿìéÎ&*&  `ÿÿ ÿíÔÎ&*&  uÿÿ ÿíÕÎ&*&  Šÿÿ ÿçÛÎ&*&  Ÿÿÿ ÿïÐÎ&!&  ´ÿÿ ÿîÐÎ&!&  Éÿÿ ÿèìÎ&*&  Þÿÿ ÿèãÎ&!&  óÿÿ ÿééÎ&!&  ÿÿ ÿçÔÎ& &! ÿÿ ÿçÞÎ&!&  2ÿÿ ÿçÞÎ&*&  Gÿÿ ÿëÐÎ&!&  \ÿÿ ÿìÕÎ&*&  qÿÿ ÿíØÎ&!&  †ÿÿ ÿçÖÎ&*&  ›ÿÿ ÿëÐÎ& &ÿÿ ÿëÐÎ&"& : zÿÿ ÿëÐÎ&"& : ÿÿ ÿèìÎ&"& : ¤ÿÿ ÿðÕÎ&& 0 ¹ÿÿ ÿéãÎ&"& : Îÿÿ ÿçßÎ&+& D ãÿÿ ÿïÕÎ&"& : øÿÿ ÿíÕÎ&+& D ÿÿ ÿëÐÎ&+& D "ÿÿ ÿíÐÎ&+& D 7ÿÿ ÿíÐÎ&+& D Lÿÿ ÿìéÎ&+& D aÿÿ ÿíÔÎ&+& D vÿÿ ÿíÕÎ&+& D ‹ÿÿ ÿçÛÎ&+& D  ÿÿ ÿïÐÎ&"& : µÿÿ ÿîÐÎ&"& : Êÿÿ ÿèìÎ&+& D ßÿÿ ÿèàÎ&"& N ôÿÿ ÿééÎ&"& : ÿÿ ÿçÔÎ&"& N ÿÿ ÿçÞÎ&"& : 3ÿÿ ÿçÞÎ&+& D Hÿÿ ÿëÐÎ&"& : ]ÿÿ ÿìÕÎ&+& D rÿÿ ÿíØÎ&"& : ‡ÿÿ ÿçÜÎ&+& D œÿÿ ê¾& WÿÿÿëêË&#& h {ÿÿÿëêË&#& h ÿÿÿêêË&#& h ¥ÿÿÿðêË&& ^ ºÿÿÿéêË&#& h ÏÿÿÿçêË&,& r äÿÿÿïêË&#& h ùÿÿÿíêË&,& r ÿÿÿëêË&,& r #ÿÿÿíêË&,& r 8ÿÿÿðêË&,& r MÿÿÿìêË&,& r bÿÿÿíêË&,& r wÿÿÿíêË&,& r ŒÿÿÿçêË&,& r ¡ÿÿÿïêË&#& h ¶ÿÿÿîêË&#& h ËÿÿÿèìË&,& r àÿÿÿèêË&#& { õÿÿÿéêË&#& h ÿÿÿçêË&#& { ÿÿÿçêË&#& h 4ÿÿÿçêË&,& r IÿÿÿëêË&#& h ^ÿÿÿìêË&,& r sÿÿÿíêË&#& h ˆÿÿÿçêË&,& r ÿÿÿëöÎ& …ÿÿÿëöÎ&%& ™ |ÿÿÿëöÎ&%& ™ ‘ÿÿÿêöÎ&%& ™ ¦ÿÿÿðöÎ&&  »ÿÿÿêöÎ&%& ™ ÐÿÿÿçöÎ&.& £ åÿÿÿïöÎ&%& ™ úÿÿÿíöÎ&.& £ ÿÿÿëöÎ&.& £ $ÿÿÿíöÎ&.& £ 9ÿÿÿíöÎ&.& £ NÿÿÿìöÎ&.& £ cÿÿÿîöÎ&.& £ xÿÿÿíöÎ&.& £ ÿÿÿçöÎ&.& £ ¢ÿÿÿïöÎ&%& ™ ·ÿÿÿîöÎ&%& ™ ÌÿÿÿèöÎ&.& £ áÿÿÿèöÎ&%& ­ öÿÿÿéöÎ&%& ™ ÿÿÿçöÎ&%& ­ ÿÿÿçöÎ&%& ™ 5ÿÿÿçöÎ&.& £ JÿÿÿëöÎ&%& ™ _ÿÿÿìöÎ&.& £ tÿÿÿíöÎ&%& ™ ‰ÿÿÿçöÎ&.& £ žÿÿÿëÐÎ& ·ÿÿÿëÐÎ&'& Ë |ÿÿÿëÐÎ&'& Ë ‘ÿÿÿêëÎ&'& Ë ¦ÿÿÿðÕÎ&& Á »ÿÿÿêãÎ&'& Ë ÐÿÿÿçßÎ&0& Õ åÿÿÿïÕÎ&'& Ë úÿÿÿíÕÎ&0& Õ ÿÿÿëÐÎ&0& Õ $ÿÿÿíÐÎ&0& Õ 9ÿÿÿíÐÎ&0& Õ NÿÿÿìéÎ&0& Õ cÿÿÿîÔÎ&0& Õ xÿÿÿíÕÎ&0& Õ ÿÿÿçÛÎ&0& Õ ¢ÿÿÿïÐÎ&'& Ë ·ÿÿÿîÐÎ&'& Ë ÌÿÿÿèéÎ&0& Õ áÿÿÿèãÎ&'& ß öÿÿÿééÎ&'& Ë ÿÿÿçÔÎ&'& ß ÿÿÿçâÎ&'& Ë 5ÿÿÿçâÎ&0& Õ JÿÿÿëÐÎ&'& Ë _ÿÿÿìÕÎ&0& Õ tÿÿÿíØÎ&'& Ë ‰ÿÿÿçÜÎ&0& Õ žÿÿÿëÐÎ& éÿÿÿëÐÎ&%& ü |ÿÿÿëÐÎ&%& ü ‘ÿÿÿêëÎ&%& ü ¦ÿÿÿðÕÎ&& ò »ÿÿÿêãÎ&%& ü ÐÿÿÿçßÎ&.&  åÿÿÿïÕÎ&%& ü úÿÿÿíÕÎ&.&  ÿÿÿëÐÎ&.&  $ÿÿÿíÐÎ&.&  9ÿÿÿíÐÎ&.&  NÿÿÿìéÎ&.&  cÿÿÿîÔÎ&.&  xÿÿÿíÕÎ&.&  ÿÿÿçÛÎ&.&  ¢ÿÿÿïÐÎ&%& ü ·ÿÿÿîÐÎ&%& ü ÌÿÿÿèéÎ&.&  áÿÿÿèãÎ&%&  öÿÿÿééÎ&%& ü ÿÿÿçÔÎ&%&  ÿÿÿçâÎ&%& ü 5ÿÿÿçâÎ&.&  JÿÿÿëÐÎ&%& ü _ÿÿÿìÕÎ&.&  tÿÿÿíØÎ&%& ü ‰ÿÿÿçÜÎ&.&  žÿÿ ë¾& ÿÿÿëëË&#& . {ÿÿÿëëË&#& . ÿÿÿêëË&#& . ¥ÿÿÿðëË&& $ ºÿÿÿéëË&#& . ÏÿÿÿçëË&,& 8 äÿÿÿïëË&#& . ùÿÿÿíëË&,& 8 ÿÿÿëëË&,& 8 #ÿÿÿíëË&,& 8 8ÿÿÿðëË&,& 8 MÿÿÿìëË&,& 8 bÿÿÿíëË&,& 8 wÿÿÿíëË&,& 8 ŒÿÿÿçëË&,& 8 ¡ÿÿÿïëË&#& . ¶ÿÿÿîëË&#& . ËÿÿÿèìË&,& 8 àÿÿÿèëË&#& B õÿÿÿéëË&#& . ÿÿÿçëË&#& B ÿÿÿçëË&#& . 4ÿÿÿçëË&,& 8 IÿÿÿëëË&#& . ^ÿÿÿìëË&,& 8 sÿÿÿíëË&#& . ˆÿÿÿçëË&,& 8 ÿÿÿëëË& KÿÿÿëëË&$& V {ÿÿÿëëË&$& V ÿÿÿêëË&$& V ¥ÿÿÿðëË&& Q ºÿÿÿéëË&$& V ÏÿÿÿçëË&-& k äÿÿÿïëË&$& V ùÿÿÿíëË&-& k ÿÿÿëëË&-& k #ÿÿÿíëË&-& k 8ÿÿÿðëË&-& k MÿÿÿìëË&-& k bÿÿÿíëË&-& k wÿÿÿíëË&-& k ŒÿÿÿçëË&-& k ¡ÿÿÿïëË&-& ¶ VÿÿÿîëË&$& V ËÿÿÿèìË&-& k àÿÿÿèëË&$& d õÿÿÿéëË&$& V ÿÿÿçëË&$& V ÿÿÿçëË&$& V 4ÿÿÿçëË&-& ] IÿÿÿëëË&$& V ^ÿÿÿìëË&-& k sÿÿÿíëË&$& V ˆÿÿÿçëË&-& ] ÿÿÿëÐÎ& rÿÿÿëÐÎ&&& € ~ÿÿÿëÐÎ&&& € “ÿÿÿêëÎ&&& € ¨ÿÿÿðÕÎ&& y ½ÿÿÿéãÎ&&& € ÒÿÿÿçßÎ&/& • çÿÿÿïÕÎ&&& € üÿÿÿíÕÎ&/& • ÿÿÿëÐÎ&/& • &ÿÿÿíÐÎ&/& • ;ÿÿÿíÐÎ&/& • PÿÿÿëéÎ&/& • eÿÿÿîÔÎ&/& • zÿÿÿíÖÎ&/& • ÿÿÿçÛÎ&/& • ¤ÿÿÿïÐÎ&&& € ¹ÿÿÿîÐÎ&&& € ÎÿÿÿêéÎ&/& • ãÿÿÿèãÎ&&& Ž øÿÿÿçéÎ&&& € ÿÿÿçÔÎ&&& Ž "ÿÿÿçÞÎ&&& € 7ÿÿÿíÞÎ&/& ‡ LÿÿÿëÐÎ&&& € aÿÿÿìÕÎ&/& • vÿÿÿíØÎ&&& € ‹ÿÿÿçÜÎ&/& ‡  ÿÿÿëÐÎ& œÿÿÿëÐÎ&(& ª ~ÿÿÿëÐÎ&(& ª “ÿÿÿêëÎ&(& ª ¨ÿÿÿðÕÎ&& £ ½ÿÿÿéãÎ&(& ª ÒÿÿÿçßÎ&1& ¿ çÿÿÿïÕÎ&(& ª üÿÿÿíÕÎ&1& ¿ ÿÿÿëÐÎ&1& ¿ &ÿÿÿíÐÎ&1& ¿ ;ÿÿÿíÐÎ&1& ¿ PÿÿÿëéÎ&1& ¿ eÿÿÿîÔÎ&1& ¿ zÿÿÿíÖÎ&1& ¿ ÿÿÿçÛÎ&1& ¿ ¤ÿÿÿïÐÎ&(& ª ¹ÿÿÿîÐÎ&(& ª ÎÿÿÿêéÎ&1& ¿ ãÿÿÿèãÎ&(& ¸ øÿÿÿçéÎ&(& ª ÿÿÿçÔÎ&(& ¸ "ÿÿÿçÞÎ&(& ª 7ÿÿÿíÞÎ&1& ± LÿÿÿëÐÎ&(& ª aÿÿÿìÕÎ&1& ¿ vÿÿÿíØÎ&(& ª ‹ÿÿÿçÜÎ&1& ±  ÿÿÿëÐÎ& ÆÿÿÿëÐÎ&&& Ô }ÿÿÿëÐÎ&&& Ô ’ÿÿÿêëÎ&&& Ô §ÿÿÿðÕÎ&& Í ¼ÿÿÿéãÎ&&& Ô ÑÿÿÿçßÎ&/& é æÿÿÿïÕÎ&&& Ô ûÿÿÿíÕÎ&/& é ÿÿÿëÐÎ&/& é %ÿÿÿíÐÎ&/& é :ÿÿÿíÐÎ&/& é OÿÿÿëèÎ&/& é dÿÿÿîÔÎ&/& é yÿÿÿíÖÎ&/& é ŽÿÿÿçÛÎ&/& é £ÿÿÿïÐÎ&&& Ô ¸ÿÿÿîÐÎ&&& Ô ÍÿÿÿêéÎ&/& é âÿÿÿèãÎ&&& â ÷ÿÿÿçéÎ&&& Ô ÿÿÿçÔÎ&&& â !ÿÿÿçÞÎ&&& Ô 6ÿÿÿçÞÎ&/& Û KÿÿÿëÐÎ&&& Ô `ÿÿÿìÕÎ&/& é uÿÿÿíØÎ&&& Ô ŠÿÿÿçÖÎ&/& Û ŸÿÿÿíëË& ðÿÿÿëëË&$& þ {ÿÿÿëëË&$& þ ÿÿÿêëË&$& þ ¥ÿÿÿðëË&& ÷ ºÿÿÿéëË&$& þ ÏÿÿÿçëË&-&  äÿÿÿïëË&$& þ ùÿÿÿíëË&-&  ÿÿÿëëË&-&  #ÿÿÿíëË&-&  8ÿÿÿðëË&-&  MÿÿÿìëË&-&  bÿÿÿíëË&-&  wÿÿÿíëË&-&  ŒÿÿÿçëË&-&  ¡ÿÿÿïëË&$& þ ¶ÿÿÿîëË&$& þ ËÿÿÿèìË&-&  àÿÿÿèëË&$&  õÿÿÿéëË&$& þ ÿÿÿçëË&$&  ÿÿÿçëË&$& þ 4ÿÿÿçëË&-&  IÿÿÿëëË&$& þ ^ÿÿÿìëË&-&  sÿÿÿíëË&$& þ ˆÿÿÿçëË&-&  ÿÿ ë¾& ÿÿÿëëË&#& ' {ÿÿÿëëË&#& ' ÿÿÿêëË&#& ' ¥ÿÿÿðëË&&  ºÿÿÿéëË&#& ' ÏÿÿÿçëË&,& < äÿÿÿïëË&#& ' ùÿÿÿíëË&,& < ÿÿÿëëË&,& < #ÿÿÿíëË&,& < 8ÿÿÿðëË&,& < MÿÿÿìëË&,& < bÿÿÿíëË&,& < wÿÿÿíëË&,& < ŒÿÿÿçëË&,& < ¡ÿÿÿïëË&#& ' ¶ÿÿÿîëË&#& ' ËÿÿÿèìË&,& < àÿÿÿèëË&#& 5 õÿÿÿéëË&#& ' ÿÿÿçëË&#& 5 ÿÿÿçëË&#& ' 4ÿÿÿçëË&,& . IÿÿÿëëË&#& ' ^ÿÿÿìëË&,& < sÿÿÿíëË&#& ' ˆÿÿÿçëË&,& . ÿÿÿëÐÎ& CÿÿÿëÐÎ&%& P |ÿÿÿëÐÎ&%& P ‘ÿÿÿêëÎ&%& P ¦ÿÿÿðÕÎ&& I »ÿÿÿêãÎ&%& P ÐÿÿÿçßÎ&.& e åÿÿÿïÕÎ&%& P úÿÿÿíÕÎ&.& e ÿÿÿëÐÎ&.& e $ÿÿÿíÐÎ&.& e 9ÿÿÿíÐÎ&.& e NÿÿÿìéÎ&.& e cÿÿÿîÔÎ&.& e xÿÿÿíÕÎ&.& e ÿÿÿçÛÎ&.& e ¢ÿÿÿïÐÎ&%& P ·ÿÿÿîÐÎ&%& P ÌÿÿÿèéÎ&.& e áÿÿÿèãÎ&%& ^ öÿÿÿééÎ&%& P ÿÿÿçÔÎ&%& ^ ÿÿÿçâÎ&%& P 5ÿÿÿçâÎ&.& W JÿÿÿëÐÎ&%& P _ÿÿÿìÕÎ&.& e tÿÿÿíØÎ&%& P ‰ÿÿÿçÜÎ&.& W žÿÿ ÿëÐÎ& iÿÿÿëÐÎ& & o yÿÿÿëÐÎ& & o ŽÿÿÿèìÎ& & o £ÿÿÿðÕÎ&& l ¸ÿÿÿéãÎ& & o ÍÿÿÿçßÎ&)& u âÿÿÿïÕÎ& & o ÷ÿÿÿíÕÎ&)&  uÿÿÿëÐÎ&)& u !ÿÿÿíÐÎ&)& u 6ÿÿÿíÐÎ&)& u KÿÿÿìéÎ&)& u `ÿÿÿíÔÎ&)& u uÿÿÿíÕÎ&)& u ŠÿÿÿçÛÎ&)& u ŸÿÿÿïÐÎ& & o ´ÿÿÿîÐÎ& & o ÉÿÿÿèìÎ&)& u ÞÿÿÿèãÎ& & r óÿÿÿééÎ& & o ÿÿÿçÔÎ& & r ÿÿÿçÞÎ& & o 2ÿÿÿçÞÎ&)& o GÿÿÿëÐÎ& & o \ÿÿÿìÕÎ&)& u qÿÿÿíØÎ& & o †ÿÿÿçÖÎ&)& o ›ÿÿÿëöÎ&U2ÿÿÿëõÎ&C&[ xÿÿÿëõÎ&C&[ ‘ÿÿÿêõÎ&C&[ ¦ÿÿÿðöÎ&;& »XÿÿÿêõÎ&C&[ ÐÿÿÿçõÎ&L&a åÿÿÿïõÎ&C&[ úÿÿÿíõÎ&a&L ÿÿÿëõÎ&L&a $ÿÿÿíõÎ&L&a 9ÿÿÿíõÎ&L&a NÿÿÿìõÎ&L&a cÿÿÿîõÎ&L&a xÿÿÿíõÎ&L&a ÿÿÿçõÎ&L&a ¢ÿÿÿïõÎ&\&C ·ÿÿÿîõÎ&C&\ ÈÿÿÿèõÎ&L&a áÿÿÿèöÎ&C&^ öÿÿÿéõÎ&C&[ ÿÿÿçöÎ&C&^ *ÿÿÿçõÎ&C&[ 5ÿÿÿçõÎ&L&[ JÿÿÿëõÎ&C&[ _ÿÿÿìõÎ&L&a tÿÿÿíõÎ&C&[ ‰ÿÿÿçõÎ&L&[ žÿÿÿëÐÎ&4dÿÿÿëÐÎ&j&E zÿÿÿëÐÎ&E&j “ÿÿÿêëÎ&E&j ¨ÿÿÿðÕÎ&g& ¹<ÿÿÿéãÎ&E&j ÒÿÿÿçßÎ&N&p çÿÿÿïÕÎ&E&j üÿÿÿíÕÎ&N&p ÿÿÿëÐÎ&N&p &ÿÿÿíÐÎ&N&p ;ÿÿÿíÐÎ&N&p PÿÿÿëéÎ&N&p eÿÿÿîÔÎ&N&p zÿÿÿíÖÎ&N&p ÿÿÿçÛÎ&N&p ¤ÿÿÿïÐÎ&E&j ¹ÿÿÿîÐÎ&E&j ÎÿÿÿêéÎ&N&p ãÿÿÿèãÎ&E&m øÿÿÿçéÎ&p&E ÿÿÿçÔÎ& "&EmÿÿÿçÞÎ&E&j 7ÿÿÿíÞÎ&N&j LÿÿÿëÐÎ&E&j aÿÿÿìÕÎ&N&p vÿÿÿíØÎ&E&j ‹ÿÿÿçÜÎ&N&j  ÿÿÿëöÎ&2sÿÿÿëöÎ&C&y |ÿÿÿëöÎ&C&y ‘ÿÿÿêöÎ&C&y ¦ÿÿÿðöÎ&;&v »ÿÿÿêöÎ&C&y ÐÿÿÿçöÎ&L& åÿÿÿïöÎ&C&y úÿÿÿíöÎ&L& ÿÿÿëöÎ&L& $ÿÿÿíöÎ&L& 9ÿÿÿíöÎ&L& NÿÿÿìöÎ&L& cÿÿÿîöÎ&L& xÿÿÿíöÎ&L& ÿÿÿçöÎ&L& ¢ÿÿÿïöÎ&C&y ·ÿÿÿîöÎ&C&y ÌÿÿÿèöÎ&L& áÿÿÿèöÎ&C&| öÿÿÿéöÎ&C&y ÿÿÿçöÎ&C& !|ÿÿÿçöÎ&C&y 5ÿÿÿçöÎ&L&y JÿÿÿëöÎ&C&y _ÿÿÿìöÎ&L& tÿÿÿíöÎ&C&y ‰ÿÿÿçöÎ&L&y žÿÿÿëÐÎ&4‚ÿÿÿëÐÎ&E&ˆ ~ÿÿÿëÐÎ&E&ˆ “ÿÿÿêëÎ&E&ˆ ¨ÿÿÿðÕÎ&<&… ½ÿÿÿéãÎ&E&ˆ ÒÿÿÿçßÎ&N&Ž çÿÿÿïÕÎ&E&ˆ üÿÿÿíÕÎ&N&Ž ÿÿÿëÐÎ&N&Ž &ÿÿÿíÐÎ&N&Ž ;ÿÿÿíÐÎ&N&Ž PÿÿÿëéÎ&N&Ž eÿÿÿîÔÎ&N&Ž zÿÿÿíÖÎ&N&Ž ÿÿÿçÛÎ&N&Ž ¤ÿÿÿïÐÎ&E&ˆ ¹ÿÿÿîÐÎ&E&ˆ ÎÿÿÿêéÎ&N&Ž ãÿÿÿèãÎ&E&‹ øÿÿÿçéÎ&E&ˆ ÿÿÿçÔÎ&E&‹ "ÿÿÿçÞÎ&E&ˆ 7ÿÿÿíÞÎ&N&ˆ LÿÿÿëÐÎ&E&ˆ aÿÿÿìÕÎ&N&Ž vÿÿÿíØÎ&E&ˆ ‹ÿÿÿçÜÎ&N&ˆ  ÿÿÿëÐÎ&3—ÿÿÿëÐÎ&D&ª }ÿÿÿëÐÎ&D&ª ’ÿÿÿêëÎ&D&ª §ÿÿÿðÕÎ&;&£ ¸ÿÿÿéãÎ&D&ª ÑÿÿÿçßÎ&M&´ æÿÿÿïÕÎ&D&ª ûÿÿÿíÕÎ&M&´ ÿÿÿëÐÎ&M&´ %ÿÿÿíÐÎ&M&´ :ÿÿÿíÐÎ&M&´ OÿÿÿëèÎ&M&´ dÿÿÿîÔÎ&M&´ yÿÿÿíÖÎ&M&´ ŽÿÿÿçÛÎ&M&´ £ÿÿÿïÐÎ&M&ª ´ÿÿÿîÐÎ&D&ª ÍÿÿÿêéÎ&M&´ âÿÿÿèãÎ& ö&¾DÿÿÿçéÎ&D&ª ÿÿÿçÔÎ&D&¾ !ÿÿÿçÞÎ&D&ª 6ÿÿÿçÞÎ&M&´ KÿÿÿëÐÎ&D&ª `ÿÿÿìÕÎ&M&´ uÿÿÿíØÎ&D&ª ŠÿÿÿçÖÎ&M&´ ŸÿÿÿëÐÎ&4ÇÿÿÿëÐÎ&E&Ú ~ÿÿÿëÐÎ&E&Ú “ÿÿÿêëÎ&E&Ú ¨ÿÿÿðÕÎ&<&Ð ½ÿÿÿéãÎ&E&Ú ÒÿÿÿçßÎ&N&ä çÿÿÿïÕÎ&E&Ú üÿÿÿíÕÎ&N&ä ÿÿÿëÐÎ&N&ä &ÿÿÿíÐÎ&N&ä ;ÿÿÿíÐÎ&N&ä PÿÿÿëéÎ&N&ä eÿÿÿîÔÎ&N&ä zÿÿÿíÖÎ&N&ä ÿÿÿçÛÎ&N&ä ¤ÿÿÿïÐÎ&E&Ú ¹ÿÿÿîÐÎ&E&Ú ÎÿÿÿêéÎ&N&ä ãÿÿÿèãÎ&E&î øÿÿÿçéÎ&E&Ú ÿÿÿçÔÎ&E&î "ÿÿÿçÞÎ&E&Ú 7ÿÿÿíÞÎ&N&ä LÿÿÿëÐÎ&E&Ú aÿÿÿìÕÎ&N&ä vÿÿÿíØÎ&E&Ú ‹ÿÿÿçÜÎ&N&ä  ÿÿÿëÐÎ&3øÿÿÿëÐÎ&D&  }ÿÿÿëÐÎ&D&  ’ÿÿÿêëÎ&D&  §ÿÿÿðÕÎ&;& » ÿÿÿéãÎ&D&  ÑÿÿÿçßÎ&M&  æÿÿÿïÕÎ&D&  ûÿÿÿíÕÎ&M&  ÿÿÿëÐÎ&M&  %ÿÿÿíÐÎ&M&  :ÿÿÿíÐÎ&M&  OÿÿÿëèÎ&M&  dÿÿÿîÔÎ&M&  yÿÿÿíÖÎ&M&  ŽÿÿÿçÛÎ&M&  £ÿÿÿïÐÎ&D&  ¸ÿÿÿîÐÎ& &D ÍÿÿÿêéÎ&M&  âÿÿÿèãÎ&D&  ÷ÿÿÿçéÎ&D&  ÿÿÿçÔÎ& &C ÿÿÿçÞÎ&D&  6ÿÿÿçÞÎ&M&  KÿÿÿëÐÎ&D&  `ÿÿÿìÕÎ&M&  uÿÿÿíØÎ&D&  ŠÿÿÿçÖÎ&M&  ŸÿÿÿëÐÎ&4 'ÿÿÿëÐÎ&E& ; ~ÿÿÿëÐÎ&E& ; “ÿÿÿêëÎ&E& ; ¨ÿÿÿðÕÎ&<& 1 ½ÿÿÿéãÎ&E& ; ÒÿÿÿçßÎ&N& E çÿÿÿïÕÎ&E& ; üÿÿÿíÕÎ&N& E ÿÿÿëÐÎ&N& E &ÿÿÿíÐÎ&N& E ;ÿÿÿíÐÎ&N& E PÿÿÿëéÎ&N& E eÿÿÿîÔÎ&N& E zÿÿÿíÖÎ&N& E ÿÿÿçÛÎ&N& E ¤ÿÿÿïÐÎ&E& ; ¹ÿÿÿîÐÎ&E& ; ÎÿÿÿêéÎ&N& E ãÿÿÿèãÎ&E& O øÿÿÿçéÎ&E& ; ÿÿÿçÔÎ&E& O "ÿÿÿçÞÎ&E& ; 7ÿÿÿíÞÎ&N& E LÿÿÿëÐÎ&E& ; aÿÿÿìÕÎ&N& E vÿÿÿíØÎ&E& ; ‹ÿÿÿçÜÎ&N& E  ÿÿ êÅ&5 XÿÿÿëêÏ&F& j ÿÿÿëêÏ&F& j ”ÿÿÿêêÏ&F& j ©ÿÿÿðêÏ&=& ` ¾ÿÿÿéêÏ&F& j ÓÿÿÿçêÏ&O& t èÿÿÿïêÏ&F& j ýÿÿÿíêÏ&O&  tÿÿÿëêÏ&O& t 'ÿÿÿîêÏ&O& t <ÿÿÿîêÏ&O& t QÿÿÿìêÏ&O& t fÿÿÿîêÏ&O& t {ÿÿÿìêÏ&O& t ÿÿÿçêÏ&O& t ¥ÿÿÿïêÏ&F& j ºÿÿÿîêÏ&F& j ÏÿÿÿêêÏ&O& t äÿÿÿèêÏ&F& } ùÿÿÿéêÏ&F& j ÿÿÿçêÏ&F& } #ÿÿÿçêÏ&F& j 8ÿÿÿçêÏ&O& t MÿÿÿëêÏ&F& j bÿÿÿíêÏ&O& t wÿÿÿíêÏ&F& j ŒÿÿÿçêÏ&O& t ¡ÿÿÿëöÎ& ‡7ÿÿÿëöÎ&H& › €ÿÿÿëöÎ&H& › •ÿÿÿêöÎ&H& › ªÿÿÿðöÎ&?& ¿ ‘ÿÿÿéöÎ&H& › ÔÿÿÿçöÎ&Q& ¥ éÿÿÿïöÎ&H& › þÿÿÿíöÎ& ›& QÿÿÿëöÎ&Q& ¥ (ÿÿÿíöÎ&Q& ¥ =ÿÿÿíöÎ&Q& ¥ RÿÿÿìöÎ&Q& ¥ gÿÿÿîöÎ&Q& ¥ |ÿÿÿîöÎ&Q& ¥ ‘ÿÿÿçöÎ&Q& ¥ ¦ÿÿÿïöÎ&H& › »ÿÿÿîöÎ&H& › ÐÿÿÿêöÎ&Q& ¥ åÿÿÿèöÎ&H& ¯ úÿÿÿéöÎ&H& › ÿÿÿçöÎ&H& ¯ $ÿÿÿçöÎ&H& › 9ÿÿÿçöÎ&Q& ¥ NÿÿÿëöÎ&H& › cÿÿÿíöÎ&Q& ¥ xÿÿÿíöÎ&H& › ÿÿÿçöÎ&Q& ¥ ¢ÿÿÿëÐÎ&9 ¹ÿÿÿëÐÎ&J& Í €ÿÿÿëÐÎ&J& Í •ÿÿÿêëÎ&J& Í ªÿÿÿðÕÎ&A& à ¿ÿÿÿéãÎ&J& Í ÔÿÿÿçßÎ&S& × éÿÿÿïÕÎ&J& Í þÿÿÿíÕÎ&S& × ÿÿÿëÐÎ&S& × (ÿÿÿíÐÎ&S& × =ÿÿÿíÐÎ&S& × RÿÿÿìéÎ&S& × gÿÿÿîÔÎ&S& × |ÿÿÿîÖÎ&S& × ‘ÿÿÿçÛÎ&S& × ¦ÿÿÿïÐÎ&J& Í »ÿÿÿîÐÎ&J& Í ÐÿÿÿêéÎ&S& × åÿÿÿèãÎ&J& á úÿÿÿééÎ&J& Í ÿÿÿçÔÎ&J& á $ÿÿÿçâÎ&J& Í 9ÿÿÿçáÎ&S& × NÿÿÿëÐÎ&J& Í cÿÿÿíÕÎ&S& × xÿÿÿíØÎ&J& Í ÿÿÿçÜÎ&S& × ¢ÿÿÿëÐÎ& ê7ÿÿÿëÐÎ&H& þ €ÿÿÿëÐÎ&H& þ •ÿÿÿêëÎ&H& þ ªÿÿÿðÕÎ&?& ô ¿ÿÿÿéãÎ&H& þ ÔÿÿÿçßÎ&Q&  éÿÿÿïÕÎ&H& þ þÿÿÿíÕÎ&Q&  ÿÿÿëÐÎ&Q&  (ÿÿÿíÐÎ&Q&  =ÿÿÿíÐÎ&Q&  RÿÿÿìéÎ&Q&  gÿÿÿîÔÎ&Q&  |ÿÿÿîÖÎ&Q&  ‘ÿÿÿçÛÎ&Q&  ¦ÿÿÿïÐÎ&H& þ »ÿÿÿîÐÎ&H& þ ÐÿÿÿêéÎ&Q&  åÿÿÿèãÎ&H&  úÿÿÿééÎ&H& þ ÿÿÿçÔÎ&H&  $ÿÿÿçâÎ&H& þ 9ÿÿÿçáÎ&Q&  NÿÿÿëÐÎ&H& þ cÿÿÿíÕÎ&Q&  xÿÿÿíØÎ&H& þ ÿÿÿçÜÎ&Q&  ¢ÿÿ ëÅ&5 ÿÿÿëëÏ&F& 0 ÿÿÿëëÏ&F& 0 ”ÿÿÿêëÏ&F& 0 ©ÿÿÿðëÏ&=& & ¾ÿÿÿéëÏ&F& 0 ÓÿÿÿçëÏ&O& : èÿÿÿïëÏ&F& 0 ýÿÿÿíëÏ&O& : ÿÿÿëëÏ&O& : 'ÿÿÿîëÏ&O& : <ÿÿÿîëÏ&O& : QÿÿÿìëÏ&O& : fÿÿÿîëÏ&O& : {ÿÿÿìëÏ&O& : ÿÿÿçëÏ&O& : ¥ÿÿÿïëÏ&F& 0 ºÿÿÿîëÏ&F& 0 ÏÿÿÿêëÏ&O& : äÿÿÿèëÏ&F& D ùÿÿÿéëÏ&F& 0 ÿÿÿçëÏ&F& D #ÿÿÿçëÏ&F& 0 8ÿÿÿçëÏ&O& : MÿÿÿëëÏ&F& 0 bÿÿÿíëÏ&O& : wÿÿÿíëÏ&F& 0 ŒÿÿÿçëÏ&O& : ¡ÿÿÿëëÏ&6 MÿÿÿëëÏ&G& W ÿÿÿëëÏ&G& W ”ÿÿÿêëÏ&G& W ©ÿÿÿðëÏ&>& R ºÿÿÿéëÏ&G& W ÓÿÿÿçëÏ&P& l èÿÿÿïëÏ&G& W ýÿÿÿíëÏ&P& l ÿÿÿëëÏ&P& l 'ÿÿÿîëÏ&P& l <ÿÿÿîëÏ&P& l QÿÿÿìëÏ&P& l fÿÿÿîëÏ&P& l {ÿÿÿìëÏ&P& l ÿÿÿçëÏ&P& l ¥ÿÿÿïëÏ&G& W ºÿÿÿîëÏ&G& W ÏÿÿÿêëÏ&P& l äÿÿÿèëÏ&G& e ùÿÿÿéëÏ&G& W ÿÿÿçëÏ&G& W #ÿÿÿçëÏ&G& W 8ÿÿÿçëÏ&P& ^ MÿÿÿëëÏ&G& W bÿÿÿíëÏ&P& l wÿÿÿíëÏ&G& W ŒÿÿÿçëÏ&P& ^ ¡ÿÿÿëÐÎ&8 sÿÿÿëÐÎ&I&  ‚ÿÿÿëÐÎ&I&  —ÿÿÿêëÎ&I&  ¬ÿÿÿðÕÎ&@& z ÁÿÿÿéãÎ&I&  ÖÿÿÿçßÎ&R& – ëÿÿÿïÕÎ&I&  ÿÿÿíÕÎ&R& – ÿÿÿëÐÎ&R& – *ÿÿÿíÐÎ&R& – ?ÿÿÿíÐÎ&R& – TÿÿÿìéÎ&R& – iÿÿÿîÔÎ&R& – ~ÿÿÿîÖÎ&R& – “ÿÿÿçÛÎ&R& – ¨ÿÿÿïÐÎ&I&  ½ÿÿÿîÐÎ&I&  ÒÿÿÿêéÎ&R& – çÿÿÿèãÎ&I&  üÿÿÿééÎ&I&  ÿÿÿçÔÎ&I&  &ÿÿÿçÞÎ&I&  ;ÿÿÿçÞÎ&R& ˆ PÿÿÿëÐÎ&I&  eÿÿÿíÕÎ&R& – zÿÿÿíØÎ&I&  ÿÿÿçÜÎ&R& ˆ ¤ÿÿÿëÐÎ&: ÿÿÿëÐÎ&K& « ‚ÿÿÿëÐÎ&K& « —ÿÿÿêëÎ&K& « ¬ÿÿÿðÕÎ&B& ¤ ÁÿÿÿéãÎ&K& « ÖÿÿÿçßÎ&T& À ëÿÿÿïÕÎ&K& « ÿÿÿíÕÎ&T& À ÿÿÿëÐÎ&T& À *ÿÿÿíÐÎ&T& À ?ÿÿÿíÐÎ&T& À TÿÿÿìéÎ&T& À iÿÿÿîÔÎ&T& À ~ÿÿÿîÖÎ&T& À “ÿÿÿçÛÎ&T& À ¨ÿÿÿïÐÎ&K& « ½ÿÿÿîÐÎ&K& « ÒÿÿÿêéÎ&T& À çÿÿÿèãÎ&K& ¹ üÿÿÿééÎ&K& « ÿÿÿçÔÎ&K& ¹ &ÿÿÿçÞÎ&K& « ;ÿÿÿçÞÎ&T& ² PÿÿÿëÐÎ&K& « eÿÿÿíÕÎ&T& À zÿÿÿíØÎ&K& « ÿÿÿçÜÎ&T& ² ¤ÿÿÿëÐÎ&8 ÇÿÿÿëÐÎ&I& Õ ÿÿÿëÐÎ&I& Õ –ÿÿÿêëÎ&I& Õ «ÿÿÿðÕÎ&@& Î ÀÿÿÿéãÎ&I& Õ ÕÿÿÿçßÎ&R& ê êÿÿÿïÕÎ&I& Õ ÿÿÿÿíÕÎ&R& ê ÿÿÿëÐÎ&R& ê )ÿÿÿíÐÎ&R& ê >ÿÿÿíÐÎ&R& ê SÿÿÿëéÎ&R& ê hÿÿÿîÔÎ&R& ê }ÿÿÿîÖÎ&R& ê ’ÿÿÿçÛÎ&R& ê §ÿÿÿïÐÎ&I& Õ ¼ÿÿÿîÐÎ&I& Õ ÑÿÿÿêéÎ&R& ê æÿÿÿèãÎ&I& ã ûÿÿÿééÎ&I& Õ ÿÿÿçÔÎ&I& ã %ÿÿÿçÞÎ&I& Õ :ÿÿÿçÞÎ&R& Ü OÿÿÿëÐÎ&I& Õ dÿÿÿíÕÎ&R& ê yÿÿÿíØÎ&I& Õ ŽÿÿÿçÖÎ&R& Ü £ÿÿÿíëÏ&6 ñÿÿÿëëÏ&G& ÿ ÿÿÿëëÏ&G& ÿ ”ÿÿÿêëÏ&G& ÿ ©ÿÿÿðëÏ&>& ø ¾ÿÿÿéëÏ&G& ÿ ÓÿÿÿçëÏ&P&  èÿÿÿïëÏ&G& ÿ ýÿÿÿíëÏ&P&  ÿÿÿëëÏ&P&  'ÿÿÿîëÏ&P&  <ÿÿÿîëÏ&P&  QÿÿÿìëÏ&P&  fÿÿÿîëÏ&P&  {ÿÿÿìëÏ&P&  ÿÿÿçëÏ&P&  ¥ÿÿÿïëÏ&G& ÿ ºÿÿÿîëÏ&G& ÿ ÏÿÿÿêëÏ&P&  äÿÿÿèëÏ&G&  ùÿÿÿéëÏ&G& ÿ ÿÿÿçëÏ&G&  #ÿÿÿçëÏ&G& ÿ 8ÿÿÿçëÏ&P&  MÿÿÿëëÏ&G& ÿ bÿÿÿíëÏ&P&  wÿÿÿíëÏ&G& ÿ ŒÿÿÿçëÏ&P&  ¡ÿÿ ëÅ&5 ÿÿÿëëÏ&F& ( ÿÿÿëëÏ&F& ( ”ÿÿÿêëÏ&F& ( ©ÿÿÿðëÏ&=& ! ¾ÿÿÿéëÏ&F& ( ÓÿÿÿçëÏ&O& = èÿÿÿïëÏ&F& ( ýÿÿÿíëÏ&O& = ÿÿÿëëÏ&O& = 'ÿÿÿîëÏ&O& = <ÿÿÿîëÏ&O& = QÿÿÿìëÏ&O& = fÿÿÿîëÏ&O& = {ÿÿÿìëÏ&O& = ÿÿÿçëÏ&O& = ¥ÿÿÿïëÏ&F& ( ºÿÿÿîëÏ&F& ( ÏÿÿÿêëÏ&O& = äÿÿÿèëÏ&F& 6 ùÿÿÿéëÏ&F& ( ÿÿÿçëÏ&F& 6 #ÿÿÿçëÏ&F& ( 8ÿÿÿçëÏ&O& / MÿÿÿëëÏ&F& ( bÿÿÿíëÏ&O& = wÿÿÿíëÏ&F& ( ŒÿÿÿçëÏ&O& / ¡ÿÿÿëÐÎ& E7ÿÿÿëÐÎ&H& Q €ÿÿÿëÐÎ&H& Q •ÿÿÿêëÎ&H& Q ªÿÿÿðÕÎ&?& J ¿ÿÿÿéãÎ&H& Q ÔÿÿÿçßÎ&Q& f éÿÿÿïÕÎ&H& Q þÿÿÿíÕÎ&Q& f ÿÿÿëÐÎ&Q& f (ÿÿÿíÐÎ&Q& f =ÿÿÿíÐÎ&Q& f RÿÿÿìéÎ&Q& f gÿÿÿîÔÎ&Q& f |ÿÿÿîÖÎ&Q& f ‘ÿÿÿçÛÎ&Q& f ¦ÿÿÿïÐÎ&H& Q »ÿÿÿîÐÎ&H& Q ÐÿÿÿêéÎ&Q& f åÿÿÿèãÎ&H& _ úÿÿÿééÎ&H& Q ÿÿÿçÔÎ&H& _ $ÿÿÿçâÎ&H& Q 9ÿÿÿçáÎ&Q& X NÿÿÿëÐÎ&H& Q cÿÿÿíÕÎ&Q& f xÿÿÿíØÎ&H& Q ÿÿÿçÜÎ&Q& X ¢ÿÿÿëÐÎ&3 iÿÿÿëÐÎ&C& o }ÿÿÿëÐÎ&C& o ’ÿÿÿêëÎ&C& o §ÿÿÿðÕÎ&;& l ¼ÿÿÿéãÎ&C& o ÑÿÿÿçßÎ&L& u æÿÿÿïÕÎ&C& o ûÿÿÿíÕÎ& u&M ÿÿÿëÐÎ&L& u %ÿÿÿíÐÎ&L& u :ÿÿÿíÐÎ&L& u OÿÿÿëèÎ&L& u dÿÿÿîÔÎ&L& u yÿÿÿíÖÎ&L& u ŽÿÿÿçÛÎ&L& u £ÿÿÿïÐÎ&M& ´ oÿÿÿîÐÎ&C& o ÍÿÿÿêéÎ&L& u âÿÿÿèãÎ&C& r ÷ÿÿÿçéÎ&C& o ÿÿÿçÔÎ&C& r !ÿÿÿçÞÎ&C& o 6ÿÿÿçÞÎ&L& o KÿÿÿëÐÎ&C& o `ÿÿÿìÕÎ&L& u uÿÿÿíØÎ&C& o ŠÿÿÿçÖÎ&L& o ŸÿÿÿîïÏ&eªÿÿÿèîÊ&*?Æÿÿ ÿéìÍ& ²?Çÿÿ ÿéóÏ& ?ÌÿÿÿèïÏ&*+& ± ÿÿ ÿéôÐ&¾?Îÿÿ ÿçõÏ&<& ª?Ïÿÿ ÿéïÊ&?ÑÿÿÿèñÏ&n&s?ÒÿÿÿêôÑ&L?Óÿÿ ÿèôÑ&Ø?Öÿÿ ÿéõÐ& ²aÿÿ ÿéõÐ&\% ÿÿ ÿéõÐ&\ÿÿ ÿçöÏ&Ñ&r?×ÿÿ ÿèôÐ&…?ØÿÿÿéôÐ&æ…ÿÿÿéõÒ&—?ÙÿÿÿéíÏ&-Á0²ÿÿ ÿéíÏ&-Á.ùÿÿÿèñÏ&n-Âÿÿ ÿèðÒ& ?Ûÿÿ ÿéöÏ&Œ?Üÿÿ ÿèóÏ&-Ã.ôÿÿ ÿîóÏ&n& ù?Ýÿÿ ÿèôÐ&-Ä?Þÿÿ ÿéóÏ&?ßÿÿ ÿè÷Ò&3-Åÿÿ ÿè÷Ò&-ÅÿÿÿéêÎ&°-Èÿÿ ÿè÷Ï& ²-Æÿÿ ÿèöÐ&o-ÇÿÿÿéðÏ&?áÿÿÿê÷Ñ&±?ãÿÿÿçîÐ&å?äÿÿ ÿéóÐ&.7?åÿÿÿéöÒ&)ø0²ÿÿ ÿêõÐ&Ë?æÿÿ ÿíòÏ&ž?èÿÿ ÿéõÐ&Š‹ÿÿ ÿéõÌ& À?êÿÿ ÿéóÑ&@?ëÿÿ ÿèòÑ&P?ìÿÿÿéóÏ&C?íÿÿÿëôÏ&Ñ?ðÿÿ ÿéøÏ& ?óÿÿ ÿìõÐ&$?ôÿÿ ÿçóÃ&M?õÿÿÿé÷Ñ&Ì?öÿÿÿêöÐ&-¤?÷ÿÿ ÿêîÇ&0œ?ùÿÿ ÿéõÐ&ÈÿÿÿèïË& ¼+#ÿÿ ÿìóÈ&„&$?úÿÿ ÿèñÊ&E?ûÿÿ ÿçôÐ& 1ÿÿ ÿçôÐ&.ô?üÿÿ ÿèðË&.ô?ýÿÿ ÿçõÏ&0›?ÿÿÿÿéòÆ&@ÿÿ ÿéîÏ& ï ðÿÿ ÿèíÐ&1+@ÿÿ ÿéöÑ&&ùÇÿÿ ÿèóÏ&-ÉÇÿÿ ÿèòÐ&-Ê-Rÿÿ ÿèõÏ&-Ë@ÿÿÿèôÏ&Ñ-ÌÿÿÿèòÏ&m-ÊÿÿÿèóÐ&Ë0…ÿÿ ÿèôÑ&Ø@ÿÿ ÿéñÏ&'Ü@ÿÿ ÿéòÑ&&ƒ@ÿÿ ÿîõÏ&[@ÿÿÿéñÏ&@ÿÿÿêòÏ&ügÿÿ ÿè÷Ï& í"äÿÿ ÿèôÐ&ö!„ÿÿ ÿéóÍ& ²& ÿÿ ÿèôÏ&-ÍæÿÿÿëêÐ&¯@ ÿÿÿïñÑ&@ ÿÿ ÿéòÏ&k@ ÿÿ ÿéôÏ& ²Áÿÿ ÿéôÑ& ¸ÿÿ ÿéñÐ&v@ÿÿ ÿéôÏ&-ÏÿÿÿéõÐ&ÿÿ ÿêòÎ&-ÎÇÿÿ ÿèôÐ&•&”@ÿÿ ÿéòÏ&,@ÿÿ ÿêóÐ&-Ð@ÿÿÿéïÏ& ó@ÿÿ ÿéòÐ& ²@ÿÿÿéòÈ&C->ÿÿÿèíÉ&@ÿÿ ÿéóÌ&*@ÿÿ ÿéòÏ& @ÿÿ ÿèôÇ&s@ ÿÿ ÿèôÊ&A@!ÿÿ ÿèõÐ& Ô@"ÿÿ ÿéóÏ&9-Üÿÿ ÿëõÒ&„@#ÿÿ ÿçôÐ&@$ÿÿ ÿäøË&Ý&.ô@%ÿÿ ÿéòÏ&ë@&ÿÿ ÿäøÌ& @'ÿÿÿéñÐ&·¸ÿÿ ÿéõÏ&l@+ÿÿ ÿéòÏ&¤@-ÿÿÿéæÏ&¢@.ÿÿÿéëÉ&*' ³ÿÿ ÿîõÐ&[@4ÿÿ ÿéõÑ&&è@5ÿÿ ÿè÷Ñ&&Å@6ÿÿ ÿéòÑ&i@7ÿÿ ÿè÷Ò&o-Åÿÿ ÿéôÐ&á@8ÿÿÿééÇ&@9ÿÿ ÿèóÏ&Œ&\@;ÿÿ ÿéôÏ&-Ñ@<ÿÿ ÿéôÏ&À-Òÿÿ ÿèôÏ&-Ò@>ÿÿ ÿéòÏ&-Ó@?ÿÿ ÿéòÏ&-Ó@@ÿÿ ÿéóÌ& À@Aÿÿ ÿîòÎ&@BÿÿÿéõÏ&!@Cÿÿ ÿéìÏ&¸&@Dÿÿ ÿêóÐ&-Ô@EÿÿÿêòÐ@Fÿÿ ÿé÷Ï&N1ÿÿ ÿîõÉ&§@Gÿÿ ÿéôÏ& ízÿÿ ÿèòÉ&:@Iÿÿ ÿéöÏ&-Õ@Jÿÿ ÿèôÑ&Ø@Kÿÿ ÿéôÏ&ë'ãÿÿ ÿèõÏ&l@Mÿÿ ÿë÷Ò&ƒ@Nÿÿ ÿéòË&ä&ú@PÿÿÿèöÇ&ÝÞÿÿ ÿéëÐ&›@Qÿÿ ÿéôÏ&-Ùºÿÿ ÿéïÏ& &[@Rÿÿ ÿçõÏ& ²-Öÿÿ ÿèìÐ&Ö@Sÿÿ ÿèõÏ&X-×ÿÿÿéåÑ&)ß@Tÿÿ ÿçõÎ&-Ø@ÿÿ ÿëóÎ&-Ú@Uÿÿ ÿéóÏ&„@Vÿÿ ÿèóÐ&<@XÿÿÿéòÏ&m@Yÿÿ ÿéøÏ& ì„ÿÿ ÿéôÏ&Œ ÿÿ ÿéøÏ&„ ²ÿÿ ÿéøÏ& Ô $ÿÿ ÿéôÐ&& ÿÿ ÿéóÏ&9@Zÿÿ ÿèôÇ&”@[ÿÿÿéóÏ&@\ÿÿÿéóÍ&m&Y@]ÿÿ ÿéæÐ&÷¢ÿÿ ÿèòÊ&E&F@^ÿÿ ÿæéÇ&I@_ÿÿ ÿéóÐ&~5ÿÿ ÿèôÎ&©&”@`ÿÿ ÿçñÍ& ²Éÿÿ ÿñóÄ&çÿÿÿéíÉ&Á@bÿÿ ÿèóÐ&ì@dÿÿÿðîÊ&ñóÿÿ ÿèíÍ& ²@gÿÿ ÿéóÏ&ë-Ûÿÿ ÿéóÎ&X-ÛÿÿÿéñÏ&n@iÿÿÿéôÎ&%'ÿÿ ÿéôÐ&†ÿÿ ÿéôÏ&*Û@jÿÿÿéõÏ&¸…ÿÿ ÿèöÏ&.ì.ôÿÿÿéòÏ&*Ü&@kÿÿ ÿóòÑ&Ô*Þÿÿ ÿéóÐ&*ß@lÿÿ ÿéöÏ&Kÿÿ ÿèóÑ& @mÿÿ ÿçóÏ& ëVÿÿ ÿéöÏ&m@oÿÿ ÿéëÏ&›@pÿÿ ÿéñÏ&ÃÿÿÿìíÐ&í@tÿÿ ÿéêÍ& ²©ÿÿ ÿéõÉ&ª@uÿÿ ÿéïÏ& Îÿÿ ÿèóÏ& Ã×ÿÿÿé÷Ò&m@vÿÿÿèñÒ& @{ÿÿ ÿéöË&Xµÿÿ ÿé÷Ë&¶@|ÿÿÿéóÏ&V*àÿÿÿéóÏ&0²@~ÿÿ ÿéöÒ&h@ÿÿ ÿèõÈ&Ñ&t&Ò@€ÿÿ ÿéñÐ&o@ÿÿ ÿîóË& ö@‚ÿÿ ÿêòÏ&3*áÿÿÿéïÐ&*âRÿÿÿéóÏ&*â¹ÿÿÿéîÇ&*â" ÿÿ ÿéóÐ&*ã@ƒÿÿ ÿèóÏ&*ä•ÿÿ ÿèñÏ&l@…ÿÿ ÿéöÏ&k@†ÿÿÿòóÏ& æÿÿ ÿëôÉ&u@‰ÿÿ ÿëôÏ&u@Šÿÿ ÿèñÏ&Š@‹ÿÿ ÿéôÏ&¨@Œÿÿ ÿéòÏ&¨@ÿÿÿèñÑ&Ý@Žÿÿ ÿéíÑ&ˆ@ÿÿÿéñÑ&@’ $ÿö,7 9 : ;< =FÿøGÿøHÿøJÿûRÿøTÿøWYZ\wÿëÿø€ÿøÿø‚ÿø†ÿø‡ÿø‰ÿø¢ÿø°ÿö $ÿö , 7 9 : ; < = Fÿø Gÿø Hÿø Jÿû Rÿø Tÿø W Y Z \ wÿë ÿø €ÿø ÿø ‚ÿø †ÿø ‡ÿø ‰ÿø ¢ÿø °ÿö -&ÿø*ÿø2ÿø4ÿø7ÿó8ÿû9ÿó:ÿö<ÿózÿø&ÿø*ÿø2ÿø4ÿø7ÿó8ÿû9ÿó:ÿö<ÿózÿø$ÿö$ ÿö$&ÿý$*ÿý$2ÿý$4ÿý$7ÿñ$8ÿý$9ÿø$:ÿû$<ÿó$zÿý$¡ÿû$#ÿö$%ÿö%7ÿý%9ÿý%;ÿý%<ÿý&& & &&ÿû&*ÿû&2ÿû&4ÿû&@&`&zÿû&#&%'ÿø'ÿø'$ÿý',ÿý'7ÿø'9ÿý':ÿý';ÿý'<ÿû'=ÿý'wÿø'°ÿý)) ) )ÿó)ÿó)")$ÿû)9):)<)@)`)wÿø)°ÿû)#)%,, ,&ÿý,*ÿý,2ÿý,4ÿý,zÿý,¡ÿý,#,%.. .&ÿû.*ÿû.2ÿû.4ÿû.zÿû.¡ÿû.#.%/ÿó/ ÿó/&ÿý/*ÿý/2ÿý/4ÿý/7ÿñ/8ÿý/9ÿö/:ÿø/<ÿó/zÿý/¡ÿý/#ÿó/%ÿó2ÿø2ÿø2$ÿý2,ÿý27ÿø29ÿû2:ÿý2;ÿû2<ÿû2=ÿý2wÿû2°ÿý3ÿæ3ÿæ3$ÿö3&ÿý3;ÿý3<ÿý3=ÿû3wÿî3°ÿö4ÿø4ÿø4$ÿý4,ÿý47ÿø49ÿû4:ÿý4;ÿû4<ÿû4=ÿý4wÿø4°ÿý57ÿý7 7 7ÿó7ÿó7"7$ÿñ7&ÿø7*ÿø72ÿø74ÿø76ÿý777Dÿñ7Fÿñ7Gÿñ7Hÿñ7Jÿó7Pÿö7Qÿö7Rÿñ7Sÿö7Tÿñ7Uÿö7Vÿñ7Xÿö7Yÿø7Zÿø7[ÿø7\ÿø7]ÿø7wÿî7zÿø7}ÿñ7~ÿñ7ÿñ7€ÿñ7ÿñ7‚ÿñ7†ÿñ7‡ÿñ7‰ÿñ7Šÿö7‹ÿö7Œÿö7¡ÿø7¢ÿñ7°ÿñ7# 7% 8ÿû8ÿû8$ÿý8wÿû8°ÿý9 9 9ÿó9ÿó9"9$ÿø9&ÿû9*ÿû92ÿû94ÿû9Dÿø9Fÿø9Gÿø9Hÿø9Jÿø9Pÿû9Qÿû9Rÿø9Sÿû9Tÿø9Uÿû9Vÿû9Xÿû9wÿñ9zÿû9}ÿø9~ÿø9ÿø9€ÿø9ÿø9‚ÿø9†ÿø9‡ÿø9‰ÿø9Šÿû9‹ÿû9Œÿû9¡ÿû9¢ÿø9°ÿø9# 9% : : :ÿö:ÿö:$ÿû:&ÿý:*ÿý:2ÿý:4ÿý:Dÿû:Fÿû:Gÿû:Hÿû:Jÿý:Pÿý:Qÿý:Rÿû:Sÿý:Tÿû:Uÿý:Vÿû:Xÿý:]ÿý:wÿö:zÿý:}ÿû:~ÿû:ÿû:€ÿû:ÿû:‚ÿû:†ÿû:‡ÿû:‰ÿû:Šÿý:‹ÿý:Œÿý:¡ÿý:¢ÿû:°ÿû:# :% ;; ;&ÿû;*ÿû;2ÿû;4ÿû;Fÿý;Gÿý;Hÿý;Rÿý;Tÿý;zÿû;ÿý;€ÿý;ÿý;‚ÿý;†ÿý;‡ÿý;‰ÿý;¡ÿû;¢ÿý;#;%< < <ÿó<ÿó<"<$ÿó<&ÿû<*ÿû<2ÿû<4ÿû<6ÿý<Dÿó<Fÿó<Gÿó<Hÿó<Jÿó<Pÿø<Qÿø<Rÿó<Sÿø<Tÿó<Uÿø<Vÿö<Xÿø<[ÿû<\ÿý<]ÿø<wÿî<zÿû<}ÿó<~ÿó<ÿó<€ÿó<ÿó<‚ÿó<†ÿó<‡ÿó<‰ÿó<Šÿø<‹ÿø<Œÿø<¡ÿû<¢ÿó<°ÿó<# <% == =&ÿý=*ÿý=2ÿý=4ÿý=zÿý=¡ÿû=#=%>-D ÿûE ÿûFF F#F%H ÿûI I IYIZI\I# I% JJ JJJ#J%K ÿøNN N#N%P ÿûQ ÿûR[ÿûR]ÿýU U UDÿýUJÿýU}ÿýU~ÿýU# U% VV V#V%W W WWW# W% YY YIY# Y% Z Z ZIZ# Z% [[ [Rÿû[ÿû[†ÿû[‡ÿû[‰ÿû[¢ÿû[#[%\\ \I\#\%]Rÿý]ÿý]†ÿý]‡ÿý]‰ÿý]¢ÿý^-x$ÿýx°ÿýzÿøzÿøz$ÿýz,ÿýz7ÿøz9ÿûz:ÿýz;ÿûz<ÿûz=ÿýzwÿûz°ÿý} ÿû~ ÿû[ÿû]ÿý€ÿó€ ÿûÿó ÿû‚ÿó‚ ÿû†ÿî† ÿî†Iÿû†[ÿû†]ÿý‡ÿî‡ ÿî‡Iÿû‡[ÿû‡]ÿý‰[ÿû‰]ÿýŠÿøŠ ÿø‹ÿø‹ ÿøŒÿøŒ ÿø›ÿó› ÿó›&ÿý›*ÿý›2ÿý›4ÿý›7ÿñ›8ÿý›9ÿö›:ÿø›<ÿó›zÿý›¡ÿý›#ÿó›%ÿó¢[ÿû¢]ÿý¯ÿó¯ ÿó¯&ÿý¯*ÿý¯2ÿý¯4ÿý¯7ÿñ¯8ÿý¯9ÿö¯:ÿø¯<ÿó¯zÿý¯¡ÿý¯#ÿó¯%ÿó°ÿö° ÿö°&ÿý°*ÿý°2ÿý°4ÿý°7ÿñ°8ÿý°9ÿø°:ÿû°<ÿó°zÿý°¡ÿû°#ÿö°%ÿö· · ·ÿó·ÿó·"·$ÿø·&ÿû·*ÿû·2ÿû·4ÿû·Dÿø·Fÿø·Gÿø·Hÿø·Jÿø·Pÿû·Qÿû·Rÿø·Sÿû·Tÿø·Uÿû·Vÿû·Xÿû·wÿñ·zÿû·}ÿø·~ÿø·ÿø·€ÿø·ÿø·‚ÿø·†ÿø·‡ÿø·‰ÿø·Šÿû·‹ÿû·Œÿû·¡ÿû·¢ÿø·°ÿø·# ·% ÇÇ ÇIÇ#Ç%ÉÉ É#É%Ë ÿûÍ Í ÍÍÍ# Í% ÎÎ Î#Î%ÏÏ ÏIÏ#Ï%ÑÑ ÑIÑ# Ñ% × × ×××# ×% Ù[ÿûÙ]ÿýÚÚ ÚIÚ#Ú%Û[ÿûÛ]ÿýÝÝ ÝÿûÝ&ÿýÝ-Ý2ÿýÝ4ÿýÝzÿýÝ#Ý% #% #% #% #% #% #% #%ÿó ÿû"$ÿö","7 "9 ": ";"< "="Fÿø"Gÿø"Hÿø"Jÿû"Rÿø"Tÿø"W"Y"Z"wÿë"ÿø"€ÿø"ÿø"‚ÿø"†ÿø"‡ÿø"‰ÿø"¢ÿø"°ÿö$$ÿö$,$7 $9 $: $;$< $=$Fÿø$Gÿø$Hÿø$Jÿû$Rÿø$Tÿø$W$Y$Z$wÿë$ÿø$€ÿø$ÿø$‚ÿø$†ÿø$‡ÿø$‰ÿø$¢ÿø$°ÿö ¢ d &d Š <˜ &d Ô "ì œ (ª Ò Ðî 8¾ \öDigitized data copyright Google Corporation © 2006Droid Sans FallbackRegularAscender - Droid Sans FallbackVersion 2.00DroidSansFallbackDroid is a trademark of Google and may be registered in certain jurisdictions.Ascender CorporationSteve MattesonDroid Sans is a humanist sans serif typeface designed for user interfaces and electronic communications.http://www.ascendercorp.com/http://www.ascendercorp.com/typedesigners.htmlÿì ÿÿrt-4.4.2/share/po/0000775000175000017500000000000013131430353013552 5ustar vagrantvagrantrt-4.4.2/share/po/tr.po0000664000175000017500000120455713131430353014555 0ustar vagrantvagrant# Turkish translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-08 23:10+0000\n" "Last-Translator: Afif \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%3 %2 %7 %1, %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 eklendi" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1: %2 deÄŸeri %3 olarak deÄŸiÅŸtirildi" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 silindi" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 silindi." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 bulunamadı" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 devredışı bırakıldı" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 kayıt edildi." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 güncellendi." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 ile ÅŸablon %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) oluÅŸturan: %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (DeÄŸiÅŸmemiÅŸ)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (panel %2 den)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - LogToSTDERR seçeneÄŸini düzenleyin" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - %2 komutuna geçilecek bir argüman" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - STDOUT' a gönderilen çıktı durumu güncellemeleri" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - 'İlk', 'Son' ve 'Hepsi' iÅŸlemlerinin hangisini kullanacağını belirtin" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 * Kullanmak istediÄŸiniz ÅŸablonların id veya isimlerini belirtin" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Virgül ile ayrılmış ÅŸekilde kullanmak istediÄŸiniz aktarım tipi listesini belirtiniz" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Kullanmak istediÄŸiniz durum modülünü belirtin" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Kullanmak istediÄŸiniz arama modülünü belirtin" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "%1 CF" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT sürüm %2 Telif Hakkı: 1996-%3 %4." #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "%1 Versiyon" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1, %2 için bir deÄŸer olarak eklendi" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "%1 önce" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 mevcut ve RT tablolarına sahip, ancak RT metadata bilgilerine sahip deÄŸil. Sonraki aÅŸamalardan 'Veritabanını İlk Kullanıma Hazırla' kısmında eksik metadata'ları varolan veritabanına girebilirsiniz. Bu durum uygunsa alttaki 'Temelleri ÖzelleÅŸtir' butonuna basarak RT özelleÅŸtirmesine devam edebilirsiniz." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 mevcut ancak RT tablolarına ve RT metadata bilgilerine sahip deÄŸil. Sonraki aÅŸamalardan 'Veritabanını İlk Kullanıma Hazırla' kısmında eksik metadata'ları varolan veritabanına girebilirsiniz. Bu durum uygunsa alttaki 'Temelleri ÖzelleÅŸtir' butonuna basarak RT özelleÅŸtirmesine devam edebilirsiniz." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 yerel bir nesne olarak gözüküyor, fakat veritabanında mevcut deÄŸil" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 tamamen oluÅŸturulmuÅŸ gibi görünüyor. Yeni tablo ve metadata girilmesine gerek yok, ancak alttaki 'Temelleri ÖzelleÅŸtir' butonuna basarak RT özelleÅŸtirmesine devam edebilirsiniz." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 - %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 bir grup olamaz" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1, %2 deÄŸerinden %3 deÄŸerine deÄŸiÅŸti" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 %2 den %3 e deÄŸiÅŸtir" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 kopya" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 temel ayar" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1, %2 olarak atanamıyor" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 oluÅŸturuldu" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 silindi" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 hizmet dışı" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 mevcut deÄŸil" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 etkin" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "Sahibi olduÄŸum yüksek öneme sahip %1 bilet" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1, biletlere dışarıdan müdahale edebilen bir araçtır (cron gibi)" #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1, cron iÅŸi olarak yürütülebilen bir araçtır. ErtelenmiÅŸ bütün RT bildirimlerinin kullanıcı başına toplu olarak gönderimini saÄŸlar." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 zaten %2 olarak ayarlanmış" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 RT'ın mail aldığı bir mail adresidir. %2 adresini eklemek bir mail döngüsüne yol açacaktır." #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 artık özel alan %2 için bir deÄŸer deÄŸildir" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 bir %2 deÄŸildir" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 geçerli bir kullanım süresi deÄŸildir" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 sorun" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 tuÅŸ '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "En son güncellenen %1 makale" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "En yeni %1 makale" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "Sahibi olmayan en yeni %1 bilet" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 nesne" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 , %2 olarak ayarlandı" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 site yapılandırması" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 güncellendi: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 güncellendi: HiçbirÅŸey DeÄŸiÅŸmedi" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 güncellendi" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1 için %2 nesne" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1 ve %2 için %3 nesne" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1 için mevcut ÅŸifre" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1'in baÅŸlangıç panosu" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "%1 için ÅŸifreleme anahtarları" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1 için kaydedilmiÅŸ aramalar" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: herhangi bir eklenti belirtilmedi" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "%1 KiB" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "%1 MiB" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr " %3 için %1 yeni bilet %2" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "%1A" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "%1S" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "%1g" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "%1s" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "%1d" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1sn" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,makale,makale)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,gün,gün)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,saat,saat)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,saat,saat) (%quant(%2,dakika,dakika))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%1 dakika" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,ay,ay)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,saniye,saniye)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,hafta,hafta)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,yıl,yıl)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' geçerli bir isim deÄŸil." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' geçerli bir sınıflandırma deÄŸil" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' geçerli bir sınıflandırma belirteci deÄŸil" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Tamamlama onay kutusu)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Silme onay kutusu)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Silme onay kutuları)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "(Tüm deÄŸerleri silmek için iÅŸaretleyin)" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Bilet id veya URL adreslerini virgül ile ayırarak giriniz)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(BoÅŸ bırakılırsa, varsayılan olarak %1 deÄŸerini alacaktır)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(Tamamlanmamış)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(Geçerli olmayan deÄŸer)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Özel alan yok)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Üye yok)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Senet yok)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Åžablon yok)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Bu güncellemeyi, virgülle ayrılmış eposta listesine, karbon kopya olarak gönderir. Listedeki kiÅŸiler ileriki güncellemeleri alacaktır.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Bu güncellemeyi, virgülle ayrılmış eposta listesine, karbon kopya olarak gönderir. Listedeki kiÅŸiler ileriki güncellemeleri alacaktır.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Bir durum veya eylem için 'Kullanıcı Tanımlı' yı seçtiÄŸinizde, bu alanları kullanın)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(herhangi)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(özet yok)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(isimsiz)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(genel anahtar yok!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(deÄŸer yok)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(deÄŸer yok)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(bekleyen %quant(%1,diÄŸer bilet))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(onaylanmayı bekliyor)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(gerekli)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(güven :%1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(baÅŸlıksız)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(güvenilmeyen!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id önceden kullanılan ancak artık önerilmeyen bir argümandır ve --template ile birlikte kullanılamaz" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--transaction argümanı sadece 'ilk', 'son' ya da 'hepsi' olabilir" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 saniye" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Bu isimde bir ÅŸablon zaten mevcut" #: etc/initialdata:258 msgid "A blank template" msgstr "BoÅŸ bir ÅŸablon" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Bir parola atanmamış, dolayısıyla kullanıcı giriÅŸ yapamayacak." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE bulunamadı" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACE' ler sadece oluÅŸturulabilir ve silinebilirler." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "%1 den ACL güncellemeleri" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "VE" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Hakkımda" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "EriÅŸim denetimi" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Eylem" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Eylem '%1' bulunamadı" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Eylem iÅŸlendi." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Eylem, zorunlu bir argüman" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Eylem hazırlanıyor..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Eylemler" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Aktif Biletler" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "%1 için aktif biletler" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "%1 Ekle" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Yöneticiye karbon kopya ekle" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Yer İmi Ekle" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Karbon kopya ekle" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Sütun ekle" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Kıstas ekle" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Daha fazla dosya ekle" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "İstekçi ekle" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "DeÄŸer ekle" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Seçilen biletlere yorum ya da cevap ekle" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Grup ekle" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Buraya ekle" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Üye ekle" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Yeni gözcüler ekle" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Buraya yetki ekle %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Bu terimleri ekle" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Bu terimleri ekle ve Ara" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Kullanıcı ekle" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "DeÄŸer ekle" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Åžunlar için özel alanları ekle, deÄŸiÅŸtir ya da sil" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Eklendi" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "Konu DeÄŸiÅŸimi Eklendi: %1" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adres" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Adres 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adres1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adres2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "%quant(%1,dakika,dakika) tarafından çalıştırılan ayarlanmış zaman" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Yönetici" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "Yönetici Karbon Kopya" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Yönetici Yorumu" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "HTML Biçiminde Yönetici Yorumu" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Yönetici Yazışması" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "HTML Biçiminde Yönetici Yazışması" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Yönetici kuyrukları" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Yönetici/Küresel ayarlar" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "YöneticiKKGrubu" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "YöneticiKK" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "YöneticiKK'ları" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Yönetici ÅŸifresi" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "GeliÅŸmiÅŸ" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "GeliÅŸmiÅŸ arama" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "GiriÅŸ yaptıktan sonra orjinal yerinize gönderileceksiniz:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Toplayıcı" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Bütün Onaylar Kabul Edildi" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "HTML Biçemindeki Bütün Onaylar Kabul Edildi" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Bu sınıflandırmadaki bütün makaleler aÅŸağı açılır menü olarak bilet cevap sayfasında görünmeli" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Bütün Sınıflandırmalar" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Tüm özel alanlar." #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Bütün BaÅŸlangıç Panoları" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Bütün Kuyruklar" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Bütün Biletler" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Bütün iCal beslemeleri sizi yetkilendiren gizli bir jeton gömer. EÄŸer iCal besleme URL'lerinden bir tanesi dış dünyada açığa çıktıysa, aÅŸağıdan bütün iCal beslemelerini kesecek yeni bir gizli bilgi alabilirsiniz." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Arama kriterlerine uyan tüm sıralar" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "tüm biletler" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Tüm konular" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Aramaların kaydedilmesine izin ver" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Kayıtlı aramaların yüklenmesine izin ver" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "ÅŸablon, scrips, vs'ye Perl kodu yazmaya izin ver" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Zaten ÅŸifrelenmiÅŸ" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "Her zaman mesaj gönderenden bağımsız olarak istek sahiplerine mesaj gönder" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "Bir durum belirtilmelidir" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Bir hata oluÅŸtu" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Ve/Veya" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Yıllık" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Herhangi bir alan" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "RT tarafından tanınmayan herhangi bir kelime bilet konularında aranır." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Etki edeceÄŸi bölümler:" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Tüm nesnelere uygular" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Uygula" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Evrensel uygula" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Seçilen komutları uygula" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "DeÄŸiÅŸikliklerinizi uygulayın" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Onaylama" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Onaylama #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Onaylama #%1: Bir sistem hatası nedeniyle, notlar kaydedilemedi" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Onaylama #%1: Notlar kaydedildi" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Onay Geçti" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "Onay HTML den geçti" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "sahibi için onay hazır" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "HTML de sahibi için onay hazır" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Onay Reddedildi" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "HTML de onay reddedildi" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Onayla" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Nis" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "nesne #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "Nesne #%1 bulunamadı" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Nesne #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Nesne %1 oluÅŸturuldu" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Makale yönetimi" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Yazı bulunamadı" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Yazılar" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Yazılar %1 içinde" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Uyan yazılar %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Konusu olmayan yazılar" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Art" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Kuyruk özel alanlarını ata ve kaldır" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Ekle" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Dosya ekle" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "EklenmiÅŸ dosya" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Eklenti" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Eklenti '%1' yüklenemiyor" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Eklenti oluÅŸturuldu" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Eklenti dosya adı" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Eklentiler" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Eklentilerin ÅŸifrelenmesi kapatıldı" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Öznitelik Silindi" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "Özellik güncellendi" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "AÄŸu" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "Otomatik hesap kurulumu yapılamadı" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Görüntü için otomatik önerilen tema yok. Bu yüklemiÅŸ olduÄŸunuz görüntünün kurulu olan GD versiyonu tarafından tanınmadığından olabilir. Desteklenen türler: %1 dir. DiÄŸer dosya türlerini desteklemesi için GD.pm ve libgd yi yeniden derleyebilirsiniz." #: etc/initialdata:261 msgid "Autoreply" msgstr "Otomatik cevap" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "İstekçileri Otomatik Cevapla" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "HTML olarak otomatik cevap" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Hazır" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "OluÅŸturulma-Songüncelleme ortalaması" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "OluÅŸturulma-Çözülme Ortalaması" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "OluÅŸturulma-BaÅŸlama Ortalaması" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "GecikmiÅŸ-Çözülmüş Ortalaması" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "BaÅŸlamış-Çözülmüş Ortalaması" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "BaÅŸlama-baÅŸlanan ortalaması" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "ortalama tahmini süre" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "Ortalama kalan süre" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "ortalama çalışılan süre" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Geri Dön" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "%1 özelliÄŸi için kötü gizlilik" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Temeller" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "Toplu iÅŸlem" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "Toplu iÅŸlem (ayarlardan kapatılmış)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Toplu iÅŸlemler" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "Toplu komutlar bilet ile ilgili birkaç deÄŸiÅŸiklik uygulandıktan sonra çalışır." #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Gizli karbon kopya" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "BoÅŸ" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "İleti metni" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Kalın" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Yer İmi" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Bu arama için yer imi konabilir" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Yer imi konmuÅŸ biletler" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Yer imi konmuÅŸ biletler" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Konu bazında gözatma" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Bu iÅŸlemde yapılan SQL sorgularına göz atma" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Toplu Güncelleme" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "CCGrubu" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "Hesapla" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "deÄŸerlerini hesapla" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Kayıtlı arama \"%1\" yı yüklenemedi" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Sistem kullanıcıları deÄŸiÅŸtirilemez" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Bir ad olmadan, kiÅŸisel alan deÄŸeri eklenemez" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Üzerinde çalışılabilecek bir kaydedilmiÅŸ arama bulunamadı" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "İletemiyorum: Geçerli email adresi girilmemiÅŸ" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Bir bileti kendisine baÄŸlayamazsınız" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Silinen bir bilete kısayol verilemez" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Bir bilet kendisi ile birleÅŸtirilemez" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Kuyruktaki %1 bile hızlı oluÅŸturulamaz çünki bazı alanların doldurulması gerekmektedir. Lütfen normal bilet üretme sayfasını kullanarak iÅŸlemi bitiriniz." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "%1 kaydedilemedi" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Tanımı olmadan arama kaydedilemez" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Bu arama kaydedilemiyor" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "Kaynak ve hedef aynı anda belirlenemez." #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Sıradan numaralara kısayol ilave edilemez" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Kapatılmış kuyruÄŸa bilet oluÅŸturulamaz." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategoriler dayanmaktadır" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategori" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Karbon kopya" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "CCs" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "DeÄŸiÅŸtir" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Durum açabilmek için onay biletini deÄŸiÅŸtir" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "E-posta konusunu deÄŸiÅŸtir:" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Parolayı deÄŸiÅŸtir" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Kuyruk deÄŸiÅŸikliÄŸi uygulanamaz" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Tablo" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Hepsini iÅŸaretle" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Veritabanı baÄŸlanılabilirliÄŸini kontrol et" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Veritabanı yetkilerini kontrol edin" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Silmek için kutucuÄŸu iÅŸaretleyin" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Alt" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Çocuklar" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Veritabanını seçin" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "%1 için konulardan seçin" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Åžehir" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Sınıf" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Sınıf Adı" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Sınıf oluÅŸturalamadı: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Sınıf kimliÄŸi" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Sınıf zaten evrensel olarak uygulandı" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Sınıf zaten %1 e uygulandı" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Sınıflar" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Temizle" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Hepsini Temizle" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Bu sihirbazı tamamlamak için aÅŸağıdaki \"Kurulumu Bitir\" e basın." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "RT'nin veritabanını oluÅŸturup ilk metaveriyi oluÅŸturmak için \"Veritabanını Sıfırla\" ya basın" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Bir renk seçmek için basın" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Kapatıldı" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Kapatılmış biletler" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Seçim kutusu: Birden fazla deÄŸeri seçin veya girin" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Seçim kutusu: Bir tek deÄŸeri seçin veya girin" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Seçim kutusu: 1-%1 arası deÄŸer seçin veya girin" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Yorum" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Yorum Adresi" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Yorum adresi" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Biletler üzerine yorum yap" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Açıklamalar" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Yorumlar (istekçilere gönderilmedi)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Bu kullanıcı hakkındaki yorumlar" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Yorumlar eklendi" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Saplanmışları Ada" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Durum" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "'%1' Durumu bulunamadı" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Durum, zorunlu bir argüman" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Durum eÅŸleÅŸiyor..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Durum, Hareket ve ÅŸablon" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "%1 yapılandırma dosyası kilitli" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "%1 KuyruÄŸu için yapılandırma" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "BaÄŸlantı saÄŸlandı" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "RT yöneticinize %1 %2 adresine%3 eposta ile ulaşın." #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "RT yöneticiniz ile görüşün" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "İçerik" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "İçerik imha edildi çünkü boyutu (%1 byte) düzenlenmiÅŸ maksimum boyutu (%2 byte) aşıyor." #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "İçerik ekleme baÅŸarısız. Detay için hata loglarına bakın." #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "İçerik geçersiz bir ip adresi" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "İçerik geçersiz ip adres aralığı" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "İçerik kesildi çünkü boyutu (%1 byte) düzenlenmiÅŸ maksimum boyutu (%2 byte) aşıyor." #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "İçerik Tipi" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "İçerik türü" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Karşılık adres" #: etc/initialdata:393 msgid "Correspondence" msgstr "Uygunluk" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Uygunluk eklendi" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "HTML deki karşılık" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Yeni özel alan deÄŸeri eklenemedi: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Sahip deÄŸiÅŸtirilemedi: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Özel bölüm oluÅŸturulamıyor: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Grup oluÅŸturulamıyor" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Arama: %1 OluÅŸturulamadı" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Bilet oluÅŸturulamıyor. Kuyruk atanmadı" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Kullanıcı oluÅŸturulamıyor" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Arama %1: %2 silinemedi" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "grup '%1' bulunamadı" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "'%1' Kullanıcısı bulunmadı veya oluÅŸturulamadı" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "%1 özelliÄŸi yüklenemedi." #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "%1 sınıfı yüklenemedi" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Özel bölüm yüklenemiyor %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Grup yüklenemiyor" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "%1 için nesne yüklenemiyor" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "#%1 komutu yüklenemedi" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "'%1' kullanıcısı yüklenemedi" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "%1 %2 yapılamadı" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "%1 , %2 olarak kaldırılamadı" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Kullanıcı bilgisi atanamıyor" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Sütun gÄŸncellenemedi %1:%2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "zaten evrensel olduÄŸu için eklenemedi" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Eklenti eklenemiyor" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Kullanıcı gruba eklenemiyor" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "%1 kod bloÄŸu derlenemedi '%2':%3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Åžablon kod bloÄŸu derlenemedi '%1':%2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Bir hareket oluÅŸturulamıyor: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Kayıt oluÅŸturulamadı: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Gösterge paneli silinemedi %1:%2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Satır bulunamadı" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "uygun iÅŸlem bulunamadı, atlanıyor" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Bu yetkili bulunamadı" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Bu deÄŸer bulunamadı" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "%1 anahtar bilgisi alınamadı" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "%1 sınıfı yüklenemedi" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Özel Alan #%1 yüklenemedi" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "ÖzelAlan #%1 yüklenemedi" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Özel bölüm %1 yüklenemedi" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "#%1 numaralı biletin kopyası yüklenemedi" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Gösterge paneli yüklenemedi %1:%2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "grup #%1 yüklenemedi" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "%1 grubu yüklenemedi" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "BaÄŸlantı yüklenemedi" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "Kısayol: %1 yüklenemedi" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "%1 nesnesi yüklenemedi" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "kullanıcı: %1 yüklenemedi yada oluÅŸturulamadı" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Kuyruk yüklenemedi" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "KuyruÄŸa eklenemdi" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "%1 kuyruÄŸu yüklenemedi" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Kuyruk yüklenemedi '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Senet #%1 yüklenemedi" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Åžablon yüklenemedi #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "belirtilen ilke yüklenemedi" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "'%1' bileti yüklenemedi" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "silmeye çalışırken konu üyeliÄŸi yüklenemedi" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "iÅŸlem yüklenemedi #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Kullanıcı yüklenemedi" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Kullanıcı yüklenemedi #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "kullanıcı #%1 ya da kullanıcı '%2' yüklenemedi" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Kullanıcı yüklenemedi '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "temel URI ayrıştırılamadı: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "Hedef URI ayrıştırılamadı: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "Önceki üye kaldırılamadı: %1" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "İçerik çözülmüş veriyle deÄŸiÅŸtirilemedi: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "İçerik ÅŸifrelenmiÅŸ veriler deÄŸiÅŸtirilemez: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Ülke" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "OluÅŸtur" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Bilet OluÅŸtur" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Özel Bölüm OluÅŸtur" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "%1 kuyruÄŸu için özel bir bölüm oluÅŸtur" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Yeni makale oluÅŸtur" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Yeni bir grup oluÅŸtur" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Yeni bir kullanıcı oluÅŸtur" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Yeni bir kuyruk oluÅŸtur" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Bir ÅŸablon oluÅŸtur" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Yeni bir bilet oluÅŸtur" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Makale oluÅŸtur" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Bu senedin ÅŸablonunu temel alarak yeni biletler oluÅŸtur" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Yeni bilet oluÅŸtur" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "OluÅŸturuldu" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "OluÅŸturan" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Özel bölüm %1 oluÅŸturuldu" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "OluÅŸturan" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "OluÅŸturan" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Åžifreleme" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Geçerli baÄŸlantılar" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Geçerli Arama" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Geçerli üyeler" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Geçerli arama" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Geçerli izleyiciler" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Özel bölümler" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "%1 için özel bölümler" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Özel hareket hazırlama kodu" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Özel durum" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Özel bölüm %1, bir deÄŸere sahip" #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Özel bölüm %1, bir deÄŸere sahip deÄŸil" #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Özel bölüm %1, bulunamadı" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Özel bölüm %2 için, özel bölüm deÄŸeri %1 bulunamıyor" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Özel bölüm deÄŸeri silinemiyor" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Özel bölüm deÄŸeri silindi" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Özel Bölüm" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "ÖzelleÅŸtir" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "e-posta adreslerini düzenleme" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "RT temasını ÖzelleÅŸtirme" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "senin RT görünümünü özelleÅŸtir" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Günlük" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Veritabanı adı" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Veritabanı türü" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "Tarih" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Tarih biçimi" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Tarihler" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "Gün" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Ara" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Varsayılan: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Sil" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Åžablonu Sil" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Silme iÅŸlemi baÅŸarısız: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Biletleri sil" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "DeÄŸerleri sil" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "%1 silindi" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Bu nesneyi silmek, tercihli bütünlüğü bozacaktır" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Bu nesneyi silmek, tercihli bütünlüğü ihlal edecektir" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Reddet" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Åžunun tarafından bağımlılığa sahip:" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "%1 ile bağımlılık eklendi" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "%1 ile bağımlılık silindi" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "%1 için bağımlılık eklendi" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "%1 için bağımlılık silindi" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Bağımlılık" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Azal" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Sorunu aÅŸağıda tanımlayın" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Tanım" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Yön" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Görüntüle" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "EriÅŸim Denetim Listesini Görüntüle" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Sütunları Görüntüle" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "HiçbirÅŸeyi ve herÅŸeyi yapın" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Alan adı" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Bu sayfayı yenilemeyin" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "İndir" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Vade" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "HATA: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Düzenle" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Özel Bölümleri Düzenle" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "%1 için özel bölümleri düzenle" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Bütün gruplar için özel bölümleri düzenle" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Bütün kullanıcılar için özel bölümleri düzenle" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Bütün kuyruklardaki bütün biletler için özel bölümleri düzenle" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "BaÄŸlantıları Düzenle" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Sorguyu Düzenle" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Aramayı Düzenle" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Sistem ÅŸablonlarını düzenle" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Özel bölüm %1 düzenleniyor" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "%1 grubu için üyelik düzenleniyor" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Taban veya hedef belirtilmeli" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "Eposta" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Eposta adresi kullanımda" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "EtkinleÅŸtirildi (Bu kutudaki iÅŸareti kaldırmak, bu özel bölümü iptal eder)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "EtkinleÅŸtirildi (Bu kutudaki iÅŸareti kaldırmak, bu grubu iptal eder)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "EtkinleÅŸtirildi (Bu kutudaki iÅŸareti kaldırmak, bu kuyruÄŸu iptal eder)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "EtkinleÅŸtirilmiÅŸ Kuyruklar" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "EtkinleÅŸtirilme durumu %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Çoklu deÄŸer girin" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Bu nesneleri baÄŸlamak için, nesneler veya URIler girin. Çoklu girdileri boÅŸluk ile ayırın." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Bir deÄŸer girin" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Bu kuyrukları baÄŸlamak için, kuyruklar veya URIler girin. Çoklu girdileri boÅŸluk ile ayırın." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Bu biletleri baÄŸlamak için, biletler veya URIler girin. Çoklu girdileri boÅŸluk ile ayırın." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "%1 adet deÄŸer girin" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Hata" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Biletleri Yükselt" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Tahmini" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Herkes" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Örnek:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Ek Bilgi" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "'Ayrıcalıklı' sahte kullanıcı grubu bulunamadı" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "'Ayrıcalıksız' sahte kullanıcı grubu bulunamadı" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "%1 modülü yüklenemedi. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "%1 için nesne yüklenemedi" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Åžub" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Dosya adı" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Çoklu metin alanları doldur" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Çoklu wikimetin alanları doldur" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Tek bir metin alanı doldur" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Tek bir wikimetin alanı doldur" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Bu bölümü bir URL ile doldur" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "En fazla %1 adet metin alanı doldur" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "En fazla %1 adet wikimetin alanı doldur" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Son Öncelik" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "SonÖncelik" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Grupları bul:" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "KiÅŸileri bul:" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Biletleri bul" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "" #: share/html/Elements/Tabs:878 msgid "First" msgstr "İlk" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "DeÄŸiÅŸikliÄŸi zorla" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Biçim" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "%quant(%1,ticket) bulundu" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Nesne bulundu" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Cum" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Cuma" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Genel" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Verilen: %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Küresel" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Küresel Özel Alan Ayarları" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Küresel portlet %1 kaydedildi" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Git" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Git!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Bilete git" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Grafik" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Grafik Özellikleri" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Grup" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Grup Yetkileri" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Grup üyeye sahip: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Grup oluÅŸturulamıyor: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Grup oluÅŸturuldu" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Grupta böyle bir üye yok" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Grup bulunamadı" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Gruplar" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Gruplar, üyelerinin üyeleri olamazlar" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Arama kıstaslarına uyan gruplar" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Bu kullanıcının kayıtlı olduÄŸu gruplar" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Merhaba!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "GeçmiÅŸ" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "%1 grubunun geçmiÅŸi" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "%1 üyesinin geçmiÅŸi" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Ev Sayfası" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Saat" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Saat" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "Numara" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Kimlik" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "EÄŸer bir onaylama reddedilmiÅŸse, özgün kaydı reddet ve bekleyen onayları sil" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "EÄŸer bu araÅŸ setgid ise, saldırgan bir yerel kullanıcı, bu aracı kullanarak RT' ye yönetici eriÅŸimi hakkı kazanabilir." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "EÄŸer yukarıda herhangi bir ÅŸeyi deÄŸiÅŸtirdiyseniz, mutlaka" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "%1 için geçersiz deÄŸer" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "DeÄŸiÅŸmez alan" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Listelerken, etkinleÅŸtirilmemiÅŸ grupları ekle" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Listelerken, etkinleÅŸtirilmemiÅŸ kuyrukları ekle" #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Listelerken, iptal edilmiÅŸ üyeleri ekle" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Sayfayı İçer" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "BaÅŸlangıç ÖnceliÄŸi" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "BaÅŸlangıçÖnceliÄŸi" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Girdi Hatası" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Girdi, %1 ile eÅŸleÅŸmeli" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "İç Hata: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Geçersiz veri" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Geçersiz nesne" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Geçersiz desen: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Geçersiz kuyruk" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Geçersiz hak" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "%1 için geçersiz deÄŸer" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Özel alan için geçersiz deÄŸer" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Yetkisiz kullanıcıların, bu aracı kullanmasını engellemek çok önemlidir." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Bu araca eriÅŸim için, doÄŸru grup üyeliÄŸiyle yetkisiz bir unix kullanıcısı oluÅŸturmanız ve RT eriÅŸimi vermeniz gerekmektedir." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "ÇeÅŸitli argümanlar alır:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "EÄŸik" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Oca" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Tem" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Haz" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Dil" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "GeniÅŸ" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Son" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Son Temas" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Son Temasedilen" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Son Güncelleme" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "SonGüncelleyen" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Kalan" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Bu kullanıcının RT' ye eriÅŸimine izin ver" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Bu kullanıcının yetkiye sahip olmasına izin ver" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Hadi gidelim!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "BaÄŸlantı" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "BaÄŸlantı mevcut" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "BaÄŸlantı bulunamadı" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Bileti baÄŸla #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "DeÄŸerleri baÄŸla:" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "BaÄŸlantılar" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Yükle" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "KaydedilmiÅŸ aramayı yükle:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "YüklenmiÅŸ Perl modülleri" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Konum" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "%1 olarak giriÅŸ yapıldı" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "GiriÅŸ yap" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Çık" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Arama türü eÅŸleÅŸmedi" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Posta" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Yapım Sahibi" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Yapım Durumu" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Yapım Zamanlaması" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Yapma tarihi BaÅŸladı" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Yapma tarihi BaÅŸlangıcı" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Yapım tarihi Belirtilen" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Yapım önceliÄŸi" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Yapım kuyruÄŸu" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Yapım baÅŸlığı" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Özel alanları ve özel alan deÄŸerlerini yönet" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Grupları ve grup üyeliklerini yönet" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Bütün kuyruklara etki eden özellikleri ve ayarları yönetin" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Kuyrukları ve kuyruÄŸa-özel özellikleri yönetin" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Kullanıcıları ve parolaları yönetin" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Üye" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Üye %1 eklendi" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Üye %1 silindi" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Üye eklendi: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Üye Silindi" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Üye Silinemedi" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Üyeler" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "%1 için üyelik eklendi" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "%1 için üyelik silindi" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Üyelikler" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "%1 üyesinin üyelikleri" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "BirleÅŸtirme baÅŸarılı" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "BirleÅŸtirme baÅŸarısız. Etkin Numara atanamıyor" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Åžununla birleÅŸtir:" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "%1 içinde birleÅŸtirildi" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "İleti" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "İleti kaydedilemedi" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "İleti kaydedildi" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Dakika" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "BaÅŸlıca anahtarlardan birisi eksik mi?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Hareketli" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Üyeleri DeÄŸiÅŸtir" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "%1 kuyruÄŸu için bir ÖzelAlanı deÄŸiÅŸtir" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "%1 için, iliÅŸkili nesneleri deÄŸiÅŸtir" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Bilet #%1 için, tarihleri deÄŸiÅŸtir" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Küresel özel alanları deÄŸiÅŸtir" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Küresel grup izinlerini deÄŸiÅŸtir" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Küresel kullanıcı izinlerini deÄŸiÅŸtir" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Grup mal bilgisini deÄŸiÅŸtir veya grubu sil" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Özel alan %1 için grup izinlerini deÄŸiÅŸtir" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "%1 grubu için, grup izinlerini deÄŸiÅŸtir." #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "%1 kuyruÄŸu için, grup izinlerini deÄŸiÅŸtir." #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "KiÅŸinin kendi RT hesabını deÄŸiÅŸtir" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "%1 bileti ile iliÅŸkili kiÅŸileri deÄŸiÅŸtir" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "%1 kuyruÄŸu için senetleri deÄŸiÅŸtir" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Bütn kuyruklara etki eden senetleri deÄŸiÅŸtir" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "%1 ÅŸablonunu deÄŸiÅŸtir" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Bütün kuyruklara etki eden ÅŸablonları deÄŸiÅŸtir" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Varsayılan \"Bir bakışta RT\" görünümünü deÄŸiÅŸtir" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "%1 grubunu deÄŸiÅŸtir" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "%1 kullanıcısını deÄŸiÅŸtir" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "#%1 biletini deÄŸiÅŸtir" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "#%1 biletini deÄŸiÅŸtir" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Biletleri deÄŸiÅŸtir" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Özel alan %1 için kullanıcı haklarını deÄŸiÅŸtir" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "%1 grubu için kullanıcı haklarını deÄŸiÅŸtir" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "%1 kuyruÄŸu için kullanıcı haklarını deÄŸiÅŸtir" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modül" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Pts" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Pazartesi" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Çoklu" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "'Ad' özniteliÄŸi belirtilmeli" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Benim %1 biletim" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Benim Günüm" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Benim Onaylarım" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Benim kaydedilmiÅŸ aramalarım" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Ad" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Kullanımdaki ad" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Asla" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Yeni" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Yeni baÄŸlantılar" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Yeni bekleyen onay" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Yeni arama" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Yeni mesajlar" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Yeni parola" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Yeni parola uyarısı iletildi" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Yeni hatırlatıcı:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Yeni bilet" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Yeni bilet yok" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Yeni gözcüler" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "İleri" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Rumuz" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Rumuz" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Bir sınıf tanımlanmadı" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Özel alan yok" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Özel alan tanımlanmadı" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Grup alan tanımlanmadı" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Sorgu Yok" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Kuyruk tanımlanmadı" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Åžablon Yok" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Eylem Yok" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Sütun belirtilmedi" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Bu kullanıcı hakkında yorum yapılmadı" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "%1 için herhangi bir tanım yok" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Grup belirtilmedi" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Arama kıstaslarıyla örtüşen bir grup bulunamadı." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Herhangi bir ileti eklenmedi" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Herhangi bir parola atanmadı" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Kuyruk oluÅŸturmak için gerekli yetki yok" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "%1 kuyruÄŸunda bilet oluÅŸturmak için gerekli yetki yok" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Bu bileti görüntülemek için gerekli yetki yok" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Sistem genelinde yapılan aramaları kaydetmek için gerekli yetki yok" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Bilet güncellemeyi görüntülemek için gerekli yetki yok" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Herhangi bir yetkili seçilmedi" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Arama kıstaslarıyla örtüşen bir kuyruk bulunamadı." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Herhangi bir yetki bulunamadı" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "İşlenecek bir arama bulunamadı" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Konu yok" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Aktarım türü belirtilmedi" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Arama kıstaslarıyla örtüşen herhangi bir kullanıcı bulunamadı." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Hiçkimse" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Varolmayan Alan?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Bulunamadı" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "GiriÅŸ yapılmadı" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Atanmadı" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Notlar" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Uyarı gönderilemiyor" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Yönetici Kk' ları bildir" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Yönetici Kk' ları yorum olarak bildir" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Kk' ları bildir" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Kk' ları yorum olarak bildir" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "DiÄŸer alıcıları uyar" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "DiÄŸer alıcıları yorum olarak uyar" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Sahibi uyar" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Sahibi yorum olarak uyar" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Sahipleri, reddedilen biletleri hakkında uyar" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Onaylanmayı bekleyen yeni öğeler hakkında sahipleri ve Yönetici Kk' ları uyar" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "İstekçileri Uyar" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "İstekçileri ve Kk' ları uyar" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "İstekçileri ve Kk' ları yorum olarak uyar" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Kas" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "VEYA" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Nesne" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Nesne oluÅŸturulamıyor" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Nesne silinemiyor" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Nesne oluÅŸturuldu" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Nesne silindi" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Nesne türü eÅŸleÅŸmiyor" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Eki" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "%1 tarihinde, %2 yazdı:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "" #: etc/initialdata:170 msgid "On Comment" msgstr "Yorumda" #: etc/initialdata:142 msgid "On Correspond" msgstr "Cevapta" #: etc/initialdata:131 msgid "On Create" msgstr "OluÅŸturmada" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Sahiplik deÄŸiÅŸiminde" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Öncelik deÄŸiÅŸiminde" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Kuyruk deÄŸiÅŸiminde" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "" #: etc/initialdata:205 msgid "On Resolve" msgstr "Çözümde" #: etc/initialdata:176 msgid "On Status Change" msgstr "Durum deÄŸiÅŸikliÄŸinde" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Harekette" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Sadece %1 sonrası oluÅŸturulmuÅŸ isteklere ait onayları göster" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Sadece %1 öncesi oluÅŸturulmuÅŸ isteklere ait onayları göster" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Sadece ÅŸunun için özel alanları göster:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Biletleri Aç" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "URL Aç" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Biletleri aç" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Cevap geldiÄŸinde biletleri aç" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Seçenek" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Seçenekler" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sıralama:" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Kurum" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Kaynak alınan bilet: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Bir yorum hakkındaki giden eposta kaydedildi" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Giden eposta kaydedildi" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Biletleri sahiplen" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Sahip" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Sahip, zorla %1 den %2 ye deÄŸiÅŸtirildi" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Sayfa" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "Sayfa bulunamadı" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Sayfalayıcı" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Ana bölüm" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Parola" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Parola deÄŸiÅŸti" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Parola en az %1 karakter uzunluÄŸunda olmalı" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Parola atandı" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Parola: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Parola: İzin Reddedildi" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Parolalar eÅŸleÅŸmiyor" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "KiÅŸiler" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Kullanıcı tanımlı bir eylemi yerine getir" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl ayarları" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Pääsy kielletty" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "İzin Reddedildi" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefon numaraları" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Tercihler" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "%1 için tercihler kaydedildi" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Tercihler kaydedildi." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Küt hazırla" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Önceki" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "%1 yetkilisi bulunamadı" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Bu mesajı yazdır" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Öncelik" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Gizlilik" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Gizlilik:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Ayrıcalıklı" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Ayrıcalık durumu: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Ayrıcalıklı kullanıcılar" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "İç kullanım için sahte grup" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Sorgular" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Sorgu" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Sorgu OluÅŸturucu" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Kuyruk" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "%1 kuyruÄŸu bulunamadı" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Kuyruk adı" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Kuyruk halihazırda mevcut" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Kuyruk oluÅŸturulamıyor" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Kuyruk yüklenemiyor." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Kuyruk oluÅŸturuldu" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Kuyruk bulunamadı" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Kuyruklar" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "YönettiÄŸim kuyruklar" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Yönetici Kk olduÄŸum kuyruklar" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Hızlı arama" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Hızlı bilet oluÅŸturumu" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT Yönetimi" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT Hatası" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "Bir bakışta RT" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "%1 kullanıcısı için bir bakışta RT" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT, bu özel alanı gösterirken, diÄŸerbir aÄŸ hizmetinden içerik ekleyebilir" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT, bu özel alanın deÄŸerlerini, diÄŸer bir hizmetin hiperbaÄŸlantılarına dönüştürebilir." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "%1: RT" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT, %1 ve %2 deÄŸerlerini, kayıt numarası ve özel alan deÄŸeri ile deÄŸiÅŸtirecektir" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Gerçek Ad" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Tüm güncellemeleri kaydet" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "%1 ile baÅŸvuru eklendi" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "%1 ile baÅŸvuru silindi" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "%1 için baÅŸvuru eklendi" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "%1 için baÅŸvuru silindi" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Kaynak gösteren:" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Kaynak gösterdiÄŸi:" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Yenile" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Bu sayfayı, her %1 dakikada bir yenile" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "'%1' hatırlatıcısı eklendi" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "'%1' hatırlatıcısı tamamlandı" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "'%1' hatırlatıcısı tekrar açıldı" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Hatırlatıcılar" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "#%1 bileti için hatırlatıcılar" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Yönetici Kk Kaldır" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Yer İmini Kaldır" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Kk kaldır" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "İstekçi kaldır" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Yanıtla" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Yanıtlama Adresi" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "İstekçileri Yanıtla" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Biletleri Yanıtla" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "İstekçi" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "İstekçiler" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Gerekli parametre '%1' belirtilmedi" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Sıfırla" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Varsayılana sıfırla" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Hane" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Çöz" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "#%1 biletini çözümle (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Çözüldü" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Sonuçlar" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Parolayı tekrar yazın" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Eskiye dön" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Yetki Yüklendi" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Yetki geri alınamıyor" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Yetki yüklenemedi" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Yetkiler %1 için verilemiyor" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Roller" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Kutu başına satır" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Sayfa başına satır" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Cts" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Cumartesi" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Kaydet" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "DeÄŸiÅŸiklikleri Kaydet" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Tercihleri Kaydet" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Yeni olarak Kaydet" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Senet #%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Senet oluÅŸturuldu" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Senetler" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Arama" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Arama Tercihleri" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Onayları ara" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Biletleri ara" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Arama tercihleri" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "Güvenlik:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Bakınız:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Seç" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Veritabanı Türünü Seçin" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Özel bir alanı seç" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Bir grubu seç" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Bir kuyruÄŸu seç" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Yeni biletiniz için bir kuyruk seçin" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Bir kullanıcı seçin" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "BaÅŸka bir dil seçin" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Bütün kullanıcı grupları için özel alanları seçin" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Bütün kullanıcılar için özel alanları seçin" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Bütün kuyruklardaki biletler için özel alanlar seç" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Bütün kuyruklardaki biletlerin hareketleri için özel alanlar seçin" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Çoklu deÄŸer seçin" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Bir deÄŸer seçin" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "\"Bir bakışta RT\" sayfasında görüntülenecek kuyrukları seçin" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "En çok %1 adet deÄŸer seçin" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Seçili özel alanlar" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Seçili nesneler" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Seçimler deÄŸiÅŸti. Lütfen deÄŸiÅŸikliklerinizi kaydedin" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "İstekçilere ve Kk' lara posta gönder" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "İstekçilere ve Kk' lara yorum olarak posta gönder" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "İstekçilere posta gönderir" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "BelirtilmiÅŸ Kk ve GKk listesine posta gönderir" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Kk' lara posta gönderir" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Kk' lara yorum olarak eposta gönderir" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Yönetimsel Kk' lara eposta gönderir" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Yönetimsel Kk' lara yorum olarak eposta gönderir" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Sahibe posta gönderir" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Eyl" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Ayarlar" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Göster" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Sütunları göster" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Sonuçları Göster" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Onaylanmış istekleri göster" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "ReddedilmiÅŸ istekleri göster" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Bekleyen istekleri göster" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "DiÄŸer onayları bekleyen istekleri göster" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Bilet istekçisi veya bilet veya kuyruk Kk olarak yazılın" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Bilet veya kuyruk Kk olarak yazılın" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "İmza" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Basit Arama" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Tekil" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Site adı" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Boyut" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Menüyü Geç" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Küçük" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Bazı gezginler, sadece aynı alan adından (RT sunucunuz gibi) içerik yükleyebilirler." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sırala" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Kaynak" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "AÅŸama" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "BaÅŸlangıcı" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "BaÅŸlayacak" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Durum" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "Durum" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "Durum DeÄŸiÅŸikliÄŸi" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Çal" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Biletleri Çal" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "%1 den çalındı" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Biçem" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Konu" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Konu deÄŸiÅŸti: %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Gönder" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Abone ol" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Abonelik" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Pzr" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Pazar" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "Sistem" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Sistem Ayarları" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Sistem Hatası" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Sistem Hatası: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Sistem Araçları" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Sistem hatası. Yetki verilemedi." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "İç kullanım için SistemRolGrubu" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Al" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Biletleri al" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Alındı" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Åžablon" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Åžablon #%1 silindi" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Åžablon boÅŸ" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Åžablon gerekli bir argüman" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Åžablon ayrıştırıldı" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Åžablon ayrıştırma hatası" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Åžablonlar" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Bu, zaten ÅŸimdiki deÄŸer" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Bu, bu özel alan için bir deÄŸer deÄŸil" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Bu bilet, çözümlenmemiÅŸ bağımlılıklara sahip" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Bu kullanıcı, zaten bu biletin sahibi" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Bu kullanıcı bulunamadı" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Bu kullanıcı zaten yetkili" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Bu kullanıcı zaten yetkisiz" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Bu kullanıcı ÅŸu anda yetkilendirildi" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Bu kullanıcı artık yetkisiz" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Bu kullanıcı, bu kuyruktaki biletleri sahiplenemez" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Bu, sayısal bir kimlik deÄŸil" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Temeller" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "Bir biletin KK' sı" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "Bir biletin yönetimsel KK' sı" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Yeni deÄŸer atandı." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Bir biletin sahibi" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Bir biletin istekçisi" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Bu özellik, sadece sistem yöneticileri tarafından kullanılabilir" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Bu araç, kullanıcının RT içinden keyfi perl modüllerini çalıştırabilmesine olanak verir." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Bu hareketin bir içeriÄŸe sahip olmadığı gözüküyor" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "PrÅŸ" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "PerÅŸembe" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Bilet" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Bilet #%1 Büyük güncelleme: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Bilet #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Bilet %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Bilet %1, '%2' kuyruÄŸunda oluÅŸturuldu" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Bilet %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Bilet geçmiÅŸi # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Bilet Çözümlendi" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Bilet Arama" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Bilet Hareketleri" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Bilet oluÅŸturuldu" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Bilet içerik türü" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Bir iç hata nedeniyle, bilet oluÅŸturulamadı" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Bilet özel bilgisi" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Bilet durumu deÄŸiÅŸti" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "BiletSQL arama modülü" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Biletler" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Bu onaya dayanan biletler:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Tahmini Süre" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Kalan Süre" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Çalışılan Süre" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Gösterilecek süre" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "ÇalışılanSüre" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "BaÅŸlık" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Destek hakkında soru sormak için, kiÅŸisel geliÅŸtirim veya lisanslama için, lütfen %1 ile temasa geçin." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Söylendi" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Araçlar" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Toplam" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "Hareket" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Hareket %1 tasfiye edildi" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Hareket OluÅŸturuldu" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Hareket Özel Alanları" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create gerçekleÅŸtirilemedi, çünkü bir nesne türü ve kimliÄŸi belirtmediniz" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Hareketler deÄŸiÅŸemez" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Sal" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Salı" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tür" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Unix giriÅŸi" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Bilinmeyen İçerikKodlaması %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Bilinmeyen alan: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Limitsiz" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Sınırsız" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Adlandırılmamış arama" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Yetkisiz" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "SeçilmemiÅŸ Özel Alanlar" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "SeçilmemiÅŸ nesneler" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Alınmamış" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Güncelle" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Bileti Güncelle" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Türü Güncelle" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Birden çok bileti güncelle" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Güncelleme kaydedilmedi" #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Bileti güncelle" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Bileti güncelle: #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Bileti güncelle: #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Güncelleme türü cevap veya yorum deÄŸildi." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Güncellendi" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Yükle" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Çoklu dostya yükle" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Çoklu resim yükle" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Tek bir dosya yükle" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Tek bir resim yükle" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "En çok %1 dosya yükle" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "En çok %1 resim yükle" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "DiÄŸer RT yönetimsel araçlarını kullan" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Kullanıcı" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Kullanıcı Tanımlandı" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Kullanıcı Hakları" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Kullanıcı oluÅŸturulamıyor: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Kullanıcı oluÅŸturuldu" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Kullanıcı yüklendi" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Kullanıcı-tanımlı gruplar" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Kullanıcı adı" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Kullanıcılar" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Arama kıstaslarıyla eÅŸleÅŸen kullanıcılar" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Hareket #%1 kullanılıyor..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Geçerli Sorgu" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Geçerlilik" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "DeÄŸer" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "DeÄŸerler" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Sürüm" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Uyarı! Bu İMZALANMADI!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "İzleyici" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Gözcüler" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "ÇrÅŸ" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "ÇarÅŸamba" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "RT'ye HoÅŸgeldiniz!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Bugün ne yaptım" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "RT Nedir?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Bir bilet oluÅŸturulduÄŸunda" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Bir onay bileti oluÅŸturulduÄŸunda, sahibi ve YöneticiKk' yı, nesnenin onaylarını beklediÄŸi konusunda uyar" #: etc/initialdata:137 msgid "When anything happens" msgstr "Herhangi bir ÅŸey olduÄŸunda" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Bir bilet çözümlendiÄŸinde" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Bir biletin sahibi deÄŸiÅŸtiÄŸinde" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Bir biletin önceliÄŸi deÄŸiÅŸtiÄŸinde" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Bir biletin kuyruÄŸu deÄŸiÅŸtiÄŸinde" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Bir biletin durumu deÄŸiÅŸtiÄŸinde" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Kullanıcı tanımlı bir durum oluÅŸtuÄŸunda" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Bir yorum geldiÄŸinde" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Cevap geldiÄŸinde" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Çalışma" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Çalışıldı" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Evet" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Bu biletin sahibi zaten sizsiniz" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Öntanımlı aramanın kendisinide deÄŸiÅŸtirebilirsiniz" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Sahibi olduÄŸunuz veya sahipsiz biletleri tekrar tahsis edebilirsiniz" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Sadece sahibi olmadığınız biletleri alabilirsiniz" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "RT' den çıkış yaptınız" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Bu kuyrukta bilet oluÅŸturmaya yetkiniz yok." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Tekrar giriÅŸ yapabilirsiniz" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Kullanıcı adınız veya parolanız yanlış" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Posta Kodu" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "Sonra" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "Önce" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "silindi" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "eÅŸittir" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "hata: aÅŸağı gidemiyorum" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "hata sola gidemiyorum" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "hata yukarı gidemiyorum" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "hata: silinecek bir ÅŸey yok" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "hata: taşınacak bir ÅŸey yok" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "hata: deÄŸiÅŸtirecek bir ÅŸey yok" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "büyüktür" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "grup %1" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "numara" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "aynıdır" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "aynı deÄŸildir" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "azdır" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "eÅŸleÅŸir" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "yeni" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "hiçbiri" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "eÅŸit deÄŸildir" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "Tarih:" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "açık" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "" #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "kuyruk %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "reddedildi" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "çözüldü" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "savsaklandı" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "özet satırları" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "sistem %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "sistem grubu '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "çağıran bileÅŸen, nedenini belirtmedi" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "bilet #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "betimlenmemiÅŸ grup %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "Kullanıcı" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "kullanıcı %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "kullanıcı adı" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "haftalık" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "hafta" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "evet" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/pt.po0000664000175000017500000122345213131430353014546 0ustar vagrantvagrant# Portuguese translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 10:08+0000\n" "Last-Translator: Shawn M Moore \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 adicionado" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 alterado para %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 apagado" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 apagado." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 gravado." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 actualizado." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 com template %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) por %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (inalterado)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (do painel %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Ajustar opção de configuração LogToSTDERR" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Um argumento a passar a %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Actualização do estado dos Output para STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Epecificar se quer utilizar 'primeira', 'ultima' ou 'todas' as transações" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Especifique o nome ou ID do(s) template(s) que pretende usar" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Especificar a lista de tipos de transacções, separada por virgulas, que quer usar" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Especificar o modulo de condições que quer usar" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Especifique o módulo de pesquisa a utilizar" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 adicionado como valor para %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 já existe e tem as tabelas do RT, mas não contém os metadados. O passo 'Initialize Database' a executar posteriormente pode inserir os metadados nesta tabela. Se é aceitável, clique em 'Customize Basics' abaixo para continuar a customizar o RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 já existe, mas não contem as tabelas do RT, nem contém os metadados. O passo 'Initialize Database' a executar posteriormente pode inserir os metadados e tabelas nesta tabela. Se é aceitável, clique em 'Customize Basics' abaixo para continuar a customizar o RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 parece ser um objecto local, mas não está na base de dados" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 parece estar totalmente inicializado. Não é necessario criar tabelas ou inserir metadados, mas pode continuar a personalizar o RT clicando 'Personalização base' abaixo" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 por %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 alterado de %2 para %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 alterado de '%2' para '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "cópia %1" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 configuração de raiz" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 não pôde ser definido para %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 criado" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 apagado" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 inactivo" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 não existe" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 activo" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 tickets com maior prioridade da minha responsabilidade" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 é uma ferramenta para manipular tickets através de uma ferramenta externa, como por exemplo o cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 é um utilitário, para ser corrigo num cron, envia todas as notificações RT por utilizador." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 é um endereço no qual o RT recebe email. Adicioná-lo como '%2' criaria um loop de email." #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 já não é um valor para campo personalizado %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 artigos actualizados mais recentemente" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 artigos mais recentes" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 tickets mais recentes sem responsável atribuído" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objectos" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 configuração do site" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 actualizado: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 actualizado: nenhumas alterações" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 actualizado" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "objectos %2 de %1" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "objectos %1's %2's %3" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "Palavra-passe atual de %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1's paineis" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "Pesquisas gravadas de %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: anexo não especificado" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Novo Pedido em%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,hora)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' não é um nome válido." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' não é um identificador de classe válido" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Seleccione caixas para completar)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Seleccione caixa para apagar)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Seleccione caixas para apagar)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Insira identificadores de tickets, separados por espaços)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Por omissão será %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Sem campos personalizados)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Sem membros)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Sem scrips)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Sem templates)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Envia uma fotocopia desta actualização para uma lista separada por virgulas de endereços de email . Estas pessoas passam a receber futuras actualizações.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Envia uma fotocopia desta actualização para uma lista separada por virgulas de endereços de email . Estas pessoas passam a receber futuras actualizações.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Use estes campos quando escolher'Definido pelo Utilizador' para uma condição ou Acção)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(qualquer)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(sem resumo)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(sem nome)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(Sem chave pública!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(sem valor)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(sem valores)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(pendente %quant(%1,outros ticket))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(aprovação pendente)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(obrigatório)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(confiar: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(sem título)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(não confiavel!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id não é um argumento recomendado e não pode ser usado com --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--argumento da transação apenas pode ser 'first', 'last' or 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "Template em branco" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Password não foi definida, portanto o utilizador não vai conseguir efectuar login." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE não encontrado" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "Os ACEs apenas podem ser criados e eliminados" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "E" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Acerca" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Controle de Acesso" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Acção" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Acção '%1' não encontrada" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Acção efectuada" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Acção é argumento obrigatório" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Acção preparada..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Acções" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Tickets activos" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Tickets activos de %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Adicionar um %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Adicionar AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Adicionar Bookmark" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Adicionar Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Adicionar colunas" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Adicionar critérios" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Adicionar mais ficheiros" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Adicionar Requerente" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Adicionar Valor" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Adicionar comentários ou respostas aos tickets seleccionados" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Adicionar grupo" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Adicionar membros" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Adicionar novos watchers" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Adicionar direitos para este %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Adicionar estes termos" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Adicionar estes termos e Pesquisar" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Adicionar utilizador" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Adicionar valores" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Adicionar, modificar ou alterar valores de campos personalizados dos objectos" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Morada" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Endereço 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Morada (1)" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Morada (2)" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Comentário de Admin" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Correspondência Admin" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Queues do Administrador" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Configurações do Administrador/Globais" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Palavra-Chave Administrativa" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Avançado" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Pesquisa Avançada" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Agregador" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Todas as aprovações tratadas" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Todos os artigos nesta classe devem ser listados na página de resposta do incidente" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Todas as classes" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Todos os painéis" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Todas as Queues" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Todos os tickets" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Todas as feeds iCal embebem um token privado que o autorizam. Se o URL de um dos seus feeds iCal foi exposto ao exterior, pode ter um novo token privado ao quebrar as feeds existentes." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Todas as queues que satisfazem os critérios de pesquisa" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Todos os tickets" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Todos os tópicos" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Permitir criação de pesquisas gravadas" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Permitir carregar pesquisas gravadas" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Permitir escrita de código Perl em templates, scrips, etc" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Já encriptado" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "E/Ou" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Qualquer campo" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Qualquer palavra não reconhecida pelo RT é procurada no assunto dos incidentes." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Aplica-se a" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Aplica-se a todos os objetos" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Aplicar" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Aplicar globalmente" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Aplicar as alterações" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Aprovação" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Aprovação #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Aprovação #%1: Notas não guardadas devido a um erro no sistema" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Aprovação #%1: Notas guardadas" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Aprovação Concedida" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Aprovação pronta para o dono" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Aprovação rejeitada" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Aprovar" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Abr" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Artigo #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Artigo %1 criado" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Administração de artigos" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artigo não encontrado" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Artigos" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Artigos em %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Artigos que correspondem a %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artigos sem tópicos" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Atribuir e remover campos personalizados de uma queue" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Anexar" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Anexar ficheiro" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Ficheiro anexado" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Anexo" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Anexo '%1' não foi carregado" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Anexo criado" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Nome do anexo" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Anexos" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "A encriptação dos anexos está inactiva" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Atributo eliminado" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Ago" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Cores do tema automaticamente sugeridos não estão disponíveis para a sua imagem. Poderá ser porque carregou um tipo de imagem que a versão de GD instalada não suporta. Tipos suportados são: %1. Pode recompilar a libgd e o GD.pm para incluir suporte para outros tipos de imagem." #: etc/initialdata:261 msgid "Autoreply" msgstr "Resposta automática" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Resposta automática para utilizadores" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Disponível" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Retroceder" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Privacidade incorrecta para atributo %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Informação básica" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Vazio" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Corpo" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Negrito" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Marcador" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Endereço directo para esta procura" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Tarefas marcadas" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Incidentes marcados" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Analisar por tópico" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Analisar queries SQL criadas neste processo" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Actualização em bloco" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "CCGroupo" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Não é possível carregar pesquisa gravada %1" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Não é possível alterar utilizadores de sistema" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Não se pode adicionar um campo personalizado sem designação" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Impossível encontrar a pesquisa gravada definida" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Não é possível ligar um ticket a si próprio" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Não consigo gravar %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Não é possível gravar esta pesquisa" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Não foi possível adicionar um atalho a um número simples" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Não se pode criar tarefas numa queue inactiva" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Categorias são baseadas em" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Categoria" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Modificar" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Alterar estado do incidente para estado aberto" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Alterar senha" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Gráfico" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Seleccionar Todos" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Testar Conectividade com BD" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Verifique as credenciais da base de dados" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Seleccione caixa para apagar" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Filhos" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Seleccione o motor da base de dados" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Escolha de tópicos para %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Cidade" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Classe" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Nome da Classe" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "A classe não pôde ser criada: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Identificador da Classe" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "A Classe já está aplicada globalmente" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "A Classe já está aplicada a %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Limpar" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Limpar Tudo" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Clique em \"Finalizar instalação\" para completar este assistente" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Clique em \"Iniciar base de dados\" para criar a base de dados do RT e inserir os metadados iniciais. Pode demorar alguns minutos." #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Fechado" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Tickets fechados" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Seleccione ou insira valores múltiplos" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Seleccione ou insira um valor" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Seleccione ou insira até %1 valores" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Comentário" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Morada de Comentário" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Endereço do comentário" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Comentar tickets" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Comentários" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Comentários (não so enviados para utilizadores)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Comentários sobre este utilizador" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Comentários adicionados" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Condição" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Condição '%1' não encontrada" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Condição é argumento obrigatório" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Condição corresponde..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Condição, Acção e Modelo" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Ficheiro de configuração %1 está trancado" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Configuração da queue %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Ligação efectuada com sucesso" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Conteúdo" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Conteúdo é um endereço IP inválido" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Conteúdo é uma gama de endereços IP inválida" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tipo de Conteúdo" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "TipoConteudo" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Morada de correspondência" #: etc/initialdata:393 msgid "Correspondence" msgstr "Correspondência" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Correspondência adicionada" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Não foi adicionado o valor do campo personalizado: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Não foi alterado o dono: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Não foi criado o campo personalizado: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Não foi possível criar o grupo" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Não foi possível criar pesquisa: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Não é possível criar pedido. Especifique uma fila." #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Não foi possível criar utilizador" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Não foi possível apagar pesquisa %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Não foi carregado o atributo %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Não foi possível carregar Classe %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Não foi carregado o campo personalizado %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Grupo não foi carregado" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Não doi carregado o objecto para %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Não consegui definir informações de utilizador" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Não foi possível adicionar anexo" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Não foi possível adicionar membro a grupo" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Impossivel compilar %1 o codeblock '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Impossivel compilar %1 o modelo do codeblock '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Não foi possível criar uma transacção: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Não foi possível criar o registo: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Não foi possível apagar painel %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Linha não encontrada" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Não foi encontrada a transacção adequada, saltar" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Não foi possível encontrar grupo/utilizador" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Não foi encontrado o valor" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Não foi carregada a classe %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Não foi carregado o campo personalizado #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Não foi possível carregar o Campo Personalizado #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Não foi carregado o campo personalizado %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Não foi carregada a cópia da tarefa #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Não foi carregado o painel %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Não foi carregado o grupo #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Não foi carregado o grupo %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Não foi carregado o link" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Não foi carregado o objecto %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Não foi carregado nem adicionado o utilizador: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "A queue não foi carregada" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "A queue #%1 não foi carregada" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "A queue %1 não foi carregada" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "A queue '%1' não foi carregada" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "O script #%1 não foi carregado" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "O template #%1 não foi carregado" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Não foi possível carregar o ticket '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Não foi possível carregar a transacção #'%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Não foi possível carregar o utilizador" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Não foi possivel carregar o utilizador #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Não foi possível carregar utilizador #%1 ou utilizador '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Não foi possível carregar utilizador '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Não foi substituído o conteúdo com dados desencriptados: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Não foi substituído o conteúdo com dados encriptados: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Não foi possivel resolver base'%1' no URI" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Não foi possivel resolver target '%1' no URI" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Não foi possivel definir %1 watcher: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Não foi possível definir chave privada" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "País" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Criar" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Criar tickets" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Criar uma Classe" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Criar um campo personalizado" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Criar um campo personalizado para a queue %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Criar um novo artigo" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Criar um novo artigo em" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Criar um novo painel" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Criar novo grupo" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Criar um novo template para a queue %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Criar novo utilizador" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Criar queue" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Criar template" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Criar ticket" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Criar um artigo" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Criar um artigo na classe..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Criar artigos nesta classe" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Criar Paineis de Grupo" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Criar novo pedido baseado num template existente" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Criar paineis pessoais" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Criar paineis de sistema" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Criar ticket" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Criar Tickets" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Criar, modificar e apagar entradas na ACL" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Criar, modificar e apagar campos personalizados" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Criar, modificar e apagar valores de campos personalizados" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Criar, modificar e apagar queue" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Criar, modificar e apagar pesquisas gravadas" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Criar, modificar e apagar utilizadores" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Criado" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Criado por" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Campo Personalisado %1 criado" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Criado por" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Pesquisa %1 criada" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "CriadoPor" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "CriadoRelativo" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Autor" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Criptografia" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Links actuais" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Pesquisa Actual" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Membros actuais" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Pesquisa actual" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Observadores actuais" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Campos Personalizados" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Campos Personalizados para %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Campos personalizados da queue %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Código de preparação específico" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Condição personalizada" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "O campo personalizado #%1 não se aplica a este objecto" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Campo personalizado %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "O campo personalizado %1 não se aplica a este objecto" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Campo personalizado %1 tem um valor." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Campo personalizado %1 não tem valores" #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Campo personalizado %1 não encontrado" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "O valor do campo personalizado %1 não foi encontrado para o campo personalizado %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "O valor do campo personalizado não pode ser eliminado" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "O valor do campo personalizado foi eliminado" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CampoPerson" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "ValorCampoPerson" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Personalizar" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Personalizar Básico" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Personalizar endereços de email" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Personalizar configurações de email" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Configurar o aspecto do RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Palavra-Chave do DBA (Administrador da Base de Dados)" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Nome de utilizador do DBA (Administrador da Base de Dados)" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Compilação diária" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Painel" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Painel não pode ser criado: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Painel não pode ser actualizado: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Painel actualizado" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Painéis" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Anfitrião do painel" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nome da Base de Dados" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Palavra-Chave da Base de Dados para o RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Porta da Base de Dados" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tipo da Base de Dados" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Nome do utilizador da Base de Dados para o RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Formato da data" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Datas" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dez" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Desencriptar" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Queue predefinida" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Predefinição: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Predefinição: %1/%2 alterado para %3 to %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "FormatoDefault" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Apagar" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Apagar template" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Eliminação falhou: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Apagar painéis de grupo" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Operação de eliminação está desabilitada pela configuração do ciclo de vida" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Eliminar painéis pessoais" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Eliminar painéis de sistema" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Apagar tickets" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Apagar valores" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "%1 Eliminado" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Eliminar consultas" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Eliminar pesquisa guardada" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Pesquisa %1 apagada" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "A eliminação deste objecto irá quebrar a integridade referencial" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "A eliminação deste objecto irá violar a integridade referencial" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Negar" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Dependido por" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "DependidoPor" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Dependência por %1 adicionada" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Dependência por %1 eliminada" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Dependência de %1 adicionada" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Dependência de %1 eliminada" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "DependenteDe" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Depende de" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "DependeDe" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Descreva o pedido, abaixo" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Descrição" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Informação detalhada sobre a sua configuração do RT" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Detalhes" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Direcção" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Inactivo" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Mostrar" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Visualizar lista de controlo de acessos" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Mostrar Artigo %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Visualizar Colunas" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Distribuído sobre a %1versão 2 da GNU GPL%2" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Fazer qualquer coisa e tudo" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Nome do domínio" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Não incluir http://, apenas algo como 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Não actualize página incial" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Não actualize resultados da pesquisa" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Não actualizar (refrescar) esta página" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Não confiar nesta chave" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Descarregar" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Descarregar ficheiro" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Prazo" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "ERRO: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Actualização simples das suas tarefas abertas" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Vista facilitada dos lembretes" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Editar" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Editar Campos Personalizados" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Editar Campos Personalizados de %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Editar Campos Personalizados para todos os grupos" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Editar Campos Personalizados para todas as queues" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Editar Campos Personalizados para todos os utilizadores" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Editar Campos Personalizados para artigos em todas as classes" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Editar \"Campos Personalizados\" para todos os pedidos" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Editar ligações" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Editar Consulta" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Editar Pesquisa" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Editar hierarquia global de tópicos" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Editar templates de sistema" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Editar hierarquia de tópicos de %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "A editar campo personalizado %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "A editar membros para o grupo %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "IdEfectivo" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Base ou alvo devem ser especificados" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Ou não tem direitos para visualizar a pesquisa guardada %1 ou o identificador está incorrecto" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "Correio Electrónico" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Endereço de e-mail" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "E-mail Compilação" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Endereço de email já utilizado" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Entrega por e-mail" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Template de email para notificações periódicas" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "EndereçoEmail" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Activo" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Activo (Deseleccionar esta caixa desactiva esta classe)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Activo (remover selecção desta caixa desactiva este campo)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Activo (remover selecção desta caixa desactiva este grupo)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Activo (remover selecção desta caixa desactiva esta queue)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Classes Activas" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Queues activas" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Queues activas que correspondem ao critério de pesquisa" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Estado activo %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Enciptar" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Enciptar por predefinição" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Encriptar/Desencriptar" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Encriptar/Desencriptar transacção #%1 de tarefa #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Insira artigos, tickets ou outros URLs relacionados com este artigo" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Insira múltiplas gamas de endereços IP" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Insira múltiplos endereços IP" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Introduzir múltiplos valores" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Introduza múltiplos valores com completação automática" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Introduzir objectos ou URLs para ligar os objectos. Separar as entradas múltiplas com espaços." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Insira um endereço IP" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Insira uma gama de endereços IP" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Inserir um valor" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Introduza um valor com completação automática" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Escreva as filas ou URIs para ligar as filas. Separe várias entradas com espaços." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Escreva o número dos pedidos ou URIs para ligar os pedidos. Separe várias entradas com espaços." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Insira tempo (em horas) por omissão" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Insira até %1 gamas de endereços IP" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Insira até %1 endereços IP" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Inserir até %1 valores" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Introduza até %1 valores com completação automática" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Erro" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Erro RT: Chave Pública" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Erro: Painel em falta" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Erro: Dados GnuPG errados" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Erro: não consegui carregar a pesquisa gravada %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Erro: Não existe chave privada" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Erro: Chave Pública" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Erro: pesquisa %1 não foi actualizada: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Escalar Tickets" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Estimado" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Todos" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Exemplo:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Expirar" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Autenticação externa activa" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Informação adicional" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Extrair Artigo" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Extrair marca de Assunto" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Extrair um novo artigo do ticket #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Extrair artigo do ticket #%1 na classe %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extrair marcas do assunto de uma transacção e adicioná-las ao assunto do Ticket." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Falta ao ligar a base de dados: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Falta ao criar atributo %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Não foi encontrado peseudogrupo dos utilizadores \"Privilegiados\"" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Não foi encontrado peseudogrupo dos utilizadores \"Não Privilegiados\"" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Falha ao carregar %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Falha ao carregar %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Falta ao carregar módulo %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Falha ao carregar objecto para %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Falha ao carregar template" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Fev" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Campo" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Fonte dos valores do campo" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Ficheiro" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Preencher argumentos" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Preenche as caixas com cores usando" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Preencher múltiplas áreas de texto" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Preencher múltiplas caixas de wikitext" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Preencher uma área de texto" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Preencha uma área de texto wiki" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Preencha este campo com um URL" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Preencha até %1 áreas de texto" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Preencher até %1 caixas de wikitext" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Prioridade final" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "PrioridadeFinal" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Procurar todos os utilizadores cujo" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Encontrar grupos cujo" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Encontrar pessoas cujo" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Encontrar tickets" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Impressão digital" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Terminar" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Primeiro" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Forçar alteraçao" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formato" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Encaminhar" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Encaminhar Mensagem" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Encaminhar Mensagem e Voltar" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Encaminhar Ticket" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Encaminhar mensagens fora do RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Encaminhar ticket #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Encaminhar transacção #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Ticket encaminhado para %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Objecto Encontrado" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frequência" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Sex" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Sexta" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "De" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "O GD não está activo, ou não foi instalado. Pode carregar uma imagem, mas não vai receber sugestões automáticas de cor." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Geral" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Direitos Gerais" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Introdução" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Atribuído a %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Atributos Globais" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Tópicos Globais" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Configuração gloval dos campos personalizados" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Portlet global %1 guardado" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Ir" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Ir para o grupo" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Ir para utilizador" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Ir!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Ir para Ticket" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Ir para ticket" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Gráfico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Propriedades do Gráfico" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Gráficos não estão disponíveis" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Grupo" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Direitos do grupo" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "O grupo já tem um membro: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Grupo não pôde ser criado: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Grupo criado" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Grupo inactivo" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Grupo activo" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "O grupo não tem esse membro" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Grupo '%1' já existe" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Grupo não encontrado" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupos" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Grupos não podem ser membros dos seus membros" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Grupos que preenchem critérios" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Grupos a que este utilizador pertence" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "TemMembros" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Cabeçalho de um ticket redirecionado" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Cabeçalho de uma mensagem redirecionada" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Olá!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Ajude-nos a definir predefinições úteis para o RT" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Esconde todo o texto citado" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Esconder texto marcado" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Histórico" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Histórico do artigo #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Histórico do grupo %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Histórico da queue %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Histórico do utilizador %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Telefone de Casa" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Intervalo de actualização da página de ínicio" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Página inicial" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Hora" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Horas" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identidade" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Se uma aprovação é rejeitada, rejeite a original e elimine aprovações pendentes" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Se esta ferramenta fosse setgid, um utilizador local hostil poderia usá-la para ter acesso de administrador ao RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Se já tem um servidor RT e base de dados funcionais, deveria aproveitar a oportunidade para se assegurar que o seu servidor de base de dados está a correr e que o servidor do RT consegue-se ligar a ele. Depois disto, pare e inicie o servidor do RT.

    " #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Se alterou o Porto em que o RT está a correr, será necessário reiniciar o servidor para voltar a fazer login." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Se actualizou algo acima, clique em" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Se a sua base de dados escolhida não está listada abaixo, significa que o RT não conseguiu encontrar um driver /i> para a mesma instalada localmente. Pode contornar este problema ao usar %1 para descarregar e instalar DBD::MySQL, DBD::Oracle ou DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Valor ilegal para %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Campo imutável" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Tickets inactivos" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Incluir Artigo:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Incluir classes inactivas na listagem" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Incluir campos personalizados inactivos na listagem." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Incluir grupos desactivados na listagem" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Incluir queues desactivadas na listagem" #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Incluir utilizadores desactivados na listagem" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Incluir página" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Incluir subtópicos" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Mensagens individuais" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informar dono do RT que utilizadores estão com problemas com chaves públicas" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informar utilizador que o painel que ele subscreveu está em falta" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informar utilizador que a mensagem que ele enviou tem dados GnuPG inválidos" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informar utilizador que ele está com problemas relacionados com a chave pública e não consegue receber conteúdo encriptado" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Informar utilizador que a sua password foi redefinida" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informar utilizador que recebemos um email encriptado e que não temos chaves provadas para o desencriptar" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Prioridade Inicial" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "PrioridadeInicial" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Iniciar Base de Dados" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Erro de entrada" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Erro interno: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Erro interno: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "%1 Inválido" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Argumento %1 inválido" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "%1 Inválido: '%2' não parece um enderço de email" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "%1 Inválido: deveria ser numérico" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Classe inválida" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Fonte de dados de Campo Personalizado inválida" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Queue inválida, impossível aplicar Classe: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Dados Inválidos" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Objecto Inválido" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Padrão inválido: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Queue inválida" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Direito inválido" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Sintaxe inválido para endereço de e-mail" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Valor inválido para %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Valor inválido para campo personalizado" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Não está encriptado" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "É muito importante que os utilizadores não privilegiados não possam executar esta ferramenta." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "É sugerido que crie um utilizador não privilegiado com o grupo correcto e acesso ao RT para utilizar esta ferramenta." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Necessários vários argumentos:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Itálico" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Juntar ou deixar grupo" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Mantenha 'localhost' se não tiver a certeza. Deixe em branco para ligar localmente sobre um socket" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Idioma" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Grande" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Último" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Último Contacto" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Contactado pela última vez" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Última actualização" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Útima Actualização Por" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Última actualização" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Útima actualização por" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "ÚltimaActualização" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "ÚltimaLocalizaçãoPor" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "ÚltimaActualizaçãoRelativo" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Deixar em branco para usar o valor predefinido para a sua base de dados" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Não altere, para ser utilizado o username por omissão para a seu tipo de Base de Dados." #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Restante" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legendas" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Tamanho em caracteres; Use '0' para mostrar todas as mensagens, independentemente do tamanho" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Permitir que este utilizador aceda ao RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Permitir que este utilizador tenha direitos" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Iniciar!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "CiclodeVida" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Ligação" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Ligação já existe" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Ligação não encontrada" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Ligar ticket #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Ligar valores a" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Ligado" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "LigadoDe" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "LigadoA" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Ligações" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Lista" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Carregar" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Carregar uma pesquisa gravada" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Carregar pesquisa gravada" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Carregar pesquisa gravada:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Carregado %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Carregada pesquisa guardada \"%1\" original" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Módulos perl carregados" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Carregada pesquisa guardada \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "A carregar..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Localização" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "DataHoraLocalizada" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Localização" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Ligado" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Ligado como %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Desligado" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Entrar" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Sair" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Correio" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Tipo principal de atalhos" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Definir Proprietário" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Definir estado" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Definir data como prazo" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Definir prioridade" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Criar fila" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Definir assunto" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Gerir campos personalizados e valores dos campos personalizados" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Gerir grupos e membros de grupos" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Gerir propriedades e configuração que se aplica a todas as queues" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Gerir queues e propriedades específicas das queues" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Gerir grafícos guardados" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Gerir utilizadores e passwords" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Marcar todas as mensagens como lidas" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "ValoresMáximos" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Tamanho máximo da mensagem inline" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maio" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Eu" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Membro" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Membro %1 adicionado" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Membro %1 apagado" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Membro adicionado: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Membro apagado" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Membro não apagado" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "MembroDe" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Membros" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Adicionada Associação em %1" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Apagada Associação em %1" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Associações" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Associações do utilizador %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Combinação com sucesso" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Combinação falhada. Não foi possível definir EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Combinar com" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Combinado com %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Mensagem" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Corpo da mensagem não é apresentado porque é grande demais" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Corpo da mensagem não é apresentado porque o emissor pediu para não o apresentar inline." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Corpo da mensagem não visível por não ser texto" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Altura da caixa de mensagem" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Largura da caixa de mensagem" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Mensagem não pôde ser gravada" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Mensagem para o utilizador" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Mensagem gravada" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Tamanho mínimo da password" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minutos" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Diversos" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Chave primária em falta?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Telemóvel" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Telemóvel" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Alterar" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Alterar Membros" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Alterar templates de Scrip" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Alterar Scrips" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Modificar um Campo Personalizado para a queue %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Modificar e Criar Classes" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Modificar e criar campos customizados para artigos" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Alterar artigo #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Mofificar objectos associados para %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Modificar valores dos campos personalizados" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Alterar datas do ticket #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Alterar tópicos de artigo globais" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Modificar campos personalizados globais" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Alterar direitos de grupo globais" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Alterar tópicos globais" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Alterar direitos de utilizador globais" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Alterar painéis de grupo" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Modificar metadados do grupo ou eliminar grupo" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Alterar direitos de grupo para a Classe %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Modificar direitos do grupo para campo personalizado %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Alterar direitos de grupo para o grupo %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Alterar direitos de grupo para a queue %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Alterar metadados e campos personalizados para esta classe" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Alterar pessoas relacionadas com o ticket %1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Alterar painéis pessoais" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Alterar scrips da queue %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Alterar scrips que se aplicam a todas as queues" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Alterar painéis de sistema" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Alterar template %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Alterar template %1 da queue %2óp" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Alterar templates que se aplicam a todas as queues" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Modificar a classe %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Alterar o conteúdo do painel %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Alterar o painel %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Alterar a página principal" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Alterar o grupo %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Alterar a inscrição para o painel %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Alterar o utilizador %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Alterar esta pesquisa..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Alterar o ticket # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Alterar ticket # %1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Alterar tickets" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Alterar tópico de %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Alterar hierarquia de tópicos associada a esta classe" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Alterar tópicos para artigos nesta classe" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Alterar direitos de utilizador para a classe %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Modificar direitos de utilizador para campo personalizado %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Alterar direitos de utilizadores para o grupo %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Alterar direitos de utilizador para a queue %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Alterar quem recebe email sobre o ticket #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Módulo" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Seg" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Segunda-Feira" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "Mensalmente" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Múltiplo" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Deve espedificar atributo \"Nome\"" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Os meus %1 tickets" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Minhas Aprovações" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "O Meu Dia" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Meus Lembretes" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "As minhas aprovações" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Meus Painéis" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Meus Lembretes" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "As minhas pesquisas guardadas" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "Nova linha" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Nome" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Nome e email" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Nome em utilização" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Nome:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Nunca" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Novo" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Novo Artigo" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Novo Painel" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Novas Ligações" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Novas aprovações pendentes" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Nova Pesquisa" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Novas mensagens" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nova password" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Notificação de nova password enviada" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Nova Nota" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Novo ticket" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Novo ticket não existe" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Novos artigos não podem ter estado '%1' nesta queue" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Próximo" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Alcunha" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Nick" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Não" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Classe não definida" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Não foram encontradas classes que correspondam aos critérios" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Sem Campo Personalizado" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Campo Personalizado não definido" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Sem Grupo definido" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Query não definida" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Queue não definida" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Utilizador do RT não encontrado. Consulte o administrador do RT" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Sem Assunto" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Sem template" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Sem acção" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Sem coluna especificada" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Não foi introduzido nenhum comentário acerca deste utilizador" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Sem descrição para %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Grupo não especificado" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Nenhum grupo verificou o critério de pesquisa especificado." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Sem chave adequada para encriptação" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Sem mensagem anexada" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Nenhum nome providenciado" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Sem necessidade de encriptação" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Password não definida" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Sem permissão para criar queues" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Sem permissão para criar tickets na queue '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Sem permissão para ver esse ticket" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Não tem permissão para gravar uma pesquisa de sistema" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Sem permissões para definir preferências" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Sem permissão para visualizar artigo" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Sem permissão para ver ou actualizar esse ticket" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Nenhum grupo/utilizador seleccionado" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Sem chave privada" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Nenhuma fila verificou os critérios de pesquisa especificados" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Sem direito especificado" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Não foram encontrados direitos" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Nenhuma pesquisa possível" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Sem assunto" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Chave inexistente ou inadequada para assinatura" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Tickets não encontrados" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Sem tipo de transacção especificado" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Sem chaves utilizáveis." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Nenhum proprietário verificou o critério de pesquisa." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Nenhum" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Campo inexistente?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Não encontrado" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Desligado" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Não definido" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Não está a utilizar um browser móvel?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Observações" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Notificação não pôde ser enviada" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Notificar AdminCCs" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Notificar AdminCCS como Comentário" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Notificar Ccs" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Notificar CCs como Comentário" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Notificar Outros Destinatários" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Notificar outros recipientes como comentário" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Notificar Proprietário" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Notificar Proprietário como comentário" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Notificar Dono do seu ticket rejeitado" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Notificar Dono que o seu ticket foi aprovado e está pronto para que tomem uma acção sobre o mesmo" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Notificar Dono que o seu ticket foi aprovado por alguém ou por todos os aprovadores" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Notidicar Dono, Requerentes, Ccs e AdminCcs" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Notidicar Dono, Requerentes, Ccs e AdminCcs como Comentário" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Notificar Donos e AdminCcs de novos itens com aprovação pendente" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Notificar requerente que o seu ticket foi aprovado por todos os aprovadores" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Notificar Requerentes" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Notificar Requerentes e CCs" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Notificar Requerentes e CCs como comentário" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Notificar-me de mensagens por ler" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "OU" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objecto" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objecto não foi criado" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Objecto não pôde ser apagado" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objecto criado" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objecto apagado" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Lista de objectos vazia" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "Em %1, %2 escreveu:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Ao Fechar" #: etc/initialdata:170 msgid "On Comment" msgstr "Em comentário" #: etc/initialdata:142 msgid "On Correspond" msgstr "Em Resposta" #: etc/initialdata:131 msgid "On Create" msgstr "Em Criação" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "Ao Redirecionar" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Ao Redirecionar Ticket" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Ao Redirecionar Transação" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Em Alteração de Dono" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Em Alteração de Prioridade" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Em Alteração de Queue" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Ao Rejeitar" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Ao Reabrir" #: etc/initialdata:205 msgid "On Resolve" msgstr "Em Resolução" #: etc/initialdata:176 msgid "On Status Change" msgstr "Em Alteração de Estado" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Em Transacção" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Apenas mostrar aprovações para pedidos criados depois de %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Apenas mostrar aprovações para pedidos criados antes de %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Apenas mostrar campos personalizados para:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Abrir" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Tickets Abertos" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Abrir URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Tickets Abertos" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Abrir Tickets em resposta" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Opção" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Opções" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Ordenar por" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organização" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Ticket de origem: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Email enviado sobre um comentário" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Email enviado" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Visão geral" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Próprios tickets" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Dono" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "'%1' não tem direitos para ser dono deste ticket" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Dono alterado de %1 para %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Proprietário forçado de %1 para %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "NomedoDono" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Página" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Página 1 de 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Página não encontrada" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Pais" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Password alterada" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Password por definir" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "A Password tem de ter pelo menos %1 caracteres" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Password não mostrada" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Password definida" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Password: Permissão Negada" #: etc/initialdata:714 msgid "PasswordChange" msgstr "AlterarPassword" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "As passwords não coincidem." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Caminho para sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Pessoas" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Pessoas relacionadas com a queue %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Efectuar uma acção definida pelo utilizador" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Configuração do Perl" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Ordem de pesquisa de bibliotecas Perl" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Eliminar permanentemente dados do RT" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Permissão Negada" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Permissão Negada" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Números de telefone" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Verifique o URL e tente novamente, p.f." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Por favor, insira a password actual correctamente" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Por favor, insira a password actual" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Pesquisas possivelmente escondidas" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Preferências" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Preferências %1 do utilizador %2" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Preferências gravadas para %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Preferências gravadas para o utilizador %1" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Preferências gravadas" #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Chave preferida: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Chave Preferida" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Ant" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Grupo/utilizador %1 não encontrado" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Apresentar as mensagems no STDOUT; não as enviar por email. Não as marcar como enviadas." #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Imprimir esta mensagem" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioridade" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Privacidade" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privacidade:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Chave Privada" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Privilegiados" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Estado privilegiado: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Utilizadores privilegiados" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Pesquisas" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Consulta" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Construtor de Pesquisas" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Queue %1 não encontrada" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Nome da Queue" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Essa Queue já existe" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "A Queue não pôde ser criada" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "não foi possivel carregar a lista" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Queue criada" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Queue não encontrada" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "NomedaQueue" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Pesquisa rápida" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Criação de tickets rápida" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Administração RT" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "Email do Administrador do RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "Configuração do RT" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "Erro RT" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Tamanho do RT" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "Vista inicial RT" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "Vista inicial RT do utilizador %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "O RT pode comunicar com os seus utilizadores relativamente a novos tickets, ou a novas mensagens nos tickets. Informe-nos onde se pode encontrar o sendmail (ou um binário compatível, como o postfix). O RT também precisa de saber quem notificar quando alguém envia um email inválido. Este não pode ser um endereço que seja direccionado para o RT" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "O RT pode incluir conteúdo de outro web service quando se apresentar este campo personalizado" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "O RT pode transformar os valores deste campo personalizado em links para outro serviço." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "Variáveis de core do RT" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT para %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "O RT é um sistema profissional de geração de tickets, desenhado para lhe permitir gerir de forma eficiente tarefas, assuntos, pedidos, defeitos ou qualquer outra coisa que pareça um item de acção." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "O RT vai-se ligar à base de dados utilizando este utilizador. Ele será criado para ti." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "O RT vai criar um utilizador chamado \"root\" e definir isto como a sua palavra-passe" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "O RT vai substituir %1 e %2 com o ID do registo e o valor do campo customizado, respectivamente." #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "O RT trabalha com um vasto número de bases de dados. MySQL, PostgreSQL, Oracle e SQLite são sistemas suportados." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Abrir de novo" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Nome" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Destinatários" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Gravar todas as actualizações" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Membro recursivo" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Refira-se a" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Referência a partir de %1 adicionada" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Referência a partir de %1 apagada" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Referência para %1 adicionada" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Referência para %1 apagada" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Referido por" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Refere-se a" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "Refere-seA" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Actualizar" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Refrescar esta página de %1 em %1 minutos." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Rejeitar" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Lembrete" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Lembrete '%1' adicionado" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Lembrete '%1' completo" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Lembretes" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Notas para o pedido #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Remover AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Remover o Favorito" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Remover Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Remover requerente" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "Tipo de Renderização" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Responder" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Endereço de Resposta" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Responder aos Requerentes" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Resposta a tickets" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Requerente" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "GrupoRequerente" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Requerentes" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Repor" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Repôr a predefinição" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Residência" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Resolver" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Resolver ticket #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Resolvido" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Responder" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultados" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Repita Password" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Reverter" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Direito Carregado" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Permissão não pode ser revogada" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Permissão não carregada." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Direitos para Administradores" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Direitos para a Equipa" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Perfis" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Linhas" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Linhas por caixa" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Linhas por página" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "Pesquisas SQL" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite é um sistema de gestão de bases de dados que não precisa de um servidor ou configuração. O autor do RT recomenda-a para testes e desenvolvimento, mas não é a escolha preferencial para um servidor de produção." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sáb" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Sábado" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Gravar" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Gravar Alterações" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Gravar Preferências" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Gravar como Novo" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Gravar novo" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Gravar esta pesquisa" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "%1 %2 gravado" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Pesquisas guardadas" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Gráficos guardados" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Pesquisas guardadas" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Scrip Criado" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Scrips e Destinatários" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Procurar" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "Pesquisa %1 actualizada" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Procurar Artigos" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Preferências de pesquisa" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Procurar nas aprovações" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Procurar artigos" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Procurar tickets" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Opções de pesquisa" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Resultados da pesquisa" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Intervalo de refrescamento de resultados" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "Segurança:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Ver também:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Ver artigos nesta classe" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Ver alterações aos artigos nesta classe" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Verificar que esta classe existe" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Seleccionar" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Escolha Campos personalizados para artigos em todas as classes" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Escolher tipo de Base de Dados" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Escolher uma Classe" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Escolha um Campo Personalizado" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Escolher uma cor para a secção" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Escolha um grupo" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Escolha uma queue" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Escolha uma queue para o novo ticket" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Escolher uma secção" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Escolha um utilizador" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Seleccionar um artigo de %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Escolher um Artigo para incluir" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Escolher outra linguagem" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Caixa de selecção" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Escolher campos personalizados para todas as queues" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Escolher campos personalizados para todos os grupos" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Escolher campos personalizados para todos os utilizadores" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Escolha os \"Campos Personalizados\" para os pedidos em todas as filas" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Seleccione campos personalizados para transacções de tickets em todas as queues" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Selecionar data" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Selecione múltiplas datas" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Escolha múltiplos valores" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Escolha um valor" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Escolha queues para apresentação na página principal" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Selecione os tópicos para este artigo" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Selecione até %1 datas" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Selecione até %1 valores" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Campos Personalizados seleccionados" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Objetos selecionados" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Seleções modificadas. Por favor guarde as suas alterações" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Envia uma mensagem aos requerentes" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Enviar email para o dono" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Set" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Separe múltiplas entradas por espaços." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "Defina a chave privada" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Configurações" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Nomes de utilizadores pequenos" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Mostrar" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Mostrar o tabulador de Aprovações" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Mostrar as Colunas" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Mostrar Resultados" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Mostrar pedidos aprovados" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Mostrar também" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Mostrar breves cabeçalhos" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Mostrar pedidos negados" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Mostrar cabeçalhos completos" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Mostrar descrições nos atalhos" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Mostrar pedidos pendentes" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Assinatura" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Pesquisa Simples" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Tamanho" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Pequeno" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Ordenar" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Folha de Cálculo" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Colocar pendente" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Iniciado" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Começa" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Estado" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "Estado" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "Alteração de Estado" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Alteração de estado de %1 para %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Roubar" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Roubar tickets" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Roubado de %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Assunto" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Assunto alterado para %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Enviar" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Configuração de Sistema" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Ferramentas de Sistema" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "" #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Responsabilizar-se" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Responsabilizar-se por tickets" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Este valor não é adequado para este campo personalizado" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Esse utilizador já é dono desse ticket" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Esse utilizador não existe" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Esse utilizador não pode ser dono de tickets nessa queue" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "O Básico" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "O dono de um ticket" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "As definições que escolheu estão guardadas em %1" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Este Campo Personalizado não pode ter listas de valores" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Esta funcionalidade está disponível apenas para os administradores do sistema" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Esta transacção não parece ter conteúdo" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Ticket %1 criado na queue '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Histórico do ticket # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Ticket Resolvido" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Transacções do ticket" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Conteúdo do ticket" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Estado do ticket alterado" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Tickets %1 por %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Pedidos que dependem desta aprovação" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Tempo previsto" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Tempo disponível" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tempo de trabalho" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tempo usado para disponibilizar página" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "actualizado" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Ferramentas" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "Transacção" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transacção Criada" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Campos personalizados da Transacção" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tipo" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Desmarque caixas para desabilitar notificações para os destinatários listados apenas para esta transacção; alterações permanentes devem ser efectuadas na página de contactos." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Procura sem nome" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Campos personalizados não seleccionados" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Actualizar" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Actualizar Ticket" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Tipo de actualização" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Actualizar múltiplos tickets" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "" #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Actualizar ticket" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Actualizar ticket #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Actualizar ticket #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Actualizado" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Carregar" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Carregar múltiplos ficheiros" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Carregar múltiplas imagens" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Carregar um ficheiro" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Carregar uma imagem" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Carregar até %1 ficheiros" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Carregar até %1 imagens" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Utilizar outras ferramentas administrativas do RT" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Direitos de utilizador" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Utilizador não criado: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Utilizador criado" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Utilizador carregado" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Grupos definidos por utilizadores" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Utilizadores" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Utilizadores que verificam o critério de pesquisa" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Query válida" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Valores" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Ver valores de campos personalizados" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Ver campos personalizados" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Ver pesquisas guardadas" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Bem-vindo ao RT" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Quando um ticket é criado" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:137 msgid "When anything happens" msgstr "Quando algo acontece" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Quando um ticket é resolvido" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Este ticket já é seu" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Também pode editar a própria procura personalizada" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Só pode atribuir um pedido que seja seu ou que não proprietário" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Só pode responsabilizar-se por tickets que não têm dono" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Saiu do RT" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Não tem permissão para criar tickets nessa queue." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Obrigado por utilizar o RT" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Login ou password errados" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Código Postal" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "um campo personalizado" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "seleccione esta caixa para aplicar este Campo Personalizado a todos os objectos" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "seleccione esta caixa para remover este Campo Personalizado de todos os objectos, e permitir a escolha de objectos específicos" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "apagado" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "igual a" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "maior do que" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "grupo '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "é" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "não é" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "menos do que" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "coincide" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minutos" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "novo" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "nenhum" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "diferente de" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "aberto" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "" #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "rejeitado" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "resolvido" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "pendente" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "linhas de sumário" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "grupo indefinido %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "utilizador %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "semanalmente" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "Semanalmente (A %1) às %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "semanas" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "Porta de escuta do servidor web, Ex.:8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "com cabeçalhos" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "sim" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/nl.po0000664000175000017500000120720413131430353014531 0ustar vagrantvagrant# Dutch translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2016-08-22 09:26+0000\n" "Last-Translator: Maarten \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%1 %3 %2 %4" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3 %2 %7 %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 toegevoegd" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 veranderd naar %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 verwijderd" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 verwijderd" #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 bestaat niet" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 is uitgeschakeld" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 bewaard" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 bijgewerkt." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 met sjabloon %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) door %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (ongewijzigd)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (van paneel %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Wijzig LogToSTDERR configuratie optie" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Een argument om door te geven aan %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Uitvoer status herzieningen naar STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Geef aan of u de \"eerste\", de \"laatste\" of \"alle\" transacties wilt gebruiken" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Geef een naam of id op van een of meer sjablonen die u wilt gebruiken" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Geef de kommagescheiden (CSV) lijst op van transactietypes die u wilt gebruiken" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Specificeer de conditiemodule die u wenst te gebruiken" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Specificeer de zoekmodule die u wenst te gebruiken" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 Copyright 1996-%3 %4" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "%1 versie" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 toegevoegd als waarde voor %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "%1 geleden" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 bestaat al en de tabellen voor RT zijn al aangemaakt. De metadata voor RT bestaat nog niet. Via de stap \"Database initialiseren\" die nog volgt is het mogelijk deze metadata aan te maken in de bestaande database. Als dit in orde is, dan kunt u klikken op \"Basisinstellingen aanpassen\" om RT verder aan te passen." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 bestaat al, maar bevat nog geen tabellen of metadata voor RT. Via de stap \"Database initialiseren\" die nog volgt is het mogelijk de tabellen en de metadata aan te maken in de bestaande database. Als dit in orde is, klikt u op \"Basisinstellingen aanpassen\" om RT verder aan te passen." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 lijkt een lokaal object te zijn maar kan niet gelokaliseerd worden in de database" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 lijkt volledig te zijn geïnitialiseerd. Er hoeven geen tabellen of metadata aangemaakt te worden. U kunt klikken op \"Basisinstellingen aanpassen\" om RT verder aan te passen." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 door %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 kan geen groep zijn" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 veranderd van %2 naar %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 veranded van '%2' naar '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 kopie" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 basisinstellingen" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 kon niet veranderd worden naar %2" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 aangemaakt" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 verwijderd" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 is uitgeschakeld" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 bestaat niet" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 is ingeschakeld" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "De %1 hoogste prioriteit tickets die ik bezit" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 is een gereedschap om te reageren op tickets van een extern planningsprogramma, zoals cron" #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 is een hulpprogramma dat vanuit de cron hoort te draaien en dat alle uitgestelde RT-meldingen per gebruiker als digest verstuurt." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 is al op %2 geplaatst." #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 is een adres waarop RT e-mail ontvangt. Door het als \"%2\" toe te voegen ontstaat een e-maillus" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 is niet langer een waarde voor custom field %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 is niet een %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 is geen geldige lifecycle" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 problemen" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 sleutel '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 meest recent bijgewerkte artikelen" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 nieuwste artikel" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 nieuwste tickets zonder eigenaar" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objecten" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 gewijzigd naar %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 siteconfiguratie" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "Update voor %1: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "Update voor %1: niets gewijzigd" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 bijgewerkt" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "De %2 objecten van %1" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "De %3 objecten van %1 en %2" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1's huidige wachtwoord" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Dashboards van %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "%1's encryptie sleutels" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1's opgeslagen zoekopdrachten" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: geen bijlage gespecificeerd" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Nieuw ticket in%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "%1u" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,artikel,artikelen)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,dag,dagen)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,uur,uren)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,uur,uren) (%quant(%2,minuut,minuten))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,minuut,minuten)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,maand,maanden)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,seconde,seconden)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,week,weken)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,jaar,jaren)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' is geen geldige naam." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' geen geldige klasse" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' is geen geldige klasse identifier" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Vink aan om af te ronden)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Vink hokje af om te verwijderen)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Vink aan om te verwijderen)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Voer ticket ids of URLs in, gescheiden door spaties)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Indien leeggelaten, wordt %1 de standaardwaarde)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(Incompleet)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(Incorrecte data)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Geen eigen velden)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Geen Leden)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Geen scrips)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Geen sjablonen)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Stuur een Cc van deze update naar een door komma's gescheiden lijst van administratieve e-mailadressen. Deze personen zullen toekomstige updates wel ontvangen. )" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Stuurt een Cc van deze update naar een door komma's gescheiden lijst van e-mailadressen. Deze personen zullen toekomstige updates wel ontvangen.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Gebruik deze velden wanneer u kiest voor 'User Defined' in een voorwaarde of actie)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(alle)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(Geen samenvatting)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(geen naam)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(geen publieke sleutel!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(geen waarde)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(geen waarden)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(wacht op %quant(%1,ander ticket,andere tickets))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(wacht op goedkeuring)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(vereist)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(vertrouwen: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(zonder titel)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(niet vertrouwd!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id is een verouderd argument en kan niet gebruikt worden samen met --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--\"transaction argument\" kan alleen de waarden 'first', 'last' of 'all' hebben" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 seconden" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Een sjabloon met die naam bestaat reeds" #: etc/initialdata:258 msgid "A blank template" msgstr "Een leeg sjabloon" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Omdat er geen wachtwoord ingesteld is, kan de gebruiker niet inloggen" #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE niet gevonden" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACEs kunnen alleen gecreëerd of verwijderd worden." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "ACL updates van %1" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "EN" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Over mijzelf" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Toegangscontrole" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Actie" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "De handeling '%1' bestaat niet" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Actie uitgevoerd." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Handeling is een verplicht argument" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Actie voorbereid..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Acties" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Openstaande tickets" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Openstaande tickets voor %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Voeg %1 toe" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Voeg AdminCc toe" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Bladwijzer Toevoegen" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Voeg Cc toe" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Voeg kolommen toe" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Criteria toevoegen" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Voeg meer bestanden toe" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Voeg aanvrager toe" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Waarde toevoegen" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Voeg commentaar of reacties toe aan geselecteerde tickets" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Voeg groep toe" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Voeg hier toe" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Voeg leden toe" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Voeg nieuwe toeschouwers toe" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Voeg rechten toe voor deze %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Voeg deze termen toe" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Voeg deze termen toe en Zoek" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Voeg gebruiker toe" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Voeg waarden toe" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Voeg toe, wijzig en verwijder waarden in custom velden voor objecten" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Toegevoegd" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "Toegevoegd overschreven onderwerp: %1" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adres" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Adres 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adres1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adres2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "Gewerkte tijd aangepast met %quant(%1,minuut,minuten)" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Beheerder" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "Beheerder Cc" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Commentaar van de Beheerder" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Commentaar van de Beheerder in HTML" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Beheerderscorrespondentie" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Beheerderscorrespondentie in HTML" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Beheerder queues" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Beheerder/Globale configuratie" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "BeheerderCCGroep" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "BeheerderCc" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "BeheerderCCs" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Beheerderswachtwoord" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Gevorderd" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Uitgebreid zoeken" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Nadat u bent ingelogd, wordt u doorgestuurd naar uw oorspronkelijke bestemming:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Alle Gegeven Goedkeuringen" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Alle Gegeven Goedkeuringen in HTML" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Alle artikelen in deze klasse moeten opgelijst worden in de antwoordpagina van het ticket" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Alle klasses" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Alle Custom Fields" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Alle dashboards" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Alle wachtrijen" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Alle tickets" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Alle iCal feeds bevatten een geheime token die jou autoriseert. Wanneer de URL voor één van jou iCal feeds is blootgesteld aan de buitenwereld, dan kun je hieronder een nieuwe geheime token aanmaken, alle bestaande iCal feeds werken hierna niet meer." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Alle wachtrijen waarop de zoekcriteria van toepassing zijn" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Alle tickets" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Alle onderwerpen" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Sta creëren van opgeslagen zoekopdrachten toe" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Sta inladen van opgeslagen zoekopdrachten toe" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Sta het schrijven van Perl code in templates, script e.d. toe" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Reeds versleuteld" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "Stuur altijd een bericht naar de aanvragers, onafhankelijk van de bericht verstuurder." #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "Een%1Inleiding om aan de slag te gaan met artikels %3 is beschikbaar op %2Beste Praktische \"online\" documentatie% 3." #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "Er moet een \"Instance\" worden verstrekt" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Er is een fout opgetreden" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "En/of" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Jaarlijks" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Willekeurig veld" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Naar elk woord dat niet door RT wordt herkend, wordt gezocht in het ticket onderwerp" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Heeft betrekking op" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Wordt toegepast op alle objecten" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Doorvoeren" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Globaal toepassen" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Pas geselecteerde scrips toe" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Pas uw wijzigingen toe" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Goedkeuring" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Goedkeuring #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Goedkeuring #%1: Notities niet bewaard vanwege een systeemfout" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Goedkeuring #%1: Notities bewaard" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Goedkeuring aanvaard" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "Goedkeuring aanvaard in HTML" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Goedkeuring klaar voor de eigenaar" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "Goedkeuring klaar voor de eigenaar in HTML" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Goedkeuring geweigerd" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "Goedkeuring geweigerd in HTML" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Keur goed" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "Artikel #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "Artikel #%1 niet gevonden" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Artikel #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Artikel %1 aangemaakt" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Artikel administratie" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artikel niet gevonden" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Artikelen" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Artikelen in %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Artikelen die voldoen aan %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artikelen zonder onderwerp" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Oplopend" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "wachtrij aangepaste velden toewijzen en verwijderen" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Toevoegen" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Voeg een bestand toe" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Aangehecht bestand" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Bijlage" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Bijlage '%1' kon niet geladen worden" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Bijlage gecreëerd" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Bestandsnaam van de bijlage" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Bijlagen" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Het versleutelen van bijlagen is uitgeschakeld" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Attribuut Verwijderd" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "Automatische account setup is mislukt" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Automatische suggesties voor thema kleuren zijn niet te geven voor dit type afbeelding. Dit zou kunnen doordat dit type niet door de geïnstalleerde versie van GD word ondersteund. Ondersteunde types van GD: %1. Libgd en GD kan ge-recompiled worden om andere types van afbeeldingen te ondersteunen." #: etc/initialdata:261 msgid "Autoreply" msgstr "Automatisch-antwoord" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Automatisch-antwoord aan aanvragers" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Automatisch antwoord in HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Beschikbaar" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "Gemiddelde Gecreëerd-LaatsteUpdate" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "Gemiddelde Gecreëerd-Opgelost" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "Gemiddelde Gecreëerd-Gestart" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "Gemiddelde Vervaldatum-Opgelost" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "Gemiddelde Gestart-Opgelost" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "Gemiddelde Begint-Gestart" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "Gemiddelde geschatte tijd" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "Gemiddelde resterende tijd" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "Gemiddelde gewerkte tijd" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Terug" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Foutieve privacy instellingen voor attribuut %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Basis" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "Batch (uitgeschakeld in RT configuratie)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "Batch scrips lopen na een reeks verwante wijzigingen in een ticket." #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "Eer artikelen gebruikt kunnen worden moet de RT beheerder eerst een %1Klasse%2 maken, daar een Artikel Custom Field aan koppelen, en gebruikers toegang geven tot deze klasses en CustomFields." #: etc/initialdata:257 msgid "Blank" msgstr "Blanco" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Berichttekst" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Vet" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Bladwijzer" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Markeerbare link naar deze zoekopdracht" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Gemarkeerde tickets" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Gemarkeerde tickets" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Bladeren via onderwerp" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Blader door de SQL-query's die in dit proces zijn aangemaakt" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Bulk update" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "CC-groep" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "GV" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "GV'en kunnen doorzocht worden door gebruik te maken van een soortgelijke syntax als hierboven met %1" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "Bereken" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "Bereken de waarden van" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Kan de opgeslagen zoekopdracht \"%1\" niet laden" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Kan systeemgebruikers niet wijzigen" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Kan geen custom field toevoegen zonder een naam" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Kan geen bewaarde zoekopdracht vinden om mee te werken" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Kan niet doorsturen: geen geldige e-mailadressen opgegeven" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Kan een ticket niet koppelen aan zichzelf" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Kan niet linken naar een verwijderde ticket" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Kan een ticket niet in zichzelf samenvoegen" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Kan niet snel een ticket aanmaken in de wachtrij %1 omdat er verplichte Custom Field's zijn. Gelieve afronden door gebruik te maken van de normale ticket creatie pagina." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Het is niet mogelijk \"%1\" op te slaan" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Kan zoekopdracht niet bewaren zonder een omschrijving" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Kan deze zoekopdracht niet opslaan" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "Kan zoel basis als doel niet specificeren" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Kan geen link toevoegen aan een normaal getal" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Het is niet mogelijk tickets aan te maken in een uitgeschakelde wachtrij." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Categorieën zijn gebaseerd op" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Categorie" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "CC's" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Wijzigen" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Wijzig Goedkeuring ticket naar een open status" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Wijzig e-mail onderwerp:" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Wijzig wachtwoord" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Wijzigen van wachtrij is niet geïmplementeerd" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Grafiek" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Allemaal markeren" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Databaseverbinding controleren" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Aanmeldgegevens voor database controleren" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Vink hokje om te verwijderen" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Kind" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Afstammelingen" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Databaseengine kiezen" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Kies uit onderwerpen voor %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Stad" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Klasse" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Klassenaam" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Klasse id" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Klassen" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Wissen" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Allemaal wissen" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Klik op \"Installatie afronden\" om deze wizard af te ronden." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Klik op \"Database initialiseren\" om de database en de metadata voor RT aan te maken. Dit kan even duren" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Kies een kleur door te klikken" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Gesloten" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Gesloten tickets" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Selecteer of voer meerdere waardes in" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Combobox: Selecteer of voer één waarde in" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Combobox: Selecteer of voer tot %1 waarden in" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Commentaar" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Commentaar Adres" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Commentaar op tickets" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Commentaar" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Commentaar (Wordt niet verstuurd aan aanvragers)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Opmerkingen over deze gebruiker" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Commentaar toegevoegd" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Voorwaarde" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "De voorwaarde \"%1\" is niet aangetroffen" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Deze voorwaarde is een verplicht" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Voorwaarde komt overeen..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Voorwaarde, handeling en sjabloon" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Configuratiebestand %1 is vergrendeld" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Configuraite voor queue %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "De verbindig is gemaakt" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Neem contact op met de RT beheerder via %1email naar %2%3." #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Maak kontakt met jouw RT beheerder" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Inhoud" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Inhoud heeft een onjuist IP adres" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Inhoud heeft een onjuist IP bereik" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Inhoudstype" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "Inhoudstype" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Correspondentieadres" #: etc/initialdata:393 msgid "Correspondence" msgstr "Correspondentie" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Correspondentie toegevoegd" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Correspondentie in HTML" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Kon geen aangepast veldwaarde toevoegen: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Het was niet mogelijk de eigenaar te wijzigen: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Kon geen aangepast veld aanmaken: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Kan de groep niet creëren" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Kan zoekopdracht niet aanmaken: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Kan het ticket niet creëren. Queue niet ingesteld" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Kan de gebruiker niet creëren" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Kan zoekopdracht %1 niet uitvegen: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Kan gebruiker '%1' niet vinden of aanmaken" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Kon eigenschap %1 niet laden" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Kan klasse %1 niet laden" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Kan custom field %1 niet laden" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Kan groep niet laden" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Kon object niet laden voor %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "Kan script #%1 niet laden" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Kan gebruiker '%1' niet laden" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Kan gebruikersinformatie niet toewijzen" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Kan kolom %1 niet bewerken: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Het was niet mogelijk de bijlage toe te voegen" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Kan gebruiker niet toevoegen aan groep" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Kan geen transactie creëren: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Het was niet mogelijk om dashboard \"%1\" te verwijderen: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Kan de rij niet vinden" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Er was geen geschikte transactie te vinden. Deze wordt overgeslagen" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Kan deze hoofdgebruiker niet vinden" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Kan die waarde niet vinden" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Het was niet mogelijk de Klasse \"%1\" te laden" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Kon het aangepaste ved #%1 niet laden" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Kon het aangepaste ved #%1 niet laden" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Kon het aangepaste ved #%1 niet laden" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Kan de groep %1 niet laden" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Kan de link niet laden" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Kan het object %1 niet laden" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Kan de queue niet laden" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Kan de queue %1 niet laden" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Kan ticket '%1' niet laden" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Transactie #%1 kon niet geladen worden" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Land" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Creëer" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Creëer tickets" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Creëer een klasse" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Creëer een custom field" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Creëer een nieuw artikel" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Creëer een nieuw artikel in" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Creëer een nieuw dashboard" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Creëer een nieuwe groep" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Creëer een nieuwe template voor queue %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Creëer een nieuwe gebruiker" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Creëer een queue" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Creëer een sjabloon" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Maak een ticket aan" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Creëer een ticket met deze gebruiker als de aanvrager in queue" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Creëer een artikel" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Creëer een artikel in klasse..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Creëer artikelen in deze klasse" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Creëer groep dashboards" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Creëer nieuwe tickets gebaseerd op het sjabloon van dit scrip" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Creëer privé dashboards" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Creëer systeeem dashboards" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Creëer ticket" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Creëer tickets" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Creëer, wijzig en verwijder gebruikersvelden" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Creëer, wijzig en verwijder queues" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Creëer, wijzig en verwijder opgeslagen zoekopdrachten" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Creëer, wijzig en verwijder gebruikers" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Gecreëerd" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Aangemaakt door" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Custom field %1 gecreëerd" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Gemaakt door" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Aanvrager" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Cryptografie" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "Cryptografie is uitgeschakeld" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Huidige Relaties" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Huidige zoekopdracht" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Huidige leden" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Huidige zoekopdracht" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Huidige toeschouwers" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Eigen velden" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Custom fields voor %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Gebruikersvelden voor queue %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Specifieke actie voorbereidings code" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Specifieke voorwaarde" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Specifiek veld %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Specifiek Veld %1 is niet van toepassing op dit object" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Specifiek veld %1 heeft een waarde." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Specifiek veld %1 heeft geen waarde." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Specifiek veld %1 niet gevonden" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Specifiek veld waarde %1 kon niet gevonden worden voor custom field %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Specifiek veld waarde kon niet verwijderd worden" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Specifiek veld waarde verwijderd" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Custom field" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Aanpassen" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Aanpassen email configuratie" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Dagelijks" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Dagelijks verslag" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Dashboard %1 kon niet worden gemaakt" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Dashboard %1 kon niet worden gewijzigd" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Dashboard aangepast" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Databasenaam" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Databasetype" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Datumformaat" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Data" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Ontsleutel" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Standard queue" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Standaard: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Standaard: %1/%2 verandered van %3 naar %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Verwijderen" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Verwijder tickets" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Het verwijderen van dit object zou de referentiële integriteit ondermijnen" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Het verwijderen van dit object zou de referentiële integriteit ondermijnen" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Wijs af" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Afhankelijkheid van" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "Afhankelijkheid voor" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Afhankelijkheid door %1 toegevoegd" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Afhankelijkheid door %1 verwijderd" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Afhankelijk van %1 toegevoegd" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Afhankelijk van %1 verwijderd" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Is afhankelijk van" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "Afhankelijk van" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Aflopend" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Beschrijf de kwestie hieronder" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Omschrijving" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Toon" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Toon de toegangscontrole lijst" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Toon artikel %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Toon de kolommen" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Doe iets en alles" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ververs deze pagina niet" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Verwacht" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Wijzig" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Wijzig custom fields voor %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Wijzig Custom Fields voor artikelen in alle klasses" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Wijzig Relaties" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Wijzig Zoekopdracht" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Wijzig zoekopdracht" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Wijzig systeem sjablonen" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Bezit met het wijzigen van custom field %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Bezit met het wijzigen van lidmaatschap voor groep %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Of basis of doel moeten gespecificeerd zijn" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "E-mail" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "E-mail adres" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "E-mail samenvatting" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "E-mailadres in gebruik" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "E-mail adres" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Actief (Het uitzetten van dit vinkje deactiveert dit custom field)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Actief (Het uitzetten van dit vinkje deactiveert deze groep)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Actief (Het uitzetten van dit vinkje deactiveert deze queue)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Actieve queues" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Actieve status %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Voer artikelen, tickets of andere URLs in die gerelateerd zijn aan dit artikel." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Voer meerdere waarden in" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "" #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Voer één waarde in" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Voer één waarde in met automatische aanvulling" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "" #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Vul tickets of URIs in om deze tickets aan te koppelen. Scheidt meerdere elementen met spaties." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Fout" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Iedereen" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Voorbeeld:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "Uitgebreide status" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Extra informatie" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Exporteer als artikel" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Exporteer een nieuw artikel van ticket #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Exporteer een artikel van ticket #%1 naar klasse %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Kan de gebruikers pseudogroep 'Privileged' niet vinden." #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Kan de gebruikers pseudogroep 'Unprivileged' niet vinden." #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Kan module %1 niet laden. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Bestandsnaam" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Vul meerdere tekst velden" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Vul meerdere wikitekst velden" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Vul één tekst veld" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Vul één wiki tekst veld" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Vul dit veld met een URL" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Vul tot %1 tekst velden" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Vul tot %1 wiki tekst velden" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Uiteindelijke prioriteit" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "Uiteindelijke prioriteit" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Zoek groepen waarvan" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Zoek personen waarvan" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Zoek tickets" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Eerste" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "Neem contact op met %1 voor lokale ondersteuning" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Forceer wijziging" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formaat" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Doorsturen" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Bericht doorsturen" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Bericht doorsturen en terugkeren" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Ticket doorsturen" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Berichten doorsturen buiten RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Ticket #%1 doorsturen" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Transactie #%1 doorsturen" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Ticket doorgestuurd aan %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "Doorgestuurd bericht" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "Doorgestuurd ticket bericht" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "%quant(%1,Ticket,Tickets) gevonden" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Gevonden Object" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frequentie" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Van" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Algemeen" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Aan %1 gegeven" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Globaal" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Ga" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Ga!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Ga naar ticket" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Ga naar ticket" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Groep" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Groeps rechten" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Groep heeft al een lid: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Groep kon niet gecreërd worden: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Groep gecreërd" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Groep heeft geen lid onder die naam" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Groep niet gevonden" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "Gegroepeerde zoekresultaten" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Groepen" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Groepen kunnen geen leden zijn van hun leden" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Groepen waar deze gebruiker deel van uitmaakt" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "Bevat lid" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "hoogte" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Hallo!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Verberg alle aangehaalde tekst" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Verberg aangehaalde tekst" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Geschiedenis" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Historie voor artikel #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Startpagina" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Tijdstip" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "Ieder uur" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Uren" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Ik heb %quant(%1,betonmixer)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identiteit" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "Wanneer een Custom Field geselecteerd is, zal de Onderwerp regel van de uitgaande e-mail worden overschreven met die van dit artikel." #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Als een goedkeuring is afgewezen, wijs het origineel af en verwijder goedkeuringen die in behandeling zijn" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Als dit gereedschap setgid zou zijn, zou een kwaadwillende lokale gebruiker dit gereedschap kunnen gebruiken om administratieve toegang te verkrijgen tot RT" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Als u een van de bovenstaande elemented ververst heeft, klik dan op" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Illegale waarde voor %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Niet-wijzigbaar veld" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Inactieve tickets" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Voeg artikel in:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Voeg artikel naam in" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Neem inactieve groepen op in de weergave." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Neem inactieve queues op in de weergave." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Neem inactieve gebruikers op in de zoek opdracht" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Pagina toevoegen" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Initiële prioriteit" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "Initiële prioriteit" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Invoer fout" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Interne Fout: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Ongeldige data" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Ongeldig patroon: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Ongeldige queue" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Ongeldige recht" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Ongeldige waarde voor %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Ongeldige waarde voor custom field" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Het is ontzettend belangrijk dat onbevoorrechtigde gebruikers geen toestemming hebben om dit gereedschap te gebruiken." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "We stellen voor dat u een onbevoorrechtigde unix gebruiker aanmaakt met het juiste groep lidmaatschap en RT toegang om dit gereedschap te gebruiken." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Het accepteerd meerdere argumenten:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Taal" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Taal" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Laatste" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Laatste contact" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Laatste contact" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Laatst bijgewerkt" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "Laatst bijgewerkt door" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Over" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Geef deze gebruiker toegang tot RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Geef deze gebruiker rechten" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Koppeling bestaat al" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Koppeling niet gevonden" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Koppel ticket #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Link waarden aan" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "Gekoppeld aan" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Koppelingen" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Laden" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Laad opgeslagen zoekopdracht" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Laad opgeslagen zoekopdracht:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Laad perl modules" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Locatie" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Aangemeld als %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Aanmelden" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Afmelden" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Lookup type komt niet overeen" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Maak Eigenaar" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Maak Status" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Maak verwachtingsdatum" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Maak startdatum" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Maak datum gestart" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Maak datum gemeld" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Maak prioriteit" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Maak queue" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Maak onderwerp" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Beheer van custom fields" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Beheer van groepen" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Beheer van eigenschappen en configuraties die betrekking hebben op alle queues" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Beheer van queues" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Beheer van gebruikers" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Mei" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Mijzelf" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Lid" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Lid %1 toegevoegd" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Lid %1 verwijderd" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Lid toegevoegd: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Lid verwijderd" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Lid niet verwijderd" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "Lid van" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Leden" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Lidmaatschap in %1 toegevoegd" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Lidmaatschap in %1 verwijderd" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Lidmaatschap" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "Lidmaatschap van de groep %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Lidmaatschap van gebruiker %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Samenvoegen" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Samenvoeging Succesvol" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Samenvoegen mislukt. Kan EffectiefId niet instellen" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "Samenvoegen mislukt. Kan IsMerged niet instellen" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Voeg samen in" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Samengevoegd tot %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Bericht" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "bericht kon niet opgeslagen worden" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Bericht opgeslagen" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuten" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Diversen" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Mist primaire sleutel?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobiel" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Mobiel" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Wijzig leden" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Wijzig Scrip sjablonen" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Wijzig Scips" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Wijzig een Specifiek Veld voor deze queue %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Maken en aanpassen van Custom Fields voor artikelen" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Wijzig artikel #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Wijzig objecten geassocieerd aan %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Wijzig data voor ticket #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Wijzig globale artikel onderwerpen" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Wijzig globale groepsrechten" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Wijzig globale gebruikersrechten" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Wijzig groepsmetadata of verwijder groep" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Wijzig groepsrechten voor custom field %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Wijzig groepsrechten voor groep %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Wijzig groepsrechten voor queue %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Wijzig uw eigen RT" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Wijzig personen gekoppeld aan ticket #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Wijzig scrips voor queue %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Wijzig scrips die betrekking hebben op alle queues" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Wijzig sjabloon %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Wijzig sjablonen die van toepassing zijn op alle queues" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Wijzig de inhoud van dashboard %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Wijzig de groep %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Wijzig het abonnement op dashboard %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Wijzig de gebruiker %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Wijzig ticket # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Wijzig ticket #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Wijzig tickets" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Wijzig onderwerpen voor artikelen in deze klasse" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Wijzig gebruikersrechten voor custom field %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Wijzig gebruikersrechten voor groep %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Wijzig gebruikersrechten voor queue %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "Maandelijks" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Meer over de aanvragers" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Meerdere" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Specificeren van 'Naam' attribuut verplicht" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Mijn %1 tickets" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Mijn Goedkeuringen" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Mijn dag" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Mijn herinneringen" #: etc/initialdata:890 msgid "My Tickets" msgstr "Mijn tickets" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mijn goedkeuringen" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "Mijn gesloten tickets" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mijn dashboards" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Mijn open tickets" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Mijn herinneringen" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mijn bewaarde zoekopdrachten" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Naam" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Naam in gebruik" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Nooit" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Nieuw" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Nieuw artikel" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nieuwe Relaties" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Nieuwe wachtende goedkeuring" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Nieuwe zoekopdracht" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nieuw wachtwoord" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Bericht voor nieuw wachtwoord verzonden" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Nieuwe herinnering" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nieuw ticket" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Nieuw ticket bestaat niet" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nieuwe toeschouwers" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Volgende" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Bijnaam" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Bijnaam" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Geen artikelen komen overeen met %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Geen Klasse gedefinieerd" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Geen custom field" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Geen custom field gedefinieerd" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Geen Groep gedefinieerd" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Geen Zoekopdracht" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Geen queue gedefinieerd" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Geen Sjabloon" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Geen actie" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Geen kolom gespecificeerd" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Geen commentaar ingevuld over deze gebruiker" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Geen omschrijving voor %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Geen groep gespecificeerd" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Er zijn geen groepen gevonden die voldoen aan het zoek criterium." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Geen bericht toegevoegd" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Geen wachtwoord ingesteld" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Geen rechten om queues te creëren" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Geen rechten om tickets te creëren in de queue '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Geen rechten om dat ticket te tonen" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Geen bevoegdheden om het artikelen in te zien" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Geen rechten om verversing ticket te bekijken" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Geen hoofdgebruikers geselecteerd" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Geen queues gevonden die aan de zoekcriteria voldoen" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Geen rechten gevonden" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Geen zoek opdracht om uit te voeren." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Geen onderwerp" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Geen transactie type gespecificeerd" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Geen gebruikers gevonden die aan de zoekcriteria voldoen" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Niemand" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Nietbestaand veld?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Niet aangemeld." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Niet gezet" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Notities" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Bericht kon niet verstuurd worden" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Informeer AdminCcs" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Informeer AdminCcs als Commentaar" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Informeer Ccs" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Informeer Ccs als CC" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Bericht Andere Ontvangers" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Bericht Andere Ontvangers als Commentaar" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Bericht Eigenaar" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Bericht Eigenaar als Commentaar" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Informeer de eigenaar over hun geweigerde ticket" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Informeer Eigenaars en AdminCcs over nieuwe zaken welke wachten op hun goedkeuring" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Informeer aanvragers" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Informeer aanvragers en Ccs" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Informeer aanvragers en Ccs als CC" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Object kon niet gecreëerd worden" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Object gecreëerd" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "" #: etc/initialdata:170 msgid "On Comment" msgstr "Bij Commentaar" #: etc/initialdata:142 msgid "On Correspond" msgstr "Bij Overeenkomst" #: etc/initialdata:131 msgid "On Create" msgstr "Bij Creatie" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Bij Eigenaarwijziging" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Bij queue wijziging" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "" #: etc/initialdata:205 msgid "On Resolve" msgstr "Bij Oplossing" #: etc/initialdata:176 msgid "On Status Change" msgstr "Bij Statuswijziging" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Bij Transactie" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Eenmalige Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Eenmalige Cc" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Toon alleen goedkeuringen voor verzoeken gecreëerd na %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Toon alleen goedkeuringen voor verzoeken gecreëerd voor %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Toon alleen de custom fields voor:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "Open inactieve tickets" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Openen" #: etc/initialdata:108 msgid "Open Tickets" msgstr "" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "Open inactieve tickets" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Open ticket bij correspondentie" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Opties" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sorteer op" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organisatie" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Voortgekomen uit ticket: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Uitgaande e-mail over commentaar opgeslagen" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Uitgaande e-mail opgeslagen" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Eigen tickets" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Eigenaar" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Eigenaar veranderd van %1 naar %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Eigenaar gedwongen veranderd van %1 naar %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "Naam van de eigenaar" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Pieper" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Ouders" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Wachtwoord" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Wachtwoord: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "Wacht op %quant(%1,goedkeuring,goedkeuringen))." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "Wacht op %quant(%1,ander ticket,andere tickets))." #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "Wacht op goedkeuring" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Personen" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Verricht een gebruiker gedefiniëerde actie" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl-configuratie" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Toestemming Geweigerd" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefoonnummers" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "Afbeelding" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Instellingen" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "" #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Bereid Plaatshouder Voor" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Vorige" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Hoofd %1 niet gevonden." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioriteit" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Gerechtigd" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Gerechtigde status: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Gerechtigde gebruikers" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseudogroep voor intern gebruik" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Zoek criteria" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Queue %1 niet gevonden" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Queue Naam" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Queue bestaat al" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Queue kon niet aangemaakt worden" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Queue kon niet geladen worden." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Queue aangemaakt" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Queue niet gevonden" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "Naam van de queue" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Queues die ik beheer" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Queues waarvan in een AdminCC ben" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Snel zoeken" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Snel een ticket aanmaken" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT Beheer" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT Fout" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT in een oogopslag" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT kan content van een andere webpagina toevoegen wanneer dit custom field wordt weergegeven." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT kan deze custom field waarden omzetten in hyperlinks naar andere services." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT voor %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT zal %1 en %2 vervangen met het record id respectievelijk de custom field waarde" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Echte naam" #: lib/RT/User.pm:95 msgid "RealName" msgstr "EchteNaam" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Ontvangers" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Alle wijzigingen opslaan" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Naar gerefeerd door" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "Verwezen vanaf" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Refereert aan" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "Verwijst naar" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Vernieuwen" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Ververs deze pagina elke %1 minuten." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Afwijzen" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Herinneringen" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Verwijder AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Verwijder markering" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Verwijder Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Verwijder aanvrager" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Antwoord" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Antwoord naar adres" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Antwoord naar aanvragers" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Antwoord op tickets" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Aanvrager" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Aanvragers" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Verplichte parameter '%1' ontbreekt" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Herstel" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Woonplaats" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Oplossen" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Los ticket #%1 (%2) op" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Opgelost" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultaten" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Herhaal het wachtwoord" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Herstel" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Recht geladen" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Recht kon niet afgenomen worden" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Recht niet geladen" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Rollen" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Rijen" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Rijen per box" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Rijen per pagina" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Bewaren" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Wijzigingen opslaan" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Bewaar instellingen" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Opgeslagen zoekopdracht" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Opgeslagen zoekopdrachten" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Opgeslagen zoekopdrachten" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Scrip aangemaakt" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Scrips en Ontvangers" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Zoek" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Zoek artikelen" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Zoeken naar autorisaties" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Zoeken naar tickets" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Zoek opties" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "Veiligheid" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Selecteer" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Selecteer een custom field" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Selecteer een groep" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Selecteer een queue" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Selecteer een queue voor je nieuwe ticket" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Selecteer een gebruiker" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Selecteer custom fields voor alle gebruikers groepen" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Selecteer custom fields voor alle gebruikers" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Selecteer custom fields voor tickets in alle queues" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Selecteer custom fields for transacties op tickets in alle queues" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Selecteer meerdere waarden" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Selecteer één waarde" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Selecteer de queues die weergegeven worden op de \"RT in een oogopslag\" pagina" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Selecteer tot %1 waarden" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Stuurt mail naar alle aanvragers en Ccs" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Stuurt mail naar alle aanvragers en Ccs als een \"commentaar\"" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Stuurt een bericht aan de aanvragers" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Stuurt mail aan expliciet genoemde Ccs en Bccs" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Stuurt mail aan de administratieve Ccs" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Stuurt mail aan de administratieve Ccs als een \"commentaar\"" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Stuurt mail aan de eigenaar" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Instellingen" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Toon" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Toon kolommen" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Toon Resultaten" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Toon alle aangehaalde tekst" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Toon goedgekeurde verzoeken" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Toon beknopte headers" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Toon afgewezen verzoeken" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Toon volledige headers" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Toon verzoeken die in behandeling zijn" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Toon aangehaalde tekst" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Toon verzoeken die wachten op andere goedkeuringen" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Toon van de aanvrager de 10 tickets met de hoogste prioriteit" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Toon de 10 hoogste prioriteit inactieve tickets van deze gebruiker" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Schrijf in als een ticket aanvrager of ticket of queue Cc" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Schrijf in als een ticket of queue AdminCc" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Ondertekening" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Zoeken" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Enkel" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Omvang" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Sommige browser laden alleen content als het afkomstig is uit hetzelfde domain als de RT server." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sorteren" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Stadium" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Gestart" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Begint" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Provincie" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Status veranderd van %1 naar %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Steel" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Steel ticket" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Gestolen van %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Stijl" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Onderwerp" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Onderwerp veranderd naar %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Uitvoeren" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Abonnement" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Abonnement kon niet worden aangemaakt: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "Abonnement bijgewerkt" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "Systeem" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Systeem configuratie" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Systeem Fout" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Systeem tools" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Systeem fout. Recht niet toegekend." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "SysteemRolgroep voor intern gebruik" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Neem" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Neem ticket" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Toegeëigend" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Sjabloon" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Sjabloon ontleed" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Sjablonen" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Tekst" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Dat is al de huidige waarde" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Dat is geen waarde voor dit custom field" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Dat ticket heeft onopgeloste afhankelijkheden" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Die gebruiker is al eigenaar van dat ticket" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Die gebruiker bestaat niet" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Die gebruiker is al gerechtigd" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Die gebruiker is reeds ontrechtigd" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Die gebruiker is nu gerechtigd" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Die gebruiker is nu ontrechtigd" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Die gebruiker mag geen eigenaar zijn van tickets in die queue" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Dat is niet een numeriek ID" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "De Beginselen" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "De CC van een ticket" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "De administratieve CC van een ticket" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "De aangevinkte gebruikers ontvangen e-mails over dit ticket afhankelijk van de acties die worden uitgevoerd. Haal het vinkje weg bij de gebruikers om het verzenden van e-mail over dit ticket te stoppen." #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "De waarde is gezet." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "De eigenaar van een ticket" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "De aanvrager van een ticket" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Dit onderdeel is alleen beschikbaar voor systeembeheerders" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "Dit ticket kan niet worden opgelost totdat de %numerate(%1,afhankelijkheid is,afhankelijkheden zijn) opgelost." #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Dit gereedschap stelt de gebruiker in staat arbitraire perl modules te gebruiken vanuit RT" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Het lijkt erop alsof deze transactie geen inhoud heeft" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "De %1 hoogste prioriteit %2 tickets van deze gebruiker" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Ticket #%1 Jumbo actualisering: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Ticket %1 aangemaakt in queue '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Ticket Historie # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Ticket Opgelost" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Ticket transacties" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Ticket en transacties" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Ticket inhoud" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Ticket inhoud type" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Ticket kon niet aangemaakt worden vanwege een interne fout" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Ticket kon niet geladen worden" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "Aantal tickets" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Ticket metagegevens" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Ticket status gewijzigd" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Tickets %1 door %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Tickets welke afhankelijk zijn van deze goedkeuring" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Geschatte tijd" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Resterende tijd" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Gewerkte tijd" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tijd om te tonen" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "Resterende tijd" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "Gewerkte tijd" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Titel" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Aan" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Voor vragen over support, training, bedrijfsspecifieke software-ontwikkeling of licentieovereenkomsten, gelieve contact op te nemen met %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Verteld" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Totaal" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "Transactie" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transactie %1 gezuiverd" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transactie gecreëerd" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Transactie custom fields" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transactie->Creëer kon niet,aangezien er geen objectttype en -id gespecificeerd is" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "Transacties" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Transacties zijn onwijzigbaar" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Haal het vinkje weg om mededelingen aan de geaddresseerden uit te schakelen (alleen voor deze transactie); definitief uitschakelen kan worden bijgewerkt op de personen pagina." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Onbekende InhoudCodering %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Ongelimiteerd" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Onbenoemde zoekopdracht" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Tickets zonder eigenaar" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Tickets zonder eigenaar" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Ongerechtigd" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Vrij" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Ververs" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Bewerk dit menu" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Ticket bijwerken" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Ververs type" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Ververs meer dan één ticket" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Verversing niet opgeslagen." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Ververs ticket" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Ververs ticket #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Ververs ticket #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Verversingstype was noch correspondentie, noch commentaar" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Ververst" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Gebruik andere administratieve RT tools" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Gebruiker Gedifiniëerd" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Informatie gebruiker" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Gebruikersrechten" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "Samenvatting gebruiker" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "De gebruiker vroeg om een onbekende aanpassing van custom field %1 voor %2 object #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Gebruiker kon niet aangemaakt worden: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Gebruiker aangemaakt" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Gebruiker opgehaald" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Door gebruiker gedefinieerde groepen" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "Gebruiker: %1" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Gebruikersnaam" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Gebruikers" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Gebruikers die voldoen aan de zoek criteria" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Geldige Zoekopdracht" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Validatie" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Waarden" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "Waarschuwing: samenvoegen is een onomkeerbare actie! Vul het ticket nummer waarin moet worden samengevoegd." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Toeschouwers" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Wanneer een ticket is aangemaakt" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Wanneer een goedkeuringsticket is aangemaakts, verwittig de Eigenaar en de AdminCc van het onderwerp dat op hun goedkeuring wacht" #: etc/initialdata:137 msgid "When anything happens" msgstr "Wanneer iets gebeurt" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Telkens wanneer een ticket is doorgestuurd" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Wanneer een ticket is afgewezen" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Wanneer een ticket is opgelost" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Telkens wanneer een ticket of transactie is doorgestuurd" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Wanneer de eigenaar van een ticket verandert" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Wanneer de queue van een ticket verandert" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Wanneer de status van een ticket verandert" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Telkens wanneer een transactie is doorgestuurd" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Wanneer een door de gebruiker gedifiniëerde voorwaarde gebeurt" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Wanneer commentaar binnenkomt" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Wanneer correspondentie binnenkomt" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "breedte" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Werk" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Werk" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Gewerkt" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,uur,uren) (%quant(%2,minuut,minuten)) gewerkt" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "U bent al eigenaar van dit ticket" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "U kunt alleen tickets opnieuw toebedelen die van u zijn, of van niemand" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Alleen tickets zonder eigenaar kunnen toegeëigend worden" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "U bent afgemeld bij RT" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "U heeft geen toestemming om tickets aan te maken in die queue." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "U mag zich weer aanmelden" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Uw gebruikersnaam of wachtwoord zijn onjuist" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Postcode" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "actieve" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "Na" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "Voor" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "dagelijks om %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "verwijderd" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "gelijk aan" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "groter dan" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "groep '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "inactieve" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "is niet" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "van links naar rechts" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "minder dan" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "voldoet aan" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minuten" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "maandelijks" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "maandelijks (dag %1) om %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "nooit" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "nieuw" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "geen" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "niet gelijk aan" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "niets" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "Op" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "" #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "ontvangt dagelijkse verslagen" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "afgewezen" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "opgelost" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "zoeken" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "geparkeerd" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "systeem %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "systeem groep '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "het aanroepende component specificeerde niet waarom" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "van boven naar beneden" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "onbeschreven groep %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "Ongelimiteerd" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "Bewerk een artikel" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "gebruiker" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "gebruiker %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "gebruikersnaam" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "wekelijks" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "wekelijks (op %1) om %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "weken" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "naar welke poort je webserver luistert, bijv. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "met headers" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "ja" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "uw browser gaf geen zogenaamde referrer header" rt-4.4.2/share/po/fi.po0000664000175000017500000121250713131430353014520 0ustar vagrantvagrant# Finnish translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 10:06+0000\n" "Last-Translator: Shawn M Moore \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "Tiketti #%1: %2" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3.%2 %7 %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 lisätty" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1: %2 muutettu arvoon %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 poistettu" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 postettu." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 ei löydy" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 on poistettu käytöstä" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 tallennettu." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 päivitetty" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 mallia %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) lähettäjä %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Ei muutoksia)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (lähtöisin paneelista %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Mukauta LogToSTDERR konfiguraatioparametria" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Argumentti %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Tulosta tilan muutokset STDOUT:iin" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 Määrittele haluatko käyttää 'first','last' vai 'all' tapahtumia" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Määritä nimi tai id-tunniste niille mallipohjille joita haluat käyttää" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Määrittele lista toimintojen tyypeistä joita haluat käyttää (pilkulla erotettuna)" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Määrittele ehto-moduli jota haluat käyttää" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 Määrittele hakumoduli jota haluat käyttää" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 lisätty %2 arvoksi" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "%1 sitten" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 on jo olemassa ja sisältää RT:n taulut mutta tauluissa ei ole RT:n metatiedot. 'Alusta tietokanta' askel voi lisätä metatiedot olemassa olevaan tietokantaan. Jos hyväksytte tämän klikatkaa 'Muokkaa perustietoja' valintaa alapuolella jatkaaksenne RT:n kustomointia." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 on jo olemassa mutta ei sisällä RT:n tauluja tai metatietoja. 'Alusta tietokanta' askel voi lisätä taulut ja metatiedot tietokantaan. Jos hyväksytte tämän klikatkaa 'Muokkaa perustietoja'-valintaa alapuolella jatkaaksenne RT:n kustomointia." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 on paikallinen objekti mutta sitä ei löydy tietokannasta" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 on alustettu. Tauluja ei tarvitse luoda uudestaan eikä metatietoja tarvitse lisätä, voit jatkaa RT:n kustomointia klikkaamalla 'Muokkaa perustietoja'-valintaa alapuolella" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 - %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 ei voi olla ryhmä" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 muutettu arvosta %2 arvoon %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 muutettu arvosta '%2' arvoon '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 kopio" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 arvoa ei voitu asettaa arvoksi %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 luotu" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 poistettu" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 ei käytössä" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 ei ole olemassa." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 käytössä" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 tärkeintä minun tikettiä" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 on työkalu joka reagoi tiketteihin ulkoisista ajastusohjelmista kuten cron-palvelusta." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 on apuohjelma joka on tarkoitettu ajettavaksi cron-palvelusta, joka lähettää kaikki lykätyt RT:n ilmoitukset lyhennelminä." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 on jo %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "RT lähettää sähköpostia osoitteesta %1. Lisäämällä sen '%2' luodaan sähköpostisilmukka (jota et halua)." #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 ei ole enää kentän %2 arvo" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 ei ole %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 avain '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 viimeksi päivitettyä artikkelia" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 uusinta artikkelia" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 uusinta osoittamatonta tikettiä" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objektia" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 sivuston asetukset" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 päivitys: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 päivitys: Ei muutoksia" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 päivitetty" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1:n %2 objektia" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1:n %2:n %3 objektia" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "käyttäjän %1 nykyinen salasana" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1:n työtilat" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1:n tallennettua hakua" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: liitetiedostoa ei ole määritelty" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "%1t" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "%1 kk" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "%1 kk" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Uusi tiketti%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "%1 vk" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "%1 v" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "%1 pv" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "%1 t" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,artikkeli,artikkelia)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,päivä,päivää)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,tunti,tuntia)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,tunti,tuntia) (%quant(%2,minuutti,minuuttia))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,minuutti,minuuttia)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,kuukausi,kuukautta)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,sekuntti,sekunttia)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,viikko,viikkoa)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,vuosi,vuotta)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' ei ole kelvollinen nimi" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' ei ole kelvollinen luokka" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "%1 ei ole kelvollinen luokan tunnistin" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "Laita ruksi kun olet valmis" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Valitse poistettavat)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Rastita laatikko poistaaksesi)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "Kirjoita tikettien numerot tai URLit välilyönneillä erotettuna" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Jos jätetty tyhjäksi, asetetaan oletusarvoisesti arvoon %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(kesken)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Ei kenttiä)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Ei jäseniä)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Ei komentosarjoja)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Ei mallineita)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Lähettää kopion tästä muutoksesta pääkäyttäjien sähköpostiosoitteisiin. Osoitteiden tulee olla erotettuina toisistaan pilkulla. Nämä henkilöt vastaanottavat myös kaikki tulevaisuudessa tapahtuvat päivitykset.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Lähettää kopion tästä muutoksesta näihin sähköpostiosoitteisiin. Osoitteiden tulee olla erotettuina toisistaan pilkulla. Nämä henkilöt vastaanottavat myös kaikki tulevaisuudessa tapahtuvat päivitykset.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Käytä näitä kenttiä kun valitset ehdoksi tai toiminnoksi 'Käyttäjän määrittelemä')" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(mikä tahansa)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(ei yhteenvetoa)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(ei nimeä)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(ei julkista avainta!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(ei arvoa)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(ei arvoja)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(%quant(%1,muuta tikettiä) odottaa)" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(odottaa hyväksyntää)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(pakollinen)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(luota: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(nimetön)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(epäluotettu!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id on vanhentunut komentoparametri, eikä sitä voida käyttää yhdessä --template parametrin kanssa" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--tapahtuman argumentti voi olla vain 'first', 'last' tai 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 sekuntia" #: lib/RT/Date.pm:424 msgid "0s" msgstr "0 s" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "Tyhjä malli" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Koska salasanaa ei asetettu, käyttäjä ei pysty kirjautumaan järjestelmään." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE ei löytynyt" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACE:ja voi vain luoda ja poistaa." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "JA" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Omat asetukset" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Pääsynvalvonta" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Tapahtuma" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Toiminto '%1' ei löydy" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Tehtävä suoritettu." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Toiminto on välttämätön argumentti" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Toiminto valmisteltu..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Toimenpiteet" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Aktiiviset tiketit" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Käyttäjän %1 aktiiviset tiketit" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Lisää %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Lisää kopio ylläpidolle" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Lisää suosikkeihin" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Lisää kopio" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Lisää rivejä" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Lisää ehto" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Liitä" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Lisää tilaaja" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Lisää arvo" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Lisää kommentteja tai vastauksia valituille tiketeille" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Lisää ryhmä" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Lisää tähän" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Lisää jäseniä" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Lisää uusia valvojia" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Lisää oikeudet kohteeseen %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Lisää nämä ehdot" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Lisää nämä ehdot ja hae" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Lisää käytttäjä" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Lisää arvoja" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Lisää, muokkaa ja poista kohteiden räätälöityjen kenttien arvoja" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Lisätty" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Osoite" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Osoite 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Osoite1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Osoite2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Ylläpito" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "Kopio ylläpidolle" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Ylläpidon kommentti" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Ylläpidon vastaus" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Jonojen ylläpito" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Ylläpito/Yleiset asetukset" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "Kopio ylläpidolle" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Hallintasalasana" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Lisäasetukset" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Tarkennettu haku" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Kirjautumisen jälkeen siirryt sivulle jossa olit" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Yhdistäjä" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Kaikki hyväksynnät saatu" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Näytä kaikki tämän luokan artikkelit alasvetovalikossa tikettiin vastattaessa" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Kaikki luokat" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Kaikki työtilat" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Kaikki jonot" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Kaikki tiketit" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Kaikki iCal syötteet sisältävät salaisen tunnisteen. Jos jonkin iCal syötteen osoite paljastuu kolmansille osapuolille voit hankkia uuden tunnisteen." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Kaikki hakukriteerejä vastaavat jonot" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Kaikki tiketit" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Kaikki aiheet" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Salli hakujen tallentaminen" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Salli tallennettujen hakujen lataaminen" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Hyväksy Perl-koodi viestipohjissa, scripeissä, jne." #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Salattu" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Ja/Tai" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Vuosittain" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Mikä tahansa kenttä" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Pätee" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Koskee kaikkia objekteja" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Käytä" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Ota käyttöön kaikkialla" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Käytä" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Hyväksyntä" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Hyväksyntä #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Hyväksyntä #%1: Merkintöjä ei tallennettu järjestelmävirheen takia" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Hyväksyntä #%1: Merkinnät tallennettu" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Hyväksytty" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Hyväksyntä valmiina yhteyshenkilölle" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Hylätty" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Hyväksy" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "4." #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Artikkeli %1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Artikkeli %1 luotu" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Artikkelien hallinta" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artikkelia ei löydy" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Artikkelit" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Artikkelit kohteessa %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Artikkelit haulla %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artikkelit ilman aihetta" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Nouseva" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Lisää ja poista jonon omia kenttiä" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Liitetiedosto" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Lisää tiedosto" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Liitetiedostot" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Liite" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Liitteen '%1' lataaminen ei onnistunut" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Liitetiedosto luotu" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Liitetiedoston nimi" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Liitetiedostot" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Liitteiden salaus on pois käytöstä" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Määrite poistettu" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "8." #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Teemavärien ehdottaminen automaattisesti ei toimi tällä kuvalla. Tämä voi johtua esimerkiksi siitä, että palvelimelle asennettu GD:n versio ei tue tämän tyyppisiä kuvia. Tuetut kuvatyypit ovat: %1. Voit kääntää libgd ja GD.pm uudelleen laajemmalla joukolla tuettuja muotoja." #: etc/initialdata:261 msgid "Autoreply" msgstr "Automaattivastaus" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Automaattivastaus tilaajille" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Käytettävissä" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Takaisin" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Huono yksitysisyysmäärite %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Perustiedot" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Piilokopio" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Tyhjä" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Sisältö" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Lihavoitu" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Suosikki" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Suosikit" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Tiketit suosikeissa" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Selaa aiheittain" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Tikettien päivitys" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "Kopio-ryhmä" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Talletettua hakua \"%1\" ei pystytä lataamaan" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Järjestelmäkäyttäjien muokkaus ei ole sallittua" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Kentän lisääminen ilman nimeä ei onnistu" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Tallennettuja hakuja ei löydy" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Tiketti ei voi viitata itseensä" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Ei voida tallentaa %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Ei voida tallentaa tätä hakua" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Ei voitu luoda tikettejä passiiviseen ryhmään." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Luokittelut pohjautuvat" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Luokka" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Kopio" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "Kopio" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Muuta" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Muuta Hyväksytty tiketti avoimeksi" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Vaihda salasanaa" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Valitse kaikki" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Tarkista tietokantayhteys" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Tarkista tietokantayhteyksien käyttäjätiedot" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Valitse laatikko poistaaksesi" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Johdannaiset" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Valitse tietokanta" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Valitse jonon %1 aiheista" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Kaupunki" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Luokka" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Luokan nimi" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Luokan tunnus" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Luokka on jo käytössä kohteelle %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Luokat" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Tyhjennä" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Tyhjennä kaikki" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Valitse \"Valmistele asennus\" alapuolelta lopettaaksesi automaattisen toiminnon." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Valitse \"Alusta tietokanta\" luodaksesi tikettijärjestelmän tietokanta ja lisätäksesi metatiedot. Tämä voi kestää hetken" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Suljettu" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Suljetut tiketit" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Monivalinta: Valitse tai lisää vaihtoehtoja" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Monivalinta: Valitse tai lisää yksi arvo" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Monivalinta: Valitse tai lisää %1 arvo" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Kommentoi" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Kommenttien osoite" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Kommenttiosoite" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Kommentoi tikettejä" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentit" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Kommentti (ei lähetetä tilaajille)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Kommentit tästä käyttäjästä" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Kommentti lisätty" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Suorita tumppi" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Ehto" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Ehtoa '%1' ei löydy" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Tila on pakollinen määrite" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Ehto täsmää..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Ehto, Toiminto ja Malli" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Asetustiedosto %1 on lukittu" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Jonon %1 asetukset" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Yhteys muodostettu" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Sisältö" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Sisältö ei ole kelvollinen IP-osoite" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Sisältö ei ole kelvollinen IP-osoitealue" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Sisällön tyyppi" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Tilaajan osoite" #: etc/initialdata:393 msgid "Correspondence" msgstr "Vastaus" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Kirjeenvaihto lisätty" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Ei voitu lisätä uutta erikoiskentän arvoa: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Ei voida vaihtaa yhteyshenkilöä: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Ei voitu luoda erikoiskenttää: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Ryhmän luominen epäonnistui" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Ei voitu luoda hakua: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Tiketin luonti epäonnistui. Jonoa ei ole asetettu" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Käyttäjän luonti epäonnistui" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Ei voitu ladata %1 määritettä" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Luokan %1 lataaminen ei onnistunut" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Ei voitu ladata erikoiskenttää %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Ryhmän lataaminen ei onnistunut" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Ei voitu ladata objektia %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Ei voitu asettaa käyttäjätietoa" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Ei voitu lisätä liitetiedostoa" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Jäsenen lisääminen ryhmään ei onnistunut" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Kohteen %1 koodilohkon '%2' kääntäminen ei onnistunut: %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Pohjan koodilohkon '%1' kääntäminen ei onnistunut: %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Tapahtuman luominen ei onnistunut: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Tietueen luominen ei onnistunut: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Ei voitu poistaa työtilaa %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Riviä ei löytynyt" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Sopivaa tapahtumaa ei löydy, hypätään yli" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Toimeksiantajaa ei löytynyt" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Arvoa ei löytynyt" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Ei voitu ladata luokkaa %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Ei voitu ladata erikoiskenttää #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Oman kentän #%1 lataaminen ei onnistunut" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Ei voitu ladata erikoiskenttää #%1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Ei voitu ladata tiketin #%1 kopiota" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Ei voitu ladata työtilaa %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Ei voitu ladata ryhmää #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Ryhmän %1 lataaminen ei onnistunut" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Linkin lataaminen ei onnistunut" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Ei voitu ladata objektia %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Ei voitu ladata tai luoda käyttäjää: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Jonon lataaminen ei onnistunut" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Ei voitu ladata jonoa #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Jonon %1 lataaminen ei onnistunut" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Ei voitu ladata jonoa '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Ei voitu ladata automaattitoimintoa #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Ei voitu ladata mallia #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Tiketin '%1' lataaminen ei onnistunut" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Ei voitu ladata toimintoa #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Ei voitu ladata käyttäjää" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Ei voitu ladata käyttäjää #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Ei voitu ladata käyttäjää #%1 tai '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Ei voitu ladata käyttäjää '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Ei voitu korvata sisältöä salaamattomalla tiedolla: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Ei voitu korvata sisältöä salatulla tiedolla: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Ei voitu selvittää '%1' osoitteeksi." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Ei voitu selvittää kohdetta '%1' osoitteeksi." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Ei voitu asettaa %1 valvojaa: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Ei voitu asettaa henkilökohtaista avainta" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Ei voitu poistaa henkilökohtaista avainta" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Maa" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Luo" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Luo tikettejä" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Uusi luokka" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Luo kenttä" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Luo kenttä jonolle %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Uusi artikkeli" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Uusi artikkeli kohteeseen" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Luo uusi työtila" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Luo uusi ryhmä" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Uusi mallipohja jonolle %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Luo uusi käyttäjä" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Luo uusi jono" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Luo malli" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Luo tiketti" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Uusi artikkeli" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Uusi artikkeli luokassa..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Uusi artikkeli tähän luokkaan" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Luo ryhmän työtiloja" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Luo uusia tikettejä tämän automaattitoiminnon perusteella" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Luo henkilökohtaisia työtiloja" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Luo järjestelmän työtiloja" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Luo tiketti" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Luo tikettejä" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Luo, muuta ja poista pääsylistan rivejä" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Luo, muuta ja poista omia kenttiä" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Luo, muuta ja poista omien kenttien arvoja" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Luo, muuta ja poista jonoja" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Luo, muuta ja poista tallennettuja hakuja" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Luo, muuta ja poista käyttäjiä" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Luotu" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Tekijä" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Luotu kenttä %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Luonut" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Luotiin haku %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Luoja" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kryptografia" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Viittaukset" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Nykyinen haku" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Tämänhetkiset jäsenet" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Nykyinen haku" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Nykyiset valvojat" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Kentät" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Erikoiskentät %1 varten" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Omat kentät jonolle %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Erikoistoiminto valmistelukoodille" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Erikoisehto" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Omaa kenttää %1 ei käytetä tässä kohteessa" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Kenttä %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Erikoiskenttä %1 ei vastaa tätä objektia" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Kentällä %1 on arvo" #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Kentällä %1 ei ole arvoa" #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Erikoistkenttää %1 ei löydy" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Kentän arvoa %1 ei löytynyt kentälle %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Kentän arvoa ei pystytty poistamaan" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Kentän arvo poistettu" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Mukauta" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Muokkaa perustietoja" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Muokkaa sähköpostiosoitetta" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Muokkaa sähköpostiasetuksia" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Muokkaa työtiloja valikossa" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Muokkaa RT:n ulkoasua" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA salasana" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA käyttäjätunnus" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Päivittäin" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Päivän luetuimmat" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Työtila" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "Työtilaa %1 ei voitu päivittää: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "Työtila %1 päivitetty" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Työtilaa ei voitu luoda: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Työtilaa ei voitu päivittää: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Työtila päivitetty" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Työtilat" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Työtilat valikossa" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Työtilat valikossa käyttäjälle %1" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Tietokantapalvelin" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Tietokannan nimi" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Tikettijärjestelmän tietokannan salasana" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Tietokannan portti" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tietokannan tyyppi" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Tietokannan käyttäjänimi" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "Päivämäärä" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Päivämäärän muoto" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Päivämäärät" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "Päivä" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "12." #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Pura salaus" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Oletus jono" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Oletus: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Oletus: %1/%2 muutettu arvosta %3 arvoon %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Oletusmuoto" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Poista" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Poista malli" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Poistaminen epäonnistui: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Poista ryhmän työtilat" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Elinkaaren hallinta estää poistamisen" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Poista henkilökohtaiset työtilat" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Poista järjestelmän työtilat" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Poista tiketit" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Poista arvot" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Poistettu %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Poista tallennettu haku" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Tämän objektin poistaminen rikkoo tietokannan viitteet" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Tämän objektin poistaminen rikkoo tietokannan viitteet" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Estä" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Riippuvuus tähän tikettiin" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Riippuvuus %1 lisätty" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Riippuvuus %1 poistettu" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Riippuvuus %1 lisätty" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Riippuvuus %1 poistettu" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Riippuvuus tiketistä" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Laskeva" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Kuvaus" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Kuvaus" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Tarkat tiedot RT:n asennuksesta" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Yksityiskohdat" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Suunta" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Poistettu käytöstä" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Näytä" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Näytä käyttöoikeuslista" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Artikkeli %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Näytä rivit" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Tee mitä tahansa ja kaikki" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Domainnimi" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Älä lisää http://, vain 'localhost', 'rt.example.com' tms." #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Älä päivitä kotisivua" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Älä päivitä haun tuloksia" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Älä päivitä tätä sivua" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Älä luota tähän avaimeen" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Lataa" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Lataa dump-tiedosto" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Määräaika" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "VIRHE: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Avoimien tikettien helppo muokkaus" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Muokkaa" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Muokkaa erikoiskenttiä" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Muokkaa jonon %1 kenttiä" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Muokkaa erikoiskenttiä kaikille ryhmille" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Muokkaa erikoiskenttiä kaikille jonoille" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Muokkaa erikoiskenttiä kaikille käyttäjille" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Muokkaa kaikkien luokkien artikkelien omia kenttiä" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Muokkaa erikoiskenttiä kaikille tiketeille, kaikissa jonoissa" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Muokkaa viittauksia" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Muokkaa kyselyä" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Muokkaa hakua" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Muokkaa globaalia aihehierarkiaa" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Muokkaa järjestelmäpohjia" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Muokkaa luokan %1 aihehierarkiaa" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Muokataan kenttää %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Muokataan ryhmän %1 jäseniä" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Joko juuri tai kohde täytyy olla määritelty" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Sinulla ei ole oikeuksia katsella tallennettua hakua %1 tai tunniste on väärä" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "Sähköposti" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Sähköpostiosoite" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Sähköpostin tiivistelmä" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Sähköpostiosoite on jo käytössä" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Sähköpostin lähetys" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Sähköpostimalli säännöllisille huomautusviesteille" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "Sähköpostiosoite" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "Tyhjä" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Käytössä" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Käytössä (valinnan poistaminen passivoi luokan)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Aktiivinen (rastin poistaminen passivoi kentän)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Aktiivinen (rastin poistaminen passivoi ryhmän)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Aktiivinen (valinnan poistaminen passivoi jonon)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Käytössä olevat luokat" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Aktiiviset jonot" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Aktivoitu tila %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Salaa" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Salaa oletuksena" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Salaa/Pura salaus" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Salaa/Pura salaus tapahtumalle #%1 tiketissä #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Syötä useita IP-osoiteavaruuksia" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Syötä useita IP-osoitteita" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Anna useampi arvo" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Anna monta arvoa automaattitäydennykselle" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Kirjoita objektit tai verkko-osoitteet joihin haluat linkittää objekteja (erota tiedot välilyönnillä)." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Syötä yksi IP-osoite" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Syötä yksi IP-osoiteavaruus" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Anna yksi arvo" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Anna arvo automaattitäydennyksen kera" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Kirjoita jonot tai verkko-osoitteet linkittääksesi jonoja (erota tiedot välilyönnillä)." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Kirjoita tikettien numerot tai www-osoitteet (erota tiedot välilyönnillä)." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Syötä korkeintaan %1 IP-osoitetta" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Anna %1 arvoa" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Anna %1 arvoa automaattitäydennyksien kera" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Virhe" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Virhe: Julkinen avain virheellinen" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Virhe: Työtilaa ei löydy" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Virhe: viallinen GnuPG tieto" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Virhe: tallennetun haun %1 lataaminen ei onnistunut: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Virhe: ei julkista avainta" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Virhe: julkinen avain" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Virhe: haun %1 päivittäminen ei onnistunut: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Eskaloi tikettejä" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Arvioitu" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Kaikki" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Esimerkki:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "LaajaTila" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Ulkoinen tunnistus käytössä" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Lisätieto" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Muodosta artikkeli" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Muodosta aihe-tagi" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Muodosta artikkeli tiketistä #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Muodosta artikkeli tiketistä #%1 luokkaan %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Tietokantaan yhdistäminen ei onnistunut: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Objektin %1 attribuutin luominen ei onnistunut" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "'Erioikeutettu'-valeryhmää ei löytynyt" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Käyttäjäryhmää 'Käyttöoikeudeton' ei löydy" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Objektin %1 %2 lataaminen ei onnistunut" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Objektin %1 %2 lataaminen ei onnistunut: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Moduulin %1 lataaminen ei onnistunut. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Ei voitu ladata mallia" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Ei voitu muodostaa mallia" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "2." #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Syötteet" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Kenttä" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Kentän arvojen lähde:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Tiedostonimi" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Loppuprioriteetti" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Etsi kaikki käyttäjät joiden" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Etsi ryhmät joiden" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Etsi käyttäjät, joiden" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Hae tikettejä" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Sormenjälki" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Valmis" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Ensimmäinen" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Pakota muutos" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Ulkoasu" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Välitä" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Välitä viesti" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Lähetä eteenpäin ja palaa" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Välitä tiketti" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Välitä viestejä RT:n ulkopuolelle" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Välitä tiketti #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Välitä tapahtuma #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Tiketti välitetty %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Löytyi %1 tikettiä" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Objekti löytyi" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "pe" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "perjantai" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Lähettäjä" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD ei asennettu tai ei käytössä. Voit ladata kuvan, mutta et saa automaattisia ehdotuksia teemaväreiksi." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Yleiset" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Yleiset oikeudet" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Alkuun pääseminen" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Annettu käyttäjälle %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Yleiset" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Globaalit attribuutit" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Globaalit aiheet" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Globaalit omien kenttien asetukset" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "Yleiset työtilat valikossa tallennettu." #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Siirry" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Siirry käyttäjään" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Ok!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Siirry tikettiin" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Siirry tikettiin" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Ryhmä" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Ryhmän oikeudet" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Ryhmässä on jo jäsen: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Ryhmää ei voitu luoda: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Ryhmä luotu" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Ryhmä poistettu käytöstä" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Ryhmä käytössä" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Ryhmässä ei ole sellaista jäsentä" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Ryhmän nimi '%1' on jo käytössä" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Ryhmää ei löydy" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Ryhmät" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Ryhmät eivät voi olla jäsentensä jäseniä" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Hakua vastaavat ryhmät" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Ryhmät joihin tämä käyttäjä kuuluu" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Välitettävän tiketin otsikko" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Välitettävän viestin otsikko" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Hei!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Piilota lainattu teksti" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historia" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Ryhmän %1 historia" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Käyttäjän %1 historia" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Kotipuhelin" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Etusivu" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "tunti" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "tuntia" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "Numero" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identiteetti" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Jos hyväksyntä hylätään, hylkää alkuperäinen ja poista siitä riippuvat hyväksynnät" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Jos olet vaihtanut portin jolla RT:tä ajetaan, sinun täytyy käynnistää palvelin uudestaan kirjautuaksesi." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Jos olet muuttanut tietoja, muista tallentaa" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Kelpaamaton arvo %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Muuttumaton kenttä" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Ei aktiiviset tiketit" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Sisällytä passiiviset kentät listaukseen" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Sisällytä listaukseen myös passiiviset jonot." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Sisällytä listaukseen myös passiiviset käyttäjät." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Sisällytä sivu" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Sisällytä aliotsikot" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Yksittäiset viestit" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Ota yhteys ylläpitoon: käyttäjällä on ongelmia julkisten avaimien kanssa" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Ilmoita työtilan käyttäjille että sitä ei löydy" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Tiedota käyttäjälle että viestin GnuPG-data on virheellinen" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Tiedota käyttäjää että hänen salasanansa on resetoitu" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Alkuprioriteetti" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Alusta tietokanta" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Virhe syötteessä" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Sisäinen virhe: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Sisäinen virhe: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Virheellinen %1: sen täytyy olla numero" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Kelpaamatonta dataa" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Kelpaamaton jono" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Kelpaamaton oikeus" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Virheellisesti muotoiltu sähköpostiosoite" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Kelpaamaton arvo kohteelle %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Kelpaamaton arvo kentälle" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Ei ole salattu" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "" #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Kursiivi" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "1." #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "7." #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Muokkaa" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "6." #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Kieli" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Kieli" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Suuri" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Viimeinen" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Viimeinen viesti" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Viimeksi otettu yhteyttä" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Viimeksi päivitetty" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Päivittänyt viimeksi" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Viimeksi päivitetty" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Päivittänyt viimeksi" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Jäljellä" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Päästä tämä käyttäjä sisään RT:iin" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Tälle käyttäjälle voidaan antaa oikeuksia" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Okei, aloitetaan!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Linkki on jo olemassa" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Linkkiä ei löydy" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Lisää viittaus #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Viittaukset" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Lataa tallennettu haku" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Lataa tallennettu haku" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Ladattiin alkuperäinen tallennettu haku \"%1\"" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Perl-moodulit ladattu" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Ladattiin tallennettu haku \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Ladataan..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Maa-asetukset" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Sijainti" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Kirjautunut" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Käyttäjä: %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Kirjauduttu ulos" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Kirjaudu sisään" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Kirjaudu ulos" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Sähköposti" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Aseta yhteyshenkilö" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Aseta tila" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Aseta erääntymisaika" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Aseta aloitusaika" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Aseta alkuaika" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Aseta viimeisen viestin lähetysaika" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Aseta prioriteetti" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Aseta jono" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Aseta otsikko" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Omien kenttien ja omien kenttien arvojen hallinta" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Hallinnoi ryhmiä ja jäsenyyksiä" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Hallinnoi yleisiä asetuksia, jotka vaikuttavat kaikkiin jonoihin" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Hallinnoi jonoja ja työjonokohtaisia asetuksia" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Tallennettujen graafien hallinta" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Hallinnoi käyttäjiä ja salasanoja" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "3." #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Kaikki viestit merkitty luetuiksi" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Mason -pohjien hakujärjestys" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "5." #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Minä" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Jäsen" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Jäsen %1 lisätty" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Jäsen %1 poistettu" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Jäsen lisätty: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Jäsen poistettu" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Jäsentä ei poistettu" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Jäsenet" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Lisätty %1 jäsenyys" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Poistettu %1 jäsenyys" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Jäsenyydet" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Käyttäjän %1 jäsenyydet" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Yhdistäminen onnistui" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Yhdistäminen epäonnistui. EffectiveId:n arvoa ei pystytty asettamaan" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Yhdistä" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Yhdistetty kohteeseen %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Viesti" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Viestiä ei näytetä tässä, koska se on liian pitkä." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Viestiä ei näytetä tässä lähettäjän pyynnöstä." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Viestiä ei näytetä tässä, koska se ei ole pelkkää tekstiä." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Viestikentän korkeus" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Viestikentän leveys" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Viestiä ei voitu tallentaa" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Viesti käyttäjälle" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Viesti tallennettu" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Salasanan minimipituus" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuuttia" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Sekalaiset" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Puuttuva pääavain?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Kännykkä" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Matkapuhelin" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Muokkaa" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Muokkaa jäseniä" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Muokkaa Scrip -pohjia" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Muokkaa Scripejä" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Muokkaa jonon %1 omaa kenttää" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Muokkaa artikkelia #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Muokkaa %1 liittyviä objekteja" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Muokkaa omien kenttien arvoja" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Muokkaa tiketin #%1 päivämääriä" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Muokkaa yleisiä artikkelien aiheita" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Muokkaa yleisiä omia kenttiä" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Muokkaa ryhmien yleisiä oikeuksia" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Muokkaa yleisiä aiheita" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Muokkaa yleisiä käyttäjien oikeuksia" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Muokkaa ryhmän työtiloja" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Muokkaa ryhmän jäsenluetteloa" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Muokkaa ryhmän metatietoja tai poista ryhmä" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Muokkaa luokan %1 ryhmäoikeuksia" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Muokkaa oman kentän %1 ryhmäoikeuksia" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Muokkaa ryhmän %1 oikeuksia." #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Muokkaa ryhmän oikeuksia jonossa %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Muokkaa luokan metatietoja ja omia kenttiä" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Muokkaa omaa RT-tunnustasi" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Muokkaa tiketin #%1 käyttäjiä" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Muokkaa henkilökohtaisia työtiloja" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Muokkaa jonon seuraajia" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Muokkaa jonoon %1 liittyviä toimintoja" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Muokkaa toimintoja, joita sovelletaan kaikkiin jonoihin" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Muokkaa järjestelmän työtiloja" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Muokkaa mallia %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Muokkaa jonon %2 pohjaa %1" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Muokkaaa pohjia, joita sovelletaan kaikkiin jonoihin" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Muokkaa työtilan %1 sisältöä" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Muokkaa työtilaa %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Muokkaa ryhmää %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Muokkaa työtilan %1 tilauksia" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Muokkaa käyttäjää %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Muokkaa tätä hakua..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Muokkaa tikettiä #%1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Muokkaa tikettiä #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Muokkaa tikettejä" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Muokkaa %1 aihetta" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Muokkaa luokan aihehierarkiaa" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Muokkaa luokan artikkelien aiheita" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Muokkaa luokan %1 käyttäjäoikeuksia" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Muokkaa käyttäjäoikeuksia omalle kentälle %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Muokkaa ryhmän %1 käyttäjien oikeuksia" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Muokkaa jonoon %1 liittyviä käyttäjien oikeuksia" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Muokkaa tiketin #%1 sähköpostin vastaanottajia" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Moduuli" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "ma" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "maanantai" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Lisätietoja tilaajasta" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Monta" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "'Nimi' täytyy määritellä" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Minun %1 tiketit" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Hyväksyntäni" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Päivänäkymä" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Muistutukseni" #: etc/initialdata:890 msgid "My Tickets" msgstr "Minun tiketit" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Hyväksyntäni" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "Minun suljetut tiketit" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Omat työtilat" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Minun avoimet tiketit" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Muistutukseni" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Tallennetut hakuni" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "RIVINVAIHTO" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Nimi" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Nimi ja sähköposti" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Nimi on käytössä" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Nimi:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Ei ikinä" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Uusi" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Uusi Artikkeli" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Uusi työtila" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Uusi viittaus" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Uusi odottava hyväksyntä" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Uusi haku" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Uudet viestit" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Uusi salasana" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Uusi salasana" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Uusi muistutus:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Uusi tiketti" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Uutta tikettiä ei ole olemassa" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Uusi valvoja" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Seuraava" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Lempinimi" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Lempinimi" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Ei" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "%1 ei ladattu" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Mikään artikkeli ei vastaa hakua %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Luokkaa ei määritetty" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Ei hakuehtoa vastaavia luokkia." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Ei kenttiä" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Ryhmää ei ole määritelty" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Jonoa ei ole määritelty" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "RT käyttäjää ei löytynyt. Ole hyvä ja ota yhteys RT-ylläpitäjääsi." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Ei otsikkoa" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Ei mallia" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Ei toimintoa" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Saraketta ei ole määritelty" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Ei kommentteja" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Ei kuvausta kohteelle %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Ryhmää ei ole määritelty" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Ryhmää ei löydy." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Ei salaamiseen soveltuvaa avainta" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Ei liitettyä viestiä" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Nimi puuttuu" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Salasanaa ei ole asetettu" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Ei oikeutta luoda jonoja" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Ei oikeutta luoda tikettejä jonoon '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Ei oikeutta tarkastella tätä tikettiä" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Ei oikeutta tallentaa järjestelmätason hakuja" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Ei oikeutta Artikkelin katsomiseen" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Ei oikeutta nähdä tikettiä" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Toimeksiantajia ei ole valittu." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Ei henkilökohtaista avainta" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Yhtään tikettiä ei löytynyt." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Oikeuksia ei ole" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Ei työstettävää hakua" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Ei otsikkoa" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Avainta ei löydy tai sitä ei voida käyttää allekirjoittamiseen" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Tikettejä ei löydy." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Tapahtuman tyyppiä ei ole määritelty" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Ei käyttökelpoisia avaimia." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Yhtään käyttäjää ei löydy." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Tuntematon" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Ei mitään" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Olematon kenttä?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Ei tuloksia" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Et ole kirjautunut järjestelmään" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Ei asetettu" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Etkö käytä mobiiliselainta?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Merkintöjä" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Ilmoitusta ei pystytty lähettämään" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "" #: etc/initialdata:47 msgid "Notify Owner" msgstr "" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "11." #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "TAI" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekti" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objektia ei voitu luoda" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Objektia ei voitu poistaa" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objekti luotu" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objekti poistettu" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Objektit ovat eri tyyppejä" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Tyhjä objektiluettelo" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "10." #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "%2 kirjoitti %1:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Suljettaessa" #: etc/initialdata:170 msgid "On Comment" msgstr "Kommentoitaessa" #: etc/initialdata:142 msgid "On Correspond" msgstr "" #: etc/initialdata:131 msgid "On Create" msgstr "Luotaessa" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Yhteyshenkilön vaihtuessa" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Prioriteetin muuttuessa" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Jonon muuttuessa" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Hylättäessä" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Uudelleenavauksen yhteydessä" #: etc/initialdata:205 msgid "On Resolve" msgstr "Ratkaistaessa" #: etc/initialdata:176 msgid "On Status Change" msgstr "Tilan muuttuessa" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Piilokopio" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Kopio" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Näytä vain pyynnöt, jotka on luotu jälkeen %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Näytä vain pyynnöt, jotka on luotu ennen %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Avaa" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Avoimet tiketit" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Avaa osoite" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Avoimet tiketit" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Avaa tiketit kun esiintyy kirjeenvaihtoa" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Asetukset" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Laitos" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Alkuperäinen tiketti: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Lähtevä sähköposti lisätty" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Lähtevä sähköposti lisätty" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Lähtevä posti" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Yleiskuva" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Omat tiketit" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Yhteyshenkilö" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Yhteyshenkilöksi %1 vaihdettu arvoon %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Yhteyshenkilöksi %1 vaihdettu arvoon %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "OmistajanNimi" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Sivu" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Sivu 1/1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Sivua ei löydy" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Hakulaite" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Hakulaite" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Vanhemmat" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Salasana" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Salasana vaihdettu" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Salasanaa ei ole asetettu" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Salasanan tulee olla vähintään %1 merkkiä pitkä" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Salasanaa ei näytetä" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Salasana asetettu" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Salasana: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Salasana: käyttö estetty" #: etc/initialdata:714 msgid "PasswordChange" msgstr "Salasanan vaihto" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Salasanat eivät täsmää." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Polku sendmailiin" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Käyttäjät" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Jonoon %1 liittyvät henkilöt" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Suorita käyttäjän määrittämä toimi" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl -asetukset" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Perl -kirjastojen hakujärjestys" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Poista tietoja RT:stä pysyvästi" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Pääsy kielletty" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Pääsy evätty" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Puhelinnumerot" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Tarkista URL ja yritä uudelleen." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Syötä nykyinen salasanasi oikein." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Syötä nykyinen salasanasi." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Asetukset" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Käyttäjän %2 %1 -asetukset." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "%1 asetukset tallennettu." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "Asetukset valikossa oleville työtiloille tallennettu." #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Käyttäjän %1 asetukset tallennettu." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Asetukset tallennettu." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Valmistele tumppi" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Edellinen" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Toimeksiantajaa %1 ei löydy" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Tulosta syntyvät yhteenvetoviestit STDOUT:iin -- älä lähetä niitä, älä merkkaa lähetetyksi." #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Tulosta tämä viesti" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioriteetti" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Yksityisyys" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Yksityisyys:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Salainen avain" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Erioikeutettu" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Erioikeutuksen tila: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Erioikeutetut käyttäjät" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Valeryhmä sisäiseen käyttöön" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "Tarvitaan julkinen avain '0x%1' allekirjoituksen varmentamiseen" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Kyselyt" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Tietokantakysely" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Tietokantahaku" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Jono" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Jonoa %1 ei löydy" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Jonon nimi" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Jono on jo olemassa" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Jonoa ei voitu luoda" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Jonoa ei voitu ladata." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Jono luotu" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Jono id" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Jonoa ei löydy" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Jonon avain" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "JononNimi" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "Jonon valvoja" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Jonot" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Hallinnoimani jonot" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Pikahaku" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Tiketin pika-avaus" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Tikettijärjestelmän ylläpito" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "Tikettijärjestelmän ylläpitäjän sähköposti" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT Asetukset" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT Virhe" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "Tikettijärjestelmä" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "%1: RT" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT toimii useiden eri tietokantojen kanssa. MySQL, PostgreSQL, Oracle ja SQLite tuetaan." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Avaa uudelleen" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Oikea nimi" #: lib/RT/User.pm:95 msgid "RealName" msgstr "Oikea nimi" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Vastaanottajat" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Tallenna kaikki päivitykset" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Rekursiivinen jäsen" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Viittaus (tämä -> %1) lisätty" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Viittaus (tämä -> %1) poistettu" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Viittaus tähän tikettiin" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Viittaus toiseen tikettiin" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Päivitä" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Päivitä tämä sivu %1 minuutin välein" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Hylkää" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Muista oletusjono" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Muistutus" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Muistutus '%1' lisätty" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Muistutus '%1' valmis" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "Muistutus '%1' avattu uudelleen" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Muistutukset" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Muistutukset tiketistä #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Poista kopio ylläpidolle" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Poista kopio" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Poista tilaaja" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Vastaa" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Vastausosoite" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Vastaa asiakkaille" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Vastaa tiketteihin" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Tilaaja" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "AsiakasRyhmä" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Tilaajat" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Vaadittu parametri '%1' puuttuu" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Palauta" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "Palauta työtilat valikossa" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Palauta oletus" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Koti" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Ratkaise" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Ratkaise tiketti #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Ratkaistu" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Vastaa" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Tulokset" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Palaa tikettiin" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Vahvista salasana" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Palauta" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Oikeus ladattu" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Oikeutta ei voitu perua" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Oikeutta ei ladattu" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Oikeuksia ei voitu myöntää: %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Ylläpitäjien oikeudet" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Roolit" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Riviä per laatikko" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Riviä per sivu" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL-kyselyt" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "la" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "lauantai" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Tallenna" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Tallenna muutokset" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Tallenna asetukset" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Tallenna uutena" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Tallenna uusi" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Tallenna tämä haku" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Tallennettu %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Tallennettu haku" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Tallennetut haut" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "Tallennettua hakua %1 ei löytynyt" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Tallennetut haut" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Toiminto #%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Toiminto luotu" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Toiminnot" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Automaattitoiminnot ja vastaanottajat" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Hae" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "Haku %1 päivitetty" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Hakuasetukset" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Haku" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Hakuasetukset" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Haun tulokset" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Katso myös:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Valitse" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Valitse omat kentät artikkeleille kaikissa luokissa" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Valitse tietokannan tyyppi" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Valitse luokka" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Valitse oma kenttä" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Valitse ryhmä" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Valitse jono" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Valitse uuden tiketin jono" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Valitse käyttäjä" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Vaihda kieli" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Valitse useita arvoja" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Valitse yksi arvo" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Valitut omat kentät" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Valitut jonot" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Valittu avain ei ole luotettu tai avain on poistettu." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Valitut objektit" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Valintaa muokattu. Muista tallentaa muutokset" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Lähetä omistajalle ja kaikille seuraajille" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Lähetä kommenttina omistajalle ja kaikille seuraajille" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Lähetä asiakkaille ja Cc:ille" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Lähetä kommenttina asiakkaille ja Cc:ille" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Lähettää viestin asiakkaille" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Lähettää viestin tietyille Cc:ille ja Bcc:ille" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Lähettää viestin Cc:ille" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Lähettää kommenttina viestin Cc:ille" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Lähetä postia yhteyshenkilölle" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "9." #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Asetukset" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Lyhyet käyttäjänimet" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Lähettääkö RT viestejä sinulle itse tekmästäsi muutoksista?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Näytä" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Näytä Hyväksynnät -välilehti" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Näytä sarakkeet" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Näytä tulokset" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Näytä hyväksytyt pyynnöt" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Näytä myös" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Näytä hylätyt pyynnöt" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Näytä linkkien kuvaukset" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "Piilota tiketit asiakkaalta" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Vanhimmat ensin" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Näytä odottavat pyynnöt" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Näytä lainattu teksti" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Näytä muita hyväksyntöjä odottavat pyynnöt" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Näytä asiakkaan 10 tärkeintä tikettiä" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Silppuri" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Sivupalkki" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Allekirjoita oletuksena" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Allekirjoitus" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Yksinkertainen" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Haku" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Yksittäinen" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Sivuston nimi" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Koko" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Pieni" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Järjestä" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Lajittelu" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Lähdekoodi" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Määritä, onko tämä päivittäinen vai viikoittainen ajo." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Laskentataulukko" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Vaihe" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Pysäytä" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Työ aloitettu" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Työn aloitus" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Osavaltio" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "Tila" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "Tilan muuttuminen" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Tila muutettu arvosta %1 arvoon %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Kaappaa" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Ota tikettejä" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Vaihe %1/%2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Kaapattu käyttäjältä %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Tyyli" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Otsikko" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Aihe muutettu: %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Lähetä" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Tilaa" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Tilaa työtila %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Tilaa työtiloja" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Tilattu työtila %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Tilaus" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Tilauksen luominen ei onnistunut: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Salauksen avaaminen onnistui" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Salaus onnistui" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Yhteenveto" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "su" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "sunnuntai" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Keskeytetty" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "Järjestelmä" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Järjestelmän asetukset" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Järjestelmän oletus" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Järjestelmävirhe" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Järjestelmävirhe: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Järjestelmätyökalut" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Järjestelmävirhe" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Järjestelmävirhe. Oikeutta ei luovutettu." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Ota itselle" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Otettu" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Malli" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Malli #%1 poistettu" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Mallia '%1' ei löydy" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Malli on tyhjä" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Malli on välttämätön argumentti" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Malli muodostettu" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Mallin muodostamisessa on ongelma" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Mallit" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Ei ole arvo tälle kentälle" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Tiketti sisältää keskeneräisiä riippuvuuksia" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Käyttäjä omistaa jo tämän tiketin" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Käyttäjää ei ole olemassa" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Käyttäjä on jo erioikeutettu" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Käyttäjä on jo käyttöoikeudeton" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Käyttäjä on nyt erioikeutettu" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Käyttäjä on nyt käyttöoikeudeton" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Käyttäjä ei voi omistaa tikettejä jonossa" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Ei ole numero" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Perustiedot" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Tietokantapalvelimesi domainnimi (esim. 'db.esimerkki.com')" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Seuraavat kyselyt eivät ehkä ole mahdollisia kaikille käyttäjille jotka voivat nähdä tämän työtilan." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "Avain on vanhentunut" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Uusi arvo asetettu." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Tiketin yhteyshenkilö" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Sivua ei löydy" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Tiketin tilaaja" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Teema" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Sinulla on lukemattomia viestejä tässä tiketissä." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Tämä tapahtuma ei näytä sisältävän mitään" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "Käyttäjän %1 korkeimman prioriteetin tikettiä" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "to" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "torstai" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Tiketti" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Tiketti #%1: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Tiketti #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Tiketti %1 luotu jonoon '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Tiketti %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Tiketti #%1: %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Tiketin sisältö" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Tiketin sisällön tyyppi" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Tikettiä ei voitu luoda sisäisen virheen takia" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Tikettiä ei voitu ladata" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Tikettinäkymä" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Tiketin tiedot" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Tiketin tila muutettu" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Tiketit" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Tiketit %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Osoitettu minulle" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Arvioitu työaika" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "SLA" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Työaikaa käytetty" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Aika" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Aikavyöhyke" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Vastaanottaja" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Viimeinen viesti" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Työkalut" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Tapahtuma %1 puhdistettu" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Tapahtuma luotu" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Tapahtumat ovat muuttumattomia" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "ti" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "tiistai" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tyyppi" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Tyyppi muutettu '%1' -> '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Tuntematon sisällön koodaus %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Rajoittamaton" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Nimetön työtila" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Osoittamattomat tiketit" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Osoittamattomat tiketit" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Käyttöoikeudeton" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Ottamaton" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Päivitä" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Tallenna muutokset" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Päivitä tyyppi" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Päivitä ja Hae" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Päivitä useita tikettejä" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Päivitystä ei tallennettu" #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Muokkaa tikettiä" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Muokkaa tikettiä #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Muokkaa tikettiä #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Päivityksen tyyppi ei ollut kirjeenvaihto eikä kommentti." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Päivitetty" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Käytä muita RT:n hallinnointityökaluja" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Käyttäjä" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Käyttäjän oikeudet" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "Käyttäjän yhteenveto" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Käyttäjää ei voitu luoda: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Käyttäjä luotu" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Käyttäjällä on tyhjä sähköpostiosoite" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Käyttäjätunnus" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Käyttäjänimen esitystapa" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Käyttäjät" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Hakua vastaavat käyttäjät" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Arvot" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Katsele ryhmän työtiloja" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Katsele omia työtiloja" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Katsele järjestelmän työtiloja" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "WYSIWYG editorin korkeus" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "Käytä WYSIWYG viestieditoria" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Valvoja" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "Valvontaryhmä" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Valvoja" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "ke" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "keskiviikko" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Päivänäkymä" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Mikä on RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Kun RT llähettää sähköpostia asetetaan Lähettäjä: ja Vastaus: kentät niin että käyttä voi lisätä keskustelua suoraan klikkaamalla Vastaa sähköpostiohjelmasta. Se käyttää eri osoitteita Vastauksille ja Kommenteille. Näitä voidaan muuokata jokaiselle jonolle erikseen. Nämä osoitteet täytyy konfiguroida käyttämään rt-mailgate ohjelmaa." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:137 msgid "When anything happens" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Aina kun tiketti avataan uudelleen" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Aina kun tiketin yhteyshenkilö muuttuu" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Aina kun tiketin prioriteetti muuttuu" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Aina kun tiketin jono muuttuu" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Aina kun tiketin tila muuttuu" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Työ" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Työaika" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Kyllä" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Omistat jo tämän tiketin" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Voit hypätä ensimmäiseen uuteen viestiin tai hypätä ensimmäiseen viestiin ja merkitä kaikki viestit luetuiksi." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Voit vaihtaa yhteyshenkilöä vain jos tikettiä ei ole osoitettu tai se on osoitettu sinulle" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Sinulla ei ole pääkäyttäjän oikeuksia." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Olet kirjautunut ulos tikettijärjestelmästä" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Sinulla ei ole valtuuksia luoda tikettejä tähän jonoon." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Tervetuloa uudelleen" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Käyttäjätunnuksesi tai salasanasi on väärä" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Postinumero" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "Jälkeen" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "ennen" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "työtila" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "työtilat valikossa" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "Poistettu" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "ei täsmää" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "lataa" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "kesto" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "on yhtäsuuri" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "joka" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "täysi" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "on suurempi kuin" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "ryhmä" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "ryhmä %1" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "numero" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "on" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "ei ole" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "vasemmalta oikealle" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "on pienempi kuin" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "sisältää" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minuuttia" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "muokkaa työtilaa" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "kuukausittain" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "ei koskaan" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "uusi" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "ei" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "ei mitään" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "on erisuuri kuin" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "ei mitään" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "kohteet poistettiin onnistuneesti" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "-" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "päivänä" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "yksi" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "käsittelyssä" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "avaa/sulje" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "muu" #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "lisäosa palautti tyhjän listan" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "jono %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "hylätty" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "vaatii rt-crontool -komennon suorittamisen" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "ratkaistu" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "oikealta vasemmalle" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "objektit" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "sivuston asetukset" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "odottaa" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "kysely" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "yhteenveto" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "järjestelmä %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "järjestelmäryhmä '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "kutsuva komponentti ei eritellyt syytä" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "vakio-osoitteet jotka listataan Lähettäjä: ja Reply-To: kentissä viestien otsikkotiedoissa" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "vakio-osoitteet jotka listataan Lähettäjä: ja Reply-To: kentissä viestien otsikkotiedoissa" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "tiketti #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "ylhäältä alas" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "äärimmäinen" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "kuvailematon ryhmä %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "rajoittamaton" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "käyttäjä" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "käyttäjä %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "käyttäjänimi" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "viikoittain" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "viikoittain (%1) klo %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "viikkoa" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "mitä porttia WWW-palvelimesi kuuntelee, esim. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "otsikkotietojen kanssa" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "kyllä" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/sl.po0000664000175000017500000127626513131430353014553 0ustar vagrantvagrant# Slovenian translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2017-05-26 09:57+0000\n" "Last-Translator: Milos-kocbek-3 \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3 %2 %7 %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 dodan" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 spremenjen v %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 pobrisan" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 pobrisan." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 ne obstaja" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 je onemogoÄen" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 shranjen." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 posodobljen." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 s predlogo %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) od %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (nespremenjeno)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (iz razdelka %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Nastavi 'LogToSTDERR' konfiguracijsko možnost" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - argument za %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - IzpiÅ¡i posodobitve stanj na standardni izhod (STDOUT)" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - DoloÄi ali želiÅ¡ uporabljati 'first', 'last' ali 'all' transakcije" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - DoloÄi ime ali id predlog(e) ki jo/jih želiÅ¡ uporabiti" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - DoloÄi seznam transkacij ki jih želiÅ¡ uporabljati - loÄi z vejico" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - DoloÄi modul za pogoje" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - DoloÄi modul za iskanja" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "%1 verzija" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 dodan kot vrednost za %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "%1 ." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 že obstaja in vsebuje tudi RT tabele, vendar ne vsebuje metapodatkov Korak 'Initialize Database' ki ga lahko izvedeÅ¡ kasneje lahko vstavi metapodatke v to obstojeÄo bazo. Klikni 'Customize Basics' Äe je to sprejemljivo in priÄni s prilagoditvami." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 že obstaja in vsebuje tudi RT tabele, vendar ne vsebuje metapodatkov Korak 'Initialize Database' ki ga lahko izvedeÅ¡ kasneje lahko vstavi metapodatke v to obstojeÄo bazo. Klikni 'Customize Basics' Äe je to sprejemljivo in priÄni s prilagoditvami." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "%1 že ima pravice %2 on %3 %4" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 izgleda kot lokalen objekt, vendar ga ni možno najti v bazi" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 je polno inicializiran. Tabel ali metapodatkov nam ne bo potrebno ustvariti, lahko pa nadaljujeÅ¡ s prilagoditvami RT-ja s klikom na 'Customize Basics' spodaj" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1, %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 ne more biti skupina" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 spremenjeno iz vrednosti %2 na %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 spremenjen iz '%2' v '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "Kopija %1" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "Glavna konfiguracija za %1" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 ne morem nastaviti za %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 ustvarjen" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 pobrisan" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 onemogoÄen" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 ne obstaja." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 omogoÄen" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 mojih zahtevkov z najviÅ¡jo prioriteto" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 je orodje za delo z zahtevki iz zunanjega orodja za naÄrtovanje, kot na primer cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 je orodje, ki je naj bi bilo zagnano iz cron-a, le to pa poÅ¡lje vsa zakasnela RT obvestila kot skupek za vsakega uporabnika posebej." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "%1 je že %2" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 je že nastavljen na %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 je naslov na katerem RT sprejema poÅ¡to. ÄŒe ga dodamo kot '%2' dobimo poÅ¡tno zanko" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "%1 ni veÄ %2 za to vrsto" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "%1 ni veÄ %2 za ta zahtevek" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 ni veÄ vrednost za prilagojeno polje %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 ni %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 ni veljavno obdobje" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 zadev" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 nazadnje obnovljenih Älankov" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 najnovejÅ¡ih Älankov" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 najnoveÅ¡ih zahtevkov brez lastnika" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objektov" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 konfiguracija mesta" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 posodobitev: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 posodobitev: brez sprememb" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 posodobljeno" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%2 objekti %1" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%3 objekti %1 %2" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "trenutno geslo %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Pregledi uporabnika %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "Shranjena iskanja uporabnika %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: priponka ni bila doloÄena" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "%1 B" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "%1 M" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Nov zahtevek v%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "%1T" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "%1L" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,Älanek,Älankov)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,dan,dni)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,ura,ur)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,ura,ur) (%quant(%2,minuta,minute))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,minuta,minut)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,mesec,mesecev)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,sekunda,sekund)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,teden,tednov)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,leto,let)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' ni veljavno ime." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1'ni veljavna vrednost" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(klikni za dokonÄanje)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(OznaÄi polje za izbris)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(OznaÄi polja za izbris)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "(klikni za izbris vseh vrednosti)" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Vnesi id zahtevka ali URL-je, loÄeno s presledki)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Privzeta vrednost bo %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(nepopolno)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(nepravilni podatki)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Ni prilagojenih polj)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Ni Älanov)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Ni skript)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Ni predlog)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(PoÅ¡lje cc e-poÅ¡to seznamu (loÄenem z vejico) administrativnih e-poÅ¡tnih naslovov. Ti ljudje bodo prejeli tudi bodoÄe posodobitve.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(PoÅ¡lje cc e-poÅ¡to seznamu (loÄenem z vejico) e-poÅ¡tnih naslovov. Ti ljudje bodo prejeli tudi bodoÄe posodobitve.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "(nepodprti tip prilagojenega polja)" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Uporabi ta polja, ko izbereÅ¡ 'User Defined' za pogoj ali akcijo)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(karkoli)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(ni povzetka)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(brez imena)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(brez javnega kljuÄa!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(brez vrednosti)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(brez vrednosti)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(ÄakajoÄ %quant(%1,other ticket))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(ÄakajoÄ odobritev)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "(ÄakajoÄ zahtevek #%1)" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(zahtevano)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(verovanje: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(neimenovano)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(neverovano!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id ni veÄ veljaven argument in ga ne moreÅ¡ uporabiti s --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--transaction argument je lahko le 'first', 'last' ali 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 sekund" #: lib/RT/Date.pm:424 msgid "0s" msgstr "0 s" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "<% $Vnesi namig %>" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "<% $dan %>" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Predloga s tem imenom že obstaja" #: etc/initialdata:258 msgid "A blank template" msgstr "Prazna predloga" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Geslo ni bilo nastavljeno, tako da se uporabnik ne bi mogel prijaviti." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE ni bil najden" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACEs se lahko le ustvari ali pobriÅ¡e." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "IN" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "O meni" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Kontrola dostopa" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Akcija" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Akcija '%1' ni bila najdena" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Akcija izvrÅ¡ena." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Akcija je obvezen argument" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Akcija pripravljena..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Akcije" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Aktivni zahtevki" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "Aktivni zahtevki" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Aktivni zahtevki za %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Dodaj %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Dodaj administrativni cc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Dodaj zaznamek" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Dodaj Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Dodaj stolpce" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Dodaj pogoje" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Dodaj datoteke" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "Dodaj novega prejemnika" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Dodaj pobudnika" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Dodaj vrednost" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "Dodaj skupino" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "Dodaj osebo" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "Dodaj sredstvo k temu zahtevku" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Dodaj komentarje ali odgovore k izbranim zahtevkom" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "Ustvari, spremeni ali izbriÅ¡e prilagojena polja" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Dodaj skupino" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Dodaj tukaj" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Dodaj Älane" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Dodaj opazovalce" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Dodaj pravice za %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Dodaj te pogoje" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Dodaj te pogoje in iÅ¡Äi" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Dodaj uporabnika" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Dodaj vrednosti" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Doda, spremeni ali izbriÅ¡e vrednosti prilagojenega polja" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Dodano" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "Dodan %1 kot %2 za to vrsto" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "Dodan %1 kot %2 za ta zahtevek" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "Dodano prilagojeno polje %1 k %2." #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Naslov" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Naslov 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Naslov1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Naslov2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Administrator" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "Admin katalog" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "Administrativni Cc" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Administrativni komentar" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Komentar Admina v HTML" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Administrativno dopisovanje" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Admin koresopodenca v HTML" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Administracijske vrste" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Administracijska/Globalna konfiguracija" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "Administrativna cc skupina" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "Administrativni cc" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "Administrativni cc-ji" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Administrativno geslo" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Napredno" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Napredno iskanje" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Agregator" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Vse odobritve uspeÅ¡ne" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "Vse zbirke" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Vsa prilagojena polja" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Vsi pregledi" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Vse vrste" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Vsi zahtevki" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "Vse zbirke, ki ustrezajo kriterijem iskanja" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Vsi iCal viri imajo vkljuÄen unikaten podatke za avtorazijo. ÄŒe je URL naslov iCal vira priÅ¡el v napaÄne roke, lahko dobiÅ¡ nov naslov spodaj. Vsi obstojeÄi iCal viri bodo s tem postali neveljavni!" #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Vse vrste ki ustrezajo pogojem iskanja" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "Vsi prejemniki" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Vsi zahtevki" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Vse teme" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "Prerazporedi" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Dovoli ustvarjanje shranjenih iskanj" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Dovoli nalaganje shranjenih iskanj" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Dovoli zapise v kodo Perl, predloge, skripte, itd." #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Že kriptirano" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "Vedno poÅ¡lji sporoÄilo pobudnikom, neodvisno od poÅ¡iljatelja sporoÄila" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "%1i predstavitev kako zaÄeti s Älanki %3 je na voljo v %2Best Practical's spletni dokumentaciji %3." #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "PriÅ¡lo je do napake" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "Pojavila se je napaka. Prosim vnesi roÄno." #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "In/Ali" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Letno" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Katerokoli polje" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Vsaka beseda, ki je RT ne prepozna, je iskana v nazivih zahtevkov." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Velja za" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Velja za vse objekte" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Shrani" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Shrani globalno" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Potrdi izbrane skripte" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Shrani spremembe" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Odobritve" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Odobritev #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Odobritev #%1: Opombe zaradi sistemske napake niso zabeležene" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Odobritev #%1: Opombe zabeležene" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Odobritev uspeÅ¡na" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Odobritev je pripravljena za lastnika" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Odobritev zavrnjena" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "Odobritev zavrnjena v HTML" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Odobri" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "ÄŒlanek #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "ÄŒlanek #%1 ni najden" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "ÄŒlanek #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "ÄŒlanek %1 je ustvarjen" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Administratorstvo nad Älanki" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "ÄŒlanek ni najden" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "ÄŒlanki" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "ÄŒlanki v %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "ÄŒlanki, ki se ujemajo z %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "ÄŒlanki brez teme" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Nar" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "Sredstvo #" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "Sredstvo #%1" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "Sredstvo #%1 ustvaril: %2" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "Sredstvo #%1: %2" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "Administratorstvo nad sredstvi" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "Prilagojena polja za sredstva" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "Sredstva" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "Sredstva ni možno izbrisati" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Dodeli ali odstrani prilagojena polja na vrstah" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "Dodeljena sredstva" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Priloži" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Priloži datoteko" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Priložena datoteka" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Priloga" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Priloge '%1' ni bilo možno naložiti" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Priloga ustvarjena" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Ime priložene datoteke" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Priloge" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Enkripcija za priloge je izklopljena" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Atribut pobrisan" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "Atribut je bil posodobljen" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Avg" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "Samodejni podpis" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "Samodejna nastavitev raÄuna je spodletela" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:261 msgid "Autoreply" msgstr "Samodejno odgovori" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Samodejno odgovori pobudnikom" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Samodejni odgovor v HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Na voljo" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "Predviden povpreÄen Äas" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "Preostanek povpreÄnega Äasa" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "PovpreÄen Äas dela" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Nazaj" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Slaba zasebnost za atribut %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Osnovno" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Batch skripte" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Skp" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Prazno" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Telo" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Krepko" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Zaznamek" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Zaznamek za to iskanje" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Zaznamovani zahtevki" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Zaznamovani zahtevki" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "IÅ¡Äi po temah" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "IÅ¡Äi po SQL poizvedbah narejenih v tem procesu" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Masovno posodabljanje" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "Skupina za CC" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "PreraÄunaj" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "PreraÄunaj vrednosti za" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Ne morem naložiti shranjenega iskanja \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Sistemskih uporabnikov ni možno spreminjati" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Ne morem dodati prilagojeneg polja brez imena" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "Ni možno spremeniti privzete vrednosti %1 iz %2 to %3: %4" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "Ni možna sprememba privzetih vrednosti iz %1 v %2: %3" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Ne najdem shranjenega iskanja" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Posredovanje neuspeÅ¡no: ni veljavnega e-naslova" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Zahtevka ni možno povezati samega s seboj" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Povezava do izbrisanega zahtevka ni možna" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Ni možno spojiti zahtevka s samim sabo" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Ni možno ustvariti zahtevka v vrsti %1, ker vsebuje prilagojena polja. Za nov zahtevek prosim uporabi klasiÄno ustvarjanje zahtevka." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Ne morem shraniti %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Shranjevanje ni možno, manjka opis" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Tega iskanja ne morem shraniti" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "V onemogoÄeni vrsti ni možno ustvariti zahtevkov" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "Zbirka" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "Zbirka #%1 ustvarjena: %2" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "Zbirka %1: Uredi prilagojena polja" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "Zbirka %1: Prilagodi osnove" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "Zbirka %1: Prilagodi dovoljenja skupine" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "Zbirka %1: Prilagodi vloge" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "Zbirka %1: Prilagodi pravice uporabnikov" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "NeuspeÅ¡no ustvarjenje kataloga: %1" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "Zbirke" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "Zbirke ni možno izbrisati" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategorije bazirajo na" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategorija" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "Cc" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Spremeni" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Spremeni status zahtevka za odobritev na odprto stanje" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Spremeni zadevo sporoÄila:" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Spremeni geslo" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Spremembe vrste niso implementirane" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Grafikon" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "Preveri" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Izberi vse" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Preveri povezljivost z bazo" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Preveri podatke za dostop do baze" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "OznaÄi polje za izbris" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Podrejen" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Podrejen" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Izberi tip baze" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Izberi med temami za %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Mesto" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Razred" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Ime razreda" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Id razreda" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Razredi" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "PoÄisti" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "PoÄisti vse" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Klikni \"Finish Installation\" za zakljuÄek tega Äarovnika." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Za kreiranje baze in vnos zaÄetnih metapodatkov klikni \"Initialize Database\". To lahko traja nekaj trenutkov" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Kliknite za izbiro barve" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "Zaprite okno" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Zaprto" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "ZakljuÄeni zahtevki" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Izbirnik: izberi ali vnesi veÄ vrednosti" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Izbirnik: izberi ali vnesi eno vrednost" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Izbirnik: Izberi ali vnesi najveÄ %1 vrednosti" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Komentar" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Naslov za komentarje" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Naslov za komentarje" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "Komentirajte zahtevek" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Komentira zahtevke" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Komentarji" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Komentarji (ki niso poslani pobudnikom)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Komentarji o tem uporabniku" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Komentarji so bili dodani" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Pogoj" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Pogoja '%1' ni bilo možno najti" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Pogoje je obvezen argument" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Pogoje se ujema..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Pogoj, akcija in predloga" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Konfiguracijska datoteka %1 je zaklenjena" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Konfiguracija za vrsto %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "Konfiguracija za vlogo %1" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Povezava je uspela" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "Kontakt" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Kontaktirajte vaÅ¡ega RT administratorja na %1email to %2%3." #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Kontaktirajte vaÅ¡ega RT administratorja." #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Vsebina" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "Nalaganje vsebine je spodletelo. Za veÄ informacij prosim poglej napake v logih." #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Neveljaven IP naslov" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Neveljaven obseg IP naslova" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tip vsebine" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "Tip vsebine" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Naslov za dopisovanje" #: etc/initialdata:393 msgid "Correspondence" msgstr "Dopisovanje" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Dopisovanje dodano" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Korespodenca v HTML" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "Ni možno dodati %1 k prejemniku: %2" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Vrednosti %1 za prilagojeno polje ni bilo možno dodati" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Lastnika ni bilo možno zamenjati: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Prilagojenega polja %1 ni bilo možno ustvariti" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Skupine ni bilo možno ustvariti" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "NeuspeÅ¡no iskanje: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Zahtevka ni bilo možno ustvariti. Vrsta ni doloÄena" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Uporabnika ni bilo možno ustvariti" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Iskanje %1 ni izbrisano: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Ne najdem skupine '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Ni možno najti ali ustvariti uporabnika '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Atributa %1 ni bilo možno naložiti" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Ni možno naložiti razreda %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Prilagojenega polja %1 ni bilo možno naložiti" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "Ni možno naložiti prilagojene vloge #%1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Skupine ni bilo možno naložiti" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Objekta za %1 ni bilo možno naložiti" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "Ni možno naložiti skripte #%1" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "Ni možno naložiti zgodovine zahtevka. Razlog:" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Ni možno naložiti uporabnika '%1'" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "UporabniÅ¡kih podatkov ni bilo možno nastaviti" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Ni možno posodobiti stolpca %1: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Datoteke ni bilo možno priložiti" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "ÄŒlana ni bilo možno dodati v skupino." #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Transakcije %1 ni bilo možno ustvariti" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "Vlog skupine za sredstva ni možno ustvariti" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "Vlog skupine za katalog ni možno ustvariti" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Pregleda %1: %2 ni bilo možno izbrisati" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Ne najdem vrstice" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Primerne transakcije ni, preskoÄim" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Tega uporabnika ni možno najti" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Te vrednosti ni možno najti" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Razreda %1 n imožno naložiti" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Prilagojenega polja #%1 ni možno naložiti" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Prilagojenega polja #%1 ni možno naložiti" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Prilagojenega polja %1 ni možno naložiti" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "Kopije %1 #%2 ni možno naložiti" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Kopije zahtevka #%1 ni bilo možno naložiti" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "Ni možno naložiti prilagojene vloge '%1'" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Pregleda %1: %2 ni bilo možno naložiti" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Skupine #%1 ni bilo možno naložiti" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Skupine %1 ni bilo možno naložiti" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Povezave ni bilo možno naložiti" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "Povezave ni možno naložiti: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Objekta %1 ni bilo možno naložii" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Uporabnika %1 ni bilo možno naložiti ali ustvariti" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Vrste ni bilo možno naložiti" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Vrste %1 ni bilo možno naložiti" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Vrste %1 ni bilo možno naložiti" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Vrste %1 ni bilo možno naložiti" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Skripte %1 ni bilo možno naložiti" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Predloge %1 ni bilo možno naložiti" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Zahtevka '%1' ni bilo možno naložiti" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Transakcije #%1 ni bilo možno n" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Uporabnika ni bilo možno naložiti" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Uporabnika #%1 ni bilo možno naložiti" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Uporabnika #%1 ali uporabnika '%2' ni bilo možno naložiti" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Uporabnika #%1 ni bilo možno naložiti" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Vsebine ni bilo možno zamenjati z dekriptiranimi podatki: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Vsebine ni bilo možno zamenjati s kriptriranimi podatki: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Osnove '%1' ni bilo možno razreÅ¡iti v URI" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Cilja '%1' ni bilo možno razreÅ¡iti v URI" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "%2: ni bilo možno nastaviti kot %1 opazavalca" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Privatnega kljuÄa ni bilo možno nastaviti" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Privatnega kljuÄa ni bilo možno resetirati" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Država" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Ustvari" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "Ustvari novo" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Ustvari zahtevek" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Ustvari razred" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Ustvari prilagojeno polje" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Ustvari prilagojeno polje za vrsto %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "Ustvari prilagojene vloge" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "Ustvari globalno skripto" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Ustvari nov Älanek" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Ustvari nov Älanek v" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "Ustvari novo sredstvo v zbirki %1" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "Ustvari novo sredstvo v zbirki %1." #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Ustvari nov pregled" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Ustvari novo skupino" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Ustvari novo predlogo za vrsto %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "Ustvari nov zahtevek v %1" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "Ustvari nov zahtevek v vrsti %1 glede sredstva #%2: %3." #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Ustvari novega uporabnika" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Ustvari vrsto" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "Ustvari skripto in jo dodaj vrsti %1" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Ustvari predlogo" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Ustvari zahtevek" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "Ustvari zahtavek v %1" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Kot pobudnik ustvari nov zahtevek v vrsti" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Nov Älanek" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Nov Älanek v..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Ustvari Älanke" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "Ustvari sredstvo" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "Ustvari novo sredstvo" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "Ustvari zbirko" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Ustvari skupne preglede skupine (dashboards)" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "Ustvari povezan zahtevek" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "Ustvari povezan zahtevek za sredstvo #%1: %2" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "Ustvari novo sredstvo" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Ustvari zahtevke glede na predloge te skripte" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Ustvari zasebne preglede" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Ustvari sistemske preglede" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Ustvari zahtevek" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Ustvari zahtevek" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Ustvari, spremeni ali izbriÅ¡e vnose v listi dostopov" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Ustvari, spremeni ali izbriÅ¡e prilagojena polja" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Ustvari, spremeni ali izbriÅ¡e vrednosti prilagojenih polj" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "Ustvari, spremeni ali izbriÅ¡e prilagojene vloge" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Ustvari, spremeni ali izbriÅ¡e vrsto" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Ustvari, spremeni ali izbriÅ¡e shranjena iskanja" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Ustvari, spremeni ali izbriÅ¡e uporabnike" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "Ustvari, prilagodi ali onemogoÄi zbirke" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Ustvarjeno" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Ustvaril" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Ustvarjeno prilagojeno polje %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Ustvaril" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Ustvarjeno je iskanje %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "Ustvaril" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "Ustvarjeno relativno" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Avtor" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kriptografija" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "Å ifriranje je onemogoÄeno" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Trenutne povezave" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "Trenutni prejemniki" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Trenutno iskanje" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Trenutni Älani" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Trenutno iskanje" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Trenutni opazovalci" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "Prilagojen CSS (Napredno)" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Prilagojena polja" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Prilagojena polja za %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Prilagojena polja za vrsto %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "Prilagojene vloge" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Prilagojena koda za pripravo akcije" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Prilagojen pogoj" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Prilagojeno polje #%1 ni dodano temu objektu" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Prilagojeno polje %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Prilagojeno polje %1 ni veljavno za ta objekt" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Prilagojeno polje %1 ima vrednost." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Prilagojeno polje %1 nima vrednosti." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Prilagojenega polja %1 ni bilo možno najti" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Vrednost prilagojenega polja %1 ni bilo možno najti za polje %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Vrednosti prilagojenega polja ni bilo možno izbrisati" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Vrednost prilagojenega polja izbrisana" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "Prilagojena vloga je bila ustvarjena" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "Prilagojena vloga je onemogoÄena" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "Prilagojena vloga je omogoÄena" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "Prilagojena vloga je dodana" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Prilagojeno polje" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "Vrednost prilagojenega polja" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "Prilagojena vloga" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Prilagodi" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Prilagodi osnove" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Prilagodi e-poÅ¡tne naslove" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Prilagodi e-poÅ¡tno konfiguracijo" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Prilagodi pregled v meniju" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "Prilagodi temo" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Prilagodi izgled tvojega RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Geslo za dostop do baze" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "UporabniÅ¡ko ime za dostop do baze" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Dnevno" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Dnevni povzetek" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Pregled" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "Pregled %1 ni možno posodobiti: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "Pregled %1 je posodobljen" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Pregleda ni bilo možno ustvariti: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Pregleda ni bilo možno posodobiti: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Pregled posodobljen" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Pregledi" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Pregledi v meniju" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Pregledi v meniju za uporabnika %1" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Podatkovni strežnik" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Ime baze" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Geslo za dostop do baze za RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Vrata podatkovne baze" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tip podatkovne baze" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "UporabniÅ¡ko ime za dostop do baze za RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "Datum" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Oblika datuma" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Datumi" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "Dan" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "Dan v mesecu" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "Dan v tednu" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "Dan v letu" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Dekriptiraj" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "Error. Kontaktirajte vaÅ¡ega RT administratorja" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "Privzeta/e %numerate(%1,vrednost,vrednosti)" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "Privzete vrednosti" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "Privzete vrednosti za vrsto %1" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Privzeta vrsta" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "Privzeta predloga za opomnik" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "Privzeta vrednost %1 spremenjena iz %2 v %3" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "Privzete vrednosti spremenjene iz %1 v %2" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Privzeto: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Privzeto: %1/%2 spremenjeno iz %3 na %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Privzeta oblika" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "IzbriÅ¡i" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "IzbriÅ¡i predlogo" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Izbris ni uspel: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "IzbriÅ¡e pregled skupine" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "IzbriÅ¡e svoje pregled" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "IzbriÅ¡e sistemske preglede" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "IzbriÅ¡i zahtevke" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "IzbriÅ¡i vrednosti" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Izbrisan %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Izbrisane poizvedbe" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Izbrisano shranjeno iskanje" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Izbrisano iskanje %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Brisanje tega objekta bi pokvarilo referenÄno integriteto" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Brisanje tega objekta bi krÅ¡ilo referenÄno integriteto" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Zavrni" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Od tega so odvisne" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "Od tega odvisno" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Odvisnost od %1 dodana" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Odvisnost od %1 izbrisana" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Odvisnost do %1 dodana" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Odvisnost do %1 izbrisana" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "Odvisno od" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Odvisno od" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "Odvisen od" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Pad" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "OpiÅ¡i zadevo" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Opis" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Podrobne informacije o nastavitvah tvojega RT" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Podrobnosti" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "Zaznaj situacijo, ko bi bilo potrebno nastaviti konÄni Äas" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "Zaznaj situacijo, ko bi bilo potrebno nastaviti zaÄetni Äas" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Smer" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "OnemogoÄi Älanke" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "OnemogoÄeno" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "OnemogoÄeno?" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Prikaži" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Vidi listo za kontrolo dostopa" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Prikaži Älanek %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Prikaži stolpce" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "ÄŒe je možno, prikaži sporoÄila v obogatenem tekstu" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Prikaži tekstovne priponke v tekstu fiksne Å¡irine" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Prikaži zahtevek po \"Hitrem kreiranju\"" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Naredi vse in karkoli" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Ime domene" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ne vkljuÄi http://, le naprimer 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Ne osveži domaÄe strani." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Ne osveži rezultatov iskanja." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ne osveži te strani." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Ne verjami temu kljuÄu" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Prenesi" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "Prenos podatkov" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Prenesi dumpfile" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "Prenesi ali klikni za dodajanje" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Spustni meni" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Zadnji rok" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "Relativni rok" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "NAPAKA: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Enostavno posodabljanje tvojih odprtih zahtevkov" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Enostavene pregled tvojim opomnikov" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Spremeni" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "Uredi %1" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Sprememni prilagojena polja" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Spremeni prilagojena polja za %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "Uredi prilagojena polja za sredstva v zbirkah" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Spremeni prilagojena polja za vse skupine" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Spremeni prilagojena polja za vse vrste" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Spremeni prilagojena polja za vse uporabnike" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Uredi prilagojena polja za Älanke v vseh razredih" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Spremeni prilagojena polja za zahtevke v vseh vrstah" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Spremeni povezave" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Spremeni poizvedbo" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Spremeni iskanje" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Urejanje hierarhije tem" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Sprememni sistemske predloge" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Uredi hierarhijo tem za %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Spreminjanje prilagojenega polja %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Spreminjanje Älanstva za skupino %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "Efektivni id" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Osnova ali cilj morata biti doloÄena" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Ali nimaÅ¡ pravic za pregled shranjenega iskanja %1 ali pa je identifikator napaÄen" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "PreteÄen" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "E-poÅ¡ta" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "E-poÅ¡tni naslov" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "Izvor e-sporoÄila za zahtevek %1, prilogo %2" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "E-poÅ¡tni naslov je že v uporabi" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "E-poÅ¡tna dostava" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "E-poÅ¡tna predloga za periodiÄne povzetke obvestil" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "E-poÅ¡tni naslov" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "Prazno" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "OmogoÄeno" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "OmogoÄi (odkljukanje tega okvirÄka onemogoÄi ta Älanek)" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "OmogoÄeno (odkljukanje tega polja onemogoÄi ta razred)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "OmogoÄeno (odkljukanje tega okvirÄka onemogoÄi to prilagojeno polje)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "OmogoÄi (odkljukanje tega okvirÄka onemogoÄi to prilagojeno vlogo)" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "OmogoÄeno (odkljukanje tega okvirÄka onemogoÄi to skupino)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "OmogoÄeno (odkljukanje tega okvirÄka onemogoÄi to vrsto)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "OmogoÄi (odkljukanje tega okvirÄka onemogoÄi to skripto)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "OmogoÄene zbirke" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "OnemogoÄeni razredi" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "OmogoÄene vrste" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "OmogoÄi zbirke, ki ustrezajo kriterijem iskanja" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "OmogoÄene vrste ki ustrezajo iskalnim kriterijem" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "OmogoÄen status %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Kriptiraj" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Privzeto kriptiraj" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Kriptiraj/Dekriptiraj" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Kriptiraj/dekriptiraj transakcijo #%1 zahtevka #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "Å ifriranje" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Error. Kontaktirajte vaÅ¡ega RT administratorja" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "Potrdi" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Vnesi Älanke, zahtevke ali druge URL-je vezane na ta Älanek." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "Vnesi povezave do Älankov kot \"asset:###\", kjer ### predstavlja ID sredstva." #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Vnesi veÄ obsegov IP naslovov" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Vnesi veÄ IP naslovov" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Vnesi veÄ vrednosti" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Vnesi veÄ vrednosti s s samodejnim zakljuÄevanjem" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Vnesi objekte ali URI vrednosti ki jih želiÅ¡ povezati. VeÄ vnosov loÄi s presledki." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Vnesi en IP naslov" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Vnesi en obseg IP naslova" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Vnesi eno vrednost" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Vnesi eno vrednost s samodokonÄanjem" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Vnesi vrste ali URI vrednosti ki jih želiÅ¡ povezati. VeÄ vnosov loÄi s predledki." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Vnesi zahtevke ali URI vrednosti, ki jih želiÅ¡ povezati. VeÄ vnosov loÄi s presledki." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "Vnesi zahtevke ali URI vrednosti, ki jih želiÅ¡ povezati. VeÄ vnosov loÄi s presledki." #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Privzeto vnesi Äas v urah" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Vnesi do %quant(%1,obseg IP naslova,obseg IP naslovov)" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Vnesi do %quant(%1,IP naslov,IP naslovov)" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Vnesi najveÄ %1 vrednosti" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Vnesi najveÄ %1 vrednosti s samodejnim zakljuÄevanjem" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "Vnesi namig" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "Okoljske spremenljivke" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Napaka" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "Napak pri nalaganju priponke" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "Napaka pri izrisu grafikona: %1" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Napaka za lastnika RT: javni kljuÄ" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Napaka: manjkajoÄ pregled" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Napaka: neveljavni GnuPG podatki" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "Napaka: slabo Å¡ifrirani podatki" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Napaka: ne morem naložiti shranjenih iskanj %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Napaka: ni privatnega kljuÄa" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Napaka: javni kljuÄ" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Napaka: iskanje %1 ni posodobljeno: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "Napaka: sporoÄilo ni Å¡ifrirano" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Eskaliraj zahtevke" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Predviden Äas" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Vsi" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Primer:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "PoteÄe" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "RazÅ¡irjen status" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Eksterna avtentikacija omogoÄena" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "Dodatne informacije" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Dodatne informacije" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "IzvleÄek Älanka" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Povzemi oznako zahtevka" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Ustvari nov Älanek iz zahtevka #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "IzvleÄek Älanka iz zahtevka #%1 v razred %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Povzemi oznako iz zadeve transakcije in jih dodaj k zadevi zahtevka." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Povezava z bazo ni uspela: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Ustvarjanje atributa %1 ni uspelo" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Iskanje 'Privileged' psevdo skupine ni uspelo." #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Iskanje 'Unprivileged' psevdo skupine ni uspelo." #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Nalaganje %1 %2 ni uspelo" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Nalaganje %1 %2 ni uspelo: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Nalaganje modula %1 ni uspelo. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Nalaganje objekta za %1 ni uspelo" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Nalaganje predloge ni uspelo" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "Nalaganje zahtevka %1 je spodletelo" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Branje predloge ni uspelo" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "Posodabljanje formata je spodletelo. Razlog:" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Viri" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Polje" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Izvor za vrednosti polja:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "Nalaganje datoteke '%1' je spodletelo. Za podrobnosti poglej error loge." #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Ime datoteke" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Izpolni argumente" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Napolni okvirÄe z barvo" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Izpolni veÄ tekstovnih polj" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Izpolni veÄ wiki-tekstovnih polj" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Izpolni tekstovno polje" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Izpolni eno wiki-tekstovno polje" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "V to polje vnesi URL" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Izpolni najveÄ %1 tekstovnih polj" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Izpolni najveÄ %1 wiki-tekstovnih polj" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "KonÄna prioriteta" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "KonÄna prioriteta" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "Najdi skupino..." #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Najdi uporabnika" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "Najdi uporabnika..." #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Najdi vse uporabnike katerih" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "Najdi sredstvo" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Najdi skupine katerih" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Najdi osebe katerih" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Najdi zahtevke" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "Najdi sredstvo" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "Najdi uporabnika" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Prstni odtis" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Konec" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Prvi" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "Za pomoÄ kontaktirajte %1" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "Za veÄ možnosti iskanj obiÅ¡Äite %1search builder interface%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Brezpogojna sprememba" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Oblika" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Posreduj" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Posreduj sporoÄilo" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Posreduj sporoÄilo in se vrni" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Posreduj zahtevek" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Posreduje sporoÄilo" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Posreduj zahtevek #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Posreduj transakcijo #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Posredovan zahtevek do %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "Posredovano sporoÄilo" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "Posredovano sporoÄilo zahtevka" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "Najdeno %quant(%1,sredstvo,sredstev)" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Najdenih %quant(%1,ticket,zahtevkov)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Najden objekt" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frekvenca" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Pet" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Petek" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Od" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD je onemogoÄen ali ni nameÅ¡Äen. Lahko dodate sliko, vendar ne boste dobili predlogov za barve." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Generalno" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "SploÅ¡na sredstva" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "SploÅ¡ne pravice" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Za uvod" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Predan %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Globalno" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "SploÅ¡ni atributi" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "SploÅ¡ne teme" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Globalna konfiguracija prilagojenih polj" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "Skupni shranjeni pregledi v meniju." #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Globalni portlet %1 je bil shranjen" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "SploÅ¡na predloga '%1' ni najdena" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "SploÅ¡no dodano prilagojeno polje %1." #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "SploÅ¡no odstranjeno prilagojeno polje %1." #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "GnuPG privatni kljuÄ" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Pojdi" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "Nazaj / naprej" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Najdi skupino" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Najdi uporabnika" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Vredu" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Pojdi do zahtevka" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Pojdi na zahtevek" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Graf" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Lastnosti grafa" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Grafikoni niso na voljo" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Skupina" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Skupinske pravice" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Skupina že vsebuja Älana: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "Združi po" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Skupine ni bilo moÄ ustvariti: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Skupina ustvarjena" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Skupina onemogoÄena" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Skupina omogoÄena" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Skupina nima takÅ¡nega Älana" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Ime skupine '%1' je že zasedeno" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Skupina ni bila najdena" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "Združi zahtevke po" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "Skupina: %1" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "Združeni rezultati iskanja" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Skupine" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Skupine ne morejo biti Älani svojih Älanov" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Skupine ki ustrezajo iskalnim kriterijem" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "Skupine katerih uporabnik je Älan (potrdi polje za izbris)" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "Skupine katerih uporabnik ni Älan (potrdi polje za dodajanje)" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Skupine katerim pripada uporabnik" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "HTML predloga za samodejne odgovore" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "HTML zakljuÄen zahtevek" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "HTML sprememba statusa zahtevka" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "HTML admin predloga komentarjev" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "HTML admin predloga korespodence" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "HTML predloga korespodence" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "HTML predloga transakcije" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "Ima Älana" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Glava posredovanega zahtevka" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Glava posredovanega sporoÄila" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "ViÅ¡ina" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Pozdravljen!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Pomagaj nam nastaviti nekaj uporabnih privzetih vrednosti za RT." #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Skrij citirana besedila" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Skrij naveden tekst" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "Skrij prazna polja" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "Skrij prazna polja?" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Zgodovina" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Zgodovina za Älanek #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "Zgodovina za sredstvo #%1: %2" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Zgodovina skupine %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Zgodovina vrste %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Zgodovina uporabnika %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "DomaÄi telefon" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Interval osveževanja domaÄe strani" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Pregledi" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Ura" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "Urno" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Ure" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Imam %quant(%1,concrete mixer)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "Želim ponastaviti moj skrivni žeton." #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identiteta" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "ÄŒe je odobritev zavrnjena, zavrni original in izbriÅ¡i odobritve na Äakanju" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "ÄŒe tega niste priÄakovali, zapustite to stran brez prijave." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "ÄŒe bi to orodjo imelo setgid pravice, bi lahko napadalen lokalni uporabnik uporabil to orodje za pridobitev administrativnih pravic do RT sistema" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "ÄŒe že imaÅ¡ delujoÄ RT strežnik in bazo, svetujem da izkoristiÅ¡ to priložnost da preveriÅ¡ ali podatkovna baza deluje in da se RT strežnik lahko poveže nanjo. Ko to opraviÅ¡, ustavi in ponovno zaženi RT strežmnik.

    " #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Ob spremembi vrat preko katerih teÄe RT je za uspeÅ¡en vpis potreben ponoven zagon strežnika." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "ÄŒe si zgoraj karkoli spremenil, se prepriÄaj da" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "ÄŒe tvoja zaželena baza ni v zgornjem seznamu, to pomeni da RT ni naÅ¡el lokalno nameÅ¡Äenega gonilnika. To lahko popraviÅ¡ z uporabp %1 za prenos DBD::MySQL, DBD::Oracle ali DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Neveljavna vrednost za %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "Slika prikazana v tekstu" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "Slika ni prikazana, ker je zaslon onemogoÄen v konfiguraciji sistema." #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "Slika ni prikazana, ker je tako zahteval poÅ¡iljatelj." #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Nespremenjljivo polje" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Neaktivni zahtevki" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "Neaktivni zahtevki" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Dodaj Älanek:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "VkljuÄi SQL poizvedbo zahtevkov" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Dodaj ime Älanka" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Dodaj povzetek Älanka" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "Dodaj priponke" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "Dodaj prilagojeno polje '%1'" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "VkljuÄi podatkovno tabelo" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "V seznam vkljuÄi onemogoÄene zbirke." #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "VkljuÄi onemogoÄene Älanke" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "V prikazu vkljuÄi tudi onemogoÄena prilagojena polja." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "VkljuÄi onemogoÄene prilagojene vloge v seznam." #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "V prikaz vkljuÄi onemogoÄene skupine" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "VkljuÄi onemogoÄene skupine v prikazu" #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "VkljuÄi onemogoÄene skupine v iskanju" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "VkljuÄi stran" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "VkljuÄi podteme" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "VkljuÄi Äas v iCal dogodke?" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "Indeksiraj posodobitve od %1" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Individualna sporoÄila" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Obvesti RT lastnika da imajo uporabnik(i) težave z javnim kljuÄem" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Obvesti uporabnika da pregled, na katerega se je prijavil, manjka" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Obvesti uporabnika, da ima poslano sporoÄilo neveljavne GnuPG podatke" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "Obvestiti uporabnika, da ima poslano sporoÄilo neveljavno Å¡ifriranje podatkov." #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Obvesti uporabnika da ima težave z javnim kljuÄem in ne mora sprejemati" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Obvesti uporabnika da je bilo geslo ponastavljeno" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "Obvesti uporabnika o zavrnjeni e-poÅ¡ti" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Obvesti uporabnika da je prejel kriptirano e-poÅ¡to, mi jo imamo, nimamo pa privatnih kljuÄev." #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "ZaÄetna prioriteta" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "ZaÄetna prioriteta" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Inicializirajo bazo" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Napaka pri vnosu" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Vnos se mora ujemati z %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "Vstavi iz %1" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Notranja napaka: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Napaka: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "Neveljavno %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Neveljaven %1 argument" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Neveljaven %1: '%2' ni videti kot e-poÅ¡tni naslov" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Neveljaven %1: mora biti Å¡tevilka" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "Neveljavna zbirka" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Neveljaven razred" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "Neveljavno ime skupine in domena" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "Neveljavno ime (ne sme biti samo numeriÄna vrednost)" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "Neveljavno ime (ime mora biti unikatno in ne sme vsebovati samo numeriÄnih vrednosti)" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Neveljvani podatki" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Neveljaven kljuÄ %1 za naslov %2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Neveljaven objekt" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Neveljaven vzrorec: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Neveljavna vrsta" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "Neveljaven id vrste" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Neveljvana pravica" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Neveljavna pravica. Ne morem posploÅ¡iti pravice '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Neveljavna sintaksa za e-poÅ¡tni naslov." #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Neveljavna vrednost za %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Neveljavna vrednost za prilagojeno polje" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "Je že dodano temu objektu" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Ni kriptirano" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Neverjetno pomembno je, da nepriviligirani uporabniki ne smejo poganjati tega orodja." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Predlagamo da ustvariÅ¡ nepriviligiranega unix uporabnika s pravilnimi skupinskimi pravicami in RT dostopom za zagon tega orodja." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Vzame nekaj argumentov:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Nagnjeno" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Se pridruži ali zapusti skupino" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "RazÅ¡irjeno" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Pusti 'localhost' Äe nisi prepriÄan. Pusti prazno, Äe se želiÅ¡ povezati lokalno preko 'socket'-a." #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "Bližnjice tipkovnice" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Jezik" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Jezik" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Veliko" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Zadnje" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Zadnji kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Nazadnje kontaktirano" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Nazadnje posodobljeno" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Nazadnje posodobil" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Nazadnje posodobljeno" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Nazadnje posodobil" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "Zadnja posodobitev" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "Nazadnje posodobil" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "Zadnja posodobitev (relativno)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Pusti prazno Äe želiÅ¡ uporabiti privzeto vrednost za svojo bazo." #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Pusti prazno Äe želiÅ¡ uporabiti privzeto uporabniÅ¡ko ime za bazo za ta konkretno povezavo" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Levo" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legende" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Dolžina v znakih; Uporabi '0' za prikaz vseh sporoÄiÄ 'in-line', ne glede na njihovo dolžino" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Ta uporabnik ima dostop do RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Uporabnik ima doloÄene pravice (je priviligiran)" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Pojdimo!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Obdobje" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Povezava" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Povezava že obstaja" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "Izbris povezave ni možen: %1" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Povezave ni bilo možno najti" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Poveži zahtevek #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Poveži vrednost z" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Povezano" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "Povezano od" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "Povezano na" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Povezave" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "Se navezuje na" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Seznam" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Naloži" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Naloži shranjena iskanja" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Naloži shranjeno iskanje" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Naloži shranjeno iskanje:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Naloženo %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "Config datoteke so naložene" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Naloženo originalno shranjeno iskanje \"%1\"" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Naloženi perl moduli" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Naloženo shranjeno iskanje \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Nalagam..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Regija" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "Lokaliziran datum in Äas" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Lokacija" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Prijavljen" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Prijavljen kot %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Odjavljen" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "Povzetek prijav" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Prijava" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "Alternativni logo tekst" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Odjava" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "PoiÅ¡Äi neskladje med tipi" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "E-poÅ¡ta" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Glavni tip povezav" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Nastavi lastnika" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Nastavi status" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Nastavi konÄni datum" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Nastavi datum priÄetka" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Nastavi datum priÄetka" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Nastavi datum 'Told'" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Nastavi prioriteto" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Nastavi vrsto" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Nastavi zadevo" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Urejaj prilagojena polja in vrednost" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "Upravljaj prilagojene vloge" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Urejanje skupin in Älanstva" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Urejanje lastnosti in konfiguracije ki velja za vse vrste" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Urejanje vrste in vrsti specifiÄne lastnosti" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Urejanje shranjenih grafov" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "Uredi skripte" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Urejanje uporabnikov in gesel" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "Povezovanje med %1 in %2 ni popolno. Kontaktiraj administratorja." #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "OznaÄi vsa sporoÄila kot videna" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Vrstni red iskanja Mason predlog" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "Maksimalne vrednosti" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "NajveÄja dolžina vkljuÄenega sporoÄila" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "Predviden maksimalni Äas" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "Preostanek maksimalnega Äasa" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "Maksimalni Äas dela" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maj" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Jaz" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "ÄŒlan" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "ÄŒlan %1 dodan" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "ÄŒlan %1 izbrisan" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "ÄŒlan dodan: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "ÄŒlan izbrisan" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "ÄŒlan ni bil izbrisan" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "ÄŒlan" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "ÄŒlani" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "ÄŒlanstvo v %1 dodano" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "ÄŒlanstvo v %1 izbrisano" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "ÄŒlanstva" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "ÄŒlanstva v skupini %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "ÄŒlanstva uporabnika %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Spoji" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Spajanje uspeÅ¡no" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Spajanje ni uspelo. EffectiveId ni bilo možno nastaviti" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "Spajanje ni uspelo. Ni bilo možno nastaviti IsMerged" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Spoji z" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Spojeno z %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "SporoÄilo" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Telo sporoÄila ni prikazano zaradi prevelike velikosti." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Telo sporoÄila ni prikazano ker je poÅ¡iljatelj tako zahteval." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Telo sporoÄila ni prikazano ker ni navaden tekst." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "ViÅ¡ina okvirja za sporoÄilo" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Å irina okvirja za besedilo" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "SporoÄila ni bilo možno zabeležiti" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "SporoÄilo za uporabnika" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "SporoÄilo zabeleženo" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Minimalna dolžina gesla" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "Predviden minimalni Äas" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "Preostanek Äasa" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minut" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "ManjkajoÄ primarni kljuÄ?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobilna Å¡t." #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Mobilni telefon" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Spremeni" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Spremeni Älane" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Prilagodi predloge skript" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Prilagodi skripte" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Spremeni prilagojeno polje za vrsto %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Prilagodi in ustvari razrede" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Prilagodi in ustvari prilagojena polja za Älanke" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Spremeni Älanek #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "Posodobi Älanke v tem razredu" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "Prilagodi sredstvo #%1: %2" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "Prilagodi zbirko sredstev" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "Prilagodi prilagojena polja za sredstva" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "Prilagodi sredstva" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Spremeni povezane objekte za %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Spremeni vrednost prilagojenega polja" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "Prilagodi datume za sredstva #%1: %2" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Spremeni datume za zahtevek #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Prilagodi sploÅ¡no temo Älanka" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Spremeni globalna prilagojena polja" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Spremeni globalne skupinske pravice" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Prilagodi sploÅ¡ne teme" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Sprememni globalne uporabniÅ¡ke pravice" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Prilagodi pregled skupine" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Prilagodi seznam Älanov v skupini" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Spremeni metapodatke skupine ali izbriÅ¡e skupino" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Prilagodi pravice skupine za razred %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Spremeni skupinske pravice za prilagojeno polje %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Sprememni skupinske pravice za skupino %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Spremeni skupinske pravice za vrsto %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "Prilagodi povezave za sredstvo #%1: %2" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Spremeni metapodatke in prilagojena polja" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Spremeni lastniÅ¡ki RT raÄun" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "Prilagodi navezane osebe na sredstvo #%1: %2" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Spremeni osebe povezane z zahtevkom #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Sprememni zasebne preglede" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Spremeni opazovalce na vrstah" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "Prilagodi skripto #%1" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Spremeni skripte za vrsto %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Prilagodi skripte, ki se navezujejo na vse vrste" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Spremeni sistemske preglede" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Spremeni predlogo %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Prilagodi predlogo %1 za vrsto %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Sprememni predloge ki veljajo za vse skupine" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Prilagodi razred %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Prilagodi vsebino pregleda %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Sprememni pregled %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Spremeni privzeti RT pogled" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Spremeni skupino %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Spremeni naroÄnino pregleda %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Spremeni uporabnika %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Prilagodi iskanje..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Spremeni zahtevek # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Spremeni zahtevek # %1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "Spremeni lastnika na zahtevku, ki že ima lastnika" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Prilagodi/spremeni zahtevke" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Prilagodi temo za %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Spremeni hierarhijo v temah" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Prilagodi teme za Älanke v tem delu" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Prilagodi uporabniÅ¡ke pravice za razred %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Spremeni uporabniÅ¡ke pravice za prilagojeno polje %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Spremeni uporabniÅ¡ke pravice za skupino %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Spremeni uporabniÅ¡ke pravice za vrsto %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Prilagodi kdo prejme em-poÅ¡to za zahtevek #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Pon" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Ponedeljek" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "Mesec" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "MeseÄno" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "VeÄ o pobudniku" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "Premakni" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Premakni sem" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "VeÄ" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "VeÄ uporabnikov (naknadne spremembe ne bodo možne)" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Atribut 'Ime' je potrebno doloÄiti" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Moji %1 zahtevki" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Moje odobritve" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "Moja sredstva" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Moj dan" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Moji opomniki" #: etc/initialdata:890 msgid "My Tickets" msgstr "Moji zahtevki" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Moje odobritve" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "Moji zakljuÄeni zahtevki" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Moji pregledi" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Moji odprti zahtevki" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Moji opomniki" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Moja shranjena iskanja" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "Vrste, ki jih administriram" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "Moja sredstva" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "Moji opomniki" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "Moja vrsta" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "Nova vrstica" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Ime" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Ime in e-poÅ¡tni naslov" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Ime v uporabi" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "Zahtevano je ime" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Naziv:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Nikoli" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Novo" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Nov Älanek" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Nov pregled" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nove povezave" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Nove odobritve na Äakanju" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "Nova ÄakajoÄa odobritev v HTML" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Novo iskanje" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "Nova vrednost" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "Novo sredstvo ne more imeti statusa '%1'." #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nova sporoÄila" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Novo geslo" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Obvestilo o novem geslu je bilo poslano" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Nov opomnik:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nov zahtevek" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Nov zahtevek ne obstaja" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Novi zahtevki v tej vrsti ne morejo imeti statusa '%1'." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Novi opazovalci" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Naprej" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Vzdevek" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Vzdevek" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Ne" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "%1 ni bil naložen" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Ni ujemanj z %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Razred ni definiran" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Ni prilagojenega polja" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Prilagojeno polje ni definirano" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Skupina ni definirana" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "Brez imena" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Ni poizvedbe" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Vrsta ni definirana" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Ne najdem uporabnika. Prosim kontaktiraj RT administratorja." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Ni zadeve" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Ni predloge" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Ni akcije" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "ID sredstva ni doloÄen." #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "Ni najdenih ujemanj." #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "Nobena zbirka ni izbrana." #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "Nobena zbirka ne ustreza kriterijem iskanja." #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Stolpec ni specificiran" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Komentar o uporabnik ni vneÅ¡en" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "VaÅ¡im iskalnim kriterijem ne ustreza nobena prilagojena vloga." #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Ni opisa za %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Skupina ni doloÄena" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Skupine, ki bi ustrezale iskalnim kriterijem, niso bile najdene." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Primernega kljuÄa za kodiranje ni" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "SporoÄilo ni pripeto" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Ime ni doloÄeno" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Ni potrebe po kodiranju" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Gelso ni nastavljeno" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Ni pravice za ustvarjanje vrst" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Nimate pravic za ustvarjanje zahtevkov v vrsti '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Nimate pravic za vpogled v ta zahtevek" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "Nimate dovoljenj za spremembe" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "Nimate dovoljenj za spremembe v tej zbirki" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Ni pravic za shranjevanje sistemskih shranjenih iskanj" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Ni pravic za nastavitev preferenc" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Nimate pravic za vpogled v posodobitve za ta zahtevek" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Uporabniki niso bili izbrani." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Ni privatnega kljuÄa" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Vrste ki bi ustrezale iskalnim kriterijem ni." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Pravice niso doloÄene" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Pravice niso bile najdene" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "Nimate pravic dodati '%1' kot AdminCc na ta zahtevek" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Ni iskanja na katerem bi delovali." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Brez zadeve" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Ni kljuÄa ali pa ni primeren za podpisovanje" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Ni najdenih zahtevkov." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Tip transakcije ni bil specificiran" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Ni uporabnih kljuÄev." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Uporabnikov ki bi ustrezali iskalnim kriterijem ni." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "NihÄe" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Brez" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "NeobstojeÄe polje?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "ObiÄajno" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "NiÄ nadjdenega" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Nisi prijavljen." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Ni nastavljeno" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Ne uporabljate mobilnega brskalnika?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Opombe" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Obvestila ni bilo možno poslati" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Obvesti administratorje Cc" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Obvesti administratorje na Cc s komentarjem" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Obvesti osebe na Cc" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Obvesti osebe na Cc s komentarjem" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Obvesti ostale prejemnike" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Obvesti ostale prejemnike s komentarjem" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Obvesti lastnika" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "Obvesti lastnika in AdminCcs" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Obvesti lastnika s komentarjem" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Obvesti lastnika o zavrnjenem zahtevku" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Obvesti lastnika, da je zahtevek bil potrjen" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Obvesti lastnika, da je zahtevek bil potrjen" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "Obvesti lastnika ali AdminCc" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Obvesti lastnika, pobudnike, osebe na Cc in administrativnem Cc" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Obvesti lastnika, pobidnike, osebe na Cc in administravinem Cc s komentarjem" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Obvesti lastnike in osebe na administrativnem Cc o novih zahtevkih, ki Äakajo na potrditev" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Obvesti pobudnika,da je njegov zahtevek bil odobren" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Obvesti pobudnika,da je njegov zahtevek bil odobren" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Obvesti pobudnike" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Obvesti pobudnike in osebe na Cc" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Obvesti pobudnike in osebe na Cc s komentarjem" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Obvesti me o neprebranih sporoÄilih" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "Sedaj v uporabi" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "Å tevilka" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ALI" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "ID objekta" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "Vrsta objekta" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekta ni bilo možno ustvariti" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Objekta ni bilo možno izbrisati" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objekt ustvarjen" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objekt izbrisan" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Neskladje pri tipu objekta" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Seznam objektov je prazen" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Okt" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "Stara vrednost" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "Dne %1 je %2 napisal:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Ob zaprtju" #: etc/initialdata:170 msgid "On Comment" msgstr "Ob komentarju" #: etc/initialdata:142 msgid "On Correspond" msgstr "Ob dopisovanju" #: etc/initialdata:131 msgid "On Create" msgstr "Ob ustvarjanju" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "Ob posredovanju" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Ob posredovanem zahtevku" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Ob posredovani transakciji" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Ob spremembi lastnika" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Ob spremembi prioritete" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Ob spremembi vrste" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Ob zavrnitvi" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Ob ponovnem odprtju" #: etc/initialdata:205 msgid "On Resolve" msgstr "Ob razreÅ¡itvi" #: etc/initialdata:176 msgid "On Status Change" msgstr "Ob spremembi statusa" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "Ob spremembi porabljenega Äasa" #: etc/initialdata:136 msgid "On Transaction" msgstr "Ob transakciji" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Enkratni Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Enkratni Cc" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Prikaži le odobritve za zahtevke ustvarjene po %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Prikaži le odobritve za zahtevke ustvarjene pred %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Prikaži le prilagojena polja za:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "Odpri neaktivne zahtevke" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Odpri" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Odprti zahtevki" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "Odpri merilnik Äasa" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Odpri URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "Odpri neaktivne zahtevke" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Odprti zahtevki" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Odprti zahtevki ob dopisovanju" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "Operacijski sistem" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Opcija" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Opcije" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "Oracle uporabniki ne morejo imeti praznih gesel" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "NaroÄilo" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organizacija" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Izvorna zadeva: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Izhodna e-poÅ¡ta o komentarju zabeležena" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Izhodna e-poÅ¡ta zabeležena" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Izhodna e-poÅ¡ta" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Pregled" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Moji zahtevki" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Lastnik" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "Lastnik '%1' nima pravic, da bi postal lastnik tega zahtevka." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Lastnik je bil spremenjen iz %1 na %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Lastnik je bil na silo zamenjan iz %1 na %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "Lastnik skupine" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "Ime lastnika" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Stran" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Stran 1 od 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Strani ni bilo možno najti" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Pozivnik" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Å tevilka pozivnika" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "Nadrejen" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Nadrejen" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Geslo" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Geslo je bilo spremenjeno" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Geslo ni bilo nastavljeno." #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Geslo mora biti dolgo vsaj %1 znakov" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Geslo nastavljeno" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Geslo: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Geslo: ni pravic" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Gesli se ne ujemata" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Pot do sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "Pavza" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "ÄŒakam %quant(%1,odobritev,odobritev)." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "ÄŒakam %quant(%1,zahtevek,zahtevkov)." #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "ÄŒakam odobritev." #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Osebe" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Osebe povezane z vrsto %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Izvedi uporabniÅ¡ko-definirano akcijo" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Konfiguracija Perla" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Iskalni vrstni red za Perl knjižnjice" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Trajno izbriÅ¡i podatke iz RT" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Ni pravic" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Ni pravic" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefonske Å¡tevilke" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "Pogled grafikona" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "Dodaj podpis nad citat" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Preveri URL in poizkusi znova." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Pravilno vnesi trenutno geslo." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Vnesi svoje trenutno geslo." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Možna skrita iskanja" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "Predifinirano iskanje %1 ni najdeno" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Nastavitve" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Nastavitve %1 za uporabnika %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "Ponastavi" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Nastavitve shranjene za %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Nastavitve za uporabnika %1 so bile shranjene." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Nastavitve so bile shranjene." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Zaželen kljuÄ: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Zaželen kljuÄ" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "Pritisni %1 za ogled bližnjic na tipkovnici." #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Nazaj" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Uporabnika %1 ni bilo možno najti." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Natisni povzetke sporoÄil na STDOUT; ne poÅ¡lji jih preko e-poÅ¡te. Ne oznaÄi jih kot poslana" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Natisni to sporoÄilo" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioriteta" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Zasebnost" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "LastniÅ¡tvo:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Privatni kljuÄ" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "Privatni kljuÄ(i) za %1" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "Privatni kljuÄi" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Priviligirani" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Priviligiran status: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Priviligirani uporabniki" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "Priviligirani: uporabniÅ¡ka imena; Nepriviligirani: imena in poÅ¡tni naslovi" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Procesiranje brez transakcije; nekateri pogoji in akcije lahko ne uspejo. Razmisli o uporabi --transaction argumenta" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseudo skupina za interno rabo" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "Javni kljuÄ '0x%1' je potreben za preverjanje podpisa" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "Javni kljuÄ(i) za %1" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Poizvedbe" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Poizvedba" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "ÄŒarovnik za poizvedbe" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Vrsta" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "Vrste %1 ni možno naložiti." #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Vrste %1 ni bilo možno najti" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Ime vrste" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Vrsta že obstaja" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Vrste ni bilo možno ustvariti" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Vrste ni bilo možno naložiti." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Vrsta je bila ustvarjena" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Id vrste" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "Seznam vrst" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Vrste ni bilo možno najti" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Vrstin kljuÄ" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "Administrativni cc vrste" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "VrstaCF" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "Vrstin cc" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "Seznam vrst" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "Ime vrste" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "Opazovalec vrste" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Vrste" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Vrste, ki jih administriram" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Vrste na katerih sem naveden kot administrativni Cc" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Hitro iskanje" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Hitro ustvarjanje zahtevka" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "Hitro ustvari" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT Administracija" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "Administracijski RT e-poÅ¡tni naslov" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT konfiguracija" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT napaka" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Velikost RT" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT pregled" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "RT pregled za uporabnika %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT lahko s tvojimi uporabniki komunicira o novih zahtevkih in o novih dopisovanjih povezanih z zahtevki. Povej nam kje lahko najdemo sendmail (ali kompatibilen program kot je naprimer postfix). RT mora tudi vedeti koga obvestiti, ko nekdo poÅ¡lje neveljavno e-poÅ¡to. To ne sme biti naslov, ki vrne poÅ¡to nazaj v RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT lahko vkljuÄi vsebino iz oddaljene spletne storitve pri prikazu tega prilagojenega polja." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT lahko naredi iz vrednosti prilagojenih polj tudi povezave do oddaljenih storitev." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "KljuÄne RT spremenljivke" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT za %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT je industrijski sistem za sledenje zahtevkom, ki je naÄrtrovan tako da omogoÄa inteligentno in efektivno upravljanje z nalogami, zahtevki, poizvedbami, napakami ali s Äimerkoli kar izgleda kot \"naloga\"" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT uporabljajo Fortune100 podjetja, majhni obrtniki, vladne agencije, izobraževalne ustanove, bolnice, neprofitne organizacije... na vseh sedmih kontinentih. Da, tudi na Antarktiki." #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "Zgodovina nadgradenj RT" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT se bo povezal na bazo s tem uporabnikom." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT bo ustvaril uporabnika \"root\" in nastavil to kot njegovo geslo" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT bo zamenjal %1 and %2 z id-jem in prilagojenim poljem zapisa" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT bo uporabil ta niz za unikatno identifikacijo te namestitve in bo to uporabil pri iskanju v e-poÅ¡tnih sporoÄilih, da se bo lahko odloÄil h kateremu zahtevku sporoÄilo pripada. Predlagamo da nastavite to vrednost na ime internetne domene. (npr: domena.si)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT deluje z razliÄnimi bazami. MySQL, PostgreSQL, Oracle in SQLite so podprte." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "Povzetek konfiguracije prijav:" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "RTAddressRegexp opcija v konfiguraciji se ne ujema s %1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Ponovno odpri" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "Doseženo je maksimalno Å¡tevilo. Nove vrednosti bodo prepisale stare." #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Pravo ime" #: lib/RT/User.pm:95 msgid "RealName" msgstr "Pravo ime" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Prejemniki" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Zabeleži vse posodobitve" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "ÄŒlan" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "Recikliraj" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Se navezuje na" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Referenca o %1 je bila dodana" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Referenca o %1 je bila izbrisana" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Referenca na %1 je bila dodana" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Referenca na %1 je bila izbrisana" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Sklic od" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "Sklic od" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Se sklicuje na" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "Se sklicuje na" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Osveži" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Osveži to stran vsakih %1 minut." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "Osveži" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Zavrni" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "Sorodni zahtevki" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Zapomni si privzeto vrsto" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Opomnik" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Opomnik '%1' je bil dodan" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Opomnik '%1' je zakljuÄen" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "Opomnik '%1' je bil ponovno odprt" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "Opomnik '%1': %2" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "Opomnik dodan" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "Opomnik dokonÄan" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "Opomnik ponovno odprt" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Opomniki" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Opomniki za zahtevek #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "Odstrani" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "Odstrani %1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Odstrani administrativni Cc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Odstrani zaznamek" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Odstrani Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Odstrani pobudnika" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "Odstrani prilagojeno poje %1 iz %2." #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Zamenjaj spustne menije uporabnika s tekstnimi polji" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "Zamenjaj spustne menije skupine s tekstnimi polji" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Odgovori" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Naslov za odgovor" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Odgovori pobudnikom" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "Odgovori na zahtevek" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Odgovori na zahtevke" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "Prijavi ukraden zahtevek" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Pobudnik" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "Skupina pobudnika" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Pobudniki" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Zahtevan parameter '%1' ni bil specificiran" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Ponastavi" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "Ponastavi na privzeto vrednost" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Ponastavi na privzeto vrednost" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "Ponastavi preglede v meniju" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Ponastavi skriven avtentikacijski žeton" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Ponastavi na privzeto vrednost" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "Ponastavi na privzeti RT logo" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "Ponastavi na privzeto RT temo" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Doma" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "ZakljuÄi" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "ZakljuÄi zahtevek #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "ReÅ¡eno" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "ZakljuÄeno v HTML" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "ReÅ¡eno relativno" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Odgovori" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Rezultati" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "Ponastavi Äasovnik" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Vrni se nazaj na zahtevek" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Ponovi geslo" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Vrni v prejÅ¡nje stanje" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Pravica naložena" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Pravice ni bilo možno odvzeti" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Pravica ni bila naložena." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Pravic ni bilo možno dodeliti za %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Administratorske pravice" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "UporabniÅ¡ke pravice" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "Ime" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "Vloga že obstaja" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "Vloga skupine '%1' ni najdena" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "Vloga skupine že obstaja" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Vloge" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Vrstice" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Vrstic na okvir" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Vrstic na stran" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "OmogoÄi SLA (odkljukanje tega okvirÄka onemogoÄi SLA za to vrsto)" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "SMIME certifikat" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "SMIME certifikat" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL poizvedbe" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite je baza ki ne potrebuje strežnika ali konfiguracije. PriporeÄena je za testiranje, ne pa za produkcijske namestitve." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sob" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Sobota" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Shrani" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Shrani spremembe" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Shrani nastavitve" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Shrani kot novo" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "Shrani" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Shrani" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Shrani" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Shranjeno %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Shranjeno iskanje" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Shranjena iskanja" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Shranjeni grafikoni" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "Shranjeno iskanje %1 ni najdeno" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Shranjena iskanja" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "Shranjena iskanja" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Skripta #%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Skripta je bila ustvarjena" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "Skripta ni dodana" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Skripte" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Skripte in prejemniki" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "Skripte se zaženejo ob vsaki posamezni spremembi zahtevka." #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "IÅ¡Äi" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "Iskanje %1 je posodobljeno" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Iskanje Älankov" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "IÅ¡Äi sredstva" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Shranjene nastavitve" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "PoiÅ¡Äi Älanke, ki se ujemajo z:" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "IÅ¡Äi odobritve" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Iskanje Älankov" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "IÅ¡Äi zahtevke" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "IÅ¡Äite po unikatnih %1id%2 Å¡tevilkah, besedah v %1\"zadevi\"%2, po imenu %1skupine%2, po %1uporabniÅ¡kem imenu%2 lastnika, po %1e-poÅ¡tnih naslovih%2 pobudnikov in %1statusih%2 zahtevkov. Iskanje po %1@domena.com%2 bo vrnilo zahtevke pobudnikov s te domene." #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Opcije iskanja" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Rezultati iskanja" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Interval osveževanja rezultatov iskanja" #: share/html/Search/index.html:48 msgid "Searches" msgstr "Iskanja" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "Iskanje po polnem tekstu vsakega zahtevka lahko traja dalj Äasa. ÄŒe želite izvesti iskanje besede v polnem teksu vpiÅ¡ite %1word." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Skrivni avtentikacijski žeton" #: bin/rt-crontool:352 msgid "Security:" msgstr "Varnost:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Poglej tudi:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Vidi Älanke" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "Vidi sredstva" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "Vidi zbirke" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Izberi" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "Izberi prilagojena polja za sredstva v vseh zbirkah" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Izberi tip baze" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Izberi prilagojeno polje" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "Izberi prilagojeno vlogo" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "Izberi skripto" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "Izberi zbirko" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Izberi barvo za segment" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "Izberi prilagojeno vlogo" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Izberi skupino" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Izberi vrsto" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Izberi vrsto za nov zahtevek" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Izberi segment" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Izberi uporabnika" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Izberi Älanek iz %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Izberi Älanek za dodajanje:" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Izberi drug jezik" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Izberi polje" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Izberi prilagojena polja za vse vrste" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Izberi prilagojena polja za vse uporabnikove skupine" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Izberi prilagojena polja za vse uporabnike" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Izberi prilagojena polja za vse zahtevke v vseh vrstah" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Izberi prilagojena polja za transakcije na zahtevkih v vseh vrstah" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Izberi datum" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Izberi datum in Äas" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "Izberi stanje globalne skripte:" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Izberi veÄ datumov" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "Izberi veÄ Äasov" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Izberi veÄ vrednosti" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Izberi eno vrednost" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Izberi vrste ki naj bodo vidne na \"RT pregled\" strani" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "Izberi stanje skript na novo dodanih vrstah" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Izberi teme za te Älanke" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Izberi do %quant(%1,datum,datumov)" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Izberi do %1 vrednosti" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Izbrana prilagojena polja" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Izbrane vrste" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Izbrani kljuÄ ni veljaven ali pa ne obstaja veÄ." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Izbrani objekti" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Izbire so bile spremenjene. Prosim shrani svoje spremembe." #: etc/initialdata:117 msgid "Send Forward" msgstr "Posreduj" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "Posreduj posredovano sporoÄilo" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Lastniku in vsem opazovalcem poÅ¡lji e-poÅ¡to" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Lastniku in vsem opazovalce poÅ¡lji e-poÅ¡to kot komentar" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Pobudnikom in ljudem na Cc poÅ¡lji e-poÅ¡to." #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Pobudnikom in ljudem na Cc poÅ¡lji e-poÅ¡to kot komentar" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "PoÅ¡iljanje ni uspelo. Kontatkirajte vaÅ¡ega administratorja (veÄ informacij v logih)." #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Pobudnikom poÅ¡lji sporoÄilo" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Ljudem ki so eksplicitno naveden pod Cc in Bcc poÅ¡lji e-poÅ¡to" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Ljudem na Cc poÅ¡lji e-poÅ¡to" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Ljudem na Cc poÅ¡lji e-poÅ¡to kot komentar" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "PoÅ¡lji sporoÄilo lastniku in administrativnemu Cc" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "PoÅ¡lji sporoÄilu lastniku, Äe je tako doloÄeno, drugaÄe administrativnemu Cc" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Ljudem na administrativnem Cc poÅ¡lji e-poÅ¡to" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Ljudem na administrativnem Cc poÅ¡lji e-poÅ¡to kot komentar" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Lastniku poÅ¡lji e-poÅ¡to" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "VeÄ vrednosti loÄi s praznimi prostori." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "Nastavi konÄni datum glede na SLA" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "Nastavi privatni kljuÄ" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "Nastavi zaÄetni datum glede na SLA" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "Nastavi konÄni rok glede na pogodbo/dogovor" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "Nastav zaÄetni rok glede na pogodbo/dogovor" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Nastavitve" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "Potrebne so nastavitve" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Kratko uporabniÅ¡ko ime" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Ali naj RT poÅ¡lje e-poÅ¡to za spremembe na zahtevkih, ki jih narediÅ¡?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Prikaži" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "Prikaz administratorskega menija" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Prikaz vseh odobritev" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "Vidi prikaz Älankov v meniju" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "Vidi prikaz menija sredstev" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Prikaži stolpce" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Prikaži rezultate" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Prikaži lastnosti zahtevkov na nivoju %1" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Prikaži citirana besedila." #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Prikaži odobrene zahtevke" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Prikaži tudi" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Prikaži zavrnjene zahtevke" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Vidi prikaz globalnih predlog" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "Prikaži zgodovino" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Prikaži opise povezav" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Prikaži najstarejÅ¡o zgodovino najprej" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Prikaži zahtevke na Äakanju" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Prikaži zahtevke, ki Äakajo na druge odobritve" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "Prikaži poenostavljen pogled prejemnikov ob posodobitvi zahtevka" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Prikaži pobudnikovih 10 najviÅ¡je prioritetnih aktivnih zahtevkov" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Prikaži pobudnikovih 10 najviÅ¡je prioritetnih neaktivnih zahtevkov" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Prikaži pobudnikovih 10 najviÅ¡je prioritetnih zahtevkov" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Prikaži zgodovino zahtevka" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "Prikaži prazna polja" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Rezalnik" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Stranski stolpec" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "PodpiÅ¡i" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "PodpiÅ¡i (privzeto)" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Prijavi se kot pobudnik zahtevka ali kot CC na zahtevku oz. vrsti" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Prijavi se kot Admin CC na zahtevku ali vrsti." #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "VpiÅ¡i %1%2" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "VpiÅ¡i %1%2 z uporabo %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Podpis" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "Podpisovanje" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Enostaven" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Enostavno iskanje" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "En" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Ime mesta" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Velikost" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "PreskoÄi menu" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Preskakovanje je onemogoÄilo uporabnika" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Majhno" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Nekateri brskalniki lahko naložijo vsebino le iz iste domene kot je RT strežnik." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Nekaj je Å¡lo narobe. Kontaktiraj sistemskega administratorja" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Razvrsti" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "Vrstni red" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "RazvrÅ¡Äanje" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Izvor" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "DoloÄi ali gre za dnevno ali tedensko zaganjanje" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Preglednica" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Stanje" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Na Äakanju" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "PriÄetek" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "PriÄetek bo %1." #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "Relativni priÄetek" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "PriÄne se ob" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "PriÄne se ob (relativno)" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Regija" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "Status '%1' ni veljavni status za sredstva." #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "Status '%1' ni veljavni status za ta %2." #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "Sprememba statusa" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "Sprememba statusa v HTML" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Status je bil spremenjen iz %1 na %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Spremembe statusa" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Prevzemi" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Prevzami zahtevke" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Korak %1 od %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Prevzeto od %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "Å toparica" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Stil" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Zadeva" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Oznaka zadeve" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Zadeva spremenjena na %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "Oznaka zadeve" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Shrani" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "Potrdi" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "Potrjujem" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Prijavi se" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Prijavi se na pregled %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Prijavi se na preglede" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Prijavljen na pregled %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Prijava" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Prijave ni bilo možno ustvariti: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "NaroÄnina posodobljena" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Podatki so bili uspeÅ¡no dekodirani" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Podatki so bili uspeÅ¡no kodirani" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Povzetek" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "Povzetek za nov-nazadnje posodobljen" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "Povzetek za nov-zakljuÄen" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "Povzetek za nov-priÄetek" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "Povzetek za konÄni rok-zakljuÄen" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "Povzetek za priÄetek-zakljuÄen" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "Povzetek predvidenega Äasa" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "Povzetek preostalega Äasa" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "Povzetek delovnega Äasa" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Ned" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Nedelja" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Suspendirano" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "Sistem" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Sistemska konfiguracija" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Sistemske privzete vrednosti" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Sistemska napaka" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Sistemska napaka: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Sistemska orodja" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Sistemska napaka" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Sistemska napaka. Pravica ni dodeljena." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup za interno uporabo" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Vzemi" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Prevzemi zahtevke" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Vzeto" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Povej nam kako naj najdemo bazo ki jo bo RT uporabljal" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Predloga" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Predloga #%1 izbrisana" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "Predloga '%1' ni globalna" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Predloge '%1' ni bilo možno najti" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "Predloga ne vsebuje kode Perl" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Predloga je prazna" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "Predloga je v uporabi" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Predloga je obvezen argument" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Predloga je bila prebrana" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Napaka pri branju predloge" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "Predloga: %1" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Predloge" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Predloge za vrsto %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Besedilo" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Tekstovna datoteka ni prikazana ker je onemogoÄene v nastavitvah" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "To je že trenutna vrednost" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "To ni vrednost za to prilagojeno polje" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "Ta vloga je neveljavna za ta objekt" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Zahtevek ima nereÅ¡ene odvisnosti" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Ta uporabnik je že lastnik tega zahtevka" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Ta uporabnik ne obstaja" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Ta uporabnik je že priviligiran" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Ta uporabnik je že nepriviligiran" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Ta uporabnik je sedaj priviligiran" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Ta uporabnik je sedaj nepriviligiran" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Ta uporabnik ne sme biti lastnik zahtevka v tej vrsti" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "To ni numeriÄen id" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Osnovno" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "CC prejemnik zahtevka" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Geslo administratorja baze" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "Administrativni CC zahtevka" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "Izbrani uporabniki bodo obveÅ¡Äeni o zahtevku preko e-poÅ¡te. OdznaÄite uporabnike za katere ne želite, da so obveÅ¡Äeni o zahtevku." #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "Privzeta zbirka" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Domensko ime podatkovnega strežnika (npr 'db.domena.si')" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "Ukaz bo naÅ¡el vse aktivne zahtevke v vrsti 'general' in nastavil njihovo prioriteto na 99, v kolikor so Äez rok:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Naslednje poizvedbe so bile izbrisane in bodo umaknjene iz pregleda ko bo le ta posobljen." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Naslednje poizvedbe morda ne bodo vidne vsem uporabnikom ki lahko vidijo ta pregled." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "KljuÄ je bil onemogoÄen" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "KljuÄ je bil preklican" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "KljuÄ je potekel" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "KljuÄ je verodostojen" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "KljuÄ je popolnoma verodostojen" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Nova vrednost je bila nastavljena." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Lastnik zahtevka" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Stran ki jo iÅ¡ÄeÅ¡ ne obstaja" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Pobudnik zahtevka" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "Nastavitve ki si jih izbral so shranjene v %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Sistem ne more podpisati izhodnih e-sporoÄil. To obiÄajno nakazuje da je geslo nastavljeno napaÄno, ali pa da je GPG Agent nedosegljiv. Prosim obvesti sistemskega administratorja. Naslovi ki povzroÄajo težave so:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "VeÄ kljuÄev je primernih za kodiranje." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Zahtevek ima neprebrana sporoÄila" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Ta kljuÄ ima majhno verodostojnost" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Za kodiranje ni primernega kljuÄa." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "Ni povezave med obdobjem %1 in %2. Kontaktiraj administratorja." #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Obstaja en primeren kluÄ, vendar nivo verodostojnosti ni nastavljeno." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Te nastavitvene možnosti obsegajo osnove da se RT postavi. Vedeti moramo ime RT instalacije in ime domene kjer se bo RT nahajal. Nastaviti boÅ¡ moral tudi geslo za privzetega administrativnega uporabnika." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "To prilagojeno polje ne more imeti seznam vrednosti" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "Tega prilagojenega polja ni možno dodati temu objektu" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Ta lastnost je na voljo le sistemskemu administratorju" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Dovoljeno samo administratorjem." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "Ta zahtevek se ne more zakljuÄiti dokler ni odobren." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "Ta zahtevek se ne more zakljuÄiti dokler %numerate(%1,odvisen,odvisni) ni/niso zakljuÄeni." #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "To orodje omogoÄa uporabnikom zagon poljubnih perl modulov znotraj RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Ta transakcija nima vsebine" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "Iskanje uporabnikov po poljih:" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "ÄŒet" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "ÄŒetrtek" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Zahtevek" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Zahtevek #%1 Jumbo posodobitev: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Relacijski graf zahtevka #%1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Zahtevek #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Zahtevek %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Zahtevek %1 ustvarjen v vrsti '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Zahtevek %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Zgodovina zahtevka # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "ReÅ¡en zahtevek" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Iskanje zahtevka" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Transakcije zahtevka" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Zahtevek" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Zgradba zahtevka" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Vsebina zahtevka" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Vrsta vsebine zahtevka" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Zahtevka ni bilo možno ustvariti zaradi interne napake" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Zahtevka ni bilo možno naložiti" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "Å tevilo zahtevkov" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Prikaz zahtevka" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "Zahtevek v" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Metapodatki zahtevka" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Status zahtevka je bil spremenjen" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Povzetek zahtevka" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "Iskalni modul TicketSQL" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Zahtevki" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Zahtevki %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Zahtevki %1 od %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Zahtevki katerih lastnik sem" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Zahtevki, ki so odvisni od te potrditve:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "ÄŒas" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Predviden Äas" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "ÄŒas na voljo" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "Porabljen Äas" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Porabljen Äas" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "Predviden Äas" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "ÄŒas za prikaz" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "Predviden Äas" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "Preostali Äas" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "Porabljen Äas" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "ÄŒasovnik za #%1: %2" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "ÄŒasovni pas" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Naslov" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Za" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Za vpraÅ¡anja o podpori, izobraževanju, razvoju ali licenciranju, prosim kontaktiraj %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Povedano" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "Povedano (relativno)" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Orodja" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Ime teme" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Tema ni najdena" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Teme" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Skupaj" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "Skupen predviden Äas" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "Skupni preostali Äas" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "Skupno porabljen Äas" #: etc/initialdata:317 msgid "Transaction" msgstr "Transakcija" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transakcija %1 poÄiÅ¡Äena" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transakcija je bila ustvarjena" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Prilagojena polja transakcije" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "Transakcija v HTML" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create ni uspelo, ker nisi specificar tipa objekta in id-ja" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "TransakcijaCF" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "Datum transakcije" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "Transakcije" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Transakcije ni možno spremeniti" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Verodostojnost" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "Poskusi" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "Ponovno poskusi" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Tor" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Torek" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tip" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Tip je bil spremenjen iz '%1' v '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "OdznaÄi izbrane skripte" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "Ni možno dodati %1 link: %2" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Ni možno doloÄiti tipa objekta ali id-ja" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "Ni možno najti sredstva #%1" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "Ni možno najti kataloga %1" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "Ni možno najti zbirke %1'" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "ÄŒlanka ni možno naložiti" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "Ni možno odpreti bližnjice za pomoÄ. Razlog:" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "Ni možno nastviti UserCSS: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "Ni možno nastaviti UserLogo: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "Prijava na pregled %1 ni možna: dostop zavrnjen" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "NepooblaÅ¡Äeno" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Unix prijava" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Neznano (verodostojna vrednost ni doloÄena)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Neznano (ta vrednost je nova sistemu)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Neznano kodiranje vsebine %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Neznano polje: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Umakni omejitev" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Neomejeno" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Neimenovan pregled" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Neimenovano iskanje" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "zahtevki brez lastnika" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Zahtevki brez lastnika" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Nepreviligirani" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Neizbrana prilagojena polja" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Neizbrani objekti" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Nenastavljen privatni kljuÄ" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Odvzeto" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Posodobi" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Posodobi grafikon" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Posodobi graf" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Prilagodi" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Posodobi zahtevek" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Posodobi tip" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Posodobi obliko in iÅ¡Äi" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Posodobi veÄ zahtevkov" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Posodobitev ni zabeležena." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Posodobi zahtevek" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Posodobi zahtevek #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Posodobi zahtevek #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Posodobitev tipa ni bilo niti dopisovanje niti komentar." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "Posodobi status" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Posodobljeno" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "Posodobil" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Posodovljeno shranjeno iskanje \"%1\"" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "Posodobil" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "Nadgradnja iz %1 na %2" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Prenos" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Naloži nov logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Prenesi veÄ datotek" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Prenesi veÄ slik" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Prenesi eno datoteko" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Prenesi eno sliko" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Prenesi do %1 datotek" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Prenesi do %1 slik" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "Nalaganje..." #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Uporaba:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "Uporabi izgled dveh stolpcov pri kreiranju in posodabljanju obrazcev?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Uporabi samodejne predloge pri iskanju lastnikov?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "Uporabi samodejne predloge pri iskanju vrst?" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Uporabi privzeto (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Uporabi ostala RT administrativna orodja" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Uporabi privzeto sistemsko nastavitev (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Uporabite meni za izbiro katere posodobitve zahtevka želite vkljuÄiti v nov Älanek." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Uporabnik" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "Uporabnik %1 je trenutno onemogoÄen." #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "Uporabnik %1 je trenutno onemogoÄen. Uredi uporabnika in izberi \"Dovoli temu uporabniku dostop do RT\"." #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Uporabnik (ustvarjen - preteÄen)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "UporabniÅ¡ko definirano" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "Pravice skupine" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Informacije o uporabniku" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "UporabniÅ¡ke pravice" #: share/html/User/Search.html:48 msgid "User Search" msgstr "Iskanje uporabnikov" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "Povzetek uporabnika" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Uporabnik je zahteval neznano posodobitev za prilagojeno polje %1 za %2 objekt #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Uporabnika ni bilo možno ustvariti: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Uporabnik je bil ustvarjen" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Uporabnik je bil onemogoÄen" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Uporabnik je bil omogoÄen" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Uporabnik ima prazen e-poÅ¡tni naslov" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Uporabnik naložen" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "UporabniÅ¡ko definirane skupine" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "Uporabnik: %1" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "UporabniÅ¡ko ime" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Format uporabniÅ¡kega imena" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Uporabniki" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Uporabniki ki se ujemajo s kriteriji iskanja" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Uporabljam transakcijo #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Veljavna poizvedba" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Validacija" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Vrednost" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Vrednosti" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Spremenljivka" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Verzija" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Vidi predloge skript" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Vidi skripte" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Vidi vrednosti prilagojenih polj" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Vidi prilagojena polja" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Vidi poslane emaile in njihove prejemnike" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Vidi skupine" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Vidi preglede skupine" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Poglej zasebne preglede" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Poglej vrste" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Vidi shranjena iskanja" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Vidi sistemske preglede" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Vidi komentarje na zahtevku" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Vidi povzetke na zahtevku" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "ViÅ¡ina WYSIWYG urejevalnika" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "WYSIWYG urejevalnik" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Opozorilo! To NI podpisano!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "Pozor: ta pregled nima uporabnikov" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "Pozor: spajanje je nepovratno dejanje! Vnesite Å¡tevilko zahtevka s katerim želite spojiti." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Opazovalec" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "OpazovalÄeva skupina" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Opazovalci" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Bazo lahko najdemo in se povežemo z njo kot administrator. KlikneÅ¡ lahko na 'Prilagodi osnove' in nadaljujeÅ¡ s prilagoditvami." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Spletna vrata" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Sre" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Sreda" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "Teden v letu" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Tedensko" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Tedenski povzetek" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "DobrodoÅ¡el v RT" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Moj dan" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Kaj je RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "Kateri zahtevku se prikazujejo v polju \"VeÄ o pobudniku\"" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Kam naj posreduje e-poÅ¡to ko je RT ne more obdelati?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Ko RT poÅ¡lje e-poÅ¡to nastavi From: in Reply-To: glavo da se prejemniki lahko v diskusijo vkljuÄijo le z odgovorom na e-poÅ¡to. RT uporablja razliÄne naslove za odgovore in komentarje. Ti se lahko spremenijo za vsako vrsto. Te naslove je potrebno nastaviti v rt-mailgate programu." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "Ob spremembi porabljenega Äasa" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Ko je zahtevek ustvarjen" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Ko je potrditveni zahtevek bil ustvarjen, obvesti lastnika in administrativni cc, da zadeva Äaka na odobritev" #: etc/initialdata:137 msgid "When anything happens" msgstr "Ko se karkoli zgodi" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Ko klikneÅ¡ na 'Preveri povezvljivost z bazo' lahko pride do manjÅ¡e zakasnitve" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Kadarkoli je zahtevek zaprt" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Kadarkoli je zahtevek posredovan" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Kadarkoli je zahtevek zavrnjen" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Kadarkoli je zahtevek ponovno odprt" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Kadarkoli je zahtevek reÅ¡en" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Kadarkoli je zahtevek ali transakcija posredovana" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Kadarkoli se spremeni lastnik zahtevka" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Kadarkoli se spremeni prioriteta zahtevka" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Kadarkoli se spremeni vrsta na zahtevku" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Kadarkoli se spremeni status zahtevka" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Kadarkoli je transakcija posredovana" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Karadkoli se zgodi uporabniÅ¡ko definiran pogoj" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Kadar pridejo komentarji" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Kadar pride dopisovanje" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Kje naj najdem sendmail binarno datoteko." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "Å irina" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Popolni izbris" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Služba" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Službeni telefon" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Porabljen Äas" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "Porabljen Äas %quant(%1,ura,ur) (%quant(%2,minuta,minut))" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "Porabljen Äas %quant(%1,minuta,minut)" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "Leto" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Da" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "Nisi (%1) pooblaÅ¡Äen za uporabo RT." #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Si že lastnik tega zahtevka" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "Nisi pooblaÅ¡Äen za uporabo RT." #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "SkoÄiÅ¡ lahko na prvo neprebrano sporoÄilo ali na prvo neprebrano sporoÄilo in oznaÄiÅ¡ vsa sporoÄila kot videna." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "Za barve klikni na zgornji logo." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "UrediÅ¡ lahko tudi prednastavljeno iskanje" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "ÄŒe je potrebno, lahko spremeniÅ¡ predlogo" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Gesla ne moreÅ¡ nastaviti." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "PrerazporediÅ¡ lahko le zahtevke katerih lastnik si (ali zahtevke brez lastnika)" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "UkradeÅ¡ lahko samo zahtevek, katerega lastnik je že nekdo drug" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "VzameÅ¡ lahko le zahtevke brez lastnika" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Ne moreÅ¡ spremeniti statusa iz '%1' v '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "NimaÅ¡ SuperUser pravic" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "Nimate dovoljen, da bi ustvarili sredstva v katalogu %1." #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "NimaÅ¡ dovoljenj za vpogled v sredstva" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "Nimate dovoljen za pregled te zbirke." #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Iz RT-ja si odjavljen" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "NimaÅ¡ pravic za ustvarjanje zahtevkov v tej vrsti" #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Vnesi povezave do Älankov kot \"a:###\", kjer ### predstavlja Å¡tevilko Älanka." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Vnesi administrativno geslo" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Poteka preusmeritev na stran za prijavo. Prijavil se boÅ¡ lahko z uporabniÅ¡kim imenom %1 in geslom ki si ga nastavil." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Izberi bazo s katero si ti ali lokalno administrator najbolj domaÄ." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "To vidiÅ¡ ker si strežnik zagnal brez delujoÄe baze. Najverjetneje je to prviÄ. ÄŒe klikneÅ¡ \"%1\", te bo RT vodil skozi namestitev RT strežnika in baze." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Lahko se ponovno prijaviÅ¡" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Tvoje geslo ni nastavljeno." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Tvoje uporabniÅ¡ko ime ali geslo ni pravilno" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "PoÅ¡ta" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Dol]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Gor]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "[skrita zbirka]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[brez]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "prilagojeno polje" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "aktiven" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "po" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "po kliku na link" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "potem ko se naloži preostanek strani" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "porazdeljen" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "in pred" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "in ne" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "in nato" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "stolpiÄni" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "pred" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "telo" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "od spodaj navzgor" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "oznaÄi ta okvir za doloÄanje tega prilagojenega polja vsem objektom." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "oznaÄi ta okvirÄek za ostranitev prilagojenega polja vsem objektom; potem lahko izbereÅ¡ specifiÄne objekte" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "oznaÄi za dodajanje" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "klikni za oznaÄevanje/odznaÄevanje vseh objektov hkrati" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "kljuÄne nastavitve" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "ustvari zahtevek" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "Dnevno ob %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "Dnevno" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "pregled" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "pregled v meniju" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "izbrisano" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "se ne ujema" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "prenos" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "trajanje" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "prazno ime" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "enak" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "napaka: ne moreÅ¡ dol" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "napaka: ne moreÅ¡ levo" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "napaka: ne moreÅ¡ gor" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "napaka: niÄ za izbrisati" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "napaka: niÄ za premakniti" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "napaka: niÄ za spremeniti" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "vsak" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "vtiÄnik izveden uspeÅ¡no" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "eksplicitni enkratni Bcc" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "eksplicitni enkratni Cc" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "polno" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "veÄji kot" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "skupina" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "skupina %1" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "skupina '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "takoj" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "v %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "v uporabi" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "neeaktiven" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "vkljuÄuje %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "indeks" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "neveljaven zadnji rok: %1" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "je" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "ni" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "kljuÄ onemogoÄen" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "kljuÄ preteÄen" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "kljuÄ preklican" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "od leve proti desni" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "manj kot" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "majhno" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "se ujema" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "maksimalna globina" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minut" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "prilagodi konfiguracijo RT" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "prilagodi pregled" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "prilagodi ali dostopaj do iskanja" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "meseÄno" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "meseÄno (dan %1) ob %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "nikoli" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "novo" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "ne" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "e-poÅ¡tni naslov ni nastavljen" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "brez" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "ne" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "ni enako kot" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "niÄ" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "objekti so bili uspeÅ¡no odstranjeni" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "na" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "na dan" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "en" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "odprto" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "odpri/zapri" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "ostalo..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "izvedi akcije" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "tortni" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "vtiÄnik je vrnil prazen seznam" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "vrsta %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "zavrnjeno" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "zahteva rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "reÅ¡eno" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "od desne proti levi" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "iÅ¡Äi" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "poglej seznam objektov spodaj" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "stranski stolpec" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "konfiguracija mesta" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "na Äakanju" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "izjava" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "ukraden" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "vrstice povzetkov" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "sistem %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "sistemska skupina '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "tabela" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "klicoÄa komponenta ni specificirala zakaj" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "privzeti naslovi ki bodo v From: in Reply-To: glavi" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "privzeti naslovi ki bodo v From: in Reply-To: glavi dopisne poÅ¡te" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "zahtevek #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "od zgoraj navzdol" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "konÄno" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "neopisana skupina %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "neomejeno" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "posodobi zahtevek" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "posodobi ob odobritvi" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "posodobi Älanek" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "uporabnik" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "uporabnik %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "UporabniÅ¡ko ime" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "tedensko" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "tedensko (na %1) ob %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "tedni" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "vrata na katerih bo posluÅ¡al spletni strežnik, npr. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "z glavo" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "da" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/sk.po0000664000175000017500000116451713131430353014546 0ustar vagrantvagrant# Slovak translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-08 23:10+0000\n" "Last-Translator: Alex Vandiver \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%1 %2 %3 %4:%5:%6" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 pridané" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 zmenené na %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 odstránené" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 odstránené." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 uložené." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 aktualizované." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 so vzorom %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) vytvoril %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Nezmenené)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (z panela %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - LogToSTDERR upraviÅ¥ konfiguraÄné možnosti" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Výstupný stav ide do STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - UrÄite, Äi chcete použiÅ¥ Äi už 'first', 'last' alebo 'all' transakcie" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Zadajte názov alebo ID Å¡ablón(y), ktorý chcete použiÅ¥" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Zadajte Äiarkami oddelený zoznam typov transakcí, ktoré chcete použiÅ¥" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Aký podmienkový modul chcete použiÅ¥" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Aký vyhľadávací modul chcete použiÅ¥" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 pridané ako hodnota pre %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 už existuje a má tabulky RT na svojommieste, ale neobsahuje metadata RT. Neskorší krok 'Inicializovat databázu' vie vložiÅ¥ metadata do tejto existujúcej databáze. Ak-lo to prijatelné, kliknite nížšie na 'Úprava základných údajov' pre pokraÄovanie v úprave RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 už existuje, ale neobsahuje RT tabuľky alebo metadáta. Neskôr v kroku 'Initialize Database' môžete vkladaÅ¥ tabuľky a metadáta do tejto existujúcej databázy. Ak je to prijateľné, kliknite na tlaÄidlo 'Customize Basic' nižšie pre pokraÄovanie prispôsobenia RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 vypadá ako lokálny objekt, ale nie je v databázi" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 sa zdá byÅ¥ plne inicializována. Nebudeme potrebovaÅ¥ vytvoriÅ¥ žiádne tabuľky ani vložiÅ¥ metadata, ale môžete pokraÄovaÅ¥ v úprave RT kliknutím nižšie na 'Úprava základných údajov'" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 uživaÅ¥eľom %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 zmenené z %2 na %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 zmenené z '%2' na '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 kopírovaÅ¥" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 konfiguraÄné jadro" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 nie je možné nastaviÅ¥ na %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 vytvorené" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 zmazané" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 blokovaný" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1neexistuje" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 povolené" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 najdôležitejších požiadaviek, ktoré vlastním" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 je nástroj na prácu s požiadavkami z externého plánovacieho nástroja, ako \"cron\"." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 je nástroj, ktorý má byÅ¥ spustený z cronu, ktorý odoÅ¡le vÅ¡etky odložené RT oznámenia ako digest jednotlivému užívateľovi." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 je adresa RT na prijímanie poÅ¡ty. Pridanie ako '%2' by vytvorilo poÅ¡tovú sluÄku" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 už nie je hodnotou užívatelskéj položky %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 posledná aktualizácia Älánkov" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 najnovÅ¡ie Älánky" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 najnovších požiadaviek bez vlastníka" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objekty" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 aktualizovaÅ¥: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 aktualizácia: NiÄ sa nezmenilo" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 aktualizované" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1's aktuálne heslo" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1's panely" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1's uložené vyhľadávania" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: nebola Å¡pecifikovaná príloha" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Nová požiadavka v %2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,hodina,hodiny,hodín)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' je neplatné meno" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' je neplatný identifikátor triedy" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(ZaÅ¡krtávacie políÄko pre dokonÄiÅ¥)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(ZaÄiarkavacie políÄko pre odstránenie)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(ZaÅ¡krtávacie políÄko pre zmazaÅ¥)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Zadajte ID požiadavky alebo adresy URL, oddelené medzerami)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Ak nevyplníte, bude v predvolenom nastavení %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Žiadne vlastné polia)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Žiadny Älenovia)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Žiadne skripty)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Žiadne Å¡ablóny)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Použite tieto polia, ak zvolíte 'User Defined' pre podmienku alebo akciu)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(žiadny)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(žiadny súhrn)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(bez názvu)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(žiadny verejný kľúÄ!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(žiadna hodnota)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(žiadne hodnoty)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(Äakajúce %quant(%1,ostatné požiadavky))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(Äaká na schválenie)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(požadované)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(dôverovaÅ¥: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(bez názvu)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(nedôveryhodný!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id je zastaraný argument a nemôže byÅ¥ použitý s --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--transaction argument može byÅ¥ len 'first', 'last' alebo 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "Prázdna Å¡ablóna" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Heslo nie je nastavené, takže užívateľ sa nebude môcÅ¥ prihlásiÅ¥." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE nebol nájdený" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACE-sy môžu byÅ¥ len vytvorené a zmazané." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "a" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "O mne" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Kontrola prístupu" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Akcia" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Akcia '%1' nebola nájdená" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Akcia vykonaná." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Akcia je povinný argument" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Akcia pripravená ..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Akcie" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Aktívne požiadavky" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Aktívne požiadavky z %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "PridaÅ¥ %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "PridaÅ¥ AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "PridaÅ¥ záložku" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "PridaÅ¥ Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "PridaÅ¥ stĺpce" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Aktuálne vyhľadávanie" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "PridaÅ¥ ÄalÅ¡ie súbory" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "PridaÅ¥ žiadateľa" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "PridaÅ¥ hodnotu" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "PridaÅ¥ komentár alebo odpovede na vybrané tikety" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "PridaÅ¥ skupinu" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "PridaÅ¥ sem" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "PridaÅ¥ Älenov" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "PridaÅ¥ nových pozorovateľov" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "PridaÅ¥ práva pre %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "PridaÅ¥ tieto podmienky" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "PridaÅ¥ tieto podmienky a vyhľadaÅ¥" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "PridaÅ¥ používateľa" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "PridaÅ¥ hodnoty" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "PridaÅ¥, zmeniÅ¥ a zmazaÅ¥ hodnoty užívateľského poľa pre objekty" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adresa" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Adresa 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adresa1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adresa2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Admin komantár" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Admin koreÅ¡pondencia" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Admin fronty" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admin / Globálna konfigurácia" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "AdminCCs" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Rozšírené" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Rozšírené hľadanie" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Po prihlásení budete poslaný k pôvodnému cieľu:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Agregátor" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "VÅ¡etky schválenia preÅ¡li" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "VÅ¡etky triedy" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "VÅ¡etky panely" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "VÅ¡etky fronty" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "VÅ¡etky požiadavky" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "" #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "VÅ¡etky fronty zodpovedajúce kritériam vyhľadávania" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "VÅ¡etky požiadavky" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "VÅ¡etky témy" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "PovoliÅ¥ vytvorenie pre uložené vyhľadávania" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "PovoliÅ¥ nahratie z uložených vyhľadávaní" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "PovolÅ¥ zapisovaÅ¥ Perl kód v Å¡ablonách, skriptoch atÄ" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Už Å¡ifrované" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "A/Alebo" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "RoÄne" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Nejaké pole" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Nejaké slovo" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Platí pre" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "VzÅ¥ahuje sa na vÅ¡etky objekty" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "PoužiÅ¥" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "PoužiÅ¥ globálne" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "PoužiÅ¥ vaÅ¡e zmeny" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Schválenie" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Schválenie #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Schvalovanie #%1: Poznámky nie sú zaznamenané kvôli systémovej chybe" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Schvalovanie #%1: Poznámky zaznamenané" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Schválenie preÅ¡lo" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Schválenie pripravené pre vlastníka" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Schválenie zamietnuté" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "SchváliÅ¥" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "ÄŒlánok #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "ÄŒlánok %1 vytvorený" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "SpravovaÅ¥ Älánok" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "ÄŒlánok sa nenaÅ¡iel" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "ÄŒlánky" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "ÄŒlánky v %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "ÄŒlánky zodpovedajúce %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "ÄŒlánky bez tém" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Stúp" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Pridanie a odobratie užívateľských polí fronte" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "PripojiÅ¥" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "PripojiÅ¥ súbor" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Priložený súbor" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Príloha" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Príloha '%1' sa nedá naÄítaÅ¥" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Prílohu vytvoril" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Názov prílohy" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Prílohy" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Å ifrovanie prílohy je vypnuté" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Atribút zmazaný" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Automaticky navrhnuté farby motívu nie sú k dispozícii pre váš obrázok. To môže byÅ¥ preto, že ste nahrali typ obrazu, ktorý nainÅ¡talovaná verzia GD nepodporuje. Podporované typy sú: %1. Môžete prekompilovaÅ¥ libgd a do GD.pm zahrnúť podporu pre ÄalÅ¡ie typy obrázkov." #: etc/initialdata:261 msgid "Autoreply" msgstr "Automatická odpoveÄ" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Auto-odpoveÄ Å¾iadateľom" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Dostupný" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Späť" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Zlý osobný údaj pre atribút %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Základné" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Skrytá kópia" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Prázdne" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Obsah" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "TuÄné" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Záložka" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Bookmarkable odkaz na toto vyhľadávanie" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Bookmarkable požiadavky" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Bookmarkable požiadavky" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "PrezeraÅ¥ podľa témy" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "PrezeraÅ¥ SQL dotazy vykonané v tomto procese" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Hromadná aktualizácia" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "CCSkupina" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Nemôžem nahraÅ¥ uložené vyhľadávaie \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Nie je možné zmeniÅ¥ užívateľa systému" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Nemôžem pridaÅ¥ hodnotu užív. poľa bez názvu" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Nemožno nájsÅ¥ uložené hľadania pre prácu s" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Nedá sa prepojiÅ¥ požiadavka na seba" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Nemožno uložiÅ¥ %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Nemožno uložiÅ¥ toto vyhľadávanie" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Nemožno pridaÅ¥ odkaz na prosté Äíslo" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Nemožno vytvoriÅ¥ požiadavky v blokovanej fronte." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategórie sú založené na" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategória" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Kópia" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "ZmeniÅ¥" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Schválenie zmeny tiketu do otvoreného stavu" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "ZmeniÅ¥ heslo" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Graf" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "OznaÄiÅ¥ vÅ¡etko" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Skontrolujte databázové pripojenie" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Skontrolujte, Äi databáza poverenia" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "ZaÅ¡krtávacie políÄko pre odstrániÅ¥" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Potomok" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Vyberte databazový prostriedok" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Vyberte si z tém pre %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Mesto" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Trieda" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Názov triedy" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Trieda nemohla byÅ¥ vytvorená: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "ID tiredy" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Trieda je už aplikovaná globálne" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Trieda je už aplikovaná na %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Triedy" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "VyÄistiÅ¥" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "VyÄistiÅ¥ vÅ¡etko" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Kliknite na \"DokonÄiÅ¥ inÅ¡taláciu\" nižšie k ukonÄeniu tohto sprievodcu." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Kliknite na \"Inicializáciu databázy\" a vytvori sa Rt databáza a vložia sa poÄiatoÄné metadáta. Toto môže trvaÅ¥ niekoľko okamihov" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "UzatvoriÅ¥" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Uzatvorené požiadavky" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "ComboBox: Vyberte alebo zadajte viac hodnôt" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "ComboBox: Vyberte alebo zadajte hodnotu" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "ComboBox: Vyberte alebo zadajte %1 hodnôt" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Poznámka" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Adresa komentára" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Adresa komentára" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "KomentovaÅ¥ požiadavky" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Komentáre" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Komentáre" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Komentáre o tomto užívateľovi" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Komentáre pridané" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Podmienka" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Podmienka '%1' sa nenaÅ¡la" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Podmienka je povinným argumentom" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Podmienka je povinný argument" #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Podmienka, Akcia a Å ablóny" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "KonfiguraÄný súbor %1 je zamknutý" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Konfigurácia pre frontu %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Pripojenie úspeÅ¡né" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Obsah" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Obsah je neplatná IP adresa" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Obsah je nesprávny IP rozsah adries" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Typ obsahu" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "TypObsahu" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Rovnaké adresy" #: etc/initialdata:393 msgid "Correspondence" msgstr "KoreÅ¡pondencia" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "KoreÅ¡pondencia pridaná" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Nemôžem pridaÅ¥ novú hodnotu poľa: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Nemôžem zmeniÅ¥ vlastníka: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Nemôžem vytvoriÅ¥ vlastnépole: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Nemôžem vytvoriÅ¥ skupinu" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Nemôžem vytvoriÅ¥ vyhľadávanie: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Nemožno vytvoriÅ¥ požiadavku. Fronta nie je nastavená." #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Nemožno vytvoriÅ¥ užívateľa." #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Nemožno zmazaÅ¥ vyhľadávanie %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Nemožno nahraÅ¥ %1 atribút" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Nemožno nahraÅ¥ triedu %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Nemožno naÄítaÅ¥ vlastné pole %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Nemožno naÄítaÅ¥ skupinu" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Nemožno naÄítaÅ¥ objekt pre %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Nemožno nastaviÅ¥ informácie o užívateľovi" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Nemožno pridaÅ¥ prílohu" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Nemožno pridaÅ¥ Älena do skupiny" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Nemožno skompilovaÅ¥ Å¡ablónu blok-kódu '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Nemožno vytvoriÅ¥ transakciu: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Nemožno vytvoriÅ¥ záznam: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Nemožno odstrániÅ¥ panel %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Nemožno nájsÅ¥ riadok" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Nemožno nájsÅ¥ vhodnú transakciu, preskakujem" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Nemožno nájsÅ¥ vedúceho (splnomocniteľa)" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Nemôžem nájsÅ¥ túto hodnotu" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Nemožno naÄítaÅ¥ triedu %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Nemožno naÄítaÅ¥ vlastné pole #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Nemožno naÄítaÅ¥ vlastné pole #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Nemožno naÄítaÅ¥ vlastné pole #%1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Nemožno naÄítaÅ¥ kópiu požiadavky #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Nemožno naÄítaÅ¥ panel %1:%2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Nemožno naÄítaÅ¥ skupinu #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Nemožno naÄítaÅ¥ skupinu %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Nemožno naÄítaÅ¥ odkaz" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Nemožno naÄítaÅ¥ objekt %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Nemožno naÄítaÅ¥ alebo vytvoriÅ¥ užívateľa: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Nemožno naÄítaÅ¥ frontu" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Nemožno naÄítaÅ¥ frontu #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Nemožno naÄítaÅ¥ frontu %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Nemožno naÄítaÅ¥ frontu '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Nemožno naÄítaÅ¥ skript #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Nemožno naÄítaÅ¥ Å¡ablónu #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Nemožno naÄítaÅ¥ Å¡pcifikovaného vedúceho (splnomocniteľa)" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Nemožno naÄítaÅ¥ požiadavku '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Nemožno naÄítaÅ¥ tému Älenstva a zároveň sa snažiÅ¥ ju odstrániÅ¥" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Nemožno naÄítaÅ¥ transakciu #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Nemožno naÄítaÅ¥ užívateľa" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Nemožno naÄítaÅ¥ užívateľa #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Nemožno naÄítaÅ¥ užívateľa #%1 alebo užívateľa '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Nemožno naÄítaÅ¥ užívateľa '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Nemožno nahradiÅ¥ obsah s deÅ¡ifrovanými dátami: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Nemožno nahradiÅ¥ obsah s Å¡ifrovanými dátami: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Nemôžem vyrieÅ¡iÅ¥ (rozoznaÅ¥) cieľ '%1' v URI." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Nemožno nastviÅ¥ súkromný kľúÄ" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Nemožno vypúť súkromný kľúÄ" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Krajina" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "VytvoriÅ¥" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "VytvoriÅ¥ požiadavky" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "VytvoriÅ¥ triedu" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "VytvoriÅ¥ vlastné pole" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "VytvoriÅ¥ vlastné pole pre frontu %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "VytvoriÅ¥ nový Älánok" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "VytvoriÅ¥ nový Älánok v" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "VytvoriÅ¥ nový panel" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "VytvoriÅ¥ novú skupinu" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "VytvoriÅ¥ novú Å¡ablónu pre frontu %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "VytvoriÅ¥ nového užívateľa" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "VytvoriÅ¥ frontu" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "VytvoriÅ¥ Å¡ablónu" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "VytvoriÅ¥ požiadavku" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "VytvoriÅ¥ Älánok" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "VytvoriÅ¥ Älánok v triede..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "VytvoriÅ¥ Älánky v tejto triede" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "VytvoriÅ¥ skupinu riadiacich panelov" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "VytvoriÅ¥ nové požiadavky na základe tejto Å¡ablóny" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "VytvoriÅ¥ osobné riadiace panely" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "VytvoriÅ¥ systémové riadiace panely" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "VytvoriÅ¥ požiadavku" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "VytvoriÅ¥ požiadavky" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "VytvoriÅ¥, upraviÅ¥ a zmazaÅ¥ položky prístupového zoznamu" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "VytváraÅ¥, upravovaÅ¥ a mazaÅ¥ vlastné pole" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "VytváraÅ¥, upravovaÅ¥ a mazaÅ¥ vlastné pole hodnôt" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "VytváraÅ¥, upravovaÅ¥ a mazaÅ¥ frontu" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "VytváraÅ¥, upravovaÅ¥ a mazaÅ¥ uložené vyhľadávania" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "VytváraÅ¥, upravovaÅ¥ a mazaÅ¥ užívateľa" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Vytvorené" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Vytvoril" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Vytvorené vyhľadávanie %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "Vytvoril" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Tvorca" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Aktuálne prepojenia" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Aktuálne vyhľadávanie" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "SúÄasní Älenovia" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Aktuálne vyhľadávanie" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Aktuálni dozorcovia" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Vlastné polia" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Vlastné polia pre %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Vlastné polia pre frontu %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Vlastná akcia prípravy kódu" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Vlastná podmienka" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Vlastné pole #%1 sa nevzÅ¥ahuje na tento objekt" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Vlastne pole %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Vlastné pole %1 sa nevzÅ¥ahuje na tento objekt" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Vlastné pole %1 má hodnotu." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Vlastné pole %1 nemá hodnotu." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Vlastné pole %1 nenájdené" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Hodnota vlastného poľa nemôže byÅ¥ zmazaná" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Hodnota vlastného poľa zmazaná" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "VlastnéPole" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "Hodnota vlastného poľa" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "PrispôsobiÅ¥" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "PrispôsobiÅ¥ email adresy" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "PrispôsobiÅ¥ email konfiguraciu" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "PrispôsobiÅ¥ vzhľad vášho RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA heslo" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA užív. meno" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Denne" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Denný prehľad" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Panel" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Panel sa nedá vytvoriÅ¥: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Panel sa nedá aktualizovaÅ¥: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Panel aktualizovaný" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Panely" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Databázové meno" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Databázový port" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Formát dátumu" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Dátumy" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "DeÅ¡ifrovaÅ¥" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Å tandardná fronta" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Å tandardný: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Å tandard: %1/%2 zmenený z %3 na %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Å tandardný rotmát" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "OdstrániÅ¥" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "OdstrániÅ¥ Å¡ablónu" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "ZmazaÅ¥ systémové panely" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "VymazaÅ¥ požiadavky" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "VymazaÅ¥ hodnoty" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Vymazané %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Zmazané otázky" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Vymazané uložené hľadanie" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "ZakázaÅ¥" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Závislé na mne" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "Závislé na mne" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "ZávislosÅ¥ na %1 pridaná" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "ZávislosÅ¥ od %1 zmazaná" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "ZávislosÅ¥ na %1 pridaná" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "ZávislosÅ¥ na %1 zmazaná" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Závislé na" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "Závisí na" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Kles" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Popíšte problém nižšie" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Popis" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Detailná informácia o vaÅ¡om nastavení RT" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Detaily" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Smer" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "ZobraziÅ¥ Älánok %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "ZobraziÅ¥ stĺpce" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "RobiÅ¥ Äokoľvek a vÅ¡etko" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Doménové meno" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Nezahŕňajú http://, len nieÄo ako \"localhost\", \"rt.example.com\"" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "NeaktualizovaÅ¥ túto stránku." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "NeobnovovaÅ¥ vyhľadané výsledky" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "NeobnovovaÅ¥ túto stránku" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "StiahnuÅ¥" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Rozbaľovací" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Do" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Jednoduchá aktualizácia vami otvorených požiadaviek" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Jednoduchý pohľad na vaÅ¡e pripomienky" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "UpraviÅ¥" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "UpraviÅ¥ vlastné polia" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "UpraviÅ¥ vlastné pole pre vÅ¡etky skupiny" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "UpraviÅ¥ vlastné polia pre vÅ¡etky fronty" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "UpraviÅ¥ vlastné polia pre vÅ¡etkých užívateľov" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "UpraviÅ¥ vlastné polia pre Älánky vo vÅ¡etkých triedach" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "UpraviÅ¥ vlastné polia pre požiadavky vo vÅ¡etkých frontách" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "UpraviÅ¥ prepojenia" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "UpraviÅ¥ dotaz" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "UpraviÅ¥ vyhľadávanie" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "UpraviÅ¥ globálnu hierarchiu tém" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "UPraviÅ¥ systémové Å¡ablóny" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "UpraviÅ¥ hierarchiu témy pre %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "UpravovaÅ¥ vlastné pole %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Emailová adresa" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Emailvý prehľad" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Emailová adresa použitá" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Email dodaný" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Povelené" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Povolené (deaktivácia fajky zakáže túto triedu)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Povolené (deaktivácia fajky zakáže toto vlastné pole)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Povolené (deaktivácia fajky zakáže túto skupinu)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Povolené (deaktivácia fajky zakáže túto frontu)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Povolené triedy" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Povolené Fronty" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Povolený status %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Å ifrovanie" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Å ifrovanie/deÅ¡ifrovanie" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Zadajte Älánky, požiadavky, alebo iné adresy URL súvisiace s týmto Älánkom." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Zadajte viac rozsahov IP adries" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Zadajte viac IP adries" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Zadajte viac hodnôt" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Zadajte viac hodnôt pomocou automatického doplňovania" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Zadajte objekty alebo URI pre prepojenie objektov. Viac položiek oddeľte medzerami." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Zadajte jednu IP adresu" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Zadajte jeden rozsah IP adries" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Zadajte jednu hodnotu" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Zadajte jednu hodnotu s automatickým dokonÄovaním" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Zadajte fronty alebo URI na prepojenie front. Viac položiek oddeľte medzerami." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Zadajte požiadavky alebo URI na prepojenie požiadaviek. Viac položiek oddeľte medzerami." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Zadajte Äas v hodinách v predvolenom nastavení" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Zdroje" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Pole" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Názov súboru" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "VyplniÅ¥ argumenty" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "KoneÄná priority" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "NájsÅ¥ skupiny, ktorých" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "NájsÅ¥ ľudí, ktorých" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "" #: share/html/Elements/Tabs:878 msgid "First" msgstr "" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formát" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Posunúť" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Posunúť správu" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Posunúť správu a návrat" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Posunúť požiadavku" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Posunúť požiadavku #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Posun transakcie #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Nájdené: %quant(%1,požiadavka, požiadavky, požiadaviek)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Pia" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Piatok" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Z" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "PrejsÅ¥" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "PrejsÅ¥ na skupinu" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "PrejsÅ¥ na užívateľa" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "SpustiÅ¥!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "ChoÄ na požiadavku" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Diagram" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Práva skupiny" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Skupiny" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "História" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "História skupiny %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "História fronty %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "HistÅ•ia užívateľa %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Stránku aktualizovaÅ¥ v intervale" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Hlavná stránka" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Hodina" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Hodiny" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identita" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Ak ste aktualizovali nieÄo vyššie, uistite sa, že" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Neaktívne požiadavky" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Zahrnúť Älánok" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Zahrnúť zablokované triedy do zoznamu." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Zahrnúť zablokované vlastné polia do zoznamu." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Zahrnúť zablokované skupiny do zoznamu." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Zahrnúť zablokované fronty do zoznamu" #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Zahrnúť zablokovaných užívateľov do hľadania." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Zahrnúť stránku" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Neplatná trieda" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Neplatné dáta" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Neplatný objekt" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Neplatný vzor: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "" #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Júl" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Jún" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Jazyk" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "VeľkosÅ¥" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Posledný" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Posledný kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Posledný kontakt" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Posledná zmena" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Naposledy zmenil" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Posledná zmena" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Naposledy zmenil" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "PoslednáZmena" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Živorný cyklus" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Prepojenie" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Prepojenie už existuje" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Prepojenie sa nenaÅ¡lo" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Prepojenie požiadavky #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Spojené" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "PrepojeneOd" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "PrepojenéNa" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Prepojenia" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Zoznam" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "NahraÅ¥" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "NaÄítanie uloženého hľadania" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "NaÄítaÅ¥ uložené vyhľadávanie" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "NaÄítaÅ¥ uložené vyhľadávanie:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "NaÄítavam..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Umiestnenie" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Prihlásený" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Prihlásený ako %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Odhlásený" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Prihlásenie" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "OdhlásiÅ¥ sa" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "PriradiÅ¥ vlastníka" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "PriradiÅ¥ status" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "PriradiÅ¥ dátum splatnosti" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "PriradiÅ¥ dátum zaÄatia" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "PriradiÅ¥ poÄiatoÄný dátum" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "PriradiÅ¥ prioritu" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "PriradiÅ¥ frontu" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "PriradiÅ¥ predmet" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "SpravovaÅ¥ vlastné polia a vlastné hodnoty ploli" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Správa skupín a Älenstvo v skupinách" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "mar" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Máj" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Ja" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "ÄŒlen" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "ÄŒlen %1 pridaný" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "ÄŒlen %1 zmazaný" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "ÄŒlen zmazaný" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "ÄŒlen sa nedá zmazaÅ¥" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "ÄŒlenovia" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "ZlúÄiÅ¥ do" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "ZlúÄiÅ¥ do %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Správa" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Minimálna dĺžka hesla" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minúty" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobilný" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Mobilný telefón" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "UpraviÅ¥ dátumy pre požiadavku #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "UpraviÅ¥ globálne témy" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "UpraviÅ¥ ľudí spojených s požiadavkou #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "UpraviÅ¥ osobné panely" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "UpraviÅ¥ skript pre frontu %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "UpraviÅ¥ skript, ktorý platí pre vÅ¡etky fronty" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "UpraviÅ¥ systémové panely" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "UpraviÅ¥ triedu %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "UpraviÅ¥ užívateľa %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "UpraviÅ¥ požiadavku # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "UpraviÅ¥ požiadavku #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "UpraviÅ¥ požiadavky" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "UpraviÅ¥ tému pre %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "UpraviÅ¥ hierarchiu tém prislúchajúcu k tejto triede" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "UpraviÅ¥ témy pre Älánky v tejto triede" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "UpraviÅ¥ kto prijma poÅ¡tu pre požiadavku #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Pon" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Pondelok" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "MesaÄne" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Presunúť sem" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Viacnásobný" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Moje schválenia" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Môj deň" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Moje pripomienky" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Moje schválenia" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Moje panely" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Moje pripomienky" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Moje uložené vyhľadávania" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Meno" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Meno a emailová adresa" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Meno je už použité" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Meno:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Nikdy" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Nový" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Nový Älánok" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Nový panel" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nové linky" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Nové Äo Äakajú na schválenie" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Nové hľadanie" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nová správa" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nové heslo" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Nová pripomienka:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nová požiadavka" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Neexistuje nová požiadavka" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Nové požiadavky nemôžu maÅ¥ stav '%1' v tejto fronte." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nový strážci" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "ÄŽalší" #: lib/RT/User.pm:96 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Prezývka" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Nie" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Bez predmetu" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:970 msgid "No password set" msgstr "" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Bez predmetu" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "nikto" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Žiadny" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Neprihlásený" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Poznámky" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "" #: etc/initialdata:47 msgid "Notify Owner" msgstr "" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Informujte žiadateľov" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Informujte ma o nepreÄítaných správ" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "alebo" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objekt vytvorený" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objekt zmazaný" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Typ Objektu je miÅ¡maÅ¡" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Okt" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "" #: etc/initialdata:170 msgid "On Comment" msgstr "" #: etc/initialdata:142 msgid "On Correspond" msgstr "" #: etc/initialdata:131 msgid "On Create" msgstr "" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "" #: etc/initialdata:199 msgid "On Queue Change" msgstr "" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "" #: etc/initialdata:205 msgid "On Resolve" msgstr "" #: etc/initialdata:176 msgid "On Status Change" msgstr "" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Jednorázovo Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Jednorázovo CC" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "ZobraziÅ¥ iba schválenie pre žiadosti vytvorené po %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "ZobraziÅ¥ iba schválenie pre žiadosti vytvorené pred %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "ZobraziÅ¥ iba vlastné polia pre:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Otvorte ho" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Otvorené požiadavky" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "OtvoriÅ¥ URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Otvorené požiadavky" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Možnosti" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Možnosti" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "ZoradiÅ¥ podľa" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Prehľad" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "VlastniÅ¥ požiadavky" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Vlastník" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Vlastník zmenený z %1 na %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "Meno vlastníka" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Strana" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Strana 1 z 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Pagr" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "RodiÄia" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Heslo" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Heslo zmenené" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Heslo nebolo nastavené" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Heslo musí maÅ¥ viac ako %1 znakov" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Heslo nastavené" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Heslo: povolenie odmietnuté" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Ľudia" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl konfigurácia" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Povolenie odmietnuté" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Povolenie odmietnuté" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Tel. Äíslo" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Nastavenia" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "" #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Priorita" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Súkromie" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Súkromné:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Súkromný kľúÄ" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Dotazy" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Dotaz" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Tvorca dotazov" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Fronta" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Názov fronty" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Fronta už existuje" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Fronta nemohla byÅ¥ vytvorená" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Fronta vytvorená" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "NázovFronty" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Fronty" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Rýchle vyhľadávanie" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Rýchle vytvorenie požiadavky" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT veľkosÅ¥" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "Zbežný prehľad" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT pre %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Znova otvorenie" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Reálne meno" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Príjemcovia" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "UložiÅ¥ vÅ¡etky aktualizácie" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Odvolal sa na" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Týka sa" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Obnovenie" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Obnovenie stránky po %quant(%1,minúte,minútach)." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "VyradiÅ¥" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "ZapamätaÅ¥ Å¡tandardnú frontu" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Pripomienka" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Pripomienka '%1' pridaná" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Pripomienka '%1' kompletná" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Pripomienky" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Pripomienky pre požiadavku #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "OdstrániÅ¥ AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "OdstrániÅ¥ záložku" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "OdstrániÅ¡ Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "OdstrániÅ¥ žiadateľa" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "Typ zobrazenia" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "OdpovedaÅ¥" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Adresa pre odpoveÄ" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "OdpovedaÅ¥ žiadateľom" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "OdpovedaÅ¥ na požiadavku" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Žiadateľ" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Žiadatelia" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "ResetovaÅ¥" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "VyrieÅ¡ený" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Výsledok" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Riadkov na stránku" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sob" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Sobota" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "UložiÅ¥" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Uložť zmeny" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "UložiÅ¥ predvoľby" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "UložiÅ¥ vyhľadávania" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Skripty" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "VyhľadaÅ¥" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Nastavenie vyhľadávania" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Vyhľadávanie Älánkov zodpovedajúce" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "VyhľadaÅ¥ Älánky" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Vyhľadávanie pre požiadavky" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "VybraÅ¥" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Vyberte triedu" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Vyberte vlastné pole" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "VybraÅ¥ skupinu" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Vyberte frontu pre VaÅ¡u novú požiadavku" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Vyberte viac hodnôt" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Vyberte jednu hodnotu" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Vyberte fronty, ktoré sa majú zobraziÅ¥ na hlavnej stránke RT" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Vybrané vlastné polia" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "OdoÅ¡le správu na žiadateľov" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Nastavenia" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "ZobraziÅ¥" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "ZobraziÅ¥ stĺpce" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "ZobraziÅ¥ výsledok" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "ZobraziÅ¥ vÅ¡etky citácie" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "ZobraziÅ¥ ako aj" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "ZobraziÅ¥ úplné hlaviÄky" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "ZobraziÅ¥ Äakajúce žiadosti" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "ZobraziÅ¥ citovaný text" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "SkartovaÄ" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Podpis" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Jednoduché vyhľadávanie" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "VeľkosÅ¥" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "PreskoÄiÅ¥ ponuku" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Malý" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "TriediÅ¥" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Triedenie" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Zdroj" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Tabuľkový" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Fáza" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "OdložiÅ¥" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "PoÄiatoÄný" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "ZaÄina" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Stav" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Å týl" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Predmet" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Predmet zmenený na %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "OdoslaÅ¥" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "OdoberaÅ¥" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "PrihlásiÅ¥ sa k odberu panelu %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "PrihlásiÅ¥ sa k odberu panelov" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Príspevok" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Príspevok nemôže byÅ¥ vytvorený: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Zhrnutie" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Ned" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Nedeľa" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "OdroÄený" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "" #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "PrevziaÅ¥" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Prevzaté požiadavky" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Prevzaté" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Å ablóna" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Å ablóny" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Å ablóny pre frontu %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Toto nie je Äíselné id" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Základné" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Nová hodnota bola nastavená." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Vlastník požiadavky" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Téma" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Å tv" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Å tvrtok" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Požiadavka" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Požiadavka #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Požiadavka %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "História požiadavky # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Požiadavka vyrieÅ¡ené" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Požiadavka a transakcia" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Obsah požiadavky" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Typ obsahu požiadavky" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Údaje požiadavky" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Požiadavky" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Požiadavky %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Požiadavky %1 podľa %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Moje požiadavky" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Požiadavky, ktoré závisia na tomto schválení" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Zostávajúci Äas" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "ÄŒas práce" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Nástroje" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Názov témy" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Téme nenájdená" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Témy" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Celkovo" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "Transakcia" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transakcia vytvorená" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Vlastné polia transakcie" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Uto" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Utorok" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Typ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Neznáma (táto hodnota je pre systém nová)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Požiadavky bez vlastníka" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Bez privilégií" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Nevybrané vlstné polia" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Neprevzané" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "AktualizovaÅ¥" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "AktualizovaÅ¥ graf" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "AktualizovaÅ¥ diagram" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "AktualizovaÅ¥ požiadavku" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Aktualizovanie typu" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "AktualizovaÅ¥ formát a vyhľadaÅ¥" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Hromadná aktualizácia požiadaviek" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "" #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "AktualizovaÅ¥ požiadavku" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "AktualizovaÅ¥ požiadavku #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "AktualizovaÅ¥ požiadavku #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "AktualizStatusu" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Aktualizované" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "NahraÅ¥" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "NahraÅ¥ nové logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Užívateľ" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Užívatľom definované" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Práva užívateľa" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "" #: lib/RT/User.pm:256 msgid "User created" msgstr "Užívateľ vytvorený" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Užívateľom definované skupiny" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Meno užív." #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Formát užív. mena" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Užívatelia" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Kontrola platnosti" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Hodnota" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Hodnoty" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Premenná" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Verzia" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Strážca" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Strážci" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Str" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Streda" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Týždene" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Týždený prehľad" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "ÄŒo som dnes robil" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:137 msgid "When anything happens" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Odpracované" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "ano" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Môžete prevziaÅ¥ len požiadavky bez vlastníka" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Nemôžete zmeniÅ¥ stav z '%1' na '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Boli ste odhlásený z RT" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "" #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Môžete zadaÅ¥ odkazy na Älánky ako \"a:###\", kde ### predstavuje Äíslo Älánku" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Musíte zadaÅ¥ administrátorské heslo" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Ste vítaní, pri ÄalÅ¡om prihlásení" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "VaÅ¡e heslo nie je nastavené" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "VaÅ¡e prihlasovacie meno alebo heslo nie je správne" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[žiaden]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "po" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "stĺpec" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "pred" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "telo" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "zdola hore" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "fajknutím pridaÅ¥" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "denne o %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "zmazané" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "neobsahuje" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "stiahnuÅ¥" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "=" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "každý" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "plný" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr ">" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "skupina" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "skupina '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "v triede %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "je" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "nie je" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "kÄ¾ÃºÄ zruÅ¡ený" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "zľava doprava" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "<" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "okrajový" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "obsahuje" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "maximálna hĺbka" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minút" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "upraviÅ¥ panel" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "zmeniÅ¥ svoje predvoľby" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "mesaÄne" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "mesaÄne (deň %1) do %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "nikdy" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "nový" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "nie" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "nikto" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "!=" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "niÄ" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "v" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "v deň" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "jeden" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "otvorený" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "otvoriÅ¥/zvrieÅ¥" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "iné..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "kláÄ" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "zásuvný modul vrátil prázny zoznam" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "fronta %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "zamietnuté" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "vyžaduje beh rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "vyrieÅ¡ený" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "sprava doľava" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "pozri nižšie uvedený zoznam objektov" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "pozastavené" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "vyhlásenie" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "súhrn riadkov" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "systém %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "systémová skupin %1" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "požiadavka #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "zhora dolu" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "koneÄný" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "nepopísaná skupina %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "bez obmedzenia" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "aktualizovaÅ¥ požiadavku" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "aktualizovaÅ¥ schválenie" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "aktualizovaÅ¥ Älánok" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "užívateľ" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "užívateľ %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "užívateľské meno" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "týždenný" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "týždenne (od %1) do %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "týžd." #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "na ktorom portebude váš webový server poÄúvaÅ¥, napr. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "s hlaviÄkami" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "Ãno" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "Váš prehliadaÄ neposkytol hlaviÄku Referer" rt-4.4.2/share/po/fa.po0000664000175000017500000131231313131430353014504 0ustar vagrantvagrant# Persian translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-08 23:10+0000\n" "Last-Translator: Alex Vandiver \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "شماره %1: %2" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "%1 شماره %2" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 اضاÙÙ‡ شد" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 به %3 تغییر ÛŒØ§ÙØª" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 حذ٠شد" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 حذ٠شد." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 ذخیره شد." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 به روز شد." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 با قالب %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) بوسیله %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (تغییر Ù†ÛŒØ§ÙØªÙ‡)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (از قاب %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - یک پارامتر ارسالی به %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - وضعیت خروجی در STDOUT روزآمد شد" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - مشخص کنید آیا شما 'اولین', 'آخرین' Ùˆ یا 'تمام' تبادل ها را Ù…ÛŒ خواهید" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - نام Ùˆ یا مشخصه قالب (-هایی) را Ú©Ù‡ Ù…ÛŒ خواهید Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید، مشخص نمایید" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - لیستی Ú©Ù‡ با کاما جدا شده اند از انواع تبادل هایی Ú©Ù‡ Ù…ÛŒ خواهید Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید، مشخص نمایید" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - ماژول شرطی دلخواه خود را مشخص نمایید" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - ماژول جستجوی دلخواه خود را مشخص نمایید" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 اضاÙÙ‡ شده به عنوان مقداری برای %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 در حال حاضر وجود دارد Ùˆ جداول سیستم پیگیری درخواست را در بر Ù…ÛŒ گیرد، اما شامل ÙØ±Ø§Ø¯Ø§Ø¯Ù‡ ÛŒ سیستم پیگیری درخواست نیست. قدم 'آماده سازی پایگاه داده' بعدا Ù…ÛŒ تواند این ÙØ±Ø§Ø¯Ø§Ø¯Ù‡ ها را وارد پایگاه داده موجود نماید. اگر این مورد قابل قبول است، برای ادامه اختصاصی سازی سیستم پیگیری درخواست، 'اختصاصی سازی پایه ای' را در زیر کلیک کنید." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 در حال حاضر وجود دارد Ùˆ جداول سیستم پیگیری درخواست را در بر Ù…ÛŒ گیرد، اما شامل ÙØ±Ø§Ø¯Ø§Ø¯Ù‡ ÛŒ سیستم پیگیری درخواست نیست. قدم 'آماده سازی پایگاه داده' بعدا Ù…ÛŒ تواند این ÙØ±Ø§Ø¯Ø§Ø¯Ù‡ ها را وارد پایگاه داده موجود نماید. اگر این مورد قابل قبول است، برای ادامه اختصاصی سازی سیستم پیگیری درخواست، 'اختصاصی سازی پایه ای' را در زیر کلیک کنید." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 ظاهرا یک Ø´ÛŒ محلی Ù…ÛŒ باشد،‌ولی در پایگاه داده قابل پیدا شدن نیست" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 ظاهرا کاملا آماده سازی شده است. ما نیازی به ایجاد هیچ جدول Ùˆ یا اضاÙÙ‡ نمودن ÙØ±Ø§Ø¯Ø§Ø¯Ù‡ ای نخواهیم داشت، اما شما Ù…ÛŒ توانید بوسیله کلیک کردن بر 'اختصاصی سازی پایه ای' زیر، به اختصاصی سازی سیستم پیگیری درخواست ادامه دهید" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 توسط %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 تغییر ÛŒØ§ÙØªÙ‡ از %2 به %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 تغییر ÛŒØ§ÙØªÙ‡ از '%2' به '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 Ú©Ù¾ÛŒ" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 پیکربندی هسته" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 نمی تواند به %2 تنظیم شود." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 ایجاد شد" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 حذ٠شد" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 غیر ÙØ¹Ø§Ù„ شد" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 وجود ندارد." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 ÙØ¹Ø§Ù„ شد" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 درخواست اولویت بالا با مسئولیت من" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 ابزاری برای انجام عملیات از طریق یک ابزار زمان بندی خارجی مانند cron‌ است." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 ابزاری است اجرا شونده از cronØŒ Ú©Ù‡ یادآوری های معوق سیستم پیگیری درخواست مانند اخبار هر کاربر را بروز Ù…ÛŒ کند." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 یک آدرس سیستم پیگیری درخواست هست Ú©Ù‡ نامه های الکترونیکی را Ø¯Ø±ÛŒØ§ÙØª Ù…ÛŒ کند. اضاÙÙ‡ کردن آن به عنوان '%2' یک چرخه نامه رسانی تولید Ù…ÛŒ کند" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 دیگر مقداری برای Ùیلد خاص %2 نیست" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 مقاله بروز شده اخیر" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 مقاله جدید" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 جدیدترین درخواست بدون مسئول" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 اشیا" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 پیکربندی سایت" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 بروزآوری: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 بروزآوری: چیزی تغییر نکرد" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 روزآمد شد" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "اشیاء %2 مربوط به %1" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "اشیاء %3 از %2 از %1" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "گذرواژه اخیر %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "داشبوردهای %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "جستجوهای ذخیره شده ÛŒ %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: هیچ ضمیمه ای مشخص نشده است" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1در خواست جدید در%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1ثانیه" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%1 مقاله" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%1 ساعت" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' نام معتبری نیست." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' مشخص کننده دسته معتبری نیست" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(برای کامل شدن انتخاب کنید)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(برای حذ٠انتخاب کنید)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(برای حذ٠موارد انتخاب کنید)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(شماره ها یا URL های درخواست Ú©Ù‡ با ÙØ§ØµÙ„Ù‡ جدا شده اند، را وارد کنید)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(اگر خالی رها شوند، بصورت پیش ÙØ±Ø¶ %1 خواهند بود)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(بدون Ùیلدهای خاص)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(بدون عضو)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(بدون اسکریپ)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(بدون قالب)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(یک Ú©Ù¾ÛŒ از این بروز رسانی به لیست جدا شده با کاما از آدرس ایمیل های مدیریتی، ارسال Ù…ÛŒ کند. این Ø§ÙØ±Ø§Ø¯ حتما در آینده بروز رسانی ها را Ø¯Ø±ÛŒØ§ÙØª خواهند کرد.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(یک Ú©Ù¾ÛŒ از این بروز رسانی به لیست جدا شده با کاما از آدرس ایمیل ها، ارسال Ù…ÛŒ کند. این Ø§ÙØ±Ø§Ø¯ حتما در آینده بروز رسانی ها را Ø¯Ø±ÛŒØ§ÙØª خواهند کرد.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(از این Ùیلد زمانی Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید Ú©Ù‡ برای شرط یا عمل 'تعری٠شده توسط کاربر' را انتخاب کرده باشید)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(هر کدام)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(بدون خلاصه)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(بدون نام)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(بدون کلید عمومی!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(بدون مقدار)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(بدون مقادیر)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "%1 درخواست دیگر در انتظار" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(در انتظار تایید)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(الزامی)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(مورد تایید: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(بدون عنوان)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(عدم مورد تایید)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "آرگومان--template-id نامناسب است Ùˆ نمی تواند با آرگومان --template Ø§Ø³ØªÙØ§Ø¯Ù‡ شود" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "آرگومان --transaction تنها Ù…ÛŒ تواند 'اولین'ØŒ 'آخرین' Ùˆ یا 'همه' باشد" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "یک قالب خالی" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "هیچ گذر واژه ای ثبت نشده است، بنابراین کاربر نمی تواند ورود کند." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE پیدا نشد" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACE ها تنها Ù…ÛŒ توانند تولید Ùˆ حذ٠شوند." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "Ùˆ" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "درباره من" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "کنترل دسترسی" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "عمل" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "عمل '%1' پیدا نشد" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "عمل انجام شد." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "عمل، آرگومان اجباری است" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "عمل آماده سازی شد..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "عملیات" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "درخواست های ÙØ¹Ø§Ù„" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "درخواست های ÙØ¹Ø§Ù„ برای %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Ø§ÙØ²ÙˆØ¯Ù† %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Ø§ÙØ²ÙˆØ¯Ù† رونوشت مدیریت" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Ø§ÙØ²ÙˆØ¯Ù† چوب خط" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Ø§ÙØ²ÙˆØ¯Ù† رونوشت" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Ø§ÙØ²ÙˆØ¯Ù† ستون ها" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Ø§ÙØ²ÙˆØ¯Ù† معیار" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Ø§ÙØ²ÙˆØ¯Ù† ÙØ§ÛŒÙ„ های بیشتر" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Ø§ÙØ²ÙˆØ¯Ù† درخواست کننده" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Ø§ÙØ²ÙˆØ¯Ù† مقدار" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Ø§ÙØ²ÙˆØ¯Ù† نظرات Ùˆ یا Ù¾â€Ø§Ø³Ø® هایی به درخواست های انتخاب شده" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Ø§ÙØ²ÙˆØ¯Ù† گروه" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Ø§ÙØ²ÙˆØ¯Ù† به اینجا" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Ø§ÙØ²ÙˆØ¯Ù† اعضا" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Ø§ÙØ²ÙˆØ¯Ù† ناظرین جدید" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Ø§ÙØ²ÙˆØ¯Ù† قوانینی برای این %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Ø§ÙØ²ÙˆØ¯Ù† این عبارات" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Ø§ÙØ²ÙˆØ¯Ù† این عبارات Ùˆ جستجو" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Ø§ÙØ²ÙˆØ¯Ù† کاربر" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Ø§ÙØ²ÙˆØ¯Ù† مقادیر" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Ø§ÙØ²ÙˆØ¯Ù† ØŒ تغییر Ùˆ حذ٠مقادیر Ùیلد های خاص برای اشیا" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "آدرس" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "آدرس Û²" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "آدرس Û±" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "آدرس Û²" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "رونوشت مدیریتی" #: etc/initialdata:410 msgid "Admin Comment" msgstr "توضیح مدیریتی" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "مکاتبه مدیریتی" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "ص٠های مدیریتی" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "پیکربندی سراسری / مدیر" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "گروه رونوشت مدیریتی" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "رونوشت مدیریتی" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "رونوشت های مدیریتی" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "گذرواژه مدیریت" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Ù¾ÛŒØ´Ø±ÙØªÙ‡" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "جستجوی Ù¾ÛŒØ´Ø±ÙØªÙ‡" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "بعد از ورود به سیستم، شما به مقصد اولیه تان ÙØ±Ø³ØªØ§Ø¯Ù‡ Ù…ÛŒ شوید:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "گردآورنده" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "تمام تاییدیه ها تصویب شدند" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "تمامی مقالات این دسته باید در یک ØµÙØ­Ù‡ پاسخ درخواست بالا به پایین Ùهرست شوند" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "تمام دسته ها" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "تمام داشبوردها" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "تمام ص٠ها" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "تمام درخواست ها" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "" #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "تمامی ص٠های مطابق با معیار های جستجو" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "تمام درخواست ها" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "تمام موضوعات" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "اجازه ایجاد جستجو های ذخیره شده" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "اجازه بارگذاری جستجوهای ذخیره شده" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "اجازه نوشتن کد پرل در قالب ها، اسکریپ ها، Ùˆ غیره" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "رمز شده" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Ùˆ / یا" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "سالانه" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "هر Ùیلد" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "تمامی کلماتی Ú©Ù‡ توسط سیستم پیگیری درخواست شناخته شده نیستند، در موضوعات درخواست ها جستجو شدند." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "اعمال شده به" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "اعمال شده به تمام اشیاء" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "اعمال" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "اعمال سراسری" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "اعمال تغییرات شما" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "تاییدیه" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "تاییدیه شماره %1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "تاییدیه شماره %1: یادداشت ها به دلیل یک خطای سیستمی ذخیره نشدند" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "تاییدیه شماره %1: یادداشت ها ذخیره شدند" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "تایید انجام شد" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "تاییدیه برای مسئول آن آماده است" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "تاییدیه رد شد" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "تایید" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "آوریل" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "مقاله شماره %1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "مقاله %1 ایجاد شد" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "مدیریت مقالات" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "مقاله پیدا نشد" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "مقالات" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "مقالات در %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "مقالات شبیه %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "مقالات بدون عنوان" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "صعودی" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "اختصاص Ùˆ حذ٠Ùیلدهای خاص صÙ" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "ضمیمه کردن" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "ضمیمه ÙØ§ÛŒÙ„" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "ÙØ§Ø¨Ù„ ضمیمه شده" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "ضمیمه" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "بارگذاری ضمیمه '%1' امکان ندارد" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "ضمیمه ایجاد شد" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "نام ÙØ§ÛŒÙ„ ضمیمه شده" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "ضمایم" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "رمز گذاری ضمایم غیر ÙØ¹Ø§Ù„ است" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "خاصیت حذ٠شد" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "به صورت خودکار رنگ تم برای تصویر شما در دسترس نیست. این ممکن به دلیل آپلود یک نوع تصویر است Ú©Ù‡ نسخه نصب شده GD از آن پشتیبانی نمی کند. انواع قابل پشتیبانی عبارتند از: %1. شما Ù…ÛŒ توانید libgd Ùˆ GD.pm رل برای پشتیبانی از دیگر انواع تصویر کامپایل مجدد نمایید." #: etc/initialdata:261 msgid "Autoreply" msgstr "پاسخ خودکار" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "پاسخ خودکار به درخواست کننده گان" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "موجود" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "قبلی" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "مشکل حریم برای خاصیت %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "مبانی" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "رونوشت مخÙÛŒ" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "خالی" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "بدنه" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "پر رنگ" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "چوب خط" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "پیوند قابل چوب خط برای این جستجو" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "درخواست های چوب خط گذاری شده" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "درخواست های چوب خط گذاری شده" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "مرور برحسب عنوان" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "مرور پرس Ùˆ جو های SQL ایجاد شده در این ÙØ±Ø¢ÛŒÙ†Ø¯" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "بروز رسانی دسته جمعی" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "گروه رونوشت" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "Ùیلد خاص" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "همه Ùیلدهای خاص ممکن است با ساختار مشابه بالا بوسیله %1 جستجو شوند." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "بارگذاری جستجوی ذخیره شده \"%1\" امکان ندارد" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "اصلاح کاربران سیستم امکان ندارد" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "اضاÙÙ‡ نمودن یک مقدار Ùیلد خاص بدون نام امکان ندارد" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "ÛŒØ§ÙØªÙ† جستجوی ذخیره شده برای انجام عمل امکان ندارد" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "پیوند یک درخواست به خودش امکان ندارد" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "ذخیره %1 مکان ندارد" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "امکان ذخیره این جستجو وجود ندارد" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "اضاÙÙ‡ نمودن پیوند به عدد خالی امکان ندارد" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "ایجاد درخواست در یک ص٠غیر ÙØ¹Ø§Ù„ شده امکان ندارد." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "اساس دسته بندی ها هست بر" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "دسته بندی" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "رونوشت" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "رونوشتها" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "تغییر" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "تغییر درخواست تاییدیه به حالت باز" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "تغییر گذرواژه" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "چارت" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "انتخاب همه" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "اتصال با پایگاه داده را بررسی کنید" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "بررسی اعتبار پایگاه داده" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "برای حذ٠انتخاب کنید" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "ÙØ±Ø²Ù†Ø¯Ø§Ù†" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "انتخاب موتور پایگاه داده" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "انتخاب از موضوعات برای %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "شهر" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "دسته" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "نام دسته" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "دسته نمی تواند ایجاد شود: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "شماره دسته" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "دسته قبلا†بصورت سراسری اعمال شده است" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "قبلا دسته به %1 اعمال شده است" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "دسته ها" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "پاک کردن" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "پاک کردن همه" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "برای اتمام این ویزارد \"اتمام نصب\" را کلیلک نمایید." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "بسته شده" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "درخواست های بسته شده" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "چند گزینه ای: انتخاب یا ورود چندین مقدار" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "چند گزینه ای: انتخاب یا ورود یک مقدار" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "توضیح" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "آدرس توضیح" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "آدرس برای ارسال توضیح" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "توضیح به درخواست ها" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "توضیحات" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "توضیحات (ارسال نشده به درخواست کنندگان)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "توضیحات مربوط به این کاربر" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "توضیحات اضاÙÙ‡ شد" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "شرط" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "شرط '%1' پیدا نشد" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "شرط، آرگومان اجباری است" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "شرط مطابق است با..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "شرط، عمل Ùˆ قالب" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "ÙØ§ÛŒÙ„ پیکربندی %1 Ù‚ÙÙ„ شده است" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "پیکربندی برای ص٠%1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "اتصال موÙÙ‚" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "محتوا" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "محتوا یک آدرس IP نامعتبر است" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "محتوا یک طی٠آدرس IP نامعتبر است" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "نوع محتوا" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "نوع محتوا" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "آدرس متناظر" #: etc/initialdata:393 msgid "Correspondence" msgstr "تناظر" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "پارا٠اضاÙÙ‡ شد" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "اضاÙÙ‡ کردن مقدار جدید Ùیلد خاص امکان ندارد: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "تغییر مسئول امکان ندارد: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "ساخت Ùیلد خاص امکان ندارد: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "ساخت گروه امکان ندارد" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "ایجاد جستجو امکان ندارد: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "ایجاد درخواست امکان ندارد. ص٠مشخص نشده است" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "ساخت کاربر امکان ندارد" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "حذ٠جستجوی %1 امکان ندارد: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "بارگذاری خصلت %1 امکان ندارد" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "بارگذاری دسته %1 امکان ندارد" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "بارگذاری Ùیلد خاص امکان ندارد: %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "بارگذاری گروه امکان ندارد" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "بارگذاری شئ برای %1 امکان ندارد" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "تنظیم اطلاعات کاربر امکان ندارد" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "اضاÙÙ‡ کردن ضمیمه امکان ندارد" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "اضاÙÙ‡ کردن عضو به گروه امکان ندارد" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "پردازش %1 بلوک کد '%2' امکان ندارد: %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "ایجاد یک تبادل امکان ندارد: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "ایجاد رکورد امکان ندارد: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "حذ٠داشبورد %1 امکان ندارد:%2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "پیدا کردن سطر امکان ندارد" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "ÛŒØ§ÙØªÙ† تبادل مناسب امکان ندارد، صر٠نظر" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "پیدا کردن آن ÙØ±Ø¯ امکان ندارد" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "پیدا کردن مقدار امکان ندارد" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "بارگذاری دسته %1 امکان ندارد" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "بارگذاری Ùیلد خاص شماره %1 امکان ندارد" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "بارگذاری Ùیلد خاص شماره %1 امکان ندارد" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "بارگذاری Ùیلد خاص %1 امکان ندارد" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "بارگذاری یک Ú©Ù¾ÛŒ از درخواست شماره %1 امکان ندارد." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "بارگذاری داشبورد %1 امکان ندارد:%2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "بارگذاری گروه شماره %1 امکان ندارد" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "بارگذاری گروه %1 امکان ندارد" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "بارگذاری پیوند امکان ندارد" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "بارگذاری شئ %1 امکان ندارد" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "بارگذاری Ùˆ یا ایجاد کاربر امکان ندارد: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "بارگذاری ص٠امکان ندارد" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "بارگذاری ص٠شماره %1 امکان ندارد" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "بارگذاری ص٠%1 امکان ندارد" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "بارگذاری ص٠'%1' امکان ندارد" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "بارگذاری اسکریپ شماره %1 امکان ندارد" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "بارگذاری قالب شماره %1 امکان ندارد" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "بارگذاری ÙØ±Ø¯ معین شده امکان ندارد" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "بارگذاری درخواست '%1' امکان ندارد" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "بارگذاری عضویت عنوان در حال حذ٠آن، امکان ندارد." #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "بارگذاری تبادل شماره %1 امکان ندارد" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "بارگذاری کاربر امکان ندارد" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "بارگذاری کاربر شماره %1 امکان ندارد" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "بارگذاری کاربر شماره %1 یا '%2' امکان ندارد" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "بارگذاری کاربر '%1' امکان ندارد" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "تعبیر '%1' پایه به عنوان یک URI امکان ندارد." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "تعبیر '%1' هد٠به عنوان یک URI امکان ندارد." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "تنظیم ناظر %1 امکان ندارد: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "تنظیم کلید خصوصی امکان ندارد" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "عدم تنظیم کلید خصوصی امکان ندارد" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "کشور" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "ایجاد" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "ایجاد درخواست ها" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "ایجاد یک دسته" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "ایجاد یک Ùیلد خاص" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "ساخت Ùیلد خاص برای ص٠%1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "ایجاد یک مقاله جدید" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "ایجاد یک مقاله جدید در" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "ایجاد یک داشبورد جدید" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "ایجاد یک گروه جدید" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "ایجاد یک قالب جدید برای ص٠%1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "ایجاد یک کاربر جدید" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "ایجاد یک صÙ" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "ایجاد یک قالب" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "ایجاد یک درخواست" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "ایجاد یک مقاله" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "ایجاد یک مقاله جدید در دسته..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "ایجاد مقالات در این دسته" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "ایجاد داشبوردهای گروه" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "ایجاد درخواست های جدید بر پایه این قالب اسکریپ" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "ایجاد داشبوردهای شخصی" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "ایجاد داشبوردهای سیستم" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "ایجاد درخواست" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "ایجاد درخواست ها" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "ایجاد، اصلاح Ùˆ حذ٠ورودی های لیست کنترل دسترسی" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "ایجاد، تغییر Ùˆ حذ٠Ùیلد های خاص" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "ایجاد، تغییر Ùˆ حذ٠مقادیر Ùیلد های خاص" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "ایجاد، تغییر Ùˆ حذ٠صÙ" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "ایجاد، تغییر Ùˆ حذ٠جستجو های ذخیره شده" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "ایجاد، تغییر Ùˆ حذ٠کاربران" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "ایجاد شده" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "ایجاد شده توسط" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "ایجاد Ùیلد خاص %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "ایجاد شده توسط" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "جست‌وجوی ایجاد شده %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "ایجاد شده توسط" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "ایجاد شده نسبی" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "ایجاد کننده" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "رمزنگاری" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "پیوندهای اخیر" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "جست‌وجوی اخیر" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "اعضای اخیر" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "جست‌وجوی اخیر" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "ناظران اخیر" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Ùیلدهای خاص" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Ùیلدهای خاص برای %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Ùیلدهای خاص برای ص٠%1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "کد آماده سازی عمل خاص" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "شرط مخصوص" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Ùیلد خاص شماره %1 قابل اعمال به این شئ نیست" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Ùیلد خاص %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Ùیلد خاص %1 به این شئ اعمال نمی شود" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Ùیلد خاص %1 دارای مقدار است." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Ùیلد خاص %1 بدون مقدار است." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Ùیلد خاص '%1' پیدا نشد" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "پیدا شدن مقدار Ùیلد خاص %1 برای Ùیلد خاص %2‌ امکان ندارد" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "حذ٠مقدار Ùیلد خاص امکان ندارد" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "مقدار Ùیلد خاص حذ٠شده" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Ùیلد خاص" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "مقدار Ùیلد خاص" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Ø³ÙØ§Ø±Ø´ÛŒ سازی" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "مبانی Ø³ÙØ§Ø±Ø´ÛŒ سازی" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Ø³ÙØ§Ø±Ø´ÛŒ کردن آدرس های ایمیل" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "پیکربندی آدرس های ایمیل" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Ø³ÙØ§Ø±Ø´ÛŒ سازی نمای سیستم پیگیری درخواست شما" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "گذرواژه DBA" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "نام کاربری DBA" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "روزانه" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "خلاصه روزانه" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "داشبورد" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "داشبورد نمی تواند ایجاد شود: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "داشبورد نمی تواند بروزآوری شود: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "داشبورد روزآمد شد" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "داشبوردها" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "میزبان پایگاه داده" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "نام پایگاه داده" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "گذرواژه پایگاه داده برای سیستم پیگیری درخواست" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "پورت پایگاه داده" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "نوع پایگاه داده" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "نام کاربری پایگاه داده برای سیستم پیگیری درخواست" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "قالب تاریخ" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "تاریخها" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "رمزگشایی" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "ص٠پیش ÙØ±Ø¶" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Ù¾ÛŒØ´â€ŒÙØ±Ø¶: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "پیش ÙØ±Ø¶: %1/%2 تغییر ÛŒØ§ÙØªÙ‡ از %3 به %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "قالب Ù¾ÛŒØ´ÙØ±Ø¶" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "حذÙ" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "حذ٠قالب" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "حذ٠انجام نشد: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "حذ٠داشبوردهای گروه" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "عملیات حذ٠توسط پیکربندی چرخه حیات غیر ÙØ¹Ø§Ù„ شده است" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "حذ٠داشبوردهای شخصی" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "حذ٠داشبوردهای سیستم" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "حذ٠درخواست ها" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "حذ٠مقادیر" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "حذ٠شد %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "پرس Ùˆ جو های حذ٠شده" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "جست‌وجوی ذخیره شده حذ٠شده" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "جست‌وجو %1 حذ٠شده" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "حذ٠این شئ یکپارچگی ارجاعات را از بین Ù…ÛŒ برد" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "حذ٠این شئ یکپارچگی ارجاعات را از مختل Ù…ÛŒ سازد" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "تکذیب" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "پیشنیاز" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "پیشنیاز" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "وابستگی بوسیله %1 اضاÙÙ‡ شد" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "وابستگی بوسیله %1 حذ٠شد" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "وابستگی به %1 اضاÙÙ‡ شد" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "وابستگی به %1 حذ٠شد" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "وابستگی به" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "وابسته است به" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "وابسته است به" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "نزولی" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "موضوع ذیل را توصی٠کنید" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "توصیÙ" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "اطلاعات دقیق تر از نصب سیستم پیگیری درخواست های شما" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "جزئیات ‌" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "جهت" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "غیر ÙØ¹Ø§Ù„ شده" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "نمایش" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "نمایش لیست کنترل دسترسی" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "نمایش مقاله %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "نمایش ستون" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "توزیع شده تحت %1 نسخه Û² از GNU GPL %2." #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "انجام همه کارâ€" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "نام دامنه" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "ØµÙØ­Ù‡ خانگی را تجدید نکنید." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "نتایج جستجو را تجدید نکنید." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "این ØµÙØ­Ù‡ را تجدید نکنید." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "هیچ وقت به این کلید اعتماد نکنید" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "بارگیری" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "بارگذاری ÙØ§ÛŒÙ„ رونوشت" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "پایین Ø§ÙØªØ§Ø¯Ù†ÛŒ" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "مهلت" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "مهلت نسبی" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "خطا: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "بروزرسانی ساده درخواست های باز شما" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "مشاهده ساده یادآوری های شما" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "ویرایش" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "ویرایش Ùیلدهای خاص" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "ویرایش Ùیلدهای خاص برای %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "ویرایش Ùیلدهای خاص برای تمام گروهها" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "ویرایش Ùیلدهای خاص برای تمام صÙها" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "ویرایش Ùیلدهای خاص برای تمام کاربران" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "ویرایش Ùیلدهای خاص برای مقالات در تمام دسته ها" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "ویرایش Ùیلدهای خاص برای درخواست ها در تمام صÙها" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "ویرایش پیوندها" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "ویرایش پرس Ùˆ جو" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "ویرایش جست‌وجو" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "ویرایش سلسله مراتب موضوعات سراسری" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "ویرایش قالب های سیستم" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "ویرایش سلسله مراتب موضوع برای %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "ویرایش Ùیلد خاص %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "ویرایش عضویت برای گروه %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "پایه یا هد٠باید مشخص شوند" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "یا شما دسترسی مشاهده جستجوی ذخیره شده %1 را ندارید Ùˆ یا شناسه نادرست است" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "ایمیل" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "نشانی ایمیل" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "خلاصه ایمیل" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "آدرس ایمیل مورد Ø§Ø³ØªÙØ§Ø¯Ù‡" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "قبض تحویل ایمیل" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "قالب ایمیل برای اطلاع رسانی های دوره ای" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "ÙØ¹Ø§Ù„ شد" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "ÙØ¹Ø§Ù„ شده (حذ٠این گزینه، این دسته را غیر ÙØ¹Ø§Ù„ Ù…ÛŒ کند)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "ÙØ¹Ø§Ù„ شده (حذ٠این گزینه، این Ùیلد خاص را غیر ÙØ¹Ø§Ù„ Ù…ÛŒ کند)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "ÙØ¹Ø§Ù„ شده (حذ٠این گزینه، این گروه را غیر ÙØ¹Ø§Ù„ Ù…ÛŒ کند)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "ÙØ¹Ø§Ù„ شده (حذ٠این گزینه، این ص٠را غیر ÙØ¹Ø§Ù„ Ù…ÛŒ کند)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "دسته های ÙØ¹Ø§Ù„ شده" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "ص٠های ÙØ¹Ø§Ù„ شده" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "تمامی ص٠های ÙØ¹Ø§Ù„ شده مطابق با معیار های جستجو" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "وضعیت ÙØ¹Ø§Ù„ شده %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "رمزنگاری" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "رمزگذاری بصورت پیش ÙØ±Ø¶" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "رمزگذاری/رمزگشایی" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "رمزگذاری/رمزگشایی تبادل شماره %1 از درخواست شماره %2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "مقالات، درخواست ها Ùˆ یا URL های دیگر مربوط به این مقاله را وارد کنید." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "ورود چندین طی٠آدرس IP" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "ورود چندین آدرس IP" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "ورود چندین مقدار" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "چندین مقدار بصورت خود اتمام وارد کنید" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "اشیا یا URI ها برای پیوند دهی اشیا به آنها را وارد کنید." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "ورود یک آدرس IP" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "ورود یک طی٠آدرس IP" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "ورود یک مقدار" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "یک مقدار بصورت خود اتمام وارد کنید" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "ص٠ها یا URI ها، برای پیوند دهی صÙها به آنها را وارد کنید. چند ورودی را بوسیله ÙØ§ØµÙ„Ù‡ از هم جدا کنید." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "برای پیوند درخواستها به دیگری، شماره Ùˆ یا URI آنها را وارد نمایید. چندین ورودی را با ÙØ§ØµÙ„Ù‡ از هم جدا کنید." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "ورود زمان به ساعت بصورت پیش ÙØ±Ø¶" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "با وارد کردن %1 (اولبه)ØŒ %2 (ÙØ¹Ø§Ù„)ØŒ %3 (ØºÛŒØ±ÙØ¹Ø§Ù„) یا %4 (همه) ،نتایج جستجو را به یکی از انواع حالات درخواست های متناظر محدود کنید. هر نام حالت، نتایج را به همان حالت های نام گذاری شده محدود Ù…ÛŒ کند." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "خطا" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "خطا: عدم وجود داشبورد" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "خطا: دادخ GnuPG بد" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "خطا: بارگذاری جستجوی ذخیره شده %1 امکان ندارد: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "خطا: بدون کلید خصوصی" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "خطا: کلید عمومی" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "خطا: جستجوی %1 روزآمد نشده: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Ø§ÙØ²Ø§ÛŒØ´ درخواست ها" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "تخمینی" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "همه کس" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "مثال:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "انقضا" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "وضعیت مشروح" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "اعتبارسنجی خارجی ÙØ¹Ø§Ù„ شد." #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "اطلاعات بیشتر" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "استخراج مقاله" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "استخراج برچسب موضوع" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "استخراج یک مقاله جدید از درخواست شماره %1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "استخراج مقاله از درخواست شماره %1 داخل دسته %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "استخراج تگ ها از یک موضوع تبادل اضاÙÙ‡ نمودن آنها به موضوع درخواست." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "ناموÙÙ‚ در اتصال به پایگاه داده: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "ناموÙÙ‚ در ایجاد خاصیت %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "ناموÙÙ‚ در بارگذاری %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "ناموÙÙ‚ در بارگذاری %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "ناموÙÙ‚ در بارگذاری ماژول %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "ناموÙÙ‚ در بارگذاری شئ برای %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "ناموÙÙ‚ در بارگذاری rhgf" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "ناموÙÙ‚ در پردازش قالب" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "خبر خوان ها" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Ùیلد" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "منبع مقادیر Ùیلد:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "نام ÙØ§ÛŒÙ„" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "آرگومان ها را پر کنید" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "بوسیله رنگ جعبه ها را پر کنید با Ø§Ø³ØªÙØ§Ø¯Ù‡ از" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "چندین منطقه متنی را پر Ú©Ù†" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "چندین منطقه متنی ویکی را پر کنید" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "یک منطقه متنی را پر کنید" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "یک منطقه متنی ویکی را پر کنید" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "این Ùیلد را با یک URL پر کنید." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "اولویت نهایی" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "اولویت نهایی" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "ÛŒØ§ÙØªÙ† تمام کاربرانی Ú©Ù‡" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "ÛŒØ§ÙØª گروه های" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "ÛŒØ§ÙØª Ø§ÙØ±Ø§Ø¯ÛŒ" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "ÛŒØ§ÙØª درخواست ها" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "اثر انگشت" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "پایان" #: share/html/Elements/Tabs:878 msgid "First" msgstr "اولین" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "برای Ø§Ø³ØªÙØ§Ø¯Ù‡ از تمام توان جستجو های سیستم پشتیبانی درخواست، Ù„Ø·ÙØ§ %1واسط جستجو ساز%2 را مشاهده کنید." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "اجبار به تغییر" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "قالب" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "ارجاع" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "ارجاع پیام" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "ارجاع پیغام Ùˆ بازگشت" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "ارجاع درخواست" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "ارجاع پیغام بیرون از سیستم پیگیری درخواست" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "ارجاع درخواست شماره %1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "ارجاع تبادل شماره %1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "ارجاع درخواست به %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "%1 درخواست پیدا شد" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "شئ پیدا شد" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "تکرار زمانی" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "جمعه" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "جمعه" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "از" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "عمومی" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "دسترسی های عمومی" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "شروع کار" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "دادن مسئولیت به %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "سراسری" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "خصوصیات سراسری" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "موضوعات سراسری" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "پیکربندی Ùیلدهای خاص سراسری" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "پورتلت سراسری %1 ذخیره شد." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "برو" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Ø±ÙØªÙ† به گروه" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Ø±ÙØªÙ† به کاربر" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "برو!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Ø±ÙØªÙ† به درخواست" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Ø±ÙØªÙ† به درخواست" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "نگاره" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "مشخصات نگاره" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "چارت های گراÙیکی در دسترس نیستند." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "گروه" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "دسترسی های گروه" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "در حال حاضر گروه دارای عضو است: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "گروه نمی تواند ایجاد شود: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "گروه ایجاد شده" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "گروه غیر ÙØ¹Ø§Ù„ شده" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "گروه ÙØ¹Ø§Ù„ شده" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "گروه شامل چنان عضوی نیست" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "نام گروه '%1' قبلا Ø§Ø³ØªÙØ§Ø¯Ù‡ شده" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "گروه پیدا نشد" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "گروه ها" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "عضو بودن گروه ها در اعضایشان امکان ندارد" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "تمامی گروه های مطابق با معیار های جستجو" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "گروه هایی Ú©Ù‡ این کاربر عضو آنهاست" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "دارای عضو" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "سرآمد یک درخواست ارجاع شده" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "سرآمد یک پیغام ارجاع شده" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "سلام!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Ø§Ø®ØªÙØ§ÛŒ تمام متن نقل شده" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "عدم نمایش متن نقل قول شده" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "تاریخچه‌" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "تاریخچه برای مقاله شماره %1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "تاریخچه برای گروه %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "تاریخچه برای ص٠%1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "تاریخچه برای کاربر %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "تلÙÙ† منزل" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "بازه تجدید ØµÙØ­Ù‡ خانگی" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "ØµÙØ­Ù‡ اصلی" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "ساعت" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "ساعتی" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "ساعت" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "من دارم %quant(%1,concrete mixer)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "شماره" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "هویت" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "اگر یک تاییدیه رد شد،‌ اصلی را رد کرده Ùˆ تاییدیه های در حال انتظار را نیز حذ٠کنید" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "اگر این ØµÙØ­Ù‡ چیزی نیست Ú©Ù‡ انتظارش را داشتید، بدون ورود به سیستم آن را رها کنید." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "درصورت انجام تغییراتی، حتما انجام دهید" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "مقدار نامعتبر برای %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Ùیلد تغییرناپذیر" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "درخواست های غیر ÙØ¹Ø§Ù„" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "شامل مقاله:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "شمول رده های غیر ÙØ¹Ø§Ù„ در Ùهرست" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "شمول Ùیلد های خاص در Ùهرست" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "شمول گروه های غیر ÙØ¹Ø§Ù„ در Ùهرست." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "شمول ص٠های غیر ÙØ¹Ø§Ù„ در Ùهرست." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "شمول کاربران غیر ÙØ¹Ø§Ù„ در جستجو." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "شامل ØµÙØ­Ù‡:" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "شامل زیر موضوع:" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "پیغام های شخصی" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "اطلاع رسانی به کاربر مبنی بر بازنشانی گذرواژه اش" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "اولویت اولیه" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "اولویت اولیه" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "آماده سازی اولیه پایگاه داده" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "خطای ورودی" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "ورودی باید با %1 تطابق داشته باشد." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "خطای درونی: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "خطای درونی: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "%1 نامعتبر" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "آرگومان %1 نامعتبر" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "%1 نامعتبر: '%2\" شبیه یک آدرس ایمیل نیست" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "%1 نامعتبر: باید یک عدد باشد" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "دسته نامعتبر" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "منبع مقادیر Ùیلد خاص نامعتبر" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "ص٠نامعتبر، غیر قابل اعمال به دسته: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "نوع پردازش نامعتبر" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "داده نامعتبر" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "کلید نامعتبر %1 برای آدرس '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "شئ نامعتبر" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "الگوی نامعتبر: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "ص٠نامعتبر" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "دسترسی نامعتبر" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "ساختار نامعتبر برای آدرس ایمیل" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "مقدار نامعتبر برای %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "مقدار نامعتبر برای Ùیلد خاص" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "رمزنگاری نشده" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "" #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "چندین آرگومان دارد:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "خوابیده" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "عضویت یا ترک گروه" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "در یک نگاه" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "جستجوی مبتنی بر کلید واژه Ùˆ شهودی" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "زبان" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "بزرگ" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "آخرین" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "آخرین تماس" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "آخرین تماس Ú¯Ø±ÙØªÙ‡" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "آخرین بروز شده" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "آخرین بروز رسانی توسط" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "آخرین بروز شده" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "آخرین بروز رسانی توسط" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "آخرین بروزرسانی" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "آخرین بروز رسانی توسط" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "آخرین بروز رسانی نسبی" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "خالی رها کنید تا مقدار پیش ÙØ±Ø¶ برای پایگاه داده شما Ø§Ø³ØªÙØ§Ø¯Ù‡ شود" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "باقیمانده" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "راهنما" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "اجازه جهت دسترسی این کاربر به سیستم پیگیری درخواست" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "اجازه جهت واگذاری دسترسی ها به این کاربر" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "بزن بریم!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "چرخه حیات" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "پیوند" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "پیوند از قبل وجود دارد" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "پیوند پیدا نشد" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "پیوند درخواست شماره %1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "پیوند مقادیر به" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "پیوند داده شده" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "پیوند داده شده از" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "پیوند داده شده به" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "پیوندها" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "لیست" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "بارگذاری" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "بارگذاری یک جست‌وجوی ذخیره شده" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "بارگذاری جست‌وجوی ذخیره شده" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "بارگذاری جست‌وجوی ذخیره شده:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "بارگذاری شده %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "بارگذاری جستجوی ذخیره شده \"%1\" اصلی" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "ماژول پرل بارگذاری شده" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "بارگذاری جست‌وجوی ذخیره شده \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "بارگذاری..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "محل" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "ساعت / تاریخ محلی شده" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "محل" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "وارد شده" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "وارد شده به عنوان %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "خارج شده شده" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "ورود" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "متن جایگزین لوگو" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "خروج" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "جستجوی عدم انطباق نوع" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "نامه" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "نوع اصلی پیوندها" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "ایجاد مسئول" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "ایجاد وضعیت" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "ایجاد تاریخ مهلت" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "ایجاد تاریخ آغاز" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "تاریخ ساخت آغاز Ù…ÛŒ شود" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "ایجاد تاریخ Ú¯ÙØªÙ‡ شده" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "ایجاد اولویت" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "ایجاد صÙ" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "ایجاد موضوع" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "مدیریت Ùیلد های خاص Ùˆ مقادیر Ùیلد های خاص" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "مدیریت گروهها Ùˆ عضویت آنها" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "مدیریت مشخصات Ùˆ پیکربندی هایی Ú©Ù‡ به همه ص٠ها اعمال Ù…ÛŒ شوند" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "مدیریت ص٠ها Ùˆ مشخصات ص٠ها" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "مدیریت نگاره های ذخیره شده" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "مدیریت کاربران Ùˆ گذرواژه ها" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "علامت گذاری تمام پیغام ها بصورتی Ú©Ù‡ دیده Ù…ÛŒ شوند" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "ترتیب جستجوی قالب Mason" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "مقادیر حداکثر" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "حداکثر طول پیغام تک خطی" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "من" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "عضو" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "عضو %1 اضاÙÙ‡ شد" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "عضو %1 حذ٠شد" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "عضو اضاÙÙ‡ شد: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "عضو حذ٠شد" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "عضو حذ٠نشد" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "عضو" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "اعضا" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "عضویت در %1 اضاÙÙ‡ شد" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "عضویت در %1 حذ٠شد" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "عضویت" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "عضویت کاربر %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "ادغام موÙÙ‚" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "شکست ادغام. تنظیم شماره موثر امکان ندارد" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "ادغام به" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "ادغام به %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "پیغام" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "متن پیغام به دلیل طولانی بودن آن نشان داده نمی شود." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "متن پیغام به دلیل اینکه ÙØ±Ø³ØªÙ†Ø¯Ù‡ خواسته، نشان داده نمی شود." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "متن پیغام به دلیل اینکه متن خالی نیست، نشان داده نمی شود." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "طول جعبه پیغام" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "عرض جعبه پیغام" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "ثبت پیغام امکان ندارد" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "پیغام برای کاربر" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "پیغام ها ذخیره شدند" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "حداقلطول گذرواژه" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "دقیقه" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "گوناگون" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "عدم وجود یک کلید اولیه؟: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "موبایل" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "تلÙÙ† همراه" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "اصلاح" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "اصلاح اعضا" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "اصلاح قالب های اسکریپ" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "اصلاح اسکریپ ها" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "اصلاح یک Ùیلد خاص برای ص٠%1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "تغییر Ùˆ ایجاد دسته ها" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "تغییر Ùˆ ایجاد Ùیلد های خاص برای مقالات" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "اصلاح مقاله شماره %1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "اصلاح اشیاء مربوط برای %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "اصلاح مقادیر Ùیلدهای خاص" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "اصلاح تاریخ ها برای درخواست شماره %1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "اصلاح عناوین مقالات سراسری" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "اصلاح Ùیلدهای خاص سراسری" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "اصلاح دسترسی های گروه سراسری" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "اصلاح موضوعات سراسری" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "اصلاح دسترسی های کاربر سراسری" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "اصلاح داشبوردهای گروه سراسری" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "اصلاح لیست عضویت گروه" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "اصلاح ÙØ±Ø§Ø¯Ø§Ø¯Ù‡ گروه یا حذ٠گروه" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "اصلاح دسترسی های گروه برای دسته %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "اصلاح دسترسی های گروه برای Ùیلد خاص %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "اصلاح دسترسی های گروه برای گروه %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "اصلاح دسترسی های گروه برای ص٠%1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "اصلاح ÙØ±Ø§Ø¯Ø§Ø¯Ù‡ Ùˆ Ùیلدهای خاص برای این دسته" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "اصلاح حساب کاربری سیستم پیگیری درخواست خود شخص" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "تغییر Ø§ÙØ±Ø§Ø¯ مربوط به درخواست شماره%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "اصلاح داشبوردهای شخصی" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "اصلاح ناظرین صÙ" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "اصلاح اسکریپ برای ص٠%1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "اصلاح اسکریپهای قابل اعمال به همه ص٠ها" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "اصلاح داشبوردهای سیستم" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "اصلاح قالب %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "اصلاح قالب %1 برای ص٠%2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "اصلاح قالب های قابل اعمال به همه ص٠ها" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "اصلاح دسته %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "اصلاح محتویات داشبورد %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "اصلاح داشبورد %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "تغییر نمای پیش ÙØ±Ø¶ \"سیستم پیگیری درخواست در یک نگاه\"" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "اصلاح گروه %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "تغییر عضویت به داشبورد %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "اصلاح کاربر %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "اصلاح این جستجو" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "اصلاح درخواست شماره %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "اصلاح درخواست شماره %1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "اصلاح درخواست ها" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "اصلاح عنوان برای %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "اصلاح سلسله مراتب موضوعی مربوط به این دسته" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "اصلاح موضوعات مقالات در این دسته" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "اصلاح دسترسی های کاربر برای دسته %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "اصلاح دسترسی های کاربر برای Ùیلد خاص %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "اصلاح دسترسی های کاربر برای گروه %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "اصلاح دسترسی های کاربر برای ص٠%1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "اصلاح Ø§ÙØ±Ø§Ø¯ Ø¯Ø±ÛŒØ§ÙØª کننده ایمیل برای درخواست شماره %1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "ماجول" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "دوشنبه" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "دوشنبه" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "ماهانه" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "بیشتر در مورد درخواست کنندگان" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "حرکت به اینجا" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "چندین" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "باید خاصیت 'نام' مشخص گردد" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "درخواست های %1 من" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "تاییدیه های من" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "روز من" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "یادآوری های من" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "تاییدیه های من" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "داشبوردهای من" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "یادآوری های من" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "جستجو های ذخیره شده من" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "خط جدید" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "نام" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "نام Ùˆ آدرس ایمیل" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "نام مورد Ø§Ø³ØªÙØ§Ø¯Ù‡" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "نام:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "هیچگاه" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "جدید" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "مقاله جدید" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "داشبورد جدید" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "پیوندهای جدید" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "تاییدیه معوق جدید" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "جست‌وجوی جدید" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "پیغام جدید" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "گذرواژه جدید" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "اطلاع رسانی گذرواژه جدید ارسال شد" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "یادآوری جدید:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "درخواست جدید" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "درخواست جدید وجود ندارد" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "درخواست های جدید نمی توانند حالت %1 را در این ص٠داشته باشند." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "ناظران جدید" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "بعدی" #: lib/RT/User.pm:96 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "نام مستعار" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "نه" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "هیچ %1 ای بارگذاری نشده" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "هیچ مقاله ای تطابق ندارد با %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "هیج دسته ای تعری٠نشده" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "عدم ÛŒØ§ÙØªÙ† دسته هایی منطبق با معیارهای جستجو" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "بدون Ùیلد خاص" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "هیچ Ùیلد خاصی تعری٠نشده" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "هیچ گروهی تعری٠نشده" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "بدون پرس Ùˆ جو" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "هیچ صÙÛŒ تعری٠نشده" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "کاربر سیستم پیگیری درخواست ÛŒØ§ÙØª نشد. Ù„Ø·ÙØ§ با مدیریت سیستم پیگیری درخواست خودتان تماس بگیرید." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "بدون موضوع" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "بدون قالب" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "بدون عمل" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "هیچ ستونی مشخص نشده است" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "هیچ توضیحی در مورد این کاربر وارد نشده است" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "بدون توصی٠برای %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "هیچ گروهی مشخص نشده است" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "عدم ÛŒØ§ÙØªÙ† گروههایی هایی منطبق با معیارهای جستجو." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "هیچ پیغامی ضمیمه نشده است" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "هیچ نامی ارایه نشده است" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "نیازی به رمزگذاری نیست" #: lib/RT/User.pm:970 msgid "No password set" msgstr "هیچ گذرواژه ای تنظیم نشده است" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "عدم دسترسی برای ایجاد ص٠ها" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "عدم دسترسی برای ایجاد درخواست ها در ص٠'%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "عدم دسترسی برای نمایش آن درخواست" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "عدم دسترسی برای ذخیره جستجوها در Ú©Ù„ سیستم" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "عدم دسترسی برای تنظیم ترجیحات" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "عدم دسترسی برای مشاهده مقاله" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "عدم دسترسی برای مشاهده درخواست بروز شده" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "هیچ اصلی انتخاب نشده." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "بدون کلید خصوصی" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "عدم ÛŒØ§ÙØªÙ† ص٠هایی منطبق با معیارهای جستجو" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "هیچ حقی مشخص نشده" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "هیچ حقی ÛŒØ§ÙØª نشد" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "عدم وجود جستجو برای انجام عملیات بر روی آن." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "بدون عنوان" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "هیچ درخواستی ÛŒØ§ÙØª نشد." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "هیچ نوع تبادلی مشخص نشده است" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "کلیدهای غیر قابل Ø§Ø³ØªÙØ§Ø¯Ù‡." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "عدم ÛŒØ§ÙØªÙ† کاربر هایی منطبق با معیارهای جستجو" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "هیچ مقداری برای _Set ارسال نشده است!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "هیچ کس" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "هیچ‌کدام" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Ùیلد ناموجود؟" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "پیدا نشد" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "وارد نشده." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "تنظیم نشده" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "از یک مرورگر موبایل Ø§Ø³ØªÙØ§Ø¯Ù‡ نمی کنید؟" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "یادداشت‌ها" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "ارسال تذکر امکان ندارد" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "اطلاع رونوشتهای مدیریت" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "اطلاع رسانی به رونوشتهای مدیریتی بصورت توضیح" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "اطلاع به رونوشت ها" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "اطلاع رسانی به رونوشت ها بصورت توضیح" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "اطلاع به سایر گیرندگان" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "اطلاع رسانی به سایر گیرندگان بصورت توضیح" #: etc/initialdata:47 msgid "Notify Owner" msgstr "اطلاع به مسئول" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "اطلاع رسانی به مسئول بصورت توضیح" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "اطلاع رسانی به مسئول درباره درخواست های رد شده اش" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "اطلاع رسانی به مسئول، درخواست کننده، رونوشت ها Ùˆ رونوشت های مدیریتی" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "اطلاع رسانی به مسئول، درخواست کننده، رونوشت ها Ùˆ رونوشت های مدیریتی به عنوان توضیح" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "اطلاع به درخواست کنندگان" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "اطلاع رسانی به درخواست کننده ها Ùˆ رونوشت ها" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "اطلاع رسانی به درخواست کننده ها Ùˆ رونوشت ها بصورت توضیح" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "اطلاع رسانی به من در مورد پیغام های نخوانده" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "یا" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "شئ" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "ایجاد شئ امکان ندارد" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "حذ٠شئ امکان ندارد" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "شئ ایجاد شد" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "شئ حذ٠شد" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "عدم انطباق نوع شئ" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "لیست اشیا خالی است" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "هنگام %1ØŒ %2 نوشت:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "هنگام بستن" #: etc/initialdata:170 msgid "On Comment" msgstr "هنگام نظردهی" #: etc/initialdata:142 msgid "On Correspond" msgstr "هنگام تناظر" #: etc/initialdata:131 msgid "On Create" msgstr "هنگام ایجاد" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "هنگام ارجاع" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "هنگام ارجاع درخواست" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "هنگام تبادل ارجاع" #: etc/initialdata:191 msgid "On Owner Change" msgstr "هنگام تغییر مسئول" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "هنگام تغییر اولویت" #: etc/initialdata:199 msgid "On Queue Change" msgstr "هنگام تغییر صÙ" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "هنگام رد کردن" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "هنگام دوباره باز کردن" #: etc/initialdata:205 msgid "On Resolve" msgstr "هنگام حل شدن" #: etc/initialdata:176 msgid "On Status Change" msgstr "هنگام تغییر وضعیت" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "در تبادل" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "رونوشت مخÙÛŒ یکبار" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "رونوشت یکبار" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "تنها برای ورود، نه برای نمایش" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "نمایش تنهای تاییدیه هایی برای درخواست های ایجادشده بعد از %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "نمایش تنهای تاییدیه هایی برای درخواست های ایجادشده قبل از %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "نشان بده Ùیلدهای خاص را تنها برای:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "باز کردن آن" #: etc/initialdata:108 msgid "Open Tickets" msgstr "باز کردن درخواست ها" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "باز کردن URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "درخواست های باز" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "بازکردن درخواست ها در صورت تطابق" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "گزینه" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "گزینه ها" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "ترتیب بر اساس" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "سازمان" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "درخواست منشا: شماره %1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "ایمیل ارسالی در مورد یک توضیح ثبت شد" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "ایمیل ارسالی ثبت شد" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "ایمیل ارسالی" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "خلاصه" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "جلب مسئولیت" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "مسئول" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "مسئول '%1'دارای مجوز مسئول شدن برای این درخواست را ندارد." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "تغییر مسئول از %1 به %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "به ناچار مسئول از %1 به %2 تغییر ÛŒØ§ÙØª" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "نام مسئول" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "ØµÙØ­Ù‡" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "ØµÙØ­Ù‡ 1 از 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "ØµÙØ­Ù‡ پیدا نشد" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "پیجر" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "شماره پیجر" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "والدین" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "گذرواژه" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "گذرواژه تغییر ÛŒØ§ÙØª" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "گذرواژه تنظیم نشده است." #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "گذرواژه چاپ نشد" #: lib/RT/User.pm:980 msgid "Password set" msgstr "گذرواژه تنظیم شد" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "گذرواژه: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "گذرواژه: مشکل مجوز" #: etc/initialdata:714 msgid "PasswordChange" msgstr "تغییر گذرواژه" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "گذرواژه ها انطباق ندارند." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "مسیر به sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Ø§ÙØ±Ø§Ø¯" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Ø§ÙØ±Ø§Ø¯ مربوط به ص٠%1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "انجام یک عمل تعری٠شده توسط کاربر" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "زبان برنامه‌نویسی پرل" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "پیکربندی پرل" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "ترتیب جستجوی کتابخانه پرل" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "پاکسازی همیشگی داده از سیستم پیگیری درخواست" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "مشکل مجوز" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "مشکل مجوز" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "شماره های تلÙÙ†" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Ù„Ø·ÙØ§ با بررسی آدرس، دوباره تلاش نمایید." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Ù„Ø·ÙØ§ گذرواژه ÙØ¹Ù„ÛŒ خود را بصورت صحیح وارد نمایید." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Ù„Ø·ÙØ§ گذرواژه ÙØ¹Ù„ÛŒ خود را وارد نمایید." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "احتمال جعل درخواست بین سایتی" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "جستجوهای مخÙÛŒ ممکن" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "جستجوی تعری٠شده %1 پیدا نشد" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "تنظیمات" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "تنظیمات %1 برای کگاربر %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "تنظیمات ذخیره برای %1" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "تنظیمات برای کاربر %1 ذخیره شد." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "تنظیمات ذخیره شد." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "کلید برگزیده: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "کلید برگزیده" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "قبلی" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "ÙØ±Ø¯ '%1' پیدا نشد" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "چاپ این پیغام" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "اولویت" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "حریم" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "حریم:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "کلید خصوصی" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "مجاز" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "وضعیت مجاز: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "کاربران مجاز" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "شبه گروه برای Ø§Ø³ØªÙØ§Ø¯Ù‡ داخلی" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "پرس Ùˆ جو ها" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "پرس Ùˆ جو" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "ایجاد کننده پرس Ùˆ جو" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "صÙ" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "ص٠'%1' پیدا نشد" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "نام صÙ" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "ص٠از قبل وجود دارد" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "ایجاد ص٠امکان ندارد" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "بارگذاری ص٠امکان ندارد" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "ص٠ایجاد شد" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "شماره صÙ" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "ص٠پیدا نشد" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "کلید صÙ" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "رونوشت مدیریتی صÙ" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "رونوشت صÙ" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "نام صÙ" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "ناظر صÙ" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "ص٠ها" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "ص٠هایی Ú©Ù‡ من مدیریت کردم" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "ص٠هایی Ú©Ù‡ من یک رونوشت مدیریتی برای آنها هستم" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "جست‌وجو سریع" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "ایجاد سریع درخواست" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "مدیریت سیستم پیگیری درخواست" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "ایمیل مدیریت سیستم پیگیری درخواست" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "پیکربندی سیستم پیگیری درخواست" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "خطای سیستم پیگیری درخواست" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "اندازه سیستم پیگیری درخواست" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "سیستم پیگیری درخواست در یک نگاه" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "سیستم پیگیری درخواست در یک نگاه برای کاربر %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "متغیرهای هسته سیستم پیگیری درخواست" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "سیستم پیگیری درخواست برای %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "دوباره باز Ú©Ù†" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "نام واقعی" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "گیرندگان" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "ثبت تمام بروز رسانی ها" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "عضو بازگشتی" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "ارجاع به" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "ارجاع از %1 ایجاد شد" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "ارجاع از %1 حذ٠شد" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "ارجاع به %1 ایجاد شد" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "ارجاع به %1 حذ٠شد" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "ارجاع شده بوسیله" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "ارجاع شده بوسیله" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "مربوط است به" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "مرجوع به" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "نوسازی" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "رد کردن" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "ص٠پیش ÙØ±Ø¶ را بیاد بسپار" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "یادآوری" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "یادآوری '%1' اضاÙÙ‡ شد" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "یادآوری '%1' تمام شد" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "یادآوری '%1' دوباره باز شد" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "یادآوری ها" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "یادآوری ها برای درخواست شماره %1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "حذ٠رونوشت مدیریتی" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "حذ٠چوب خط" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "حذ٠رونوشت" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "حذ٠درخواست کننده" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "نوع یادآوری" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "لیست پایین Ø§ÙØªØ§Ø¯Ù†ÛŒ را با جعبه متن جایگزین Ù…ÛŒ کند" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "پاسخ" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "آدرس برای ارسال پاسخ" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "پاسخ به درخواست کنندگان" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "پاسخ به درخواست ها" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "درخواست کننده" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "گروه درخواست کننده" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "درخواست کنندگان" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "پارامتر الزامی '%1' مشخص شده است" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "بازنشانی" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "بازنشانس RTدر یک نگاه" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "بازنشانی به Ù¾ÛŒØ´â€ŒÙØ±Ø¶â€Œ" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "محل اقامت" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "حل کردن" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "حل درخواست شماره %1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "حل شده" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "حل شده نسبی" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "پاسخ" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "نتایج" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "بازگشت به درخواست" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "تایپ دوباره گذرواژه" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "اعاده" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "دسترسی بارگذاری شد." #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "ÙØ³Ù‚ کردن دسترسی امکان ندارد" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "دسترسی بارگذاری نشد." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "دسترسی ها برای %1 نمی توانند واگذار شوند" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "دسترسی های مدیریت" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "دسترسی های اعضا" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "ردی٠ها" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "سطر در جعبه" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "سطر در ØµÙØ­Ù‡" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "پرس Ùˆ جو های SQL" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "شنبه" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "شنبه" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "ذخیره" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "ذخیره‌ی تغییرات" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "ذخیره تنظیمات" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "ذخیره به عنوان جدید" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "ذخیره جدید" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "ذخیره این جستجو" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "%1 %2 ذخیره شد" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "جستجوهای ذخیره شده" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "چارت های ذخیره شده" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "جستجوهای ذخیره شده" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "اسکریپ شماره %1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "اسکریپ ایجاد شد" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "اسکریپ ها" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "اسکریپ ها Ùˆ گیرندگان" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "جست‌وجو" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "جست‌وجوی %1 روزآمد شد" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "جست‌وجوی مقالات" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "تنظیمات جست‌وجو" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "جستجوی مقالات منطبق با" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "جست‌وجوی تاییدیه ها" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "جست‌وجوی مقالات" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "جست‌وجوی درخواست ها" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "گزینه های جست‌وجو" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "نتایج جست‌وجو" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "بازه تجدید نتایج جستجو" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "امنیت:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "ببینید همچنین:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "مقالات این دسته را ببینید" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "تغییرات مقالات این دسته را ببینید" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "مشاهده اینکه این دسته وجود دارد" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "انتخاب" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Ùیلدهای خاص برای مقالات در تمام دسته ها را انتخاب کنید" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "انتخاب نوع پایگاه داده" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "انتخاب یک دسته" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "انتخاب یک Ùیلد خاص" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "انتخاب یک رنگ برای این قسمت" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "انتخاب یک گروه" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "انتخاب یک صÙ" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "برای درخواست جدیدتان یک ص٠انتخاب کنید" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "انتخاب یک قسمت" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "انتخاب یک کاربر" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "انتخاب یک مقاله از %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "انتخاب یک مقاله برای شامل شدن" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "انتخاب زبان دیگر" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "انتخاب باکس" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Ùیلدهای خاص برای تمام ص٠ها انتخاب کنید" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Ùیلدهای خاص برای تمام گروه ها انتخاب کنید" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Ùیلدهای خاص برای تمام کاربران انتخاب کنید" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Ùیلدهای خاص برای درخواست ها در تمام ص٠ها انتخاب کنید" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Ùیلدهای خاص برای تبادلات بر درخواست ها در تمام ص٠ها انتخاب کنید" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "انتخاب تاریخ" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "انتخاب تاریخ/ساعت" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "انتخاب چندین تاریخ" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "انتخاب چندین تاریخ/ساعت" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "انتخاب چندین مقدار" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "انتخاب یک مقدار" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "انتخاب ص٠هایی Ú©Ù‡ باید در ØµÙØ­Ù‡ \" سیستم پیگیری درخواست در یک نگاه \" نمایش داده شوند" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "انتخاب موضوع برای این مقاله" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Ùیلدهای خاص منتخب" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "ص٠های منتخب" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "اشیاء منتخب" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "انتخاب شده ها اصلاح شدند. Ù„Ø·ÙØ§ تغییراتتان را ذخیره نمایید" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "ارسال ایمیل به مسئول Ùˆ تمام ناظرین" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "ارسال ایمیل به مسئول Ùˆ تمام ناظرین به عنوان \"توضیح\"" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "ارسال ایمیل به درخواست کنندگان Ùˆ رونوشت ها" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "ارسال ایمیل به درخواست کنندگان Ùˆ رونوشت ها به عنوان یک توضیح" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "یک پیغام به درخواست کنندگان ارسال Ù…ÛŒ کند" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "نامه را به لیست صریح رونوشت ها Ùˆ رونوشت های مخÙÛŒ ارسال Ù…ÛŒ کند" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "ارسال ایمیل به رونوشتها" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "ارسال ایمیل به رونوشتها به عنوان توضیح" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "نامه را به رونوشت های مدیریتی ارسال Ù…ÛŒ کند" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "نامه را به رونوشت های مدیریتی بصورت توضیح ارسال Ù…ÛŒ کند" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "ایمیل به مال ارسال Ù…ÛŒ کند" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "چندین ورودی را ÙØ§ØµÙ„Ù‡ از هم جدا کنید." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "تنظیم کلید خصوصی" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "تنظیمات" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "نام کاربری کوتاه" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "آیا سیستم پیگیری درخواست ها باید برای تغییرات درخواستی Ú©Ù‡ شما ایجاد کرده اید، برای شما نامه ارسال کند؟" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "نمایش" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "نمایش برگه تاییدیه ها" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "نمایش ستون ها" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "نمایش نتایج" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "نمایش مشخصات درخواست ها در مرحله %1" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "نمایش تمام متن نقل شده" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "نمایش درخواست های تایید شده" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "نمایش بصورت" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "نمایش سرآمدهای خلاصه" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "نمایش درخواست های رد شده" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "نمایش سرآمدهای کامل" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "نمایش قالب های سراسری" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "نمایش توضیحات پیوند" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "عدم نمایش درخواست ها برای درخواست گننده" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "نمایش قدیمی ترین تاریخچه در ابتدا" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "نمایش درخواست های معطل" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "نمایش متن نقل قول شده" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "نمایش درخواست های منتظر برای تاییدیه های دیگر" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "نمایش 10 درخواست ÙØ¹Ø§Ù„ با بالاترین اولویت درخواست کننده" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "نمایش 10 درخواست غیر ÙØ¹Ø§Ù„ با بالاترین اولویت درخواست کننده" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "نمایش 10 درخواست با بالاترین اولویت درخواست کننده" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "نمایش تاریخچه درخواست" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "امحا کننده" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "امحا کننده به یک دایرکتوری برای نوشتن نسخه ها نیاز دازد. Ù„Ø·ÙØ§ مطمئن شوید Ú©Ù‡ دایرکتوری %1 وجود دارد Ùˆ توسط وب سرور شما قابل نوشتن Ù…ÛŒ باشد." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "نوار کناری" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "امضا" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "امضا بصورت پیش ÙØ±Ø¶" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "ثبت نام به عنوان رونوشت درخواست کننده یا درخواست یا صÙ" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "ثبت نام به عنوان رونوشت مدیریتی درخواست Ùˆ یا صÙ" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "امضا %1 %2 با Ø§Ø³ØªÙØ§Ø¯Ù‡ از %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "امضا" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "ساده" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "جست‌وجوی ساده" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "تک" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "نام سایت" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "اندازه" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "نادیده Ú¯Ø±ÙØªÙ† منو" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "نادیده Ú¯Ø±ÙØªÙ† کاربر غیر ÙØ¹Ø§Ù„" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Ú©ÙˆÚ†Ú©" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "مشکلی رخ داده است. با مدیر سیستم تماس بگیرید" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "ترتیب" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "مرتب سازی" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "منبع" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "ØµÙØ­Ù‡ گسترده" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "مرحله" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "معطل" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "برای تعیین صریح نوع جستجو، عبارت جستجو را با نام یک Ùیلد مورد پشتیبانی Ú©Ù‡ بعد از دو نقطه آمده است، شروع کنید، مانند %1 Ùˆ %2." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "شروع شده" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "تاریخ آغاز شده ÛŒ نسبی" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "آغاز Ù…ÛŒ شود" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "تاریخ آغاز نسبی" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "وضعیت" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "وضعیت" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "وضعیت '%1'ØŒ وضعیت معتبری برای درخواست های این ص٠نیست." #: etc/initialdata:449 msgid "Status Change" msgstr "تغییر وضعیت" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "تغییر وضعیت از %1 به %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "تغییرات حالت" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Ú¯Ø±ÙØªÙ† مسئولیت" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "درخواست های جلب مسئولیت شده" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "قدم %1 از %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Ú¯Ø±ÙØªÙ† مسئولیت از %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "سبک" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "موضوع" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "برچسب موضوع" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "تغییر موضوع به %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "برچسب موضوع" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "ارسال" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "عضویت" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "عضویت به داشبورد %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "عضویت به داشبوردها" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "عضو شده به داشبورد %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "عضویت" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "ایجاد عضویت امکان ندارد: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "رمزگشایی موÙÙ‚ داده" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "رمزنگاری موÙÙ‚ داده" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "خلاصه" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "یکشنبه" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "یکشنبه" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "معوق" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "تنظیمات سیستم" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Ù¾ÛŒØ´â€ŒÙØ±Ø¶ سیستم" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "خطای سیستم" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "خطای سیستم: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "ابزارهای سیستمی" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "خطای سیستمی" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "خطای سیستمی. دسترسی اعطا نشده." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "گروه نقش سیستمی برای Ø§Ø³ØªÙØ§Ø¯Ù‡ داخلی" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "اقدام" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "اقدام برای درخواست ها" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "اقدام شده" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "قالب" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "قالب شماره %1 حذ٠شد" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "قالب '%1' پیدا نشد" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "قالب کامپایل Ù…ÛŒ کند" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "قالب شامل کد پرل نیست" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "قالب خالی است" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "قالب، آرگومان اجباری است" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "قالب بررسی شد" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "خطا در بررسی قالب" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "خطا در بررسی قالب: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "قالبها" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "قالب برای ص٠%1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "متن" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Ùیل متنی نشان داده نمی شود چون در ترجیحات غیر ÙØ¹Ø§Ù„ شده است." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "همچنان مقدار ÙØ¹Ù„ÛŒ است" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "آن مقداری برای این Ùیلد خاص نیست" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "درخواست دارای وابستگی های غیر حل شده Ù…ÛŒ باشد" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "آن کاربر همچنان مسئول آن درخواست Ù…ÛŒ باشد" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "آن کاربر وجود ندارد" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "در حال حاضر آن کاربر دارای دسترسی است" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "در حال حاضر آن کاربر بدون دسترسی است" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "حالا آن کاربر دارای دسترسی است" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "حالا آن کاربر بدون دسترسی است" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "آن کاربر شاید مسئول درخواست های آن ص٠نباشد" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "یک شماره عددی نیست" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "مبانی" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "رونوشت از یک درخواست" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "گذرواژه پایگاه داده ÛŒ DBA" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "رونوشت مدیریتی از یک درخواست" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "کلید غیر ÙØ¹Ø§Ù„ شده است" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "کلید ÙØ³Ø® شده است" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "کلید منقضی شده" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "کلید کاملا تایید شده است" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "کلید در نهایت تایید شده است" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "مقدار جدید تنظیم شده است." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "مسئول یک درخواست" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "پیدا کردن ØµÙØ­Ù‡ مورد تقاضای شما امکان ندارد" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "درخواست کننده یک درخواست" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "تنظیمات انتخابی شما در %1 ذخیره شده است." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "پوسته" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "پیغام های خوانده نشده ای بر روی این درخواست وجود داد." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Ùیلد خاص نمی تواند لیستی از مقادیر داشته باشد" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "این دسته به آن شئ اعمال نشده است" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "این ویژگی تنها برای مدیران سیستم در دسترس است" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "این ویژگی تنها برای مدیران سیستم در دسترس است." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "ظاهرا تبادل محتوایی نداشته است" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "%1 در خواست %2 با بالاترین اولویت این کاربر" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "پنجشنبه" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "پنج شنبه" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "درخواست" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "بروز رسانی در یک نگاه درخواست شماره%1 : %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "نگاره ارتباطات درخواست شماره %1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "درخواست شماره %1:%2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "درخواست %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "درخواست %1 در ص٠'%2' ایجاد شد" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "درخواست %1:%2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "تاریخچه‌ی درخواست شماره %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "درخواست حل شد" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "جست‌وجوی درخواست" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "تبادلات درخواست" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "درخواست Ùˆ تبادل" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "ترکیب درخواست" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "محتوای درخواست" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "نوع محتوای درخواست" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "ایجاد درخواست بنا به یک خطای داخلی امکان ندارد" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "بارگذاری درخواست امکان ندارد" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "نمایش درخواست" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "ÙØ±Ø§Ø¯Ø§Ø¯Ù‡ درخواست" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "حالت درخواست تغییر ÛŒØ§ÙØª" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "بروزسازی درخواست" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "ماژول جستجوی TicketSQL" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "درخواست ها" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "درخواست ها %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "درخواست های %1 توسط %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "درخواست های مربوط به من" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "درخواست های وابسته به این تاییدیه:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "زمان تخمین زده" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "زمان باقیمانده" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "زمان کارشده" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "زمان نمایش" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "زمان پیش بینی شده" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "زمان باقیمانده" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "زمان کارشده" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "منطقه زمانی" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "عنوان" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "به" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "برای پشتیبانی، آموزش، Ø±ÙØ¹ مشکل Ù„Ø·ÙØ§ با %1 تماس بگیرید" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "تغییر وضعیت %1 پرس Ùˆ جو" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "ÙØ¹Ø§Ù„/غیر ÙØ¹Ø§Ù„ نمودن پیگیری پشته" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "آخرین تماس" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "تاریخ اطلاع رسانی نسبی" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "ابزارها" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "نام موضوع" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "عضویت موضوع اضاÙÙ‡ شد" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "عضویت موضوع حذ٠شد" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "موضوع پیدا نشد" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "موضوعات" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "جمع Ú©Ù„" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "تبادل" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "تبادل %1 کاملا حذ٠شد" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "تبادل ایجاد شد" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Ùیلدهای خاص تبادل" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "تاریخ تبادل" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "تبادلات تغییر ناپذیر هستند" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "اعتماد" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "سه شنبه" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "سه شنبه" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "نوع" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "تایپ کنید a: قبل از شماره مقاله Ùˆ t: قبل از شماره درخواست." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "تغییر نوع از '%1' به '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "عدم امکان اضاÙÙ‡ نمودن عضوت موضوع" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "عدم امکان حذ٠عضویت موضوع در %1" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "عدم امکان تشخیص نوع Ùˆ یا شماره شئ" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "ناتوان در بارگذاری مقاله" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "ناتوان در تنظیم CSS کاربر: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "ناتوان در تنظیم لوگوی کاربری: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "عدم امکان تنظیم شماره حریم : %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "انتخاب ها را برای عدم اطلاع رسانی به لسیت گیرندگان تنها برای این تبادل غیر ÙØ¹Ø§Ù„ کنید؛ اطلاع رسانی دائمی را Ù…ÛŒ توانید از ØµÙØ­Ù‡ Ø§ÙØ±Ø§Ø¯ تنظیم نمایید." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "بازیابی" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "ورود Unix" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "ناشناس (هیچ مقدار معتبری منتسب نشده است)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "ناشناخته (این مقدار برای سیستم جدید است)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Encoding محتوای نامشخص %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Ùیلد نامشخص: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "در صورت عدم مشخص ساختن حالت به خصوص، تنها درخواست های ÙØ¹Ø§Ù„ با حالت های (%1) جستجو Ù…ÛŒ شوند." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "نامحدود" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "نامحدود" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "داشبورد بدون نام" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "جست‌وجوی بدون نام" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "درخواست های بدون صاحب" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "ممنوع" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Ùیلد های خاص انتخاب نشده" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "ص٠های انتخاب نشده" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "اشیاء انتخاب نشده" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "بازنشانی کلید خصوصی" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "اقدام نشده" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "بروزسازی" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "بروزسازی نمودار" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "بروزسازی نگاره" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "بروزسازی درخواست" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "نوع بروزسازی" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "بروزرسانی ÙØ±Ù…ت Ùˆ جستجو" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "بروزسازی چندین درخواست" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "بروز رسانی ثبت نشده است." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "بروزسازی درخواست" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "بروزسازی درخواست شماره %1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "بروزسازی درخواست شماره %1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "نوع بروزرسانی نه مکاتبه است Ùˆ نه توضیح." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "حالت بروز رسانی" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "به روز شده" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "بروزرسانی جست‌وجوی ذخیره شده \"%1\"" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "ارسال" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "ارسال یک لوگوی جدید" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "ارسال چندین ÙØ§ÛŒÙ„" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "ارسال چندین تصویر" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "ارسال یک ÙØ§ÛŒÙ„" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "ارسال یک تصویر" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از اتمام خود کار برای ÛŒØ§ÙØªÙ† مسئولین" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "از Ù¾ÛŒØ´â€ŒÙØ±Ø¶ (%1) Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Ø§Ø³ØªÙØ§Ø¯Ù‡ از سایر ابزارهای مدیریتی سیستم پیگیری درخواست" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "از Ù¾ÛŒØ´â€ŒÙØ±Ø¶ سیستم (%1) Ø§Ø³ØªÙØ§Ø¯Ù‡ کنید" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "کاربر" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "کاربر (ایجاد شده - منقضی)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "تعری٠شده توسط کاربر" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "دسترسی های کاربر" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "کاربر نمی تواند ایجاد شود: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "ایجاد شده توسط کاربر" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "غیر ÙØ¹Ø§Ù„ شده توسط کاربر" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "ÙØ¹Ø§Ù„ شده توسط کاربر" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "کاربر دارای آدرس ایمیل خالی" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "بارگذاری شده توسط کاربر" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "گروه های تعری٠شده توسط کاربر" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "نام کاربری" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "قالب نام کاربری" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "کاربران" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "کاربران مطابق با معیار های جستجو" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "با Ø§Ø³ØªÙØ§Ø¯Ù‡ از تبادل شماره %1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "پرس Ùˆ جوی معتبر" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "ارزیابی" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "مقدار" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "مقادیر" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "متغیر" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "نسخه" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "نمایش قالب های اسکریپ" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "مشاهده اسکریپ ها" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "مشاهده مقادیر Ùیلدهای خاص" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "مشاهده Ùیلدهای خاص" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "مشاهده دقیق پیغام های ایمیلی ارسالی Ùˆ Ø¯Ø±ÛŒØ§ÙØª کنندگان آنها" #: lib/RT/Group.pm:94 msgid "View group" msgstr "مشاهده گروه" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "مشاهده داشبوردهای گروه" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "مشاهده داشبوردهای شخصی" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "مشاهده صÙ" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "نمایش جستجو های ذخیره شده" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "مشاهده داشبوردهای سیستم" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "مشاهده گزارش خصوصی درخواست" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "مشاهده خلاصه های درخواست" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Ø§Ø±ØªÙØ§Ø¹ ابزار نوشتن همسان" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "ایجاد کننده پیغام همسان" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "اخطار! این امضا نشده!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "ناظر" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "گروه ناظر" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "ناظران" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "پورت وب" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "چهارشنبه" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "چهارشنبه" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Ù‡ÙØªÚ¯ÛŒ" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Ù‡ÙØªÙ‡ نامه" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "به سیستم پیگیری درخواست خوش آمدید!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "کارهایی Ú©Ù‡ امروز انجام دادم" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "سیستم پیگیری درخواست چیست؟" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "زمانی Ú©Ù‡ یک درخواست ایجاد شده است" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:137 msgid "When anything happens" msgstr "زمانیکه چیزی Ø§ØªÙØ§Ù‚ Ø¨ÛŒØ§ÙØªØ¯" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "زمانی Ú©Ù‡ یک درخواست بسته شده است" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "زمانی Ú©Ù‡ یک درخواست ارجاع شده است" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "زمانی Ú©Ù‡ یک درخواست رد شده است" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "زمانی Ú©Ù‡ یک درخواست دوباره باز شده است" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "زمانی Ú©Ù‡ یک درخواست حل شده است" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "هر زمانیکه یک درخواست یا تبادل ارجاع شده است" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "زمانی Ú©Ù‡ مسئول یک درخواست تغییر کند" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "زمانی Ú©Ù‡ اولویت یک درخواست تغییر کند" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "زمانی Ú©Ù‡ ص٠یک درخواست تغییر کند" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "زمانی Ú©Ù‡ حالت یک درخواست تغییر کند" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "هر وقت Ú©Ù‡ یک تبادل ارجاع شده است" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "هر وقت نظرات بیایند" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "هر وقت مراسله ای بیایند" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "مکانی Ú©Ù‡ ÙØ§ÛŒÙ„ اجرایی sendmail شما ÛŒØ§ÙØª Ù…ÛŒ شود." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "امحا" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "کار" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "تلÙÙ† محل کار" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "کار شده" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "بله" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "شما ممکن است این داشبورد Ùˆ عضویت تان به آن درسیستم پیگیری درخواست را ویرایش نمایید." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "در حال حاضر شما مسئول این درخواست هستید" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "همچنین Ù…ÛŒ توانید خود جستجوی از قیل تعیین شده را هم ویرایش نمایید" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "تنظیم گذرواژه برای شما امکان ندارد." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "تنها Ù…ÛŒ توانید درخواست های بدون مسئول Ùˆ یا با مسئولیت خودتان را به دیگران اختصاص دهید" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "تنها Ù…ÛŒ توانید برای درخواست های بدون مسئول را اقدام کنید" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "شما نمی توانید حالت را از '%1' به '%2' تغییر دهید." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "شما دسترسی کاربر مدیر را ندارید." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "شما از سیستم پیگیری درخواست خارج شدید." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "شما مجوز ایجاد درخواست در آن ص٠را ندارید." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Ù…ÛŒ توانید پیوندهایی به مقالات مانند \"a:###\" ایجاد کنید Ú©Ù‡ ### نشانگر شماره مقاله Ù…ÛŒ باشد." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "شما باید یک گذرواژه مدیریتی را وارد کنید." #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "ورود دوباره شما مطلوب است" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "گذرواژه شما تنظیم نشده است." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "نام کاربری یا گذرواژه شما ناصحیح است" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "کد پستی" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[پایین]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[بالا]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[هیچ‌کدام]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "یک Ùیلد خاص" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "ÙØ¹Ø§Ù„" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "بعد از" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "Ùˆ قبل" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "Ùˆ نه" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "میله" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "قبل" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "بدنه" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "پایین به بالا" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "برای اعمال سراسری این دسته به تمامی صÙها این جعبه را انتخاب کنید." #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "بررسی برای اضاÙÙ‡ نمودن" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "کلیک برای انتخاب/عدم انتخاب یکباره تمام اشیاء" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "پیکربندی هسته" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "ایجاد یک درخواست" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "روزانه در %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "حذ٠شد" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "عدم همخوانی" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "بارگیری" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "طول" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "برابر با" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "خطا: حرکت به پایین امکان ندارد" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "خطا: حرکت به Ú†Ù¾ امکان ندارد" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "خطا: حرکت به بالا امکان ندارد" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "خطا: چیزی برای حذ٠نیست" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "خطا: چیزی برای انتقال نیست" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "خطا: چیزی برای تبدیل نیست" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "هر" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "اجرای موÙقیت آمیز Ø§ÙØ²ÙˆÙ†Ù‡" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "کامل" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "بیشتر از" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "گروه" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "گروه '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "شماره" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "در دسته %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "غیر ÙØ¹Ø§Ù„" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "شامل %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "شاخص" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "است" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "نیست" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "کلید غیر ÙØ¹Ø§Ù„ شده" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "کلید منقضی شده" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "کلید لغو شده" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "Ú†Ù¾ به راست" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "کمتر از" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "حاشیه ای" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "مطابق است با" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "حداکثر عمق" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "دقیقه" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "تغییر تنظیمات سیستم پیگیری درخواست" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "اصلاح یک داشبورد" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "اصلاح یا دسترسی به یک جستجو" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "تغییر تنظیمات شما" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "ماهانه" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "ماهانه (روز %1) در %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "هرگز" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "جدید" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "نه" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "هیچ‌کدام" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "نامساوی با" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "هیچ چیز" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "اشیا با موÙقیت حذ٠شدند" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "در" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "در روز" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "یک" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "باز" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "باز کردن/بستن" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "دیگر..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "انجام اعمال" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "پای" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "Ø§ÙØ²ÙˆÙ†Ù‡ لیستی خالی برگرداند" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "ص٠%1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "رد شده" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "نیازمند اجرای rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "حل شده" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "راست به Ú†Ù¾" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "شئ لیست شده ذیل را ببینید" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "تنظیم سایت" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "معطل" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "جمله" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "ردی٠های خلاصه" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "سیستم %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "گروه سیستم '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "درخواست شماره%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "بالا به پایین" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "نهایی" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "گروه تعری٠نشده %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "بینهایت" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "بروزسازی یک درخواست" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "بروزسازی یک تایید" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "بروزسازی یک مقاله" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "کاربر" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "کاربر %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "نام کاربری" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "Ù‡ÙØªÚ¯ÛŒ" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "Ù‡ÙØªÚ¯ÛŒ (در %1) از %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "Ù‡ÙØªÙ‡" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "با سرآمد" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "بله" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "مرورگر شما یک هدر مراجعه گر تهیه نمی‌کند" rt-4.4.2/share/po/zh_TW.po0000664000175000017500000123203013131430353015146 0ustar vagrantvagrant# Chinese (Traditional) translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 10:09+0000\n" "Last-Translator: Gene Hsiao \n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%7-%2-%3 %4:%5:%6 %1" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%2 已新增為 %1" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 已從 %2 改為 %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%2 已自 %1 刪除" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 已刪除。" #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 已儲存。" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2已更新" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "æ¢ä»¶ï¼š%1 | 動作:%2 | 範本:%3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) - %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (未更改)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (來自窗格%2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - 調整LogToSTDERRé…ç½®é¸é …" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - 傳éžçµ¦ %2 çš„ä¸€å€‹åƒæ•¸" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - 將更新狀態輸出到 STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - 指定你è¦ä½¿ç”¨ç¬¬ä¸€å€‹ï¼Œæœ€å¾Œä¸€å€‹é‚„是所有事務" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - 指定您想在範本中使用的å字或者編號" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - 指定你è¦ä½¿ç”¨ç”±é€—號(,)分隔的transactions類型列表" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - 指定欲使用的æ¢ä»¶æ¨¡çµ„" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - 指定欲使用的查詢模組" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 版,%4 版權所有,1996-%3。" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "新增 %1 作為 %2 的值" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 存在並且已經有了RT的資料庫表,但是其中沒有RT的元資料。ç¨å¾Œçš„'åˆå§‹åŒ–資料庫「步驟能夠往里é¢åŠ å…¥å…ƒè³‡æ–™ã€‚å¦‚æžœé€™æ­£æ˜¯ä½ æƒ³è¦çš„,點擊下é¢çš„'自定基本項'繼續自定RT。" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 存在但是沒有RT的資料庫表。ç¨å¾Œçš„'åˆå§‹åŒ–資料庫'步驟能夠創建資料庫表並加入元資料。如果這正是你想è¦çš„,點擊下é¢çš„'自定基本項'繼續自定RT。" #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 看來是個本地物件,å»ä¸åœ¨è³‡æ–™åº«è£¡" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 已經完全åˆå§‹åŒ–了。ä¸éœ€è¦å†å‰µå»ºä»»ä½•的資料庫表或者加入元資料,點擊下é¢çš„'自定基本項'繼續自定RT." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 (%2)" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 的值從 %2 改為 %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 已由'%2' 改為 '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 複製" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 核心é…ç½®" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "無法將 %1 設定為 %2。" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "已建立 %1" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "已刪除 %1" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1å·²åœç”¨" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 ä¸å­˜åœ¨" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1已啟用" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "å‰ %1 份待處ç†ç”³è«‹å–®" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 是從外部排程程å¼(如 cron)來å°ç”³è«‹å–®é€²è¡Œæ“作的工具。" #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1是一個由croné‹è¡Œçš„工具,å¯ä»¥åˆ†æ´¾æ‰€æœ‰å»¶æœŸçš„é€šçŸ¥ç”Ÿæˆæ¯å€‹ä½¿ç”¨è€…的摘è¦ã€‚" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1是RT接收郵件的ä½å€ï¼ŒåŠ åˆ°%2會導致郵件迴圈發é€" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 å·²ä¸å†æ˜¯è‡ªè¨‚æ¬„ä½ %2 的值。" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 最近更新的文章" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 最新的文章" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "å‰ %1 份待èªé ˜çš„申請單" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 物件" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1站點é…ç½®" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 æ›´æ–°: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 æ›´æ–°: 沒有變動" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 已更新。" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1 å…§çš„ %2 物件" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1 å…§çš„ %2 çš„ %3 物件" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1 的當å‰å¯†ç¢¼" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1 çš„æŽ§åˆ¶é¢æ¿" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1 çš„é å­˜æŸ¥è©¢" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1:未指定附件" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "%1 ä½å…ƒçµ„" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "%1k ä½å…ƒçµ„" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1æå‡ºç”³è«‹å–®%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "%1 分é˜" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1 ç§’" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%1 篇文章" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%1 å°æ™‚" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%1 分é˜" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' 䏿˜¯ä¸€å€‹æœ‰æ•ˆçš„類型識別字" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(標記è¦å®Œæˆçš„專案)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(é»žé¸æ¬²åˆªé™¤çš„é …ç›®)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(é»žé¸æ¬²åˆªé™¤çš„é …ç›®)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(éµå…¥ç”³è«‹å–®ç·¨è™Ÿæˆ–ç¶²å€ï¼Œä»¥ç©ºç™½åˆ†éš”)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(如果留白, 則é è¨­ç‚º %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(沒有自訂欄ä½)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(沒有æˆå“¡)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(沒有手續)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "沒有範本" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(é€å‡ºæœ¬ä»½æ›´æ–°çš„副本給å單上以逗號隔開的管ç†å“¡é›»å­éƒµä»¶ä½å€ã€‚這將會更改後續的收件者å單。)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(é€å‡ºæœ¬ä»½æ›´æ–°çš„副本給å單上以逗號隔開的電å­éƒµä»¶ä½å€ã€‚這將會更改後續的收件者å單。)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(ç•¶æ¢ä»¶æˆ–å‹•ä½œè¨­ç‚ºã€Œä½¿ç”¨è€…è‡ªè¨‚ã€æ™‚,請填入這些欄ä½)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(任一)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(沒有摘è¦)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(沒有å稱)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(無公開金鑰!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(ç„¡)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(沒有值)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(等待%1份其他申請單)" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(等待簽核)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(å¿…å¡«)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(ä¿¡ä»»: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(未命å)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(未被信任的)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id 是å¯å¿½è¦–åƒæ•¸ä¸¦ä¸”無法和 --template 一起使用" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--transaction çš„åƒæ•¸åªèƒ½æ˜¯ 'first', 'last' 或 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "空白範本" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "密碼沒有設定,因此該使用者將無法登入。" #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "找ä¸åˆ° ACE 設定" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "祇能新增或刪除 ACE 設定。" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "個人資訊" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "å­˜å–æ¬Šé™" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "動作" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "動作 '%1' 無法被找到" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "動作執行完畢" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "動作為必填欄ä½" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "動作準備完畢..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "動作" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "活動的申請單" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "添加 %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "新增管ç†å“¡å‰¯æœ¬æ”¶ä»¶äºº" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "加入書籤" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "新增副本收件人" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "新增欄ä½" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "新增æ¢ä»¶" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "新增更多附件" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "新增申請人" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "新增欄ä½å€¼" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "新增評論或回覆到指定的申請單" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "添加群組" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "新增æˆå“¡" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "新增視察員" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "為 %1 添加權é™" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "將這些æ¢ä»¶åŠ é€²æŸ¥è©¢å…§" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "增加這些項目並æœå°‹" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "添加使用者" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "新增值" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "添加ã€ä¿®æ”¹èˆ‡åˆªé™¤ç‰©ä»¶çš„æ¬„ä½å€¼" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "地å€" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "ä½å€ 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "ä½å€" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "ä½å€(續)" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "管ç†å“¡" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "管ç†å“¡å‰¯æœ¬" #: etc/initialdata:410 msgid "Admin Comment" msgstr "管ç†å“¡è©•è«–" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "管ç†å“¡å›žè¦†" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "表單管ç†" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "管ç†/全域設定" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "管ç†å“¡å‰¯æœ¬ç¾¤çµ„" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "管ç†å“¡å‰¯æœ¬" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "管ç†å“¡å‰¯æœ¬" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "系統管ç†å“¡å¯†ç¢¼" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "進階" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "高級æœç´¢" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "çµåˆæ–¹å¼" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "完æˆå…¨éƒ¨ç°½æ ¸" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "本類型的所有文章都列於申請單回複é é¢çš„下拉列表" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "所有類型" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "æ‰€æœ‰æŽ§åˆ¶é¢æ¿" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "所有表單" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "所有申請單" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "所有 iCal feeds 都內嵌了一個能驗證是你的秘密 token. 如果你有 iCal feeds çš„ URL 被æ›éœ²åœ¨å¤–é¢çš„險惡世界的話, ä½ å¯ä»¥åœ¨ä¸‹é¢å–得一個新的秘密 token, 並讓ç¾å­˜çš„ iCal feedsä¸å†èƒ½ç”¨." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "滿足æ¢ä»¶çš„表單" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "所有申請單" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "所有主題" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "å…許創建已存æœç´¢" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "å…許載入已存æœç´¢" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "å…許在範本ã€è…³æœ¬ç­‰è™•寫 Perl 代碼" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "已加密" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "AND/OR" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "任何欄ä½" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "套用於" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "應用到所有物件" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "套用" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "應用到全域" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "套用更動" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "簽核" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "簽核單 #%1:%2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "簽核單 #%1:系統錯誤,記錄失敗" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "簽核單 #%1:記錄完畢" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "å®ŒæˆæŸé …簽核" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "ç‚ºæ“æœ‰äººå‡†å‚™æ‰¹å‡†è«‹æ±‚" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "é§å›žæŸé …簽核" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "核准" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "四月" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "文章 #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "文章 %1 已創建" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "文章管ç†é é¢" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "文章未找到" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "文章" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "%1 的文章" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "åŒ¹é… %1 的文章" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "無主題的文章" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "éžå¢ž" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "指派或移除表單自定欄ä½" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "附件" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "附加檔案" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "ç¾æœ‰é™„ä»¶" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "附檔" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "無法載入附件 '%1'" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "附件新增完畢" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "附件檔å" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "附件" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "é™„ä»¶åŠ å¯†å·²å–æ¶ˆ" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "已刪除該屬性" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "八月" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "你的圖片無法被自動建議主題é¡è‰²æ”¯æ´ï¼Œé€™ä¹Ÿè¨±æ‚¨å®‰è£çš„ GD ç‰ˆæœ¬ä¸æ”¯æ´ä¸Šå‚³çš„圖檔類型,支æ´çš„æª”案類型:%1 ä½ å¯ä»¥é‡æ–°ç·¨è­¯ libgd 與 GD.pm 來包涵其他圖檔類型的支æ´ã€‚" #: etc/initialdata:261 msgid "Autoreply" msgstr "自動回覆" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "自動å°ç”³è«‹äººå›žè¦†" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "å¯ç”¨" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "返回" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "屬性%1å«éŒ¯èª¤çš„éš±ç§é …" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "基本資訊" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "密件副本" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "空白範本" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "正文" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "ç²—é«”" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "書籤" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "坿·»åŠ ç‚ºæ›¸ç°½çš„è©²æœç´¢éˆçµ" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "書籤中的申請單" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "已加入書簽的申請單" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "根據主題ç€è¦½" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "ç€è¦½è©²é€²ç¨‹ä¸­çš„ SQL 表單" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "整批更新" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "副本群組" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "載入\"%1\"失敗" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "無法更改系統使用者" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "ä¸èƒ½æ–°å¢žæ²’有å稱的自訂欄ä½å€¼" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "找ä¸åˆ°é å­˜æŸ¥è©¢" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "申請單ä¸èƒ½éˆçµè‡ªå·±ã€‚" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "無法儲存 %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "無法儲存此項查詢" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "ä¸èƒ½ç‚ºç·¨è™Ÿæ·»åŠ éˆçµ" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "無法在已關閉的 queue 中建立新 ticket." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "類型基於" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "分類" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "副本" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "副本" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "變更" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "更改批准申請單的狀態為已打開" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "更改密碼" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "圖表" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "全部é¸å–" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "檢查資料庫連線" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "檢查資料庫的連接設定" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "鏿“‡æ¬²åˆªé™¤çš„é …ç›®" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "å­ç”³è«‹å–®" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "鏿“‡è³‡æ–™åº«å¼•擎" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "從 %1 çš„ä¸»é¡Œé¸æ“‡" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "所在城市" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "類型" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "類型å稱" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "類型id" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "類型已應用到全域" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "類型已應用到 %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "類型" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "清除" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "全部清除" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "é»žé¸ \"完æˆå®‰è£\" çµæŸå®‰è£ç²¾éˆ" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "é»žé¸ \"åˆå§‹åŒ–資料庫\" 建立 RT 的資料庫以åŠåˆå§‹åŒ–資料。這會需è¦ä¸€é»žæ™‚間。" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "已解決" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "已解決的申請單" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "ä¸‹æ‹‰æ–‡å­—æ¡†ï¼šé¸æ“‡æˆ–éµå…¥å¤šé‡é …ç›®" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "ä¸‹æ‹‰æ–‡å­—æ¡†ï¼šé¸æ“‡æˆ–éµå…¥å–®ä¸€é …ç›®" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "ä¸‹æ‹‰æ–‡å­—æ¡†ï¼šé¸æ“‡æˆ–éµå…¥æœ€å¤š %1 個項目" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "è©•è«–" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "è©•è«–é›»å­éƒµä»¶åœ°å€" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "è©•è«–ä½å€" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "å°ç”³è«‹å–®æå‡ºè©•è«–" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "è©•è«–" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "è©•è«–(ä¸é€çµ¦ç”³è«‹äºº)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "使用者æè¿°" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "新增評論完畢" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "消除更動完畢" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "æ¢ä»¶" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "找ä¸åˆ°æ¢ä»¶ '%1'" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "æ¢ä»¶æ˜¯å¿…填欄ä½" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "ç¬¦åˆæ¢ä»¶..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "æ¢ä»¶, 動作, 和樣版" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "設定檔 %1 已被鎖定" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "表單 %1 çš„é…ç½®" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "連線æˆåŠŸ" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "內容" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "內容是無效的IPä½å€" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "內容是無效的IPä½å€ç¯„åœ" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "內容類型" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "內容類別" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "回覆地å€" #: etc/initialdata:393 msgid "Correspondence" msgstr "回覆" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "新增申請單回覆" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "無法創建新的自定欄ä½å€¼: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "無法更改承辦人: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "無法新增自訂欄ä½ï¼š%1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "無法新增群組" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "無法創建æœç´¢: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "無法新增申請單。尚未指定表單。" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "無法新增使用者" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "無法刪除æœç´¢ %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "無法載入%1屬性" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "無法載入類新 %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "ç„¡æ³•è¼‰å…¥æ¬„ä½ %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "無法載入群組" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "無法為 %1 載入物件" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "無法設定使用者資訊" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "無法新增附件" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "無法新增æˆå“¡è‡³ç¾¤çµ„" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "無法編譯 %1 碼塊 '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "無法編譯範本碼塊 '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "無法新增更動報告: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "無法創建記錄: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "ç„¡æ³•åˆªé™¤æŽ§åˆ¶é¢æ¿ %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "找ä¸åˆ°æ­¤åˆ—資料" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "找ä¸åˆ°åˆé©çš„ transaction, è·³éŽ" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "找ä¸åˆ°è©²å–®ä½" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "找ä¸åˆ°è©²å€¼" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "無法載入類別 %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "ç„¡æ³•è¼‰å…¥è‡ªè¨‚æ¬„ä½ #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "ç„¡æ³•è¼‰å…¥è‡ªå®šæ¬„ä½ #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "ç„¡æ³•è¼‰å…¥è‡ªè¨‚æ¬„ä½ %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "無法載入申請單 %1 的複本。" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "ç„¡æ³•è¼‰å…¥æŽ§åˆ¶é¢æ¿ %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "無法載入群組 #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "無法載入手續 %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "無法載入éˆçµã€‚" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "無法載入物件 %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "無法載入或建立使用者: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "無法載入表單" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "無法載入表單 #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "無法載入表單 %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "無法載入表單 '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "無法載入手續 %1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "ç„¡æ³•è¼‰å…¥æ¨£æ¿ #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "無法載入指定的單ä½" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "無法載入申請單 '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "在嘗試刪除的éŽç¨‹ä¸­ç„¡æ³•載入主題æˆå“¡" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "無法載入 transaction #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "無法載入使用者" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "無法載入使用者 #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "無法載入使用者 #%1 或使用者 '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "無法載入使用者 '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "無法以解密éŽçš„資料å–代內容: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "無法以加密éŽçš„資料å–代內容: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "ç„¡æ³•è§£æžæº '%1' 到一個URI" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "無法解æžç›®æ¨™ '%1' 到一個URI" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "無法設定%1視察員: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "無法設定ç§é‘°" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "無法解除設定ç§é‘°" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "國家" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "新增" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "新增申請單" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "創建類型" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "新增自訂欄ä½" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "為 %1 表單新增自訂欄ä½" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "創建新文章" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "創建新文章於" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "å»ºç«‹æ–°çš„æŽ§åˆ¶é¢æ¿" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "新增群組" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "創建表單 %1 的新範本" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "新增使用者" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "新增表單" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "新增範本" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "æå‡ºç”³è«‹å–®" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "創建文章" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "創建文章,類型為..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "在此類型中創建文章" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "å‰µå»ºç¾¤çµ„æŽ§åˆ¶é¢æ¿" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "便“šæ­¤é …æ‰‹çºŒå…§çš„æ¨¡ç‰ˆï¼Œæ–°å¢žç”³è«‹å–®" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "å»ºç«‹å€‹äººçš„æŽ§åˆ¶é¢æ¿" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "å»ºç«‹ç³»çµ±æŽ§åˆ¶é¢æ¿" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "新增申請單" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "創建申請單" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "創建ã€ä¿®æ”¹èˆ‡åˆªé™¤è¨ªå•控制列表æ¢ç›®" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "創建ã€ä¿®æ”¹èˆ‡åˆªé™¤è¨ªå•自定欄ä½" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "創建ã€ä¿®æ”¹èˆ‡åˆªé™¤è¨ªå•自定欄ä½å€¼" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "創建ã€ä¿®æ”¹èˆ‡åˆªé™¤è¨ªå•表單" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "創建ã€ä¿®æ”¹èˆ‡åˆªé™¤è¨ªå•已存æœç´¢" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "創建ã€ä¿®æ”¹èˆ‡åˆªé™¤è¨ªå•使用者" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "新增日" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "建立由" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "è‡ªè¨‚æ¬„ä½ %1 新增æˆåŠŸ" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "創建者" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "已創建æœç´¢ %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "建立人" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "實際新增日(相å°å€¼)" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "建立者" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "加密" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "ç¾æœ‰é—œä¿‚" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "ç•¶å‰æœç´¢" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "ç¾æœ‰æˆå“¡" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "ç¾æœ‰æŸ¥è©¢æ¢ä»¶" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "ç¾æœ‰è¦–察員" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "自訂欄ä½" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "%1 的自訂欄ä½" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "表單 %1 的自定欄ä½" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "動作å‰åŸ·è¡Œç¨‹å¼" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "自訂æ¢ä»¶" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "è‡ªå®šæ¬„ä½ #%1 沒有應用到該物件" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "è‡ªè¨‚æ¬„ä½ %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "è‡ªè¨‚æ¬„ä½ %1 ä¸é©ç”¨æ–¼æ­¤ç‰©ä»¶" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "è‡ªè¨‚æ¬„ä½ %1 已有值" #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "è‡ªè¨‚æ¬„ä½ %1 沒有值" #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "找ä¸åˆ°è‡ªè¨‚æ¬„ä½ %1" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "ç„¡æ³•å¾žè‡ªè¨‚æ¬„ä½ %2 中找到 %1 這個欄ä½å€¼" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "無法刪除自訂欄ä½å€¼" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "自訂欄ä½å€¼åˆªé™¤æˆåŠŸ" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "自訂欄ä½" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "自訂欄ä½å€¼" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "自訂" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "自訂基本項目" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "自訂電å­éƒµä»¶åœ°å€" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "自訂電å­éƒµä»¶è¨­å®š" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "è‡ªè¨‚æŽ§åˆ¶é¢æ¿é¸å–®" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "自定 RT 外觀" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA 密碼" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA 帳號" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "æ¯æ—¥å½™å ±" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "æŽ§åˆ¶é¢æ¿" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "æŽ§åˆ¶é¢æ¿ %1 無法被更新為: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "æŽ§åˆ¶é¢æ¿ %1 已更新" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "ç„¡æ³•å»ºç«‹æŽ§åˆ¶é¢æ¿: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "ç„¡æ³•æ›´æ–°æŽ§åˆ¶é¢æ¿: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "æŽ§åˆ¶é¢æ¿å·²æ›´æ–°" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "æŽ§åˆ¶é¢æ¿" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "主é ä¸­çš„æŽ§åˆ¶é¢æ¿" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "資料庫主機" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "資料庫å稱" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "RT 資料庫密碼" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "資料庫通訊埠" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "資料庫類型" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "RT 資料庫帳號" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "日期格å¼" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "日期" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "å二月" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "解密" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "é è¨­è¡¨å–®" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "é è¨­ï¼š%1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "é è¨­ï¼š%1/%2 已自 %3 改為 %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "é è¨­æ ¼å¼" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "刪除" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "刪除範本" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "刪除失敗:%1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "åˆªé™¤ç¾¤çµ„çš„æŽ§åˆ¶é¢æ¿" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "刪除被生命周期é…ç½®åœç”¨çš„æ“ä½œ" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "åˆªé™¤å€‹äººçš„æŽ§åˆ¶é¢æ¿" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "åˆªé™¤ç³»çµ±æŽ§åˆ¶é¢æ¿" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "刪除申請單" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "刪除值" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "%1 已刪除" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "已刪除的表單" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "刪除é å­˜æŸ¥è©¢" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "刪除æœç´¢ %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "刪除此物件å¯èƒ½ç ´å£žåƒè€ƒå®Œæ•´æ€§" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "刪除此物件會é•ååƒè€ƒå®Œæ•´æ€§" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "é§å›ž" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "å¯æŽ¥çºŒè™•ç†çš„申請單" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "å¯æŽ¥çºŒè™•ç†" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "å·²åŠ å…¥å¯æŽ¥çºŒè™•ç†çš„申請單 %1" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "å·²ç§»é™¤å¯æŽ¥çºŒè™•ç†çš„申請單 %1" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "已加入需先處ç†çš„申請單 %1" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "已移除需先處ç†çš„申請單 %1" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "需先處ç†" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "需先處ç†" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "需先處ç†" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "éžæ¸›" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "åœ¨ä»¥ä¸‹æ¬„ä½æè¿°ä¸»é¡Œ" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "æè¿°" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "RT設定的詳細資訊" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "細節" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "æ–¹å‘" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "åœç”¨" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "顯示內容" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "é¡¯ç¤ºæ¬Šé™æŽ§åˆ¶æ¸…å–®" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "顯示文章 %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "顯示欄ä½" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "以 %1GNU GPL%2 第二版發布。" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "å…許一切æ“作" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "網域å稱" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "ä¸è¦åŒ…å« http://,åªéœ€è¦åƒ 'localhost' , 'rt.example.com' å³å¯ã€‚" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "ä¸è¦åˆ·æ–°ä¸»é ã€‚" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "ä¸è¦åˆ·æ–°æœç´¢çµæžœã€‚" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "䏿›´æ–°æ­¤é é¢ã€‚" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "ä¸ä¿¡ä»»è©²å€¼" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "下載" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "下載 dumpfile" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "下拉列表" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "到期日" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "到期日(相å°å€¼)" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "錯誤: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "更新您已打開的申請單" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "æé†’專案的便æ·è¦–圖" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "編輯" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "編輯自訂欄ä½" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "編輯 %1 的自訂欄ä½" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "編輯é©ç”¨æ–¼æ‰€æœ‰ç¾¤çµ„的自訂欄ä½" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "為所有的表單編輯自定欄ä½" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "編輯é©ç”¨æ–¼æ‰€æœ‰ä½¿ç”¨è€…的自訂欄ä½" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "編輯所有類型的文章自定欄ä½" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "編輯é©ç”¨æ–¼æ‰€æœ‰è¡¨å–®å…§ç”³è«‹å–®çš„自訂欄ä½" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "編輯申請單關係" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "編輯查詢" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "編輯查詢" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "編輯全域主題層次" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "編輯全域範本" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "編輯 %1 的主題層次" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "ç·¨è¼¯è‡ªè¨‚æ¬„ä½ %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "編輯群組 %1 çš„æˆå“¡è³‡è¨Š" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "有效編號" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "éœ€è¦æŒ‡å®šèµ·å§‹ç”³è«‹å–®æˆ–目的申請單" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "您å¯èƒ½æ²’有檢視é å­˜æŸ¥è©¢%1çš„æ¬Šé™æˆ–è­˜åˆ¥ç¢¼ä¸æ­£ç¢º" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "é›»å­éƒµä»¶ä¿¡ç®±" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "é›»å­éƒµä»¶ä¿¡ç®±" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "郵件摘è¦" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "此電å­éƒµä»¶ä¿¡ç®±å·²è¢«ä½¿ç”¨" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "郵件投éž" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "周期性發é€éƒµä»¶æ‘˜è¦çš„範本" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "é›»å­éƒµä»¶ä¿¡ç®±ä½å€" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "已啟用" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "啟用 (ä¸å‹¾é¸å°‡åœç”¨è©²é¡žåž‹)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "啟用(å–æ¶ˆå‹¾é¸å°‡åœç”¨æ­¤è‡ªè¨‚欄ä½)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "啟用(å–æ¶ˆå‹¾é¸å°‡åœç”¨æ­¤ç¾¤çµ„)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "啟用(å–æ¶ˆå‹¾é¸å°‡åœç”¨æ­¤è¡¨å–®)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "啟用類型" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "已啟用的表單" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "已啟用並滿足æœç´¢æ¢ä»¶çš„表單" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "啟用狀態 %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "加密" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "é è¨­åР坆" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "加密/解密" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "加密/解密申請單#%2的事務#%1" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "輸入與該文章相關的文章ã€ç”³è«‹å–®æˆ–å…¶ä»–URL" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "輸入多個 IP ä½å€ç¯„åœ" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "輸入多個 IP ä½å€" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "éµå…¥å¤šé‡é …ç›®" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "輸入多個值(帶自動補全功能)" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "éµå…¥æ¬²å°‡ç‰©ä»¶é€£çµè‡³çš„物件或 URI。項目之間請以空白隔開。" #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "輸入一個 IP ä½å€" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "輸入一個 IP ä½å€ç¯„åœ" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "éµå…¥å–®ä¸€é …ç›®" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "輸入一個值(帶自動補全功能)" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "éµå…¥æ¬²å°‡è¡¨å–®é€£çµè‡³çš„物件或 URI。項目之間請以空白隔開。" #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "éµå…¥ç”³è«‹å–®å¯éˆçµåˆ°çš„申請單編號或網å€ã€‚項目之間請以空白隔開。" #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "最多å¯è¼¸å…¥ %1 個 IP ä½å€ç¯„åœ" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "最多å¯è¼¸å…¥ %1 個 IP ä½å€" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "éµå…¥æœ€å¤š %1 個項目" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "輸入最多%1個值(帶自動補全功能)" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "錯誤" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "發給RTæ“æœ‰äººçš„錯誤: 公鑰" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "錯誤: 表單ä¸å­˜åœ¨" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "錯誤: 錯誤的GnuPG資料" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "錯誤: ç„¡æ³•æ”¹è®Šç•¶å‰æœç´¢çš„éš±ç§å€¼" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "錯誤: 無法載入已存æœç´¢ %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "錯誤: 沒有ç§é‘°" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "錯誤: 公鑰" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "錯誤: æœç´¢ %1 未更新: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "調整申請單優先等級" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "é è¨ˆ" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "所有人" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "範例:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "éŽæœŸ" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "é¡å¤–ç¾æ³" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "外部èªè­‰å·²å•Ÿç”¨" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "備註" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "æå–文章" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "æå–主題標簽" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "從申請單 #%1 æå–新文章" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "從申請單 #%1 中æå–文章至類型 %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "從æŸä¸€äº‹å‹™çš„主題æå–標簽並加到申請單的主題" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "連接資料庫失敗: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "建立 %1 屬性失敗" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "找ä¸åˆ°ã€Œå…§éƒ¨æˆå“¡ã€è™›æ“¬ç¾¤çµ„的使用者。" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "找ä¸åˆ°ã€Œéžå…§éƒ¨æˆå“¡ã€è™›æ“¬ç¾¤çµ„的使用者。" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "載入%1 %2失敗" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "載入%1 %2失敗: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "無法載入模組 %1。(%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "無法為 %1 載入物件。" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "載入樣æ¿å¤±æ•—" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "å‰–æžæ¨£æ¿å¤±æ•—" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "二月" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "饋é€" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "欄ä½" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "欄ä½å€¼ä¾†æº:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "檔å" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "å¡«å¯«åƒæ•¸" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "用哪種é¡è‰²å¡«å……塊" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "填入多個文字框" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "填入多個 Wiki 文字框" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "填入一個文字框" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "填入一個 Wiki 文字框" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "填入一個網å€" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "填入最多 %1 個文字框" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "填入最多 %1 個 Wiki 文字框" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "最終順ä½" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "最終順ä½" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "æœç´¢ä½¿ç”¨è€…滿足" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "尋找群組的" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "尋找人員的" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "尋找申請單" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "指紋" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "完æˆ" #: share/html/Elements/Tabs:878 msgid "First" msgstr "第一項" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "強制更æ›" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "æ ¼å¼" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "å¾€å‰" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "轉發消æ¯" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "轉發消æ¯ä¸¦è¿”回" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "轉發申請單" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "轉發資訊至 RT 之外" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "轉發申請單#%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "轉發事務#%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "轉發申請單至 %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "找到 %1 張申請單" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "已找到物件" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "頻率" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "星期五" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "星期五" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD 是åœç”¨æˆ–是尚未安è£ï¼Œæ‚¨å¯ä»¥ä¸Šå‚³ä¸€å€‹åœ–ç‰‡ï¼Œä½†æ‚¨ä¸æœƒæœ‰è‡ªå‹•é¡è‰²å»ºè­°ã€‚" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "通用" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "一般權é™" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "准備開始" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "交予 %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "全域設定" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "全域屬性" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "全域自訂欄ä½è¨­å®š" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "æˆåŠŸå„²å­˜å…¨åŸŸå…¥å£å…ƒä»¶ %1。" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "執行" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "跳到使用者" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "執行" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "跳到申請單" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "跳到申請單" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "圖表" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "圖示屬性" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "圖表已åœç”¨" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "群組" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "群組權é™" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "群組內已有此æˆå“¡: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "無法新增群組:%1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "群組新增完畢" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "å·²åœç”¨ç¾¤çµ„" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "已啟用群組" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "群組沒有這個æˆå“¡" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "群組å稱 '%1' 已經被使用" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "找ä¸åˆ°ç¾¤çµ„" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "群組" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "ä¸èƒ½å°‡ç¾¤çµ„設為群組內æˆå“¡" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "ç¬¦åˆæŸ¥è©¢æ¢ä»¶çš„群組" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "使用者所屬的群組" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "æ“æœ‰æˆå“¡" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "轉發申請單的郵件頭" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "轉發消æ¯çš„郵件頭" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "å—¨ï¼" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "幫忙我們為 RT 設定有用的é è¨­å€¼" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "éš±è—引用文本" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "紀錄" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "文章 #%1 的歷å²" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "群組 %1 的紀錄" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "表單%1的歷å²è¨˜éŒ„" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "使用者 %1 的紀錄" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "家庭電話" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "主é åˆ·æ–°é–“隔時間" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "主é " #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "時" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "å°æ™‚" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "我有 %quant(%1,份固體攪拌器)。" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "編號" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "身份" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "若簽核單é­åˆ°é§å›žï¼Œå‰‡é€£å¸¶é§å›žåŽŸç”³è«‹å–®ï¼Œä¸¦åˆªé™¤å…¶ä»–ç›¸é—œçš„å¾…ç°½æ ¸äº‹é …" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "如果此工具程å¼ç‚º setgid,惡æ„的本地端使用者å³èƒ½ç”±æ­¤å–å¾— RT 的管ç†å“¡æ¬Šé™ã€‚" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "如果已經有了正常工作的RT,在這里您還å¯ä»¥ç¢ºå®šè³‡æ–™åº«æ­£åœ¨é‹è¡Œä¸¦ä¸”RTå¯ä»¥æ­£å¸¸è¨ªå•它。完æˆä¹‹å¾Œï¼Œè«‹é‡å•ŸRT。" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "如果您改變了 RT é‹è¡Œçš„端å£ï¼Œæ‚¨éœ€è¦é‡å•Ÿä¼ºæœå™¨æ‰èƒ½ç™»éŒ„。" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "若您已更新以上資料,請記得按一下" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "如果你想用的資料庫ä¸å†åˆ—表里,說明RT找ä¸åˆ°è³‡æ–™åº«é©…動。å¯ä»¥å˜—試使用%1下載並安è£DBD::MySQL,DBD::Oracle或者DBD::Pg" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "%1 的值錯誤" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "此欄ä½å€¼ä¸å¯æ›´å‹•" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "éžæ´»å‹•的申請單" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "包括文章:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "包括列表中åœç”¨çš„類型" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "列出åœç”¨çš„自訂欄ä½" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "列出åœç”¨çš„群組" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "列出åœç”¨çš„表單" #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "列出åœç”¨çš„使用者" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "引入é é¢" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "包括副主題" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "單個消æ¯" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "通知RTæ“æœ‰äººä½¿ç”¨è€…é‡åˆ°å…¬é‘°å•題" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "通知使用者其訂閱的一個表單ä¸å­˜åœ¨" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "通知使用者其發é€çš„æ¶ˆæ¯å«æœ‰ç„¡æ•ˆçš„GnuPG資料" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "通知使用者其é‡åˆ°å…¬é‘°å•題並且接收ä¸åˆ°åŠ å¯†çš„å…§å®¹" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "通知使用者密碼已被é‡ç½®" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "通知使用者我們收到加密的郵件但是沒有å¯ç”¨çš„ç§é‘°ä¾†è§£å¯†" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "åˆå§‹å„ªå…ˆé †ä½" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "åˆå§‹å„ªå…ˆé †ä½" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "åˆå§‹åŒ–資料庫" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "輸入錯誤" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "è¼¸å…¥å¿…é ˆç¬¦åˆ %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "內部錯誤:%1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "內部錯誤: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "無效 %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "無效 %1 åƒæ•¸" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "無效的 %1: '%2' ä¸åƒæ˜¯é›»å­éƒµä»¶åœ°å€" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "無效的 %1: 必須是數字" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "無效類型" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "無效自定欄ä½å€¼ä¾†æº" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "無效表單,無法應用類型: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "無效呈ç¾é¡žåž‹" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "無效的類型 %1 自定欄ä½å‘ˆç¾é¡žåž‹" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "錯誤的資料" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "無效的物件" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "ä¸åˆç†çš„æ¨£å¼ï¼š%1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "錯誤的表單" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "錯誤的權é™" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "無效的權é™. ä¸èƒ½è¦ç¯„化權é™'%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "無效的郵箱" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "%1 的值錯誤" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "錯誤的自訂欄ä½å€¼" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "沒有加密" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "請絕å°ä¸è¦è®“未具權é™çš„使用者執行此工具程å¼ã€‚" #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "建議您新增一個隸屬於正確群組的低權é™ç³»çµ±ä½¿ç”¨è€…,並以該身份執行此工具程å¼ã€‚" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "它接å—ä¸‹åˆ—åƒæ•¸ï¼š" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "斜體" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "一月" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "加入或退出群組" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "七月" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "全部資訊" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "六月" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "ä¿æŒ'localhost'如果你ä¸ç¢ºå®šçš„è©±ã€‚ä¿æŒç©ºç™½æ„å‘³è‘—é€šéŽæœ¬åœ°socketéˆçµ" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "基於關éµå­—與直觀的æœç´¢" #: lib/RT/User.pm:97 msgid "Lang" msgstr "使用語言" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "語言" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "大" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "上次更新" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "上次è¯çµ¡" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "上次è¯çµ¡æ—¥æœŸ" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "上次更新" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "最後更新由" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "上次更新" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "最後更新由" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "上次更新" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "上次更新者" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "上次更新(相å°å€¼)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "è‹¥è¦ä½¿ç”¨é è¨­å€¼ä½œç‚ºè³‡æ–™åº«è¨­å®šï¼Œè«‹ä¿ç•™ç©ºç™½" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "ä¿æŒç©ºç™½æ„味著使用資料庫管ç†å“¡çš„é è¨­å€¼" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "剩餘時間" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "圖例" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "字符長度;使用0æ„味著以inlineæ–¹å¼é¡¯ç¤ºæ‰€æœ‰æ¶ˆæ¯" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "å…許這å使用者登入" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "內部æˆå“¡ï¼ˆå…·æœ‰å€‹äººæ¬Šé™ï¼‰" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "é–‹å§‹å§ï¼" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "生命周期" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "éˆçµ" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "æ­¤éˆçµå·²å­˜åœ¨" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "找ä¸åˆ°éˆçµ" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "éˆçµç”³è«‹å–® #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "將值連çµè‡³" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "被éˆçµ" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "éˆçµæº" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "連çµè‡³" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "éˆçµ" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "列表" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "載入" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "載入已存æœç´¢" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "載入已存æœç´¢" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "載入é å­˜æŸ¥è©¢ï¼š" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "已載入%1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "載入原本的é å­˜æŸ¥è©¢ \"%1\"" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "已載入的 Perl 模組" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "載入é å­˜æŸ¥è©¢ \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "正在載入..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "本地" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "本地化日期" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "ä½ç½®" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "已登入" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "使用者:%1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "登出" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "登入" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "登出" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "å°æ‡‰çš„類別ä¸ç¬¦" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "郵件" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "éˆçµçš„主類型" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "新增承辦人" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "æ–°å¢žç¾æ³" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "新增到期日" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "新增實際起始日期" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "新增應起始日期" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "新增報告日期" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "新增優先順ä½" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "新增表單" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "新增主題" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "管ç†è‡ªè¨‚欄ä½åŠæ¬„ä½å€¼" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "管ç†ç¾¤çµ„åŠæ‰€å±¬æˆå“¡" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "管ç†é©ç”¨æ–¼æ‰€æœ‰è¡¨å–®çš„屬性與設定" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "管ç†å„表單åŠç›¸é—œå±¬æ€§" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "管ç†å·²å­˜åœ–åƒ" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "管ç†ä½¿ç”¨è€…與密碼" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "三月" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "標記所有消æ¯ç‚ºå·²è®€" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Mason範本æœç´¢é †åº" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "最大值" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "inline消æ¯çš„æœ€å¤§é•·åº¦" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "五月" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "我" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "æˆå“¡" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "æˆå“¡ %1 新增完畢" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "æˆå“¡ %1 刪除完畢" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "新增æˆå“¡å®Œç•¢: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "æˆå“¡å·²åˆªé™¤" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "æˆå“¡æœªåˆªé™¤" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "隸屬於" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "æˆå“¡" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "所屬群組 %1 加入完畢" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "所屬群組 %1 移除完畢" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "所屬群組" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "使用者 %1 的所屬群組" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "æ•´åˆå®Œç•¢" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "æ•´åˆå¤±æ•—。無法設定 EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "æ•´åˆé€²" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "已整åˆé€² %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "訊æ¯" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "由於資訊éŽå¤§ï¼Œè³‡è¨Šå…§å®¹æœªé¡¯ç¤º" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "發é€è€…è¦æ±‚消æ¯ä¸èƒ½inline,所以未予顯示。" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "消æ¯ä¸æ˜¯æ™®é€šæ–‡æœ¬ï¼Œæ‰€ä»¥æœªäºˆé¡¯ç¤ºã€‚" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "è¨Šæ¯æ–¹å¡Šçš„高度" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "è¨Šæ¯æ–¹å¡Šçš„寬度" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "無法紀錄訊æ¯" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "給使用者的消æ¯" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "訊æ¯ç´€éŒ„æˆåŠŸ" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "最å°å¯†ç¢¼é•·åº¦" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "分é˜" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "雜項" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "缺少主éµå€¼ï¼Ÿ(%1)" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "行動電話" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "移動電話" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "更改" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "更改æˆå“¡" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "更改腳本範本" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "更改腳本" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "更改 %1 表單內的自訂欄ä½" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "更改文章 #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "更改é©ç”¨ %1 的物件" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "更改自定欄ä½å€¼" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "更改申請單 #%1 的日期" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "更改全域自訂欄ä½" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "更改全域設定的群組權é™" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "更改全域主題" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "更改全域設定的使用者權é™" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "更改群組表單" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "更改群組æˆå“¡åå–®" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "更改群組資料åŠåˆªé™¤ç¾¤çµ„" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "更改類型 %1 的群組權é™" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "æ›´æ”¹è‡ªè¨‚æ¬„ä½ %1 的群組權é™" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "更改群組 %1 的群組權é™" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "更改表單 %1 的群組權é™" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "更改該類型的元資料與自定欄ä½" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "更改個人的帳號資訊" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "更改申請單 #%1 éˆçµåˆ°çš„人員" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "ä¿®æ”¹å€‹äººçš„æŽ§åˆ¶é¢æ¿" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "更改表單的關注者" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "更改表單 %1 的手續" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "更改é©ç”¨æ–¼æ‰€æœ‰è¡¨å–®çš„æ‰‹çºŒ" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "ä¿®æ”¹ç³»çµ±æŽ§åˆ¶é¢æ¿" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "更改範本 %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "更改表單 %2 中的範本 %1" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "更改é©ç”¨æ–¼æ‰€æœ‰è¡¨å–®çš„範本" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "更改表單 %1 的內容" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "ä¿®æ”¹æŽ§åˆ¶é¢æ¿ %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "更改é è¨­çš„「RT ä¸€è¦½ã€æª¢è¦–" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "更改群組 %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "ä¿®æ”¹æŽ§åˆ¶é¢æ¿ %1 的訂閱" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "更改使用者 %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "更改該æœç´¢..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "更改申請單 # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "更改申請單 # %1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "更改申請單" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "更改 %1 的主題" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "更改與該類型相關的主題層次" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "更改該類型的文章主題" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "更改類型 %1 的使用者權é™" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "æ›´æ”¹è‡ªè¨‚æ¬„ä½ %1 的使用者權é™" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "更改群組 %1 的使用者權é™" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "更改表單 %1 的使用者權é™" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "更改申請單 #%1 的郵件接收者" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "模組" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "星期一" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "星期一" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "關於申請者的更多情æ³" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "多é‡" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "必須指定 'Name' 的屬性" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "我的 %1 申請單" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "表單簽核" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "今日事" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "我的æé†’專案" #: etc/initialdata:890 msgid "My Tickets" msgstr "表單處ç†" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "表單簽核" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "æˆ‘çš„æŽ§åˆ¶é¢æ¿" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "我的æé†’專案" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "我的é å­˜æŸ¥è©¢" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "(æ›åˆ—)" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "å稱" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "帳號已有人使用" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "å稱:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "從未更動" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "新建立" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "新文章" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "新表單" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "新增關係" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "新的待簽核事項" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "新增查詢" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "新訊æ¯" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "新的密碼" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "é€å‡ºæ–°å¯†ç¢¼é€šçŸ¥" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "新增æé†’項目:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "æå‡ºç”³è«‹å–®" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "沒有新申請單" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "該表單的新申請單的狀態ä¸èƒ½ç‚º '%1'." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "新視察員" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "下一項" #: lib/RT/User.pm:96 msgid "NickName" msgstr "暱稱" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "暱稱" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "å¦" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "%1沒有載入" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "æ²’æœ‰åŒ¹é… %1 的文章" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "尚未定義類別" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "æ²’æœ‰æ‰¾åˆ°åŒ¹é…æœç´¢æ¢ä»¶çš„類型." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "無自訂欄ä½" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "尚未定義自訂欄ä½" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "尚未定義群組" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "沒有查詢" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "尚未定義表單" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "沒有找到 RT 使用者. 請諮詢您的 RT 管ç†å“¡." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "沒有主題" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "沒有範本" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "æš«ä¸è™•ç†" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "未指定欄ä½" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "沒有å°é€™å使用者的評論" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "æ²’æœ‰å° %1 çš„æè¿°" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "未指定群組" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "找ä¸åˆ°ç¬¦åˆæŸ¥è©¢æ¢ä»¶çš„群組。" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "沒有é©åˆçš„密鑰" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "沒有附上訊æ¯" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "沒有æä¾›åå­—" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "ä¸è¨±è¦åР坆" #: lib/RT/User.pm:970 msgid "No password set" msgstr "沒有設定密碼" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "沒有新增表單的權é™" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "沒有在表單 '%1' 新增申請單的權é™" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "沒有顯示該申請單的權é™" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "沒有儲存全域é å­˜æŸ¥è©¢çš„æ¬Šé™" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "沒有設定權é™" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "沒有查看文章的權é™" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "沒有檢視申請單更新的權é™" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "未指定單ä½ã€‚" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "ç„¡ç§å¯†é‡‘é‘°" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "找ä¸åˆ°ç¬¦åˆæŸ¥è©¢æ¢ä»¶çš„表單。" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "沒有指定的權é™" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "找ä¸åˆ°æ¬Šé™" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "沒有è¦é€²è¡Œçš„æŸ¥è©¢" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "沒有標題" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "沒有密鑰或者它ä¸èƒ½åšç°½å" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "沒有找到申請單" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "未指定更動報告類別" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "ç„¡å¯ç”¨çš„金鑰" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "找ä¸åˆ°ç¬¦åˆæŸ¥è©¢æ¢ä»¶çš„使用者。" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "沒有發é€è‡³ _Set的值!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "沒有人" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "ç„¡" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "欄ä½ä¸å­˜åœ¨ï¼Ÿ" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "找ä¸åˆ°" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "尚未登入" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "尚未設定" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "未使用移動ç€è¦½å™¨?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "備註" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "無法é€å‡ºé€šçŸ¥" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "通知管ç†å“¡å‰¯æœ¬æ”¶ä»¶äºº" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "以評論方å¼é€šçŸ¥ç®¡ç†å“¡å‰¯æœ¬æ”¶ä»¶äºº" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "通知副本收件人" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "以評論方å¼é€šçŸ¥å‰¯æœ¬æ”¶ä»¶äºº" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "通知其他收件人" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "以評論方å¼é€šçŸ¥å…¶ä»–收件人" #: etc/initialdata:47 msgid "Notify Owner" msgstr "通知承辦人" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "以評論方å¼é€šçŸ¥æ‰¿è¾¦äºº" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "通知承辦人申請單已é§å›ž" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "é€šçŸ¥æ“æœ‰äººç”³è«‹å–®å·²è¢«æ‰¹å‡†ï¼Œå¯ä»¥é€²è¡Œä¸‹ä¸€æ­¥" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "é€šçŸ¥æ“æœ‰äººç”³è«‹å–®å·²è¢«æ‰¹å‡†" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "é€šçŸ¥æ“æœ‰äººï¼Œç”³è«‹äººï¼ŒæŠ„é€äººå’Œç®¡ç†æŠ„é€äºº" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "以注釋方å¼é€šçŸ¥æ“有人,申請人,抄é€äººå’Œç®¡ç†æŠ„é€äºº" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "æ•´ç†å¾…簽核事項,通知承辦人åŠç®¡ç†å“¡å‰¯æœ¬æ”¶ä»¶äºº" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "通知申請者申請單已被所有批准者批准" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "通知申請者申請單已被æŸå€‹æ‰¹å‡†è€…批准" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "通知申請人" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "通知申請人åŠå‰¯æœ¬æ”¶ä»¶äºº" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "以評論方å¼é€šçŸ¥ç”³è«‹äººåŠå‰¯æœ¬æ”¶ä»¶äºº" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "若有未讀å–訊æ¯è«‹é€šçŸ¥æˆ‘" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "å一月" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "物件" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "無法新增物件" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "無法刪除物件" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "物件新增完畢" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "物件刪除完畢" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "物件類別ä¸ç¬¦" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "物件列表為空" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "åæœˆ" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "在 %1 時,%2 寫到:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "關閉時" #: etc/initialdata:170 msgid "On Comment" msgstr "評論時" #: etc/initialdata:142 msgid "On Correspond" msgstr "回覆申請單時" #: etc/initialdata:131 msgid "On Create" msgstr "新增申請單時" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "承辦人改變時" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "å„ªå…ˆé †ä½æ”¹è®Šæ™‚" #: etc/initialdata:199 msgid "On Queue Change" msgstr "表單改變時" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "é§å›žæ™‚" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "釿–°æ‰“開時" #: etc/initialdata:205 msgid "On Resolve" msgstr "解決申請單時" #: etc/initialdata:176 msgid "On Status Change" msgstr "ç¾æ³æ”¹è®Šæ™‚" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "發生更動時" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "密件副本(僅此一次)" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "副本(僅此一次)" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "僅顯示 %1 之後新增的申請單" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "僅顯示 %1 之剿–°å¢žçš„申請單" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "僅顯示é©ç”¨æ–¼ä¸‹åˆ—項目的自訂欄ä½ï¼š" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "" #: etc/initialdata:108 msgid "Open Tickets" msgstr "開啟申請單" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "開啟 URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "開啟的申請單" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "收到回覆時å³é–‹å•Ÿç”³è«‹å–®" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "é¸é …" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "é¸é …" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "æŽ’åºæ–¹å¼" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "組織å稱" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "原申請單:#%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "已紀錄發é€çš„評論郵件" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "已紀錄發é€çš„郵件" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "發é€çš„郵件" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "總覽" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "承辦申請單" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "承辦人" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "æ“æœ‰äºº'%1'æ²’æœ‰æ¬Šé™æ“有此申請單" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "承辦人已從 %1 改為 %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "強制將承辦人從 %1 改為 %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "承辦人å稱" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "é " #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "第1é (å…±1é )" #: share/html/dhandler:48 msgid "Page not found" msgstr "找ä¸åˆ°é é¢" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "呼å«å™¨" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "尋呼電話" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "æ¯ç”³è«‹å–®" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "密碼" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "密碼更改完畢" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "密碼未設定" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "密碼長度至少必須為 %1 個字元" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "密碼未列å°" #: lib/RT/User.pm:980 msgid "Password set" msgstr "密碼已設定" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "密碼:%1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "密碼:權é™ä¸è¶³" #: etc/initialdata:714 msgid "PasswordChange" msgstr "密碼更改" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "密碼確èªå¤±æ•—。" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "sendmail 所在的路徑" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "人員" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "與表單 %1 有關的人" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "執行使用者自訂的動作" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl 設定" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Perl庫的æœç´¢é †åº" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "永久刪除 RT 的資料" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "權é™ä¸è¶³" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "權é™ä¸è¶³" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "電話號碼" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "請檢查 URL 並å†è©¦ä¸€æ¬¡" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "請輸入您目å‰çš„密碼." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "請輸入您目å‰çš„密碼." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "å¯èƒ½çš„éš±è—æœç´¢" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "å好" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "%2的首é¸é …%1" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "æˆåŠŸå„²å­˜ %1 çš„å好。" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "使用者%1的首é¸é …å·²ä¿å­˜." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "已儲存設定" #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "首é¸å¯†é‘°: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "首é¸å¯†é‘°" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "é å‚™å‹•作完畢" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "上一項" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "找ä¸åˆ°å–®ä½ %1。" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "è¼¸å‡ºæ‘˜è¦æ¶ˆæ¯åˆ°çµ‚端; ä¸è¦ç™¼é€ä¹Ÿä¸è¦æ¨™è¨˜ç‚ºå·²ç™¼é€" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "輸出此消æ¯" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "優先順ä½" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "éš±ç§" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "éš±ç§è¨­å®šï¼š" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "ç§å¯†é‡‘é‘°" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "內部æˆå“¡" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "內部æˆå“¡ç‹€æ…‹ï¼š%1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "內部æˆå“¡" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "ä¸ç”¨äº‹å‹™é€²è¡Œè™•ç†ï¼Œä¸€äº›æ¢ä»¶å’Œå‹•作å¯èƒ½å¤±æ•—,請考慮使用--transactionåƒæ•¸" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "內部用的虛擬群組" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "需è¦å…¬é‘°'0x%1'來核實簽å" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "元件" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "查詢" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "建立查詢" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "表單" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "找ä¸åˆ°è¡¨å–® %1" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "表單å稱" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "表單已存在" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "無法新增表單" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "無法載入表單" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "表單新增完畢" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "表單編號" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "找ä¸åˆ°è¡¨å–®" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "表單的密鑰" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "è¡¨å–®çš„ç®¡ç†æŠ„é€äºº" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "表單的抄é€äºº" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "表單å稱" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "表單視察員" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "表單" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "由我管ç†çš„表單" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "管ç†å“¡å‰¯æœ¬æœ‰æˆ‘的表單" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "表單一覽" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "快速建立申請單" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT 管ç†é é¢" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "RT管ç†è€…郵箱" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT設定" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT 錯誤" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT大å°" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT 一覽" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "使用者 %1 çš„ RT 一覽" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT能通éŽéƒµä»¶å’Œä½¿ç”¨è€…交æµï¼Œæ‚¨éœ€è¦å‘Šè¨´æˆ‘們sendmail的路徑。RT也需è¦çŸ¥é“當有人發é€ç„¡æ•ˆçš„郵件時應該發é€é€šçŸ¥åˆ°å“ªå€‹éƒµç®±ï¼Œé€™å€‹éƒµç®±ä¸èƒ½å’ŒRT接收郵件的郵箱一樣" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT 坿–¼é¡¯ç¤ºæ­¤è‡ªè¨‚æ¬„ä½æ™‚引入其他網站的內容" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT å¯å°‡æ­¤è‡ªè¨‚欄ä½çš„值視為連往其他網站的超éˆçµ" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT核心變é‡" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "%1 專用æµç¨‹ç³»çµ±" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RTæ˜¯ä¸€å€‹ä¼æ¥­ç´šçš„å•題跟蹤系統,您å¯ä»¥æœ‰æ•ˆåœ°ç®¡ç†ä»»å‹™ï¼Œè­°é¡Œï¼Œå•題或者別的其他類似的事務" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT在100å¼·å…¬å¸ï¼Œå€‹äººæ¥­å‹™ï¼Œæ”¿åºœä»£ç†ï¼Œæ•™è‚²æ©Ÿæ§‹ï¼Œé†«é™¢ï¼Œå…¬ç›Šçµ„織,NGO,圖書館,開æºå°ˆæ¡ˆé‚„有其他的å„種組織里廣泛使用,éåŠä¸ƒå¤§æ´²ï¼ˆæ˜¯çš„ï¼Œç”šè‡³åœ¨å—æ¥µæ´²ï¼‰ã€‚" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT將使用這個使用者來連接資料庫,它將會被自動創建" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT將創建一個\"root\"使用者並且用它作為密碼" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT 會將 %1 åŠ %2 ç½®æ›æˆç´€éŒ„編號åŠè‡ªè¨‚欄ä½" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT將使用此字串來識別您的此次安è£ä¸¦åœ¨éƒµä»¶çš„主題里æœç´¢å®ƒä»¥ä¾¿ç¢ºå®šè©²æ¶ˆæ¯æ˜¯å±¬æ–¼å“ªå€‹ç”³è«‹å–®çš„。我們建議您把它設定為您的域å。" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RTå¯ä»¥ä½¿ç”¨å¤šç¨®è³‡æ–™åº«ã€‚MySQL, PostgreSQL, Oracle and SQLite全部都支æ´ã€‚" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "é…置里的RTAddressRegexpé¸é …ä¸åŒ¹é…%1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "真實姓å" #: lib/RT/User.pm:95 msgid "RealName" msgstr "真實姓å" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "收件人" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "記錄所有的更新" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "éžæ­¸çš„æˆå“¡" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "åƒè€ƒ" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "已加入 %1 為åƒè€ƒæœ¬ç”³è«‹å–®" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "已移除 %1 為åƒè€ƒæœ¬ç”³è«‹å–®" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "已加入åƒè€ƒç”³è«‹å–® %1" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "已移除åƒè€ƒç”³è«‹å–® %1" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "被åƒè€ƒ" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "被åƒè€ƒ" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "åƒè€ƒ" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "åƒè€ƒ" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "æ›´æ–°" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "æ¯ %1 åˆ†é˜æ›´æ–°é é¢" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "記ä½é è¨­è¡¨å–®" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "æé†’" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "已建立æé†’項目「%1ã€" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "å·²å®Œæˆæé†’é …ç›®ã€Œ%1ã€" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "已釿–°é–‹å•Ÿæé†’項目「%1ã€" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "æé†’é …ç›®" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "申請單 #%1 çš„æé†’é …ç›®" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "移除管ç†å“¡å‰¯æœ¬" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "移除書簽" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "移除副本" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "移除申請人" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "呈ç¾é¡žåž‹" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "用文本框來替代所有者的下拉列表" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "回覆" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "回覆地å€" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "回覆申請人" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "å°ç”³è«‹å–®é€²è¡Œå›žè¦†" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "申請人" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "申請人群組" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "申請人" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "未指定必è¦çš„åƒæ•¸ã€Œ%1ã€" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "é‡è¨­" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "é‡ç½® RT" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "é‡ç½®ç§å¯†èªè­‰ç¢¼" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "é‡è¨­ç‚ºé è¨­å€¼" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "ä½è™•" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "解決" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "解決申請單 #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "已解決" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "解決日(相å°å€¼)" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "回複" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "çµæžœ" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "返回申請單" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "冿¬¡è¼¸å…¥å¯†ç¢¼" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "復原" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "權é™è¼‰å…¥å®Œç•¢" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "無法撤消權é™" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "權é™ä¸¦æœªè¼‰å…¥ã€‚" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "無法將權é™è³¦äºˆ %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "管ç†å“¡çš„æ¬Šé™" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "工作人員的權é™" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "角色" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "行" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "æ¯æ ¼ç­†æ•¸" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "æ¯é ç­†æ•¸" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL 查詢" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite是一個ä¸éœ€è¦ä»»ä½•é…置或æœå‹™çš„資料庫,盡管如此,RT的作者們建議僅在測試,演示和開發時使用它,因為它ä¸èƒ½å‹ä»»å·¥ä½œä¸­é«˜è² è¼‰çš„RTæœå‹™" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "星期六" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "星期六" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "儲存" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "儲存更改" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "儲存å好" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "作為新的ä¿å­˜" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "ä¿å­˜ç‚ºæ–°æ–‡ä»¶" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "ä¿å­˜è©²æœç´¢" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "å·²ä¿å­˜%1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "已存æœç´¢" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "已存圖表" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "未找到已存æœç´¢ %1" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "é å­˜æŸ¥è©¢" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "手續 #%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "手續新增完畢" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "手續" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "腳本和收件人" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "查詢" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "æœç´¢ %1已更新" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "æœç´¢æ–‡ç« " #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "æœå°‹å好" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "æœç´¢æ–‡ç« åŒ¹é…" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "簽核單查詢" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "æœç´¢æ–‡ç« " #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "申請單查詢" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "æœå°‹é¸é …" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "æœç´¢çµæžœ" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "æœç´¢çµæžœåˆ·æ–°é–“éš”" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "ç§å¯†èªè­‰ç¢¼" #: bin/rt-crontool:352 msgid "Security:" msgstr "安全性:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "åƒè¦‹ï¼š" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "在該類型æœç´¢æ–‡ç« " #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "ä¿è­‰é¡žåž‹å­˜åœ¨" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "鏿“‡" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "鏿“‡æ‰€æœ‰é¡žåž‹æ–‡ç« çš„自定欄ä½" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "鏿“‡è³‡æ–™åº«é¡žåž‹" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "鏿“‡é¡žåž‹" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "鏿“‡è‡ªè¨‚欄ä½" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "鏿“‡æ®µè½çš„é¡è‰²" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "鏿“‡ç¾¤çµ„" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "鏿“‡è¡¨å–®" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "ç‚ºæ‚¨æ–°çš„ç”³è«‹å–®é¸æ“‡ä¸€å€‹è¡¨å–®" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "鏿“‡æ®µè½" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "鏿“‡ä½¿ç”¨è€…" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "從 %1 䏭鏿“‡æ–‡ç« " #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "鏿“‡æ–‡ç« ä»¥åŒ…括" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "鏿“‡å¦ä¸€ç¨®èªžè¨€" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "鏿“‡æ¡†" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "鏿“‡å°æ‰€æœ‰è¡¨å–®çš„自訂欄ä½" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "鏿“‡é©ç”¨æ–¼æ‰€æœ‰ä½¿ç”¨è€…群組的自訂欄ä½" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "鏿“‡é©ç”¨æ–¼æ‰€æœ‰ä½¿ç”¨è€…的自訂欄ä½" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "鏿“‡é©ç”¨æ–¼æ‰€æœ‰è¡¨å–®å…§ç”³è«‹å–®çš„自訂欄ä½" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "鏿“‡é©ç”¨æ–¼æ‰€æœ‰è¡¨å–®å…§ç”³è«‹å–®ä¹‹æ›´å‹•的自訂欄ä½" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "鏿“‡æ—¥æœŸ" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "鏿“‡æ™‚é–“" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "鏿“‡å¤šå€‹æ—¥æœŸ" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "鏿“‡å¤šå€‹æ™‚é–“" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "鏿“‡å¤šé‡é …ç›®" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "鏿“‡å–®ä¸€é …ç›®" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "鏿“‡è¦åœ¨ã€ŒRT 一覽ã€é é¢é¡¯ç¤ºçš„表單" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "鏿“‡è©²æ–‡ç« çš„主題" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "最多å¯é¸æ“‡ %1 個日期" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "最多å¯é¸æ“‡ %1 個時間" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "鏿“‡æœ€å¤š %1 個值" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "å·²é¸å–的自訂欄ä½" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "å·²é¸è¡¨å–®" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "鏿“‡çš„密鑰ä¸è¢«ä¿¡ä»»æˆ–ä¸å­˜åœ¨." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "å·²é¸å–的物件" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "é¸å–的項目已更改。請儲存您的更動" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "發é€éƒµä»¶çµ¦æ“有人和所有的關注者" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "以注釋方å¼ç™¼é€éƒµä»¶çµ¦æ“有人和所有的關注者" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "寄信給申請人åŠå‰¯æœ¬æ”¶ä»¶äºº" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "以評論方å¼å¯„信給申請人åŠå‰¯æœ¬æ”¶ä»¶äºº" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "寄信給申請人" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "寄信給特定的副本åŠå¯†ä»¶å‰¯æœ¬æ”¶ä»¶äºº" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "寄信給副本收件人" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "以評論方å¼å¯„信給副本收件人" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "寄信給管ç†å“¡å‰¯æœ¬æ”¶ä»¶äºº" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "以評論寄信給管ç†å“¡å‰¯æœ¬æ”¶ä»¶äºº" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "寄信給申請人" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "乿œˆ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "以空格å€åˆ†å¤šå€‹æ¢ç›®" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "設定" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "å°æ–¼æ‚¨å°ç”³è«‹å–®çš„æ›´æ–°ï¼ŒRT是å¦çµ¦æ‚¨ç™¼ä¿¡ï¼Ÿ" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "顯示" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "顯示批准標簽欄" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "顯示欄ä½" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "é¡¯ç¤ºçµæžœ" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "在%1級顯示申請單屬性" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "顯示已批准的簽核單" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "也顯示" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "顯示已é§å›žçš„簽核單" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "顯示全域範本" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "顯示éˆçµæè¿°" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "å°ç”³è«‹è€…顯示無申請單" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "先顯示最è€çš„æ­·å²è¨˜éŒ„" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "顯示待處ç†çš„簽核單" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "顯示引用文本" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "顯示尚待他人批准的簽核單" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "顯示申請者 10 個最優先的申請單" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "粉碎機" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "工具欄" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "ç°½å" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "é è¨­ç°½å" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "登記æˆç‚ºç”³è«‹äººæˆ–副本收件人" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "登記æˆç‚ºç®¡ç†å“¡å‰¯æœ¬æ”¶ä»¶äºº" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "ç°½åæª”" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "ç°¡å–®" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "簡易查詢" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "單一" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "網站å稱" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "大å°" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "ç•¥éŽé¸å–®" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "è·³éŽå·²åœç”¨çš„使用者" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "å°" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "æŸäº›ç€è¦½å™¨åªå…許載入和 RT 伺æœå™¨åŒä¸€å€‹ç¶²åŸŸçš„內容。" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "出了å•題,請è¯ç³»ç³»çµ±ç®¡ç†å“¡" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "é †åº" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "排åº" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "æº" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "指定是æ¯å¤©é‹è¡Œé‚„是æ¯å‘¨é‹è¡Œ" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "試算表" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "é—œå¡" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "實際起始日" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "實際起始日(相å°å€¼)" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "應起始日" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "應起始日(相å°å€¼)" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "å·ž" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "ç¾æ³" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "狀態 '%1' 䏿˜¯è©²è¡¨å–®ç”³è«‹å–®çš„æœ‰æ•ˆç‹€æ…‹." #: etc/initialdata:449 msgid "Status Change" msgstr "ç¾æ³æ”¹è®Šæ™‚" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "ç¾æ³å¾ž %1 改為 %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "狀態改變" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "å¼·åˆ¶æ›´æ›æ‰¿è¾¦äºº" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "強制承辦申請單" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "%2的步驟%1" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "承辦人從 %1 強制更æ›" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "樣å¼" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "主題" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "主題標簽" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "標題已改為 %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "主題標簽" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "é€å‡º" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "訂閱" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "è¨‚é–±æŽ§åˆ¶é¢æ¿ %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "æŽ§åˆ¶é¢æ¿è¨‚é–±" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "å·²è¨‚é–±æŽ§åˆ¶é¢æ¿ %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "訂閱" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "無法創建訂閱: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "已解密資料" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "已加密資料" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "摘è¦" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "星期日" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "星期日" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "暫時擱置的" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "系統" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "系統設定" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "系統é è¨­" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "系統錯誤" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "系統錯誤:%1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "系統工具" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "系統錯誤" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "系統錯誤。設定權é™å¤±æ•—。" #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "內部使用的系統角色群組" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "å—ç†" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "自行承辦申請單" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "å·²å—ç†" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "更多有關RT資料庫的資訊" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "範本" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "範本#%1已刪除" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "找ä¸åˆ°ç¯„本'%1'" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "範本編譯" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "範本ä¸åŒ…括Perl代碼" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "範本為空" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "範本是必填欄ä½" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "範本剖æžå®Œç•¢" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "範本剖æžéŒ¯èª¤" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "範本解æžéŒ¯èª¤: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "範本" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "表單 %1 的範本" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "文字" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "首é¸é …里åœç”¨ï¼Œæ‰€ä»¥æ–‡æœ¬æ–‡ä»¶æœªäºˆé¡¯ç¤º" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "å·²ç¶“æ˜¯ç›®å‰æ¬„ä½çš„值" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "這䏿˜¯è©²è‡ªè¨‚欄ä½çš„值" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "這份申請單有尚未解決的附屬申請單" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "該使用者已經承辦這份申請單" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "使用者ä¸å­˜åœ¨" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "這å使用者已經是內部æˆå“¡" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "這å使用者屬於éžå…§éƒ¨æˆå“¡ç¾¤çµ„" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "使用者加入內部æˆå“¡ç¾¤çµ„完畢" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "這å使用者已加入éžå…§éƒ¨æˆå“¡ç¾¤çµ„" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "使用者å¯èƒ½æ²’有承辦表單裡的申請單" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "這䏿˜¯ä¸€å€‹æ•¸å­—編號" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "基本資訊" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "申請單的副本收件人" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "標識為 %1 的文章類型ä¸é©ç”¨æ–¼æ­¤è¡¨å–®" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "資料庫管ç†å“¡çš„密碼" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "申請單的管ç†å“¡å‰¯æœ¬æ”¶ä»¶äºº" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "資料庫伺æœå™¨çš„域å" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "以下命令將在『一般ã€è¡¨å–®ä¸­æ‰¾åˆ°æ‰€æœ‰æ´»å‹•çš„ç”³è«‹å–®ï¼Œå¦‚æžœå·²ç¶“éŽæœŸçš„話則將其優先值設為99:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "下列元件已被刪除並且將會被從表單里刪除" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "ä¸‹åˆ—å…ƒä»¶å°æŸäº›å¯çœ‹è¦‹è©²è¡¨å–®çš„使用者å¯èƒ½ä¸å¯è¦‹" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "密鑰已被åœç”¨" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "密鑰已被登出" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "å¯†é‘°å·²éŽæœŸ" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "密鑰被完全信任(fully)" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "密鑰被終極信任(ultimately)" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "新的欄ä½å€¼è¨­å®šå®Œæˆã€‚" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "申請單的承辦人" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "找ä¸åˆ°è«‹æ±‚çš„é é¢" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "申請單的申請人" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "設定ä¿å­˜åœ¨%1" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "系統ä¸èƒ½å°è¦ç™¼é€çš„郵件簽å,通常是因為密碼錯誤或者GPG代ç†å®•了。請立å³è¯ç³»ç³»çµ±ç®¡ç†å“¡ï¼Œå‡ºå•題的ä½å€æ˜¯:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "主題" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "有好幾個å¯ç”¨ä½œåŠ å¯†çš„å¯†é‘°" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "申請單有未讀資訊" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "密鑰被部分信任(marginal)" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "有超éŽä¸€å€‹å為 '%1' 的群組。這將會造æˆéƒ¨åˆ†ç®¡ç†ç•Œé¢çš„矛盾,因此建議您é‡å‘½å有è¡çªçš„群組。" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "沒有é©åˆåŠ å¯†çš„å¯†é‘°" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "有一個åˆé©çš„密鑰,但是信任等級沒有設定" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "這些é…ç½®é¸é …包括é‹è¡ŒRT的基本é¸é …。我們需è¦çŸ¥é“æ­¤RTçš„å稱和域å。您也將需è¦ç‚ºæ‚¨çš„管ç†å“¡ä½¿ç”¨è€…設定密碼。" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "該自定欄ä½ä¸èƒ½å…·æœ‰å€¼åˆ—表" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "è©²è‡ªå®šæ¬„ä½æ²’有呈ç¾é¡žåž‹" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "此項功能僅é™ç³»çµ±ç®¡ç†å“¡ä½¿ç”¨" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "此項功能åªé©ç”¨æ–¼ç³»çµ±ç®¡ç†å“¡ã€‚" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "伺æœå™¨é€²ç¨‹è¨˜éŒ„沒有SQL查詢." #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "æ­¤å·¥å…·ç¨‹å¼æœƒè®“使用者經由 RT 執行任æ„命令。" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "此項更動報告沒有內容" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "使用者 %1 最優先處ç†çš„ %2 張申請單" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "星期四" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "星期四" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "申請單" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "更新申請單 #%1 的全部資訊:%2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "申請單#%1關係圖" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "申請單 #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "申請單 %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "申請單 #%1 æˆåŠŸæ–°å¢žæ–¼ '%2' 表單" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "申請單 %1:%2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "申請單處ç†ç´€éŒ„ # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "申請單已解決" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "申請單æœç´¢" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "申請單的更動" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "申請單與事務" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "申請單構æˆ" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "申請單內容" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "申請單內容類別" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "內部錯誤,無法新增申請單" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "無法載入申請單" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "申請單顯示" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "申請單的æè¿°è³‡è¨Š" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "ç”³è«‹å–®ç¾æ³å·²æ”¹è®Š" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "申請單更新" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "TicketSQL 查詢模組" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "申請單" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "申請單 %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "申請單 %1 (%2)" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "待處ç†çš„申請單" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "æ‰¹å‡†ä¹‹å¾Œï¼Œå¯æŽ¥çºŒè™•ç†ï¼š" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "é è¨ˆæ™‚é–“" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "剩餘時間" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "è™•ç†æ™‚é–“" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "顯示時間" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "é è¨ˆæ™‚é–“" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "剩餘時間" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "å·²è™•ç†æ™‚é–“" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "時å€" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "標題" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "到" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "如果有支æ´ã€æ•™è‚²è¨“ç·´åŠå®šè£½é–‹ç™¼çš„需è¦ï¼Œè«‹é€£çµ¡ %1。" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "åˆ‡æ› %1 項查詢" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "切æ›å †ç–Šè»Œè·¡" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "告知日" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "告知日(相å°å€¼)" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "工具" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "主題å稱" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "主題æˆå“¡å·²æ·»åŠ " #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "主題æˆå“¡å·²ç§»é™¤" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "未找到主題" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "主題" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "é " #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "æ›´å‹•" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "清除更動報告 %1" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "更動報告已新增" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "更動的自訂欄ä½" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "未指定物件類別åŠç·¨è™Ÿï¼Œç„¡æ³•新增更動" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "事務日期" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "ä¸å¯æ›´æ”¹æ›´å‹•報告" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "ä¿¡ä»»" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "星期二" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "星期二" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "類別" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "在文章編號å‰è¼¸å…¥a: ,在申請單編號å‰è¼¸å…¥ t:" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "類型從'%1'更改為'%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "無法添加主題æˆå“¡" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "無法刪除 %1 主題的æˆå“¡" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "無法確定物件類型或編號" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "無法載入文章" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "無法設定使用者 CSS: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "無法設定使用者 Logo: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "無法設定隱ç§id: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "無法設定隱ç§ç‰©ä»¶æˆ–id: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "無法設定隱ç§ç‰©ä»¶: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "無法訂閱表單 %1: 權é™è¢«æ‹’絕" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Uncheck boxes to disable notifications to the listed recipients 僅é‡å°è©²äº‹å‹™ä¸å‹¾é¸ä»¥åœæ­¢é€šçŸ¥åˆ—出的收件人;在『人員é é¢ã€ä¸­é€²è¡Œæ°¸ä¹…å–æ¶ˆçš„管ç†ã€‚" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "外部系統登入帳號" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "未知的(沒有設定信任值)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "未知的(該值是新添加的)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "ä¸å¯è§£çš„å…§å®¹æ–‡å­—ç·¨ç¢¼æ–¹å¼ %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "未知的欄ä½ï¼š%1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "ä¸é™åˆ¶" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "全數顯示" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "未命å表單" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "未命å的查詢" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "未分é…的申請單" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "éžå…§éƒ¨æˆå“¡" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "未é¸å–的自訂欄ä½" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "未é¸ä¸­è¡¨å–®" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "未é¸å–的物件" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "未設定主密鑰" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "未被å—ç†" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "處ç†" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "更新圖表" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "更新圖表" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "更新申請單" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "更新類別" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "æ›´æ–°æ ¼å¼ä¸¦æœç´¢" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "批次更新申請單" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "更新未被記錄" #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "更新申請單" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "更新申請單 #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "更新申請單 #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "更新的內容並éžç”³è«‹å–®å›žè¦†ä¹Ÿä¸æ˜¯è©•è«–" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "更新狀態" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "剿¬¡æ›´æ–°" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "é å­˜æŸ¥è©¢ \"%1\" 以更新" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "上載" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "上傳新logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "上載多個檔案" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "上載多份圖片" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "上載一個檔案" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "上載一份圖片" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "上載最多 %1 個檔案" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "上載最多 %1 份圖片" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "使用情æ³:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "使用兩列的布局來創建與更新表單?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "使用自動完æˆä¾†å°‹æ‰¾æ“有人?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "使用é è¨­å€¼(%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "使用其他的 RT 管ç†å·¥å…·" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "使用系統é è¨­å€¼(%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "ä½¿ç”¨ä¸‹æ‹‰åˆ—è¡¨åŠŸèƒ½è¡¨ä¾†é¸æ“‡æ‚¨æƒ³è¦æå–為新文章的申請單更新。" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "使用者" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "使用者(創建-éŽæœŸ)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "使用者自訂" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "使用者權é™" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "使用者試圖在 %2 物件 #%3 çš„è‡ªè¨‚æ¬„ä½ %1 上執行未知的更新æ“作" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "無法新增使用者:%1" #: lib/RT/User.pm:256 msgid "User created" msgstr "使用者新增完畢" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "使用者已åœç”¨" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "使用者已啟用" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "使用者的郵箱為空" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "已載入使用者" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "使用者自定群組" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "帳號" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "ä½¿ç”¨è€…åæ ¼å¼" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "使用者" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "ç¬¦åˆæŸ¥è©¢æ¢ä»¶çš„使用者" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "使用更動 #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "åˆç†çš„æŸ¥è©¢" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "é©—è­‰" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "值" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "欄ä½å€¼" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "變é‡" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "版本" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "查看腳本範本" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "查看腳本" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "查看自定欄ä½å€¼" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "查看自定欄ä½" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "查看外é€é›»å­éƒµä»¶è³‡è¨ŠåŠæ”¶ä»¶äººç´°ç¯€" #: lib/RT/Group.pm:94 msgid "View group" msgstr "查看群組" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "查看群組表單" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "æª¢è¦–å€‹äººçš„æŽ§åˆ¶é¢æ¿" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "查看表單" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "查看已存æœç´¢" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "æª¢è¦–ç³»çµ±çš„æŽ§åˆ¶é¢æ¿" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "查看申請單隱ç§è©•è«–" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "查看申請單摘è¦" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "警告: ä¿å­˜æœç´¢ç‚ºä½¿ç”¨è€…層次隱ç§" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "æ‰€è¦‹å³æ‰€å¾—編輯器高度" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "æ‰€è¦‹å³æ‰€å¾—消æ¯ç·¨è¼¯å™¨" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "è­¦å‘Šï¼æ²’有簽åï¼" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "視察員" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "視察員群組" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "視察員" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "å¯ä»¥ç”¨è³‡æ–™åº«ç®¡ç†å“¡çš„身分連接到資料庫。請點擊'自定基本項'繼續自定RT。" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "當類別以å¦ä¸€è‡ªå®šæ¬„ä½ç‚ºåŸºç¤Žæ™‚,我們目å‰ç„¡æ³•呈ç¾åˆ—表。請使用其他的呈ç¾é¡žåž‹ã€‚" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "我們需è¦çŸ¥é“RT的資料庫å稱,RT用來連接資料庫的使用者å和密碼。RTå¯ä»¥å‰µå»ºè³‡æ–™åº«å’Œå°‡ä¾†è¨ªå•資料庫所用的使用者å,這需è¦è³‡æ–™åº«ç®¡ç†å“¡çš„使用者å和密碼。在第6步時我們會使用這里的資訊來創建和åˆå§‹åŒ–RT資料庫。" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "網站端å£" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "星期三" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "星期三" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "æ¯å‘¨æ‘˜è¦" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "歡迎使用RTï¼" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "今日工作一覽" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "RT是什麼?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "如果RTä¸èƒ½è™•ç†ä¸€å°éƒµä»¶ï¼Œè©²æŠŠé€™å°éƒµä»¶è½‰ç™¼åˆ°å“ªé‡Œï¼Ÿ" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "RT發出的郵件包å«äº†é©ç•¶çš„From:å’ŒReply-To:郵件頭,這樣使用者å¯ä»¥å¾ˆæ–¹ä¾¿åœ°åœ¨éƒµä»¶å®¢æˆ¶ç«¯é‡Œå›žè¤‡éƒµä»¶ã€‚å¯ä»¥ç‚ºæ¯å€‹è¡¨å–®æŒ‡å®šå›žè¤‡å’Œæ³¨é‡‹å…©ç¨®éƒµç®±ï¼Œä½¿ç”¨rt-mailgate剿‡‰å…ˆè¨­å®šå¥½é€™äº›éƒµç®±ã€‚" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "新增申請單時" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "簽核單新增之後,通知應å—ç†çš„æ‰¿è¾¦äººåŠç®¡ç†å“¡å‰¯æœ¬æ”¶ä»¶äºº" #: etc/initialdata:137 msgid "When anything happens" msgstr "當任何事情發生時" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "當點擊'檢查資料庫是å¦å¯é€£æŽ¥'時,å¯èƒ½æœƒæœ‰ä¸€é»žå»¶é²(因為RT正在嘗試連接資料庫)" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "當申請單關閉時" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "é§å›žç”³è«‹å–®æ™‚" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "ç•¶ç”³è«‹å–®é‡æ–°é–‹å•Ÿæ™‚" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "當申請單解決時" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "ç•¶ç”³è«‹å–®æ›´æ›æ‰¿è¾¦äººæ™‚" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "ç•¶ç”³è«‹å–®çš„å„ªå…ˆé †åºæ”¹è®Šæ™‚" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "當申請單更æ›è¡¨å–®æ™‚" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "ç•¶ç”³è«‹å–®æ›´æ–°ç¾æ³æ™‚" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "當使用者自訂的情æ³ç™¼ç”Ÿæ™‚" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "ç•¶è©•è«–é€é”時" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "當回覆é€é”時" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "sendmail路徑" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "清ç†" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "å…¬å¸" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "工作電話" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "è™•ç†æ™‚é–“" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "是" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "您å¯ä»¥åœ¨RT編輯該表單 與 您的訂閱 to it in RT." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "您已是這份申請單的承辦人" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "è·³è‡³ç¬¬ä¸€å€‹æœªè®€è¨Šæ¯æˆ–跳至第一個未讀的訊æ¯ä¸¦å°‡æ‰€æœ‰è¨Šæ¯æ¨™è¨˜ç‚ºå·²è®€." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "您也å¯ä»¥ç›´æŽ¥ç·¨è¼¯é å…ˆå®šç¾©çš„æœå°‹æ–¹å¼" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "您ä¸èƒ½åœ¨ç”³è«‹å–®å…§å®¹æ’入任何自由形å¼ã€æ–‡æœ¬æˆ–wiki欄ä½" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "ä¸èƒ½è¨­å®šå¯†ç¢¼." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "ç¥‡èƒ½é‡æ–°æŒ‡æ´¾æ‚¨æ‰€æ‰¿è¾¦æˆ–是沒有承辦人的申請單" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "您祇能å—ç†å°šç„¡æ‰¿è¾¦äººçš„申請單" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "您ä¸èƒ½å°‡æ”¹è®Šç‹€æ…‹ '%1' 至 '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "您沒有超級使用者權é™" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "您已登出 RT。" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "您沒有在該表單新增申請單的權é™ã€‚" #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "您å¯ä»¥ç‚ºæ–‡ç« æ·»åŠ  \"a:###\" å½¢å¼çš„éˆçµï¼Œå…¶ä¸­ j### 代表文章的數字" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "必須輸入管ç†å“¡å¯†ç¢¼" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "您必須設定指令日志為真,以啟用該表單的歷å²é é¢" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "將會跳轉到登錄é é¢ï¼Œæ‚¨å¯ä»¥ä»¥ä½¿ç”¨è€…%1和之å‰è¨­å®šçš„密碼登錄。" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "æ‚¨æ‡‰ç•¶é¸æ“‡æ‚¨æˆ–資料庫管ç†å“¡æœ€é †æ‰‹çš„資料庫" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "您看到這個畫é¢è¡¨ç¤ºæ‚¨çš„ RT 並沒有設定正確的資料庫。這大概是您第一次執行 RT。點é¸ä¸‹æ–¹çš„\"%1\",RT 會幫助您設定好 RT 伺æœå™¨åŠè³‡æ–™åº«ã€‚" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "歡迎下次å†ä¾†" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "密碼未設定." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "您的系統支æ´è‡ªå‹•é¡è‰²å»ºè­°æ–¼: %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "您的帳號或密碼有誤" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "郵éžå€è™Ÿ" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[下]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[上]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ç„¡]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "自定欄ä½" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "活動的" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "晚於" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "與之å‰" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "與å¦" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "æ¢å½¢åœ–" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "æ—©æ–¼" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "主體" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "由下至上" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "é¸ä¸­æœ¬æ¡†ä»¥åœ¨å…¨éƒ¨çš„表單應用該類型。" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "標記此項以應用到所有物件" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "é¸ä¸­æœ¬æ¡†ä»¥ç§»é™¤è©²å…¨åŸŸé¡žåž‹ï¼Œä¹‹å¾Œå³èƒ½ç‚ºæ­¤é¡žåž‹é¸æ“‡ç‰¹å®šçš„表單。" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "標記此項以從所有物件移除,然後便å¯ä»¥é¸æ“‡æŒ‡å®šçš„物件" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "標記以增加" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "é»žæ“Šé¸æ“‡/ä¸é¸æ“‡å…¨éƒ¨ç‰©ä»¶" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "核心é…ç½®" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "æ¯æ—¥æ–¼%1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "已刪除" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "ä¸ç¬¦åˆ" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "下載" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "æŒçºŒ" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "等於" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "錯誤:無法下移" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "錯誤:無法左移" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "錯誤:無法上移" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "錯誤:沒有å¯åˆªé™¤çš„å°è±¡" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "錯誤:沒有å¯ç§»å‹•çš„å°è±¡" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "錯誤:沒有å¯åˆ‡æ›çš„å°è±¡" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "æ¯" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "æ’件已執行" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "完全" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "大於" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "群組" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "群組 '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "編號" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "在類型 %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "éžæ´»å‹•çš„" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "包括 %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "索引" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "是" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "䏿˜¯" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "金鑰已喿¶ˆä½œç”¨" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "é‡‘é‘°å·²éŽæœŸ" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "金鑰已撤回" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "由左至å³" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "å°æ–¼" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "勉強" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "符åˆ" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "最大深度" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "分é˜" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "æ¯æœˆ" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "æ¯æœˆ(%1æ—¥)æ–¼%2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "æ°¸é ä¸æœƒ" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "新建立" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "å¦" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "ç„¡" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "ä¸ç­‰æ–¼" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "ç„¡" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "物件已刪除" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "等於" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "第幾天" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "一" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "開啟" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "開啟/關閉" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "å…¶ä»–..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "餅圖" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "æ’件為空" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "表單 %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "å·²é§å›ž" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "需è¦é‹è¡Œ rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "已解決" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "ç”±å³åˆ°å·¦" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "顯示物件列表" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "å´é‚Šæ¬„" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "siteé…ç½®" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "延宕" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "指令" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "加總列" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "系統 %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "系統群組 '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "呼å«å…ƒä»¶æœªæŒ‡æ˜ŽåŽŸå› " #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "é è¨­æœƒé¡¯ç¤ºæ–¼è©•論郵件中 From: åŠ Reply-To: 標投的ä½å€." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "é è¨­æœƒé¡¯ç¤ºæ–¼å›žè¦†éƒµä»¶ä¸­ From: åŠ Reply-To: 標投的ä½å€." #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "申請單 #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "由上往下" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "徹底" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "沒有æè¿°çš„群組 %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "ç„¡é™åˆ¶çš„" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "使用者" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "使用者 %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "使用者å" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "æ¯å‘¨" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "æ¯é€±%1æ–¼%2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "週" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "ç¶²é ä¼ºæœå™¨æ‰€ä½¿ç”¨çš„埠號, 如 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "é€£åŒæ¨™é ­" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "是" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/pt_BR.po0000664000175000017500000135105213131430353015127 0ustar vagrantvagrant# Brazilian Portuguese translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2016-09-27 19:27+0000\n" "Last-Translator: Anderson Rocha Pereira \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 adicionado" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 alterado para %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 removido" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 removido." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 não existe" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 está desabilitado" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 salvo." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 atualizados." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 com modelo %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) por %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Sem alteração)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (do painel %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Ajuste opção de configuração LogToSTDERR" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Um argumento para passar para %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "%1 - Um argumento para passar para %2. Esta opção pode ser repetida para passar argumentos correspondentes a várias chamadas de %2." #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Exibe atualizações de estado no STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Especifique se você quer usar a 'primeira' , a 'última' ou 'todas' as transações" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Especifique o nome ou o id do(s) modelo(s) que você quer usar" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "%1 - Especifique o módulo de ação que você deseja usar. Esta opção pode ser repetida para aplicar várias ações para tíquetes encontrados." #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Especifique a lista, separada por vírgulas, dos tipos de transação que você pretende usar" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Especifique o módulo de condição que você quer usar" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Especifique o módulo de busca que você quer usar" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "%1 CPs" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 Direitos Reservados 1996-%3 %4." #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "Versão %1" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 adicionado como um valor de %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "%1 adicionado ao painel de destinatários inscritos" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "%1 atrás" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 já existe e contém as tabelas do RT, mas não contém os metadados. O passo posterior 'Iniciar Banco de Dados' pode inserir os metadados no banco de dados existente. Se isto for aceitável, pressione `Personalizar Básicos` abaixo para continuar a personalizar RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 já existe mas não contém as tabelas do RT nem os metadados. O passo posterior 'Iniciar Banco de Dados' pode criar as tabelas e inserir os metadados no banco de dados existente. Se isto for aceitável, pressione `Personalizar Básicos` abaixo para continuar a personalizar RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "%1 já tem o direito %2 em %3 %4" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 parece ser um objeto local, mas não pode ser encontrado no banco de dados" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 parece estar completamente iniciado. Não precisamos criar tabelas ou inserir metadados, mas você pode continuar a personalizar RT presisionando 'Personalizar Básicos' abaixo" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 por %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 não pode ser um grupo" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 alterado de %2 para %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 alterado de '%2' para '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 copiado" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 configuração do núcleo" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 não pôde ser alterado para %2" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 criado" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 removido" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 desabilitado" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 não existe." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 habilitado" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 tíquetes de mais alta prioridade que eu possuo" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 é uma ferramenta que age sobre os tíquetes a partir de uma ferramenta externa de agendamento, como cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 é um utilitário, significando que pode ser executado a partir do cron, que envia todas as notificações adiadas como uma resenha por usuário." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "%1 já é %2" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 já está configurado para %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 é um endereço para o RT receber e-mails. Adicionando ele como um '%2' vai criar um loop de e-mails" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "%1 não é mais %2 para essa fila" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "%1 não é mais %2 para esse tíquete" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 não é mais um valor para o campo personalizado %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 não é um %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 não é um ciclo de vida valido" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 questões" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 chave '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 artigos atualizados mais recentes" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "%1 tíquetes relacionados recentemente atualizados" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 mais novos artigos" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 tíquetes mais recentes sem proprietário" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objetos" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "%1 removido do painel de destinatários inscritos" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 está configurado para %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 configuração do site" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 atualizado: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "Atualização %1: Nada alterado" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 atualizado" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1's %2 objetos" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1's %2's %3 objetos" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1 senha atual" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Painéis de %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "chaves de criptografia de %1" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "Primeiras %1 buscas salvas" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: nenhum anexo especificado" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Novo tíquete em%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "%1S" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "%1A" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,artigo)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,dia,dias)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,hora)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,hora,horas) (%quant(%2,minuto,minutos))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,minuto,minutos)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,mes,meses)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,segundo,segundos)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,semana,semanas)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,ano,anos)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' não é um nome válido." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' não é uma classe válida" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' não é um identificador de classe valido" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Marque a caixa para completar)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Marque a caixa para remover)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Marque as caixas para remover)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "(Verifique para excluir todos os valores)" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Informe os ids dos tíquetes ou URLs, separadas por espaço)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Se deixado em branco, será padrão para %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(Incompleto)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(Dados incorretos)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Sem campo personalizado)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Sem membros)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Sem scrips)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Sem models)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Envia uma cópia desta atualização para uma lista de endereços de e-mails administrativos separados por ví­rgula. Estas pessoas vão receber atualizações futuras.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Envia uma cópia desta atualização para uma lista de endereços de e-mails separados por ví­rgula. Estas pessoas vão receber atualizações futuras.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "(Tipo de campo personalizado não suportado)" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Use estes campos quando você escolhar 'Definido pelo Usuário' para uma condição ou ação)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(qualquer)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(não tem Resumo)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(sem nome)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(sem chave pública!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(sem valor)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(sem valores)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(pendente %quant(%1,outro tíquete))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(aprovação pendente)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "(Tíquete pendente #%1)" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(requerido)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(confiança: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(sem título)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(não confiável!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "(Através deste catálogo de ativos)" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id é um argumento obsoleto e não pode ser usado com --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "argumento --transaction só pode ser 'first' (primeiro), 'last' (último) or 'all' (todos)" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 segundo" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Um modelo com este nome já existe" #: etc/initialdata:258 msgid "A blank template" msgstr "Um modelo vazio" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Não foi definida uma senha, o usuário não estará apto a usar o sistema." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE não encontrada" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACEs só podem ser criadas e removidas." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "Atualizações ACL de %1" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "E" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Sobre mim" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Controle de acesso" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Ação" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Ação '%1' não encontrada" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Ação executada." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Ação é um argumento obrigatório." #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Ação preparada..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Ações" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Tíquetes Ativos" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "Tíquetes ativos" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Tickets ativos para %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Adicionar %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Adicionar AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Adicionar Favorito" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Adicionar Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Adicionar Colunas" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Adicionar Critério" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Adicionar Mais Arquivos" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "Adicionado novos destinatários" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Adicionar Requisitante" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Adicionar Valor" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "Adicionar um grupo" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "Adicionar uma pessoa" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "Adicionar um ativo para este tíquete" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Adicionar comentários ou respostas aos tíquetes selecionados" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "Adicionar valores de campos personalizados somente no tempo de criação do objeto" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Adicionar grupo" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Adicionar aqui" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Adicionar membros" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Adicionar novos observadores" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Adicionar direitos para este %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Adicionar estes termos" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Adicionar estes termos e Buscar" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Adicionar usuário" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Adicionar valores" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Adicionar, modificar e remover valores de campos personalizados para objetos" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Incluído" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "Adicionado %1 como %2 para esta fila" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "Adicionado %1 como %2 para este tíquete" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "Adicionada sobrescrita de assunto: %1" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "Adicionado o campo personalizado %1 para %2." #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Endereço" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Endereço 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Endereço1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Endereço2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "Tempo de trabalho ajustado por %quant(%1,minute,minutes)" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "Catálogos do Administrador" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Comentário do Administrador" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Comentário do Admin no HTML" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Correspondência do Administrador" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Correspondência do Admin em HTML" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Administração de filas" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Administração da configuração global" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "AdminCCGrupo" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Senha administrativa" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Avançado" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Pesquisa avançada" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Após efetuar login, você será direcionado a seu destino original:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Agregador" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Todas as Aprovações Concedidas" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Todas Aprovações Passadas em HTML" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Todos os artigos nesta classe podem ser listados em um dropdown da página de resposta do tíquete" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "Todos os catálogos" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Todas as Classes" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Todos Campos Personalizáveis" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Todos os Painéis" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Todas as filas" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Todos os Tíquetes" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "Todos os catálogos correspondentes critérios de pesquisa" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Todos feeds iCal tem embutido uma chave secreta que autoriza você. Se a URL de um dos seus feeds iCal, for exposta externamente, você recebe uma nova chave, quebrando todos feeds iCal existentes abaixo below." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Todas as filas combinando com o critério de pesquisa" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "Todos os destinatários" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Todos os tíquetes" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Todos os tópicos" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "distribuir" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Permitir a criação de pesquisas salvas" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Permitir o carregamento de pesquisas salvas" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Permitir escrever código Perl nos modelos, scrips, etc" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Já encriptado" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "Sempre envia uma mensagem aos requisitantes independente do remetente da mensagem" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "Uma %1introdução para familiarizar-se com artigos%3 está disponível da %2documentação online da Best Practical%3" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "Uma instância deve ser fornecida" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Ocorreu um erro" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "Ocorreu um erro ao enviar tempo. Por favor envie o seu tempo manualmente." #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "E/Ou" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Anual" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Qualquer campo" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Qualquer palavra não reconhecida pelo RT será procurada em assuntos de tíquetes." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Aplica-se a" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Aplica-se a todos os objetos" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Aplicar" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Aplicar globalmente" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Aplicar scrips selecionados" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Aplicar suas alterações" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Aprovação" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Aprovação #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Aprovação #%1: Anotações não registradas devido a um erro de sistema" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Aprovação #%1: Anotações registradas" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Aprovação Concedida" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "Aprovação passou em HTML" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Aprovação pronta pelo Dono" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "Aprovação Pronta para Proprietário em HTML" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Aprovação Rejeitada" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "Aprovação Rejeitada em HTML" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Aprovar" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Abr" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "Artigo #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "Artigo #%1 não encontrado" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Artigo #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Artigo %1 criado" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Administração de Artigo" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artigo não encontrado" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Artigos" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Artigos em %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Artigos combinando %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artigos sem tópicos" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "Ativo #" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "Ativo #%1" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "Ativo #%1 criado: %2" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "Ativo #%1: %2" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "Administração de ativos" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "Falha ao criar o ativo txn: %1" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "Campos personalizados para os ativos" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "Falha ao criar o ativo: %1" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "Ativos" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "Ativos não podem ser deletados" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Atribuir e remover campos personalizados da fila" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "Ativos atribuidos" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Anexar" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Anexar arquivo" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Arquivo anexado" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Anexo" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Anexo '%1' não pode ser carregado" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Anexo criado" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Nome do arquivo anexo" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Anexos" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Encriptação de anexos está desativada" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Atributo Removido" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "Atualização do atributo" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Ago" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "Assinatura automática" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "Configuração automática de conta falhou" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Tema de cores sugeridos automaticamente não estão disponíveis para sua imagem. Isso pode ser porque você carregou um tipo de imagem que a versão instalada do GD não suporta. Os tipos suportados são: %1. Você pode recompilar a libgd e GD.pm para incluir suporte para outros tipos de imagem" #: etc/initialdata:261 msgid "Autoreply" msgstr "RespostaAutomatica" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Responder Automaticamente para Requisitantes" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Auto-resposta em HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Disponível" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "Média Criado-ÚltimaAtualização" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "Média Criado-Resolvido" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "Média Criado-Iniciado" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "Média Devido-Resolvido" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "Média Iniciado-Resolvido" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "Média Inicios-Iniciado" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "Tempo médio estimado" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "Tempo médio restante" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "Tempo médio trabalhado" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Voltar" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Privacidade inválida para atributo %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Básicos" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "Lote" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "Lote (desabilitado por configuração)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Scrips de Lote" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "Scrips batch roda depois de um conjunto de mudanças relacionadas a um tíquete." #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Cópia oculta" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "Antes que os Artigos possam ser usados, seu administrador RT deve %1criar Classes%2, aplicar campos personalizados a elas, e atribuir direitos aos usuários nas classes e campos personalizados." #: etc/initialdata:257 msgid "Blank" msgstr "Vazio" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Conteúdo" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Negrito" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Favorito" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "link para favorito para esta pesquisa" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Tíquetes em Favoritos" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Tíquetes favoritos" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Navegar por tópicos" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Ver as queries SQL feitas em precesso" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Atualização em Massa" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "Campos Personalizados devem ser buscados usando uma sintaxe similar como acima com %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "Calcular" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "Calcular valores de" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Não é possível carregar a pesquisa salva \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Não é possível modificar usuários do sistema" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Não é possível adicionar um valor de campo personalizado sem um nome" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "Não é possível alterar o valor padrão de %1 a partir de %2 a %3:%4" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "Não é possível alterar os valores padrões de %1 para %2: %3" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Não é possível encontrar uma busca salva para ser trabalhada" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Não é possível encaminhar: nenhum endereço de e-mail válidos especificados" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Não é possível vincular um tíquete a ele mesmo" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Não é possível vincular um tíquete apagado" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Não é possível mesclar um tíquete em si mesmo" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Não é possível criar rapidamente tíquete na fila %1 porque campos personalizados são obrigatórios. Por favor conclua usando a página normal de criação de tíquete." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Não é possível salvar %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Não é possível salvar uma busca sem uma Descrição" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Não é possível salvar esta busca" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "Não é possível especificar base e alvo ao mesmo tempo" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Não é possível adicionar link para o número plano" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Não é possível criar tíquetes numa fila desativada." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "Não é possível modificar objetos da função personalizada desabilitada #%1" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "Catálogo" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "Catálogo #%1 criado: %2" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "Catálogo %1: Edite campos personalizados" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "Catálogo %1: Modificações básicas" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "Catálogo %1: Modifique o direito dos grupos" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "Catálogo %1: Modifique as funções" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "Catálogo %1: Modifique os direitos dos usuários" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "Falha na criação do catálogo txn: %1" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "Falha ao criar o catálogo: %1" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "Catálogos" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "Catálogos não podem ser deletados" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Categorias são baseadas em" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Categoria" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Cópia para" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Alterar" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Mudança no tíquete de Aprovação para estado aberto" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Mudar assunto do e-mail:" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Alterar a senha" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Mudar fila não está implementado" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Gráfico" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "Verificar" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Marque Tudo" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Verificar Conectividade do Banco de Dados" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Verifique as Credencias do Banco de Dados" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Marque caixa para remover" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Filho" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Filhos" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Selecione o mecanismo SQL" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Escolha de tópicos para %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Cidade" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Classe" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Nome da Classe" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Não foi possível criar classe: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Id da Classe" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Classe já aplicada globalmente" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Classe já aplicada para %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Limpar" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Limpar Tudo" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Pressione \"Terminar Instalação\" abaixo para completar este assistente." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Pressione \"Iniciar Banco de Dados\" para criar o banco de dados do RT e inserir os metadados iniciais. Isto pode demorar um pouco" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Clique para escolher uma cor" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "Fechando Janela" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Fechado" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Tíquetes fechados" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "CaixaCombinada: Selecionar ou informar múltiplos valores" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "CaixaCombinada: Selecionar ou informar um valor" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "CaixaCombinada: Selecionar ou informar até %1 valores" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Comentar" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Endereço de comentário" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Endereço de comentário" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "Comente o tíquete" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Comentário nos tíquetes" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Comentários" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Comentários (Não enviados aos requisitantes)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Comentários sobre este usuário" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Comentários adicionados" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Execução Abortada" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Condição" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Condição '%1' não encontrada" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Condição é um argumento obrigatório" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Condição satisfeita..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Condição, Ação e Modelo" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Arquivo de configuração %1 está bloqueado" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Configuração para a fila %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "Configuração para função %1" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Conexão efetuada com sucesso" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "Contato" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Contate seu administrador do RT por %1email para%2%3." #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Contate seu administrador do RT." #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Conteúdo" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Conteúdo descartado porque seu tamanho (%1 bytes) excedeu o tamanho máximo configurado (%2 bytes)." #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "Inserção de conteúdo falhou. Consulte o log de erro para mais detalhes." #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Conteúdo é um endereço IP inválido" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Conteúdo é um intervalo de endereço IP inválido" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Conteúdo truncado porque seu tamanho (%1 bytes) excedeu o tamanho máximo configurado (%2 bytes)." #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tipo-de-Conteúdo" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Endereço de correspondência" #: etc/initialdata:393 msgid "Correspondence" msgstr "Correspondência" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Correspondência adicionada" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Correspondência em HTML" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "Não foi possível adicionar %1 como um destinatário: %2" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Não foi possível adicionar novo valor do campo personalizado: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Impossível alterar proprietário: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Não foi possível criar CampoPersonalizado: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Não foi possível criar o grupo" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Não foi possível criar a pesquisa: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Não foi possível criar o tíquete. Fila não definida" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Não foi possível criar o usuário" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Não foi possível remover a pesquisa %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Não foi possível encontrar o grupo '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Não foi possível encontrar ou criar o usuário '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Não foi possível carregar atributo %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Não possível carregar a Classe %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Não foi possível caarregar CampoPersonalizado %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "Não foi possível carregar a função personalizada #%1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Não foi possível carregar o grupo" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Não foi possível carregar objeto para %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "Não foi possível carregar o scrip #%1" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "Não foi possível carregar a história do tíquete. Motivo:" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Não foi possível carregar o usuário '%1'" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "Não foi possível transformar %1 para %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "Nâo foi possível remover %1 como um %2" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Não foi possível definir informações sobre usuário" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Não foi possível atualizar coluna %1: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "Não foi possível adicionar por que já é global" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Não foi possível adicionar anexo" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "Não foi possível adicionar valor do campo personalizado na criação: %1" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Não foi possível adicionar o membro ao grupo" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Não foi possível compilar %1 bloco de código '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Não foi possível compilar o modelo de bloco de código '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Não foi possível criar uma transação: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Não foi possível criar o registro: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "Não foi possível criar grupos de função para o ativo" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "Não foi possível criar grupos de função para o catálogo" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Não foi possível remover painel %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Não foi possível encontrar o registro" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Não foi possível encontrar uma transação aceitável, pulando" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Não foi possível encontrar este usuário/grupo" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Não foi possível encontrar este valor" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "Não foi possível obter informações de chave para %1" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Não foi possível carregar Classe %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Não foi possível carregar Campo Personalizado #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Não foi possível carregar o Campo Personalizado #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Não foi possível carregar CampoPersonalizado %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "Não foi possível carregar cópia de %1 #%2" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Não foi possível carregar cópia do tíquete #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "Não foi possível carregar o campo personalizado '%1'" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Não foi possível carregar painel %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Não foi possível carregar grupo #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Não foi possível carregar grupo %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Não foi possível carregar vínculo" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "Não foi possível carregar vínculo: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Não foi possível carregar objeto %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Não foi possível carregar ou criar o usuário: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "Não foi possível carregar o o principal #%1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "Não foi possível carregar o o principal: #%1" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Não foi possível carregar a fila" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Não foi possível carregar a fila #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Não foi possível carregar a fila %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Não foi possível carregar a fila '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Não foi possível carregar scrip #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Não foi possível carregar modelo #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Não foi possível carregar o principal especificado" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Não foi possível carregar tíquete '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Não foi possível carregar o tópico filiação ao tentar removelo" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Não foi possível carregar transação #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Não foi possível carregar o usuário" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Não foi possível carregar usuário #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Não foi possível carregar o usuário #%1 ou o usuário '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Não foi possível carregar o usuário '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "Não foi possível processar a URI base: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "Não foi possível processar a URI de destino: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "Não foi possível remover membro prévio: %1" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Não foi possível substituir o conteúdo com dado decriptado: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Não foi possível substituir o conteúdo com dado encriptado: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "Não foi possível transformar '%1' em um link." #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Não é possível determinar a origem '%1' em uma URI." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Não é possível determinar o destino '%1' em uma URI." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Não foi possível definir observador %1: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Não foi possível definir chave privada" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Náo foi possível excluir definição da chave privada" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "País" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Criar" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "Criar Novo" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Criar Tíquetes" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Criar a Classe" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Criar um CampoPersonalizado" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Criar um CampoPersonalizado para a fila %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "Criar uma função personalizada" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "Criar um scrip global" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Criar um novo artigo" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Criar um artigo novo em" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "Criado um novo ativo no catálogo %1" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "Criar um novo ativo no catálogo %1" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Criar um novo painel" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Criar um novo grupo" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Criar um modelo novo para a fila %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "Criado um novo tíquete em %1" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "Criar um novo tíquete na fila %1 com os ativos #%2:%3." #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Criar um novo usuário" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Criar uma fila" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "Criar um script e adicioná-lo à fila %1" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Criar um modelo" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Criar um tíquete" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "Criado um tíquete em %1" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Criar um tíquete com este usuário como Solicitante na Fila" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Criar um artigo" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Criar um artigo na classe..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Criar artigos nesta classe" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "Criar ativo" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "Criar ativos" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "Criar catálogo" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Criar painéis de grupo" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "Criar tíquete ligados" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "Criar um tíquete conectado para o ativo #%1:%2" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "Criar um novo ativo" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Criar novos tíquetes baseados no modelo deste scrip" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Criar painel pessoal" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Criar painéis do sistema" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Criar tíquete" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Criar tíquetes" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Criar, modificar e remover entradas na Lista de Controle de Acesso" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Criar, modificar e remover campos personalizados" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Criar, modificar e remover valores de campos personalizados" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "Criar, modificar e apagar funções personalizadas" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Criar, modificar e remover fila" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Criar, modificar e remover pesquisas salvas" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Criar, modificar e remover usuários" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "Criar, modificar e desativar catálogos" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Criado" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Criado Por" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "CampoPersonalizado %1 criado" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Criado por" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Pesquisa criada %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "CriadoPor" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Criador" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Criptografia" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "Criptografia está desabilitada" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Vínculos Atuais" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "Destinatários atuais" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Pesquisa atual" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Membros atuais" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Busca atual" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Observadores atuais" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "CSS Personalizado (Avançado)" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Campos Personalizados" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Campos Personalizados para %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Campos personalizados para a fila %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "Funções personalizadas" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "Ação personalizada de commit de código" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Código de preparação de ação personalizada" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Condição personalizada" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Campo personalizado #%1 não é aplicado para esse objeto" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Campo personalizado %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Campo personalizado %1 não se aplica a este objeto" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Campo personalizado %1 tem um valor." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Campo personalizado %1 não tem valor." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Campo personalizado %1 não encontrado" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Valor de campo personalizado %1 não pôde ser encontrado para campo personalizado %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Valor do campo personalizado não pôde ser removido" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Valor do campo personalizado removido" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "Funções personalizadas criada" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "Função personalizada desabilitada" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "Função personalizada habilitada" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "Função personalizada não foi adicionada" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CampoPersonalizado" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Personalizar" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Personalizar Básicos" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Personalizar Endereços de Email" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Personalizar Configuração de Email" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Personalizar painéis no menu" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "Personalizar Tema do RT" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Personalize a aparência do seu RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Senha do DBA" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Nome de usuário do DBA" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Diário" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Resenha diária" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Painel" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "Painel %1 não pode ser atualizado: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "Painel %1 atualizado" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Painel não pôde ser criado: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Painel não pôde ser atualizado: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Painel atualizado" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Painéis" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Painéis no menu" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Painéis no menu para o usuário %1" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Servidor do banco de dados" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nome do banco de dados" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Senha do banco de dados para RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Porta do banco de dados" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tipo do banco de dados" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Nome do usuário do banco de dados para RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "Data" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Formato de Data" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Datas" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "Dia" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dez" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Decriptar" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "Erro de desencriptação; contate o administrador" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "Padrão %numerate(%1,value,values)" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "Valores padrões" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "Valores padrões para fila %1" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Fila padrão" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "Modelo de lembrete padrão" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "Padrão para silenciar todas as notificações de e-mail de saída (de interface web) sobre a atualização do tíquete." #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "Valor padrão de %1 mudado de %2 a %3" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "Valor padrão mudado de %1 a %2" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Padrão: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Padrão: %1/%2 alterado de %3 para %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Remover" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Remover Modelo" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Remoção falhou: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Remover painéis do grupo" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Operação de remoção está desabilitado pela configuração do ciclo de vida" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Remover painéis pessoais" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Remover painéis do sistema" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Remover tíquetes" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Remover valores" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "%1 removido" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Consultas Excluidas" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Busca salva removida" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Remover pesquisa %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Remoção deste objeto causaria quebra da integridade referencial" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Remoção deste objeto violaria a integridade referencial" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Negar" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Dependem deste tíquete" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Dependência por %1 adicionada" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Dependência por %1 removida" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Dependência de %1 adicionada" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Dependência de %1 removida" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Depende de" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "DependeDe" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Descreva o problema abaixo" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Descrição" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Informações detalhadas sobre sua configuração do RT" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Detalhes" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "Detectar uma situação em que devemos definir a data devida" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "Detectar uma situação em que devemos definir a data de início" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Direção" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "Artigos desabilitados em esta classe" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Desativado" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "Desabilitar?" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Exibir" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Exibir Lista de Controle de Acesso" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Exibir Arigo %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Exibir Colunas" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "Exibir todos anexos de texto puro em uma fonte mono espaçada com formatação preservada, mas quebrando linha conforme necessário." #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "Exibir mensagens em texto rico se disponível" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Exibir anexos de texto puro em fonte de largura fixa" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Exibir tíquete depois da \"Criação Rápida\"" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Distribuído sob a %1versão 2 do GNU GPL%2." #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Fazer qualquer coisa" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Nome do domínio" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Não inclua http://, apenas alguma coisa como 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Não atualizar a página inicial" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Não atualizar os resultados da busca" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Não recarregar esta página." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Chave não confiável de maneira alguma" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Baixar" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "Baixar planilha" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Baixar arquivo de dump" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "Soltar arquivos aqui ou clique para anexar" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Caixa da pesquisa" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Vencimento" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "ERRO: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Atualização fácil de seus tíquetes abertos" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Vizualização fácil dos seus lembretes" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Editar" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "Editar %1" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Editar Campos Personalizados" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Editar Campos Personalizados para %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "Editar campos personalizados para os ativos em todos os catálogos" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Editar Campos Personalizados para todos os grupos" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Editar Campos Personalizados para todas as filas" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Editar Campos Personalizados para todos os usuários" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Editar campos personalizados para artigos em todas as classes" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Editar Campos Personalizados para tíquetes em todas as filas" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Editar Vínculos" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Editar Consulta" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Editar Busca" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Editar hierarquia de tópico global" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Editar modelos do sistema" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Editar hierarquia de tópico para %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Editando CampoPersonalizado %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Editando afiliados do grupo %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Ou origem ou destino deve ser especificado" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Ou você não tem direito de ver a busca salva %1 ou o identificador está incorreto" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "Decorrido" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "Mensagem" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Endereço de E-mail" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Resenha de Email" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "E-mail destino para o tíquete %1, anexo %2" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Endereço de e-mail já está em uso" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Envio de email" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Modelo de email para notificação periódica de resenhas" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "Vazio" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "Habilitar ocultar citações" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Ativado" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "Ativado (assinalar esta opção desativa este artigo)" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Ativado (Desmarque a caixa para desabilitar esta classe)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Ativo (Desmarcar esta caixa desativa este campo personalizado)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "Ativado (assinalar esta opção desactiva esta função personalizada)" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Ativo (Desmarcar esta caixa desativa este grupo)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Ativa (Desmarcar esta caixa desativa esta fila)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Habilitado (desmarcar esta caixa desabilita este scrip)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "Catálogos Habilitados" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Classes Ativadas" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Filas Ativas" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "Catálogos habilitados correspondentes critérios de pesquisa" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Habilitar as filas que atendam o critério de pesquisa" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Estado %1 ativado" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Encriptar" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Encriptar por padrão" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Encriptar/Decriptar" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Encriptar/Decriptar transação #%1 do tíquete #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "Criptografar" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Erro de encriptação; contate o administrador" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "Entrar" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Informar artigos, tíquetes ou outras URLs relacionadas a este artigo." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "Insira links para os ativos como \"Ativo: ###\", onde ### representa a identificação dos ativos." #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Digite múltiplos intervalos de endereços IP" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Digite múltiplos endereços IP" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Informar valores múltiplos" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Informar múltiplos valores com autocomplemento" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Informar objetos ou URIs para vincular aos objetos. Separar entradas múltiplas com espaço." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Informar um endereço IP" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Informar um intervalo de endereços IP" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Informar um valor" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Informar um valor com autocomplemento" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Informar filas ou URIs para vincular às filas. Separar entradas múltiplas com espaço." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Informar identificadores de tíquete ou URIs para vincular ao tíquete. Separar entradas múltiplas com espaço." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "Entre tíquetes ou URLs aos quais vincular. Separe múltiplas entradas com espaços." #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Informar tempo em horas por padrão" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Informar até %1 intervalos de endereços IP" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Informar até %1 endereços IP" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Informar até %1 valores" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Informar até %1 valores com autocomplemento" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "Fornecendo %1, %2, %3 ou %4 limita os resutados a tickets com um dos respectivos tipos de status. Qualquer nome individual de status resulta exatamente no status nomeado." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "Sugestão de entrada" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "Variáveis de ambiente" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Erro" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "Erro ao carregar o anexo" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "Erro ao traçar gráfico: %1" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Erro proprietário RT: chave pública" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Erro: Falta painel" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Erro: dado GnuPG inválido" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "Erro: dados encriptados inconsistentes" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Erro: o valor de privacidade de uma pesquisa existente não pode ser mudado" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Erro:não foi possível carregar a pesquisa salva %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Erro: sem chave privada" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Erro: chave pública" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Erro: pesquisa %1 não foi atualizada: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "Erro: mensagem não-encriptada" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Escalonar tíquetes" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Estimado" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Todos" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Exemplo:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Expira em" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Autenticação externa ativada." #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "Informações Adicionais" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Informação adicional" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Extrair Artigo" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Extrair Tag Assunto" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Extrair do tíquete #%1 um novo artigo" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Extrair um artigo do tíquete #%1 dentro da Classe %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extrair tags de um Assunto de transação e adicioná-la ao Assunto de ticket." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Falhar ao conectar ao banco de dados: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Falha ao criar atributo %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Falha ao procurar o pseudogrupo de usuários 'Privilegiado'." #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Falha ao procurar o pseudogrupo de usuários 'Sem Privilégio'" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Falha ao carregar %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Falha ao carregar %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Falha ao carregar o módulo %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Falha ao carregar objeto para %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Falha ao carregar modelo" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "Falha ao carregar o tíquete %1" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Falha em entender modelo" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "falha ao atualizar o formato. Motivo:" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Fev" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Fontes de Notícias" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Campo" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Fonte de valores de campo:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "O arquivo '%1' rejeitado por causa de seu tamanho (%2 bytes) que excedeu definição de tamanho máximo configurado (%3 bytes)." #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "Falha na inserção do arquivo '%1'. Veja o log de erro para mais detalhes." #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "O arquivo '%1' truncado por causa de seu tamanho (%2 bytes) que excedeu definição de tamanho máximo configurado (%3 bytes)." #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Nome de arquivo" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "Nomes de arquivos com aspas duplas não podem ser enviados." #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Forneça argumentos" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Preencha os campos usando a cor" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Preencher múltiplas áreas de texto" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Preencher múltiplas áreas de texto wiki" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Preencher uma única área de texto" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Preencher uma única área de texto wiki" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Preencher este campo com uma URL." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Preencher até %1 áreas de texto" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Preencher até %1 áreas de texto wiki" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Prioridade Final" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "PrioridadeFinal" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "Encontre um grupo..." #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Encontrar um usuário" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "Encontrar um usuário..." #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Encontrar todos os usuários em que" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "Encontrar um ativo" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Encontrar grupos em que" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Encontrar pessoas em que" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Encontrar tíquetes" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Impressão digital" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Terminar" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Primeiro" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "Para ajuda local, por favor contate %1" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "Para usar todo o poder de buscas do RT por favor visite %1Interface de Construção de Pesquisas%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Forçar alteração" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formato" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "Formata eventos de notificação iCal com data e hora" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Reencaminhar" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Reencaminhar Mensagem" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Reencaminhar Mensagem e Voltar" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Reencaminhar Tíquete" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Reencaminhar mensagens fora do RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Reencaminhar tíquete #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Reencaminhar transação #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "Encaminhada %3Transação #%1%4 para %2" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Reencaminhar Tíquete para #%1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "Mensagem encaminhada" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "Encaminhada mensagem de tíquete" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "Encontrado %quant(%1,asset,assets)" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "%numerate(%1,Encontrado,Encontrados) %quant(%1,tíquete,tíquetes)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Objeto Encontrado" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frequência" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Sex" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Sexta" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "De" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD está desabilitado ou não foi instalado. Você pode enviar uma imagem, mas você não receberá automaticamente sugestões de cores." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Geral" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "Ativos gerais" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Direitos gerais" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Iniciando" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "Dar retorno mesmo para mensagens enviadas com sucesso" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Dado a %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Atributos Globais" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Tópicos Globais" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Configuração de campos personalizados globais" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "Painéis globais do menu salvos." #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "Modelo global ou específico de fila '%1' não encontrado" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Portlet global %1 salvo." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "Modelo global '%1' não encontrado" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "Campo personalizado globalmente acrescentado %1." #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "Campo personalizado globalmente removido %1." #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "Chave privada GnuPG" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Ir" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "Voltar / Avançar" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Ir para o grupo" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Ir para usuário" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Ir!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Ir para Tíquete" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Ir para o tíquete" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "Concessão de permissão '%1' a %2" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Gráfico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Propriedades do Gráfico" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Gráficos não estão disponíveis." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Grupo" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Direitos de Acesso do Grupo" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Grupo já tem um membro: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "Agrupar por" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Grupo não pôde ser criado: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Grupo criado" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Grupo desativado" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Grupo ativado" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Grupo não contém este membro" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "O nome do grupo '%1' já está em uso" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Grupo não encontrado" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "Agrupar tíquetes por" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "Grupo: %1" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "Resultados de pesquisa agrupados" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupos" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Grupos não podem ser membros de seus próprios membros" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Grupos que satisfazem ao critério de busca" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "Agrupa 'o principal é membro de' (marque caixa para apagar)" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "Agrupa 'o principal não é membro de' (marque caixa para apagar)" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Grupos a que este usuário pertence" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "Modelo de autoresposta HTML" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "Tíquete HTML Resolvido" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "Estado de tíquete HTML alterado" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "Modelo de comentário de admin HTML" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "modelo de correspondência de admin HTML" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "Modelo de correspondência HTML" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "Modelo de transação HTML" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "TemMembros" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Cabeçalho de um tíquete encaminhado" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Cabeçalho de uma mensagem encaminhada" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "Altura" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Olá!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Ajude-nos a atribuir alguns valores padrão úteis para RT." #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Ocultar todo texto citado" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Ocultar texto citado" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "Esconder os campos desmarcados" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "Esconder os campos desmarcados?" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Histórico" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Histórico para o artigo #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "História do Ativo #%1:%2" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Histórico do grupo %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Histórico da fila %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Histórico do usuário %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Telefone Residêncial" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Intervalo para recarregar Página Inicial" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Início" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Hora" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "De hora em hora" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Horas" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Eu tenho %quant(%1,concrete mixer)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "Eu quero refazer meu token secreto." #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "Identificador" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identidade" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "Se um Campo Personalizado é selecionado, o Assunto do seu email de saída será sobrescrito por este artigo." #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Se uma aprovação não é concedida, rejeitar o original e remover aprovações pendentes" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "Se isso não é o que você espera saia desta página agora sem efetuar login." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Se esta ferramenta estiver com setgid, um usuário local mal-intencionado pode conseguir acesso administrativo sobre o RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Se você já tem um servidor RT ativo e o banco de dados, você pode aproveitar estar oportunidade para ter certeza de que seu servidor de banco de dados está rodando e que o servidor RT pode se conectar a ele. Uma vez você tenha feito isto, pare e inicie o servidor RT.

    " #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "Se você tem um login interno do RT, você pode %1tentar por ele%2." #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "Se você realmente queria visitar%1 e %2, então %3clique aqui para continuar sua solicitação%4." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Se você alterou a Porta na qual RT executa, você terá que reiniciar o servidor para poder entrar no sistema." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Se você alterou qualquer coisa acima, não se esqueça de" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Se seu banco de dados preferido não estiver listado abaixo, isto significa que RT não pode encontrar um driver de banco de dados para ele instalado localmente. Você pode consertar isto usando %1 para baixar e instalar DBD::MySQL, DBD::Oracle ou DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Valor ilegal para %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "Imagem exibida embutida acima" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "Imagem não exibida porque exibição está desabilitada na configuração do sistema." #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "Imagem não exibida porque o remetente pediu para não exibi-la embutida." #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Campo imutável" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Tíquetes Inativos" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "Tíquetes inativos" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Incluir Artigo:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "Incluir a seleção TicketSQL" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Inclua nome do artigo" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Inclua sumário do artigo" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "Incluir anexos" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "Incluído o campo personalizado '%1'" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "Incluir a tabela de dados" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "Incluir listas de catálogos desabilitadas." #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Incluir classes desativados na listagem." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Incluir campos personalizados desativados na listagem." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "Incluir listas de funções personalizadas desabilitadas." #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Incluir grupos desativados na listagem." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Incluir filas desativadas na listagem." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Incluir usuários desativados na busca." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Incluir página" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Incluir subtópicos" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "Inclua tempo em eventos de notificação iCal" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "Atualizações de índice de %1" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Mensagens individuais" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informar proprietário de RT que usuário(s) tem problemas com chaves públicas" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informar usuário que um painel subscrito por ele está faltando" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informar usuário que uma mensagem enviada por ele tem dado GnuPG inválido" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "Informe usuário que a mensagem que ele enviou tem dados inválidos de criptografia" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informar ao usuário que ele tem problemas com a chave pública e náo pode receber conteúdo encriptado" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Informar ao usuário que sua senha foi apagada" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "Informar usuário que o email não encriptado dele foi rejeitado" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informar ao usuário que recebemos um email encriptado e não temos chaves privadas para decriptar" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Prioridade Inicial" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "PrioridadeInicial" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Iniciar Banco de Dados" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Erro de entrada" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Entrada precisa satisfazer %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "Inserir de %1" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Erro Interno: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Erro interno: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "%1 é inválido" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "%1 é argumento inválido" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "%1 inválido: '%2' não parece com um endereço de email" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "%1 inválido: ele deve ser um número" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "Catálogo inválido" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Classe Inválida" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Valores de origem inválidos para Campo Personalizado" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "Nome de Grupo e Domínio Inválidos" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "Nome inválido (nomes podem não ser todos em dígitos)" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "Nome inválido (nomes devem ser exclusivos e não podem ser todos em dígitos)" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Fila inválida, não é possível aplicar a Classe: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "Tipo de retorno inválido" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Tipo de retorno inválido para o campo personalizado do tipo %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Dado inválido" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Chave %1 inválida para o endereço '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Objeto inválido" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Padrão inválido: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "Portlet Inválido %1" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Fila inválida" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "queue id inválido" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Direito de acesso inválido" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Direito inválido. Não é possível aceitar direito '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Sintaxe inválida para endereço de email" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Valor inválido para %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Valor inválido para campo personalizado" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "Já foi adicionado ao objeto" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Não está encriptado" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "É muito importante que usuários não privilegiados não tenham permissão para utilizar esta ferramenta." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Sugere-se a criação de um usuário Unix não privilegiado com a correta filiação a grupo e com acesso ao RT para executar utilizar esta ferramenta." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "Parece que você pode ter esquecido de incluir um anexo." #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Requer vários argumentos:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Itálico" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Entrar ou sair do grupo" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Deixe 'localhost' se não tiver certeza. Deixe em branco para conectar localmente através de um socket" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "Atalhos do Teclado" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "Palavra-chave e pesquisa baseada em intuição" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Idioma" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Língua" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Grande" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Último" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Último Contato" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Contactado em" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Atualizado em" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Última atualização por" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Última atualização" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Última atualização por" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "UltimaAtualizacao" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "UltimaAtualizacaoPor" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "UltimaAtualizacaoDependente" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Mantenha vazio para usar os valores padrões para seu banco de dados" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Deixe em branco para usar o nome de usuário dba padrão para seu tipo de banco de dados" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Resta(m)" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legendas" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Tamanho em caracteres; Use '0' para mostrar todas as mensagens incorporadas, apesar de seu tamanho" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Deixar este usuário acessar RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Deixar este usuário receber direitos de acesso adicionais" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Vamos!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Ciclo de vida" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Vínculo" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Vínculo já existe" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "Vínculo não pôde ser criado: %1" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "Vínculo não pode ser apagado: %1" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Vínculo não encontrado" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Vincular o tíquete #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Vincular valores a" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Conectado" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "VinculadoDe" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "VinculadoCom" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "Vincular com um %1 apagado não é permitido" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Vínculos" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "Vincular com" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Lista" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Carregar" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Carregar uma pesquisa salva" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Carregar pesquisa salva" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Carregar buscas salvas:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "%1 %2 carregado" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "Arquivos de configuração carregados" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Busca salva original \"%1\" carregada" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Módulos perl carregados" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Busca salva \"%1\" carregada" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Carregando..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Localização" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "DataHoraLocalizada" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Local" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Conectado" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Entrou como %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Saiu" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "Registrando mensagens de nível %1 e superior para %2" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "Registrando mensagens de nível %1 e superior para STDERR, o qual geralmente vai aparecer em seus registros de erro do servidor web." #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "Registrando mensagens de nível %1 e superior para o syslog com a seguinte configuração: %2" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "Registrando mensagens de nível %1 e superior para o syslog." #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "Sumário de registro" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Entrar" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Sair" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Tipo de consulta não corresponde" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Tipos principais de vínculos" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "Marque %1" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Definir Proprietário" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Definir o estado" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Definir data de Vencimento" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Definir data de Iniciado" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Definir data de início" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Definir data de última alteração" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Definir prioridade" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Definir fila" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Definir assunto" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Gerenciar campos personalizados e valores de campos personalizados" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "Gerenciar funções personalizadas" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Administrar grupos e afiliações" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Administrar propriedades e configurações aplicáveis a todas as filas" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Administrar filas e suas propriedades específicas" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Gerenciar gráficos salvos" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "Gerenciar scrips" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Administrar usuários e senhas" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "Mapeamento entre ciclo de vida %1 e %2 está incompleto. Contate seu administrador do sistema." #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Todas as mensagens marcadas como lidas" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Ordem de busca do modelo Mason" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "ValorMaximo" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "Máximo Criado-ÚltimaAtualização" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "Máximo Criado-Resolvido" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "Máximo Criado-Iniciado" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "Máximo Devido-Resolvido" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "Máximo Iniciado-Resolvido" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "Máximo Inícios-Iniciado" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Comprimento máximo de mensagem incorporada" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "Tempo máximo estimado" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "Tempo máximo restante" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "Tempo máximo trabalhado" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maio" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Eu" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Membro" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Membro %1 adicionado" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Membro %1 removido" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Membro adicionado: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Membro removido" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Membro não removido" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "MembroDe" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Membros" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Filiação em %1 adicionada" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Filiação em %1 removida" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Filiações" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "Associados ao grupo %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "Associados ao principal #%1" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Filiações do usuário %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Mesclar" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "União bem sucedida" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "União falhou. Não foi possível definir o EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "Mesclagem falhou. Não foi possível configurar IsMerged" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Unir a" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Unido a %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Mensagem" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "O corpo da mensagem não é exibido porque é muito grande." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "O corpo da mensagem não é mostrado porque o remetente solicitou não apresentá-lo." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "O corpo da mensagem não é mostrador porque não é texto puro." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Altura da caixa de mensagem" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Largura da caixa de mensagem" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Mensagem não pode ser registrada" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Mensagem para usuário" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Mensagem registrada" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "Mínimo Criado-ÚltimaAtualização" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "Mínimo Criado-Resolvido" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "Mínimo Criado-Iniciado" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "Mínimo Devido-Resolvido" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "Mínimo Iniciado-Resolvido" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "Mínimo Inícios-Iniciado" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Comprimento mínimo de senha" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "Tempo mínimo estimado" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "Tempo mínimo restante" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "Tempo mínimo trabalhado" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minutos" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Extras" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Faltando uma chave primária?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Móvel" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Celular" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Modificar" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "Modificar %3 para o ativo #%1: %2" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Modificar Membros" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Modificar modelos de Scrips" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Modificar Scrips" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Modificar um Campo Personalizado para a fila %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Modificar e Criar Classes" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Modificar e Criar Campos Personalizados para Artigos" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Modificar artigo #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "Modificar artigos nesta classe" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "Modificar ativo #%1: %2" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "Modificar catálogos de ativos" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "Modificar campos personalizados ativos" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "Modificar ativos" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Modificar objetos associados a %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "Modificar objetos associados para scrip #%1" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Modificar valores de campos personalizados" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "Modificar datas para os ativos #%1:%2" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Modificar as datas para o tíquete #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Modificar tópicos globais de artigos" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Modificar campos personalizados globais" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Modificar direitos de acesso globais de grupo" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Modificar tópicos globais" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Modificar direitos de acesso globais de usuário" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Modificar painéis do grupo" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Modificar lista de membros do grupo" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Modificar metadados do grupo ou removê-lo" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Modificar os direitos de grupo para Classe %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Modificar direitos de grupo para campo personalizado %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Modificar os direitos de acesso do grupo %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Modificar os direitos de acesso de grupo para a fila %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "Modificar ligações para os ativos #%1:%2" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Modificar metadados e campos personalizados para esta classe" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Modificar sua própria conta RT" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "Modificar pessoas relacionadas aos ativos #%1:%2" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Modificar as pessoas relacionadas ao tíquete #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Modificar painéis pessoais" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Modificar observadores de filas" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "Modificar scrip #%1" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Modificar os scrips da fila %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Modificar scrips aplicáveis a todas as filas" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Modificar painéis do sistema" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Modificar o modelo %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Modificar modelo %1 para fila %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Modificar modelos que se aplicam a todas as filas" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Modificar a Classe %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Modificar o conteúdo do painel %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Modificar painel %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Modificar \"Visão Geral do RT\" padrão" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Modificar o grupo %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Modificar a subscrição para o painel %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Modificar o usuário %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Modificar esta busca..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Modificar o tíquete # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Modificar o tíquete #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "Modificar proprietário do tíquete em tíquetes de sua propriedade" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Modificar tíquetes" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Modificar tópico para %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Modificar a hierarquia de tópicos associadas com esta classe" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Modificar os tópicos dos artigos nesta classe" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Modificar as permissões de usuários para a classe %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Modificar direitos de usuário para campo customizado %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Modificar os direitos de acesso de usuário para o grupo %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Modificar os direitos de acesso de usuário para a fila %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Modificar quem recebe email para o ticket #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Módulo" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Seg" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Segunda" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "Mês" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "Mensal" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Mais sobre os requisitantes" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "Mover" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Mover Aqui" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "Mover para cima ou para baixo a lista de resultados" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Múltiplo" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "Vários usuários (Isto não pode ser modificado após a criação)" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "Vários usuários (desmarcar esta caixa para limitar as funções de um único usuário. Isso não pode ser modificado após a criação)" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Necessário especificar atributo 'Nome'" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Meus tíquetes %1s" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Minhas Aprovações" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "Meus ativos" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Meu Dia" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Meus Lembretes" #: etc/initialdata:890 msgid "My Tickets" msgstr "Meus Tíquetes" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Minhas aprovações" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "Fechar meus tíquetes" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Meus painéis" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Meus tíquetes abertos" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Meus lembretes" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Minhas buscas salvas" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "MeusLembretes" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "NOVALINHA" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Nome" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Nome e endereço de email" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Nome em uso" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "É necessário o nome" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Nome:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Nunca" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Novo" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Novo artigo" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Novo painel" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Novos Vínculos" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Nova Aprovação Pendente" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "Nova Aprovação pendente em HTML" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Nova busca" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "Novo Valor" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "Novos ativos não podem ter a situação '%1'." #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Novas mensagens" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nova senha" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Notificação de nova senha enviada" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Novo lembrete:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Novo tíquete" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "O novo tíquete não existe" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "O novo ticket não pode ter o status '%1' nesta fila." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Novos observadores" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Próximo" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Apelido" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Apelido" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Não" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "Não há chaves %1 para este endereço" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "Nenhum %1 carregado" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Nenhum artigo encontrado %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Nenhuma Classe definida" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Nenhuma Classe que atenda ao critério de busca foi encontrada." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Nenhum Campo Personalizado" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Nenhum Campo Personalizado definido" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Nenhum Grupo definido" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "Sem Nome" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Nenhuma Consulta" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Nenhuma Fila definida" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Nenhum usuário do RT encontrado. Por favor, consulte o administrador do RT." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Nenhum Assunto" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "Assunto não sobrescrito." #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Nenhum Modelo" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Nenhuma ação" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "Não especificado o ID do ativo." #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "Nenhum ativo que correspondem aos critérios de pesquisa procurado." #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "Não há catálogo específico." #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "Não há catálogos correspondentes critérios de pesquisa encontrados." #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Nenhuma coluna especificada" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Não há comentário sobre este usuário" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "Não há campos personalizados encontrados para agrupamento '%1'" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "Não há funções personalizadas que correspondem aos critérios de pesquisa encontrado." #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Nenhuma descrição para %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "Não há modelo padrão %1" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Nenhum grupo especificado" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Nenhum grupo satisfaz o critério de busca." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Nenhuma chave aceitável para encriptação" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "Não mais autorizado" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Nenhuma mensagem anexada" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Nenhum nome fornecido" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Não há necessidade de encriptar" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Nenhuma senha especificada" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Sem permissão para criar filas" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Sem permissão para criar tíquetes na fila '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Sem permissão para exibir o tíquete" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "Sem permissão para modificar este ativo." #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "Sem permissão para modificar este catálogo" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Sem permissão para salvar buscas com abrangência em todo sistema" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Sem permissão para definir preferências" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Sem permissão para ver artigos" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "sem permissão para ver modificar o tíquete" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Nenhum usuário/grupo selecionado." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Sem chave privada" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Nenhuma fila satisfaz o critério de busca." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Nenhum direito especificado" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Nenhum direito encontrado" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "Sem direitos para adicionar '%1' como um AdminCc neste tíquete" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Não há busca a realizar" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Sem assunto" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Chave não existe ou não é aceitável para assinatura" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "Não há modelo %1 na fila %2 nem na global" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Nenhum tíquete encontrado." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Nenhum tipo de transação especificado" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Nenhuma chave usável." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Nenhum usuário satisfaz o critério de busca." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "Não há PrincipalId válido" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "Nenhum valor enviado para _Set!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Ninguém" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Nenhum" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Campo inexistente?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "Scrips não aplicados" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Não encontrado" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Não registrado." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Não definido" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Não está utilizando um navegador móvel?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Anotações" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "A notificação não pôde ser enviada" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Notificar AdminCcs" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Notificar AdminCcs como Comentário" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Notificar Ccs" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Notificar Ccs como Comentário" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Notificar Outros Destinatários" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Notificar Outros Destinatários como Comentário" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Notificar Proprietário" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "Notificar Proprietário e AdminCcs" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Notificar Proprietário como Comentário" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Notificar Proprietário sobre seus tíquetes rejeitados" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Notificar Proprietário que seu chamado foi aprovado e está pronto para ser desenvolvido." #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Notificar o proprietário de que seus tickets foram aprovados por alguns ou todos aprovadores." #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "Notificar o proprietário ou AdminCcs" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Notificar Proprietários, Requisitantes, Ccs e AdminCcs" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Notificar Proprietário, Requisitante, Ccs e AdminCcs como comentário" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Notificar Proprietários e AdminCcs sobre novos itens dependendo de suas aprovações" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Notificar os Requisitantes que seus tickets foram aprovados por todos aprovadores." #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Notificar os Requisitantes que seus tickets forma aprovados por alguns dos aprovadores" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Notificar Requisitantes" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Notificar Requisitantes e Ccs" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Notificar Requisitantes e Ccs como Comentário" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Avisar-me sobre mensagens não lidas" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "Em uso neste momento" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "Número" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "OU" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objeto" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "Tipo de Objeto" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objeto não pôde ser criado" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Objeto não pode ser removido" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objeto criado" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objeto removido" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "Objeto passado não é carregado" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Tipo de objeto não corresponde" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "A lista de objetos está vazia" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Out" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "Valor Anterior" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "Em %1, %2 escreveu:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "No Encerramento" #: etc/initialdata:170 msgid "On Comment" msgstr "Num Comentário" #: etc/initialdata:142 msgid "On Correspond" msgstr "Numa Correspondência" #: etc/initialdata:131 msgid "On Create" msgstr "Na Criação" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "Encaminhado" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Ticjket encaminhado" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Transação encaminhada" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Na Alteração de Proprietário" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Na Alteração de Prioridade" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Na Alteração de Fila" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Quando Rejeitado" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Na Reabertura" #: etc/initialdata:205 msgid "On Resolve" msgstr "Na Resolução" #: etc/initialdata:176 msgid "On Status Change" msgstr "Na Alteração de Estado" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "Tempo de Trabalho alterado" #: etc/initialdata:136 msgid "On Transaction" msgstr "Numa Transação" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "Um, e apenas um, do Principal / ID Principal / Utilizador / Grupo é exigido" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Cópia Oculta Única" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Cópia Única" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Apenas para a entrada, não exibir" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Só apresentar aprovações para requisições criadas depois de %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Só apresentar aprovações para requisições criadas antes de %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Somente apresentar campos personalizados para:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "Abrir Tíquetes Inativos" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Abrir" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Tíquetes Abertos" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "Abrir temporizador" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Abrir URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "Abrir tíquetes inativos" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Abrir tíquetes" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Abrir tíquetes na correspondência" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "Sistema Operacional" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Opção" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Opções" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "Usuários Oracle não podem ter senhas vazias" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Ordenado por" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organização" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Tíquete originador: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "E-mail de saida sobre um comentário registrado" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "E-mail de saida registrado" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Email de saída" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Visão geral" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Tíquetes pessoais" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Proprietário" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "Proprietário '%1' não tem direito de ter este tíquete." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Proprietário alterado de %1 para %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Proprietário alterado à força de %1 para %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "Nome Proprietário" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Página" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Página 1 de 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Página não encontrada" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Pager" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "Pai" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Pais" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Senha" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Senha trocada" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "A senha não foi cadastrada." #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Senhas precisam ter no mínimo %1 caracteres" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "A senha não impressa" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Senha definida" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Senha: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Senha: Permissão Negada" #: etc/initialdata:714 msgid "PasswordChange" msgstr "TrocadeSenha" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Senhas não coincidem." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Caminho para sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "Para temporizador" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "Pendente %quant(%1,aprovação,aprovações)." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "Pendente %quant(%1,tíquete,tíquetes)" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "Pendente de aprovação." #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Pessoas" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Pessoas relacionadas a fila %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Realizar uma ação definida pelo usuário" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Configuração perl" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Ordem de pesquisa na biblioteca Perl" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Apagar permanentemente os dados do RT" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Permissão Negada" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Permissão negada" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefones" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "Imagem" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "Coloque assinatura acima da citação" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "Modelo de Autoresposta em texto puro" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "Modelo de comentário do admin em texto puro" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "Modelo de correspondência do admin em texto puro" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "Modelo de correspondência em texto puro" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "Modelo de transação em texto puro" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Por favor verifique a URL e tente novamente." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Por favor, digite sua senha atual corretamente." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Por favor, digite sua senha atual" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "Possível falsificação de solicitação entre sites" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Possíveis buscas escondidas" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "Pesquisa pré-definida %1 não encontrada" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Preferências" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Preferências %1 para usuário %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "Preferências restabelecidas." #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Preferências salvas para %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "Preferências salvas para panéis no menu." #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Preferências salvas para usuário %1." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Preferências salvas." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "As referências não foram encontradas" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Chave referencial: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Chave preferencial" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Preparação Abortada" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "Pressione %1 para ver os atalhos de teclado." #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Ant" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Usuário/Grupo %1 não encontrado." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Mostre a resenha final de mensagens em STDOUT; não envie por email. Nâo as marque como enviadas" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Imprimir esta mensagem" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioridade" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Privacidade" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privacidade:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Chave Privada" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "Chave(s) privada(s) para %1" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "Chaves privadas" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Privilegiado" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Estado privilegiado: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Usuários privilegiados" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "Privilegiados: usernames; Não privilegiados: nomes e endereços de e-mails" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Processando sem transação, algumas condições e ações podem falhar. Considere usar o argumento --transaction" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Falso-grupo para uso interno" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "Chave pública '0x%1' é necessária para verificar a assinatura" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "Chave(s) pública(s) para %1" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Consultas" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Consulta" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Construtor de Consulta" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Fila" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "Fila %1 não pode ser carregada." #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Fila %1 não encontrada" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Nome da Fila" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "A fila já existe" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "A fila não pôde ser criada" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "A fila não pôde ser carregada" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Fila criada" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Id da fila" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "Listar Fila" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Fila não encontrada" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "Filas de nível de serviço padrão foi alterado" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Chave da fila" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "FilaAdminCc" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "FilaCc" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "NomeFila" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "ObservadorFila" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Filas" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Filas que eu administro" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Filas nas quais sou AdminCc" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Busca rápida" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Criação rápida de tíquete" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "Criação rápida" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Administração do RT" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "Email do Administrador RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "Configuração do RT" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "Erro no RT" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "Portal RT" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Tamanho RT" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "Visão geral do RT" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "Visão geral para o usuário %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT pode se comunicar com seus usuários sobre novos tíquetes ou novas correspondências nos tíquetes. Diga-nos onde encontrar o sendmail (ou um programa compatível com sendmail, como postfix). RT també necessita saber a quem avisar quando alguém envia uma mensagem inválida. Este endereço não pode ser uma conta que devolva a mensagem para RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT pode incluir o conteúdo de algum outro serviço web quando estiver apresentando este campo personalizado." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT pode transformar estes valores de campo customizado em hiperlinks para outro serviço." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "Principais variáveis do RT" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT para %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "RT detectou uma possível %1falsificação de requisição entre sites%2 para esta requisição devido a %3. Um atacante pode estar tentando %1%4%2 em seu nome. Se você não iniciou esta requisição, por favor, alerte sua equipe de segurança." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT é um sistema de classe empresarial para monitoramento de problemas, desenhado para deixar você gerenciar tarefas, problemas, requisições, defeitos ou qualquer outra coisa que se pareça com um \"item de ação\" de maneira inteligente e eficiente." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT é utilizado pelas 100 empresas listadas pela Fortune, por empresas individuais,agências governamentais, instituições de ensino, hospitais, entidades sem fins lucrativos, ONGs, bibliotecas, projetos de código aberto e todo tipo imaginável de organização nos sete continentes (Sim, inclusive Antártica)." #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "Histórico de atualizações do RT" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT vai se conectar ao banco de dados usando esta conta de usuário. Ela vai ser criada para você." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT vai criar um usuário chamado \"root\" e associar esta senha a ele" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT vai substituir %1 e %2 respectivamente com o id do registro e o valor do campo personalizado" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT vai usar esta sequência de caracteres unicamente para identificar sua instalação e procurar por ela no assunto de emails, para decidir a qual tíquete a mensagem se refere. Nós recomendamos que você utilize o seu domínio internet (ex: example.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT trabalha com diferentes bancos de dados. MySQL, PostgreSQL, Oracle and SQLite são suportados." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "Configuração de registro do RT está resumida abaixo:" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "A opção RTAddressRegxp na configuração não corresponde a %1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Reabrir" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "Alcançado o número máximo, portanto novos valores sobrescreverão os antigos." #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Nome real" #: lib/RT/User.pm:95 msgid "RealName" msgstr "NomeReal" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Destinatários" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Registrar todas as atualizações" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Membro recursivo" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "Reciclar" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Referente a" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Referenciado por %1 adicionado" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Referenciado por %1 removido" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Referência a %1 adicionada" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Referência a %1 removida" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Referenciado por" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "ReferidoPor" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Faz referência a" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "FazReferenciaA" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Atualizar" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Recarregar esta página a cada %1 minutos." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "Atualizar página inicial" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "Recusada a adição de vínculo que iria criar um relacionamento circular" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Rejeitar" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "Tíquetes relacionados" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Lembrar fila padrão" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Lembrete" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Lembrete '%1' adicionado" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Lembrete '%1' completado" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "Lembrete '%1' reaberto" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "Lembrete '%1':%2" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "Lembrete adicionado" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "Lembrete concluído" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "Lembrete concluído" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Lembretes" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Lembretes para tíquete #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "Remover" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "Remover %1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Remover AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Remover Favorito" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Remover Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Remover Requisitante" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "Removida Sobrescrita de Assunto" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "Removido o campo personalizado %1 para %2." #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "TipoRetorno" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Substitua a caixa suspensa de proprietários por caixa de textos" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "Substitui os menus suspensos da fila com caixas de texto" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Responder" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Endereço para Resposta" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Responder para requisitantes" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "Responder a este tíquete" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Responder aos tíquetes" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "Relatório roubados" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Requisitante" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "GrupoRequisitantes" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Requisitantes" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "Exigir o conjunto devido de acordo com SLA" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "Exigir inicio fixados em função das SLA" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Parâmetro '%1' requerido e não especificado" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Apagar" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "Restabelecer valores dos campos personalizados para o padrão" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Redefinir visão geral do RT" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "Redefinir painéis no menu" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Apagar token de autenticação secreto" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Restaurar valor padrão" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "Redefinir para o Logo padrão do RT" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "Redefinir para o Tema padrão do RT" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Residência" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Resolver" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Resolver tíquete #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Resolvido" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "Resolvido em HTML" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "ResolvidosSimilares" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Responder" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultados" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "Retomar o Temporizador" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Voltar to tíquete" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "Volte para o principal" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Confirmar a Senha" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Reverter" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "Revogado a permissão '%1' de %2" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "Texto rico (HTML) mostra formatações tais como texto colorido, negrito, itálico e mais" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Direito de Acesso Carregado" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Direito de acesso não pôde ser revogado" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Direito de acesso não carregado." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Direitos de acesso não puderam ser outorgados a %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Permissões para Administradores" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Permissões para Equipe" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "Nome da função" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "Função já existe" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "Grupo de Papel '%1' não encontrado" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "}EsGrupo de Papel já existe" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Papéis" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Linhas" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Linhas por caixa" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Linhas por página" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "SLA Ativado (Desmarque esta caixa para desabilitar a SLA para esta fila)" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "Certificado SMIME" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "Consultas SQL não registradas no nível %1 e também disponíveis na %2ferramenta de consultas%3." #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "Consultas SQL não são registradas" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite é um banco de dados que não precisa de um servidor ou qualquer configuração. Os autores de RT o recomendam para teste, demonstração e desenvolvimento, mas ele não é adequado para um servidor RT em produção." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sab" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Sábado" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Salvar" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Salvar as Alterações" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Salvar Preferências" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Salvar como Novo" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "Salve o Ativo" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Salvar nova" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Salvar esta pesquisa" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Salvo %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Busca salva" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Pesquisas salvas" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Gráficos salvos" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "Pesquisa salva %1 não encontrada" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Buscas salvas" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "Buscas salvas" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "Atualizações de Esquema de %1" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Scrip Criado" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "Scrip não adicionado" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Scrips e Destinatários" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "Scrips normalmente rodam depois de cada mudança individual a um tíquete." #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Buscar" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "Pesquisa %1 atualizada" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Pesquisar artigos" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "Procure Ativos" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Buscar Preferências" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Pesquisar por artigos correspondentes" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Buscar por aprovações" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Procurar por artigos" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Busca por tíquetes" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "Pesquise por tíquetes entrando números de %1id%2, palavras do assunto %1\"entre aspas\"%2, %1filas%2 por nome, Proprietários por %1nomedeusuario%2, Requisitantes por %1endereço de email%2, e %1estados%2 do tíquete. Pesquisar por %1@domainname.com%2 retornará tíquetes com requisitantes daquele domínio." #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Opções de busca" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Resultados da pesquisa" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Intervalo para recarregar resultados de buscas" #: share/html/Search/index.html:48 msgid "Searches" msgstr "Pesquisas" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "Procurar pelo texto completo em cada ticket pode demorar um longo tempo, mas se você precisar, você pode procurar em todo o histórico de tickets digitanto %1palavra." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Token de autenticaço secreto" #: bin/rt-crontool:352 msgid "Security:" msgstr "Segurança:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Ver também:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Ver artigos nesta classe" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "Veja Ativos" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "Veja Catálogos" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Ver as mudanças nos artigos desta classe." #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Veja que esta classe existe" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Selecionar" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Selecionar campos personalizados para artigos em todas as classes" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "Selecione os campos personalizados para Ativos em todos os Catálogos" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Seleciontar Tipo de Banco de Dados" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Selecione uma classe" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Selecionar um Campo Personalizado" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "Selecionar uma função personalizada" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "Selecione um Scrip" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "Selecione um catálogo" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Selecione uma cor para esta seção" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "Selecione uma função personalizada" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Selecionar um grupo" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Selecionar uma fila" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Selecionar uma fila para seu novo tíquete" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Selecione uma seção" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Selecionar um usuário" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Selecione um artigo para %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Selecione um artigo para incluir" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Selecione outra linguagem" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Selecione a caixa" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Selecionar campos personalizados para todas filas" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Selecionar campos personalizados para todos grupos de usuário" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Selecionar campos personalizados para todos usuários" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Selecionar campos personalizados para todas filas" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Selecionar campos personalizados para transações em tíquetes de todas as filas" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Escolha a data" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Selecione a data e hora" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "Selecione estágio global do scrip:" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Selecione múltiplas datas" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "Selecione múltiplas datas e horas" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Selecionar valores múltiplos" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Selecionar um valor" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Selecionar filas a serem exibidas na página \"Visão geral do RT\"" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "Selecione estágio do scrip para filas recém-adicionadas" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Selecione tópicos para este artigo" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Selecione até %1 datas" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "Selecione até %1 data(s) e hora(s)" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Selecionar até %1 valores" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Selecionar Campos Personalizados" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Filas selecionadas" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Chave selecionada não é confiãvel ou não existe mais." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Selecionar Objetos" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Seleções alteradas.Por favor, salve suas alterações" #: etc/initialdata:117 msgid "Send Forward" msgstr "Enviar em frente" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "Encaminhar mensagem para frente" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Enviar mensagem com proprietário e todos os observadores" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Mandar mensagem para proprietário e todos os observadores como \"comentário\"" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Enviar mensagem aos requisitantes e Ccs" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Enviar mensagem aos requisitantes e Ccs como um comentário" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "O envio do e-mail anterior falhou. Entre em contato com o administrador, eles podem encontrar mais detalhes nos logs." #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Envia uma mensagem aos requisitantes" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Envia uma mensagem aos Ccs e Bccs explicitamente listados" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Envie mail para os Ccs" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Envie mail para os Ccs como um comentário" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "Envia mensagem para o Proprietários e Ccs administrativos" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "Envie e-mail para o proprietário se definido, senão para os administradores Ccs" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Envia uma mensagem aos Ccs administrativos" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Envia uma mensagem aos Ccs administrativos como um comentário" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Envia uma mensagem ao proprietário" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Set" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Separe as entradas múltiplas com espaços" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "Definir data de vencimento de acordo com SLA" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "Defina a chave privada" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "Definir data de início de acordo com SLA" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "Defina a data de vencimento de acordo com um acordo" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "Defina a data de início de acordo com um acordo" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Definições" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "Configuração necessária" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Nomes de usuário curtos" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "O RT deve mandar um email a cada atualização que você fizer nos tickets?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Apresentar" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "Exibir menu Admin" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Mostrar guia de aprovações" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "Exibir menu Artigos" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "Mostre o menu dos Ativos" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Apresentar Colunas" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Apresentar Resultados" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Mostrar Propriedades do Chamado no %1 nível" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Mostrar todos os textos entre aspas" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Apresentar requisições aprovadas" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Mostrar também" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Mostrar cabeçalhos resumidos" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Apresentar requisições negadas" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Mostrar cabeçalhos completos" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Mostrar modelos globais" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "Exibir histórico" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "Mostrar histórico de propriedades públicas do usuário" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Mostrar descrições do link" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "Não mostrar tickets para os requisitantes" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Exibir histórico mais antigo primeiro" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Apresentar requisições pendentes" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Mostrar texto citado (entre aspas)" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Apresentar requisições aguardando outras aprovações" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "Mostrar lista de recipientes simplificada ao atualizar tíquete" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Mostrar os 10 tickets ativos com prioridade mais alta" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Mostrar os 10 tickets inativos com mais alta prioridade" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Mostrar os 10 tickets com mais alta prioridade" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Mostrar o histórico de tickets" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "Mostre os campos desmarcados" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Picotador" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "O picotador precisa de um diretório para gravar seu lixo. Por favor, verifique se este diretório (%1) existe e é gravável pelo seu servidor WEB." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Barra Lateral" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Assinar" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "Assine todos os emails gerados automáticamente. %1Cuidado%2: Habilitar esta opção altera a assinatura fornecida pela %3 autenticação%4 para garantir %3integridade%4." #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Assinar por padrão" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Cadastrar como um Requisitante de tíquete ou um Cc de tíquete ou fila" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Cadastrar como um AdminCC de tíquete ou fila" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "Assine %1%2 usando %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Assinatura" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "Assinatura" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Busca Simples" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Único" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Nome do sítio" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Tamanho" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Saltar Menu" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Pulando usuário desativado" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Pequeno" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Alguns navegadores somente carregam conteúdo do mesmo domínio que seu servidor RT." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Alguma coisa está errada. Contacte o administrador do sistema." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Ordenar" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "Ordem de classificação" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Ordenando" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Origem" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Especificar quando esta execução é diária ou semanal" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Planilha" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "Rastreamento da pilha é adicionado a níveis de mensagem %1 e maiores." #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "Rastreamentos da pilha não são registrados" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Estágio" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Bloquear" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Inicie o termo de busca com o nome do campo suportado seguido de vírgula, como em %1 e %2, para explicitar o tipo de pesquisa." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Iniciado" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "Iniciado em %1." #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "InicioSimilar" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Inicia" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "InicioDependente" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Estado" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "Ordem de pesquisa de arquivo estático" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "Estado" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "Status '%1' não é um estado válido para os ativos." #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "Estado '%1' não é um estado válido para %2." #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "O status '%1' não é um status válido para os tickets desta fila" #: etc/initialdata:449 msgid "Status Change" msgstr "Alteração de Estado" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "Mudança de Estado em HTML" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Estado alterado de %1 para %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Mudanças de status" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Roubar" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Roubar tíquetes" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Etapa %1 de %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Roubado de %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "Cronômetro" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Estilo" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Assunto" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Rótulo do assunto" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Assunto alterado para %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "RotuloAssunto" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Submeter" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "Submeter o Temporizador" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "Submetendo" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Subscrever" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Subscrever painel %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Registrar-se nos Painéis" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Subscrito ao painel %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Subscrição" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Subscrição não pode ser criada: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "Assinatura atualizada" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Dado decriptado com sucesso" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Dado encriptado com sucesso" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Sumário" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "Sumário de Criado-ÚltimaAtualização" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "Sumário de Criado-Resolvido" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "Sumário de Criado-Iniciado" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "Sumário de Devido-Resolvido" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "Sumário de Iniciado-Resolvido" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "Sumário de Inícios-Iniciado" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "Sumário de tempo estimado" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "Sumário de tempo restante" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "Sumário de tempo trabalhado" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Dom" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Domigo" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "Suprimir se vazio (Marque essa opção para evitar o envio de e-mail se todas as pesquisas não têm resultados)" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Suspenso" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "Sistema" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Configuração do Sistema" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Padrão do Sistema" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Erro do Sistema" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Erro do Sistema: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Ferramentas do Sistema" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Erro de sistema" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Erro do sistema. Direito de acesso não outorgado." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup para uso interno" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Tomar" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Tomar tíquetes" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Tomado" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Diga-nos um pouco sobre como encontrar o banco de dados que vai ser usado pelo RT" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Modelo" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Modelo #%1 removido" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "Modelo '%1' não é global" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "Modelo '%1' não é global nem específico de fila" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Modelo '%1' não encontrado" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "Compilação de modelos" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "O modelo não inclui o código Perl" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Modelo está vazio" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "Modelo está em uso" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Modelo é um argumento obrigatório" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Modelo processado" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Erro de análise gramatical do modelo" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "Erro de análise do modelo: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "Modelo: %1" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Modelos" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Modelo para a fila %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Texto" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "O arquivo de texto não é mostrador porque foi desabilitado nas preferências." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Este já é o valor atual" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Este não é um valor para este campo personalizado" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "Essa função não é válida para este objeto" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Este tíquete tem dependências não resolvidas" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Este usuário já possui este tíquete" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Este usuário não existe" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Este usuário já tem privilégios" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Este usuário já não tem privilégios" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Este usuário agora tem privilégios" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Este usuário agora não tem privilégios" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Este usuário não pode possuir tíquetes nesta fila" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Este não é um identificador numérico" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Sumário" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "O CC de um tíquete" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "A classe do artigo identificado por %1 não é aplicável a fila atual" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "A senha do DBA do banco de dados" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "O CC administrativo de um tíquete" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "Os usuários verificados podem receber e-mail relacionado com este Tíquete, dependendo da ação tomada. Desmarque os usuários para parar o envio de eles sobre este tíquete." #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "O catálogo padrão" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "O domínio de seu servidor de banco de dados (como 'db.example.com')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "O seguinte comando encontrará todos tickets ativos na fila 'Geral' e definirá sua prioridade para 99 se eles estiverem atrasados:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "A consulta foi apagada e será removida do painel assim que ele for atualizado." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "As consultas a seguir podem não ficar visíveis a todos usuários que podem ver este dashboard." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "Chave foi desativada" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "Chave foi revogada" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "Chave está expirada" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "Chave totalmente confiável" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "Em última análise, a chave é confiável" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "O novo valor foi atribuído." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "O proprietário de um tíquete" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "A página requisitada não foi encontrada" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "O requisitante de um tíquete" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "A configuração que você escolheu foi armazenada em %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "O sistema não pode assinar mensagens de email saintes. Isto usualmente indica que a passphrase tem problemas de definição ou que o Agente GPG não está ativo. Por favor avise seu administrador de sistema imediatamente. Os endereços do problema são:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Existem várias chaves aceitáveis para encriptação." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Existem mensagens não lidas neste tíquete." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Existe confiança marginal nesta chave" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "Existe mais que um grupo com o nome '%1'. Isto pode causar inconsistência em parte da interface de administração e recomendamos que os nomes conflituosos sejam renomeados." #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Não existe chave aceitável para encriptação." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "Não há mapeamento de estados entre ciclo de vida %1 e %2. Contate seu administrador do sistema." #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Existe uma chave aceitável, mas seu nível de confiabilidade não foi definido." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "Houve um erro ao analisar a consulta da sua pesquisa: %1. Seu administrador do RT pode encontrar mais informações nos registros de erro." #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Estas opções de configuração cobrem parte do que é necessário para colocar o RT rodando. Nós precisamos saber o nome de sua instalação RT e o nome do domínio que vai hospedá-lo. Nós também precisamos definir uma senha para o usuário administrativo padrão." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Este campo personalizado não pode ter lista de valores" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "Esta classe não se aplica a este objeto" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "Este campo personalizado não pode ser adicionado à aquele objeto" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "Este campo personalizado não possui tipos renderizados." #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Esta função só está disponível para administradores do sistema" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Esta funcionalidade somente é disponibilizada para administradores." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "Este processo de servidor foi armazenado nas consultas SQL." #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "Este tíquete não pode ser resolvido até ser aprovado." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "Este tíquete não pode ser resolvido até que %numerate(%1,sua dependência seja,suas dependências sejam) resolvidas." #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Esta ferramenta permite ao usuário invocar módulos Perl arbitrários de dentro do RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Parece que esta transação não tem conteúdo" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "Este usuário %1 ticket de mais alta prioridade %2" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "Isto irá pesquisar por usuários olhando nos seguintes campos:" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "Isto irá levá-lo a um formulário de criação de ativos parcialmente pré preenchida." #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "Isto irá levá-lo a um formulário de criação de tíquete parcialmente pré preenchido." #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Qui" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Quinta" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Tíquete" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Tíquete #%1 Atualização jumbo: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Gráfico de relacionamentos do tíquete #%1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Tíquete #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Tíquete %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Tíquete %1 criado na fila '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Tíquete %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Histórico do Tíquete # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Tíquete Resolvido" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Busca de Tíquete" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Transações do Tíquete" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Ticket e Transação" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Composição do ticket" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Conteúdo do tíquete" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Tipo do conteúdo do tíquete" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "O tíquete não pôde ser criado devido a um erro interno" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Tíquete não pode ser carregado" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "Contagem de tíquete" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Exibição de tíquete" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "Tíquete em" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Metadados do tíquete" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Estado do tíquete alterado" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Atualização do ticket" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "Módulo de busca TiqueteSQL" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Tíquetes" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Tíquetes %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Tíquetes %1 por %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Tickets que eu possuo" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Tíquetes dependentes desta aprovação:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "Tempo" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Tempo Estimado" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Tempo Restante" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "Tempo decorrido" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tempo Trabalhado" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "Tempo estimado" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tempo de apresentação" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "TempoEstimado" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "TempoRestante" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "TempoTrabalhado" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "Temporizador para #%1: %2" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Fuso horário" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Título" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Para" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Para pedir informações sobre suporte, treinamento, desenvolvimento personalizado ou licenciamento, por favor, contacte %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "Alternar %quant(%1,consulta,consultas)" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "Alternar destaque dos tíquetes na caixa de seleção" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "Alternar rastreamento de pilha" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Última atualização" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "DitoDependente" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Ferramentas" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Nome do tópico" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "Adicionado membro do tópico" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "Removido membro do tópico" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Tópico não encontrado" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Tópicos" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "Total Criado-ÚltimaAtualização" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "Total Criado-Resolvido" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "Total Criado-Iniciado" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "Total Devido-Resolvido" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "Total Iniciado-Resolvido" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "Total Inícios-Iniciado" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "Total de tempo estimado" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "Total de tempo restante" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "Total de tempo trabalhado" #: etc/initialdata:317 msgid "Transaction" msgstr "Transação" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transação %1 removida" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transação Criada" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Campos Personalizados da Transação" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "Transação em HTML" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create não foi feito, já que você não especificou um tipo de objeto e id de tíquete" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "DataTransacao" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "Transações" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Transações são imutáveis" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Confiança" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "Tentar" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "Tente novamente" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Ter" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Terça" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tipo" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Digite a: antes dos números de artigos e t: antes dos números dos tickets." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Tipo alterado de '%1' to '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "Desaplicar scrips selecionados" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "Não foi possível adicionar vínculo %1: %2" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "Não foi possível adicionar Sobrescrita de Assunto: %1 %2" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "Incapaz de adicionar membro ao tópico" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "Incapaz de apagar membro do tópico em %1" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Incapaz de determinar tipo de objeto ou identificação" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "Incapaz de encontrar ativos #%1" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "Incapaz de encontrar o catálogo %1" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "Incapaz de encontrar o catálogo '%1'" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Incapaz de carregar artigo" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "Não é possível abrir de atalho ajuda. Motivo:" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "Incapaz de definir UserCSS: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "Incapaz de definir UserLogo: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "Incapaz de definir Privacy ID: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "Incapaz de definir o objeto privativo ou seu ID: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "Incapaz de definir o objeto privativo: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "Não é possível abrir atalho ajuda. Motivo:" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "Não é possível assinar o painel %1: Permissão Negada" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "Não autorizado" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Desmarque a caixa para desabilitar as notificações para os destinatários listados nesta transação somente ; reagendamentos ou atrasos persistentes devem ser tratados na Página Pessoal." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Recuperar" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "Infelizmente, RT não foi capaz de providenciar uma conta para você. Seu administrador do RT encontrará mais informações nos registros" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Usuário Unix" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Desconhecido (nenhum valor de confiança definido)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Desconhecido (este valor é novo para o sistema)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Codificação de conteúdo desconhecida %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Campo desconhecido: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "A não ser que você especifique o status, somente títulos com status ativos (%1) serão pesquisados." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Ilimitado" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Ilimitado" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Painel não nomeado" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Busca sem nome" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Tíquetes sem dono" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Tickets sem donos" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Não privilegiado" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Campos Personalizados não selecionados" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Filas não selecionadas" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Objetos não selecionados" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Chave privada não definida" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Não tomado" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Atualizar" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Atualizar gráfico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Atualizar Gráfico" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Atualizar este Menu" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Atualizar Tíquete" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Tipo de atualização" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Atualizar formato e Buscar" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Atualizar múltiplos tíquetes" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Atualização não registrada." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Atualizar o tíquete" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Atualizar o tíquete #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Atualizar tíquete #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "O tipo da atualização não foi nem correspondência e nem comentário." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "AtualizarEstado" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Atualizado" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "Atualizado por" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Busca salva \"%1\" atualizada" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "Atualizar de %1 para %2" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Enviar" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Carregar um novo logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Enviar múltiplos arquivos" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Enviar múltiplas imagens" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Enviar um arquivo" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Enviar uma imagem" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Enviar até %1 arquivos" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Enviar até %1 imagens" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "Carregando..." #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Utilização:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "Usar um layout de duas colunas para criar e atualizar formulários?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "Use ativo %1 como solicitante do tíquete: %2" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Usar autocompletar para localizar proprietários?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "Utilize o autocomplemento para encontrar as filas?" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Usar padrão (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Usar outras ferramentas administrativas RT" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Usar padrão do sistema (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Use menus suspensos para selecionar qual atualização de ticket você deseja para inclusão em um novo artigo." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "Usado por scrips" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Usuário" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "O usuário %1 está atualmente desativado." #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "O usuário %1 está atualmente desativado. Editar o usuário e selecione \"Deixar este usuário acessar RT\" para ativar." #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Usuário (criado - expira)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Definido pelo Usuário" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "Condições Definidas pelo Usuário e resultados" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "Grupos de usuários" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Informações do usuário" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Direitos de Acesso de Usuário" #: share/html/User/Search.html:48 msgid "User Search" msgstr "Procurar por usuário" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "Sumário de Usuário" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Usuário solicitou uma atualização de tipo desconhecido do campo personalizado %1 para %2 objeto #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "O usuário não pôde ser criado: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Usuário criado" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Usuário desabilitado" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Usuário habilitado" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Usuário tem endereço de e-mail vazio" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Usuário carregado" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Grupos definidos pelo usuário" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "Usuário: %1" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Nome de usuário" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Formato de nome de usuário" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Usuários" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Usuários que satisfazem o critério de busca" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Usando transação #%1" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Consulta Válida" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Validação" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Valor" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Valores" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Variável" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Versão" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Ver modelos de Scripts" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Ver Scripts" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Ver valores dos campos personalizados" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Ver campos personalizados" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Ver e-mails enviados e seus destinatários" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Ver grupos" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Ver painéis dos grupos" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "Ver destaque do tíquete" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Ver painéis pessoais" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Ver fila" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Ver pesquisas salvas" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Ver painéis do sistema" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Ver comentários privados dos tickets" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Ver resumos dos tíqutes" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "CUIDADO: Slavando pesquisas para privacidade em nível de usuário" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Compositor de altura WYSIWYG" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "Editor de mensagens WYSIWIG" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Aviso. Isto NÃO está assinado!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "Alerta: Este painel não possuem destinatários" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "Cuidado: mesclar é uma ação não-reversível! Entre um único número de tíquete com o qual mesclar." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Observador" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "GrupoObservador" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Observadores" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Nós somos capazes de localizar seu banco de dados e nos conectar como o DBA. Você pode clicar em 'Customização Básica' para continuar customizando o RT." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Nós atualmente não podemos nos apresentar como uma Lista quando categorias estão baseadas em um campo personalizado. Por favor use outro tipo de apresentação." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Nós também precisamos do nome do banco de dados que será usado e onde encontrá-lo. Nós também precisamos saber o nome da conta e senha que o usuário RT deve usar. RT pode criar o banco de dados e o usuário para você e esta é a razão que pedidos pelo nome e senha de um usuário com poderes de DBA. Durante o passo 6 do processo de instalação nós usaremos esta informação para criar e iniciar o banco de dados de RT." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Porta Web" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Qua" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Quarta" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Semanalmente" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Resenha semanal" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Bemvindo ao RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "O que eu fiz hoje" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "O que é RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "Quais tíquetes exibir na caixa \"Mais sobre o requisitante\"" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Quando RT não pode manipular uma mensagem de email, para onde ela é encaminhada?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Quando RT envia um email ele define os cabeçalhos From: (De:) e Reply-To: (Responder para:) de maneira que usuários podem manter uma conversação simplesmente selecionando Responder em seu cliente de email. RT usa endereços diferentes para Respostas e Comentários. Estes podem ser trocadas para cada uma de suas filas. Estes endereços precisam ser configurados para permitir o uso do programa rt-mailgate." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "Quando altera tempo de trabalho" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Quando um tíquete é criado" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Quando um tíquete de aprovação é criado, notificar o Proprietário e o AdminCc do í­tem aguardando por aprovação" #: etc/initialdata:137 msgid "When anything happens" msgstr "Quando qualquer coisa acontecer" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "Ao inserir artigos nesta classe em e-mails:" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Quando você pressionar em 'Verificar Conectividade com Banco de Dados' pode acontecer um pequeno atraso enquanto RT tenta se conectar a seu banco de dados" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Sempre que um tíquete for fechado" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Sempre que um ticket é enviado" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Quando um chamado é rejeitado" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Sempre que um tíquete for reaberto" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Sempre que um tíquete for resolvido" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Sempre que um ticket ou transação é enviada" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Sempre que o proprietário de um tíquete for alterado" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Sempre que a prioridade de um tíquete for alterada" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Sempre que a fila de um tíquete for alterada" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Sempre que o estado de um tíquete for alterado" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Sempre que uma transação é enviada" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Sempre que ocorrer uma condição definida por usuário" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Sempre que um novo comentário é adicionado" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Sempre que uma nova correspondência é adicionada" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Onde encontrar o binário do sendmail." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "Largura" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Eliminação" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Trabalho" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Telefone comercial" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Trabalhado" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "Trabalhou %quant(%1,hour,hours) (%quant(%2,minute,minutes))" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "Trabalhou %quant(%1,minute,minutes)" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "Ano" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Sim" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "Você (%1) não está autorizado a usar o RT." #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Você pode editar este painel e sua assinatura para ele no RT." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Você já é proprietário deste tíquete" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "Você vai encriptar mensagens sendo enviadas, mas há problemas com as chaves públicas/certificados dos destinatários. Você tem de corrigir o problema com as chaves/certificados, desabilitar o envio de mensagem para os destinatários com problemas, ou desabilitar encriptação" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "Você vai encriptar mensagens enviadas, but há um problema com a chave pública/certificado do destinatário. Você tem que corrigir o problema com a chave/certificado, desabilitar o envio de mensagens para este destinatário, ou desabilitar a encriptação." #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "Você não está autorizado a usar o RT" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Você podeir para a primeira mensagem não lida ou ir para a primeira mensagem não lida e marcar todas as mensagens como lidas." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "Você também pode clicar no logo acim apara ter cores!" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Você também pode editar as buscas pré-definidas" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "Você pode mudar o modelo se necessário" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Você pode inserir o conteúdo do ticket em qualquer formato livre, texto ou campo wiki." #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Você não pode definir a senha." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Você só pode reatribuir seus próprios tíquetes ou aqueles que não têm dono" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "Você somente pode apoderar-se de um tíquete que seja de propriedade de outro" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Você apenas pode pegar tíquetes que não tem dono" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Você pode pesquisar por qualquer palavra no histórico complaeto do ticket digitando %1palavra." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Você não pode mudar o status de '%1' para '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Você não tem a permissão de SuperUsuário" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "Você não tem permissão para criar artigos em qualquer classe" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "Você não tem permissão para criar ativos neste catálogo %1." #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "Você não tem permissão para ver os artigos em qualquer classe" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "Você não tem permissão para exibir este recurso." #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "Você não tem permissão para exibir este catálogo." #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "Você permitiu %1 %2, mas não foi configurado no RT_SiteConfig.pm, verifique '%3' para obter mais ajuda" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Você foi desconectado do RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "Você habilitou suporte a encriptação mas não informou um endereço de comentários para esta fila" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "Você habilitou suporte a encriptação mas não informou um endereço de correspondência para esta fila" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Você não tem permissão para criar tíquetes nesta fila." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Você pode digitar links em Artigos como \"a:###\", onde ### representa o número do Artigo." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Você precisa informar uma senha Administrativa" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "Você deve definir o StatementLog para verdadeiro para habilitar a consulta a página de histórico." #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "Você deve informar um endereço de comentários para esta fila para poder configurar uma chave privada." #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "Você deve informar um endereço de correspondência para esta fila para poder configurar uma chave privada." #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Você pode ser direcionado diretamente para uma página de entrada. Você vai estar apto para entrar com o nome de usuário %1 e a senha definida anteriormente." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Você pode escolher o banco de dados que faça você ou o administrador local de bancos de dados se sentir mais confortável." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "Você foi desconectado do RT por seu sistema de autenticação. Isto pode ser um problema temporário; neste caso, atualizar esta página pode ajudar." #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Você está vendo esta tela porque iniciou um servidor RT sem um banco de dados ativo. Mais parece que é a primeira vez que você está executando RT. Se você pressionar \"%1\" abaixo, RT vai guiar você na definição de seu servidor RT e do banco de dados." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Volte sempre" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Seu senha não está definida." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "Seu sistema suporta sugestões de cores automáticas para: %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Seu nome de usuário ou senha está incorreto" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "CEP" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Baixo]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Cima]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "[Oculte o catálogo]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[nenhum]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "um campo customizado" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "ativo" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "depois de" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "depois de clicar um vínculo" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "depois que o restante da página carregar" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "alocado" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "e antes" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "e não" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "e depois" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "medida que se desloca" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "barra" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "Antes de" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "corpo" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "final para início" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "Marque esta caixa para aplicar esta Classe globalmente para todas as Filas." #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "Marque esta caixa para aplicar este Campo Customizado para todos os objetos." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "marque esta caixa para aplicar este scrip para todos objetos." #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "Marque esta caixa para remover esta Classe globalmente e ser capaz de escolher Filas específicas." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "Marque esta caixa para remover este Campo Customizado de todos os objetos e ser capaz de escolher objetos específicos." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "Marque esta caixa para remover este scrip de todos objetos e poder escolher objetos específicos." #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "Marque para adicionar" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "Clique para marcar/desmarcar todos objetos de uma vez" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "configuração principal" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "Criar um ticket" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "diariamente em %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "Diariamente" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "Painél" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "painéis no menu" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "removido" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "não contém" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "baixar" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "duração" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "Suspenso o envio de e-mail" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "E-mail desabilitado para tíquete" #: lib/RT/User.pm:270 msgid "empty name" msgstr "nome vazio" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "igual a" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "erro: não pode mover para baixo" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "erro: não pode mover para a esquerda" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "erro: não pode mover para cima" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "erro: nada para remover" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "erro: nada para mover" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "erro: nada para alternar" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "todo" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "plugin executado com sucesso" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "explícita de uma só vez Bcc" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "Bcc explícita de uma só vez" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "tudo" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "maior que" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "grupo" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "grupo %1" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "grupo '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "identificador" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "imediatamente" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "na classe %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "Em uso" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "inativa" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "Inclui %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "índice" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "data devida inválida: %1" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "é" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "não é" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "chave desativada" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "chave expirada" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "chave revogada" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "esquerda para direita" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "menor que" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "Sem classe" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "contém" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "profundidade máxima" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minutos" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "Modificar configuração do RT" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "Modificar um painel" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "Modificar ou acessar uma Pesquisa" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "modificar suas preferências" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "mensalmente" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "mensalmente (dia %1) a %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "nunca" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "novo" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "não" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "Endereço de e-mail não configurado" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "nenhum" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "não" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "diferente de" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "nada" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "objetos foram removidos com sucesso" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "em" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "no dia" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "um" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "aberto" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "abrir/fechar" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "outro..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "executar ações" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "pizza" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "plugin retorna lista vazia" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "fila %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "recebe resumos diários" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "Receber resumos semanais" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "Reciclado" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "rejeitado" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "exige a execução do rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "resolvido" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "direita para esquerda" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "pesquisar" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "observar listas abaixo" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "barra lateral" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "configuração da página" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "pendente" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "comando" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "roubado" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "linhas do sumário" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "sistema %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "grupo do sistema '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "tabela" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "O cabeçalho de referência fornecido pelo seu browser (%1) não é permitido pela configuração de hostname (%2) do RT." #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "O cabeçalho de referência fornecido pelo seu browser (%1) não é permitido pela configuração de hostname (%2) do RT ou na White List de hosts (%3)." #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "o componente chamador não especificou por que" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "os endereços padrão que serão colocados nos cabeçalhos From: (De: ) e Reply-To: (Responder para:) das mensagens de comentário" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "os endereços padrão que serão colocados nos cabeçalhos From: (De: ) e Reply-To: (Responder para:) das mensagens de corrrespondência" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "tíquete #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "início para final" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "final" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "grupo %1 sem descrição" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "ilimitado" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "atualizar um tíquete" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "atualizar uma aprovação" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "Atualizar um artigo" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "usuário" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "usuário %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "nome de usuário" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "semanalmente" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "semanalmente (de %1) a %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "semanas" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "que podem %1 em seu nome." #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "qual porta seu servidor web vai responder, por exemplo, 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "com cabeçalhos" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "sim" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "Seu browser não suporta um cabeçalho de referência." rt-4.4.2/share/po/es.po0000664000175000017500000135115013131430353014527 0ustar vagrantvagrant# Spanish translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2017-04-21 22:07+0000\n" "Last-Translator: Ernesto Silva \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" "Language: es\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "N°" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "Añadido %1 %2" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 ha cambiado de %2 a %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 eliminados" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 eliminado." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 no existe" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 está deshabilitado" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 guardado." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 actualizados." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 con la plantilla %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) por %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Sin cambios)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (del panel %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Ajustar la opción de configuración LogToSTDERR" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Un parámetro para pasar a %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "%1 - un parámetro a pasar a %2. Esta opción puede repetirse para pasar los correspondientes parámetros a múltiples llamadas a %2." #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Enviar actualizaciones de estado a STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Especifique si desea usar 'primera','última' o 'todas' las transacciones" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Especifique el nombre o id de la(s) plantilla(s) que quiere utilizar" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "%1 - Especifica el módulo que desea utilizar. Esta opción puede repetirse para aplicar múltiples acciones a los tickets encontrados." #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Especifique la lista de tipos de transaciones separados por coma que desea usar" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Especifique el módulo de condición que quiere utilizar" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Especifique el modulo de búsqueda que quiere utilizar" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "%1 Campos personalizados" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "Versión %1" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 añadido como un valor de %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "%1 añadido a los receptores de las subscripción al panel." #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "hace %1" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 ya existe y tiene las tablas de RT en su lugar, pero no contienen los metadatos de RT. Mediante 'Initializar la base de datos', más adelante puede insertar los metadatos en esta base de datos preexistente. Si es aceptable, presione 'Personalizar lo Basico' abajo para seguir personalizando RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 ya existe, pero no contiene las tablas ni los metadatos de RT. El paso de 'Initializar la base de datos' mas adelante puede insertar los metadatos adentro de este base de datos ya existente. Si es aceptable esto, presione 'Personalizar lo Basico' abajo para seguir en personalizar RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "%1 ya tiene el permiso %2 sobre %3 %4" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 parece ser un objeto local, pero no se encuentra en la base de datos" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 parece estar ya personalizado. No tenemos que crear las tablas ni los metadatos de RT, pero puede seguir en personalizar RT por presionar 'Personalizar lo Basico' abajo." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 por %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 no puede ser un grupo" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 ha cambiado de %2 a %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 cambiado desde «%2» a «%3»" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 copiar" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 configuración principal" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 no se ha podido fijar a %2" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 creado" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 eliminado" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 deshabilitado" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 no existe" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 habilitado" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 tickets de mayor prioridad que poseo" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 es una herramienta para actuar sobre los tickets con una herramienta de planificación externa, como cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 es una utilidad, hecha para ser ejecutada a partir de cron, que reparte las notificaciones diferidas de RT como un resumen por usuario" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "%1 ya es %2" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 ya está establecido en %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 es una dirección en la cual RT recibe correo. Añadirla como un '%2' podría crear un bucle de correo" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "%1 ya no es %2 para esta cola" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "%1 ya noes %2 para este ticket" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 ya no es un valor para el campo personalizado %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 no es un(a) %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 no es un ciclo de vida válido" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 incidentes" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 llave '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 articulos mas actualizados" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "Tickets relacionados recientemente actualizados de %1" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "Artículos más recientes de %1" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "Los %1 pedidos más recientes sin propietario" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objetos" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "%1 removido del panel de subscripción de destinatarios" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 establecido como %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 configuración del sitio" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 actualizado: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 actualizado: Sin cambios" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 actualizado" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1's %2 objetos" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1's %2's %3 objetos" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1's contraseña actual" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Cuadros de mando de %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "las llaves de encriptacion de %1" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "búsquedas guardadas de %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: ningún archivo adjunto especificado" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Nuevo ticket en%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "%1Sem" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "%1Año" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,articulo,articulos)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,dia,dias)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1, hora)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,hora,horas) (%quant(%2,minuto,minutos))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,minuto,minutos)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,mes,meses)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,segundo,segundos)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,semana,semanas)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,año,años)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "«%1» no es un nombre válido." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' no es una clase válida" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "«%1» no es un identificador de clase válido" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Marque la casilla para completar" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Marque la caja para borrar)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Marque las cajas para borrar)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "(Revise para borrar todos los valores)" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Ingresar los numeros id o los URL de los tickets, separados por espacios)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Si se deja vacío, pasará por omisión a %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(Incompleto)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(Datos incorrectos)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(No hay campos personalizados)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Sin miembros)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Sin acciones)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Sin plantillas)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Envía una copia de esta actualización a una lista delimitada por comas de direcciones de email administrativas. Estas personas recibirán futuras actualizaciones.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Envía una copia de esta actualización a una lista de direcciones de correo delimitada por comas. Estas personas recibirán futuras actualizaciones." #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "(Tipo de campo personalizado no soportado)" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Usar estos campos cuando se selecciona 'Definido por el usuario' para una condición o acción)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(cualquiera)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(sin resumen)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(sin nombre)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(¡no hay clave pública!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(sin valor)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(sin valores)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(pendiente %quant(%1,otro ticket))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(pendiente de aprobación)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "(ticket pendiente #%1)" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(requerido)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(confianza: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(sin título)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(¡no confiable!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "(vía este catálogo de activos)" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id es un argumento desaprobado (deprecated) y no se puede utilizar con --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "el argumento de --transaction sólo puede ser 'first', 'last' ó 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 segundos" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Ya existe una plantilla con ese nombre" #: etc/initialdata:258 msgid "A blank template" msgstr "Una plantilla en blanco" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "No se estableció contraseña, así que el usuario no podrá logarse" #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE no encontrado" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACEs solo pueden ser creadas o borradas." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "Actualizaciones de ACL de %1" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "Y" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Acerca de mí" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Control de acceso" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Acción" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "No se encuentra la acción '%1'" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Acción realizada." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "La acción es un argumento obligatorio" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Acción preparada..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Acciones" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Tickets Activos" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "Tickets activos" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Tickets activos para %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Añadir %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Añadir AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Añadir Marcador" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Añadir Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Añadir Columnas" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Añadir Criterio" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Añadir más archivos" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "Añadir receptores" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Añadir solicitante" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Añadir Valor" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "Añadir grupo" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "Añadir persona" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "Añadir un activo a este ticket" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Añadir comentarios o respuestas a los tickets seleccionados" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "Añadir valores al campo personalizado solo al momento de crear el objeto" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Añadir grupo" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Agregar aquí" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Añadir miembros" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Añadir nuevos observadores" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Añadir derechos para este %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Agregar estos términos" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Agregar estos términos y Buscar" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Añadir usuario" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Agregar valores" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Añadir, modificar y borrar los valores campos modificados para los objetos" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Agregado" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "Añadido %1 como %2 para esta cola" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "Añadido %1 como %2 para este ticket" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "Añadida anulación de asunto: %1" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "Añadido campo personalizado %1 a %2" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Dirección" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Dirección 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Dirección 1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Dirección 2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "Ajustar tiempo trabajado en %quant(%1,minuto,minutos)" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Administrador" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "Admin Catálogos" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Admin Comentario" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Comentario del administrador en HTML" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Admin Correspondencia" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Correspondencia del Admin en HTML" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Administración de colas" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Administración de la configuración global" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Contraseña administrativa" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Avanzado" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Búsqueda avanzada" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Una vez haya ingresado, será enviado a su destino original:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Agregador" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Todas las Aprobaciones Superadas" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Todas las aprobaciones en HTML" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Todos los articulos en esta clase deberian estar listados en un dropdown (menu hacia abajo) del la pagian de respuesta al ticket" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "Todos los Catálogos" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Todas las clases" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Todos los campos personalizados" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Todos los paneles" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Todas las colas" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Todos los tickets" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "Todos los catálogos que coinciden con el criterio" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Todos los feeds de iCal incluyen un token secreto que le da autorización. Si la URL uno de sus feeds iCal se vio expuesta al mundo exterior, puede conseguir un nuevo token, rompiendo todos los feeds de iCal existentes debajo." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Todas las colas coincidentes con el critero de busqueda" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "Todos los receptores" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Todos los tickets" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Todos los tópicos" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "Asignar" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Permitir la creación de búsquedas guardadas" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Permitir carga de búsquedas guardadas" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Permitir la escritura de código Perl en plantillas, scrips, etc" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Ya encriptado" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "Siempre envía un mensaje al solicitante independientemente del remitente" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "Una %1introducción para iniciarse con los artículos%3 está disponible desde la %2documentación en línea de BestPractical%3." #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "Se debe proveer una instancia" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Ha ocurrido un error" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "Ha ocurrido un error enviando el tiempo/hora. Favor de enviar su tiempo/hora manualmente." #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Y/O" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Anualmente" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Cualquier campo" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Cualquier palabra que no sea reconocida por RT se busca en el asunto de los tickets." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Aplica a" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Aplica a todos los objetos" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Aplicar" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Aplicar globalmente" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Aplicar los scripts seleccionados" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Aplicar cambios" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Aprobación" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Aprobación #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Aprobación #%1: No se han guardado las notas debido a un error del sistema" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Aprobación #%1: Notas guardadas" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Aprobación superada" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "Aprobación pasada en HTML" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Aprobación lista para el propietario" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "Aprobación lista para dueño en HTML" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Aprobación rechazada" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "Aprobación rechazada en HTML" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Aprobar" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Abr" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "Artículo #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "Artículo #%1 no encontrado" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Artículo #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Artículo %1 creado" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Administracion de Articulos" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artículo no encontrado" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Artículos" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Artículos en %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Artículos que coinciden con %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artículos sin tópicos" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "Activo #" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "Activo #%1" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "Activo #%1 creado por: %2" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "Activo #%1: %2" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "Administración de activos" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "Falló transacción para Crear Activo: %1" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "Campos personalizables de activos" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "Falló creación de activo: %1" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "Activos" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "Los activos no deben borrarse" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Asignar y remover campos personalizados de la cola" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "Activos asignados" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Adjunto" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Adjuntar archivo" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Archivo adjunto" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Adjunto" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Archivo adjunto '%1' no pudo ser cargado" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Archivo adjunto creado" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Nombre del archivo adjunto" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Archivos adjuntos" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "La encriptación de adjuntos está deshablitada" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Atributo borrado" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "Atributo actualizado" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Ago" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "AutoFirma" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "La configuración automática de la cuenta falló" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Los colores de tema sugeridos automáticamente no están disponibles para su imagen. Esto puede deberse a que ha subido un tipo de imagen que su versión instalada de GD no soporta. Los tipos soportados son: %1. Puede recompilar libgd y GD.pm para incluir soporte para otros tipos de imágenes." #: etc/initialdata:261 msgid "Autoreply" msgstr "Respuesta automática" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Respueste automática a los solicitantes" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Autorespuesta en HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Disponible" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "Promedio Creado-UltActualiz" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "Promedio Creado-Resuelto" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "Promedio Creado-Iniciado" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "Promedio Vencido-Resuelto" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "Promedio Iniciado-Resuelto" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "Promedio Inicio-Iniciado" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "Promedio de tiempo estimado" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "Promedio de tiempo restante" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "Promedio de tiempo trabajado" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Atrás" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Privacidad errónea para atributo %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Básicos" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "Por lotes" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "Batch (deshabilitado en la configuración)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Scrips en Batch" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "Guiones Batch ejecutan después de cambios relacionados con un ticket." #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "Antes de que los Artículos puedan ser usados, su administrador de RT debe %1crear Clases%2, aplicarles campos personalizados de Artículo, y otorgar permisos de usuario en las clases y CF's." #: etc/initialdata:257 msgid "Blank" msgstr "Vacio" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Cuerpo" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Negrita" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Marcador" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Enlace para agregar a marcadores esta búsqueda" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Tickets Marcados (Bookmarked)" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Tickets en marcadores" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Buscar por tema" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Buscar las consultas SQL hechas en este proceso" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Actualización en bloque" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "CampoPersonalizado" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "Se puede buscar en los campos personalizados usando una sintaxis similar a la anterior con %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "Calcular" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "Calcular valores de" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "No puede cargar la busqueda salvada \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "No se pueden modificar los usuarios del sistema" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "No puede agregar un valor de campo personalizado sin nombre" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "No se puede cambiar el valor por omisión de %1 de %2 a %3: %4" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "No se puede cambiar el valor por omisión de %1 a %2: %3" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "No se puede encontrar una búsqueda guardada para trabajar" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "No se puede reenviar: dirección de correo inválida" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "No se puede relacionar un ticket consigo mismo" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "No se puede enlazar a un ticket borrado" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "No se puede unir un ticket consigo mismo" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "No se puede crear el ticket en la cola %1 porque los campos personalizados son requeridos. Por favor finalice este proceso a través de la página de creación de ticket." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "No se puede salvar %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "No se puede guardar una búsqueda sin una Descripción" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "No se puede grabar esta búsqueda" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "No se puede especificar ambos base y destino" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "No se puede agregar vínculo solo a un número" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "No es posible crear tickets en una cola deshabilitada" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "No se puede modificar objetos del rol personalizado desabilitado #%1" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "Catálogo" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "Catálogo #%1 creado: %2" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "Catálogo %1: Editar Campos Personalizados" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "Catálogo %1: Modificar básicos" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "Catálogo %1: Modificar permisos de grupo" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "Catálogo %1: Modificar roles" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "Catálogo %1: Modificar permisos de usuario" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "Catálogo, falló crear txn: %1" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "Catálogo, falla de creación: %1" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "Catálogos" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "Los Catálogos no pueden eliminarse" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Las categorías se basan en" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Categoría" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Cambiar" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Cambiar el ticket de aprobación a estado abierto" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Cambiar tema del mail:" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Cambiar contraseña" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "El cambio de cola aún no está implementado" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Gráfico" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "Verificar" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Seleccionar Todo" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Verifique la conectividad de la base de datos" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Verificar las credenciales de la Base de Datos" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Seleccione la casilla para borrar" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Hijo" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Hijo" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Elija motor de base de datos" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Escoger los asuntos para %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Ciudad" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Clase" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Nombre de la clase" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "La clase no pudo ser creada: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "ID de clase" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Esta clase ya está aplicada globalmente" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Esta clase ya está aplicada a %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Clases" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Limpiar" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Borrar Todo" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Haga click en \"Finalizar instalación\" debajo para terminar este asistente" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Haga click en \"Inicializar base de datos\" para crear la base de datos de RT e insertar los metadatos originales. Esto podría tardar unos momentos" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Haga click para seleccionar un color" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "Cerrar Ventana" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Cerrado" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Tickets cerrados" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Seleccione o ingrese múltiples valores" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Combobox: Seleccione o ingrese un valor" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Combobox: Seleccione o ingrese hasta %1 valores" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Comentario" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Dirección de comentario" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Dirección de comentario" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "Comentar en el ticket" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Comentar sobre los tickets" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Comentarios" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Comentarios (no se envían a los solicitantes)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Comentarios acerca de este usuario" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Comentarios añadidos" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Acción realizada" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Condición" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Condición '%1' no encontrada" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Condición es un argumento obligatorio" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "La condición coincide..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Condición, Acción y Plantilla" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "El archivo de configuración %1 está bloqueado" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Configuración para cola %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "Configuración para el role %1" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Conexión exitosa" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "Contacto" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Contacte a su administrador de RT vía %1 mail a %2 %3." #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Contacte a su administrador de RT." #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Contenido" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Contenido desechado porque el tamaño (%1 bytes) execedió el máximo configurado (%2 bytes)." #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "Fallo al insertar contenido. Vea la bitácora de errores para mas detalles." #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "El contenido no es una dirección IP válida" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "El contenido no es un rango de direcciones IP válido" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Contenido truncado porque el tamaño (%1 bytes) exedió el máximo configurado (%2 bytes)." #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tipo de contenido" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "TipoDeContenido" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Dirección de correspondencia" #: etc/initialdata:393 msgid "Correspondence" msgstr "Correspondencia" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Correspondencia agregada" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Correspondencia en HTML" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "No se pudo agregar %1 como receptor: %2" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "No fue posible agregar el valor del campo personalizado: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "No fue posible cambiar el propietario: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "No se pudo crear CampoPersonalizado: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "No se pudo crear el grupo" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "No se pudo crear la búsqueda: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "No se pudo crear el ticket. Cola no seleccionada" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "No se pudo crear el usuario" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "No se pudo eliminar la búsqueda %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "No se puede encontrar el grupo '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "No se puede encontrar o crear el usuario '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "No fue posible cargar el atributo %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "No se pudo cargar la clase %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "No se pudo cargar CustomField %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "No se pudo cargar el rol personalizado #%1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "No se puede cargar el grupo" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "No se pudo cargar objeto para %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "No se pudo cargar el scrip #%1" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "No se pudo cargar historia del ticket. Razón:" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "No se puede cargar el usuario '%1'" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "No se puede hacer %1 un(a) %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "No se puede eliminar %1 como un(a) %2" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "No se pudo establecer la información del usuario" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "No se puede actualizar la columna %1: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "No se pudo agregar, pues ya es global" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "No fue posible agregar adjunto" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "No se pudo agregar valor del campo personalizado al crear: %1" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "No se pudo agregar el miembro al grupo" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "No se pudo compilar el bloque de código %1 '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "No se pudo compilar el bloque de código de plantilla '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "No se pudo crear la transacción: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "No se pudo crear el registro: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "No se pudo crear grupos de rol para el activo" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "No se pudo crear grupos de rol para el catálogo" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "No fue posible borrar el cuadro de mandos %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "No se pudo encontrar la fila" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "No se pudo encontrar una traducción adecuada, omitiendolo" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "No pudo enconcontrar ese principal" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "No se pudo encontrar ese valor" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "No se pudo obtener información de la clave %1" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "No se pudo cargar Class %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "No fue posible cargar el campo personalizado #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "No se pudo cargar el CustomField #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "No se pudo cargar CustomField %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "No se pudo cargar una copia de %1 #%2" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "No fue posible cargar la copia del pedido #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "No se pudo cargar el rol personalizado '%1'" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "No fue posible cargar el cuadro de mandos %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "No fue posible cargar el grupo #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "No se pudo cargar el grupo %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "No se pudo cargar el enlace" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "No se puede cargar el enlace: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "No se pudo cargar objeto %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "No se pudo cargar o crear al usuario: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "No se pudo cargar el #%1 principal" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "No se pudo cargar el %1 principal" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "No se pudo cargar la cola" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "No fue posible cargar la cola #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "No se pudo cargar la cola %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "No fue posible cargar la cola '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "No fue posible cargar la acción #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "No fue posible cargar la plantilla #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "No se pudo cargar la entidad especificada" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "No se pudo cargar el ticket '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "No se pudo cargar la membresía del tema al tratar de eliminarlo." #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "No fue posible cargar la transacción #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "No se pudo cargar al usuario" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "No fue posible cargar al usuario #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "No se pudo cargar al usuario #%1 ni al usuario '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "No se pudo cargar al usuario '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "No se puede interpretar la URI base: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "No se puede interpretar la URI objetivo: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "No se pudo remover el miembro anterior: %1" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "No fue posible reemplazar el contenido con la información desencriptada: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "No fue posible reemplazar el contenido con la información encriptada: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "No se pudo reconocer '%1' como un enlace." #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "No se pudo resolver base '%1' en una URI" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "No se pudo resolver el destino '%1' en una URI" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "No se pudo establecer %1 observador: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "No se pudo establecer clave privada" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "No se pudo desconfigurar la clave privada" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "País" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Crear" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "Crear nuevo" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Crear Tickets" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Crear una clase" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Crear CampoPersonalizado" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Crear un campo personalizado para la cola %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "Crear rol personalizado" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "Crear un srip global" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Crear un artículo nuevo" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Crear un artículo nuevo en" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "Crear un nuevo activo en el catálog %1" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "Create un nuevo activo en el catálogo %1." #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Crear un nuevo cuadro de mandos" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Crear un nuevo grupo" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Crear una nueva plantilla para la cola %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "Crear un nuevo ticket en %1" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "Crear un nuevo ticket en la cola %1 sobre el activo #%2: %3." #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Crear un nuevo usuario" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Crear una cola" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "Crear un scrip y agregarlo a la cola %1" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Crear una plantilla" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Crear un ticket" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "Crear ticket en %1" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Crear un ticket con este usuario como el Solicitante en Cola" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Crear un artículo" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Crear un artículo en la clase..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Crear artículos en esta clase" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "Crear un activo" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "Crear activos" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "Crear catálogos" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Crear paneles de grupo" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "Crear un ticket enlazado" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "Crear un ticket enlazado para el activo #%1: %2" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "Crear un nuevo activo" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Crear nuevos tickets basados en la plantilla de esta acción" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Crear cuadros de mandos personales" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Crear cuadros de mandos del sistema" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Crear ticket" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Crear tickets" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Crear, modificar y eliminar entradas en la lista de control de acceso" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Crear, modificar y eliminar campos personalizados" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Crear, modificar y eliminar valores de campos personalizados" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "Crear, modificar y eliminar roles personalizados" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Crear, modificar y eliminar colas" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Crear, modificar y eliminar búsquedas almacenadas" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Crear, modificar y eliminar usuarios" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "Crear, modificar e inhabilitar catálogos" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Creado" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Creado por" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "CampoPersonalizado %1 creado" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Creado por" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Búsqueda %1 creada" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "CreadoPor" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "CreadoRelativo" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Creador" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Criptografía" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "La Criptografía está deshabilitada" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Enlaces Actuales" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "Receptores actuales" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Búsqueda actual" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Miembros actuales" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Búsqueda actual" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Observadores actuales" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "CSS personalizada (Avanzado)" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Campos Personalizados" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Campos Personalizados para %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Campos personalizados para la cola %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "Roles personalizados" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "Código de confirmación de acción personalizada" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Código de preparación de acción personalizada" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Condición personalizada" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "El campo personalizado #%1 no se aplica a este objeto" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Campo personalizado %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "El campo personalizado %1 no se aplica a este objeto" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Campo personalizado %1 tiene un valor." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Campo personalizado %1 no tiene un valor." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Campo personalizado %1 no encontrado" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "El valor del campo personalizado %1 no pudo ser encontrado para el campo personalizado %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "El valor del campo personalizado no pudo ser borrado" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Valor del campo personalizado borrado" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "Rol personalizado creado" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "Rol personalizado deshabilitado" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "Rol personalizado habilitado" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "Rol personalizado no agregado" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CampoPersonalizado" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "ValorCampoPersonalizado" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "RolPersonalizado" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Personalizar" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Personalizar Básico" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Personalizar dirección de correo electrónico" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Configurar correo electrónico" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Personalizar paneles en el menú" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "Personalizar el tema del RT" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Modificar la apariencia de RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Contraseña del administrador de la base de datos" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Nombre del usuario para el Administrador de la Base de Datos" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Diariamente" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Resumen diario" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Cuadro de mandos" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "Panel %1 no pudo ser actualizado: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "Panel %1 actualizado" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "No fue posible crear Cuadro de Mandos: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "No fue posible actualizar Cuadro de Mandos: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Cuadro de Mandos actualizado" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Cuadros de Mandos" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Paneles en el menú" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Paneles en el menú para el usuario %1" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Host de la base de datos" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nombre de base de datos" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Contraseña de la base de datos para RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Puerto de la base de datos" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tipo de base de datos" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Usuario de la base de datos para RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "Fecha" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Formato de fecha" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Fechas" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "Día" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "DíaDelMes" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "DíaDeLaSemana" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "DíaDelAño" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dic" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Desencriptar" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "Error al desencriptar: contacte al administrador" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "Por omisión %numerate(%1,valor,valores)" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "Valores por omisión" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "Valores por omisión para la cola %1" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Cola predeterminada" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "Plantilla de recordatorio por omisión" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "Por omisión silenciar todas las notificaciones por emial (desde la interfaz web) al actualizar tickets" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "Valor por omisión de %1 cambió de %2 a %3" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "Valores por omisión cambiaron de %1 a %2" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Predeterminado: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Por omisión: %1/%2 ha cambiado de %3 a %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "DefaultVence" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "FormatoPredefinido" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "DefaultInicia" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Borrar" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Borrar Plantilla" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Borrado fallido: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Eliminar paneles de grupo" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "La eliminación ha sido desactivada por la configuración del ciclo de vida" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Borrar cuadros de mandos personales" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Borrar cuadros de mando del sistema" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Borrar tickets" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Borrar valores" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Eliminado %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Consultas borradas" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Búsqueda salvada, eliminada" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Búsqueda %1 eliminada" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Al borrar este objeto, se romperá la integridad referencial" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Al borrar este objeto, se violará la integridad referencial" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Denegar" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Dependen de este ticket" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "DependeDePor" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Dependencia para %1 añadida" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Dependencia para %1 borrada" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Dependencia en %1 añadida" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Dependencia en %1 borrada" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "DependienteDe" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Depende de" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "DependeDe" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Describa el problema debajo" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Descripción" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Información detallada sobre su instalación de RT" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Detalles" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "Detectar una situación cuando debió establecerse la fecha de Vencimiento" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "Detectar una situación cuando debió establecerse fecha de Inicio" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Dirección" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "Deshabilitar artículos en esta clase" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Deshabilitado" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "Deshabilitado?" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Despliegue" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Mostrar Lista de Control de Acceso" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Mostrar artículo %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Mostrar Columnas" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "Mostrar todos los adjuntos de texto plano en fuente monoespaciada, conservando el formato, pero ajustándolo según sea necesario." #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "Mostrar los mensajes en formato de texto enriquecido si está disponible" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Mostrar los adjuntos de texto plano en fuentes monoespaciadas." #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Mostrar ticket después de la \"Creación Rápida\"" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Distribuido bajo la %1versión 2 de la GNU GPL%2" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Hacer cualquier cosa y todo" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Nombre de dominio" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "No incluya http://, sólo algo como 'localhost' o 'rt.ejemplo.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "No actualizar la pagina principal." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "No actualizar los resultados de la busqueda." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "No recargar esta página" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "No confiar nunca en esta llave" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Descargar" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "Descargar planilla electrónica" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Descargar archivo de volcado (dump)" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "Arrastre archivos aquí o haga click para adjuntar" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Desplegable" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Fecha límite" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "VencimientoRelativo" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Actualice de un modo simple sus tickets abiertos" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Vista fácil de sus recordatorios" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Editar" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "Editar %1" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Editar campos personalizados" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Editar campos personalizados para %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "Editar Campos Personalizables para Activos en todos los Catálogos" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Editar Campos Personalizados para todos los grupos" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Editar campos personalizados para todas las colas" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Editar Campos Personalizados para todos los usuarios" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Editar campos personalizados para los artículos de todas las clases" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Editar Campos Personalizados para tickets en todas las colas" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Editar enlaces" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Editar Consulta" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Editar Búsqueda" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Modificar la jerarquía global de los temas" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Editar plantillas del sistema" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Modificar la jerarquía de tema para %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Editando campo personalizado %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Editando los miembros del grupo %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "IdEfectivo" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "La base o el destinatario deben ser especificados" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Usted no tiene los permisos necesarios para ver la búqueda guardada %1 o el identificador es incorrecto" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "Transcurrido" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "Correo" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Dirección de correo electrónico" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Resumen por e-mail" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "Origen del Email para el Ticket %1, Adjunto: %2" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "La dirección de correo ya está en uso" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Envío por e-mail" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Plantilla para notificaciones periódicas por e-mail" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "CorreoElectrónico" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "Vacío" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "Habilitar citas anidadas?" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Habilitado" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "Habilitado (Desmarcar esta casilla inhabilita este artículo)" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Habilitado (Desmarcar esta casilla inhabilita esta clase)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Habilitado (Desmarcar esta casilla inhabilita este campo personalizado)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "Habilitado (Desmarcar esta casilla inhabilita este rol personalizado)" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Habilitado (Desmarcar esta casilla inhabilita este grupo)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Habilitado (Desmarcar esta casilla, inhabilita esta cola)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Activar (Desmarcar esta casilla inhabilita este scrip)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "Catálogos Habilitados" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Clases habilitadas" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Colas habilitadas" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "Catálogos habilitados que coinciden con el criterio de búsqueda" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Colas habilitadas que coincidan con los criterios de búsqueda" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Estado %1 habilitado" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Codificar" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Codificar por defecto" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Codificar/Decodificar" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Codificar/Descodificar transacción #%1 del ticket #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "Encriptando" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Error de encriptación; contacte al administrador" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Ingresar artículos, tickets u otras URLs relacionadas con este artículo." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "Ingrese enlaces a los activos como \"asset:###\", donde ### representa el ID del activo." #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Ingresar múltiples rangos de direcciones IP" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Ingresar múltiples direcciones IP" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Introducir multiples valores" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Introduzca los valores múltiples con autocompletado" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Introduzca objetos o URIs a los que enlazar los objetos. Separe las entradas múltiples mediante espacios." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Ingrese una dirección IP" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Ingrese un rango de direcciones IP" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Introducir un valor" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Introduzca un valor con autocompletado" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Introduzca colas o URIs a los que enlazar las colas. Separe las entradas múltiples mediante espacios." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Ingrese los números de ticket o las URI que enlazan a tickets. Separe multiples entradas con espacios" #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "Ingrese los URIs de los tickes a enlazar. Separe múltiples entradas con espacios." #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Ingrese el tiempo en horas por defecto" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Ingrese un máximo de %1 rango(s) de direcciones IP" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Ingrese un máximo de %1 dirección(es) IP" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Introduzca hasta %1 valores" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Introduzca un máximo de %1 valores con autocompletado" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "Ingresando %1, %2, %3 o %4 limita los resultados a los tickets con uno de los respectivos tipos de estado. Cualquier nombre de estado individual limita los resultados a solo los estados mencionados." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "Sugerencia de ingreso" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "Variables de entorno" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "Error cargando adjunto" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "Error dibujando diagrama: %1" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Error en propietario de RT: clave pública" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Error: cuadro de mando extraviado" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Error: datos GNUPG erróneos" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "Error: datos mal encriptados" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Error: no se puede cambiar la privacidad de la búsqueda" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Error: no se pudo cargar la búsqueda guardada %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Error: no hay clave privada" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Error: clave pública" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Error: búsqueda %1 no actualizada: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "Error: mensaje no encriptado" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Escalar tickets" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Estimado" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Todos" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Ejemplo:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Expirar" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "EstadoExtendido" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Autenticación externa habilitada" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "Información Extra" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Información extra" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Extraer artículo" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Extraer Etiqueta del Asunto" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Extraer un nuevo artículo del ticket #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Extraer artículo del ticket #%1 en la clase %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extraer etiquetas del asunto de una transacción y añadirlas al asunto del ticket." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Falló al conectar a la base de datos: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Falló la creación del atributo %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Problema para encontrar el pseudogrupo de usuarios 'Privilegiados'" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Problema para encontrar el pseudogrupo de usuarios 'No Privilegiados'" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Falló al cargar %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Fallo al cargar %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Error al cargar el modulo %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Error al cargar objeto para %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "No pudo cargar la plantilla" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "Fallo al cargar el ticket %1" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "No se pudo analizar la plantilla" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "Fallo al actualizar el formado. Razón:" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "feb" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Canales" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Campo" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Origen del valor del campo:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "Archivo '%1' descartado porque el tamaño (%2 bytes) exedió el máximo configurado (%3 bytes)." #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "Archivo '%1': fallo de inserción. Ver bitácora de errores para mas detalles." #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "Archivo '%1' truncado porque el tamaño (%2 bytes) excede el máximo configurado (%3 bytes)." #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Nombre de fichero" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "No se pueden subir archivos cuyos nombres tengan comillas dobles" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Argumentos de relleno" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Rellenar cajas con color usando" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Rellenar en multiples areas de texto" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Rellenar en multiples areas wikitext" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Rellenar en un area de texto" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Rellenar en un area wikitext" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Completar este campo con una URL" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Rellenar en hasta %1 areas de texto" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Rellenar en hasta %1 areas wikitext" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Prioridad Final" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "PrioridadFinal" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "Encontrar un grupo..." #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Encontrar un usuario" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "Encontrar un usuario..." #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Encontrar todos los usuarios cuyo" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "Encontrar un activo" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Encontrar grupos cuyo" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Encontrar usuarios que" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Encontrar tickets" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "EncontrarActivo" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "EncontrarUsuario" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Huella digital" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Terminar" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Primero" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "Por ayuda local favor de contactar a %1" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "Para una búsqueda más potente en RT por favor visite la %1interfaz para construcción de búsquedas%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Forzar cambio" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formato" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "Da formato a los eventos del canal iCal con fecha y hora" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Reenviar" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Reenviar mensaje" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Reenviar mensaje y retornar" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Reenviar Ticket" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Transferir mensajes fuera de RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Reenviar ticket #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Reenviar transacción #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "%3Transacción #%1%4 enviada a %2" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Transferir ticket a %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "Mensaje reenviado" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "Mensaje de ticket reenviado" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "Encontrado %quant(%1,asset,assets)" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Mostrando %quant(%1,ticket)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Objeto encontrado" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frecuencia" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Vie" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Viernes" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Desde" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD está desactivado o no está instalado. Puede cargar una imagen, pero no obtendrá sugerencias automáticas de color." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "Activos generales" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Privilegios generales" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Cómo empezar" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "Brindar salida aún con mensajes enviados exitosamente" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Dado a %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Atributos globales" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Temas globales" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Configuración de Campos Personalizados Globales" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "Paneles globales en el menú guardados" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "Plantilla de cola o global '%1' no encontrada" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Portlet global %1 salvado." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "Plantilla global '%1' no encontrada" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "Campo personalizado %1 agregado Globalmente" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "Campo personalizado %1 eliminado Globalmente" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "Clave privada GnuPG" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Ir" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "Atrás / Adelante" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Ir a grupo" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Ir a usuario" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "¡Ir!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Ir a ticket" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Ir al ticket" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "Acceso autorizado '%1' a %2." #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Gráfico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Propiedades de gráfico" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Diagramas de gráficos no están disponibles." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Grupo" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Permisos del Grupo" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "El grupo ya tiene un miembro: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "Agrupado por" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "El grupo no se pudo crear: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Grupo creado" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Grupo deshabilitado" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Grupo habilitado" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "El grupo no tiene este miembro" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "El nombre de grupo '%1' ya está en uso" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Grupo no encontrado" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "Agrupar tickets por" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "Grupo: %1" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "Resultados de búsqueda agrupados" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupos" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Los grupos no pueden ser miembros de sus propios miembros" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Grupos coincidentes con el criterio de búsqueda" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "Agrupa el principal es miembro de (marcar casilla para eliminar)" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "Agrupa el principal no es miembro de (marcar casilla para agregar)" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Grupos a los que este usuario pertenece" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "Plantilla de respuesta automática HTML" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "Ticket resuelto HTML" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "Modificado estado de ticket HTML" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "Plantilla de comentario de administrador HTML" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "Plantilla de correspondencia de administrador HTML" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "Plantilla de correspondencia HTML" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "Plantilla de transacción HTML" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "TieneMiembros" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Encabezado de un ticket reenviado" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Encabezado de un mensaje reenviado" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "Altura" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "RetenidoPor" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "¡Hola!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Ayúdenos a establecer algunos valores por defecto útiles para RT" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Ocultar todo el texto citado" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Ocultar el texto citado" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "Ocultar campos sin inicializar" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "Oculatar campos sin inicializar?" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historial" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Historial del artículo #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "Historia del Activo #%1: %2" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Historico del grupo %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Historico de la cola %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Historico del usuario %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Teléfono particular" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Intervalo de refresco de la página de inicio" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Inicio" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Hora" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "Cada hora" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Horas" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Tengo %quant(%1,concrete mixer)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "Quiero restablecer mi token de seguridad" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identidad" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "Si un Campo Personalizado es elegido, el Asunto de su correo de salida será sobreescrito por este artículo." #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Si una aprobación es rechazada, rechazar la original y borrar las aprobaciones pendientes" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "Si esto no es lo que esperaba, salga de esta página sin iniciar sesión." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Si esta herramienta estaba setgid, un usuario hostil local podría usar esta herramienta para conseguir acceso administrativo a RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Si usted ya tiene un servidor de IM de trabajo y base de datos, deberían aprovechar esta oportunidad para asegurarse de que su servidor de base de datos se está ejecutando y que el servidor de IM puede conectarse a él. Una vez que hayas hecho esto, detener e iniciar el servidor de IM. " #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "Si usted tiene un usuario interno de RT, puede %1intentar usarlo en su lugar%2." #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "Si en verdad era su intención visitar %1 y %2, entonces %3haga clic aquí para continuar su petición%4." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Si ha cambiado el puerto en el que trabaja RT, necesitará reiniciar el servicio para poder acceder." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Si ha actualizado algo más arriba, no olvide" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Si su base de datos preferida no está listada en el desplegable de abajo, significa que RT no pudo encontrar un driver de base de datos para ella, instalado localmente. Podría remediar esto utilizando %1 para descargar e instalar DBD::MySQL, DBD::Oracle ó DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Valor ilegal para %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "La imagen se muestra dentro del cuerpo del mensaje en la parte superior" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "Imagen no mostrada porque está inhabilitado el display en la configuración del sistema" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "Imagen no mostrada porque el remitente solicitó no incluirla embebida" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Campo inmutable" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Tickets inactivos" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "Tickets inactivos" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Incluir artículo:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "Incluir consulta TicketSQL" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Incluir nombre de artículo" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Incluir sumario de artículo" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "Incluir adjuntos" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "Incluir campo personalizado '%1'" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "Incluir tabla de datos" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "Incluir en el listado los catálodos inhabilitados" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Incluir clases deshabilitadas en la lista." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Incluir campos personalizados deshabilitados en el listado." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "Incluir en el listados los roles personalizados inhabilitados" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Incluir grupos deshabilitados en el listado." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Incluir colas deshabilitadas en el listado" #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Incluir usuarios deshabilitados en la búsqueda" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Incluir página" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Incluir subtemas" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "Incluir la hora en los eventos iCal" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "Actualizaciones de índice para %1" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Mensajes individuales" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informar al propietario RT que el(los) usuario(s) tiene(n) problemas con las claves públicas" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informar al usuario de que el cuadro de mandos al que había suscrito está desaparecido" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informar al usuario de que un mensaje que ha enviado contiene datos no válidos GnuPG" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "Informar al usuario que un mensaje que envió tiene datos con encriptación inválida" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informar al usuario de que tiene problemas con la clave pública y no podrá recibir contenido cifrado" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Informar al usuario de que su contraseña ha sido reinicializada" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "Informar al usuario que su email encriptado ha sido rechazado" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informar al usuario de que hemos recibido un correo electrónico codificado y no tenemos las claves privadas para descifrar los" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Prioridad inicial" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "PrioridadInicial" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Initializar la Base de Datos" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Error de entrada" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Entrada debe coincidir con %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "Insertar de %1" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Error interno: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Error interno: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "%1 inválido" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Argumento %1 inválido" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Invalido %1: '%2' no parece una dirección de e-mail" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Inválido %1: se espera un número" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "Catálogo inválido" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Clase inválida" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Origen de valores para campos personalizados inválido" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "Nombre de Grupo y Dominio inválidos" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "Nombre inválido (los nombres no pueden ser todos dígitos)" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "Nombre inválido (los nombres deben ser únicos y no deben ser todos dígitos)" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Cola inválida, imposible aplicar clase: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "Tipo de presentación inválido" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Tipo de presentación inválido para campo personalizado del tipo %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Datos no válidos" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Clave %1 inválida para dirección '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Objeto no válido" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Patron inválido: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "Portlet %1 inválido" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Cola no válida" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "Id de cola inválido" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Permiso no válido" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Permiso no válido. No se pudo hacer canónico el permiso '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Sintaxis no válida para la dirección de correo electrónico" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Valor inválido para %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Valor no válido para el campo personalizado" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "Ya añadido al objeto" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "No está encriptado" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Es increiblemente importante que los usuarios sin privilegios no puedan ejecutar esta herramienta" #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Es recomendable crear un usuario unix sin privilegios que pertenezca al grupo correcto y que tenga aceso a ejecutar esta herramienta" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "Parece que olvidó añadir el adjunto." #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Tiene varios parámetros:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Cursiva" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Ene" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Unirse o abandonar grupo" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Todo" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Mantenga 'localhost' si no está seguro. Deja en blanco para conectar a nivel local sobre un socket" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "Atajos de teclado" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "Búsqueda inteligente por palabras clave" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Idioma" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Idioma" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Grande" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Último" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Último contacto" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Último contactado" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Actualizado por ultima vez" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Última Actualización Por" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Última actualización" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Última actualización por" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "ÚltimaActualización" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "ÚltimaActualizaciónDe" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "LastUpdateRelative" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Dejar vacío para usar el valor por defecto para su base de datos" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "No rellene esto si quiere utilizar el usuario dba por defecto de su tipo de base de datos" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Queda" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Leyendas" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Longitud en caracteres; uso '0 'para mostrar todos los mensajes en línea, independientemente de la longitud de" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Permitir a este usuario acceder a RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Dar a este usuario permisos adicionales" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "¡Vámonos!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Ciclo de vida" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Enlace" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "El vínculo ya existe" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "El enlace no pudo crearse: %1" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "No se pudo borrar el enlace: %1" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Vínculo no encontrado" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Vincular ticket #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Vincular valores a" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Enlazado" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "EnlazadoDesde" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "EnlazadoA" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "Enlazando a un %1 borrado no está permitido" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Enlaces" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "Enlaza a" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Lista" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Cargar" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Cargar una búsqueda guardada" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Cargar búsqueda guardada" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Cargar búsqueda guardada:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Cargado %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "Archivos ce configuración cargados" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Se cargó la búsqueda original salvada \"%1\"" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Modulos perl cargados" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Se cargó la búsqueda salvada \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Cargando…" #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Local" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "FechaHoraLocalizada" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Dirección" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Sesión iniciada" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Autenticado como %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Desconectado" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "Registrando mensajes nivel %1 y superior a %2" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "Registrando mensajes nivel %1 y superior a STDERR, lo cual normalmente termina en la bitácora del servidor web." #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "Registrando mensajes nivel %1 y superior al syslog con la configuración: %2" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "Registrando mensajes nivel %1 y superior al syslog." #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "Extracto de la bitácora" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Entrar" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "TextoAltLogo" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Salir" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "No coinciden los tipos de búsqueda" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Correo electrónico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Tipo principal de vínculos" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "Hacer %1" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Hacer propietario a" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Establecer estatus" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Establecer fecha de plazo" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Establecer fecha de inicio" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Establecer fecha de inicio" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Establecer fecha de último cambio" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Establecer prioridad" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Establecer cola" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Establecer título" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Gestionar campos personalizados y valores de campos personalizados" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "Administrar roles personalizados" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Administrar grupos y miembros" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Administrar propiedades y configuración que se aplique a todas las colas" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Administrar colas y propiedades especificas" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Gestionar gráficos guardados" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "Administrar scrips" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Administrar usuarios y contraseñas" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "El mapeo entre ciclo de vida %1 y %2 está imcompleto. Contacte su administrador de sistemas." #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Marcados todos los mensajes como se ha visto" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Orden de búsqueda de template de Mason" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "ValoresMax" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "Máximo Creado-ÚltimaActualización" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "Máximo Creado-Resuelto" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "Máximo Creado-Iniciado" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "Máximo Vencido-Resuelto" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "Máximo Iniciado-Resuelto" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "Máximo Inicio-Iniciado" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Longitud máxima del mensaje en línea" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "Máximo tiempo estimado" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "Máximo tiempo restante" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "Máximo timepo trabajado" #: lib/RT/Date.pm:95 msgid "May" msgstr "" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Yo" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Miembro" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Miembro %1 añadido" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Miembro %1 borrado" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Miembro añadido: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Miembro borrado" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Miembro no borrado" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "MiembroDe" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Miembros" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Pertenencia a %1 añadida" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Pertenencia a %1 borrada" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Pertenencias" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "Miembros del grupo %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "Miembros del principal #%1" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Pertenencias del usuario %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Fusionar" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Fusión exitosa" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Fusión fallida. No se pudo establecer el EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "Fusión fallida. No se pudo establecer IsMerged" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Fusionar dentro de" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Unido en %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Mensaje" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "El cuerpo del mensaje no se muestra porque es muy largo." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "El cuerpo del mensaje no se muestra porque el remitente pidió no incluirlo en línea." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "El cuerpo del mensaje no se muestra porque no es texto plano." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Altura del cuadro de texto" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Ancho del cuadro de texto" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Mensaje no pudo ser grabado" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Mensaje al usuario" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Mensaje grabado" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "Mínimo Creado-ÚltimaActualización" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "Mínimo Creado-Resuelto" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "Mínimo Creado-Iniciado" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "Mínimo Vencido-Resuelto" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "Mínimo Iniciado-Resuelto" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "Mínimo Inicio-Iniciado" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Longitud mínima de la contraseña" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "Mínimo tiempo estimado" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "Mínimo tiempo restante" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "Mínimo tiempo trabajado" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minutos" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Miscelánea" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "¿Falta una clave primaria?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Móvil" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Teléfono móvil" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Modificar" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "Modificar %3 para el activo #%1: %2" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Modificar Miembros" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Modificar plantillas de Scrip" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Modificar scrips" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Modificar un campo personalizado para la cola %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Modificar y crear clases" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Modificar y crear campos personalizados para artículos" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Modificar artículo #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "Modificar artículos en esta clase" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "Modificar activo #%1: %2" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "Modificar catálogos de activos" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "Modificar campos personalizables de los activos" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "Modificar activos" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Modificar objetos asociados para %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "Modificar objetos asociados para scrip #%1" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Modificar valores de campo personalizado" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "Modificar fechas para activo #%1: %2" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Modificar fechas para ticket #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Modificar temas de artículos globales" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Modificar campos personalizados globales" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Modificar permisos de grupo global" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Modificar temas globales" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Modificar permisos de usuario global" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Modificar paneles de grupo" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Modificar nómina de membresía de grupo" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Modificar metadatos del grupo o borrar grupo" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Modificar privilegios de grupo para clase %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Modificar permisos de grupo para campo personalizado %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Modificar permisos de grupo para %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Modificar permisos de grupo para la cola %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "Modificar enlaces para el activo #%1: %2" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Modificar metadatos y campos personalizados para esta clase" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Modificar la propia cuenta RT" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "Modificar las personas relacionadas con el activo #%1: %2" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Modificar personas relacionadas con el ticket #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Modificar los cuadros de mandos personales" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Modificar observadores de la cola" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "Modificar scrip #%1" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Modificar acciones para la cola %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Modificar acciones que se aplican a todas las colas" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Modificar los cuadros de mando del sistema" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Modificar plantilla %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Modificar plantilla %1 para cola %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Modificar plantillas que se aplican a todas las colas" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Modificar la clase %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Modificar el contenido del tablero %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Modificar el cuadro de mandos %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Modificar la vista por defecto de \"RT de un vistazo\"" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Modificar el grupo %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Modificar la suscripción al cuadro de mandos %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Modificar el usuario %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Modificar esta búsqueda..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Modificar el ticket # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Modificar el ticket #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "Modificar dueño del ticket en mis tickets" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Modificar tickets" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Modificar el tema para %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Modificar la jerarquía de tema asociada a esta clase" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Modificar los temas para los artículos en esta clase" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Modificar privilegios de usuario para clase %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Modificar derechos de usuario para campos personalizados %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Modificar permisos de usuario para el grupo %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Modificar permisos de usuario para la cola %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Modificar quién recibe mensajes de correo para el ticket #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Módulo" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Lun" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Lunes" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "Mes" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "Mensualmente" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Más acerca de los solicitantes" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "Mover" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Mover aquí" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "Mover arriba / abajo la lista de resultados" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Múltiple" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "Múltiples usuarios (Esto no puede modificarse luego de creado)" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "Múltiples usuarios (Desmarcando esta casilla limita este rol a un solo usuario. Esto no puede modificarse luego de creado)" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Se debe especificar un nombre" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Mis tickets %1s" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Mis aprobaciones" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "Mis Activos" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Mi día" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Mis Recordatorios" #: etc/initialdata:890 msgid "My Tickets" msgstr "Mis tickets" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mis aprobaciones" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "Mis tickets cerrados" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mis cuadros de mandos" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Mis tickets abiertos" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Mis recordatorios" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mis búsquedas salvadas" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "MisColasDeAdmin" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "MisActivos" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "MisRecordatorios" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "MisColasDeSoporte" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "Espacio duro" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "NUEVALINEA" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Nombre" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Nombre y dirección de correo electrónico" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Nombre en uso" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "Se requiere el Nombre" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Nombre:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Nunca" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Nuevo" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Nuevo artículo" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Nuevo tablero" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nuevas relaciones" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Nueva pendiente de aprobación" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "Nueva aprobación pendiente en HTML" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Nueva búsqueda" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "Nuevo Valor" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "Los activos nuevos no pueden tener estado '%1'." #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nuevos mensajes" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nueva contraseña" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Notificación de nueva contraseña enviada" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Nuevo recordatorio:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nuevo ticket" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "El ticket nuevo no existe" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Los tickets nuevos no pueden tener el estado '%1' en esta cola." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nuevos observadores" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Siguiente" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Alias" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Alias" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "No hay %1 claves para esta dirección" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "%1 no cargado" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "No hay artículos que correspondan a %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "No existe Class definida" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "No se encontraron clases que cumplan con el criterio de búsqueda." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "No hay campo personalizado" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "No existe CustomField definido" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "No hay grupo definido" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "Sino Nombre" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "No existe Consulta" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "No hay cola definida" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Usuario de RT no encontrado. Por favor consulte con su administrador de RT." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Sin asunto" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "Sin anulación del Tema" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "No hay plantilla" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Sin acción" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "Falta especificar ID del activo." #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "No hay activos coincidentes con el criterio de búsqueda." #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "Falta especificar el catálogo." #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "No hay catálogos coincidentes con el criterio de búsqueda." #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "No se ha especificado ninguna columna" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "No hay comentarios sobre este usuario" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "No hay campos personalizados para agrupar '%1'" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "No hay roles personalizados coincidentes con el criterio utilizado." #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "No hay descripción para %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "No hay plantilal global %1" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "No hay grupo especificado" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "No existen grupos que coincidan con el criterio de búsqueda." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "No existe clave adecuada para la encriptación" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "Dejó de estar autorizado" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Mensaje no adjuntado" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "No se introdujo nombre" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "No es necesario encriptar" #: lib/RT/User.pm:970 msgid "No password set" msgstr "No hay contraseña definida" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "No tiene permisos para crear colas" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "No tiene permisos para crear tickets en la cola '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "No tiene permiso para ver el ticket" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "Sin permiso para modificar este activo" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "Sin permiso para modificar este catálogo" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Sin permiso para grabar búsquedas a través del sistema." #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Sin permisos para establecer preferencias" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "No tiene permiso para ver artículo" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Sin permisos para ver la actualización del ticket" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "No hay principales seleccionados" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Sin clave privada" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "No hay colas que concuerden con los criterios de búsqueda" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "No se especifican permisos" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "No se encontraron permisos" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "Sin permiso para añadir '%1' como un AdminCc a este ticket" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "No hay búsqueda sobre la que operar" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Sin asunto" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Clave inexistente o no es apropiada para firmar" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "No hay plantilla %1 en la cola %2 o global" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "No se encontraron tickets" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "No se especificó el tipo de transacción" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Sin claves utilizables." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "No se encontraron usuarios que concuerden con los criterios de búsqueda" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "PrincipalID no válido" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "¡No se envió ningún valor a _Set!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Nadie" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Ninguno" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "¿Campo no existente?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "Scrips no aplicados" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "No encontrado" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "No autenticado." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "No establecido" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "¿No está usando un navegador móvil?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Notas" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "La notificación no se pudo enviar" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Notificar AdminCcs" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Notificar AdminCcs como comentario" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Notificar Ccs" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Notificar Ccs como Comentarios" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Notificar otros destinatarios" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Notificar otros destinatarios como comentario" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Notificar al propietario" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "Notifivar al Propietaro y AdminCcs" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Notificar al propietario como comentario" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Notificar al Propietario de su ticket rechazado" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Notificar al Propietario de que su ticket ha sido aprobado y está listo para que se actúe sobre él" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Notificar al Propietario de que su ticket ha sido aprobado por algunos o todos los aprobadores." #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "Notificar al Propietario o AdminCcs" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Notificar Propietario, Solicitantes, Ccs y AdminCcs" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Notificar Propietario, Solicitantes, Ccs y AdminCcs como Comentario" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Notificar a los Propietarios y AdminCcs de que tienen items esperando su aprobación" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Notificar al Solicitante si su ticket ha sido aprobado por todos los aprobadores" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Notificar al Solicitante si su ticket ha sido aprobado por algún aprobador" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Notificar solicitantes" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Notificar solicitantes y Ccs" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Notificar solicitantes y Ccs como comentario" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Notifiqueme si hay mensajes no leídos" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "Ahora en-uso" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "Número" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "O" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objeto" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "Id de Objeto" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "Tipo de Objeto" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "No se pudo crear el objeto" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Objeto no pudo ser borrado" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objeto creado" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objeto borrado" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "No se cargó el objeto pasado" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Tipos de objetos no compatibles" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "La lista de objetos está vacía" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "Valor anterior" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "El %1, %2 escribió:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Al cerrar" #: etc/initialdata:170 msgid "On Comment" msgstr "Al comentar" #: etc/initialdata:142 msgid "On Correspond" msgstr "En ticket de Correspondencia" #: etc/initialdata:131 msgid "On Create" msgstr "Al crear" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "En proceso de reasignación" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Ticket en proceso de reasignación" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Transacción en proceso de reasignación" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Al cambiar de propietario" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Al cambiar de prioridad" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Al cambiar de cola" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Al Rechazar" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Al reabrir" #: etc/initialdata:205 msgid "On Resolve" msgstr "Al resolver" #: etc/initialdata:176 msgid "On Status Change" msgstr "Al cambiar de estado" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "Al cambiar TiempoTrabajado" #: etc/initialdata:136 msgid "On Transaction" msgstr "Al hacer transacción" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "Se requiere uno, y solo uno de Principal/PrincipalID/Usuario/Grupo" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "BCC sólo esta vez" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "CC sólo esta vez" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Solo para ingreso, no para mostrar" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Mostrar sólo aprobaciones para solicitudes creadas despues de %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Mostrar sólo aprobaciones para solicitudes creadas antes de %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Solo mostrar campos personalizados para:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "Abrir Tickets Inactivos" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Abrirlo" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Tickets Abiertos" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "Abrir Temporizador" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Abrir URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "Abrir tickets inactivos" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Tickets abiertos" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Abrir tickets al recibir correspondencia" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "Sistema Operativo" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Opción" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Opciones" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "Usuarios Oracle no pueden tener claves vacías" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Ordenar por" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organización" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Ticket originario: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Email saliente acerca de un comentario grabado" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Email saliente grabado" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Correo de salida" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Vista general" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Tickets propios" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Propietario" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "El propietario '%1' no tiene permisos para poseer este ticket" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Propietario cambiado de %1 a %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Propietario cambiado forzosamente de %1 a %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "GrupoPropietario" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "Nombre_del_Propietario" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Página" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Página 1 de 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Página no encontrada" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Buscapersonas" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Número de buscapersonas" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "Padre" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Padres" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Contraseña" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Contraseña cambiada" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "No se ha establecido contraseña." #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "La Contraseña necesita ser al menos de %1 caracteres de longitud" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Contraseña no mostrada" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Contraseña establecida" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Contraseña: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Contraseña: Permiso Denegado" #: etc/initialdata:714 msgid "PasswordChange" msgstr "CambioContraseña" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Las Contraseña no coinciden" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Ruta de sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "Pausar Temporizador" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "Pendiente %quant(%1,aprobación,aprobaciones)." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "Pendiente %quant(%1,ticket,tickets)." #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "Aprobación pendiente." #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Personas" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Personas relacionadas a la cola %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Realizar una acción definida por el usuario" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Configuración de Perl" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Orden de búsqueda de librería Perl" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Eliminar datos de RT de forma definitiva" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Permiso denegado" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Permiso denegado" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Números de teléfono" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "Imagen" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "Firme sobre la cita" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "Plantilla de Autorespuesta en texto plano" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "Plantilla de comentario administrativo en texto plano" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "Plantilla de correspondencia de administración en texto plano" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "Plantilla de correspondencia en texto plano" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "Plantilla de transacción en texto plano" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Por favor, verifique la URL e intente nuevamente." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Por favor introduzca su contraseña actual correctamente" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Por favor introduzca su contraseña actual" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "Posible falsificación de petición en sitios cruzados (CSRF)" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Búsquedas posiblemente ocultas" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "Búsqueda predefinida %1 no encontrada" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Preferencias" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Preferencias %1 para el usuario %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "Re-inicio de Preferencias" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Preferencias guardadas por %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "Se guardaron las preferencias de paneles en el menú." #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Preferencias guaraddas para el usuario %1." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Preferencias guardadas" #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "No se encontraron las Preferencias" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Llave preferida: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Llave preferida" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Preparación cortada" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "Presion %1 para ver atajos de teclado" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Ant." #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "No se encontró el principal %1" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Imprimir los mensajes resumidos a STDOUT, no enviarlos por mail. No marcarlos como enviados" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Imprimir este mensaje" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioridad" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Privacidad" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privadas:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Clave Privada" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "Clave(s) privada(s) para %1" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "Claves Privadas" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Privilegiado" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Estado privilegiado: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Usuarios privilegiados:" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "Con privilegios: nombre de usuario; Sin privilegios: nombres y direcciones de email" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Procesando sin transacción, algunas condiciones y acciones podrían fallar. Considere usar el argumento --transaction" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseudogrupo para uso interno" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "La clave pública '0x%1' es necesaria para verificar la firma" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "Clave(s) pública(s) para %1" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Consultas" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Consulta" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Constructor de Consulta" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Cola" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "La cola %1 no pudo cargarse." #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Cola %1 no encontrada" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Nombre de la cola" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "La cola ya existe" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "La cola no se pudo crear" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "La cola no se pudo cargar" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Cola creada" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Id de Cola" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "Lista de Colas" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Cola no encontrada" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "Cambió el nivel de servicio por omisión de la Cola" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Clave de la cola" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "ColaAdminCc" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "CampoPersonalizadoDeCola" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "ColaCc" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "ListaDeColas" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "NombreCola" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "ObservadorCola" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Colas" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Colas que administro" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Colas en las que soy AdminCc" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Búsqueda rápida" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Creación rápida de ticket" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "CreaciónRápida" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Administración de RT" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "E-mail del administrador de RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "Configuración de RT" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "Error del RT" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "Portal RT" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Tamaño de RT" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT de un vistazo" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "RT de un vistazo para el usuario %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT puede comunicarse con sus usuarios acerca de los nuevos tickets o nueva correspondencia en tickets existentes. Establezca la ubicación del ejecutable sendmail (o un binario compatible, tal como el que proporciona postfix). RT también necesita conocer a quién notificar cuando alguien envía un email no válido. Debe tratarse de una dirección que no retroalimente a RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT puede incluir contenido de otro servicio web al mostrar este campo personalizado." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT puede convertir los valores de este campo personalizado a hipervínculos a otro servicio." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "Variables del núcleo de RT" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT para %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "RT ha detectado una posible %1falsificación de petición en sitios cruzados (CSRF)%2 para esta petición, por %3. Un atacante malicioso puede estar tratando de %1%4%2 en su nombre. Si usted no inició esta petición debe alertar a su equipo de seguridad." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT es un sistema de seguimiento de problemas de uso empresarial, diseñado para permitirle gestionar de forma inteligente y eficiente tareas, problemas, peticiones, defectos o cualquier otra cosa similar a una \"acción a tomar\"" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT es utilizado por compañías de la lista Fortune 100, negocios personales, agencias gubernamentales, instituciones educacionales, hospitales, ONGs, bibliotecas, proyectos de código abierto y todo tipo de organizaciones de los siete continentes (Si, incluso en la Antártida)" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "Historia de actualizaciones del RT" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT se conectará a la base de datos con este usuario. Será creado para usted." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT creará un usuario llamado \"root\" y establecerá esto como su contraseña" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT reemplazará %1 y %2 con el id del registro y el valor del campo personalizado, respectivamente" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT utilizará esta cadena de texto para identificar de forma unívoca su instalación, y la buscará en el asunto de los correos para decidir a qué ticket corresponde un mensaje. Se recomienda que establezca esta cadena con el valor de su dominio de internet (por ejemplo: ejemplo.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT funciona con gran número de bases de datos diferentes. MySQL, PostgreSQL, Oracle y SQLite están soportadas." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "La configuración de la bitácora del RT se resume abajo:" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "La opción RTDireccionRegexp de la configuración no coincide con %1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Reabrir" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "Se alcanzó número máximo, nuevos valores sobre-escribirán los viejos." #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Nombre real" #: lib/RT/User.pm:95 msgid "RealName" msgstr "NombreReal" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Destinatarios" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Grabar todos los cambios" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Miembro recursivo" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "Reciclar" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Hacer referencia a" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Referencia para %1 añadida" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Referencia para %1 borrada" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Referencia para %1 añadida" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Referencia para %1 borrada" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Referenciado por" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "MencionadosEnEl" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Hace referencia a" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "SeRefiereA" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Recargar" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Refrescar esta página cada %1 minutos" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "RecargarPaginaDeInicio" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "Imposible agregar enlace porque crearía una relación circular" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Rechazar" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "Tickets relacionados" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Recordar cola por defecto" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Recordatorio" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Recordario '%1' añadido" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Recordatorio '%1' completado" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "Recordatorio '%1' reabierto" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "Recordatorio '%1': %2" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "Recordatorio agregado" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "Recordatorio completado" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "Recordatorio re-abierto" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Recordatorios" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Recordatorios para ticket #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "Quitar" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "Quitar %1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Quitar AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Eliminar marcador" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Quitar Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Quitar solicitante" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "Se quitó la Sobreescritura del Tema" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "Se quito el campo personalizado %1 de %2." #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "Tipo de visualización" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Reemplazar las listas desplegables del propietario con cajas de texto" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "Reemplaza lista desplegable de colas por cajas de texto" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Responder" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Direccion de Respuesta" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Responder a solicitantes" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "Responder al ticket" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Responder a los tickets" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "Reportar robado" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Solicitante" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "GrupoSolicitante" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Solicitantes" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "Requiere fijar Vencimiento según el SLA" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "Requiere fijar Inicio según el SLA" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Parámetro requerido '%1' no especificado" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Borrar" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "Volver valores de Campos Personalizables al dato por omisión" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Reiniciar RT de un vistazo" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "Volver a paneles iniciales del menú" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Resetear token de autenticación secreto" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Restaurar a valores por defecto" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "Volver al logo de RT por omisión" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "Volver al tema de RT por omisión" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Residencia" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Resolver" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Resolver ticket #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Resuelto" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "Resuelto en HTML" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "ResueltoRelativo" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Responder" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultados" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "Retomar Temporizador" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Devolver el ticket" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "Retornar al inicio" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Confirmar contraseña" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Revertir" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "Permiso revocado '%1' de %2." #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "Texto enriquecido (HTML) muestra formato como color, negrita, cursiva y más" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Permiso cargado" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "No se pudo revocar el permiso" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Permiso no cargado" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "No se pudieron conceder los permisos a %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Privilegios para los administradores" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Privilegios para el staff" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "Nombre de Rol" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "El rol ya existe" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "Grupo de rol '%1' no encontrado" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "Grupo de Rol ya existente" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Filas" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Filas por caja" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Filas por página" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "SLA Habilitado (Desmarcando esta casilla inhabilita el SLA para esta cola)" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "Certificado SMIME" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "CertificadoSMIME" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "Consultas SQL" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "Las consultas SQL quedan en bitácora al nivel %1 y también disponibles en %2Herramienta de consulta%3." #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "Las consultas SQL no quedan en bitácora." #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite es una base de datos que no necesita un servidor ni configuración especial. Los autores de RT la recomiendan para pruebas, demostraciones y fase de diseño, pero no es suficiente para un servidor RT en producción con un alto volumen de datos." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sáb" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "SaÌbado" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Guardar" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Guardar Cambios" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Guardar Preferencias" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Guardar como Nuevo" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "Guardar el activo" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Guardar nuevo" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Guardar esta búsqueda" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Guardado %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Búsqueda guardada" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Búsquedas guardadas" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Gráficas salvadas" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "Búsqueda %1 guardada no ha sido encontrada" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Búsquedas guardadas" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "BusquedasGuardadas" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "Actualizaciones de esquemas de %1" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Acción #%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Acción creada" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "Scrip no añadido" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Acciones" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Acciones y Destinatarios" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "Los scrips normalmente se ejecutan luego de cada cambio individual al ticket." #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Búsqueda" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "Búsqueda %1 actualizada" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Buscar artículos" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "Buscar Activos" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Preferencias de Búsqueda" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Buscar artículos que correspondan" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Buscar aprobaciones" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Buscar artículos" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Búsqueda de tickets" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "Búsqueda de ticket ingresando el %1id%2, palabras del tema %1\"entre comillas\"%2, %1colas%2 por su nombre, Dueños por %1nombre_de_usuario%2, Solicitantes por %1email%2, y %1estado%2 de tickets. Buscar para el domino %1@mi_dominio.com%2 retornará tickets con Solicitantes de ese dominio." #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Opciones de búsqueda" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Resultados de búsqueda" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Intervalo de refresco de los resultados de la búsqueda" #: share/html/Search/index.html:48 msgid "Searches" msgstr "Búsquedas" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "Buscar en el texto completo de cada ticket puede tomar mucho tiempo, pero si necesita hacerlo, puede buscar cualquier palabra en el historial del ticket escribiendo %1palabra." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Token de autenticación secreto" #: bin/rt-crontool:352 msgid "Security:" msgstr "Seguridad:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Vea también:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Ver los artículos en esta clase" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "Ver activos" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "Ver catálogos" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Ver los cambios a los artículos en esta clase" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Ver si esta clase existe" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Elegir" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Seleccionar campos personalizados para artículos en todas las clases" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "Selecciones los Campos Personalizables para los Activos en todos los Catálogos" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Seleccione tipo de base de datos" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Seleccionar una clase" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Seleccionar un Campo Personalizado" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "Selecciones un Rol Personalizado" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "Seleccione un Scrip" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "Selecciones un catálogo" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Seleccionar un color para la sección" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "Selecciones un rol personalizado" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Seleccione un grupo" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Seleccione una cola" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Seleccione una cola para su nuevo ticket" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Seleccionar una sección" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Seleccione un usuario" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Seleccionar un artículo de %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Seleccionar un artículo para incluir" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Elegir otro idioma" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Caja de selección" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Elija campos personalizados para todas las colas" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Seleccionar campos personalizados para todos los grupos de usuarios" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Seleccionar campos personalizados para todos los usuarios" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Seleccionar campos personalizados para tickets en todas las colas" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Seleccionar campos personalizados para transacciones de tickets en todas las colas" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Seleccionar fecha" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Seleccionar fecha y hora" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "Seleccione scrip para etapa global:" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Seleccionar fechas múltiples" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "Seleccionar múltiples fechas y horas" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Seleccionar valores múltiples" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Seleccionar un valor" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Seleccionar colas para ser mostradas en la pagina \"RT de un vistazo\"" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "Seleccione scrip de la etapa para nuevas colas agregadas:" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Seleccionar temas para este artículo" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Seleccione hasta %1 fecha(s)" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "Seleccione hasta %1 fecha(s) y hora(s)" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Seleccionar hasta %1 valores" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Campos Personalizados Seleccionados" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Colas seleccionadas" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "La clave elegida no es de confianza o ya no existe" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Objetos Seleccionados" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Selecciones modificadas. Por favor grabe sus cambios" #: etc/initialdata:117 msgid "Send Forward" msgstr "Enviar Reenvío" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "Enviar mensaje re-enviado" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Enviar correo al propietario y todos los observadores" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Enviar correo al propietario y todos los observadores como comentario" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Enviar mail a los solicitantes y Ccs" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Enviar mail a los solicitantes y Ccs como comentario" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "Envíos previos de email fallaron. Favor de contactar su administrador, él puede encontrar mas detalles en las bitácoras." #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Envia un mesaje a los solicitantes" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Envia correo a los Ccs y Bccs listados explicitamente" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Enviar correo a los Ccs" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Enviar correo a los Ccs como comentario" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "Enviar email al Dueño y Ccs administrativos" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "Envía email al Dueño si está definido, sino a Ccs administrativos" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Envia correo a los AdminCcs" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Envía correo a los AdminCcs como comentario" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Enviar correo al propietario" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Set" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Separar entradas múltiples con espacios." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "Fijar fecha de vencimiento sgún SLA" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "Definir clave privada" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "Fijar fecha de inicio según SLA" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "Fijar fecha de vencimiento según un contrato" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "Fijar fecha de inicio de acuerdo a un contrato" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Configuración" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "Se necesita configuración" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Nombres cortos de usuario" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "¿Desea que RT le envíe un correo por cada actualización de ticket que usted realice?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Mostrar" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "Mostrar menú de Administración" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Mostrar pestaña de aprobaciones" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "Mostrar menú de Artículos" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "Mostrar menú de Activos" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Mostrar Columnas" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Mostrar resultados" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Mostrar Propiedades de Tickets en nivel %1" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Mostrar todo el texto citado" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Mostrar peticiones aprobadas" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "También mostrar" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Mostrar cabeceras cortas" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Mostrar solicitudes denegadas" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Mostrar cabeceras completas" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Mostrar plantillas globales" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "Mostrar historial" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "Mostrar historial de las propiedades públicas del usuario" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Mostrar descripciones de enlace" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "No mostrar tickets al solicitante" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Mostrar primero el historial más antiguo" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Mostrar solicitudes pendientes" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Mostrar texto citado" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Mostrar solicitudes esperando otras aprobaciones" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "Mostrar lista simplificada de destinatarios al actualizar el ticket" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Mostrar los 10 tickets activos con más alta prioridad del solicitante" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Mostrar los 10 tickets inactivos con más alta prioridad del solicitante" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Mostrar los 10 tickets con más alta prioridad del solicitante" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Mostrar el historial del ticket" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "Mostrar campos sin inicializar" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Trituradora" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "Shredder necesita un directorio en el cual escribir los resultados. Por favor verifique que el directorio %1 existe y que su servidor web pueda escribir en el." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Barra lateral" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Firmar" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "Firmar todos los mensajes de correo auto-generados. %1Precaución%2: Activar esta opción cambia la firma de proveer %3autenticación%4 a proveer %3integridad%4." #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Firmar por defecto" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Validarse como solicitante de ticket o CC del ticket o cola" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Validarse como AdminCc del ticket o cola" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "Firmar%1%2" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "Firmar %1%2 usando %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Firma" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "Firmando" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Sencillo" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Búsqueda simple" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Sencillo" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Nombre del sitio" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Tamaño" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Saltar Menu" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Saltando usuario deshabilitado" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Pequeño/a" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Algunos navegadores solamente podrán cargar contenido del mismo dominio que su servidor RT." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Algo fue mal. Contacte al administrador del sistema." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Ordenar" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "Criterio de ordenación" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Orden" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Origen" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Especifique si se ejecutará diaria o semanalmente." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Hoja de cálculo" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "Los Stack Traces se añaden a mensajes nivel %1 o superior." #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "No se registran Stack Traces" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Fase" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Casilla" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Empiece el término de búsqueda con el nombre de un campo soportado seguido por dos puntos, como en %1 y %2, para indicar explícitamente el tipo de búsqueda." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Comenzado" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "Iniciado en %1." #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "IniciadoRelativo" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Comienzo" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "InicioRelativo" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Estado" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "Orden de búsqueda de archivos estáticos" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "Estado" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "Estado '%1' no es válido para activos." #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "Estado '%1' no es válido para este %2." #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "El estado '%1' no es un estado válido para los tickets en esta cola." #: etc/initialdata:449 msgid "Status Change" msgstr "Cambio de estado" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "Cambio de estado en HTML" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Estado cambiado de %1 a %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Cambios de estado" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Robar" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Robar tickets" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Paso %1 de %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Robado a %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "Cronógrafo" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Estilo" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Asunto" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Etiqueta de Asunto" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Asunto cambiado a %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "EtiquetaTema" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Enviar" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "Temporizador de Envío" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "Enviando" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Suscribir" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Suscribirse al cuadro de mandos %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Suscribirse a cuadros de mandos" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Suscrito al cuadro de mandos %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Subscripción" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "La suscripción no pudo crearse: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "Subscripción actualizada" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Datos exitosamente desencriptados" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Datos exitosamente encriptados" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Resumen" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "Extraco de Creado-ÚltimaActualización" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "Extracto de Creado-Resuelto" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "Extracto de Creado-Iniciado" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "Extracto de Vencido-Resuelto" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "Extracto de Iniciado-Resuelto" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "Extracto de Inicio-Inciado" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "Extracto del tiempo estimado" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "Extracto del tiempo restante" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "Extracto del tiempo trabajado" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Dom" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Domingo" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "Suprimir si está vacío (marque para evitar envío de email si las búsquedas no arrojan resultados)" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Suspendido" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "Sistema" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Configuración del Sistema" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Predeterminado del Sistema" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Error del sistema" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Error del sistema: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Herramientas del Sistema" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Error de sistema" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Error del sistema. Permiso no otorgado" #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "GrupoDeRolesDeSistema de uso interno" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Coger" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Coger tickets" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Cogido" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Díganos algo sobre como encontrar la base de datos que RT utilizará" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Plantilla" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Plantilla #%1 eliminada" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "La plantilla '%1' no es global" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "Plantilla '%1' no es glogal ni específica de alguna cola" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "No se encontró la plantilla '%1'" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "Recopilación de plantillas" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "La plantilla no incluye código Perl" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "La plantilla está vacía" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "Plantilla en uso" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "La plantilla es un argumento obligatorio" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Plantilla procesada" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Error sintactico de Plantilla" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "Error de formato en la plantilla: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "Plantilla: %1" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Plantillas" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Plantillas para la cola %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Texto" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "El archivo de texto no se muestra porque está deshabilitado en las preferencias" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Ese es el valor actual" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Ese no es un valor para este campo personalizado" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "Ese rol no es válido para este objeto" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Ese ticket tiene dependencias sin resolver" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Ese usuario ya posee ese ticket" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Ese usuario no existe" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Ese usuario ya es privilegiado" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Ese usuario ya es no privilegiado" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Ese usuario ahora es privilegiado" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Ese usuario ahora es no privilegiado" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Ese usuario puede no poseer tickets en esa cola" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Ese no es un identificador numérico" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Lo básico" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "El CC de un ticket" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "La clase del artículo cuyo identificador es %1 no está aplicada a la cola actual" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "La contraseña del administrador de la base de datos para la base de datos" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "El CC administrativo de un ticket" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "Los usuarios marcados recibirán un email relacionado con este ticket dependiendo de la acción tomada. Demarque los usuarios para detener el envío de emails relacionados a este ticket." #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "El catálogo por omisión" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "El nombre del dominio de su servidor de la base de datos (como 'db.example.com')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "El comando siguiente encontrará todos los tickets en la cola 'general' y establecerá su prioridad a 99 si están vencidos:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Las siguientes consultas han sido eliminadas y serán borradas del cuadro de mandos una vez que su panel sea actualizado." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Las siguientes consultas podrían no ser visibles para todos los usuarios que pueden ver este cuadro de mandos." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "La clave ha sido deshabilitada" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "La clave ha sido revocada" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "La clave ha expirado" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "La clave es totalmente confiable" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "La clave es fundamentalmente confiable" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Ha sido establecido el nuevo valor" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "El propietario de un ticket" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "La página solicitada no se encuentra" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "El solicitante de un ticket" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "Las configuraciones que ha elegido se almacenan en %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "El sistema es incapaz de firmar los mensajes de correo salientes. Esto normalmente indica que la frase de paso (passphrase) está mal configurada, o que el agente GPG está caído. Por favor, alerte a su administrador de sistemas inmediatamente. Las direcciones problemáticas son:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Existen varias claves adecuadas para encriptación." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Hay mensajes sin leer sobre este ticket" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Hay una confianza marginal en esta clave" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "Hay más de un grupo con el nombre '%1'. Esto puede causar inconsistencias en partes de la interfaz de administrador, por lo que se recomienda cambiar el nombre a los grupos en conflicto." #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "No hay claves disponibles para cifrado." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "No hay mapeo para los estados entre los ciclos de vida %1 y %2. Conctacte su administrador de sistemas." #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Existe una clave disponible, pero el nivel de confianza no está establecido." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "Hubo un error al analizar la ecuación de búsqueda: %1. Su administrador de RT puede ver mas información en las bitácoras." #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Estas opciones de configuración cubren algunas de las bases necesarios para hacer funcionar RT. Es necesario que proporcione el nombre de su instalación RT y el nombre de dominio en el que se incluye RT. También necesitará configurar una contraseña para su usuario administrador por defecto." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Este campo personalizado no puede tener listas de valores" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "Esta clase no aplica a ese objeto" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "Este campo personalizado no puede añadirse al ese objeto" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "Este campo personalizado no tiene tipos de presentación" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Esta característica está sólo disponible para administradores del sistema" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Esta funcionalidad solo está disponible para los administradores del sistema." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "Este proceso de servidor no ha registrado consultas SQL." #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "El ticket no puede resolverse hasta que se apruebe." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "El ticket no puede resolverse hasta que %numerate(%1,dependencia esté, dependencias estén) resueltas." #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Esta herramiento permite al usuario ejecutar módulos perl arbitrarios desde RT" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Parece que esta transacción no tiene contenido" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "Los %1 tickets %2 con más alta prioridad de este usuario" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "Buscar usuarios según el contenido de los siguientes campos:" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "Esto lo llevará a un formulario parcialmente completo para crear el activo." #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "Esto lo llevará a un formulario parcialmente completo para crear el ticket." #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Jue" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Jueves" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Actualización Jumbo para el ticket #%1: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Grafo de relaciones del ticket #%1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Ticket %1 creado en la cola '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Historial del ticket # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Ticket resuelto" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Búsqueda de tickets" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Transacciones del Ticket" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Ticket y transacción" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Redacción de ticket" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Contenido del ticket" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Tipo de contenido del ticket" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "No se pudo crear el ticket debido a un error interno" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "El ticket no pudo ser cargado" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "Total de tickets" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Visualizar ticket" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "Ticket en" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Metadata del ticket" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Estado del ticket modificado" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Actualización de ticket" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "Modulo de búsqueda TicketSQL" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Tickets %1 por %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Tickets que me pertenecen" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Tickets que dependen de esta aprobación:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "Tiempo" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Tiempo Estimado" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Tiempo Restante" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "Tiempo Tomado" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tiempo Trabajado" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "Tiempo estimado" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tiempo para mostrar" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "TiempoEstimado" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "TiempoRestante" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "TiempoTrabajado" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "Temporizador para #%1: %2" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Zona horaria" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Título" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Para" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Para consultas sobre soporte, formación, diseño a medida o licenciamiento, por favor contacte con %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "Mostrar/ocultar %quant(%1,consulta,consultas)" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "Cambiar casilla de destacado del ticket" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "Mostrar/ocultar rastreo de pila" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Última actualización" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Herramientas" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Nombre del tema" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "Agregada membrecía a tema" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "Membrecía a tema removida" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Tema no encontrado" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Temas" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "Total Creado-UltimaActualización" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "Total Creado-Resuelto" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "Total Creado-Iniciado" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "Total Vencido-Resuelto" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "Total Iniciado-Resuelto" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "Total Inicio-Inciado" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "Tiempo total estimado" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "Tiempo total restante" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "Tiempo total trabajado" #: etc/initialdata:317 msgid "Transaction" msgstr "Transacción" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transacción %1 limpiada" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transacción creada" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Campos personalizados de Transacción" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "Transacción en HTML" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create no pudo, ya que no especificó un tipo de objeto e ID" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "CampoPersDeTransacción" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "FechaTransacción" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "Transacciones" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Las transacciones son inmutables" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Confianza" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "Pruebe" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "Pruebe nuevamente" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Mar" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Martes" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tipo" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Tipo a: antes de los números de artículo y t: antes de los números de ticket." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "El tipo cambió de '%1' a '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "No-aplicar los scrips seccionados" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "Imposible agregar %1 enlace: %2" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "Imposible agregar Subject Override: %1 %2" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "Imposible agregar membrecía de tema" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "Imposible eliminar membresía de tema en %1" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Incapaz de determinar el id o el tipo de objeto" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "Imposible encontrar el activo #%1" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "Imposible encontrar el catálogo %1" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "Imposible encontrar el catálogo '%1'" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Imposible cargar artículo" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "Imposible abrir la ayuda. Razón:" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "Imposible definir UserCSS: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "Imposible definir UserLogo: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "Imposible definir id de privacidad: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "Imposible definir id u objeto de privacidad: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "Imposible definir objeto de privacidad: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "Imposible enviar la hora. Favor de agregarla al ticket manualmente. Razón:" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "Imposible suscribir al panel %1: Permiso Denegado" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "No autorizado" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Desactive las casillas para inhabilitar notificaciones a los destinatarios listados solo para esta transacción; el silenciamiento persistente es administrado en la página Personas." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Recuperar" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "Desafortunadamente, RT no pudo crear una cuenta automática para Ud. Su administrador de RT encontrará mas información en las bitácoras." #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Usuario en Unix" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Desconocido (no hay valor de confianza asignado)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Desconocido (este valor es nuevo para el sistema)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Codificación de contenido desconocida: %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Campo desconocido: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "A menos que especifique un estado en particular, solo los tickets con estado activo (%1) son buscados." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Quitar el limite" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Ilimitado" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Panel sin nombre" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Búsqueda sin nombre" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Tickets sin dueño" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Tickets sin propietario" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "No privilegiado" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Campos Personalizados No Seleccionados" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Colas no seleccionadas" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Objetos No Seleccionados" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Quitar valor de clave privada" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "No cogido" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Actualizar" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Actualizar gráfico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Actualizar gráfico" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Actualizar Este Menú" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Actualizar Ticket" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Actualizar tipo" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Actualizar formato y buscar" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Actualizar múltiples tickets" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Actualización no grabada." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Actualizar ticket" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Actualizar ticket #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Actualizar ticket #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "El tipo de actualización no fue ni respuesta ni comentario" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "EstadoActualizacion" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Actualizado" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "Actualizado por" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "búsqueda guardada actualizada \"%1\"" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "ActualizadoPor" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "Actualizar de %1 a %2" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Subir" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Subir un nuevo logotipo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Subir múltiples ficheros" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Subir múltiples imágenes" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Subir un fichero" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Subir una imagen" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Subir hasta %1 ficheros" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Subir hasta %1 imágenes" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "Cargando..." #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Uso:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "¿Usar una distribución de dos columnas para los formularios de creación y actualización?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "Usar activo %1 como Solicitante del ticket: %2" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "¿Usar autocompletar para encontrar propietarios?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "Usar autocompletar para encontrar colas?" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Usar predeterminado (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Usar otras herramientas administrativas de RT" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Utilizar predeterminado del sistema (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Usar los menús desplegables para seleccionar cuales actualizaciones de ticket desea extraer en un nuevo artículo." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "Usado por scrips" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Usuario" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "Usuario %1 está inhabilitado." #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "El usuario %1 está inhabilitado. Edite el usuario y seleccione \"Permitir a este usuario acceder a RT\" para habilitar." #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Usuario (Creado - expira)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Definido por el usuario" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "Condiciones y resultados definidos por el usuario" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "Grupos del Usuario" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Información del Usuario" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Permisos de usuario" #: share/html/User/Search.html:48 msgid "User Search" msgstr "Búsqueda de Usuario" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "Extracto del Usuario" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "El usuario solicitó un tipo de actualización desconocida para el campo personalizado %1 para %2 objeto #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "El usuario no pudo ser creado: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Usuario creado" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Usuario deshabilitado" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Usuario activado" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "El usuario tiene la dirección de e-mail vacía" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Usuario cargado" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Grupos definidos por el usuario" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "Usuario: %1" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Nombre de usuario" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Formato para el nombre del usuario" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Usuarios" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Usuarios que concuerdan con los criterios de búsqueda" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Usando transacción #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Consulta Válida" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Validación" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Valor" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Valores" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Versión" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Ver plantillas de Scrip" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Ver scrips" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Ver valores de campos personalizados" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Ver campos personalizados" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Ver detalles de los mensajes de correo saliente y sus destinatarios" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Ver grupo" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Ver tableros de grupo" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "Ver ticket destacado" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Ver cuadros de mandos personales" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Ver cola" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Ver búsquedas guardadas" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Ver cuadros de mandos del sistema" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Ver comentarios privados del ticket" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Ver resumen del ticket" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "ATENCIÓN: Guardando búsqueda al nivel de privacidad de usuario" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Altura del editor WYSIWYG" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "Editor de mensajes WYSIWYG" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "¡Atención! ¡NO está firmado!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "Atención: este panel no tiene destinatarios" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "Atención: la unificación es una actión irreversible! Ingrese un solo número de ticket con el que se unificará." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Observador" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "GrupoObservadores" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Observadores" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Se pudo acceder a su base de datos como DBA. Puede pulsar en 'Personalizar lo Basico' para continuar personalizando RT." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Actualmente no podemos presentar como una lista cuando se basa en categorías en otro campo personalizado. Por favor, use otro tipo de visualización." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Se necesita conocer el nombre de la BBDD que RT utilizará y dónde encontrarla. También es necesario conocer el usuario y la contraseña del usuario que RT utilizará. RT puede crear la BBDD y el usuario, y por ello le pedimos el usuario y contraseña de un usuario con privilegios de DBA (Administrador de BBDD). Durante el paso 6 del proceso de instalación, utilizaremos esta información para crear e inicializar la BBDD de RT." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Puerto Web" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Mié" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "MieÌrcoles" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "SemanaDelAño" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Semanalmente" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Resumen semanal" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "¡Bienvenido a RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Qué he hecho hoy" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "¿Qué es RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "Que tickets mostrar en la casilla \"Mas sobre el solicitante\"" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Cuando RT no pueda manejar un mensaje de correo, ¿dónde debería reenviarlo?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Cuando RT envía un email, configura las cabeceras \"De:\" y \"Responder-A:\" de forma que los usuario puedan adherirse a la conversación con tan sólo pulsar Responder en su cliente de correo. Utiliza diferentes direcciones para Respuestas y Comentarios. Esto se puede cambiar para cada una de sus consultas. Estas direcciones tendrán que ser configuradas para utilizar el programa rt-mailgate." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "Cuando cambie TimeWorked" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Al crear un ticket" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Cuando se crea un ticket de aprobación, notificar al propietario y al AdminCc del item que espera su aprobación" #: etc/initialdata:137 msgid "When anything happens" msgstr "Cuando pasa cualquier cosa" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "Cuando inserte artículos de esta clase en emails:" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Cuando pulse en 'Chequear conectividad con BBDD' podría haber un pequeño retraso mientras RT intenta conectar con su BBDD" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Cuando un ticket está cerrado" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Cuando un ticket es reasignado" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Cuando un ticket es rechazado" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Cuando un ticket es vuelto a abrir" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Al resolver un ticket" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Cada vez que un ticket o transacción es reasignado" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Al cambiar el propietario de un ticket" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Siempre que la prioridad de un ticket cambie" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Al cambiar la cola de un ticket" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Al cambiar el estado de un ticket" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Cada vez que una transacción es reasignada" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Siempre que ocurra una condición definida por el usuario" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Siempre que venga algún comentario" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Al recibir correspondencia" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Donde encontrar el programa sendmail" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "Ancho" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Limpiar" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Trabajo" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Teléfono del trabajo" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Trabajado" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "Trabajó %quant(%1,hora,horas) (%quant(%2,minuto,minutos))" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "Trabajó %quant(%1,minuto,minutos)" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "Año" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Sí" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "Ud (%1) no está autorizado a usar RT." #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Usted puede editar este panel y su suscripción a el en RT." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Usted ya es propietario de este ticket" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "Se encriptarán los emails salientes, pero hay un problema con la clave/certificado público del destinatario. Debe solucionar el problema con la clave/certificado, inhabilitar el envío de mensajes a ese destinatario o inhabilitar la encripción." #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "Se encriptarán los emails salientes, pero hay problemas con la clave/certificado público del destinatario. Debe solucionar el problema con la clave/certificado, inhabilitar el envío de mensajes a ese destinatario o inhabilitar la encripción." #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "No está autorizado para usar RT." #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Puede ir al primer mensaje sin leer ó ir al primer mensaje sin leer y marcar todos los mensajes como leídos." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "Además puede dar click en el logo de arriba para obtener colores!" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "También puede editar la búsqueda predefinida en sí misma" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "Puede cambiar la plantilla si es necesario" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Puede ingresar contenido del ticket en cualquier campo de texto libre, texto o wiki." #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "No puede introducir la contraseña" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Sólo puede reasignar tickets que posee o que no tienen propietario" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "Solo puede robar un ticket propiedad de alguien mas" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Sólo puede tomar tickets que no tienen propietario." #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Puede buscar cualquier palabra en todo el historial del ticket escribiendo %1palabra." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "No puede cambiar el estado de '%1' a '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "No tiene permisos de Superusuario." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "No tiene permiso para crear Artículos en ninguna Clase" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "No tiene permiso para crear activos en el catálogo %1." #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "No tiene permiso para ver Artículos en ninguna Clase" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "No tiene permiso para ver este activo." #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "No tiene permiso para ver este catálogo." #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "Habilitó %1 pero %2 no ha sido configurado en RT_SiteConfig.pm, favor de verificar '%3' para mas ayuda" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Se ha desconectado del sistema RT" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "Habilitó la encripción pero no asignó una dirección de comentarios para esta cola." #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "Habilitó la encripción pero no asignó una dirección de correspondencia a esta cola." #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "No tiene permiso para crear tickets en esa cola." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Puede incluir vínculos a artículos de la forma \"a:###\", donde ### representa el número del artículo." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Debe introducir una contraseña administrativa" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "Debe definir StatementLog como \"true\" para activar esta página de historial de consulta." #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "Debe asignar una dirección para comentarios a esta cola para así configurar una clave privada." #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "Debe asignar una dirección de correspondencia a esta cola para así configurar una clave privada." #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Será redirigido a la página de ingreso. Podrá loguearse con el usuario de %1 y la contraseña establecida previamente." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Debería elegir la BBDD con la que usted o su DBA local estén más cómodos." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "Fue desconectado del RT por su sistema de autenticación. Esto puede ser un efecto temporal, en cuyo ticket recargar esta página puede ayudar." #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Está viendo esta pantalla debido a que comenzó en un servidor RT sin una BBDD funcional. Lo más probable es que esta sea la primera vez que ejecuta RT. Si pulsa \"%1\" más abajo, RT le guiará a través de la configuración de su servidor y BBDD." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Es bienvenido a regresar en cualquier momento." #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Su contraseña no está establecida." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "Su sistema soporta sugerencias automáticas de color para: %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Nombre o contraseña de usuario incorrectos" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Código Postal" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Abajo]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Arriba]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "[un catálogo oculto]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ninguno/a]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "un campo personalizado" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "activo" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "Después" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "luego de dar click en un enlace" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "luego que cargue el resto de la página" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "asignado" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "y antes" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "y no" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "y entonces" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "cuando haga scroll" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "barra" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "Antes" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "cuerpo" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "de abajo a arriba" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "marque esta casilla para aplicar esta clase globalmente a todas las colas." #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "marque esta casilla para aplicar este Campo Personalizado a todos los objetos." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "marque esta casilla para aplicar este scrip a todos los objetos." #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "marque esta casilla para remover esta clase globalmente y ser capaz de escoger colas específicas." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "marque esta casilla para eliminar este Campo Personalizado de todos los objetos y ser capaz de elegir objetos específicos." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "Marque esta casilla para remover este scrip de todos los objetos y poder elegir objetos específicos" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "marque para añadir" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "pulse para marcar/desmarcar todos los objetos de una vez" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "configuración del núcleo" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "crear un ticket" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "diaramente a las %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "diariamente, en" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "pánel" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "paneles en el menú" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "borrado" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "no concuerdan" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "descargar" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "duración" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "envío de email suspendido" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "email desabilitado para el ticket" #: lib/RT/User.pm:270 msgid "empty name" msgstr "Nombre Vacío" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "igual a" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "error: no se puede mover abajo" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "error: no se puede mover a la izquierda" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "error: no se puede mover arriba" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "error: nada a borrar" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "error: nada a mover" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "error: nada a conmutar" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "cada" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "plugin ejecutado con éxito" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "Bcc una vez explícitamente" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "Cc una-vez explícitamente" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "completo" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "mayor que" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "grupo" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "grupo %1" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "grupo '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "inmediatamente" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "en la clase %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "en uso" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "inactivo" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "incluye %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "índice" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "fecha de vencimiento inválida: %1" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "es" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "no es" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "clave deshabilitada" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "clave caducada" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "clave revocada" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "de izquierda a derecha" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "menor que" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "contiene" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "profundidad máxima" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minutos" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "modificar la configuración de RT" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "modificar un panel" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "modificar o acceder a una búsqueda" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "modificar sus preferencias" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "mensualmente" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "mensualmente (día %1) a las %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "nunca" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "nuevo" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "sin dirección de email" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "ninguno" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "no" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "no igual a" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "nada" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "Los objetos fueron borrados con éxito" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "en" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "el día" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "uno" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "abierto" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "abrir/cerrar" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "otro/a..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "realizar acciones" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "Queso" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "el plugin devolvió una lista vacía" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "Cola %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "recibe extracto diario" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "recibe extracto semanal" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "reciclado" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "rechazado" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "requiere que rt-crontool esté ejecutándose" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "resuelto" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "de derecha a izquierda" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "buscar" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "vea la lista de objetos más abajo" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "barra lateral" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "configuración del sitio" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "pendiente" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "sentencia" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "robado" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "columnas resumen" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "sistema %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "grupo del sistema '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "tabla" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "la cabecera Referrer que su navegador proveyó (%1) no está permitida por el nombre de host configurado en RT (%2)" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "la cabecera Referrer que su navegador proveyó (%1) no está permitida por el nombre de host configurado en RT (%2) o hosts en lista blanca (%3)" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "el componente que llama no especifica por qué" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "las direcciones por defecto que se listarán en las cabeceras De: y Responder-A: del correo de comentario." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "las direcciones por defecto que se listarán en las cabeceras De: y Responder-A: del correo de correspondencia." #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "de arriba a abajo" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "absoluta" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "grupo sin descripción %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "ilimitado" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "actualizar un ticket" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "actualizar un aprobación" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "actualizar un artículo" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "usuario" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "usuario %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "nombre de usuario" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "semanalmente" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "semanalmente (el %1) a las %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "semanas" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "el cual podría %1 en su nombre." #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "en qué puerto escuchará su servidor web, p.ej. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "con cabeceras" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "sí" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "su navegador no envió cabecera Referrer" rt-4.4.2/share/po/ar.po0000664000175000017500000117773013131430353014534 0ustar vagrantvagrant# Arabic translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-08 23:10+0000\n" "Last-Translator: Alex Vandiver \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "%1 %3 %2" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%6%5%4%3%2%1" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 Ø£Ø¶ÙŠÙØª" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 تغيرت إلى %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "تم حذ٠%2 %1" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "تم حذ٠%2 %1" #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "تم Ø­ÙØ¸%1 %2" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "ثم تحديث %1 %2" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 مع القالب %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) بواسطة %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (لم تتغير)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (من اللوحة %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - معامل لتمريره إلى %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - أخرج تحديثات الحالة إلى STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - حدد ما إذا كنت تريد استخدام 'أول' أو 'آخر' أو 'كلّ' العمليات" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - حدد الاسم أو الرقم Ø§Ù„ÙØ±ÙŠØ¯ للقالب/القوالب المراد استخدامها" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - حدّد قائمة Ø¨Ø§Ù„ÙØ§ØµÙ„ات لأنواع العمليات المراد استخدامها" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - حدّد وحدة الشرط المراد استخدامها" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - حدّد وحدة البحث المراد استخدامها" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 حقوق الطبع 1996-%3 %4" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "عÙيّنت %1 كقيمة %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "منذ %1" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 موجودة مسبقا، لكنها لا تحتوي على جداول آر تي أو بيانات Ùوقية. لاحقا يمكن لخطوة 'تهيئة قاعدة البيانات' يمكنها إدراج الجداول والبيانات الÙوقية ÙÙŠ قاعدة البيانات هذه. إن كان هذا الخيار مقبولا لديكم، إضغط على 'تخصيص القيم الأساسية' أدناه لإستكمال تخصيص آر تي." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 بواسطة %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 لا يمكن أن تكون مجموعة" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 تغير من %2 إلى %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 تغيرت من '%2' إلى '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "نسخ %1" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 التكوين الأساسي" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "تعذر تعيين %1 بالقيمة %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "تم إنشاء %1" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "تم حذ٠%1" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 تمعطلة" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 غير موجود" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "تم تمكين %1" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 طلبات لي ذات الأولوية الأعلى" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 أداة تؤدي عملا على الطلبات بأداة جدولة مهام خارجية مثل cron" #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 المقالات الاكتر تحديثا مؤخرا" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "المقالات %1 الأحدث" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "آخر %1 طلبات بلا مالك" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "إعدادات الموقع %1" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "تحديث %1 %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 ثم التحديث: لم يتغير شيء" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "تم تحديث %1" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "كلمة المرور الحالية Ù„%1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "لوحة القراءات %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: لم يتم تحديد مرÙقات" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1طلب جديد ÙÙŠ%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "%1 ميغا" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1 Ø«" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%1 دقيقة" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' ليس إسما صالحا." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(إختر الصناديق للمسح)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(إختر الصناديق للمسح)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(أدخل Ù…ÙØ¹Ø±Ù‘ÙÙØ§Øª الطلبات أو مساراتها Ù…ÙØµÙˆÙ„Ø© Ø¨Ù…Ø³Ø§ÙØ§Øª)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(ÙÙŠ حال ترك ÙØ§Ø±ØºØ§ØŒ ستحال قيمته للقيمة المبدئية %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(لا حقول مخصصة)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(لا أعضاء)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(لا سكربتات)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(لا قوالب)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(يرسل نسخة من هذا التحديث إلى قائمة Ø¨ÙØ§ØµÙ„ات من عناوين البريد الإدارية. هؤلاء الناس سو٠يتلقون كذلك التحديثات المستقبلية.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(يرسل نسخة من هذا التحديث إلى قائمة Ø¨ÙØ§ØµÙ„ات من عناوين البريد. هؤلاء الناس سو٠يتلقون كذلك التحديثات المستقبلية.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(استخدم هذه الحقول عندما تختار 'يعرّÙها المستخدم' لشرط أو ÙÙØ¹Ù„)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(أيّها)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(لا ملخص)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(بلا اسم)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(لا يوجد pubkey)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(لا يوجد قيمة)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(لا يوجد قيم)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(ÙÙŠ إنتظار التصديق)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(ضروري)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(بدون عنوان)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(غير موثوق!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "0Ø«" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "هناك قالب بهذا الإسم موجود مسبقا" #: etc/initialdata:258 msgid "A blank template" msgstr "قالب ÙØ§Ø±Øº" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "لا يوجد كلمة سر بعد, لذا لا يستطيع المستخدون تسجيل الدخول بعد." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "Ùˆ" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "عن Ù†ÙØ³Ù‰" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "تحكم بالوصول" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "إجراء" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "" #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Ø£ÙØ¹Ø§Ù„" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "الطلبات Ø§Ù„ÙØ§Ø¹Ù„Ø©" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "الطلبات Ø§Ù„ÙØ§Ø¹Ù„Ø© Ù„ %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "أض٠%1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "أض٠نسخة إدارية" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "أض٠إشارة مرجعية" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "أض٠نسخة" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Ø¥Ø¶Ø§ÙØ© أعمدة" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "أض٠معيار" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "أض٠المزيد من Ø§Ù„Ù…Ù„ÙØ§Øª" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "أض٠مقدم طلب" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "أض٠قيمة" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "أض٠تعليقا أو ردا على الطلبات المختارة" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "أض٠مجموعة" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "أض٠هنا" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "أض٠أعضاء" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "أض٠مراقبين جدد" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "أض٠صلاحيات Ù„ %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "أض٠هذه المصطلحات" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "أض٠هذه المصطلحات Ùˆ إبدأ البحث" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "أض٠مستخدما" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "أض٠قيم" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Ø§ÙØ¶ÙŠÙت" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "عنوان" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "العنوان 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "عنوان 1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "عنوان 2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "نسخة إدارية" #: etc/initialdata:410 msgid "Admin Comment" msgstr "تعليق إداري" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Ø£Ø¯ÙØ± الطوابير" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "الإعدادات الإدارية/العامّة" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "متقدم" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "بحث متقدّم" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "بعد الولوج ستنقلون إلى غايتكم الأصلية:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "مجمّع" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "كل الطلبات من هذه Ø§Ù„ÙØ¦Ø© ينبغي أن ØªÙØ¯Ø±Ø¬ ÙÙŠ قائمة ÙÙŠ ØµÙØ­Ø© ردود الطلب" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "كل لوحات القراءات" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "كل الطوابير" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "كل الطلبات" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "" #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "كل الطوابير المطابقة معايير البحث" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "كل الطلبات" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "كل الموضوعات" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "إسمح بإنشاء أبحاث محÙوظة" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "إسمح بتحميل الأبحاث المحÙوظة" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "معمّى Ø¨Ø§Ù„ÙØ¹Ù„" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "أو/Ùˆ" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "سنويا" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "تنطبق على" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "تطبيق" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "طبّق عموما" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "طبق التغييرات" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "إعتماد" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "إعتماد #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "تمّ Ø±ÙØ¶ المواÙقة" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "إبريل" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "المقالة #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "تم إنشاء مقال %1" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "إدارة المقالات" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "تعذر ايجاد المقال" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "المقالات" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "المقالات ÙÙŠ %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "المقالات التي تطابق %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "المقالات بلا موضوعات" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "تصاعدي" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "عيّÙÙ† Ùˆ أزÙÙ„ حقولا مطوعة للطوابير" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "إلحاق" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "إلحاق ملÙ" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "إلحاق ملÙ" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "مرÙÙ‚" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "تم إنشاء الملحق" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "إسم المل٠الملحق" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "ملحقات" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "تعمية الملحقات معطل" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "ÙØ´Ù„ الإعداد التلقائي للحساب" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "تيمة الألوان المقترحة آليا ليست متاحة لصورتك. قد يكون ذلك لأنك Ø±ÙØ¹Øª صورة من صيغة لا تدعمها تنصيبة GD المستخدمة. الصيغ المدعومة هي: %1. بوسعك إعادة تجميع libgd Ùˆ GD.pm لتضمين دعم لصيغ أخرى للصور." #: etc/initialdata:261 msgid "Autoreply" msgstr "رد آلي" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "قم بإرسال رد للطالب تلقائيا" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "الرد التلقائي بصيغة HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Ù…ØªÙˆÙØ±" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "إلى الخلÙ" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "البيانات الأساسية" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "Ø¯ÙØ¹Ø©" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "نسخة مخÙية" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "ÙØ§Ø±Øº" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "الجسم" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "عريض" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Ø§Ù„Ù…ÙØ¶Ù„Ø©" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "طلبات Ù…ÙØ¹Ù„ّمة" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "طلبات Ù…ÙØ¹Ù„ّمة" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "تصÙّح حسب الموضوع" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "تحديث جماعي" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "إحسب" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "إحسب قيم" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "لا يمكن تعديل مستخدمي النظام" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "لا يمكن ربط الطلب إلى ذاته" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "لا يمكن إنشاء وصلة لطلب ممسوح" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "تعذر Ø­ÙØ¸ %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "تعذر Ø­ÙØ¸ هذا البحث" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "لا يمكن إنشاء طلب ÙÙŠ طابور Ù…ÙØ¹Ø·Ù‘ÙŽÙ„" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Ø§Ù„ØªØµÙ†ÙŠÙØ§Øª مبنية على" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "ÙØ¦Ø©" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "نسخة إلى" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "تغيير" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "غير كلمة السر" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "حدد الكلّ" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Ø¥ÙØ­Øµ الإتصال مع قاعدة البيانات" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Ø¥ÙØ­Øµ بيانات الولوج لقاعدة البيانات" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "إختر الصندوق للمسح" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "أولاد" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "إختر مشغل قاعدة البيانات" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "إختر من المواضيع Ù„%1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "المدينة" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Ø£ÙØ±Øº" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "ØªÙØ±ÙŠØº الكل" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "انقر \"أنه٠التنصيب\" لإتمام هذا المرشد." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "إضغط لاختيار لون" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "أغلقت" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "الطلبات المغلقة" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "تعليق" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "عنوان التعليقات" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "عنوان التعليقات" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "علّق على الطلب" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "ملاحظات" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "ملاحظات (لا ØªÙØ±Ø³ÙŽÙ„ إلى الطالب)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "تعليقات حول هذا المستخدم" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "تم Ø¥Ø¶Ø§ÙØ© التعليقات" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "شرط" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "الشرط '%1' غير موجود" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "تضبيطات الطابور %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "نجح الإتصال" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "إتصل بمدير RT." #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "المحتويات" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "المحتوى عنوان إنترنت غير صالح" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "المحتوى نطاق عناوين إنترنت غير صالح" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "عنوان الردود" #: etc/initialdata:393 msgid "Correspondence" msgstr "الردود" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "تم Ø¥Ø¶Ø§ÙØ© رد" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "تعذر تغيير المالك: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "تعذّر إنشاء المجموعة" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "تعذَّر إنشاء الطلب. الطابور غير Ù…ÙØ¹Ø¯Ù‘" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "تعذر إنشاء المستخدم" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "تعذّر إيجاد أو إنشاء المستخدم '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "تعذّر تحميل المجموعة" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "تعذّر جعل %1 %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "تعذر وضع بيانات المستخدم" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "تعذر إلحاق Ø§Ù„Ù…Ù„ÙØ§Øª" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "تعذّرت Ø¥Ø¶Ø§ÙØ© عضو إلى المجموعة" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "تعذّر حذ٠لوحة القراءات %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "تعذر إيجاد الصÙ" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "تعذر إيجاد تلك القيمة" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "تعذر تحميل نسخة من الطلب #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "تعذّر تحميل لوحة القراءات %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "تعذّر تحميل المجموعة #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "تعذّر تحميل المجموعة %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "تعذر تحميل الوصلة" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "تعذر تحميل أو إنشاء المستخدم: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "تعذَّر تحميل الطابور" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "تعذَّر تحميل الطابور #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "تعذَّر تحميل الطابور %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "تعذَّر تحميل الطابور '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "تعذر تحميل الطلب '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "تعذر تحميل العضوية ÙÙŠ الموضوع أثناء محاولة مسحه" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "تعذر تحميل المستخدم" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "تعذر تحميل المستخدم #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "تعذر تحميل المستخدم '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "تعذّر ØªÙØ³ÙŠØ± المصدر '%1' كمسار." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "تعذّر ØªÙØ³ÙŠØ± الوجهة '%1' كمسار." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "البلد" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "إنشاء" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "أنشئ طلبات" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "أنشئ مقالة جديدة" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "أنشئ مقالة جديدة ÙÙŠ" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "أنشئ لوحة قراءات جديدة" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "أنشئ مجموعة جديدة" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "أنشئ مستخدم جديد" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "أنشئ طابورا" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "إنشاء طلب جديد" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "أنشئ مقالة" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "أنشئ مقالة من Ø§Ù„ÙØ¦Ø©" #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "أنشئ مقالة ÙÙŠ هذه Ø§Ù„ÙØ¦Ø©" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "أنشء لوحة قراءات لمجموعة مستخدمين" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "أنشئ طلبات جديدة بناء على قالب هذا السكربت" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "أنشئ لوحة قراءات شخصية" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "أنشئ لوحة قراءات للنظام" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "إنشاء طلب جديد" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "أنشئ طلبات" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "أنشئ أو عدّل أو احذ٠طابورا" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "أنشئها" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "التعمية" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "الوصلات الحالية" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "الأعضاء الحاليون" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "البحث الجاري" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "المراقبون الحاليون" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "حقول مطوّعة للطابور %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "" #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "" #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "خصّص" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "يومياً" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "لوحة القراءات" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "تعّر إنشاء لوحة القراءات: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "تعذّر تحديث لوحة القراءات: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "تم تحديث لوحة القراءات" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "لوحة القراءات" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "مستضي٠قاعدة البيانات" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "اسم قاعدة البيانات" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "نوع قاعدة البيانات" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "نَسَق التاريخ" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "التواريخ" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "ÙÙƒ التعمية" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "الطابور المبدئي" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "المبدئي: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "احذÙ" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "احذ٠القالب" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "ÙØ´Ù„ الحذÙ: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "احذ٠لوحات قراءات مجموعة مستخدمين" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "احذ٠لوحات قراءات شخصية" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "احذ٠لوحات قراءات النظام" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "احذ٠طلبات" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "تم حذ٠%1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "إحذ٠الطابور" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "منع" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "معتمد عليها لـ" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "تمت Ø¥Ø¶Ø§ÙØ© هذا ÙƒÙ…ÙØªÙŽØ·Ù„َّب للطلب %1" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "تم حذ٠هذا ÙƒÙ…ÙØªÙŽØ·Ù„َّب للطلب %1" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "تم Ø¥Ø¶Ø§ÙØ© %1 ÙƒÙ…ÙØªØ·Ù„َّب لهذا الطلب" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "تم حذ٠%1 ÙƒÙ…ÙØªØ·Ù„َّب لهذا الطلب" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "تعتمد على" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "تنازلي" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "إشرح المسألة بالأسÙÙ„" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "الوصÙ" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Ø§Ù„ØªÙØ§ØµÙŠÙ„" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "الإتجاه" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "معطّل" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "عرض" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "استعرض المقالة %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "اعرض الأعمدة" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Ø¥ÙØ¹Ù„ أي شيء وكل شيء" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "اسم النطاق" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "لا تحدث هذه Ø§Ù„ØµÙØ­Ø©" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "تنزيل" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "نزّل Ù…Ù„ÙØ§ خاما" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "ÙÙŠ غضون" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "خطأ: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "تحديث سهل لطلباتك" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "مطالعة سهلة لتنبيهاتك" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "تحرير" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "حرّر الحقول Ø§Ù„Ù…ÙØ·ÙˆÙ‘عة لكل المجموعات" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "حرّر الحقول المطوّعة لكل الطوابير" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "حرّر الحقول المطوّعة للمقالات من كل Ø§Ù„ÙØ¦Ø§Øª" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "حرّر الحقول المطوّعة للطلبات ÙÙŠ كل الطوابير" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "تحرير البحث" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "تحرير عضوية مجموعة %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "البريد الإلكتروني" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Ù…ÙØ¹Ù‘Ù„" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Ù…ÙÙØ¹Ù‘Ù„ (إخلاء تأشير هذا الخيار ÙŠÙØ¹Ø·Ù‘Ù„ هذه المجموعة)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Ù…ÙÙØ¹Ù‘ÙŽÙ„ (إخلاء هذه التأشيرة ÙŠÙØ¹Ø·Ù‘ÙÙ„ الطابور)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "الطوابير المÙÙØ¹Ù‘َلة" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "الطوابير Ø§Ù„Ù…ÙØ¹Ù„Ø© المطابقة معايير البحث" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "عمّÙ" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "عمّ٠مبدئيا" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "عمّÙ\\Ø¸Ù‡Ù‘ÙØ±" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "أدخل مقالات أو طلبات أو مسارات أخرى ذات علاقة بهذه المقالة." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "" #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "أدخل طوابيرا أو مسارات روابط إلى طوابير. Ø§ÙØµÙ„ ما بين المدخلات Ø¨Ù…Ø³Ø§ÙØ§Øª." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "أدخل طلبات أو مسارات لربط الطلبات بها، ÙØ§ØµÙ„ا ما بينها Ø¨Ù…Ø³Ø§ÙØ§Øª." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "عطل" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "خطأ: لوحة قراءات Ù…Ùقودة" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "الطلبات Ø§Ù„Ù…ÙØµØ¹Ù‘َدة" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "الوقت المتوقع" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "استخرج مقالة" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "استخرج مقالة حديثة من الطلب #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "استخرج مقالة من الطلب #%1 إلى Ø§Ù„ÙØ¦Ø© %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "تعذّر إيجاد شبه المجموعة 'Ø§Ù„Ù…ÙØ®ÙŽÙˆÙ„ون'" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "ÙØ´Ù„ تحميل %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "ÙØ´Ù„ تحميل %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "اسم الملÙ" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "الأولوية النهائية" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "أقصى أولوية" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "أوجد المجموعات التي" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "ابحث ÙÙŠ الطلبات" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "" #: share/html/Elements/Tabs:878 msgid "First" msgstr "" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "تنسيق" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "مرر" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "مرّر الرسالة" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "مرر الرسالة وإرجع" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "مرر الطلب" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "تمرير الرسائل خارج النظام" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "مرر الرسالة #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "مرر الطلب إلى %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "رسالة ممررة" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "الدورية" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "جمع" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "الجمعة" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD Ù…ÙØ¹Ø·Ù‘Ù„ أو غير Ù…Ùنَصَّب. يمكنك Ø±ÙØ¹ صورة إلى أنك لن تحصل على اقتراحات آلية لتيمة الألوان." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "عام" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "انطلق" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "اذهب إلى المجموعة" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "انطلق" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "مجموعة" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "صلاحيات المجموعات" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "المجموعة تضم Ø¨Ø§Ù„ÙØ¹Ù„ المستخدم: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "تعذّر إنشاء المجموعة: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "تم إنشاء المجموعة" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "تم تعطيل المجموعة" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "تم ØªÙØ¹ÙŠÙ„ المجموعة" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "هذا العضو لا ينتمي إلى المجموعة" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "اسم المجموعة '%1' مستخدم Ø¨Ø§Ù„ÙØ¹Ù„" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "المجموعة غير موجودة" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "المجموعات" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "لا يمكن لمجموعة أن تكون عضوة ÙÙŠ أعضائها" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "المجموعات المطابقة معايير البحث" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "المجموعات التي ينتمي إليها المستخدم" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "التأريخ" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "تأريخ المقالة #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "تأريخ مجموعة %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "تأريخ الطابور %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "الرئيسية" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "السّاعة" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "ساعات" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "Ù…ÙØ¹Ø±Ù‘ÙÙ" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "الهوية" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "إن رÙÙÙØ¶ÙŽØª المواÙقة ÙØ§Ø±Ùض الأصل Ùˆ ألغ٠المواÙقات المنتَظرة" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "إن كان نوع نظام إدارة قواعد البيانات Ø§Ù„Ù…ÙØ¶Ù‘Ù„ لك غير مدرج ÙÙŠ القائمة التالية ÙØ¥Ù† هذا يعني أن RT لم يجد مشغّل قواعد بيانات منصّب لها محليّا. قد يكون بوسعك تدارك ذلك باستخدم %1 لتنزيل Ùˆ تنصيب DBD::MySQL أو DBD::Oracle أو DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "الطلبات غير المÙÙØ¹Ù‘لة" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "ضمّن المقالة:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "ضمّن ÙÙŠ القائمة المجموعات Ø§Ù„Ù…ÙØ¹Ø·Ù‘لة" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "ضمّن ÙÙŠ القائمة الطوابير Ø§Ù„Ù…ÙØ¹Ø·Ù‘Ø©." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "رسائل Ù…ÙØ±Ø¯Ø©" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "خبّر المستخدم أن لوحة القراءات المشترÙÙƒ Ùيها Ù…Ùقودة" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "اﻷولوية المبدئية" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "خطأ داخلي: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "طابور غير صحيح. تعذّر تطبيق Ø§Ù„ÙØ¦Ø© %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "كائن خاطيء" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "طابور غير صحيح" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "" #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "من المحبّذ أن تنشئ مستخدم يونكس غبر ذي صلاحيات Ùˆ بعضوية المجموعات المطلوبة Ùˆ Ø§Ù„Ù†ÙØ§Ø°ÙŠØ© إلى RT لكي تشغّÙÙ„ هذه الأداة." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "مائل" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "يناير" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "الانضمام إلى المجموعات أو تركها" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "يوليو" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "الكل" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "يونيو" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "اللغة" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "كبير" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "الأخيرة" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "اخر تحديث" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "آخر تحديث Ù„" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "آخر تحديث" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "آخر تحديث Ù„" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "على اليسار" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "الطول Ø¨Ø§Ù„Ø£Ø­Ø±ÙØ› ضع 0 لإظهار كل الرسائل ÙÙŠ المتن بغض النظر عن طولها" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "رابط" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "روابط" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "قائمة" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "حمّل" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "يجري التحميل..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "المحلية" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "الموقع" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "والج" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "والج باسم %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "تم الخروج" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Ù„ÙØ¬" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "تسجيل الخروج" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "البريد الإلكتروني" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "اجعلها ذات أولوية" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "أنشئ طابورا" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "إدارة المجموعات Ùˆ عضويتها" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Ø£Ø¯ÙØ± الخصائص Ùˆ التضبيطات التي تنطبق على كل الطوابير" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "أدر الطوابير Ùˆ الخصائص الخاصة بالطوابير" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "تمَ تعليم كل الرسائل بأنها طولعت" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "مايو" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "أنا" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "عضو" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "رسالة" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "تم تسجيل الرسالة" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "دقائق" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "عدّل" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "عدّل الأعضاء" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "عدّل حقلا Ù…ÙØ·ÙˆØ¹Ø§ للطابور %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "حرّر Ùˆ أنشئ حقولا Ù…ÙØ·ÙˆÙ‘عة للمقالات" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "عدّل المقالة #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "عدّل الموضوعات العمومية للمقالات" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "تعديل صلاحيات المجموعات العمومية" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "تعديل لوحات قراءات مجموعات المستخدمين" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "تعديل توصي٠المجموعات Ùˆ حذ٠المجموعات" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "عدّل صلاحيات المجموعات على الطابور %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "عدّل الأشخاص المرتبطين بالطلب #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "عدّل لوحات قراءات شخصية" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "عدّل مراقبي الطابور" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "عدّل سكربتات الطابور %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "عدّل السكربتات التي تنطبق على كل الطوابير" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "عدّل لوحات قراءات النظام" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "عدّل القالب %1 للطابور %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "عدّل القوالب التي تنطبق على كل الطوابير" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "عدّل محتوى لوحة القراءات %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "عدّل لوحة القراءات %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "عدّل الاشتراك ÙÙŠ لوحة القراءات %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "عدّل الطلبات" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "عدّل موضوعات المقالات من هذه Ø§Ù„ÙØ¦Ø©" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "عدّل صلاحيات المستخدمين على الطابور %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "طلباتي ال%1" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "مواÙقاتي" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "يومي" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "تنبيهاتي" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "مواÙقاتي" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "لوحات قراءاتي" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "تنبيهاتي" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "بحوثي المحÙوظة" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "الاسم" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "أبدًا" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "جديدة" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "مقالة جديدة" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "لوحة قراءات جديدة" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "بحث جديد" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "رسائل حديثة" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "كلمة سر جديدة" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "تنبيه جديد:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "طلب جديد" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "الطلبات الحديثة ÙÙŠ هذا الطابور لا يمكن أن تكون حالتها '%1'." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "اللاحق" #: lib/RT/User.pm:96 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "الاسم المستعار" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "لا" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "لا مقالات تطابق %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "لا طابور Ù…ÙØ¹Ø±Ù‘ÙŽÙ" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:970 msgid "No password set" msgstr "" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "ليست لك صلاحية إنشاء طوابير" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "ليست لك صلاحية إنشاء طلبات ÙÙŠ الطابور '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "ليست لك صلاحية مطالعة المقالة" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "لا طوابير تطابق معايير البحث." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "لا أحد" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "لا شيء" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "غير موجود" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "غير والج" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "ملاحظات" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "" #: etc/initialdata:47 msgid "Notify Owner" msgstr "نبّه المالك" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "نبّه المالك كتعليق" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "نبّه المالكين بطلباتهم المرÙوضة" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "نبّهني إلى الرسائل غير المقروءة" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "أو" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "عند الإغلاق" #: etc/initialdata:170 msgid "On Comment" msgstr "علق على الطلب" #: etc/initialdata:142 msgid "On Correspond" msgstr "عند التراسل" #: etc/initialdata:131 msgid "On Create" msgstr "عند الإنشاء" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "عند التمرير" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "عند تمرير الطلب" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "عند تغيّر المالك" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "عند تغيّر الأولوية" #: etc/initialdata:199 msgid "On Queue Change" msgstr "عند تغيّر حالة الطابور" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "عند Ø§Ù„Ø±ÙØ¶" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "" #: etc/initialdata:205 msgid "On Resolve" msgstr "عند الحلّ" #: etc/initialdata:176 msgid "On Status Change" msgstr "" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "" #: etc/initialdata:108 msgid "Open Tickets" msgstr "" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "ÙØªØ­ الرابط" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "الخيارات" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "حسب" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "المنظّمة" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "تملّك الطلب" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "المالك" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "ØµÙØ­Ø©" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "عدد الصÙÙˆÙ ÙÙŠ Ø§Ù„ØµÙØ­Ø©" #: share/html/dhandler:48 msgid "Page not found" msgstr "" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "بيجر" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "الطلب الأعلى" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "كلمة السر" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "لقد تم تغيير كلمة المرور" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "كلمة السر: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "كلمتا المرور لا تتطابقان." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "الأشخاص" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "الأشخاص ذوي العلاقة بالطابور %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "رÙÙØ¶ التّصريح" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "رÙÙØ¶ التّصريح" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Ø§Ù„ØªÙØ¶ÙŠÙ„ات" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "" #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "اطبع الرسالة المجمّعة الناتجة إلى STDOUT بدلا من إرسالها بالبريد، Ùˆ لا تعلّمها بأنها تم إرسالها" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "الأولوية" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "تجري المعالجة بلا عمليات لذا ÙØ¥Ù† بعض الشروط Ùˆ Ø§Ù„Ø£ÙØ¹Ø§Ù„ قد ØªÙØ´Ù„. Ùكّر ÙÙŠ استخدام معامل ‭--transactions‬" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "إستعلام" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "طابور" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "الطابور %1 لم ÙŠÙØ¹Ø«Ø± عليه" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "اسم الطابور" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "الطابور موجود Ø¨Ø§Ù„ÙØ¹Ù„" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "تعذّر إنشاء الطابور" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "تعذَّر تحميل الطابور." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "تمّ إنشاء الطابور" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Ù…ÙØ¹Ø±Ù‘Ù٠الطابور" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "لم ÙŠÙØ¹Ø«ÙŽØ± على الطابور" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Ù…ÙØªØ§Ø­ الطابور" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "الطوابير" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "الطوابير التي أديرها" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "الطوابير التي أشارك ÙÙŠ إدارتها (AdminCC)" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "بحث سريع" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "إنشاء سريع لطلب" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "لمحة سريعة" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "لمحة سريعة للمستخدم %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "الاسم الحقيقي" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "مشار إليها ÙÙŠ" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "إشارة إلى" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "تحديث" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "قم بتحديث Ø§Ù„ØµÙØ­Ø© كل %1 دقيقة" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Ø§Ø±ÙØ¶" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "تذكَّر الطابور المبدئي" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "تنبيه" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "تمت Ø¥Ø¶Ø§ÙØ© التنبيه '%1'" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "تم التنبيه '%1'" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "تمت إعادة ÙØªØ­ التنبيه '%1'" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "تنبيهات" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "تنبيهات الطلب #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "إزالة الإشارة المرجعية" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "الطالب" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "الطالب" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "صÙّر" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "إعادة الضبط Ù„Ù„Ø¥ÙØªØ±Ø§Ø¶" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "حلّها" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "حلّ الطلب #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Ø­Ùلّت" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "استرجاع" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "سطور" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "عدد الصÙÙˆÙ ÙÙŠ Ø§Ù„ØµÙØ­Ø©" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Ø­ÙØ¸" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Ø­ÙØ¸ التّغييرات" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "بحث" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "ابحث ÙÙŠ المقالات" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "أوجد المقالات المطابقة" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "ابحث ÙÙŠ المقالات" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "بحث عن بطاقات" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "خيارات البحث" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "أمن" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "راجع كذلك:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "أظهر المقالات من هذه Ø§Ù„ÙØ¦Ø©" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "أظهر التعديلات على المقالات من هذه Ø§Ù„ÙØ¦Ø©" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "إنتقاء" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "اختر الحقول Ø§Ù„Ù…ÙØ·ÙˆÙ‘عة للمقالات من كل Ø§Ù„ÙØ¦Ø§Øª" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "اختر طابورا" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "اختر طابورا للطلب الجديد" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "اختر مستخدما" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "اختر مقالة من %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "اختر مقالة لتضمينها" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "اختر حقولا Ù…ÙØ·ÙˆÙ‘عة لكل الطوابير" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "اختر حقولا مطوّعة للطلبات ÙÙŠ كل الطوابير" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "اختر حقولا Ù…ÙØ·ÙˆÙ‘عة لكل العمليات على الطلبات ÙÙŠ كل الطوابير" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "اختر الطوابير التي ØªÙØ¹Ø±Ø¶ ÙÙŠ ØµÙØ­Ø© \"لمحة سريعة\"" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "اختر موضوعات لهذه المقالة" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "اختر الطوابير" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "الإعدادات" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "عرض" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "أعرض الأعمدة" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "أظهر الطلبات العشرة الأَولى التي للطالب" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "بحث بسيط" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "الحجم" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "صغير" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "رتب" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "ترتيب" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "جدول ممتد" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "علّقها" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "تبدأ" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "الولاية" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "الحالة" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "الحالة '%1' ليست صحيحة للطلبات ÙÙŠ هذا الطابور" #: etc/initialdata:449 msgid "Status Change" msgstr "" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "تم تحديث حالة الطلب من %1 إلى %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "اسرقها" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "اسرق الطلب" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "الشكل" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "الموضوع" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "اشترك ÙÙŠ لوحة القراءات %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "اشترك ÙÙŠ لوحات قراءات" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "تم إشراكك ÙÙŠ لوحة القراءات %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "الأحد" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "مبدئي النظام" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "أدوات النّظام" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "" #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "قالب" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "قوالب الطابور %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "لهذا الطلب متطلبات غير محلولة" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "ذلك المستخدم لا يمكنه تملك طلبات ÙÙŠ هذا الطابور" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "البيانات الأساسية" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "ÙØ¦Ø© هذه المقالة Ø§Ù„Ù…Ø¹Ø±ÙØ© %1 لم ØªÙØ·Ø¨Ù‘Ù‚ على هذا الطابور" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "الأمر التالي سيجد كل الطلبات Ø§Ù„ÙØ§Ø¹Ù„Ø© ÙÙŠ الطابور العمومي Ùˆ يعيّن لها درجة الأولوية 99 إن كان أجلها قد ÙØ§Øª:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "الاستعلامات التالية تم حذÙها Ùˆ كل منها سيزال من لوحة القراءات Ùور تحديثها" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "الاستعلامات التالية ربما كانت غير ظاهرة لكل المستخدمين الذين بوسعهم مطالعة لوحة القراءات هذه." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "النظام ليس بوسعه توقيع الرسائل الصادرة. عادة ما يكون ذلك بسبب خطا ÙÙŠ عبارة سرّ Ù…ÙØªØ§Ø­ التوقيع أو لأن عميل GPG غير عامل. نبّه مدير النظام Ùورا. العناوين المشكلة هي:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "السÙمة" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "توجد رسائل غير مقروءة ÙÙŠ هذه الطلب" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "الطلبات %1 ذات الحالة %2 الأَولى لهذا المستخدم" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "طلب" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "تحديث كل حقول الطلب #%1: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "الطلب #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "الطلب %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "تمّ إنشاء الطلب %1 ÙÙŠ الطابور '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "الطلب %1 %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "تمّ حل الطلب" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "عمليات الطلبات" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "الطلبات" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "الطلبات %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "الوقت المتوقع" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "الوقت المتبقي" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "وقت العمل" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "المنطقة الزمنية" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "عنوان" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "إلى" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "أدوات" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "الإجمالي" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "العمليات صمداء" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "النوع" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "النوع a: قبل أرقام المقالات Ùˆ t: قبل أرقام الطلبات." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "تعذّر تحميل المقالة" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "غير محدود" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "لوحة قراءات بلا اسم" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "طوابير غير مختارة" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "تحديث" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "تحديث تنسيق Ùˆ بحث" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "" #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Ø­ÙØ¯Ù‘Ø«" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "استخدم المبدئي (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "اختر من القائمة المنسدلة أي تحديثات الطلبات تريد استخراجها ÙÙŠ مقالة جديدة." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "مستخدÙÙ…" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "ÙŠÙØ¹Ø±Ù‘ÙÙها المستخدم" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "" #: lib/RT/User.pm:256 msgid "User created" msgstr "" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "أسم المستخدم" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "المستخدمون" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "طالع رسائل البريد الصادرة Ùˆ متلقيها" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "استعرض لوحات قراءات مجموعات المستخدمين" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "استعرض لوحات القراءات الشخصية" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "استعرض الطابور" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "استعرض لوحات قراءات النظام" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "مرحبا بك ÙÙŠ RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "عندما يتعذر على RT التعامل مع رسالة إلكترونية، إلى أين يجب تمريرها؟" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "عندما يرسل النظام رسالة بريد ÙØ¥Ù†Ù‡ يضع ترويستي From Ùˆ Reply-To لكي ÙŠÙمكن للمستخدمين المشاركة ÙÙŠ النقاش بالرد على الرسالة التي وردتهم. يستخدم النظام عنوانين مختلÙين لكل من الردود Ùˆ التعليقات يمكن ضبط كلّ٠منهما لكل طابور. تلك العناوين ينبغي أن ØªÙØ¶Ø¨Ø· ÙÙŠ برمجية rt-mailgate" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:137 msgid "When anything happens" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "كلما Ù…ÙØ±Ø±Øª رسالة" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "كلّما رÙÙØ¶Øª طلب" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "كلّما تمّ حل طلب" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "كلّما تغيّرت درجة أولوية الطلب" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "كلّما تغيّر طابور طلب" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "وقت العمل" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "نعم" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "يمكنك تحرير لوحة القراءات هذه Ùˆ اشتراكك Ùيها ÙÙŠ نظام متابعة الطلبات RT" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "يمكنك Ø§Ù„Ù‚ÙØ² إلى أوّل رسالة غير مقروءة أو Ø§Ù„Ù‚ÙØ² إلى أوّل رسالة غير مقروءة Ùˆ تعليم كل الرسائل بأنها طولعت." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "تم خروجك من RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "ليست لك صلاحية إنشاء طلبات ÙÙŠ هذا الطابور." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "يمكنك إدخال روابط إلى مقالات على النحو \"a:###\" معوضا ### برقم المقالة." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "عليك ادخال كلمة المرور الإدارية" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "كلمة مرورك لم تعد" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[لاشيء]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "نشط" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "بعد" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "Ùˆ قبل" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "شريط" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "المتن" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "من أسÙÙ„ إلى أعلى" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "أشّر هذا الخيار لتطبيق هذه Ø§Ù„ÙØ¦Ø© على كل الطوابير" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "Ø£Ø´Ù‘ÙØ± هذا الخيار لإزالة تطبيق هذه Ø§Ù„ÙØ¦Ø© على كل الطوابير Ùˆ ليكون بإمكانك اختيار طوابير بعينها." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "Ù…Ø­Ø°ÙˆÙØ©" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "تنزيل" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "يساوي" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "خطأ: لايوجد ما ÙŠÙØ­Ø°Ù" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "خطأ:لايوجد شيء للأزاحة" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "كل" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "تنÙيذ الملحق بنجاح" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "ممتلئ" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "أكبر من" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "مجموعة" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "مجموعة '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "تعريÙ" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "ÙÙŠ الصن٠%1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "غير Ù…ÙØ¹Ù„" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "يحتوي %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "Ùهرس" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "يكون" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "ليست" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "Ø§Ù„Ù…ÙØªØ§Ø­ معطل" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "Ø§Ù„Ù…ÙØªØ§Ø­ منتهية صلاحيته" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "Ø§Ù„Ù…ÙØªØ§Ø­ ملغي" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "من اليسار إلى اليمين" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "أقل من" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "مطابق" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "أقصى عمق" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "دقائق" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "شهريًا" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "أبدًا" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "جديدة" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "لا" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "لا شيء" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "لا يساوي" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "ï»» شئ" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "تمت ازالة العناصر بنجاح" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "على" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "خلال يوم" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "واحد" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "Ù…ÙØªÙˆØ­Ø©" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "ÙØªØ­/إغلاق" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "أخرى..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "دائرة مقسّمة" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "الملحق يرجع قائمة ÙØ§Ø±ØºØ©" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "عنصورة" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "الطابور %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "مرÙوضة" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "يتطلب تشغيل rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "Ø­Ùلّت" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "من اليمين إلى اليسار" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "بحث" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "'طالع قائمة العناصر بالاسÙÙ„" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "إعدادات الموقع" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "Ù…ÙØ¹Ù„ّقة" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "ملخص الصÙÙˆÙ" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "نظام %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "مجموعة النظام '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "المكون الداعي لم يحدد سببا" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "الطلب #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "من أعلى إلى أسÙÙ„" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "مجموعة غير Ù…ÙˆØµÙˆÙØ© %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "غير محدود" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "تحديث التذكرة" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "حدّث مواÙقة" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "تحديث المقال" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "المستخدم" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "المستخدم %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "اسم المستخدم" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "أسبوعيًا" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "أسبوعياً (ÙÙŠ %1) عند %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "أسابيع" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "ما Ø§Ù„Ù…Ù†ÙØ° الذي يستمع عليه خادم Ø§Ù„ÙˆÙØ¨ لديك، مثال Ø§Ù„Ù…Ù†ÙØ° 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "مع الترويسات" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "نعم" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/rt.pot0000664000175000017500000111061413131430353014727 0ustar vagrantvagrant# add by hand msgid "" msgstr "" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "" #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "" #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "" #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "" #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "" #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "" #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:261 msgid "Autoreply" msgstr "" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "" #: etc/initialdata:393 msgid "Correspondence" msgstr "" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "" #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "" #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "" # add by hand #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "" # add by hand #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "" #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "" #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "" #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "" #: share/html/Elements/Tabs:878 msgid "First" msgstr "" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "" #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "" #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "" # add by hand #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "" #: lib/RT/User.pm:96 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:970 msgid "No password set" msgstr "" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "" #: etc/initialdata:47 msgid "Notify Owner" msgstr "" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "" #: etc/initialdata:170 msgid "On Comment" msgstr "" #: etc/initialdata:142 msgid "On Correspond" msgstr "" #: etc/initialdata:131 msgid "On Create" msgstr "" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "" #: etc/initialdata:199 msgid "On Queue Change" msgstr "" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "" #: etc/initialdata:205 msgid "On Resolve" msgstr "" #: etc/initialdata:176 msgid "On Status Change" msgstr "" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "" #: etc/initialdata:108 msgid "Open Tickets" msgstr "" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "" #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" # add by hand #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "" #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "" #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "" #: lib/RT/User.pm:256 msgid "User created" msgstr "" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:137 msgid "When anything happens" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "" #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "" #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/en_GB.po0000664000175000017500000004002213131430353015062 0ustar vagrantvagrant# English (United Kingdom) translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2016-08-05 12:39+0000\n" "Last-Translator: Andi Chandler \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialise Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customise Basics' below to continue customising RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 already exists, but does not contain RT's tables or metadata. The 'Initialise Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customise Basic' below to continue customising RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 appears to be fully initialised. We won't need to create any tables or insert metadata, but you can continue to customise RT by clicking 'Customise Basics' below" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 is an address where RT receives mail. Adding it as a '%2' would create a mail loop" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Tick box to delete)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "(via this asset's catalogue)" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "Admin Catalogues" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "After logging in you will be sent to your original destination:" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "All Catalogues" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "All catalogues matching search criteria" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "All iCal feeds embed a secret token which authorises you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Any word not recognised by RT is searched for in ticket subjects." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Automatically suggested theme colours are not available for your image. This might be because you uploaded an image type that your installed version of GD does not support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Autoreply to Requestors" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Cannot load saved search \"%1\"" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Cannot link to a deleted ticket" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Cannot quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "Catalogue" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "Catalogue #%1 created: %2" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "Catalogue %1: Edit Custom Fields" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "Catalogue %1: Modify basics" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "Catalogue %1: Modify group rights" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "Catalogue %1: Modify roles" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "Catalogue %1: Modify user rights" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "Catalogue Create txn failed: %1" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "Catalogue create failed: %1" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "Catalogues" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "Catalogues may not be deleted" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Click \"Initialise Database\" to create RT's database and insert initial metadata. This may take a few moments" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Click to choose a colour" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Condition is a mandatory argument" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Connection successful" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "Couldn't create role groups for catalogue" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "Create a new asset in catalogue %1" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "Create a new asset in the catalogue %1." #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "Create catalogue" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "Create, modify, and disable catalogues" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Customise" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Customise Basics" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Customise Email Addresses" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Customise Email Configuration" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Customise dashboards in menu" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "Customise the RT theme" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Customise the look of your RT" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "Edit Custom Fields for Assets in all Catalogues" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "E-mail" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "Enabled Catalogues" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "Enabled catalogues matching search criteria" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Fill boxes with colour using" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD is disabled or not installed. You can upload an image, but you won't get automatic colour suggestions." #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "Include disabled catalogues in listing." #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Initialise Database" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "Invalid Catalogue" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Invalid right. Couldn't canonicalise right '%1'" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "LocalisedDateTime" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "Modify asset catalogues" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "No catalogue specified." #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "No catalogues matching search criteria found." #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "No longer authorised" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "No permission to modify this catalogue" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organisation" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organisations on all seven continents. (Yes, even Antarctica.)" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "RT's logging configuration is summarised below:" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "Rich text (HTML) shows formatting such as coloured text, bold, italics, and more" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "See catalogues" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "Select Custom Fields for Assets in all Catalogues" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "Select a catalogue" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Select a colour for the section" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "The default catalogue" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "Unable to find catalogue %1" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "Unable to find catalogue '%1'" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "Unauthorised" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "We are able to find your database and connect as the DBA. You can click on 'Customise Basics' to continue customising RT." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialise RT's database." #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "You (%1) are not authorised to use RT." #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "You are not authorised to use RT." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "You can also click on the logo above to get colours!" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "You don't have permission to create assets in catalogue %1." #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "You don't have permission to view this catalogue." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "Your system supports automatic colour suggestions for: %1" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "[a hidden catalogue]" rt-4.4.2/share/po/de.po0000664000175000017500000134072013131430353014511 0ustar vagrantvagrant# German translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2016-10-04 22:52+0000\n" "Last-Translator: Ettore Atalan \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%1 %3. %2 %4" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%1 %3. %2 %4:%5 %6" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3. %2 %4:%5:%6 %7" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 hinzugefügt" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 geändert in %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 gelöscht" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 gelöscht." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 existiert nicht" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 ist deaktiviert" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 gespeichert." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 aktualisiert." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 mit der Vorlage %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) von %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Unverändert)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (von Ansicht %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - LogToSTDERR Konfigurationsoption anpassen" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Ein Argument zur Übergabe an %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Statusausgabe auf STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Möchtest Du die 'erste', 'letzte' oder 'alle' Transaktionen nutzen" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Namen oder die ID der Vorlage/n angeben, die Sie verwenden möchten" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Kommagetrennte Liste der Transaktionstypen angeben, die Sie verwenden möchten" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Gibt an, welches Condition-Modul benutzt werden soll" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Gibt an, welches Search-Modul benutzt werden soll" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "%1 benutzerdefinierte Felder" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 Alle Rechte vorbehalten 1996-%3 %4." #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 als Wert für %2 hinzugefügt" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "vor %1" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "Die Datenbank %1 existiert bereits und enthält RT Tabellen aber keine RT Metadaten. Der Schritt 'Initialisiere Datenbank' kann später diese Metadaten in die bestehende Datenbank einfügen. Wenn Sie das wollen, klicken Sie 'Grundeinstellungen anpassen' und fahren mit der Anpassung des RT fort." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 existiert bereits und enthält weder RT Tabellen noch RT Metadaten. Der Schritt 'Initialisiere Datenbank' kann später die Tabellen und Metadaten in die bestehende Datenbank einfügen. Wenn Sie das wollen, klicken Sie 'Grundeinstellungen anpassen' und fahren mit der Anpassung des RT fort." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "%1 hat bereits das Recht %2 für %3 %4" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 konnte nicht in der Datenbank gefunden werden obwohl es ein lokales Objekt zu sein scheint" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 scheint vollständig initialisiert zu sein. Wir brauchen keine weiteren Tabellen oder Metadata einzufügen aber Du kannst mit der Konfiguration durch klicken auf 'Grundlagen anpassen' fortfahren." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 von %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 kann keine Gruppe sein" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 von %2 in %3 geändert" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 geändert von '%2' in '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 kopieren" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 Core Einstellung" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 konnte nicht auf %2 gesetzt werden." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 erstellt" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 gelöscht" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 deaktiviert" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 existiert nicht." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 aktiviert" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "Meine %1 dringensten Tickets" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 ist ein Tool um auf Anfragen von externen Programmen (wie cron) zu reagieren." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 ist ein Dienstprogramm, welches aus CRON gestartet werden soll. Es sendet alle aufgeschobenen RT Benachrichtigungen als benutzer definierten Auszug" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "%1 ist bereits %2" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 ist bereits %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 ist eine RT Mail Adresse. Das Hinzufügen als %2 würde eine E-Mail Schleife erzeugen." #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "%1 ist nicht länger %2 für diesen Bereich" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "%1 ist nicht länger %2 für dieses Ticket" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 ist kein Wert mehr für das benutzerdefinierte Feld %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 ist kein von %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 ist kein gültiger Lebenszyklus" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 Tickets" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 Schlüssel '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 zuletzt aktualisierte Artikel" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "%1 zuletzt aktualisierte verwandte Tickets" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 neueste Artikel" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "Die %1 neusten Tickets ohne Besitzer" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 Objekte" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 gesetzt auf %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 Site-Einstellungen" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 aktualisiert: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 aktualisiert: Nichts verändert" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 aktualisiert" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1's %2 Objekte" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1's %2's %3 Objekte" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1s aktuelles Password" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Dashboards von %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "Verschlüsselungs-Schlüssel von %1" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "Gespeicherte Suchanfragen von %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: kein Anhang angegeben" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Neues Ticket in%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,Artikel)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,Tag,Tage)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1, Stunde, Stunden)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,Stunde,Stunden) (%quant(%2,Minute,Minuten))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,Minute,Minuten)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,Monat,Monate)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,Sekunde,Sekunden)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,Woche,Wochen)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,Jahr,Jahre)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "Der Name '%1' ist nicht gültig." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' ist keine gültige Klasse" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "\"%1\" ist keine gültige Klasse-Kennung" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Zum erledigen Kontrollkästchen anklicken)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Auswahl wird gelöscht)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Zum Löschen Kontrollkästchen anklicken)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "(Markieren um alle Werte zu löschen)" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Geben Sie Ticket IDs oder URLs getrennt durch Leerzeichen ein)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Wenn das Feld leer bleibt, dann wird der Standardwert: %1 verwendet)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(Unvollständig)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(Fehlerhafte Daten)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Keine benutzerdefinierten Felder)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Keine Mitglieder)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Keine Scrips)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Keine Vorlagen)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Sendet diese Aktualisierung in Kopie an eine mit Komma separierte Liste von E-Mail-Adressen. Zukünftige Aktualisierungen werden ebenfalls übermittelt.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Sendet ein Carbon Copy - CC Update and eine mit Komma separierte Liste von E-Mail-Adressen. Zukünftige Updates werden ebenfalls übermittelt.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "(Nicht unterstützter benutzerdefinierte Feld Typ)" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Benutze diese Felder, für 'Benutzerdefinierte' Bedingungen oder Aktionen)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(jeder)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(Keine Zusammenfassung)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(unbenannt)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(kein öffentlicher Schlüssel!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(kein Wert)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(keine Werte)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(abhängig von %quant(%1,anderem Ticket,anderen Tickets))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(wartet auf Freigabe)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "(abhängig von Ticket #%1)" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(notwendig)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(vertraue: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(unbenannt)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(unzuverlässig!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id ist ein veraltetes Argument und kann nicht zusammen mit --template genutzt werden" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--Transaktions Argument kann nur 'erstes', 'letztes' oder 'alle' sein" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 Sekunden" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Eine Vorlage mit dem Namen besteht bereits" #: etc/initialdata:258 msgid "A blank template" msgstr "Eine leere Vorlage" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Es wurde kein Passwort gesetzt, der Benutzer wird sich nicht anmelden können!" #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE nicht gefunden" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACEs können nur erstellt und gelöscht werden." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "ACL aktualisiert von %1" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "UND" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Über mich" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Zugriffskontrolle" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Aktion" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Aktion '%1' nicht gefunden" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Vorgang ausgeführt." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Aktion ist ein Pflichtfeld" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Aktion vorbereitet..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Aktionen" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Aktive Tickets" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "Aktive Tickets" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Aktive Tickets für %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "%1 hinzufügen" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "AdminCc hinzufügen" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Lesezeichen hinzufügen" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "CC hinzufügen" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Spalten hinzufügen" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Kriterien hinzufügen" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Weitere Dateien anhängen" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "Neue Empfänger hinzufügen" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Auftraggeber hinzufügen" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Wert hinzufügen" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "Hinzufügen einer Gruppe" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "Hinzufügen einer Person" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Füge den ausgewählten Tickets Kommentare oder Antworten hinzu" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Gruppe hinzufügen" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Hier einfügen" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Mitglieder hinzufügen" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Neue Beobachter hinzufügen" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Rechte für %1 hinzufügen" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Diese Werte hinzufügen" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Diese Werte hinzufügen und Suche starten" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Benutzer hinzufügen" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Werte hinzufügen" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Hinzufügen, Ändern und Löschen von benutzerdefinierten Feldwerten für Objekte" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Hinzugefügt" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "%1 als %2 hinzugefügt zu diesem Bereich" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "%1 als %2 hinzugefügt zu diesem Ticket" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "Betreff überschreiben hinzugefügt: %1" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "Benutzerdefiniertes Feld %1 zu %2 hinzugefügt" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adresse" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Anschrift 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adresse 1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adresse 2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "Gearbeitete Zeit angepasst - %quant(%1,Minute,Minuten)" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Administrator" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "Admin Katalog" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "Admin-Cc" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Admin-Kommentar" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Admin Kommentar in HTML" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Admin-Korrespondenz" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Admin Antwort in HTML" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Bereiche administrieren" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admin-/Globale Einstellungen" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "AdminCc-Gruppe" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Administrator-Password" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Erweitert" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Erweiterte Suche" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Nach dem Login erfolgt eine Weiterleitung zum ursprünglichen Ziel:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Verknüpfung" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Alle Freigaben genehmigt" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Alle Freigaben erfolgreich in HTML" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Zeige alle Artikel dieser Klasse in einer Dropdown-Liste auf der Ticket Beantwortungsseite." #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "Alle Kataloge" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Alle Klassen" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Alle benutzerdefinierten Felder" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Alle Dashboards" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Alle Bereiche" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Alle Tickets" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "Alle Kataloge die den Suchkriterien entsprechen" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Alle iCal-Feeds beinhalten einen geheimen Token durch welchen die Authorisierung erfolgt. Falls die URL für einen dieser iCal-Feeds irrtümlich nach Extern weitergegeben wurde, können Sie unterhalb einen neuen Token erstellen, welcher alle existierenden iCal-Feeds ungültig werden lässt." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Alle Bereiche die den Suchkriterien entsprechen" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "Alle Empfänger" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Alle Tickets" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Alle Themen" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "Zuordnen" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Erlaube das Erstellen von gespeicherten Suchanfragen" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Erlaube das Laden gespeicherter Suchanfragen" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Erlaube das Verwenden von Perl in den Templates, Scrips, etc." #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Bereits verschlüsselt" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "Sendet immer eine Nachricht an die Auftraggeber unabhängig vom Absender" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "Eine %1Einführung zu Artikeln%3 ist in der %2Best Practical Online Dokumentation%3 verfügbar." #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "Eine Instanz muss angegeben werden" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Ein Fehler ist aufgetreten" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "Ein Fehler ist beim übertragen der Zeit aufgetreten. Bitte übertrage die Zeit manuell." #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Und/Oder" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "jährlich" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Jedes Feld" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Vom RT nicht erkannte Wörter werden im Betreff der Tickets gesucht." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Gilt für" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Wird auf alle Objekte angewendet" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Anwenden" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Global anwenden" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "wende ausgewählt Scrips an" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Änderungen anwenden" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Freigabe" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Freigabe #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Freigabe #%1: Notiz wurde aufgrund eines Systemfehlers nicht gespeichert" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Freigabe #%1: Notiz gespeichert" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Freigabe genehmigt" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "Anfrage genehmigt in HTML" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Freigabe bereit für Besitzer" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "Anfrage bereit für Eigentümer in HTML" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Freigabe abgelehnt" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "Anfrage abgelehnt in HTML" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Freigeben" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "Artikel #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "Artikel #%1 nicht gefunden" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Artikel #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Artikel %1 wurde erstellt" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Artikelverwaltung" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artikel wurde nicht gefunden" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Artikel" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "%1 Artikel" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "%1 gefundene Artikel" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artikel ohne Themen" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "aufsteigend" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "Anlagen benutzerdefinierte Felder" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "Anlage erstellen fehlgeschlagen: %1" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "Anlagen" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "Anlagen können nicht gelöscht werden" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Benutzerdefinierte Felder einem Bereich zuweisen oder entfernen" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "Zugeordnete Anlagen" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Anhängen" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Datei anhängen" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Dateianhang" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Anhang" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Anhang '%1' konnte nicht geladen werden" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Anhang erstellt" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Dateiname des Anhangs" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Anhänge" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Anhang Verschlüsselung ist deaktiviert" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Attribut gelöscht" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "Attribut aktualisiert" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "automatisches Signieren" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "Automatische Erstellung eines Accounts fehlgeschlagen" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Automatisch vorgeschlagene Farben für das Design sind für Ihr Bild nicht verfügbar. Vielleicht haben Sie einen Bildtyp hochgeladen, der von GD nicht unterstützt wird. Unterstützte Bildtypen sind: %1. Sie können libgb und GD.pm neu kompilieren um Unterstützung für andere Bildtypen zu aktivieren." #: etc/initialdata:261 msgid "Autoreply" msgstr "Automatische Antwort" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Automatische Antwort an Auftraggeber" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "AutomatischeAntwort in HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Verfügbar" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "Durchschnitt Erstellt-Zuletzt aktualisiert" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "Durchschnitt Erstellt-Erledigt" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "Durchschnitt Erstellt-Begonnen" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "Durchschnitt Fällig-Erledigt" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "Durchschnitt Begonnen-Erledigt" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "Durchschnitt Beginnt-Begonnen" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "Durchschnitt Geschätzte Zeit" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "Durchschnitt Verbleibende Zeit" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "Durchschnitt Gearbeitete Zeit" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Zurück" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Schlechte Privatsphähre für Eigenschaft %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Grundlagen" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "Batch (deaktiviert durch config)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Batch Scrips" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "Batch Scrips werden nach einer Gruppe von Transaktionen eines Tickets ausgeführt." #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "BCC" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "Bevor Artikel genutzt werden können muss der RT Administrator %1Klassen erstellen%2, benutzerdefinierte Felder für Artikel zuordnen und den Benutzern Rechte erteilen für Klassen und benutzerdefinierte Felder." #: etc/initialdata:257 msgid "Blank" msgstr "Leer" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Nachrichtentext" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Fett" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Lesezeichen" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Lesezeichentauglicher Link für diese Suche" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Markierte Tickets" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Markierte Tickets" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Nach Thema durchsuchen" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Die SQL-Abfragen dieses Prozesses anzeigen" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Massenänderung" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "CC Gruppe" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "Benutzerdefinierte Felder können mit einer ähnlichen Syntax wie oben gesucht werden mit %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "Berechne" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "Berechne Werte nach" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Kann gespeicherte Suche \"%1\" nicht laden" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Kann Systembenutzer nicht ändern" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Kann kein benutzerdefiniertes Feld ohne Namen hinzufügen" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "Kann nicht Standard Wert für %1 von %2 in %3 ändern: %4" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "Kann nicht Standard Werte von %1 in %2 ändern: %3" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Kann keine gespeicherte Suche finden" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Weiterleitung fehlgeschlagen: Keine gültige Mailadresse angegeben" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Kann kein Ticket auf sich selbst verweisen lassen!" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Kann nicht auf ein gelöschtes Ticket verlinken" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Ein Ticket kann nicht mit sich selbst vereinigt werden." #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Kann schnelle Ticket Erstellung in Bereich %1 nicht nutzen da benutzerdefinierte Felder erforderlich sind. Bitte Ticket über die normale Ticket Erstellung Seite erstellen." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Konnte %1 nicht speichern" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Suche ohne Beschreibung kann nicht gespeichert werden" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Kann diese Suche nicht speichern" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "Kann nicht sowohl Basis und Ziel angeben" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Ein Link zu einer einfachen Zahl kann nicht hinzugefügt werden." #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "In einem deaktivierten Bereich können keine Tickets erstellt werden." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "Kann nicht Objekte von deaktivierter benutzerdefinierter Rolle #%1 ändern" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "Katalog" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "Katalog #%1 erstellt: %2" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "Katalog %1: bearbeite benutzerdefinerte Felder" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "Katalog %1: bearbeite Grundlagen" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "Katalog %1: bearbeite Gruppenrechte" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "Katalog %1: bearbeite Rollen" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "Katalog %1: bearbeite Benutzerrechte" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "Katalog Transaktion erstellen fehlgeschlagen: %1" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "Katalog erstellen fehlgeschlagen: %1" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "Kataloge" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "Kataloge können nicht gelöscht werden" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategorien basieren auf" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategorie" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Ändere" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Freigabe Ticket auf Status Offen setzen" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Mail-Betreff ändern:" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Passwort ändern" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Bereichwechsel ist nicht implementiert." #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Diagramm" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "Überprüfung" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Alle auswählen" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Überprüfe Datenbank Verbindung" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Datenbank-Anmeldeinformationen überprüfen" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Auswahl wird gelöscht" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Kind" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Kinder" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Datenbank auswählen" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Wähle von Themen für %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Stadt" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Klasse" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Klassenname" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Klasse konnte nicht erstellt werden: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Klassen-ID" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Diese Klasse wurde bereits global angewandt" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Klasse wurde bereits auf %1 angewendet" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Klassen" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Verwerfen" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Alles löschen" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Klicke \"Finish Installation\" um den Assistenten zu beenden." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Klicke \"Initialize Database\" um die RT Datenbank zu erzeugen und mit Metadaten zu füllen. Dies kann einen Moment dauern." #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Klicken um eine Farbe zu wählen" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "Fenster schließen" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Geschlossen" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Geschlossene Tickets" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Mehrere Werte auswählen oder eingeben" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Combobox: Einen Wert auswählen oder eingeben" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Combobox: Bis zu %1 Werte auswählen oder eingeben" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Kommentieren" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Kommentar-Adresse" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Kommentar-Adresse" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "Kommentiere in Ticket" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Ticket kommentieren" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentare" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Kommentare (werden nicht an Auftraggeber geschickt)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Kommentare zu diesem Benutzer" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Kommentar hinzugefügt" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Commit Stumpf ausgeführt" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Bedingung" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Bedingung '%1' nicht gefunden" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Bedingung ist ein Pflichtfeld" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Bedingung trifft zu..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Bedingung, Aktion und Vorlage" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Konfig Datei %1 ist gesperrt" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Einstellungen für Bereich %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "Konfiguration für Rolle %1" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Verbindung erfolgreich" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "Kontakt" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Kontaktiere den RT Administrator per %1E-Mail an %2%3." #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Kontaktiere den RT Administrator." #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Inhalt" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Inhalt verworfen da die Größe (%1 Bytes) die konfigurierte maximale Größe (%2 Bytes) überschreitet." #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "Inhalt einfügen fehlgeschlagen. Siehe Fehler Logdateien für Details." #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Inhalt ist eine ungültige IP-Adresse" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Inhalt ist ein ungültiger IP-Adressbereich" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Inhalt abgeschnitten da die Größe (%1 Bytes) die konfigurierte maximale Größe (%2 Bytes) überschreitet." #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Inhaltstyp" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "Inhaltstyp" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Antwortadresse" #: etc/initialdata:393 msgid "Correspondence" msgstr "Antwort" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Antwort hinzugefügt" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Korrespondenz in HTML" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "%1 konnte nicht als Empfänger hinzugefügt werden: %2" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Konnte den Wert des benutzerdefinierten Feldes nicht setzen: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Konnte Besitzer nicht ändern: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Konnte benutzerdefiniertes Feld nicht erzeugen: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Gruppe konnte nicht erstellt werden" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Suche konnte nicht angelegt werden: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Ticket konnte nicht erstellt werden. Kein Bereich angegeben" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Benutzer konnte nicht erstellt werden" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Suche %1 konnte nicht gelöscht werden: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Konnte Gruppe '%1' nicht finden" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Konnte Benutzer '%1' nicht finden oder erstellen" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Konnte Attribut %1 nicht laden" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Klasse %1 konnte nicht geladen werden" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Konnte benutzerdefiniertes Feld %1 nicht laden" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "Kann benutzerdefinierte Rolle #%1 nicht laden" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Konnte die Gruppe nicht laden" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Kann Objekt für %1 nicht laden" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "Konnte Scrip #%1 nicht laden" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "Kann Ticket Verlauf nicht laden. Grund:" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Konnte Benutzer '%1' nicht laden" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "Konnte %1 nicht einen %2 machen" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "Konnte nicht %1 als %2 entfernen" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Konnte Benutzerinformation nicht speichern" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Konnte nicht Spalte %1 aktualisieren: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "Konnte nicht hinzugefügt werden da es bereits global ist" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Anhang konnte nicht hinzugefügt werden" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "Kann nicht benutzerdefinierten Feld Wert beim Erstellen hinzufügen: %1" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Konnte Benutzer nicht der Gruppe hinzufügen" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Keine Übersetzung für %1 Codeblock '%2':%3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Konnte Template-Codeblock '%1' nicht kompilieren: %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Transaktion konnte nicht erstellt werden: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Eintrag konnte nicht erstellt werden: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "Kann nicht Rollen Gruppen für Anlage erstellen" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "Kann nicht Rollen Gruppen für Katalog erstellen" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Dashboard %1 konnte nicht gelöscht werden: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Konnte Zeile nicht finden" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Keine passende Transaktion gefunden, übersprungen" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Konnte diese Rolle nicht finden" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Konnte diesen Wert nicht finden" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "Kann %1 Schlüssel Informationen nicht erhalten" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Konnte die Klasse %1 nicht laden" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Konnte benutzerdefiniertes Feld #%1 nicht laden" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Konnte Benutzerdefiniertes Feld #%1 nicht laden" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Konnte benutzerdefiniertes Feld %1 nicht laden" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "Konnte keine Kopie von %1 #%2 laden" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Konnte Kopie des Ticket #%1 nicht laden" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "Kann nicht benutzerdefinierte Rolle '%1' laden" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Dashboard %1 konnte nicht geladen werden: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Gruppe #%1 konnte nicht geladen werden" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Konnte Gruppe %1 nicht laden" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Konnte den Verweis nicht laden" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "Konnte Link nicht laden: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Konnte Objekt %1 nicht laden" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Konnte Benutzer %1 nicht laden oder erstellen" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "Konnte Principal #%1 nicht laden" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "Konnte Principal nicht laden: %1" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Konnte den Bereich nicht laden" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Bereich #%1 konnte nicht geladen werden" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Konnte den Bereich %1 nicht laden" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Bereich '%1' konnte nicht geladen werden" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Script #%1 konnte nicht geladen werden" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Vorlage #%1 konnte nicht geladen werden" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Konnte den angegebenen Auftraggeber nicht laden" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Konnte Ticket '%1' nicht laden" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Konnte Thema Mitgliedschaft nicht laden beim Versuch es zu löschen" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Transaktion #%1 konnte nicht geladen werden" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Konnte Benutzer nicht laden" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Benutzer #%1 konnte nicht geladen werden" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Konnte Benutzer #%1 oder '%2' nicht laden" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Konnte Benutzer '%1' nicht laden" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "Konnte Base URI nicht parsen: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "Konnte Target URI nicht parsen: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "Konnte ehemaliges Mitglied nicht entfernen: %1" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Konnte Inhalt nicht durch entschlüsselte Daten ersetzen: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Konnte Inhalt nicht durch entschlüsselte Daten ersetzen: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "Konnte '%1' nicht in einen Link auflösen" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Basis '%1' kann nicht zu einer URI aufgelöst werden." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Ziel '%1' kann nicht zu einer URI aufgelöst werden." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Konnte nicht %1 Beobachter: %2 setzen" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Konnte privaten Schlüssel nicht setzen" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Konnte privaten Schlüssel nicht zurücksetzen" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Land" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Erstellen" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "Neu erstellen" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Erstelle Ticket" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Klasse erstellen" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Erstelle ein benutzerdefiniertes Feld" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Erstelle ein benutzerdefiniertes Feld für den Bereich %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "Erstelle eine benutzerdefinierte Rolle" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "Globales Scrip erzeugt" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Neuen Artikel erstellen" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Neuen Artikel erstellen unter" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "Erstelle eine neue Anlage in Katalog %1" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "Erstelle eine neue Anlage in dem Katalog %1." #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Neues Dashboard erstellen" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Erstelle eine neue Gruppe" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Neues Template für Bereich %1 erzeugen" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "Erstelle ein neues Ticket in %1" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "Erstelle ein neues Ticket im Bereich %1 für Anlage #%2: %3" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Erstelle einen neuen Benutzer" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Erstelle einen Bereich" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "Scrip erstellen und Bereich %1 zuordnen" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Erstelle eine Vorlage" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Neues Ticket erstellen" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "Erstele ein Ticket in %1" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Ticket erstellen mit diesem Benutzer als Auftraggeber in Bereich" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Artikel erstellen" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Artikel in Klasse erstellen..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Artikel in dieser Klasse erstellen" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "Erstelle Anlage" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "Erstelle Anlagen" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "Erstelle Katalog" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Gruppen-Dashboard erstellen" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "Erstelle verknüpftes Ticket" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "Erstelle verknüpftes Ticket für Anlage #%1: %2" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "Erstelle neue Anlage" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Erstelle neues Ticket basierend auf der Vorlage dieses Scrips" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Eigenes Dashboard erstellen" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "System-Dashboard erstellen" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Erstelle Ticket" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Erstelle Tickets" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Einträge von Zugriffskontrolllisten(ACL) erstellen, ändern und löschen" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Benutzerdefinierte Felder erstellen, ändern und löschen" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Werte von benutzerdefinierten Feldern festlegen, ändern und löschen" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "Erstellen, bearbeiten und löschen von benutzerdefinierten Rollen" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Bereiche erstellen, ändern und löschen" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Gespeicherte Suchanfragen erstellen, ändern und löschen" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Benutzer erstellen, ändern und löschen" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "Erstellen, bearbeiten und deaktivieren von Katalogen" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Erstellt" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Erstellt von" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Erstelle ein benutzerdefiniertes Feld %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Erstellt von" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Suche %1 angelegt" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "Erstellt von" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "Erstellt (relativ)" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Ersteller" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Verschlüsselung" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "Kryptografie/Verschlüsselung ist deaktiviert" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Momentane Beziehungen" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "Aktuelle Empfänger" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Aktuelle Suche" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Aktuelle Mitglieder" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Aktuelle Suche" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Aktuelle Beobachter" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "Spezifisches CSS (Erweitert)" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Benutzerdefinierte Felder" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Benutzerdefinierte Felder für %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Benutzerdefinierte Felder für den Bereich %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "benutzerdefinierte Rollen" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Benutzerdefinierter Aktions-Vorbereitungs-Code" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Benutzerdefinierte Bedingung" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Benutzerdefiniertes Feld #%1 ist nicht dem Objekt zugeordnet" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Benutzerdefiniertes Feld %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Benutzerdefiniertes Feld %1 gilt nicht für dieses Objekt" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Benutzerdefiniertes Feld %1 hat einen Wert." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Benutzerdefiniertes Feld %1 hat keinen Wert." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Benutzerdefiniertes Feld %1 nicht gefunden" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Wert %1 des benutzerdefinierten Feldes %2 konnte nicht gefunden werden" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Wert des benutzerdefinierten Felds konnte nicht gelöscht werden" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Wert des benutzerdefinierten Feldes gelöscht" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "benutzerdefinierte Rolle erstellt" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "benutzerdefinierte Rolle deaktiviert" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "benutzerdefinierte Rolle aktiviert" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "benutzerdefinierte Rolle ist nicht hinzugefügt" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "BenutzerdefiniertesFeld" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "benutzerdefinierte Rolle" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Anpassen" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Grundeinstellungen anpassen" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "E-Mail-Adressen anpassen" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "E-Mail-Einstellungen anpassen" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Dashboards in Menü anpassen" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "RT Design anpassen" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Verändere das Aussehen des RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA Passwort" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA Benutzername" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "täglich" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Tägliche Übersicht" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "Dashboard %1 konnte nicht aktualisiert werden: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "Dashboard %1 aktualisiert" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Dashboard konnte nicht erstellt werden: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Dashboard konnte nicht aktualisiert werden: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Dashboard aktualisiert" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Dashboards in Menü" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Dashboards in Menü für Benutzer %1" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Datenbank Host" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Datenbankname" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Datenbank Password für RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Datenbank Port" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Datenbanktyp" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Datenbank Benutzername für RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "Datum" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Datumsformat" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Datumsangaben" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "Tag" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "Tag des Monats" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "Wochentag" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "Tag des Jahres" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dez" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Entschlüsseln" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "Entschlüsselungsfehler; Administrator kontaktieren" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "Standard %numerate(%1,Wert,Werte)" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "Standardwerte" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "Standardwerte für Bereich %1" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Standard-Bereich" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "Standard Erinnerungs Vorlage" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "Standardwert von %1 geändert von %2 in %3" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "Standardwerte von %1 in %2 geändert" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Standardwert: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Standardwert: %1/%2 von \"%3\" auf \"%4\" geändert." #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "Standard Fällig in" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Standard-Format" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "Standard Beginnt" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Löschen" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Vorlage löschen" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Löschen fehlgeshlagen: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Gruppen-Dashboards löschen" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Die Löschfunktion ist durch die Lebensdauer-Einstellung blockiert" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Eigene Dashboards löschen" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "System-Dashboards löschen" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Tickets löschen" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Werte löschen" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Gelöscht %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "gelöschte Abfragen" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Gelöschte gespeicherte Suche" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Suche %1 gelöscht" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Löschen dieses Objektes würde die referenzielle Integrität verletzen" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Löschen dieses Objektes würde die referenzielle Integrität verletzen" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Ablehnen" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Voraussetzung von" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "Abhängigkeit von" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Als Voraussetzung von %1 hinzugefügt" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Als Voraussetzung von %1 gelöscht" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Setzt jetzt %1 voraus" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Setzt %1 nicht mehr voraus" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "Abhängig von" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Abhängig von" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "Abhängig von" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "absteigend" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Beschreiben Sie hier das Problem" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Beschreibung" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Detaillierte Informationen über Ihre RT Installation" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Richtung" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "Deaktiviere Artikel in dieser Klasse" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Deaktiviert" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "Deaktiviert?" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Anzeige" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Zugriffskontrollliste(ACL) anzeigen" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Artikel %1 anzeigen" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Spalten Anzeige" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "Zeigt alle Klartext Anhänge in einer Monospaceschrift mit Formatierung erhalten, aber umbrechen nach Bedarf." #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "Zeige Nachrichten in Rich-Text wenn verfügbar" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Zeigt Klartext-Anhänge in Schrift mit fester Breite" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Zeige Ticket nach \"Schneller Erstellung\"" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Veröffentlicht unter %1Version 2 der GNU GPL%2" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Alles und nichts machen" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Domänenname" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Nicht 'http://' mit angeben, nur z.B. 'localhost' oder 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Startseite nicht aktualisieren." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Ergebnis Seite nicht aktualisieren." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Diese Seite nicht aktualisieren." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Diesem Schlüssel überhaupt nicht vertrauen" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Herunterladen" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "Tabelle herunterladen" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Export Datei runterladen" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "Dateien hier hinziehen oder anklicken zum hinzufügen" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Dropdown-Liste" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Fällig" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "Fällig (relativ)" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "Fehler: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Einfaches Aktualisieren von offenen Tickets" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Einfaches Betrachten deiner Erinnerungen" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Ändern" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "Bearbeite %1" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Benutzerdefinierte Felder verändern" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Bearbeite benutzerdefinierte Felder für %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "Bearbeite benutzerdefinierte Felder für Anlagen in allen Katalogen" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Benutzerdefinierte Felder für alle Gruppen ändern" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Benutzerdefinierte Felder für alle Bereiche ändern" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Benutzerdefinierte Felder für alle Benutzer ändern" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Bearbeite benutzerdefinierte Felder für Artikel in allen Klassen" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Benutzerdefinierte Felder von Tickets in allen Bereichen ändern" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Bearbeite Beziehungen" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Bearbeite Suche" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Suche editieren" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Bearbeite globale Themen-Hierarchie" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Bearbeite Systemvorlagen" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Bearbeite Themen-Hierarchie für %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Bearbeite benutzerdefiniertes Feld %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Bearbeite Mitgliedschaft für die Gruppe %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Es muss entweder eine Quelle oder ein Ziel angegeben werden" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Entweder hast du keine Rechte die gespeicherte Suche %1 anzuzeigen oder die Bezeichnung ist falsch" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "Laufzeit" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "E-Mail" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "E-Mail-Adresse" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "E-Mail Übersicht" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "E-Mail Quelltext für Ticket %1, Anhang %2" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "E-Mail-Adresse bereits in Gebrauch" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "E-Mail Zustellung" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "E-Mail Vorlage für periodische Zusammenfassungen der Nachrichten" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "E-Mail" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "Leer" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "Aktiviere zitierte Texte verbergen?" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Aktiviert" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "Aktiviert (abwählen deaktiviert diesen Artikel)" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Aktiviert (Abwahl deaktiviert diese Klasse)" # ## muss das überhaupt übersetzt werden??? #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Aktiviert (Abwählen deaktiviert dieses benutzerdefinierte Feld)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "Aktiviert (abwählen deaktiviert diese benutzerdefinierte Rolle)" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Aktiviert (Abwählen deaktiviert diese Gruppe)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Aktiviert (Abwählen deaktiviert diesen Bereich)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Aktiviert (Deaktivieren Sie dieses Kontrollkästchen deaktiviert dieses Scrip)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "Aktivierte Kataloge" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "aktivierte Klassen" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Aktivierte Bereiche" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "Aktivierte Kataloge die den Suchkriterien entsprechen" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Aktive Bereiche die den Suchkriterien entsprechen" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Status aktiviert: %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Verschlüsseln" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Standardmäßig verschlüsseln" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Entschlüsseln/Verschlüsseln" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Verschlüsselte/Entschlüsselte Transaktion #%1 von Ticket #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "Verschlüsselung" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Verschlüsselungsfehler; Administrator kontaktieren" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "Eingabe" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Gebe Artikel, Tickets, oder andere URLs an die mit diesem Artikel in Zusammenhang stehen." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "Gebe Verknüpfungen zu Anlagen als \"asset:###\" ein wobei ### die ID der Anlage ist" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Mehrere IP-Adressbereiche eingeben" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Mehrere IP-Adressen eingeben" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Mehrere Werte eingeben" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Mehrere Werte eingeben (mit automatischer Vervollständigung)" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Gib Objekte oder URIs ein um zu anderen Objekten zu verlinken. Trenne mehrere Einträge mit Leerzeichen." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Eine IP-Adresse eingeben" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Einen IP-Adressbereich eingeben" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Einen Wert eingeben" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Einen Wert eingeben (mit automatischer Vervollständigung)" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Gib Bereiche oder URIs ein um zu anderen Bereichen zu verlinken. Trenne mehrere Einträge mit Leerzeichen." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Gib Tickets oder URIs ein um zu anderen Tickets zu verlinken. Trenne mehrere Einträge mit Leerzeichen." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "Gib Tickets oder URIs zum verlinken ein. Trenne mehrere Einträge mit Leerzeichen." #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Arbeitszeit in Stunden erfassen" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Bis zu %1 IP-Adressbereiche eingeben" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Bis zu %1 IP-Adressen eingeben" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Bis zu %1 Werte eingeben" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Bis zu %1 Werte eingeben (mit automatischer Vervollständigung)" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "Die Eingabe von %1, %2, %3 oder %4 schränkt die Ticket Ergebnisse auf den jeweiligen Status Typ ein. Jeder individuelle Status Name schränkt die Ergebnisse auf den angegebenen Status Namen ein." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "Eingabe Hinweis" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "Umgebungsvariablen" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Fehler" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "Fehler beim Laden eines Anhangs" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "Fehler beim Zeichnen von Diagramm '%1'" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Fehler an RT Verwalter: öffentlicher Schlüssel" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Fehler: Fehlendes Dashboard" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Fehler: falsche GnuPG-Daten" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "Fehler: schlecht verschlüsselte Daten" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Fehler: Kann die Vertraulichkeitseinstellung der bestehenden Suche nicht ändern" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Fehler: Gespeicherte Suche %1 konnte nicht geladen werden: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Fehler: kein privater Schlüssel" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Fehler: öffentlicher Schlüssel" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Fehler: Suche %1 konnte nicht aktualisiert werden: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "Fehler: Unverschlüsselte Nachricht" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Eskaliere Tickets" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Geschätzt" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Jeder" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Beispiel:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Ablaufdatum" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "Erweiterter Status" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Externe Authentifizierung aktiviert." #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "Weitere Information" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Zusatzinformationen" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Extrahiere Artikel" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Extrahiere Betreffs Etikett" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Extrahiere einen neuen Artikel aus Ticket #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Extrahiere einen Artikel aus dem Ticket #%1 in die Klasse %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extrahiere Etiketten eines Transaktionsbetreffs und füge diese dem Betreff des Ticket hinzu" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Verbindung zur Datenbank fehlgeschlagen: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Konnte Attribut %1 nicht erstellen" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Konnte die Pseudogruppe 'Privileged' nicht finden." #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Konnte die Pseudogruppe 'Unprivileged' nicht finden." #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Konnte %1 %2 nicht laden" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Konnte %1 %2: %3 nicht laden" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Konnte Modul %1 nicht laden. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Objekt %1 konnte nicht geladen werden" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Konnte Vorlage nicht laden" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "Ticket %1 konnte nicht geladen werden" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Konnte Vorlage nicht analysieren" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "Kann Format nicht aktualisieren. Grund:" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Feld" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Quelle des Feldwertes:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "Datei '%1' verworfen da die Größe (%2 Bytes) die konfigurierte maximale Größe (%3 Bytes) überschreitet." #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "Datei '%1' einfügen fehlgeschlagen. Siehe Fehler Logdateien für Details." #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "Datei '%1' abgeschnitten da die Größe (%2 Bytes) die konfigurierte maximale Größe (%3 Bytes) überschreitet." #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Dateiname" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "Dateinamen mit doppelten Anführungszeichen können nicht hochgeladen werden." #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Werte eintragen" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Fülle die Felder mit Farbe mittels" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Mehrere Textfelder füllen" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Schreibe mehrere Wikitext Bereiche" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Ein Textfeld füllen" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Schreibe einen Wikitext Bereich" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Gib eine URL ein." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "%1 Textfelder füllen" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Schreibe bis zu %1 Wikitext Bereiche" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Endpriorität" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "Endpriorität" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "Finde eine Gruppe ..." #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Finde einen Benutzer" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "Finde einen Benutzer ..." #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Finde alle Benutzer, deren" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "Finde eine Anlage" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Finde Gruppen, deren" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Finde Leute, deren" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Finde Tickets" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "Benutzer suchen" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Fingerabdruck" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Fertig" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Erste" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "Für lokale Hilfe kontaktieren Sie bitte %1" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "Für die volle Leistung der RT Suche gehe zum %1Suchassistenten%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Änderung erzwingen" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "Formatiere iCal Feed mit Datum und Uhrzeit" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Weiterleiten" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Nachricht weiterleiten" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Nachricht weiterleiten und zurückkehren" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Ticket weiterleiten" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Nachrichten weiterleiten (außerhalb von RT)" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Ticket #%1 weiterleiten" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Verlauf #%1 weiterleiten" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "%3Transaktion #%1%4 weitergeleitet an %2" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Ticket weitergeleitet an %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "Weitergeleitete Nachricht" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "Weitergeleitetes Ticket" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "%quant(%1,Anlage,Anlagen) gefunden" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "%quant(%1, Ticket, Tickets) gefunden" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Objekt gefunden" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Häufigkeit" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Fr" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Freitag" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Von" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD ist deaktiviert oder nicht installiert. Du kannst ein Bild hochladen, wirst aber keine automatischen Farbvorschläge bekommen." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Allgemein" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Allgemeine Rechte" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Erste Schritte" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "Ausgabe auch bei erfolgreich gesendeten Nachrichten" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "An %1 übergeben" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Globale Attribute" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Globale Themen" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Einstellungen globaler benutzerdefinierter Felder" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "Globales Dashboard in Menü gespeichert" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "Globale oder Bereich spezifische Vorlage '%1' nicht gefunden" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Globales Portlet %1 gespeichert" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "Globale Vorlage '%1' nicht gefunden" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "Benutzerdefiniertes Feld %1 global hinzugefügt." #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "Benutzerdefiniertes Feld %1 global entfernt." #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "GnuPG's privater Schlüssels" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Los" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "Gehe zurück / vor" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Gehe zu Gruppe" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Gehe zu Benutzer" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Los!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Gehe zu Ticket" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Gehe zu Ticket" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "Recht '%1' %2 gewährt." #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Diagramm" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Diagrammeigenschaften" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Grafische Diagramme sind nicht verfügbar" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Gruppe" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Gruppenrechte" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Gruppe hat bereits Mitglieder: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "Gruppieren nach" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Gruppe konnte nicht erstellt werden: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Gruppe angelegt" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Gruppe deaktiviert" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Gruppe aktiviert" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Gruppe hat kein solches Mitglied" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Gruppe mit Namen '%1' ist bereits in Gebrauch" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Gruppe nicht gefunden" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "Gruppiere Tickets nach" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "Gruppe: %1" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "Gruppierte Suchergebnisse" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Gruppen" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Gruppen können nicht Mitglied eines ihrer Mitglieder sein" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Gruppen die den Suchkriterien entsprechen" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "Gruppen bei den das Objekt Mitglied ist (markiere Kontrollkästchen zum löschen)" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "Gruppen bei den das Objekt nicht Mitglied ist (markiere Kontrollkästchen zum hinzufügen)" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Gruppen zu denen der Benutzer gehört" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "AutomatischeAntwort Template in HTML" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "HTML-Ticket gelöst" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "HTML-Ticketstatus geändert" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "HTML-Administratorkommentarvorlage" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "HTML-Administratorkorrespondenzvorlage" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "HTML-Korrespondenzvorlage" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "HTML-Transaktionsvorlage" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "hat Mitglieder" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Kopf des weitergeleiteten Ticket" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Kopf einer weitergeleiteten Nachricht" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "Höhe" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "GehaltenVon" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Hallo!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Helfe uns nützliche Standard-Werte für RT zu setzen." #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Alle zitierten Texte verbergen" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Zitierten Text verbergen" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "Nicht festgelegte Felder ausblenden" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "Nicht festgelegte Felder ausblenden?" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Verlauf" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Verlauf für Artikel #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "Verlauf von Anlage #%1: %2" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Verlauf der Gruppe %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Verlauf von Bereich %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Verlauf des Benutzers %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Privat" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Aktualisierungsintervall der Startseite" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Startseite" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Stunde" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "stündlich" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Stunden" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Ich habe %quant(%1, Betonmischer)" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "Ich möchte mein geheimes Passwort zurücksetzen." #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identität" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "Wenn ein benutzerdefiniertes Feld markiert ist wird der Betreff der ausgehenden E-Mail überschrieben mit diesem Artikel." #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Wenn eine Freigabe abgewiesen wird, weise das Original ab und lösche wartende Freigaben" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "Wenn das nicht ihren Erwartungen entspricht, verlassen sie diese Seite ohne einzuloggen." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Wenn dieses Programm setgid ist, könnte ein böswilliger lokaler Nutzer Administrator Rechte auf dem RT bekommen." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Wenn Du bereits einen funktionierenden RT Server und Datenbank hast, solltest Du die Gelegenheit nutzen und Dich vergewissern, dass der Datenbank Server läuft und RT sich damit verbinden kann. Wenn das erledigt ist, stoppe und starte den RT Server." #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "Wenn Sie einen internen RT Login haben können Sie %1diesen stattdessen versuchen%2." #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "Wenn Sie wirklich %1 zum %2 öffnen wollen, Klicken Sie hier auf %3 um die %4-Anfrage zu bestätigen" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Wenn Sie den Port auf dem RT läuft geändert haben, müssen Sie den Webserver neu starten um sich anmelden zu können." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Wenn Sie oben etwas aktualisiert haben denken Sie an" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Wenn Deine bevorzugte Datenbank nicht in der Liste aufgeführt ist, konnte RT lokal keinen Datenbank-Treiber finden. Das Problem kann gelöst werden indem von %1 entweder DBD::MySQL, DBD::Oracle oder DBD::Pg installiert wird." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Unerlaubter Wert für %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "Bild inline angezeigt oben" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "Bild nicht gezeigt weil Anzeige in der Systemkonfiguration deaktiviert ist." #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "Bild nicht angezeigt weil Absender gebeten hat es nicht inline anzuzeigen." #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Unveränderbares Feld" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Inaktive Tickets" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "Inaktive Tickets" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Diesen Artikel einfügen:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "TicketSQL Abfrage anzeigen" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Artikel Name hinzufügen" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Artikel Zusammenfassung hinzufügen" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "Anhänge hinzufügen" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "Benutzerdefiniertes Feld '%1' einschließen" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "Daten Tabelle anzeigen" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "Zeige deaktivierte Kataloge" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Deaktivierte Klassen anzeigen" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Zeige auch deaktivierte benutzerdefinierte Felder an" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "Zeige deaktivierte benutzerdefinierte Rollen" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Zeige auch deaktivierte Gruppen an." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Zeige auch deaktivierte Bereiche an." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Zeige deaktivierte Benutzer auch in der Suche an." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Seite einbinden" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Unterthemen einbeziehen" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "Uhrzeit in iCal Feeds hinzufügen?" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "Index Aktualisierungen von %1" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Individuelle Nachricht" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informiere den RT Verwalter, dass Benutzer Probleme mit öffentlichen Schlüsseln haben" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informiere Benutzer, dass ein abonniertes Dashboard fehlt." #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informiere Benutzer das seine gesendete Nachricht ungültige GnuPG-Daten enthält" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informiere den Benutzer über Probleme mit seinem öffentlichen Schlüssel und dass er keine verschlüsselten Inhalt empfangen kann" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Informiere Benutzer über sein zurückgesetztes Passwort" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informiere Benutzer über eine empfange verschlüsselte E-Mail und dass wir keine privaten Schlüssel zum entschlüsseln haben" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Startpriorität" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "Startpriorität" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Initialisiere Datenbank" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Eingabefehler" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Eingabe muss %1 entsprechen" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "Einfügen von %1" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Interner Fehler: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Interner Fehler: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "Ungültige(r) %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Ungültiges Argument für %1" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "%1 ungültig: %2 sieht nicht wie eine E-Mail-Adresse aus" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "%1 ungültig: es sollte eine Zahl sein" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "Ungültiger Katalog" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Ungültige Klasse" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Ungültige Quelle für benutzerdefinierte Feldwerte" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "Ungültiger Gruppen-Name und Domain" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "Ungültiger Name (Namen dürfen nicht nur Ziffern enthalten)" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "Ungültiger Name (Namen müssen eindeutig sein und dürfen nicht nur Ziffern enthalten)" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Ungültiger Bereich, kann Klasse nicht anwenden: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "Ungültiger Anzeigetyp" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Ungültiger Anzeigetyp für ein benutzerdefiniertes Feld vom Typ %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Ungültige Daten" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Ungültiger Schlüssel %1 für Mailadresse '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Ungültiges Objekt" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Ungültiges Muster: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "Ungültiges Portlet %1" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Ungültiger Bereich" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "Ungültige Bereich id" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Ungültiges Recht" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Ungültiges Recht. Konnte das Recht '%1' nicht anerkennen" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Ungültige E-Mail-Adresse" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Ungültiger Wert für %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Ungültiger Wert für das benutzerdefinierte Feld" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "Ist bereits dem Objekt zugeordnet" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Ist nicht verschlüsselt" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Es ist wichtig, dass nicht authorisierte Benutzer dieses Programm nicht starten können." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Es wird empfohlen einen nicht priviligierten Unix User mit korrekten Gruppenrechten anzulegen um dieses Programm zu nutzen." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "Wie es aussieht hast Du möglicherweise vergessen einen Anhang hinzuzufügen." #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Es verarbeitet verschiedene Parameter:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Kursiv" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Gruppe beitreten oder verlassen" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Alles" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Belassen Sie 'localhost, wenn Sie nicht sicher sind. Zur lokalen Verbindung über einen Socket leer lassen" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "Tastaturkürzel" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "Schlüsselwort und Vorschlagsbasierende Suche" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Sprache" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Sprache" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Groß" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Letzter" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Letzter Kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Zuletzt Kontaktiert" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Zuletzt Aktualisiert" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Zuletzt aktualisiert von" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Zuletzt aktualisiert" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Zuletzt aktualisiert von" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "Zuletzt aktualisiert" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "Zuletzt bearbeitet von" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "Zuletzt aktualisiert (relativ)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Leer lassen um den Standardwert für Ihre Datenbank zu benutzen" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Dies leer lassen um den Standard-Benutzernamen für deinen Datenbanktyp zu verwenden" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Verbleibend" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legende" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Länge in Zeichen; Nutze '0' um alle Nachrichten inline darzustellen unabhängig von der Länge" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Diesem Benutzer RT Zugriff gewähren" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Diesem Benutzer Rechte zuweisen" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Los geht's!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Lebenszyklus" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Verknüpfung" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Beziehung existiert bereits" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "Link konnte nicht erstellt werden: %1" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "Link konnte nicht gelöscht werden: %1" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Beziehung nicht gefunden" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Verweise auf Ticket #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Verknüpfe Werte mit" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Verknüpft" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "verknüpft von" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "verknüpft zu" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "Verknüpfung zu einem gelöschten %1 ist nicht erlaubt" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Beziehungen" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "Verweist auf" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Liste" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Laden" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Eine gespeicherte Suche laden" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Gespeicherte Suchanfragen laden" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Gespeicherte Suchanfragen laden" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Geladen %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "Geladenen Konfigurationsdateien" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Original gespeicherte Suche \"%1\" geladen" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Geladene Perl-Module" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Gespeicherte Suche \"%1\" geladen" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Ladevorgang läuft ..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Lokalisierung" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Adresse" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Angemeldet" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Angemeldet als %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Abgemeldet" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "Protokollierung %1 Nachrichten und höher in %2" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "Logge %1 Meldungen und höher nach STDERR, die in der Regel in der Fehler Logdatei des Webserver landen werden." #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "Schreibe Nachrichten der Stufe %1 und höher in's Syslog mit folgender Konfiguration: %2" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "Schreibe Nachrichten der Stufe %1 und höher in's Syslog" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "Logging Zusammenfassung" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Anmelden" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "Alternativer Logo Text" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Abmelden" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Suchtyp unpassend" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "E-Mail" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Hauptsächliche Beziehungstypen" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "Mache %1" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Besitzer festlegen" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Status festlegen" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Fälligkeitsdatum festlegen" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Anfangsdatum festlegen" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Startdatum festlegen" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Eingangsdatum festlegen" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Priorität festlegen" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Bereich festlegen" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Betreff festlegen" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Verwalte benutzerdefinierte Felder und Werte" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "Verwalte benutzerdefinierte Rollen" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Gruppen und Gruppenmitglieder verwalten" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Eigenschaften und Einstellungen für alle Bereiche verwalten" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Bereich und bereichspezifische Einstellungen verwalten" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Verwalte gespeicherte Diagramme" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "Scrips verwalten" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Benutzer und Passworte verwalten" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "Die Abbildung der Lebenszyklen %1 und %2 ist unvollständig. benachrichtigen Sie Ihren Systemadministrator." #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Mär" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Alle Nachrichten als gelesen markieren" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Mason-Vorlagen-Suchreihenfolge" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "Maximalwerte" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "Maximum Erstellt-Zuletzt aktualisiert" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "Maximum Erstellt-Erledigt" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "Maximum Erstellt-Begonnen" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "Maximum Fällig-Erledigt" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "Maximum Begonnen-Erledigt" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "Maximum Beginnt-Begonnen" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Maximale interne Nachrichtenlänge" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "Maximum Geschätzte Zeit" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "Maximum Verbleibende Zeit" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "Maximum Gearbeitete Zeit" #: lib/RT/Date.pm:95 msgid "May" msgstr "Mai" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Ich" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Mitglied" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Mitglied %1 hinzugefügt" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Mitglied %1 gelöscht" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Mitglied hinzugefügt: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Mitglied gelöscht" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Mitglied nicht gelöscht" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "Mitglied von" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Mitglieder" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Mitgliedschaft in %1 hinzugefügt" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Mitgliedschaft in %1 gelöscht" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Mitgliedschaft" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "Mitglieder der Gruppe %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "Mitglieder von Principal #%1" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Mitgliedschaft des Benutzers %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Vereinen" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Vereinigung erfolgreich" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Vereinigung fehlgeschlagen. Konnte EffectiveId nicht setzen" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "Zusammenfügen fehlgeschlagen. Das Attribut IsMerged konnte nicht gesetzt werden." #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Vereinigen mit" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Vereinigt mit %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Nachricht" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Der Nachrichtenkörper wird nicht angezeigt, da er zu lang ist." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Nachrichtentext nicht angezeigt, da der Absender es nicht Inline anzeigen lässt." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Nachrichtentext nicht angezeigt, weil es kein Klartext ist." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Höhe des Eingabefelds für den Nachrichtentext" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Breite des Eingabefelds für den Nachrichtentext" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Nachricht konnte nicht gespeichert werden" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Nachricht für Benutzer" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Nachricht gespeichert" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "Minimum Erstellt-Zuletzt aktualisiert" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "Minimum Erstellt-Erledigt" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "Minimum Erstellt-Begonnen" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "Minimum Fällig-Erledigt" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "Minimum Begonnen-Erledigt" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "Minimum Beginnt-Begonnen" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Minimale Passwortlänge" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "Minimum Geschätzte Zeit" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "Minimum Verbleibende Zeit" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "Minimum Gearbeitete Zeit" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuten" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Diverses" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "%1: Fehlt ein Primärschlüssel?" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobil" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Mobil" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Bearbeiten" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "Bearbeite %3 von Anlage #%1: %2" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Mitglieder ändern" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Scrip-Vorlagen ändern" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Scrips ändern" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Ändere ein benutzerdefiniertes Feld für den Bereich %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Ändern und Erstellen von Klassen" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Ändern und Erstellen von benutzerdefinierten Feldern für Artikel" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Artikel #%1 ändern" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "Bearbeite Artikel in dieser Klasse" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "Bearbeite Anlage #%1: %2" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "Bearbeite Anlagen Kataloge" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "Bearbeite ANlagen benutzerdefinierte Felder" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "Bearbeite Anlagen" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Ändern der assoziierte Objekte von %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "Ändere zugehörige Objekte für Skript #%1" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Werte für benutzerdefiniertes Feld anpassen" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "Bearbeite Datumswerte für Anlage #%1: %2" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Ändere Datumsangaben zu Ticket #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Globale Artikel Themen ändern" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Ändern der globalen benutzerdefinierten Felder" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Ändere globale Gruppenrechte" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Globale Themen ändern" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Ändere globale Benutzerrechte" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Gruppen-Dashboards ändern" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Liste der Gruppenmitglieder bearbeiten" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Gruppen-Metadaten ändern oder Gruppe löschen" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Gruppenrechte für Klasse %1 bearbeiten" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Ändere Gruppenrechte für das benutzerdefinierte Feld %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Ändere die Gruppenrechte der Gruppe %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Ändere Gruppenrechte für den Bereich %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "Bearbeite Verknüpfungen für Anlage #%1: %2" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Metadaten und benutzerdefinierte Felder dieser Klasse ändern" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Eigenes RT Benutzerkonto ändern" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "Bearbeite Personen verknüpft mit Anlage #%1: %2" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Ändere Personen zu Ticket #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Eigene Dashboards ändern" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Beobachter eines Bereichs ändern" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "Ändere Skrip #%1" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Ändere Scrips für den Bereich %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Ändere auf alle Bereiche angewandte Scrips" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "System-Dashboards ändern" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Ändere Vorlage %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Vorlage %1 für Queue %2 bearbeiten" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Ändere globale Vorlagen" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Ändern der Klasse %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Inhalt von Dashboard %1 ändern" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Ändere das Dashboard %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Ändere die Standard-\"RT auf einen Blick\"-Ansicht" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Ändere Gruppe %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Ändere das Abonnement des Dashboards %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Ändere Benutzer %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Diese Suche bearbeiten" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Ändere Ticket # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Ändere Ticket #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "Ändere Ticket Besitzer von Tickets mit Besitzer" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Ändere Tickets" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Ändere Thema von %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Themen-Hierarchie dieser Klasse ändern" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Themen für Artikel in dieser Klasse ändern" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Benutzerrechte für Klasse %1 ändern" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Ändere Benutzerrechte für benutzerdefinierte Felder von %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Ändere Benutzerrechte für die Gruppe %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Ändere Benutzerrechte für den Bereich %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Ändere wer E-Mails für Ticket #%1 erhält" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Mo" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Montag" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "Monat" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "monatlich" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Mehr über die Auftraggeber" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "Verschieben" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Hierher verschieben" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "Bewege Dich hoch / runter in der Liste der Ergebnisse" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Mehrere" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "Mehrere Benutzer (Dies kann nach der Erstellung nicht geändert werden)" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "Mehrere Benutzer (Abwählen begrenzt diese Rolle auf einen einzelnen Benutzer. Dies kann nach der Erstellung nicht geändert werden)" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Sie müssen das Attribut 'Name' angeben" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Meine %1 Tickets" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Meine Freigaben" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "Meine Anlagen" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Mein Tag" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Meine Erinnerungen" #: etc/initialdata:890 msgid "My Tickets" msgstr "Meine Vorgänge" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Meine Freigaben" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "Meine geschlossenen Tickets" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Meine Dashboards" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Meine offenen Tickets" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Meine Erinnerungen" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Meine gespeicherten Suchanfragen" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "Meine Anlagen" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "Meine Erinnerungen" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "festes Leerzeichen" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "neue Zeile" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Name und E-Mail-Adresse" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Benutzername ist bereits in Gebrauch" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "Ein Name wird benötigt" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Niemals" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Neu" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Neuer Artikel" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Neues Dashboard" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Neue Beziehungen" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Neue wartende Freigaben" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Neue Suche" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "Neuer Wert" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "Neue Anlagen können nicht den Status '%1' haben." #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Neue Nachrichten" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Neues Passwort" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Neue Passworterinnerung wurde verschickt" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Neue Erinnerung" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Neues Ticket" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Neues Ticket existiert nicht" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "In diesem Bereich kann ein neues Ticket nicht den Status '%1' haben" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Neue Beobachter" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Nächste" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Spitzname" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Spitzname" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Nein" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "Keine %1 Schlüssel für diese Adresse" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "No: %1 geladen" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Kein Artikel enthält %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Keine Klasse definiert" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Es wurden keine Klassen gefunden, die den Suchkriterien entsprechen." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Kein benutzerdefiniertes Feld" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Kein benutzerdefiniertes Feld definiert" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Keine Gruppe definiert" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "Kein Name" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Keine Suche" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Kein Bereich vorhanden" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Kein RT Benutzer gefunden. Bitte kontaktieren Sie Ihren RT Administrator" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Kein Betreff" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "Kein Betreff überschreiben" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Keine Vorlage" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Keine Aktion" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "Keine Anlagen ID angegeben." #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "Keine Anlagen entsprechen den Suchkriterien" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "Kein Katalog angegeben." #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "Keine Kataloge entsprechen den Suchkriterien" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Keine Spalte angegeben" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Kein Kommentar zu diesem Benutzer angegeben" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "Keine benutzerdefinierten Felder für Gruppe '%1' gefunden" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "Keine benutzerdefinierten Rollen entsprechen den Suchkriterien" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Keine Beschreibung für %1 vorhanden" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "Keine globale Vorlage %1" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Keine Gruppe angegeben" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Es wurden keine Gruppen gefunden, die den Suchkriterien entsprechen." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Kein passender Schlüssel für Verschlüsselung" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "Nicht länger authorisiert" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Keine Nachricht angefügt" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Kein Name angegeben" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Verschlüsselung nicht benötigt" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Kein Passwort gesetzt" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Keine Erlaubnis Bereiche anzulegen" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Kein Berechtigung um Tickets im Bereich '%1' anzulegen" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Keine Berechtigung dieses Ticket anzuzeigen" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "Keine Berechtigung diese Anlage zu bearbeiten" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "Keine Berechtigung diesen Katalog zu bearbeiten" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Keine Berechtigung systemweite Suchanfragen zu speichern" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Keine Erlaubnis Einstellungen zu speichern" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Keine Erlaubnis diesen Artikel anzusehen" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Keine Berechtigung dieses Ticket zu aktualisieren" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Keine Rolle ausgewählt." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Kein privater Schlüssel" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Keine den Suchkriterien entsprechenden Bereiche gefunden" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Kein Recht angegeben" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Keine Rechte gefunden" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "Keine Berechtigung um '%1' als AdminCc dem Ticket hinzuzufügen" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Keine Suche zu bearbeiten." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Kein Betreff" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Kein oder unbrauchbarer Schlüssel für Unterzeichnung" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "Keine Vorlage %1 in Bereich %2 oder global" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Keine Tickets gefunden" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Kein Transaktionstyp angegeben" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Keine brauchbaren Schlüssel" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Keine auf die Suchkriterien passende Benutzer gefunden" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "Keine gültige PrincipalId" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "An _Set wurde kein Wert gesendet!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Niemand" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Keines" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Nichtexistierendes Feld?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "Nicht angewendete Skrips" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Nicht gefunden" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Nicht angemeldet." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Nicht angegeben" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Mobile Ansicht verlassen" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Bemerkungen" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Benachrichtigung konnte nicht verschickt werden" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Benachrichtige AdminCCs" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Benachrichtige AdminCCs als Kommentar" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Benachrichtige CCs" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Benachrichtige CCs als Kommentar" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Benachrichtige andere Empfänger" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Benachrichtige andere Empfänger als Kommentar" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Benachrichtige Besitzer" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "Benachrichtige Eigentümer und AdminCcs" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Benachrichtige Besitzer als Kommentar" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Besitzer über ihr abgewiesene Ticket informieren" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Informiere den Besitzer dass sein Ticket freigegeben wurde und weiter bearbeitet werden kann" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Informiere den Besitzer dass sein Ticket freigegeben wurde." #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Informiere Besitzer, Auftraggeber, Ccs und AdminCcs" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Informiere Besitzer, Auftraggeber, Ccs und AdminCcs als Kommentar" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Benachrichtige Besitzer und AdminCcs dass neue Tickets auf ihre Freigabe warten" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Informiere den Auftraggeber dass sein Ticket von allen Entscheidern freigegeben wurde" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Informiere den Auftraggeber dass sein Ticket von einigen Entscheidern freigegeben wurde" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Benachrichtige die Auftraggeber" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Benachrichtige die Auftraggeber und Ccs" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Benachrichtige die Auftraggeber und Ccs als Kommentar" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Benachrichtige mich über ungelesene Nachrichten" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "Jetzt in Gebrauch" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "Zahl" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ODER" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "Objekt ID" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "Objekt Typ" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekt konnte nicht erstellt werden" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Objekt konnte nicht gelöscht werden" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objekt erstellt" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objekt gelöscht" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "Das übergebene Objekt ist nicht geladen" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Objekt Typ passt nicht" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Objekt Liste ist leer" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Okt" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "Alter Wert" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "Am %1, %2 schrieb:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Beim Schliessen" #: etc/initialdata:170 msgid "On Comment" msgstr "Bei Kommentar" #: etc/initialdata:142 msgid "On Correspond" msgstr "Bei Korrespondenz" #: etc/initialdata:131 msgid "On Create" msgstr "Bei Erstellen" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "Beim Weiterleiten" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Beim Weiterleiten des Tickets" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Beim Weiterleiten der Transaktion" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Bei Besitzerwechsel" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Bei Änderung der Priorität" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Bei Änderung des Bereichs" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Bei abweisen" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Bei Wiedereröffnung" #: etc/initialdata:205 msgid "On Resolve" msgstr "Beim Erledigen" #: etc/initialdata:176 msgid "On Status Change" msgstr "Bei Statusänderungen" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Bei einer Transaktion" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Einmaliger Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Einmaliger Cc" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Nur zur Eingabe, nicht zur Anzeige" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Zeige nur Freigaben für Tickets die nach dem %1 erstellt wurden" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Zeige nur Freigaben für Tickets die vor dem %1 erstellt wurden" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Nur Benutzerdefinierte Felder anzeigen für:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "Inaktive Tickets öffnen" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Öffnen" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Öffne Tickets" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "Öffne Stoppuhr" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Adresse öffnen" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "Inaktive Tickets öffnen" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Offene Tickets" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Öffne Tickets bei Korrespondenz" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "Betriebssystem" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Optionen" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "Oracle-Benutzer können keine leeren Passwörter haben" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sortiert nach" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organisation" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Ursprüngliches Ticket: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Ausgehende E-Mail über einen Kommentar gespeichert" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Ausgehende E-Mail gespeichert" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Ausgehende E-Mails" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Übersicht" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "besitze Ticket" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Besitzer" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "Besitzer '%1' hat keine Rechte das Ticket zu besitzen" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Besitzer wurde von %1 zu %2 geändert" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Besitzer mit Gewalt von %1 in %2 geändert" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "Eigentümer-Gruppe" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "Besitzername" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Seite" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Seite 1 von 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Seite nicht gefunden" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Pager" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "Eltern" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Eltern" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Passwort" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Passwort geändert" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Das Passwort wurde nicht gesetzt" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Das Passwort muss mindestens %1 Zeichen lang sein" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Passwort wird nicht angezeigt" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Passwort erstellt" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Passwort: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Passwort: Zugriff verweigert" #: etc/initialdata:714 msgid "PasswordChange" msgstr "PasswortÄnderung" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Passwörter verschieden" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Pfad zu sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "Pausiere Stoppuhr" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "Abhängig von %quant(%1,Freigabe,Freigaben)." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "Abhängig von %quant(%1,Ticket,Tickets)." #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "Abhängige Freigabe." #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Personen" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Personen mit Bezug zu Bereich %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Führe eine benutzerdefinierte Aktion aus" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl-Konfiguration" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Perl-Bibliothek-Suchreihenfolge" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Daten permanent aus dem RT löschen" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Zugriff verweigert" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Zugriff verweigert" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefonnummern" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "Bild" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "Klartext-Administratorkorrespondenzvorlage" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "Klartext-Korrespondenzvorlage" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "Klartext-Transaktionsvorlage" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Bitte die URL überprüfen und erneut versuchen" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Bitte gib dein aktuelles Passwort korrekt ein." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Bitte gib dein aktuelles Passwort ein." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "Mögliche Website-übergreifende Anfragenfälschung" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "eventuell nicht sichtbare Abfragen" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "Vordefinierte Suche %1 nicht gefunden" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Voreinstellungen" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Voreinstellung %1 für Benutzer %2" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "Voreinstellungen zurückgesetzt." #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Voreinstellung für %1 gespeichert" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "Einstellungen gespeichert für Dashboard in Menü" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Voreinstellung für Benutzer %1 gespeichert" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Voreinstellung gespeichert" #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "Voreinstellungen wurden nicht gefunden" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Bevorzugter Schlüssel: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Bevorzugter Schlüssel" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Prepare Stumpf ausgeführt" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "Drücke %1 um Tastenkombinationen zu sehen." #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Zurück" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Rolle %1 nicht gefunden." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Gebe die zusammengefassten E-Mails nach STDOUT aus. Nicht oer E-Mail versenden. Nicht als versendet markieren." #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Drucke diese Nachricht" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Priorität" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Datenschutz" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privatsphäre:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Privater Schlüssel" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "Private Schlüssel für %1" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "Private Schlüssel" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Privilegiert" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Privilegierungsstatus: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Privilegierte Benutzer" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "Privilegierte: Benutzernamen; Nicht Privilegierte: Namen und E-Mail Adressen" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Bearbeitung ohne Transaktion, einige Bedinungen and Aktionen könnten nicht funktionieren. Erwäge die Nutzung des --transaction Argumentes" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseudogruppe für internen Gebrauch" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "Öffentlicher Schlüssel '0x%1' wird für die Prüfung der Signatur benötigt" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "Öffentliche(r) Schlüssel für %1" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Suchen" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Suche" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Suche erstellen" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Bereich" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "Bereich '%1' konnte nicht geladen werden." #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Bereich %1 nicht gefunden" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Name des Bereichs" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Bereich existiert bereits" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Bereich konnte nicht angelegt werden" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Bereich konnte nicht geladen werden" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Bereich angelegt" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Bereich Id" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "Bereichsliste" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Bereich nicht gefunden" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "Bereichs standard Service Level ist geändert worden" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Bereichsschlüssel" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "Bereich AdminCc" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "BereichCF" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "Bereich Cc" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "Bereichsliste" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "Bereichsname" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "Bereichs-Beobachter" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Bereiche" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Bereiche die ich verwalte" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Bereiche in denen ich AdminCc bin" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Schnellsuche" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Schnelle Ticket Erstellung" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "SchnellErstellen" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "RT Administrator E-Mail" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT Einstellungen" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT Fehler" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT Größe" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT auf einen Blick" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "RT Übersicht für Benutzer %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT kann mit ihren Anwendern über neue Tickets oder neue Korrespondenz über Tickets kommunizieren. Sagen sie uns den Speicherort von sendmail (oder einem sendmail-kompatiblen Programm wie dem von postfix zur Verfügung gestellten). RT muss auch wissen, wer zu benachrichtigen ist, wenn ein ungültiges mail ankommt. Diese Adresse darf nicht zurück in RT fließen." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT kann Inhalte anderer Webservices einbinden, wenn dieses benutzerdefinierte Feld angezeigt wird." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT kann die Inhalte dieser benutzerdefinierten Felder in Hyperlinks zu anderen Diensten umwandeln." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT Core Variablen" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT für %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "RT hat eine mögliche %1Website-übergreifende Anfragenfälschung%2 für dieses Ticket aufgrund von %3 entdeckt. Ein Angreifer könnte unter ihrem Namen ein %1%4%2 durchführen. Wenn Sie diese Anfrage nicht gestellt haben, sollten Sie ihren Sicherheitsbeauftragten alarmieren." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT wird von Fortue-100-Firmen, Ein-Mann-Unternehmen, Regierungsstellen, Bildungseinrichtungen, Krankenhäusern, Vereinen, Nicht-Regierungs-Organisationen, Bibliotheken, Open-Source-Projekten und vielen anderen Arten von Organisationen auf allen sieben Kontinenten genutzt. (Ja, sogar in Antarktika.)" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "RT Upgrade Historie" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT wird für die Verbindung zur Datenbank diesen Benutzer verwenden. Er wird für Sie erstellt." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT wird einen Benutzer \"root\" erstellen und diesem dieses Password geben" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT wird %1 und %2 mit der Record-ID und dem Wert des benutzerdefinierten Feldes ersetzen." #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT arbeitet mit verschiedenen Datenbanksystemen zusammen. Unterstützt werden MySQL, PostgreSQL, Oracle und SQLite." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "RT's Logging Konfiguration ist wie folgt zusammengefasst" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "RTAddressRegexp in den Einstellungen entspricht nicht %1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Erneut öffnen" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "Maximale Anzahl erreicht, neue Werte werden alte Werte überschreiben." #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Echter Name" #: lib/RT/User.pm:95 msgid "RealName" msgstr "Vollständiger Name" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Empfänger" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Alle Aktualisierungen speichern" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Rekursives Mitglied" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "Wiederholen" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Referenzieren auf" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Referenz von %1 hinzugefügt" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Referenz von %1 gelöscht" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Referenz auf %1 hinzugefügt" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Referenz auf %1 gelöscht" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Bezogen von" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "Bezogen von" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Bezieht sich auf" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "Bezieht sich auf" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Aktualisieren" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Seite alle %1 Minuten aktualisieren." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "Verknüpfung hinzufügen abgelehnt da es zu einer kreisförmigen Beziehung führen würde" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Abweisen" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Standard-Bereich merken" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Erinnerung" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Erinnerung '%1' hinzugefügt" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Erinnerung '%1' erledigt" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "Erinnerung '%1' wieder geöffnet" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "Erinnerung '%1': %2" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "Erinnerung hinzugefügt" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "Erinnerung beendet" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "Erinnerung wieder geöffnet" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Erinnerungen" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Erinnerung für Ticket #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "Entfernen" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "entferne %1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Entferne AdminCC" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Lesezeichen entfernen" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Entferne CC" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Entferne Auftraggeber" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "Betreff überschreiben entfernt" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "Benutzerdefiniertes Feld %1 von %2 entfernt" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "Anzeigetyp" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Ersetzt die Besitzer Auswahlliste durch ein Eingabefeld" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Antworten" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Antwortadresse" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Antwort an Auftraggeber" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "Antworte zu Ticket" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Ticket beantworten" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "Bericht gestolen" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Auftraggeber" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "AuftraggeberGruppe" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Auftraggeber" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Benötigter Parameter '%1' nicht angegeben" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Zurücksetzen" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "RT auf einen Blick zurücksetzen" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "Dashboards in Menü zurücksetzen" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Geheimen Authentifikationstoken zurück setzen" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Zurücksetzen" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "Auf Standard RT Logo zurücksetzen" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "auf Standard RT Design zurücksetzen" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Privat" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Erledigen" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Erledige Ticket #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Erledigt" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "Gelöst in HTML" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "Erledigt (relativ)" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Antworten" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Ergebnisse" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Zum Ticket zurückkehren" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Passwort wiederholen" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Zurücksetzen" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "Rich-Text (HTML) zeigt Formatierungen wie farbigen Text, fett, kursiv und mehr" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Recht geladen" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Recht konnte nicht zurückgezogen werden" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Recht nicht gefunden." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Rechte für %1 konnten nicht gewährt werden" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Rechte für Administratoren" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Rechte für Bearbeiter" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "Rollennname" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "Rolle bereits vorhanden" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "Rollen Gruppe '%1' nicht gefunden" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "Rollen gruppe existiert bereits" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Rollen" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Zeilen" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Zeilen pro Fenster" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Zeilen pro Seite" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "SMIME Zertifikat" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "SMIME Zertifikat" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL-Abfragen" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "SQL Abfragen werden mit dem %1 Level geloggt und sind außerdem im %2Abfrage Tool%3 verfügbar." #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "SQL Abfragen werden nicht geloggt." #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sa" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Samstag" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Speichern" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Änderungen speichern" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Einstellungen speichern" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Als neu speichern" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Speichern als" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Diese Suche speichern" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Gespeichert %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Gespeicherte Suche" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Gespeicherte Suchanfragen" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Gespeicherte Grafiken" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "Gespeicherte Suche %1 nicht gefunden" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Gespeicherte Suchanfragen" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "Gespeicherte Suchen" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "Schema Aktualisierungen von %1" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Scrip angelegt" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "Scrip nicht hinzugefügt" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Scrips und Empfänger" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "Skrips laufen normalerweise nach jeder individuellen Änderung am Ticket." #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Suchen" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "Suchanfrage %1 aktualisiert" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Suche Artikel" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Sucheinstellungen" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Artikel suchen" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Suche nach Freigaben" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Suche nach Artikeln" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Suche nach Tickets" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "Suche nach Tickets durch Eingabe der %1Ticket ID%2 Nummern, Betreff %1\"in Anführungszeichen\"%2, %1Bereiche%2 nach Name, Besitzer anhand des %1Benutzernamens%2, Auftraggeber anhand der %1E-Mail Adresse%2 sowie Tickets anhand des %1Status%2. Die Suche nach %1@domainname.com%2 liefert alle Tickets mit Auftraggeber aus der Domain." #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Suchoptionen" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Suchergebnisse" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Aktualisierungsintervall für Ergebnisse" #: share/html/Search/index.html:48 msgid "Searches" msgstr "Suchanfragen" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "Volltext-Suche nimmt für jedes Ticket viel Zeit in Anspruch. Wenn Sie die Volltext-Suche dennoch benötigen können sie nach jedem Wort in der kompletten Ticket-Historie suchen durch Eingabe von %1Gesuchtes Wort." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Geheimer Authentifikationstoken" #: bin/rt-crontool:352 msgid "Security:" msgstr "Sicherheit:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Siehe auch:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Artikel in dieser Klasse sehen" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "Siehe Kataloge" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Änderungen an Artikeln in dieser Klasse sehen" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Sehen, dass diese Klasse existiert" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Auswählen" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Benutzerdefinierte Felder für Artikel in allen Klassen wählen" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Datenbank Typ wählen" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Wähle eine Klasse" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Wählen Sie ein benutzerdefiniertes Feld aus" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "Wählen Sie eine benutzerdefinierte Rolle aus" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "Scrip auswählen" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "Wählen Sie einen Katalog aus" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Wähle eine Farbe für diesen Bereich" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "Wählen Sie eine benutzerdefinierte Rolle aus" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Wählen Sie eine Gruppe aus" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Bereich auswählen" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Wählen Sie einen Bereich für Ihr neues Ticket" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Wählen Sie eine Sektion aus" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Wählen Sie einen Benutzer aus" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Wähle einen Artikel aus %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Wähle einen Artikel der eingefügt werden soll" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Andere Sprache wählen" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Auswahlbox" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Benutzerdefinierte Felder für alle Bereiche auswählen" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Wählen Sie benutzerdefinierte Felder für alle Benutzergruppen aus" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Wählen Sie benutzerdefinierte Felder für alle Benutzer aus" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Wählen Sie benutzerdefinierte Felder für Tickets in allen Bereichen aus" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Wählen Sie benutzerdefinierte Felder für Transaktionen zu Tickets in allen Bereichen aus" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Datum auswählen" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Datum-Zeit auswählen" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "Globale Skrip Phase wählen" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Mehrere Datumsangaben wählen" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "Mehrere Datums- und Zeitangaben wäglen" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Mehrere Werte auswählen" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Einen Wert auswählen" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Wähle Bereiche aus, welche auf der Startseite angezeigt werden" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "Skrip Phase für neu hinzugefügte Bereiche wählen" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Wähle Themen für diesen Artikel" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Bis zu %1 Datumsangaben wählen" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "Bis zu %1 Datums-/Zeitangaben wählen" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Wählen Sie bis zu %1 Werte aus" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Ausgewählte Benutzerdefinierte Felder" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Gewählte Bereiche" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Ausgewählter Schlüssel ist nicht vertrauenswürdig oder existiert nicht mehr." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Ausgewählte Objekte" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Auswahl wurde geändert. Bitte speichere deine Änderungen" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "Weitergeleitete Nachricht senden" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Sende eine E-Mail an den Besitzer und alle Beobachter" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Sende eine E-Mail an den Besitzer und alle Beobachter als \"Kommentar\"" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Sende eine E-Mail an die Auftraggeber und Ccs" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Sende eine E-Mail an die Auftraggeber und Ccs als Kommentar" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "Der Versand der letzten E-Mail ist fehlgeschlagen. Bitte kontaktieren Sie Ihren Administrator, dieser kann weitere Informationen in den Logdateien finden." #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Schickt eine Nachricht an die Auftraggeber" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Sendet eine E-Mail an ausdrücklich aufgeführte CCs und BCCs" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Sendet eine E-Mail an alle CCs" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Sendet eine E-Mail an alle CCs als Kommentar" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Sendet eine E-Mail an administrative CCs" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Sendet eine E-Mail an administrative CCs als Kommentar" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Sendet eine E-Mail an den Besitzer" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Mehrere Einträge durch Leerzeichen trennen." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "Privaten Schlüssel setzen" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Einstellungen" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "Konfiguration notwendig" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Kurze Benutzernamen" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Soll RT Ihnen E-Mails für ihre eigenen Aktualisierungen senden?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Anzeigen" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "Administrator Menü anzeigen" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Registerkarte \"Freigaben\" anzeigen" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "Artikel Menü anzeigen" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Zeige Spalten" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Zeige Ergebnisse" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Zeige Ticket Eigenschaften der %1 Ebene" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Alle zitierten Texte anzeigen" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Zeige freigegebene Tickets" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Zeige auch" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Kurze Kopfzeilen anzeigen" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Zeige abgelehnte Tickets" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Alle Kopfzeilen anzeigen" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Zeige globale Vorlagen" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "Verlauf anzeigen" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "Verlauf der öffentlichen Benutzer-Einstellungen anzeigen" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Zeige Verknüpfung Beschreibungen" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "Zeige keine Ticktes des Auftraggebers" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Zeige ältesten Eintrag zuerst" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Zeige anhängige Tickets" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Zitierten Text anzeigen" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Zeige Tickets die auf Freigabe warten" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "Zeige vereinfachte Empfängerliste bei Ticket Updates" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Zeige die 10 aktivsten Tickets mit höchster Priorität des Ticketerstellers an" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Zeige die 10 inaktivsten Tickets mit höchster Priorität des Ticketerstellers an" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Zeige die 10 dringensten Tickets des Auftraggebers" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Zeige Ticket-Verlauf" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "Nicht festgelegte Felder anzeigen" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Reißwolf" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "Der Reißwolf benötigt ein Verzeichnis um SQL-Dumps zu speichern. Bitte stellen Sie sicher, dass das Verzeichnis '%1' existiert und dass dieses für den Webserver beschreibbar ist." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Seitenleiste" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Signieren" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "Signiere alle automatisch generierten E-Mails. %1Achtung%2: Aktivieren dieser Option ändert die Bereitstellung der Signatur von %3Authentifizierung%3 zu %3Integrität%4." #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Standardmäßig unterzeichnen" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Als Auftraggeber eines Ticket oder Ticket- bzw. Bereich-Cc eintragen" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Als Ticket- oder Bereich-AdminCc eintragen" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "Signiere %1 %2" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "Signiere %1%2 mit %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "E-Mail-Signatur" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "Signieren" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Einfach" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Vereinfachte Suche" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Einzelne" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Name der Website" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Größe" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Überspringe Menü" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Überspringe deaktivierten Benutzer" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Klein" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Einige Browser können evtl. nur Inhalte der gleichen Domain wie die des RT Server anzeigen." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Irgendwas läuft falsch. Setze Dich mit dem System Administrator in Verbindung" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sortieren" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "Sortierreihenfolge" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Sortierung" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Quelle" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Gib an ob dieses ein täglicher oder wöchentlicher Durchlauf ist" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Tabellenkalkulation" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "Stack traces werden zu allen Nachrichten mit Level %1 oder höher hinzugefügt." #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "Stack traces werden nicht geloggt." #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Phase" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Zurückstellen" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Beginne den Suchebegriff mit dem Namen eines unterstützen Feldes gefolgt von einem Doppelpunkt, wie in %1 und %2, um explizit die Art der Suche anzugeben." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Begonnen" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "Gestartet um %1." #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "Begonnen (relativ)" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Beginnt" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "Beginnt (relativ)" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Bundesland" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "Statische Datei Such Reihenfolge" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "Status '%1' ist kein gültiger Status für diesen %2." #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "Der Status '%1' ist ein ungültiger Status für Tickets in diesem Bereich" #: etc/initialdata:449 msgid "Status Change" msgstr "Statusänderung" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "Statusänderung in HTML" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Status von %1 auf %2 geändert" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Statusänderungen" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Stehlen" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Tickets stehlen" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Schritt %1 von %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Gestohlen von %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "Stoppuhr" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Darstellung" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Betreff" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Betreffskennzeichnung" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Betreff wurde auf %1 geändert" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "Betreff Tag" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Übermitteln" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "Sendevorgang" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Abonnieren" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Dashboard %1 abbonnieren" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Dashboard abonnieren" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Dashboard %1 abonniert" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Abonnement" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Abonnement konnte nicht erstellt werden: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "Abonnement aktualisiert" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Erfolgreich entschlüsselte Daten" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Erfolgreich verschlüsselte Daten" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Zusammenfassung" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "Übersicht von Erstellt-Zuletzt aktualisiert" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "Übersicht von Erstellt-Erledigt" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "Übersicht von Erstellt-Begonnen" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "Übersicht von Fällig-Erledigt" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "Übersicht von Begonnen-Erledigt" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "Übersicht von Beginnt-Begonnen" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "Übersicht von Geschätzte Zeit" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "Übersicht von Verbleibende Zeit" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "Übersicht von Gearbeitete Zeit" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "So" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Sonntag" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Ausgesetzt" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Systemeinstellungen" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Systemvorgabe" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Systemfehler" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "System Fehlerr: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "System Werkzeuge" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Systemfehler" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Systemfehler. Recht nicht gewährt." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup für internen Gebrauch" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Übernehmen" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Tickets übernehmen" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Übernommen" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Vorlage" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Vorlage #%1 gelöscht" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "Vorlage '%1' ist nicht global" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "Vorlage '%1' ist weder global, noch bereichs-spezifisch" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Vorlage '%1' nicht gefunden" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "Vorlage wird kompiliert" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "Vorlage beinhaltet keinen Perl code" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Vorlage ist leer" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "Vorlage ist in Verwendung" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Vorlage ist zwingend erforderlich" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Vorlagen eingelesen" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Vorlagen Analyse Fehler" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "Fehler beim Parsen der Vorlage: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "Vorlage: %1" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Vorlagen" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Vorlagen für Bereich %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Text-Datei wird nicht angezeigt, weil es in den Einstellungen deaktiviert ist." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Das ist bereits der aktuelle Wert" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Dies ist kein gültiger Wert für dieses benutzerdefinierte Feld" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "Diese Rolle ist für dieses Objekt ungültig." #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Dieses Ticket hat ungelöste Abhängigkeiten" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Dieses Ticket gehört bereits diesem Benutzer" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Dieser Benutzer existiert nicht" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Dieser Benutzer ist bereits privilegiert" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Dieser Benutzer ist bereits unprivilegiert" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Dieser Benutzer ist jetzt privilegiert" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Dieser Benutzer ist jetzt unprivilegiert" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Diesem Benutzer dürfen keine Tickets aus diesen Bereich gehören" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Dies ist keine numerische ID" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Grundlagen" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "Der Cc eines Ticket" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "Die Klasse des Artikel %1 ist nicht dem aktuellen Bereich zugeordnet." #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "DBA Datenbank Password" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "Der administrative Cc eines Ticket" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "Die ausgewählten Benutzer erhalten E-Mails zu diesem Ticket je nach gewähltem Aktualisierungstyp. Deaktivieren Sie die Benutzer um das senden von E-Mails zu diesem Ticket zu verhindern." #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "Der Standardkatalog" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Der Domain-Name des Datenbank Server (z.B. 'db.example.com')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "Das folgende Kommando wird Tickets im Bereich 'general' finden und ihre Priorität auf 99 setzen wenn sie überfällig sind:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Die folgenden Abfragen wurden gelöscht und werden aus dem Dashboard entfernt, sobald die Seite aktualisiert wird." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Die folgenden Abfragen sind möglicherweise nicht für alle Benutzer sichtbar, die dieses Dashboard sehen können." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "Der Schlüssel wurde deaktiviert" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "Der Schlüssel wurde entfernt" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "Der Schlüssel ist abgelaufen" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "Der Schlüssel ist voll vertrauenswürdig" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "Der Schlüssel ist ulitmativ vertrauenswürdig" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Der neue Wert wurde gesetzt." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Der Besitzer eines Ticket" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Die angefragte Seite konnte nicht gefunden werden" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Der Auftraggeber eines Ticket" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "Die von Ihnen gewählten Einstellungen wurden in %1 gespeichert." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Das System kann ausgehende E-Mails nicht signieren. Normalerweise ist dies ein Hinweis auf ein falsches Passwort oder das der GPG Agent nicht läuft. Bitte informieren Sie umgehend den Systemadministrator. Die Adressen mit Problemen sind:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Design" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Es sind mehrere Schlüssel für die Verschlüsselung vorhanden" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Es gibt ungelesene Nachrichten für dieses Ticket." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Dem Schlüssel kann nur geringfügig getraut werden" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "Es gibt bereits eine Gruppe mit dem Namen '%1', um Konflikte und Inkosistenzen im Admin-Bereich zu Vermeiden sollten Sie die betroffenen Gruppen umbenennen." #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Es wurde kein passender Schlüssel für die Verschlüsselung gefunden" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "Es gibt keine Status Zuordnung zwischen Lebenszyklus %1 und %2. Kontaktiere den Administrator." #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Es wurde ein Schlüssel gefunden aber ohne Vertrauensstellung" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "Während der Suche nach '%1' ist ein Fehler aufgetreten. Ihr Administrator kann nähere Informationen in den Logdateien finden." #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Dieses benutzerdefinierte Feld darf keine Liste von Werten beinhalten." #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "Diese Klasse ist nicht diesem Objekt zugeordnet" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "Dieses benutzerdefinierte Feld kann nicht zu diesem Objekt hinzugefügt werden." #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "Dieses benutzerdefinierte Feld hat keine Anzeigetypen" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Dieses Feature ist nur für Systemadministratoren verfügbar" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Diese Funktion steht nur für Systemadministratoren zur Verfügung." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "Dieser Server Prozess hat keine SQL Abfragen aufgezeichnet." #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "Dieses Ticket kann nicht abgeschlossen werden, bis es bestätigt wurde." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "Dieses Ticket kann nicht erledigt werden bis die %numerate(%1,Abhängigkeit erledigt ist,Abhängigkeiten erledigt sind)." #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Dieses Werkzeug erlaubt es Benutzern beliebige Perl-Module von RT aus aufzurufen." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Diese Transaktion scheint keinen Inhalt zu haben" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "Die %1 dringensten %2 Tickets dieses Benutzers" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "Die Suche nach Benutzern erfolgt in folgenden Feldern:" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Do" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Donnerstag" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Ticket #%1 Alles aktualisieren: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Ticket #%1 Verbindungsdiagramm" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Ticket %1 wurde im Bereich '%2' angelegt" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Ticket Verlauf # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Ticket erledigt" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Ticket suchen" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Ticket Transaktionen" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Ticket und Transaktion" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Ticket erstellen" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Ticket Inhalt" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Ticket Inhaltstyp" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Ticket konnte aufgrund eines internen Fehlers nicht erstellt werden" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Ticket konnte nicht geladen werden" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "Ticket Anzahl" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Ticket Anzeige" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Ticket Metadaten" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Ticket Status geändert" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Ticket Aktualisierung" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "TicketSQL-Suchmodul" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Tickets %1 von %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Meine Tickets" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Tickets die von dieser Freigabe abhängen:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "Zeit" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Geschätzte Zeit" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Verbleibende Zeit" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "Benötigte Zeit" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Gearbeitete Zeit" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "Geschätzte Zeit" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Zeit zum anzeigen" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "Geschätzte Zeit" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "Verbleibende Zeit" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "Gearbeitete Zeit" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Zeitzone" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Spaltenüberschrift" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "An" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Kontaktieren Sie bitte %1 für Unterstützung, Schulung, angepasste Entwicklungen oder bei Lizenzfragen." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "Umschalten %quant(%1,Abfrage,Abfragen)" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "Umschalten Stack Trace" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Letzter Kontakt" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "Letzter Kontakt (relativ)" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Werkzeuge" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Name des Themas" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "Themen-Mitgliedschaft hinzugefügt" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "Themen-Mitgliedschaft gelöscht" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Thema nicht gefunden" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Themen" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Summe" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "Gesamt Erstellt-Zuletzt aktualisiert" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "Gesamt Erstellt-Erledigt" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "Gesamt Erstellt-Begonnen" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "Gesamt Fällig-Erledigt" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "Gesamt Begonnen-Erledigt" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "Gesamt Beginnt-Begonnen" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "Gesamt Geschätzte Zeit" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "Gesamt Verbleibende Zeit" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "Gesamt Gearbeitete Zeit" #: etc/initialdata:317 msgid "Transaction" msgstr "Transaktion" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transaktion %1 eliminiert" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transaktion erstellt" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Benutzerdefinierte Felder bei Transaktionen" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "Transaktion in HTML" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create fehlgeschlagen, da Objekttyp und ID nicht angegeben wurden" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "Verlauf Datum" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "Transaktionen" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Transaktionen sind unveränderbar" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Vertrauen" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "Vorschau" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "Erneut versuchen" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Di" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Dienstag" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Typ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Gebe a: vor Artikel Id's und t: vor Ticket Id's ein." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Typ geändert von '%1' nach '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "Zuordnung von markieten Skripts aufheben" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "%1 Link kann nicht hinzugefügt werden: %2" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "Kann Betreff überschreiben nicht hinzufügen: %1 %2" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "Fehler beim hinzufügen in dieses Thema" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "Themen-Mitgliedschaft für %1 konnte nicht gelöscht werden" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Konnte Objekt Typ oder Id nicht feststellen" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Artikel kann nicht geladen werden" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "Benutzerdefiniertes CSS konnte nicht gesetzt werden: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "Benutzerdefiniertes Logo konnte nicht gesetzt werden: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "Kann Privatsphäre Id nicht setzen: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "Kann nicht Privatsphären Objekt oder Id setzen: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "Kann nicht Privatsphären Objekt setzen: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "Kann nicht Dashboard %1 abbonieren: Zugriff verweigert" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "Nicht berechtigt" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Abwählen um Benachrichtigung der aufgelisteten Empfänger nur für diese Transaktion zu deaktivieren. Dauerhaftes deaktivieren kann auf der Personen Seite verwaltet werden." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Wiederherstellen" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "Leider konnte RT nicht automatisch einen Zugang für Sie einrichten. Ihr RT Administrator findet mehr Informationen in den Logdateien." #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Unix Login" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Unbekannt (kein Vertrauenswert zugewiesen)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Unbekannt (dieser Wert ist neu für das System)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Unbekannte Inhaltskodierung (Content-Encoding) %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Unbekanntes Feld: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "Solange sie keinen spezifischen Status auswählen, werden nur Ticket mit aktivem Status (%1) angezeigt" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "nicht begrenzt" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "unbegrenzt" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Unbenanntes Dashboard" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Unbenannte Suche" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Tickets ohne Besitzer" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Tickets ohne Besitzer" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Unprivilegiert" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Nichtausgewähltes benutzerdefiniertes Feld" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Abgewählte Bereiche" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Nicht ausgewählte Objekte" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Privaten Schlüssel zurück setzen" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Zurückgegeben" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Aktualisieren" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Aktualisiere Diagramm" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Diagramm aktualisieren" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Dieses Menü anpassen" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Anfrage aktualisieren" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Aktualisierungstyp" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Format aktualisieren und suchen" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Mehrere Tickets aktualisieren" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Aktualisierung nicht gespeichert." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Aktualisiere Ticket" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Aktualisiere Ticket #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Aktualisiere Ticket #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Aktualisierungstyp war weder Korrespondenz noch Kommentar." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "Aktualisierungsstatus" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Aktualisiert" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "Aktualisiert von" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Gespeicherte Suche \"%1\" aktualisiert" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "Aktualisiert von" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "Upgrade von %1 zu %2" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Hochladen" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Ein neues Logo hochladen" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Hochladen mehrerer Dateien" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Hochladen mehrerer Bilder" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Hochladen einer Datei" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Hochladen eines Bildes" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Hochladen von bis zu %1 Dateien" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Hochladen von bis zu %1 Bildern" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "Hochladevorgang..." #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Benutzung:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "Zweispaltiges Layout für Erstellungs- und Änderungsmaske verwenden?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Benutze Auto-Vervollständigung um Besitzer zu finden?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Standardwert verwenden (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Benutze andere administrative RT Tools" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Systemstandard verwenden (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Benutzen Sie die Dropdown-Liste um die Aktualisierungen des Ticket zu wählen, die sie in einen neuen Artikel extrahieren möchten." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "Genutzt von Skrips" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Benutzer" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "Der Benutzer %1 ist momentan deaktiviert." #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "Benutzer %1 ist aktuell deaktiviert. Bearbeite den Benutzer und markiere \"Diesem Benutzer RT Zugriff gewähren\" um ihn zu aktivieren." #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Benutzer (Angelegt - abgelaufen)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Benutzerdefiniert" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "Benutzerdefinierte Bedingungen und Ergebnisse" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "Benutzergruppen" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Benutzerinformationen" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Benutzerrechte" #: share/html/User/Search.html:48 msgid "User Search" msgstr "Benutzersuche" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "Benutzer Übersicht" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Benutzer hat einen unbekannten Aktualisierungstyp für das benutzerdefinierte Feld %1 bei %2-Objekt #%3 verlangt" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Benutzer konnte nicht angelegt werden: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Benutzer angelegt" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Benutzer deaktiviert" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Benutzer aktiviert" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Benutzer hat eine leere E-Mail-Adresse" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Benutzer geladen" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Benutzerdefinierte Gruppe" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "Benutzer: %1" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Benutzername" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Format der Benutzernamen" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Benutzer" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Auf diese Kriterien zutreffende Benutzer" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Benutze Transaktion #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Gültige Suche" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Validierung" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Wert" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Werte" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Scrip-Templates sehen" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Scrips sehen" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Werte von benutzerdefinierten Feldern sehen" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Benutzerdefinierte Felder sehen" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Rohform der ausgehenden E-Mails mit ihren Empfängern anzeigen" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Zeige Gruppe" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Gruppen-Dashboards sehen" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "Hervorgehobenes Ticket ansehen" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Eigene Dashboards sehen" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Zeige Bereich" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Zeige gespeicherte Suchen" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "System-Dashboards sehen" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Vertrauliche Ticket Kommentare sehen" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Zeige Ticket Übersicht" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "Warnung: Speichere Suche in Benutzer Privatsphäre" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Höhe des WYSIWYG-Editors" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "WYSIWYG-Editor für Nachrichtentext" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Warnung! Dies ist NICHT signiert!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "Vorsicht: Die Vereinigung kann nicht rückgängig gemacht werden! Nummer des Tickets, dem dieses hinzugefügt werden soll." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Beobachter" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "Beobachter Gruppe" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Beobachter" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Wir können aktuell nicht als Liste anzeigen wenn Kategorien auf ein anderes Benutzerdefiniertes Felde basiert. Bitte benutze einen andere Anzeigetyp." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Web Port" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Mi" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Mittwoch" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "Kalenderwoche" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Wöchentlich" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Wöchentliche Übersicht" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Willkommen im RT" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Was ich heute gemacht habe" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Was ist RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "Welche Tickets in der \"Mehr über die Auftraggeber\" Box angezeigt werden sollen" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Wenn RT eine E-Mail nicht bearbeiten kann, wohin soll sie weitergeleitet werden?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Wenn einTicket erstellt wurde" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Benachrichtige den Besitzer und den AdminCc wenn eine von ihnen freizugebendes Ticket erstellt wurde" #: etc/initialdata:137 msgid "When anything happens" msgstr "Wenn irgendetwas passiert" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "Wenn Artikel in dieser Klasse in E-Mails eingefügt werden:" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Beim Klick auf \"Datenbankverbindung prüfen\" kann es zu einer kurzen Wartezeit kommen während RT eine Verbindung zu ihrer Datenbank herstellt." #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Immer wenn ein Ticket geschlossen wird" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Immer, wenn ein Ticket weitergeleitet wird" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Immer wenn ein Ticket abgewiesen wird" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Immer wenn einTicket wieder geöffnet wird" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Immer wenn einTicket erledigt wird" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Immer, wenn ein Ticket oder eine Transaktion weitergeleitet wird" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Immer wenn der Besitzer eines Ticket wechselt" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Immer wenn sich die Priorität eines Ticket ändert" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Immer wenn ein Ticket den Bereich wechselt" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Immer wenn sich der Status eines Ticket ändert" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Immer, wenn eine Transaktion weitergeleitet wird" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Immer wenn eine benutzerdefinierte Bedingung auftritt" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Immer wenn ein neuer Kommentar eingeht" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Immer wenn neue Korrespondenz eingeht" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Wo befindet sich Dein sendmail" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "Breite" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "rauslöschen" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Arbeit" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Arbeit" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Gearbeitet" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,Stunde,Stunden) (%quant(%2,Minute,Minuten)) gearbeitet" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "%quant(%1,Minute,Minuten) gearbeitet" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "Jahr" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Ja" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "Sie (%1) sind nicht berechtigt RT zu verwenden." #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Sie können dieses Dashboard und Ihr Abonnement dazu im RT bearbeiten." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Sie sind bereits Besitzer dieses Ticket" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "Sie wollen ausgehende E-Mail Nachrichten verschlüsseln aber es gibt Probleme mit den öffentlichen Schlüsseln/Zertifikaten der Empfänger. Sie müssen das Problem mit den Schlüsseln/Zertifikaten lösen, das senden einer Nachricht an den Empfänger mit den Problemen deaktivieren oder die Verschlüsselung deaktivieren." #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "Sie wollen ausgehende E-Mail Nachrichten verschlüsseln aber es gibt Probleme mit dem öffentlichen Schlüssel/Zertifikat des Empfänger. Sie müssen das Problem mit dem Schlüssel/Zertifikat lösen, das senden einer Nachricht an diesen Empfänger deaktivieren oder die Verschlüsselung deaktivieren." #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "Sie sind nicht berechtigt RT zu verwenden" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Springe zur ungelesenen Nachricht oder springe zur ungelesenen Nachricht und markiere alle Nachrichten als gelesen." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "Sie können auch auf das Logo oben klicken um die Farben zu bekommen!" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Du kannst die vordefinierte Suche auch selbst editieren" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "Sie können die Vorlage ändern wenn nötig" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Sie können Ticket Inhalt in jedem Freiform, Text oder Wiki Feld einfügen." #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Du kannst kein Passwort setzen" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Sie können nur eigene oder Tickets ohne Besitzer zuweisen" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "Sie können nur ein Ticket stehlen bei dem jemand anderes der Besitzer ist." #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Sie können nur Tickets übernehmen die keinen Besitzer haben" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Sie können nach jedem Wort im vollständigen Ticket-Verlauf suchen, indem Sie %1word eintippen." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Sie dürfen den Status nicht von '%1' nach '%2' ändern." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Sie haben keine b>SuperUser Rechte." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "Keine Berechtigung Artikel in irgendeiner Klasse zu erstellen." #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "Keine Berechtigung Artikel in irgendeiner Klasse zu sehen." #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Sie wurden von RT abgemeldet." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "Sie haben Verschlüsselung aktiviert aber nicht eine Kommentar Adresse für diesen Bereich eingestellt." #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "Sie haben Verschlüsselung aktiviert aber nicht eine Antwort Adresse für diesen Bereich eingestellt." #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Sie haben keine Berechtigung Tickets in diesem Bereich zu erstellen." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Links zu Artikel können Sie mit \"a:###\" hinzufügen, wobei ### für die Nummer des Artikels steht" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Sie müssen ein Administrator Password eingeben" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "Sie müssen StatementLog auf wahr setzen um diese Abfrage Verlauf Seite zu aktivieren." #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "Sie müssen eine Kommentar Adresse für diesen Bereich festlegen um einen privaten Schlüssel zu konfigurieren." #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "Sie müssen eine Antwort Adresse für diesen Bereich festlegen um einen privaten Schlüssel zu konfigurieren." #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Sie werden nun zur Anmeldeseite weitergeleitet. Hier können Sie sich mit ihrem Benutzernamen für %1 und dem zuvor von ihnen festgelegten Passwort anmelden." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Sie sollten eine Datenbank wählen mit der Sie oder Ihr Datenbank-Administrator bestens vertraut ist." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "Sei wurden vom Authentifizierungsystemaus aus dem RT ausgeloggt . Das ist vielleicht nur ein vorübergehende Schluckauf wobei in diesem Fall ein aktualisieren der Seite vielleicht hilft." #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Sie können sich gerne wieder anmelden" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Sie haben kein Passwort gesetzt." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "Ihr System unterstützt automatische Farbvorschläge für: %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Ihr Benutzername oder Passwort ist falsch" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "PLZ" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[runter]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[hoch]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "[ein versteckter Katalog]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[keine]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "ein benutzerdefiniertes Feld" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "aktiv" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "nach dem" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "nachdem ein Link angeklick wurde" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "nachdem der Rest der Seite geladen wurde" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "zugeordnet" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "und vor dem" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "und nicht" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "und dann" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "Balken" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "vor dem" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "Hauptteil" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "unten nach oben" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "Markieren Sie diese Box um diese Klasse global allen Bereichen zuzuordnen" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "Markieren Sie diese Box, um das benutzerdefinierte Feld an alle Objekte zu binden." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "Markieren Sie diese Box um dieses Skrip allen Objekten zuzuordnen" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "Markieren Sie diese Box um diese Klasse global zu entfernen und in der Lage zu sein bestimmte Bereiche auszuwählen." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "markiere diese Box um das benutzerdefinierte Feld von allen Objekten zu entfernen, danach können spezifische Objekte ausgewählt werden" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "Markieren Sie diese Box um dieses Skrip von allen Objekten zu entfernen und in der Lage zu sein bestimmte Objekte auszuwählen." #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "Auswählen zum Hinzufügen" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "Klicken zum markieren/demarkieren aller Objekte auf einmal" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "Core Einstellung" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "Ticket erstellen" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "täglich um %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "täglich, am" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "Dashboard" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "Dashboards im Menü" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "gelöscht" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "enthält nicht" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "herunterladen" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "Dauer" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "E-Mail Zustellung ausgesetzt" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "E-Mail deaktiviert für Ticket" #: lib/RT/User.pm:270 msgid "empty name" msgstr "Leerer Name" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "gleich" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "Fehler: Kann nicht hinunter verschieben" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "Fehler: Kann nicht nach links verschieben" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "Fehler: Kann nicht hinauf verschieben" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "Fehler: Nichts zu löschen" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "Fehler: Nichts zu verschieben" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "Fehler: Nichts zum Umschalten" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "alle" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "Plugin erfolgreich ausgeführt" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "voll" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "größer als" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "Gruppe" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "Gruppe %1" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "Gruppe '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "ID" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "sofort" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "in Klasse %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "Inaktiv" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "beinhaltet %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "Index" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "Ungültiges Fällig Datum: %1" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "ist" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "ist nicht" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "Schlüssel deaktiviert" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "Schlüssel abgelaufen" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "Schlüssel widerrufen" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "links nach rechts" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "kleiner als" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "geringfügig" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "enthält" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "maximale Tiefe" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "Minuten" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "Konfiguration von RT ändern" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "Dashboard bearbeiten" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "Gespeicherte Suche bearbeiten oder laden" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "Eigene Einstellungen bearbeiten" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "monatlich" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "monatlich (%1. Tag) um %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "niemals" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "neu" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "nein" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "keine E-Mail Adresse gesetzt" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "keine" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "ungleich" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "nichts" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "Objekte wurden erfolgreich entfernt" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "am" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "an Tag" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "ein" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "offen" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "Öffnen/Schliessen" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "andere..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "Aktionen ausführt" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "Torte" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "Plugin lieferte eine leere Liste zurück" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "Bereich %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "erhält tägliche Übersicht" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "erhält wöchentliche Übersicht" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "abgewiesen" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "erfordert laufendes rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "erledigt" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "rechts nach links" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "Suchen" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "Siehe nachstehende Objektliste" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "Seitenleiste" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "Site-Einstellungen" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "zurückgestellt" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "Aussage" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "Zusammenfassungszeile" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "System %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "Systemgruppe '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "Tabelle" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "Der \"Referrer-Header\", der durch Ihren Browser (%1) angegeben wurde, ist aufgrund des angegebenen RT Hostnamens (%2) nicht erlaubt." #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "Der \"Referrer-Header\", der durch Ihren Browser (%1) angegeben wurde, ist aufgrund des angegebenen RT Hostnamens (%2) nicht erlaubt und auch nicht als Whitelisted-Host gelistet (%3)." #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "die aufrufende Komponente gab nicht an warum" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "Die Standard-Adressen die in From: und Reply-To: Kopfzeilen von Kommentar-E-Mails eingetragen werden." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "Die Standard-Adressen die in From: und Reply-To: Kopfzeilen von Antwort-E-Mails eingetragen werden." #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "Ticket #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "oben nach unten" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "ultimativ" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "unbeschriebene Gruppe %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "unlimitiert" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "Ticket aktualisieren" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "Freigabe aktualisieren" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "Artikel aktualisieren" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "Benutzer" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "Benutzer %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "Benutzername" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "wöchentlich" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "wöchentlich (am %1) um %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "Wochen" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "was %1 in ihrem Namen." #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "Der Port des Webserver, z.B. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "mit Kopfzeilen" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "ja" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "Ihr Browser unterstützt keinen \"Referrer-Header\"" rt-4.4.2/share/po/pt_PT.po0000664000175000017500000116573313131430353015160 0ustar vagrantvagrant# Portuguese (Portugal) translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 21:52+0000\n" "Last-Translator: Shawn M Moore \n" "Language-Team: Portuguese (Portugal) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 adicionado" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 alterado para %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 apagado" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 apagado." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 gravado." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 actualizado." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 com modelo %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) por %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (inalterado)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (do painel %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Ajustar opção de configuração LogToSTDERR" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Um argumento a passar a %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Actualização do estado dos Output para STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Epecificar se quer utilizar 'primeira', 'última' ou 'todas' as transações" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Especifique o nome ou ID do(s) template(s) que pretende usar" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Especificar a lista de tipos de transacções, separada por virgulas, que quer usar" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Especificar o modulo de condições que quer usar" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Especifique o módulo de pesquisa a utilizar" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 adicionado como valor para %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 já existe e tem as tabelas do RT, mas não contém os metadados. O passo 'Initialize Database' a executar posteriormente pode inserir os metadados nesta tabela. Se é aceitável, clique em 'Customize Basics' abaixo para continuar a customizar o RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 já existe, mas não contem as tabelas do RT, nem contém os metadados. O passo 'Initialize Database' a executar posteriormente pode inserir os metadados e tabelas nesta tabela. Se é aceitável, clique em 'Customize Basics' abaixo para continuar a customizar o RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 parece ser um objecto local, mas não está na base de dados" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 parece estar totalmente inicializado. Não é necessario criar tabelas ou inserir metadados, mas pode continuar a personalizar o RT clicando 'Personalização base' abaixo" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 por %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 alterado de %2 para %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 alterado de '%2' para '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "cópia %1" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 configuração de raiz" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 não pôde ser definido para %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 criado" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 apagado" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 desabilitado" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 não existe." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 activo" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 tickets com maior prioridade na minha responsabilidade" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 é uma ferramenta para manipular tickets através de uma ferramenta externa, como por exemplo o cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 é um utilitário, para ser corrido num cron, envia todas as notificações RT por utilizador." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 é um endereço no qual o RT recebe email. Adicioná-lo como '%2' criaria um loop de email." #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 já não é um valor para campo personalizado %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 artigos actualizados mais recentemente" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 artigos mais recentes" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 tickets mais recentes sem responsável atribuído" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objectos" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 configuração do site" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 actualizado: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 actualizado: nenhumas alterações" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 actualizado" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "objectos %2 de %1" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "objectos %1's %2's %3" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "Password actual de %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1's paineis" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "Pesquisas gravadas de %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: anexo não especificado" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Novo Pedido em%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,hora)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' não é um identificador de classe válido" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Seleccione caixas para completar)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Seleccione caixa para apagar)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Seleccione caixas para apagar)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Insira identificadores de tickets, separados por espaços)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Por omissão será %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Sem campos personalizados)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Sem membros)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Sem scrips)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Sem templates)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Envia uma fotocopia desta actualização para uma lista separada por virgulas de endereços de email . Estas pessoas passam a receber futuras actualizações.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Envia uma fotocopia desta actualização para uma lista separada por virgulas de endereços de email . Estas pessoas passam a receber futuras actualizações.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Use estes campos quando escolher'Definido pelo Utilizador' para uma condição ou Acção)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(qualquer)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(sem nome)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(Sem chave pública!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(sem valor)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(sem valores)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(pendente %quant(%1,outro ticket))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(aprovação pendente)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(obrigatório)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(confiar: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(sem título)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(não confiavel!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id não é um argumento recomendado e não pode ser usado com --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--argumento da transação apenas pode ser 'first', 'last' or 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "Template em branco" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Password não foi definida, portanto o utilizador não vai conseguir efectuar login." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE não encontrado" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "Os ACEs apenas podem ser criados e eliminados" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "E" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Sobre mim" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Controle de Acesso" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Acção" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Acção '%1' não encontrada" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Acção efectuada" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Acção é argumento obrigatório" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Acção preparada..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Acções" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Tickets activos" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Tickets activos de %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Adicionar um %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Adicionar AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Adicionar Favorito" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Adicionar Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Adicionar colunas" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Adicionar critérios" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Adicionar mais ficheiros" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Adicionar Requerente" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Adicionar Valor" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Adicionar comentários ou respostas aos tickets seleccionados" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Adicionar grupo" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Adicionar membros" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Adicionar novos watchers" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Adicionar direitos para este %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Adicionar estes termos" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Adicionar estes termos e Pesquisar" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Adicionar utilizador" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Adicionar valores" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Adicionar, modificar ou alterar valores de campos personalizados dos objectos" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Morada" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Endereço 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Morada (1)" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Morada (2)" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Comentário de Admin" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Correspondência Admin" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Queues do Administrador" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Configurações do Administrador/Globais" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Palavra-Chave Administrativa" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Avançado" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Pesquisa Avançada" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Agregador" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Todas as aprovações tratadas" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Todas as Classes" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Todos os painéis" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Todas as Queues" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Todos os tickets" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Todas os feeds iCal embebem um token privado que o autorizam. Se o URL de um dos seus feeds iCal foi exposto ao exterior, pode ter um novo token privado ao quebrar as feeds existentes." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Todas as queues que satisfaçam os critérios de pesquisa" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Todos os tickets" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Todos os tópicos" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Permitir criação de pesquisas gravadas" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Permitir carregar pesquisas gravadas" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Permitir escrita de código Perl em templates, scrips, etc" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Já encriptado" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "E/Ou" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Qualquer campo" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Aplica-se a" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Aplica-se a todos os objectos" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Aplicar" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Aplicar globalmente" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Aplicar as alterações" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Aprovação" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Aprovação #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Aprovação #%1: Notas não guardadas devido a um erro no sistema" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Aprovação #%1: Notas guardadas" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Aprovação Concedida" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Aprovação pronta para o dono" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Aprovação rejeitada" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Aprovar" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Abr" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Artigo #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Artigo %1 criado" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artigo não encontrado" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Artigos" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Artigos em %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Artigos que correspondem a %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artigos sem tópicos" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Atribuir e remover campos personalizados de uma queue" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Anexar" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Anexar ficheiro" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Ficheiro anexodo" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Anexo" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Anexo '%1' não foi carregado" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Anexo criado" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Nome do anexo" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Anexos" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "A encriptação dos anexos está inactiva" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Atributo eliminado" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Ago" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Cores do tema automaticamente sugeridas não estão disponíveis para a sua imagem. Poderá ser porque carregou um tipo de imagem que a versão de GD instalada não suporta. Tipos suportados são: %1. Pode recompilar a libgd e o GD.pm para incluir suporte para outros tipos de imagem." #: etc/initialdata:261 msgid "Autoreply" msgstr "Resposta automática" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Resposta automática para utilizadores" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Disponível" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Voltar" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Privacidade incorrecta para atributo %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Informação básica" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Em Branco" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Corpo" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Negrito" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Marcador" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Tarefas marcadas" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Analisar por tópico" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Analisar queries SQL criadas neste processo" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Actualização em bloco" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "CCGroupo" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Não é possível carregar pesquisa gravada %1" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Não é possível alterar utilizadores de sistema" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Não se pode adicionar um campo personalizado sem designação" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Impossível encontrar a pesquisa gravada para trabalhar com" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Não é possível ligar um ticket a si próprio" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Não consigo gravar %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Não é possível gravar esta pesquisa" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Não se pode criar tarefas numa queue inactiva" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Categorias são baseadas em" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Categoria" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Alterar" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Alterar senha" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Gráfico" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Seleccionar Todos" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Testar Conectividade com BD" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Verifique as credenciais da base de dados" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Seleccione caixa para apagar" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Filhos" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Seleccione o motor da base de dados" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Cidade" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Classe" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Nome da Classe" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Identificador da Classe" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "A Classe já está aplicada globalmente" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "A Classe já está aplicada a %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Limpar" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Limpar Tudo" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Clique em \"Finalizar instalação\" para completar este assistente" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Clique em \"Iniciar base de dados\" para criar a base de dados do RT e inserir os metadados iniciais. Pode demorar alguns minutos." #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Fechado" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Tickets fechados" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Seleccione ou insira valores múltiplos" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Seleccione ou insira um valor" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Seleccione ou insira até %1 valores" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Comentário" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Morada de Comentário" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Morada do comentário" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Comentar tickets" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Comentários" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Comentários (não enviados para utilizadores)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Comentários sobre este utilizador" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Comentários adicionados" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Condição" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Condição '%1' não encontrada" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Condição é argumento obrigatório" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Condição corresponde..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Condição, Acção e Modelo" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Ficheiro de configuração %1 está trancado" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Configuração da queue %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Ligação efectuada com sucesso" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Conteúdo" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Conteúdo é um endereço IP inválido" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Conteúdo é uma gama de endereços IP inválida" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tipo de Conteúdo" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "TipoConteudo" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Morada de correspondência" #: etc/initialdata:393 msgid "Correspondence" msgstr "Correspondência" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Correspondência adicionada" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Não foi adicionado o valor do campo personalizado: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Não foi alterado o dono: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Não foi criado o campo personalizado: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Não foi possível criar o grupo" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Não foi possível criar pesquisa: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Não é possível criar pedido. Especifique uma fila." #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Não foi possível criar utilizador" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Não foi possível apagar pesquisa %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Não foi carregado o atributo %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Não foi possível carregar Classe %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Não foi carregado o campo personalizado %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Grupo não foi carregado" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Não doi carregado o objecto para %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Não consegui definir informações de utilizador" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Não foi possível adicionar anexo" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Não foi possível adicionar membro a grupo" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Não foi possível criar uma transacção: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Não foi possível criar o registo: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Não foi possível apagar painel %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Linha não encontrada" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Não foi encontrada a transacção adequada, saltar" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Não foi possível encontrar grupo/utilizador" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Não foi encontrado o valor" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Não foi carregada a classe %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Não foi carregado o campo personalizado #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Não foi possível carregar o Campo Personalizado #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Não foi carregado o campo personalizado %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Não foi carregada a cópia da tarefa #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Não foi carregado o painel %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Não foi carregado o grupo #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Não foi carregado o grupo %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Não foi carregado o link" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Não foi carregado o objecto %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Não foi carregado nem adicionado o utilizador: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "A queue não foi carregada" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "A queue #%1 não foi carregada" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "A queue %1 não foi carregada" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "A queue '%1' não foi carregada" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "O script #%1 não foi carregado" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "O modelo #%1 não foi carregado" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Não foi possível carregar o ticket '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Não foi possível carregar a transacção #'%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Não foi possível carregar o utilizador" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Não foi possivel carregar o utilizador #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Não foi possível carregar utilizador #%1 ou utilizador '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Não foi possível carregar utilizador '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Não foi substituído o conteúdo com dados desencriptados: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "O conteúdo não foi substituído com dados encriptados: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Não foi possivel resolver base'%1' no URI" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Não foi possivel resolver target '%1' no URI" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Não foi possivel definir %1 watcher: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Não foi possível definir chave privada" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "País" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Criar" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Criar tickets" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Criar uma Classe" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Criar um campo personalizado" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Criar um campo personalizado para a queue %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Criar um novo artigo" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Criar um novo artigo em" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Criar um novo painel" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Criar novo grupo" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Criar um novo template para a queue %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Criar novo utilizador" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Criar queue" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Criar template" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Criar ticket" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Criar um artigo" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Criar um artigo na classe..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Criar artigos nesta classe" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Criar Paineis de Grupo" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Criar novo pedido baseado num modelo existente" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Criar paineis pessoais" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Criar paineis de sistema" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Criar ticket" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Criar Tickets" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Criar, modificar e apagar entradas na ACL" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Criar, modificar e apagar campos personalizados" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Criar, modificar e apagar valores de campos personalizados" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Criar, modificar e apagar queue" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Criar, modificar e apagar pesquisas gravadas" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Criar, modificar e apagar utilizadores" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Criado" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Criado por" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Campo Personalisado %1 criado" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Criado por" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Pesquisa %1 criada" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "CriadoPor" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "CriadoRelativo" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Criado por" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Criptografia" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Links actuais" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Pesquisa Actual" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Membros actuais" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Pesquisa actual" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Observadores actuais" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Campos Personalizados" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Campos Personalizados para %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Campos personalizados da queue %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Acção personalizada preparação de código" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Condição personalizada" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "O campo personalizado #%1 não se aplica a este objecto" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Campo personalizado %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "O campo personalizado %1 não se aplica a este objecto" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Campo personalizado %1 tem um valor." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Campo personalizado %1 não tem valores" #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Campo personalizado %1 não encontrado" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "O valor do campo personalizado %1 não foi encontrado para o campo personalizado %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "O valor do campo personalizado não pode ser eliminado" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "O valor do campo personalizado foi eliminado" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CampoPersonalizado" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "CampoPersonalizadoValor" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Personalizar" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Personalizar Básico" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Personalizar endereços de email" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Personalizar configurações de email" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Configurar o aspecto do RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Palavra-Chave do DBA (Administrador da Base de Dados)" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Nome de utilizador do DBA (Administrador da Base de Dados)" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Compilação diária" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Painel" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Painel não pode ser criado: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Painel não pode ser actualizado: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Painel actualizado" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Painéis" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Anfitrião do painel" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nome da Base de Dados" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Palavra-Chave da Base de Dados para o RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Porta da Base de Dados" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tipo da Base de Dados" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Nome do utilizador da Base de Dados para o RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Formato da data" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Datas" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dez" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Desencriptar" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Queue predefinida" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Predefinição: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Predefinição: %1/%2 alterado para %3 to %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Formatopordefeito" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Apagar" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Apagar template" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Eliminação falhou: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Apagar painéis de grupo" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Operação de eliminação está desabilitada pela configuração do ciclo de vida" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Eliminar painéis pessoais" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Eliminar painéis de sistema" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Apagar tickets" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Apagar valores" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "%1 Eliminado" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Eliminar consultas" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Eliminar pesquisa guardada" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Pesquisa %1 apagada" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "A eliminação deste objecto irá quebrar a integridade referencial" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "A eliminação deste objecto irá violar a integridade referencial" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Negar" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Depende em por" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "DependendoDePor" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Dependência por %1 adicionada" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Dependência por %1 eliminada" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Dependência de %1 adicionada" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Dependência de %1 eliminada" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "DependenteEm" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Depende de" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "DependeDe" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Descreva o pedido, abaixo" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Descrição" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Informação detalhada sobre a sua configuração do RT" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Detalhes" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Direcção" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Desativado" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Mostrar" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Visualizar lista de controlo de acessos" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Mostrar Artigo %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Visualizar Colunas" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Distribuído sobre a %1versão 2 da GNU GPL%2" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Fazer qualquer coisa e tudo" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Nome do domínio" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Não incluir http://, apenas algo como 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Não actualize página incial" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Não actualize resultados da pesquisa" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Não actualizar (refrescar) esta página" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Não confiar nesta chave" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Descarregar" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Descarregue dumpfile" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Prazo" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "PrazoRelativo" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "ERRO: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Actualização simples das suas tarefas abertas" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Vista facilitada dos lembretes" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Editar" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Editar Campos Personalizados" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Editar Campos Personalizados de %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Editar Campos Personalizados para todos os grupos" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Editar Campos Personalizados para todas as queues" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Editar Campos Personalizados para todos os utilizadores" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Editar Campos Personalizados para artigos em todas as classes" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Editar \"Campos Personalizados\" para todos os pedidos" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Editar ligações" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Editar Consulta" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Editar Pesquisa" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Editar hierarquia global de tópicos" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Editar modelos de sistema" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Editar hierarquia de tópicos de %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "A editar campo personalizado %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "A editar membros para o grupo %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "IdEfectivo" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Base ou alvo devem ser especificados" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Ou não tem direitos para visualizar a pesquisa guardada %1 ou o identificador está incorrecto" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "E-mail" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Endereço de e-mail" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "E-mail Compilação" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Endereço de email já utilizado" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Entrega por e-mail" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Template de email periodico para notificações de resumo" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "EndereçoEmail" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Activo" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Activo (Deseleccionar esta caixa desactiva esta classe)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Activo (remover selecção desta caixa desactiva este campo)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Activo (remover selecção desta caixa desactiva este grupo)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Activo (remover selecção desta caixa desactiva esta queue)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Classes Activas" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Queues activas" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Queues activas que correspondem ao critério de pesquisa" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Estado activo %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Encriptar" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Enciptar por predefinição" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Encriptar/Desencriptar" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Encriptar/Desencriptar transacção #%1 de tarefa #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Insira artigos, tickets ou outros URLs relacionados com este artigo" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Insira múltiplas gamas de endereços IP" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Insira múltiplos endereços IP" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Introduzir múltiplos valores" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Introduzir multiplos valores com autocompletion" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Introduzir objectos ou URLs para ligar os objectos. Separar as entradas múltiplas com espaços." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Insira um endereço IP" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Insira uma gama de endereços IP" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Inserir um valor" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Introduza um valor com autocompletion" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Escreva as filas ou URIs para ligar as filas. Separe várias entradas com espaços." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Escreva o número dos pedidos ou URIs para ligar os pedidos. Separe várias entradas com espaços." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Insira tempo (em horas) por omissão" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Insira até %1 gamas de endereços IP" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Insira até %1 endereços IP" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Inserir até %1 valores" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Introduza até %1 valores com autocompletion" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Erro" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Erro no dono RT: chave pública" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Erro: Painel em falta" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Erro: Dados GnuPG errados" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Erro: não consegui carregar a pesquisa gravada %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Erro: Não existe chave privada" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Erro: Chave Pública" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Erro: pesquisa %1 não foi actualizada: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Escalar tickets" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Estimado" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Todos" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Exemplo:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Expirar" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "StausEstendido" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Autenticação externa activa" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Informação adicional" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Extrair Artigo" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Extrair Tag do Assunto" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Extrair um novo artigo do ticket #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Extrair artigo do ticket #%1 na classe %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extrair tags do assunto de uma Transacção e adicioná-los ao assunto do tickect" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Falta ao ligar a base de dados: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Falta ao criar atributo %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Não foi encontrado peseudogrupo dos utilizadores \"Privilegiados\"" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Não foi encontrado peseudogrupo dos utilizadores \"Não Privilegiados\"" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Falha ao carregar %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Falha ao carregar %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Falta ao carregar módulo %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Falha ao carregar objecto para %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Falta ao carregar modelo" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Falha a analisar o template" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Fev" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Campo" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Fonte dos valores do campo" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Nome Ficheiro" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Preencher argumentos" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Preencha as caixas com cor usando" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Preencher múltiplas áreas de texto" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Preencha multiplas wikitext areas" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Preencher uma área de texto" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Preencha uma área de texto wiki" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Preencha este campo com um URL" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Preencha até %1 áreas de texto" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Preencha até %1 wikitext areas" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Prioridade final" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "PrioridadeFinal" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Procurar todos os utilizadores cujo" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Encontrar grupos cujo" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Encontrar pessoas cujo" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Encontrar tickets" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Impressão digital" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Terminar" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Primeiro" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Forçar alteração" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formato" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Encaminhar" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Encaminhar Mensagem" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Encaminhar Mensagem e Voltar" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Encaminhar Ticket" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Encaminhar mensagens fora do RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Encaminhar ticket #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Encaminhar transcção #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Ticket encaminhado para %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Encontrado %quant(%1,ticket)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Objecto Encontrado" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frequência" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Sex" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Sexta" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "De" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "O GD não está activo, ou não foi instalado. Pode carregar uma imagem, mas não vai receber sugestões automáticas de cor." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Geral" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Direitos Gerais" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Introdução" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Atribuído a %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Atributos Globais" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Configuração gloval dos campos personalizados" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Portlet global %1 guardado" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Ir" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Ir para grupo" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Ir para utilizador" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Começar!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Ir para Ticket" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Ir para ticket" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Gráfico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Propriedades do Gráfico" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Gráficos não estão disponíveis" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Grupo" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Direitos do grupo" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "O grupo já tem um membro: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Grupo não pôde ser criado: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Grupo criado" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Grupo inactivo" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Grupo activo" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "O grupo não tem esse membro" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Grupo '%1' já existe" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Grupo não encontrado" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupos" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Grupos não podem ser membros dos seus membros" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Grupos que preenchem critérios" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Grupos a que este utilizador pertence" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "TemMembros" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Cabeçalho de um ticket encaminhado" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Cabeçalho de uma mensagem reencaminhada" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Olá!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Ajude-nos a definir predefinições úteis para o RT" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Esconder texto marcado" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Histórico" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Histórico do artigo #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Histórico do grupo %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Histórico da queue %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Histórico do utilizador %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Telefone de Casa" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Intervalo de actualização da página de ínicio" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Página inicial" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Hora" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Horas" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Eu tenho %quant(%1,concret mixer)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identidade" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Se uma aprovação é rejeitada, rejeite a original e elimine aprovações pendentes" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Se esta ferramenta fosse setgid, um utilizador local hostil poderia usá-la para ter acesso de administrador ao RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Se já tem um servidor RT e base de dados funcionais, deveria aproveitar a oportunidade para se assegurar que o seu servidor de base de dados está a correr e que o servidor do RT consegue-se ligar a ele. Depois disto, pare e inicie o servidor do RT.

    " #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Se alterou o Porto em que o RT está a correr, será necessário reiniciar o servidor para voltar a fazer login." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Se actualizou algo acima, certifique-se que" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Se a sua base de dados escolhida não está listada abaixo, significa que o RT não conseguiu encontrar um driver /i> para a mesma instalada localmente. Pode contornar este problema ao usar %1 para descarregar e instalar DBD::MySQL, DBD::Oracle ou DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Valor ilegal para %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Campo imutável" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Tickets inactivos" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Incluir Artigo:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Incluir classes inactivas na listagem" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Incluir campos personalizados inactivos na listagem." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Incluir grupos desactivados na listagem" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Incluir queues desactivadas na listagem" #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Incluir utilizadores desactivados na listagem" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Incluir página" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Incluir subtópicos" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Mensagens individuais" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informar dono do RT que utilizadores estão com problemas com chaves públicas" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informar utilizador que o painel que ele subscreveu está em falta" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informar utilizador que a mensagem que ele enviou tem dados GnuPG inválidos" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informar utilizador que ele está com problemas relacionados com a chave pública e não consegue receber conteúdo encriptado" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Informar utilizador que a sua password foi redefinida" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informar utilizador que recebemos um email encriptado e que não temos chaves provadas para o desencriptar" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Prioridade Inicial" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "PrioridadeInicial" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Iniciar Base de Dados" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Erro de entrada" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "O conteúdo deve corresponder a %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Erro interno: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Erro interno: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "%1 Inválido" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Argumento %1 inválido" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "%1 Inválido: '%2' não parece um enderço de email" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "%1 Inválido: deveria ser numérico" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Classe inválida" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Fonte de dados de Campo Personalizado inválida" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Queue inválida, impossível aplicar Classe: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Dados Inválidos" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Objecto Inválido" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Padrão inválido: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Queue inválida" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Direito inválido" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Sintaxe inválida para endereço de e-mail" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Valor inválido para %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Valor inválido para campo personalizado" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Não está encriptado" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "É muito importante que os utilizadores não privilegiados não possam executar esta ferramenta." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "É sugerido que crie um utilizador não privilegiado com o grupo correcto e acesso ao RT para utilizar esta ferramenta." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Necessários vários argumentos:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Itálico" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Entrar ou sair de grupo" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Mantenha 'localhost' se não tiver a certeza. Deixe em branco para ligar localmente sobre um socket" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Idioma" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Grande" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Último" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Último Contacto" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Contactado pela última vez" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Última actualização" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Última Actualização Por" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Última actualização" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Última actualização por" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "ÚltimaActualização" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "ÚltimaLocalizaçãoPor" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "ÚltimaActualizaçãoRelativa" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Deixar em branco para usar o valor predefinido para a sua base de dados" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Não altere, para ser utilizado o username por omissão para a seu tipo de Base de Dados." #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Restante" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legendas" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Tamanho em caracteres; Use '0' para mostrar todas as mensagens, independentemente do tamanho" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Permitir que este utilizador aceda ao RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Permitir que este utilizador tenha direitos" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Iniciar!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "CiclodeVida" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Ligação" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Ligação já existe" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Ligação não encontrada" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Ligar ticket #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Ligar valores a" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Ligado" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "LigadoDe" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "LigadoA" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Ligações" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Lista" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Carregar" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Carregar uma pesquisa gravada" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Carregar pesquisa gravada" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Carregar pesquisa gravada:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Carregado %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Carregada pesquisa guardada \"%1\" original" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Módulos perl carregados" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Carregada pesquisa guardada \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "A carregar..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Localização" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "DataHoraLocalizada" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Localização" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Ligado" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Ligado como %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Desligado" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Entrar" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Sair" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "" #: lib/RT/User.pm:96 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:970 msgid "No password set" msgstr "" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "" #: etc/initialdata:47 msgid "Notify Owner" msgstr "" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "" #: etc/initialdata:170 msgid "On Comment" msgstr "" #: etc/initialdata:142 msgid "On Correspond" msgstr "" #: etc/initialdata:131 msgid "On Create" msgstr "" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "" #: etc/initialdata:199 msgid "On Queue Change" msgstr "" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "" #: etc/initialdata:205 msgid "On Resolve" msgstr "" #: etc/initialdata:176 msgid "On Status Change" msgstr "" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "" #: etc/initialdata:108 msgid "Open Tickets" msgstr "" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "" #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "" #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "" #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "" #: lib/RT/User.pm:256 msgid "User created" msgstr "" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:137 msgid "When anything happens" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "" #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "" #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "fila %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "rejeitado" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "requer rt-crontool em execução" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "resolvido" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "da direita para a esquerda" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "Ver lista de objectos abaixo" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "pendente" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "instrução" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "linhas de sumário" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "sistema %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "grupo de sistema '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "O endereço por defeito que será listado em De: e Responder para: cabeçalhos de comment mail" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "O endereço por defeito que será listado em De: e Responder para: cabeçalhos de correspondence mail" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "Do início ao fim" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "inquestionável" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "grupo indefinido %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "ilimitado" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "utilizador" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "utilizador %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "nome do utilizador" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "semanalmente" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "Semanalmente (em %1) às %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "semanas" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "Especifique o port que o webserver deve ouvir, ex: 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "com cabeçalhos" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "sim" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/sr.po0000664000175000017500000140031713131430353014544 0ustar vagrantvagrant# Serbian translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 10:08+0000\n" "Last-Translator: Shawn M Moore \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 dodato" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 promenjeno u %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 obrisano" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 obrisano" #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 saÄuvan." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 ажуриран" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 sa Å¡ablonom %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) od %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Nepromenjen)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (из панела %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Argument za prosledjivanje %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Izlazni status se ažurira u STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Specifiraj da li hoces da koristiÅ¡ 'prva, 'zadnja' ili 'sve' transakcije" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Ðаведите име или идентификациони број шаблона који(е) желите да кориÑтите" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Specifiraj listu transakcijskih tipova koji hoćeÅ¡ da koristiÅ¡" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Specifiraj modul uslova koji hoćeÅ¡ da koristiÅ¡" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Specifiraj modul pretrage koji hoćeÅ¡ da koristiÅ¡" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 dodato kao vrednost za %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 već postoji i ima RT tablele na mestu, ali ne sadrži RT meta podatke. 'Inicijalizujte Databazu' može kasnije uneti meta podatke u ovu postojeću bazu podataka. Ukoliko je ovo prihvatljivo, klikni na 'Preradi Osnove' ispod da nastavis preradu RT-a." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 već postoji i ima RT tablele na mestu, ali ne sadrži RT meta podatke. 'Inicijalizujte Databazu' može kasnije uneti meta podatke u ovu postojeću bazu podataka. Ukoliko je ovo prihvatljivo, klikni na 'Preradi Osnove' ispod da nastavis preradu RT-a." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 nije pronaÄ‘en u datoteci iako izgleda da je lokalni objekt" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 izgleda da je potpuno inicijalizovana. Mi nemamo potrebe da kreiramo tabele i unosimo meta podatke, ali Vi možete nastaviti da preraÄ‘ujete RT klikom na 'Preradi Osnovu' ispod" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 od %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 promenjeno od %2 u %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 промењено из '%2' у '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 kopija" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 оÑновна подешавања" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 ne može se namestiti na %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 napravljen" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 obrisan" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 онемогућено" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 ne postoji." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 омогућено" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 zahtevi najviÅ¡eg prioriteta koje posedujem" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 je alat za obradu zahteva preko eksternog alata za automatizaciju poput crona" #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 je alat namenjen za pokretanje pomoću crona, koji rasporeÄ‘uje odložene RT notifikacije po korisniÄkom izboru." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 је адреÑа на коју РТ прима пошту. Додавањем као '%2' би наÑтала петља у Ñлању" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 viÅ¡e nije vrednost za sopstveno polje %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 није важећи животни век" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 најÑкорије ажурираних чланака" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 најновијих чланака" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 најновијих карата без влаÑника" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 објеката" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 подешавања Ñајта" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 ажурирање: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 ажурирање: Ðишта није промењено" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 ажурирано" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1-ових %2 објеката" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1-ових %2-ових %3 објеката" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "Тренутна лозинка кориÑника %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "ИнÑтрумент табла кориÑника %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "Сачуване претраге кориÑника %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: додатак није наведен" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "%1kB" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1 Ðови лиÑтић у %2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1Ñ" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1, чланак)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1, Ñат)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%1 минута" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' није важеће име" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' није важећи идентификатор клаÑе" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Штиклирајте поље како би завршили)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Штиклирајте поље како би обриÑали)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Штиклирајте поља како би обриÑали)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(УнеÑите идентификаторе лиÑтића или њихове URL-ове, одвојене размацима)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(уколико Ñе оÑтави празно, подразумеваће Ñе %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Ðема прилагођених поља)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Ðема чланова)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Ðема Ñкрипти)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Ðема шаблона)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Шаље индиго копију ове закрпе у зарезима одвојену лиÑту админиÑтративних адреÑа е-поште. Ови људи ће добијати будуће закрпе.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Шаље индиго копију ове закрпе у зарезима одвојену лиÑту адреÑа е-поште. Ови људи ће добијати будуће закрпе.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(КориÑтите ова поља када бирате 'КориÑнички дефиниÑано' за уÑлов или акцију)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(било који)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(без резимеа)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(без имена)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(нема pubkey-а!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(нема вредноÑÑ‚)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(нема вредноÑти)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(у току %quant(%1, други лиÑтић))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(одобравање у току)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(обавезно)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(веровати: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(без наÑлова)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(неповерљив!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id је заÑтарео аргумент и не може бити коришћен Ñа --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--transaction аргумент може бити Ñамо 'first', 'last' или 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "Празан шаблон" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Лозинка није подешена, па кориÑник неће моћи да Ñе пријави." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE није пронађен" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACE-ови могу бити Ñамо направљени и обриÑани." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "И" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "О мени" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Контрола приÑтупа" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Ðкција" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Ðкција '%1' није пронађена" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Ðкција започета." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Ðкција је обавезни аргумент" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Ðкција припремљена..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Ðкције" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Ðктивни лиÑтићи" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Ðктивни лиÑтићи за %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Додај %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Додај AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Додај обележавач" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Додај Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Додај колоне" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Додај критеријум" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Додај још датотека" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Додај захтеваоца" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Додај вредноÑÑ‚" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Додај коментаре или одговоре одабраним лиÑтићима" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Додај групу" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Додај овде" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Додај чланове" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Додај нове поÑматраче" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Додај права за овај %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Додај ове уÑлове" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Додај ове уÑлове и претрагу" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Додај кориÑника" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Додај вредноÑти" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Додај, измени и обриши прилагођене вредноÑти поља за објекте" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "ÐдреÑа" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "ÐдреÑа 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "ÐдреÑа1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "ÐдреÑа2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "ÐдминиÑтратор Cc" #: etc/initialdata:410 msgid "Admin Comment" msgstr "ÐдминиÑтраторÑки коментар" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "ÐдминиÑтраторÑка препиÑка" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "ÐдминиÑтраторÑки редови" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "ÐдминиÑтраторÑка/глобална конфигурација" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "ÐдминиÑтративна лозинка" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Ðапредно" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Ðапредна претрага" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Ðакон пријављивања бићете поÑлати на оригинално одредиште." #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Ðгрегатор" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "СваОдобрења прошла" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Сви чланци из ове клаÑе би требало да буду наведени у падајућем менију Ñтранице за одговор на лиÑтиће" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Све клаÑе" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Све инÑтрумент табле" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Сви редови" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Сви ЛиÑтићи" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Све iCal feed-ови уграђују тајни жетон који вам даје овлашћење. Ðко Ñе URL једног од ваших iCal feed-ова открије Ñпољном Ñвету, можете добити нови тајни жетон, прекидајући Ñве поÑтојеће iCal feed-ове иÑпод." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Сви редови који одговарају критеријуму претраге" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Сви лиÑтићи" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Све теме" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Дозволи прављење Ñачуваних претрага" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Дозволи учитавање Ñачуваних претрага" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Дозволи пиÑање Перл кода у шаблонима, цедуљама, итд." #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Већ је шифровано" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "И/или" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Годишње" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Било које поље" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Било која реч која није препозната од Ñтране РТ-а Ñе претражује у теми лиÑтића." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Примењује Ñе на" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Примењује Ñе на Ñве објекте" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Примени" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Примени глобално" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Примени промене" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Одобрење" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Одобрење #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Одобрење #%1: Белешке ниÑу Ñнимљене због ÑиÑтемÑке грешке" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Одобрење #%1: Белешке Ñнимљене" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Одобрење прошло" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Одобрење Ñпремно за влаÑника" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Одобрење одбијено" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Одобри" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Ðпр" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Чланак #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Чланак %1 направљен" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "ÐдминиÑтрирање чланака" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Чланак није пронађен" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Чланци" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Чланци у %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Чланци који одговарају %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Чланци без тема" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "РаÑтуће" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Додели и уклони прилагођена поља редова" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Приложи" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Приложи датотеку" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Приложена датотека" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Прилог" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Прилог '%1' не може бити учитан" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Прилог направљен" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Ðазив датотеке прилога" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Прилози" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Шифровање прилога је онемогућено" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Ðтрибут обриÑан" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Ðвг" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "ÐутоматÑки ÑугериÑане боје теме ниÑу доÑтупне за вашу Ñлику. Могуће да је то због тога што Ñте отпремили тип Ñлике који ваша инÑталирана верзија ГД-а не подржава. Подржани типови Ñу: %1. Можете поново превеÑти libgd и GD.pm како би Ñадржавали подршку за друге типове Ñлика." #: etc/initialdata:261 msgid "Autoreply" msgstr "ÐутоматÑки одговор" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "ÐутоматÑки одговор захтеваоцима" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "ДоÑтупно" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Ðазад" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Лоша приватноÑÑ‚ за атрибут %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "ОÑнове" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Ðевидљива копија (Bcc)" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Празно" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Тело" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Подебљано" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Обележивач" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Везе за ову претрагу Ñа омогућеним обележавањем" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Обележени ЛиÑтићи" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Обележени лиÑтићи" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Прегледај према теми" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Прегледај SQL упите наÑтале у овом процеÑу" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Групно ажурирање" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "CCCGroup" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "CF-ови могу бити претраживани коришћењем Ñличне ÑинтакÑе као горе Ñа %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Сачувана претрага \"%1\" не може бити учитана" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "СиÑтемÑки кориÑници не могу бити измењени" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Ðе могу Ñе додати прилагођене вредноÑти поља без назива" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Ðе може бити пронађена Ñачувана претрага Ñа којом треба радити" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Ðе може Ñе повезати лиÑтић Ñа Ñамим Ñобом" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Ðе може Ñе повезати Ñа обриÑаним лиÑтићем" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Ðе може Ñе Ñачувати %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Ðе може Ñе Ñачувати ова претрага" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Ðе може Ñе додати веза чиÑтом броју" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Ðе може Ñе направити лиÑтић у онемогућеном реду." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Категорије Ñу заÑноване на" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Категорија" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Копија (Cc)" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "CCs" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Измени" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Измени лиÑтић одобрења у отворен ÑтатуÑ" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Измени лозинку" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Графикон" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Означи Ñве" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Провери могућноÑÑ‚ повезивања Ñа базом података" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Провери податке за приÑтуп бази података" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Штиклирајте поље како би обриÑали" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Деца" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Изаберите покретач (engine) базе података" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Изаберите из тема за %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Град" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "КлаÑа" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Име клаÑе" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "КлаÑа није могла бити креирана: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Идентификатор клаÑе" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "КлаÑа је већ примењена глобално" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "КлаÑа је већ примењена на %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "КлаÑе" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "ОчиÑти" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "ОчиÑти Ñве" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Кликните на \"Заврши инÑталацију\" иÑпод како биÑте завршили Ñа овим чаробњаком." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Кликните на \"Иницијализуј базу података\" како би направили РТ-ову базу података и унели почетне метаподатке. Ово може потрајати неколико момената." #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Затворено" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Затворени лиÑтићи" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Падајући мени: Одаберите или унеÑите више вредноÑти" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Падајући мени: Одаберите или унеÑите једну вредноÑÑ‚" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Падајући мени: Одаберите или унеÑите до %1 вредноÑти" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Коментар" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "ÐдреÑа Коментара" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "ÐдреÑа коментара" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Коментар за лиÑтић" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Коментари" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Коментари (Ðе шаљу Ñе захтеваоцима)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Коментари о овом кориÑнику" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Коментари Ñу додати" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Изврши Ñкраћено" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "УÑлов" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "УÑлов \"%1\" није пронађен" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "УÑлов је обавезан аргумент" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "УÑлов одговара..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "УÑлов, Ðкција и Шаблон" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Датотека Ñа подешавањима %1 је закључана" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "ПоÑтавке за ред %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Веза је уÑпела" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Садржај" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Садржај је неважећа IP адреÑа" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Садржај је неважећи опÑег IP адреÑа" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "Content-Type" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "ÐдреÑа препиÑке" #: etc/initialdata:393 msgid "Correspondence" msgstr "ПрепиÑка" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "ПрепиÑка је додата" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Ðије уÑпело додавање нове вредноÑти прилагођеног поља: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Ðије уÑпела промена влаÑника: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Ðије уÑпело прављење прилагођеног поља: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Ðије уÑпело прављење групе" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Ðије уÑпело прављење претраге: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Ðије уÑпело прављење лиÑтића. Ред није подешен" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Ðије уÑпело прављење кориÑника" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Ðије уÑпело бриÑање претраге %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Ðије уÑпело учитавање %1 атрибута" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Ðије уÑпело учитавање клаÑе %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Ðије уÑпело учитавање CustomField %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Ðије уÑпело учитавање групе" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Ðије уÑпело учитавање објекта за %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Ðије уÑпело поÑтављање кориÑничких информација" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Ðије уÑпело додавање прилога" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Ðије уÑпело додавање члана групи" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Ðије уÑпело превођење %1 блока кода '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Ðије уÑпело превођење шаблона блока кода '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Ðије уÑпело прављење транÑакције: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Ðије уÑпело прављење запиÑа: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Ðије уÑпело бриÑање инÑтрумент табле %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Ðије уÑпело проналажење реда" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Ðије уÑпело проналажење погодне транÑакције, преÑкакање" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Ðије уÑпело проналажење тог директора" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Ðије уÑпело проналажење те вредноÑти" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Ðије уÑпело учитавање клаÑе %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Ðије уÑпело учитавање прилагођеног поља #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Ðије уÑпело учитавање CustomField #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Ðије уÑпело учитавање CustomField %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Ðије уÑпело учитавање копије лиÑтића #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Ðије уÑпело учитавање инÑтрумент табле %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Ðије уÑпело учитавање групе #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Ðије уÑпело учитавање групе %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Ðије уÑпело учитавање везе" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "Ðије уÑпело учитавање везе: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Ðије уÑпело учитавање објекта %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Ðије уÑпело учитавање или прављење кориÑника: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Ðије уÑпело учитавање реда" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Ðије уÑпело учитавање реда #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Ðије уÑпело учитавање реда %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Ðије уÑпело учитавање реда '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Ðије уÑпело учитавање цедуље #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Ðије уÑпело учитавање шаблона #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Ðије уÑпело учитавање назначеног директора" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Ðије уÑпело учитавање лиÑтића '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Ðије уÑпело учитавање чланÑтва теме док је покушавано њено бриÑање" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Ðије уÑпело учитавање транÑакције #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Ðије уÑпело учитавање кориÑника" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Ðије уÑпело учитавање кориÑника #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Ðије уÑпело учитавање кориÑника #%1 или кориÑника '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Ðије уÑпело учитавање кориÑника '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "Ðије уÑпело рашчлањивање Base URI: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "Ðије уÑпело рашчлањивање Target URI: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Ðије уÑпела замена Ñадржаја Ñа дешифрованим подацима: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Ðије уÑпела замена Ñадржаја Ñа шифрованим подацима: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Ðије уÑпело разрешавање оÑновног '%1' у URI." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Ðије уÑпело разрешавање '%1' у URI" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Ðије уÑпело поÑтављање %1 поÑматрача: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Ðије уÑпело поÑтављање приватног кључа" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Ðије уÑпело уклањање приватног кључа" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Земља" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Ðаправи" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Ðаправи лиÑтиће" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Ðаправи клаÑу" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Ðаправи CustomField" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Ðаправи CustomField за ред %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Ðаправи нови члан" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Ðаправи нови члан у" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Ðаправи нову инÑтрумент таблу" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Ðаправи нову групу" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Ðаправи нови шаблон за ред %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Ðаправи новог кориÑника" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Ðаправи ред" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Ðаправи шаблон" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Ðаправи лиÑтић" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Ðаправи чланак" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Ðаправи чланак у клаÑи..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Ðаправи чланке у овој клаÑи" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Ðаправи групне инÑтрумент табле" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Ðаправи нове лиÑтиће на оÑнову шаблона ове цедуље" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Ðаправи личне инÑтрумент табле" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Ðаправи ÑиÑтемÑке инÑтрумент табле" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Ðаправи лиÑтић" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Ðаправи лиÑтиће" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Ðаправи, измени и обриши уноÑе лиÑте контроле приÑтупа" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Ðаправи, измени и обриши прилагођена поља" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Ðаправи, измени и обриши вредноÑти прилагођених поља" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Ðаправи, измени и обриши ред" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Ðаправи, измени и обриши Ñачуване претраге" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Ðаправи, измени и обриши кориÑнике" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Ðаправљено" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Ðутори" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Ðаправљено ПрилагођеноПоље %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Ðутори" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Ðаправљена претрага %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "Ðутор" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "ÐаправљениСродник" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Стваралац" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Шифровање" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Тренутне везе" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Тренутна претрага" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Тренутни чланови" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Тренутна претрага" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Тренутни поÑматрачи" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Прилагођена поља" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Прилагођена поља за %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Прилагођена поља за ред %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Код за припрему прилагођене акције" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Прилагођени уÑлов" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Прилагођено поље #%1 није примењено на овај објекат" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Прилагођено поље %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Прилагођено поље %1 није примењено на овај објекат" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Прилагођено поље %1 има вредноÑÑ‚" #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Прилагођено поље %1 нема вредноÑÑ‚" #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Прилагођено поље %1 није пронађено" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "ВредноÑÑ‚ прилагођеног поља %1 није пронађено за прилагођено поље %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "БриÑање вредноÑти прилагођеног поља није уÑпело" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "ВредноÑÑ‚ прилагођеног поља је обриÑано" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "ПрилагођеноПоље" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "ВредноÑтПрилагођеногПоља" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Прилагоди" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Прилагоди оÑнове" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Прилагоди адреÑе е-поште" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Прилагоди поÑтавке е-поште" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Прилагодите изглед вашег РТ-а" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA лозинка" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA кориÑничко име" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Дневно" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Дневни Ñажети преглед" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "ИнÑтрумент табла" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Ðије уÑпело креирање инÑтрумент табле: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Ðије уÑпело ажурирање инÑтрумент табле: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "ИнÑтрумент табла ажурирана" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "ИнÑтрумент табле" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Домаћин (host) базе података" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Име базе података" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Лозинка базе података за РТ" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "порт базе података" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "тип базе података" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "КориÑничко име базе за РТ" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Формат датума" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Датуми" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Дец" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Дешифруј" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Подразумевани ред" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Подразумевано: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Подразумевано: %1/%2 промењено из %3 у %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "ПодразумеваниФормат" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Обриши" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Обриши шаблон" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "БриÑање неуÑпело: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Обриши групну инÑтрумент таблу" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Операција бриÑања је онемогућена од Ñтране животног циклуÑа конфигурације" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Обриши личне инÑтрумент табле" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Обриши ÑиÑтемÑке инÑтрумент табле" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Обриши лиÑтиће" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Обриши вредноÑти" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "ОбриÑано %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "ОбриÑани упити" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "ОбриÑане Ñачуване претраге" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "ОбриÑане претраге %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "БриÑањем овог објекта би Ñе нарушио референцијални интегритет" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "БриÑањем овог објекта би Ñе угрозио референцијални интегритет" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Одбиј" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Од овога завиÑе" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "ОдОвогаЗавиÑе" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "ЗавиÑноÑÑ‚ од %1 додата" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "ЗавиÑноÑÑ‚ од %1 обриÑана" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "ЗавиÑноÑÑ‚ за %1 додата" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "ЗавиÑноÑÑ‚ за %1 обриÑана" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "ЗавиÑиОд" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Од овога завиÑе" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "ЗавиÑиОд" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Опад" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Опишите проблем иÑпод" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "ОпиÑ" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Детаљне информације о поÑтавкама вашег РТ-а" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Детаљи" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Смер" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Онемогућено" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Приказ" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Прикажи лиÑту контроле приÑтупа" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Прикажи чланак %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Прикажи колоне" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "ДиÑтрибуирано под %1 верзија 2 ГÐУ ГПЛ %2" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Уради било шта и Ñве" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Име домена" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ðемој укључивати http://,нешто попут 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Ðемој оÑвежавати почетну Ñтрану." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Ðемој оÑвежавати резултате претраге." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ðемој оÑвежавати ову Ñтрану." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Ðемој уопште веровати овом кључу" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Преузми" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Преузми dumpfile" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Падајући мени" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Рок" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "РелативанРок" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "ГРЕШКÐ: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Лако ажурирање ваших отворених карата" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Лако прегледање ваших подÑетника" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Уреди" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Уреди прилагођена поља" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Уреди прилагођена поља за %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Уреди прилагођена поља за Ñве групе" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Уреди прилагођена поља за Ñве упите" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Уреди прилагођена поља за Ñве кориÑнике" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Уреди прилагођена поља за Ñве чланке у Ñвим клаÑама" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Уреди прилагођена поља за лиÑтиће у Ñвим упитима" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Уреди везе" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Уреди упит" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Уреди претрагу" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Уреди поредак глобалних тема" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Уреди ÑиÑтемÑке шаблоне" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Уреди поредак тема за %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Уређивање ПрилагођеноПоље %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Урељивање чланÑтва за групу %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "ЕфективниИдентификатор" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Морају бити назначени или оÑнова или одредиште" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Или немате права да прегледате Ñачувану претрагу %1 или идентификатор није тачан" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "Е-пошта" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "ÐдреÑа е-поште" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Сажетак е-поште" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Имејл адреÑа у употреби" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "ИÑпорука е-поште" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Имејл шаблон за Ñажетке периодичних обавештења" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "ИмејлÐдреÑа" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Омогућено" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Омогућено (одштиклирањем овог поља Ñе онемогућава ова клаÑа)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Омогућено (одштиклирањем овог поља Ñе онемогућава ово прилагођено поље)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Омогућено (одштиклирањем овог поља Ñе онемогућава ова група)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Омогућено (одштиклирањем овог поља Ñе онемогућава овај ред" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Омогућене клаÑе" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Омогућени упити" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Омогућени редови који одговарају критеријуму претраге" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Омогућен ÑÑ‚Ð°Ñ‚ÑƒÑ %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Шифруј" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Шифруј подразумевано" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Шифруј/Дешифруј" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Шифруј/Дешифруј транÑакцију #%1 лиÑтића #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "УнеÑите чланке, лиÑтиће или друге URL-ове везане за овај чланак" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "УнеÑите више оÑпега IP адреÑа" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "УнеÑите више IP адреÑа" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "УнеÑите више вредноÑти" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "УнеÑите више адреÑа Ñа аутоматÑким довршавањем" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "УнеÑите објекте или URI-је за које ће бити везани објекти. Одвојите више уноÑа размаком." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "УнеÑите једну IP адреÑу" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "УнеÑите један опÑег IP адреÑа" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "УнеÑите једну вредноÑÑ‚" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "УнеÑите једну вредноÑÑ‚ Ñа аутоматÑким довршавањем" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "УнеÑите упите или URI-је за које Ñу везани упити. Одвојите више вредноÑти размаком." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "УнеÑите лиÑтиће или URI-је за које Ñу везане лиÑтиће. Одвојите више вредноÑти размаком." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "УнеÑите подразумевано време у Ñатима" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "УнеÑите до %1 опÑега IP адреÑа" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "УнеÑите до %1 IP адреÑа" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "УнеÑите до %1 вредноÑти" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "УнеÑите до %1 вредноÑти Ñа аутоматÑким довршавањем" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "Уношењем %1, %2, %3 или %4 ограничавају Ñе резултати на лиÑтиће који имају један од типова ÑтатуÑа, тим редом. Било које појединачно име ÑтатуÑа ограничава резултате на Ñамо оне ÑтатуÑе који Ñу именовани." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Грeшкa" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Грешка за РТ влаÑника: јавни кључ" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Грешка: ÐедоÑтаје инÑтрумент табла" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Грешка: лоши ГнуПГ подаци" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Грешка: није уÑпела промена вредноÑти за приватноÑÑ‚ поÑтојеће претраге" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Грешка: није уÑпело учитавање Ñачуване претраге %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Грешка: нема приватног кључа" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Грешка: јавни кључ" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Грешка: претрага %1 није ажурирана: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Повећај лиÑтиће" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Процењено" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Сви" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Пример:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "ИÑтиче" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "ПродуженСтатуÑ" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Спољашња аутентификација омогућена." #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Додатне информације" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Издвоји чланак" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Издвоји ознаку теме" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Издвој нови чланак из лиÑтића #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Издвој чланак из лиÑтића #%1 у клаÑу %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Издвоји ознаке из предмета транÑакције и додај их у тему лиÑтића." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "ÐеуÑпело повезивање Ñа базом: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "ÐеуÑпело прављење %1 атрибута" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "ÐеуÑпело проналажење пÑеудогрупе 'Привилегованих' кориÑника" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "ÐеуÑпело проналажење пÑеудогрупе 'Ðеривилегованих' кориÑника" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "ÐеуÑпело учитавање %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "неуÑпело учитавање %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "ÐеуÑпело учитавање модула %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "ÐеуÑпело учитавање објекта за %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "ÐеуÑпело учитавање шаблона" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "ÐеуÑпело учитавање лиÑтића %1" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "ÐеуÑпело рашчлањивање шаблона" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Феб" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Доводи" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Поље" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Извор вредноÑти поља:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Ðазив датотеке" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Попуни аргументе" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Попуни поља Ñа бојом кориÑтећи" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Попуни више поља за текÑÑ‚" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Попуни више викитекÑÑ‚ поља" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Попуни једно поље за текÑÑ‚" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Попуни једно поље за викитекÑÑ‚" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Попуни ово поље Ñа URL-ом." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Попуни до %1 поља за текÑÑ‚" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Попуни до %1 поља за викитекÑÑ‚" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Коначан приоритет" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "КоначанПриоритет" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Пронађи Ñве кориÑнике чији" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Пронађи Ñве групе чије" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Пронађи Ñве људе чији" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Пронађи лиÑтиће" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "ОтиÑак прÑта" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Завршити" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Прво" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "За пуну моћ РТ-ових претрага, молим поÑетите %1 Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÑ˜Ñ Ð·Ð° прављење претрага %2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Приморај промене" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Формат" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "ПроÑледи" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "ПроÑледи поруку" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "ПроÑледи поруку и врати Ñе" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "ПроÑледи лиÑтић" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "ПроÑледи поруке ван РТ-а" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "ПроÑледи поруку #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "ПроÑледи транÑакцију #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "ПроÑлеђена порука за %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Пронађен %quant(%1, лиÑтић)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Пронађен објекат" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "УчеÑталоÑÑ‚" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Пет" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Петак" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Од" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "ГД је онемогућен или није инÑталиран. Можете отпремити Ñлику, али нећете добити аутоматÑке ÑугеÑтије боје." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Опште" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Општа права" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Почетак" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Дато %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Глобално" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Глобални атрибути" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Глобалне теме" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Глобална прилагођена поља поÑтавки" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Глобални портлет %1 Ñачуван." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Крени" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Иди у групу" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Иди до кориÑника" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Крени!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Иди до ЛиÑтића" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Иди до лиÑтића" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Графикон" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "ОÑобине графикона" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Графикони ниÑу доÑтупни." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Група" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Групна права" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Група већ има члана: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Ðије уÑпело креирање групе: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Група креирана" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Група онемогућена" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Група омогућена" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Група нема оваквог члана" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Име групе '%1' је већ у употреби" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Група није пронађена" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Групе" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Групе не могу бити чланови Ñвојих чланова" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Групе које одговарају критеријуму претраге" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Групе којима овај кориÑник припада" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "ИмаЧлана" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Заглавље проÑлеђеног лиÑтића" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Заглавље проÑлеђене поруке" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Здраво!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Помозите нам да подеÑимо нека кориÑна подешавања за РТ." #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Сакриј Ñав цитирани текÑÑ‚" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Сакриј цитирани текÑÑ‚" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "ИÑторијат" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "ИÑторијат за чланак #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "ИÑторијат групе %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "ИÑторијат реда %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "ИÑторијат кориÑника %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Кућни телефон" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Интервал оÑвежавања почетне Ñтране" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Почетна Ñтрана" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Сат" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "Ðа Ñваки Ñат" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Сати" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Имам %quant(%1, мешалица за бетон)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "Желим поново да поÑтавим мој тајни жетон." #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "Идентификатор" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Идентитет" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Ðко је одобрење одбијено, одбиј оригинал и обриши одобрења у току" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "Уколико ово није оно што Ñте очекивали, напуÑтите Ñада ову Ñтрану без пријављивања." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Да је овај алат setgid, непријатељÑки локални кориÑник би могао иÑкориÑтити овај алат да добије админиÑтративна права за РТ." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Уколико већ имате РТ Ñервер и базу података који раде, требало би да иÑкориÑтите ову прилику да Ñе уверите да је ваш Ñервер базе података покренут и да РТ Ñервер може Ñа њиме да Ñе повеже. Када то урадите, зауÑтавите и покрените РТ Ñервер." #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "Уколико Ñте заиÑта намеравали да поÑетите %1 и %2, онда %3 кликните овде да наÑтавите Ñа вашим захтевом %4." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Уколико Ñте променили порт на коме је РТ покренут, мораћете поново да покренете Ñервер како биÑте Ñе пријавили." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Уколико Ñте ажурирали било шта одозго, уверите Ñе да" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Уколико ваша жељена база података није наведена у падајућем менију иÑпод, то значи да РТ не може да пронађе инÑталирани драјвер базе података за њу. Можда ћете моћи ово да иÑправите кориÑтећи %1 да преузмете и инÑталирате DBD::MySQL, DBD::Oracle или DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Ðедозвољена вредноÑÑ‚ за %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Ðепроменљиво поље" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Ðеактивни лиÑтићи" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Садржи чланак:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Укључи онемогућене клаÑе у ÑпиÑак." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Укључи онемогућена прилагођена поља у ÑпиÑак." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Укључи онемогућене групе у ÑпиÑак." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Укључи онемогућене редове у ÑпиÑак." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Укључи онемогућене кориÑнике у претрагу." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Укључи Ñтрану" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Укључи подтеме" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Појединачне поруке" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "ОбавеÑти влаÑника РТ-а да кориÑник(ци) имају проблема Ñа јавним кључевима" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "ОбавеÑти кориÑника да недоÑтаје инÑтрумент табла на коју Ñе он пријавио" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "ОбавеÑти кориÑника да порука коју је поÑлао има неважеће ГнуПГ податке" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "ОбавеÑти кориÑника да он(а) има проблема Ñа јавним кључем и да није могао(ла) да добије шифрован Ñадржај" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "ОбавеÑти кориÑника да је његов(а) лозинка промењена" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "ОбавеÑти кориÑника да Ñмо примили шифровану е-пошту и да немамо приватни кључ за дешифровање" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Почетни приоритет" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "ПочетниПриоритет" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Започни базу података" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Грешка уноÑа" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Ð£Ð½Ð¾Ñ Ð¼Ð¾Ñ€Ð° да одговара %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Унутрашња грешка: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Унутрашња грешка: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "Ðеважеће %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Ðеважећи %1 аргумент" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Ðеважеће %1: '%2' не личи на адреÑу е-поште" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Ðеважеће %1: требало би да буде број" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Ðеважећа клаÑа" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Ðеважећи извор вредноÑти прилагођеног поља" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Ðеважећи ред, није уÑпело примењивање клаÑе: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "Ðеважећи тип иÑцртавања" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Ðеважећи тип иÑцртавања за прилагођено поље типа %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "ÐеиÑправни подаци" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Ðеважећи кључ %1 за адреÑу '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Ðеважећи објекат" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Ðеважећи шаблон: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Ðеважећи ред" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Ðеважеће право" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Ðеважеће право. Ðије уÑпела канонизација права '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Ðеважећа ÑинтакÑа за адреÑу е-поште" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Ðеважећа вредноÑÑ‚ за %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Ðеважећа вредноÑÑ‚ за прилагођено поље" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Ðије шифровано" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Од невероватне важноÑти је да непривилегованим кориÑницима не буде дозвољено покретање овог алата." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Предлаже Ñе да направите непривилегованог Ñ˜ÑƒÐ½Ð¸ÐºÑ ÐºÐ¾Ñ€Ð¸Ñника Ñа иÑправним групним чланÑтвом и приÑтупом РТ-у како би покренуо овај алат." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Прихвата више аргумената:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "ИÑкошено" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Јан" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "ПриÑтупи или напуÑти групу" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Јул" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Ðамбо" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Јун" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "ОÑтавите 'localhost' уколико ниÑте Ñигурни. ОÑтавите празно како би Ñе повезали локално преко Ñокета" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "Претрага заÑнована на кључним речима и интуицији" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Јез" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Језик" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Велико" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "ПоÑљедње" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "ПоÑледњи контакт" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "ПоÑледње контактирано" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "ПоÑледње ажурирано" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "ПоÑледње ажурирано од" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "ПоÑледње ажурирано" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "ПоÑледње ажурирано од" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "ПоÑледњеÐжурирано" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "ПоÑледњеÐжурираноОд" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "ПоÑледњеÐжуриранСродник" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "ОÑтавите празно како биÑте кориÑтили подразумевану вредноÑÑ‚ за вашу базу података" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "ОÑтавите ово Ñамо како биÑте кориÑтили подразумевано dba кориÑничко име за ваш тип базе података" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Лево" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Легенде" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Дужина у карактерима; КориÑтите '0' како биÑте приказали Ñве поруке у једном реду, без обзира на дужину" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Дозволи овом кориÑнику приÑтуп РТ-у" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Дозволи овом кориÑнику добијање права" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Идемо!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Животни циклуÑ" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Веза" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Веза већ поÑтоји" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Веза није пронађена" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Повежи лиÑтић #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Вежи вредноÑти за" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Повезано" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "ПовезаноОд" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "ПовезаноЗа" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Везе" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "СпиÑак" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Учитај" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Учитај Ñачувану претрагу" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Учитај Ñачувану претрагу" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Учитај Ñачувану претрагу:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Учитано %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Учитана оригинална \"%1\" Ñачувана претрага" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Учитани перл модули" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Учитана Ñачувана претрага \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Учитавам..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Локалитет" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "ЛокализованДатумВреме" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "МеÑто" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Пријављен(а)" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Пријављен(а) као %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Одјављен(а)" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Пријава" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "ЛогоÐлтТекÑÑ‚" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Одјава" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Тип за потражњу није одговарајући" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Пошта" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Главни тип веза" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Ðаправи влаÑника" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Ðаправи ÑтатуÑ" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Ðаправи рок важења" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Ðаправи датум Започето" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Ðаправи датум Почиње" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Ðаправи датум Речено" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Ðаправи приоритет" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Ðаправи ред" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Ðаправи тему" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Управљај прилагођеним пољима и вредноÑтима прилагођених поља" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Управљај групама и групним чланÑтвима" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Управљај оÑобинама и поÑтавкама које Ñе примењују на Ñве редове" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Управљај редовима и оÑобинама редова" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Управљај Ñачуваним графиконима" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Управљај кориÑницима и лозинкама" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Мар" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Све поруке Ñу означене као погледане" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "РедоÑлед претраге градитељÑких шаблона" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "МакÑВредноÑти" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "МакÑимална дужина поруке у једном реду" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maj" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Ја" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Члан" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Члан %1 додат" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Члан %1 обриÑан" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Члан додат: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Члан обриÑан" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Члан није обриÑан" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "Члан" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Чланови" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "ЧланÑтво у %1 додато" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "ЧланÑтво у %1 обриÑано" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "ЧланÑтва" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "ЧланÑтва кориÑника %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Спајање уÑпешно" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Спајање неуÑпело. Ðије уÑпело поÑтављање ЕфективниИд" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Споји у" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Спојено у %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Порука" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Тело поруке није приказано јер је превелико." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Тело поруке није приказано јер је пошиљалац захтевао да оно буде у једном реду." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Тело поруке није приказано јер није обичан текÑÑ‚." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "ВиÑина поља за поруку" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Ширина поља за поруку" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Ðије уÑпело Ñнимање поруке" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Порука за кориÑника" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Порука Ñнимљена" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Минимална дужина лозинке" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Минути" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Разно" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "ÐедоÑтаје примарни кључ?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Мобилни" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Мобилни телефон" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Измени" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Измени чланове" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Измени шаблоне цедуља" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Измени цедуље" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Измени ПрилагођеноПоље за ред %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Измени и направи клаÑе" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Измени и направи прилагођена поља за чланке" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "измени чланак #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Измени објекте повезане Ñа %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Измени вредноÑти прилагођених поља" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Измени датуме за лиÑтић #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Измени теме глобалних чланака" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Измени глобална прилагођена поља" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Измени права глобалних група" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Измени глобалне теме" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Измени права глобалних кориÑника" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Измени групне инÑтрумент табле" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Измени ÑпиÑак имена глобалног чланÑтва" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Измени метаподатке групе или обриши групу" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Измени групна права за клаÑу %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Измени групна права за прилагођено поље %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Измени групна права за групу %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Измени групна права за ред %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Измени метаподатке и прилагођена поља за ову клаÑу" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Измени нечији РТ налог" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Измени људе везане за лиÑтић #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Измени личну инÑтрумент таблу" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Измени поÑматраче реда" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Измени цедуље за ред %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Измени цедуље које Ñе примењују на Ñве редове" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Измени ÑиÑтемÑку инÑтрумент таблу" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Измени шаблон %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Измени шаблон %1 за ред %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Измени шаблоне који Ñе примењују на Ñве редове" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Измени клаÑу %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Измени Ñадржај инÑтрумент табле %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Измени инÑтрумент таблу %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Измени подразумевани \"РТ на први поглед\" изглед" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Измени групу %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Измени претплату на инÑтрумент таблу %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Измени кориÑника %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Измени ову претрагу..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Измени лиÑтић # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Измени лиÑтић #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Измени лиÑтиће" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Измени тему за %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Измени хијерархију тема везаних за ову клаÑу" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Измени теме за чланке у овој клаÑи" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Измени кориÑничка права за клаÑу %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Измени кориÑничка права за прилагођено поље %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Измени кориÑничка права за групу %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Измени кориÑничка права за ред %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Измени ко добија пошту за лиÑтић #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Модул" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Пон" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Понедељак" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "МеÑечно" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Више о захтеваоцима" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Помери овде" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "ВишеÑтруко" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Мора Ñе назначити атрибут 'Име'" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Моји %1 лиÑтићи" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Моја Одобрења" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Мој дан" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Моји ПодÑетници" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Моја одобрења" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Моје инÑтрумент табле" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Моји подÑетници" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Моје Ñачуване претраге" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Име" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Име и адреÑа е-поште" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Име је у употреби" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Име:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Ðикада" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Ðово" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Ðови Чланак" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Ðова ИнÑтрумент табла" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Ðове Везе" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Ðово одобрење у току" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Ðова претрага" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Ðове поруке" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Ðова лозинка" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Обавештење о новој лозинки је поÑлато" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Ðови подÑетник:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Ðови лиÑтић" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Ðови лиÑтић не поÑтоји" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Ðови лиÑтићи не могу имати ÑÑ‚Ð°Ñ‚ÑƒÑ '%1' у овом реду." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Ðови поÑматрачи" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Следеће" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Ðадимак" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Ðадимак" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Ðе" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "Ðиједан %1 није учитан" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Ðиједан чланак не одговара %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Ðиједна клаÑа није дефиниÑана" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Ðије пронађена ниједна клаÑа која одговара критеријуму претраге" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Ðема ПрилагођеноПоље" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Ðиједно ПрилагођеноПоље није дефиниÑано" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Ðиједна група није дефиниÑана" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Ðиједан упит" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Ðиједан ред није дефиниÑан" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Ðиједан РТ кориÑник није пронађен. Молим поÑаветујте Ñе Ñа вашим РТ админиÑтратором." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Ðема теме" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Ðема шаблона" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Ðема акције" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Ðема назначене колоне" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Ðема унетих коментара о овом кориÑнику" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Ðема опиÑа за %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Ðема назначене групе" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Ðема пронађених група које одговарају критеријуму претраге" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Ðема кључа погодног за шифровање" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Ðема приложених порука" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Ðије обезбеђено име" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Ðема потребе за шифровањем" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Лозинка није поÑтављена" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Ðема дозволе за прављење редова" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Ðема дозволе за прављење лозинки у реду '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Ðема дозволе за приказивање тог лиÑтића" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Ðема дозволе за чување претрага широм ÑиÑтема" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Ðема дозволе за поÑтављање преференција" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Ðема дозволе за преглед Чланка" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Ðема дозволе за преглед ажурирања лиÑтића" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Ðиједан управник није обележен." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Ðема приватног кључа" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Ðије пронађен ниједан ред који одговара критеријуму претраге." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Ðема назначених права" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Ðиједно право није пронађено" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Ðема претраге над којом Ñе може радити." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Ðема теме" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Ðема таквог кључа или није погодан за потпиÑивање" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Ðије пронађен ниједан лиÑтић." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Ðема назначених типова транÑакције" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Ðема употребљивих кључева." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Ðије пронађен ниједан кориÑник који одговара критеријуму претраге." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "Ðије поÑтављена вредноÑÑ‚ за _Set!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Ðико" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Ðишта" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "ÐепоÑтојеће поље?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Ðије пронађено" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "ÐиÑте пријављени." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Ðије поÑтављено" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Ðе кориÑти Ñе мобилни прегледач?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Белешке" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Ðије уÑпело Ñлање обавештења" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "ОбавеÑти ÐдминЦцÑ" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "ОбавеÑти ÐÐ´Ð¼Ð¸Ð½Ð¦Ñ†Ñ ÐºÐ°Ð¾ Коментар" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "ОбавеÑти ЦцÑ" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "ОбавеÑти Ð¦Ñ†Ñ ÐºÐ°Ð¾ Коментар" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "ОбавеÑти оÑтале примаоце" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "ОбавеÑти оÑтале примаоце као Коментар" #: etc/initialdata:47 msgid "Notify Owner" msgstr "ОбавеÑти влаÑника" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "ОбавеÑти влаÑника као Кометар" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "ОбавеÑти влаÑника о његовом одбијеном лиÑтићу" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "ОбавеÑти влаÑника да је његов лиÑтић одобрен и Ñпреман да Ñе на њему ради" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "ОбавеÑти влаÑника да је његов лиÑтић одобрен од Ñтране неких или Ñвих одобраватеља" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "ОбавеÑти влаÑника, захтеваоце, Ð¦Ñ†Ñ Ð¸ ÐдминЦцÑ" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "ОбавеÑти влаÑника, захтеваоце, Ð¦Ñ†Ñ Ð¸ ÐÐ´Ð¼Ð¸Ð½Ð¦Ñ†Ñ ÐºÐ°Ð¾ Коментар" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "ОбавеÑти влаÑника и ÐÐ´Ð¼Ð¸Ð½Ð¦Ñ†Ñ Ð¾ новим Ñтавкама које чекају на њихово одобрење" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "ОбавеÑти захтеваоца да Ñу његови лиÑтићи одобрени од Ñтране Ñвих одобраватеља" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "ОбавеÑти захтеваоца да је његов лиÑтић одобрен од неких одобраватеља" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "ОбавеÑти захтеваоце" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "ОбавеÑти захтеваоце и ЦцÑ" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "ОбавеÑти захтеваоца и Ð¦Ñ†Ñ ÐºÐ°Ð¾ Коментар" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Обавештавај ме о непрочитаним порукама" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Ðов" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ИЛИ" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Објекат" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Ðије уÑпело прављење објекта" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Ðије уÑпело бриÑање објекта" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Објекат направљен" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Објекат обриÑан" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Тип објекта је неодговарајући" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "СпиÑак објеката је празан" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Окт" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "Ðа %1, %2 је напиÑао(ла):" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "При затварању" #: etc/initialdata:170 msgid "On Comment" msgstr "При коментару" #: etc/initialdata:142 msgid "On Correspond" msgstr "При препиÑци" #: etc/initialdata:131 msgid "On Create" msgstr "При прављењу" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "При проÑлеђивању" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "При проÑлеђивању лиÑтића" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "При проÑлеђивању транÑакције" #: etc/initialdata:191 msgid "On Owner Change" msgstr "При промени влаÑника" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "При промени приоритета" #: etc/initialdata:199 msgid "On Queue Change" msgstr "При промени реда" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "При одбијању" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "При поновном отварању" #: etc/initialdata:205 msgid "On Resolve" msgstr "При разрешавању" #: etc/initialdata:176 msgid "On Status Change" msgstr "При промени ÑтатуÑа" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "При транÑакцији" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Једнократна Ñлепа индиго копија" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Једнократна индиго копија" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Само за уноÑ, не и за приказ" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Прикажи одобрења Ñамо за захтеве направљене поÑле %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Прикажи одобрења Ñамо за захтеве направљене пре %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Прикажи прилагођена поља Ñамо за:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Отвори" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Отвори лиÑтиће" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Отвори УРЛ" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Отвори лиÑтиће" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Отвори лиÑтиће при препиÑци" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Опција" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Опције" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Оракл" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Поређај по" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Организација" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "ЛиÑтић од кога води порекло: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Одлазна е-пошта о коментару Ñнимљена" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Одлазна е-пошта Ñнимљена" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Одлазна е-пошта" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Преглед" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "СопÑтвени лиÑтићи" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "ВлаÑник" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "ВлаÑник '%1' нема права да поÑедује овај лиÑтић." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "ВлаÑник је промењен из %1 у %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "ВлаÑник је наÑилно промењен из %1 у %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "ИмеВлаÑника" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Страница" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Страница 1 од 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Страна није пронађена" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Пејџер" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Пејџер телефон" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Родитељи" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Лозинка" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Лозинка промењена" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Лозинка није поÑтављена." #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Лозинка мора бити дугачка најмање %1 карактера" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Лозинка није одштампана" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Лозинка је поÑтављена" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Лозинка: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Лозинка: Дозвола одбијена" #: etc/initialdata:714 msgid "PasswordChange" msgstr "ПроменаЛозинке" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Лозинке Ñе не подударају." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Путања до sendmail-а" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "ОÑобе" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "ОÑобе повезане Ñа редом %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Изврши кориÑнички дефиниÑану акцију" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "Перл" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Перл поÑтавке" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "РедоÑлед претраге Перл библиотека" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Трајно обриши податке из РТ-а" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Дозвола је одбијена" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Дозвола одбијена" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Бројеви телефона" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Молим проверите УРЛ и покушајте поново" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Молим иÑправно унеÑите вашу тренутну лозинку." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Молим унеÑите вашу тренутну лозинку." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "Могуће фалÑификовање захтева између Ñајтова" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Могуће Ñкривене претраге" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "ПредефиниÑана претрага %1 није пронађена" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "ПоÑтавке" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "ПоÑтавке %1 за кориÑника %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "ПоÑтавке Ñачуване за %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "ПоÑтавке Ñачуване за кориÑника %1." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "ПоÑтавке Ñачуване." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Жељени кључ: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Жељени кључ" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Припреми Ñкраћено" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Пре" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Уредник %1 није пронађен." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Одштампај резултујуће Ñажетке порука на STDOUT; немој их Ñлати е-поштом. Ðемој их означавати као поÑлате" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Штампај ову поруку" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Приоритет" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "ПриватноÑÑ‚" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "ПриватноÑÑ‚:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Приватни кључ" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Привилеговано" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Привилегован ÑтатуÑ: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Привилеговани кориÑници" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Обрађивање без транÑакције, неки уÑлови и акције могу да неуÑпу. Размотрите употребу --transaction аргумента" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "ПÑеудогрупа за интерну употребу" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "Јавни кључ '0x%1' је неопходан за проверу потпиÑа" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Упити" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Упит" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Градитељ упита" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Ред" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Ред %1 није пронађен" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Ðазив реда" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Ред већ поÑтоји" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Ðије уÑпело прављење реда" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Ðије уÑпело учитавање реда." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Ред је направљен" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Идентификатор реда" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Ред није пронађен" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Кључ реда" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "РедÐдминИндигоКопије" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "РедИндигоКопије" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "ÐазивРеда" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "ПоÑматрачРеда" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Редови" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Редови које ја админиÑтрирам" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Редови за које Ñам ја ÐдминЦц" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Брза претрага" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Брзо прављење лиÑтића" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "РСС" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "РТ админиÑтрација" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "Е-пошта РТ админиÑтратора" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "ПоÑтавке РТ-а" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "Грешка РТ-а" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Величина РТ-а" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "РТ на први поглед" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "РТ на први поглед за кориÑника %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "РТ може комуницирати Ñа вашим кориÑницима о новим лиÑтићима или новим препиÑкама о лиÑтићима. Кажите нам где да пронађемо sendmail (или бинарну датотеку која одговара sendmail-у, попут оне коју обезбеђује postfix). РТ такође треба да зна кога да обавеÑти када неко пошаље неважећу адреÑу Е-поште. Ово не Ñме бити адреÑа која шаље поруке назад у РТ." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "РТ може обезбедити Ñадржај Ñа другог веб ÑервиÑа када приказује ово прилагођено поље." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "РТ може претворити вредноÑти овог прилагођеног поља у везе ка другим ÑервиÑима." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "РТ оÑновне променљиве" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "РТ за %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "РТ је открио могуће %1фалÑификовање захтева између Ñајтова%2 за овај захтев, јер %3. Малициозни нападач можда покушава да %1%4%2 у ваше име. Уколико ви ниÑте покренули овај захтев, онда би требало да упозорите ваш тим за безбедноÑÑ‚." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "РТ је ÑиÑтем за праћење проблема на нивоу предузећа дизајниран да вам интелигентно и ефикаÑно управља задацима, проблемима, захтевима, недоÑтацима или било чиме што личи на \"предмет радње\"." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "РТ је коришћен од Ñтране Форчн 100 компанија, поÑлова вођених од Ñтране Ñамо једне оÑобе, владиних агенција, образовних инÑтитуција, болница, непрофитних организација, невладиних организација, библиотека, пројеката отвореног кода и Ñвих других врÑта организација на Ñвих Ñедам континената. (Да, чак и на Ðнтарктику.)" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "РТ ће Ñе повезати Ñа базом података коришћењем овог кориÑника. Биће направљен за ваÑ." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "РТ ће направити кориÑника званог \"root\" и поÑтавити ово као његову лозинку" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "РТ ће заменити %1 и %2 Ñа, редом, идентификатором запиÑа и вредношћу прилагођеног поља." #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "РТ ће кориÑтити ову ниÑку за јединÑтвено идентификовање ваше инÑталације и тражиће је у теми е-поште како би одлучио на који лиÑтић Ñе порука одноÑи. Предлажемо да ово поÑтавите на ваш интернет домен. (нпр. example.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "РТ ради Ñа неколико различитих база података. MySQL, PostgreSQL, Oracle и SQLite Ñу Ñве подржане." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "RTAddressRegexp опција у подешавањима не одговара %1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Поново отвори" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Право име" #: lib/RT/User.pm:95 msgid "RealName" msgstr "ПравоИме" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Примаоци" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Сними Ñве закрпе" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Рекурзивни члан" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Упути на" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Референца од %1 додата" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Референца од %1 обриÑана" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Референца за %1 додата" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Упут ка %1 обриÑан" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Упућен од Ñтране" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "УпућенОдСтране" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Упућује на" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "УпућујеÐа" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "ОÑвежи" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "ОÑвежи ову Ñтрану Ñваких %1 минута" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Одбиј" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Запамти подразумевани ред" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "ПодÑетник" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "ПодÑетник '%1' додат" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "ПодÑетник '%1' завршен" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "ПодÑетник '%1' поново отворен" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "ПодÑетници" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "ПодÑетници за лиÑтић #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Обриши ÐдминЦц" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Уклони обележавач" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Уклони индиго копију" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Уклони захтеваоца" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "Тип иÑцртавача" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Замењује влаÑникове падајуће меније Ñа текÑтуалним пољима" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Одговори" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "ÐдреÑа за одговор" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Одговори захтеваоцима" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Одговори на лиÑтиће" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Захтеваоц" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "ГрупаЗахтеваоца" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Захтеваоци" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Захтевани параметар '%1' није назначен" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Поново поÑтави" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Поново поÑтави РТ на први поглед" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Поново поÑтави тајни жетон за аутентификацију" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "ПодеÑи на подразумевано" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Пребивалиште" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Разреши" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Разреши лиÑтић #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Разрешено" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "РазрешениСродник" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Одговори" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Резултати" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Врати Ñе назад на лиÑтић" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Поновите лозинку" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Врати" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Право је учитано" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Ðије уÑпело опозивање права" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Право није учитано." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Ðије уÑпело давање права %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Права за админиÑтраторе" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Права за оÑобље" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Редови" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Редова по кутији" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Редова по Ñтрани" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL упити" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite је база података којој није потребан Ñервер или било какво подешавање. Творци РТ-а предлажу ово за теÑтирање, пробе и развој, али није баш погодно за РТ Ñервер великог обима у производњи." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Суб" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Субота" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Сачувај" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Сачувај измене" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Сачувај подешавања" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Сачувај као ново" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Сачувај ново" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Саувај ову претрагу" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Сачувано %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Сачуване претраге" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Сачувани графикони" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Сачуване претраге" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Цедуља #%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Цедуља је направљена" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Цедуље" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Цедуље и примаоци" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Тражи" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "Претрага %1 ажурирана" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Претражи чланке" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "ПоÑтавке претраге" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Претражуј чланке који одговарају" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Претражуј одобрења" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Претражуј чланке" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Претражуј лиÑтиће" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Опције претраге" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Резултати претраге" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Интервал оÑвежавања резултата претраге" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "Претраживање Ñвег текÑта Ñвих лиÑтића може дуго да потраје, али ако вам је то потребно, можете тражити било коју реч у целој иÑторији лиÑтића куцајући %1реч" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Тајни жетон за аутентификацију" #: bin/rt-crontool:352 msgid "Security:" msgstr "СигурноÑÑ‚:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Видети такође:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Погледај чланке у овој клаÑи" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Погледај промене чланака у овој клаÑи" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Погледај да ова клаÑа поÑтоји" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Изабери" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Изабери прилагођена поља за чланке у Ñвим клаÑама" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Изабери тип базе података" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Изабери клаÑу" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Изабери прилагођено поље" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Изабери боју за одељак" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Изабери групу" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Изабери ред" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Изаберите ред за ваш нови лиÑтић" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Изабери одељак" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Изабери кориÑника" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Изабери чланак из %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Изабери чланак који треба укључити" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Изабери други језик" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Изабери поље" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Изабери прилагођена поља за Ñве редове" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Изабери прилагођена поља за Ñве кориÑничке групе" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Изабери прилагођена поља за Ñве кориÑнике" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Изабери прилагођена поља за лиÑтиће у Ñвим редовима" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Изабери прилагођена поља за транÑакције над лиÑтићима у Ñвим редовима" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Изабери датум" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Изабери датум и време" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Изабери више датума" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "Изабери више датума и времена" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Изабери више вредноÑти" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Изабери једну вредноÑÑ‚" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Изабери редове који ће бити приказани на Ñтрани \"РТ на први поглед\"" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Изабери теме за овај чланак" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Изабери до %1 датума" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "Изабери до %1 датума и времена" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Изабери до %1 вредноÑти" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Изабрана прилагођена поља" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Изабрани редови" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Изабрани кључ или није од поверења или више не поÑтоји." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Изабрани објекти" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Одабир је промењен. Молим Ñачувајте ваше промене" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Пошаљи е-пошту влаÑнику и Ñвим поÑматрачима" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Пошаљи е-пошту влаÑнику и Ñвим поÑматрачима као \"коментар\"" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Пошаљи е-пошту захтеваоцима и индиго копијама" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Пошаљи е-пошту захтеваоцима и индиго копијама као коментар" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Шаље поруку захтеваоцима" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Шаље пошту екÑплицитно наведеним индиго копијама и Ñлепим индиго копијама" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Шаље пошту индиго копијама" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Шаље пошту индиго копијама као коментар" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Шаље пошту админиÑтративним индиго копијама" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Шаље пошту админиÑтративним индиго копијама као коментар" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Шаље пошту влаÑнику" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Сеп" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Одвојите више уноÑа размаком." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "ПоÑтави приватни кључ" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Подешавања" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Кратка кориÑничка имена" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Да ли РТ треба да вам шаље пошту када ви ажурирате лиÑтиће?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Прикажи" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Прикажи картицу Ñа одобрењима" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Прикажи колоне" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Прикажи резултате" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Прикажи оÑобине лиÑтића на %1 нивоу" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Прикажи Ñав цитиран текÑÑ‚" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Прикажи одобрене захтеве" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Прикажи такође" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Прикажи Ñажетке заглавља" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Прикажи одбијене захтеве" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Прикажи цела заглавља" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Прикажи глобалне шаблоне" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Прикажи опиÑе веза" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "Прикажи да нема лиÑтића за захтеваоца" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Прикажи најпре најÑтарију иÑторију" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Прикажи захтеве у току" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Прикажи цитиран текÑÑ‚" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Прикажи захтеве који чекају туђа одобрења" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Прикажи захтеваочевих 10 активних лиÑтића Ñа највећим приоритетом" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Прикажи захтеваочевих 10 неактивних лиÑтића Ñа највећим приоритетом" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Прикажи захтеваочевих 10 лиÑтића Ñа највећим приоритетом" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Прикажи иÑторију лиÑтића" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Секач" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "Секачу је потребна фаÑцикла у коју ће упиÑивати дампове. Молим оÑигурајте да фаÑцикла %1 поÑтоји и да у њу може упиÑивати ваш веб Ñервер." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Бочна трака" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Потпиши" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "Потпиши Ñву аутоматÑки генериÑану пошту. %1Опрез%2: Омогућавањем ове опције Ñе мења Ð¿Ð¾Ñ‚Ð¿Ð¸Ñ Ð¸Ð· Ñнабдевајуће %3аутентификације%4 у Ñнабдевајући %3интегритет%4." #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Подразумевано потпиши" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Претплати Ñе као захтевалац лиÑтића или као лиÑтић или као ред индиго копија" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Претплати Ñе као лиÑтић или ред ÐдминиÑтраторÑкеИндигоКопије" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "Потпиши %1%2 кориÑтећи %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "ПотпиÑ" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "ЈедноÑтавно" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "ЈедноÑтавна претрага" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "ЈедноÑтруко" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Ðазив Ñајта" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Величина" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "ПреÑкочи мени" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "ПреÑкакање онемогућеног кориÑника" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Мало" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Ðеки прегледачи могу Ñамо да учитају Ñадржај Ñа иÑтог домена као и ваш РТ Ñервер." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Ðешто није у реду. Контактирајте админиÑтратора ÑиÑтема" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Поређај" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Ређање" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Извор" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Ðазначи да ли је ово дневно или недељно покретање." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "УнакрÑна табела" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Етапа" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "ЗауÑтавити" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Започните појам за претрагу Ñа називом подржаног поља праћеног двотачком, као у %1 и %2, како би екÑплицитно назначили тип претраге." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Покренуто" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "ПокренутСродник" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Почиње" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "ПочињеСродник" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "СтaÑše" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "СтатуÑ" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "Ð¡Ñ‚Ð°Ñ‚ÑƒÑ '%1' није важећи ÑÑ‚Ð°Ñ‚ÑƒÑ Ð·Ð° лиÑтић у овом реду" #: etc/initialdata:449 msgid "Status Change" msgstr "Промена ÑтатуÑа" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Ð¡Ñ‚Ð°Ñ‚ÑƒÑ Ñ˜Ðµ промењен из %1 у %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Промене ÑтатуÑа" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Крађа" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Крађа лиÑтића" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Корак %1 од %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Украден из %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Стил" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Тема" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Ознака теме" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Тема промењена у %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "ОзнакаТеме" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Пошаљи" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Претплати Ñе" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Претплати Ñе на инÑтрумент таблу %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Претплати Ñе на инÑтрумент табле" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Претплаћено на инÑтрумент таблу %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Претплата" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Ðије уÑпело прављење претплате: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Подаци Ñу уÑпешно дешифровани" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Подаци Ñу уÑпешно шифровани" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Преглед" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Ðед" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Ðедеља" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "СуÑпендовано" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "ПоÑтава ÑиÑтема" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Подразумеване вредноÑти ÑиÑтема" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "СиÑтемÑка грешка" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "СиÑтемÑка грешка: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "СиÑтемÑке алатке" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "СиÑтемÑка грешка" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "СиÑтемÑка грешка. Право није одобрено." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "СиÑтемÑкоГрупноПравило за унутрашњу употребу" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Узми" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Узми лиÑтиће" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Узето" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Реците нам нешто о томе како пронаћи базу података коју ће РТ кориÑтити" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Шаблон" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Шаблон #%1 је обриÑан" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Шаблон '%1' није пронађен" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "Шаблон Ñе преводи" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "Шаблон не Ñадржи Перл код" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Шаблон је празан" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Шаблон је обавезан аргумент" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Шаблон је рашчлањен" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Грешка рашчлањивања шаблона" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "Грешка рашчлањивања шаблона: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Шаблони" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Шаблони за ред %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "ТекÑÑ‚" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "ТекÑтуална датотека није приказана јер је онемогућена у преференцијама." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Ово је већ тренутна вредноÑÑ‚" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "То није вредноÑÑ‚ за ово прилагођено поље" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Тај лиÑтић има неразрешених завиÑноÑти" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Тај кориÑник је већ влаÑник тог лиÑтића" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Тај кориÑник не поÑтоји" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Тај кориÑник је већ привилегован" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Тај кориÑник је већ непривилегован" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Тај кориÑник је Ñада привилегован" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Тај кориÑник је Ñада непривилегован" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Тај кориÑник можда није влаÑник лиÑтића у том реду" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "То није нумерички идентификатор" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "ОÑнове" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "Индиго копија лиÑтића" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "КлаÑа чланка идентификованог Ñа %1 није примењена на тренутни ред" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "DBA-ова лозинка за базу података" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "ÐдминиÑтративна индиго копија лиÑтића" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Ðазив домена вашег Ñервера базе података (попут 'db.example.com')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "Следећа команда ће пронаћи Ñве активне лиÑтиће у реду 'опште' и поÑтавити њихов приоритет на 99 уколико Ñу иÑтекли:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Следећи упити Ñу обриÑани и Ñви ће бити уклоњени Ñа инÑтрумент табле када Ñе прозорÑко окно ажурира." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Следећи упити можда ниÑу видљиви Ñвим кориÑницима који могу да виде ову инÑтрумент таблу." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "Кључ је онемогућен" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "Кључ је опозван" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "Кључ је иÑтекао" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "Кључ је у потпуноÑти поверљив" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "Кључу Ñе може ултимативно веровати" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Ðова вредноÑÑ‚ је поÑтављена" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "ВлаÑник лиÑтића" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Страница коју Ñте захтевали није пронађена" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Захтевалац лиÑтића" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "Подешавања која Ñте одабрали Ñу Ñмештена у %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "СиÑтем није у могућноÑти да потпише одлазне поруке е-поште. Ово обично указује на то да је лозинка погрешно подешена или да ГПГ Ðгент не ради. Молим одмах упозорите админиÑтратора ÑиÑтема. ÐдреÑе проблема Ñу:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Тема" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Има неколико кључева погодних за шифровање." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "ПоÑтоје непрочитане поруке за овај лиÑтић." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "ПоÑтоји маргинално поверење у овај кључ" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "ПоÑтоји више од једне групе Ñа називом '%1'. Ово може проузроковати неуÑаглашеноÑÑ‚ између делова админиÑтраторÑког интерфејÑа и, према томе, препоручује Ñе да преименујете групе које Ñе Ñукобљавају." #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Ðема кључа погодног за шифровање." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Има Ñамо један погодан кључ, али ниво поверења није подешен." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Ове опције поÑтавки покривају неке оÑнове неопходне да би Ñе РТ покренуо и радио. Морамо да знамо име ваше РТ инÑталације и назив домена где ће РТ живети. Биће такође потребно да подеÑите лозинку за вашег подразумеваног админиÑтративног кориÑника." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Ово прилагођено поље не може имати ÑпиÑак вредноÑти" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "Ова клаÑа Ñе не примењује на тај објекат" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "Ово прилагођено поље нема типове иÑцртавача" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Ово ÑвојÑтво је доÑтупно Ñамо админиÑтраторима ÑиÑтема" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Ово ÑвојÑтво је доÑтупно Ñамо админиÑтраторима ÑиÑтема." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "Овај ÑерверÑки Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð½Ð¸Ñ˜Ðµ забележио ниједан SQL упит" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Овај алат омогућава кориÑнику да покрене произвољне перл модуле из РТ-а." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Изгледа да ова транÑакција нема Ñадржај" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "%1 %2 лиÑтића највишег приоритета овог кориÑника" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Чет" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Четвртак" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "ЛиÑтић" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "ЛиÑтић #%1 Ðамбо закрпа: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Графикон одноÑа лиÑтића #%1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "ЛиÑтић #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "ЛиÑтић %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "ЛиÑтић %1 направљен у реду '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "ЛиÑтић %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "ИÑторија лиÑтића # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "ЛиÑтић решен" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Претрага лиÑтића" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "ТранÑакције лиÑтића" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "ЛиÑтић и транÑакција" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "СаÑтав лиÑтића" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Садржај лиÑтића" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Тип Ñадржаја лиÑтића" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Ðије уÑпело прављење лиÑтића због унутрашње грешке" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Ðије уÑпело учитавање лиÑтића" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Приказ лиÑтића" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Метаподаци лиÑтића" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Ð¡Ñ‚Ð°Ñ‚ÑƒÑ Ð»Ð¸Ñтића је промењен" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Закрпа лиÑтића" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "Модул претраге TicketSQL" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "ЛиÑтићи" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "ЛиÑтићи %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "ЛиÑтићи %1 од %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "ЛиÑтићи чији Ñам ја влаÑник" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "ЛиÑтићи који завиÑе од овог одобрења:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Процењено време" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "ПреоÑтало време" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Време рада" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Време за приказивање" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "ПроцењеноВреме" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "ПреоÑталоВреме" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "ВремеРада" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "ВременÑка зона" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "ÐаÑлов" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "За" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Како би Ñе раÑпитали о подршци, тренингу, прилагођеном развоју или лиценцирању, молим контактирајте %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "Пребаци %quant(%1, упит, упити)" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "Пребаци траг Ñтека" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Речено" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "РеченоСроднику" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Ðлати" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Ðазив теме" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "Додато чланÑтво за тему" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "Уклоњено чланÑтво за тему" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Тема није пронађена" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Теме" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "укупно" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "ТранÑакција" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "ТранÑакција %1 је очишћена" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "ТранÑакција је направљена" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Прилагођена поља транÑакције" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "ТранÑакција -> Ðаправи није уÑпело јер ниÑте назначили тип објекта и идентификатор" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "ДатумТранÑакције" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "ТранÑакције ниÑу изменљиве" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Поверење" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Уто" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Уторак" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Тип" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Тип a: пре бројева чланака и t: пре бројева лиÑтића." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Тип је промењен из '%1' у '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "Ðије уÑпело додавање чланÑтва за тему" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "Ðије уÑпело бриÑање чланÑтва за тему у %1" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Ðије уÑпело одређивање типа објекта или идентификатора објекта" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Ðије уÑпело учитавање чланка" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "Ðије уÑпело подешавање КориÑникCSS: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "Ðије уÑело подешавање КориÑничкиЛого: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "Ðије уÑпело подешавање идентификатора приватноÑти: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "Ðије уÑпело подешавање објекта приватноÑти или идентификатора: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "Ðије уÑпело подешавање објекта приватноÑти: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Уклоните ознаку Ñа поља како би онемогућили обавештења наведеним примаоцима за Ñамо ову транÑакцију; упорним потиÑкивањем Ñе управља на Страница Ñа људима." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Опозови бриÑање" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "ÐˆÑƒÐ½Ð¸ÐºÑ Ð¿Ñ€Ð¸Ñ˜Ð°Ð²Ð°" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Ðепознато (није додељена вредноÑÑ‚ поверљивоÑти)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Ðепознато (ова вредноÑÑ‚ је нова ÑиÑтему)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Ðепознато ШифровањеСадржаја %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Ðепознато поље: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "Уколико не назначите одређени ÑтатуÑ, Ñамо лиÑтићи Ñа активним ÑтатуÑима (%1) бивају претражени." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Уклони ограничења" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Ðеограничено" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Ðеименована инÑтрумент табла" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Ðеименована претрага" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "ЛиÑтићи без влаÑника" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Ðепривилеговано" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Ðеобележена прилагођена поља" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Ðеобележени редови" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Ðеобележени објекти" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Уклони приватни кључ" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Ðеузети" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Ðжурирај" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Ðжурирај графикон" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Ðжурирај граф" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Ðжурирај лиÑтић" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Ðжурирај тип" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Ðжурирај формат и претрагу" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Ðжурирај више лиÑтића" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Ðжурирање није Ñнимљено." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Ðжурирај лиÑтић" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Ðжурирај лиÑтић #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Ðжурирај лиÑтић #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Тип ажурирања није био ни препиÑка ни коментар." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "ÐжурирајСтатуÑ" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Ðжурирано" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Ðжурирана Ñачувана претрага \"%1\"" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Отпреми" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Отпреми нови лого" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Отпреми више датотека" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Отпреми више Ñлика" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Отпреми једну датотеку" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Отпреми једну Ñлику" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Отпреми до %1 датотека" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Отпреми до %1 Ñлика" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Употреба:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "КориÑтити раÑпоред у две колоне за форме за прављење и ажурирање?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "КориÑтити аутоматÑко довршавање за проналажење влаÑника?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "КориÑти подразумевано (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "КориÑти друге РТ админиÑтративне алате" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "КориÑти подразумеване ÑиÑтемÑке вредноÑти (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "КориÑти падајуће меније како би одабрао које закрпе лиÑтића желите да издвојите у нови чланак." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "КориÑник" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "КориÑник (направљен - иÑтиче)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "кориÑнички дефиниÑано" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "КориÑничка права" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "КориÑник је затражио непознат тип закрпе за прилагођено поље %1 за %2 објекат #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Ðије уÑпело прављење кориÑника: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "КориÑник је направљен" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "КориÑник је онемогућен" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "КориÑник је омогућен" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "КориÑник има празну адреÑу е-поште" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "КориÑник је учитан" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "КориÑнички дефиниÑане групе" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "КориÑничко име" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Формат кориÑничког имена" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "КориÑници" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "КориÑници који одговарају критеријуму претраге" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "КориÑтим транÑакцију #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Важећи упит" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Овера" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "ВредноÑÑ‚" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "ВредноÑти" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Променљива" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Верзија" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Погледај шаблоне цедуља" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Погледај цедуље" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Погледај вредноÑти прилагођених поља" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Погледај прилагођена поља" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Погледај тачне одлазне поруке е-поште и њихове примаоце" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Погледај групу" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Погледај инÑтрумент табле групе" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Погледај личне инÑтрумент табле" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Погледај ред" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Погледај Ñачуване претраге" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Погледај ÑиÑтемÑке инÑтрумент табле" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Погледај приватне коментаре лиÑтића" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Погледај Ñажетке лиÑтића" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "УПОЗОРЕЊЕ: Чување претраге на нивоу приватноÑти кориÑника" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "WYSIWYG виÑина ÑаÑтављача" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "WYSIWYG ÑаÑтављач порука" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Упозорење! Ово ÐИЈЕ потпиÑано!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "ПоÑматрач" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "ГрупаПоÑматрача" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "ПоÑматрачи" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Ми Ñмо у могућноÑти да пронађемо вашу базу података и повежемо Ñе као админиÑтратор базе података. Можете кликнути на 'Прилагоди оÑнове' како би наÑтавили прилагођавање РТ-а." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Ðе можемо тренутно иÑцртати као ÑпиÑак када Ñе оÑнивају категорије на другом прилагођеном пољу. Молим кориÑтите други тип иÑцртавача." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Потребно нам је да знамо назив базе података коју ће РТ кориÑтити и где да је пронађе. Такође треба да знамо кориÑничко име и лозинку коју би РТ требало да кориÑти. РТ може за Ð²Ð°Ñ Ð´Ð° направи базу података и кориÑника, па због тога тражимо кориÑничко име и лозинку кориÑника Ñа привилегијама админиÑтратора базе података. Током корака 6 инÑталационог процеÑа ми ћемо кориÑтити ове информације како би направили и започели РТ-ову базу података." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Веб порт" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Сре" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Среда" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Ðедељно" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Ðедељни кратки приказ" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Добродошли у РТ!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Шта Ñам Ð´Ð°Ð½Ð°Ñ ÑƒÑ€Ð°Ð´Ð¸Ð¾(ла)" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Шта је РТ?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "У Ñлучајевима када РТ не може да обради поруку е-поште, где би требало да је проÑледи?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Када РТ шаље е-пошту он поÑтавља From: и Reply-To: заглавља како би кориÑници могли да допринеÑу конверзацији проÑто притиÑкајући Одговори у њиховом клијенту за пошту. Он кориÑти различите адреÑе за одговоре и коментаре. Оне могу бити промењене за Ñваки од ваших редова. Ове адреÑе треба да буду поÑтављење тако да кориÑте rt-mailgate програм." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Када је лиÑтић направљен" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Када је лиÑтић одобрења направљен, обавеÑти влаÑника и ÐдминИндигоКопије о Ñтавки која чека на њихово одобрење" #: etc/initialdata:137 msgid "When anything happens" msgstr "Када Ñе било шта догоди" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Када кликнете на 'Провери могућноÑÑ‚ повезивања Ñа базом података' може поÑтојати мало кашњење док РТ покуша да Ñе повеже Ñа вашом базом података" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Кад год Ñе лиÑтић затвори" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Кад год Ñе лиÑтић проÑледи" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Кад год Ñе лиÑтић одбије" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Кад год Ñе лиÑтић поново отвори" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Кад год Ñе лиÑтић реши" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Кад год Ñе лиÑтић или транÑакција проÑледе" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Кад год Ñе влаÑник лиÑтића измени" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Кад год Ñе приоритет лиÑтића измени" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Кад год Ñе измени лиÑтићев ред" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Кад год Ñе измени ÑÑ‚Ð°Ñ‚ÑƒÑ Ð»Ð¸Ñтића" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Кад год Ñе транÑкација проÑледи" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Кад год Ñе догоди кориÑнички дефиниÑани уÑлов" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Кад год наÑтупе коментари" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Кад год наÑтупи препиÑка" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Где пронаћи вашу sendmail бинарну датотеку." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "БриÑање" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "ПоÑао" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Телефон на поÑлу" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Рађено" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Да" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Ви можете уређивати ову инÑтрумент таблу и ваше претплате на њу у РТ-у." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Ви већ поÑедујете овај лиÑтић" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Ви можете да Ñкокнете до прве непрочитане поруке или да Ñкокнете до прве непрочитане поруке и означите Ñве поруке као погледане." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Ви такође можете уредити Ñаму предефиниÑану претрагу" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Ви можете убацити Ñадржај лиÑтића у било коју Ñлободну форму, текÑÑ‚ или вики поље." #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Ðе можете поÑтавити лозинку." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Ви можете поново доделити Ñамо оне лиÑтиће које поÑедујете или оне без влаÑника." #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Ви можете узети Ñамо оне лиÑтиће који немају влаÑника" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Можете претражити било коју реч у целој иÑторији лиÑтића куцајући %1реч." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Ðе можете променити ÑÑ‚Ð°Ñ‚ÑƒÑ Ð¸Ð· '%1' у '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Ви немате СуперКориÑник право." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Одјављени Ñте из РТ-а." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Ðемате дозволу за прављење лиÑтића у том реду." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Можете унети везе ка чланцима као \"a:###\", при чему ### предÑтавља број чланка." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Морате унети админиÑтративну лозинку" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "Морате подеÑити ЗапиÑникИзјава на true како би омогућили Ñтраницу Ñа иÑторијом за овај упит." #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Требало би да будете директно преуÑмерени на Ñтраницу за пријављивање. Моћи ћете да Ñе пријавите Ñа кориÑничким именом %1 и лозинком коју Ñте подеÑили раније." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Требало би да изаберете базу података која је вама или вашем админиÑтратору базе података најзгоднија." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Ви видите овај екран јер Ñте покренули РТ Ñервер без базе података која ради. Ðајвероватније ви први пут покрећете РТ. Уколико кликнете на \"%1\" иÑпод, РТ ће Ð²Ð°Ñ Ð¿Ñ€Ð¾Ð²ÐµÑти кроз поÑтављање вашег РТ Ñервера и базе података." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Добро дошли Ñте да Ñе поново пријавите" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Ваша лозинка није подешена." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "Ваш ÑиÑтем подржава аутоматÑке ÑугеÑтије боја за: %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Ваше кориÑничко име или лозинка ниÑу тачни" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "ПоштанÑки број" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Доле]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Горе]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ништа]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "прилагођено поље" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "активно" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "поÑле" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "и пре" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "и не" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "трака" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "пре" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "тело" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "одоздо на горе" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "обележите ово поље како би применили ову клаÑу глобално на Ñве редове." #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "обележите ово поље како би применили ово прилагођено поље на Ñве објекте." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "обележите ово поље како би уклонили ову клаÑу глобално и били у могућноÑти да изаберете одређене редове." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "обележите ово поље како би уклонили ово прилагођено поље Ñа Ñвих објеката и били у могућноÑти да одаберете одређене објекте." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "означи за додавање" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "кликните како би означили/уклонили ознаку Ñа Ñвих објеката одједном" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "оÑновне поÑтавке" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "направи лиÑтић" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "дневно у %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "обриÑано" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "не подудара Ñе" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "преузми" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "трајање" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "празно име" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "једнако као" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "грешка: не може Ñе померити надоле" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "грешка: не може Ñе померити на лево" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "грешка: не може Ñе померити на горе" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "грешка: нема шта да Ñе обрише" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "грешка: нема шта да Ñе помери" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "грешка: нема шта да Ñе промени" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "Ñваки" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "уÑпешно покренут додатак" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "потпуно" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "веће од" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "група" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "група '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "идентификатор" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "у клаÑи %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "неактивно" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "укључује %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "индекÑ" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "је" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "није" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "кључ је онемогућен" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "кључ је иÑтекао" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "кључ је опозван" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "Ñлева на деÑно" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "мање од" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "маргинално" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "подудара Ñе" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "макÑимална дубина" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "минута" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "измени РТ-ове поÑтавке" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "измени инÑтрумент таблу" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "измени или приÑтупи претрази" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "измените ваше преференције" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "меÑечно" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "меÑечно (дан %1) у %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "никада" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "ново" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "не" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "ништа" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "није једнако" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "ништа" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "објекти Ñу уÑпешно уклоњени" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "на" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "на дан" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "један" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "отвори" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "отвори/затвори" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "друго..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "изврши акције" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "пита" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "додатак је вратио празан ÑпиÑак" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "ред %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "одбијено" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "захтева покренут rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "решено" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "ÑдеÑна на лево" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "погледајте ÑпиÑак објеката иÑпод" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "поÑтавке Ñајта" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "зауÑтављено" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "изјава" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "редови Ñажетка" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "ÑиÑтем %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "ÑиÑтемÑка група '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "Referrer заглавље које је добијено од вашег прегледача (%1) није дозвољено од Ñтране РТ-овог поÑтављеног имена домена (%2)" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "Referrer заглавље које је добијено од вашег прегледача (%1) није дозвољено од Ñтране РТ-овог поÑтављеног имена домена (%2) или домена на белој лиÑти (%3)" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "позивајућа компонента није назначила због чега" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "подразумевана адреÑа која ће бити иÑпиÑана у From: и Reply-To: заглављима поште коментара." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "подразумевана адреÑа која ће бити иÑпиÑана у From: и Reply-To: заглављима поште препиÑке." #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "лиÑтић #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "одозго на доле" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "коначно" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "група без опиÑа %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "неограничено" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "ажурирај лиÑтић" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "ажурирај одобрење" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "ажурирај чланак" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "кориÑник" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "кориÑник %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "КориÑничко име" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "недељно" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "недељно ( %1 у %2)" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "Ñедмице" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "који може да %1 у ваше име." #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "на ком порту ваш Ñервер очекује конекције, нпр. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "Ñа заглављима" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "да" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "ваш прегледач није обезбедио Referrer заглавље" rt-4.4.2/share/po/cs.po0000664000175000017500000127143013131430353014527 0ustar vagrantvagrant# Czech translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2016-09-02 10:41+0000\n" "Last-Translator: Václav Ovsík \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%1 %3.%2.%4" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3.%2.%7 %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 pÅ™idán" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 zmÄ›nÄ›no na %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 smazán" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 smazán." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 neexistuje" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 je zakázán(o)" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 uložen." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 aktualizován." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 se Å¡ablonou %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) vytvoÅ™il %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (NezmÄ›nÄ›n)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (z panelu %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - argument k pÅ™edání %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Výstupní stav jde do STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Zadejte, zda chcete použít transakci 'first', 'last' nebo 'all'" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Zadejte název nebo ID Å¡ablony, které chcete použít" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Zadejte Äárkami oddÄ›lený seznam typů transakcí, které chcete použít" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Jaký podmínkový modul chcete použít" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Jaký vyhledávací modul chcete použít" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "%1 verze" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 pÅ™idáno jako hodnota pro %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "pÅ™ed %1" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 již existuje a má tabulky RT na svém místÄ›, ale neobsahuje metadata RT. PozdÄ›jší krok 'Inicializovat databázi' umí vložit metadata do této existující databáze. Je-li to pÅ™ijatelné, kliknÄ›te níže na 'Úprava základních údajů' pro pokraÄování v úpravÄ› RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 již existuje, ale neobsahuje tabulky RT ani metadata. PozdÄ›jší krok 'Inicializovat databázi' umí vložit tabulky a metadata do této existující databáze. Je-li to pÅ™ijatelné, kliknÄ›te níže na 'Úprava základních údajů' pro pokraÄování v úpravÄ› RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 vypadá jako lokální objekt, ale není v databázi" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 se zdá být plnÄ› inicializována. Nebudeme potÅ™ebovat vytvoÅ™it žádné tabulky ani vložit metadata, ale můžete pokraÄovat v úpravÄ› RT kliknutím níže na 'Úprava základních údajů'" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 uživatelem %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 zmÄ›nÄ›no z %2 na %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 zmÄ›nÄ›n z'%2' na '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "kopie %1" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 nemůže být nastaveno na %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 vytvoÅ™en" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 smazán" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 nepovolen" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 neexistuje." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 povolen" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 nejdůležitÄ›jších požadavků, které vlastním" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 je nástroj zpracující požadavky z vnÄ›jšího plánovacího nástroje jako je cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 je nástroj, který má být spuÅ¡tÄ›n z cronu, který odeÅ¡le vÅ¡echny odložené RT oznámení jako jednotlivé uživatele digest" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 je již nastaven(o) na %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 je adresa kde RT pÅ™ijímá poÅ¡tu. PÅ™idání jako '%2' by vytvoÅ™ilo poÅ¡tovní smyÄku" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 již není hodnotou uživatelské položky %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 není %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 není platný životní cyklus" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 problémy" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%quant(%1,poslední aktualizace Älánků,poslední aktualizace Älánků,posledních aktualizací Älánků)" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%quant(%1,nejnovÄ›jší Älánek,nejnovÄ›jší Älánky,nejnovÄ›jších Älánků)" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 nejnovÄ›jších nevlastnÄ›ných požadavků" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objekty" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 site konfig" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 aktualizace: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 aktualizace: beze zmÄ›ny" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 aktualizován" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1's souÄasné heslo" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Řídící panely patřící %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "Å ifrovací klíÄe pro %1" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "Uložené dotazy patřící %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: neudána příloha" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "%1 B" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "%1 kB" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Nový požadavek v%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "%1T" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "%1R" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,Älánek,Älánky,Älánků)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,dnem,dny,dny)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,hodina,hodiny,hodin)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,hodina,hodiny,hodin) (%quant(%2,minuta,minuty,minut))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,minuta,minuty,minut,minut)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,mÄ›sícem,mÄ›síci,mÄ›síci)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,vteÅ™inou,vteÅ™inami,vteÅ™inami)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,týdnem,týdny,týdny)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,rokem,roky,roky)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' není platný název." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' není platný identifikátor třídy" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(ZaÅ¡krtávací políÄko k dokonÄení)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(ZatrhnÄ›te pro smazání)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(ZaÅ¡krtávací políÄka k odstranÄ›ní)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "(Smazat vÅ¡echny hodnoty)" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Zadejte identifikátory Äi URL požadavku, oddÄ›lené mezerami)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Pro prázdné pole se použije %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Žádné uživatelské položky)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Žádní Älenové)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Žádné scripy)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Žádné Å¡ablony)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(ZaÅ¡le kopii této aktualizace Äárkami oddÄ›lenému seznamu e-mail adres. Tito lidé budou dostávat budoucí aktualizace.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(ZaÅ¡le kopii této aktualizace Äárkami oddÄ›lenému seznamu e-mail adres. Tito lidé budou dostávat budoucí aktualizace.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Použijte tyto položky, pokud jste v podmínce nebo akci vybrali hodnotu 'Uživatelem definované')" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(vÅ¡e)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(žádné shrnutí)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(beze jména)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(žádný veÅ™ejný klíÄ!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(bez hodnoty)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(bez hodnot)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(Äeká na %quant(%1,jiný požadavek,jiné požadavky,jiných požadavků))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(oÄekávájící schválení)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(povinné)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(důvěřovat: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(nepojmenováno)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(nedůvÄ›ryhodný!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id je zastaralý argument a nemůže být použit s --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--transaction argument může být pouze 'first', 'last' nebo 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 vteÅ™in" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Å ablona s tímto jménem již existuje" #: etc/initialdata:258 msgid "A blank template" msgstr "Prázdná Å¡ablona" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Heslo nebylo nastaveno, uživatel se nebude moci pÅ™ihlásit." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE nenalezeno" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACE mohou být pouze vytvářeny nebo ruÅ¡eny." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "O mnÄ›" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Řízení přístupu" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Akce" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Akce '%1' nenalezena" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Akce provedena." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Akce je povinným parametrem" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Akce pÅ™ipravena..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Akce" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Aktivní požadavky" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Aktivní požadavky pro %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "PÅ™idat %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "PÅ™idat AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "PÅ™idat záložku" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "PÅ™idat Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "PÅ™idat sloupce" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "PÅ™idat podmínku" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "PÅ™idat další soubory" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "PÅ™idat žadatele" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "PÅ™idat hodnotu" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "PÅ™idat komentáře Äi odpovÄ›di k vybraným požadavkům" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "PÅ™idat skupinu" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Vložit sem" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "PÅ™idat Äleny" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "PÅ™idat nové pozorovatele" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "PÅ™idat práva pro %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "PÅ™idat tyto podmínky" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "PÅ™idat tyto podmínky a hledat" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "PÅ™idat uživatele" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "PÅ™idat hodnoty" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "PÅ™idávat, upravovat a mazat hodnoty vlastní položky pro objekty" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "PÅ™idáno" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adresa" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Adesa 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adresa1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adresa2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Administrativní komentář" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Administrativní korespondence" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Správa front" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Správa/Globální konfigurace" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Administrativní heslo" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "PokroÄilé" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Rozšířené vyhledávání" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Po pÅ™ihlášení budete pÅ™esmÄ›rováni na původní adresu:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Operátor" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "VÅ¡echna schvalování proÅ¡la" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "VÅ¡echny Älánky v této třídÄ› by mÄ›ly být uvedeny jako rozbalovcí na strance odpovÄ›di." #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "VÅ¡echny třídy" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "VÅ¡echny uživatelské položky" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "VÅ¡echny panely" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "VÅ¡echny fronty" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "VÅ¡echny požadavky" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "" #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "VÅ¡echny fronty odpovídající zadaným kritériím" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "VÅ¡echny požadavky" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "VÅ¡echny témata" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Povolit vytváření uložených dotazů" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Povolit nahrání uložených dotazů" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Povolit psaní kódu Perl v Å¡ablonách, skriptech, atd." #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Již je zaÅ¡ifrováno" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Vyskytla se chyba" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "RoÄnÄ›" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Každé pole" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Každé nerozpoznané slovo je vyhledáno v pÅ™edmÄ›tu požadavku." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Vztahuje se na" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Aplikovaný na vÅ¡echny objekty" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Provést" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Provést globálnÄ›" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Používat vybrané scripy" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Provést zmÄ›ny" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Schvalování" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Schválení #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Schválení #%1: Poznámky neuloženy kvůli systémové chybÄ›" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Schválení #%1: Poznámky uloženy" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Schvalování proÅ¡lo" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Schvalování pÅ™ipraveno pro vlastníka" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Schvalování odmítnuto" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Schválit" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "dub" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "ÄŒlánek #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "ÄŒlánek #%1 nenalezen" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "ÄŒlánek #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "ÄŒlánek #%1 vytvoÅ™en" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Administrace pro Älánky" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "ÄŒlánek nenalezen" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "ÄŒlánky" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "ÄŒlánky pro téma %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Nalezeny Älánky %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "ÄŒlánky bez témat" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "VzestupnÄ›" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "PÅ™idávat a odebírat uživatelské položky ke frontÄ›" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "PÅ™iložit" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "PÅ™ipojit soubor" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "PÅ™ipojený soubor" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Příloha" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Příloha '%1' nemůže být nahrána" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Příloha vytvoÅ™ena" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Jméno souboru přílohy" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Přílohy" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Å ifrování příloh je zakázáno" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Atribut smazán" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "srp" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "Automatické vytvoÅ™ení úÄtu selhalo" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Automatické barevné návrhy tématu nejsou dostupné pro váš obrázek. Může to být tím, že jste nahráli obrázek, který není podporován nainstalovanou verzí knihovny GD. Podporované typy obrázků jsou: %1. NovÄ›jší verze libgd a GD.pm mohou obsahovat podporu pro další typy obrázků." #: etc/initialdata:261 msgid "Autoreply" msgstr "Automatická odpovÄ›Ä" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Automaticky odpovÄ›z žadatelům" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Dostupné" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "PrůmÄ›rný odhadovaný Äas" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "PrůmÄ›rný zbývající Äas" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "PrůmÄ›rný Äas práce" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "ZpÄ›t" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Základní údaje" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Skrytá kopie" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Prázdný" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "TÄ›lo" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "TuÄné" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Záložka" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Záložkovatelný odkaz tohoto hledání" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Záložky" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Záložky" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Prohlížet podle tématu" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Procházet SQL příkazy provedené v tomto procesu" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Hromadná úprava" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "PÅ™ed název uživatelské položky (custom field) je potÅ™eba zadat cf., syntaxe je %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "SpoÄítat" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "SpoÄítat hodnoty pro" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Nelze naÄíst uložený dotaz \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Nelze mÄ›nit systémové uživatele" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Uživatelské položce nelze pÅ™idat hodnotu beze jména" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Nelze nalézt uložený dotaz ke zpracování" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Nemohu pÅ™eposlat: není zadána platná e-mailová adresa" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Požadavek nelze svázat se sebou samým" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Nelze odkazovat na smazaný požadavek" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Nelze slouÄit požadavek sám do sebe" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Nelze uložit %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Tento dotaz nelze uložit" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "Nelze zadat zároveň zdroj i cíl" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Nelze pÅ™idat odkaz na prosté Äislo" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Nelze vytvářet požadavky v zablokované frontÄ›." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategorie založit na" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategorie" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "ZmÄ›nit" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "ZmÄ›na hesla" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "ZmÄ›na fronty není implementována" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Graf" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "OznaÄ vÅ¡e" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Kontrola pÅ™ipojení k databázi" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Zkontrolujte databáze pověření" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "ZaÅ¡rtnutím odstraníte" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Potomek" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Potomci" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Vyberte Database Engine" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Vyberte z témat pro %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "MÄ›sto" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Třída" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Název třídy" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Třída nemohl být vytvoÅ™ena: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "ID třídy" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Třída je již uplatňována globálnÄ›" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Třída je již aplikována na %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Třídy" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Vymazat" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "OdznaÄ vÅ¡e" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "KliknÄ›te níže na \"DokonÄit instalaci\" pro dokonÄení průvodce." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "KliknÄ›te na \"Inicializovat databázi\" pro vytvoÅ™ení databází RT a vložení výchozích metadat. Může to trvat nÄ›jakou chvíli" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Kliknutím vyberte barvu" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "UzavÅ™en" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "UzavÅ™ené požadavky" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Vybrat nebo zadat více hodnot" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Combobox: Vybrat nebo zadat jednu hodnotu" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Combobox: Vybrat nebo zadat nejvýše %quant(%1,hodnotu,hodnoty,hodnot)" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Komentovat" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Adresa pro komentáře" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Adresa pro komentáře" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Komentovat požadavky" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Poznámky" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Komentář (Neposílá se žadatelům)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Poznámky o tomto uživateli" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Komentáře pÅ™idány" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Commit v zárodku" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Podmínka" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Podmínka '%1' nenalezena" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Podmínka je povinným parametrem" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Podmínky splnÄ›ny..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Podmínka, akce a Å¡ablona" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "KonfiguraÄní soubor %1 je uzamÄen" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Konfigurace fronty %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Spojení úspěšnÄ› navázáno" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Kontaktujte vaÅ¡eho správce RT." #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Obsah" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "vložena neplatná IP adresa" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "vložen neplatný IP adresní rozsah" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Adresa pro odpovÄ›di" #: etc/initialdata:393 msgid "Correspondence" msgstr "Korespondence" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Korespondence zaznamenána" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Korespondence v HTML" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Nelze pÅ™idat novou hodnotu uživatelské položky: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Nelze zmÄ›nit vlastníka: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Nelze vytvoÅ™it uživatelskou položku: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Nelze vytvoÅ™it skupinu" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Nelze vytvoÅ™it vyhledávání: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Nelze vytvoÅ™it požadavek. Nenastavena fronta" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Nelze vytvoÅ™it uživatele" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Nelze odstranit vyhledávací %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Nemůžu najít skupinu '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Nemůžu najít nebo vytvoÅ™it uživatele '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Nelze nahrát atribut %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Nelze naÄíst třídu %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Nelze nahrát uživatelskou položku %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Nelze naÄíst skupinu" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Nelze nahrát objekt pro %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Nelze nastavit uživatelské informace" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Nemůžu upravit sloupec %1: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Nelze pÅ™idat přílohu" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Do skupiny nelze pÅ™idat Älena" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Nelze vytvoÅ™it transakci: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Nelze vytvoÅ™it záznam: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Nelze smazat řídící panel %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Nemohu nalézt řádek" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Nelze nalézt zadaného uživatele Äi zadanou skupinu" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Tuto hodnotu nelze nalézt" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Nelze naÄíst třídu %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Nelze naÄíst uživatelskou položku #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Nelze naÄíst uživatelskou položku #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Nelze naÄíst uživatelskou položku %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Nelze naÄíst kopii požadavku #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Nelze naÄíst řídící panel %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Nelze naÄíst skupinu #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Skupinu %1 nelze naÄíst" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Vazbu nelze naÄíst" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "Nemohu naÄíst link: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Nelze nahrát objekt %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Nelze naÄíst nebo vytvoÅ™it uživatele: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Frontu nelze naÄíst" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Nelze naÄíst frontu #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Frontu %1 nelze naÄíst" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Frontu '%1' nelze naÄíst" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Nelze naÄíst scrip #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Nelze naÄíst Å¡ablonu #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Nelze naÄíst zadaného uživatele Äi zadanou skupinu" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Požadavek '%1' nelze naÄíst" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Nelze naÄíst transakci #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Nemohu naÄíst uživatele" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Nelze naÄíst uživatele #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Nomohu naÄíst uživatele #%1 Äi uživatele '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Nemohu naÄíst uživatele '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Nelze nahradit obsah deÅ¡ifrovanými daty: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Nelze nahradit obsah zaÅ¡ifrovanými daty: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Nelze pÅ™eložit zdroj '%1' do URI." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Nelze pÅ™eložit cíl '%1' do URI." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "ZemÄ›" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "VytvoÅ™it" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "VytvoÅ™it požadavky" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "VytvoÅ™ení třídy" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "VytvoÅ™it uživatelskou položku" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "VytvoÅ™ení uživatelské položky pro frontu %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "VytvoÅ™it nový Älánek" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "VytvoÅ™it Älánek ve třídÄ›:" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "VytvoÅ™it nový řídící panel" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "VytvoÅ™it novou skupinu" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "VytvoÅ™ení nové Å¡ablony pro frontu %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "VytvoÅ™it nového uživatele" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "VytvoÅ™it frontu" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "VytvoÅ™it Å¡ablonu" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "VytvoÅ™it požadavek" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "VytvoÅ™it požadavek s tímto uživatelem jako Žadatelem ve frontÄ›" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "VytvoÅ™it Älánek" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "VytvoÅ™it Älánek ve třídÄ›..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "VytvoÅ™it Älánek v téhle tříde" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "VytvoÅ™it skupinu řídicích panelů" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Vytvářet požadavky podle téhto scripu Å¡ablony" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "VytvoÅ™it osobní řídící panely" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "VytvoÅ™it systémové řídící panely" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "VytvoÅ™it požadavek" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "VytvoÅ™it požadavky" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Vytvářet, upravovat a mazat položky seznamu přístupových práv" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Vytvářet, upravoat a mazat uživatelské položky" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Vytvářet, upravovat a mazat hodnoty uživatelských položek" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Vytvářet, upravovat a mazat frontu" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Vytvářet, upravovat a ruÅ¡it uložené dotazy" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Vytvářet, upravovat a mazat uživatele" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "VytvoÅ™eno" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Kým vytvoÅ™eno" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Uživatelská položka %1 vytvoÅ™ena" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "VytvoÅ™il" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "VytvoÅ™en dotaz %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "Kým vytvoÅ™eno" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "VytvoÅ™eno pÅ™ed" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Tvůrce" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Å ifrování" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Aktuální relace" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "SouÄasné hledání" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Aktuální Älenové" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Aktuální dotaz" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Aktuální pozorovatelé" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Uživatelské položky" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Uživatelské položky pro %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Uživatelské položky pro frontu %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "Kód uživatelské akce" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Přípravný kód uživatelské akce" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Uživatelská podmínka" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Uživatelská položka #%1 není aplikována na tento objekt" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Uživatelská položka %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Uživatelská položka %1 se nevztahuje k tomuto objektu" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Uživatelská položka %1 má hodnotu." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Uživatelská položka %1 nemá hodnotu." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Uživatelská položka %1 nenalezena" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Hodnota %1 nemůže být nalezena v uživatelské položce %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Hodnota uživatelské položky nemůže být smazána" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Hodnota uživatelské položky smazána" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Uživatelská položka" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "Hodnota uživatelské položky" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Upravit" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Úprava základních údajů" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Úprava emailových adres" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Úprava konfigurace emailu" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Upravit řídící panely v menu" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Upravit vzhled RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Heslo DBA" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Uživatelské jméno DBA" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Denní" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Denní pÅ™ehled" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Řídící panel" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Řídící panel nemůže být vytvoÅ™en: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Řídící panel nemůže být aktualizován: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Řídící panel aktualizován" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Řídící panely" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Řídící panely v menu" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Řídící panely v menu pro uživatele %1" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Adresa databázového serveru" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Jméno databáze" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Databázové heslo pro RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Port databázového serveru" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Typ databáze" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Databázové uživatelské jméno pro RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Formát datumu" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Termíny" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "pro" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "DeÅ¡ifrovat" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Implicitní fronta" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "ImplicitnÄ›: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "ImplicitnÄ›: %1/%2 zmÄ›neno z %3 na %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Smazat" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Smazat Å¡ablonu" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Nelze smazat: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Smazat řídící panel skupiny" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Operace smazání není povolena v konfiguraci životního cyklu" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Smazat osobní řídící panely" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Smazat systémové řídící panely" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Smazat požadavky" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Smazat hodnoty" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Smazané dotazy" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Smazaný uložený dotaz" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Smazán dotaz %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Smazání tohoto objektu by mohlo poruÅ¡it referenÄní integritu" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Smazání tohoto objektu by mohlo naruÅ¡it referenÄní integritu" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Zamítnout" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Je rekvizitou pro" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "Je rekvizitou pro" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "PÅ™idána závislost %1" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Závislost %1 smazána" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "PÅ™idána závislost na %1" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Závislost na %1 smazána" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "Závisející na" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Závisející na" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "Závisející na" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "SestupnÄ›" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "PopiÅ¡te případ níže" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Popis" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Podrobné informace o nastavení RT" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Podrobnosti" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "SmÄ›r" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Zakázáno" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Zobrazit" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Zobrazit přístupová práva" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Zobrazit Älánek %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Zobrazované položky" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "VÅ¡echny přílohy s prostým textem zobrazit pomocí fontu s pevnou šířkou pÅ™i zachování formátování a zalamování dle potÅ™eby." #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Zobrazit přílohy s prostým textem pomocí neproporcionálního fontu" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Zobrazit požadavek po 'Rychlém vytvoÅ™ení'" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "DÄ›lat cokoli a vÅ¡echno" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Doménové jméno" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Nesmí obsahovat http://, ale pouze nÄ›co jako 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Neobnovovat domácí stránku" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Neobnovovat výsledky vyhledávání." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Neobnovovat tuto stránku." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Tomuto klíÄi vůbec nedůvěřovat" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Stáhnout" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Stáhnout dumpfile" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "Soubory pÅ™etáhnÄ›te sem nebo kliknÄ›te pro pÅ™ipojení" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Rozbalovací nabídka" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Termín dokonÄení" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "Termín pÅ™ed" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "CHYBA: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Jednoduchá úprava vaÅ¡ich otevÅ™ených požadavků" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "PÅ™ehledné zobrazení VaÅ¡ich pÅ™ipomenutí" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Upravit" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Upravit uživatelské položky" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Upravit uživatelské položky pro %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Upravit uživatelské položky pro vÅ¡echny skupiny" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Upravit uživatelské položky pro vÅ¡echny fronty" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Upravit uživatelské položky pro vÅ¡echny uživatele" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Upravit uživatelské položky pro Älánky ve vÅ¡ech třídách" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Upravit uživatelské položky pro požadavky ve vÅ¡ech frontách" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Upravit vazby" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Upravit dotaz" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Úprava dotazu" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Upravit globální hierarchii témat" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Úprava systémových Å¡ablon" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Upravit hierarchii témat pro třídu %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Úprava uživatelské položky %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Úprava Älenství ve skupinÄ› %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Zdroj Äi cíl musí být zadán" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "BuÄ nemáte oprávnÄ›ní pro zobrazení uloženého dotazu %1 nebo je identifikátor nesprávný" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "Uplynulo" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Emailová adresa" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Emailový pÅ™ehled" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Emailová adresa je použita" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "DoruÄování zpráv" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Å ablona emailu pro opakované upozorňovací sestavy" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "Emailová adresa" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "Prázdná" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "Povolit skládání citací (folding)?" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Povoleno" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Povolena (zruÅ¡ením zatrhnutí zablokujete tuto třídu)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Povolena (zruÅ¡ením zatrhnutí zablokujete tuto uživatelskou položku)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Povolena (zruÅ¡ením zatrhnutí zablokujete tuto skupinu)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Povoleno (zruÅ¡ení zatrhnutí zablokuje tuto frontu)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Povolen (zruÅ¡ením zatrhnutí zablokujete tento scrip)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Povolené třídy" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Povolené fronty" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Povolené fronty, které odpovídají zadané podmínce" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Povolen stav %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Å ifrovat" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "ImplicitnÄ› Å¡ifrovat" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Å ifrovat/DeÅ¡ifrovat" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Å ifrovat/DeÅ¡ifrovat transakci #%1 požadavku #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Vložte Älánky, požadavky Äi nÄ›jaká URL související s tímto Älánkem." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Zadejte více IP adresních rozsahů" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Zadejte více IP adres" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Vyplnit více hodnot" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Vyplnit více hodnot s automatickým doplňováním" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Zadejte objekty Äi URI k provázání. Více položek oddÄ›lujte mezerami." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Zadejte jednu IP adresu" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Zadejte jeden IP adresní rozsah" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Vyplnit jednu hodnotu" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Vyplnit jednu hodnotu s automatických doplňováním" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Zadejte fronty Äi URI k provázání. Více položek oddÄ›lujte mezerami." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Zadejte požadavky Äi URI k provázání. Více položek oddÄ›lujte mezerami." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "PÅ™ednastavit vkládání Äasu na hodiny" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Zadejte max. %quant(%1,rozsah IP adres,rozsahy IP adres, rozsahů IP adres)" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Zadejte max. %quant(%1,IP adresu,IP adresy,IP adres)" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Zadejte nejvýše %quant(%1,hodnotu,hodnoty,hodnot)" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Vyplnit nejvýše %quant(%1,hodnotu,hodnoty,hodnot) s automatickým doplňováním" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "Slova %1, %2, %3 nebo %4 omezí výsledky na jeden z přísluÅ¡ných typů stavů. Můžete zadat i konkrétní stav (anglicky, napÅ™. new, open, resolved) - výsledky se omezí na přísluÅ¡ný stav." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "PromÄ›nné prostÅ™edí" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Chyba" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Chyba: chybÄ›jící řídící panel" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Chyba: Å¡patná data GnuPG" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Chyba: žádný soukromý klíÄ" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Chyba: veÅ™ejný klíÄ" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Eskalovat požadavky" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Odhadovaný" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "VÅ¡ichni" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Příklad:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "VyprÅ¡et" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "Rozšířený stav" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Externí autentizace povolena." #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Doplňkové údaje" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Vytáhnout Älánek" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Vytáhnout znaÄku z pÅ™edmÄ›tu e-mailu" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "VytvoÅ™it nový Älánek z požadavku #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "VytvoÅ™it Älánek ve třídÄ› %2 z požadavku #%1" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Nelze se pÅ™ipojit k databázi: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Nelze vytvoÅ™it atribut %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Nenalezena pseudoskupina uživatelů 'Privilegovaný'." #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Nenalezena pseudoskupina uživatelů 'Neprivilegovaný'" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Nelze naÄíst %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Nelze naÄíst %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Nelze naÄíst modul %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Nelze naÄíst objekt pro %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Nelze naÄíst Å¡ablonu" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "NepodaÅ™ilo se naÄíst požadavek %1" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Nelze urÄit Å¡ablonu" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "úno" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Zdroje" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Pole" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Zdroj hodnot položky:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Název souboru" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Vyplňte argumenty" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Obarvit políÄka dle zmÄ›ny atributu" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Vyplnit více textových oblastí" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Vyplnit více wiki textových oblastí" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Vyplnit jednu textovou oblast" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Vyplnit jednu wiki textovou oblast" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Do této položky zadejte URL." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Vyplnit nejvýše %quant(%1,textovou oblast,textové oblasti,textových oblastí)" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Vyplnit nejvýše %quant(%1,wiki textovou oblast,wiki textové oblasti,wiki textových oblastí)" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Koncová priorita" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "Koncová priorita" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Najdi uživatele" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Najdi vÅ¡echny uživatele jejichž" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Najít skupiny jejichž" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Najít osoby, jejichž" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Nalézt požadavky" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "Najdi uživatele" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Otisk prstu" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "DokonÄit" #: share/html/Elements/Tabs:878 msgid "First" msgstr "První" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "S prosbou o místní podporu se obraÅ¥te na %1" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "VÅ¡echny možnosti vyhledávání jsou dostupné pÅ™es %1tvůrce dotazu%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Vynutit zmÄ›nu" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formát" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "PÅ™eposlat" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "PÅ™eposlat zprávu" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "PÅ™eposlat zprávu a zpÄ›t" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "PÅ™eposlat požadavek" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "PÅ™eposílat zprávy mio RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "PÅ™eposlat požadavek %1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "PÅ™eposlat transakci #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "PÅ™eposlání požadavku na %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "%numerate(%1,Nalezen,Nalezeny,Nalezeno) %quant(%1,požadavek,požadavky,požadavků)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Nalezen objekt" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "ÄŒetnost" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Pá" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Pátek" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Od" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "Knihovná GD není nainstalována nebo je zakázána. Můžete nahrát obrázek, ale nebudete dostávat automatické barevné návrhy." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Obecné" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Práva pro vÅ¡echny" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Úvod" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "PÅ™edáno %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Globální" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Globální atributy" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Globální témata" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Globální konfigurace uživatelských položek" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "Globální řídící panely v menu uloženy" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Uloženo '%1' globálního pÅ™ehledu RT." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "GnuPG soukromý klíÄ" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "SpusÅ¥" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Jdi na skupinu" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Jdi na uživatele" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "SpusÅ¥!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "PÅ™ejít na požadavek" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "PÅ™ejít na požadavek" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Diagram" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Vlastnosti diagramu" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Grafické grafy nejsou dostupné." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Skupina" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Práva skupiny" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Skupina již má Älena: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "Seskupit" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Skupina nemůže být založena: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Skupina vytvoÅ™ena" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Skupina zakázána" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Skupina povolena" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Skupina nemá takového Älena" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Skupina s názvem '%1' se již používá" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Skupina nenalezena" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "Seskupit požadavky dle" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Skupiny" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Skupiny nemohou být svými Äleny" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Skupiny splňující vyhledávací podmínku" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "Skupiny, jejichž je uživatel Älenem (zatrhnÄ›te pro smazání)" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "Skupiny, jejichž není uživatel Älenem (zatrhnÄ›te pro pÅ™idání)" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Skupiny, do nichž uživatel patří" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "Je Älenem" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Záhlaví pÅ™eposlaného požadavku" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Záhlaví pÅ™eposlané zprávy" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "Výška" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Ahoj!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Pomožte nám nastavit nÄ›které užiteÄné implicitní hodnoty pro RT." #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Skrýt vÅ¡echen citovaný text" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Skrýt citovaný text" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "Skrýt prázdné položky" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "Skrýt prázdné položky?" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historie" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Historie Älánku #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Historie skupiny %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Historie fronty %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Historie uživatele %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Telefon domů" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Interval obnovování domácí stránky." #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Domovská stránka" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Hodina" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "HodinovÄ›" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Hodin" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Mám %quant(%1,míchaÄku,míchaÄky,míchaÄek)" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "Identifikátor" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identita" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Odmítni původce a zruÅ¡ stávající schválení, bylo-li zamítnuto schválení" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "Pokud toto není co jste oÄekávali, opusÅ¥te tuto stránku bez pÅ™ihlaÅ¡ování." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Pokud by byl tento nástroj setgid, místní uživatel by jej mohl použit k získaní administrativního přístupu k RT" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Pokud již máte funkÄní RT server i databázi, mÄ›li byste využít této příležitosti k ověření, že váš databázový server běží a že se s ním RT server může spojit. Až to udÄ›láte, zastavte a znovu spusÅ¥te RT server.

    " #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "Pokud opravdu zamýšlíte navÅ¡tívit %1 a %2, tak %3kliknÄ›te zde pro povedení Vaší žádosti%4." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Pokud jste zmÄ›nili cokoli nahoÅ™e, nezapomeňte" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Pokud vámi upÅ™ednostňovaná databáze není uvedena v rozbalovacím menu níže, tak to znamená, že RT nenaÅ¡el její lokálnÄ› nainstalovaný databázový ovladaÄ. MÄ›li byste bých schopni to napravit za použití %1 stažením a instalací DBD::MySQL, DBD::Oracle nebo DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Neplatná hodnota pro %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "Obrázek se nezobrazuje, protože je to zakázáno v systémové konfiguraci." #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "NemÄ›nná položka" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Neaktivní požadavky" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Vložit Älánek:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "Vložit dotaz" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Zahrnout název Älánku" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Zahrnout pÅ™ehled Älánku" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "VÄetnÄ› tabulky s daty" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Zahrnout blokované třídy do výpisu." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Zahrnout blokované uživatelské položky do výpisu." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Zahrnout blokované skupiny do výpisu." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Zahrnout blokované fronty do výpisu." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Zahrnout blokované uživatele do vyhledávání." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Zahrnout stránku" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "vÄetnÄ› podtémat" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Jednotlivé zprávy" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informovat vlastníka RT, že uživatel(é) má problémy s veÅ™ejnými klíÄi" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informovat uživatele, že zpráva, kterou odeslal, má neplatná GnuPG data" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informovat uživatele, že má problémy s veÅ™ejným klíÄem a nemůže pÅ™ijímat zaÅ¡ifrovaný obsah" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Informovat uživatele, že jeho heslo bylo obnoveno" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informovat uživatele, že jsme obdrželi zaÅ¡ifrovaný email a nemáme soukromé klíÄe pro jeho deÅ¡ifrování" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "PoÄáteÄní priorita" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "PoÄáteÄní priorita" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Inicializovat databázi" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Chyba na vstupu" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Vstup musí odpovídat %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "VnitÅ™ní chyba: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Interní chyba: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "Neplatný %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Neplatná %1: '%2' nevypadá jako emailová adresa" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Neplatný %1: mÄ›lo by to být Äíslo" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Neplatná třída" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Neplatný zdroj hodnot uživatelské položky" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Neplatná fronta, nelze pÅ™iÅ™adit třídu: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "Neplatný způsob zobrazení" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Neplatný způsob zobrazení pro uživatelskou položku typu %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Neplatná data" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Nesprávný klÃ­Ä %1 pro adresu '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Neplatný objekt" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Neplatná Å¡ablona: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Neplatná fronta" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "Nesprávné id fronty" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Neplatné právo" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Neplatná syntax pro emailovou adresu" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Neplatná hodnota pro %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Neplatná hodnota pro uživatelskou položku" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Není zaÅ¡ifrováno" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Je nesmírnÄ› důležité, aby neprivilegovaní uživatelé nemohli spustit tento nástroj." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Pro spuÅ¡tÄ›ní tohoto nástroje se doporuÄuje založení neprivilegovaného UNIXového uživatele se správným skupinovým Älenstvím a přístupem do RT." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Používá nÄ›kolik parametrů:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Kurzíva" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "led" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "PÅ™ipojit se ke skupinÄ› Äi ji opustit" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Äec" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Maxi" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Äen" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Pokud si nejste jisti, nechejte 'localhost'. Nechejte nevyplnÄ›né, pokud se chcete pÅ™ipojit lokálnÄ› pÅ™es soket" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "KlíÄové slovo a intuitivní vyhledávání" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Jazyk" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Jazyk" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Velké" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Poslední" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Poslední kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Naposledy kontaktován" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Naposledy aktualizován" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Naposledy aktualizoval(a)" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Poslední aktualizace" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Naposledy aktualizoval(a)" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "Naposledy aktualizován" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "Naposledy aktualizoval(a)" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "Aktualizováno pÅ™ed" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Nechejte prázdné, pokud chcete použít implicitní hodnotu vaší databáze" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Nechte být, pokud chcete použít implicitní uživatelské jméno DBA pro váš typ databáze" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Zbývá" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "VysvÄ›tlivky" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Délka ve znacích. Použijte '0' pro zobrazení celé Äásti zprávy bez ohledu na její délku." #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Umožnit tomuto uživateli přístup k RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Umožnit dávat tomuto uživateli práva" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "PokraÄovat" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Životní cyklus" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Odkaz" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Vazba již existuje" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Vazba nenalezena" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Svázat požadavek #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Odkazuje na" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Spojený" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "Odkazuje na" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Vazby" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "Odkazuje na" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Seznam hodnot" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "NaÄíst" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "NaÄtení uloženého dotazu" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "NaÄíst uložené vyhledávání" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "NaÄíst uložený dotaz:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "NaÄten %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "NaÄtené konfiguraÄní soubory" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "NaÄten původní \"%1\" uložený dotaz" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "NaÄtené perlovské moduly" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "NaÄten uložený dotaz \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Nahrávám..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Místní" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "UmístÄ›ní" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "PÅ™ihlášen" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "PÅ™ihlášen jako %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Odhlášení" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "PÅ™ehled logování" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "PÅ™ihlášení" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Odhlásit se" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Nevhodný typ vyhledávání" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Email" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Čáry pro atribut" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Nastavit vlastníka" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Nastavit stav" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Nastavit datum termínu dokonÄení" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Nastavit datum, kdy zaÄal" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Nastavit datum, kdy zaÄne" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Nastavit datum posledního kontaktu" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Nastavit prioritu" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Nastavit frontu" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Nastavit pÅ™edmÄ›t" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Správa uživatelských položek a jejich hodnot" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Správa skupin a Älenství v nich" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Správa vlastností a konfigurace platné pro vÅ¡echny fronty" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Správa front a jim přísluÅ¡ných vlastností" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Správa uložených diagramů" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Správa uživatelů a hesel" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "bÅ™e" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "OznaÄeny vÅ¡echny zprávy jako pÅ™eÄtené" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Maximální délka Äásti zprávy" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "Maximální odhadovaný Äas" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "Maximální zbývající Äas" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "Maximum Äasu práce" #: lib/RT/Date.pm:95 msgid "May" msgstr "kvÄ›" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Já" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "ÄŒlen" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "ÄŒlen %1 pÅ™idán" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "ÄŒlen %1 odebrán" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "ÄŒlen pÅ™idán: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "ÄŒlen odebrán" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "ÄŒlen neodebrán" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "ÄŒlen" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "ÄŒlenové" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "ÄŒlenství v %1 pÅ™idáno" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "ÄŒlenství v %1 zruÅ¡eno" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "ÄŒlenství" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "ÄŒlenství uživatele %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "SlouÄit" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "SlouÄení úspěšné" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "SlouÄení se nepodaÅ™ilo. Nelze nastavit EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "SlouÄení se nepodaÅ™ilo. Nelze nastavit IsMerged." #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "SlouÄit do" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "SlouÄen do %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Zpráva" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Obsah zprávy není zobrazen, neboÅ¥ je příliÅ¡ velký." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Obsah není zobrazen, neboÅ¥ odesílatel nenastavil automatické zobrazení této Äásti zprávy." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Obsah zprávy není zobrazen, neboÅ¥ to není prostý text." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Výška pole zprávy" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Šířka pole zprávy" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Zpráva nemůže být zaznamenána" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Zpráva pro uživatele" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Zpráva zaznamenána" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Minimální délka hesla" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "Minimální odhadovaný Äas" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "Minimální zbývající Äas" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "Minimum Äasu práce" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minut" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Smíšené" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Chybí primární klíÄ?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobilní telefon" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Mobilní telefon" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Upravit" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Upravit Äleny" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Upravovat Å¡ablony pro scripy" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Upravovat scripy" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Upravovat uživatelskou položku pro frontu %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Upravovat a vytvářet třídy" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Upravovat a vytvářet uživatelské položky k Älánkům" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Upravit Älánek #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Upravovat pÅ™iÅ™azené objekty k %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "Upravit pÅ™iÅ™azené objekty pro scrip #%1" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Upravovat obsah uživatelských položek" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Úprava terminů pro požadavek #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Úprava globálních témat Älánků" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Úprava globálních uživatelských položek" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Úprava globálních skupinových práv" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Upravit globální témata" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Úprava globálních uživatelských práv" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Upravit skupinu řídicích panelů" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Spravovat Älenství ve skupinách" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Upravovat metadata skupiny nebo smazat skupinu" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Upravit skupinová práva pro třídu %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Úprava skupinových práv pro uživatelskou položku %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Úprava skupinových práv pro %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Úprava skupinových práv pro frontu %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Upravit metadata a uživatelské položky pro tuto třídu" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Upravovat vlastní RT úÄet" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Úprava uživatelů souvisejících s požadavkem #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Upravovat osobní řídící panely" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Upravit pozorovatele fronty" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "Upravit scrip #%1" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Úprava scripů pro frontu %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Úprava scripů platných ve vÅ¡ech frontách" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Upravovat systémové řídící panely" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Úprava Å¡ablony %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Upravit Å¡ablonu %1 pro frontu %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Upravit Å¡ablony pro vÅ¡echny fronty" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Upravit třídu %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Upravit obsah řídicího panelu %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Úprava řídícího panelu %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Úprava výchozího vzhledu stránky \"PÅ™ehled RT\"" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Úprava skupiny %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Upravit pÅ™edplatné z řídicího panelu %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Úprava uživatele %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "ZmÄ›nit tento dotaz ..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Úprava požadavku # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Úprava požadavku #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "PÅ™iÅ™adit jiného vlastníka k vlastnÄ›ným požadavkům" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Upravovat požadavky" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Upravit témata pro třídu %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Upravit hierarchii témat pro tuto třídu" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Upravit témata pro Älánky v této třídÄ›" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Upravit uživatelská práva pro třídu %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Upravit práva uživatelů k uživatelské položce %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Úprava práv uživatelů ke skupinÄ› %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Úprava práv uživatelů k frontÄ› %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Upravit příjemce poÅ¡ty pro požadavek #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Po" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "PondÄ›lí" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "MÄ›síÄnÄ›" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Více o žadatelích" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "Posunout" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "PÅ™esunout sem" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Vícenásobná" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Nutno zadat atribut 'Jméno'" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Moje požadavky ve stavu %1" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Mnou schválené" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Můj den" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Moje pÅ™ipomenutí" #: etc/initialdata:890 msgid "My Tickets" msgstr "Moje požadavky" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mnou schválené" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Moje řídící panely" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Mé otevÅ™ené požadavky" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Moje pÅ™ipomenutí" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Moje uložené dotazy" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "Fronty v nichž jsem AdminCc" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "Moje pÅ™ipomenutí" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "Fronty mnou spravované" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "NOVà ŘÃDEK" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Jméno" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Jméno a emailová adresa" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Jméno je použito" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "Jméno je vyžadováno" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Název" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Nikdy" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Nové" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Nový Älánek" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Nový řídíci panel" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nové vazby" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Nová probíhající schválení" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Nové vyhledávání" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nové zprávy" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nové heslo" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Oznámení o novém hesle zasláno" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Nová upomínka:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nový požadavek" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Nový požadavek neexistuje" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Nové požadavky v této frontÄ› nemohou mít status '%1'" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nový pozorovatel" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Další" #: lib/RT/User.pm:96 msgid "NickName" msgstr "PÅ™ezdívka" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "PÅ™ezdívka" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Ne" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "Nejsou %1 klíÄe pro tuto adresu" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "Žádný %1 nenaÄten" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Žádným Älánkům neodpovída %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Nedefinována žádná třída" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Žádná třída neodpovídá vyhledávací podmínce." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Žádná uživatelská položka" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Nedefinována žádná uživatelská položka" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Nedefinována žádná skupina" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Prázdný dotaz" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Nedefinována žádná fronta" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Žádný pÅ™edmÄ›t" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Žádna Å¡ablona" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Bez akce" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Neudán sloupec" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Poznámky k tomuto uživateli neudány" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Pro %1 není popis" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Neudána skupina" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Žádná skupina neodpovídá vyhledávací podmínce." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Žádný klÃ­Ä není vhodný pro Å¡ifrování" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Zpráva nepÅ™ipojena" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Není potÅ™eba Å¡ifrovat" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Heslo nenastaveno" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Nedostatek práv k vytváření front" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Nedostatek práv k vytváření požadavků ve frontÄ› '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Nedostatek práv k zobrazení tohoto požadavku" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Nedostatek práv k uložení dotazů pro celý systém" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Nedostatek práv ke zmÄ›nÄ› nastavení" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Nemáte oprávnÄ›ní zobrazit Älánek" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Nedostatek práv k zobrazení aktualizace požadavku" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Nevybráni uživatelé." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Žádný soukromý klíÄ" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Nenalezeny žádné fronty odpovídající vyhledávací podmínce." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Právo nezadáno" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Práva nenalezena" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Bez vyhledání nelze pracovat." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Žádný pÅ™edmÄ›t" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Žádný klÃ­Ä nebo klÃ­Ä není vhodný k podpisu" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Nenalezen žádný požadavek." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Neudán typ transakce" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Žádné použitelné klíÄe." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Nenalezeni žádní uživatelé odpovídající vyhledávací podmínce." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Nikdo" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Žádný" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Neexistující položka?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "Nepoužívané scripy" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Nenalezen" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "NepÅ™ihlášen." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Nenastaven" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Nelze používat mobilní prohlížeÄ?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Poznámky" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "UpozornÄ›ní nemůže být zasláno" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Zaslat vÅ¡em AdminCc" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Zaslat vÅ¡em AdminCc jako komentář" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Upozornit vÅ¡echny Cc" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Upozornit vÅ¡echny Cc jako komentář" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Zaslat ostatním příjemcům" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Zaslat ostatním příjemcům jako komentář" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Zaslat vlastníkovi" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "Zaslat vlastníkovi a vÅ¡em AdminCc" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Zaslat vlastníkovi jako komentář" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "UpozornÄ›ní vlastníka o zamítnutí požadavku" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "UpozornÄ›ní vlastníka, že požadavek je schválen a pÅ™ipraven ke zpracování" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "UpozornÄ›ní vlatníka, že nÄ›kdo Äi vÅ¡ichni schválili požadavek" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "Zaslat vlastníkovi nebo vÅ¡em AdminCc" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Zaslat majiteli a vÅ¡em žadatelům, CC a AdminCc" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Zaslat majiteli a vÅ¡em žadatelům, CC a AdminCc jako komentář" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Zaslat vlastníkům a vÅ¡em AdminCc nové případy oÄekávající jejich schválení" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Zaslat žadatelům" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Zaslat žadatelům a vÅ¡em Cc" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Zaslat žadatelům a vÅ¡em Cc jako komentář" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Informuj mne o nepÅ™eÄtených zprávách" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "lis" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekt nemůže být vytvoÅ™en" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Objekt nemůže být smazán" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objekt vytvoÅ™en" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objekt smazán" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Nevhodný typ objektu" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Seznam objektů je prázdný" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "říj" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "Dne %1, %2 napsal(a):" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "PÅ™i uzavÅ™ení" #: etc/initialdata:170 msgid "On Comment" msgstr "PÅ™i komentáři" #: etc/initialdata:142 msgid "On Correspond" msgstr "PÅ™i korespondenci" #: etc/initialdata:131 msgid "On Create" msgstr "PÅ™i založení" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "PÅ™i pÅ™eposlání" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "PÅ™i pÅ™eposlání požadavku" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "PÅ™i pÅ™eposlání transakce" #: etc/initialdata:191 msgid "On Owner Change" msgstr "PÅ™i zmÄ›nÄ› vlastníka" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "PÅ™i zmÄ›nÄ› priority" #: etc/initialdata:199 msgid "On Queue Change" msgstr "PÅ™i zmÄ›nÄ› fronty" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "PÅ™i zamítnutí" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "PÅ™i znovuotevÅ™ení" #: etc/initialdata:205 msgid "On Resolve" msgstr "PÅ™i vyÅ™eÅ¡ení" #: etc/initialdata:176 msgid "On Status Change" msgstr "PÅ™i zmÄ›nÄ› stavu" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "PÅ™i transakci" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Jednorázové Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Jednorázové Cc" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Pouze pro vkládání, ne pro zobrazování." #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Zobrazit jen schvalování pro požadavky založené po %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Zobrazit jen schvalování pro požadavky založení pÅ™ed %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Zobrazit jen uživatelské položky pro:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "OtevÅ™ení neaktivních požadavků" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Otevřít" #: etc/initialdata:108 msgid "Open Tickets" msgstr "OtevÅ™ené požadavky" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Otevřít URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "OtevÅ™ení neaktivních požadavků" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "OtevÅ™ené požadavky" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Otevřít požadavky pÅ™i korespondenci" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "OperaÄní systém" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Volba" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Volby" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Řadit podle" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organizace" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Původní požadavek: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Odchozí zpráva o komentáři zaznamenána" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Odchozí zpráva zaznamenána" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Odchozí poÅ¡ta" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "PÅ™ehled" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Vlastnit požadavky" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Vlastník" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "Vlastník '%1' nemá práva k držení tohoto požadavku." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Vlastník zmÄ›nÄ›n z %1 na %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Vlastník nucenÄ› zmÄ›nÄ›n z %1 na %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "Jméno vlastníka" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Stránka" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Stránka 1 z 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Stránka nenalezena" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Pager" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "RodiÄ" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "RodiÄe" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Heslo" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Heslo zmÄ›nÄ›no" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Heslo nebylo nastaveno" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Heslo musí být dlouhé nejménÄ› %quant(%1,znak,znaky,znaků)" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Heslo nebylo vytiÅ¡tÄ›no" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Heslo je nastaveno" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Heslo: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Heslo: Přístup odmítnut" #: etc/initialdata:714 msgid "PasswordChange" msgstr "ZmÄ›na hesla" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Hesla nesouhlasí." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Cesta k sendmailu" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Uživatelé" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Pozorovatelé pro frontu %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Provedení uživatelem definované akce" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Konfigurace Perlu" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "PoÅ™adí hledání perlovských knihoven" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Trvale vymazat údaje z RT" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Přístup nepovolen" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Přístup nepovolen" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Čísla telefonů" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "Graf" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Zkontrolujte prosím URL a zkuste to znovu." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Prosím, vložte správnÄ› vaÅ¡e stávající heslo." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Prosím, vložte vaÅ¡e stávající heslo." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "PodezÅ™ení na cross-site request forgery" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Možné skryté dotazy" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "PÅ™edefinovaný dotaz %1 nenalezen" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Nastavení" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Nastavení %1 uživatele %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Nastavení pro %1 uloženo." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Nastavení pro uživatele %1 uloženo." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Nastavení uloženo." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Preferovaný klíÄ: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Preferovaný klíÄ" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "PÅ™edchozí" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Uživatel %1 nenalezen." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "VypiÅ¡ výsledné zprávy s pÅ™ehledy na STDOUT; neposílej je mailem. NeoznaÄ je za odeslané" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Tisk této zprávy" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Priorita" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Soukromí" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Soukromí:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Soukromý klíÄ" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "Soukromé klíÄ(e) pro %1" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "Soukromé klíÄe" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Privilegován" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Privilegovaný stav: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Privilegovaní uživatelé" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseudoskupina pro vnitÅ™ní použití" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "VeÅ™ejný klÃ­Ä '0x%1' je nutný k ověření podpisu" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "VeÅ™ejné klíÄe pro %1" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Dotazy" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Dotaz" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Tvůrce dotazu" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Fronta" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Fronta %1 nenalezena" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Název fronty" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Fronta již existuje" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Fronta nemůže být vytvoÅ™ena" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Fronta nemůže být naÄtena." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Fronta vytvoÅ™ena" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "ID fronty" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "Seznam front" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Fronta nenalezena" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "KlÃ­Ä fronty" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "AdminCc fronty" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "Cc fronty" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "Název fronty" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "Pozorovatel fronty" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Fronty" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Fronty mnou spravované" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Fronty v nichž jsem AdminCc" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Rychlé hledání" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Rychlé založení požadavku" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "Rychlé založení" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Správa RT" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "Email na administrátora RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT konfigurace" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "Chyba RT" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT velikost" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "PÅ™ehled RT" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "PÅ™ehled RT pro uživatele %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT může informovat vaÅ¡e uživatele o nových požadavcích nebo o nové korespondenci u požadavků. ŘeknÄ›te nám, kde je umístÄ›n sendmail (nebo se sendmailem kompatibilní binární soubor jako napÅ™. ten, který je dodáván s postfixem). RT také potÅ™ebuje vÄ›dÄ›t, koho má informovat, když nÄ›kdo poÅ¡le chybný email. Nesmí to být ale adresa, která směřuje zpátky do RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT může vÄlenit obsah jiné webové stránky pÅ™i zobrazení této uživatelské položky." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT může z hodnoty této uživatelské položky vytvoÅ™it odkaz na jinou stránku." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT základní promÄ›nné" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT pro %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "RT zjistil možný %1cross-site request forgery útok%2 v této žádosti, neboÅ¥ %3. ÚtoÄník zkouší pod VaÅ¡im pÅ™ihlášením následující akci: %1%4%2. Pokud jste tento požadavek sami neinicializovali, upozornÄ›te prosím Váš bezpeÄnostní tým." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "Historie aktualizací RT" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT se pÅ™ipojí k databázi pod tímto uživatelem. Bude pro vás založen." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT vytvoří uživatele \"root\" a nastaví jeho heslo na tuto hodnotu" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT nahradí %1 a %2 identifikátorem záznamu a hodnotou uživatelské položky (v uvedeném poÅ™adí)" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT použije tento Å™etÄ›zec k jednoznaÄné identifikaci vaší instalace a hledá ho v pÅ™edmÄ›tech emailů, aby urÄil, kterého požadavku se zpráva týká. DoporuÄujeme vám zadat vaÅ¡i internetovou doménu. (napÅ™. example.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT pracuje s nÄ›kolika různými databázemi. Podporované jsou MySQL, PostgreSQL, Oracle a SQLite." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "Konfigurace logování v RT:" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Znovu otevřít" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "SkuteÄné jméno" #: lib/RT/User.pm:95 msgid "RealName" msgstr "SkuteÄné jméno" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Příjemci" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Uložit vÅ¡echny zmÄ›ny" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Rekurzivní Älen" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Viz" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "PÅ™idán odkaz z %1" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Smazán odkaz z %1" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "PÅ™idán odkaz na %1" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Smazán odkaz na %1" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Je odkazem z" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "Je odkazem z" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Odkazuje na" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "Odkazuje na" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Obnova" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Obnovit tuto stránku %numerate(%1,každou,každé,každých) %quant(%1,minutu,minuty,minut)." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "Obnova domácí stránky" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Zamítnout" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Pamatuj si výchozí frontu" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Upomínka" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Upomínka '%1' pÅ™idána" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Upomínka '%1' ukonÄena" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "Upomínka '%1' znovuotevÅ™ena" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Upomínky" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Upomínky pro požadavek #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Odstranit AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Odstranit záložku" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Odstranit Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Odstranit žadatele" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "Způsob zobrazení" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Nahradí rozbalovací nabídku pro zmÄ›nu vlastníka textovým polem." #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "OdpovÄ›dÄ›t" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Adresa pro odpovÄ›Äi" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "OdpovÄ›Ä Å¾adatelům" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "OdpovÄ›dÄ›t na požadavky" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Žadatel" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Žadatelé" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Povinný parametr '%1' nezadán" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Vymazat" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Obnovit pÅ™ehled RT" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "Obnovit řídící panely v menu" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Obnovit výchozí" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "Obnovit původní logo RT" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "Obnovit původní motiv RT" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "BydliÅ¡tÄ›" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "VyÅ™eÅ¡it" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "VyÅ™eÅ¡ení požadavku #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "VyÅ™eÅ¡en" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "VyÅ™eÅ¡eno pÅ™ed" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Reagovat" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Výsledky" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Návrat zpÄ›t k požadavku" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Zopakujte heslo" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Vrátit" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Právo naÄteno" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Právo nemůže být odebráno" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Právo nenaÄteno." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Práva pro %1 nemohou být pÅ™idÄ›lena" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Práva pro administrátory" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Práva pro zamÄ›stnance (Staff)" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Role" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Řádky" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Řádků na oddíl" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Řádků na stránku" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL příkazy" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "SQL dotazy nejsou logovány." #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite je databáze, která nepotÅ™ebuje server ani konfiguraci jakéhokoli druhu. AutoÅ™i RT ji doporuÄují pÅ™i testování, pÅ™edvádÄ›ní a vývoji, ale není úplnÄ› vhodná pro velký produkÄní RT server." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "So" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Sobota" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Uložit" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Uložit zmÄ›ny" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Uložit nastavení" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Uložit jako nový" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Uložit tento dotaz" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Uložen %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Uložený dotaz" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Uložené dotazy" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Uložené grafy" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Uložené dotazy" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "Uložené dotazy" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Scrip vytvoÅ™en" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Scripy" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Scripy a příjemci" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "Scripy se obvykle spustí po každé zmÄ›nÄ› v požadavku." #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Vyhledat" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Vyhledat Älánky" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Nastavení hledání" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Vyhledávání schvalování" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Vyhledání Älánků" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Hledat požadavky" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "Můžete hledat požadavky dle %1Äísla požadavku%2, dle slova z pÅ™edmÄ›tu %1\"v uvozovkách\"%2, dle fronty zadáním %1jména fronty%2, dle vlastníka zadáním jeho %1uživatelského jména%2, dle žadatele zadáním jeho %1e-mailové adresy%2, a dle %1stavu%2 požadavku (stav se zadává anglicky). PÅ™i zadání %1@example.cz%2 se vrátí požadavky od žadatelů z uvedené domény." #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Volby pro hledání" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Výsledky vyhledávání:" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Interval obnovování výsledků vyhledávání." #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "ZabezpeÄní:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Viz také:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Zobrazit Älánky ve třídÄ›" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "VidÄ›t zmÄ›ny Älánků v této třídÄ›" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "VidÄ›t, že tato třída existuje" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "VýbÄ›r" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Vybrat uživatelské položky pro Älánky ze vÅ¡ech tříd" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "VýbÄ›r typu databáze" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Vyberte třídu" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "VýbÄ›r uživatelské položky" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "VýbÄ›r skupiny" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "VýbÄ›r fronty" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "VýbÄ›r fronty pro váš nový požadavek" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "VýbÄ›r uživatele" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Vyberte Älánek z téma %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Vyberte Älánek ke vložení" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Vyberte jiný jazyk" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Rozbalovací seznam" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Vybrat uživatelské položky pro vÅ¡echny fronty" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Vybrat uživatelské položky pro vÅ¡echny skupiny uživatelů" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Vybrat uživatelské položky pro vÅ¡echny uživatele" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Vybrat uživatelské položky pro požadavky ve vÅ¡ech frontách" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Vybrat uživatelské položky pro transakce s požadavky ve vÅ¡ech frontách" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Vybrat datum" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Vybrat datum a Äas" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Vybrat více hodnot" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Vybrat jednu hodnotu" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "VýbÄ›r front, které budou zobrazeny na stránce \"PÅ™ehled RT\"" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Vyberte témata pro tento Älánek" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "VýbÄ›r nejvýše %quant(%1,hodnoty,hodnot,hodnot)" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Vybrané uživatelské položky" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Vybrané fronty" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Vybraný klÃ­Ä buÄ není důvÄ›ryhodný nebo již neexistuje." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Vybrané objekty" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "VýbÄ›r upraven. Prosím uložte si své zmÄ›ny" #: etc/initialdata:117 msgid "Send Forward" msgstr "Odeslat pÅ™eposlanou zprávu" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "Odeslat pÅ™eposlanou zprávu" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Odeslat e-mail na majitele a vÅ¡echny pozorovatele" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Odeslat e-mail na majitele a vÅ¡echny pozorovatele jako komentář" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Zaslat e-mail žadatelům a vÅ¡em Cc" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Zaslat e-mail žadatelům a vÅ¡em Ccs jako komentář" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Posílá zprávu žadatelům" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Posílá e-mail vÅ¡em pÅ™esnÄ› vyjmenovaným Cc a Bcc" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Posílá e-mail vÅ¡em Cc" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Posílá e-mail vÅ¡em Cc jako komentář" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "Posílá e-mail vlastníkovi a administrativním Cc" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "Posílá e-mail vlastníkovi pokud je nastaven, jinak administrativním Cc" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Posílá e-mail vÅ¡em administrativním Cc" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Posílá e-mail vÅ¡em administrativním Cc jako komentář" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Posílá e-mail vlastníkovi" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "zář" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Více položek oddÄ›lujte mezerami." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Nastavení" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Krátke uživatelské jméno" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Má Vám RT poslat mail, pokud jste mezi příjemci (To, Cc, Bcc) a sami požadavek aktualizujete?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Zobrazit" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "Zobrazit menu Admin" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Zobrazit kartu schválení" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "Zobrazit menu ÄŒlánky" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Zobrazit sloupce" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Zobrazit výsledky" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Zobrazit vlastnosti požadavku na %1 úrovni" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Zobrazit vÅ¡echen citovaný text" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Zobrazit schválené požadavky" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Další Äáry pro" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Zobrazit struÄné záhlaví" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Zobrazit odepÅ™ené požadavky" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Zobrazit úplné záhlaví" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Zobrazit globální Å¡ablony" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "Zobrazit historii" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "Zobrazit historii veÅ™ejných vlastností uživatele" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Zobrazit odkaz popisů" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "Nezobrazit žádné požadavky žadatele" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Zobrazit historii vzestupnÄ›" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Zobrazit trvající požadavky" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Zobrazit citovaný text" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Zobrazit požadavky Äekající na další schválení" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "ZjednoduÅ¡ený seznam příjemců pÅ™i úpravÄ› požadavku" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Zobraz 10 nejdůležitejších aktivních požadavků žadatele" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Zobraz 10 nejdůležitÄ›jších neaktivních požadavků žadatele" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Zobraz 10 nejdůležitÄ›jších požadavků žadatele" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Zobrazit historii požadavku" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "Zobrazit prázdné položky" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "SkartovaÄ" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "SkartovaÄ potÅ™ebuje adresář pro zápis. UjistÄ›te se, že adresář %1 existuje a že web server má práva zápisu." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Postranní liÅ¡ta" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Registrace" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "Podepsat vÅ¡echnu automaticky vygenerovanou poÅ¡tu. %1Pozor%2: Nastavením této volby podpis již nezajišťuje %3autentizaci%4 ale pouze %3integritu%4." #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Registrace ve výchozím nastavení" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Být žadatelem Äi Cc požadavku nebo fronty" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Být AdminCc požadavku nebo fronty" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "Podepsat%1%2 pomocí %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Podpis" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Jednoduchý" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Jednoduché vyhledávání" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Jediný" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Jméno serveru" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Velikost" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "PÅ™eskoÄit menu" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "PÅ™eskakuji zakázaného uživatele" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Malé" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "NÄ›které prohlížeÄe mohou nahrát obsah pouze ze stejné domény jako je váš RT server." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "NÄ›co není v pořádku. Kontaktujte správce systému" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "PoÅ™adí" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "TřídÄ›ní" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Zdroj" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "UpÅ™esnÄ›te, zda jde o denní nebo týdenní spuÅ¡tÄ›ní." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Tabulka" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Fáze" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Odložit" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Můžete hledat i dle hodnot polí - zadáte anglický název pole následovaný dvojteÄkou a hodnotou, napÅ™. %1 Äi %2." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "ZapoÄato" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "ZapoÄato pÅ™ed" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "ZaÄíná" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "ZaÄalo pÅ™ed" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Stát" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "PoÅ™adí hledání statických souborů" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "Stav" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "Status '%1' není platný stav požadavku v této frontÄ›" #: etc/initialdata:449 msgid "Status Change" msgstr "ZmÄ›na stavu" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Stav zmÄ›nÄ›n z %1 na %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "ZmÄ›nit stav" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "PÅ™evzít" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "PÅ™evzít požadavky" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Krok %1 z %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "PÅ™evzato od %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Styl" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "PÅ™edmÄ›t" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "ZnaÄka v pÅ™edmÄ›tu e-mailu" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "PÅ™edmÄ›t zmÄ›nÄ›n na %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "ZnaÄka v pÅ™edmÄ›tu e-mailu" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Odeslat" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Odebírat" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "PÅ™ihlásit se k odbÄ›ru řídicího panelu %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "PÅ™ihlásit se k odbÄ›ru řídicích panelů" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Odebíráte řídicí panel %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "PÅ™edplatné" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "ÚspěšnÄ› deÅ¡ifrovaná data" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "ÚspěšnÄ› zaÅ¡ifrovaná data" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Shrnutí" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "PÅ™ehled odhadovaného Äasu" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "PÅ™ehled zbývajícího Äasu" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "PÅ™ehled Äasu práce" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Ne" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "NedÄ›le" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Pozastaveno" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Systémová konfigurace" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Nastavení systému" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Systémová chyba" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Systémová chyba: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Systémové nástroje" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Systémová chyba" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Systémová chyba. Právo nepÅ™idÄ›leno." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "Skupina systémovýh pravidel pro vnitÅ™ní použití" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Vzít" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Vzít požadavky" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Vzal" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "ŘeknÄ›te nám nÄ›co málo o tom, jak máme najít databázi, kterou bude RT používat" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Å ablona" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Å ablona #%1 smazána" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Å ablona '%1' nenalezena" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Å ablona je prázdná" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Å ablona je povinným parametrem" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Å ablona rozpoznána" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Chyba pÅ™i rozpoznávání Å¡ablony" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Å ablony" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Å ablony pro frontu %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Toto je již aktuální hodnota" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Toto není hodnota pro tuto uživatelskou položku" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Tento požadavek má nevyÅ™eÅ¡ené závislosti" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Tento uživatel již tento požadavek vlastní" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Tento uživatel neexistuje" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Tento uživatel je již privilegován" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Tento uživatel je již neprivilegován" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Uživatel je nyní privilegován" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Uživatel je nyní neprivilegován" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "V této frontÄ› nemůže tento uživatel vlastnit požadavky" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Toto není Äíselný identifikátor" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Základní údaje" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "Cc požadavku" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Heslo DBA k databázi" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "Administrativní Cc požadavku" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "Zatržení uživatelé budou dostávat e-maily o základních zmÄ›nách v požadavku (závisí též na provádÄ›né akci). OdÅ¡krtnÄ›te uživatele, pokud již nemá (nemají) dostávat e-maily o tomto požadavku." #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Doménové jméno vaÅ¡eho databázového serveru (napÅ™. 'db.example.com')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Následující dotazy byly smazány Äi pÅ™ejmenovány. PÅ™i jakékoliv úpravÄ› řídícího panelu budou z nÄ›ho vymazány." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Následující dotazy nemohou být viditelné vÅ¡em uživatelům, kteří vidí tento řídící panel." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "KlÃ­Ä byl zakázán" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "KlÃ­Ä byl odebrán" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "KlíÄi vyprÅ¡ela platnost" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "KlÃ­Ä je zcela důvÄ›ryhodný" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "KlÃ­Ä je skuteÄnÄ› důvÄ›ryhodný" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Nová hodnota nastavena." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Vlastník požadavku" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Stránka, o kterou žádáte, nebyla nalezena" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Žadatel požadavku" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "Nastavení, která jste zadali, jsou uložena v %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Systém není schopen podepsat odchozí e-mailovou zprávu. Obvyklou příÄinou je chybná heslová fráze nebo nespuÅ¡tÄ›ný GPG Agent. Prosím, upozornÄ›te okamžitÄ› svého systémového administrátora. Problémová adresa je:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Motiv" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Více klíÄů je vhodných pro Å¡ifrování." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "U požadavku jsou nepÅ™eÄtené zprávy." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Žádný klÃ­Ä není vhodný pro Å¡ifrování." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Tyto volby nastavení zahrnují nÄ›které základní údaje potÅ™ebné k provozu RT. PotÅ™ebujeme znát jméno vaší instalace RT a doménové jméno, kde RT poběží. Také budete potÅ™ebovat zadat heslo vaÅ¡eho implicitního administrativního uživatele." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Tato uživatelská položka nemá seznam hodnot" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "Tato uživatelská položka nemá volitelný způsob zobrazení" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Tato funkce je dostupná jen správcům systému" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Tato funkce je dostupná pouze pro systémové administrátory." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "Zatím nejsou nahrány žádné SQL příkazy." #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Tento nástroj umožňuje uživateli spustit libovolné perl moduly z RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Tato transakce vypadá, že nemá obsah" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "%1 nejdůležitÄ›jších %2 požadavků uživatele" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "PÅ™i hledání uživatele se budou procházet tyto položky:" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "ÄŒt" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "ÄŒtvrtek" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Požadavek" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Maxi aktualizace požadavku #%1 : %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Diagram vztahů pro požadavek #%1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Požadavek #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Požadavek %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Požadavek %1 vytvoÅ™en ve frontÄ› '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Požadavek %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Historie požadavku # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Požadavek vyÅ™eÅ¡en" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Hledání požadavku" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Transakce s požadavky" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Požadavek a transakce" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Vytváření požadavku" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Obsah požadavku" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Content type požadavku" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Požadaven nemůže být vytvoÅ™en pro vnitÅ™ní chybu" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Požadavek nemůže být nahrán" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "PoÄet požadavků" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Zobrazení požadavku" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Metadata požadavku" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Stav požadavku zmÄ›nÄ›n" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Aktualizace/Äásti požadavku" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "TicketSQL vyhledávací modul" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Požadavky" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Požadavky %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Požadavky, které vlastním" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Požadavky, které záleží na tomto schválení:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Odhadhovaný Äas" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Zbývající Äas" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "ÄŒas práce" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "ÄŒas k zobrazení" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "Odhadovaný Äas" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "Zbývající Äas" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "ÄŒas práce" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "ÄŒasové pásmo" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Nadpis" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Komu" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "K získání informací o podpoÅ™e, tréninku, zákaznických úpravách Äi licencování kontaktujte prosím %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "Zobrazit/skrýt SQL %quant(%1,příkaz,příkazy,příkazy)" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "Zobrazit/skrýt průbÄ›h volání" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Poslední kontakt" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "Poslední kontakt" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Nástroje" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Název tématu" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "Přídáno téma" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Téma nenalezeno" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Témata" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Celkem" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "Celkový odhadovaný Äas" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "Celkový zbývající Äas" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "Celkový Äas práce" #: etc/initialdata:317 msgid "Transaction" msgstr "Transakce" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transakce %1 vymazána" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transakce vytvoÅ™ena" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Uživatelské položky transakcí" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Bez udání typu objektu a id nelze volat Transaction->Create" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "Datum transakce" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Transakce jsou nemÄ›nné" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "Zkusit" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Út" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Úterý" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Typ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Vložte a: pÅ™ed Äíslo Älánku a t: pÅ™ed Äíslo požadavku." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Typ zmÄ›nÄ›n z '%1' na '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "Nepoužívat vybrané scripy" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Nelze urÄit typ objektu nebo id" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Nemohu naÄíst Älánek" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "Nemohu nastavit uživatelské logo: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Pokud nechcete poslat tuto konkrétní zprávu nÄ›kterým stálým příjemcům, odÅ¡krtnÄ›te je v přísluÅ¡ných políÄkách. Trvalé zmÄ›ny příjemců se nastavují na záložce Uživatelé." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Vrátit smazání" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Unixový login" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Neznámé kódování obsahu %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Neznámé pole: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "Pokud nezadáte konkrétní stav Äi typ stavu, budou vyhledány pouze aktivní požadavky (požadavky ve stavech %1)." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Neomezený" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "NeomezenÄ›" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Nepojmenovaný řídící panel" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Nepojmenovaný dotaz" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Požadavky bez vlastníka" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Požadavky bez vlastníka" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Bez privilegií" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Nevybrané uživatelské položky" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Nevybrané fronty" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Nevybrané objekty" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Vrácen" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Aktualizace" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Aktualizace grafu" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Aktualizovat diagram" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Upravit toto menu" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Aktualizovat požadavek" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Typ aktualizace" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Aktualizovat formátování a hledat" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Aktualizovat hromadnÄ› požadavky" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Aktualizace nezaznamenána" #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Aktualizace požadavku" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Aktualizace požadavku #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Aktualizace požadavku #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Typ aktualizace nebyl ani korespondence ani komentář." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "Nové zprávy" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Aktualizováno" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Uložený dotaz \"%1\" byl aktualizován" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Odeslat" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Nahrát nové logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Odeslat více souborů" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Odeslat více obrázků" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Odeslat jeden soubor" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Odeslat jeden obrázek" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Odeslat nejvýše %quant(%1,soubor,soubory,souborů)" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Odeslat nejvýše %quant(%1,obrázek,obrázky,obrázků)" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "Uspořádat stránku pro tvorbu a aktualizaci požadavků do dvou sloupců?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Použít automatické doplňování pro vyhledání vlastníků?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Použít implicitní (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Další administrativní nástroje RT" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Použít nastavení systému (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Použijte rozbalovací nabídky pro urÄení, které Äásti požadavku chcete vložit do nového Älánku." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "Použita ve scripech" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Uživatel" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Uživatelem definované" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "Uživatelem definované podmínky a akce" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "Skupiny uživatelů" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Informace o uživateli" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Práva uživatele" #: share/html/User/Search.html:48 msgid "User Search" msgstr "Vyhledat uživatele" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "PÅ™ehled o uživateli" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Uživatel nemůže být vytvoÅ™en: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Uživatel vytvoÅ™en" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Uživatel vyÅ™azen" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Uživatel povolen" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Uživatel má prázdnou emailovou adresu" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Uživatel naÄten" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Uživatelem definované skupiny" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Uživatelské jméno" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Formát uživatelského jména" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Uživatelé" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Uživatelé odpovídající vyhledávací podmínce" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Používám transakci #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Platný dotaz" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Validace" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Hodnota" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Hodnoty" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "PromÄ›nná" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Verze" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Zobrazit Å¡ablony pro skripy" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Zobrazit skripy" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Zobrazit hodnoty uživatelské položky" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Zobrazit uživatelské položky" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Zobrazit odchozí e-mailové zprávy a jejich příjemce" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Zobrazit skupinu" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Zobrazit řídící panely skupiny" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Zobrazit osobní řídící panely" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Zobrazit frontu" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Zobrazit uložené dotazy" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Zobrazit systémové řídící panely" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Zobrazit komentáře k požadavku" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Zobrazit základní údaje požadavku" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Výška WYSIWYG editoru" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "WYSIWYG editor zpráv" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "UpozornÄ›ní! Není podepsáno!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "UpozornÄ›ní: slouÄení nelze vrátit zpÄ›t! Vložte Äíslo požadavku, do kterého se má tento slouÄit." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Pozorovatel" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Pozorovatelé" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Jsme schopni nalézt vaÅ¡i databázi a pÅ™ipojit se jako DBA. Pro pokraÄování v úpravách RT kliknÄ›te na 'Úprava základních údajů.'" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Pokud jsou použity kategorie z jiné uživatelské položky, nelze pro zobrazení v souÄasné verzi použít Seznam hodnot. Prosím, použijte jiný způsob zobrazení položky." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "PotÅ™ebujeme znát jméno databáze, kterou bude RT používat a kde ji lze nalézt. Také potÅ™ebujeme znát uživatelské jméno a heslo uživatele, které má RT používat. RT může databázi a uživatele vytvoÅ™it za vás, což je také důvodem, proÄ se ptáme na uživatelské jméno a heslo uživatele s administrátorskými oprávnÄ›ními k databázi. BÄ›hem kroku 6 instalaÄního procesu použijeme tyto informace k vytvoÅ™ení a inicializaci databáze RT." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "St" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "StÅ™eda" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "týdnÄ›" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Týdenní pÅ™ehled" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Vítejte v RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Dnes jsem udÄ›lal" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Co je to RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "Které požadavky zobrazit v rámeÄku 'Více o žadatelích'" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Když RT nebude moci zpracovat emailovou zprávu, kam má být pÅ™eposlána?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Když RT posílá email, nastaví hlaviÄky From: a Reply-To: tak, že se uživatelé mohou zapojit do konverzace pouhým stiskem na OdpovÄ›dÄ›t ve svých emailových klientech. RT používá různé adresy pro OdpovÄ›di a pro Komentáře. Ty mohou být zmÄ›nÄ›ny pro každou z vaÅ¡ich front. Tyto adresy bude potÅ™eba nakonfigurovat, aby se mohl používat program rt-mailgate." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Když je požadavek vytvoÅ™en" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Upozornit vlastníka a vÅ¡echny AdminCc, jejichž schválení se oÄekává, pÅ™i vytvoÅ™ení schvalovaného požadavku" #: etc/initialdata:137 msgid "When anything happens" msgstr "Stane-li se cokoli" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Když kliknete na 'Kontrola pÅ™ipojení k databázi', tak může nastat malé zpoždÄ›ní, bÄ›hem kterého se RT snaží pÅ™ipojit k vaší databázi" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Je-li uzavÅ™en požadavek" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Je-li požadavek pÅ™eposlán" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Je-li požadavek zamítnut" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Je-li znovuotevÅ™en požadavek" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Je-li vyÅ™eÅ¡en požadavek" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Je-li pÅ™eposlán požadavek Äi transakce" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "ZmÄ›ní-li se vlastník požadavku" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "PÅ™i zmÄ›nÄ› priority požadavku" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "ZmÄ›ní-li se fronta požadavku" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "ZmÄ›ní-li se stav požadavku" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Je-li transakce pÅ™eposlána" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Splní-li se uživatelská podmínka" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "PÅ™ijde-li komentář" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "PÅ™ijde-li korespondence" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Kde je umístÄ›n váš program sendmail." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "Šířka" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Vymazat" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "ZamÄ›stnání" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Pracovní telefon" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Odpracováno" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "Odpracováno %quant(%1,hodina,hodiny,hodin) (%quant(%2,minuta,minuty,minut))" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "Odpracováno %quant(%1,minuta,minuty,minut)" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Ano" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Požadavek již vlastníte" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Můžete pÅ™ejít na první nepÅ™eÄtenou zprávu nebo pÅ™ejít na první nepÅ™eÄtenou zprávu a oznaÄit vÅ¡echny zprávy jako pÅ™eÄtené." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Můžete si také upravit pÅ™edvolený dotaz" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Můžete vložit obsah požadavky do jakéhokoli netradiÄního, textového nebo wiki pole." #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Nemůžete nastavit heslo." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Můžete pÅ™idÄ›lit pouze požadavky, které jsou vaÅ¡e nebo nejsou vlastnÄ›ny" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Můžete vzít pouze požadavky, které nikdo nevlastní" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Můžete hledat jakékoliv slovo v plné historii požadavky zadáním %1 slovo ." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Nemůžete zmÄ›nit status z '%1' na '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Nemáte práva uživatele SuperUser." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Byl jste odhlášen z RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "V této frontÄ› nemáte práva vytvářet požadavky." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Můžete zadat odkazy na Älánky, jako \"a:###\", kde ### pÅ™edstavuje Äíslo Älánku." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Musíte zadat administrativní heslo" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "Musíte nastavit StatementLog na true, aby se ukládali SQL příkazy a bylo je možné prohlížet." #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "MÄ›li byste být pÅ™esmÄ›rováni na pÅ™ihlaÅ¡ovací stránku. Budete schopni se pÅ™ihlásit uživatelským jménem %1 a heslem, které jste dříve zadali." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "MÄ›li byste vybrat databázi, se kterou jste vy nebo váš místní databázový správce nejvíce obeznámeni." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Tuto obrazovku vidíte proto, že jste spustili RT server bez fungující databáze. Velmi pravdÄ›podobnÄ› jste spustili RT poprvé. Pokud kliknete níže na \"%1\" , RT vás provede nastavením RT serveru a databáze." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Jste vítáni k dalšímu pÅ™ihlášení" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Nemáte nastavené heslo." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "Váš systém podporuje automatické barevné návrhy pro: %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "VaÅ¡e uživatelské jméno nebo heslo je chybnÄ›" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "PSÄŒ" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Dolů]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Nahoru]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[nezadáno]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "uživatelská položka" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "aktivních" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "po" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "a pÅ™ed" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "a ne" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "a potom" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "sloupcový" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "pÅ™ed" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "hlavní Äást" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "zdola nahoru" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "ZaÅ¡krtnÄ›te toto políÄko pro použití této globální třídy na vÅ¡echny fronty." #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "ZaÅ¡krtnÄ›te toto políÄko pro použití uživatelské položky na vÅ¡echny objekty." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "zaÅ¡krtnÄ›te toto políÄko, pokud se má scrip použít u vÅ¡ech objektů." #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "ZaÅ¡krtnÄ›te toto políÄko pro odstranení této třídy globálnÄ›, požé budet schopni ji pÅ™iÅ™adit ke konkrétním frontám." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "ZatrhnÄ›te toto políÄko a po odeslání se zruší globální pÅ™iÅ™azení uživatelské položky. Poté budete schopni pÅ™iÅ™adit položku konkrétním objektům." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "zaÅ¡krtnÄ›te pro pÅ™idání" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "kliknÄ›te pro zaÅ¡krtnutí/odÅ¡krtnutí vÅ¡ech položek" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "vytvoÅ™it požadavek" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "dennÄ› v %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "řídící panely v menu" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "smazán" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "neodpovídá" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "stáhnout" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "trvání" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "nezadáno uživatelské jméno" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "je rovno" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "chyba: nelze pÅ™esunout dolů" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "chyba: nelze pÅ™esunout doleva" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "chyba: nelze pÅ™esunout nahorů" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "chyba: není co smazat" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "chyba: není co pÅ™esunout" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "chyba: není co pÅ™epnout" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "každý" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "plugin byl úspěšnÄ› spuÅ¡tÄ›n" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "plný" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "vÄ›tší než" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "skupinu" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "skupina '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "Identifikátor" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "ve třídÄ› %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "neaktivních" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "zahrnuje %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "je" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "není" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "klÃ­Ä zakázán" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "klÃ­Ä vyprÅ¡el" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "klÃ­Ä odebrán" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "zleva doprava" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "menší než" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "okrajový" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "odpovídá" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "maximální hloubka" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minut" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "upravit konfiguraci RT" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "upravit řídící panel" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "upravovat Äi používat dotaz" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "upravit VaÅ¡e nastavení" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "mÄ›síÄnÄ›" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "mÄ›síÄnÄ› (den %1) na %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "nikdy" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "nový" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "ne" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "žádný" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "není rovno" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "nic" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "objekty byly úspěšnÄ› odstranÄ›ny" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "dne" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "na den" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "jeden" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "otevÅ™ený" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "otevÅ™ení/zavÅ™ení" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "další..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "koláÄový" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "plugin vrátil prázdný seznam" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "fronta %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "zamítnutý" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "vyžaduje spuÅ¡tÄ›ní rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "vyÅ™eÅ¡ený" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "zprava doleva" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "prohlédnÄ›te si seznam objektů dole" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "postranní panel" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "odložený" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "SQL příkaz" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "poÄet řádků" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "systém %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "systémová skupina '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "tabulka" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "jméno v hlaviÄce Referrer (%1) odeslané z VaÅ¡eho prohlížeÄe neodpovídá jménu povolenému v konfiguraci RT (%2)" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "jméno v hlaviÄce Referrer (%1) odeslané z VaÅ¡eho prohlížeÄe neodpovídá jménu povolenému v konfiguraci RT (%2) Äi povoleným aliasům (%3)" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "volající komponenta neudala důvod" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "implicitní adresy, které budou uvedeny v hlaviÄkách From: a Reply-To: emailu s komentářem." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "implicitní adresy, které budou uvedeny v hlaviÄkách From: a Reply-To: emailu s korespondencí." #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "požadavek #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "shora dolů" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "koneÄný" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "nepopsaná skupina %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "neomezene" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "aktualizovat požadavek" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "aktualizovat Älánek" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "uživatele" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "uživatel %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "uživatelské jméno" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "týdnÄ›" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "týdnÄ› (od %1) do %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "týdnů" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "Na kterém portu bude poslouchat váš webový server, napÅ™. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "vÄetnÄ› hlaviÄek" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "ano" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "Váš prohlížeÄ nepodporuje Referrer hlaviÄku" rt-4.4.2/share/po/el.po0000664000175000017500000156372113131430353014531 0ustar vagrantvagrant# Greek translation for rt # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2008. # msgid "" msgstr "" "Project-Id-Version: RT 4.0.x\n" "Report-Msgid-Bugs-To: rt-devel \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2016-08-03 01:37+0000\n" "Last-Translator: dmaniadakis \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" "Language: el\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 Ï€Ïοστέθηκε" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 Ï„Ïοποποίηση σε %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 διαγÏάφηκε" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 διαγÏάφηκε." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 δεν υπάÏχει" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 έχουν απενεÏγοποιηθεί" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 αποθηκεÏτηκε." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 ενημεÏώθηκε." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 με Ï€Ïότυπο σελίδας %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) από %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Αμετάβλητο)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (από πλαίσιο %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - ΡÏθμιση επιλογής LogToSTDERR" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - ΠαÏάμετÏος για να πεÏαστεί σε %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - ΕκτÏπωση αποτελεσμάτων στη Τυπική Έξοδο (STDOUT)" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Επιλέξτε τη χÏήση \"Ï€Ïώτης\", \"τελευταίας\" ή \"όλων\" των συναλλαγών" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - ΠÏοσδιοÏίστε το όνομα ή την ταυτότητα του Ï€ÏοτÏπου σελίδας που θα χÏησιμοποιήσετε" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - ΠÏοσδιοÏίστε τους Ï„Ïπους ενεÏγειών που θέλετε να χÏησιμοποιήσετε σε λίστα, χωÏισμένους με κόμματα" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - ΠÏοσδιοÏίστε το άÏθÏωμα συνθήκης που θέλετε να χÏησιμοποιήσετε" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - ΠÏοσδιοÏίστε το άÏθÏωμα αναζήτησης που θέλετε να χÏησιμοποιήσετε" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "%1 έκδοση" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "ΠÏοστέθηκε η τιμή %1 για %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "%1 Ï€Ïοστέθηκε στο ταμπλό παÏαληπτών συνδÏομής" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "Ï€Ïιν από %1" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "Το %1 υπάÏχει ήδη και έχει τους πίνακες του RT στην θέση τους, αλλά δεν πεÏιέχει τα μεταδεδομένα του RT. Το βήμα 'ΑÏχικοποίηση Βάσης Δεδομένων' που βÏίσκεται πιο κάτω μποÏεί να Ï€Ïοσθέσει τα μεταδεδομένα στην ήδη υπάÏχουσα βάση δεδομένων. Αν αυτό είναι αποδεκτό πατήστε το 'ΠÏοσαÏμογή Βασικών' πιο κάτω για να συνεχίσετε την παÏαμετÏοποίηση του RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "Το %1 υπάÏχει ήδη αλλά δεν πεÏιέχει τους πίνακες οÏτε τα μεταδεδομένα του RT. Το βήμα 'ΑÏχικοποίηση Βάσης Δεδομένων' που βÏίσκεται πιο κάτω μποÏεί να εισάγει πίνακες και μεταδεδομένα στην ήδη υπάÏχουσα βάση δεδομένων. Αν αυτό είναι αποδεκτό πατήστε το 'ΠÏοσαÏμογή Βασικών' πιο κάτω για να συνεχίσετε την παÏαμετÏοποίηση του RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "%1 έχει ήδη το δικαίωμα %2 στο %3 %4" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "Το %1 φαίνεται να είναι τοπικό αντικείμενο αλλά δεν βÏέθηκε στην βάση δεδομένων" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "Το %1 φαίνεται να έχει αÏχικοποιηθεί. Δεν χÏειάζεται να δημιουÏγηθοÏν πίνακες ή να Ï€ÏοστεθοÏν μεταδεδομένα, αλλά μποÏείτε να πατήσετε το 'ΠÏοσαÏμογή Βασικών' πιο κάτω για να συνεχίσετε την παÏαμετÏοποίηση του RT." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 από %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 δε μποÏεί να είναι μια ομάδα" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "Το %1 άλλαξε από %2 σε %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 άλλαξε από '%2' σε '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 αντίγÏαφο" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "κεντÏικές Ïυθμίσεις %1" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 δεν ήταν δυνατό να οÏισθεί σε %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "Το %1 δημιουÏγήθηκε" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "Το %1 διαγÏάφηκε" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "Το %1 απενεÏγοποιήθηκε" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "Το %1 δεν υπάÏχει." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "Το %1 ενεÏγοποιήθηκε" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "Τα %1 πιο επείγοντα αιτήματα που έχω αναλάβει" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "Το %1 είναι ένα εÏγαλείο για ενέÏγειες σε αιτήματα από ένα εξωτεÏικό χÏονοπÏόγÏαμμα όπως το cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "Το %1 είναι ένα εÏγαλείο , για να Ï„Ïέχει από το cron, το οποίο αποστέλλει όλες τις αναβληθείσες κοινοποιήσεις του RT σαν σÏνοψη ανά χÏήστη" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "%1 είναι ήδη %2" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 έχει ήδη Ïυθμιστεί σε %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "Η %1 είναι η διεÏθυνση στην οποία το RT λαμβάνει αλληλογÏαφία. Η Ï€Ïοσθήκη της ως '%2' θα δημιουÏγήσει ένα βÏόχο αλληλογÏαφίας" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "%1 δεν είναι πλέον %2 για αυτή την ουÏά" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "%1 δεν είναι πλέον %2 για αυτό το αίτημα" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "Το %1 δεν είναι πλέον τιμή για το Ï€ÏοσαÏμοσμένο πεδίο %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "Το %1 δεν είναι ένα %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "Το %1 δεν είναι ένας έγκυÏος κÏκλος ζωής" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 θέματα" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 κλειδί '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "Τα %1 πιο Ï€Ïόσφατα ενημεÏωμένα άÏθÏα" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "Τα %1 πιο Ï€Ïόσφατα ενημεÏωμένα σχετικά αιτήματα" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "Τα %1 νεώτεÏα άÏθÏα" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "Τα %1 πιο Ï€Ïόσφατα αιτήματα που δεν έχουν αναληφθεί" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 αντικείμενα" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "%1 αφαιÏέθηκε από το ταμπλό παÏαληπτών συνδÏομής" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 να οÏισθεί σε %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 ÏÏθμιση ιστοχώÏου" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 ενημέÏωση: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "ΕνημέÏωση %1:Τίποτα δε μεταβλήθηκε" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 ενημεÏώθηκε" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "Τα %2 αντικείμενα του %1" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "Τα %3 αντικείμενα του %2, του %1" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "ΙσχÏων κωδικός της/του %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Τα Ταμπλό του %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "Τα κλειδιά κÏυπτογÏάφησης του %1" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "Αποθηκευμένες αναζητήσεις του %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: Δεν οÏίστηκε επισÏναψη" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "%1 KiB" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "%1Μ" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "%1Μ" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Îέο αίτημα σε%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "%1μ" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "%1ÏŽÏα" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "%1μ" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1δ" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,άÏθÏο)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,ημέÏα)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,ÏŽÏα)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,ÏŽÏα,ÏŽÏες) (%quant(%2,λεπτό,λεπτά))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,λεπτό)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,μήνας)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,δευτεÏόλεπτο)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,εβδομάδα)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,έτος)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "Μη έγκυÏο όνομα '%1'" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "Μη έγκυÏη κατηγοÏία '%1'" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "ΆκυÏο αναγνωÏιστικό κaτηγοÏίας '%1'" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Επιλέξτε το πλαίσιο για ολοκλήÏωση)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Επιλογή πλαισίου για διαγÏαφή)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Επιλέξτε τα πλαίσια για διαγÏαφή)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "(Επιλογή για διαγÏαφή όλων των τιμών)" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Εισάγετε ταυτότητα αιτήματος ή URLs χωÏισμένα με κενό)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Αν αφήσετε κενό, θα επιλεγεί το %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(Ελλειπής)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(Εσφαλμένα δεδομένα)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Δεν υπάÏχουν Ï€ÏοσαÏμοσμένα πεδία)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Δεν υπάÏχουν μέλη)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Δεν υπάÏχουν αυτοματισμοί)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Δεν υπάÏχουν Ï€Ïότυπα σελίδας)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Στέλνει ένα πιστό αντίγÏαφο αυτής της ενημέÏωσης σε μια λίστα οÏιοθετημένη με κόμματα με διευθÏνσεις διαχειÏιστών. Αυτά τα άτομα θα λαμβάνουν μελλοντικές ενημεÏώσεις.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "Αποστολή Ï€Î¹ÏƒÏ„Î¿Ï Î±Î½Ï„Î¹Î³Ïάφου αυτής της ενημέÏωσης σε διαχωÏισμένη με κόμμα λίστα διευθÏνσεων αλληλογÏαφίας. Αυτά τα άτομα θα λαμβάνουν μελλοντικές ενημεÏώσεις." #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "(Μη υποστηÏιζόμενος Ï„Ïπος Ï€ÏοσαÏμοσμένου πεδίου)" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(ΧÏησιμοποιείστε αυτά τα πεδία όταν επιλέγετε 'ΟÏισμένο από το χÏήστη' για κάποια συνθήκη ή ενέÏγεια)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(οποιοδήποτε)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(απουσία ΣÏνοψης)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(απουσία ονόματος)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(δεν υπάÏχει δημόσιο κλειδί)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(χωÏίς τιμή)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(χωÏίς τιμές)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(εκκÏεμεί %quant(%1,άλλο αίτημα))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(εκκÏεμεί έγκÏιση)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "(εκκÏεμές αίτημα #%1)" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(απαιτοÏμενο)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(εμπιστοσÏνη: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(χωÏίς τίτλο)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(μη έμπιστο!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "(μέσω του καταλόγου Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…)" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "Το --template-id είναι υπό κατάÏγηση ÏŒÏισμα και δεν μποÏεί να χÏησιμοποιηθεί με το --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "Το ÏŒÏισμα --transaction μποÏεί να είναι μόνο 'first', 'last' ή 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "/Στοιχεία/ΚαθαÏισμός HTML" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 δευτεÏόλεπτα" #: lib/RT/Date.pm:424 msgid "0s" msgstr "0 δευτεÏόλεπτα" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Ένα Ï€Ïότυπο με αυτό το όνομα υπάÏχει ήδη" #: etc/initialdata:258 msgid "A blank template" msgstr "Κενό Ï€Ïότυπο σελίδας" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Δεν οÏίστηκε κωδικός, ο χÏήστης δε θα μποÏεί να συνδεθεί." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "To ACE δε βÏέθηκε" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "Τα ACEs μποÏοÏν μόνο να δημιουÏγηθοÏν ή να διαγÏαφοÏν" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "ACL ενημεÏώσεις από %1" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "ΚΑΙ" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Σχετικά με μένα" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Έλεγχος Ï€Ïόσβασης" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "ΕνέÏγεια" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Δεν βÏέθηκε η ΕνέÏγεια '%1'" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "ΟλοκλήÏωση ενέÏγειας" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Η ΕνέÏγεια είναι υποχÏεωτικό ÏŒÏισμα" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "ΠÏοετοιμασία ΕνέÏγειας..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "ΕνέÏγειες" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "ΕνεÏγά Αιτήματα" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "ΕνεÏγά Αιτήματα" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "ΕνεÏγά Αιτήματα για %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "ΠÏόσθεσε %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "ΠÏοσθήκη AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "ΠÏοσθήκη Σελιδοδείκτη" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "ΠÏοσθήκη Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "ΠÏοσθήκη Στηλών" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "ΠÏοσθήκη ΚÏιτηÏίων" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "ΠÏοσθήκη ΠεÏισσότεÏων ΑÏχείων" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "ΠÏοσθήκη νέων παÏατηÏητών" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "ΠÏοσθήκη ΑιτοÏντος" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "ΠÏοσθήκη Τιμής" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "ΠÏοσθήκη ομάδας" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "ΠÏοσθήκη Ï€Ïοσώπου" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "ΠÏοσθήκη ενός πεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï… σε αυτό το αίτημα" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "ΠÏοσθήκη σχολίων ή απαντήσεων στα επιλεγμένα αιτήματα" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "ΠÏοσθήκη Ï€ÏοσαÏμοσμένων πεδίων μόνο κατά τη δημιουÏγία αντικειμένου" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "ΠÏοσθήκη ομάδας" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "ΠÏοσθέστε εδώ" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "ΠÏοσθήκη μελών" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "ΠÏοσθήκη νέων παÏατηÏητών" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "ΠÏοσθήκη δικαιωμάτων για %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "ΠÏοσθήκη ÏŒÏων" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "ΠÏοσθήκη ÏŒÏων και Αναζήτηση" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "ΠÏοσθήκη χÏήστη" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "ΠÏοσθήκη τιμών" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "ΠÏοσθήκη, Ï„Ïοποποίηση και διαγÏαφή τιμών Ï€ÏοσαÏμοσμένων πεδίων για αντικείμενα" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "ΠÏοστέθηκε" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "ΠÏοστέθηκε %1 ως %2 για αυτή την ουÏά" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "ΠÏοστέθηκε %1 ως %2 για αυτό το αίτημα" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "ΠÏοστέθηκε Θέμα ΠαÏάκαμψης: %1" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "ΠÏοστέθηκε Ï€ÏοσαÏμοσμένο πεδίο %1 για %2." #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "ΔιεÏθυνση" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "ΔιεÏθυνση 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "ΔιεÏθυνση 1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "ΔιεÏθυνση 2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "ΠÏοσαÏμοδμένος χÏόνος εÏγασίας από %quant(%1,λεπτό,λεπτά)" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "ΔιαχειÏιστής" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "Κατάλογοι ΔιαχειÏιστή" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Σχόλιο Admin" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Σχόλιο ΔιαχειÏιστή σε HTML" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "ΑλληλογÏαφία ΔιαχειÏιστή" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "ΔιαχειÏιστής ΑλληλογÏαφίας σε HTML" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "ΟυÏές ΔιαχειÏιστή" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admin/Καθολικές Ïυθμίσεις" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Κωδικός ΔιαχειÏιστή" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Για Ï€ÏοχωÏημένους" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "ΠÏοχωÏημένη αναζήτηση" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Μετά την συνδεσή σας, θα σας στείλει στον αÏχικό σας Ï€ÏοοÏισμό:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Συλλέκτης" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Όλες οι ΕγκÏίσεις έχουν πεÏάσει" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Όλες οι εγκÏίσεις πέÏασαν σε HTML" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Όλα τα ΆÏθÏα σε αυτή την κλάση θα Ï€Ïέπει να καταγÏαφοÏν σε ένα πτυσσόμενο Î¼ÎµÎ½Î¿Ï ÏƒÏ„Î·Î½ σελίδα απόκÏισης του αιτήματος" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "Όλοι οι κατάλογοι" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Όλες οι ΚατηγοÏίες" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Όλα τα ΠÏοσαÏμοσμένα Πεδία" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Όλα τα ταμπλό" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Όλες οι ΟυÏές" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Όλα τα Αιτήματα" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "Όλοι οι κατάλογοι που πληÏοÏν τα κÏιτήÏια αναζήτησης" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Όλες οι Ïοές iCal ενσωματώνουν ένα μυστικό κουπόνι που σας εξουσιοδοτεί. Αν η διεÏθυνση URL κάποιας Ïοής εκτεθεί στον έξω κόσμο, μποÏείτε να πάÏετε ένα νέο μυστικό, διακόπτοντας όλα τις υφιστάμενες Ïοές iCal πιο κάτω." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Όλες οι ΟυÏές που πληÏοÏν τα κÏιτήÏια αναζήτησης" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "Όλοι οι παÏαλήπτες" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Όλα τα Αιτήματα" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Όλα τα θέματα" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "Διάθεση" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Δικαίωμα δημιουÏγίας αποθηκευμένων αναζητήσεων" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Δικαίωμα φόÏτωσης αποθηκευμένων αναζητήσεων" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Δικαίωμα εισαγωγής κώδικα Perl σε Ï€Ïότυπα σελίδων, σεναÏίων, κτλ" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Έχει ήδη κÏυπτογÏαφηθεί" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "Πάντα στέλνει ένα μήνυμα Ï€Ïος τους αιτοÏντες ανεξάÏτητα από τον αποστολέα του μηνÏματος" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "Μια %1 εισαγωγή για να ξεκινήσετε με τα άÏθÏα %3 είναι διαθέσιμη από το %2 Best Practical στην ηλεκτÏονική τεκμηÏίωση %3." #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "ΠÏέπει να παÏέχεται ένα παÏάδειγμα" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "ΠαÏουσιάστηκε ένα σφάλμα" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "Ένα σφάλμα συνέβη κατά την υποβολή του χÏόνου. ΠαÏακαλώ υποβάλετε το χÏόνο χειÏοκίνητα." #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Και/Ή" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Ετησίως" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Οποιοδήποτε πεδίο" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Κάθε λέξη που δεν αναγνωÏίζεται από το RT αναζητείται στα θέματα αίτησης" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "ΕφαÏμόζεται σε" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "ΕφαÏμόζεται σε όλα τα αντικείμενα" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "ΕφαÏμογή" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Καθολική εφαÏμογή" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "ΕφαÏμογή επιλεγμένων σεναÏίων" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "ΕφαÏμογή των αλλαγών σας" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "ΈγκÏιση" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "ΈγκÏιση #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "ΈγκÏιση #%1: Οι σημειώσεις δεν καταγÏάφηκαν λόγω σφάλματος του συστήματος" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "ΈγκÏιση #%1: Οι σημειώσεις καταγÏάφηκαν" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Η ΈγκÏιση έχει πεÏάσει" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "Η έγκÏιση πέÏασε σε HTML" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Η ΈγκÏιση είναι έτοιμη για τον ΥπεÏθυνο" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "ΈγκÏιση \"Έτοιμος\" για τον κάτοχο σε HTML" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Η ΈγκÏιση έχει αποÏÏιφθεί" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "Η έγκÏιση αποÏÏίπτεται σε μοÏφή HTML" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "ΈγκÏιση" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "ΑπÏ" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "ΆÏθÏο #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "Το άÏθÏο #%1 δεν βÏέθηκε" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "ΆÏθÏο #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "ΔημιουÏγία ΆÏθÏου %1" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "ΔιαχείÏιση ΆÏθÏου" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Το ΆÏθÏο δε βÏέθηκε" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "ΆÏθÏα" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "ΆÏθÏα σε %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "ΆÏθÏα που αντιστοιχοÏν σε %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "ΆÏθÏα χωÏίς θέματα" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "ΠεÏιουσιακά στοιχεία #" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "ΠεÏιουσιακό στοιχείο #%1" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "ΠεÏιουσιακό στοιχείο #%1 που δημιουÏγήθηκε: %2" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "ΠεÏιουσιακό στοιχείο #%1: %2" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "ΔιαχείÏιση ΠεÏιουσιακών στοιχείων" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "Η δημιουÏγία ΠεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï… txn απέτυχε: %1" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "ΠÏοσαÏμοσμένα Πεδία ΠεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï Î£Ï„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "Η δημιουÏγία ΠεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï… απέτυχε: %1" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "ΠεÏιουσιακά στοιχεία" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "Τα ΠεÏιουσιακά στοιχεία δεν διαγÏάφονται" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Ανάθεση και αφαίÏεση Ï€ÏοσαÏμοσμένων πεδίων ουÏάς" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "ΠεÏιουσιακά στοιχεία που έχουν ανατεθεί" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "ΕπισÏναψη" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "ΕπισÏναψη αÏχείου" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Συνημμένο αÏχείο" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Συνημμένο" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Δεν ήταν δυνατή η φόÏτωση του συνημμένου '%1'" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Το συνημμένο έχει δημιουÏγηθεί" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Όνομα συνημμένου αÏχείου" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Συνημμένα" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Η κÏυπτογÏάφηση των συνημμένων έχει απενεÏγοποιηθεί" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Η ιδιότητα έχει διαγÏαφεί" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "Το χαÏακτηÏιστικό ενημεÏώθηκε" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Αυγ" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "Απέτυχε η εγκατάσταση του αυτόματου λογαÏιασμοÏ" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Δεν υπάÏχουν αυτόματα συνιστώμενα θέματα χÏωμάτων για την εικόνα σας. Αυτό μποÏεί να συμβαίνει επειδή φοÏτώσατε ένα Ï„Ïπο εικόνας που δεν υποστηÏίζεται από αυτή την έκδοση του GD. ΤÏποι που υποστηÏίζονται είναι: %1. ΜποÏείτε να ξανά-μεταγλωττίσετε την libgd και το GD.pm για να πεÏιλαμβάνει υποστήÏιξη και άλλων Ï„Ïπων εικόνας." #: etc/initialdata:261 msgid "Autoreply" msgstr "Αυτόματη απάντηση" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Αυτόματη απάντηση στους ΑιτοÏντες" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Αυτόματη απάντηση σε HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Διαθέσιμο" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "Ο Μέσος ÎŒÏος ΔημιουÏγήθηκε-Τελευταία ΕνημέÏωση" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "Ο Μέσος ÏŒÏος ΔημιουÏγήθηκε - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "Ο Μέσος ÎŒÏος ΔημιουÏγήθηκε-Ξεκίνησε" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "Μέσο Οφειλόμενο - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "Ο Μέσος ÏŒÏος Ξεκίνησε - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "Ο Μέσος ÏŒÏος Ξεκινά - Ξεκίνησε" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "Μέσος εκτιμώμενος χÏόνος" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "Μέσος χÏόνος αÏιστεÏά" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "Μέσος χÏόνος εÏγασίας" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Πίσω" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Κακή Ï€Ïοστασία Ï€ÏÎ¿ÏƒÏ‰Ï€Î¹ÎºÎ¿Ï Î±Ï€Î¿ÏÏήτου για ιδιότητα %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Βασικά" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "Ομαδικός" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "Ομαδικός (απενεÏγοποιημένο από τις Ïυθμίσεις)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Ομαδικοί αυτοματισμοί" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "Οι ομαδικοί αυτοματισμοί λειτουÏγοÏν μετά από μια σειÏά συναφών αλλαγών σε ένα αίτημα" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "ΠÏιν χÏησιμοποιηθοÏν τα άÏθÏα, ο RT διαχειÏιστής σας Ï€Ïέπει να %1δημιουÏγήσει ΚατηγοÏίες%2, εφαÏμόσει Ï„o άÏθÏo σε αυτά τα Ï€ÏοσαÏμοσμένα πεδία, και να χοÏηγήσει δικαιώματα χÏηστών για τις ΚατηγοÏίες και για CFs." #: etc/initialdata:257 msgid "Blank" msgstr "Κενό" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Σώμα" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Έντονο" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Σελιδοδείκτης" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "ΣÏνδεσμος σελιδοδείκτης για αυτή την αναζήτηση" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Σελιδοδείκτες Αιτημάτων" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Σελιδοδείκτες Αιτημάτων" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Πλοήγηση βάση θέματος" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Πλοήγηση όλων των εÏωτημάτων SQL που δημιουÏγήθηκαν σε αυτή την διεÏγασία" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Μαζική ενημέÏωση" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "Το CFs μποÏεί να αναζητηθεί χÏησιμποποιώντας παÏόμοια σÏνταξη όπως παÏαπάνω με %1" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "Υπολογισμός" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "Υπολογισμός τιμών" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Δεν είναι δυνατή η φόÏτωση της αποθηκευμένης αναζήτησης \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Δεν είναι δυνατή η Ï„Ïοποποίηση των χÏηστών του συστήματος" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Δεν μποÏεί να γίνει Ï€Ïοσθήκη Ï€ÏοσαÏμοσμένου πεδίου χωÏίς όνομα" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "Αδυναμία αλλαγής της Ï€Ïοεπιλεγμένης τιμής %1 από %2 σε %3: %4" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "Αδυναμία αλλαγής Ï€Ïοεπιλεγμένων τιμών από %1 σε %2: %3" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Δεν βÏέθηκε αποθηκευμένη αναζήτηση για να δουλέψετε" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Αδυναμία Ï€Ïοώθησης: δεν έχουν Ï€ÏοσδιοÏιστεί έγκυÏες διευθÏνσεις ηλεκτÏÎ¿Î½Î¹ÎºÎ¿Ï Ï„Î±Ï‡Ï…Î´Ïομείου" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Δεν μποÏείτε να συνδέσετε κάποιο αίτημα με τον εαυτό του" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Δεν είναι δυνατή η σÏνδεση με ένα διαγÏαμμένο αίτημα" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Δεν μποÏείτε να συγχωνεÏσετε κάποιο αίτημα με τον εαυτό του" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Δε μποÏείτε γÏήγοÏα να δημιουÏγήσετε αίτημα στην ουÏά %1 επειδή τα Ï€ÏοσαÏμοσμένα πεδία είναι υποχÏεωτικά. ΠαÏακαλώ τελειώστε με τη χÏήση της κανονικής σελίδας δημιουÏγίας του αιτήματος." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Το %1 δεν μποÏεί να αποθηκευτεί" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Δεν είναι δυνατή η αποθήκευση μιας αναζήτησης χωÏίς όνομα" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Δεν είναι δυνατή η αποθήκευση της αναζήτησης" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "Δε μποÏείτε να καθοÏίσετε τη βάση και το στόχο" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Δεν είναι δυνατή η Ï€Ïοσθήκη συνδέσμου σε απλό αÏιθμό" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Δεν είναι δυνατή η δημιουÏγία αιτημάτων σε απενεÏγοποιημένη ουÏά." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "Αδυναμία Ï„Ïοποποίησης" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "Κατάλογος" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "Ο Κατάλογος #%1 δημιουÏγήθηκε: %2" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "Κατάλογος %1: ΕπεξεÏγασία ΠÏοσαÏμοσμένων Πεδίων" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "Κατάλογος %1: ΤÏοποποίηση βασικών" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "Κατάλογος %1: ΤÏοποποίηση δικαιωμάτων ομάδας" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "Κατάλογος %1: ΤÏοποποίηση Ïόλων" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "Κατάλογος %1: ΤÏοποποίηση δικαιωμάτων χÏήστη" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "Η δημιουÏγία καταλόγου txn απέτυχε: %1" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "Η δημιουÏγία καταλόγου απέτυχε: %1" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "Κατάλογοι" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "Οι κατάλογοι δεν διαγÏάφονται" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Οι ΚατηγοÏίες βασίζονται σε" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "ΚατηγοÏία" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Αλλαγή" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Αλλαγή αιτήματος ΈγκÏισης σε κατάσταση «Ανοικτό»" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Αλλαγή θέματος email:" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Αλλαγή ÎºÏ‰Î´Î¹ÎºÎ¿Ï Ï€Ïόσβασης" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Η αλλαγή ουÏάς δεν εφαÏμόζεται" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "ΔιάγÏαμμα" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "Έλεγχος" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Επιλογή Όλων" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Έλεγχος σÏνδεσης με τη Βάση Δεδομένων" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Έλεγχος Πιστοποιητικών Βάσης Δεδομένων" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Επιλογή πλαισίου για διαγÏαφή" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Παιδί" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "ΥποκατηγοÏίες" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Επιλογή Ï„Ïπου Βάσης Δεδομένων" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Επιλογή από Θέματα για %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Πόλη" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Κλάση" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Όνομα Κλάσης" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Η κατηγοÏία δεν ήταν δυνατό να δημιουÏγηθεί: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "ΑναγνωÏιστικό κατηγοÏίας" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Η κατηγοÏία ήδη εφαÏμόζεται καθολικά" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Η κλάση ήδη εφαÏμόζεται σε %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "κατηγοÏίες" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "ΚαθαÏισμός" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "ΚαθαÏισμός Όλων" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Πατήστε \"ΟλοκλήÏωση Εγκατάστασης\" πιο κάτω για να ολοκληÏωθεί ο αυτόματος οδηγός." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Πατήστε \"ΑÏχικοποίηση Βάσης Δεδομένων\" για να δημιουÏγηθεί η βάση δεδομένων του RT και να εισαχθοÏν τα αÏχικά μεταδεδομένα. Αυτό μποÏεί να πάÏει λίγη ÏŽÏα." #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Κάντε κλικ για να επιλέξετε ένα χÏώμα" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "Κλείσμο ΠαÏαθÏÏου" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Κλειστό" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Κλειστά αιτήματα" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Συνδυασμένο Πλαίσιο: Επιλέξτε η εισάγετε πολλαπλές τιμές" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Συνδυασμένο Πλαίσιο: Επιλέξτε η εισάγετε μια τιμή" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Συνδυασμένο Πλαίσιο: Επιλέξτε η εισάγετε μέχÏι και %1 τιμές" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Σχόλιο" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "ΔιεÏθυνση Σχολίου" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "ΔιεÏθυνση Σχολίου" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "Σχολιασμός αιτήματος" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Σχόλια σε αιτήματα" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Σχόλια" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Σχόλια (δε θα σταλοÏν στους αιτοÏντες)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Σχόλια για το χÏήστη" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Τα Σχόλια Ï€Ïοστέθηκαν" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "ΟλοκλήÏωση Στελεχωμένων" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Συνθήκη" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Η συνθήκη '%1' δε βÏέθηκε" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Η συνθήκη είναι υποχÏεωτικό ÏŒÏισμα" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Η συνθήκη ταιÏιάζει..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Συνθήκη, ΕνέÏγεια και ΠÏότυπο" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Το ΑÏχείο Ρυθμίσεων %1 είναι κλειδωμένο" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Ρυθμίσεις για ουÏά %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "ΡÏθμιση παÏαμέτÏων για το Ïόλο %1" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Επιτυχής σÏνδεση" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "Επικοινωνία" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Επικοινωνήστε με τον RT διαχειÏιστή σας μέσω %1 ηλεκτÏονικής αλληλογÏαφίας σε %2%3" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Επικοινωνήστε με τον RT διαχειÏιστή σας." #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "ΠεÏιεχόμενο" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "Η εισαγωγή πεÏιεχομένου απέτυχε. Δείτε το αÏχείο καταγÏαφής σφαλμάτων για λεπτομέÏειες." #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Μη έγκυÏη διεÏθυνση ΙΡ" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Μη έγκυÏο πεδίο διευθÏνσεων ΙΡ" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "ΤÏπος-ΠεÏιεχομένου" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "ΔιεÏθυνση αλληλογÏαφίας" #: etc/initialdata:393 msgid "Correspondence" msgstr "ΑλληλογÏαφία" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "ΠÏοστέθηκε ΑλληλογÏαφία" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "ΑλληλογÏαφία σε HTML" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "Δεν είναι δυνατή η Ï€Ïοσθήκη %1 ως παÏαλήπτη: %2" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Δεν έχει Ï€Ïοστεθεί η νέα τιμή Ï€ÏοσαÏμοσμένου πεδίου: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Δεν ήταν δυνατή η αλλαγή υπευθÏνου: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Δεν ήταν δυνατή η δημιουÏγία ΠÏοσαÏμοδμένου Πεδίου: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Δεν ήταν δυνατή η δημιουÏγία της ομάδας" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Δεν ήταν δυνατή η δημιουÏγία αναζήτησης : %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Δεν ήταν δυνατή η δημιουÏγία αιτήματος. Δεν έχει οÏιστεί ουÏά" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Δεν ήταν δυνατή η δημιουÏγία του χÏήστη" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Δεν ήταν δυνατή η διαγÏαφή αναζήτησης %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Δεν ήταν δυνατή η εÏÏεση της ομάδας '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Δεν ήταν δυνατή η εÏÏεση ή η δημιουÏγία του χÏήστη '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Δεν ήταν δυνατή η φόÏτωση της ιδιότητας %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Δεν ήταν δυνατή η φόÏτωση της ΚατηγοÏίας %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Δεν ήταν δυνατή η φόÏτωση του ΠÏοσαÏμοσμένου Πεδίου %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Δεν ήταν δυνατή η φόÏτωση της ομάδας" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Δεν ήταν δυνατή η φόÏτωση αντικειμένου για %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "Δεν ήταν δυνατή η φόÏτωση του σεναÏίου #%1" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "Αποτυχία φόÏτωση του ιστοÏÎ¹ÎºÎ¿Ï Ï„Î¿Ï… αιτήματος. Αιτία:" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Δεν ήταν δυνατή η φόÏτωση του χÏήστη '%1'" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "Δεν ήταν δυνατό να κάνει %1 ένα %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "Δεν ήταν δυνατή η κατάÏγηση %1 ως %2" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Δεν ήταν δυνατός ο καθοÏισμός των πληÏοφοÏιών του χÏήστη" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Δεν ήταν δυνατή η ενημέÏωση της στήλης %1: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "Δεν ήταν δυνατή η Ï€Ïοσθήκη δεδομένου ότι είναι ήδη καθολικό" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Δεν ήταν δυνατή η Ï€Ïοσθήκη επισÏναψης" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Δεν ήταν δυνατή η Ï€Ïοσθήκη μέλους στην ομάδα" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Δεν ήταν δυνατή η μεταγλώττιση τμήματος κώδικα %1 '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Δεν ήταν δυνατή η μεταγλώττιση τμήματος κώδικα Ï€ÏοτÏπου '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Δεν ήταν δυνατή η δημιουÏγία συναλλαγής: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Δεν ήταν δυνατή η δημιουÏγία εγγÏαφής: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "Δεν ήταν δυνατή η δημιουÏγία ομάδων Ïόλου για πεÏιουσιακό στοιχείο" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "Δεν ήταν δυνατή η δημιουÏγία ομάδων Ïόλου για κατάλογο" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Δεν ήταν δυνατή η διαγÏαφή του ταμπλό %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Δεν ήταν δυνατή η εÏÏεση της γÏαμμής" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Δεν βÏέθηκε κατάλληλη συναλλαγή, παÏάβλεψη" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Δεν βÏέθηκε ο εντολέας" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Δεν βÏέθηκε η τιμή" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "Δεν ήταν δυνατή η λήψη %1 πληÏοφοÏίες κλειδιών" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Δεν ήταν δυνατή η φόÏτωση της ΚατηγοÏίας %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Δεν ήταν δυνατή η φόÏτωση του ΠÏοσαÏμοσμένου Πεδίου #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Δεν ήταν δυνατή η φόÏτωση του ΠÏοσαÏμοσμένου Πεδίου #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Δεν ήταν δυνατή η φόÏτωση ΠÏοσαÏμοσμένου Πεδίου %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "Δεν ήταν δυνατή η φόÏτωση αντιγÏάφου %1 #%2" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Δεν ήταν δυνατή η φόÏτωση αντιγÏάφου αιτήματος #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Δεν ήταν δυνατή η φόÏτωση του ταμπλό %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Δεν ήταν δυνατή η φόÏτωση της ομάδας #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Δεν ήταν δυνατή η φόÏτωση της ομάδας %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Δεν ήταν δυνατή η φόÏτωση του συνδέσμου" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "Δεν ήταν δυνατή η φόÏτωση του συνδέσμου: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Δεν ήταν δυνατή η φόÏτωση του αντικειμένου %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Δεν ήταν δυνατή η φόÏτωση ή η δημιουÏγία του χÏήστη: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "Δεν ήταν δυνατή η φόÏτωση του εντολέα #%1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "Δεν ήταν δυνατή η φόÏτωση του εντολέα: %1" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Δεν ήταν δυνατή η φόÏτωση της ουÏάς" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Δεν ήταν δυνατή η φόÏτωση της ουÏάς #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Δεν ήταν δυνατή η φόÏτωση της ουÏάς %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Δεν ήταν δυνατή η φόÏτωση της ουÏάς '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Δεν ήταν δυνατή η φόÏτωση του σεναÏίου #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Δεν ήταν δυνατή η φόÏτωση του Ï€ÏοτÏπου σελίδας #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Δεν ήταν δυνατή η φόÏτωση του καθοÏισμένου εντολέα" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Δεν ήταν δυνατή η φόÏτωση του αιτήματος '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Δεν ήταν δυνατή η φόÏτωση της ιδιότητας μέλους του θέματος κατά την Ï€Ïοσπάθεια διαγÏαφής του" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Δεν ήταν δυνατή η φόÏτωση της συναλλαγής #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Δεν ήταν δυνατή η φόÏτωση του χÏήστη" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Δεν ήταν δυνατή η φόÏτωση του χÏήστη #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Δεν ήταν δυνατή η φόÏτωση του χÏήστη #%1 ή του χÏήστη '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Δεν ήταν δυνατή η φόÏτωση του χÏήστη '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "Δεν ήταν δυνατή η ανάλυση Βάσης URI: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "Δεν ήταν δυνατή η ανάλυση Στόχου URI: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "Δεν ήταν δυνατή η κατάÏγηση Ï€ÏοηγοÏμενου μέλους: %1" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Δεν ήταν δυνατή η αντικατάσταση του πεÏιεχομένου με αποκÏυπτογÏαφημένα δεδομένα: '%1'" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Δεν ήταν δυνατή η αντικατάσταση του πεÏιεχομένου με κÏυπτογÏαφημένα δεδομένα: '%1'" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "Δεν ήταν δυνατή η επίλυση '%1' σε μια σÏνδεση" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Δεν ήταν δυνατή η επίλυση της βάσης του '%1' σε URI" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Δεν ήταν δυνατή η επίλυση του στόχου '%1' σε URI" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Δεν ήταν δυνατή η Ï€Ïοσθήκη του %1 ως παÏατηÏητή: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Δεν ήταν δυνατό να οÏιστεί ιδιωτικό κλειδί" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Δεν ήταν δυνατό να αναιÏεθεί ιδιωτικό κλειδί" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "ΧώÏα" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "ΔημιουÏγία" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "ΔημιουÏγία Îέου" #: etc/initialdata:104 msgid "Create Tickets" msgstr "ΔημιουÏγία αιτημάτων" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "ΔημιουÏγία ΚατηγοÏίας" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "ΔημιουÏγία ΠÏÏοσαÏμοσμένου Πεδίου" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "ΔημιουÏγία ΠÏοσαÏμοσμένου Πεδίου για την ουÏά %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "ΔημιουÏγία Ï€ÏοσαÏμοσμένου Ïόλου" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "ΔημιουÏγία ενός ÎºÎ±Î¸Î¿Î»Î¹ÎºÎ¿Ï ÏƒÎµÎ½Î±Ïίου" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "ΔημιουÏγία καινοÏÏγιου άÏθÏου" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "ΔημιουÏγία καινοÏÏγιου άÏθÏου σε" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "ΔημιουÏγία νέου πεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï… στον κατάλογο %1" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "ΔημιουÏγία νέου πεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï… στον κατάλογο %1." #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "ΔημιουÏγία νέου ταμπλό" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "ΔημιουÏγία νέας ομάδας" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "ΔημιουÏγία καινοÏÏγιου Ï€ÏοτÏπου σελίδας για την ουÏά %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "ΔημιουÏγία νέου αιτήματος στο %1" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "ΔημιουÏγία νέου αιτήματος στην ουÏά %1 σχετικά με το πεÏιουσιακό στοιχείο #%2: %3." #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "ΔημιουÏγία νέου χÏήστη" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "ΔημιουÏγία νέας ουÏάς" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "ΔημιουÏγία ενός σεναÏίου και Ï€Ïοσθήκη στην ουÏά %1" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "ΔημιουÏγία Ï€ÏοτÏπου σελίδας" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "ΔημιουÏγία αιτήματος" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "ΔημιουÏγία αιτήματος στο %1" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "ΔημιουÏγήστε ένα αίτημα με αυτόν τον χÏήστη ως τον ΑιτοÏντα στην ΟυÏά αναμονής" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "ΔημιουÏγία άÏθÏου" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "ΔημιουÏγία άÏθÏου στην κλάση..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "ΔημιουÏγία άÏθÏων σε αυτή την κατηγοÏία" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "ΔημιουÏγία ΠεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "ΔημιουÏγία ΠεÏιουσιακών στοιχείων" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "ΔημιουÏγία καταλόγου" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "ΔημιουÏγία ταμπλών ομάδας" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "ΔημιουÏγία συνδεδεμένου αιτήματος" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "ΔημιουÏγία συνδεδεμένου αιτήματος για το πεÏιουσιακό στοιχείο #%1: %2" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "ΔημιουÏγία νέου πεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "ΔημιουÏγία νέου αιτήματος βασισμένου στο Ï€Ïότυπο Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… σεναÏίου" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "ΔημιουÏγία Ï€Ïοσωπικών ταμπλών" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "ΔημιουÏγία ταμπλών συστήματος" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "ΔημιουÏγία αιτήματος" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "ΔημιουÏγία αιτημάτων" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "ΔημιουÏγία, Ï„Ïοποποίηση και διαγÏαφή εγγÏαφών Λιστών Ελέγχου ΠÏόσβασης (ACL)" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "ΔημιουÏγία, Ï„Ïοποποίηση και διαγÏαφή Ï€ÏοσαÏμοσμένων πεδίων" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "ΔημιουÏγία, Ï„Ïοποποίηση και διαγÏαφή τιμών Ï€ÏοσαÏμοσμένων πεδίων" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "ΔημιουÏγία, Ï„Ïοποποίηση και διαγÏαφή Ï€ÏοσαÏμοσμένων Ïόλων" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "ΔημιουÏγία, Ï„Ïοποποίηση και διαγÏαφή ουÏάς" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "ΔημιουÏγία, Ï„Ïοποποίηση και διαγÏαφή αποθηκευμένων αναζητήσεων" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "ΔημιουÏγία, Ï„Ïοποποίηση και διαγÏαφή χÏηστών" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "ΔημιουÏγία, Ï„Ïοποποίηση, και απενεÏγοποίηση καταλόγων" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "ΔημιουÏγήθηκε" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "ΔημιουÏγήθηκε από" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Το Ειδικό Πεδίο %1 δημιουÏγήθηκε" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "ΔημιουÏγήθηκε από" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "ΔημιουÏγία αναζήτησης %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "ΔημιουÏγός" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "ΚÏυπτογÏαφία" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "Η ΚÏυπτογÏαφία έχει απενεÏγοποιηθεί" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "ΤÏέχοντες ΣÏνδεσμοι" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "ΤÏέχοντες ΠαÏαλήπτες" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "ΤÏέχουσα Αναζήτηση" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "ΤÏέχοντα μέλη" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "ΤÏέχουσα αναζήτηση" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "ΤÏέχοντες παÏατηÏητές" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "ΠÏοσαÏμοσμένo CSS (Για Ï€ÏοχωÏημένους)" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "ΠÏοσαÏμοσμένα πεδία" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "ΠÏοσαÏμοσμένα Πεδία για %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "ΠÏοσαÏμοσμένα Πεδία για ουÏά %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "ΠÏοσαÏμοσμένοι Ρόλοι" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "Η Ï€ÏοσαÏμοσμένη ενέÏγεια διαπÏάττει κώδικα" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "ΠÏοσαÏμοσμένος κώδικας ενέÏγειας Ï€Ïοετοιμασίας" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "ΠÏοσαÏμοσμένη συνθήκη" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Το Ï€ÏοσαÏμοσμένο πεδίο #%1 δεν εφαÏμόζεται σε αυτό το αντικείμενο" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "ΠÏοσαÏμοσμένο πεδίο %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Το Ï€ÏοσαÏμοσμένο πεδίο %1 δεν εφαÏμόζεται σε αυτό το αντικείμενο" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Το Ï€ÏοσαÏμοσμένο πεδίο %1 έχει τιμή" #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Το Ï€ÏοσαÏμοσμένο πεδίο %1 δεν έχει τιμή" #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Το Ï€ÏοσαÏμοσμένο πεδίο %1 δεν βÏέθηκε" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Η τιμή Ï€ÏοσαÏμοσμένου πεδίου %1 δεν βÏέθηκε για το Ï€ÏοσαÏμοσμένο πεδίο %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Δεν ήταν δυνατή η διαγÏαφή της τιμής Ï€ÏοσαÏμοσμένου πεδίου" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Η τιμή του Ï€ÏοσαÏμοσμένου πεδίου διαγÏάφηκε" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "ΔημιουÏγία Ï€ÏοσαÏμοσμένου Ïόλου" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "ΑπενεÏγοποίηση Ï€ÏοσαÏμοσμένου Ïόλου" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "ΕνεÏγοποίηση Ï€ÏοσαÏμοσμένου Ïόλου" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "Ο Ï€ÏοσαÏμοσμένος Ïόλος δεν μποÏεί να Ï€Ïοστεθεί" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "ΠÏοσαÏμοσμένο Πεδίο" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "Τιμή ΠÏοσαÏμοσμένου Πεδίου" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "ΠÏοσαÏμοσμένος Ρόλος" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "ΠÏοσαÏμογή" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "ΠÏοσαÏμογή Βασικών" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "ΠÏοσαÏμογή ΔιευθÏνσεων ΗλεκτÏονικής ΑλληλογÏαφίας" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "ΠÏοσαÏμογή Ρυθμίσεων ΗλεκτÏονικής ΑλληλογÏαφίας" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "ΠÏοσαÏμόστε τα ταμπλό στο μενοÏ" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "ΠÏοσαÏμογή του θέματος RT" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "ΠÏοσαÏμογή της εμφάνισης του RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Κωδικός DBA" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Όνομα χÏήστη DBA" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "ΗμεÏησίως" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "ΗμεÏήσια σÏνοψη" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Ταμπλό" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "Το ταμπλό %1 δε μπόÏεσε να ενημεÏωθεί: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "Το ταμπλό %1 ενημεÏώθηκε" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Δεν ήταν δυνατή η δημιουÏγία του Ταμπλό: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Δεν ήταν δυνατή η ενημέÏωση του Ταμπλό: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Το Ταμπλό ενημεÏώθηκε" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Ταμπλό" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Ταμπλό στο μενοÏ" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Ταμπλό στο Î¼ÎµÎ½Î¿Ï Î³Î¹Î± το χÏήστη %1" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Διακομιστής βάσης δεδομένων" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Κωδικός βάσης δεδομένων για RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "ΘÏÏα βάσης δεδομένων" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "ΤÏπος βάσης δεδομένων" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Όνομα χÏήστη βάσης δεδομένων του RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "ΗμεÏομηνία" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "ΜοÏφή ημεÏομηνίας" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "ΗμεÏομηνίες" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "ΗμεÌÏα" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "ΗμέÏα του Μήνα" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "ΗμέÏα της Εβδομάδας" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "ΗμέÏα του Έτους" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Δεκ" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "ΑποκÏυπτογÏάφηση" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "Σφάλμα αποκÏυπτογÏάφησης, επικοινωνήστε με τον διαχειÏιστή" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "ΠÏοεπιλεγμένες Τιμές" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "ΠÏοεπιλεγμένες Τιμές για την ουÏά %1" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "ΠÏοκαθοÏισμένη ουÏά" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "ΠÏοεπιλεγμένο Ï€Ïότυπο υπενθÏμισης" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "ΠÏοκαθοÏισμένο: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "ΠÏοκαθοÏισμένο: %1/%2 αλλαγή από %3 σε %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "ΔιαγÏαφή" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "ΔιαγÏαφή ΠÏοτÏπου" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Η διαγÏαφή απέτυχε: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "ΔιαγÏαφή ταμπλών ομάδας" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Η λειτουÏγία διαγÏαφής έχει απενεÏγοποιηθεί από τις Ïυθμίσεις του κÏκλου ζωής" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "ΔιαγÏαφή Ï€Ïοσωπικών ταμπλών" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "ΔιαγÏαφή ταμπλών συστήματος" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "ΔιαγÏαφή αιτημάτων" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "ΔιαγÏαφή τιμών" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "ΔιαγÏάφηκε %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "ΔιαγÏαμμένες αναζητήσεις" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "ΔιαγÏαφή αποθηκευμένης αναζήτησης" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "ΔιαγÏαφή αναζήτησης %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "ΗΔιαγÏαφή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… αντικειμένου θα έσπαζε την αναφοÏική ακεÏαιότητα" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Η ΔιαγÏαφή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… αντικειμένου θα παÏαβίαζε την αναφοÏική ακεÏαιότητα" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "ΆÏνηση" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "ΕξαÏτώμενο από" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "ΠÏοστέθηκε η εξάÏτηση από %1" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "ΔιαγÏάφηκε η εξάÏτηση από %1" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "ΠÏοστέθηκε η εξάÏτηση σε %1" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "ΔιαγÏάφηκε η εξάÏτηση σε %1" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "ΕξαÏτάται από" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "ΠεÏιγÏαφή το ζητήματος πιο κάτω" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "ΠεÏιγÏαφή" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "ΛεπτομεÏείς πληÏοφοÏίες για τις Ïυθμίσεις του RT σας" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "ΛεπτομέÏειες" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "ΚατεÏθυνση" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "ΑπενεÏγοποίηση άÏθÏων σε αυτή την κατηγοÏία" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "ΑπενεÏγοποιημένα" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "ΑπενεÏγοποιημένο;" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "ΠÏοβολή" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Εμφάνιση Λίστας Ελέγχου ΠÏόσβασης" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Εμφάνιση ΆÏθÏου %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Εμφάνιση Στηλών" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "Εμφανίζει όλα τα συνημμένα Î±Ï€Î»Î¿Ï ÎºÎµÎ¹Î¼Î­Î½Î¿Ï… σε μια γÏαμμματοσειÏά σταθεÏÎ¿Ï Ï€Î»Î¬Ï„Î¿Ï…Ï‚ με διατηÏημένη μοÏφοποίηση αλλά με κάλυψη όπως απαιτείται." #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "Εμφάνιση μηνυμάτων με πλοÏσιο κείμενο εάν είναι διαθέσιμο" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Εμφάνιση συνημμένων Î±Ï€Î»Î¿Ï ÎºÎµÎ¹Î¼Î­Î½Î¿Ï… με γÏαμματοσειÏά σταθεÏÎ¿Ï Ï€Î»Î¬Ï„Î¿Ï…Ï‚" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Εμφάνιση αιτήματος μετά το \"ΓÏήγοÏη ΔημιουÏγία\"" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Διανέμεται κάτω από την %1έκδοση 2 της Γενικής Άδειας ΧÏήσης (GNU GPL)%2" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "ΔημιουÏγία όλων και οτιδήποτε" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Όνομα τομέα" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Μην πεÏιλάβεις το http://, απλά κάτι σαν 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Îα μην ανανεώνεται η αÏχική σελίδα" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Îα μην ανανεώνονται τα αποτελέσματα αναζήτησης" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Îα μην ανανεώνετε αυτή τη σελίδα" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Îα μην εμπιστευτείτε καθόλου αυτό το κλειδί" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Λήψη" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "Λήψη Î›Î¿Î³Î¹ÏƒÏ„Î¹ÎºÎ¿Ï Ï†Ïλλου" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Λήψη ενδιάμεσου αÏχείου" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "Αποθέστε τα αÏχεία εδώ ή κάντε κλικ για να επισυνάψετε" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Αναδυόμενο μενοÏ" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Έως" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "ΣΦΑΛΜΑ: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "ΕÏκολη ενημέÏωση των ανοικτών αιτημάτων σας" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "ΕÏκολη Ï€Ïοβολή των υπενθυμίσεων σας" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "ΕπεξεÏγασία" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "ΕπεξεÏγασία %1" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "ΕπεξεÏγασία ΠÏοσαÏμοσμένων Πεδίων" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "ΕπεξεÏγασία ΠÏοσαÏμοσμένων Πεδίων για %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "ΕπεξεÏγασία ΠÏοσαÏμοσμένων Πεδίων για ΠεÏιουσιακά Στοιχεία σε όλους τους Καταλογους" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "ΕπεξεÏγασία ΠÏοσαÏμοσμένων Πεδίων για όλες τις ομάδες" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "ΕπεξεÏγασία ΠÏοσαÏμοσμένων Πεδίων για όλες τις ουÏές" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "ΕπεξεÏγασία ΠÏοσαÏμοσμένων Πεδίων για όλους τους χÏήστες" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "ΕπεξεÏγασία ΠÏοσαÏμοσμένων Πεδίων για άÏθÏα σε όλες τις κατηγοÏίες" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "ΕπεξεÏγασία ΠÏοσαÏμοσμένων Πεδίων για αιτήματα σε όλες τις ουÏές" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "ΕπεξεÏγασία Συνδέσμων" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "ΕπεξεÏγασία ΕÏωτήματος" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "ΕπεξεÏγασία Αναζήτησης" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "ΕπεξεÏγασία καθολικής ιεÏαÏχίας θέματος" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "ΕπεξεÏγασία Ï€ÏοτÏπων συστήματος" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "ΕπεξεÏγασία ιεÏαÏχίας θέματος για %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "ΕπεξεÏγασία ΠÏοσαÏμοσμένου πεδίου %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "ΕπεξεÏγασία μελών για ομάδα %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Η βάση ή ο στόχος Ï€Ïέπει να καθοÏιστοÏν" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Είτε δεν έχετε τα δικαιώματα να δείτε την αποθηκευμένη αναζήτηση %1, είτε το αναγνωÏιστικό είναι λανθασμένο" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "ΠαÏέλθει" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "ΑλληλογÏαφία" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "ΔιεÏθυνση ΑλληλογÏαφία" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "ΣÏνοψη ΗλεκτÏονικής ΑλληλογÏαφίας" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "Πηγή ηλεκτÏονικής αλληλογÏαφίας για αίτημα %1, Συνημμένο %2" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Η διεÏθυνση αλληλογÏαφίας χÏησιμοποιείται ήδη" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "ΠαÏάδοση ΑλληλογÏαφίας" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "ΠÏότυπο ηλεκτÏονικής αλληλογÏαφίας για πεÏιοδική αποστολή σÏνοψης" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "Κενό" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "ΕνεÏγοποίηση παÏάθεση αναδίπλωσης ;" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "ΕνεÏγοποιημένα" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "ΕνεÏγοποιημένο (αποεπιλογή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πλαισίου απενεÏγοποιεί το άÏθÏο)" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "ΕνεÏγοποιημένο (αποεπιλογή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πλαισίου απενεÏγοποιεί την κατηγοÏία)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "ΕνεÏγοποιημένο (αποεπιλογή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πλαισίου απενεÏγοποιεί το Ï€ÏοσαÏμοσμένο πεδίο)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "ΕνεÏγοποιημένο (αποεπιλογή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πλαισίου απενεÏγοποιεί το Ï€ÏοσαÏμοσμένο Ïόλο)" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "ΕνεÏγοποιημένο (αποεπιλογή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πλαισίου απενεÏγοποιεί την ομάδα)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "ΕνεÏγοποιημένο (αποεπιλογή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πλαισίου απενεÏγοποιεί την ουÏά)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "ΕνεÏγοποιημένο (η μη επιλογή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πλαισίου απενεÏγοποιεί αυτό το σενάÏιο)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "ΕνεÏγοποιημένοι Κατάλογοι" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "ΕνεÏγές ΚατηγοÏίες" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "ΕνεÏγές ΟυÏές" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "ΕνεÏγοποιημένοι κατάλογοι που πληÏοÏν τα κÏιτήÏια αναζήτησης" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "ΕνεÏγοποιημένες ουÏές που ταιÏιάζουν στα κÏιτήÏια αναζήτησης" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "ΕνεÏγοποιημένη κατάσταση %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "ΚÏυπτογÏάφηση" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "ΠÏοκαθοÏισμένη κÏυπτογÏάφηση" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "ΚÏυπτογÏάφηση/ΑποκÏυπτογÏάφηση" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "ΚÏυπτογÏάφηση/ΑποκÏυπτογÏάφηση συναλλαγής #%1 του αιτήματος #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "ΚÏυπτογÏάφηση" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Σφάλμα ΚÏυπτογÏάφησης, επικοινωνήστε με τον διαχειÏιστή" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "Εισαγωγή" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Εισαγωγή άÏθÏων, αιτημάτων ή άλλων ΔιευθÏνσεων URL που σχετίζονται με το άÏθÏο" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "Εισάγετε συνδέσμους σε πεÏιουσιακά στοιχεία ως \"asset:###\", όπου ### αντιστοιχεί στο ID του πεÏιουσιακό στοιχείο." #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Εισαγωγή πολλαπλών πεδίων διευθÏνσεων IP" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Εισαγωγή πολλαπλών διευθÏνσεων IP" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Εισαγωγή πολλαπλών τιμών" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Εισαγωγή πολλαπλών τιμών με αυτοσυμπλήÏωση" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Εισαγωγή αντικειμένων ή διευθÏνσεων (URI) για σÏνδεση αντικειμένων σε αυτά. ΔιαχωÏίστε πολλαπλές καταχωÏήσεις με διαστήματα." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Εισαγωγή μίας διεÏθυνσης IP" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Εισαγωγή ενός πεδίου διευθÏνσεων IP" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Εισαγωγή μια τιμής" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Εισαγωγή μιας τιμής με αυτοσυμπλήÏωση" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Εισαγωγή ουÏών ή διευθÏνσεων (URI) για σÏνδεση ουÏών σε αυτές. ΔιαχωÏίστε πολλαπλές καταχωÏήσεις με διαστήματα." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Εισαγωγή αιτημάτων ή διευθÏνσεων (URI) για σÏνδεση αιτημάτων σε αυτά. ΔιαχωÏίστε πολλαπλές καταχωÏήσεις με διαστήματα." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "Εισάγετε αιτήματα ή URI για να συνδεθείτε. ΔιαχωÏίστε πολλές καταχωÏήσεις με κενά διαστήματα." #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Εισαγωγή Ï€ÏοκαθοÏισμένου χÏόνου σε ÏŽÏες" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Εισαγωγή μέχÏι και %1 πεδίων διευθÏνσεων IP" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Εισαγωγή μέχÏι και %1 διευθÏνσεων IP" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Εισαγωγή μέχÏι και %1 τιμών" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Εισαγωγή μέχÏι και %1 τιμών με αυτοσυμπλήÏωση" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" "Η εισαγωγή %1, %2, %3, ή %4 πεÏιοÏίζει τα αποτελέσματα για τα αιτήματα με έναν από τους αντίστοιχους Ï„Ïπους των καταστάσεων.\\r\n" "Κάθε επιμέÏους κατάσταση ονόματος πεÏιοÏίζει τα αποτελέσματα μόνο σε καταστάσεις που αναφέÏονται." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "Υπόδειξη καταχώÏησης" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "Μεταβλητές πεÏιβάλλοντος" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Σφάλμα" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "Σφάλμα κατά τη φόÏτωση συνημμένου" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "Σφάλμα στη σχεδίαση γÏαφήματος: %1" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Σφάλμα στο χÏήστη RT: δημόσιο κλειδί" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Σφάλμα:Το ταμπλό λείπει" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Σφάλμα: εσφαλμένα δεδομένα GnuPG" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "Σφάλμα: κακή κÏυπτογÏάφηση δεδομένων" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Σφάλμα: δεν ήταν δυνατή η αλλαγή της τιμής Î¹Î´Î¹Ï‰Ï„Î¹ÎºÎ¿Ï Î±Ï€Î¿ÏÏήτου για την Ï„Ïέχουσα αναζήτηση" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Σφάλμα: δεν ήταν δυνατή η φόÏτωση της αποθηκευμένης αναζήτησης %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Σφάλμα: δεν υπάÏχει ιδιωτικό κλειδί" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Σφάλμα: δημόσιο κλειδί" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Σφάλμα: η αναζήτηση %1 δεν ενημεÏώθηκε: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "Σφάλμα: μη κÏυπτογÏαφημένο μήνυμα" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Κλιμάκωση αιτήματος" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Εκτιμώμενο" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Όλοι" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "ΠαÏάδειγμα:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Λήξη" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "ΕνεÏγοποίηση εξωτεÏικής πιστοποίησης" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "Επιπλέον ΠληÏοφοÏίες" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "ΕπιπÏόσθετες πληÏοφοÏίες" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Εξαγωγή ΆÏθÏου" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Εξαγωγή Ετικέτας Θέματος" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Εξαγωγή νέου άÏθÏου από αίτημα #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Εξαγωγή άÏθÏου από αίτημα #%1 στη κατηγοÏία %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Εξαγωγή ετικετών από το θέμα της Συναλλαγής και Ï€Ïοσθήκη στο θέμα του αιτήματος" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Αποτυχία σÏνδεσης με Βάση Δεδομένων: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Αποτυχία δημιουÏγίας ιδιότητας %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Αποτυχία εÏÏεσης της ψευδοομάδας χÏηστών 'ΠÏονομιοÏχοι'." #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Αποτυχία εÏÏεσης της ψευδοομάδας χÏηστών 'Μη ΠÏονομιοÏχοι'" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Αποτυχία φόÏτωσης %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Αποτυχία φόÏτωσης %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Αποτυχία φόÏτωσης αÏθÏώματος %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Αποτυχία φόÏτωσης αντικειμένου για %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Αποτυχία φόÏτωσης Ï€ÏοτÏπου" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "Αποτυχία φόÏτωσης αιτήματος %1" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Αποτυχία επεξεÏγασίας Ï€ÏοτÏπου" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "Αποτυχία ενημέÏωση μοÏφοποίησης. Αιτία:" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Φεβ" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Ροές" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Πεδίο" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Πηγή τιμών πεδίου:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "Η εισαγωγή του αÏχείου '%1' απέτυχε. Δείτε το αÏχείο καταγÏαφής σφαλμάτων για λεπτομέÏειες." #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Όνομα αÏχείου" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "Τα ονόματα αÏχείων με διπλά εισαγωγικά δε μποÏοÏν να φοÏτωθοÏν." #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "ΣυμπλήÏωση παÏαμέτÏων" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "ΣυμπλήÏωση πλαισίων χÏησιμοποιώντας χÏωματισμοÏÏ‚," #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "ΣυμπλήÏωση πολλαπλών πεÏιοχών κειμένου" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "ΣυμπλήÏωση πολλαπλών πεÏιοχών βικικειμένου" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "ΣυμπλήÏωση μιας πεÏιοχής κειμένου" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "ΣυμπλήÏωση μιας πεÏιοχής βικικειμένου" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "ΣυμπλήÏωση διεÏθυνσης URL στο πεδίο" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "ΣυμπλήÏωση μέχÏι και %1 πεÏιοχών κειμένου" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "ΣυμπλήÏωση μέχÏι και %1 πεÏιοχών βικικειμένου" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Τελική ΠÏοτεÏαιότητα" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "ΕÏÏεση ομάδας..." #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Î’Ïείτε ένα χÏήστη" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "ΕÏÏεση χÏήστη..." #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "ΕÏÏεση όλων των χÏηστών που" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "Î’Ïείτε ένα πεÏιουσιακό στοιχείο" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "ΕÏÏεση ομάδων που" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "ΕÏÏεση ατόμων που" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "ΕÏÏεση αιτημάτων" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "Î’Ïείτε ΠεÏιουσιακό στοιχείο" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "Î’Ïείτε ΧÏήστη" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "ΟλοκλήÏωση" #: share/html/Elements/Tabs:878 msgid "First" msgstr "ΠÏώτο" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "Για τοπική βοήθεια, παÏακαλοÏμε επικοινωνήστε με %1" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "Για τη πλήÏη δÏναμη των αναζητήσεων του RT, παÏακαλώ επισκεφθείτε τη %1αναζήτηση του κατασκευαστή διεπαφής%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Επιβολή αλλαγής" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "ΜοÏφοποίηση" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "Οι iCal διαμοÏφώσεις Ï„ÏοφοδοτοÏν συμβάντα με ημεÏομηνία και ÏŽÏα" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "ΠÏοώθηση" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "ΠÏοώθηση μηνÏματος" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "ΠÏοώθηση μηνÏματος και επιστÏοφή" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "ΠÏοώθηση αιτήματος" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "ΠÏοώθηση μηνυμάτων εκτός RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "ΠÏοώθηση αιτήματος #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "ΠÏοώθηση συναλλαγής #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "ΠÏοώθηση %3Συναλλαγής #%1%4 σε %2" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "ΠÏοώθηση αιτήματος σε %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "ΠÏοωθημένο μήνυμα" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "ΠÏοωθημένο μήνυμα αιτήματος" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "Î’Ïέθηκαν %quant(%1,πεÏιουσιακό στοιχείο,πεÏιουσιακά στοιχεία)" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Î’Ïέθηκε %quant(%1,ticket)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Î’Ïέθηκε Αντικείμενο" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Συχνότητα" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "ΠαÏ" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "ΠαÏασκευή" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Από" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "Το GD είναι απενεÏγοποιημένο ή μη εγκατεστημένο. ΜποÏείτε να ανεβάσετε μια εικόνα αλλά δεν θα πάÏετε αυτόματες υποδείξεις χÏωμάτων." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Γενικά" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "Γενικά πεÏιουσιακά στοιχεία" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Γενικά δικαιώματα" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Για να ξεκινήσετε" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "Δώστε έξοδο ακόμη και για τα μηνÏματα που αποστέλλονται με επιτυχία" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Δόθηκε σε %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Καθολικές Ρυθμίσεις" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Καθολικές Ιδιότητες" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Καθολικά Θέματα" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Καθολική διαμόÏφωση Ï€ÏοσαÏμοσμένου πεδίου" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "Τα καθολικά ταμπλό στο Î¼ÎµÎ½Î¿Ï Î±Ï€Î¿Î¸Î·ÎºÎµÏτηκαν." #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "Καθολικό ή η ουÏά συγκεκÏιμένου Ï€ÏοτÏπου σελίδας '%1' δεν βÏέθηκε" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Το καθολικό στοιχείο Ï€Ïλης %1 αποθηκεÏτηκε" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "Το καθολικό Ï€Ïότυπο '%1' δεν βÏέθηκε" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Μετάβαση" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "Μετάβαση πίσω / μπÏοστά" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Μετάβαση σε ομάδα" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Μετάβαση σε χÏήστη" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Μετάβαση!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Μετάβαση σε αίτημα" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Μετάβαση σε αίτημα" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "ΓÏάφημα" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Ιδιότητες γÏαφήματος" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Οι γÏαφικές παÏαστάσεις δεν είναι διαθέσιμες" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Ομάδα" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Δικαιώματα Ομάδας" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Η ομάδα πεÏιλαμβάνει ήδη το μέλος: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "Ομαδοποίηση κατά" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Η ομάδα δεν μποÏοÏσε να δημιουÏγηθεί: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Η ομάδα δημιουÏγήθηκε" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Η ομάδα απενεÏγοποιήθηκε" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Η ομάδα ενεÏγοποιήθηκε" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Η ομάδα δεν έχει τέτοιο μέλος" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Το όνομα ομάδας '%1' χÏησιμοποιείται ήδη" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Η ομάδα δε βÏέθηκε" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "Ομάδα αιτημάτων από" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "Ομάδα: %1" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "Ομαδοποιημένα αποτελέσματα αναζήτησης" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Ομάδες" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Οι ομάδες δεν μποÏοÏν να είναι μέλη των μελών τους" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Ομάδες που ταιÏιάζουν στα κÏιτήÏια αναζήτησης" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "Ομάδες που ο εντολέας είναι μέλος του (επιλογή πλαισίου για διαγÏαφή)" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "Ομάδες που ο εντολέας δεν είναι μέλος του (επιλογή πλαισίου για Ï€Ïοσθήκη)" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Ομάδες στις οποίες ανήκει ο χÏήστης" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "ΠÏότυπο αυτόματης απάντησης σε HTML" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "Το αίτημα επιλÏθηκε σε μοÏφή HTML" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "Η κατάσταση αιτήματος άλλαξε σε HTML" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "ΠÏότυπο σχολίου διαχειÏιστή σε HTML" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "ΠÏότυπο αλληλογÏαφίας διαχειÏιστή σε HTML" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "ΠÏότυπο αλληλογÏαφίας σε HTML" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "ΠÏότυπο συναλλαγής σε HTML" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Επικεφαλίδα Ï€ÏοωθοÏμενου αιτήματος" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Επικεφαλίδα Ï€ÏοωθοÏμενου μηνÏματος" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "Ύψος" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Γεια σας!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Βοηθείστε μας να οÏίσουμε κάποιες χÏήσιμες Ï€ÏοκαθοÏισμένες Ïυθμίσεις για το RT" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "ΑπόκÏυψη όλου του αναφεÏομένου κειμένου" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "ΑπόκÏυψη αναφεÏομένου κειμένου" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "ΑπόκÏυψη πεδίων που δεν έχουν τεθεί" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "ΑπόκÏυψη πεδίων που δεν έχουν τεθεί;" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "ΙστοÏικό" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "ΙστοÏικό για άÏθÏο #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "ΙστοÏικό του ΠεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï… #%1: %2" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "ΙστοÏικό ομάδας %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "ΙστοÏικό ουÏάς %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "ΙστοÏικό χÏήστη %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Τηλέφωνο Οικίας" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "ΧÏόνος ανανέωσης αÏχικής σελίδας" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "ΑÏχική σελίδα" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "ÎÏα" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "ΩÏιαία" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "ÎÏες" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Έχω %quant(%1,concrete mixer)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "Θέλω να επαναφέÏω το μυστικό σÏμβολό μου." #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Ταυτότητα" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "Εάν έχει επιλεγεί ένα Ï€ÏοσαÏμοσμένο πεδίο, το Θέμα της εξεÏχόμενης ηλεκτÏονικής αλληλογÏαφίας σας θα διαγÏαφεί από το παÏόν άÏθÏο." #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Αν μια έγκÏιση αποÏÏιφθεί, να αποÏÏιφθεί το Ï€Ïωτότυπο και να διαγÏαφοÏν οι εγκÏίσεις σε αναμονή" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "Εάν αυτό δεν είναι ÏŒ,τι πεÏιμένετε, αφήστε αυτή τη σελίδα τώÏα χωÏίς να συνδεθείτε." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Αν αυτό το εÏγαλείο είναι setgid, ένας κακόβουλος τοπικός χÏήστης θα μποÏοÏσε να το χÏησιμοποιήσει για να αποκτήσει Ï€Ïόσβαση διαχειÏιστή στο RT" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Αν έχετε ήδη κάποιο διακομιστή RT και βάση δεδομένων, θα Ï€Ïέπει να βεβαιωθείτε ότι η βάση δεδομένων Ï„Ïέχει και ότι ο διακομιστής RT μποÏεί να ενωθεί με αυτή. Όταν το κάνετε αυτό σταματήστε και ξεκινήστε τον διακομιστή RT.

    " #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "Εάν έχετε μια εσωτεÏική σÏνδεση RT, μποÏείτε να δοκιμάσετε το %1 αντί του %2." #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "Εάν Ï€Ïαγματικά σκοπεÏετε να επισκεφθείτε %1 και %2, τότε %3πατήστε εδώ για να συνεχίσετε το αίτημά σας %4." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Αν έγινε αλλαγή της ΘÏÏας στην οποία Ï„Ïέχει το RT, θα χÏειαστεί να επανεκκινήσει ο διακομιστής Ï€Ïιν μποÏέσετε να συνδεθείτε." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Αν ενημεÏώσατε κάτι από τα πιο πάνω, βεβαιωθείτε ότι" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Αν η βάση δεδομένων της Ï€Ïοτίμησης σας δεν βÏίσκεται στο αναδυόμενο Î¼ÎµÎ½Î¿Ï Ï€Î¹Î¿ κάτω, αυτό σημαίνει ότι το RT δεν βÏήκε τον σχετικό οδηγό βάσης δεδομένων εγκατεστημένο τοπικά. θα μποÏείτε να το επιλÏσετε αυτό χÏησιμοποιώντας το %1 για να κατεβάστε και να εγκαταστήσετε το DBD::MySQL, DBD::Oracle ή DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Μη επιτÏεπτή τιμή για %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "Η εικόνα εμφανίζεται ενσωματωμένη παÏαπάνω" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "Η εικόνα δε φαίνεται διότι η οθόνη είναι απενεÏγοποιημένη στη διαμόÏφωση του συστήματος." #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "Η εικόνα δεν εμφανίζεται επειδή ο αποστολέας ζήτησε να μην ενσωματωθεί." #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Αμετάβλητο πεδίο" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "ΑνενεÏγά Αιτήματα" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "ΑνενεÏγά Αιτήματα" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "ΣυμπεÏίληψη ΆÏθÏου:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "ΠεÏιλαμβάνει όνομα άÏθÏου" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "ΠεÏιλαμβάνει σÏνοψη άÏθÏου" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "ΣυμπεÏίληψη συνημμένων" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "ΣυμπεÏίληψη πίνακα δεδομένων" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "ΣυμπεÏίληψη απενεÏγοποιημένων καταλόγων στη λίστα." #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "ΣυμπεÏίληψη απενεÏγοποιημένων κατηγοÏιών στη λίστα." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "ΣυμπεÏίληψη απενεÏγοποιημένων Ï€ÏοσαÏμοσμένων πεδίων στην λίστα." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "ΣυμπεÏίληψη απενεÏγοποιημένων Ï€ÏοσαÏμοσμένων Ïόλων στην λίστα." #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "ΣυμπεÏίληψη απενεÏγοποιημένων ομάδων στην λίστα." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "ΣυμπεÏίληψη απενεÏγοποιημένων ουÏών στην λίστα." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "ΣυμπεÏίληψη απενεÏγοποιημένων χÏηστών στην αναζήτηση." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "ΣυμπεÏίληψη σελίδας" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "ΣυμπεÏίληψη υποθεμάτων" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "ΠεÏιλαμβάνει χÏόνο στο iCal Ï„Ïοφοδοσίας συμβάντων ;" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "ΕνημεÏώσεις δείκτη από %1" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Ατομικά μηνÏματα" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "ΕνημέÏωση του διαχειÏιστή του RT ότι οι χÏήστες έχουν Ï€Ïοβλήματα με τα δημόσια κλειδιά τους" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "ΕνημέÏωση του χÏήστη ότι το ταμπλό στην οποία έκανε συνδÏομή λείπει" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "ΕνημέÏωση του χÏήστη ότι το μήνυμα που έστειλε έχει λανθασμένα δεδομένα GnuPG" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "ΕνημεÏώστε το χÏήστη ότι το μήνυμα που έστειλε έχει έγκυÏα δεδομένα κÏυπτογÏάφησης" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "ΕνημέÏωση του χÏήστη ότι έχει Ï€Ïοβλήματα με τα δημόσια κλειδιά και δεν μποÏεί να λάβει κÏυπτογÏαφημένο πεÏιεχόμενο." #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "ΕνημέÏωση του χÏήστη ότι έχει γίνει επαναφοÏά του ÎºÏ‰Î´Î¹ÎºÎ¿Ï Ï€Ïόσβασης" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "ΕνημεÏώστε το χÏήστη ότι η μη κÏυπτογÏαφημένη αλληλογÏαφία τους έχει αποÏÏιφθεί" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "ΕνημέÏωση χÏήστη σχετικά με τη λήψη ενός κÏυπτογÏαφημένου μηνÏματος ηλεκτÏονικής αλληλογÏαφίας και της απουσίας ιδιωτικών κλειδιών για αποκÏυπτογÏάφηση" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "ΑÏχική ΠÏοτεÏαιότητα" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "ΑÏχικοποίηση Βάσης Δεδομένων" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Σφάλμα εισόδου" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Τα δεδομένα εισόδου Ï€Ïέπει να ταιÏιάζουν με %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "Εισαγωγή από %1" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "ΕσωτεÏικό Σφάλμα: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "ΕσωτεÏικό Σφάλμα: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "ΆκυÏο %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "ΆκυÏο ÏŒÏισμα %1" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "ΆκυÏο %1: '%2' δε μοιάζει με διεÏθυνση ηλεκτÏονικής αλληλογÏαφίας" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "ΆκυÏο %1: Ï€Ïέπει να είναι αÏιθμός" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "Μη έγκυÏος Κατάλογος" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "ΆκυÏη ΚατηγοÏία" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "ΆκυÏη πηγή τιμών ΠÏοσαÏμοσμένου Πεδίου" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "Μη έγκυÏο Όνομα Ομάδας και Τομέα" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "Μη έγκυÏο Όνομα (τα ονόματα δεν μποÏοÏν να είναι όλα ψηφία)" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "Μη έγκυÏο Όνομα (τα ονόματα Ï€Ïέπει να είναι μοναδικά και δεν μποÏοÏν να είναι όλα ψηφία)" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "ΆκυÏη ουÏά, δεν είναι δυνατή η χÏήση της ΚατηγοÏίας: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "ΆκυÏος ΤÏπος ΑποτÏπωσης" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "ΆκυÏος ΤÏπος Απόδοσης για Ï€ÏοσαÏμοσμένο πεδίο του Ï„Ïπου %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "ΆκυÏα δεδομένα" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Μη έγκυÏο κλειδί %1 για τη διεÏθυνση '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "ΆκυÏο αντικείμενο" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "ΆκυÏο μοτίβο: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "Μη έγκυÏο στοιχείο Ï€Ïλης %1" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "ΆκυÏη ουÏά" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "Μη έγκυÏο αναγνωÏιστικό ουÏάς" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "ΆκυÏο δικαίωμα" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "ΆκυÏο δικαίωμα. Δεν ήταν δυνατή η κανονικοποίηση του δικαιώματος '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "ΆκυÏη σÏνταξη για διεÏθυνση ηλεκτÏονικής αλληλογÏαφίας" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "ΆκυÏη τιμή για %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "ΆκυÏη τιμή για Ï€ÏοσαÏμοσμένο πεδίο" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "Έχει ήδη Ï€Ïοστεθεί στο αντικείμενο" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Δεν είναι κÏυπτογÏαφημένο" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Είναι εξαιÏετικά σημαντικό να μην επιτÏέπεται σε μη Ï€ÏονομιοÏχοι χÏήστες να Ï„Ïέξουν αυτό το εÏγαλείο." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Συστήνεται η δημιουÏγία ενός μη Ï€ÏονομιοÏχου χÏήστη unix, μέλος της σωστής ομάδας και με Ï€Ïόσβαση στο RT για να Ï„Ïέχει αυτό το εÏγαλείο." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "Φαίνεται πως πιθανώς ξεχάσατε να Ï€Ïοσθέσετε ένα συνημμένο" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "ΠαίÏνει αÏκετές παÏαμέτÏους:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Πλάγια" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Ιαν" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Συμμετοχή ή αποχώÏηση από ομάδα" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Ιουλ" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Τζάμπο" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Ιουν" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "ΚÏατήστε το 'localhost' αν δεν είστε σίγουÏος. Αφήστε κενό για να ενωθείτε τοπικά μέσω socket" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "ΣυντομεÏσεις ΠληκτÏολογίου" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "Αναζήτηση βασισμένη σε λέξεις κλειδιά και διαίσθηση" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Γλώσσα" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Μεγάλο" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Τελευταίο" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Τελευταία Επαφή" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Τελευταία Επαφή" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Τελευταία ενημέÏωση" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Τελευταία ενημέÏωση από" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Τελευταία ενημέÏωση" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Τελευταία ενημέÏωση από" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Αφήστε κενό για να χÏησιμοποιηθεί η Ï€Ïοεπιλεγμένη τιμή για την βάση δεδομένων σας" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Αφήστε κενό αν θέλετε να χÏησιμοποιηθεί το Ï€Ïοεπιλεγμένο όνομα χÏήστη dba για τον Ï„Ïπο της βάσης δεδομένων σας" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "ΑÏιστεÏά" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Υπομνήματα" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Μέγεθος σε χαÏακτήÏες· ΧÏησιμοποιήστε '0' για να δείτε όλα τα μηνÏματα ενσωματωμένα, ανεξαÏτήτως μεγέθους" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Δικαίωμα Ï€Ïόσβασης στο RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Δυνατότητα ανάθεσης δικαιωμάτων στο χÏήστη" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Ας ξεκινήσουμε!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "ΚÏκλος Ζωής" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "ΣÏνδεσμος" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Ο σÏνδεσμος υπάÏχει ήδη" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "Δεν ήταν δυνατό να δημιουÏγηθεί η σÏνδεση: %1" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "Δεν ήταν δυνατό να διαγÏαφεί η σÏνδεση: %1" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Ο σÏνδεσμος δε βÏέθηκε" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "ΣÏνδεση αιτήματος #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "ΣÏνδεση τιμών σε" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Συνδεμένο" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "Η σÏνδεση με ένα διαγÏαμμένο %1 δεν επιτÏέπεται" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "ΣÏνδεσμοι" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "Συνδέσεις με" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Λίστα" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "ΦόÏτωση" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "ΦόÏτωση μιας αποθηκευμένης αναζήτησης" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "ΦόÏτωση αποθηκευμένης αναζήτησης" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "ΦόÏτωμα αποθηκευμένων αναζητήσεων:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "ΦοÏτώθηκε %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "ΦοÏτωμένα αÏχεία Ïυθμίσεων" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "ΦοÏτώθηκε η αÏχική αποθηκευμένη αναζήτηση \"%1\"" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "ΦοÏτώθηκαν τα αÏθÏώματα perl" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "ΦοÏτώθηκε ή αποθηκευμένη αναζήτηση \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "ΦόÏτωση..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Τοποθεσία Συμβάντος" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Τοποθεσία" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Συνδεδεμένος" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Συνδεδεμένος ως %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Αποσυνδεδεμένος" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "ΚαταγÏαφή %1 μηνυμάτων επιπέδου και υψηλότεÏη σε %2" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "ΚαταγÏαφή %1 μηνυμάτων επιπέδου και υψηλότεÏη σε τυπικό σφάλμα, η οποία συνήθως θα καταλήγει σε αÏχεία καταγÏαφής σφαλμάτων του διακομιστή Î¹ÏƒÏ„Î¿Ï ÏƒÎ±Ï‚." #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "Η καταγÏαφή %1 μηνυμάτων επιπέδου και η υψηλότεÏη στο σÏστημα καταγÏαφής με τις παÏακάτω Ï€ÏοδιαγÏαφές: %2" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "ΚαταγÏαφή %1 μηνυμάτων επιπέδου και υψηλότεÏη στο σÏστημα καταγÏαφής." #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "Συνοπτική καταγÏαφή" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Είσοδος" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "ΑποσÏνδεση" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Αναντιστοιχία Ï„Ïπου αναζήτησης" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "ΑλληλογÏαφία" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "ΚÏÏιος Ï„Ïπος συνδέσμων" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "ΚαθοÏισμός ΥπευθÏνου" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "ΚαθοÏισμός Κατάστασης" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "ΚαθοÏισμός ημεÏομηνίας Λήξης" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "ΚαθοÏισμός ημεÏομηνίας που Ξεκίνησε" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "ΚαθοÏισμός ημεÏομηνίας που θα Ξεκινά" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "ΚαθοÏισμός ημεÏομηνίας Ειδοποίησης" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "ΚαθοÏισμός Ï€ÏοτεÏαιότητας" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "ΚαθοÏισμός ουÏάς" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "ΚαθοÏισμός θέματος" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "ΔιαχείÏιση Ï€ÏοσαÏμοσμένων πεδίων και των τιμών τους" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "ΔιαχείÏιση Ï€ÏοσαÏμοσμένων Ïόλων" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "ΔιαχείÏιση ομάδων και μελών" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "ΔιαχείÏιση ιδιοτήτων και Ïυθμίσεων που ισχÏουν για όλες τις ουÏές" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "ΔιαχείÏιση ουÏών και των ιδιοτήτων τους" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "ΔιαχείÏιση αποθηκευμένων γÏαφημάτων" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "ΔιαχείÏιση σεναÏίων" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "ΔιαχείÏιση χÏηστών και κωδικών" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "Η αντιστοίχιση Î¼ÎµÏ„Î±Î¾Ï Ï„Î¿Ï… κÏκλου ζωής %1 και του %2 είναι ελλιπής. Επικοινωνήστε με τον διαχειÏιστή του συστήματός σας." #: lib/RT/Date.pm:93 msgid "Mar" msgstr "ΜαÏ" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "ΡÏθμιση όλων των μηνυμάτων σαν διαβασμένα" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "ΣειÏά αναζήτησης Ï€ÏοτÏπου Mason" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "Το Μέγιστο ÎŒÏιο ΔημιουÏγήθηκε - Τελευταία ΕνημέÏωση" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "Το Μέγιστο ÎŒÏιο ΔημιουÏγήθηκε - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "Το Μέγιστο ÎŒÏιο ΔημιουÏγήθηκε - Ξεκίνησε" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "Μέγιστο Οφειλόμενο - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "Το Μέγιστο ÎŒÏιο Ξεκίνησε - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "Το Μέγιστο ÎŒÏιο Ξεκινά - Ξεκίνησε" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Μέγιστο μέγεθος ενσωματωμένου μηνÏματος" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "Μέγιστος εκτιμώμενος χÏόνος" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "Μέγιστος χÏόνος αÏιστεÏά" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "Μέγιστος χÏόνος εÏγασίας" #: lib/RT/Date.pm:95 msgid "May" msgstr "Μάι" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Εμένα" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Μέλος" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Το μέλος %1 Ï€Ïοστέθηκε" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Το μέλος %1 διαγÏάφηκε" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "ΠÏοστέθηκε το μέλος: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Το μέλος διαγÏάφηκε" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Το μέλος δε διαγÏάφηκε" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Μέλη" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "ΠÏοστέθηκε η ιδιότητα μέλους σε %1" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "ΔιαγÏάφηκε η ιδιότητα μέλους σε %1" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Ιδιότητες Μέλους" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "Μέλη της ομάδας %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "Μέλη του εντολέα #%1" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Ιδιότητες Μέλους για τον χÏήστη %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Συγχώνευση" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Επιτυχής συγχώνευση" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Αποτυχία συγχώνευσης. Δεν μπόÏεσε να οÏισθεί το EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "Η συγχώνευση απέτυχε. Δεν μπόÏεσε να οÏιστεί το IsMerged" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Συγχώνευση σε" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Συγχώνευση σε %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Μήνυμα" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Το σώμα του μηνÏματος δεν εμφανίζεται γιατί είναι Ï€Î¿Î»Ï Î¼ÎµÎ³Î¬Î»Î¿." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Το κυÏίως μέÏος του μηνÏματος δεν εμφανίζεται επειδή ο αποστολέας ζήτησε να μην ενσωματωθεί" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Το σώμα του μηνÏματος δεν εμφανίζεται γιατί δεν είναι απλό κείμενο" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Ύψος πλαισίου μηνυμάτων" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Πλάτος πλαισίου μηνυμάτων" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Αποτυχία καταγÏαφής μηνÏματος" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Μήνυμα για το χÏήστη" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Το μήνυμα καταγÏάφηκε" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "Ελάχιστο ÎŒÏιο ΔημιουÏγήθηκε - Τελευταία ΕνημέÏωση" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "Ελάχιστο ÎŒÏιο ΔημιουÏγήθηκε - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "Ελάχιστο ÎŒÏιο ΔημιουÏγήθηκε - Ξεκίνησε" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "Ελάχιστο Οφειλόμενο - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "Ελάχιστο ÎŒÏιο Ξεκίνησε - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "Ελάχιστο ÎŒÏιο Ξεκινά - Ξεκίνησε" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Ελάχιστο μήκος ÎºÏ‰Î´Î¹ÎºÎ¿Ï Ï€Ïόσβασης" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "Ελάχιστος εκτιμώμενος χÏόνος" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "Ελάχιστος χÏόνος αÏιστεÏά" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "Ελάχιστος χÏόνος εÏγασίας" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Λεπτά" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "ΔιάφοÏα" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Απουσία Ï€ÏωτεÏοντος κλειδιοÏ;: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Κινητό" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Κινητό Τηλέφωνο" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "ΤÏοποποίηση" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "ΤÏοποποίηση %3 για το πεÏιουσιακό στοιχείο #%1: %2" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "ΤÏοποποίηση Μελών" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "ΤÏοποποίηση Ï€ÏοτÏπων σεναÏίου" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "ΤÏοποποίηση ΣεναÏίων" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "ΤÏοποποίηση ΠÏοσαÏμοσμένου Πεδίου για την ουÏά %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "ΤÏοποποίηση και ΔημιουÏγία ΚατηγοÏιών" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "ΤÏοποποίηση και δημιουÏγία ΠÏοσαÏμοσμένων πεδίων για τα άÏθÏα" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "ΤÏοποποίηση άÏθÏου #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "ΤÏοποποίηση άÏθÏων σε αυτή την κατηγοÏία" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "ΤÏοποποίηση πεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï… #%1: %2" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "ΤÏοποποίηση καταλόγων πεÏιουσιακών στοιχείων" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "ΤÏοποποίηση Ï€ÏοσαÏμοσμένων πεδίων πεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "ΤÏοποποίηση πεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "ΤÏοποποίηση συναφών αντικειμένων για %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "ΤÏοποποίηση συναφών αντικειμένων για τον αυτοματισμό #%1" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "ΤÏοποποίηση τιμών Ï€ÏοσαÏμοσμένων πεδίων" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "ΤÏοποποίηση ημεÏομηνιών για πεÏιουσιακό στοιχείο #%1: %2" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "ΤÏοποποίηση ημεÏομηνιών για αίτημα #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "ΤÏοποποίηση καθολικών θεμάτων άÏθÏου" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "ΤÏοποποίηση καθολικών Ï€ÏοσαÏμοσμένων πεδίων" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "ΤÏοποποίηση καθολικών δικαιωμάτων ομάδων" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "ΤÏοποποίηση καθολικών θεμάτων" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "ΤÏοποποίηση καθολικών δικαιωμάτων χÏηστών" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "ΤÏοποποίηση ταμπλών ομάδας" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "ΤÏοποποίηση λίστας μελών ομάδας" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "ΤÏοποποίηση μεταδεδομένων ομάδας ή διαγÏαφή ομάδας" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "ΤÏοποποίηση δικαιωμάτων ομάδων για ΚατηγοÏία %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "ΤÏοποποίηση δικαιωμάτων ομάδας για το Ï€ÏοσαÏμοσμένο πεδίο %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "ΤÏοποποίηση δικαιωμάτων ομάδας για την ομάδα %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "ΤÏοποποίηση δικαιωμάτων ομάδας για ουÏά %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "ΤÏοποποίηση συνδέσμων για πεÏιουσιακό στοιχείο #%1: %2" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "ΤÏοποποίηση μεταδεδομένων και Ï€ÏοσαÏμοσμένων πεδίων για αυτή την κατηγοÏία" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "ΤÏοποποίηση λογαÏÎ¹Î±ÏƒÎ¼Î¿Ï RT του ιδίου χÏήστη" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "ΤÏοποποίηση ανθÏώπων που σχετίζονται με το πεÏιουσιακό στοιχείο #%1: %2" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "ΤÏοποποίηση ατόμων συναφή με το αίτημα #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "ΤÏοποποίηση Ï€Ïοσωπικών ταμπλών" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "ΤÏοποποίηση παÏατηÏητών ουÏάς" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "ΤÏοποποίηση σεναÏίου #%1" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "ΤÏοποποίηση σεναÏίων για ουÏά %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "ΤÏοποποίηση σεναÏίων που εφαÏμόζονται σε όλες τις ουÏές" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "ΤÏοποποίηση των ταμπλό του συστήματος" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "ΤÏοποποίηση Ï€ÏοτÏπου %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "ΤÏοποποίηση Ï€ÏοτÏπου %1 για ουÏά %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "ΤÏοποποίηση Ï€ÏοτÏπων που εφαÏμόζονται σε όλες τις ουÏές" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "ΤÏοποποίηση ΚατηγοÏίας %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "ΤÏοποποίηση πεÏιεχομένων του ταμπλό %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "ΤÏοποποίηση του ταμπλό %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "ΤÏοποποίηση του Ï€ÏοκαθοÏισμένου μηνÏματος \"To RT με μια ματιά\"" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "ΤÏοποποίηση ομάδας %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "ΤÏοποποίηση της συνδÏομής του ταμπλό %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "ΤÏοποποίηση του χÏήστη %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "ΤÏοποποίηση αναζήτησης..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "ΤÏοποποίηση αιτήματος # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "ΤÏοποποίηση αιτήματος #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "ΤÏοποποίηση αιτήματος κατόχου στον οποίο ανήκουν τα αιτήματα" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "ΤÏοποποίηση αιτημάτων" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "ΤÏοποποίηση θέματος για %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "ΤÏοποποίηση ιεÏαÏχίας θεμάτων σχετικά με αυτή την κατηγοÏία" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "ΤÏοποποίηση θεμάτων για άÏθÏα σε αυτή την κατηγοÏία" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "ΤÏοποποίηση δικαιωμάτων χÏήστη στην κατηγοÏία %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "ΤÏοποποίηση δικαιωμάτων χÏήστη για το Ï€ÏοσαÏμοσμένο πεδίο %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "ΤÏοποποίηση δικαιωμάτων χÏήστη για ομάδα %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "ΤÏοποποίηση δικαιωμάτων χÏήστη για ουÏά %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "ΤÏοποποίηση παÏαληπτών ηλεκτÏονικής αλληλογÏαφίας για το αίτημα #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "ΆÏθÏωμα" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Δευ" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "ΔευτέÏα" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "Μήνας" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "Μηνιαία" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "ΠεÏισσότεÏα για τους αιτοÏντες" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "Μετακίνηση" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Μετακίνηση εδώ" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "Μετακίνηση επάνω / κάτω στη λίστα αποτελεσμάτων" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Πολλαπλό" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "Πολλαπλοί χÏήστες (Αυτό δεν μποÏεί να Ï„Ïοποποιηθεί μετά τη δημιουÏγία)" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "Πολλαπλοί χÏήστες (Η απο-επιλογή του πεδίου πεÏιοÏίζει το Ïόλο σε απλό χÏήστη. Αυτό δεν μποÏεί να Ï„Ïοποποιηθεί μετά τη δημιουÏγία)" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "ΠÏέπει να οÏισθεί η ιδιότητα 'Ονομα'" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Τα %1 αιτήματά μου" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Οι ΕγκÏίσεις μου" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "Τα ΠεÏιουσιακά μου στοιχεία" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Η ΗμέÏα μου" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Οι υπενθυμίσεις μου" #: etc/initialdata:890 msgid "My Tickets" msgstr "Τα αιτήματά μου" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Οι εγκÏίσεις μου" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "Τα κλειστά αιτήματά μου" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Τα ταμπλό μου" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Τα ανοιχτά αιτήματά μου" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Οι υπενθυμίσεις μου" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Οι αποθηκευμένες αναζητήσεις μου" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "Οι ουÏές διαχείÏισής μου" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "Τα ΠεÏιουσιακά μου στοιχεία" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "Οι υπενθυμίσεις μου" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "ΟυÏές ΥποστήÏιξής μου" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Όνομα" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Όνομα και διεÏθυνση αλληλογÏαφίας" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Το όνομα χÏησιμοποιείται ήδη" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "Απαιτείται όνομα" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Όνομα:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Ποτέ" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Îέο" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Îέο ΆÏθÏο" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Îέο Ταμπλό" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Îέοι ΣÏνδεσμοι" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Îέα έγκÏιση εν αναμονή" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "Εν αναμονή νέα έγκÏιση σε μοÏφή HTML" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Îέα Αναζήτηση" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "Îέα Τιμή" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "Τα νέα πεÏιουσιακά στοιχεία δεν μποÏοÏν να έχουν κατάσταση '%1'." #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Îέα μηνÏματα" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Îέος κωδικός Ï€Ïόσβασης" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Στάλθηκε ειδοποίηση για νέο κωδικό Ï€Ïόσβασης" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Îέα υπενθÏμιση:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Îέο αίτημα" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Το νέο αίτημα δεν υπάÏχει" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Τα καινοÏÏγια αιτήματα δεν μποÏοÏν να έχουν κατάσταση '%1' σε αυτή την ουÏά" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Îέοι παÏατηÏητές" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Επόμενο" #: lib/RT/User.pm:96 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Ψευδώνυμο" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Όχι" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "Δεν υπάÏχουν %1 κλειδιά για αυτή τη διεÏθυνση" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "Το %1 δεν φοÏτώθηκε" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Δεν βÏέθηκαν ΆÏθÏα που να ταυτίζονται με %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Δεν έχει οÏιστεί Κλάση" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Δεν βÏέθηκαν ΚατηγοÏίες που να ταυτίζονται με τα κÏιτήÏια αναζήτησης" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Απουσία ΠÏοσαÏμοσμένου Πεδίου" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Δεν έχει οÏιστεί ΠÏοσαÏμοσμένο Πεδίο" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Δεν έχει οÏιστεί Ομάδα" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "ΧωÏίς όνομα" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Απουσία αναζήτησης" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Δεν έχει οÏιστεί ΟυÏά" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Δεν βÏέθηκε ο χÏήστης RT. ΠαÏακαλώ συμβουλευθείτε τον διαχειÏιστή σας στο RT" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "ΧωÏίς Θέμα" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "ΧωÏίς Ï€Ïότυπο" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Καμία ενέÏγεια" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "Δεν έχει Ï€ÏοσδιοÏιστεί αναγνωÏιστικό ΠεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "Δεν βÏέθηκαν πεÏιουσιακά στοιχεία να πληÏοÏν τα κÏιτήÏια αναζήτησης" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "Δεν έχει οÏιστεί κατάλογος." #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "Δεν βÏέθηκαν κατάλογοι που να ταυτίζονται με τα κÏιτήÏια αναζήτησης" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Δεν έχει οÏιστεί στήλη" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Δεν έχουν καταχωÏηθεί σχόλια για το χÏήστη" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Δεν υπάÏχει πεÏιγÏαφή για %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "Κανένα καθολικό Ï€Ïότυπο %1" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Δεν έχει οÏιστεί ομάδα" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Δεν βÏέθηκαν ομάδες να πληÏοÏν τα κÏιτήÏια αναζήτησης" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Δεν βÏέθηκε κλειδί κατάλληλο για κÏυπτογÏάφηση" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "Δεν είναι πλέον εξουσιοδοτημένο" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Δεν βÏέθηκε επισυναπτόμενο μήνυμα" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Δεν βÏέθηκε όνομα" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Δεν υπάÏχει ανάγκη για κÏυπτογÏάφηση" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Δεν οÏίστηκε κωδικός" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Δεν έχετε δικαίωμα δημιουÏγίας ουÏάς" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Δεν έχετε δικαίωμα δημιουÏγίας αιτημάτων στην ουÏά %1" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Δεν έχετε δικαίωμα εμφάνισης του αιτήματος" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "Δεν έχετε δικαίωμα Ï„Ïοποποίησης Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… ΠεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "Δεν έχετε δικαίωμα Ï„Ïοποποίησης Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… καταλόγου" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Δεν έχετε δικαίωμα αποθήκευσης καθολικών αναζητήσεων" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Δεν έχετε δικαίωμα καθοÏÎ¹ÏƒÎ¼Î¿Ï Ï€Ïοτιμήσεων" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Δεν έχετε δικαίωμα Ï€Ïοβολής του άÏθÏου" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Δεν έχετε δικαίωμα να δείτε το ενημεÏωμένο αίτημα" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Δεν έχει επιλεγεί εντολέας" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Δεν υπάÏχει ιδιωτικό κλειδί" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Δεν βÏέθηκαν ουÏές που να πληÏοÏν τα κÏιτήÏια αναζήτησης" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Δεν καθοÏίστηκε αυτό το δικαίωμα" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Δεν βÏέθηκε αυτό το δικαίωμα" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "Δεν υπάÏχουν τα δικαιώματα του ΔιαχειÏιστή για να Ï€Ïοσθέσετε '%1' σε αυτό το αίτημα" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Δεν βÏέθηκε αναζήτηση Ï€Ïος λειτουÏγία." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "ΧωÏίς θέμα" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Δεν υπάÏχει τέτοιο κλειδί ή είναι ακατάλληλο για υπογÏαφή" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "Κανένα Ï€Ïότυπο %1 στην ουÏά %2 ή καθολικό" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Δε βÏέθηκαν αιτήματα." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Δεν καθοÏίστηκε Ï„Ïπος συναλλαγής" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Δεν βÏέθηκαν χÏησιμοποιήσιμα κλειδιά" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Δεν βÏέθηκαν χÏήστες που να πληÏοÏν τα κÏιτήÏια αναζήτησης" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "Μη έγκυÏο ΑναγνωÏιστικό Εντολέα" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "Δεν στάλθηκε τιμή στο _Set!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Κανένας" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Κανένα" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Πεδίο που δεν υπάÏχει;" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "Κανονικό" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "Δεν εφαÏμόστηκαν τα σενάÏια" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Δε βÏέθηκε" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Εκτός σÏνδεσης" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Δεν έχει οÏιστεί." #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Δε χÏησιμοποιείτε φοÏητό φυλλομετÏητή;" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Σημειώσεις" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Δεν ήταν δυνατή η αποστολή της ειδοποίησης" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Ειδοποίηση σε AdminCcs" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Ειδοποίηση AdminCcs σαν Σχόλιο" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Ειδοποίηση Ccs" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Ειδοποίηση Ccs σαν Σχόλιο" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Ειδοποίηση άλλων ΠαÏαληπτών" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Ειδοποίηση άλλων ΠαÏαληπτών σαν Σχόλιο" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Ειδοποίηση ΥπεÏθυνου" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "Ιδοποίηση Κατόχου και AdminCcs" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Ειδοποίηση ΥπεÏθυνου σαν σχόλιο" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Ειδοποίηση ΥπεÏθυνου για το αποÏÏιφθέν αίτημά τους" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Ειδοποίηση ΥπεÏθυνου για την έγκÏιση του αιτήματος του και ότι είναι έτοιμο για ενέÏγειες" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Ειδοποίηση ΥπεÏθυνου για την έγκÏιση του αιτήματος από κάποιο ή όλους τους υπεÏθυνους έγκÏισης" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Ειδοποίηση ΥπεÏθυνου, ΑιτοÏντων, Ccs και AdminCcs" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Ειδοποίηση ΥπεÏθυνου, ΑιτοÏντων, Ccs και AdminCcs σαν Σχόλιο" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Ειδοποίηση ΥπευθÏνων και AdminCcs για καινοÏÏγια θέματα εν αναμονή έγκÏισης" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Ειδοποίηση ΑιτοÏντος ότι το αίτημα του έχει εγκÏιθεί από όλους τους υπεÏθυνους έγκÏισης" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Ειδοποίηση ΑιτοÏντος ότι το αίτημα του έχει εγκÏιθεί από κάποιους υπεÏθυνους έγκÏισης" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Ειδοποίηση ΑιτοÏντων" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Ειδοποίηση ΑιτοÏντων και Ccs" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Ειδοποίηση ΑιτοÏντων και Ccs σαν Σχόλιο" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Îα ενημεÏώνομαι για μη αναγνωσμένα μηνÏματα" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Îοε" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "ΤώÏα σε χÏήση" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "ΑÏιθμός" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "Ή" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Αντικείμενο" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "ΑναγνωÏιστικό Αντικειμένου" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "ΤÏπος Αντικειμένου" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Δεν ήταν δυνατή η δημιουÏγία του αντικειμένου" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Δεν ήταν δυνατή η διαγÏαφή του αντικειμένου" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Το αντικείμενο δημιουÏγήθηκε" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Το αντικείμενο διαγÏάφηκε" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "Το αντικείμενο που πέÏασε δεν είναι φοÏτωμένο" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Αναντιστοιχία Ï„Ïπου Αντικειμένου" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Η λίστα αντικειμένων είναι άδεια" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Οκτ" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "Παλιά Τιμή" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "Με το %1, το %2 έγÏαψε:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Με το Κλείσιμο" #: etc/initialdata:170 msgid "On Comment" msgstr "Με τον Σχολιασμό" #: etc/initialdata:142 msgid "On Correspond" msgstr "Με την Επικοινωνία" #: etc/initialdata:131 msgid "On Create" msgstr "Με την ΔημιουÏγία" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "Με την ΠÏοώθηση" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Με την ΠÏοώθηση Αιτήματος" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Με την ΠÏοώθηση Συναλλαγής" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Με την Αλλαγή ΥπευθÏνου" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Με την αλλαγή ΠÏοτεÏαιότητας" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Με την αλλαγή ΟυÏάς" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Με την ΑπόÏÏιψη" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Με το Άνοιγμα Ξανά" #: etc/initialdata:205 msgid "On Resolve" msgstr "Με την Επίλυση" #: etc/initialdata:176 msgid "On Status Change" msgstr "Με την Αλλαγή Κατάστασης" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Με την δημιουÏγία Συναλλαγής" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Bcc μόνο μια φοÏά" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Cc μόνο μια φοÏά" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Μόνο για εισαγωγή, όχι για Ï€Ïοβολή" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Δείξε μόνο εγκÏίσεις για τις αιτήσεις που δημιουÏγήθηκαν μετά από %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Δείξε μόνο εγκÏίσεις για τις αιτήσεις που δημιουÏγήθηκαν Ï€Ïιν από %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "ΠÏοβολή μόνο των Ï€ÏοσαÏμοσμένων πεδίων για:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "Ανοικτά ΑπενεÏγοποιημένα Αιτήματα" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Άνοιξε το" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Ανοιχτά Αιτήματα" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "Άνοιγμα ΧÏονομέτÏου" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Άνοιγμα URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "Ανοικτά απενεÏγοποιημένα αιτήματα" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Ανοιχτά αιτήματα" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Άνοιγμα αιτημάτων για ΑλληλογÏαφία" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "ΛειτουÏγικό ΣÏστημα" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Επιλογή" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Επιλογές" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "Οι χÏήστες της Oracle δε μποÏοÏν να έχουν κενοÏÏ‚ κωδικοÏÏ‚" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Ταξινόμηση ως Ï€Ïος" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "ΟÏγανισμός" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "ΑÏχικό αίτημα #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "ΚαταγÏάφηκε το εξεÏχόμενο μήνυμα για σχόλιο" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "ΚαταγÏάφηκε εξεÏχόμενο μήνυμα" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "ΕξεÏχόμενη ΑλληλογÏαφία" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Επισκόπηση" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Ανατεθημένα Αιτήματα" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "ΥπεÏθυνος" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "Ο ΥπεÏθυνος '%1' δεν έχει δικαιώματα για να αναλάβει αυτό το αίτημα" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Ο υπεÏθυνος άλλαξε από %1 σε %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Ο ΥπεÏθυνος αλλάχτηκε επιτακτικά από %1 σε %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "Κάτοχος Ομάδας" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "ΌνομαΚατόχου" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Σελίδα" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Σελίδα 1 από 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Η σελίδα δε βÏέθηκε" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Βομβητής" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Τηλέφωνο Βομβητής" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "Γονικό" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Γονείς" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Κωδικός Ï€Ïόσβασης" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Ο κωδικός Ï€Ïόσβασης άλλαξε" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Δεν έχει οÏιστεί κωδικός Ï€Ïόσβασης." #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Ο κωδικός Ï€Ïέπει να έχει τουλάχιστον %1 χαÏακτήÏες" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Αδυναμία εκτÏπωσης ÎºÏ‰Î´Î¹ÎºÎ¿Ï Ï€Ïόσβασης" #: lib/RT/User.pm:980 msgid "Password set" msgstr "ΟÏίστηκε κωδικός Ï€Ïόσβασης" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Κωδικός Ï€Ïόσβασης: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Κωδικός ΠÏόσβασης: Δεν επιτÏέπεται η Ï€Ïόσβαση" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Οι κωδικοί Ï€Ïόσβασης δεν ταιÏιάζουν." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "ΔιαδÏομή στο sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "ΠαÏση ΧÏονομέτÏου" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "Εν αναμονή %quant(%1, έγκÏιση, εγκÏίσεις )" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "Εν αναμονή %quant(%1, αίτημα, αιτήματα)" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "ΕκκÏεμεί η έγκÏιση" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Άτομα" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Άτομα που σχετίζονται με την ουÏά %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Εκτέλεση ενέÏγειας καθοÏισμένης από χÏήστη" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "ΡÏθμιση Perl" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "ΣειÏά αναζήτησης βιβλιοθηκών Perl" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "ΟÏιστική διαγÏαφή δεδομένων από RT" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Δεν επιτÏέπεται η Ï€Ïόσβαση" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Δεν επιτÏέπεται η Ï€Ïόσβαση" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "ΑÏιθμοί τηλεφώνου" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "Εικόνα" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "Τοποθέτηση υπογÏαφής πάνω από το απόσπασμα" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "ΠÏότυπο αυτόματης απάντησης Î±Ï€Î»Î¿Ï ÎºÎµÎ¹Î¼Î­Î½Î¿Ï…" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "Απλο κείμενο διαχείÏισης φόÏμας σχολίου" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "Απλό κείμενο διαχείÏισης φόÏμας αλληλογÏαφίας" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "Απλό κείμενο, φόÏμα αλληλογÏαφίας" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "ΠÏότυπο συναλλαγής Î±Ï€Î»Î¿Ï ÎºÎµÎ¹Î¼Î­Î½Î¿Ï…" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "ΠαÏακαλώ ελέγξτε την διεÏθυνση URL και δοκιμάστε ξανά" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "ΠαÏακαλώ εισάγετε τον κωδικό σας σωστά." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "ΠαÏακαλώ εισάγετε τον κωδικό σας." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "Πιθανό αίτημα πλαστογÏαφίας διασταυÏωμένης τοποθεσίας" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Πιθανές κÏυμμένες αναζητήσεις" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "Η Ï€ÏοκαθοÏισμένη αναζήτηση %1 δε βÏέθηκε" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "ΠÏοτιμήσεις" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "ΠÏοτιμήσεις %1 για χÏήστη %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "ΕπαναφοÏά των Ï€Ïοτιμήσεων" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Οι Ï€Ïοτιμήσεις για %1 αποθηκεÏτηκαν." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "Οι Ï€Ïοτιμήσεις αποθηκεÏονται σε ταμπλό στο μενοÏ." #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Οι Ï€Ïοτιμήσεις για τον χÏήστη %1 αποθηκεÏτηκαν." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "ΑποθηκεÏτηκαν οι Ï€Ïοτιμήσεις." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "Οι Ï€Ïοτιμήσεις δε βÏέθηκαν" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Κλειδί Ï€Ïοτίμησης: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Κλειδί Ï€Ïοτίμησης" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "ΠÏοετοιμασία Στελέχους" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "Πιέστε %1 για εμφάνιση συντομεÏσεων πληκτÏολογίου." #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "ΠÏοηγ" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Ο εντολέας %1 δεν βÏέθηκε." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "ΕκτÏπωση των αποτελεσμάτων των συνοπτικών μηνυμάτων στο STDOUT· να μην ταχυδÏομηθοÏν. Îα μην σημειωθοÏν σαν απεσταλμένα" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "ΕκτÏπωση μηνÏματος" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "ΠÏοτεÏαιότητα" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "ΠÏοστασία ΠÏοσωπικών Δεδομένων" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Ιδιωτικό ΑπόÏÏητο:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Ιδιωτικό Κλειδί" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "Ιδιωτικό κλειδί(ιά) για %1" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "Ιδιωτικά κλειδιά" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "ΠÏονομιοÏχοι" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Κατάσταση Ï€ÏονομιοÏχων: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "ΠÏονομιοÏχοι χÏήστες" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "ΕπεξεÏγασία άνευ συναλλαγής, κάποιες συνθήκες και ενέÏγειες μποÏεί να αποτÏχουν. Εξετάστε την χÏήση της παÏαμέτÏου --transaction" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Ψευδοομάδα για εσωτεÏική χÏήση" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "Το δημόσιο κλειδί '0x%1' χÏειάζεται για επαλήθευση της υπογÏαφής" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "Δημόσιο κλειδί(ιά) για %1" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "ΕÏωτήματα" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "ΕÏώτημα" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "ΔημιουÏγία ΕÏωτημάτων" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "ΟυÏά" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "Η ουÏά %1 δεν είναι δυνατό να φοÏτωθεί" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Η ουÏά %1 δε βÏέθηκε" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Όνομα ΟυÏάς" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Η ουÏά υπάÏχει ήδη" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Δεν ήταν δυνατή η δημιουÏγία της ουÏάς" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Δεν ήταν δυνατή η φόÏτωση της ουÏάς" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Η ουÏά δημιουÏγήθηκε" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Ταυτότητα ουÏάς" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "Λίστα ουÏάς" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Δεν βÏέθηκε η ουÏά" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Κλειδί ουÏάς" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "ΟυÏά CF" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "Λίστα ουÏών" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "ΟυÏές" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "ΟυÏές που διαχειÏίζομαι" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "ΟυÏές για τις οποίες είμαι AdminCc" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "ΓÏήγοÏη αναζήτηση" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "ΓÏήγοÏη δημιουÏγία αιτήματος" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "ΓÏήγοÏη ΔημιουÏγία" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "ΔιαχείÏιση RT" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "ΔιεÏθυνση ΑλληλογÏαφίας ΔιαχειÏιστή RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "ΔιαμόÏφωση RT" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "Σφάλμα RT" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Μέγεθος RT" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "Το RT με μια ματιά" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "Το RT με μια ματιά για τον χÏήστη %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "Το RT επικοινωνεί με τους χÏήστες για νέα αιτήματα ή νέα αλληλογÏαφία σε αιτήματα. ΚαθοÏίστε που είναι το sendmail (ή άλλο Ï€ÏόγÏαμμα συμβατό με sendmail σαν αυτό που παÏέχεται από το postfix). Το RT Ï€Ïέπει να ξέÏει ποιο να ειδοποιήσει σε πεÏίπτωση που κάποιος στείλει άκυÏο ηλεκτÏονικό μήνυμα. Η διεÏθυνση αυτή δεν Ï€Ïέπει να είναι κάποια που εισέÏχεται πίσω στο RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "Το RT μποÏεί να πεÏιλάβει πεÏιεχόμενο από κάποια άλλη υπηÏεσία Î™ÏƒÏ„Î¿Ï ÏŒÏ„Î±Î½ Ï€Ïοβάλλει αυτό το Ï€ÏοσαÏμοσμένο πεδίο." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "Το RT μποÏεί να κάνει τις τιμές σε αυτό το Ï€ÏοσαÏμοσμένο πεδίο, υπεÏσυνδέσμους σε άλλη υπηÏεσία." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "Βασικές μεταβλητές RT" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT για %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "Το RT εντόπισε για αυτό το αίτημα, ένα πιθανό αίτημα πλαστογÏαφίας%2 %1διασταυσωμένης τοποθεσίας, επειδή %3. Ένας κακόβουλος εισβολέας μποÏεί να Ï€Ïοσπαθεί να %1%4%2 για λογαÏισμό σας. Εάν δεν έχετε εισάγει αυτό το αίτημα Ï€Ïέπει να ειδοποιήσετε την ομάδα Ï€Ïοστασίας σας." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "To RT είναι ένα σÏστημα διαχείÏισης αιτημάτων, ÎµÏ€Î±Î³Î³ÎµÎ»Î¼Î±Ï„Î¹ÎºÎ¿Ï ÎµÏ€Î¹Ï€Î­Î´Î¿Ï…, που σας επιτÏέπει να διαχειÏίζεστε τα καθήκοντα, ζητήματα, αιτήσεις, βλάβες ή οτιδήποτε άλλο αίτημα, έξυπνα και αποτελεσματικά" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "Το RT χÏησιμοποιείται από εταιÏίες στη λίστα Fortune 100, εταιÏίες ενός ατόμου κυβεÏνήσεις, εκπαιδευτικά ιδÏÏματα, νοσοκομεία, μη κεÏδοσκοπικοÏÏ‚/μη κυβεÏνητικοÏÏ‚ οÏγανισμοÏÏ‚, βιβλιοθήκες, έÏγα Î±Î½Î¿Î¹ÎºÏ„Î¿Ï ÎºÏŽÎ´Î¹ÎºÎ± και όλους τους Ï„Ïπους οÏγανισμών στις 7 ηπείÏους. ( Îαι ακόμα και στην ΑνταÏκτική)." #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "Αναβάθμιση ιστοÏÎ¹ÎºÎ¿Ï RT" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "Το RT θα συνδεθεί στην βάση δεδομένων χÏησιμοποιώντας αυτό τον χÏήστη. Θα δημιουÏγηθεί για σας αυτόματα." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "Το RT θα δημιουÏγήσει ένα χÏήστη με όνομα \"root\" και θα το οÏίσει αυτό σαν τον κωδικό του" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "Το RT θα αντικαταστήσει τα %1 και %2 με την ταυτότητα εγγÏαφής και τιμή Ï€ÏοσαÏμοσμένου πεδίου, αντίστοιχα." #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "Το RT θα χÏησιμοποιήσει αυτή την συμβολοσειÏά για να Ï€ÏοσδιοÏίσει επακÏιβώς την εγκατάσταση σας και κοιτάζει για αυτή στο θέμα των ηλεκτÏονικών μηνυμάτων για να αποφασίσει σε ποιο αίτημα εφαÏμόζεται το μήνυμα. Σας συνιστοÏμε να οÏίσετε αυτό το πεδίο στο τομέα διαδικτÏου σας. (πχ: example.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "Το RT δουλεÏει με αÏκετοÏÏ‚ διαφοÏετικοÏÏ‚ Ï„Ïπους βάσεων δεδομένων. Οι MySQL, PostgreSQL, Oracle και SQLite υποστηÏίζονται όλες." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "Η καταγÏαφή της ÏÏθμισης του RT συνοψίζεται παÏακάτω:" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "Η επιλογή RTAddressRegexp στις Ïυθμίσεις δεν ταυτίζεται με %1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Άνοιγμα ξανά" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "ΣυμπληÏώθηκε ο μέγιστος αÏιθμός, έτσι οι νέες τιμές θα αντικαταστήσουν τις παλιές." #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "ΠÏαγματικό όνομα" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "ΠαÏαλήπτες" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "ΚαταγÏαφή όλων των ενημεÏώσεων" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "ΑναδÏομικό μέλος" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "ΑνακÏκλωση" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "ΑναφοÏά σε" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "ΠÏοστέθηκε η παÏαπομπή από %1" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "ΔιαγÏάφηκε η παÏαπομπή από %1" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "ΠÏοστέθηκε η παÏαπομπή στο %1" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "ΔιαγÏάφηκε η παÏαπομπή στο %1" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "ΑναφεÏόμενο από" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "ΑναφέÏεται σε" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Ανανέωση" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Ανανέωση αυτής της σελίδας κάθε %1 λεπτά." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "Ανανέωση αÏχικής σελίδας" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "ΑÏνηθήκατε να Ï€Ïοσθέσετε σÏνδεσμο που θα δημιουÏγοÏσε μια κυκλική σχέση" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "ΑπόÏÏιψη" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "Σχετικά αιτήματα" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Απομνημόνευση Ï€ÏοκαθοÏισμένης ουÏάς" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "ΥπενθÏμιση" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "ΠÏοσθήκη υπενθÏμισης '%1'" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "ΟλοκλήÏωση υπενθÏμισης '%1'" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "ΕπαναενεÏγοποίηση υπενθÏμισης '%1'" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "ΥπενθÏμιση '%1': %2" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "ΠÏοστέθηκε επισήμανση" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "ΟλοκλήÏωση επισήμανσης" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "Ξανα-άνοιγμα επισήμανσης" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Υπενθυμίσεις" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Υπενθυμίσεις για το αίτημα #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "ΑφαίÏεση" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "ΑφαίÏεση %1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "ΑφαίÏεση AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "ΑφαίÏεση Σελιδοδείκτη" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "ΑφαίÏεση Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "ΑφαίÏεση ΑιτοÏντος" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "ΑφαιÏέθηκε Θέμα ΠαÏάκαμψης" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "ΑφαιÏέθηκε Ï€ÏοσαÏμοσμένο πεδίο %1 από %2." #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "ΤÏπος ΑποτÏπωσης" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Αντικατάσταση των αναδυόμενων Î¼ÎµÎ½Î¿Ï Ï„Î¿Ï… ιδιοκτήτη με πλαίσια κειμένου" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Απάντηση" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "ΔιεÏθυνση απάντησης" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Απάντηση στους αιτοÏντες" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "Απάντηση σε αίτημα" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Απάντηση στα αιτήματα" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "ΑναφοÏά ως κλεμμένο" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Αιτών" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "ΑιτοÏντες" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Η υποχÏεωτική παÏάμετÏος '%1' δεν έχει οÏιστεί" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "ΕπαναφοÏά" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "ΕπαναφοÏά του RT με μια ματιά" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "ΕπαναφοÏά ταμπλό στο μενοÏ" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "ΕπαναφοÏά Î¼Ï…ÏƒÏ„Î¹ÎºÎ¿Ï ÏƒÏ…Î¼Î²ÏŒÎ»Î¿Ï… ταυτοποίησης" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "ΕπαναφοÏά Ï€ÏοκαθοÏισμένων" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "ΕπαναφοÏά του αÏÏ‡Î¹ÎºÎ¿Ï RT λογότυπου" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "ΕπαναφοÏά στο αÏχικό θέμα RT" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Κατοικία" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Επίλυση" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Επίλυση αιτήματος #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Επιλυμένα" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "ΕπιλÏθηκε σε μοÏφή HTML" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Απάντηση" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Αποτελέσματα" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "ΕπαναφοÏά ΧÏονομέτÏου" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "ΕπιστÏοφή πίσω στο αίτημα" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "ΕπιστÏοφή στην αÏχική σελίδα" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "ΕπαναπληκτÏολόγηση ΚωδικοÏ" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "ΕπαναφοÏά" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "Εμπλουτισμένο κείμενο (HTML) εμφανίζει τη μοÏφοποίηση όπως έγχÏωμο κείμενο, έντονη γÏαφή, πλάγια γÏαφή και άλλα" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "ΦόÏτωση Δικαιώματος" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Το Δικαίωμα δεν μπόÏεσε να ανακληθεί" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Το Δικαίωμα δεν έχει φοÏτωθεί" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Τα δικαιώματα δεν μπόÏεσαν να παÏαχωÏηθοÏν στο %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Δικαιώματα για διαχειÏιστές" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Δικαιώματα για Ï€Ïοσωπικό" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "Όνομα Ρόλου" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "Ο Ïόλος υπάÏχει ήδη" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "Ο Ïόλος της ομάδας '%1' δε βÏέθηκε" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "Ο Ïόλος της ομάδας υπάÏχει ήδη" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Ρόλοι" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "ΓÏαμμές" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "ΓÏαμμές ανά πλαίσιο" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "ΓÏαμμές ανά σελίδα" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "SMIME Πιστοποιητικό" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "ΕÏωτήματα SQL" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "Τα SQL εÏωτήματα καταγÏάφονται στο %1 επίπεδο και επίσης διατίθενται στο %2εÏγαλείο εÏώτησης%3." #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "Τα SQL εÏωτήματα δεν είναι συνδεδεμένα." #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "Το SQLite είναι μια βάση δεδομένων που δεν χÏειάζεται διακομιστή ή οτιδήποτε Ïυθμίσεις. Οι Ï€ÏογÏαμματιστές του RT τη χÏησιμοποιοÏν για δοκιμές, παÏουσίαση και ανάπτυξη, αλλά δεν είναι κατάλληλη για διακομιστή RT μαζικής παÏαγωγής." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Σαβ" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Σάββατο" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Αποθήκευση" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Αποθήκευση αλλαγών" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Αποθήκευση Ï€Ïοτιμήσεων" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Αποθήκευση ως νέο" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "Αποθήκευση ΠεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Αποθήκευση νέου" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Αποθήκευση αναζήτησης" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Αποθήκευση %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Αποθηκευμένη Αναζήτηση" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Αποθηκευμένες Αναζητήσεις" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Αποθηκευμένα διαγÏάμματα" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "Η αποθηκευμένη αναζήτηση %1 δε βÏέθηκε" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Αποθηκευμένες αναζητήσεις" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "Αποθηκευμένες Αναζητήσεις" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "ΕνημεÏώσεις σχήματος από %1" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "ΣενάÏιο #%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "ΔημιουÏγία ΣεναÏίου" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "Το σενάÏιο δε Ï€Ïοστέθηκε" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "ΣενάÏια" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Αυτοματισμοί και ΠαÏαλήπτες" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "Τα σενάÏια Ï„Ïέχουν κανονικά μετά από κάθε μεμονωμένη αλλαγή στο αίτημα." #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Αναζήτηση" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "ΕνημέÏωση αναζήτησης %1" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Αναζήτηση ΆÏθÏων" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "Αναζήτηση ΠεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "ΠÏοτιμήσεις Αναζήτησης" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Αναζήτηση άÏθÏων που ταυτίζονται με" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Αναζήτηση εγκÏίσεων" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Αναζήτηση για άÏθÏα" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Αναζήτηση για αιτήματα" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" "Αναζήτηση για αιτήματα εισάγωντας %1αναγνωÏιστικό%2 αÏιθμών, θέμα λέξεων %1\"σε εισαγωγικά\"%2, %1ουÏές%2 με βάση το όνομα%2, Κάτοχοι με βάση %1το όνομα χÏήστη%2, ΑιτοÏντες με βάση %1τη διεÏθυνση ηλεκτÏÎ¿Î½Î¹ÎºÎ¿Ï Ï„Î±Ï‡Ï…Î´Ïομίου%2, και αίτημα %1καταστάσεων%2.\\r\n" "Η αναζήτηση για %1@όνομα τομέα.com%2 θα επιστÏέψει αιτήματα με αιτοÏντες από αυτό τον τομέα." #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Επιλογές Αναζήτησης" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Αποτελέσματα αναζήτησης" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Διάστημα ανανέωσης αποτελεσμάτων αναζήτησης" #: share/html/Search/index.html:48 msgid "Searches" msgstr "Αναζητήσεις" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "Η αναζήτηση πλήÏες κειμένου σε κάθε αίτημα θα πάÏει Ï€Î¿Î»Ï Ï‡Ïόνο, αλλά αν Ï€Ïέπει να γίνει, μποÏείτε να ψάξετε για κάποια λέξη στο πλήÏες ιστοÏικό αιτημάτων απλά πληκτÏολογώντας τη %1λέξη." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Μυστικό σÏμβολο ταυτοποίησης" #: bin/rt-crontool:352 msgid "Security:" msgstr "Ασφάλεια:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Δείτε επίσης:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "ΠÏοβολή άÏθÏων σε αυτή την κατηγοÏία" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "ΠÏοβολή ΠεÏιουσιακών στοιχείων" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "ΠÏοβολή καταλόγων" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "ΠÏοβολή αλλαγών σε άÏθÏα αυτής της κατηγοÏίας" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Επιβεβαίωση ÏπαÏξης αυτής της κατηγοÏίας" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Επιλογή" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Επιλογή ΠÏοσαÏμοσμένων Πεδίων για ΆÏθÏα σε όλες τις ΚατηγοÏίες" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "Επιλογή ΠÏοσαÏμοσμένων Πεδίων για ΠεÏιουσιακά Στοιχεία σε όλους τους καταλόγους" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Επιλογή ΤÏπου Βάσης Δεδομένων" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Επιλογή ΚατηγοÏίας" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Επιλογή ΠÏοσαÏμοσμένου Πεδίου" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "Επιλογή ενός ΠÏοσαÏμοσμένου Ρόλου" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "Επιλογή ενός ΣεναÏίου" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "Επιλογή ενός καταλόγου" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Επιλογή χÏώματος για αυτό το τμήμα" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "Επιλογή ενός ΠÏοσαÏμοσμένου Ρόλου" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Επιλογή ομάδας" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Επιλογή ουÏάς" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Επιλογή ουÏάς για το νέο σας αίτημα" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Επιλογή τμήματος" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Επιλογή χÏήστη" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Επιλογή ΆÏθÏου από %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Επιλογή ΆÏθÏου για συμπεÏίληψη" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Επιλογή άλλης γλώσσας" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Πλαίσιο επιλογής" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Επιλογή Ï€ÏοσαÏμοσμένων πεδίων για όλες τις ουÏές" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Επιλογή Ï€ÏοσαÏμοσμένων πεδίων για όλες τις ομάδες" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Επιλογή Ï€ÏοσαÏμοσμένων πεδίων για όλους τους χÏήστες" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Επιλογή Ï€ÏοσαÏμοσμένων πεδίων για αιτήματα σε όλες τις ουÏές" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Επιλογή Ï€ÏοσαÏμοσμένων πεδίων για συναλλαγές στα αιτήματα σε όλες τις ουÏές" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Επιλογή ημεÏομηνίας" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Επιλογή ÏŽÏας/ημεÏομηνίας" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "Επιλογή σταδίου ÎºÎ±Î¸Î¿Î»Î¹ÎºÎ¿Ï ÏƒÎµÎ½Î±Ïίου:" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Επιλογή πολλαπλών ημεÏομηνιών" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "Επιλογή πολλαπλών ωÏών/ημεÏομηνιών" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Επιλογή πολλαπλών τιμών" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Επιλογή μιας τιμής" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Επιλογή ουÏών για εμφάνιση στην σελίδα \"To RT με μια ματιά\"" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "Επιλογή σταδίου σεναÏίου για Ï€Ïόσφατες Ï€Ïοστιθέμενες ουÏές" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Επιλογή θεμάτων για αυτό το άÏθÏο" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Επιλογή μέχÏι και %1 ημεÏομηνιών" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "Επιλογή μέχÏι %1 ωÏών/ημεÏομηνιών" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Επιλογή μέχÏι και %1 τιμών" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Επιλεγμένα ΠÏοσαÏμοσμένα Πεδία" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Επιλεγμένες ΟυÏές" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Το επιλεγμένο κλειδί είτε δεν είναι έμπιστο είτε δεν υπάÏχει" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Επιλεγμένα αντικείμενα" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Οι επιλογές έχουν μεταβληθεί. ΠαÏακαλώ αποθηκεÏστε τις αλλαγές σας" #: etc/initialdata:117 msgid "Send Forward" msgstr "Αποστολή Ï€Ïοώθησης" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "Αποστολή Ï€Ïοωθημένου μηνÏματος" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Αποστολή μηνÏματος σε υπεÏθυνο και σε όλους τους παÏατηÏητές" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Αποστολή μηνÏματος σε υπεÏθυνο και σε όλους τους παÏατηÏητές σαν σχόλιο" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Αποστολή μηνÏματος σε αιτοÏντες και Ccs" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Αποστολή μηνÏματος σε αιτοÏντες και Ccs σαν σχόλιο" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "Η αποστολή της Ï€ÏοηγοÏμενης αλληλογÏαφίας απέτυχε. ΠαÏακαλώ επικοινωνήστε με το διαχειÏιστή σας, μποÏοÏν να βÏεθοÏν πεÏισσότεÏες πληÏοφοÏίες στα αÏχεία καταγÏαφής." #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Αποστολή μηνÏματος στους αιτοÏντες" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Αποστολή μηνÏματος στη λίστα των Ccs και Bccs" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Αποστολή μηνÏματος στους Ccs" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Αποστολή μηνÏματος στους Ccs σαν σχόλιο" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "Αποστολή μηνÏματος στο Κάτοχο και στο διαχειÏιστή Ccs" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Αποστολή μηνÏματος στους AdminCcs" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Αποστολή μηνÏματος στους AdminCcs σαν σχόλιο" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Αποστολή μηνÏματος στον υπεÏθυνο" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Σεπ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "ΔιαχωÏισμός πολλαπλών καταχωÏήσεων με διαστήματα." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "ΚαθοÏισμός Î¹Î´Î¹Ï‰Ï„Î¹ÎºÎ¿Ï ÎºÎ»ÎµÎ¹Î´Î¹Î¿Ï" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Ρυθμίσεις" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "Απαιτείται εγκατάσταση" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "ΣÏντομα ονόματα χÏηστών" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Θέλετε να σας στέλνει το RT μηνÏματα για αλλαγές που κάνετε στα αιτήματα;" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "ΠÏοβολή" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "ΠÏοβολή Î¼ÎµÎ½Î¿Ï Î”Î¹Î±Ï‡ÎµÎ¹Ïιστή" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "ΠÏοβολή καÏτέλας ΕγκÏίσεων" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "ΠÏοβολή ΆÏθÏων μενοÏ" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "ΠÏοβολή Î¼ÎµÎ½Î¿Ï Î ÎµÏιουσιακών στοιχείων" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "ΠÏοβολή στηλών" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "ΠÏοβολή αποτελεσμάτων" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "ΠÏοβολή ιδιοτήτων αιτημάτων στο επίπεδο %1" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "ΠÏοβολή όλου του αναφεÏομένου κειμένου" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "ΠÏοβολή εγκεκÏιμένων αιτημάτων" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "ΠÏοβολή επίσης" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "ΠÏοβολή σÏντομων κεφαλίδων" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "ΠÏοβολή αποÏÏιφθέντων αιτημάτων" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "ΠÏοβολή ολοκληÏωμένων κεφαλίδων" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "ΠÏοβολή καθολικών Ï€ÏοτÏπων" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "ΠÏοβολή ιστοÏικοÏ" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "Εμφάνιση ιστοÏÎ¹ÎºÎ¿Ï Ï„Ï‰Î½ ιδιοτήτων του δημόσιου χÏήστη" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "ΠÏοβολή πεÏιγÏαφών συνδέσμων" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "ΑπόκÏυψη αιτημάτων για τον Αιτών" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "ΠÏοβολή Ï€Ïώτα του παλαιότεÏου ιστοÏικοÏ" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "ΠÏοβολή εκκÏεμών αιτημάτων" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "ΠÏοβολή αναφεÏομένου κειμένου" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "ΠÏοβολή αιτημάτων που αναμένουν έγκÏιση" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "Εμφάνιση απλοποιημένης λίστας παÏαληπτών κατά την ενημέÏωση αιτήματος" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Εμφάνιση 10 υψίστης Ï€ÏοτεÏαιότητας ενεÏγά αιτήματα του αιτοÏντος" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Εμφάνιση 10 υψίστης Ï€ÏοτεÏαιότητας ανενεÏγά αιτήματα του αιτοÏντος" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "ΠÏοβολή των 10 αιτημάτων του αιτοÏντος με την ψηλότεÏη Ï€ÏοτεÏαιότητα" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "ΠÏοβολή ιστοÏÎ¹ÎºÎ¿Ï Î±Î¹Ï„Î®Î¼Î±Ï„Î¿Ï‚" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "Εμφάνιση πεδίων που δεν έχουν τεθεί" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Τεμαχιστής" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "Ο τεμαχιστής χÏειάζεται ένα κατάλογο για εγγÏαφή Ï€ÏοσωÏινών δεδομένων. ΠαÏακαλώ βεβαιωθείτε ότι ο κατάλογος %1 υπάÏχει και είναι εγγÏάψιμος από τον διακομιστή ιστοÏ." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "ΠλευÏική μπάÏα" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "ΕγγÏαφή" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "ΕγÏαφείτε σε όλες τις ηλεκτÏονικές αλληλογÏαφίες που παÏάγονται αυτόματα. %1 ΠÏοσοχή%2: Η ενεÏγοποίηση αυτής της επιλογής αλλάζει την υπογÏαφή από την παÏοχή %3πιστοποίησης%4 σε παÏοχή %3ακεÏαιότητας%4." #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "ΠÏοκαθοÏισμένη εγγÏαφή" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "ΕγγÏαφή σαν Αιτών σε αίτημα ή σαν Cc σε αίτημα ή ουÏά" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "ΕγγÏαφή σαν AdminCc αιτήματος ή ουÏάς" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "ΕγγÏαφή%1%2" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "ΕγγÏαφή%1%2 με χÏήση %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "ΥπογÏαφή" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "ΥπογÏαφή" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Απλό" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Απλή αναζήτηση" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Ενιαίο" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Όνομα ιστοχώÏου" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Μέγεθος" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "ΠαÏάληψη ΜενοÏ" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "ΠαÏάληψη απενεÏγοποιημένου χÏήστη" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "ΜικÏÏŒ" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "ΜεÏικοί φυλλομετÏητές μποÏεί να φοÏτώνουν μόνο το πεÏιεχόμενο του τομέα όπου βÏίσκεται ο διακομιστής RT." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Κάτι πάει λάθος. Επικοινωνήστε με τον διαχειÏιστή του συστήματος σας" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Ταξινόμηση" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "ΣειÏά Ταξινόμησης" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Ταξινόμηση" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Πηγαίος Κώδικας" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "ΚαθοÏίστε αν θα Ï„Ïέχει ημεÏησίως ή εβδομαδιαία." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Λογιστικό φÏλλο" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "Τα ίχνη σωÏÎ¿Ï Ï€Ïοστίθενται στο μήνυμα επιπέδων %1 και άνω." #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "Τα ίχνη σωÏÎ¿Ï Î´Îµ καταγÏάφονται." #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Στάδιο" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Αναμονή" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Ξεκινήστε τον ÏŒÏο αναζήτησης με το όνομα ενός υποστηÏιζόμενου πεδίου ακολουθοÏμενου από άνω-κάτω τελεία (:), όπως στα %1 και %2, για να καθοÏίσετε συγκεκÏιμένα το Ï„Ïπο αναζήτησης." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Ξεκίνησε" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Ξεκινά" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Κατάσταση" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "Κατάσταση" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "Η κατάσταση '%1' δεν είναι έγκυÏη κατάσταση για πεÏιουσιακά στοιχεία." #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "Η κατάσταση '%1' δεν είναι μια έγκυÏη κατάσταση για αυτό το %2." #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "Η κατάσταση '%1' δεν είναι έγκυÏη για τα αιτήματα σε αυτή την ουÏά." #: etc/initialdata:449 msgid "Status Change" msgstr "Αλλαγή κατάστασης" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "Αλλαγή Κατάστασης σε μοÏφή HTML" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Η κατάσταση άλλαξε από %1 σε %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Αλλαγές κατάστασης" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Ανάκτηση" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Ανάκτηση αιτημάτων" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Βήμα %1 από %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Ανάκτηση από %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Στυλ" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Θέμα" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Ετικέτα θέματος" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Το θέμα άλλαξε σε %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Υποβολή" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "Υποβολή" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "ΕγγÏαφή" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "ΕγγÏαφείτε στο ταμπλό %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "ΕγγÏαφείτε στα ταμπλό" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Έγινε εγγÏαφή στο ταμπλό %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "ΕγγÏαφή" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Η εγγÏαφή δεν ήταν δυνατό να δημιουÏγηθεί: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "Η συνδÏομή ενημεÏώθηκε" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Επιτυχής αποκÏυπτογÏάφηση δεδομένων" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Επιτυχής κÏυπτογÏάφηση δεδομένων" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "ΣÏνοψη" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "ΣÏνοψη των ΔημιουÏγήθηκε - Τελευταία ΕνημέÏωση" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "ΣÏνοψη των ΔημιουÏγήθηκε - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "ΣÏνοψη των ΔημιουÏγήθηκε - Ξεκίνησε" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "ΣÏνοψη των Οφειλόμενων - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "ΣÏνοψη των Ξεκίνησε - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "ΣÏνοψη των Ξεκινά - Ξεκίνησε" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "ΣÏνοψη του εκτιμώμενου χÏόνου" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "ΣÏνοψη του χÏόνου αÏιστεÏά" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "ΣÏνοψη του χÏόνου εÏγασίας" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "ΚυÏ" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "ΚυÏιακή" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Παγωμένο" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "ΣÏστημα" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Ρυθμίσεις συστήματος" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "ΠÏοεπιλογή Συστήματος" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Σφάλμα Συστήματος" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Σφάλμα Συστήματος: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "ΕÏγαλεία Συστήματος" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Σφάλμα συστήματος" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Σφάλμα συστήματος. Αδυναμία παÏαχώÏησης δικαιώματος" #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup για εσωτεÏική χÏήση" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Ανάληψη" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Ανάληψη αιτημάτων" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Αναλήφθηκε" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Κατατοπίστε μας που βÏίσκεται η βάση δεδομένων που θα χÏησιμοποιεί το RT" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "ΠÏότυπο" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "ΔιαγÏαφή Ï€ÏοτÏπου #%1" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "Το Ï€Ïότυπο '%1' δεν είναι καθολικό" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "Το Ï€Ïότυπο '%1' δεν είναι καθολικό οÏτε συγκεκÏιμένης ουÏάς" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Το Ï€Ïότυπο '%1' δεν βÏέθηκε" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "Μεταγλώττιση Ï€ÏοτÏπου" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "Το Ï€Ïότυπο δεν πεÏιλαμβάνει κώδικα Perl" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Το Ï€Ïότυπο είναι κενό" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "Το Ï€Ïότυπο είναι σε χÏήση" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Το Ï€Ïότυπο είναι υποχÏεωτική παÏάμετÏος" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Το Ï€Ïότυπο αναλÏθηκε" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Σφάλμα ανάλυσης Ï€ÏοτÏπου" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "Σφάλμα ανάλυσης Ï€ÏοτÏπου: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "ΠÏότυπο: %1" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "ΠÏότυπα" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "ΠÏότυπα για ουÏά %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Κείμενο" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Το αÏχείο κειμένου δεν εμφανίζεται γιατί έχει απενεÏγοποιηθεί στις Ï€Ïοτιμήσεις." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Αυτή είναι ήδη η Ï„Ïέχουσα τιμή" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Αυτή δεν είναι κατάλληλη τιμή για αυτό το Ï€ÏοσαÏμοσμένο πεδίο" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Το αίτημα έχει ανεπίλυτες εξαÏτήσεις" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Ο χÏήστης είναι ήδη υπεÏθυνος για το αίτημα" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Ο χÏήστης δεν υπάÏχει" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Αυτός ο χÏήστης είναι ήδη Ï€ÏονομιοÏχος" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Αυτός ο χÏήστης είναι ήδη μη Ï€ÏονομιοÏχος" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Αυτός ο χÏήστης έχει γίνει Ï€ÏονομιοÏχος" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Αυτός ο χÏήστης έχει γίνει μη Ï€ÏονομιοÏχος" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Ο χÏήστης δεν μποÏεί να είναι υπεÏθυνος για αιτήματα σε αυτή την ουÏά" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Δεν είναι αÏιθμητική ταυτότητα" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Βασικά" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "Ο CC ενός αιτήματος" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "Η ΚατηγοÏία του αιτήματος που Ï€ÏοσδιοÏίζεται από το %1 δεν εφαÏμόζεται σε αυτή την ΟυÏά" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Ο κωδικός DBA της βάσης δεδομένων είναι λανθασμένος" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "Ο AdminCc ενός αιτήματος" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "ΠÏοεπιλεγμένος κατάλογος" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Το όνομα τομέα της βάσης δεδομένων σας (πχ 'db.example.com')" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "Η ακόλουθη εντολή θα εντοπίσει όλα τα ενεÏγά αιτήματα στην ουÏά 'general' και θα οÏίσει την Ï€ÏοτεÏαιότητα τους στο 99 όταν θα είναι εκπÏόθεσμα:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Τα ακόλουθα εÏωτήματα έχουν διαγÏαφεί και θα αφαιÏεθοÏν από το ταμπλό μόλις ενημεÏωθεί το πλαίσιο της." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Τα ακόλουθα εÏωτήματα μποÏεί να μην είναι οÏατά σε όλους τους χÏήστες που μποÏοÏν να δουν αυτό το ταμπλό." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "Το κλειδί έχει απενεÏγοποιηθεί" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "Το κλειδί έχει ανακληθεί" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "Το κλειδί έχει λήξει" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "Το κλειδί είναι πλήÏως έμπιστο" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "Το κλειδί είναι απολÏτως έμπιστο" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Έχει οÏιστεί ή νέα τιμή." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Ο υπεÏθυνος ενός αιτήματος" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Η σελίδα που καλέσατε δεν έχει βÏεθεί" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Ο αιτών ενός αιτήματος" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "Οι Ïυθμίσεις που επιλέξατε έχουν αποθηκευτεί σε %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Το σÏστημα αδυνατεί να υπογÏάψει εξεÏχόμενα μηνÏματα. Αυτό συνήθως δεικνÏει ότι η φÏάση-κλειδί δεν οÏίστηκε σωστά, ή ότι η διεÏγασία GPG είναι ανενεÏγή. ΠαÏακαλώ ενημεÏώστε τον διαχειÏιστή σας αμέσως. Οι Ï€Ïοβληματικές διευθÏνσεις είναι:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Θέμα" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "ΥπάÏχουν αÏκετά κλειδιά κατάλληλα για κÏυπτογÏάφηση." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "ΥπάÏχουν αδιάβαστα μηνÏματα σε αυτό το αίτημα." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Το κλειδί αυτό είναι οÏιακά έμπιστο" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "ΥπάÏχουν πεÏισσότεÏες από μία ομάδες με το όνομα '%1'. Αυτό μποÏεί να Ï€Ïοκαλέσει ασυνέχειες σε μέÏη της διεπαφής διαχειÏιστή, και έτσι συνίσταται να μετονομαστοÏν οι αντικÏουόμενες ομάδες." #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Δεν υπάÏχει κλειδί κατάλληλο για κÏυπτογÏάφηση." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "Δεν υπάÏχει αντιστοίχιση των καταστάσεων Î¼ÎµÏ„Î±Î¾Ï Ï„Î¿Ï… κÏκλου ζωής %1 και %2.Επικοινωνήστε με το διαχειÏιστή του συστήματός σας." #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "ΥπάÏχει κατάλληλο κλειδί, αλλά δεν έχει οÏιστεί επίπεδο εμπιστοσÏνης." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "ΠαÏουσιάστηκε σφάλμα ανάλυσης στο εÏώτημα αναζήτησής σας: %1. Ο RT διαχειÏιστής σας μποÏεί να βÏει πεÏισσότεÏες πληÏοφοÏίες στα αÏχεία καταγÏαφής σφαλμάτων." #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Αυτές οι επιλογές Ïυθμίσεων καλÏπτουν μεÏικά από τα βασικά που χÏειάζονται για να δουλέψει το RT. ΠÏέπει να ξέÏουμε το όνομα της RT εγκατάστασης σας και το τομέα όπου θα υπάÏχει το RT. Θα χÏειαστεί να οÏιστεί ο κωδικός για τον Ï€ÏοκαθοÏισμένο διαχειÏιστή." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Αυτό το Ï€ÏοσαÏμοσμένο πεδίο δεν έχει λίστα με τιμές" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "Αυτή η κατηγοÏία δεν εφαÏμόζεται για αυτό το αντικείμενο" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "Το παÏόν Ï€ÏοσαÏμοσμένο πεδίο δε μποÏεί να Ï€Ïοστεθεί σε αυτό το αντικείμενο" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "Αυτό το Ï€ÏοσαÏμοσμένο πεδίο δεν έχει Ï„Ïπους αποτÏπωσης" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Αυτή η λειτουÏγία είναι διαθέσιμη μόνο σε διαχειÏιστές" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Αυτή η λειτουÏγία είναι διαθέσιμη μόνο σε διαχειÏιστές." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "Αυτή η διεÏγασία δεν κατέγÏαψε εÏωτήματα SQL." #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "Το παÏόν αίτημα δεν είναι δυνατό να επιλυθεί μέχÏι να εγκÏιθεί." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "Το παÏόν αίτημα δε μποÏεί να επιλυθεί μέχÏι το %numarate(%1, dependency is,dependencies are) επιλυθεί." #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Αυτό το εÏγαλείο επιτÏέπει την γενική χÏήση αÏθÏωμάτων perl μέσα από το RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Αυτή η συναλλαγή δεν φαίνεται να έχει πεÏιεχόμενο" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "Τα %1 %2 αιτήματα του χÏήστη, με υψηλότεÏη Ï€ÏοτεÏαιότητα" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "Αυτό θα Ï€Ïαγματοποιήσει αναζήτηση για χÏήστες ψάχνοντας στα ακόλουθα πεδία." #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "Θα μεταβείτε σε μια μεÏικώς Ï€ÏοσυμπληÏωμένη φόÏμα δημιουÏγίας πεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Πεμ" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Πέμπτη" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Αίτημα" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Αίτημα #%1 Συνολική ενημέÏωση: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "ΓÏάφημα σχέσεων αιτήματος #%1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Αίτημα #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Αίτημα %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Το αίτημα %1 δημιουÏγήθηκε στην ουÏά '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Αίτημα %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "ΙστοÏικό Αιτήματος # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Το Αίτημα ΕπιλÏθηκε" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Αναζήτηση Αιτήματος" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Συναλλαγές Αιτήματος" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Αίτημα και Συναλλαγή" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "ΣÏνθεση Αιτήματος" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "ΠεÏιεχόμενο Αιτήματος" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "ΤÏπος πεÏιεχομένου Αιτήματος" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Το αίτημα δεν έχει δημιουÏγηθεί λόγω εσωτεÏÎ¹ÎºÎ¿Ï ÏƒÏ†Î¬Î»Î¼Î±Ï„Î¿Ï‚" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Δεν ήταν δυνατή η φόÏτωση του αιτήματος" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "ΑÏίθμηση αιτήματος" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Εμφάνιση αιτήματος" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Μεταδεδομένα αιτήματος" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Η κατάσταση του αιτήματος άλλαξε" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "ΕνημέÏωση Αιτήματος" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "ΆÏθÏωμα αναζήτησης TicketSQL" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Αιτήματα" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Αιτήματα %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Αιτήματα %1 από %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Αιτήματα που έχω αναλάβει" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Αιτήματα που εξαÏτώνται από αυτή την έγκÏιση:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "ÎÏα" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Εκτιμώμενος χÏόνος" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "ΧÏόνος που απομένει" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "ΧÏόνος εÏγασίας" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "Εκτιμώμενος χÏόνος" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "ΧÏόνος απεικόνισης" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "ΧÏονόμετÏο για #%1: %2" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Ζώνη ÎÏας" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Τίτλος" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "ΠÏος" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Για εÏωτήματα σχετικά με υποστήÏιξη, εκπαίδευση, Ï€ÏοσαÏμοσμένη ανάπτυξη ή αδειοδότηση, παÏακαλώ επικοινωνήστε με %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "Εναλλαγή %quant(%1,query,queries)" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "Εναλλαγή ανίχνευσης σωÏοÏ" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "ΕÏγαλεία" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Όνομα Θέματος" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "ΠÏοστέθηκε θέμα ιδιότητας μέλους" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "ΑφαιÏέθηκε θέμα ιδιότητας μέλους" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Αδυναμία εÏÏεσης Θέματος" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Θέματα" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "ΣÏνολο" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "ΣÏνολο που ΔημιουÏγήθηκε - ΕνημεÏώθηκε τελευταία" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "ΣÏνολο που ΔημιουÏγήθηκε - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "ΣÏνολο που ΔημιουÏγήθηκε - Ξεκίνησε" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "Οφειλόμενο ΣÏνολο - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "ΣÏνολο που Ξεκίνησε - ΕπιλÏθηκε" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "ΣÏνολο που Ξεκινά - Ξεκίνησε" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "Συνολικός εκτιμώμενος χÏόνος" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "Συνολικός χÏόνος αÏιστεÏά" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "Συνολικός χÏόνος εÏγασίας" #: etc/initialdata:317 msgid "Transaction" msgstr "Συναλλαγή" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Η συναλλαγή %1 διαγÏάφηκε" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Η συναλλαγή δημιουÏγήθηκε" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Ï€ÏοσαÏμοσμένα Πεδία Συναλλαγών" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "Συναλλαγή σε HTML" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Το Transaction->Create απέτυχε μια και δεν καθοÏίστηκε ο Ï„Ïπος του αντικειμένου και η ταυτότητα του" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "ΣυναλλαγήCF" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "Συναλλαγές" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Οι συναλλαγές είναι αμετάβλητες" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Έμπιστο" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "Δοκιμή" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "Επανάληψη Ï€Ïοσπάθειας" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "ΤÏι" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "ΤÏίτη" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "ΤÏπος" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "ΠληκτÏολογήστε a: Ï€Ïιν τους αÏιθμοÏÏ‚ θεμάτων και t: Ï€Ïιν τους αÏιθμοÏÏ‚ αιτημάτων." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Αλλαγή Ï„Ïπου από '%1' σε '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "Μη εφαÏμογή επιλεγμένων σεναÏίων" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "Δεν είναι δυνατή η Ï€Ïοσθήκη %1 σÏνδεσμος: %2" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "Δεν είναι δυνατή η Ï€Ïοσθήκη θέματος παÏάκαμψης: %1 %2" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "Αδυναμία Ï€Ïοσθήκης Θέματος ιδιότητας μέλους" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "Αδυναμία διαγÏαφής Θέματος ιδιότητας μέλους σε %1" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Δεν έχει καθοÏιστεί ο Ï„Ïπος και η ταυτότητα του αντικειμένου" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "Αδυναμία εÏÏεσης του πεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï… #%1" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "Αδυναμία εÏÏεσης καταλόγου #%1" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "Αδυναμία εÏÏεσης καταλόγου '%1'" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Αδυναμία φόÏτωσης άÏθÏου" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "Αδυναμία ανοίγματος βοήθειας συντόμευσης. Αιτία:" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "Αδυναμία καθοÏÎ¹ÏƒÎ¼Î¿Ï UserCSS: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "Αδυναμία καθοÏÎ¹ÏƒÎ¼Î¿Ï UserLogo: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "Αδυναμία οÏÎ¹ÏƒÎ¼Î¿Ï Ï„Î±Ï…Ï„ÏŒÏ„Î·Ï„Î±Ï‚ Î¹Î´Î¹Ï‰Ï„Î¹ÎºÎ¿Ï Î±Ï€Î¿ÏÏήτου: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "Αδυναμία οÏÎ¹ÏƒÎ¼Î¿Ï Ï„Î±Ï…Ï„ÏŒÏ„Î·Ï„Î±Ï‚ ή αντικειμένου Î¹Î´Î¹Ï‰Ï„Î¹ÎºÎ¿Ï Î±Ï€Î¿ÏÏήτου: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "Αδυναμία οÏÎ¹ÏƒÎ¼Î¿Ï Î±Î½Ï„Î¹ÎºÎµÎ¹Î¼Î­Î½Î¿Ï… Î¹Î´Î¹Ï‰Ï„Î¹ÎºÎ¿Ï Î±Ï€Î¿ÏÏήτου: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "Δεν είναι δυνατή η εγγÏαφή στο ταμπλό %1: Δεν επιτÏέπεται η Ï€Ïόσβαση" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "Μη εξουσιοδοτημένος" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Αποεπιλέξτε τα πλαίσια για απενεÏγοποίηση των ειδοποιήσεων στους εγγεγÏαμμένους παÏαλήπτες μόνο για αυτή την συναλλαγή. Για μονιμότεÏη αποσιωποίηση των ειδοποιήσεων μποÏείτε να επισκεφθείτε την Σελίδα χÏηστών." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "ΑποδιαγÏαφή" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "Δυστυχώς, το RT δε θα μποÏοÏσε να δημιουÏγήσει αυτόματα έναν λογαÏιασμό για εσάς. Ο RT διαχειÏιστής σας θα βÏει πεÏισσότεÏες πληÏοφοÏίες στα αÏχεία καταγÏαφής." #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Άγνωστο (δεν έχει καθοÏιστεί τιμή εμπιστοσÏνης)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Άγνωστο (αυτή η τιμή είναι καινοÏÏγια για το σÏστημα" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Άγνωστη Κωδικοποίηση ΠεÏιεχομένου %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Άγνωστο πεδίο: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "Εκτός και αν οÏίσετε συγκεκÏιμένη κατάσταση, μόνο τα αιτήματα με ενεÏγές καταστάσεις (%1) θα αναζητηθοÏν." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "ΑπεÏιόÏιστο" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "ΑπεÏιόÏιστο" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Ταμπλό χωÏίς όνομα" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Ανώνυμη αναζήτηση" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Αιτήματα χωÏίς κάτοχο" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Αιτήματα χωÏίς κάτοχο" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Μη Ï€ÏονομιοÏχοι" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Απεπιλεγμένα ΠÏοσαÏμοσμένα Πεδία" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Απεπιλεγμένες ΟυÏές" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Απεπιλεγμένα αντικείμενα" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "ΑκÏÏωση Î¹Î´Î¹Ï‰Ï„Î¹ÎºÎ¿Ï ÎºÎ»ÎµÎ¹Î´Î¹Î¿Ï" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "ΧωÏίς ανάληψη" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "ΕνημέÏωση" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "ΕνημέÏωση διαγÏάμματος" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "ΕνημέÏωση ΓÏαφήματος" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "ΕνημέÏωση Î‘Ï…Ï„Î¿Ï Ï„Î¿Ï… ΜενοÏ" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "ΕνημέÏωση αιτήματος" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "ΕνημέÏωση Ï„Ïπου" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "ΕνημέÏωση μοÏφής και αναζήτηση" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "ΕνημέÏωση πολλαπλών αιτημάτων" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Μη καταγÏαφή ενημέÏωσης." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "ΕνημέÏωση αιτήματος" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "ΕνημέÏωση αιτήματος #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "ΕνημέÏωση αιτήματος #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Ο Ï„Ïπος ενημέÏωσης δεν ήταν οÏτε αλληλογÏαφία οÏτε σχόλιο." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "ΕνημεÏώθηκε" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "ΕνημεÏώθηκε από" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "ΕνημέÏωση αποθηκευμένης αναζήτησης \"%1\"" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "ΕνημεÏώθηκε Από" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "Αναβάθμιση από %1 σε %2" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Ανέβασμα" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Ανέβασμα καινοÏÏγιου λογότυπου" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Ανέβασμα πολλών αÏχείων" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Ανέβασμα πολλών εικόνων" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Ανέβασμα αÏχείου" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Ανέβασμα εικόνας" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Ανέβασμα μέχÏι και %1 αÏχείων" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Ανέβασμα μέχÏι και %1 εικόνων" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "Ανέβασμα..." #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "ΧÏήση:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "ΧÏήση διάταξης δÏο στηλών για δημιουÏγία και ενημέÏωση φοÏμών;" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "ΧÏήση πεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï… %1 ως αιτοÏντα του αιτήματος: %2" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "ΧÏήση αυτοσυμπλήÏωσης για εÏÏεση υπευθÏνων;" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "ΧÏήση Ï€ÏοκαθοÏισμένου (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "ΧÏήση άλλων εÏγαλείων διαχείÏισης RT" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "ΧÏήση του Ï€ÏοκαθοÏισμένου του συστήματος (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "ΧÏήση αναδυόμενων Î¼ÎµÎ½Î¿Ï Î³Î¹Î± επιλογή των ενημεÏώσεων αιτημάτων που θέλετε να εισαχθοÏν στο καινοÏÏγιο άÏθÏο." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "ΧÏησιμοποιείται από σενάÏια" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "ΧÏήστης" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "Ο χÏήστης %1 είναι Ï€Ïος το παÏόν απενεÏγοποιημένος." #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "Ο χÏήστης %1 είναι Ï€Ïος το παÏόν απενεÏγοποιημένος.Συντάξτε το χÏήστη και επιλέξτε \"Αφήστε σε αυτό το χÏήστη Ï€Ïόσβαση RT\" για να τον ενεÏγοποιήσετε." #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "ΧÏήστης (δημιουÏγήθηκε - έληξε)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "ΟÏισμένο από χÏήστη" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "Από το χÏήστη οÏίζονται οι Ï€Ïοϋποθέσεις και τα αποτελέσματα" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "Ομάδες ΧÏηστών" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "ΠληÏοφοÏίες ΧÏήστη" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Δικαιώματα ΧÏήστη" #: share/html/User/Search.html:48 msgid "User Search" msgstr "Αναζήτηση ΧÏήστη" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "ΣÏνοψη χÏήστη" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Ο χÏήστης ζήτησε αγνώστου Ï„Ïπου ενημέÏωση για το Ï€ÏοσαÏμοσμένο πεδίο %1 για το %2 αντικείμενο #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Ο χÏήστης δεν έχει δημιουÏγηθεί: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Ο χÏήστης δημιουÏγήθηκε" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Ο χÏήστης απενεÏγοποιήθηκε" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Ο χÏήστης ενεÏγοποιήθηκε" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Ο χÏήστης έχει κενή διεÏθυνση ηλεκτÏονικής αλληλογÏαφίας" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "ΦόÏτωση ΧÏήστη" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Ομάδες οÏισμένες από χÏήστη" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "ΧÏήστης: %1" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Όνομα ΧÏήστη" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "ΜοÏφή Ονόματος ΧÏήστη" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "ΧÏήστες" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "ΧÏήστες που πληÏοÏν τα κÏιτήÏια αναζήτησης" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "ΧÏήση συναλλαγής #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "ΈγκυÏο ΕÏώτημα" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "ΕπικÏÏωση" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Τιμή" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Τιμές" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Μεταβλητή" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Έκδοση" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "ΠÏοβολή Ï€ÏοτÏπων σεναÏίων" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "ΠÏοβολή ΣεναÏίων" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "ΠÏοβολή τιμών Ï€ÏοσαÏμοσμένου πεδίου" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "ΠÏοβολή Ï€ÏοσαÏμοσμένων πεδίων" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "ΠÏοβολή ολόκληÏων των μηνυμάτων ηλεκτÏονικής αλληλογÏαφίας και των παÏαληπτών τους" #: lib/RT/Group.pm:94 msgid "View group" msgstr "ΠÏοβολή ομάδας" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "ΠÏοβολή ταμπλό ομάδας" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "ΠÏοβολή επισημασμένου αιτήματος" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "ΠÏοβολή Ï€Ïοσωπικών ταμπλό" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "ΠÏοβολή ουÏάς" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "ΠÏοβολή αποθηκευμένων αναζητήσεων" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "ΠÏοβολή ταμπλό συστήματος" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "ΠÏοβολή ιδιωτικών σχολίων αιτήματος" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "ΠÏοβολή συνόψεων αιτήματος" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Αποθήκευση αναζήτησης με εμπιστευτικότητα επιπέδου χÏήστη" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Ύψος κειμενογÏάφου WYSIWYG" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "ΚειμενογÏάφος WYSIWYG" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "ΠÏοειδοποίηση! ΔΕΠέχει υπογÏαφεί!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "ΠÏοειδοποίηση: η συγχώνευση είναι μια μη αναστÏέψιμη λειτουÏγία! Εισάγετε έναν ενιαίο αÏιθμό αιτήματος για να συγχωνευθεί." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "ΠαÏατηÏητής" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "ΠαÏατηÏητές" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Έχει βÏεθεί η βάση δεδομένων σας και έχει γίνει σÏνδεση σαν DBA. ΜποÏείτε να συνεχίσετε την παÏαμετÏοποίηση του RT από την επιλογή 'ΠαÏαμετÏοποίηση Βασικών'" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Δεν μποÏοÏμε ακόμη να το αποτυπώσουμε σε Λίστα όταν οι κατηγοÏίες βασίζονται σε άλλο Ï€ÏοσαÏμοσμένο πεδίο. ΠαÏακαλώ χÏησιμοποιείστε άλλο Ï„Ïπο αποτÏπωσης." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "ΠÏέπει να γνωÏίζουμε το όνομα της βάσης δεδομένων που θα χÏησιμοποιεί το RT και Ï€Î¿Ï Î½Î± το βÏει. ΠÏέπει επίσης να γνωÏίζουμε το όνομα χÏήστη και τον κωδικό Ï€Ïόσβασης του χÏήστη που θα χÏησιμοποιεί το RT. Το RT μποÏεί να δημιουÏγήσει τη βάση δεδομένων και από τον χÏήστη για σας, γι 'αυτό ζητάμε το όνομα χÏήστη και τον κωδικό Ï€Ïόσβασης ενός χÏήστη με Ï€Ïονόμια DBA. Κατά τη διάÏκεια του βήματος 6 της διαδικασίας εγκατάστασης θα χÏησιμοποιήσουμε αυτές τις πληÏοφοÏίες για να δημιουÏγηθεί και να Ï€Ïοετοιμαστεί η βάση δεδομένων του RT." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "ΘÏÏα ΙστοÏ" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Τετ" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "ΤετάÏτη" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "Εβδομάδα του Έτους" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Εβδομαδιαία" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Εβδομαδιαία σÏνοψη" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Καλώς ήÏθατε στο RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Τι έκανα σήμεÏα" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Τι είναι το RT;" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "Ποια αιτήματα να εμφανιστοÏν στο πλαίσιο \"ΠεÏισσότεÏα για τον αιτών\"" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Όταν το RT δεν μποÏεί να χειÏιστεί ένα μήνυμα ηλεκτÏονικής αλληλογÏαφίας, που Ï€Ïέπει να Ï€Ïοωθείται;" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Όταν το RT στέλνει ένα μήνυμα οÏίζει τις κεφαλίδες From: και Reply-To: έτσι έτσι ώστε οι χÏήστες να μποÏοÏν να το Ï€Ïοσθέσουν στην συνομιλία πατώντας απλώς Reply στο Ï€ÏόγÏαμμα αλληλογÏαφίας τους. ΧÏησιμοποιεί διαφοÏετικές διευθÏνσεις για ΑλληλογÏαφία και Σχόλια. Αυτές μποÏεί να αλλαχθοÏν για κάθε ουÏά. Οι διευθÏνσεις αυτές θα Ï€Ïέπει να οÏιστοÏν Ï€Ïιν χÏησιμοποιηθεί το Ï€ÏόγÏαμμα rt-mailgate" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Όταν δημιουÏγείται αίτημα" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Όταν δημιουÏγείται ένα αίτημα, να ειδοποιηθοÏν ο ΥπεÏθυνος και οι AdminCC για το θέμα που αναμένει την έγκÏιση τους" #: etc/initialdata:137 msgid "When anything happens" msgstr "Όταν συμβαίνει οτιδήποτε" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "Όταν τοποθετοÏνται άÏθÏα σε αυτή την κατηγοÏία σε μηνÏματα ηλεκτÏÎ¿Î½Î¹ÎºÎ¿Ï Ï„Î±Ï‡Ï…Î´Ïομείου:" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Όταν πατήσετε το 'Ελέγξτε Συνδεσιμότητα Βάσης Δεδομένων' ενδεχομένως να υπάÏχει μια μικÏή καθυστέÏηση καθώς το RT Ï€Ïοσπαθεί να συνδεθεί με την βάση" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Όποτε κλείνει ένα αίτημα" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Όποτε Ï€Ïοωθείται ένα αίτημα" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Όποτε αποÏÏίπτεται ένα αίτημα" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Όποτε ένα αίτημα ανοίγει ξανά" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Όποτε ένα αίτημα επιλÏεται" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Όποτε Ï€Ïοωθείται ένα αίτημα ή μια συναλλαγή" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Όποτε αλλάζει ο υπεÏθυνος ενός αιτήματος" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Όποτε αλλάζει η Ï€ÏοτεÏαιότητα ενός αιτήματος" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Όποτε αλλάζει η ουÏά ενός αιτήματος" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Όποτε αλλάζει η κατάσταση ενός αιτήματος" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Όποτε Ï€Ïοωθείται μια συναλλαγή" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Όποτε δημιουÏγείται μια συνθήκη οÏισμένη από χÏήστη" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Όποτε λαμβάνονται σχόλια" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Όποτε λαμβάνεται αλληλογÏαφία" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Τοποθεσία του Ï€ÏογÏάμματος sendmail." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "Πλάτος" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "ΞεκαθάÏισμα" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "ΕÏγασία" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Τηλέφωνο εÏγασίας" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "ΧÏόνος ΕÏγασίας" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "ΕÏγάστηκε %quant(%1,ÏŽÏα,ÏŽÏες) (%quant(%2,λεπτό,λεπτά))" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "ΕÏγάστηκε %quant(%1,λεπτό,λεπτά)" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "Έτος" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Îαι" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "Εσείς (%1) δεν επιτÏέπεται να χÏησιμοποιήσετε το RT" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "ΜποÏείτε να επεξεÏγαστείτε αυτό το ταμπλό και την συνδÏομή σας σε αυτή στο RT." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Έχετε ήδη αναλάβει αυτό το αίτημα" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "Είστε έτοιμοι να κÏυπτογÏαφήσετε τα εξεÏχόμενα μηνÏματα ηλεκτÏÎ¿Î½Î¹ÎºÎ¿Ï Ï„Î±Ï‡Ï…Î´Ïομίου, αλλά υπάÏχουν Ï€Ïοβλήματα με τα δημόσια κλειδιά /πιστοποιητικά των παÏαληπτών. ΠÏέπει να διοÏθώσετε τα Ï€Ïοβλήματα με τα κλειδιά/πιστοποιητικά, απενεÏγοποιήστε την αποστολή ενός μηνÏματος στους παÏαλήπτες με Ï€Ïοβλήματα, ή απενεÏγοποιήστε την κÏυπτογÏάφηση." #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "Είστε έτοιμοι να κÏυπτογÏαφήσετε τα εξεÏχόμενα μηνÏματα ηλεκτÏονικής αλληλογÏαφίας, αλλά υπάÏχει Ï€Ïόβλημα με το κλειδί/πιστοποιητικό του παÏαλήπτη. ΠÏέπει να διοÏθώσετε αυτό το Ï€Ïόβλημα με το κλειδί/πιστοποιητικό, απενεÏγοποιήστε την αποστολή ενός μηνÏματος σε αυτόν τον παÏαλήπτη, ή απενεÏγοποιήστε την κÏυπτογÏάφηση." #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "Δε σας επιτÏέπεται να χÏησιμοποιήσετε το RT." #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "ΜποÏείτε να πάτε στο Ï€Ïώτο αδιάβαστο μήνυμα η να πάτε στο Ï€Ïώτο αδιάβαστο μήνυμα και να σημειώσετε όλα τα μηνÏματα σαν διαβασμένα." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "ΜποÏείτε επίσης να κάνετε κλικ στο παÏαπάνω λογότυπο για να λάβετε τα χÏώματα!" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "ΜποÏείτε επίσης να επεξεÏγαστείτε την ίδια Ï€ÏοκαθοÏισμένη αναζήτηση" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "ΜποÏείτε να αλλάξετε το Ï€Ïότυπο αν χÏειαστεί" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "ΜποÏείτε να εισαγάγετε το πεÏιεχόμενο αιτήματος σε οποιανδήποτε φόÏμα, κείμενο ή πεδίο wiki." #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Δεν μποÏεί να οÏιστεί ο κωδικός." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "ΜποÏείτε να αναθέσετε εκ νέου μόνο τα αιτήματα που έχετε στην κατοχή σας ή για τα οποία δεν έχουν αναληφθεί" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "ΜποÏείτε να κλέψετε μόνο ένα αίτημα που ανήκει σε κάποιον άλλον" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "ΜποÏείτε να αναλάβετε μόνο τα αιτήματα στα οποία δεν έχει οÏιστεί υπεÏθυνος" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "ΜποÏείτε να ψάξετε για οποιανδήποτε λέξη σε ολόκληÏο το ιστοÏικό αιτήματος πληκτÏολογώντας %1word." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Δεν μποÏείτε να αλλάξετε την κατάσταση από '%1' σε '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Δεν έχετε Ï€Ïονόμια ΥπεÏΧÏήστη." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "Δεν έχετε τα δικαιώματα για τη δημιουÏγία ΆÏθÏων σε καμία ΚατηγοÏία." #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "Δεν έχετε τα δικαιώματα για τη δημιουÏγία πεÏιουσιακών στοιχείων στον κατάλογο %1." #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "Δεν έχετε τα δικαιώματα για την Ï€Ïοβολή ΆÏθÏων σε καμία ΚατηγοÏία." #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "Δεν έχετε τα δικαιώματα για την Ï€Ïοβολή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… πεÏÎ¹Î¿Ï…ÏƒÎ¹Î±ÎºÎ¿Ï ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î¿Ï…." #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "Δεν έχετε τα δικαιώματα για την Ï€Ïοβολή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… καταλόγου." #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Έχετε αποσυνδεθεί από το RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "Έχετε ενεÏγοποιήσει την υποστήÏιξη κÏυπτογÏάφησης αλλά δεν έχετε οÏίσει μια διεÏθυνση σχολίου για αυτή την ουÏά." #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "Έχετε ενεÏγοποιήσει την υποστήÏιξη κÏυπτογÏάφησης αλλά δεν έχετε οÏίσει μια διεÏθυνση αλληλογÏαφίας για αυτή την ουÏά." #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Δεν έχετε εξουσιοδότηση να δημιουÏγήσετε αιτήματα στην εν λόγω ουÏά." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "ΜποÏείτε να εισαγάγετε συνδέσμους σε ΆÏθÏα με \"a:###\", όπου το ### αντιπÏοσωπεÏει το αÏιθμό του ΆÏθÏου." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "ΠÏέπει να οÏίσετε ένα κωδικό ΔιαχειÏιστή" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "Θα Ï€Ïέπει να οÏίσετε τη Δήλωση ΚαταγÏαφής σε true για να ενεÏγοποιήσετε αυτό το εÏώτημα της ιστοÏικής σελίδας." #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "ΠÏέπει να οÏίσετε μια διεÏθυνση σχολίου για αυτή την ουÏά Ï€Ïοκειμένου να διαμοÏφώσετε ένα ιδιωτικό κλειδί." #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "ΠÏέπει να οÏίσετε μια διεÏθυνση αλληλογÏαφίας για αυτή την ουÏά Ï€Ïοκειμένου να διαμοÏφώσετε ένα ιδιωτικό κλειδί." #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Θα κατευθυνθείτε απευθείας σε σελίδα εισόδου. Θα μποÏείτε να συνδεθείτε με το όνομα χÏήστη %1 και τον κωδικό Ï€Ïόσβασης που οÏίσατε Ï€Ïοηγουμένως." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Θα Ï€Ïέπει να επιλέξετε μια βάση δεδομένων στην οποία είτε εσείς είτε ο διαχειÏιστής συστημάτων σας είστε πιο καταÏτισμένοι." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "Αποσυνδεθήκατε από το RT από το σÏστημα ελέγχου ταυτότητας. Αυτό μποÏεί να είναι Ï€ÏοσωÏινό, οπότε η ανανέωση αυτής της σελίδας μποÏεί να βοηθήσει." #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Βλέπετε αυτό το μήνυμα επειδή ξεκινήσατε τον διακομιστή RT χωÏίς να υπάÏχει έτοιμη βάση δεδομένων. Μάλλον, είναι η Ï€Ïώτη φοÏά που Ï„Ïέχετε το RT. Αν πατήσετε το \"%1\" πιο κάτω, το RT θα σας καθοδηγήσει ώστε να Ïυθμίσετε σωστά τον διακομιστή RT και την βάση δεδομένων σας." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Είστε ευπÏόσδεκτοι να συνδεθείτε ξανά" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Ο κωδικός σας δεν έχει οÏιστεί." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "Το σÏστημα σας υποστηÏίζει αυτόματες εισηγήσεις χÏωματισμών για: %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Το όνομα χÏήστη ή ο κωδικός σας είναι λανθασμένος" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "ΤΚ" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Κάτω]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Πάνω]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "[κÏυφός κατάλογος]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[κανένα]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "Ï€ÏοσαÏμοσμένο πεδίο" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "ενεÏγά" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "μετά από" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "Î±Ï†Î¿Ï ÎºÎ¬Î½ÎµÏ„Îµ κλικ σε ένα σÏνδεσμο" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "μετά από το υπόλοιπο των φοÏτίων της σελίδας" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "έχει διατεθεί" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "και Ï€Ïιν από" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "και όχι" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "και στη συνέχεια" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "καθώς μετακινείστε" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "μπάÏα" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "Ï€Ïιν από" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "σώμα" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "από κάτω Ï€Ïος τα πάνω" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "Επιλέξτε αυτό το πλαίσιο για καθολική εφαÏμογή αυτής της ΚατηγοÏίας σε όλες τις ουÏές." #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "επιλέξετε αυτό το πλαίσιο για να εφαÏμοστεί αυτό το ΠÏοσαÏμοσμένο Πεδίο σε όλα τα αντικείμενα." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "επιλέξτε αυτό το πλαίσιο για την εφαÏμογή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… σεναÏίου σε όλα τα αντικείμενα." #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "επιλέξτε αυτό το πλαίσιο για να αφαιÏέσετε αυτή την ΚατηγοÏία καθολικά και να μποÏείτε να επιλέξετε συγκεκÏιμένες ΟυÏές." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "επιλέξετε αυτό το πλαίσιο για να καταÏγήσετε αυτό το Ï€ÏοσαÏμοσμένο πεδίο από κάθε αντικείμενο και να μποÏοÏν να επιλέγουν συγκεκÏιμένα αντικείμενα." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "επιλέξτε αυτό το πλαίσιο για να αφαιÏέσετε αυτόν το σενάÏιο από όλα τα αντικείμενα και να είναι σε θέση να επιλεγοÏν συγκεκÏιμένα ατικείμενα." #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "επιλέξτε για Ï€Ïοσθήκη" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "κλικ για να επιλέξετε/αποεπιλέξετε όλα τα αντικείμενα με μιας" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "κεντÏικές Ïυθμίσεις" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "δημιουÏγία αιτήματος" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "καθημεÏινά στις %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "ταμπλό" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "ταμπλό στο μενοÏ" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "διαγÏάφηκε" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "δεν ταιÏιάζει" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "λήψη" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "δειάÏκια" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "Η παÏάδοση ηλεκτÏονικών μηνυμάτων ανεστάλη" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "κενό όνομα" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "ίσο με" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "σφάλμα: αδυναμία κίνησης Ï€Ïος τα κάτω" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "σφάλμα: αδυναμία κίνησης Ï€Ïος τα δεξιά" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "σφάλμα: αδυναμία κίνησης Ï€Ïος τα πάνω" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "σφάλμα: δεν υπάÏχει κάτι για διαγÏαφή" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "σφάλμα: δεν υπάÏχει κάτι για μετακίνηση" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "σφάλμα: δεν υπάÏχει κάτι για εναλλαγή" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "κάθε" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "επιτυχής εκτέλεση Ï€Ïόσθετου" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "πλήÏες" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "μεγαλÏτεÏο από" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "ομάδα" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "ομάδα %1" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "ομάδα '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "ταυτότητα" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "άμεσα" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "στη κατηγοÏία %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "σε χÏήση" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "ανενεÏγά" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "πεÏιλαμβάνει %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "ευÏετήÏιο" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "μη έγκυÏη ημεÏομηνία λήξης: %1" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "είναι" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "δεν είναι" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "το κλειδί απενεÏγοποιήθηκε" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "το κλειδί έληξε" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "το κλειδί ανακλήθηκε" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "από αÏιστεÏά Ï€Ïος δεξιά" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "μικÏότεÏο από" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "οÏιακά" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "ταυτίζεται" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "μέγιστο βάθος" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "λεπτά" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "Ï„Ïοποποιήστε τη διαμόÏφωση του RT" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "Ï„Ïοποποιήστε το ταμπλό" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "Ï„Ïοποποίηση ή Ï€Ïόσβαση σε αναζήτηση" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "Ï„Ïοποποιήστε τις Ï€Ïοτιμήσεις σας" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "μηνιαίως" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "μηνιαίως (ημέÏα %1) στις %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "ποτέ" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "νέα" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "όχι" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "δεν έχει τεθεί διεÏθυνση ηλεκτÏÎ¿Î½Î¹ÎºÎ¿Ï Ï„Î±Ï‡Ï…Î´Ïομείου" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "κανένα" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "δεν είναι ίσο με" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "τίποτα" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "τα αντικείμενα απομακÏÏνθηκαν επιτυχώς" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "στις" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "στις" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "ένα" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "ανοικτά" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "ανοικτά/κλειστά" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "άλλα..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "εκτελέστε ενέÏγειες" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "πίτα" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "το Ï€Ïόσθετο επέστÏεψε άδεια λίστα" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "εικ" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "ουÏά %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "λαμβάνει καθημεÏινή σÏνοψη" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "λαμβάνει εβδομαδιαία σÏνοψη" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "ανακυκλωμένο" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "αποÏÏίφθηκε" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "χÏειάζεται η εκτέλεση της εντολής rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "επιλυμένα" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "από δεξιά Ï€Ïος τα αÏιστεÏά" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "αναζήτηση" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "δείτε την λίστα αντικειμένων πιο κάτω" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "πλαϊνή μπάÏα" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "Ïυθμίσεις ιστοτόπου" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "σε αναμονή" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "δήλωση" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "κλεμμένο" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "σειÏές σÏνοψης" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "σÏστημα %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "ομάδα συστήματος '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "πίνακας" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "η κεφαλίδα παÏαπομπής που παÏέχεται από το Ï€ÏόγÏαμμα πεÏιήγησης σας (%1) δεν είναι επιτÏεπτή από το διαμοÏφωμένο όνομα του κεντÏÎ¹ÎºÎ¿Ï Ï…Ï€Î¿Î»Î¿Î³Î¹ÏƒÏ„Î® (%2) του RT" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "η κεφαλίδα παÏαπομπής που παÏέχεται από το Ï€ÏόγÏαμμα πεÏιήγησης σας (%1) δεν είναι επιτÏεπτή από το διαμοÏφωμένο όνομα του κεντÏÎ¹ÎºÎ¿Ï Ï…Ï€Î¿Î»Î¿Î³Î¹ÏƒÏ„Î® (%2) του RT ή από τη λίστα των επιτÏεπόμενων κεντÏικών υπολογιστών (%3)" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "το καλών στοιχείο δεν διευκÏίνισε γιατί" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "οι Ï€Ïοεπιλεγμένες διευθÏνσεις που θα καταγÏάφονται στις κεφαλίδες From: και Reply-To: στο mail σχολίων" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "οι Ï€Ïοεπιλεγμένες διευθÏνσεις που θα καταγÏάφονται στις κεφαλίδες From: και Reply-To: στο mail αλληλογÏαφίας" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "αίτημα #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "από πάνω Ï€Ïος τα κάτω" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "απόλυτα" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "ομάδα χωÏίς πεÏιγÏαφή %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "απεÏιόÏιστα" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "ενημέÏωση ενός αιτήματος" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "ενημέÏωση μιας έγκÏισης" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "ενημέÏωση ενός άÏθÏου" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "χÏήστης" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "χÏήστης %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "όνομα χÏήστη" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "εβδομαδιαίως" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "εβδομαδιαίως (την %1) στις %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "εβδομάδες" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "που μποÏεί να %1 για λογαÏιασμό σας" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "η πόÏτα στην οποία θα ακοÏει ο διακομιστής ιστοÏ, Ï€.χ. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "με κεφαλίδες" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "ναι" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "το Ï€ÏόγÏαμμα πεÏιήγησης δε παÏείχε κεφαλίδα παÏαπομπής" rt-4.4.2/share/po/id.po0000664000175000017500000115756413131430353014531 0ustar vagrantvagrant# Indonesian translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-08 23:10+0000\n" "Last-Translator: Alex Vandiver \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 sudah ditambah" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 diganti menjadi %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 sudah dihapus" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "" #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 gunakan template %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) oleh %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Belum diubah)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Sesuaikan opsi konfig LogToSTDERR" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Argumen untuk diumpankan ke %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Status Output diperbarui ke STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Pilih apakah anda ingin menggunakan transaksi 'pertama', 'terakhir' atau 'semua'" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - menetapkan moduk kondisi yang ingin digunakan oleh anda" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - menetapkan modul pencarian yang ingin digunakan oleh anda" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 Hak Cipta 1996-%3 %4." #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 ditambahkan sebagai nilai untuk %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 telah ada dan memiliki tabel RT di tempatnya, namun tidak berisi metadata RT. Langkah 'Inisialisasi Basis data' yang dilakukan selanjutnya dapat menyisipkan metadata kedalam basis data ini. Jika anda setuju dengan hal ini, klik tombol 'Customize Basics' dibawah untuk melanjutkan mengkustomisasi RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 telah ada dan memiliki tabel RT di tempatnya, namun tidak berisi metadata RT. Langkah 'Inisialisasi Basis data' yang dilakukan selanjutnya dapat menyisipkan metadata kedalam basis data ini. Jika anda setuju dengan hal ini, klik tombol 'Customize Basics' dibawah untuk melanjutkan mengkustomisasi RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 merupakan objek lokal, namun tidak dapat ditemukan dalam basis data" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 oleh %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 sudah diganti dari %2 ke %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 ditiru" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 tidak bisa diatur ke %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 sudah dibuat" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 sudah dihapus" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 dinonaktifkan" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 tidak tersedia" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 diaktifkan" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 Tiket dengan prioritas paling tinggi yang saya miliki" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 adalah sebuah alat yang berfungsi pada tiket dari alat penjadwalan eksternal, seperti Cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 tidak lagi menjadi nilai untuk kolom kustom %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 tiket terbaru yang belum dimiliki" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objek" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 diperbarui: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 diperbarui: Tak ada yang berubah" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 telah diperbarui" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1's %2 objek" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1's %2's %3 objek" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1's pencarian disimpan" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: tidak ada lampiran yang ditentukan" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%1 menit" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "Contreng untuk menghapus" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Masukkan ID Tiket atau URL, dipisahkan dengan spasi)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Jika ditinggalkan kosong, default akan menjadi %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Tidak ada kolom kustom)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Tidak ada anggota)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Tidak ada scrip)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Tidak ada template)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "Gunakan kolom ini ketika anda memilih 'Definisikan Pengguna' untuk sebuah kondisi atau aksi" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(Tidak ada nilai)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(Tidak ada nilai-nilai)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(izin ditunda)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(diperlukan)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(tidak ada judul)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "Template kosong" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "" #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE tidak ditemukan" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACE hanya dapat dibuat dan dihapus." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "DAN" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Tentang Aku" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Kontrol Akses" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Aksi" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Aksi dijalankan." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Aksi disiapkan..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Tambah AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Tambah Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Tambah Kolom" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Tambah Kriteria" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Tambah File Lagi" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Tambah Pemohon" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Tambah Nilai" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Tambah Komentar atau balas ke tiket yang sudah dipilih" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Tambah Anggota" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Tambah Pengamat Baru" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Alamat1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Alamat2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Komentar Admin" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Korespondensi Admin" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Antrian Admin" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Konfigurasi Admin/Global" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Lanjutan" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Kumpulan" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Semua Izin terlewati" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Semua Antrian" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "" #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Dan/Atau" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Digunakan untuk" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Digunakan" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Digunakan untuk perubahan anda" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Izin" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Izin #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Izin #%1: Catatan yang tidak dicatat karena kesalahan sistem" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Izin #%1: Catatan yang dicatat" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Izin dilewati" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Izin ditolak" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Disetujui" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Melampirkan" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Melampirkan file" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "File dilampirkan" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Lampiran '%1' tidak dapat dipanggil" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Lampiran dibuat" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Nama File Lampiran" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Lampiran-lampiran" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Attribut sudah dihapus" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:261 msgid "Autoreply" msgstr "Balas Otomatis" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Balas Otomatis ke Pemohon" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Dasar-dasar" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Kosong" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Diberi huruf tebal" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Tidak dapat mengubah sistem pengguna" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Tidak dapat menambah nilai kolom kustom tanpa nama" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Tidak dapat menemukan pencarian yang disimpan untuk bekerja dengan" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Tidak dapat menghubungkan tiket tersebut dengan dirinya sendiri" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Tidak dapat menyimpan pencarian ini" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Ubah Sandi" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Periksa Semua" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Klik kotak ini untuk hapus" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Anak" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Kota" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Hapus Semua" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Ditutup" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Tiket sudah ditutup" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Komentar" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Alamat Komentar" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Komentar pada Tiket" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Komentar" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Komentar (Tidak dikirim ke pemohon)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Komentar tentang pengguna ini" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Komentar sudah ditambahkan" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Potongan Tiket Dijalankan" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Kondisi" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Kondisi sesuai dengan ..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Isi" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tipe - Isi" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "" #: etc/initialdata:393 msgid "Correspondence" msgstr "Korespondensi" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Korespondensi sudah ditambah" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Tidak dapat membuat Kolom Kustom:%1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Tidak dapat membuat grup" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Tidak dapat membuat tiket. Antrian tidak dapat diatur" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Tidak dapat membuat pengguna" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Tidak dapat memanggil KolomKustom %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Tidak dapat memanggil grup" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Tidak dapat memanggil objek untuk %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Tidak dapat mengatur informasi pengguna" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Tidak dapat menambah anggota ke grup" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Tidak dapat membuat transaksi: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Tidak dapat menemukan baris" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Tidak dapat menemukan prinsipal tersebut" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Tidak dapat menemukan nilai tersebut" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Tidak dapat memanggil Kelas %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Tidak dapat memanggil Kolom Kustom %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Tidak dapat memanggil grup %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Tidak dapat memanggil link" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Tidak dapat memanggil objek %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Tidak dapat memanggil antrian" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Tidak dapat memanggil antrian %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Tidak dapat memanggil Tiket '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Negara" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Dibuat" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Buat Tiket" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Buat Kolom Kustom" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Buat Kolom Kustom untuk antrian %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Buat grup baru" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Buat pengguna baru" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Buat antrian" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Buat template" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Buat Tiket" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Buat Tiket baru berdasarkan pada template scrip ini" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Buat Tiket" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "sudah Dibuat" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Kolom Kustom sudah dibuat %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Pencipta" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Link yang sekarang" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Anggota Sekarang" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Pengamat sekarang" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Kolom Kustom" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Kolom Kustom untuk %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Aksi kustom menyiapkan kode" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Kondisi kustom" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Kolom kustom %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Kolom kustom %1 tidak dapat digunakan untuk objek ini" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Kolom kustom %1 memiliki nilai." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Kolom kustom %1 tidak memiliki nilai." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Kolom kustom %1 tidak ditemukan" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Nilai kolom kustom %1 tidak dapat ditemukan untuk kolom kustom %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Nilai kolom kustom tidak dapat dihapus" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Nilai kolom kustom sudah dihapus" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Kolom kustom" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Tanggal" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Default: %1/%2 diganti dari %3 ke %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Hapus" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Hapus Template" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Gagal dihapus: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Hapus tiket" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Menghapuskan objek ini dapat memutuskan integrasi referensial" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Menghapuskan objek ini dapat melanggar integrasi referensial" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Ditolak" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Bergantung oleh" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Ketergantungan oleh %1 sudah ditambah" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Ketergantungan oleh %1 sudah dihapus" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Ketergantungan oleh %1 sudah dihapus" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Ketergantungan oleh %1 sudah dihapus" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Bergantung pada" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Gambarkan persoalan dibawah ini" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Deskripsi" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Tampilkan" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Tampilkan Daftar Kontrol Akses" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Tampilkan Kolom" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Lakukan apa saja dan semuanya" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Jangan refresh halaman ini." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Batas Waktu" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Ubah" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Ubah Kolom Kustom untuk %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Ubah Kolom Kustom untuk semua grup" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Ubah Kolom Kustom untuk semua pengguna" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Ubah Kolom Kustom untuk tiket di dalam semua antrian" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Ubah Link" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Ubah Query" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Ubah template sistem" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Mengubah Kolom Kustom %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Mengubah keanggotaan untuk grup ini %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Baik dasar ataupun sasaran harus ditentukan" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Alamat Email yang digunakan" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "Alamat Email" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Mengaktifkan (Klik kotak ini untuk menon-aktifkan kolom kustom)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Mengaktifkan (Klik kotak ini untuk menon-aktifkan grup ini)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Mengaktifkan (Klik kotak ini untuk menon-aktifkan antrian ini)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Mengaktifkan Antrian" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Mengaktifkan status %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Masukkan beberapa nilai" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Masukan objek atau URI untuk menghubungkan object tersebut. Pisahkan beberapa input tersebut dengan spasi." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Masukkan satu nilai" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Masukkan antrian atau URIs untuk menghubungkan antrian tersebut. Pisahkan beberapa input dengan spasi." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Masukkan tiket atau URIs untuk menghubungkan Tiket tersebut. Pisahkan beberapa input dengan spasi." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Masukkan sampai %1 nilai" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Kesalahan" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Meningkatkan Prioritas Tiket" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Diperkirakan" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Setiap Orang" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Contoh:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Info Tambahan" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Gagal untuk menemukan pengguna pseudogroup yang memiliki 'Hak-hak Istimewa'." #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Gagal untuk menemukan pengguna pseudogroup yang tidak memiliki 'Hak-Hak Istimewa.'" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Gagal untuk memanggil modul %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Gagal memanggil objek untuk %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Nama File" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Isilah di dalam beberapa area teks" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Isilah di dalam beberapa area wikiteks" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Isilah di dalam satu area teks" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Isilah di dalam satu area wikiteks" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Isilah sampai %1 area teks" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Isilah sampai %1 area wikiteks" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Prioritas Akhir" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "Prioritas Akhir" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Cari grup yang" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Cari orang yang" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Cari tiket" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Pertama" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Diubah dengan paksa" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Ditemukan % quant(%1,tiket)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Objek ditemukan" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Berikan ke %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Konfigurasi kolom kustom global" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Ambil" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Ambil!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Ambil tiket" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Grup" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Hak Grup" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Grup sudah memiliki anggota: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Grup tidak dapat dibuat: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Grup sudah dibuat" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Grup tidak memiliki anggota terseperti ini" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Grup tidak ditemukan" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grup" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Grup tidak bisa menjadi anggota dari mereka" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Grup sesuai dengan kriteria pencarian" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Pengguna ini milik grup" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Halo!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historis" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Historis grup %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Historis pengguna %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Saya memiliki %quant (%1,concrete mixer)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identitas" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Jika izin ditolak, tolak izin yang asli dan hapus izin yang masih ditunda" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Jika alat ini adalah setgid, hostile local user dapat menggunakan alat ini untuk mendapatkan akses administrasi ke RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Jika anda memperbaharui apapun diatas, pastikanlah untuk" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Nilai Ilegal untuk %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Kolom yang tetap" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Termasuk menon-aktifkan grup di dalam daftar." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Termasuk menon-aktifkan antrian di dalam daftar." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Termasuk menon-aktifkan pengguna di dalam pencarian." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Prioritas Awal" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "Prioritas Awal" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Kesalahan Input" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Kesalahan Internal: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Data tidak valid" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Antrian tidak valid" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Hak tidak valid" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Nilai tidak valid untuk %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Nilai tidak valid untuk kolom kustom" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Hal ini sangat penting bahwa pengguna yang tidak memiliki hak-hak istimewa tidak dapat diizinkan untuk menjalankan program ini." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Sangat disarankan bahwa anda membuat pengguna unix yang tidak memiliki hak-hak istimewa dengan keanggotaan grup yang benar dan akses RT untuk menjalankan alat ini." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Hal ini memerlukan beberapa penjelasan:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Diberi huruf miring" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Bhs" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Bahasa" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Besar" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Akhir" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Kontak Terakhir" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Kontak Terakhir" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Pembaharuan Terakhir" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "Pembaharuan Terakhir Oleh" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Kirim" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Biarkan pengguna ini mengakses RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Biarlah pengguna ini diberi hak-hak" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Link sudah ada" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Link tidak ditemukan" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Link tiket #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Link-link" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Memanggil" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Memanggil pencarian yang disimpan:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Memanggil modul perl" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Lokasi" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Masuk sebagai %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Mencari tipe yang tidak sesuai (mismatch)" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Buat Pemilik" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Buat Status" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Buat Tanggal Batas Waktu" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Buat Tanggal Mulai" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Buat Tanggal Mulai" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Buat Tanggal Pemberitahuan" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Buat prioritas" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Buat antrian" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Buat subjek" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Mengatur kolom kustom dan nilai kolom kustom" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Mengatur grup dan keanggotaan grup" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Mengatur propertis dan konfigurasi yang akan digunakan di setiap antrian" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Mengatur antrian dan propertis antrian tertentu" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Mengatur pengguna dan sandi" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Anggota %1 sudah ditambah" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Anggota %1 sudah dihapus" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Anggota sudah ditambah: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Anggota sudah dihapus" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Anggota tidak dihapus" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Anggota-anggota" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Keanggotaan di dalam %1 sudah ditambah" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Keanggotaan di dalam %1 sudah dihapus" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Keanggotaan" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Keanggotaan dari pengguna %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Penggabungan Berhasil" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Penggabungan gagal. Tidak dapat mengatur EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Bergabung ke dalam" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Bergabung ke dalam %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Pesan" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Pesan tidak dapat dicatat" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Pesan sudah dicatat" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Kunci utama tidak ditemukan?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Hp" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Ubah Anggota" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Mengubah Kolom Kustom untuk antrian %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Mengubah objek-objek yang berhubungan untuk %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Mengubah tanggal untuk tiket #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Mengubah kolom kustom global" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Mengubah hak grup global" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Mengubah hak pengguna global" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Mengubah grup metadata atau menghapus grup" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Mengubah hak grup untuk kolom kustom %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Mengubah hak grup untuk grup %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Mengubah hak grup untuk antrian %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Mengubah pemilik account RT" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Mengubah orang-orang yang berhubungan dengan tiket #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Mengubah scrip untuk antrian %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Mengubah scrip yang dapat digunakan di seluruh antrian" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Mengubah template %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Mengubah template yang dapat digunakan di seluruh antrian" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Mengubah grup %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Mengubah pengguna %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Mengubah tiket # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Mengubah tiket #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Mengubah tiket-tiket" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Mengubah hak pengguna untuk kolom kustom %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Mengubah hak pengguna untuk grup %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Mengubah hak pengguna untuk antrian %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Beberapa" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Harus menentukan 'Nama' attribut" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "%1 tiketku" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Izinku" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Pencarian yang kusimpan" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Nama" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Nama yang digunakan" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Tidak pernah" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Baru" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Link Baru" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Izin Baru yang Ditunda" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Sandi Baru" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Kirim Pemberitahuan Sandi Baru" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Tiket Baru" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Tidak ada Tiket baru" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Pengamat Baru" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Berikutnya" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Nama Panggilan" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Nama Panggilan" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Tidak ada Kelas yang didefinisikan" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Tidak ada Kolom Kustom" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Tidak ada Kolom Kustom yang didefinisikan" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Tidak ada Grup yang didefinisikan" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Tidak ada Query" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Tidak ada Antrian yang didefinisikan" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Tidak ada Template" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Tidak ada aksi" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Tidak ada kolom yang ditentukan" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Tidak ada komentar yang dimasukkan mengenai pengguna ini" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Tidak ada deskripsi untuk %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Tidak ada grup yang ditentukan" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Grup yang sesuai dengan kriteria pencarian tidak ditemukan." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Tidak ada pesan yang dilampirkan" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Tidak ada pengaturan Sandi" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Tidak ada izin untuk membuat antrian" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Tidak ada izin untuk membuat tiket ini di dalam antrian '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Tidak ada izin untuk menampilkan tiket tersebut" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Tidak ada izin untuk menampilkan tiket yang sudah diperbaharui" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Tidak ada prinsipal yang dipilih." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Antrian yang sesuai dengan kriteria pencarian tidak ditemukan." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Tidak ada hak-hak yang ditemukan" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Tidak ada pencarian untuk dijalankan di." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Tidak ada subjek" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Tidak ada tipe transaksi yang ditentukan" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Pengguna yang sesuai dengan kriteria pencarian tidak ditemukan." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Tidak seorangpun" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Kolom kosong?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Belum log in" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Belum diatur" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Catatan" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Pemberitahuan tidak dapat dikirimkan" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Beritahu AdminCcs" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Beritahu AdminCcs dengan komentar" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Beritahu Ccs" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Beritahu Ccs dengan komentar" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Beritahu Penerima Lain" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Beritahu Penerima Lain dengan komentar" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Beritahu Pemilik" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Beritahu Pemilik dengan komentar" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Beritahu pemilik bahwa tiketnya ditolak" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Beritahu Pemilik dan AdminCcs mengenai izin item baru yang ditunda" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Beritahu Pemohon" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Beritahu Pemohon dan Ccs" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Beritahu Pemohon dan Ccs dengan komentar" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ATAU" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objek tidak dapat dibuat" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Objek tidak dapat dihapus" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Object sudah dibuat" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objek sudah dihapus" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Tipe Objek tidak sesuai (mismatch)" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "" #: etc/initialdata:170 msgid "On Comment" msgstr "Pada Komentar" #: etc/initialdata:142 msgid "On Correspond" msgstr "Pada Hubungan" #: etc/initialdata:131 msgid "On Create" msgstr "Pada Pembuatan" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Pada Perubahan Pemilik" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Pada Perubahan Prioritas" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Pada Perubahan Antrian" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "" #: etc/initialdata:205 msgid "On Resolve" msgstr "Pada Penyelesaian" #: etc/initialdata:176 msgid "On Status Change" msgstr "Pada Perubahan Status" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Pada Transaksi" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Hanya menampilkan izin untuk permintaan yang dibuat sesudah %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Hanya menampilkan izin untuk permintaan yang dibuat sebelum %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "" #: etc/initialdata:108 msgid "Open Tickets" msgstr "" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Buka tiket" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Buka tiket pada korespondensi" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Diurutkan sesuai" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organisasi" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Tiket Awal: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Email yang keluar mengenai komentar yang dicatat" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Email keluar yang dicatat" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Memiliki tiket-tiket" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Pemilik" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Pemilik secara paksa digantikan dari %1 ke %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Induk" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Sandi" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Sandi sudah diubah" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Minimal sandi memerlukan paling sedikit %1 karakter" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Sandi: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Sandi tidak sesuai." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Orang-Orang" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Menampilkan aksi pengguna yang belum didefinisikan" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Konfigurasi Perl" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Izin ditolak" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Nomor Telepon" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Pilihan" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "" #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Siapkan Potongan Tiket" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Sebelumnya" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Prinsipal %1 tidak ditemukan." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioritas" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Pribadi:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Hak-hak Istimewa" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Status Hak-hak Istimewa: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Pengguna Hak-hak Istimewa" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseudogroup digunakan untuk internal" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Pembuat Query" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Antrian" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Antrian %1 tidak ditemukan" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Nama Antrian" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Antrian sudah ada" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Antrian tidak dapat dibuat" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Antrian tidak dapat dipanggil." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Antrian sudah dibuat" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Antrian tidak dapat ditemukan" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Antrian-antrian" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Pencarian Cepat" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Pembuatan Tiket Cepat" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Administrasi RT" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "Kesalahan RT" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "Sekilas RT" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT untuk %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Nama Asli" #: lib/RT/User.pm:95 msgid "RealName" msgstr "Nama Asli" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Referensi oleh %1 sudah ditambah" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Referensi oleh %1 sudah dihapus" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Referensi ke %1 sudah ditambah" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Referensi ke %1 sudah dihapus" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Diserahkan oleh" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Diserahkan ke" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Refresh halaman ini setiap %1 menit." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Hapus AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Hapus Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Hapus Pemohon" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Balas" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Balas ke Alamat" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Balas ke Pemohon" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Balas ke tiket" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Pemohon" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Pemohon" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Parameter yang diperlukan '%1' tidak didefinisikan" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Ulangi" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Tempat Tinggal" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Penyelesaian" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Penyelesaian tiket #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Sudah Diselesaikan" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Hasil" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Ketik Ulang Sandi" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Kembali pada" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Memanggil Hak-hak" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Hak-hak tidak dapat dihilangkan" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Hak-hak tidak dapat dipanggil." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Hak-hak tidak dapat diberikan untuk %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Aturan" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Baris per halaman" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Simpan" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Simpan Perubahan" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Simpan Pilihan" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Simpan pencarian" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Scrip sudah dibuat" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Scrip" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Pencarian" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Pencarian untuk izin" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "Keamanan:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Pilih" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Pilih Kolom Kustom" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Pilih grup" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Pilih antrian" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Pilih antrian untuk tiket baru anda" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Pilih Pengguna" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Pilih kolom kustom untuk seluruh grup pengguna" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Pilih kolom kustom untuk seluruh pengguna" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Pilih kolom kustom untuk tiket di seluruh antrian" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Pilih kolom kustom untuk transaksi pada tiket di dalam seluruh antrian" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Pilih beberapa nilai" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Pilih satu nilai" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Pilih sampai %1 nilai" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Kolom Kustom yang dipilih" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Objek yang dipilih" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Kirim pesan ke pemohon dan Ccs" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Kirim pesan ke pemohon dan Ccs dengan komentar" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Kirim pesan ke pemohon" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Kirim pesan ke Ccs and Bccs yang terdaftar dengan jelas" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Kirim pesan ke Ccs" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Kirim pesan ke Ccs dengan komentar" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Kirim pesan ke Ccs administrasi" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Kirim pesan ke Ccs administrasi dengan komentar" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Kirim pesan ke pemilik" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Tampilkan" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Tampilkan Kolom" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Tampilkan Hasil" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Tamplikan permintaan yang disetujui" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Tampilkan permintaan yang ditolak" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Tampilkan permintaan yang ditunda" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Tampilkan permintaan izin lain yang ditunggu" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Daftar sebagai pemohon tiket atau tiket atau antrian Cc" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Daftar sebagai tiket atau antrian AdminCc" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Tanda Tangan" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Tunggal" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Ukuran" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Lewati Menu" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Kecil" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sortir" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Tingkat" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Sudah dimulai" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Mulai" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Negara" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "Status Diubah" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Status diubah dari %1 ke %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Curi" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Curi tiket" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Dicuri dari %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Gaya" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Subjek" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Subjek diganti menjadi %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "Sistem" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Konfigurasi Sistem" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Kesalahan Sistem" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Kesalahan sistem: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Peralatan Sistem" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Kesalahan sistem. Hak-hak tidak dapat diberikan." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "GrupAturanSistem yang digunakan untuk internal" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Ambil" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Ambil tiket" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Diambil" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Template-template" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Teks" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Ini adalah nilai yang sekarang" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Ini bukan nilai untuk kolom kustom ini" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Tiket ini mempunyai ketergantungan yang belum dapat diselesaikan" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Pengguna ini sudah memiliki tiket tersebut" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Pengguna ini tidak ada" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Pengguna ini sudah memiliki hak-hak istimewa" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Pengguna ini sudah tidak memiliki hak-hak istimewa" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Pengguna tersebut sekarang memiliki hak-hak istimewa" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Pengguna tersebut sekarang tidak memiliki hak-hak istimewa" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Pengguna tersebut mungkin tidak memiliki tiket di dalam antrian tersebut" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Ini bukan menurut angka ID" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Dasar-dasar" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "CC tiket" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "CC tiket administrasi" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Nilai baru sudah diatur." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Pemilik tiket" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Pemohon tiket" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Fitur ini hanya tersedia untuk sistem administrator" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Alat ini mengijinkan pengguna untuk menjalankan modul perl yang berubah-ubah dari dalam RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Transaksi ini tampaknya tidak memiliki isi" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Tiket #%1 Perbaharui Jumbo: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Tiket #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Tiket %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Tiket %1 sudah dibuat di dalam antrian '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Tiket %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Historis Tiket # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Tiket sudah diselesaikan" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Transaksi Tiket" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Isi Tiket" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Tipe isi Tiket" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Tiket tidak dapat dibuat karena ada kesalahan internal" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Metadata Tiket" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Status tiket sudah diubah" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "Pencarian modul Tiket SQL" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Tiket-tiket" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Tiket %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Tiket %1 oleh %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Tiket yang bergantung dengan izin ini:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Perkiraan Waktu" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Sisa Waktu" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Waktu Kerja" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Waktu untuk ditampilkan" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "Waktu Kerja" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Judul" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Untuk menanyakan tentang bantuan, latihan, perkembangan kustom atau izin, silakan hubungi %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Memberitahukan" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "alat-alat" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "Transaksi" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transaksi %1 sudah dibersihkan" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transaksi sudah dibuat" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Kolom Kustom Transaksi" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaksi->Tidak dapat dibuat, karena anda tidak menentukan tipe objek dan id" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Transaksi yang tetap" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tipe" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Login Unix" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Content Encoding tidak dikenali%1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Tidak terbatas" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Pencarian tidak dikenal" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Tidak memiliki hak-hak istimewa" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Kolom Kustom tidak dipilih" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Objek tidak dipilih" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Belum diambil" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Perbaharui" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Perbaharui Tiket" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Perbaharui Tipe" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Perbaharui beberapa tiket" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Perbaharui tidak dicatat." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Perbaharui tiket" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Perbaharui tiket #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Perbaharui tiket #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Memperbarui tipe baik korespondensi ataupun penjelasan." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Sudah diperbaharui" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Upload beberapa file" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Upload beberapa gambar" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Upload satu file" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Upload satu gambar" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Upload sampai %1 file" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Upload sampai %1 gambar" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Gunakan alat administrative RT yang lain" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Pengguna didefinisikan" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Hak Pengguna" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Pengguna akan ditanya mengenai tipe pembaharuan yang tidak dikenal untuk kolom kustom %1 untuk %2 objek #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Pengguna tidak dapat dibuat: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Pengguna sudah dibuat" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Pengguna sudah dipanggil" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Definisi Grup Pengguna" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Nama Pengguna" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Pengguna" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Pengguna sesuai dengan kriteria pencarian" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Query yang valid" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Nilai-nilai" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Pengamat" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Kalau tiket sudah dibuat" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Kalau tiket persetujuan sudah dibuat, beritahukan pemilik dan AdminCc dari item yang sedang ditunggu persetujuannya" #: etc/initialdata:137 msgid "When anything happens" msgstr "Kalau sesuatu terjadi" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Setiap saat tiket dapat diselesaikan" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Setiap saat pemilik tiket dapat diubah" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Setiap saat prioritas tiket dapat diubah" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Setiap saat antrian tiket dapat diubah" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Setiap saat status tiket dapat diubah" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Setiap saat kondisi yang didefinisikan oleh pengguna terjadi" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Setiap saat komentar dapat masuk" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Setiap saat korespondensi dapat masuk" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Bekerja" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Sedang Bekerja" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Anda sudah memiliki tiket ini" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Anda hanya bisa menugaskan kembali tiket yang anda miliki atau yang belum anda miliki" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Anda sudah log out dari RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Anda tidak memiliki izin untuk membuat tiket di dalam antrian tersebut." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Anda dapat login kembali" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Nama pengguna dan sandi anda tidak sama" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "Setelah" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "Sebelum" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "sudah dihapus" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "sama dengan" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "kesalahan: tidak dapat dipindahkan ke bawah" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "kesalahan: tidak dapat dipindahkan ke kiri" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "kesalahan: tidak dapat dipindahkan ke atas" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "kesalahan: tidak ada apapun yang dapat dihapus" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "kesalahan: tidak ada apapun yang dapat dipindahkan" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "kesalahan: tidak ada apapun yang dapat dihubungkan" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "lebih dari" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "grup '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "adalah" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "tidak" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "kurang dari" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "sama" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "menit" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "baru" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "tidak satupun" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "tidak sama dengan" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "Pada" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "buka" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "" #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "antrian %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "sudah ditolak" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "sudah diselesaikan" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "alasan" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "sistem %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "grup sistem '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "Pemanggilan komponent tidak menetapkan mengapa" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "tiket #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "grup yang belum dijelaskan %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "pengguna %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "minggu" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/ru.po0000664000175000017500000150100113131430353014536 0ustar vagrantvagrant# Russian translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2017-05-18 09:47+0000\n" "Last-Translator: Max Kosmach \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "Ðомер" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "â„–%1: %2" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "Ðвтор — %1" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "%1 â„–%2 %3" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "%1 â„–%2:" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "%1 â„–%2: %3" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%1 %3 %2 %4" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%1 %3 %2 %6 %4:%5" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3 %2 %7 %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 добавлено" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 изменено на %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 удалено" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 удалено." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 не ÑущеÑтвует" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 отключено" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 Ñохранены." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 обновлено." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½Ð¾Ð¼ %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) от %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Без изменений)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (из панели %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - ПодÑтроить опцию конфига LogToSTDERR" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Ðргумент Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ´Ð°Ñ‡Ð¸ в %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Выводить Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ ÑтатуÑа на STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Выберите, какую транзакцию Ð’Ñ‹ хотите увидеть - первую, поÑледнюю, или вÑе." #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Укажите Ð¸Ð¼Ñ Ð¸Ð»Ð¸ идентификатор шаблона, который вы хотите иÑпользовать" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Укажите через запÑтую типы транзакций, которые вы хотите иÑпользовать" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Выберите модуль уÑловий, который хотите иÑпользовать" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Укажите модуль поиÑка, который вы хотите иÑпользовать" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 Ð’Ñе права защищены 1996-%3 %4" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "%1 ВерÑиÑ" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 добавлено как значение Ð´Ð»Ñ %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "%1 добавлен в ÑпиÑок получателей информационной панели" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "%1 назад" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 уже ÑущеÑтвует и имеет таблицы от RT, но не Ñодержит метаданных. ЗапуÑк Ñтапа 'Ð˜Ð½Ð¸Ñ†Ð¸Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð‘Ð”' позже Ñможет вÑтавить метаданные в ÑущеÑтвующую БД. ЕÑли Ñто приемлемо, кликните 'ÐаÑтроить ОÑновные Параметры' ниже Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð´Ð¾Ð»Ð¶ÐµÐ½Ð¸Ñ Ð½Ð°Ñтройки RT" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 уже ÑущеÑтвует, но не имеет таблицы от RT или метаданных. ЗапуÑк Ñтапа 'Ð˜Ð½Ð¸Ñ†Ð¸Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð‘Ð”' позже Ñможет вÑтавить метаданные в ÑущеÑтвующую БД. ЕÑли Ñто приемлемо, кликните 'ÐаÑтроить ОÑновные Параметры' ниже Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð´Ð¾Ð»Ð¶ÐµÐ½Ð¸Ñ Ð½Ð°Ñтройки RT" #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "%1 уже имеет право '%2' Ð´Ð»Ñ Ð¾Ð±ÑŠÐµÐºÑ‚Ð° %3 %4" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 ÑвлÑетÑÑ Ð»Ð¾ÐºÐ°Ð»ÑŒÐ½Ñ‹Ð¼ объектом, но не найден в базе данных" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 похоже полноÑтью инициализирована. Мы не будем Ñоздавать таблицы или вÑтавлÑть метаданные, но вы можете продолжить наÑтройку RT кликнув 'ÐаÑтроить ОÑновные Параметры' ниже" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 пользователем %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 не может быть группой" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 изменено Ñ '%2' на '%3'" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 изменено Ñ '%2' на '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "ÐšÐ¾Ð¿Ð¸Ñ %1" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "оÑновной конфиг '%1'" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 невозможно уÑтановить в %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "Объект \"%1\" Ñоздан" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "Объект \"%1\" удалён" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "Объект \"%1\" отключен" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 не ÑущеÑтвует." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "Объект \"%1\" включен" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 ваших заÑвок Ñ Ð½Ð°Ð¸Ð²Ñ‹Ñшими приоритетами" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 утилита Ð´Ð»Ñ Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ð´ÐµÐ¹Ñтвий Ñ Ð·Ð°Ñвками из внешнего планировщика, такого как cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 -- утилита, запуÑÐºÐ°ÐµÐ¼Ð°Ñ Ð¸Ð· cron, ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ Ð´Ð¾ÑтавлÑет вÑе отложенные почтовые ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ Ð¾Ñ‚Ð´ÐµÐ»ÑŒÐ½Ñ‹Ð¼ пользователÑм в виде \"дайджеÑта\"." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "%1 уже ÑвлÑетÑÑ %2" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 уже уÑтановлен в %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 - адреÑ, на который приходÑÑ‚ ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð´Ð»Ñ RT. Добавление его как '%2' приведёт к Ñозданию петли." #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "%1 более не ÑвлÑетÑÑ %2 Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð¹ очереди" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "%1 более не ÑвлÑетÑÑ %2 Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð¹ заÑвки" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 больше не ÑвлÑетÑÑ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸ÐµÐ¼ Ð´Ð»Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ð³Ð¾ Ð¿Ð¾Ð»Ñ %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 не %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 не ÑвлÑетÑÑ Ð²Ð°Ð»Ð¸Ð´Ð½Ñ‹Ð¼ жизненным циклом" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 проблем" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 ключ '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 поÑледних изменённых Ñтатей" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "%1 поÑледних измененных заÑвок" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 новых Ñтатей" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 поÑледних неназначенных заÑвок" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 объектов" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "%1 удалён из ÑпиÑка получателей информационной панели" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 уÑтановлен в %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "локальный конфиг '%1'" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 изменение: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 изменение: Ðичего не изменено" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 изменено" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1 %2 объектов" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1 %2 %3 объектов" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "Текущий пароль Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Информационные панели %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "Ключи ÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ %1" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "Сохранённые запроÑÑ‹ %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: без вложений" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "%1б" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "%1к" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "%1М" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "%1МиБ" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Создать заÑвку в очереди%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "%1н" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "%1г" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "%1д" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "%1ч" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "%1м" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1 Ñ" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,ÑтатьÑ,Ñтатьи,Ñтатей)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,день,днÑ,дней)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,чаÑ,чаÑа,чаÑов)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,чаÑ,чаÑа,чаÑов) (%quant(%2,минута,минуты,минут))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,минута,минуты,минут)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,меÑÑц,меÑÑца,меÑÑцев)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,Ñекунда,Ñекунды,Ñекунд)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,неделÑ,недели,недель)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,год,года,лет)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' не ÑвлÑетÑÑ ÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð½Ñ‹Ð¼ именем." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "%1 не ÑвлÑетÑÑ Ð²Ð°Ð»Ð¸Ð´Ð½Ñ‹Ð¼ клаÑÑом" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' не ÑвлÑетÑÑ ÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð½Ñ‹Ð¼ идентификатором клаÑÑа" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Отметьте Ð´Ð»Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Отметьте удалÑемое)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Отметьте удалÑемое)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "(Отметьте Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð²Ñех значений)" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Введите идентификаторы или ÑÑылки на заÑвки, разделенные пробелами)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(ЕÑли не заполнено, то по умолчанию %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(Ðе завершено)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(некорректные данные)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Ðет дополнительных полей)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Ðет пользователей)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Ðет Ñкриплетов)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Ðет шаблонов)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Отправить копию ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¾Ð± Ñтом изменении на Ñти адреÑа [разделÑÑŽÑ‚ÑÑ Ð·Ð°Ð¿Ñтой]. Эти получатели в дальнейшем будут получать копии Ñообщений об изменениÑÑ….)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Отправить копию ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¾Ð± Ñтом изменении на Ñти адреÑа [разделÑÑŽÑ‚ÑÑ Ð·Ð°Ð¿Ñтой]. Эти получатели в дальнейшем будут получать копии Ñообщений об изменениÑÑ….)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "(Ðеподдерживаемый тип дополнительного полÑ)" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(ИÑпользуйте Ñти Ð¿Ð¾Ð»Ñ Ð¿Ñ€Ð¸ выборе 'Задано пользователем' Ð´Ð»Ñ ÑƒÑловий или дейÑтвий)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(любое)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(нет резюме)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(без имени)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(нет открытого ключа!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(нет значениÑ)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(нет значений)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(в ожидании %quant(%1,другой заÑвки,других заÑвок,других заÑвок))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(в ожидании подтверждениÑ)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "(в ожидании заÑвки #%1)" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(требуетÑÑ)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(доверие: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(без названиÑ)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(недоверенный!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "--" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id уÑтаревший аргумент и его Ð½ÐµÐ»ÑŒÐ·Ñ Ð¸Ñпользовать ÑовмеÑтно Ñ --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "значение аргумента --transaction может быть только 'first', 'last' или 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 Ñекунд" #: lib/RT/Date.pm:424 msgid "0s" msgstr "0Ñ" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Шаблон Ñ Ñ‚Ð°ÐºÐ¸Ð¼ именем уже ÑущеÑтвует" #: etc/initialdata:258 msgid "A blank template" msgstr "ПуÑтой шаблон" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Пароль не был уÑтановлен, поÑтому пользователь не Ñможет зайти в ÑиÑтему." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE не найден" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACEÑ‹ можно только Ñоздавать и удалÑть" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "ACL обновлен %1" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "И" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "ПерÑональные данные" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Права доÑтупа" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "ДейÑтвие" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "ДейÑтвие '%1' не найдено" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "ДейÑтвие выполнено" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "ДейÑтвие ÑвлÑетÑÑ Ð¾Ð±Ñзательным аргументом" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "ДейÑтвие подготовлено..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "ДейÑтвиÑ" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Ðктивные заÑвки" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "Ðктивные заÑвки" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Ðктивные заÑвки Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Добавить %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Добавить админиÑтративную копию" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Добавить закладку" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Добавить копию" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Добавить колонки" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Добавить критерий" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Добавить еще файлы" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "Добавить получателей" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Добавить автора заÑвки" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Добавить значение" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "Добавить группу" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "Добавить пользователÑ" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "Добавить реÑÑƒÑ€Ñ Ðº данной заÑвке" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Добавить комментарии или ответы на выбранные заÑвки" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Добавить группу" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Добавьте Ñюда" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Добавить пользователей" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Добавить наблюдателей" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Добавить права Ð´Ð»Ñ %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Добавить Ñти уÑловиÑ" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Добавить Ñти уÑÐ»Ð¾Ð²Ð¸Ñ Ð¸ начать поиÑк" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Добавить пользователÑ" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Добавить значениÑ" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "ДобавлÑть, изменÑть или удалÑть Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ð³Ð¾ полÑ" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Добавлено" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "%1 добавлен как %2 Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð¹ очереди" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "%1 добавлен как %2 Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð¹ заÑвки" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "Добавлено переопределение темы: %1" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "Добавлено дополнительное поле %1 к %2" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "ÐдреÑ" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "ÐÐ´Ñ€ÐµÑ 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "ÐдреÑ1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "ÐдреÑ2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð² работе изменено на %quant(%1,минуту,минуты,минут)" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "ÐдминиÑтратор" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "Управление каталогами" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "ÐдминиÑÑ‚Ñ€Ð°Ñ‚Ð¸Ð²Ð½Ð°Ñ ÐšÐ¾Ð¿Ð¸Ñ" #: etc/initialdata:410 msgid "Admin Comment" msgstr "ÐдминиÑтративный Комментарий" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "ÐдминиÑтративный комментарий в HTML" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "ÐдминиÑÑ‚Ñ€Ð°Ñ‚Ð¸Ð²Ð½Ð°Ñ ÐšÐ¾Ñ€Ñ€ÐµÑпонденциÑ" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "ÐдминиÑÑ‚Ñ€Ð°Ñ‚Ð¸Ð²Ð½Ð°Ñ ÐºÐ¾Ñ€Ñ€ÐµÑÐ¿Ð¾Ð½Ð´ÐµÐ½Ñ†Ð¸Ñ Ð² HTML" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Управление очередÑми" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Общие наÑтройки" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "ÐдминиÑтративнаÑКопиÑ" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Пароль админиÑтратора" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Дополнительно" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "РаÑширенный поиÑк" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "ПоÑле входа в ÑиÑтему вы будете перенаправлены на первоначальную Ñтраницу" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Ðгрегатор" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Ð’Ñе Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ñ‹" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Ð’Ñе Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ñ‹ в HTML" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Ð’Ñе Ñтатьи из Ñтого клаÑÑа можно будет выбрать из выпадающего ÑпиÑка на Ñтранице ответа на заÑвку" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "Ð’Ñе каталоги" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Ð’Ñе клаÑÑÑ‹" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Ð’Ñе пользовательÑкие полÑ" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Ð’Ñе информационные панели" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Ð’Ñе очереди" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Ð’Ñе ЗаÑвки" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "Ð’Ñе каталоги, удовлетворÑющие поиÑковому запроÑу" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Ð’Ñе iCal-каналы включают в ÑÐµÐ±Ñ Ñекретный токен, позволÑющий Ð²Ð°Ñ Ð°Ð²Ñ‚Ð¾Ñ€Ð¸Ð·Ð¾Ð²Ð°Ñ‚ÑŒ. ЕÑли URL iCal-канала был раÑкрыт, Ð’Ñ‹ можете получить новый токен, аннулирующий вÑе iCal-каналы ниже." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "ЗапроÑÑ‹ по критериÑм поиÑка" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "Ð’Ñе получатели" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Ð’Ñе заÑвки" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Ð’Ñе разделы" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Разрешить Ñоздание Ñохраненных запроÑов" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Разрешить загрузку Ñохраненных запроÑов" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Разрешить иÑпользование Perl в шаблонах, Ñкриплетах и Ñ‚.д." #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Уже зашифровано" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "Ð’Ñегда отправлÑть Ñообщение запроÑившему, незавиÑимо от Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÐµÐ»Ñ ÑообщениÑ" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "%1РуководÑтво по работе Ñо ÑтатьÑми%3 доÑтупно в %2онлайн-документации Best Practical%3." #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "Укажите ÑкземплÑÑ€ объекта" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Произошла ошибка" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "При отправке времени возникла ошибка. ПожалуйÑта отправьте Ð²Ñ€ÐµÐ¼Ñ Ð²Ñ€ÑƒÑ‡Ð½ÑƒÑŽ." #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "И/Или" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Ежегодно" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Любое поле" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Любое Ñлово, не раÑпознанное RT, ищетÑÑ Ð² темах заÑвок." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "ПрименÑетÑÑ Ðº" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "ПрименÑетÑÑ ÐºÐ¾ вÑем объектам" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Применить" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "ПрименÑетÑÑ Ð³Ð»Ð¾Ð±Ð°Ð»ÑŒÐ½Ð¾" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Применить выбранные Ñкриплеты" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Применить ваши изменениÑ" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "ПодтверждениÑ" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Подтверждение #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Подтверждение #%1: ÐŸÑ€Ð¸Ð¼ÐµÑ‡Ð°Ð½Ð¸Ñ Ð½Ðµ Ñохранены из-за ÑиÑтемной ошибки" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Подтверждение #%1: ÐŸÑ€Ð¸Ð¼ÐµÑ‡Ð°Ð½Ð¸Ñ Ð·Ð°Ð¿Ð¸Ñаны" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Подтверждение получено" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "Подтверждение получено в HTML" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Подтверждение готово Ð´Ð»Ñ Ð²Ð»Ð°Ð´ÐµÐ»ÑŒÑ†Ð°" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "Подтверждение готово Ð´Ð»Ñ Ð²Ð»Ð°Ð´ÐµÐ»ÑŒÑ†Ð° в HTML" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Подтверждение отклонено" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "Подтверждение отклонено в HTML" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Подтвердить" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Ðпр" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "Ð¡Ñ‚Ð°Ñ‚ÑŒÑ #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "Ð¡Ñ‚Ð°Ñ‚ÑŒÑ #%1 не найдена" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Ð¡Ñ‚Ð°Ñ‚ÑŒÑ #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Ð¡Ñ‚Ð°Ñ‚ÑŒÑ #%1 Ñоздана" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Управление ÑтатьÑми" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Ð¡Ñ‚Ð°Ñ‚ÑŒÑ Ð½Ðµ найдена" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Статьи" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Статьи в разделе %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Статьи, удовлетворÑющие уÑловию %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Статьи без раздела" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "По возраÑтанию" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "РеÑÑƒÑ€Ñ #" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "РеÑÑƒÑ€Ñ #%1" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "РеÑÑƒÑ€Ñ #%1 Ñоздан: %2" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "РеÑÑƒÑ€Ñ #%1: %2" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "Управление реÑурÑами" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "Ошибка транзакции ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ñ€ÐµÑурÑа: %1" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "Дополнительные Ð¿Ð¾Ð»Ñ Ñ€ÐµÑурÑа" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "Ошибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ñ€ÐµÑурÑа: %1" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "РеÑурÑÑ‹" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "РеÑурÑÑ‹ не могут быть удалены" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Ðазначать или удалÑть дополнительные Ð¿Ð¾Ð»Ñ Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "Ðазначенные реÑурÑÑ‹" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Вложение" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Вложить файл" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Вложенный файл" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Вложение" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Вложение '%1' не может быть загружено" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Вложение Ñоздано" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Ð˜Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð° Ð´Ð»Ñ Ð²Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "ВложениÑ" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Шифрование вложений не иÑпользуетÑÑ" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Ðтрибут удалён" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "Ðтрибуты обновлены" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Ðвг" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "ÐвтоматичеÑÐºÐ°Ñ Ð¿Ð¾Ð´Ð¿Ð¸ÑÑŒ" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "ÐвтоматичеÑÐºÐ°Ñ Ð½Ð°Ñтройка аккаунта не выполнена" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "ÐвтоматичеÑки предлагаемые цвета темы недоÑтупны Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ изображениÑ. Это может быть вызвано загрузкой Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð² формате, который не поддерживаетÑÑ ÑƒÑтановленной верÑией GD. Поддерживаемые форматы: %1. Ð’Ñ‹ можете переÑобрать libgd и GD.pm Ð´Ð»Ñ Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶ÐºÐ¸ других форматов." #: etc/initialdata:261 msgid "Autoreply" msgstr "Ðвтоответ" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Ðвтоответ Ðвторам ЗаÑвки" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Ðвтоответ в HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "ДоÑтупно" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "Среднее Создана-Изменена" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "Среднее Создана-Решена" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "Среднее Создана-Ðачата" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "Среднее Дан Ñрок - решена" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "Среднее Ðачата-Решена" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "Среднее ÐачнетÑÑ-Ðачата" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "Среднее Ð²Ñ€ÐµÐ¼Ñ Ð·Ð°Ð¿Ð»Ð°Ð½Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¾" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "Среднее оÑтавшееÑÑ Ð²Ñ€ÐµÐ¼Ñ" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "Среднее Ð²Ñ€ÐµÐ¼Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Ðазад" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Ðежелательные наÑтройки конфиденциальноÑти Ð´Ð»Ñ Ð°Ñ‚Ñ€Ð¸Ð±ÑƒÑ‚Ð° %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "ОÑновное" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "ÐŸÐ°Ñ€Ñ‚Ð¸Ñ (Batch)" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "ÐŸÐ°Ñ€Ñ‚Ð¸Ñ (batch) (Запрещено в конфигурации)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Пакетные Ñкрипты" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "ЗапуÑкать пакетные Ñкрипты поÑле внеÑÐµÐ½Ð¸Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ð¹ в заÑвку." #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Ð¡ÐºÑ€Ñ‹Ñ‚Ð°Ñ ÐºÐ¾Ð¿Ð¸Ñ" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "До того, как Ñтатьи Ñмогут быть иÑпользованы, админиÑтратор RT должен %1Ñоздать клаÑÑÑ‹%2, применить к ним дополнительные Ð¿Ð¾Ð»Ñ Ð¸ дать пользователÑм права на Ñти клаÑÑÑ‹ и полÑ." #: etc/initialdata:257 msgid "Blank" msgstr "ПуÑтой" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Содержание" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Жирный" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Закладка" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "СÑылка-закладка Ð´Ð»Ñ Ñтого поиÑка" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "ЗаÑвки, добавленные в закладки" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Избранные заÑвки" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "ПроÑматривать по разделам" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Обзор SQL запроÑов, Ñделанных в Ñтом процеÑÑе" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "МножеÑтвенное изменение" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "ДП" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "Также можно иÑкать по дополнительным полÑм иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ Ð°Ð½Ð°Ð»Ð¾Ð³Ð¸Ñ‡Ð½Ñ‹Ð¹ ÑинтакÑÐ¸Ñ %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "РаÑчитать" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "РаÑÑчитать значениÑ" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Ðе возможно загрузить Ñохраненный поиÑк \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Ðевозможно изменить ÑиÑтемных пользователей" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Ðевозможно добавление Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ð³Ð¾ Ð¿Ð¾Ð»Ñ Ð±ÐµÐ· наименованиÑ" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "ÐÐµÐ»ÑŒÐ·Ñ Ð¸Ð·Ð¼ÐµÐ½Ð¸Ñ‚ÑŒ значение по умолчанию Ð´Ð»Ñ %1 Ñ %2 на %3: %4" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "ÐÐµÐ»ÑŒÐ·Ñ Ð¸Ð·Ð¼ÐµÐ½Ð¸Ñ‚ÑŒ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию Ñ %1 на %2: %3" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Ðевозможно найти Ñохранённый Ð·Ð°Ð¿Ñ€Ð¾Ñ Ð´Ð»Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ñ Ð½Ð¸Ð¼" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Ðевозможно отправить: указан некорректный Ð°Ð´Ñ€ÐµÑ Ñлектронной почты" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Ðевозможно ÑвÑзать заÑвку Ñаму Ñ Ñобой" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Ðевозможно Ñоздать ÑвÑзь Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð½Ð¾Ð¹ заÑвкой" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Ðевозможно объединить одну и ту же заÑвку" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Ðевозможно быÑтро Ñоздать заÑвку в очереди %1: требуетÑÑ Ð·Ð°Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÑŒ дополнительные полÑ. ПожалуйÑта, иÑпользуйте Ñтраницу обычного ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð·Ð°Ñвки." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Ðевозможно Ñохранить %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Ðевозможно Ñохранить поиÑк без опиÑаниÑ" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Ðевозможно Ñохранить Ñтот запроÑ" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "ÐÐµÐ»ÑŒÐ·Ñ Ð¾Ð´Ð½Ð¾Ð²Ñ€ÐµÐ¼ÐµÐ½Ð½Ð¾ указывать оÑнование и цель" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Ðевозможно добавить ÑÑылку на чиÑло" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Ðевозможно Ñоздавать заÑвки в неиÑпользуемой очереди." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "Ðевозможно изменить объекты Ð´Ð»Ñ Ð·Ð°Ð±Ð»Ð¾ÐºÐ¸Ñ€Ð¾Ð²Ð°Ð½Ð½Ð¾Ð¹ роли #%1" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "Каталог" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "Каталог #%1 Ñоздан: %2" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "Каталог %1: Изменить дополнительные полÑ" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "Каталог %1: Изменить оÑновные полÑ" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "Каталог %1: Изменить права группы" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "Каталог %1: Изменить роли" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "Каталог %1: Изменить права пользователÑ" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "Ошибка транзакции ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ ÐºÐ°Ñ‚Ð°Ð»Ð¾Ð³Ð°: %1" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "Ошибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ ÐºÐ°Ñ‚Ð°Ð»Ð¾Ð³Ð°: %1" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "Каталоги" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "Каталоги не могут быть удалены" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Категории на оÑнове" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "КатегориÑ" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "КопиÑ" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Изменить" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Изменить ÑÑ‚Ð°Ñ‚ÑƒÑ Ð·Ð°Ñвки на открытый" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Изменить тему пиÑьма" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Изменить пароль" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Смена очереди не реализована" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Диаграмма" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Выбрать вÑе" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Проверить подключение к базе данных" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Проверьте информацию о БД" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Отметьте удалÑемое" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Дочерний Ñлемент" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Потомки" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Выберите СУБД" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Выберите раздел Ð´Ð»Ñ %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Город" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "КлаÑÑ" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Ð˜Ð¼Ñ ÐºÐ»Ð°ÑÑа" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "КлаÑÑ Ð½Ðµ может быть Ñоздан: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Идентификатор клаÑÑа" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "КлаÑÑ ÑƒÐ¶Ðµ применен глобально." #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "КлаÑÑ ÑƒÐ¶Ðµ применен к %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "КлаÑÑÑ‹" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "ОчиÑтить" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "ОчиÑтить вÑÑ‘" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Ðажмите \"Завершить инÑталлÑцию\" Ð´Ð»Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¸Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ñтого маÑтера." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Кликните \"Инициализировать БД\" Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð±Ð°Ð·Ñ‹ данных RT и вÑтавки метаданных. Это может занÑть немного времени" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Кликните Ð´Ð»Ñ Ð²Ñ‹Ð±Ð¾Ñ€Ð° цвета" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "Закрыть окно" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Закрыта" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Закрытые заÑвки" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Комбинированный ÑпиÑок: Выберите или введите неÑколько значений" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Комбинированный ÑпиÑок: Выберите или введите одно значение" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Комбинированный ÑпиÑок: Выберите или введите до %quant(%1,значениÑ,значений,значений)" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Комментировать" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "ÐÐ´Ñ€ÐµÑ Ð´Ð»Ñ ÐºÐ¾Ð¼Ð¼ÐµÐ½Ñ‚Ð°Ñ€Ð¸ÐµÐ²" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "ÐÐ´Ñ€ÐµÑ Ð´Ð»Ñ ÐºÐ¾Ð¼Ð¼ÐµÐ½Ñ‚Ð°Ñ€Ð¸ÐµÐ²" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "Комментировать заÑвку" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Комментировать заÑвки" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Комментарии" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Комментарии (Ðе отправлÑÑŽÑ‚ÑÑ Ð°Ð²Ñ‚Ð¾Ñ€Ð°Ð¼ заÑвки)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Комментарии об Ñтом пользователе" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Добавлен комментарий" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "УÑловие" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "УÑловие '%1' не найдено" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "УÑловие ÑвлÑетÑÑ Ð¾Ð±Ñзательным аргументом" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "ПодходÑщее уÑловие..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "УÑловие, ДейÑтвие и Шаблон" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Конфигурационный файл %1 заблокирован" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "ÐаÑтройки очереди %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "ÐаÑтройки Ð´Ð»Ñ Ñ€Ð¾Ð»Ð¸ %1" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Соединение выполнено" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "Контакт" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "СвÑжитеÑÑŒ Ñ Ð²Ð°ÑˆÐ¸Ð¼ админиÑтратором по %1 Ñлектронной почте %2%3." #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "СвÑжитеÑÑŒ Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñтратором RT." #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Содержимое" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Содержимое удалено, так как его размер (%1 байт) превышает заданный макÑимальный размер (%2 байт)." #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "Добавление завершилоÑÑŒ Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ¾Ð¹. ПодробноÑти можно поÑмотреть в журнале ошибок." #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Содержимое не ÑвлÑетÑÑ ÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð½Ñ‹Ð¼ IP-адреÑом" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Содержимое не ÑвлÑетÑÑ ÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð½Ñ‹Ð¼ IP-диапазоном" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Содержимое было урезано в ÑвÑзи Ñ Ñ‚ÐµÐ¼ что, его размер (%1 байтов) превыÑил наÑтройку макÑимального размера (%2 байтов)." #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Тип-СодержаниÑ" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "ТипСодержаниÑ" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "ÐÐ´Ñ€ÐµÑ Ð´Ð»Ñ ÐºÐ¾Ñ€Ñ€ÐµÑпонденции" #: etc/initialdata:393 msgid "Correspondence" msgstr "КорреÑпонденциÑ" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Добавлен ответ" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "КорреÑÐ¿Ð¾Ð½Ð´ÐµÐ½Ñ†Ð¸Ñ Ð² HTML" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "Ошибка Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ %1, как получателÑ: %2" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Ошибка Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ð³Ð¾ полÑ. %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Ðевозможно изменить владельца: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Ошибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ð³Ð¾ полÑ: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Ðевозможно Ñоздать группу" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Ðевозможно Ñоздать поиÑковый запроÑ: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Ðевозможно Ñоздать заÑвку. Ðе задана очередь." #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Ðевозможно Ñоздать пользователÑ" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Ðевозможно удалить Ð·Ð°Ð¿Ñ€Ð¾Ñ %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Ðе удалоÑÑŒ найти группу '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Ðе удалоÑÑŒ найти или Ñоздать Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Ðевозможно загрузить атрибут %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Ðевозможно загрузить клаÑÑ %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Ðевозможно загрузить дополнительное поле %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "Ðевозможно загрузить дополнительную роль #%1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Ðевозможно загрузить группу" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Ошибка загрузки объекта Ð´Ð»Ñ %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "Ðе удалоÑÑŒ загрузить Ñкриплет #%1" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "Загрузить иÑторию заÑвки не удалоÑÑŒ. Причина:" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Ðе удалоÑÑŒ загрузить Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ '%1'" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "Ðе удалоÑÑŒ уÑтановить %1 %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "Ðевозможно удалить %1 как %2" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Ðевозможно уÑтановить информацию о пользователе" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Ðевозможно обновить Ñтолбец %1: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Ðевозможно добавить вложение" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Ðевозможно добавить Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð² группу" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Ðе удалоÑÑŒ Ñкомпилировать %1 в блоке '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Ðе удалоÑÑŒ Ñкомпилировать шаблон в блоке '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Ðевозможно Ñоздать транзакцию: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Ðе удалоÑÑŒ Ñоздать запиÑÑŒ %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Ðевозможно удалить информационную панель %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Ðевозможно найти Ñтроку" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Ðевозможно найти подходÑщую транзакцию, пропуÑкаем" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Ðевозможно найти Ñтого пользователÑ" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Ðевозможно найти Ñто значение" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "Ðевозможно получить информацию о ключах %1" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Ошибка загрузки клаÑÑа %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Ошибка загрузки дополнительного Ð¿Ð¾Ð»Ñ #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Ðе удалоÑÑŒ загрузить дополнительное поле #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Ðевозможно загрузить дополнительное поле %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "Ðевозможно загрузить копию %1 #%2" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Ðевозможно загрузить копию заÑвки #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "Ðевозможно загрузить дополнительную роль '%1'" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Ðевозможно загрузить информационную панель %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Ошибка загрузки группы #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Ðевозможно загрузить группу %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Ðевозможно загрузить ÑÑылку" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "Ðевозможно загрузить ÑÑылку: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Ðевозможно загрузить объект %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Ошибка загрузки или ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "Ðевозможно загрузить принципала #%1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "Ðевозможно загрузить принципала: %1" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Ðевозможно загрузить очередь" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Ошибка загрузки очереди #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Ðевозможно загрузить очередь %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Ошибка загрузки очереди '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Ðевозможно загрузить Ñкриплет #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Ошибка загрузки шаблона #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Ðе удалоÑÑŒ загрузить указанного учаÑтника" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Ðевозможно загрузить заÑвку '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Ðе удалоÑÑŒ получить членÑтво темы, при попытке удалениÑ" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Ошибка загрузки транзакции #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Ðе получилоÑÑŒ найти запиÑÑŒ пользователÑ" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Ошибка загрузки Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Ðе получилоÑÑŒ загрузить запиÑÑŒ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ â„–%1 или Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼ '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Ðе возможно загрузить Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "Ðе удалоÑÑŒ проанализировать базовый URI: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "Ðе удалоÑÑŒ проанализировать цель URI: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "Ðе удалоÑÑŒ удалить предыдущего учаÑтника: %1" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Ошибка замены контента раÑшифрованными данными: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Ошибка замены контента зашифрованными данными: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "Ðевозможно определить '%1' в ÑÑылку." #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Ðевозможно преобразовать базу '%1' в URI." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Ðевозможно преобразовать цель '%1' в URI." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Ðевозможно уÑтановить %1 наблюдателем: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Ошибка уÑтановки Ñекретного ключа" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Ошибка ÑброÑа Ñекретного ключа" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Страна" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Создать" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Создать заÑвки" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Создать клаÑÑ" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Создать дополнительное поле" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Создать дополнительное поле Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸ %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "Создать дополнительную роль" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "Создать глобальный Ñкриплет" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Создать новую Ñтатью" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Создать новую Ñтатью в" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "Создать новый реÑÑƒÑ€Ñ Ð² каталоге %1" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "Создать новый реÑÑƒÑ€Ñ Ð² каталоге %1." #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Создать новую информационную панель" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Создать новую группу" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Создать новый шаблон Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸ %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "Создать новую заÑвку в %1" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "Создать новую заÑвку в очереди '%1' по реÑурÑу #%2: %3." #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Создать нового пользователÑ" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Создать очередь" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "Создать Ñкриплет и добавить к очереди %1" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Создать шаблон" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Создать заÑвку" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "Создать заÑвку в %1" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Создать заÑвку Ñ Ð´Ð°Ð½Ð½Ñ‹Ð¼ пользователем в качеÑтве инициатора в очереди" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Создать Ñтатью" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Создать Ñтатью в клаÑÑе..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Создавать Ñтатьи в Ñтом клаÑÑе" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "Создать реÑурÑ" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "Создать реÑурÑÑ‹" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "Создать каталог" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Создавать групповые информационные панели" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "Создать ÑвÑзанную заÑвку" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "Создать ÑвÑзанную заÑвку Ð´Ð»Ñ Ñ€ÐµÑурÑа #%1: %2" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "Создать новый реÑурÑ" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Создать новые заÑвки на оÑнове Ñтого шаблона Ñкриплета" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Создавать пользовательÑкие информационные панели" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Создавать ÑиÑтемные информационные панели" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Создать заÑвку" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Создавать заÑвки" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Создавать, изменÑть и удалÑть ÑпиÑки ÐºÐ¾Ð½Ñ‚Ñ€Ð¾Ð»Ñ Ð´Ð¾Ñтупа" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Создавать, изменÑть и удалÑть дополнительные полÑ" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Создавать, изменÑть и удалÑть Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ñ… полей" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "Создать, изменить или удалить дополнительные роли" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Создавать, изменÑть и удалÑть очередь" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Создавать, изменÑть и удалÑть Ñохраненные запроÑÑ‹" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Создавать, изменÑть и удалÑть пользователей" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "Создать, изменить или отключить каталоги" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Создана" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Создана:" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Создано дополнительное поле %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Ðвтор" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Создан поиÑковый Ð·Ð°Ð¿Ñ€Ð¾Ñ %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "Создана:" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "СозданаОтноÑительно" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Создатель заÑвки" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "КриптографиÑ" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "Шифрование отключено" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Текущие ÑвÑзи" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "Текущие получатели" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Текущий поиÑк" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Текущие пользователи" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Текущий запроÑ" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Текущие наблюдатели" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "ПользовательÑкий CSS (раÑширенный)" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Дополнительные полÑ" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Дополнительные Ð¿Ð¾Ð»Ñ Ð´Ð»Ñ %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Дополнительыне Ð¿Ð¾Ð»Ñ Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸ %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "Дополнительные роли" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "ПользовательÑкий код подготовки дейÑтвиÑ" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "ПользовательÑкое уÑловие" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Дополнительное поле #%1 неприменимо к Ñтому объекту" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Дополнительное поле %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Дополнительное поле %1 не отноÑитÑÑ Ðº Ñтому объекту" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Дополнительное поле %1 имеет значение." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Дополнительное поле %1 не имеет значениÑ." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Ðевозможно найти дополнительное поле %1" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Ðевозможно найти значение %1 дополнительного Ð¿Ð¾Ð»Ñ %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Ðевозможно удалить значение дополнительного полÑ" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Значение дополнительного Ð¿Ð¾Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¾" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "Ð”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ñ€Ð¾Ð»ÑŒ Ñоздана" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "Ð”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ñ€Ð¾Ð»ÑŒ отключена" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "Ð”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ñ€Ð¾Ð»ÑŒ включена" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "Ð”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ñ€Ð¾Ð»ÑŒ добавлена" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "ДополнительноеПоле" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "ЗначениеДополнительногоПолÑ" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "ДополнительнаÑРоль" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "ÐаÑтроить" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Изменить базовые наÑтройки" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Изменение Email'ов" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Изменить наÑтройки email" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "ÐаÑтройка панелей в меню" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "ÐаÑтроить тему RT" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Изменить вид RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "пароль админиÑтратора БД" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð‘Ð”" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Ежедневно" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Ежедневный дайджеÑÑ‚" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ð¾Ð½Ð½Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "Ðевозможно обновить панель %1: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "Панель %1 обновлена" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Ðевозможно Ñоздать информационную панель: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Ðевозможно изменить информационную панель: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ð¾Ð½Ð½Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ изменена" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Информационные панели" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Панели в меню" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Панели в меню Ð´Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ %1" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Ñервер (хоÑÑ‚) БД" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Ð˜Ð¼Ñ Ð‘Ð”" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Пароль Ð´Ð»Ñ Ð´Ð¾Ñтупа RT к базе данных" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Порт БД" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Тип БД" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð´Ð»Ñ Ð´Ð¾Ñтупа RT к базе даных" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "Дата" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Формат даты" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Даты" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "День" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "ДеньМеÑÑца" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "ДеньÐедели" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "ДеньГода" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Дек" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "РаÑшифровать" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "Ошибка шифрованиÑ; ÑвÑжитеÑÑŒ Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñтратором" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "%numerate(%1,Значение,ЗначениÑ,Значений) по умолчанию" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "Ð—Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "Ð—Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸ %1" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Очередь по умолчанию" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "Шаблон Ð½Ð°Ð¿Ð¾Ð¼Ð¸Ð½Ð°Ð½Ð¸Ñ Ð¿Ð¾ умолчанию" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "По умолчанию вÑÑ Ð¸ÑходÑÑ‰Ð°Ñ ÑÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð°Ñ Ð¿Ð¾Ñ‡Ñ‚Ð° при обновлениÑÑ… заÑвки через веб-Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð¿Ð¾Ð´Ð°Ð²Ð»ÐµÐ½Ð°." #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "Значение по умолчанию Ð´Ð»Ñ %1 изменено Ñ %2 на %3" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "Ð—Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию изменены Ñ %1 на %2" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "По умолчанию: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Умолчание: %1/%2 изменено Ñ %3 на %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "ФорматПоУмолчанию" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Удалить" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Удалить шаблон" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Ошибка удалениÑ: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "УдалÑть групповые информационные панели" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Операции ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ð·Ð°Ð¿Ñ€ÐµÑ‰ÐµÐ½Ñ‹ наÑтройками жизненного цикла" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "УдалÑть пользовательÑкие информационные панели" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "УдалÑть ÑиÑтемные информационные панели" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "УдалÑть заÑвки" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Удалить значениÑ" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Удалено %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Удаленные запроÑÑ‹" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Удалён Ñохранённый запроÑ" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Удалён поиÑковый Ð·Ð°Ð¿Ñ€Ð¾Ñ %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Удаление Ñтого объекта нарушит ÑÑылочную целоÑтноÑть" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Удаление Ñтого объекта нарушит ÑÑылочную целоÑтноÑть" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Отказать" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "От неё завиÑÑÑ‚" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "ЗавиÑитОтК" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Добавлена завиÑимоÑть %1 от текущей заÑвки" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Удалена завиÑимоÑть %1 от текущей заÑвки" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Добавлена завиÑимоÑть от %1" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Удалена завиÑимоÑть от %1" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "ЗавиÑитОт" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "ЗавиÑит от" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "ЗавиÑит от" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "По убыванию" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Опишите проблему" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "ОпиÑание" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "ÐŸÐ¾Ð´Ñ€Ð¾Ð±Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ наÑтройках RT" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Дополнительно" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Ðаправление" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "Отключить Ñтатьи данного клаÑÑа" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Ðе иÑпользуетÑÑ" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "Отключено?" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Показать" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Показать ÑпиÑок прав доÑтупа" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Отобразить Ñтатью %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Показать колонки" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "Показать вÑе проÑтые текÑтовые Ð²Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð² моноширинном шрифте Ñ Ñохранением форматированиÑ, Ð¿ÐµÑ€ÐµÐ½Ð¾Ñ Ð¿Ð¾ необходимоÑти." #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "Отображать ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ ÐºÐ°Ðº форматированный текÑÑ‚, еÑли доÑтупно" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Показать проÑтые текÑтовые Ð²Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ ÑˆÑ€Ð¸Ñ„Ñ‚Ð¾Ð¼ фикÑированной ширины" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Показать заÑвку поÑле \"БыÑтрого СозданиÑ\"" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "РаÑпроÑтранÑетÑÑ Ð½Ð° уÑловиÑÑ… лицензии %1GNU GPL верÑии 2%2." #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Делать вÑÑ‘ и везде" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Ðаименование домена" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ðе иÑпользуйте http://, только типа 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Ðе обновлÑть домашнюю Ñтраницу" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Ðе обновлÑть результаты поиÑка" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ðе обновлÑть Ñту Ñтраницу" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Больше не доверÑть данному ключу" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Загрузить" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "Скачать Ñлектронную таблицу" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Загрузить дамп" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "Перетащите файлы Ñюда или нажмите Ð´Ð»Ñ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Выпадающий ÑпиÑок" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Дан Ñрок" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "ОШИБКÐ: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "БыÑтрое изменение ваших открытых заÑвок" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "ПроÑтой проÑмотр ваших напоминаний" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Редактировать" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "Изменить %1" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Редактировать дополнительные полÑ" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Редактировать дополнительные Ð¿Ð¾Ð»Ñ Ð´Ð»Ñ %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "Редактировать дополнительные Ð¿Ð¾Ð»Ñ Ð´Ð»Ñ Ñ€ÐµÑурÑов во вÑех каталогах" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Редактировать дополнительные Ð¿Ð¾Ð»Ñ Ð²Ñех групп" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Редактировать дополнительные Ð¿Ð¾Ð»Ñ Ð²Ñех очередей" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Редактировать дополнительные Ð¿Ð¾Ð»Ñ Ð²Ñех пользователей" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Изменение дополнительных полей Ð´Ð»Ñ Ð²Ñех клаÑÑов" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Редактировать дополнительные Ð¿Ð¾Ð»Ñ Ð·Ð°Ñвок во вÑех очередÑÑ…" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Редактировать ÑвÑзи" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Редактировать запроÑ" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Редактировать запроÑ" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Изменение глобальной иерархии разделов" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Редактировать ÑиÑтемные шаблоны" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Изменение иерархии разделов Ð´Ð»Ñ %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Редактирование дополнительного Ð¿Ð¾Ð»Ñ %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Редактирование ÑпиÑка пользователей группы %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Ðужно указать либо иÑточник, либо Ð°Ð´Ñ€ÐµÑ Ð½Ð°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "У Ð²Ð°Ñ Ð½ÐµÑ‚ прав Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñмотра Ñохранённого запроÑа %1 или указан неверный идентификатор" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "Прошло" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "ÐÐ´Ñ€ÐµÑ Ñл. почты" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Email ДайджеÑÑ‚" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "E-mail ИÑточник Ð´Ð»Ñ Ð·Ð°Ñвки %1, Приложение %2" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Email Ð°Ð´Ñ€ÐµÑ ÑƒÐ¶Ðµ иÑпользуетÑÑ" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "ДоÑтавка почты" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Шаблон Ñл.почты Ð´Ð»Ñ Ð¿ÐµÑ€Ð¸Ð¾Ð´Ð¸Ñ‡ÐµÑких уведомлений в виде \"дайджеÑтов\"" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "ПуÑто" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "Включить Ñворачивание цитат?" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "ИÑпользуетÑÑ" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "Разрешено (ÑнÑтие отметки отключает Ñтатью)" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "ИÑпользуетÑÑ (ÑнÑтие отметки отключает данный клаÑÑ)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "ИÑпользуетÑÑ (ÑнÑтие отметки отключает иÑпользование Ñтого дополнительного полÑ)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "Разрешено (ÑнÑтие отметки отключает Ñту роль)" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "ИÑпользуетÑÑ (ÑнÑтие отметки отключает иÑпользование Ñтой группы)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "ИÑпользуетÑÑ (ÑнÑтие отметки отключает иÑпользование Ñтой очереди)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Включен (СнÑтие Ñтой отметки выключает Ñкриплет)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "Включенные каталоги" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Разрешенные клаÑÑÑ‹" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "ИÑпользуемые очереди" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "Включенные каталоги, удовлетворÑющие поиÑковому запроÑу" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Разрешенные очереди, удовлетворÑющие критериÑм поиÑка" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Ðктивирован ÑÑ‚Ð°Ñ‚ÑƒÑ %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Зашифровать" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Шифровать по умолчанию" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Зашифровать/РаÑшифровать" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Зашифровать/РаÑшифровать транзакцию #%1 заÑвки #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "Шифрование" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Ошибка шифрованиÑ; ÑвÑжитеÑÑŒ Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñтратором" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Укажите Ñтатьи, заÑвки и другие URL, отноÑÑщиеÑÑ Ðº данной Ñтатье" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "Введите ÑÑылки на реÑурÑÑ‹ в виде \"asset:###\", где ### предÑтавлÑет Ñобой идентификатор реÑурÑа." #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Введите неÑколько IP-диапазонов" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Введите неÑколько IP-адреÑов" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Введите неÑколько значений" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Введите неÑколько значений (Ñ Ð°Ð²Ñ‚Ð¾Ð´Ð¾Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸ÐµÐ¼)" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Введите объекты или ÑÑылки на объекты. Ð—Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñ€Ð°Ð·Ð´ÐµÐ»ÑÑŽÑ‚ÑÑ Ð¿Ñ€Ð¾Ð±ÐµÐ»Ð°Ð¼Ð¸." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Ведите один IP-адреÑ" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Введите один IP-диапазон" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Введите одно значение" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Введите одно значение (Ñ Ð°Ð²Ñ‚Ð¾Ð´Ð¾Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸ÐµÐ¼)" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Введите очереди или ÑÑылки на очереди. Ð—Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñ€Ð°Ð·Ð´ÐµÐ»ÑÑŽÑ‚ÑÑ Ð¿Ñ€Ð¾Ð±ÐµÐ»Ð°Ð¼Ð¸." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Введите заÑвки или ÑÑылки на заÑвки. Ð—Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñ€Ð°Ð·Ð´ÐµÐ»ÑÑŽÑ‚ÑÑ Ð¿Ñ€Ð¾Ð±ÐµÐ»Ð°Ð¼Ð¸." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "Введите номера заÑвок или URI, Ð´Ð»Ñ ÑƒÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ ÑвÑзей. РазделÑйте запиÑи пробелами." #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Введите Ð²Ñ€ÐµÐ¼Ñ Ð² чаÑах" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Введите до %quant(%1,IP-диапазона,IP-диапазонов,IP-диапазонов)" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Введите до %quant(%1,IP-адреÑа,IP-адреÑов,IP-адреÑов)" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Введите до %quant(%1,значениÑ,значений,значений)" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Введите до %quant(%1,значениÑ,значений,значений) (Ñ Ð°Ð²Ñ‚Ð¾Ð´Ð¾Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸ÐµÐ¼)" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "Указание '%1', '%2', '%3' или'%4' ограничивает облаÑть поиÑка заÑвками Ñ ÑоответÑтвующим типом ÑтатуÑа. Указание любого иного ÑтатуÑа ограничивает облаÑть поиÑка конкретным ÑтатуÑом." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "Переменные окружениÑ" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Ошибка" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "Ошибка загрузки вложениÑ" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "Ошибка отриÑовки графика: %1" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Ошибка к владельцу RT: публичный ключ" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Ошибка: ОтÑутÑтвует Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ð¾Ð½Ð½Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Ошибка: неверные данные GnuPG" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "Ошибка: плохо зашифрованные данные" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Ошибка: невозможно изменить значение конфиденциальноÑти ÑущеÑтвующего поиÑка" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Ðевозможно загрузить Ñохраненный Ð·Ð°Ð¿Ñ€Ð¾Ñ %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Ошибка: нет Ñекретного ключа" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Ошибка: нет публичного ключа" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Ошибка: поиÑковый Ð·Ð°Ð¿Ñ€Ð¾Ñ %1 не обновлен: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "Ошибка: Ñообщение в незашифрованном виде" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "ЭÑкалировать приоритет заÑвки" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "РаÑчётное" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Ð’Ñе" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Пример:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "ИÑтекает" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "РаÑширенныйСтатуÑ" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Разрешена внешнÑÑ Ð°ÑƒÑ‚ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "Доп. информациÑ" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Ð”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Создать Ñтатью" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Извлечение тега из темы пиÑьма" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Создать Ñтатью из заÑвки #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Создать Ñтатью из заÑвки #%1 в клаÑÑ %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Извлекает теги из темы транзакции и добавлÑет их в тему заÑвки." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Ошибка Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ðº базе данных: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Ошибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð°Ñ‚Ñ€Ð¸Ð±ÑƒÑ‚Ð° %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Ðевозможно найти пÑевдо-группу 'Привилегированные'" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Ðевозможно найти пÑевдо-группу 'Ðепривилегированные'" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Ошибка загрузки %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Ошибка загрузки %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Ошибка загрузки Ð¼Ð¾Ð´ÑƒÐ»Ñ %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Ошибка загрузки объекта Ð´Ð»Ñ %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Ошибка загрузки шаблона" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "Ðе удалоÑÑŒ загрузить заÑвку %1" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Ошибка обработки шаблона" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "Ошибка Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚Ð°. Причина:" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Фев" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "ПодпиÑки" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Поле" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "ИÑточник значений полÑ:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "Файл '%1' иÑключён, так как его размер (%2 байт) превышает заданный макÑимальный размер (%3 байт)." #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "Добавление файла '%1' завершилоÑÑŒ Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ¾Ð¹. ПодробноÑти можно поÑмотреть в журнале ошибок." #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "Файл '%1' обрезан, так как его размер (%2 байт) превышает заданный макÑимальный размер (%3 байт)." #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Ð˜Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "Файлы Ñ Ð´Ð²Ð¾Ð¹Ð½Ñ‹Ð¼Ð¸ кавычками в имени не могут быть загружены." #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Заполнить параметры" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "РаÑкраÑить в ÑоответÑтвии Ñ" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Заполнить неÑколько текÑтовых полей" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Заполнить неÑколько полей wikitext" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Заполнить одно текÑтовое поле" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Заполнить одно поле wikitext" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Введите в Ñтом поле URL." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Заполнить до %quant(%1,текÑтового полÑ,текÑтовых полей,текÑтовых полей)" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Заполнить до %quant((%1,Ð¿Ð¾Ð»Ñ wikitext,полей wikitext,полей wikitext)" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Конечный приоритет" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "КонечныйПриоритет" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "ПоиÑк группы..." #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Ðайти пользователÑ" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "ПоиÑк пользователÑ..." #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Ðайти вÑех пользователей, чей" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "ПоиÑк реÑурÑа" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Ðайти группы, у которых" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Ðайти пользователей, у которых" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "ПоиÑк заÑвок" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "ПоиÑкРеÑурÑа" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "ÐайтиПользователÑ" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Отпечаток" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Завершить" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Ð’ начало" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "Ð”Ð»Ñ Ð»Ð¾ÐºÐ°Ð»ÑŒÐ½Ð¾Ð¹ помощи, пожалуйÑта, ÑвÑжитеÑÑŒ Ñ %1" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "Ð”Ð»Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð²Ñех возможноÑтей поиÑка в RT иÑпользуйте %1Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ ÐºÐ¾Ð½Ñтруктора запроÑов %2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Изменить принудительно" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Форматировать" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "ОформлÑет датой и временем ÑÐ¾Ð±Ñ‹Ñ‚Ð¸Ñ Ð² iCal потоках" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "ПереÑлать" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "ПереÑлать Ñообщение" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "ПереÑлать Ñообщение и вернутьÑÑ" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Перенаправить заÑвку" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "ПеренаправлÑет ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð·Ð° пределы RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Перенаправить заÑвку #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Перенаправить транзакцию #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "ПереадреÑованно %3Ð¢Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ â„–%1%4 в %2" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "ЗаÑвка перенаправлена %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "ПереÑылаемое Ñообщение" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "ПереÑылаемое Ñообщение заÑвки" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "%numerate(%1,Ðайден,Ðайдено,найдено) %quant(%1,реÑурÑ,реÑурÑа,реÑурÑов)" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Ðайдено: %quant(%1,заÑвка,заÑвки,заÑвок)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Ðайден объект" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "ПериодичноÑть" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Птн" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "ПÑтница" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "От" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "Библиотека GD не уÑтановлена или отключена. Ð’Ñ‹ можете загрузить изображение, но автоматичеÑкое предложение по цветам работать не будет." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "поле учётной запиÑи Gecos" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Общие" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "Общие реÑурÑÑ‹" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Общие права" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Ðачало работы" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "ПредоÑтавить вывод даже Ð´Ð»Ñ ÑƒÑпешно отправленных Ñообщений" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Ðазначен ответÑтвенный пользователь %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Общие" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Общие атрибуты" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Общие разделы" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Конфигурирование общих дополнительных полей" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "Глобальные информационные панели в меню Ñохранены." #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "Глобальный или Ñпецифичный Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸ шаблон '%1' не найден" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Общий портлет %1 Ñохранен." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "Глобальный шаблон '%1' не найден" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "Закрытый ключ GnuPG" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Отправить" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Перейти к группе" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Перейти к пользователю" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Отправить!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Перейти к заÑвке" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Показать заÑвку" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "ПредоÑтавлено право '%1' Ð´Ð»Ñ %2." #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Граф" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "ÐаÑтройки графа" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "ГрафичеÑкие диаграммы недоÑтупны." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Группа" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Права группы" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Пользователь уже входит в группу: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "Группировать по" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Ðевозможно Ñоздать группу: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Группа Ñоздана" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Группа не иÑпользуетÑÑ" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Группа иÑпользуетÑÑ" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Ð’ группе нет такого пользователÑ" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Ð˜Ð¼Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ñ‹ '%1' уже иÑпользуетÑÑ" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Группа не найдена" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "Группировать заÑвки по" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "Группа: %1" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "Сгруппированные результаты поиÑка" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Группы" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Группы не могут быть членами входÑщих в них пользователей" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Группы, удовлетворÑющие уÑловию поиÑка" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "Группы, в которых принципал ÑоÑтоит (выберите, чтобы удалить)" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "Группы, в которых принципал не ÑоÑтоит (выберите, чтобы добавить)" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Группы, в которых ÑоÑтоит Ñтот пользователь" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "HTML-шаблон автоответа" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "HTML ЗаÑвка решена" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "HTML Ð¡Ñ‚Ð°Ñ‚ÑƒÑ Ð·Ð°Ñвки изменен" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "HTML шаблон админиÑтративного комментариÑ" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "HTML шаблон админиÑтративной корреÑпонценции" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "HTML шаблон корреÑпонценции" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "HTML шаблон транзакции" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "ИмеетЧленÑтво" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Заголовок переÑылаемой заÑвки" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Заголовок из переÑылаемого ÑообщениÑ" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "Ð’Ñ‹Ñота" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "ЗдравÑтвуйте!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Помогите нам уÑтановить некоторые полезные ÑƒÐ¼Ð¾Ð»Ñ‡Ð°Ð½Ð¸Ñ Ð´Ð»Ñ RT" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Скрыть процитированный текÑÑ‚" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Скрыть цитируемый текÑÑ‚" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "Скрыть пуÑтые полÑ?" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "ИÑториÑ" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ñтатьи #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ñ‹ %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸ %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Домашний телефон" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Интервал Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð´Ð¾Ð¼Ð°ÑˆÐ½ÐµÐ¹ Ñтраницы" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Ð’ начало" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "ЧаÑ" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "Раз в чаÑ" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "ЧаÑов" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "ИмеетÑÑ %quant(%1,concrete mixer)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "Я хочу ÑброÑить Ñвой Ñекретный токен" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "ИСО" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "ЗаÑвка" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "ПерÑональные данные" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "ЕÑли выбрано дополнительное поле, тема иÑходÑщего email будет переопределена Ñтой Ñтатьей." #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "ЕÑли подтверждение отклонено, отклонить заÑвку-первоиÑточник и удалить ожидающие подтверждениÑ" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "ЕÑли Ñто не то, что вы ожидали, покинте Ñту Ñтраницу без входа в учетную запиÑÑŒ" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "ЕÑли бы Ñта программа имела уÑтановленный бит setgid, то зловредный пользователь мог бы воÑпользоватьÑÑ Ñтим Ð´Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñтративных полномочий в RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "ЕÑли у Ð²Ð°Ñ ÑƒÐ¶Ðµ еÑть работающий RT Ñервер и база данных, вы можете воÑпользоватьÑÑ Ñтим, чтобы убедитьÑÑ Ð² работоÑпоÑобноÑти Ñервера БД и в правильноÑти ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ c RT. ПоÑле Ñтого оÑтановите и Ñнова запуÑтите Ñервер RT.

    " #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "ЕÑли вы имеете учетную запиÑÑŒ, вы можете попробовать %1 вмеÑто %2." #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "ЕÑли вы дейÑтвительно намеревалиÑÑŒ поÑетить %1 и %2, то %3щелкните здеÑÑŒ, чтобы возобновить Ñвой запроÑ%4." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "ЕÑли номер порта, на котором работает RT, был изменен, то необходимо перезапуÑтить Ñервер." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "ПоÑле любых изменений необходимо" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "ЕÑли вы предпочитаете БД, отÑутÑтвующую в нижеÑледующем ÑпиÑке, то Ñто значит, что RT не может найти драйвер базы данных уÑтановленный локально. Ð’Ñ‹ можете иÑправить Ñто иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ %1 Ð´Ð»Ñ Ð·Ð°Ð³Ñ€ÑƒÐ·ÐºÐ¸ и уÑтановки DBD::MySQL, DBD::Oracle или DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "ÐедопуÑтимое значение Ð´Ð»Ñ %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "Изображение отображено в текÑте выше" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "Изображение не отображаетÑÑ, потому что Ñто запрещено в ÑиÑтемной конфигурации" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "Изображение не показано, потому что отправитель запроÑил не вÑтраивать его." #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "ÐеизменÑемое поле" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Ðеактивные заÑвки" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "Ðеактивные заÑвки" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Вложить Ñтатью:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "Включить Ð·Ð°Ð¿Ñ€Ð¾Ñ Ð½Ð° TicketSQL" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Включить Ð¸Ð¼Ñ Ñтатьи" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Включить опиÑание Ñтатьи" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "Включить приложениÑ" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "Включить пользовательÑкое поле '%1'" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Включать запрещенные клаÑÑÑ‹ в ÑпиÑок" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Показывать неиÑпользуемые дополнительные полÑ." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Показывать неиÑпользуемые группы." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Показывать неиÑпользуемые очереди." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Показывать отключенных пользователей." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Ð’Ñтавить Ñтраницу" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Включать подразделы" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "Включить Ð²Ñ€ÐµÐ¼Ñ Ð² ÑобытиÑÑ… в подпиÑках iCal?" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "ÐžÐ±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¸Ð½Ð´ÐµÐºÑа из %1" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Отдельные ÑообщениÑ" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Проинформируйте владельца RT, что у пользователÑ(ей) еÑть проблемы Ñ Ð¿ÑƒÐ±Ð»Ð¸Ñ‡Ð½Ñ‹Ð¼Ð¸ ключами" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Проинформируйте пользователÑ, что Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ð¾Ð½Ð½Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ, на которую он подпиÑалÑÑ, отÑутÑтвует" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Проинформируйте пользователÑ, что поÑланное им Ñообщение Ñодержит неверные данные GnuPG" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "Информирование Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¾ том, что Ñообщение, которое он поÑлал имеет неверные данные шифрованиÑ" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Проинформируйте пользователÑ, что у него возникли проблемы Ñ Ð¿ÑƒÐ±Ð»Ð¸Ñ‡Ð½Ñ‹Ð¼ ключом и он не может получить зашифрованное Ñодержимое" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Проинформируйте пользователÑ, что его пароль Ñброшен" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "Информирование пользователÑ, что почта в незашифрованном виде отклонена" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Проинформируйте пользователÑ, что мы получили зашифрованный email и у Ð½Ð°Ñ Ð½ÐµÑ‚ Ñекретных ключей Ð´Ð»Ñ Ñ€Ð°Ñшифровки" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Ðачальный приоритет" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "ÐачальныйПриоритет" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Инициализировать Базу Данных" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Ошибка ввода" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Ввод должен ÑоответÑтвовать %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "Ð’Ñтавка из %1" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "ВнутреннÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "Ðекорректный %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Ðекорректный аргумент %1" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Ðеверное значение %1: '%2' не ÑвлÑетÑÑ Ð°Ð´Ñ€ÐµÑом email" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Ðеверное значение %1: должно быть чиÑлом" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Ðеправильный клаÑÑ" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Ðеправильный иÑточник значений дополнительного полÑ" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "Ðекорректное Ð¸Ð¼Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ñ‹ и домен" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "ÐÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´ÑŒ, невозможно применить клаÑÑ %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "Ðеправильный тип отображениÑ" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Ðеправильный тип Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ð³Ð¾ Ð¿Ð¾Ð»Ñ Ñ‚Ð¸Ð¿Ð° '%1'" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "ÐедопуÑтимые данные" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Ðекорректный ключ %1 Ð´Ð»Ñ Ð°Ð´Ñ€ÐµÑа '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Ðеверный объект" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "ÐедопуÑтимый образец: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "Ðеверный портлет %1" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "ÐедопуÑÑ‚Ð¸Ð¼Ð°Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´ÑŒ" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "Ðекорректный идентификатор очереди" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "ÐедопуÑтимое право" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "ÐедопуÑтимое право. Ðевозможно канонизировать право '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Ðеправильный ÑинтакÑÐ¸Ñ Ð´Ð»Ñ Ð°Ð´Ñ€ÐµÑа Ñлектронной почты" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "ÐедопуÑтимое значение Ð´Ð»Ñ %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "ÐедопуÑтимое значение дополнительного полÑ" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "Это уже добавлено к объекту" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Ðе зашифровано" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Обратите внимание, что непривилегированные пользователи не имеют права запуÑкать Ñту программу." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "ПредполагаетÑÑ, что Ð´Ð»Ñ Ð·Ð°Ð¿ÑƒÑка Ñтой программы вы должны Ñоздать непривилегированную учетную запиÑÑŒ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Unix Ñ ÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð½Ñ‹Ð¼Ð¸ уÑтановками групп и доÑтупом к RT." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Это требует неÑколько параметров:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Ðаклонный" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Янв" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "ПриÑоединитьÑÑ Ð¸Ð»Ð¸ выйти из группы" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Июл" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Ð’Ñе данные" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Июн" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "ОÑтавьте 'localhost' еÑли не уверены. Или оÑтавьте пуÑтым Ð´Ð»Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ñ‡ÐµÑ€ÐµÐ· Ñокет." #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "Ð¡Ð¾Ñ‡ÐµÑ‚Ð°Ð½Ð¸Ñ ÐºÐ»Ð°Ð²Ð¸Ñˆ быÑтрго доÑтупа" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "ПоиÑк по ключевым Ñловам и интуитивный поиÑк" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Язык" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Язык" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Большой" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Ð’ конец" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "ПоÑледний контакт" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "ПоÑледний контакт" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "ПоÑледнее изменение" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "ПоÑледнее изменение:" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "ПоÑледнее обновление" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "ПоÑледний раз изменено" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "ПоÑледнееИзменение" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "ПоÑледнийРазИзменено" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "ОÑтавьте пуÑтым Ð´Ð»Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ ÑƒÐ¼Ð¾Ð»Ñ‡Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ð²Ð°ÑˆÐµÐ¹ базы данных" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "ОÑтавьте поле пуÑтым Ð´Ð»Ñ Ñ‚Ð¾Ð³Ð¾ чтобы иÑпользовать Ð¸Ð¼Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñтратора по умолчанию Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ типа СУБД" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "ОÑталоÑÑŒ" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "УÑловные обозначениÑ" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Длина в Ñимволах; Укажите 0 Ð´Ð»Ñ Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð²Ñех Ñообщений полноÑтью, незавиÑимо от их длины" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Разрешить доÑтуп к RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "ПредоÑтавить пользователю права" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Вперед!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Жизненный цикл" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "СÑылка" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "СвÑзь уже ÑущеÑтвует" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "Ðевозможно Ñоздать ÑвÑзь: %1" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "Ðевозможно удалить ÑвÑзь: %1" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "СвÑзь не найдена" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "СвÑзать заÑвку #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "СвÑзать Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñ" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "СвÑзано" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "СвÑзаноОт" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "СвÑзаноС" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "СÑылки на удаленный %1 не допуÑтимы" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "СвÑзи" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "СвÑзи Ñ:" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "СпиÑок" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Загрузить" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Загрузить Ñохраненный запроÑ" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Загрузить Ñохраненный запроÑ" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Загрузить Ñохранённый запроÑ:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Загружено %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "Загруженные конфигурационные файлы" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Загружен первоначальный\"%1\" Ñохранённый запроÑ" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Загруженные модули perl" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Загружен Ñохранённый Ð·Ð°Ð¿Ñ€Ð¾Ñ \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Загрузка..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Региональные наÑтройки" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð² локали пользователÑ" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "МеÑтонахождение" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Вход выполнен" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "%1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Завершил работу" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "РегиÑтрировать ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ ÑƒÑ€Ð¾Ð²Ð½Ñ %1 и выше в %2" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "РегиÑтрировать ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ ÑƒÑ€Ð¾Ð²Ð½Ñ %1 и выше в STDERR, которые в обычно оказываютÑÑ Ð² журнале ошибок вашего веб-Ñервера." #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "РегиÑтрировать ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ ÑƒÑ€Ð¾Ð²Ð½Ñ %1 и выше в syslog Ñо Ñледующей наÑтройкой: %2" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "РегиÑтрировать ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ ÑƒÑ€Ð¾Ð²Ð½Ñ %1 и выше в syslog." #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Войти в ÑиÑтему" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Выйти" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "ÐеÑовпадение типа поиÑка" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Почта" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "ОÑновной тип ÑвÑзей" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Ðазначить ответÑтвенного" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "УÑтановить ÑтатуÑ" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "УÑтановить конечный Ñрок" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "УÑтановить дату 'Ðачата'" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "УÑтановить дату 'ÐачнётÑÑ'" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "УÑтановить дату поÑледнего контакта" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "УÑтановить приоритет" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Ðазначить очередь" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "УÑтановить тему" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Управление дополнительными полÑми и их значениÑми" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "Управление дополнительными ролÑми" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Управление группами и членами групп" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Управление ÑвойÑтвами и наÑтройками, которые применÑÑŽÑ‚ÑÑ ÐºÐ¾ вÑем очередÑм" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Управление очередÑми и их параметрами" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Управление Ñохранёнными графами" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "Управление Ñкриплетами" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Управление пользователÑми и паролÑми" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "Отображение между жизненными циклами %1 и %2 неполное. СвÑжитеÑÑŒ Ñ ÑиÑтемным админиÑтратором." #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Мар" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Отметить вÑе ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ ÐºÐ°Ðº прочтённые" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "МакÑимум Создана-Ðачата" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "макÑимум Дан Ñрок-Решена" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "МакÑимум Ðачата-Решена" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "МакÑимум ÐачнётÑÑ-начата" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "МакÑÐ¸Ð¼Ð°Ð»ÑŒÐ½Ð°Ñ Ð´Ð»Ð¸Ð½Ð° ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "МакÑимум Ð²Ñ€ÐµÐ¼Ñ Ð·Ð°Ð¿Ð»Ð°Ð½Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð½Ð¾Ðµ" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "МакÑимум времени прошло" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "МакÑимум Ð²Ñ€ÐµÐ¼Ñ Ð² работе" #: lib/RT/Date.pm:95 msgid "May" msgstr "Май" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Я" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "УчаÑтник" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "УчаÑтник %1 добавлен" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "УчаÑтник %1 удалён" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Пользователь добавлен в группу: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Пользователь удалён из группы" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Пользователь не удалён из группы" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "СоÑтоитВ" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "УчаÑтники" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "УчаÑтие в %1 добавлено" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "УчаÑтие в %1 удалено" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "УчаÑтие в группах" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "ЧленÑтво группы %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "УчаÑтие в группах данного Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Объединить" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "ЗаÑвки уÑпешно объединены" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Ошибка объединениÑ. Ðевозможно уÑтановить идентификатор заÑвки." #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "СлиÑние не удалоÑÑŒ. Ðе удалоÑÑŒ уÑтановить ÑÑ‚Ð°Ñ‚ÑƒÑ IsMerged" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Объединить Ñ Ð·Ð°Ñвкой" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Объединено в %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Сообщение" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Тело ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð½Ðµ показано, так как имеет Ñлишком большой размер." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Содержимое ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð½Ðµ показано, ÑоглаÑно предпочтениÑм отправителÑ" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Содержимое ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð½Ðµ показано, потому что Ñто не текÑÑ‚" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Ð’Ñ‹Ñота Ð¿Ð¾Ð»Ñ Ñ Ñообщением" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Ширина Ð¿Ð¾Ð»Ñ Ñ Ñообщением" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Ðевозможно запиÑать Ñообщение" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Ð¡Ð¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŽ" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Сообщение запиÑано" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "Минимум Создана-Решена" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "Минимум Создана-Ðачата" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "Минимум Дан Ñрок-Решена" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "Минимум Ðачата-решена" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "Минимум ÐачнетÑÑ-Ðачната" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "ÐœÐ¸Ð½Ð¸Ð¼Ð°Ð»ÑŒÐ½Ð°Ñ Ð´Ð»Ð¸Ð½Ð° паролÑ" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "Минимум времени запланировано" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "Минимум времени прошло" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "Минимум времени в работе" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Минут" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Разное" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Пропущен первичный ключ?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Мобильный" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Мобильный телефон" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Изменить" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Изменить учаÑтников" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Изменить шаблоны Ñкриплетов" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Изменить Ñкриплеты" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Изменить дополнительное поле Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸ %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Изменение и Ñоздание клаÑÑов" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Изменение и Ñоздание дополнительных полей Ð´Ð»Ñ Ñтатей" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Изменить Ñтатью #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Изменить аÑÑоциированные объекты Ð´Ð»Ñ %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "Изменить ÑвÑзанный объект Ð´Ð»Ñ Ñкриплета #%1" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "МенÑть Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ð³Ð¾ полÑ" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Изменить даты заÑвки #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Изменить глобальные темы Ñтатей" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Изменить общие дополнительные полÑ" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Изменить общие права группы" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Изменить глобальные разделы" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Изменить общие права пользователÑ" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "ИзменÑть информационные панели Ð´Ð»Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ñ‹" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "ИзменÑть ÑпиÑок учаÑтников группы" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Изменить метаданные группы или удалить ее" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Изменить права группы Ð´Ð»Ñ ÐšÐ»Ð°ÑÑа %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Изменить права группы на дополнительное поле %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Изменить права группы на группу %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Изменить права группы на очередь %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "ИзменÑть метаданные и дополнительные Ð¿Ð¾Ð»Ñ Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ клаÑÑа" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Изменить ÑобÑтвенную учетную запиÑÑŒ RT" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Изменить пользователей, отноÑÑщихÑÑ Ðº заÑвке #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "ИзменÑть перÑональные информационные панели" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "ИзменÑть наблюдателей очереди" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "Изменить Ñкриплет #%1" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Изменить Ñкриплеты Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸ %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Изменить Ñкриплеты, которые дейÑтвуют на вÑе очереди" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "ИзменÑть ÑиÑтемные информационные панели" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Изменить шаблон %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Изменить шаблон %1 Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸ %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Изменить шаблоны, которые применÑÑŽÑ‚ÑÑ ÐºÐ¾ вÑем очередÑм" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Изменить КлаÑÑ %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Изменить Ñодержимое панели %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Изменить информационную панель %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Изменить вид по умолчанию Ñтраницы \"Обзор RT\"" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Изменить группу %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Изменить подпиÑки информационной панели %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Изменить Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Изменить Ñтот поиÑк..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Изменить заÑвку # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Изменить заÑвку # %1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "Изменить владельца в принадлежащих заÑвках" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Изменить заÑвки" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Изменить тему Ð´Ð»Ñ %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Изменить иерархию тем ÑвÑзанных Ñ Ñтим клаÑÑом" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Изменить темы Ð´Ð»Ñ Ñтатей в клаÑÑах" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Изменить права Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð´Ð»Ñ ÐºÐ»Ð°ÑÑа %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Изменить права Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð½Ð° дополнительное поле %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Изменить права пользователей группы %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Изменить права Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð½Ð° очередь %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Изменить пользователей, получающих ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ Ð¿Ð¾ почте к заÑвке #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Модуль" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Пнд" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Понедельник" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "МеÑÑц" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "ЕжемеÑÑчно" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Подробнее об авторе заÑвки" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "ПеремеÑтить" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "ПеренеÑти Ñюда" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "ÐеÑколько значений" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Ð’Ñ‹ должны указать ИмÑ" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Ваши заÑвки Ñо ÑтатуÑом: %1" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Мои подтверждениÑ" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "Мои реÑурÑÑ‹" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Ваши ÑегоднÑшние заÑвки" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Мои напоминаниÑ" #: etc/initialdata:890 msgid "My Tickets" msgstr "Мои заÑвки" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Ваши подтверждениÑ" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "Мои закрытые заÑвки" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Ваши информационные панели" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Мои открытые заÑвки" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Мои напоминаниÑ" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Ваши Ñохранённые запроÑÑ‹" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "МоиРеÑурÑÑ‹" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "МоиÐапоминаниÑ" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "ÐÐ¾Ð²Ð°Ñ Ð¡Ñ‚Ñ€Ð¾ÐºÐ°" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "ИмÑ" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Ð˜Ð¼Ñ Ð¸ Ð°Ð´Ñ€ÐµÑ Ñлектронной почты" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Ð˜Ð¼Ñ ÑƒÐ¶Ðµ иÑпользуетÑÑ" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "Ðеобходимо ввеÑти имÑ" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "ИмÑ:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Ðикогда" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Ðовых" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "ÐÐ¾Ð²Ð°Ñ ÑтатьÑ" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "ÐÐ¾Ð²Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ð¾Ð½Ð½Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Ðовые ÑвÑзи" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Ðовое ожидающее подтверждение" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Ðовый поиÑк" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Ðовые ÑообщениÑ" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Ðовый пароль" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Отправлено Ñообщение Ñ Ð½Ð¾Ð²Ñ‹Ð¼ паролем" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Ðовое напоминание:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "ÐÐ¾Ð²Ð°Ñ Ð·Ð°Ñвка" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "ÐÐ¾Ð²Ð°Ñ Ð·Ð°Ñвка не ÑущеÑтвует" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Ðовые заÑвки не могут иметь ÑÑ‚Ð°Ñ‚ÑƒÑ '%1' в Ñтой очереди" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Ðовые наблюдатели" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Вперёд" #: lib/RT/User.pm:96 msgid "NickName" msgstr "ПÑевдоним" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "ПÑевдоним" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Ðет" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "Ð”Ð»Ñ Ñтого адреÑа нет %1 ключей" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "%1 не загружен" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Ðет Ñтатей, ÑоответÑтвующих %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "КлаÑÑ Ð½Ðµ указан" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Ðе найдены клаÑÑÑ‹, удовлетворÑющие критериÑм поиÑка." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Ðет дополнительного полÑ" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Дополнительное поле не указано" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Группа не указана" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Ðет запроÑа" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Очередь не указана" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Пользователь не найден. ОбратитеÑÑŒ к вашему админиÑтратору." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Ðет Темы" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Ðет шаблона" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Ðет дейÑтвиÑ" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "Ðе найдено реÑурÑов, удовлетворÑющих критериÑм поиÑка." #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "Ðе указан каталог" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "Ðе найдено каталогов, удовлетворÑющих критериÑм поиÑка." #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Колонка не указана" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Ðет комментариев о пользователе" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "Ðе найдено дополнительных ролей, удовлетворÑющих критериÑм поиÑка." #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Ðет опиÑÐ°Ð½Ð¸Ñ Ð´Ð»Ñ %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "Ðет глобального шаблона %1" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Ðе указана группа" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Группы, удовлетворÑющие уÑловиÑм поиÑка, не найдены." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Ðет ключа, подходÑщего Ð´Ð»Ñ ÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ." #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Ðет приÑоединенных Ñообщений" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Ðе предоÑтавлено имÑ" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Ðе требует шифрованиÑ" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Пароль не уÑтановлен" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Ðет прав Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´ÐµÐ¹" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Ðет прав Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð·Ð°Ñвок в очереди '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Ðет прав Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñмотра Ñтой заÑвки" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "Ðет прав Ð´Ð»Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ реÑурÑа" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "Ðет прав Ð´Ð»Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ каталога" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Ðет доÑтупа Ð´Ð»Ñ ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð¸Ñка в общих наÑтройках" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Ðет прав Ð´Ð»Ñ ÑƒÑтановки наÑтроек" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Ðет прав на проÑмотр Ñтатьи" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Ðет прав Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñмотра изменений Ñтой заÑвки" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Пользователи не выбраны." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Ðет Ñекретного ключа" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Очереди, удовлетворÑющие уÑловию поиÑка, не найдены." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Право не указано" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Права не найдены" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "Ðе хватает прав, чтобы добавить '%1' в качеÑтве админиÑтративной копии Ð´Ð»Ñ Ð·Ð°Ñвки." #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Ðет запроÑа Ð´Ð»Ñ Ð¿Ð¾Ð¸Ñка." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Ðет темы" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Ðет такого ключа или ключ не подходит Ð´Ð»Ñ Ð¿Ð¾Ð´Ð¿Ð¸ÑываниÑ" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "Ðет шаблона '%1' в очереди '%2' или общего." #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "ЗаÑвки не найдены." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Тип транзакции не указан" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Ðет пригодных к иÑпользованию ключей." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Пользователи, удовлетворÑющие уÑловию поиÑка, не найдены." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Ðикто" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Ðе задано" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "ÐеÑущеÑтвующее поле?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "Ðет примененных Ñкриплетов" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Ðе найдено" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Ð’Ñ‹ не вошли в ÑиÑтему." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Ðе уÑтановлено" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Ðе иÑпользуете мобильный обозреватель?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "ПримечаниÑ" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Ðевозможно отправить уведомление" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "УведомлÑть ÐдминиÑтративныеКопии" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "УведомлÑть ÐдминиÑтративныеКопии как Комментарий" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "УведомлÑть Копии" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "УведомлÑть Копии как Комментарий" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "УведомлÑть других Получателей" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "УведомлÑть других Получателей как Комментарий" #: etc/initialdata:47 msgid "Notify Owner" msgstr "УведомлÑть ОтветÑтвенного" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "Оповещать ответÑтвенного и админиÑтративные копии" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "УведомлÑть ОтветÑтвенного как Комментарий" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "УведомлÑть ОтветÑтвенного об отклонении заÑвки" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "ОповеÑтить владельца о подтверждении его заÑвки и возможноÑти работы над ней" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "ОповеÑтить владельца о подтверждении его заÑвки некоторыми или вÑеми утверждающими" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "ОповеÑтить владельца или админиÑтративные копии." #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "ОповеÑтить ОтвеÑтвенного, Инициатора, Копии и ÐдминиÑтративные Копии" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "ОповеÑтить ОтвеÑтвенного, Инициатора, Копии и ÐдминиÑтративные Копии (Комментарий)" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "УведомлÑть ОтветÑтвенных и ÐдминиÑтративныеКопии о новых, ожидающих их подтверждениÑÑ…" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "ОповеÑтить автора заÑвки о подтверждении её вÑеми утверждающими" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "ОповеÑтить автора заÑвки о подтверждении её некоторыми утверждающими" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "УведомлÑть ÐвторовЗаÑвки" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "УведомлÑть ÐвторовЗаÑвки и Копии" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "УведомлÑть ÐвторовЗаÑвки и Копии как Комментарий" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "УведомлÑть о непрочитанных ÑообщениÑÑ…" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "ÐоÑ" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ИЛИ" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Объект" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Ðевозможно Ñоздать объект" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Ðевозможно удалить объект" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Объект Ñоздан" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Объект удалён" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "Ðе загружен переданный объект" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "ÐеÑовпадение типа объекта" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "СпиÑок объектов пуÑÑ‚" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Окт" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "%1, %2 пиÑал:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "При закрытии" #: etc/initialdata:170 msgid "On Comment" msgstr "Ðа комментарий" #: etc/initialdata:142 msgid "On Correspond" msgstr "При КорреÑпонденции" #: etc/initialdata:131 msgid "On Create" msgstr "При Создании" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "При переÑылке" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "При ПереÑылке ЗаÑвки" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "При ПереÑылке Транзакции" #: etc/initialdata:191 msgid "On Owner Change" msgstr "При Изменении ОтветÑтвенного" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "При Изменении Приоритета" #: etc/initialdata:199 msgid "On Queue Change" msgstr "При Изменении Очереди" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "При отклонении" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "При Переоткрытии" #: etc/initialdata:205 msgid "On Resolve" msgstr "При Решении" #: etc/initialdata:176 msgid "On Status Change" msgstr "При Изменении СтатуÑа" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "При измененении ВремениВРаботе" #: etc/initialdata:136 msgid "On Transaction" msgstr "При Транзакции" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "ÐžÐ´Ð½Ð¾ÐºÑ€Ð°Ñ‚Ð½Ð°Ñ ÑÐºÑ€Ñ‹Ñ‚Ð°Ñ ÐºÐ¾Ð¿Ð¸Ñ" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "ÐžÐ´Ð½Ð¾ÐºÑ€Ð°Ñ‚Ð½Ð°Ñ ÐºÐ¾Ð¿Ð¸Ñ" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Показывать Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸Ñ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ð´Ð»Ñ Ð·Ð°Ð¿Ñ€Ð¾Ñов, Ñозданных поÑле %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Показывать Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸Ñ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ð´Ð»Ñ Ð·Ð°Ð¿Ñ€Ð¾Ñов Ñозданных до %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Показывать дополнительные Ð¿Ð¾Ð»Ñ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ длÑ:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "Открыть Ðеактивные ЗаÑвки" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Открыть" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Открытые заÑвки" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Открыть ÑÑылку" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "Открыть неактивные заÑвки" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Открытые заÑвки" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Открыть заÑвки при корреÑпонденции" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "ÐžÐ¿ÐµÑ€Ð°Ñ†Ð¸Ð¾Ð½Ð½Ð°Ñ ÑиÑтема" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Параметр" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Параметры" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "Пользователи Oracle не могут иметь поуÑтые пароли." #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Сортировать по" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "ОрганизациÑ" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "ЗаÑвка-первоиÑточник: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Сохранено иÑходÑщее Ñообщение о комментарии" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Сохранено иÑходÑщее Ñообщение" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "ИÑходÑÑ‰Ð°Ñ Ð¿Ð¾Ñ‡Ñ‚Ð°" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Обзор" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Быть ответÑтвенным за заÑвки" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "ОтветÑтвенный" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "ОтветÑтвенный %1 не имеет доÑтаточных прав Ð´Ð»Ñ Ñ‚Ð¾Ð³Ð¾, чтобы быть ответÑтвенным за Ñту заÑвку" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "ОтветÑтвенный изменен Ñ %1 на %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "ОтветÑтвенный принудительно изменен Ñ %1 на %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "ИмÑОтветÑтвенного" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Страница" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Страница 1 из 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Страница не найдена" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Пейджер" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Пейджер" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "Родитель" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Предки" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Пароль" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Пароль изменен" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Пароль не уÑтановлен." #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Пароль должен ÑоÑтоÑÑ‚ не менее чем из %quant(%1,Ñимвола,Ñимволов,Ñимволов)" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Пароль не отображаетÑÑ" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Пароль уÑтановлен" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Пароль: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Пароль: доÑтуп запрещен" #: etc/initialdata:714 msgid "PasswordChange" msgstr "ИзменениеПаролÑ" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Пароли не Ñовпадают" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Путь к sendmail'у" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "Ð’ ожидании %quant(%1,утверждениÑ,утверждений,утверждений)." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "Ð’ ожидании %quant(%1,заÑвки,заÑвок,заÑвок)." #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "Ожидает" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Пользователи" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Люди, ÑвÑзанные Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´ÑŒÑŽ %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Выполнить дейÑтвие, указанное пользователем" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Perl" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "ПорÑдок поиÑка библиотек Perl" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "ÐавÑегда удалить данные из RT" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "ДоÑтуп запрещён" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "ДоÑтуп запрещён" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Ðомера телефонов" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "Изображение" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "ТекÑтовый шаблон Ðвтоответа" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "ТекÑтовый шаблон админиÑтративного комментариÑ" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "ТекÑтовый шаблон админиÑтративной перепиÑки" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "ТекÑтовый шаблон перепиÑки" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "ТекÑтовый шаблон транзакции" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Проверьте, пожалуйÑта, Ð°Ð´Ñ€ÐµÑ Ð¸ попробуйте еще раз." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "ПожалуйÑта введите Ваш текущий пароль правильно." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "ПожалуйÑта введите Ð’Ðш текущий пароль." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "Возможно подделка межÑайтовых запроÑов" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "Предопределенный поиÑковый Ð·Ð°Ð¿Ñ€Ð¾Ñ '%1' не найден" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "ÐаÑтройки" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "ÐаÑтройки %1 Ð´Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "ÐŸÑ€ÐµÐ´Ð¿Ð¾Ñ‡Ñ‚ÐµÐ½Ð¸Ñ Ñброшены." #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "ÐаÑтройки %1 Ñохранены." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "ÐŸÑ€ÐµÐ´Ð¿Ð¾Ñ‡Ñ‚ÐµÐ½Ð¸Ñ Ñохранены Ð´Ð»Ñ Ð¼ÐµÐ½ÑŽ информационных панелей" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "ÐаÑтройки Ð´Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ %1 Ñохранены." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "ÐаÑтройки Ñохранены." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "ÐŸÑ€ÐµÐ´Ð¿Ð¾Ñ‡Ñ‚ÐµÐ½Ð¸Ñ Ð½Ðµ найдены" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Предпочитаемый ключ: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Предпочитаемый ключ" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Подготовка не реализована" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "Ðажмите %1 Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñмотра Ñочетаниий клавиш быÑтрго доÑтупа." #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Ðазад" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Пользователь %1 не найден." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "РаÑпечатать Ñто Ñообщение" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Приоритет" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "КонфиденциальноÑть" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "КонфиденциальноÑть:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Секретный ключ" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "Секретные ключи Ð´Ð»Ñ %1" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "Секретные ключи" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Привелигированные" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "СоÑтоÑние привилегий: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Привилегированные пользователи" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "Привилегированные: Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ; Ðепривилегированные: Ð¸Ð¼Ñ Ð¸ Ð°Ð´Ñ€ÐµÑ Ñлектронной почты" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "ПÑевдогруппы Ð´Ð»Ñ Ð²Ð½ÑƒÑ‚Ñ€ÐµÐ½Ð½ÐµÐ³Ð¾ иÑпользованиÑ" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "Публичный ключ '0x%1' необходим Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐºÐ¸ подпиÑи" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "Открытые ключи Ð´Ð»Ñ %1" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Очереди" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "ЗапроÑ" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "ПоÑтроитель запроÑа" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Очередь" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "Ðевозможно загрузить очередь %1." #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Очередь %1 не найдена" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Ðаименование очереди" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Очередь уже ÑущеÑтвует" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Ðевозможно Ñоздать очередь" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Ðевозможно загрузить очередь" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Очередь Ñоздана" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Ðомер очереди" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Очередь не найдена" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Ключ Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "ÐдминиÑтративнаÑКопиÑОчереди" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "ИмÑОчереди" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "ÐаблюдательОчереди" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Очереди" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Очереди, которыми вы управлÑете" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Очереди, Ð´Ð»Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ñ… вы ÑвлÑетеÑÑŒ ÐдминиÑтративнойКопией" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "БыÑтрый поиÑк" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "БыÑтрое Ñоздание заÑвки" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "БыÑтроеСоздание" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "ÐаÑтройка RT" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "Email админиÑтратора RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "ÐаÑтройки RT" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "Ошибка RT" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "Портал RT" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "Обзор RT" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "Обзор RT Ð´Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT может взаимодейÑтвовать Ñ Ð²Ð°ÑˆÐ¸Ð¼Ð¸ пользователÑми по новым заÑвкам или новой корреÑпонденции по заÑвкам. Укажите нам где найти sendmail (или sendmail-ÑовмеÑтимый бинарник, например иÑпользуемый postfix'ом). RT также необходимо знать кого нужно извещать, когда кто-то отÑылает неверную почту. Это не должен быть Ð°Ð´Ñ€ÐµÑ Ð´Ð»Ñ Ð¾Ð±Ñ€Ð°Ñ‚Ð½Ð¾Ð¹ ÑвÑзи Ñ RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT может добавлÑть Ñодержимое другого реÑурÑа Ñети, когда отображает Ñто дополнительное поле." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT может преобразовывать Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñтого дополнительного Ð¿Ð¾Ð»Ñ Ð² гиперÑÑылки на другой ÑервиÑ." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT Ð´Ð»Ñ %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "Обнаружена Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ð°Ñ %1подделка межÑайтовых запроÑов%2 Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð³Ð¾ запроÑа, так как %3. Злонамеренный атакующий возможно пытаетÑÑ Ð²Ñ‹Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÑŒ %1%4%2 от Вашего имени. ЕÑли данный Ð·Ð°Ð¿Ñ€Ð¾Ñ Ñделан не Вами, необходимо оповеÑтить Ñлужбу безопаÑноÑти." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ð¹" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT будет ÑоединÑтьÑÑ Ñ Ð±Ð°Ð·Ð¾Ð¹ данных под Ñтим пользователем. Он будет Ñоздан Ð´Ð»Ñ Ð²Ð°Ñ." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT ÑоздаÑÑ‚ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ \"root\" и уÑтановит Ñто в качеÑтве его паролÑ" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT заменит %1 и %2 идентификатором запиÑи и значением дополнительного Ð¿Ð¾Ð»Ñ ÑоответÑтвенно" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT будет иÑпользовать Ñту Ñтроку Ð´Ð»Ñ Ð¾Ð´Ð½Ð¾Ð·Ð½Ð°Ñ‡Ð½Ð¾Ð¹ идентификации вашей инÑталлÑции и будет иÑкать её в теме пиÑем Ð´Ð»Ñ Ñ€ÐµÑˆÐµÐ½Ð¸Ñ ÐºÐ°ÐºÐ¾Ð¹ заÑвке Ñто Ñообщение принадлежит. Мы рекомендуем, чтобы вы пропиÑали здеÑÑŒ ваш интернет домен. Ðапример: example.com" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT поддерживает различные СУБД: MySQL, PostgreSQL, Oracle и SQLite." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "Ð¡ÑƒÐ¼Ð¼Ð°Ñ€Ð½Ð°Ñ ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð»Ð¾Ð³Ð¾Ð² RT приведена ниже:" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Открыть заново" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Полное имÑ" #: lib/RT/User.pm:95 msgid "RealName" msgstr "ПолноеИмÑ" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Получатели" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "ЗапиÑать вÑе изменениÑ" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "СÑылаетÑÑ Ð½Ð°" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "СÑылка на заÑвку заÑвки %1 добавлена" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "СÑылка на заÑвку заÑвки %1 удалена" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "СÑылка на %1 добавлена" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "СÑылка на %1 удалена" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Ðа неё ÑÑылаютÑÑ" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "ÐаÐеёСÑылаютÑÑ" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "СÑылаетÑÑ Ð½Ð°" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "СÑылаетÑÑÐа" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "ОбновлÑть" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "ОбновлÑть Ñту Ñтраницу каждые %quant(%1,минуту,минуты,минут)." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Отклонить" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Запомнить очередь по умолчанию" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Ðапоминание" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Ðапоминание '%1' добавлено" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Ðапоминание '%1' завершено" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "Ðапоминание '%1' открыто заново" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "Ðапоминание '%1': %2" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "ÐапоминаниÑ" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "ÐÐ°Ð¿Ð¾Ð¼Ð¸Ð½Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ð·Ð°Ñвки #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Удалить админиÑтративную копию" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Удалить закладку" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Удалить копию" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Удалить автора заÑвки" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "Тип визуализации" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Ответить" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "ÐÐ´Ñ€ÐµÑ Ð´Ð»Ñ Ð¾Ñ‚Ð²ÐµÑ‚Ð°" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Отвечать авторам заÑвки" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Отвечать на заÑвки" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Ðвтор заÑвки" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "ГруппаÐвтораЗаÑвки" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Ðвторы заÑвок" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Ðеобходимый параметр '%1' не указан" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "ОчиÑтить" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "СброÑить наÑтройки обзорной Ñтраницы RT" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "СброÑить Ñекретную метку аутентификации" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "СброÑить на Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¿Ð¾ умолчанию" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "ВоÑÑтановить логотип RT" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "ВоÑÑтавновить иÑходную тему RT" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Домашний" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Решить" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Решить заÑвку #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Решено" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "Решено в HTML" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Ответ" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Результаты" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Вернуть к заÑвке" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Повторите пароль" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Откатить" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "Форматированный текÑÑ‚ (HTML) показывает цветной текÑÑ‚, курÑив, жирный шрифт и Ñ‚.д." #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Право загружено" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Право не может быть отозвано" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Право не загружено" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Ðевозможно выдать права Ð´Ð»Ñ %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Права Ð´Ð»Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñтраторов" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Права Ð´Ð»Ñ Ð¸Ñполнителей" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "Группа уже ÑущеÑтвует" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Роли" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Строк" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Строк Ð´Ð»Ñ Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Строк на Ñтранице" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "Сертификат SMIME" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "Сертификат S/MIME" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL запроÑÑ‹" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "SQL-запроÑÑ‹ протоколируютÑÑ Ð½Ð° уровне %1 и также доÑтупны на %2Ñтранице SQL-запроÑов%3." #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "SQL запроÑÑ‹ не логируютÑÑ" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite -- СУБД, не Ñ‚Ñ€ÐµÐ±ÑƒÑŽÑ‰Ð°Ñ Ñервера и каких-либо наÑтроек. Ðвторы RT рекомендуют ее иÑпользование в целÑÑ… тетÑированиÑ, демонÑтрации и разработки, но не рекомендуют иÑпользовать на выÑоконагружегнных боевых Ñерверах." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Суб" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Суббота" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Сохранить" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Сохранить изменениÑ" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Сохранить наÑтройки" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Сохранить как новый" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Сохранить новый" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Сохранить поиÑковый запроÑ" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Сохранено %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Сохраненный поиÑк" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Сохранённые поиÑковые запроÑÑ‹" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Сохраненные диаграммы" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "Сохраненный поиÑк %1 не найден" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Сохранённые запроÑÑ‹" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "СохраненныеПоиÑки" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "ÐžÐ±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ñхемы из %1" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Скриплет #%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Скриплет Ñоздан" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "Скриплет не был добавлен" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Скриплеты" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Скриплеты и получатели" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "Скриплеты обычно выполнÑÑŽÑ‚ÑÑ Ð¿Ð¾Ñле каждого индивидуального Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð·Ð°Ñвки." #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "ПоиÑк" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "ПоиÑковый Ð·Ð°Ð¿Ñ€Ð¾Ñ %1 обновлен" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "ПоиÑк Ñтатей" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Параметры поиÑка" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Ðайти Ñтатьи, Ñодержащие" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "ПоиÑк подтверждений" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "ИÑкать Ñтатью" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "ПоиÑк заÑвок" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "Можно иÑкать заÑвки по %1цифровому%2 идентификатору, Ñловам из темы запроÑа %1\"в кавычках\"%2, %1очередÑм%2 по имени, ответÑтвенным по %1имени%2, авторам по %1email-адреÑу%2, по %1ÑтатуÑам%2 заÑвки. ПоиÑк по %1@домен.ru%2 вернет заÑвки Ñ Ð°Ð²Ñ‚Ð¾Ñ€Ð°Ð¼Ð¸, email-адреÑа которых из Ñтого домена." #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Параметры поиÑка" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Результаты поиÑка" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Интервал Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ñтраницы результатов поиÑка" #: share/html/Search/index.html:48 msgid "Searches" msgstr "ПоиÑки" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "ПоиÑк по вÑему текÑту каждой заÑвки может занÑть длительное времÑ, но еÑли вам нужно Ñто, вы можете найти любое Ñлово в полной иÑтории заÑвки, Ð²Ð²ÐµÐ´Ñ %1ЗÐПРОС." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Ð¡ÐµÐºÑ€ÐµÑ‚Ð½Ð°Ñ Ð¼ÐµÑ‚ÐºÐ° аутентификации" #: bin/rt-crontool:352 msgid "Security:" msgstr "БезопаÑноÑть:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Смотрите также:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "ПоÑмотреть Ñтатьи в Ñтом клаÑÑе" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "ПроÑмотреть Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² Ñтом клаÑÑе" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Выбрать" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Выберите дополнительные Ð¿Ð¾Ð»Ñ Ð´Ð»Ñ Ñтатей во вÑех клаÑÑах." #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Выберите тип базы данных" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Выбрать клаÑÑ" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Выберите дополнительное поле" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "Выберите Дополнительную Роль" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "Выбрать Ñкриплет" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "Выберите каталог" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Выбрать цвет Ð´Ð»Ñ Ñекции" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "Выберите дополнительную роль" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Выберите группу" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Выберите очередь" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Выберите очередь Ð´Ð»Ñ Ð²Ð°ÑˆÐµÐ¹ новой заÑвки" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Выбрать Ñекцию" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Выберите пользователÑ" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Выбрать Ñтатью из %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Выберите Ñтатью Ð´Ð»Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Выберите другой Ñзык" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Выберите дополнительные Ð¿Ð¾Ð»Ñ Ð´Ð»Ñ Ð²Ñех очередей" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Выберите дополнительные Ð¿Ð¾Ð»Ñ Ð²Ñех пользовательÑких групп" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Выберите дополнительные Ð¿Ð¾Ð»Ñ Ð²Ñех пользователей" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Выберите дополнительные Ð¿Ð¾Ð»Ñ Ð·Ð°Ñвок во вÑех очередÑÑ…" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Выберите дополнительные Ð¿Ð¾Ð»Ñ Ñ‚Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ð¹ заÑвок во вÑех очередÑÑ…" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Выбрать дату" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Выбрать дату и времÑ" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "Выбор ÑƒÑ€Ð¾Ð²Ð½Ñ Ð¸ÑÐ¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ð³Ð»Ð¾Ð±Ð°Ð»ÑŒÐ½Ð¾Ð³Ð¾ Ñкриплета:" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Выбор неÑкольких дат" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "выбор неÑкольких дат и времени" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Выбрать неÑколько значений" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Выбрать одно значение" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Выберите очереди, которые будут отображатьÑÑ Ð½Ð° Ñтранице \"Обзор RT\"" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Веберите темы Ð´Ð»Ñ Ñтатьи" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Выберите макÑимум %quant(%1,дату,даты,дат)" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "Выберите макÑимум %quant(%1,времÑ,времени,времен)" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Выберите макÑимум %quant(%1,значение,значениÑ,значений)" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Выбранные дополнительные полÑ" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Выбранные очереди" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Выбранный ключ либо не доверÑемый, либо больше не ÑущеÑтвует." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Выбранные объекты" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Выбор изменён. ПожалуйÑта, Ñохраните ваши изменениÑ" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "ОтправлÑет Ñообщение ответÑтвенному и вÑем наблюдателÑм" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "ОтправлÑет Ñообщение ответÑтвенному и вÑем наблюдателÑм как комментарий" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Отправить Ñообщение вÑем Ðвторам заÑвки и КопиÑм" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Отправить Ñообщение вÑем Ðвторам заÑвки и КопиÑм" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "Отправка предыдущего ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐ¸Ð»Ð°ÑÑŒ Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ¾Ð¹. ПожалуйÑта ÑвÑжитеÑÑŒ Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñтратором Ð´Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ð¹ информации." #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "ОтправлÑет Ñообщение авторам заÑвки" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "ОтправлÑть почту Ñвно указанным КопиÑм и СкрытымКопиÑм" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "ОтправлÑть почту КопиÑм" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "ОтправлÑть почту КопиÑм как комментарий" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "ОтправлÑет Ñообщение ответÑтвенному и вÑем админиÑтративным копиÑм" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "ОтправлÑет Ñообщение ответÑтвенному, еÑли указан, иначе вÑем админиÑтративным копиÑм" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "ОтправлÑть почту ÐдминиÑтративнымКопиÑм" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "ОтправлÑть почту ÐдминиÑтративнымКопиÑм как комментарий" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "ОтправлÑть почту ОтветÑтвенному" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Сен" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Ð—Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñ€Ð°Ð·Ð´ÐµÐ»ÑÑŽÑ‚ÑÑ Ð¿Ñ€Ð¾Ð±ÐµÐ»Ð°Ð¼Ð¸" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "УÑтановить Ñеркретный ключ" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "ÐаÑтройки" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Короткое Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Показать" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "Показать меню 'ÐдминиÑтрирование'" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "Показать меню 'Статьи'" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Показать колонки" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Показать результаты" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Показать ÑвойÑтва заÑвок на %1-м уровне" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Показать веÑÑŒ цитируемый текÑÑ‚" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Показать подтвержденные запроÑÑ‹" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Отображать также" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Показать Ñокращенные заголовки" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Показать отклонённые запроÑÑ‹" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Показать вÑе заголовки" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "Показать иÑторию" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Показать опиÑÐ°Ð½Ð¸Ñ ÑÑылок" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Показывать Ñтарые Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð¿ÐµÑ€Ð²Ñ‹Ð¼Ð¸" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Показать ожидающие запроÑÑ‹" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Показать цитируемый текÑÑ‚" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Показать запроÑÑ‹, ждущие других подтверждений" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Показать 10 Ñамых приоритетных активных запроÑов данного пользователÑ" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Показать 10 заÑвок заÑÐ²Ð¸Ñ‚ÐµÐ»Ñ Ñ Ð½Ð°Ð¸Ð²Ñ‹Ñшим приоритетом" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Показать 10 наиболее приоритетных заÑвок заÑвителÑ" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Показать иÑторию заÑвки" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "ЗачиÑтка" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Ð‘Ð¾ÐºÐ¾Ð²Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "ПодпиÑать" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "ПодпиÑывать по умолчанию" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "ДобавлÑть ÑÐµÐ±Ñ ÐºÐ°Ðº Ðвтора заÑвки или Копию заÑвки/очереди" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "ДобавлÑть ÑÐµÐ±Ñ ÐºÐ°Ðº ÐдминиÑтративнуюКопию заÑвки или очереди" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "ПодпиÑÑŒ" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "ПроÑтой" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "ПроÑтой поиÑк" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Одно значение" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Ð˜Ð¼Ñ Ñайта" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Размер" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "ПропуÑтить меню" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "ПропуÑкаем октлюченного пользователÑ" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Маленький" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Ðекоторые обозреватели могут загружать Ñодержимое только Ñ Ñ‚Ð°ÐºÐ¾Ð³Ð¾ же домена, как у Ñервера RT." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Что-то пошло не так. ОбратитеÑÑŒ к ÑиÑтемному админиÑтратору." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Сортировка" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Сортировка" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "ИÑточник" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Укажите, когда" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Ð­Ð»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð°Ñ Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ð°" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "СтадиÑ" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "ПриоÑтановить" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Добавьте перед иÑкомым запроÑом поддерживаемое Ð¸Ð¼Ñ Ð¿Ð¾Ð»Ñ Ñ‡ÐµÑ€ÐµÐ· двоеточие, как в '%1' и '%2', Ð´Ð»Ñ Ð¾Ð´Ð½Ð¾Ð·Ð½Ð°Ñ‡Ð½Ð¾Ð³Ð¾ ÑƒÐºÐ°Ð·Ð°Ð½Ð¸Ñ Ñ‚Ð¸Ð¿Ð° запроÑа" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Ðачата" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "ÐачнётÑÑ" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "СоÑтоÑние" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "СтатуÑ" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "СтатуÑ'%1' не ÑвлÑетÑÑ Ð¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ñ‹Ð¼ ÑтатуÑом Ð´Ð»Ñ %2." #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "СтатуÑ'%1' не ÑвлÑетÑÑ Ð¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ñ‹Ð¼ Ð´Ð»Ñ Ð·Ð°Ñвок в Ñтой очереди" #: etc/initialdata:449 msgid "Status Change" msgstr "Изменение ÑтатуÑа" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "Изменение ÑтатуÑа в HTML" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Ð¡Ñ‚Ð°Ñ‚ÑƒÑ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½ Ñ %1 на %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Изменение ÑтатуÑа" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Переназначать Ñебе" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Переназначить заÑвки Ñебе" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Шаг %1 из %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Ðазначен ответÑтвенным вмеÑто %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Стиль" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Тема" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Метка темы" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Тема изменена на %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Отправить" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "ПодпиÑатьÑÑ" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "ПодпиÑатьÑÑ Ð½Ð° Ñодержимое информационной панели %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "ПодпиÑыватьÑÑ Ð½Ð° Ñодержимое информационных панелей" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "ПодпиÑан на Ñодержимое информационной панели %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "ПодпиÑка" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Ðевозможно Ñоздать подпиÑку: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "ПодпиÑка обновлены" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Данные уÑпешно раÑшифрованы" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Данные уÑпешно зашифрованы" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Итог" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "Итог Создана-Обновлена" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "Итог Создана-Решена" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "Итог Создана-Ðачата" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "Итог Дан Ñрок-Решена" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "Итог Ðачата-Решена" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "Итог ÐачнетÑÑ-Ðачата" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Ð’Ñк" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "ВоÑкреÑенье" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "ПриоÑтановлена" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "СиÑтема" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "СиÑÑ‚ÐµÐ¼Ð½Ð°Ñ ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "СиÑтемные наÑтройки" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "СиÑÑ‚ÐµÐ¼Ð½Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "СиÑÑ‚ÐµÐ¼Ð½Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "СиÑтемные утилиты" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Ошибка" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "СиÑÑ‚ÐµÐ¼Ð½Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°. Право не выдано." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "СиÑÑ‚ÐµÐ¼Ð½Ð°Ñ Ð¿Ñевдо-группа Ð´Ð»Ñ Ð²Ð½ÑƒÑ‚Ñ€ÐµÐ½Ð½ÐµÐ³Ð¾ иÑпользованиÑ" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "ВзÑть" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Ðазначать ÑÐµÐ±Ñ Ð¾Ñ‚Ð²ÐµÑ‚Ñтвенным за заÑвки" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Ðазначен ответÑтвенным" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "РаÑÑкажите нам немного о" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Шаблон" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Шаблон #%1 удалён" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "Шаблон '%1' не ÑвлÑетÑÑ Ð³Ð»Ð¾Ð±Ð°Ð»ÑŒÐ½Ñ‹Ð¼" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "Шаблон '%1' не ÑвлÑетÑÑ Ð½Ð¸ глобальным, ни Ñпецифичным Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Шаблон '%1' не найден" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "Шаблон не включает код на Perl" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Шаблон пуÑтой" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "Шаблон иÑпользуетÑÑ" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Шаблон ÑвлÑетÑÑ Ð¾Ð±Ñзательным аргументом" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Шаблон обработан" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Ошибка обработки шаблона" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "Ошибка обработки шаблона: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "Шаблон: %1" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Шаблоны" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Шаблоны Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸ %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "ТекÑÑ‚" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Отображение текÑтовых файлов отключено в наÑтройках." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Это уже текущее значение" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Это поле не может иметь такого значениÑ" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Эта заÑвка имеет неразрешенные завиÑимоÑти" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Пользователь уже ответÑтвенен за Ñту заÑвку" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Пользователь не ÑущеÑтвует" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Этот пользователь уже привилегированный" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Этот пользователь уже непривилегированный" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Этот пользователь теперь привилегированный" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Этот пользователь теперь непривилегированный" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Этот пользователь не может быть ответÑтвенным за заÑвки в Ñтой очереди" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Это не чиÑловой идентификатор" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "ОÑновное" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "ÐšÐ¾Ð¿Ð¸Ñ Ð·Ð°Ñвки" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Пароль админиÑтратора БД" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "ÐдминиÑÑ‚Ñ€Ð°Ñ‚Ð¸Ð²Ð½Ð°Ñ ÐºÐ¾Ð¿Ð¸Ñ Ð·Ð°Ñвки" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "Выбранные пользователи могут получать ÑообщениÑ, ÑвÑзанные Ñ Ð´Ð°Ð½Ð½Ð¾Ð¹ заÑвкой, в завиÑимоÑти от выполнÑемых дейÑтвий. ЕÑли необходимо отключить отправку Ñообщений - Ñнимите выделение Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÐµÐ¹." #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Доменное Ð¸Ð¼Ñ Ð²Ð°ÑˆÐµÐ³Ð¾ Ñервера базы данных (например 'db.example.com')" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "Ключ дезактивирован" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "Ключ был отозван" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "Ключ проÑрочен" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "Данный ключ имеет полное доверие" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "Данный ключ имеет абÑолютное доверие" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Ðовое значение уÑтановлено" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "ОтветÑтвенный за заÑвку" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Страница, которую вы запроÑили, не найдена." #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Ðвтор заÑвки" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "СиÑтеме не удалоÑÑŒ подпиÑать иÑходÑщую почту. Обычно, Ñто означает, что Ñлово-пароль неверно указано или, что GPG-агент не запущен. ПожалуйÑта, уведомите вашего ÑиÑтемного админиÑтратора как можно Ñкорее. Проблемные адреÑа:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Оформление" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "СущеÑтвует неÑколько ключей, подходÑщих Ð´Ð»Ñ ÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "ЕÑть новые непрочитанные ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð² данной заÑвке." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Данный ключ имеет ограниченное доверие" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Ðет подходÑщего Ð´Ð»Ñ ÑˆÐ¸Ñ„Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ ÐºÐ»ÑŽÑ‡Ð°." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "Ðет Ð¾Ñ‚Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ ÑтатуÑов между жизненными циклами '%1' и '%2'. СвÑжитеÑÑŒ Ñ ÑиÑтемным админиÑтратором." #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "СущеÑтвует один подходÑщий ключ, но уровень Ð´Ð¾Ð²ÐµÑ€Ð¸Ñ Ð½Ðµ уÑтановлен" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "Ошибка разбора поиÑкового запроÑа '%1'. Ð”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð°Ð¿Ð¸Ñана в журнал ошибок." #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Эти опции конфигурации позволÑÑŽÑ‚ задать некоторые базовые наÑтройки, необходимые Ð´Ð»Ñ ÑƒÑпешного запуÑка RT. Ðам необходимо знать Ð¸Ð¼Ñ Ð²Ð°ÑˆÐµÐ¹ инÑталлÑции RT и Ð¸Ð¼Ñ Ð´Ð¾Ð¼ÐµÐ½Ð°, где будет жить RT. Вам также необходимо будет уÑтановить пароль Ð´Ð»Ñ Ð²Ð°ÑˆÐµÐ³Ð¾ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñтративными правами по умолчанию." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "Данное дополнительное поле не может быть добавлено к Ñтому объекту" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "Данное дополнительное поле не имеет ÑпоÑобов отображениÑ" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Это возможноÑть доÑтупна только Ð´Ð»Ñ ÑиÑтемных админиÑтраторов." #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Эта возможноÑть доÑтупна только ÑиÑтемным админиÑтраторам" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "Эта заÑвка не может быть решена без подтверждениÑ" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "Эта заÑвка не может быть решена пока %numerate(%1,dependency is,dependencies are) не решены." #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Этот инÑтрумент позволÑет пользователю запуÑкать некоторые модули Perl из RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Похоже, что Ñта Ñ‚Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ Ð½Ðµ имеет Ñодержимого" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Чтв" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Четверг" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "ЗаÑвка" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "ЗаÑвка #%1 Изменение вÑех данных: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Граф взаимоÑвÑзей заÑвки #%1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "ЗаÑвка #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "ЗаÑвка %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "ЗаÑвка %1 Ñоздана в очереди '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "ЗаÑвка %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð·Ð°Ñвки # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "ЗаÑвка решена" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "ПоиÑк заÑвок" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Транзакции заÑвки" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "ЗаÑвка" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Содержимое заÑвки" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Тип данных Ñодержимого заÑвки" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "ЗаÑвка не может быть Ñоздана из-за внутренней ошибки" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Ðевозможно загрузить заÑвку" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Отображение заÑвки" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "ИнформациÑ" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Ð¡Ñ‚Ð°Ñ‚ÑƒÑ Ð·Ð°Ñвки изменен" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "Модуль поиÑка TicketSQL" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "ЗаÑвки" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "ЗаÑвки %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "ЗаÑвки %1 Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Мои заÑвки" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "От Ñтого Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸Ñ Ð·Ð°Ð²Ð¸ÑÑÑ‚ Ñледующие заÑвки:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "ВремÑ" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "РаÑчётное времÑ" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "ОÑталоÑÑŒ времени" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð² работе" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ð¸ Ñтраницы" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "РаÑчётноеВремÑ" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "ОÑталоÑьВремени" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "ВремÑВработе" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "ЧаÑовой поÑÑ" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Заголовок" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "ДлÑ" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Ð”Ð»Ñ Ð·Ð°Ð¿Ñ€Ð¾Ñа поддержки, обучениÑ, разработки на заказ или Ð»Ð¸Ñ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¾Ð±Ñ€Ð°Ñ‰Ð°Ð¹Ñ‚ÐµÑÑŒ %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "Отметить %quant(%1,очередь,очереди, очередей)" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Контакт" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Утилиты" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Разделы не найдены" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Разделы" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Ð’Ñего" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "Ð’Ñего Создана-Обновлена" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "Ð’Ñего Создана-Решена" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "Ð’Ñего Создана-Ðачата" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "Ð’Ñего Дан Ñрок-Решена" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "Ð’Ñего Ðачата-Решена" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "Ð’Ñего ÐачнетÑÑ-Ðачата" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "ТранзакциÑ" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Ð¢Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ %1 удалена" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Ð¢Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ Ñоздана" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Дополнительные Ð¿Ð¾Ð»Ñ Ñ‚Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ð¸" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "Ð¢Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ Ð² HTML" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "ТранзакциÑ->Создать невозможно, так как вы не указали тип объекта и идентификатор" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "ДатаТранзакции" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "Транзакции" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "ÐеизменÑемые транзакции" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Доверие" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Втр" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Вторник" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Тип" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Введите a: перед номерами Ñтатей или t: перед номерами заÑвок." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Тип изменён Ñ '%1' на '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "Отключить выбранные Ñкрипты" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "невозможно добавить ÑвÑзь к %1: %2" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Ðевозможно определить тип объекта или идентификатор" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Ðевозможно загрузить Ñтатью" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "ПодпиÑка на информационную панель '%1' не удалаÑÑŒ: ДоÑтуп запрещен." #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "Ðе авторизован" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "ЗдеÑÑŒ вы можете отключить ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ Ð¿Ð¾ почте Ð´Ð»Ñ ÐºÐ¾Ð½ÐºÑ€ÐµÑ‚Ð½Ñ‹Ñ… пользователей. Ð”Ð°Ð½Ð½Ð°Ñ Ð½Ð°Ñтройка работает только Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ операции. Перманентное отключение наÑтраиваетÑÑ Ð½Ð° Ñтранице Пользователи." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Отменить удаление" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "К Ñожалению, Ð´Ð»Ñ Ð²Ð°Ñ Ð½Ðµ Ñоздан аккаунт. Ваш админиÑтратор Ñможет найти больше информации в логах." #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Логин UNIX" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "ÐеизвеÑтно (уровень Ð´Ð¾Ð²ÐµÑ€Ð¸Ñ Ð½Ðµ уÑтановлен)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "ÐеизвеÑтно (данный уровень неизвеÑтен ÑиÑтеме)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "ÐеизвеÑÑ‚Ð½Ð°Ñ ÐºÐ¾Ð´Ð¸Ñ€Ð¾Ð²ÐºÐ° %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "ÐеизвеÑтное поле: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "ЕÑли не указан определенный ÑтатуÑ, то ищутÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ активные заÑвки (ÑтатуÑÑ‹: %1)." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Ðеограниченно" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Ðе ограничено" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "БезымÑнные панели" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "БезымÑнный запроÑ" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "ЗаÑвки без ответÑтвенных" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "ЗаÑвки без ответÑтвенных" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Ðе привилегированный" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Ðевыбранные дополнительные полÑ" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Ðевыбранные объекты" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Секретный ключ очищен" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Ðет ответÑтвенного" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Изменить" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Обновить график" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Обновить граф" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Обновить Ñто меню" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Изменить заÑвку" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Изменить тип" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Изменить формат и иÑкать" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Изменить неÑколько заÑвок" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Изменение не запиÑано." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Изменить заÑвку" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Изменение заÑвки #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Изменение заÑвки #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Изменение не было ни Ñообщением, ни комментарием." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "СтатуÑИзменениÑ" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Изменена" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Сохранённый Ð·Ð°Ð¿Ñ€Ð¾Ñ \"%1\" изменён" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "Обновление Ñ %1 на %2" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Загрузить" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Загрузить новый логотип" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Загрузить неÑколько файлов" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Загрузить неÑколько изображений" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Загрузить один файл" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Загрузить одно изображение" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Загрузить макÑимум %quant(%1,файл,файла,файлов)" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Загрузить макÑимум %quant(%1,изобрадение,изображениÑ,изображений)" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "ИÑпользование:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "ИÑпользовать разметку Ñ Ð´Ð²ÑƒÐ¼Ñ ÐºÐ¾Ð»Ð¾Ð½ÐºÐ°Ð¼Ð¸ Ð´Ð»Ñ Ñ„Ð¾Ñ€Ð¼ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¸ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð·Ð°Ñвок?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "иÑпользовать автодополнение Ð´Ð»Ñ Ð¿Ð¾Ð¸Ñковых форм?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "ИÑпользовать значение по умолчанию (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Другие админиÑтративные утилиты RT" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "ИÑпользовать ÑиÑтемное значение по умолчанию (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "ИÑпользуйте выпадающее меню Ð´Ð»Ñ Ð²Ñ‹Ð±Ð¾Ñ€Ð° тех изменений заÑвки, которые необходимо выделить в отдельную Ñтатью." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "ИÑпольуетÑÑ Ñкриплетами" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Пользователь" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "Пользователь '%1' заблокирован." #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "Пользователь '%1' заблокирован. Перейдите к наÑтройкам Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸ отметьте \"Разрешить доcтуп RT\"." #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Пользователь (Ñоздан - иÑтекает Ñрок)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Задано пользователем" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "ПользовательÑкие уÑÐ»Ð¾Ð²Ð¸Ñ Ð¸ результаты" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "Группы пользователей" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ пользователе" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Права пользователÑ" #: share/html/User/Search.html:48 msgid "User Search" msgstr "ПоиÑк пользователей" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ пользователе" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Пользователь запроÑил изменение неизвеÑтного типа Ð´Ð»Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ð³Ð¾ Ð¿Ð¾Ð»Ñ %1 Ð´Ð»Ñ Ð¾Ð±ÑŠÐµÐºÑ‚Ð° %2 #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Ðевозможно Ñоздать пользователÑ: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Пользователь Ñоздан" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Пользователь выключен" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Пользователь включен" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "У Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð½Ðµ указан Ð°Ð´Ñ€ÐµÑ email" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Пользователь загружен" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Группы, заданные пользователем" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "Пользователь:%1" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Формат имени пользователÑ" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Пользователи" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Пользователи, удовлетворÑющие критериÑм поиÑка" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "ИÑпользуетÑÑ Ñ‚Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Проверить запроÑ" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Проверка корректноÑти" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Значение" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "ЗначениÑ" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "ПеременнаÑ" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "ВерÑиÑ" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "ПроÑмотреть шаблоны Ñкриплета" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "ПроÑмотреть Ñкриплет" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "ПроÑмотреть Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ñ… полей" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "ПроÑмотр дополнительных полей" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "ПроÑмотр группы" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "ПроÑмотр панели группы" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "ПроÑматривать перÑональные информационные панели" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "ПроÑмотр очереди" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "ПроÑмотр Ñохраненных поиÑков" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "ПроÑматривать ÑиÑтемные информационные панели" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "ПроÑмотр приватных комментариев заÑвки" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "ПроÑмотр информации о заÑвке" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "выÑота окна WYSIWYG редактора" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "WYSIWYG компоновщик ÑообщениÑ" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Внимание! Это ÐЕ подпиÑано!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "Предупреждение: СлиÑние заÑвок - Ð½ÐµÐ¾Ð±Ñ€Ð°Ñ‚Ð¸Ð¼Ð°Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ð¸Ñ. Введите один номер заÑвки, Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð¹ необходимо объединить данную заÑвку." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Ðаблюдатель" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "ГруппаÐаблюдателÑ" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Ðаблюдатели" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "СиÑтема уÑтановки нашла БД и подключилаÑÑŒ как админиÑтратор БД. Ð’Ñ‹ можете нажать \"Изменить базовые наÑтройки\" ниже Ð´Ð»Ñ Ð¿Ñ€Ð¾Ð´Ð¾Ð»Ð¶ÐµÐ½Ð¸Ñ Ð½Ð°Ñтройки RT." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Ðам необходимо знать Ð¸Ð¼Ñ Ð±Ð°Ð·Ñ‹ данных, которую будет иÑпользовать RT и её меÑтонахождение. Также, нам необходимо знать Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ RT и его пароль. RT может Ñоздать базу данных Ð´Ð»Ñ Ð²Ð°Ñ, поÑтому нам необходимо знать и Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ñ Ð¿Ñ€Ð¸Ð²Ð¸Ð»ÐµÐ³Ð¸Ñми админиÑтратора базы данных, а также его пароль. Во Ð²Ñ€ÐµÐ¼Ñ Ñтапа 6 инÑталлÑции мы иÑпользуем Ñту информацию Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð¸ инициализации базы данных RT." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Порт веб-Ñервера" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Срд" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Среда" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "ÐеделÑГода" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Еженедельно" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Еженедельный дайджеÑÑ‚" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Добро пожаловать в RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Что Ñ Ñделал за ÑегоднÑ" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Что такое RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "Какие заÑвки отображаютÑÑ Ð² поле \"Подробнее о заÑвителе\"" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Когда RT не может обработать почтовое Ñообщение, куда оно должно быть переадреÑовано?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Когда RT отÑылает почту, он уÑтанавливает заголовки От: и Ответить: так, чтобы пользователи могли добавить к обÑуждению проÑтым нажатием Ответить в их почтовом клиенте. Он иÑпользует различные адреÑа Ð´Ð»Ñ ÐžÑ‚Ð²ÐµÑ‚Ð¾Ð² и Комментариев. Они могут быть изменены Ð´Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð¹ из ваших очередей. Эти адреÑа понадобÑÑ‚ÑÑ Ð¿Ñ€Ð¸ дальнейшем конфигурировании Ñ Ñ†ÐµÐ»ÑŒÑŽ иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¼Ñ‹ rt-mailgate." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Когда заÑвка Ñоздана" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "При Ñоздании заÑвки Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸Ñ ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»Ñть ОтветÑтвенного и ÐдминиÑтративнуюКопию заÑвки, ожидающей подтверждениÑ" #: etc/initialdata:137 msgid "When anything happens" msgstr "Когда что-либо произойдет" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Когда вы нажимаете 'Check Database Connectivity'" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "При закрытии заÑвки" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Когда заÑвка отклонена" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Когда заÑвка открыта заново" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Каждый раз при решении заÑвки" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Каждый раз при изменении ответÑтвенного заÑвки" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Каждый раз при изменении приоритета заÑвки" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Каждый раз при изменении очереди очереди" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Каждый раз при изменении ÑтатуÑа заÑвки" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Каждый раз при Ñрабатывании уÑловиÑ, заданного пользователем" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Каждый раз при добавлении комментариÑ" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Каждый раз при приходе корреÑпонденции" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Где раÑположен иÑполнÑемый файл sendmail." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "Ширина" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Крах" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Рабочий" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Рабочий телефон" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Ð’ работе" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "Ð’ работе %quant(%1,чаÑ,чаÑа,чаÑов) (%quant(%2,минута,минуты,минут))" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "Ð’ работе %quant(%1,минута,минуты,минут)" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "Год" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Да" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "Ð’Ñ‹ (%1) не авторизованы Ð´Ð»Ñ Ð´Ð¾Ñтупа к RT." #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Ð’Ñ‹ можете редактировать информационную панель и Вашу подпиÑку на неё в RT." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Ð’Ñ‹ уже ответÑтвенный за Ñту заÑвку" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "Ð’Ñ‹ наÑтроили шифрование иÑходÑщих Ñообщений, но возникли проблемы Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚Ñ‹Ð¼Ð¸ ключами/Ñертификатами получателей. Ðеобходимо иÑправить проблемы Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚Ñ‹Ð¼Ð¸ ключами/Ñертификатами, запретить отправку Ñообщений пользователÑм или отключить шифрование." #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "Ð’Ñ‹ наÑтроили шифрование иÑходÑщих Ñообщений, но возникли проблемы Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚Ñ‹Ð¼Ð¸ ключами/Ñертификатами получателей. Ðеобходимо иÑправить проблемы Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚Ñ‹Ð¼Ð¸ ключами/Ñертификатами, запретить отправку Ñообщений пользователÑм или отключить шифрование." #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "Ð’Ñ‹ не авторизованы Ð´Ð»Ñ Ð´Ð¾Ñтупа в RT." #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Ð’Ñ‹ можете перейти к первому непрочитаному Ñообщению или перейти к первому непрочитаному Ñообщению и отметить вÑе ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ ÐºÐ°Ðº прочитанные." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Ð’Ñ‹ также можете редактировать предварительно заданный запроÑ" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "Ð’Ñ‹ можете изменить шаблон, еÑли нужно" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Ð’Ñ‹ не можете задать пароль" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Ð’Ñ‹ можете назначать ответÑтвенного только Ð´Ð»Ñ Ñвоих или ничьих заÑвок." #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "Ð’Ñ‹ можете перехватить только заÑвки, принадлежащие кому-то еще." #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Ð’Ñ‹ можете назначать ÑÐµÐ±Ñ Ð¾Ñ‚Ð²ÐµÑ‚Ñтвенным только за заÑвки, которые никому не принадлежат" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Ð’Ñ‹ можете иÑкать по произвольному Ñлову в иÑтории заÑвки набрав %1Ñлово." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Ð’Ñ‹ не можете изменить ÑÑ‚Ð°Ñ‚ÑƒÑ Ñ '%1' на '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "У Ð²Ð°Ñ Ð½ÐµÑ‚ прав СуперпользователÑ." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "Ðет прав Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ñтатей в любых клаÑÑах." #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "Ðет прав Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñмотра Ñтатей во вÑех клаÑÑах." #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Ð’Ñ‹ вышли из RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "Шифрование разрешено, но не задан Ð°Ð´Ñ€ÐµÑ Ð´Ð»Ñ ÐºÐ¾Ð¼Ð¼ÐµÐ½Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð¹ очереди." #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "Шифрование разрешено, но не задан Ð°Ð´Ñ€ÐµÑ Ð´Ð»Ñ Ñообщений Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð¹ очереди." #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "У Ð²Ð°Ñ Ð½ÐµÑ‚ права Ñоздавать заÑвки в Ñтой очереди." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Ð’Ñ‹ также можете добавить ÑÑылки на Ñтатьи Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ \"a:###\", где ### - номер Ñтатьи." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Ð’Ñ‹ должны ввеÑти пароль админиÑтратора." #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "Ðеобходимо уÑтановить 'StatementLog' в 'true' чтобы включить Ñтраницу иÑтории запроÑов." #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "Ðеобходимо задать Ð°Ð´Ñ€ÐµÑ Ð´Ð»Ñ ÐºÐ¾Ð¼Ð¼ÐµÐ½Ñ‚Ð°Ñ€Ð¸ÐµÐ² Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸ Ð´Ð»Ñ Ð½Ð°Ñтройки закрытого ключа." #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "Ðеобходимо задать Ð°Ð´Ñ€ÐµÑ Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ¿Ð¸Ñки Ð´Ð»Ñ Ð¾Ñ‡ÐµÑ€ÐµÐ´Ð¸ Ð´Ð»Ñ Ð½Ð°Ñтройки закрытого ключа." #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Ð’Ñ‹ будете перенаправлены на Ñтраницу входа в ÑиÑтему. Ð’Ñ‹ Ñможете войти под именем %1 и паролем, который вы уÑтановили ранее." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Ð’Ñ‹ должны выбрать СУБД Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð¹ вам или вашему админиÑтратору БД будет удобнее работать." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Ð’Ñ‹ видите Ñтот Ñкран так как Ñервер RT запущен без наÑтроенной БД. ВероÑтнее вÑего Ñто первый запуÑк RT. ЕÑли вы нажмёте \"%1\" ниже, ÑиÑтема уÑтановки RT проведёт Ð’Ð°Ñ Ñ‡ÐµÑ€ÐµÐ· вÑе шаги, необходимые Ð´Ð»Ñ Ð½Ð°Ñтройки Ñервера и БД RT." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Заходите ещё" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Пароль не задан." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "Ð”Ð°Ð½Ð½Ð°Ñ ÑиÑтема поддерживает автоматичеÑкое предложение цветов длÑ: %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸Ð»Ð¸ пароль неверные" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "ИндекÑ" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Вниз]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Вверх]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[не задано]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "дополнительное поле" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "активно" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "ПоÑле" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "поÑле клика по ÑÑылке" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "поÑле загрузки оÑтальной чаÑти Ñтраницы" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "и до" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "и нет" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "и тогда" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "ÑтолбчатаÑ" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "До" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "тело" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "Ñнизу вверх" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "примененить Ñтот клаÑÑ Ð³Ð»Ð¾Ð±Ð°Ð»ÑŒÐ½Ð¾ ко вÑем очередÑм" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "применить Ñто дополнительное поле ко вÑем объектам" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "Отметите Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ñкриплета ко вÑем объектам" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "убрать глобальное назначение Ñтого клаÑÑа (можно будет применить к отдельным очередÑм)" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "убрать назначение Ñтого дополнительного Ð¿Ð¾Ð»Ñ Ñо вÑех объектов (можно будет выбрать отдельные объекты)" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "выберите Ð´Ð»Ñ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "нажмите Ð´Ð»Ñ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð¸Ñ/ÑнÑÑ‚Ð¸Ñ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ð²Ñех объектов Ñразу" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ñдра" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "Ñоздать заÑвку" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "ежедневно в %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ð¾Ð½Ð½Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "панели в меню" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "удалена" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "не Ñовпадает" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "выгрузить" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "длительноÑть" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "доÑтавка почты приоÑтановлена" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "почта заблокирована Ð´Ð»Ñ Ð·Ð°Ñвки" #: lib/RT/User.pm:270 msgid "empty name" msgstr "пуÑтое имÑ" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "равнÑетÑÑ" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "ошибка: невозможно перемеÑтить вниз" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "ошибка: невозможно перемеÑтить влево" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "ошибка: невозможно перемеÑтить вверх" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "ошибка: нет данных Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "ошибка: нет данных Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ¼ÐµÑ‰ÐµÐ½Ð¸Ñ" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "ошибка: нет данных Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "каждые" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "плагин уÑпешно выполнен" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "полное" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "больше чем" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "группа" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "группа %1" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "группа '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "iCal (перÑональный календарь)" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "идентификатор" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "немедленно" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "в клаÑÑе %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "неактивный" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "включает %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "индекÑ" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "Ð½ÐµÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð½Ð°Ñ Ð´Ð°Ñ‚Ð° Дан Ñрок: %1" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "ÑвлÑетÑÑ" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "не ÑвлÑетÑÑ" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "ключ не иÑпользуетÑÑ" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "ключ проÑрочен" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "ключ отозван" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "Ñлева направо" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "меньше чем" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "ограниченное" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "Ñовпадает" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "макÑÐ¸Ð¼Ð°Ð»ÑŒÐ½Ð°Ñ Ð³Ð»ÑƒÐ±Ð¸Ð½Ð°" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "минут" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "изменить конфигурацию RT" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "изменить панель" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "изменить или получить доÑтуп к поиÑку" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "Изменить ваши наÑтройки" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "ежемеÑÑчно" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "ежемеÑÑчно (по днÑм: %1) в %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "никогда" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "новаÑ" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "нет" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "Ð°Ð´Ñ€ÐµÑ Ñлектронной почты не задан" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "нет" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "не равно" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "ничего" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "объекты были уÑпешно удалены" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "Ðа" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "в день" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "один" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "открыта" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "открыть/закрыть" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "другое..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "выполнить дейÑтвиÑ" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "круговаÑ" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "плагин вернул пуÑтой ÑпиÑок" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "пикÑелей" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "очередь %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "отклонена" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "необходим запуÑк rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "решена" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "Ñправа налево" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "поиÑк" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "Ñм. ÑпиÑок объектов ниже" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "Ð±Ð¾ÐºÐ¾Ð²Ð°Ñ Ð¿Ð°Ð½ÐµÐ»ÑŒ" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ñайта" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "приоÑтановлена" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "Выражение" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "Ñтроки Ñводной информации" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "ÑиÑтема %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "ÑиÑÑ‚ÐµÐ¼Ð½Ð°Ñ Ð³Ñ€ÑƒÐ¿Ð¿Ð° '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "таблица" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "заголовок Referrer, переданный обозревателем (%1) не Ñовпадает Ñ Ð½Ð°Ñтроенным именем узла RT (%2)" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "заголовок Referrer, переданный обозревателем (%1) не Ñовпадает Ñ Ð½Ð°Ñтроенным именем узла RT (%2) или белым ÑпиÑком узлов (%3)" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "вызывающий компонент не указал причину" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "адреÑа по умолчанию, которые будут показаны в заголовках От: и Ответить: пиÑьма Ñ ÐºÐ¾Ð¼Ð¼ÐµÐ½Ñ‚Ð°Ñ€Ð¸ÐµÐ¼." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "адреÑа по умолчанию, которые будут показаны в заголовках От: и Ответить: пиÑьма Ñ ÐºÐ¾Ñ€Ñ€ÐµÑпонденцией" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "заÑвка #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "Ñверху вниз" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "абÑолютное" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "группа без опиÑаниÑ: %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "не ограничено" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "обновить заÑвку" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "обновить подтверждение" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "обновить Ñтатью" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "пользователь" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "пользователь %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "еженедельно" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "еженедельно (по %1) в %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "недель" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "на каком порту ваш веб-Ñервер будет работать, напр. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "Ñ Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÐ°Ð¼Ð¸" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "да" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "ваш обозреватель не передал заголовок Referrer" rt-4.4.2/share/po/sv.po0000664000175000017500000131366013131430353014554 0ustar vagrantvagrant# Swedish translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2016-05-21 09:28+0000\n" "Last-Translator: Robert Jensen \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" "Language: sv\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%1, %3 %2 %4" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%1 %3 %2 %6 %4.%5" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1, %3 %2 %7 kl. %4.%5.%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 tillagt" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 ändrat till %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 raderad" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 raderad." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 finns inte" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 är inaktiverad" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 sparad." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 uppdaterad." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 med mall %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) av %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Ej ändrad)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (frÃ¥n panel %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Andra LogToSTDERR configurations val" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - En parameter att skicka till %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "%1 - En parameter att skicka til %2. Kan upprepas för att skicka parametrar till multipla anrop av %2." #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Skicka statusuppdateringar till STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Ange om du vill använda första ('first'), sista ('last') eller alla ('all') transaktioner" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Ange namn eller id för den mall eller de mallar som du vill använda dig av" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "%1 - Ange den Ã¥tgärdsmodul du vill använda. Denna parameter kan upprepas för att tillämpa multipla Ã¥tgärder pÃ¥ funna ärenden." #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Ange en kommaseparerad följd av transaktionstyper du vill använda" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Specifiera modulen du vill använda" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Ange den sökmodul du vill använda" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "%1 extrafält" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 tillagt som värde för %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "%1 sedan" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 existerar redan och har RTs tabeller pÃ¥ plats, men innehÃ¥ller ej RTs metadata. Efterföljande steget 'Initialisera databas' kan lägga till metadata i den existerande databasen. Om detta är okej, tryck 'Grundläggande konfiguration' nedan för att fortsätta anpassa RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 finns redan, men saknar RTs tabeller eller metadata. Efterföljande steget 'initialisera databas' kan lägga till tabeller och metadata i den existerande databasen. Om detta är okej, tryck 'Grundläggande konfiguration' nedan för att fortsätta anpassa RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "%1 har redan behörigheten %2 för %3 %4" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 tycks vara ett lokalt objekt men gÃ¥r inte att hitta i databasen" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 verkar vara initialiserad. Vi kommer inte behöva skapa nÃ¥gra tabeller eller lägga in metadata, men du kan fortsätta anpassa RT genom att klicka 'Grundläggande konfiguration' nedan" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 av %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 fÃ¥r inte vara en grupp" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 ändrad frÃ¥n %2 till %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 ändrades frÃ¥n '%2' till '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 kopiera" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 Grund-konfiguration" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 kunde inte anges till %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 skapad" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 raderad" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 avaktiverad" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 existerar inte." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 aktiverad" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 högst prioriterade ärendena som tillhör mig" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 är ett verktyg som reagerar pÃ¥ ärenden frÃ¥n ett externt planeringsverktyg, sÃ¥ som schemaläggaren." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 är ett verktyg, tänkt att köras frÃ¥n schemaläggaren, som skickar alla uppskjutna RT-meddelanden sammandragna per användare." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "%1 är redan %2" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 är redan satt till %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 är en adress som RT tar emot e-post för. Att lägga till det som en '%2' skapar en e-postloop" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "%1 är inte längre %2 för den här kön" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "%1 är inte längre %2 för det här ärendet" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 är inte längre ett värde för extrafältet %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 är inte %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 är inte en giltig livscykel" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 förfrÃ¥gningar" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 nyckel %2" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 senast uppdaterade artiklarna" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "%1 senast uppdaterade relaterade ärendena" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 nyaste artiklarna" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 nyaste ärendena utan ägare" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objekt" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 är satt till %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 webbplatskonfiguration" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 uppdatering: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 uppdatering: Ingenting har ändrats" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 uppdaterad" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1:s %2 objekt" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1:s %2:s %3 objekt" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "Nuvarande lösenord för %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Instrumentpanel som används av %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "%1's krypteringsnycklar" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1:s sparade sökningar" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: inga bifogade filer angivna" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Nytt ärende i%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "%1 vecka" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "%1Ã¥r" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "%1 t" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1 s" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,artikel,artiklar)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,dag,dagar)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,timme,timmar)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,timme,timmar) (%quant(%2,minut,minuter))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,minut,minuter)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,mÃ¥nad,mÃ¥nader)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,sekund,sekunder)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,vecka,veckor)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,Ã¥r,Ã¥r)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' är inte ett giltigt namn." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' är inte en giltig klass" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' är inte en tillÃ¥ten klassidentifierare" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Markera rutan för att slutföra)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "Markera en kryssruta för att radera" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "Markera rutor för att radera" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "Bocka i för att radera alla värden" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Skriv in ID eller URL för ärenden, Ã¥tskiljda av mellanslag)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Om lämnas tom, blir det automatiskt %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(ofullständig)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(ofullständiga uppgifter)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Inga extrafält)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Inga medlemmar)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(inga skript)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Inga mallar)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Skickar en kopia av denna uppdatering till en kommaseparerad lista med administrativa e-postadresser. Dessa kommer att fÃ¥ framtida uppdateringar.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Skickar en kopia av denna uppdatering till en kommaseparerad lista med e-postadresser. Dessa kommer att fÃ¥ framtida uppdateringar.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Använd dessa fält när du väljer 'Användardefinierat' för villkor eller handling)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(nÃ¥got)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(ingen sammanfattning)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(inget namn)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(ingen publik nyckel!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(inget värde)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(inga värden)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(avvaktar %quant(%1,annat ärende,andra ärenden))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(inväntar godkännande)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "(avvaktar ärende #%1)" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(obligatorisk)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(tillit: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(ej namngiven)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(ej betrodd!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "(via den här tillgÃ¥ngens katalog)" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id är ett övergivet argument och kan inte användas i kombination med --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "argumentet till --transaction kan endast vara 'first', 'last' eller 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 sekunder" #: lib/RT/Date.pm:424 msgid "0s" msgstr "0 s" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "En mall med samma namn existerar redan" #: etc/initialdata:258 msgid "A blank template" msgstr "En tom mall" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Det har inte satts nÃ¥got lösenord, sÃ¥ användare kan inte logga in." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE ej funnen" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACE kan endast skapas och raderas." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "ACL uppdateras frÃ¥n %1" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Om mig" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Access kontroll" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Ã…tgärd" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Ã…tgärd '%1' kunde inte hittas" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Ã…tgärd genomförd." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Ã…tgärd är obligatoriskt argument" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Ã…tgärd förberedd..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Ã…tgärder" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Aktiva ärenden" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "Aktiva ärenden" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Aktiva ärenden för %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Lägg till %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Lägg till Admin.kopia" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Lägg till bokmärke" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Lägg till kopia" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Lägg till kolumner" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Lägg till kriterier" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Lägg till fler filer" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Lägg till anmälare" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Lägg till värde" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "Lägg till en grupp" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "Lägg till en person" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "Lägg till en tillgÃ¥ng till det här ärendet" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Lägg till kommentarer eller svar pÃ¥ utvalda ärenden" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Lägg till grupp" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Lägg till här" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Lägg till medlemmar" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Lägg till nya observatörer" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Lägg till behörigheter för %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Lägg till dessa kriterier" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Lägg till dessa kriterier och sök" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Lägg till användare" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Lägg till värden" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Skapa, ändra och radera värden pÃ¥ extrafält för objekt" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Tillagd" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "Lade till %1 som %2 för den här kön" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "Lade till %1 som %2 för det här ärendet" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "Lade till Ã¥sidosättning av ämne: %1" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "Lade till extrafält %1 till %2." #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adress" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Adress 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adress1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adress2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "Justerade arbetat tid med %quant(%1,minut,minuter)" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "Adminkataloger" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "Admin.kopia" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Admin.kommentar" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Admin kommentar i HTML" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Adminbrevväxling" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Admin Korrespondens i HTML" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Admin.köer" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admin/Global konfiguration" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "Grupp för adminkopia" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "Admin.kopia" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "Adminkopia till" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Administrativt lösenord" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Avancerad" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Avancerad sökning" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Efter du loggat in kommer du skickas till ursprungssidan" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Alla godkännanden accepterade" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Alla Godkännanden accepterade i HTML" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Alla artiklar i den här klassen ska visas i en rullgardinsmeny pÃ¥ ärendets svarssida" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "Alla kataloger" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Alla klasser" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Alla extrafält" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Alla instrumentpaneler" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Alla köer" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Alla ärenden" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "Alla kataloger som matchar sökbegreppet" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Alla iCal-flöden inkluderar en hemlig token som auktoriserar dig. Om URL:en för en av dina iCal-flöden blivit exponerade för andra, kan du skaffa en ny token, men dÃ¥ slutar alla iCal-flöden nedan att fungera." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Alla köer som matchar sökfrÃ¥gan" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "Alla mottagare" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Alla ärenden" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Alla ämnen" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "Allokera" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "TillÃ¥t att skapa sparade sökningar" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "TillÃ¥t användning av sparade sökningar" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "TillÃ¥t att skriva Perl kod i mallar, skript, etc" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Redan krypterad" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "Skicka alltid ett meddelande till den som lagt ärendet, oberoende av meddelande avsändare" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "En %1 introduktion för att pÃ¥börja artiklar %3 är tillgänglig frÃ¥n %2Best Practical's online dokumentation%3." #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "En instans mÃ¥ste anges" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Ett fel inträffade" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "Ett fel uppstod när tiden skulle skickas. Var vänlig ange tiden manuellt." #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Och/eller" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Ã…rlig" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "NÃ¥got fält" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Alla ord som inte RT känner igen söks efter i ärendets ämne." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Gäller för" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Applicera pÃ¥ alla objekt" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Utför" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Applicera globalt" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Tillämpa valda script" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Utför dina ändringar" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Godkännande" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Godkännande #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Godkännande #%1: Anteckningar ej registrerade pÃ¥ grund av systemfel" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Godkännande #%1: Anteckningar har registrerats" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Godkännande accepterat" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "Godkännande accepterat i HTML" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Godkännade klart för ägare" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "Godkännade klart för ägaren i HTML" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Godkännande avvisat" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "Godkännande avvisat i HTML" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Godkänn" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "apr" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "Artikel #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "Artikel #%1 finns inte" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Artikel #%1:%2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Artikel %1 skapad" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Artikeladministration" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artikel finns inte" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Artiklar" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Artiklar i %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Artiklar matchar %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artiklar utan ämnen" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Stigande" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "TillgÃ¥ng #" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "TillgÃ¥ng #%1" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "TillgÃ¥ng #%1 skapad: %2" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "TillgÃ¥ng #%1: %2" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "Administration av tillgÃ¥ngar" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "Misslyckades att skapa tillgÃ¥ngstransaktion: %1" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "Extrafält för tillgÃ¥ngar" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "Misslyckades att skapa tillgÃ¥ng: %1" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "TillgÃ¥ngar" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "TillgÃ¥ngar fÃ¥r inte raderas" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Tilldela och ta bort extrafält för kö" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "Tilldelade tillgÃ¥ngar" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Bifoga" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Bifoga fil" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Bifogad fil" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Bilaga" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Bifogad fil '%1' kunde inte läsas in" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Bifogad fil skapad" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Bifogat filnamn" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Bifogade filer" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Kryptering av bilagor är avstängt" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Attribut raderat" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "Attribut uppdaterad" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "aug" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "AutoSignering" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "Automatisk konto-setup misslyckades" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Automatiskt föreslagna temafärger är inte tillgängliga för din bild. Detta kan bero pÃ¥ att du laddade upp en bildtyp som din version av GD inte stödjer. Typer som stöds är: %1. Du kan kompilera libgd och GD.pm för att inkludera stöd för andra bildtyper." #: etc/initialdata:261 msgid "Autoreply" msgstr "Autosvar" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Autosvar till anmälare" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Autosvar i HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Tillgängliga" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "Genomsnittlig Skapad-Senastuppdaterad" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "Genomsnittlig Skapad-Ã…tgärdad" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "Genomsnittlig Skapad-PÃ¥börjad" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "Genomsnittlig Förfallen-Ã…tgärdad" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "Genomsnittlig PÃ¥börjad-Ã…tgärdad" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "Genomsnittlig PÃ¥börjas-PÃ¥börjad" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "Genomsnittlig uppskattad tid" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "Genomsnittlig tid kvar" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "Genomsnittlig arbetad tid" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "BakÃ¥t" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Felaktig tillgänglighet för attributet %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Grunddata" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "Batch (deaktiverad av konfiguration)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Batch skript" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "Batchskript körs efter en uppsättning av relaterade ändringar pÃ¥ ett ärende" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Hemlig kopia" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "Innan Artiklar kan användas, mÃ¥ste din RT-admin %1create Classes%2, tillämpa extrafält för Artiklar till dem och ge användare behörighet till klasserna och extrafälten." #: etc/initialdata:257 msgid "Blank" msgstr "Tom" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Brödtext" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Fetstil" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Bokmärke" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Bokmärkningsbar länk för den här sökfrÃ¥gan" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Bokmärkta ärenden" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Bokmärkta ärenden" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Bläddra bland ämnen" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Bläddra bland SQL-frÃ¥gorna som skapades" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Massuppdatering" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "Kopiegrupp" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "extrafält" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "Du kan söka i extrafält med en liknande syntax som ovan med %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "Beräkna" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "Beräknar värden av" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Kan inte läsa in sparad sökning \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Kan inte modifiera systemanvändare" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Kan inte lägga till ett extrafältvärde utan ett namn" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "Kan inte ändra standardvärde för %1 frÃ¥n %2 ttill %3: %4" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "Kan inte ändra standardvärden frÃ¥n %1 till %2: %3" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Kan inte hitta en sparad sökning att arbeta med" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Kan inte vidarebefordra: ingen giltig e-postadress är angiven" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Det gÃ¥r inte att länka ett ärende till sig själv" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Kan inte länka till ett raderat ärende" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Kan inte slÃ¥ samman ett ärende med sig själv" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Kan inte snabbskapa ärende i kön %1 eftersom extrafält är tvingande. Var vänlig använd den normala sidan för att skapa ärenden." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "kan inte spara %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Kan inte spara en sökning utan en Beskrivning" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Kan inte spara den här sökningen" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "Kan inte specifiera bÃ¥de gunden och mÃ¥let" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Kan inte lägga till länk till en ren siffra" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Det gÃ¥r inte att skapa ärenden i en avstängd kö." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "Kan inte modifiera objekt för inaktiverad extraroll #%1" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "Katalog" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "Katalog #%1 skapad: %2" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "Katalog %1: Redigera extrafält" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "Katalog %1: Modifiera grunderna" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "Katalog %1: Modifiera gruppbehörigheter" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "Katalog %1: Modifiera roller" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "Katalog %1: Modifiera användarbehörigheter" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "Misslyckades att skapa katalogtransaktion: %1" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "Misslyckades att skapa katalog: %1" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "Kataloger" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "Kataloger kan inte raderas" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategorier baseras pÃ¥" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategori" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Kopia" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "Kopia till" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Ändra" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Ändra godkännandeärendets status till öppen" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Ändra e-postärende:" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Ändra lösenord" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Byta kö är inte implementerat" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Diagram" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "Markera" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Markera alla" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Kontrollera uppkopplingen mot databas" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Kontrollera databasinställningarna" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Markera box för radering" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Dotterobjekt" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Barn" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Välj databasmotor" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Välj frÃ¥n ämnen för %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Ort" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Klass" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Klassnamn" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Klass kunde inte skapas: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Klass-id" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Klasser är redan aktiverat globalt" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Klasser är redan aktiverat i %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Klasser" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Rensa" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Avmarkera alla" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Klicka \"Slutför installationen\" nedan för att slutföra den här guiden." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Tryck \"Initialisera databas\" för att skapa RTs databas och lägga in metadata. Det kan ta en liten stund" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Klicka för att välja en färg" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "Stäng fönster" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Stängt" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Stängda ärenden" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Välj eller skriv in flera värden" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Combobox: Välj eller skriv in ett värde" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Combobox: Välj eller skriv in upp till %1 %quant(%1,värde,värden)" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Kommentera" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Kommentarsadress" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Kommentarsadress" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "Kommentera pÃ¥ ärende" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Kommentar pÃ¥ ärenden" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentarer" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Kommentarer (skickas ej till anmälare)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Kommentarer om denna användare" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Kommentarer tillagda" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Commit tömt" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Villkor" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Villkor '%1' kunde inte hittas" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Villkor är obligatorisk parameter" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Villkor matchar..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Villkor, Handling och Mall" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Konfigurationsfilen %1 är lÃ¥st" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Inställningar för kö %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "Inställningar för roll %1" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Anslutning lyckades" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "Kontakt" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Kontakta din RT-administratör via %1e-post för %2%3" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Kontakta din RT admin" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "InnehÃ¥ll" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "InnehÃ¥llet uteslutet pÃ¥ grund av storleken (%1 bytes) är större än största tillÃ¥tna storleken (%2 bytes)." #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "Kunde inte lägga till innehÃ¥llet. Se felloggen för detaljer." #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "InnehÃ¥llet är inte en giltig IP-adress" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "InnehÃ¥llet är inte ett giltigt IP-adressintervall" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "InnehÃ¥llet är trunkerat pÃ¥ grund av att storleken (%1 bytes) är större än största tillÃ¥tna storleken (%2 bytes)." #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "InnehÃ¥llstyp" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "InnehÃ¥llstyp" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Brevväxlingsadress" #: etc/initialdata:393 msgid "Correspondence" msgstr "Brevväxling" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Brevväxling" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Korrespondens i HTML" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Kunde inte lägga till nytt extrafältsvärde: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Kunde inte ändra ägare: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "GÃ¥r ej att skapa ExtraFält: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "GÃ¥r ej att skapa grupp" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Kunde inte skapa sökfrÃ¥gan: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "GÃ¥r ej att skapa ärende. Kö ej satt" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "GÃ¥r ej att skapa användare" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Kunde inte radera sökfrÃ¥gan %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Kan inte hitta grupp '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Kan inte hitta eller skapa användare '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Kunde inte läsa in attribut till %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Kunde inte läsa in klassen %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "GÃ¥r ej att läsa in ExtraFält %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "Kunde inte läsa in extraroll #%1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "GÃ¥r ej att läsa in grupp" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "GÃ¥r ej att läsa in objekt för %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "Kan inte läsa in skript #%1" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "Kunde inte läsa in ärendehistorik. Orsak:" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Kunde inte läsa in användare '%1'" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "Kunde inte göra %1 till %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "Kunde inte ta bort %1 som en %2" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Kunde ej ange användarinfo" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Kunde inte uppdatera kolumn %1: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "Kunde inte lägga till för att den redan är global" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Kunde ej lägga till bilaga" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "Kunde inte lägga till extrafält vi skapandet: %1" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "GÃ¥r ej att lägga till medlem till grupp" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Kunde inte kompilera %1 kodblock '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Kunde inte kompilera mallkodblock '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "GÃ¥r ej att skapa transaktion: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Kunde inte skapa post: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "Kunde inte skapa grupproller för tillgÃ¥ng" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "Kunde inte skapa rollgrupper för katalog" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Kunde inte radera instrumentpanel %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "GÃ¥r ej att hitta rad" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Kunde inte hitta en lämplig transaktion, hoppar över" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Kan inte hitta den medlemmen" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "GÃ¥r ej att hitta detta värde" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "Kunde inte hämta %1 nyckels information" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "GÃ¥r ej att läsa in klass %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Kunde inte läsa in extrafält #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Kunde inte läsa in anpassat fält #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "GÃ¥r ej att läsa in ExtraFält %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "Kunde inte läsa in en kopia av %1 #%2" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "GÃ¥r ej att läsa in kopia av ärende #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "Kunde inte läsa in extraroll '%1'" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Kunde inte läsa in instrumentpanel %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Kunde inte läsa in grupp #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "GÃ¥r ej att läsa in grupp %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "GÃ¥r ej att läsa in länk" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "Kunde inte läsa in länk: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "GÃ¥r ej att läsa in objekt %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Kunde inte läsa in eller skapa användare: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "Kunde inte läsa in medlem #%1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "Kunde inte läsa in medlem: %1" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "GÃ¥r ej att läsa in kö" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Kunde inte läsa in kö #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "GÃ¥r ej att läsa in kö %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Kunde inte läsa in kö '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "GÃ¥r ej att läsa in scrip #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Kunde inte läsa in mall #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Kunde inte läsa in den angivna medlemmen" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "GÃ¥r ej att läsa in ärende '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Kunde inte läsa in ämnesmedlemskap vid försök till radering" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Kunde inte läsa in transaktion #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Kunde inte läsa in användare" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Kunde inte läsa in användare #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Kunde inte läsa in användare #%1 eller användare '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Kunde inte läsa in användare '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "Kunde inte parsa bas URI: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "Kunde inte parsa mÃ¥l URI: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "Kunde inte ta bort tidigare medlem: %1" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Kunde inte ersätta innehÃ¥ll med avkrypterad data: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Kunde inte ersätta innehÃ¥ll med krypterad data: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "Kunde inte resolva '%1' till en länk." #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Kunde inte översätta basen '%1' till en URI." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Kunde inte översätta mÃ¥let '%1' till en URI." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Kunde inte ange observatör för %1: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Kunde inte sätta privat nyckel" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Kunde inte deaktivera privat nyckel" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Land" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Skapa" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "Skapa ny" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Skapa ärenden" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Skapa klass" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Skapa ett ExtraFält" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Skapa ett ExtraFält för kö %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "Skapa en extraroll" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "Skapa ett globalt scrip" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Skapa en ny artikel" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Skapa en ny artikel i" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "Skapa en ny tillgÃ¥ng i katalog %1" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "Skapa en ny tillgÃ¥ng i katalogen %1." #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Skapa ny instrumentpanel" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Skapa en ny grupp" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Skapa ny mall för kö %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "Skapa ett nytt ärende i %1" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "Skapa ett nytt ärende i kön %1 angÃ¥ende tillgÃ¥ng #%2: %3." #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Skapa en ny användare" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Skapa en kö" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "Skapa och lägg till ett scrip i kön %1" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Skapa en mall" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Skapa ett ärende" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "Skapa ett ärende i %1" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Skapa ett ärende med denna användare som anmälare i kön" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Skapa artikel" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Skapa artikel i klass..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Skapa artikel i den här klassen" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "Skapa tillgÃ¥ng" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "Skapa tillgÃ¥ngar" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "Skapa katalog" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Skapa gruppinstrumentpaneler" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "Skapa länkat ärende" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "Skapa länkat ärende för tillgÃ¥ng #%1: %2" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "Skapa ny tillgÃ¥ng" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Skapa nya ärenden baserade pÃ¥ denna scrips mall" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Skapa personliga instrumentpaneler" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Skapa systeminstrumentpaneler" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Skapa ärende" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Skapa ärenden" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Skapa, modifiera och radera objekt frÃ¥n behörighetslistor" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Skapa, redigera och radera anpassade fält" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Skapa, redigera och radera värden i anpassade fält" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "Skapa, modifiera och radera extraroller" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Skapa, redigera och radera köer" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Skapa, modifiera och radera sparade sökningar" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Skapa, modifiera och radera användare" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "Skapa, modifiera och inaktivera kataloger" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Skapad" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Skapad av" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Skapat ExtraFält %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Skapad av" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Skapade sökfrÃ¥ga %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "SkapadAv" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "SkapadRelativt" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Skapare" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kryptografi" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "Kryptografi är avaktiverat" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Nuvarande relationer" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Aktuell sökning" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Nuvarande medlemmar" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Nuvarande sökning" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Nuvarande observatörer" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "Anpassad CSS (avancerat)" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Extrafält" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Extrafält för %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Anpassade fält för kö %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "Extraroll" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "Kod för att genomföra anpassad Ã¥tgärd" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Specialanpassad handling förberedelsekod" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Specialanpassat villkor" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Anpassat fält #%1 är inte aktiverat pÃ¥ det här objektet" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Extrafält %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Extrafält %1 kan inte användas för det här objektet" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Extrafält %1 har ett värde." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Extrafält %1 har inget värde." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Extrafält %1 ej funnet" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Extrafältvärde %1 gÃ¥r ej att hitta för extrafält %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Extrafältvärde gÃ¥r ej att radera" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Extrafältvärde raderat" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "Extraroll skapad" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "Extraroll inaktiverad" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "Extraroll aktiverad" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "Extraroll lades inte till" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "ExtraFält" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "ExtraältsVärde" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "ExtraRoll" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Anpassa" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Grundläggande konfiguration" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Anpassa e-postadress" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Anpassa e-postkonfigurationen" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Anpassa instrumentpaneler i menyn" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "Anpassa RT-temat" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Anpassa utseendet för ditt RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Lösenord till databasen" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Användarnamn till databasen" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Dagligen" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Dagligt sammandrag" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Instrumentpanel" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "Intrumentpanel %1 kunde inte uppdateras: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "Instrumentpanel %1 uppdaterad" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Instrumentpanel kunde inte skapas: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Instrumentpanel kunde inte uppdateras: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Instrumentpanel har uppdaterats" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Instrumentpaneler" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Instrumentpaneler i menyn" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Instrumentpaneler i menyn för användaren %1" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Databasvärd" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Databasnamn" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Databaslösenord för RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Databasport" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Databastyp" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Databasanvändarnamn för RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "Datum" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Datumformat" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Datum" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "Dag" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "Dag i mÃ¥naden" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "Vekodag" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "Dag pÃ¥ Ã¥ret" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Dekryptera" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "Dekrypteringsfel; kontakta administratören" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "Standard%numerate(%1,värde,värden)" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "Standardvärden" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "Standardvärden för kö %1" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Förvald kö" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "Mall för standardpÃ¥minnelse" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "Stäng av all utgÃ¥ende e-post till mig (frÃ¥n webbgränssnittet) vid uppdatering av ärenden" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "Standardvärdet för %1 ändrat frÃ¥n %2 till %3" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "Standardvärden ändrade frÃ¥n %1 till %2" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Förval: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Förval: %1/%2 ändrat frÃ¥n %3 till %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "StandardFörfalloDatum" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "StandardFormat" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "StandardBörjar" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Radera" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Radera Mall" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Radering misslyckades: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Radera gruppinstrumentpaneler" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Raderafunktionen är avaktiverad i livscykelkonfigurationen" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Radera personliga instrumentpaneler" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Radera systeminstrumentpaneler" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Radera ärenden" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Radera värden" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Raderade %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Raderade förfrÃ¥gningar" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Raderade sparad sökning" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Raderade sökfrÃ¥ga %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Radering av detta objekt bryter referentiell integritet" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Radering av detta objekt strider mot referentiell integritet" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Neka" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Förutsätts av" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "FörutsättsAv" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Lagt till att förutsätts av %1" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Tagit bort att förutsätts av %1" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Lagt till att förutsätter %1" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Tagit bort att förutsätter %1" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "FörutsättsAv" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Förutsätter" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "Förutsätter" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Fallande" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Beskriv problemet nedan" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Beskrivning" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Detaljerad information om dina RT-inställningar" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Detaljer" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "Detektera en situation där vi borde sätta förfallodatum" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "Detektera en situation där vi borde sätta startdatum" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Riktning" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "Inaktivera artiklar i den här klassen" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Inaktiverad" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "Inaktiverad?" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Visa" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Visa TillgÃ¥ngskontrollista" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Visa artikel %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Visa kolumner" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "Visa textbilagor i teckensnitt med fast bredd med bibehÃ¥llen formatering, men med radbrytningar där det behövs." #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "Visa meddelanden med \"rich text\" om möjligt" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Visa textbilagor i teckensnitt med fast bredd" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Visa ärendet efter \"Snabbt ärendeskapande\"" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Distribuerat under %1version 2 av GNU GPL%2." #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Gör nÃ¥got och allt" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Domännamn" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Inkludera inte http://, utan bara exempelvis 'localhost' eller 'rt.exempel.se'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Läs inte om startsidan." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Läs inte om sökresultaten." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Läs inte in denna sida igen" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Lita inte alls pÃ¥ den här nyckeln" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Ladda ner" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "Ladda ner kalkylark" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Ladda ner dumpfil" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "Släpp filer här eller klicka för att bifoga" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Rullgardin" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Förfaller" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "SlutRelativt" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "FEL: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Enkel uppdatering av dina ärenden" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Enkel visning av dina pÃ¥minnelser" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Redigera" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "Redigera %1" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Redigera extrafält" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Redigera extrafält för %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "Redigera extrafält för tillgÃ¥ngar i alla kataloger" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Redigera extrafält för alla grupper" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Redigera extrafält för alla köer" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Redigera extrafält för alla användare" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Redigera anpassade fält för artiklar i alla klasser" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Redigera extrafält för ärenden i alla köer" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Redigera länkar" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Redigera söksträng" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Redigera sökning" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Redigera global ämneshierarki" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Redigera systemmallar" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Redigera ämneshierarki för %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Redigera extrafält %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Redigera medlemskap för grupp %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "EffektivtId" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Antingen bas eller mÃ¥l mÃ¥ste specificeras" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Antingen sÃ¥ har du inte behörighet att se den sparade sökningen %1 eller sÃ¥ är identifieraren fel" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "Förfluten" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "E-post" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "E-postadress" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "E-postsammandrag" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "E-postkälla för ärende %1, bilaga %2" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "E-postadress används" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "E-postleverans" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "E-postmall för Ã¥terkommande sammandrag" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "E-postadress" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "Tom" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "Aktivera radbrytning av citerad text?" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Aktiverad" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "Aktiverad (Avmarkera rutan för att inaktivera den här artikeln)" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Aktiverad (Avmarkera rutan för att avaktivera den här klassen)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Aktiverad (Avmarkera denna ruta för att deaktivera detta extrafält)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "Aktiverad (Avmarkera rutan för att inaktivera denna extraroll)" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Aktiverad (Avmarkera rutan för att deaktivera denna grupp)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Aktiverad (Avmarkera rutan för att deaktivera denna kö)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Aktiverad (Avmarkera rutan för att deaktivera detta scrip)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "Aktiverade kataloger" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Aktiverade klasser" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Aktiverade köer" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "Aktiverade kataloger som matchar sökbegreppet" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Aktiverade köer som matchar sökbegreppet" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Aktiverad status %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Kryptera" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Kryptera som förval" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Kryptera/dekryptera" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Kryptera/Avkryptera transaktion #%1 för ärende #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "Krypterar" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Krypteringsfel; kontakta administratören" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Ange artiklar, ärenden eller andra URLer relaterade till den här artikeln." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "Skriv länkar till tillgÃ¥ngar som \"asset:###\", där ### är tillgÃ¥ngs-ID." #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Ange flera IP-adressintervall" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Ange flera IP-adresser" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Skriv in flera värden" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Ange flera värden med autokomplettering" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Skriv in objekt eller URI att koppla objekt till. Skilj multipla poster Ã¥t med blanktecken." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Ange en IP-adress" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Ange ett IP-adressintervall" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Skriv in ett värde" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Ange ett värde med autokomplettering" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Skriv in köer eller URI att koppla köer till. Skilj multipla poster Ã¥t med blanktecken." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Skriv in ärenden eller URI att koppla ärenden till. Skilj multipla poster Ã¥t med blanktecken." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "Ange ärende eller URIs att länka till. Skilj multipla poster Ã¥t med blanktecken." #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Ange tid i timmar som standard" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Ange upp till %quant(%1,IP-adressintervall,IP-adressintervall)" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Ange upp till %quant(%1,IP-adress,IP-adresser)" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Ange upp till %quant(%1,värde,värden)" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Ange upp till %quant(%1,värde,värden) med autokomplettering" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "Ange %1, %2, %3 eller %4 för att begränsa resultatet till ärenden med respektive status. Individuella statusnamn begränsar resultatet till enbart de statustyper som namngivits." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "LedtrÃ¥d" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "Miljövariabler" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Fel" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "Fel vid inläsning av bilaga" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "Fel vid ritande av diagram: %1" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Fel till RT-ägaren: Publik nyckel" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Fel: Instrumentpanel saknas" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Fel: Felaktigt GnuPG-data" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "Fel: felaktig krypterad data" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Fel: kan inte ändra tillgänglighetsvärde för befintlig sökning" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Fel: kunde inte läsa in sparad sökning %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Fel: ingen privat nyckel" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Fel: publik nyckel" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Fel: sökfrÃ¥ga %1 är ej uppdaterad: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "Fel: okrypterat meddelande" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Eskalera ärenden" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Uppskattad" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Alla" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Exempel:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "UtgÃ¥r" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "UtökaStatus" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Extern autentisering är pÃ¥slaget." #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "Extra info" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Skapa artikel" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Extrahera ämnesetikett" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Skapa en ny artikel utifrÃ¥n ärende #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Skapa artikel utifrÃ¥n ärende #%1 i klass %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extrahera etiketter frÃ¥n en transaktions ämne och lägg till dem till ärendets ämne" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Kunde inte ansluta till databasen: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Misslyckades med att skapa attribut till %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Misslyckades med att hitta 'Privilegierad'-användares pseudogrupp." #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Misslyckades med att hitta 'Icke-privilegierad'-användares pseudogrupp" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Misslyckades med att läsa in %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Misslyckades med att läsa in %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Misslyckades med att läsa in modul %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Misslyckades med att läsa in objekt för %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Misslyckades med att läsa in mall" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "Misslyckades med att läsa in ärende %1" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Misslyckades med att tolka mall" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "Misslyckades med att uppdatera format. Orsak:" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Flöden" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Fält" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Källa för fältvärden:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "Filen '%1' utesluten eftersom storleken (%2 bytes) överskrider konfigurerad maxstorlek (%3 bytes)." #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "Kunde inte lägga till filen '%1'. Se felloggen för detaljer." #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "Filen '%1' trunkerades eftersom storleken (%2 bytes) överskrider konfigurerad maxstorlek (%3 bytes)." #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Filnamn" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "Filnamn med citattecken kan inte laddas upp." #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Fyll argument" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Färglägg utifrÃ¥n" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Fyll i flera textomrÃ¥den" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Fyll i flera wikitextomrÃ¥den" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Fyll i ett textomrÃ¥de" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Fyll i ett wikitextomrÃ¥de" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Fyll i detta fält med en URL." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Fyll i upp till %quant(%1,textomrÃ¥de,textomrÃ¥den)" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Fyll i upp till %quant(%1,wikitextomrÃ¥de,wikitextomrÃ¥den)" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Slutlig prioritet" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "SlutligPrioritet" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "Hitta en grupp..." #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Hitta en användare" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "Hitta en användare..." #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Hitta alla användare vars" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "Hitta en tillgÃ¥ng" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Hitta grupper vars" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Hitta personer vars" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Hitta ärenden" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "HittaTillgÃ¥ng" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "HittaAnvändare" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Fingeravtryck" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Slutför" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Första" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "För lokal hjälp, kontakta %1" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "För full kraft i RTs sökningar, var vänlig besök %1sökbyggnadsgränssnittet%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Tvinga ändring" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "Formaterar iCal-händelsernas flöden med datum och tid" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Vidarebefordra" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Vidarebefordra brev" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Vidarebefordra meddelande och Ã¥tergÃ¥" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Vidarebefordra ärende" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Vidarebefodra meddelanden utanför RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Vidarebefordra ärende #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Vidarebefordra transaktion #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "Vidarebefordrade %3Transaktion #%1%4 till %2" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Vidarebefordrade ärende till %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "Vidarebefordrade meddelande" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "Vidarebefordrade ärendemeddelande" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "Hittade %quant(%1,tillgÃ¥ng,tillgÃ¥ngar)" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Hittade %quant(%1,ärende,ärenden)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Hittade Objekt" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Intervall" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Fre" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "fredag" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "FrÃ¥n" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD är avaktiverat eller ej installerat. Du kan ladda upp en bild, men du kommer inte fÃ¥ automatiska färgförslag." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Allmän" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "Allmänna tillgÃ¥ngar" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Generella behörigheter" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Komma igÃ¥ng" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "Visa utmatning även om det lyckades att skicka meddelandet" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Har givits till %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Globala attribut" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Globala ämnen" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Global extrafältkonfiguration" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "Globala instrumentpaneler i menyn sparade." #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "Kunde inte hitta global eller köspecifik mall '%1'" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Global portlet %1 sparad." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "Kunde inte hitta global mall '%1'" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "Lade till extrafält %1 globalt." #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "Tog bort extrafält %1 globalt." #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "Privat nyckel för GnuPG" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Kör" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "GÃ¥ bakÃ¥t / framÃ¥t" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "GÃ¥ till grupp" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "GÃ¥ till användare" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Kör!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "GÃ¥ till ärende" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "GÃ¥ till ärende" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "Tilldelade behörighet '%1' to %2." #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Diagram" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Diagramegenskaper" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Diagram är ej tillgängliga." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Grupp" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Gruppbehörigheter" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Grupp har redan medlem: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "Gruppera efter" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Grupp kan inte skapas: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Grupp har skapats" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Grupp inaktiverad" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Grupp aktiverad" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Grupp har ingen sÃ¥dan medlem" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Gruppnamnet '%1' används redan" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Grupp ej funnen" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "Gruppera ärenden efter" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "Grupp: %1" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "Grupperade sökresultat" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupper" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Grupper kan inte vara medlemmar av sina medlemmar" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Grupper som matchar sökkriterium" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "Medlem i följande grupper (markera för att radera)" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "Inte medlem i följande grupper (markera för att lägga till)" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Grupper som denna användare tillhör" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "HarMedlem" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Rubrik pÃ¥ vidarebefordrat ärende" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Rubrik pÃ¥ vidarebefordrat meddelande" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "Höjd" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Hej!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Hjälp oss ställa in nÃ¥gra användbara förval för RT." #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Dölj all citerad text" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Dölj citerad text" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "Dölj inaktiva fält?" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historik" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Historik för artikel #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "Historik för tillgÃ¥ng #%1: %2" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Historik för gruppen %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Historik för kö %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Historik för användaren %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Hemtelefon" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Hur ofta startsidan skall läsa in pÃ¥ nytt" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Startsida" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Timme" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "Varje timme" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Timmar" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "I have %quant(%1,betongblandare,betongblandare)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "Jag vill Ã¥terställa min hemliga token." #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "ID" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identitet" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "Om du använder ett extrafält kommer ärenderubriken i det utgÃ¥ende e-postmeddelandet att ersättas av den här artikeln." #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Om ett godkännande avvisas, avvisa det ursprungliga och radera väntande godkännanden" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "Om detta inte är vad du förväntade dig, lämna den här sidan nu utan att logga in." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Om detta verktyg var setgid, kunde en fientlig användare använda detta verktyg för att fÃ¥ administrativ tillgÃ¥ng till RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Om du redan har en fungerande RT-server och databas, sÃ¥ bör du försäkra dig om att databasservern fungerar och att RT-servern kan ansluta till den. SÃ¥ fort du gjort det sÃ¥ kan du stoppa och starta RT-servern." #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Om du ändrat porten som RT kör pÃ¥, sÃ¥ mÃ¥ste du starta om servern för att kunna logga in." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Om du har uppdaterat nÃ¥gonting av ovanstÃ¥ende, se till att" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Om databasen du föredrar inte finns med i rullgardinsmenyn nedan, innebär det att RT inte kunde hitta en databasdrivrutin för databasen lokalt. Du kanske kan Ã¥tgärda detta genom att använda %1 för att hämta och installera DBD::MySQL, DBD::Oracle eller DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Ogiltigt värde för %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "Bild visas infogad ovan" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "Bild visas inte eftersom visning är inaktiverad i systemkonfigurationen." #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "Bild visas inte eftersom avsändare valde att inte infoga den." #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Oföränderligt fält" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Inaktiva ärenden" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "Inaktiva ärenden" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Inkludera artikel:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "Inkludera TicketSQL-frÃ¥gan" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Inkludera artikelns namn" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Inkludera artikelns sammanfattning" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "Inkludera bilagor" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "Inkludera extrafält '%1'" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "Inkludera tabell med data" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "Inklutera inaktiverade kataloger i listan." #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Inkludera inaktiverade klasser i resultatet." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Ta med inaktiverade extrafält i listan." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "Inkludera inaktiva extraroller i listan." #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Ta med inaktiverade grupper i lista." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Ta med inaktiverade köer i lista." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Ta med inaktiverade användare i lista." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Inkludera sida" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Inkludera underämnen" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "Inkludera tid i iCal-flöden?" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Enskilda meddelanden" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informera ägaren av RT att en eller flera användare har problem med publika nycklar" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informera användaren att en instrumentpanel som denne prenumererar pÃ¥ saknas" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informera användaren att meddelandet han skickat har ogiltigt GnuPG-data" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informera användaren att han har ett problem med publik nyckel och att han inte kan mottaga krypterat innehÃ¥ll" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Informera användare att dennes lösenord har Ã¥terställts" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informera användaren att vi mottagit ett krypterat e-postmeddelande som vi inte har privata nycklar för att dekryptera" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Initial prioritet" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "InitialPrioritet" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Initiera databas" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Inläsningsfel" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Inmatning mÃ¥ste matcha %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "Lägg till frÃ¥n %1" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Internt fel: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Internt fel: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "Felaktig %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Felaktigt %1-argument" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Ogiltig %1: '%2' verkar inte vara en e-postadress" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Felaktig %1: det ska vara ett nummer" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "Ogiltig katalog" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Felaktig klass" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Felaktigt källvärde för anpassade fält" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "Ogiltigt gruppnamn och domän" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "Ogiltigt namn (namn fÃ¥r inte enbart bestÃ¥ av siffror)" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "Ogiltigt namn (namn mÃ¥ste vara unika och fÃ¥r inte enbart bestÃ¥ av siffror)" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Felaktig kö, kan inte applicera klass: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "Felaktig rendreringstyp" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Felaktig rendreringstyp för anpassat fält av typ %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Ogiltig data" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Ogiltig nyckel %1 för adress '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Ogiltigt objekt" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Ogiltigt mönster: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Ogiltig kö" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "Ogiltig kö-ID" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Ogiltig behörighet" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Ogiltig behörighet. Kan inte normalisera behörighet '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Ogiltig syntax för e-postadress" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Ogiltigt värde för %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Ogiltigt värde för extrafält" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "Är redan tillagd till objektet" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Är inte krypterad" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Det är oerhört viktigt att icke-privilegierade användare inte fÃ¥r lov att använda detta verktyg." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Det rekommenderas att du skapar en icke-privilegierad unix-användare med korrekt gruppmedlemskap och RT-Ã¥tkomst för att använda detta verktyg." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "Det ser ut som du kanske har glömt att lägga till en bilaga." #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Det krävs Ã¥tskilliga parametrar:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Kursiv" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "GÃ¥ med i eller lämna grupp" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Använd 'localhost' om du inte är säker. Lämna blankt för att ansluta lokalt över socket" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "Tangentbordsgenvägar" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "Nyckelord och intuitionsbaserad sökning" #: lib/RT/User.pm:97 msgid "Lang" msgstr "SprÃ¥k" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "SprÃ¥k" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Stor" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Senaste" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Senaste kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Senast kontaktad" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Senast uppdaterad" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Senast uppdaterad av" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Senast uppdaterad" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Senast uppdaterad av" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "SenastUppdaterad" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "SenastUppdateradAv" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "SenastUppdateradRelativt" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Lämna blankt för att använda det förvalda värdet för din databas" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Lämna det här tomt för att använda standardanvändarnamnet för din databastyp" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Tillbaka" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Teckenförklaring" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Längd i tecken; Använd '0' för att visa alla meddelanden, oavsett längd" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "LÃ¥t denna användare fÃ¥ tillgÃ¥ng till RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "LÃ¥t denna användare fÃ¥ behörigheter" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Sätt igÃ¥ng!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Livscykel" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Länk" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Länk finns redan" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "Kunde inte skapa länk: %1" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "Kunde inte radera länk: %1" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Länk ej funnen" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Koppla ärende #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Koppla värden till" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Länkad" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "LänkadFrÃ¥n" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "LänkadTill" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "Att länka till en raderad %1 är inte tillÃ¥tet" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Länkar" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "Länkar till" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Lista" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Läs in" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Läs in en sparad sökning" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Läs in sparad sökning" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Läs in sparad sökning:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Läste in %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "Läste in konfigurationfiler" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Läste in ursprungliga sparad sökning \"%1\"" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Inlästa Perl-moduler" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Läste in sparad sökning \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Läser in..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Lokalisering" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Plats" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Inloggad" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Inloggad som %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Utloggad" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Logga in" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Logga ut" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Uppslagstyp matchar ej" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "E-post" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Primär typ av länkar" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Ange ägare" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Ange status" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Ange förfallodatum" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Ange datum pÃ¥börjat" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Ange startdatum" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Ange datum för kontaktat" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Ange prioritet" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Ange kö" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Ange ämne" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Administrera extrafält och extrafältvärde" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "Hantera extraroller" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Administrera grupper och gruppmedlemskap" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Administrera egenskaper och konfiguration som gäller för alla köer" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Administrera köer och kö-specifika egenskaper" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Hantera sparade diagram" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "Hantera scrips" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Administrera användare och lösenord" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "mar" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Markera alla meddelande som lästa" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "MaxVärden" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "Max skapad-senast uppdaterad" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "Max skapad-Ã¥tgärdad" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "Max skapad-startad" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "Max förfaller-Ã¥tgärdad" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "Max startad-Ã¥tgärdad" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "Max startar-startad" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Maxlängd för infogat meddelande" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "Max uppskattad tid" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "Mad tid kvar" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "Max arbetad tid" #: lib/RT/Date.pm:95 msgid "May" msgstr "maj" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Mig" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Medlem" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Medlem %1 tillagd" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Medlem %1 raderad" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Medlem tillagd: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Medlem raderad" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Medlem ej raderad" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "MedlemAv" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Medlemmar" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Medlemskap i %1 tillagt" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Medlemskap i %1 raderat" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Medlemskap" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "Medlemskap i gruppen %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "Medlemskap för #%1" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Medlemskap för användaren %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "SlÃ¥ samman" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Sammanslagning lyckades" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Sammanslagning misslyckades. Kunde inte sätta EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "Sammanslagning misslyckades. Kunde inte sätta IsMerged" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "SlÃ¥ samman med" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Sammanslagen med %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Meddelande" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Brödtexten visas inte eftersom den är för lÃ¥ng." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Brödtexten visas inte eftersom avsändaren inte vill att den ska infogas." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Brödtexten visas inte eftersom det inte är oformaterad text." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Meddelanderutans höjd" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Meddelanderutans bredd" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Meddelande sparades inte" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Meddelande till användare" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Meddelande sparat" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "Min skapad-Ã¥tgärdad" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "Min skapad-Ã¥tgärdad" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "Min skapad-startad" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "Min förfaller-Ã¥tgärdad" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "Min startad-Ã¥tgärdad" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "Min startar-startad" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Minsta lösenordslängd" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "Min uppskattad tid" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "Min tid kvar" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "Min arbetad tid" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuter" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Diverse" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Saknas en primärnyckel?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobil" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Mobiltelefon" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Redigera" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "Modifiera %3 för tillgÃ¥ng #%1: %2" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Modifiera medlemmar" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Modifiera mallar för scrip" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Modifiera scrip" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Modifiera ett extrafält för kö %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Modifiera och skapa klasser" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Modifiera och skapa anpassade fält för artiklar" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Modifiera artikel #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "Modifiera artiklar i den här klassen" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "Modifiera tillgÃ¥ng #%1: %2" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "Modifiera tillgÃ¥ngskatalog" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "Modifiera extrafält för tillgÃ¥ngar" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "Modifiera tillgÃ¥ngar" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Modifiera objekt associerade med %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "Modifiera associerade objekt för script #%1" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Modifiera värden för extrafält" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "Modifiera datum för tillgÃ¥ng #%1: %2" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Modifiera datum för ärende #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Redigera globala artikelämnen" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Modifiera globala extrafält" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Modifiera globala gruppbehörigheter" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Redigera globala ämnen" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Modifiera globala användarbehörigheter" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Ändra gruppinstrumentpaneler" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Modifiera listan över gruppmedlemskap" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Modifiera gruppmetadata eller radera grupp" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Modifiera gruppbehörigheter för klass %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Modifiera gruppbehörigheter för extrafält %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Modifiera gruppbehörigheter för grupp %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Modifiera gruppbehörigheter för kö %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "Modifiera länkar för tillgÃ¥ng #%1: %2" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Modifiera metadata och extrafält för den här klassen" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Modifiera ens eget RT-konto" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "Modifiera personer relaterade till tillgÃ¥ng #%1: %2" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Modifiera personer relaterade till ärende #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Ändra personliga instrumentpaneler" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Modifiera Köobservatörer" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "Modifiera scrip #%1" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Modifiera scrips för kö %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Modifiera scrips som gäller för alla köer" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Ändra systeminstrumentpaneler" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Modifiera mall %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Modifiera mall %1 för kö %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Modifiera mallar som gäller för alla köer" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Modifiera klassen %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Ändra innehÃ¥llet i instrumentpanel %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Ändra instrumentpanelen %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Justera den förvalda visningen av \"RT snabbtitt\"" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Modifiera gruppen %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Ändra prenumerationen av instrumentpanel %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Modifiera användaren %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Modifiera den här sökningen..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Ändra ärende # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Ändra ärende #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "Modifiera ärendeägare pÃ¥ ägda ärenden" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Ändra ärenden" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Redigera ämne för %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Redigera ämneshierarki associerad med den här klassen" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Redigera ämnen för artiklar i den här klassen" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Modifiera användarbehörigheter för klass %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Modifiera användarbehörigheter för extrafält %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Modifiera användarbehörigheter för grupp %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Modifiera användarbehörigheter för kö %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Ändra vem som fÃ¥r e-post för ärende #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "mÃ¥n" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "mÃ¥ndag" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "MÃ¥nad" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "MÃ¥nadsvis" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Mer om anmälaren" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "Flytta" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Flytta hit" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "GÃ¥ upp / ned i listan" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Flera" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "Multipla användare (Detta kan inte ändras efter skapandet)" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "Multipla användare (Avmarkera rutan för begränsa rollen till en enda användare. Detta kan inte ändras i efterhand)" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "'Namn'-attribut mÃ¥ste specificeras" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Mina %1 ärenden" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Mina godkännanden" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "Mina tillgÃ¥ngar" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Min dag" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Mina pÃ¥minnelser" #: etc/initialdata:890 msgid "My Tickets" msgstr "Mina ärenden" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mina godkännanden" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "Mina stängda ärenden" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mina instrumentpaneler" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Mina öppna ärenden" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Mina pÃ¥minnelser" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mina sparade sökningar" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "MinaAdminKöer" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "MinaTillgÃ¥ngar" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "MinaPÃ¥minnelser" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "MinaSupportKöer" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "RADBRYTNING" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Namn" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Namn och e-postadress" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Namn som används" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "Namn krävs" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Namn:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Aldrig" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Ny" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Ny artikel" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Ny instrumentpanel" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nya länkar" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Nytt väntande godkännande" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "Nytt väntande godkännande i HTML" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Ny sökning" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "Nytt värde" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "Nya tillgÃ¥ngar kan inte ha status '%1'." #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nya meddelanden" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nytt lösenord" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Nytt lösenordmeddelande skickat" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Ny pÃ¥minnelse:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nytt ärende" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Nytt ärende finns ej" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Nya ärenden kan inte ha status '%1' i den här kön." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nya observatörer" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Nästa" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Smeknamn" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Smeknamn" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Nej" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "Ingen %1 inläst" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Inga artiklar matchar %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Ingen klass definierad" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Hittade inga klasser som matchar sökbegreppet." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Inget extrafält" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Inget extrafält definierat" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Ingen grupp definierad" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "Inget namn" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Ingen söksträng" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Ingen kö definierad" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Hittade inte RT-användare. Var vänlig kontakta din RT-administratör." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Inget ämne" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "Ingen Ã¥sidosättning av ämne" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Ingen mall" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Ingen handling" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "Ingen tillgÃ¥ngs-ID angiven." #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "Hittade inga tillgÃ¥ngar som matchar sökbegreppet." #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "Ingen katalog angiven." #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "Hittade ingen katalog som matchar sökbegreppet." #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Ingen kolumn specificerad" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Ingen kommentar inlagd om denna användare" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "Hittade inga extrafält för gruppering av '%1'" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "Hittade ingen extraroll som matchar sökbegreppet." #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Ingen beskrivning för %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "Ingen global mall %1" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Ingen grupp specificerad" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Inga grupper som matchar sökkriterierna hittades." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Ingen nyckel som lämpar sig för kryptering" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "Inte längre auktoriserad" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Inget bifogat meddelande" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Inget namn angivet" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Behöver inte krypteras" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Inget lösenord satt" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Ingen behörighet att skapa köer" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Ingen behörighet att skapa ärenden i kö '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Ingen behörighet att visa ärendet" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "Ingen behörighet att modifiera tillgÃ¥ngen" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "Ingen behörighet att modifiera katalogen" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Ingen tillÃ¥telse att spara systemomfattande sökningar" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Ingen behörighet att göra inställningar" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Saknar behörighet att visa artikel" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Ingen tillÃ¥telse att visa uppdatera ärende" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Inga medlemmar valda." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Ingen privat nyckel" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Inga köer som matchar sökkriterierna hittades." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Ingen behörighet angiven" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Hittade inga behörigheter" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "Ingen behörighet att lägga till '%1' som Admin.kopia pÃ¥ det här ärendet" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Ingen sökning att arbeta med." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Inget ämne" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Hittar inte nyckel, eller sÃ¥ lämpar den sig inte för signering" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "Ingen mall %1 i kön %2 eller globalt" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Inga ärenden funna." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Ingen transaktionstyp specificerad" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Inga passande nycklar." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Inga användare som matchar sökkriterierna hittades." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "Ingen giltig medlemsID" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "Inget värde skickat till _Set!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Ingen" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Ingen" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Icke-existerande fält?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "Scrip som inte används" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Hittades inte" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Ej inloggad." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Ej angiven" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Använder du inte en mobil webbläsare?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Anteckningar" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Meddelande kunde inte skickas" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Meddela mottagare av adminkopia" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Meddela mottagare av adminkopia som kommentar" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Meddela mottagare av kopia" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Meddela mottagare av kopia som kommentar" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Meddela andra mottagare" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Meddela andra mottagare som kommentar" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Meddela ägare" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Meddela ägare som kommentar" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Meddela ägare att dess ärende avvisats" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Meddela ägare och mottagare av adminkopia om nya ämnen väntar pÃ¥ deras godkännande" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Meddela anmälare" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Meddela anmälare och mottagare av kopia" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Meddela anmälare och mottagare av kopia som kommentar" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Meddela när jag har olästa meddelanden" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "nov" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "Antal" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ELLER" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "Objekt-ID" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "Objekttyp" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekt kan ej skapas" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Objekt kan ej raderas" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objekt har skapats" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objekt har raderats" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Objekten är av olika typer" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Objektlistan är tom" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "okt" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "Gammalt värde" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "Vid %1, skrev %2:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Vi stängning" #: etc/initialdata:170 msgid "On Comment" msgstr "Vid kommentar" #: etc/initialdata:142 msgid "On Correspond" msgstr "Vid brevväxling" #: etc/initialdata:131 msgid "On Create" msgstr "Vid skapande" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "Vid vidarebefordran" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Vid vidarebefordran av ärende" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Vid vidarebefordran av transaktion" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Vid ägarbyte" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Vid prioritetsändring" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Vid köbyte" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Avvisad" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "När ett ärende Ã¥teröppnas" #: etc/initialdata:205 msgid "On Resolve" msgstr "När Ã¥tgärdats" #: etc/initialdata:176 msgid "On Status Change" msgstr "Vid statusändring" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "Vid ändring av arbetad tid" #: etc/initialdata:136 msgid "On Transaction" msgstr "Vid transaktion" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "EngÃ¥ngs hemlig kopia" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "EngÃ¥ngskopia" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Endast för inmatning, inte visning" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Visa endast godkännanden för förfrÃ¥gningar som skapats efter %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Visa endast godkännanden för förfrÃ¥gningar som skapats före %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Visa endast extrafält för:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "Öppna inaktiva ärenden" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Öppna" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Öppna ärenden" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "Öppna tidtagning" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Öppna webbadress" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "Öppna inaktiva ärenden" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Öppna ärenden" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Öppna ärenden om brevväxling sker" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "Operativsystem" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Alternativ" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Alternativ" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "Oracle-användare kan inte ha tomma lösenord" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sortera efter" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organisation" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Ursprungligt ärende: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "UtgÃ¥ende e-postmeddelande om en kommentar har sparats" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "UtgÃ¥ende e-postmeddelande har sparats" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "UtgÃ¥ende e-post" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Översikt" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Egna ärenden" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Ägare" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "Ägaren '%1' har inte behörighet att äga det här ärendet." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Ägare ändrad frÃ¥n %1 till %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Ägare har godtyckligt ändrats frÃ¥n %1 till %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "ÄgarGrupp" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "ÄgarNamn" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Sida" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Sida 1 of 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Sidan hittades inte" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Personsökare" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Personsökare" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "Förälder" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Föräldrar" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Lösenord" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Lösenord ändrat" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Lösenordet har inte satts." #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Lösenord mÃ¥ste vara minst %quant(%1,tecken,tecken) lÃ¥nga" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Lösenord ej utskrivet" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Lösenord har satts" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Lösenord: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Lösenord: TillgÃ¥ng nekas" #: etc/initialdata:714 msgid "PasswordChange" msgstr "LösenordsByte" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Lösenorden överenstämmer inte med varandra" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Sökväg till sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "Pausa tidtagning" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "Avvaktar %quant(%1,godkännande,godkännanden)." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "Avvaktar %quant(%1,ärende,ärenden)." #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "Avvaktar godkännande." #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Personer" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Personer relaterade till kö %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Genomför en användardefinierad handling" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl-konfiguration" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Sökordning för Perl-bibliotek" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Radera data frÃ¥n RT slutgiltigt" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "TillgÃ¥ng nekas" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "TillgÃ¥ng nekas" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefonnummer" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "Bild" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "Mall för autosvar med oformaterad text" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "Mall för admin kommentar med oformaterad text" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "Mall för admin korrespondens med oformaterad text" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "Mall för korrespondens med oformaterad text" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "Mall för transaktion med oformaterad text" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Var vänlig kontrollera URLen och försök igen." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Var vänlig ange ditt nuvararande lösenord korrekt." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Var vänlig ange ditt nuvarande lösenord." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "Fördefinierad sökning %1 hittades inte" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Inställningar" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Inställning %1 för användare %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "Inställningar Ã¥terställda." #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Inställningarna har sparats för %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "Inställningar har sparats för instrumentpaneler i menyn." #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Inställningar har sparats för användare %1." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Inställningar har sparats." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "Hittade inte inställningar" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Förbered tömning" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "Tryck %1 för att visa tangentbordsgenvägar." #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Föreg." #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Hittade inte medlem %1." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Skriv ut det resulterande sammandraget till STDOUT, skicka dem inte som e-post. Markera dem inte som skickade" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Skriv ut detta meddelande" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioritet" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Tillgänglighet" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Tillgänlighet:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Privat nyckel" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "Privata nycklar för %1" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "Privata nycklar" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Privilegierad" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Privilegierad status: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Privilegierade användare" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "Privilegierad: användarnamn; Icke-privilegierad: namn och e-postadresser" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseudogrupp för internt bruk" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "Publik nyckel '0x%1' krävs för att verifiera signatur" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "Publika nyckar för %1" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "FrÃ¥gor" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "FrÃ¥ga" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Avancerad sökning" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Kö" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "Kö %1 kunde inte läsas in." #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Kö %1 ej funnen" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Könamn" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Kö finns redan" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Kö kan ej skapas" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Kö kan ej inläsas." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Kö har skapats" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Kö-ID" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "Lista över köer" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Kö ej funnen" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Köns nyckel" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "KöLista" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "Kö" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "KöObservatör" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Köer" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Köer som jag administrerar" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Köer som jag stÃ¥r som mottagare av adminkopia för" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Snabbsökning" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Snabbt ärendeskapande" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "SnabbSkapa" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT-administration" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT-konfiguration" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT-fel" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "RT-portal" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT-storlek" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT-snabbtitt" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "RT-snabbtitt för användaren %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT kan inkludera innehÃ¥ll frÃ¥n annan webbtjänst när detta extrafält visas." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT kan göra alternativen för detta extrafält till hyperlänkar till annan tjänst." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT för %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "Uppgraderingshistorik för RT" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT kommer att ansluta till databasen som den här användaren. Den kommer att skapas Ã¥t dig." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT kommer att skapa en användare som heter \"root\" och sätta det här som dess lösenord" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT kommer att ersätta %1 och %2 med register-ID och extrafältvärde respektive" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT använder den här strängen som unik identifierare för din installation och letare efter den i e-postrubriken för att avgöra vilket ärende ett meddelande avser. Vi rekommenderar att du sätter den till din internetdomän (ex: exempel.se)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT fungerar med ett antal olika databaser. MySQL, PostgreSQL, Oracle och SQLite stödjs." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Öppna igen" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Fullständigt namn" #: lib/RT/User.pm:95 msgid "RealName" msgstr "Fullständigt namn" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Mottagare" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Registrera alla uppdateringar" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Rekursiv medlem" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "Ã…teranvänd" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Hänvisa till" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Referens frÃ¥n %1 tillagd" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Referens frÃ¥n %1 raderad" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Referens till %1 tillagd" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Referens till %1 raderad" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Hänvisas frÃ¥n" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "HänvisadAv" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Hänvisar till" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "HänvisarTill" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Uppdatera" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Läs in denna sida igen var %1 minut." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "UppdateraHemsida" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "Vägrade att lägga till en länk som skulle skapa ett cirkulärt beroende" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Avvisa" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "Relaterade ärenden" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Kom ihÃ¥g förvald kö" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "PÃ¥minnelse" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "PÃ¥minnelse '%1' tillagd" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "PÃ¥minnelse '%1' genomförd" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "PÃ¥minnelse '%1' Ã¥teröppnad" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "PÃ¥minnelse '%1': %2" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "PÃ¥minnelse tillagd" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "PÃ¥minnelse avslutad" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "PÃ¥minnelse Ã¥teröppnad" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "PÃ¥minnelser" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "PÃ¥minnelse för ärende #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "Ta bort" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "Ta bort %1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Ta bort Admin.kopia" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Ta bort bokmärke" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Ta bort kopia" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Ta bort anmälare" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "Tog bort Ã¥sidosättning av ämne" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "Tog bort extrafält %1 frÃ¥n %2." #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Ersätter ägarens rullgardindsmenyer med textrutor" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Svara" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Svarsadress" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Svar till anmälare" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "Svara pÃ¥ ärende" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Svar pÃ¥ ärenden" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "Rapportera som stulen" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Anmälare" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "AnmälarGrupp" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Anmälare" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "Kräver förfallodatum enligt SLA" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "Kräver startdatum enligt SLA" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Nödvändig parameter '%1' ej specificerad" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Ã…terställ" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "Ã…terställ extrafältvärden till förvalda värden" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Ã…terställ RT-snabbtitt" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "Ã…terställ instrumentpaneler i menyn" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Ã…terställ hemlig token för autentisering" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Ã…terställ till förvalda värden" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "Ã…terställ till förvald RT-logo" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "Ã…terställ till förvalt RT-tema" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Hemma" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Ã…tgärda" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Ã…tgärda ärende #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Ã…tgärdad" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "Ã…tgärdad i HTML" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Svara" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultat" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "Ã…teruppta tidtagning" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Ã…tervänd till ärendet" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "Ã…tervänd till hemsidan" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Skriv in lösenordet igen" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "GÃ¥ tillbaka" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "Ã…terkallade behörigheten '%1' frÃ¥n %2." #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "Rich text (HTML) visar formatering som färgad text, fetstil, kursiv text med mera" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Behörighet inläst" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Behörighet kunde inte Ã¥terkallas" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Behörighet ej inläst." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Behörigheter kunde inte tilldelas %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Behörigheter för administratörer" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Behörigheter för personal" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "Rollnamn" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "Rollen finns redan" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "Rollgrupp '%1' hittades inte" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "Rollgruppen finns redan" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Roller" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Rader" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Rader per box" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Rader per sida" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "SLA aktiverat (avmarkera rutan för att inaktivera SLA för denna kö)" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "SMIME-certifikat" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "SMIMECertifikat" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL-frÃ¥gor" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "SQL-frÃ¥gor loggas inte." #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite är en databas som inte behöver nÃ¥gon server eller konfiguration. RT:s författare rekommenderar den för test, demo och utveckling, men den är inte rikitigt rätt för en produktions-RT-server med hög volym." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "lör" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "lördag" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Spara" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Spara ändringar" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Spara inställningar" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Spara som ny" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "Spara tillgÃ¥ng" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Spara ny" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Spara den här sökningen" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Sparade %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Sparad sökning" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Sparade sökningar" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Sparade diagram" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "Hittade inte sparad sökning %1" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Sparade sökningar" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "SparadeSökningar" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Scrip har skapats" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "Scrip lades inte till" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Scrips och mottagare" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "Scrips körs normalt efter varje ändring av ett ärende." #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Sök" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "Sökning %1 uppdaterad" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Sök artiklar" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "Sök tillgÃ¥ngar" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Sökinställningar" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Sök artiklar som matchar" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Sök efter godkännanden" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Sök artiklar" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Sök efter ärenden" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "Sök efter ärenden genom att ange %1id%2-nummer, ord i ämnesraden %1\"inom citattecken\"%2, namn pÃ¥ %1köer%2, %1användarnamn%2 pÃ¥ ägare, %1e-postadress%2 pÃ¥ anmälare, och ärendenas %1status%2. Sökning efter %1@domännamn.se%2 returnerar ärenden med anmälare frÃ¥n den domänen." #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Sökalternativ" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Sökresultat" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Uppdateringsfrekvens för sökresultat" #: share/html/Search/index.html:48 msgid "Searches" msgstr "Sökningar" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Hemlig token för autentisering" #: bin/rt-crontool:352 msgid "Security:" msgstr "Säkerhet:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Se även:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Visa artiklar i den här klassen" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "Visa tillgÃ¥ngar" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "Visa kataloger" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Visa ändringar i artiklar i den här klassen" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Visa att den här klassen existerar" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Välj" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Välj anpassade fält för artiklar i alla klasser" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "Välj extrafält för tillgÃ¥ngar i alla kataloger" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Välj databastyp" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Välj en klass" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Välj ett extrafält" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "Välj en extraroll" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "Välj ett scrip" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "Välj en katalog" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "Välj en extraroll" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Välj en grupp" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Välj en kö" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Välj en kö för ditt nya ärende" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Välj en användare" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Välj en artikel frÃ¥n %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Välj en artikel att infoga" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Välj ett annat sprÃ¥k" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Välj extrafält för alla köer" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Välj extrafält för alla användargrupper" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Välj extrafält för alla användare" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Välj extrafält för ärenden i alla köer" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Välj extrafält för transaktioner pÃ¥ alla ärenden i alla köer" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Välj datum" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Välj flera datum" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Välj flera värden" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Välj ett värde" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Välj köer som ska visas pÃ¥ \"RT-snabbtitt\"-sidan" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Välj ämnen för den här artikeln" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Välj upp till %quant(%1,datum,datum)" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Välj upp till %quant(%1,värde,värden)" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Valda extrafält" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Valda köer" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Valda objekt" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Urval ändrat. Spara dina ändringar" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "Skicka vidarebefordrat meddelande" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Skicka e-post till anmälare och mottagare av kopia" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Skicka e-post till anmälare och mottagare av kopia som en kommentar" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Skicka ett meddelande till anmälarna" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Skicka e-post till uttryckligen angivna mottagare av kopia samt mottagare av hemlig kopia" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Skicka e-post till kopia-mottagarna" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Skicka e-post till kopia-mottagarna som en kommentar" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Skicka e-post till de administrativa kopia-mottagarna" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Skicka e-post till de administrativa kopia-mottagarna som en kommentar" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Skicka e-post till ägaren" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "sep" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Skilj multipla poster Ã¥t med blanktecken." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "Sätt förfallodatum enligt SLA" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "Sätt startdatum enligt SLA" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Inställningar" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Korta användarnamn" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Ska RT skicka e-post för uppdateringar som du gör pÃ¥ ärenden?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Visa" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "Visa Adminmenyn" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Visa godkännandefliken" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "Visa artikelmenyn" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Visa kolumner" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Visa resultat" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Visa ärendets egenskaper pÃ¥ nivÃ¥ %1" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Visa all citerad text" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Visa godkända förfrÃ¥gningar" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Visa ocksÃ¥" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Visa kortfattade rubriker" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Visa avvisade förfrÃ¥gningar" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Visa fullständiga rubriker" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Visa globala mallar" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "Visa historik" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Visa länkbeskrivningar" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "Visa inte anmälarens ärenden" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Visa äldsta historiken först" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Visa väntande förfrÃ¥gningar" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Visa citerad text" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Visa förfrÃ¥gningar som väntar pÃ¥ andra godkännanden" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "Visa förenklad mottagarlista vid ärendeuppdatering" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Visa anmälarens 10 högst prioriterade aktiva ärenden" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Visa anmälarens 10 högst prioriterade inaktiva ärenden" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Visa anmälarens 10 högst prioriterade ärenden" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Visa ärendehistorik" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Dokumentförstörare" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Sidofält" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Signera" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Signera som standard" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Registrera som ärendeanmälare eller ärende eller kö-kopia" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Registrera som ärende eller kö-Admin.kopia" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "Signera%1%2" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "Signera%1%2 med %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Signatur" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "Signering" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Enkel" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Enkel sökning" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "En enda" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Webbplatsens namn" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Storlek" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Hoppa över meny" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Hoppar över inaktiverad användare" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Liten" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Vissa webbläsare läser kanske bara in innehÃ¥ll frÃ¥n samma domän som din RT-server." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "NÃ¥got är fel. Kontakta systemadministratören" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sortera" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "Sorteringsordning" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Sortering" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Källa" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Ange om den här körningen ska göras dagligen eller en gÃ¥ng i veckan." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Kalkylblad" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Steg" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Vänteläge" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Inled söktermen med namnet pÃ¥ ett fält följt av kolon, som i %1 och %2, för att explicit ange vad du vill söka efter." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "PÃ¥börjad" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "PÃ¥börjad %1." #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "PÃ¥börjadRelaterad" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Startar" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "StartdatumRelaterad" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Län" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "Status '%1' är inte en giltig status för tillgÃ¥ngar." #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "Status '%1' är inte en giltig status för denna %2." #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "Status '%1' är inte en giltig status för ärenden i den här kön." #: etc/initialdata:449 msgid "Status Change" msgstr "Statusändring" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "Statusändringar i HTML" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Status ändrad frÃ¥n %1 till %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Statusändringar" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Stjäl" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Stjäl ärenden" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Steg %1 av %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Stulen frÃ¥n %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "Tidtagarur" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Stil" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Ämne" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Ämnesetikett" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Ämne ändrat till %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "ÄmnesTagg" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Skicka" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "Skicka tid" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "Skickar" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Prenumerera" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Prenumerera pÃ¥ instrumentpanel %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Prenumerera pÃ¥ instrumentpanel" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Prenumererar pÃ¥ instrumentpanel %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Prenumeration" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Prenumeration kunde inte skapas: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "Prenumerationen uppdaterad" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Lyckades dekryptera data" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Lyckades krypera data" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Sammanfattning" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "Sammanfattning av skapad-senast uppdaterad" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "Sammanfattning av skapad-Ã¥tgärdad" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "Sammanfattning av skapad-startad" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "Sammanfattning av förfaller-Ã¥tgärdad" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "Sammanfattning av startad-Ã¥tgärdad" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "Sammanfattning av startar-startad" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "Sammanfattning av uppskattad tid" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "Sammanfattning av tid kvar" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "Sammanfattning av arbetad tid" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "sön" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "söndag" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Avstängt" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Systemkonfiguration" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Systemförval" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Systemfel" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Systemfel: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Systemverktyg" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Systemfel" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Systemfel. Behörighet inte tilldelad." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "SystemRollgrupp för internt bruk" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Ta" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Ta ärenden" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Taget" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Berätta hur vi hittar databasen som RT ska använda" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Mall" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Mall #%1 raderad" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "Mall '%1' är inte global" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "Mall '%1' är inte global och inte heller köspecifik" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Hittade inte mall '%1'" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "Mallen inkluderar inte Perl-kod" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Mallen är tom" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "Mallen används" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Mall är obligatorisk parameter" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Mall har parsats" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Mallparsfel" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "Mall: %1" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Mallar" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Mallar för kö %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "text" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Textfil visas inte eftersom den är inaktiverad i inställningarna." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Det är redan det nuvarande värdet" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Det är inte ett värde för detta extrafält" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "Den rollen är ogiltig för det här objektet" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Ärendet har oÃ¥tgärdade förutsättningar" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Ärendet tillhör redan den användaren" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Användaren finns ej" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Användaren är redan privilegierad" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Användaren är redan icke-privilegierad" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Användaren är nu privilegierad" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Användaren är nu icke-privilegierad" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Den användaren har inte behörighet att äga ärenden i den kön" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Det är inte nÃ¥got numeriskt ID" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Grunddata" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "Kopia för ett ärende" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "Klassen för artikeln identifierad med %1 är inte tillagd i den nuvarande kön" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Databasadministratörens lösenord" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "Adminstrativ kopia för ett ärende" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "De markerade användarna kan fÃ¥ e-post relaterad till det här ärendet beroende pÃ¥ vilka Ã¥tgärder som vidtagits. Avmarkera användarna för att sluta skicka e-post till dem om detta ärende." #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "Standardkatalogen" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Domännamnet för databasservern (som 'db.exempel.se')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "Följande kommande hittar alla aktiva ärenden i kön 'general' och sätter deras prioritet till 99 om de är förfallna:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Följande frÃ¥gor har blivit raderade och kommer att tas bort frÃ¥n instrumentpanelen sÃ¥ fort panelen uppdateras." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Följande frÃ¥gor kanske inte visas för alla användare som kan se den här instrumentpanelen." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "Nyckeln har blivit inaktiverad" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "Nyckeln har Ã¥terkallats" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "Nyckelns giltighetstid har löpt ut" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "Nyckeln är fullständigt betrodd" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Det nya värdet har satts." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Ägaren av ett ärende" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Den efterfrÃ¥gade sidan hittades inte" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Anmälaren av ett ärende" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "Inställningarna du valt är sparade i %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Systemet kan inte signera utgÃ¥ende e-post. Det beror troligtvis pÃ¥ att lösenordet är felaktigt eller att GPG-agenten inte fungerar. Var vänlig och kontakta din systemadministratör omedelbart. Felet adresserar:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Det finns flera nycklar som är lämpar sig för kryptering." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Det finns olästa kommentarer till det här ärendet." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Den här nyckeln har marginell tillitsnivÃ¥" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Det finns ingen nyckel som är lämpar sig för kryptering." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Det finns en passande nyckel, men tillitsnivÃ¥n är inte satt." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Detta extrafält kan inte ha en lista med värden" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "Den här klassen gäller inte för det objektet" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "Detta extrafält kan inte lägga till det objektet" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Denna delen är endast tillgänglig för systemadministratörer" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Denna funktion är bara tillgänglig för administratörer" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "Detta ärende kan inte Ã¥tgärdas förrän det är godkänt." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "Detta ärende kan inte Ã¥tgärdas förrän dess %numerate(%1,beroende är,beroenden är) Ã¥tgärdade." #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Detta verktyg ger användaren möjlighet att köra godtyckliga perl-moduler inifrÃ¥n RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Denna transaktion tycks inte ha nÃ¥got innehÃ¥ll" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "Den här användarens %1 högst prioriterade %2 ärenden" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "Sökning efter användare görs genom att titta pÃ¥ följande fält:" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "Detta tar dig till en delvis förifylld blankett för att skapa en tillgÃ¥ng." #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "Detta tar dig till en delvis förifylld blankett för att skapa ett ärende." #: lib/RT/Date.pm:110 msgid "Thu" msgstr "tor" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "torsdag" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Ärende" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Ärende #%1 Jumbouppdatering: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Diagram över relationer för ärende #%1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Ärende #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Ärende %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Ärende %1 har skapats i kö '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Ärende %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Ärendehistorik # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Ärende Ã¥tgärdat" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Ärendesökning" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Ärendetransaktioner" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Ärende och transaktion" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Ärendekomponering" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "ÄrendeinnehÃ¥ll" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "ÄrendeinnehÃ¥llstyp" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Ärende kunde inte skapas pÃ¥ grund av ett internt fel" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Ärendet kunde inte läsas in" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "Antal ärenden" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Ärendevisning" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "Ärende i" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Ärendets metadata" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Ärendestatus ändrad" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Ärendeuppdatering" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "ÄrendeSQL sökmodul" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Ärenden" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Ärenden %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Ärenden %1 av %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Ärende jag äger" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Ärenden som förutsätter detta godkännande:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "Tid" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Uppskattad tid" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Resterande tid" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "Använd tid" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Arbetad tid" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "Uppskattad tid" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tid för visning" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "UppskattadTid" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "Resterade tid" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "AnvändTid" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "Tidtagning för #%1: %2" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Tidszon" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Titel" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Mottagare" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "FörfrÃ¥gan om support, utbildning, kundutveckling eller licensiering, var god kontakta %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "Växla %quant(%1,frÃ¥ga,frÃ¥gor)" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Kontaktat" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "KontaktatRelaterad" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Verktyg" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Ämnesnamn" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "Ämnesmedlemsskap tillagt" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "Ämnesmedlemsskap borttaget" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Ämne ej funnet" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Ämnen" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Totalt" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "Totalt skapad-senast uppdaterad" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "Totalt skapad-Ã¥tgärdad" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "Totalt skapad-startad" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "Totalt förfaller-Ã¥tgärdad" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "Totalt startad-Ã¥tgärdad" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "Totalt startar-startad" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "Totalt uppskattad tid" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "Totalt tid kvar" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "Totalt arbetad tid" #: etc/initialdata:317 msgid "Transaction" msgstr "Transaktion" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transaktion %1 har tömts" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transaktion har skapats" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Transaktion extrafält" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "Transaktion i HTML" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaktion->Skapa gick inte eftersom du inte specificerade en objekttyp och ID" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "Transaktioner" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Transaktioner är oföränderliga" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Tillit" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "Försök" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "Försök igen" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "tis" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "tisdag" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Typ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Skriv a: framför artikelnummer och t: framför ärendenummer." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Typ ändrades frÃ¥n '%1' till '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "Kan inte lägga till ämnesmedlemsskap" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "Kan inte radera ämnesmedlemsskap i %1" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Kan inte avgöra objekttyp eller ID" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "Kan inte hitta tillgÃ¥ng #%1" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "Kan inte hitta katalog %1" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "Kan inte hitta katalog '%1'" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Kan inte läsa in artikel" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "Kan inte öppna hjälp för genvägar. Orsak:" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "Kan inte sätta tillgänglighets-id: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "Kan inte sätta objekt eller id för tillgänglighet: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "Kan inte sätta tillgänglighetsobjekt: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "Kan inte skicka tid. Var vänlig lägg till den till ärenden manuellt. Orsak:" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "Kan inte prenumerera pÃ¥ instrumentpanel %1: Ã…tkomst nekad" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "Oauktoriserad" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Avmarkera för att stänga av aviseringar till de listade mottagarna endast för den här transaktionen; permanent borttagning av aviseringar hanteras pÃ¥ Personer-sidan." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Ã…terskapa" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "Tyvärr kunde inte RT automatskapa ett konto till dig. Din RT-administratör kan hitta mer information i loggarna." #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Unix-inloggning" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Okänd (inget tillitsvärde tilldelat)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Okänt (detta värde är nytt för systemet)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Okänd InnehÃ¥llsKodning %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Okänt fält: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "Om du inte anger en särskild status omfattar sökningen bara ärenden med aktiv status (%1)." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Obegränsat" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Obegränsat" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Instrumentpanel utan namn" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Ej namngiven sökning" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Ärenden utan ägare" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Ärenden utan ägare" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Icke-privilegierad" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Ej valda extrafält" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Ej valda köer" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Ej valda objekt" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Ej tagen" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Uppdatera" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Redigera diagram" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Uppdatera diagram" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Uppdatera den här menyn" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Uppdatera ärende" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Typ av uppdatering" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Uppdatera format och sök" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Uppdatera flera ärenden" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Uppdatera icke-inlästa." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Uppdatera ärende" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Uppdatera ärende #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Uppdatera ärende #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Uppdateringstyp var varken brevväxling eller kommentar." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "UppdateraStatus" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Uppdaterad" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "Uppdaterad av" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Uppdaterade sparad sökning \"%1\"" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "UppdateradAv" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "Uppgradera frÃ¥n %1 till %2" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Överför" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Ladda upp en ny logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Överför flera filer" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Överför flera bilder" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Överför en fil" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Överför en bild" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Överför upp till %quant(%1,fil,filer)" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Överför upp till %quant(%1,bild,bilder)" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "Laddar upp..." #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Användning:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "Använd tvÃ¥kolumnslayout i formulären för att skapa och uppdatera?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "Använd tillgÃ¥ng %1 som ärendets anmälare: %2" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Använd autokomplettering för att hitta användare?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Använd förval (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Använd annat RT-administrativt verktyg" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Använd systemets förval (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Använd rullgardinsmenyerna för att välja vilka ärendeuppdateringar du vill använda i en ny artikel." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "Använd av scrips" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Användare" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "Användare %1 är för närvarande inaktiverad." #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "Användaren %1 är för närvarande inaktiverad. Redigera användare och välj \"LÃ¥t denna användare fÃ¥ tillgÃ¥ng till RT\" för att aktivera." #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Användardefinierad" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "Användargrupper" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Användarinformation" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Användarbehörigheter" #: share/html/User/Search.html:48 msgid "User Search" msgstr "Sök efter användare" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "Användaröversikt" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Användaren bad om en okänd uppdateringstyp för extrafält %1 för %2 objekt #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Det gick inte att skapa användare: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Användare har skapats" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Användare inaktiverad" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Användare aktiverad" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Användaren har en tom e-postadress" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Användare har lästs in" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Användardefinierade grupper" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "Användare: %1" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Användarnamn" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Format för användarnamn" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Användare" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Användare som matchar sökkriterierna" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Använder transaktion #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Giltig söksträng" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Bekräftelse" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Värde" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Värden" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Variabel" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Visa mallar för scrip" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Visa scrip" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Visa värden för extrafält" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Visa extrafält" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Visa exakt utgÃ¥ende e-postmeddelande och deras mottagare" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Visa grupp" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Visa gruppinstrumentpaneler" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "Visa markerat ärende" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Visa personliga instrumentpaneler" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Visa kö" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Visa sparade sökningar" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Visa systeminstrumentpaneler" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Visa ärendets privata kommentarer" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Visa ärendesammanfattning" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "VARNING: Sparar sökning med tillgänglighet pÃ¥ användarnivÃ¥" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "WYSIWYG höjd" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "Använd WYSIWYG" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Varning! Detta är INTE signerat!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "Varning: sammanslagning gÃ¥r inte att Ã¥ngra! Ange ett ärendenummer som detta ärende ska slÃ¥s samman med." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Observatör" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "ObservatörsGrupp" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Observatörer" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Vi fann din databas och kan ansluta till den. Du kan klicka pÃ¥ 'Grundläggande konfiguration' för att fortsätta anpassa RT." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Vi behöver veta namnet pÃ¥ databasen RT ska använda och var den finns. Vi behöver ocksÃ¥ veta vilket användarnamn och lösenord RT ska använda. RT kan skapa databasen och användaren Ã¥r dig, vilket är anledningen till att fÃ¥ frÃ¥gar efter användarnamn och lösenord för databasadministratören. Under steg 6 av installationen kommer vi att använda den här informationen för att skapa och initiera RT:s databas." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Ons" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "onsdag" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "Veckonummer" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Varje vecka" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "veckosammandrag" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Välkommen till RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Vad jag gjorde i dag" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Vad är RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "Vilka ärenden som ska visas under \"Mer om anmälaren\"" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "När RT inte kan hantera ett e-postmeddelande, vart ska det vidarebefordras?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "När RT skickar e-post anger den värden i rubrikerna FrÃ¥n: och Svara-Till: sÃ¥ att användare kan fortsätta dialogen genom att besvara e-brevet i sina e-postprogram. Olika adresser används för Svar och Kommentarer. Dessa adresser kan ställas in för varje kö och adresserna behöver konfigureras att använda sig av programmet rt-mailgate." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "När arbetad tid ändras" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "När ett ärende skapas" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "När ett godkännandeärende skapas, meddela ägaren och mottagaren av adminkopia om vad som väntar pÃ¥ deras godkännande" #: etc/initialdata:137 msgid "When anything happens" msgstr "När nÃ¥got händer" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "När artiklar ur denna klass inkluderas i e-postmeddelanden:" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "När du klickar pÃ¥ 'Kontrollera uppkopplingen mot databas' kan det bli en lite fördröjning medan RT försöker ansluta till din databas" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "När ett ärende stängs" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "När ett ärende vidarebefordras" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Närhelst ett ärende är avvisat" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "När ett ärende Ã¥teröppnas" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "När ett ärende har Ã¥tgärdats" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "När ett ärende eller en transaktion vidarebefordras" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "När ett ärende byter ägare" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "När ett ärendes prioritet ändras" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "När ett ärendes kö ändras" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "När ett ärendes status ändras" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "När en transaktion vidarebefordras" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "När det förekommer ett användardefinierat villkor" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "När det kommer in kommentarer" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Vid inkommande brevväxling" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Var sendmail-programmet finns." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "Bredd" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Radera" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Arbete" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Telefon arbete" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Arbetat" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "Arbetade %quant(%1,timme,timmar) (%quant(%2,minut,minuter))" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "Arbetade %quant(%1,minut,minuter)" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "Ã…r" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Ja" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "Du (%1) har inte behörighet att använda RT." #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Du fÃ¥r redigera den här instrumentpanelen och din prenumeration pÃ¥ den i RT." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Det här ärendet tillhör redan dig" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "Du har inte behörighet att använda RT." #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Du kan hoppa till det första olästa meddelandet eller hoppa till det första olästa meddelandet och markera alla meddelanden som lästa." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Du kan även redigera själva den fördefinierade sökningen" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "Du kan byta mall vid behov" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Du kan endast dela ut ärenden som tillhör dig eller som inte tillhör nÃ¥gon" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "Du kan bara stjäla ärenden som ägs av nÃ¥gon annan" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Du kan endast ta ärenden som inte tillhör nÃ¥gon" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Du kan inte ändra status frÃ¥n '%1' till '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Du har inte SuperUser-behörighet." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "Du har inte behörighet att skapa artiklar i nÃ¥gon klass" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "Du har inte behörighet att skapa tillgÃ¥ngar i katalog %1." #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "Du har inte behörighet att visa artiklar i nÃ¥gon klass" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "Du har inte behörighet att visa den här tillgÃ¥ngen." #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "Du har inte behörighet att visa den här katalogen." #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "Du aktiverade %1 men %2 är inte konfigurerad i RT_SiteConfig.pm, var vänlig titta pÃ¥ '%3' för mer hjälp" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Du har loggats ut frÃ¥n RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Du har inte tillÃ¥telse att skapa ärenden i den kön." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Du kan skapa länkar till artiklar genom att skriva \"a:###\", där ### representerar artikelns id-nummer." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Du mÃ¥ste ange ett administrativt lösenord" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Du är välkommen att logga in igen" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Ditt lösenord är inte satt." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Ditt användarnamn eller lösenord är inte korrekt" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Postnummer" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Upp]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Ner]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "[en dold katalog]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ingen]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "ett extrafält" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "aktiv" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "Efter" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "efter att ha klickat en länk" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "efter att resten av sidan har laddat" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "allokerad" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "och före" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "och inte" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "och sedan" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "när du skrollar" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "stapel" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "Före" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "brödtext" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "nedifrÃ¥n och upp" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "markera för att lägga till" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "grundläggande konfiguration" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "skapa ett ärende" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "varje dag kl. %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "dagligen" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "instrumentpanel" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "instrumentpaneler i menyn" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "raderad" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "matchar inte" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "ladda ned" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "varaktighet" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "e-post inaktiverad för ärende" #: lib/RT/User.pm:270 msgid "empty name" msgstr "tomt namn" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "lika med" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "fel: kan inte flytta ner" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "fel: kan inte flytta till vänster" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "fel: kan inte flytta upp" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "fel: inget att radera" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "fel: inget att flytta" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "fel: inget att växla" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "varje" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "explicit engÃ¥ngs dold kopia" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "explicit engÃ¥ngskopia" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "större än" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "grupp" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "grupp %1" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "grupp '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "ID" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "omedelbart" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "i klass %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "används" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "inaktiv" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "inkluderar %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "ogiltigt förfallodatum: %1" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "är" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "är inte" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "nyckel avstängd" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "nyckel utgÃ¥ngen" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "nyckel Ã¥terkallad" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "vänster till höger" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "mindre än" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "marginell" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "matchar" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "maximalt djup" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minuter" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "modifiera RT:s konfiguration" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "modifiera en instrumentpanel" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "Ändra dina inställningar" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "mÃ¥nadsvis" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "mÃ¥natlig (den %1) kl. %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "aldrig" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "ny" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "nej" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "ingen e-postadress angiven" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "inget" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "inte lika med" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "ingenting" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "Vid" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "en" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "öppen" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "öppna/stäng" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "annan..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "utför handlingar" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "paj" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "kö %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "avvisad" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "kräver ett fungerande RT-schemaläggarverktyg" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "Ã¥tgärdat" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "frÃ¥n höger till vänster" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "sök" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "se objektlistan nedan" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "sidofält" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "sajtkonfiguration" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "i vänteläge" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "stulen" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "summeringsrader" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "systemgrupp '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "tabell" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "den anropade komponenten specificerade inte varför" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "de förvalda adresser som skall anges i rubrikerna FrÃ¥n: och Svara-Till: i ett kommentarsbrev." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "de förvalda adresser som skall anges i rubrikerna FrÃ¥n: och Svara-Till: i ett kontaktbrev." #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "ärende #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "uppifrÃ¥n och ned" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "förbehÃ¥llslös" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "icke-beskriven grupp %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "obegränsad" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "uppdatera ett ärende" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "uppdatera ett godkännande" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "uppdatera en artikel" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "användare" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "användare %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "användarnamn" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "veckovis" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "veckovis (pÃ¥ %1) klockan %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "veckor" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "som kan %1 pÃ¥ dina vägnar." #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "den port som webbservern kommer att lyssna pÃ¥, t.ex. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "med rubriker" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "ja" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/en.po0000664000175000017500000000176613131430353014526 0ustar vagrantvagrant# English translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 22:58+0000\n" "Last-Translator: Shawn M Moore \n" "Language-Team: English \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" # Spaces in role names make life needlessly difficult; # just translate it! #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "Held By" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Home" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Home" rt-4.4.2/share/po/hu.po0000664000175000017500000124043013131430353014532 0ustar vagrantvagrant# Hungarian translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2016-03-03 14:12+0000\n" "Last-Translator: Gabor Bakonyi \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%4 %2 %3 %1" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%6 %2 %3 %1 %4:%5" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%7. %2 %3. (%1) %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "[%1] mezÅ‘be '%2' érték felvétele" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 változtatása: '%2' --> '%3'" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 törölve" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 törölve." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 elmentve." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 frissítve." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 a %3 sablonnal" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (változatlan)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - %2-nek átadandó argumentum" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Státuszfrissítés kiíratása a STDOUT-ra" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Add meg a használandó sablon(ok) nevét vagy azonosítóját" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Adja meg a használandó kondiciómodult" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Adja meg a használandó keresÅ‘modult" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 szerzÅ‘i joggal védett 1996-%3 %4." #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 értéke hozzáadva %2 höz" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "%1 ezelÅ‘tt" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 adatbázis már létezik és az RT tábláit is tartalmazza, viszont az RT metaadatait nem. KésÅ‘bbiekben az 'Adatbázis inicializálása' lépésben beillesztheti a metaadatokat. Ha ez elfogadható így akkor kattintson az 'Alapok személyreszabása' linkre lent az RT személyre szabásához." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 már létezik, de nem tartalmazza az RT tábláit vagy metaadatait. KésÅ‘bbiekben az 'Adatbázis Inicializálása' lépéssel beilleszthet táblákat és metaadatokat a létezÅ‘ adatbázisba. Ha ezt elfogadja, kattintson az 'Alapbeállitások' alá az RT testreszabásának folytatásához." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 nem található az adatbázisban, pedig helyi objektumnak látszik" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 (%2)" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 nem lehet csoport" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 változtatása: '%2' --> '%3'" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 másolat" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 nem állítható %2 re." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 létrehozva" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 törölve" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 letiltva" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 nem létezik." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 engedélyezve" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "A(z) %1 nekem kiosztott, legsürgÅ‘sebb jegy" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 egy eszköz amely olyan külsÅ‘ idÅ‘zítÅ‘ eszközbÅ‘l származó jegyeket kezel, mint például a cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%2 egyedi mezÅ‘ értéke innentÅ‘l nem %1" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 utoljára módosított cikk" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 legújabb cikk" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 legújabb gazdátlan jegy" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objektumok" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 frissítés: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 frissítés: Nincs változás" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 frissítve" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "[%1] aktuális jelszava" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1 faliújságjai" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1 mentett lekérdezései" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: Nincs melléklet megadva" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "%1 B" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "%1 KiB" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "%1 MiB" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Új jegy:%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "%1 m" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1 mp" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%1 nappal" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%1 órával" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%1 órával %2 perccel" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%1 perccel" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%1 hónappal" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%1 másodperccel" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%1 héttel" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%1 évvel" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' nem érvényes név" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "A '%1' nem egy érvényes osztály azonosító" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Jelölje be a négyzetet a teljesítéshez)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Törléshez kiválasztandó!)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Jelölje be a négyzetet ha valamit törölni szeretne)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Szóközökkel elválasztva adható meg a jegyek sorszáma vagy URL-je.)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Ha üresen marad: %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Nincs egyéni mezÅ‘)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Nincsenek tagok)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Nincs Scrip)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Nincs sablon)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Az itt megadott email címekre minden adminisztrátori szintű eseményrÅ‘l levelet fog küldeni a rendszer. (vesszÅ‘vel elválasztott lista)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Az itt megadott email címekre minden felhasználói szintű eseményrÅ‘l levelet fog küldeni a rendszer. (vesszÅ‘vel elválasztott lista)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Az alábbi mezÅ‘k kitöltése szükséges, ha a 'Felhasználó által meghatározott' feltételt, vagy akciót választ)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(bármely)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(ne legyen összesítés)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(névtelen)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(nincs publikus kulcs!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(nincs adat)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(nincs adat)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(engedélyezésre vár)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(szükséges)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(megbízható:%1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(névtelen)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(megbízhatatlan!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 másodperc" #: lib/RT/Date.pm:424 msgid "0s" msgstr "0 mp" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "Üres sablon" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Nem lett jelszó beállítva, ezért a felhasználó nem fog tudni belépni." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE nem található" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACE-k csak létrehozhatók és törölhetÅ‘k." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "ÉS" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Magamról" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Hozzáférés ellenÅ‘rzése" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Akció" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Az 'Akció' mezÅ‘t kötelezÅ‘ kitölteni" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Akció elÅ‘készítve..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Akciók" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Aktív jegyek" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "%1 aktív jegyei" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "%1 felvétele" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "BelsÅ‘ másolat hozzáadása" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "KönyvjelzÅ‘ hozzáadása" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Ügyfél másolat hozzáadása" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "MezÅ‘k hozzáadása" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Feltétel hozzáadása" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Kijelölt fájl csatolása" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "BeküldÅ‘ hozáadása" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Értékek hozzáadása" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "A kiválasztott jegyekhez válasz vagy kiegészítés hozzáadása" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Csoport hozzáadása" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Hozzáadás ide" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Tagfelvétel" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Új résztvevÅ‘k hozzáadása" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Jogok adása %1-nek" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Feltételek hozzáadása" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Feltételek hozzáadása és keresés" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Felhasználó hozzáadása" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Értékek hozzáadása" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Módosíthatja az egyéni mezÅ‘k értékét" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Cím" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Utca, házszám" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Postafiók" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "BelsÅ‘ másolat" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Adminisztrátori megjegyzés" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Adminisztrátori megjegyzés (HTML)" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Adminisztrátori válasz" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Adminisztrátori válasz (HTML)" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Sorok adminisztrálása" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Konfiguráció / Ãltalános beállítások" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "BelsÅ‘ másolat" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "BelsÅ‘ másolatot kapók" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Adminisztrációs jelszó" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Kézi lekérdezés" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Logikai művelet" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Minden engedély megadva" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Minden jóváhagyáson átesett (HTML)" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Minden ebben az osztályban található cikk szerepeljen egy legördülÅ‘ menüben a jegyek válaszolási lapján" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Minden osztály" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Minden faliújság" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Minden sor" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Minden jegy" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "" #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Minden jegy" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Minden téma" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Elmenthet lekérdezési mintát" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Betölthet lekérdezési mintát" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Ãrhat Perl kódot scrip-ekben, sablonokban" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Már titkosítva" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "ÉS/VAGY" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Bármely mezÅ‘" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Hatókör" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Minden objektumra érvényes" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Mentés" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Globálisan érvényes" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Kiválasztott scrip-ek alkalmazása" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "A változtatás mentése" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Jóváhagyás" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Jóváhagyás #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Jóváhagyás #%1: A megjegyzés rendszerhiba miatt nem rögzíthetÅ‘" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Jóváhagyás #%1: Megjegyzés rögzítve" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Jóváhagyás rendben" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "Jóváhagyás (HTML)" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "Jóváhagyás a tulajdonosnak (HTML)" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Jóváhagyás visszautasítva" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "Elutasított jóváhagyás kérés (HTML)" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Jóváhagy" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Ãpr" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "#%1 számú cikk: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "%1 számú cikk létrehozva" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Cikk adminisztráció" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "A cikk nem található" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Cikkek" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Cikkek %1-ben" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Cikkek amik \"%1\"-et tartalmaznak" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Téma nélküli cikkek" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "növekvÅ‘" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "Vagyontárgyak" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Egyéni mezÅ‘ket rendelhet a sorhoz vagy törölheti azokat" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Csatol" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Fájl csatolása" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Csatolt fájl" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Csatolmány" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "A csatolt '%1' nem betölthetÅ‘" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Csatolt fájl létrehozva" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Csatolt fájl neve" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Csatolt fájlok" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "A csatolmányok titkosításának lehetÅ‘sége le van tiltva." #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Attribútum Törölve" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:261 msgid "Autoreply" msgstr "Automatikus válasz" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Automatikus válasz a beküldÅ‘nek" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Automatikus válasz (HTML)" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "ElérhetÅ‘" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Vissza" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Alapadatok" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Kötegelt scrip-ek" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "A kötegelt scrip-ek általában egy meghatározott változás csoport után futnak le." #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "BCC" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Üres" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "FÅ‘panel" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Félkövér" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "KönyvjelzÅ‘" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "MenthetÅ‘ link erre a keresésre" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Megjelölt jegyek" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Megjelölt jegyek" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Téma szerinti böngészés" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Tömeges Frissítés" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "A \"%1\" mentett lekérdezés nem tölthetÅ‘ be" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Rendszerfelhasználó nem módosítható" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Egyéni mezÅ‘ nem adható hozzá név nélkül" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Egy mentett lekérdezés nem található" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "A jegyet nem lehet önmagához kapcsolni" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Sikertelen mentés: %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Ezt a lekérdezést nem lehet lementeni" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Nem hozhatók létre problémák egy letiltott sorban." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategória" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Ügyfél másolat" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "Ügyfél másolatot kapók" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Módosít" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Levél tárgyának megváltoztatása:" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Jelszó-változtatás" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Diagram" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Mindet kijelölni" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Törléshez bejelölni" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Gyerek" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Leszármazottak" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Válasszon témát a %1-hez" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Város" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Osztály" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Osztály neve" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Osztály azonosító (ID)" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Az Osztály már globálisan alkalmazható" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Az Osztály már alkalmazható a %1 soban" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Osztályok" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Töröl/visszaállít" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Mindet töröld" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Lezárva" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Lezárt jegyek" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: válasszon ki vagy adjon meg akár több értéket" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Combobox: válasszon ki vagy adjon meg egy értéket" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Cobobox: válasszon ki vagy adjon maximum %1 db értéket" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Megjegyzést_fűz_hozzá" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Megjegyzés Címe" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "KiegészítÅ‘cím" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Megjegyzést fűzhet egy jegyhez" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Megjegyzések" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Megjegyzés (a beküldÅ‘ nem kapja meg!)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Kiegészítés ehhez a felhasználóhoz" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Megjegyzés hozzáadva" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Feltétel" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "A '%1' feltétel nem található" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "A 'Feltétel' mezÅ‘t kötelezÅ‘ kitölteni" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "A feltétel egyezik..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "A %1 konfigurációs fájl zárolva van" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Sikeres kapcsólódás" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "Kapcsolat" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Lépj kapcsolatba a rendszergazdával." #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Tartalom" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tartalom Típus" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "" #: etc/initialdata:393 msgid "Correspondence" msgstr "Válasz" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Válasz hozzáadva" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Válasz (HTML)" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Nem sikerült hozzáadni az új egyéni mezÅ‘t: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Nem sikerült a tulejdonost megváltoztatni: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Nem sikerült létrehozni a(z) %1 egyéni mezÅ‘t" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Nem sikerült létrehozni a csoportot" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Nem lehetett a keresést létrehozni: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Nem jött létre a jegy. A sor nincs meghatározva" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "A felhasználó nem jött létre" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Nem lehetett a keresést törölni %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "A %1 osztály nem betölthetÅ‘" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "A(z) %1 egyéni mezÅ‘ nem betölthetÅ‘" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "A csoport nem betölthetÅ‘" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Nem tudtam objektumot betölteni %1 számára" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "A felhasználó adatait nem sikerült elmenteni" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Nem sikerült a csatolmányt hozzáadni" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "A tagot nem lehet a csoporthoz adni" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "A tanzakció nem létrehozható: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Nem lehetett a %1 faliújságot törölni: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "A sor nem található" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "A csoport/felhasználó nem található" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Az érték nem található" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Nem sikerült a(z) %1 osztály betöltése" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "A(z) %1 egyéni mezÅ‘ nem betölthetÅ‘" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Nem sikerült betölteni a %1 számú jegy másolatát." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Nem lehetett a %1 faliújságot betölteni: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "%1 csoport nem betölthetÅ‘" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Nem sikerült a hivatkozás betöltése" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "%1 objektum nem betölthetÅ‘" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "A sor nem betölthetÅ‘" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "%1 sor nem betölthetÅ‘" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Nem lehet betölteni a '%1' sort" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Nem sikerült a %1 számú scrip betöltése" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Nem lehet betölteni a #%1 sablont" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "A(z) '%1' nem betölthetÅ‘" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "A téma törléséhez nem sikerült betölteni a tagságait" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Privát kulcs beállítása sikertelen." #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Privát kulcs feloldása sikertelen." #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Ország" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Felvesz" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Jegyek létrehozása" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Osztály létrehozása" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Egyéni mezÅ‘ létrehozása" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Egyéni mezÅ‘ létrehozása a(z) %1 sorhoz" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Új cikk létrehozása" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Új cikk létrehozása ebben:" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Új faliújság létrehozása" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Új csoport létrehozása" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "Új jegy létrehozása a(z) %1 sorban" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Új felhasználó létrehozása" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Sor létrehozása" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "Scrip létrehozása és hozzárendelése a(z) %1 sorhoz" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Sablon létrehozása" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Új jegy" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Jegy létrehozása ezzel a felhasználóval mint beküldÅ‘ a kiválasztott sorban:" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Cikk létrehozása" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Cikk létrehozása egy osztályban..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Cikket hozhat létre" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "Vagyontárgyak létrehozása" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Csoport-faliújságot hozhat létre" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Hozzon létre egy új jegyet ennek a sablonnak scripjeire alapozva" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Saját faliújságot hozhat létre" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Rendszer-faliújságot hozhat létre" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Létrehozás" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Jegyet hozhat létre" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Módosíthatja a sorhoz hozzáférÅ‘ felhasználók listáját és jogaikat" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Egyéni mezÅ‘t törölhet, módosíthatja az alapadatait (Globális jogként: új egyéni mezÅ‘t is létrehozhat)" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Létrehozhat, módosíthat illetve törölhet egyéni mezÅ‘ értékeket" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "Egyéni szerepek létrehozása, módosítása és törlése" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Sort törölhet, módosíthatja az alapadatait (Globális jogként: új sort is létrehozhat)" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Mentett kereséseket módosíthat, törölhet vagy hozhat létre" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Felhasználókat módosíthat, törölhet vagy hozhat létre" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Felvéve" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Létrehozta" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Egyéni mezÅ‘ létrehozva (%1)" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Létrehozó személy" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Lekérdezés létrehozva (%1)" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "Létrehozó_Személy" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "Létrehozva_(relatív)" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Létrehozó" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Titkosítás" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Jelenlegi kapcsolatok" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Aktuális lekérdezési feltételek" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Jelenlegi tagok" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Aktuális lekérdezési feltételek" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Jelenlegi résztvevÅ‘k" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "Egyéni CSS (Haladó)" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Egyéni mezÅ‘k" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "%1 egyéni mezÅ‘i" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "A(z) %1 sor egyéni mezÅ‘i" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "Egyéni szerepek" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "Az akcióhoz rendelt egyéni lezáró kód" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Az akcióhoz rendelt egyéni elÅ‘készítÅ‘ kód" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Egyéni feltétel" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Egyéni mezÅ‘ %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "A %1 egyéni mezÅ‘ nem alkalmazható erre az objektumra" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "[%1] egyéni mezÅ‘nek van értéke." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "[%1] egyéni mezÅ‘nek nincs értéke." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "[%1] egyéni mezÅ‘ nem található" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "A(z) %2 egyéni mezÅ‘ %1értéke nem található" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Az egyéni mezÅ‘ értéke nem található" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Az egyéni mezÅ‘ értéke törölve" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "EgyéniMezÅ‘" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Testreszabás" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Napi gyűjtÅ‘" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Faliújság" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "A [%1] faliújságot nem lehetett létrehozni" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "A [%1] faliújságot nem lehetett frissíteni" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Faliújság frissítve" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Faliújságok" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Faliújság menü szerkesztése" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "A(z) %1 felhasználó Faliújság menüjének szerkesztése" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Adatbázis neve" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "RT adatbázis jelszava" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Adatbázis kiszolgáló portja" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Adatbázis típus" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Dátum formátum" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "IdÅ‘pontok" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "Dekódolási hiba; lépj kapcsolatba a rendszergazdával" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Alapértelmezett sor" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Alapértelmezett: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Törlés" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Sablon törlése" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Sikertelen törlés: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Csoport-faliújságot törlölhet" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Törölheti saját faliújságát" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Rendszer-faliújságot törlölhet" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Törölhet jegyet a sorból" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Értékek törlése" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "%1 törölve" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Elutasítva" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "EttÅ‘l függnek" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "EttÅ‘l_a_jegytÅ‘l_függ" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "A következÅ‘ktÅ‘l függ" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "A_jegy_ettÅ‘l_függ" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "csökkenÅ‘" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "A jegy szabatos leírása" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Leírás" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "További adatok módosítása" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Irány" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Letiltva" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "Letiltva?" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Mutat" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Láthatja a hozzáférési jogokat" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "%1 cikk mutatása" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "MezÅ‘k kiválasztása" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "Minden szöveges melléklet fix szélességű betűtípussal jelenik meg a formázást megtartva, de szükség szerint tördelve." #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "Mellékletek megjelenítése formázott szövegként ha lehetséges" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Csak szöveg mellékletek megjelenítése fix szélességű betűvel" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Jegy mutatása \"Gyors jegylétrehozás\" után" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "TerjeszthetÅ‘ %1GNU GPL 2%2, vagy magasabb verziószámú licenccel." #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Bármit megtehet az RT-ben (teljes rendszerhozzáférés)" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Tartománynév" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ne írd be hogy http://, csak úgy írd hogy 'localhost', vagy 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Ne frissítse a kezdÅ‘lapot." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Ne frissítse a lekérdezési eredményeket." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ne frissítse ezt az oldalt." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Letölt" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "HatáridÅ‘" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "HatáridÅ‘_(relatív)" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "HIBA: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Egyszerűen frissítheti a nyitott jegyeit" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Az Ön emlékeztetÅ‘inek egyszerű nézete" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Szerkesztés" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Egyéni mezÅ‘k szerkesztése" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "%1 egyéni mezÅ‘inek módosítása" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Minden csoportra érvényes egyéni mezÅ‘k szerkesztése" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Minden sorra érvényes egyéni mezÅ‘k szerkesztése" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Minden felhasználóra érvényes egyéni mezÅ‘k szerkesztése" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Minden osztályra érvényes cikkekhez használható egyéni mezÅ‘k szerkesztése" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Minden jegyre érvényes egyéni mezÅ‘k szerkesztése" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Kapcsolatok módosítása" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Lekérdezés szerkesztése kézzel" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Lekérdezés szerkesztése" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Globális téma-hierarchia szerkesztése" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Rendszersablonok módosítása" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "A(z) %1 téma-hierarchiájának szerkesztése" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "'%1' egyéni mezÅ‘ szerkesztése" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "A(z) %1 csoport tagságának módosítása" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Meg kell adni a bázist vagy a célt" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Vagy nincs joga megtekinteni a mentett lekérdezést, vagy hibás a megadott azonosító: %1" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "E-mail cím" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Levelezési cím" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "GyűjtÅ‘ levél" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "E-Mail-cím már foglalt" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Levél kézbesítés" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "EmailCím" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "Üres" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "ElrejthetÅ‘k az idézetek?" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Engedélyezve" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Aktivált (A jelölÅ‘ megszüntetése letiltja ezt az osztályt)" # ## muss das überhaupt übersetzt werden??? #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Aktivált (A jelölÅ‘ megszüntetése letiltja ezt az egyéni mezÅ‘t)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "Engedélyezve (A jelölÅ‘ kikapcsolása letiltja ezt az egyéni szerepet)" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Aktivált (A jelölÅ‘ megszüntetése letiltja ezt a csoportot)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Aktivált (A jelölÅ‘ megszüntetése letiltja ezt a sort)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Engedélyezve (a pipa eltávolításával tiltható a scrip futása)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Aktív osztályok" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Aktív sorok" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "A lekérdezési feltételeknek megfelelÅ‘ aktív sorok" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Status %1 engedélyezve" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Titkosítás" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Automatikus digitális titkosítás" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Kódolási hiba; lépj kapcsolatba a rendszergazdával" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Adja meg az ehhez a cikkhez kapcsolódó cikkeket, jegyeket vagy egyéb URL-eket" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Több IP címtartomány megadása" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Több IP cím megadása" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Szabad értékmegadás (több)" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Több érték megadása automatikus kiegészítéssel" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Objektum vagy URI. Szóközzel elválasztva több is megadható." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Egy IP cím megadása" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Egy IP címtartomány megadása" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Szabad értékmegadás (egy)" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Egy érték megadása automatikus kiegészítéssel" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Sor vagy URI. Szóközzel elválasztva több is megadható." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Jegy szám vagy URI. Szóközzel elválasztva több is megadható." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Az idÅ‘ alapértelmezett mértékegysége az óra legyen" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Hiba" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Hibaküldés az RT tulajdonosának: publikus kulcs" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Hiba: Hiányzó faliújság" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Hiba: rossz GnuPG adat" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "Hiba: hibás titkosított adat" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Hiba: a mentett lekérdezés (%1) nem tölthetÅ‘ be: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Hiba: nincs privát kulcs" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Hiba: publikus kulcs" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "Hiba: titkosítatlan üzenet" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Becsült MunkaidÅ‘" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Mindenki" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Például:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Lejárt" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "Kiterjesztett_Státusz" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "KiegészítÅ‘ információk" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Cikk kinyerése" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Tárgy kinyerése" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Új cikk kinyerése a #%1 jegybÅ‘l" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Új cikk kinyerése a %2 osztályba a #%1 jegybÅ‘l" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Nem sikerült csatlakozni az adatbázishoz: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "A %1 Modul nem betölthetÅ‘. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Nem sikerült betölteni a sablont" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Exportok" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "MezÅ‘ értékek forrása:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "fájlnév" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Háttérszín kitöltése ez alapján:" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Több soros szövegmezÅ‘" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Több soros wikitext mezÅ‘" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "A mezÅ‘be egy teljes URL címet írjon." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "VégsÅ‘ prioritás" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "VégsÅ‘_Prioritás" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Olyan felhasználó keresése ahol a(z)" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Olyan csoport keresése ahol a(z)" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Olyan felhasználók keresése, akiknél a" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Jegyek keresése" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "" #: share/html/Elements/Tabs:878 msgid "First" msgstr "ElsÅ‘" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "A változtatás kikényszerítése" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formátum" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "iCal események megjelenítése dátummal és idÅ‘ponttal" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Továbbít" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Üzenet továbbküldése" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Üzenet továbbküldése és visszalépés" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Jegy továbbítása" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Jegy hozzászólást továbbíthat tetszÅ‘leges e-mail címre" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "%quant(%1) problémát találtam" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Gyakoriság" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "P" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Péntek" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Ãltalános" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "Ãltalános vagyontárgyak" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Ãltalános (ügyfél) jogok" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "%1 felhasználónak adva" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Ãltalános" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Globális tulajdonságok" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Globális témák" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Egyéni mezÅ‘k általános beállításai" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Mehet" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Gyorskeresés" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Gyorskeresés" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Mehet!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Jegyhez ugrás" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Jegyhez ugrás" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Ãbra" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Ãbra tulajdonságai" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Csoport" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Csoportjogok" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Csoportnak már vannak tagjai: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "A csoportot nem lehetett létrehozni: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Csoport létrehozva" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Csoport letiltva" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Csoport engedélyezve" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "A csoportnak már van ilyen tagja" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Csoport nem található" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Csoportok" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Csoportok nem lehetnek a saját tagjaik tagjai" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "A lekérdezési feltételeknek megfelelÅ‘ csoportok" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "Csoportok amiknek a felhasználó már tagja (törléshez bejelölni)" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "Csoportok amiknek a felhasználó még nem tagja (felvételhez bejelölni)" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Csoportok melyekhez a felhasználó tartozik" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "A_jegy_résztvevÅ‘je" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Továbbküldött üzenet fejléce" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "Felhasználó" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Minden idézett szöveg elrejtése" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Idézett szövegek elrejtése" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Részletes történet" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "A #%1 cikk története" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "A %1 csoport története" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "A %1 sor története" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "%1 felhasználó története" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "KezdÅ‘lap frissítésének gyakorisága" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "KezdÅ‘lap" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Óra" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Óra" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "Sorszám" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Személy" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "Ha egy egyéni mezÅ‘ kiválasztásra kerül, a kimenÅ‘ levél tárgya felülírásra kerül a cikk által." #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "Ha valóban meg szerette volna nézni a %1 oldalt és %2, akkor %3kattintson ide a kérés feldolgozásához%4." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Ha valamit módosított, ne felejtsen el ide kattintani, hogy megtörténjen a" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Érvénytelen érték %1-nek" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Nem változtatható mezÅ‘" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Inaktív jegyek" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Cikk hozzáfűzése:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Illessze be a cikk nevét is" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Illessze be a cikk összefoglalóját is" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "A(z) '%1' egyéni mezÅ‘ hozzávétele" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "A tiltott osztályokat is mutassa." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "A tiltott egyéni mezÅ‘ket is mutassa." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "A tiltott egyéni szerepeket is mutassa." #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Láthatóak legyenek a letiltott sorok is." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Láthatóak legyenek a letiltott sorok is." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Lekérdezés a letiltott felhasználók között is." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Lap betöltése" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Keresés az al-témákban is" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "iCal eseményeknél idÅ‘pont hozzávétele az eseményhez" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Önálló levelek" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Értesítse a felhasználót, hogy egy faliújság amire feliratkozott, hiányzik" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Felhasználó értesítése hogy a jelszava törölve lett" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "KezdÅ‘ prioritás" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "KezdÅ‘_Prioritás" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Adatbázis inicializálása" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Input hiba" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "BelsÅ‘ hiba: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Érvénytelen osztály" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Érvénytelen egyéni mezÅ‘ érték forrás" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Érvénytelen sor, a(z) %1 osztályt nem lehetett érvényesíteni" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Érvénytelen dátum" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Érvénytelen objektum" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Érvénytelen sor" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Érvénytelen jog" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Érvénytelen érték %1-nek" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Érvénytelen érték az egyéni mezÅ‘höz" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "" #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "DÅ‘lt" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Módosíthatja saját csoporttagságait (belépés, kilépés)" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Júl" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Minden módosítása" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Jún" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Hagyd 'localhost'-on ha nem tudod mit írj ide. Hagyd üresen ha helyben, socketen keresztül csatlakozol." #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Nyelv" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Nagy" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Utolsó" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Utolsó kapcsolat" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Utoljára foglalkoztak vele" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Utoljára aktualizálva" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Utoljára frissítette:" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Utoljára aktualizálva" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Utoljára frissítette" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "Utoljára_Aktualizálva" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "Utoljára_Aktualizáló_Személy" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "Utoljára_Aktualizálva_(relatív)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "HátralévÅ‘ IdÅ‘" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Magyarázatok" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Karakter szám; Ha nullát állít be, minden (szöveges) üzenet megjelenítésre kerül" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "A felhasználó hozzáférhet az RT-hez" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "A felhasználónak további jogok is adhatók" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Hajrá!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Életciklus" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Hivatkozás" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Kapcsolat már létezik" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Kapcsolat nem található" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "%1. számú jegy kapcsolatainak módosítása" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Linkelje az értéket ide:" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "Kapcsolódik_hozzá" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Kapcsolatok" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "Kapcsolata van" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Betöltés" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Egy mentett lekérdezés betöltése" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Mentett lekérdezés betöltése" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Lekérdezés betöltése:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "%1 %2 betöltve" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Az eredeti mentett lekérdezés \"%1\" betöltésre került" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Betöltött perl modulok" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Mentett lekérdezés \"%1\" betöltve" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Betöltés..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Területi beállítások" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Cím" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "%1-ként van bejelentkezve" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Kijelentkezett" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Bejelentkezés" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Kijelentkezés" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Levelezés" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "FÅ‘ kapcsolat típus:" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Legyen a tulajdonos" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Státusz változtatása" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "HatáridÅ‘ változtatása" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Hozzáfogás dátumának változtatása" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Kiosztás dátumának változtatása" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Bejelentés dátumának változtatása" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Prioritás állítása" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Sor változtatása" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Tárgy változtatása" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Egyéni mezÅ‘k és értékeik kezelése" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "Egyéni szerepek kezelése" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Csoportok és tagjaik kezelése" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Minden sorra vonatkozó tulajdonságok és beállítások kezelése" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Sorok és a sorokra jellemzÅ‘ beállítások kezelése" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Mentett ábranézetek kezelése" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Felhasználók és jelszavaik kezelése" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Márc" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Minden üzenetet olvasottra lett állítva" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Mason sablon keresési sorrend" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Maximális megjelenítendÅ‘ üzenethossz" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Máj" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Én" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Tag" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Tag %1 hozzáadva" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Tag %1 törölve" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Tag hozzáadva: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Tag törölve" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Tag nincs törölve" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "FelmenÅ‘k" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Tagok" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "%1 tag hozzáadva" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "%1-beli tagság törölve" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Tagságok" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "%1 felhasználó tagságai" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Beolvasztás" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Beolvasztás sikeres" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Beolvasztás sikertelen Konnte EffectiveId nicht setztn" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Beolvasztani ebbe" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Beolvasztva %1-be" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Üzenet szövege" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Az üzenet tartalma nem került megjelenítésre, mert túl hosszú." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Az üzenet tartalma nem került megjelenítésre, mert a küldÅ‘ nem megjelenítendÅ‘nek jelölte." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Az üzenet tartalma nem került megjelenítésre, mert nem egyszerű szöveg." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "ÜzenetszerkesztÅ‘ magassága" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "ÜzenetszerkesztÅ‘ szélessége" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "A sor nem hozható létre" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Üzenet rögzítve" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Jelszó minimális hossza" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Perc" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobil" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Módosítás" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Tagok módosítása" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Módosíthatja a scrip sablonokat" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Módosíthatja a scrip-eket" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "A(z) %1 sor egyéni mezÅ‘jének módosítása" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "A(z) #%1 cikk módosítása" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "Vagyontárgyak módosítása" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "A(z) %1-vel összefüggÅ‘ objektumok módosítása" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Módosíthatja az egyéni mezÅ‘k értékét" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "%1. számú probléma idõadatainak módosítása" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Globális cikk témák módosítása" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Globális egyéni mezÅ‘k módosítása" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Ãltalános csoportjogok megváltoztatása" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Globális témák módosítása" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Globális felhasználói jogok megváltoztatása" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Csoport-faliújságot módosíthat" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Felhasználók csoporttagságát módosíthatja" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Törölheti a csoportot, módosíthatja az alapadatait (Globális jogként: új csoportot is létrehozhat)" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "A %1 Osztályra vonatkozó csoport jogok módosítása" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Csoportok [%1] egyéni mezÅ‘re vonatkozó jogainak megváltoztatása" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "A(z) %1 csoport csoportjogainak módosítása" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "A %1 sorra vonatkozó csoportjogok módosítása" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Módosíthatja az osztály metaadatait és egyéni mezÅ‘it" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Módosíthatja saját adatait" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "A %1. számú problémában érintett személyek változtatása" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Módosíthatja a saját faliújságát" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Módosíthatja a sor résztvevÅ‘inek listáját" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "A(z) %1 sorhoz tartozó Scripek módosítása" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "A minden sorra érvényes scripek módosítása" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Rendszer-faliújságot módosíthat" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "%1 sablon módosítása" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "A %2 sorhoz tartozó %1 sablon módosítása" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Az általános sablonok megváltoztatása" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "A(z) %1 osztály módosítása" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "A(z) %1 faliújság tartalmának módosítása" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "A(z) %1 faliújság módosítása" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Az alapértelmezett RT kezdÅ‘lap módosítása" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "A %1 csoport módosítása" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "A(z) %1 faliújság feliratkozásainak módosítása" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "%1 felhasználó módosítása" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Lekérdezési feltételek módosítása..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "%1. számú jegy módosítása" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "%1. számú jegy módosítása" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "Módosíthatja a már tulajdonossal rendelkezÅ‘ jegyek tulajdonosát" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Módosíthatja a jegyek alapadatait" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "A(z) %1 témájának módosítása" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Témákat módosíthat, törölhet vagy hozhat létre; módosíthatja hierarchiájukat" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Módosíthatja a cikkek témáit" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "A(z) %1 osztályhoz tartozó felhasználói jogok módosítása" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Felhasználók [%1] egyéni mezÅ‘re vonatkozó jogainak módosítása" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "A(z) %1 csoportra érvényes felhasználói jogok módosítása" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "A(z) %1 sorra érvényes felhasználói jogok módosítása" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "A(z) #%1 jegy levelezési beállításainak módosítása" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "H" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "HétfÅ‘" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "További részletek a beküldÅ‘rÅ‘l" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "Mozgatás" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "Több felhasználó (Létrehozás után nem módosítható)" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "Több felhasználó (A jelölÅ‘ kikapcsolása után a szerep csak egy felhasználónak adható. Létrehozás után nem módosítható)" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "A 'Name' attribútumot kötelezÅ‘ megadni" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "%1 jegyeim" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Jóváhagyásaim" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "Saját vagyontárgyaim" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Mai Napom" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "EmlékeztetÅ‘im" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Jóváhagyásaim" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "Lezárt jegyeim" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Saját faliújságjaim" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Nyitott jegyeim" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "EmlékeztetÅ‘im" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Saját lekérdezések" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "ÚJSOR" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Név" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Név és email cím" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "A felhasználói név már foglalt" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "Név megadása kötelezÅ‘" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Név:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Soha" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Új" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Új cikk" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Új faliújság" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Új kapcsolatok" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "Új várakozó jóváhagyás (HTML)" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Új Lekérdezés" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Új üzenetek" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Új jelszó" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Új jelszó értesítÅ‘ lett elküldve" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Új emlékeztetÅ‘:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Új jegy" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Az új jegy nem létezik" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Ebben a sorban nem lehet '%1' státusza az új jegyeknek." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Új résztvevÅ‘k" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "KövetkezÅ‘" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Becenév" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Becenév" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Nem" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "Nincs \"%1\" betöltve" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Nincs \"%1\"-el egyezÅ‘ cikk" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Nincs osztály definiálva" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Nincs a lekérdezési feltételeknek megfelelÅ‘ osztály." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Nincs egyéni mezÅ‘" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Nincs egyéni mezÅ‘ meghatározva" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Nincs csoport meghatározva" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Nincs sor meghatározva" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Nincs tárgy" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "Nincs tárgy felülírás" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Nincs sablon" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "Nincs a lekérdezési feltételeknek megfelelÅ‘ eszköz." #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Nincs oszlop megadva" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Nincs kiegészítés tárolva" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "Nincs a lekérdezési feltételeknek megfelelÅ‘ egyéni szerep." #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Nincs leírás a(z) %1-hez" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Nincs csoport megadva" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Nincs a lekérdezési feltételeknek megfelelÅ‘ csoport." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Nincs csatolt üzenet" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Nincs jelszó megadva" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Nincs joga sort létrehozni" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Nincs joga a(z) '%1' sorban jegyet létrehozni" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Nincs joga ezt a jegyet megtekinteni" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Nincs joga a cikket megnézni" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Nincs joga ezt a jegyet aktualizálni" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Nincs vezetÅ‘ kiválasztva." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Nem található a lekérdezési feltételeknek megfelelÅ‘ sor." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Nem találhatók jogok" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Nincs feldolgozható lekérdezési lista." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "(nincs tárgy)" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Nincs tranzakció típus megadva" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Nincs(enek) használható kulcs(ok)." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Nincs a lekérdezési feltételeknek megfelelÅ‘ felhasználó." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Senki" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Nem létezÅ‘ mezÅ‘?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "Nem alkalmazott scrip-ek" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Nincs bejelentkezve." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Nincs megadva" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Megjegyzések" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Az értesítést nem sikerült elküldeni" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "BelsÅ‘ másolatot kapók értesítése" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "BelsÅ‘ másolatot kapók értesítése kiegészítésként" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Ügyfél másolatot kapók értesítése" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Ügyfél másolatot kapók értesítése kiegészítésként" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Más címzettek értesítése" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Más címzettek értesítése kiegészítésként" #: etc/initialdata:47 msgid "Notify Owner" msgstr "A tulajdonos értesítése" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "Tulajdonos és belsÅ‘ másolatot kapók értesítése" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "A tulajdonos értesítése kiegészítésként" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Értesítse a tulajdonosokat az elutasított jegyeikrÅ‘l" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Minden résztvevÅ‘ értesítése" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Minden résztvevÅ‘ értesítése kiegészítésként" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "A tulajdonos és a belsÅ‘ másolatot kapók értesítése az új jóváhagyásokról" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "BeküldÅ‘ értesítése" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "A beküldÅ‘ és az ügyfél értesítése" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "A beküldÅ‘ és az ügyfél értesítése kiegészítésként" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Értesítsen az olvasatlan üzenetekrÅ‘l" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "VAGY" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objektum" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekum nem hozható létre" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Az objekumot nem sikerült törölni" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objektum létehozva" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objektum törölve" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Okt" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Bezáráskor" #: etc/initialdata:170 msgid "On Comment" msgstr "Kiegészítéskor" #: etc/initialdata:142 msgid "On Correspond" msgstr "Válaszoláskor" #: etc/initialdata:131 msgid "On Create" msgstr "Létrehozáskor" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "Továbbításkor" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Jegy_továbbításakor" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Tranzakció_továbbításakor" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Tulajdonos_változásakor" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Prioritás_változásakor" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Sor_megváltozásakor" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Visszautasítás_esetén" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Újranyitáskor" #: etc/initialdata:205 msgid "On Resolve" msgstr "Megoldáskor" #: etc/initialdata:176 msgid "On Status Change" msgstr "Státusz_megváltozásakor" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Tranzakciónál" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Egyszeri titkos másolat" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Egyszeri másolat" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Csak a bevitel, nem a megjelenítés" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Csak a(z) %1 után létrejött jegyek engedélyezései legyenek láthatóak" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Csak a(z) %1 elÅ‘tt létrejött jegyek engedélyezései legyenek láthatóak" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Csak a következÅ‘ csoport egyéni mezÅ‘it muatssa:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "Inaktív jegyek megnyitása" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Megnyit" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Jegy megnyitása" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "URL megnyitása" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "Inaktív jegyek megnyitása" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Nyitott jegyek" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Opció" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Opciók" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Rendezés" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Cég, szervezet" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "A megjegyzésrÅ‘l szóló kimenÅ‘ levél rögzítve" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "KimenÅ‘ levél rögzítve" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Saját hozzászólások levelei" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Megtekintés" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Lehet tulajdonosa egy jegynek" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Tulajdonos" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Sikeres tulajdonos változtatás %1 --> %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "ErÅ‘szakos tulajdonosváltás: %1 --> %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "Tulajdonos_Neve" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "Az oldal nem található" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Személyhívó" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Személyhívó" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "SzülÅ‘" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "SzülÅ‘k" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Jelszó" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Jelszó megváltoztatva" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Jelszó: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:714 msgid "PasswordChange" msgstr "JelszóVáltozás" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "A jelszavak nem egyeznek." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "RésztvevÅ‘k" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "A(z) %1 sor felhasználóinak módosítása" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl konfiguráció" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Perl könyvtár keresési sorrend" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Hozzáférés visszautasítva" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Hozzáférés megtagadva" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefonszámok" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "Lehetséges oldalon-keresztüli kérés hamisítás (CSRF cross-site request forgery)" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Beállításaim" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Beállítások mentve." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Preferált kulcs: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Preferált kulcs" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "Nyomja meg a(z) %1 billentyűt a gyorsbillentyűk megtekintéséhez." #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "ElÅ‘zÅ‘" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "%1 vezetÅ‘ nem található." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioritás" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Jogkör" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Jogkör:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Kiemelt" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Kiemelt felhasználók" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Lekérdezések" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Lekérdezés" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Lekérdezés-szerkesztÅ‘" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Sor" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "%1 sor nem található" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "A sor neve" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Sor már létezik" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "A sor nem hozható létre" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "A sor nem tölthetÅ‘ be." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "A sor létrehozva" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "A sor nem található" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "sorhoz tartozó kulccsal" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "SorBelsÅ‘Másolat" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "SorEgyéniMezÅ‘" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "SorÜgyfélMásolat" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "Sor_Neve" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "SorRésztvevÅ‘" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Sorok" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Ãltalam adminisztrált sorok" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Sorok, melyekben belsÅ‘ másolatot kapok" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Gyors lekérdezés" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Gyors jegylétrehozás" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Konfiguráció" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT konfiguráció" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT Hiba" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT méret" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "KezdÅ‘lap" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "A(z) %1 felhasználó kezdÅ‘lapjának testreszabása" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "Az RT az itt megadott külsÅ‘ oldal tartalmát is meg tudja jeleníteni az egyéni mezÅ‘ tartalma mellett." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "Az RT egy másik szolgáltatásra mutató linket tud csinálni az itt megdott értékbÅ‘l." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT alap változók" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "%1 -- Request Tracker" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "Az RT egy lehetséges %1oldalon-keresztüli kérés hamisítást%2 észlelt ehhez az oldal letöltéshez, mivel %3. Egy rossz szándékú támadó megpróbált %1%4%2 az Ön nevében. Ha nem Ön indította ezt a kérést akkor javasolt értesíteni a biztonsági csoportot." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "Az RT létre fog hozni egy \"root\" nevű felhasználót és ezt állítja be a jelszavának" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "Az itt megadott linkben szereplÅ‘ %1 és %2 azonosítókat az RT a megfelelÅ‘ rekord azonosítójával és az egyéni mezÅ‘ értékével behelyettesíti." #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Valódi név" #: lib/RT/User.pm:95 msgid "RealName" msgstr "ValósNév" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Minden változtatás rögzítése" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Recurzív tag" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Erre hivatkozik" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "%1 hivatkozás törölve" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "%1 hivatkozás törölve" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "A következÅ‘k hivatkoznak rá" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "Ez_a_jegy_hivatkozik_rá" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "A következÅ‘kre hivatkozik" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "Erre_a_jegyre_hivatkozik" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Frissítés" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "%1 percenként frissítse ezt az oldalt." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Visszautasít" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "Kapcsolódó jegyek" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Alapértelmezett sor megjegyzése" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "EmlékeztetÅ‘" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "%1 emlékeztettÅ‘ hozzáadva" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "'%1' emlékeztetÅ‘je befejezve" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "'%1' emlékeztetÅ‘je újranyitva" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "EmlékeztetÅ‘k" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "EmlékeztetÅ‘k a #%1 jegyhez" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "BelsÅ‘ másolat eltávolítása" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Ügyfél másolat eltávolítása" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "BeküldÅ‘ eltávolítása" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "A legördülÅ‘ menüt szövegdobozra cseréli" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Válaszol" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Válaszcím" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Válasz a beküldÅ‘knek" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Válaszolhat jegyre" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "BeküldÅ‘" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "BeküldÅ‘ csoport" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "BeküldÅ‘" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "A szükséges '%1' paraméter nincs megadva" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Visszaállít" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "A kezdÅ‘lap kinézetének alaphelyzetbe állítása" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "Faliújság menü alaphelyzetbe állítása" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Titkos azonosítókulcs újragenerálása" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Alaphelyzetbe állítás" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "Visszaállás az alapértelmezett logóra" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "Visszaállás az alapértelmezett témára" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Otthoni" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Megold" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "%1. (%2) jegy lezárása" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Megoldva" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "Megoldva (HTML)" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "Megoldva_(relatív)" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Válasz" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Változtatások eredménye" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Vissza a problémához" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Jelszó mégegyszer" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "A formázott szöveg (HTML) mutatja a színeket, kiemelést, dölt betűket és még sok mást" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "A jog betöltve" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "A jog nem vonnható vissza" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "A jog nem található." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "A jog nem kiadható %1 -nek" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Rendszergazdai jogok" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Dolgozói jogok" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Szerepek" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Sorok" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Sorok száma listboxokban" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Sorok száma oldalanként" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "SLA engedélyezve (A jelölÅ‘ kikapcsolása letiltja az SLA-t ennél a sornál)" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "Az SQLite egy olyan adatbázis, aminek nincs szüksége szerverre, vagy bármiféle konfigurációra. Az RT fejlesztÅ‘i teszteléshez, fehlesztéshez ajánlják, de nem igazán ajánlott egy komolyabb RT szerverhez." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Szo" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Szombat" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Mentés" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Változtatások mentése" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Beállítások mentése" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Mentés újként" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Lekérdezés mentése" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Mentett lekérdezések" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Mentett diagramok" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Mentett lekérdezések" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "#%1 számú scrip" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Scrip létrehozva" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Scrip-ek" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Scrip-ek és címzettek" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "A scrip-ek általában minden egyes jegy változás (tranzakció) után lefutnak." #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Lekérdezés" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Cikkek lekérdezése" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Lekérdezési beállítások" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Cikkek lekérdezése amik a következÅ‘t tartalmazzák:" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Engedélyezések lekérdezése" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Cikkek lekérdezése" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Jegyek lekérdezése" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Lekérdezési beállítások" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Lekérdezési eredmények" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Lekérdezési eredmények frissítési gyakorisága" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "Sokáig tarthat minden jegy szövegében keresni, de ha szükség van rá, megteheti a %1keresett_szó kifejezéssel." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Titkos azonosítókulcs" #: bin/rt-crontool:352 msgid "Security:" msgstr "Biztonság:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Lásd még:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Láthatja a cikkeket" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Láthatja a cikkek élettörténetét" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Láthatja az osztályt" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Kiválaszt" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Minden osztályra érvényes cikkekhez tartozó egyéni mezÅ‘k kijelölése" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Válasszon osztályt" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Válasszon egy egyéni mezÅ‘t" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Válasszon színt a területhez" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "Egyéni szerep kiválasztása" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Válasszon csoportot" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Válasszon sort" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Válasszon ki egy sort az új jegy számára" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Válasszon területet" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Válasszon felhasználót" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Cikk kijelölése a(z) %1 témából" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Jelölje ki a beszúrni kívánt cikket" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "más nyelv kiválasztása" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Minden sorra érvényes egyéni mezÅ‘(k) kiválasztása" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Minden felhasználói csoportra érvényes egyéni mezÅ‘(k) kiválasztása" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Minden felhasználóra érvényes egyéni mezÅ‘(k) kiválasztása" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Minden jegyre érvényes egyéni mezÅ‘(k) kiválasztása" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Minden jegyre vonatkozó tranzakcióra érvényes egyéni mezÅ‘(k) kiválasztása" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Dátum választó" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "IdÅ‘pont választó" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Kiválasztás (több értéket is választhat)" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Kiválasztás (egy értéket választhat)" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Jelölje ki azokat a sorokat, melyeket meg szeretne jeleníteni a kezdÅ‘lapon." #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "Válassza ki az újonnan létrehozott sorok scrip állapotát:" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Válasszon témákat a cikkhez" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Válasszon (legfeljebb %1) értéket!" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Kiválasztott egyéni mezÅ‘k" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Kiválasztott sorok" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Kiválasztott objektumok" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "" #: etc/initialdata:117 msgid "Send Forward" msgstr "Továbbítás küldése" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Email küldése a beküldÅ‘knek és az ügyfélnek" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Megjegyzés email küldése a beküldÅ‘knek és az ügyfélnek" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Üzenetet küld a jegy igénylÅ‘inek" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Email küldése a tulajdonosnak" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Szept" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Szóközzel elválasztva több is megadható." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Beállítások" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Rövid felhasználónevek" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "A saját jegy frissítésekrÅ‘l küldjön az RT levelet Önnek?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Mutat" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "Legyen Admin menüpontja" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Legyen Jóváhagyások menüpontja" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "Legyen Cikk menüpontja" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Látható mezÅ‘k" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Lekérdezés eredménye" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Az alábbi jegytulajdonságokat is mutassa a %1. kapcsolati szinten" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Minden idézett szöveg megjelenítése" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Láthatóak legyenek a jóváhagyott jegyek" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "További kapcsolatok mutatása" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Tömör fejléc mutatása" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Láthatóak legyenek az elutasított jegyek" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Teljes fejléc mutatása" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Láthatja a globális sablonokat" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "Történet mutatása" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "Láthatja a felhasználók publikus adatainak változását" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Linkleírások megjelenítése" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "Ne mutasson jegyeket a beküldÅ‘tÅ‘l" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "A legidÅ‘sebb elem az elsÅ‘" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Láthatóak legyenek a folyamatban levÅ‘ jegyek" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Idézett szöveg mutatása" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Láthatóak legyenek a mások engedélyezésére váró jegyek" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "Hozzászóláskor egyszerűsített lista az értesítést kapókról" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Mutassa a beküldÅ‘ 10 legmagasabb prioritású aktív jegyét" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Mutassa a beküldÅ‘ 10 legmagasabb prioritású inaktív jegyét" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Mutassa a beküldÅ‘ 10 legmagasabb prioritású jegyét" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Adatok törlése" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "Az adatok törléséhez kell egy könyvtár ahova mentéseket lehet írni. GyÅ‘zÅ‘djön meg róla, hogy a %1 könyvtár létezik és a webszerveer tud írni bele." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Oldal panel" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Aláírás" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Automatikus digitális aláírás" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Kaphat levelet egy jegy hozzászólásairól, lehet beküldÅ‘" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Kaphat belsÅ‘ másolatot egy jegy hozzászólásairól" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Aláírás (e-mail-hez)" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Egyszerű" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Egyszerű Lekérdezés" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Méret" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Kicsi" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Néhány böngészÅ‘ csak az RT tartományába esÅ‘ weblapról fog tartalmat betölteni." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Valami hiba történt. Lépj kapcsolatba a rendszergazdával!" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Rendezés" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Rendezés" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Forrás" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Táblázat (tsv)" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Ãllapot" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Várakoztat" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Elkezdve" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "Elkezdve_(relatív)" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Indul" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "Indul_(relatív)" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Ãllapot" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "Státusz" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "Státusz változtatás" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "Státusz változás (HTML)" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Státusz változtatása: '%1' --> '%2'" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Ãtvesz" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Jegyeket vehet át másoktól" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Ãtvéve %1-tól" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Stílus" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Tárgy" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "TárgymezÅ‘ cimke" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "A tárgy megváltozott %1-ra/re" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Elküld" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Feliratkozás" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Feliratkozás a %1 faliújságra" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Feliratkozhat faliújságokra" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Feliratkoztál a %1 dashboard-ra" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Feliratkozás" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Összefoglaló" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "V" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Vasárnap" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Felfüggesztett" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "Rendszer" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Rendszerkonfiguráció" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Rendszer alapértelmezett" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Rendszerhiba" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Rendszerhiba: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Rendszerkonfiguráció" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Rendszerhiba. Jog nem adható." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Elvesz" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Tulajdonos nélküli jegyeket vehet magához" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Elvéve" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Sablon" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "A #%1 sablon törölve" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "A '%1' sablon nem található" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "A sablon üres" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "A 'Sablon' mezÅ‘t kötelezÅ‘ kitölteni" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Sablon beolvasva" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Sablon feldolgozási hiba" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Sablonok" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Szöveg" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Már ez az aktuális érték" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Egyéni mezÅ‘höz érvénytelen értek" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Ennek a jegynek megoldatlan függÅ‘ségei vannak" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Már ez a felhasználó a tulajdonos" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Ilyen felhasználó nem létezik" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "A felhasználó már kiemelt" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "A felhasználó már nem kiemelt" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "A felhasználó mostantól kiemelt" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "A felhasználó mostantól nem kiemelt" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Ehhez a felhasználóhoz nem tartozhatnak jegyek ebben a sorban" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Ez nem numerikus azonosító" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Alapadatok" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "Másolat a jegyrÅ‘l" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "A cikk %1 azonosítójú osztálya nem alkalmazható az aktuális soron" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "BelsÅ‘ másolat a jegyrÅ‘l" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Az adatbázis szerver domain neve (pl. 'db.pelda.hu')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Az új érték elküldve." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "A jegy tulajdonosa" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "A keresett oldal nem található" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "A jegy igénylÅ‘je" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Téma" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "A jegyhez üzenetek érkeztek, melyeket még nem olvasott." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Ez a funkció csak a rendszeradminisztrátorok számára elérhetÅ‘" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "A tranzakciónak látszólag nincs megjeleníthetÅ‘ tartalma" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "Keresés a felhasználók között a felsorolt mezÅ‘k tartalmában:" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Cs" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Csütörtök" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Jegy" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "%1. számú (%2) jegy jellemzÅ‘inek módosítása" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "A #%1 jegy kapcsolati ábrája" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Jegy. %1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "%1. jegy" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "A %1 jegy létrejött a %2 sorban" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Jegy %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Jegy Történet %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Jegy megoldva" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Jegy lekérdezés" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Jegy tranzakciói" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Jegy és Tranzakció" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Jegy szerkesztés" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "A jegy tartalma" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Jegy tartalom típus" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "A jegy belsÅ‘ hiba miatt nem jött létre" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "A problémát nem sikerült betölteni" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Jegy megjelenítés" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Jegy metadata" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Jegy státusza megváltoztatva" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "TicketSQL keresÅ‘ modul" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Jegyek" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "A jegyek, melyek ettÅ‘l a jóváhagyástól függnek:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Becsült munkaidÅ‘" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "HátralévÅ‘ munkaidÅ‘" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Ráfordított munkaidÅ‘" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Megjelenített idÅ‘" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "Becsült_munkaidÅ‘" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "HátralévÅ‘_munkaidÅ‘" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "Ráfordított_munkaidÅ‘" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "IdÅ‘zóna" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Cím" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Támogatásért, oktatásért kérem forduljon Magyarországon a Mithrandir Kft-hez. (rttamogatas(kukac)mithradir(pont)hu). FejlesztÅ‘: Best Practical Solutions, LLC [%1]" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Utolsó hozzászólás" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "Utolsó_hozzászólás_(relatív)" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Eszközök" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Téma neve" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "Téma tagság hozzáadva" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "Téma tagság eltávolítva" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "A téma nem található" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Témák" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Összesen" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "Tranzakció" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "%1 tranzakció törölve" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Tranzakció létrehozva" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Tranzakció egyéni mezõi" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "Tranzakció (HTML)" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "Tranzakciók" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "A tranzakciók megváltozhatatlanok" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "Kipróbál" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "K" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Kedd" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Típus" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Ãrjon a:-t a cikk számok elé illetve t:-t a jegy számok elé." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "Kiválasztott scrip-ek alkalmazásának megszüntetése" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "A téma tagságot nem sikerült hozzáadni" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "A téma tagságot nem sikerült törölni innen: %1" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "A cikket nem lehetett betölteni" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Ha nem szeretné, hogy valaki értesítést kapjon errÅ‘l a tranzakcióról, szüntesse meg a jelölést a címe mellett; véglegesen a RésztvevÅ‘k lapon módosíthatja az értesítéseket." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Unix usernév" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Ismeretlen Tartalom Kódolás %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "korlátlan" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "korlátlan" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Névtelen faliújság" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Névtelen lekérdezés" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Gazdátlan jegyek" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Nem kiemelt" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Kiválasztható egyéni mezÅ‘k" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Kiválasztható Sorok" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Kiválasztható objektumok" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Jegy visszaadva" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Frissít" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Diagram frissítése" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Ãbra frissítése" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Menü (faliújságok) testreszabása" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Jegy frissítése" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Frissítés típusa" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Formátum frissítése és lekérdezés" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Több jegy frissítése" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "A frissítés nem lett rögzítve." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Jegy frissítése" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "#%1 Jegy frissítése" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "%1. számú (%2) jegy aktualizálása" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "Új_hozzászólások" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Frissítve" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "Frissítette" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Feltöltés" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Új logó feltöltése" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Több fájl feltöltése egyszerre" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Több kép feltöltése egyszerre" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Egy fájl feltöltése" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Egy kép feltöltése" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "Űrlapok létrehozása és szerkeszése két oszlopos elrendezésben?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Automatikus kiegészítés használata tulajdonos keresésekor?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Alapértelmezett érték használata (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Használjon más RT adminisztratív eszközöket" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "A rendszer alapértelmezett értékének használata (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "A legördülÅ‘ menük segítségével válassza ki, hogy melyik hozzászólást szeretné kinyerni egy új cikkbe." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "Scrip-ek használják" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Felhasználó által meghatározott" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "Felhasználó által megadott egyéni kódok" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "Felhasználói csoportok" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Felhasználó Információk" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Felhasználói jogok" #: share/html/User/Search.html:48 msgid "User Search" msgstr "Felhasználó keresés" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "Felhasználó Ãttekintés" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "A felhasználót nem tudtam lérehozni: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Felhasználó létrehozva" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Felhasználó letiltva" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Felhasználó engedélyezve" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "A felhasználónak nincs megadva e-mail címe" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Felhasználó betöltve" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Felhasználó által létrehozott csoportok" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "Felhasználó: %1" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Felhasználónév" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Felahsználónév formátum" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Felhasználók" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "A lekérdezési feltételnek megfelelÅ‘ felhasználók" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "A #%1 tranzakció használata..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Érvényes lekérdezés" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Érvényesítés" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Érték" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Értékek" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Változó" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Verzió" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Megnézheti a sorhoz tartozó scrip-sablonokat" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Megnézheti a sorhoz tartozó scrip-eket" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Láthatja az egyéni mezÅ‘k értékét" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Láthatja az egyéni mezÅ‘ket" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Láthatja a rendszer által kiküldött leveleket (tartalmazza az összes címzettet is)" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Láthatja a csoportot" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Láthatja a csoport faliújságait" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Láthatja a saját faliújságát" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Láthatja a sort" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Láthatja a mentett lekérdezéseket" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Láthatja a rendszer-faliújságokat" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Láthatja a jegyek privát/belsÅ‘ megjegyzéseit is" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Láthatja a jegyek tartalmát" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Az \"amit látsz azt kapod\" szerkesztÅ‘ablak magassága" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "\"amit látsz azt kapod\" üzenetszerkesztÅ‘ használata" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "Figyelem: a jegyek összeolvasztása nem visszavonható! Egy jegy számot adjon meg. A megadott jegybe lesz a jelenlegi beolvasztva." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "RésztvevÅ‘" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "RésztvevÅ‘k" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Sze" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Szerda" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Heti gyűjtÅ‘" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Mit csináltam ma" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "Milyen jegyek jelenjenek meg a \"Többet a tulajdonosról\" dobozban" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Amikor egy jegy létrejön" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:137 msgid "When anything happens" msgstr "Ha bármi történik" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "Amikor ennek az osztálynak a cikkjeit levélbe illesztik:" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Ha egy jegy lezárásra kerül" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Ha egy jegy visszautasításra kerül" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Ha egy jegy újranyitásra kerül" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Ha egy jegy lezárásra kerül" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Ha egy jegy tulajdonosa megváltozik" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Ha egy jegy prioritása megváltozik" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Ha egy jegy sora megváltozik" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Ha egy jegy státusza megváltozik" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Egy egy felhasználó által megadott feltétel teljesül" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Ha a jegyhez megjegyzés érkezik" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Ha a jegyhez hozzászólás érkezik" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Munkahelyi" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Ráfordított MunkaidÅ‘" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Igen" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Az RT felületén szerkesztheti ezt a faliújságot illetve módosíthatja a feliratkozását." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Már az öné ez a jegy" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Lehetséges akciók: ElsÅ‘ olvasatlan üzenetet megtekintése | ElsÅ‘ olvasatlan üzenetet megtekintése és minden üzenet olvasottá tétele." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "A fenti logóra kattintva szín javaslatokat kaphat!" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Módosíthatja a beépített keresést is" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Csak olyan jegyet oszthat ki másnak, amelyiknek még nincs tulajdonosa, vagy Ön a tulajdonos. Ha más valaki jegyét szeretné egy harmadik személynek adni, elÅ‘ször át kell vennie (Ãtvesz) a jegyet." #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Csak azokat a jegyeket veheti el, melyek még gazdátlanok" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "A jegyek teljes tartalmában is kereshet a %1keresett_szó formátummal." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Nem változtathatja a státuszt '%1'-rÅ‘l '%2'-re." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Önnek nincs SuperUser joga!" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Kilépett a Request Tracker programból." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Nincs joga létrehozni jegyeket ebben a sorban." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Cikk hivatkozást az a:### formátummal adhat meg, ahol a ### a cikk számát jelöli." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Itt ismét bejelentkezhet" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "A jelszavad nem került beállításra." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "Az Ön rendszere %1 formátumok esetén támogatja az automatikus szín javaslatokat" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "A begépelt felhasználó név vagy jelszó hibás" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Irányítószám" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Le]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Föl]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "után" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "linkre kattintás után" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "miután minden más betöltÅ‘dött" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "foglalt" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "és a következÅ‘ idÅ‘pont elÅ‘tt" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "és nem" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "oszlop" # ## wieder - Duzen??? #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "elÅ‘tt" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "FÅ‘ panel" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "jelölje be ezt a négyzetet, ha azt szeretné, hogy ez az osztály minden sorra érvényes legyen." #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "jelölje be a négyzetet, ha minden objektumra érvényes egyéni mezÅ‘t szeretne." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "jelölje be ezt a négyzetet, ha soronként szeretné megadni, hogy ez az osztály melyikben legyen érvényes." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "naponta %1 órakor" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "törölve" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "nem tartalmazza" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "letöltés" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "egyenlÅ‘" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "hiba: nincs mit törölni" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "hiba: nincs mit áthelyezni" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "hiba: nincs mit választani" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "minden" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "plugin sikeresen lefutott" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "nagyobb mint" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "csoport" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "'%1' csopot" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "Sorszám" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "azonnal" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "a(z) %1 osztályban" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "használatban" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "==" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "!=" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "kulcs letiltva" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "kulcs lejárt" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "kulcs visszavonva" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "balról jobbra" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "kisebb mint" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "tartalmazza" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "maximális mélység" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "perc" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "módosítani az RT beállításait" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "havi" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "havonta (%1 napon) %2 órakor" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "soha" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "új" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "nem" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "senki" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "nem egyenlÅ‘" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "semmi" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "e napon" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "adott napon" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "egy" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "nyitott" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "nyit/zár" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "más..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "torta" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "Stapel %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "újrahasznosított" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "elutasítva" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "Az rt-crontool futtatása szükséges hozzá" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "megoldva" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "jobbról balra" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "Oldalsó Panel" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "várakozik" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "ellopott" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "összesítÅ‘ sorok" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "rendszer %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "'%1' rendszer csoport" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "táblázat" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "Az átadott hivatkozó oldal (%1) nem megengedett az RT konfigurációja szerint, mivel nem a kiszolgáló (%2) vagy nincs a megengedett kiszolgálók listájában: (%3)" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "a hívó komponens nem tisztázta az okot" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "az alapértelmezett cím ami a megjegyzés levelek From: és Reply-To: fejlécmezÅ‘ibe kerül." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "az alapértelmezett cím ami a hozzászólás levelek From: és Reply-To: fejlécmezÅ‘ibe kerül." #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "jegy #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "fentrÅ‘l lefelé" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "leírás nélküli csoport %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "korlátlan" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "jegyet frissíteni" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "jóváhagyást frissíteni" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "cikket frissíteni" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "felhasználó" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "felhasználó %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "Felhasználó név" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "heti" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "hetente (%1 napon) %2-kor" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "hete" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "az a port melyen a web szervere figyel (pl 8080)" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "fejlécekkel együtt" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "igen" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "a böngészÅ‘ nem adott át a fejlécben hivatkozó oldalt (Referrer)" rt-4.4.2/share/po/ja.po0000664000175000017500000120157613131430353014520 0ustar vagrantvagrant# Japanese translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 22:13+0000\n" "Last-Translator: Emmanuel Lacour \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "番å·" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%4-%2-%3 %1" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%6-%2-%3 %1 %4:%5" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%7-%2-%3 %1 %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1ã«%2を追加ã—ã¾ã—ãŸ" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1ã®%2ã‚’%3ã«å¤‰æ›´ã—ã¾ã—ãŸ" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1ã®%2を削除ã—ã¾ã—ãŸ" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1ã®%2を削除ã—ã¾ã—ãŸ" #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1ã®%2ã‚’ä¿å­˜ã—ã¾ã—ãŸ" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1「%2ã€ã‚’æ›´æ–°ã—ã¾ã—ãŸ" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1をテンプレート%3ã§%2ã—ã¾ã™" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) - %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (変更ãªã—)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (%2ã‹ã‚‰)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - LogToSTDERR 設定オプションã®èª¿æ•´" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - %2ã«æ¸¡ã™å¼•æ•°" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - 更新状æ³ã‚’STDOUTã«å‡ºåŠ›" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - 使ã„ãŸã„テンプレートã®åå‰ã‹idを指定" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - 使ã„ãŸã„トランザクションã®ç¨®é¡žã‚’コンマ区切りã®ãƒªã‚¹ãƒˆã§æŒ‡å®š" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - 使ã„ãŸã„conditionモジュールを指定" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - 使ã„ãŸã„検索モジュールを指定" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %1" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%2ã®å€¤ã«%1ãŒè¿½åŠ ã•れã¾ã—ãŸ" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "%1 å‰" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "" "%1ã¯ã™ã§ã«å­˜åœ¨ã—RTã®ãƒ†ãƒ¼ãƒ–ルã«é…ç½®ã•れã¦ã„ã¾ã™ãŒRTã®ãƒ¡ã‚¿ãƒ‡ãƒ¼ã‚¿ãŒã‚りã¾ã›ã‚“。\\r\n" "後ã®'Initialize Database'ã®æ®µéšŽã§ã“ã®æ—¢å­˜ã®ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã«ãƒ¡ã‚¿ãƒ‡ãƒ¼ã‚¿ã‚’追加ã™ã‚‹ã“ã¨ãŒå¯èƒ½ã§ã™ã€‚\\r\n" "ãã†ã™ã‚‹å ´åˆã¯ä»¥ä¸‹ã®'Customize Basics'をクリックã—ã¦RTã®ã‚«ã‚¹ã‚¿ãƒžã‚¤ã‚ºã‚’ç¶šã‘ã¦ãã ã•ã„。" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "" "%1ã¯ã™ã§ã«å­˜åœ¨ã—ã¾ã™ãŒRTã®ãƒ†ãƒ¼ãƒ–ルやメタデータãŒã‚りã¾ã›ã‚“。\\r\n" "後ã®'Initialize Database'ã®æ®µéšŽã§ã“ã®æ—¢å­˜ã®ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã«ãƒ†ãƒ¼ãƒ–ルやメタデータを追加ã™ã‚‹ã“ã¨ãŒå¯èƒ½ã§ã™ã€‚\\r\n" "ãã†ã™ã‚‹å ´åˆã¯ä»¥ä¸‹ã®'Customize Basics'をクリックã—ã¦RTã®ã‚«ã‚¹ã‚¿ãƒžã‚¤ã‚ºã‚’ç¶šã‘ã¦ãã ã•ã„。" #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1ã¯ãƒ­ãƒ¼ã‚«ãƒ«ã‚ªãƒ–ジェクトã®ã‚ˆã†ã§ã™ãŒãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‹ã‚‰è¦‹ã¤ã‘ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "" "%1ã¯å®Œå…¨ã«åˆæœŸåŒ–ã•れã¦ã„るよã†ã§ã™ã€‚\\r\n" "テーブルã®ä½œæˆã‚„メタデータã®è¿½åŠ ã¯å¿…è¦ã‚りã¾ã›ã‚“ãŒã€\\r\n" "以下ã®'Customize Basics'をクリックã—ã¦RTã®ã‚«ã‚¹ã‚¿ãƒžã‚¤ã‚ºã‚’ç¶šã‘ã‚‹ã“ã¨ãŒå¯èƒ½ã§ã™ã€‚" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 (%2)" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 をグループã«ã™ã‚‹ã“ã¨ã¯å‡ºæ¥ã¾ã›ã‚“。" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1ã¯ã€Œ%2ã€ã‹ã‚‰ã€Œ%3ã€ã«å¤‰æ›´ã•れã¾ã—ãŸ" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1ã¯ã€Œ%2ã€ã‹ã‚‰ã€Œ%3ã€ã«å¤‰æ›´ã•れã¾ã—ãŸ" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1ã®å†™ã—" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1ã‚’%2ã«ã‚»ãƒƒãƒˆã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1を作æˆã—ã¾ã—ãŸ" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 を削除ã—ã¾ã—ãŸ" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1を無効ã«ã—ã¾ã—ãŸ" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1ãŒå­˜åœ¨ã—ã¾ã›ã‚“。" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1を有効ã«ã—ã¾ã—ãŸ" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "æœ€å„ªå…ˆã®æ‹…当ãƒã‚±ãƒƒãƒˆ%1ä»¶" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1ã¯cronãªã©ã®å¤–部スケジューリングツールã‹ã‚‰ãƒã‚±ãƒƒãƒˆã‚’æ“作ã™ã‚‹ãƒ„ールã§ã™ã€‚" #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1ã¯RTã‹ã‚‰ã®ãŠçŸ¥ã‚‰ã›ã‚’ユーザã”ã¨ã«ã¾ã¨ã‚ã¦å¾Œã‹ã‚‰ä¸€æ‹¬é€ä¿¡ã™ã‚‹ãŸã‚ã®cron用ユーティリティã§ã™ã€‚" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 ã¯ã™ã§ã« %2 ã«è¨­å®šã•れã¦ã„ã¾ã™ã€‚" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 㯠RT ãŒãƒ¡ãƒ¼ãƒ«ã‚’å—ã‘ã¨ã‚‹ã‚¢ãƒ‰ãƒ¬ã‚¹ã§ã™ã€‚ã“れを「%2ã€ã¨ã—ã¦è¿½åŠ ã™ã‚‹ã¨ãƒ¡ãƒ¼ãƒ«ãŒãƒ«ãƒ¼ãƒ—ã—ã¾ã™" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1ã¯ã‚‚ã†ã‚«ã‚¹ã‚¿ãƒ ãƒ•ィールド%2ã®å€¤ã§ã¯ã‚りã¾ã›ã‚“" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1ä»¶ã®æœ€è¿‘æ›´æ–°ã•れãŸè¨˜äº‹" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1ä»¶ã®æœ€æ–°è¨˜äº‹" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "æ‹…å½“è€…æœªå®šã®æœ€æ–°ãƒã‚±ãƒƒãƒˆ%1ä»¶" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 ä»¶" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1ã‚’æ›´æ–°ã—ã¾ã—ãŸ: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1ã‚’æ›´æ–°ã—ã¾ã—ãŸ: 変更ã¯ã‚りã¾ã›ã‚“" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1ã‚’æ›´æ–°ã—ã¾ã—ãŸ" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1ã®%2オブジェクト" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1ã®%2ã®%3オブジェクト" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1 ã®ç¾åœ¨ã®ãƒ‘スワード" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1ã®ãƒ€ãƒƒã‚·ãƒ¥ãƒœãƒ¼ãƒ‰" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "%1 ç”¨ã®æš—å·åŒ–キー" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1 ãŒä¿å­˜ã—ãŸæ¤œç´¢" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1:アタッãƒãƒ¡ãƒ³ãƒˆãŒæŒ‡å®šã•れã¦ã„ã¾ã›ã‚“" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1ãƒã‚±ãƒƒãƒˆç™»éŒ²:%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "%1 å¹´" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "%1æ—¥" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "%1 時間" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1ç§’" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%1ä»¶ã®è¨˜äº‹" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%1時間" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%1分" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "「%1ã€ã¯æ­£ã—ã„åå‰ã§ã¯ã‚りã¾ã›ã‚“" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "%1 ã¯æœ‰åйãªã‚¯ãƒ©ã‚¹ã§ã¯ã‚りã¾ã›ã‚“。" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "「%1ã€ã¯ç„¡åйãªã‚¯ãƒ©ã‚¹åã§ã™" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "通知を終了ã™ã‚‹ã«ã¯ãƒœãƒƒã‚¯ã‚¹ã«ãƒã‚§ãƒƒã‚¯" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(削除ã™ã‚‹ã«ã¯ãƒœãƒƒã‚¯ã‚¹ã‚’ãƒã‚§ãƒƒã‚¯)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "削除ã™ã‚‹ã«ã¯ãƒœãƒƒã‚¯ã‚¹ã‚’ãƒã‚§ãƒƒã‚¯" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(ãƒã‚±ãƒƒãƒˆIDã¾ãŸã¯URLを空白文字ã§åŒºåˆ‡ã£ã¦å…¥åŠ›ã—ã¦ãã ã•ã„)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(空白ã®å ´åˆã€%1を指定ã—ã¾ã™)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "( 未完了 )" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(カスタムフィールドãŒã‚りã¾ã›ã‚“)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(メンãƒãƒ¼ãªã—)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(scripsãŒã‚りã¾ã›ã‚“)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(テンプレートãŒã‚りã¾ã›ã‚“)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(コンマã§åŒºåˆ‡ã£ãŸç®¡ç†ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã«ã“ã®æ›´æ–°æƒ…å ±ã®Ccã‚’é€ã‚Šã¾ã™ã€‚更新情報を将æ¥ã‚‚å—ã‘å–ã‚‹ã“ã¨ã«ãªã‚Šã¾ã™ã€‚)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(コンマã§åŒºåˆ‡ã£ãŸãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã«ã“ã®æ›´æ–°æƒ…å ±ã®Ccã‚’é€ã‚Šã¾ã™ã€‚更新情報を将æ¥ã‚‚å—ã‘å–ã‚‹ã“ã¨ã«ãªã‚Šã¾ã™ã€‚)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(状態やæ“作ã«'ユーザ定義値'ã‚’é¸æŠžã™ã‚‹å ´åˆã¯ã“ã®ãƒ•ィールドを使ã„ã¾ã™)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(å…¨ã¦)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "概è¦" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(åå‰ãªã—)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(公開éµãŒã‚りã¾ã›ã‚“!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(値ãªã—)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(値ãŒã‚りã¾ã›ã‚“)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(ãƒã‚±ãƒƒãƒˆ%1ä»¶ 解決待ã¡)" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(承èªå¾…ã¡)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(å¿…é ˆ)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(ä»¶åãªã—)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-idã¨ã„ã†å¼•æ•°ã¯æŽ¨å¥¨ã•れã¾ã›ã‚“。ã¾ãŸã€--templateã¨åŒæ™‚ã«ã¯ä½¿ãˆã¾ã›ã‚“" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--transactionã®å¼•æ•°ã¯'first', 'last', 'all' ã®ã©ã‚Œã‹ã§ã™" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 ç§’" #: lib/RT/Date.pm:424 msgid "0s" msgstr "0ç§’" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "入力ã•れãŸãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆã¯æ—¢ã«ä½¿ç”¨ã•れã¦ã„ã¾ã™ã€‚" #: etc/initialdata:258 msgid "A blank template" msgstr "空ã®ãƒ†ãƒ³ãƒ—レート" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "パスワードãŒã‚»ãƒƒãƒˆã•れã¦ã„ãªã„ãŸã‚ã€ãƒ¦ãƒ¼ã‚¶ã¯ãƒ­ã‚°ã‚¤ãƒ³ã§ãã¾ã›ã‚“。" #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACEãŒã¿ã¤ã‹ã‚Šã¾ã›ã‚“" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACEã¯ä½œæˆã¾ãŸã¯å‰Šé™¤ã®ã¿å¯èƒ½ã§ã™ã€‚" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "ã‹ã¤" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "個人情報" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "アクセス制御" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "アクション" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "アクション「%1ã€ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "æ“作ã¯çœç•¥ã§ããªã„引数ã§ã™" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "" #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "アクション" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "アクティブãƒã‚±ãƒƒãƒˆ" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "%1 ã®ã‚¢ã‚¯ãƒ†ã‚£ãƒ–ãªãƒã‚±ãƒƒãƒˆ" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "%1 を追加" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "管ç†Ccを追加ã™ã‚‹" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "ブックマークã®è¿½åŠ " #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Ccを追加ã™ã‚‹" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "コラムを追加" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "æ¡ä»¶ã®è¿½åŠ " #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "ã•らã«ãƒ•ァイルを追加" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "è¦æ±‚者を追加ã™ã‚‹" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "値ã®è¿½åŠ " #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "é¸æŠžã—ãŸãƒã‚±ãƒƒãƒˆã«ã‚³ãƒ¡ãƒ³ãƒˆã¾ãŸã¯è¿”ä¿¡ã™ã‚‹" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "グループを追加" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "メンãƒãƒ¼ã‚’追加ã™ã‚‹" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "æ–°ã—ã„ウォッãƒãƒ£ãƒ¼ã«è¿½åŠ ã™ã‚‹" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "ä¸Šè¨˜ã®æ¤œç´¢èªžã‚’追加" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "ä¸Šè¨˜ã®æ¤œç´¢èªžã‚’追加ã—ã¦æ¤œç´¢å®Ÿè¡Œ" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "ユーザを追加" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "値ã®è¿½åŠ " #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "メールアドレス" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "使‰€ 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "使‰€1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "使‰€2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "管ç†Cc" #: etc/initialdata:410 msgid "Admin Comment" msgstr "" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "キューã®ç®¡ç†" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "管ç†/グローãƒãƒ«è¨­å®š" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "管ç†CCグループ" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "管ç†Cc" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "管ç†CC" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "管ç†ç”¨ãƒ‘スワード" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "詳細" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "é«˜åº¦ãªæ¤œç´¢" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "è¤‡åˆæ¤œç´¢" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "å…¨ã¦ã®æ‰¿èªã‚’パスã—ã¾ã—ãŸ" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "ã“ã®ã‚¯ãƒ©ã‚¹ã«å«ã¾ã‚Œã‚‹å…¨ã¦ã®è¨˜äº‹ã¯ã€ãƒã‚±ãƒƒãƒˆã®è¿”信ページã«ãƒ‰ãƒ­ãƒƒãƒ—ダウンリストã¨ã—ã¦ãƒªã‚¹ãƒˆã•れã¾ã™" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "å…¨ã¦ã®ã‚¯ãƒ©ã‚¹" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "ã™ã¹ã¦ã®ãƒ€ãƒƒã‚·ãƒ¥ãƒœãƒ¼ãƒ‰" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "ã™ã¹ã¦ã®ã‚­ãƒ¥ãƒ¼" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "å…¨ã¦ã®ãƒã‚±ãƒƒãƒˆ" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "å…¨ã¦ã® iCal フィードã«ã¯ã€ã‚ãªãŸã‚’èªè¨¼ã™ã‚‹ç§˜å¯†ãƒˆãƒ¼ã‚¯ãƒ³ãŒåŸ‹ã‚ã“ã¾ã‚Œã¦ã„ã¾ã™ã€‚ã‚‚ã— iCal フィード㮠URL ãŒå¤–éƒ¨ã«æ¼æ´©ã—ãŸå ´åˆã¯ã€ã“ã®ä¸‹ã§ç§˜å¯†ãƒˆãƒ¼ã‚¯ãƒ³ã‚’æ–°ã—ãã—ã¦ã€æ—¢å­˜ã® iCal フィードを破棄 ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "検索æ¡ä»¶ã«ãƒžãƒƒãƒã™ã‚‹ã‚­ãƒ¥ãƒ¼å…¨ã¦" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "ã™ã¹ã¦ã®ãƒã‚±ãƒƒãƒˆ" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "å…¨ã¦ã®ãƒˆãƒ”ックス" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢ã®ä½œæˆã‚’許å¯" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢ã®ãƒ­ãƒ¼ãƒ‰ã‚’許å¯" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "テンプレートや scirp ãªã©ã®ä¸­ã§ Perl コードã®è¨˜è¿°ã‚’許å¯" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "æš—å·åŒ–済ã¿" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "ã‹ã¤/ã¾ãŸã¯" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "é©ç”¨å…ˆ" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "å…¨ã¦ã®ã‚ªãƒ–ジェクトã«é©ç”¨" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "é©ç”¨" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "全体ã«é©ç”¨" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "変更をé©ç”¨" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "承èªçжæ³" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "承èªçжæ³ã€Œ%1ã€: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "承èªã‚’通éŽ" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "承èª" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "4月" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "記事 #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "記事「%1ã€ã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "記事「%1ã€: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "記事「%1ã€ã‚’作æˆã—ã¾ã—ãŸ" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "記事ã®ç®¡ç†" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "記事ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "記事" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "%1ã«ãƒžãƒƒãƒã™ã‚‹è¨˜äº‹" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "トピックã®ãªã„記事" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "昇順" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "添付" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "添付ファイル" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "添付ファイル" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "ãƒ•ã‚¡ã‚¤ãƒ«ã®æ·»ä»˜" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "添付ファイル%1ã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "添付ファイルãŒä½œæˆã•れã¾ã—ãŸ" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "添付ファイルå" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "添付" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "æ·»ä»˜ãƒ•ã‚¡ã‚¤ãƒ«ã¯æš—å·åŒ–ã§ãã¾ã›ã‚“" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "属性を削除ã—ã¾ã—ãŸ" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "8月" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "自動アカウントã®ã‚»ãƒƒãƒˆã‚¢ãƒƒãƒ—ã«å¤±æ•—ã—ã¾ã—ãŸã€‚" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:261 msgid "Autoreply" msgstr "自動応答" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "リクエストã—ãŸäººã«è‡ªå‹•返信" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "利用å¯èƒ½" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "戻る" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "基本項目" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "空" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "本文" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "ボールド" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "ブックマーク" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "ブックマークã—ãŸãƒã‚±ãƒƒãƒˆ" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "ブックマークã—ãŸãƒã‚±ãƒƒãƒˆ" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "トピックスã®é¸æŠž" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "ã¾ã¨ã‚ã¦æ›´æ–°" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "CCグループ" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢ã€Œ%1ã€ã‚’ロードã§ãã¾ã›ã‚“ã§ã—ãŸ" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "システムユーザーを修正ã§ãã¾ã›ã‚“" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "åå‰ãªã—ã«ã‚«ã‚¹ã‚¿ãƒ ãƒ•ィールドãƒãƒªãƒ¥ãƒ¼ã®è¿½åŠ ã¯ã§ãã¾ã›ã‚“" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "ãƒã‚±ãƒƒãƒˆè‡ªä½“ã«ã¯ãƒªãƒ³ã‚¯ã§ãã¾ã›ã‚“" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "検索æ¡ä»¶ã‚’ä¿å­˜ã§ãã¾ã›ã‚“" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "無効化ã•れãŸã‚­ãƒ¥ãƒ¼ã§ã¯ãƒã‚±ãƒƒãƒˆã‚’作æˆã§ãã¾ã›ã‚“。" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "CC" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "変更" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "パスワードを変更ã™ã‚‹" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "ã™ã¹ã¦ã‚’ãƒã‚§ãƒƒã‚¯" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "ボックスã®ãƒã‚§ãƒƒã‚¯ã§å‰Šé™¤" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "下ä½ãƒã‚±ãƒƒãƒˆ" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "市町æ‘" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "クラスå" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "クリア" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "ã™ã¹ã¦ã‚¯ãƒªã‚¢" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "\"データベースã®åˆæœŸåŒ–\" を押ã›ã°ã€RT 用データベースを作æˆã—ã¦åˆæœŸãƒ¡ã‚¿ãƒ‡ãƒ¼ã‚¿ã‚’投入ã—ã¾ã™ã€‚ã“れã«ã¯å°‘々時間ãŒã‹ã‹ã‚Šã¾ã™ã€‚" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "解決日" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "クローズã—ãŸãƒã‚±ãƒƒãƒˆ" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "コンボボックス: 複数ã®å€¤ã‚’ã€é¸æŠžã‚‚ã—ãã¯å…¥åŠ›" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "コンボボックス: 値を一ã¤ã€é¸æŠžã‚‚ã—ãã¯å…¥åŠ›" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "コメント" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "コメントアドレス" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "コメントアドレス" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "ãƒã‚±ãƒƒãƒˆã®ã‚³ãƒ¡ãƒ³ãƒˆ" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "コメント" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "コメント(作æˆè€…ã«ã¯é€ä¿¡ã•れã¾ã›ã‚“)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã«ã¤ã„ã¦ã®èª¬æ˜Ž" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "コメントãŒè¿½åŠ ã•れã¾ã—ãŸ" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "コメントãŒçŸ­ãã•れã¾ã—ãŸ" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "æ¡ä»¶" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "æ¡ä»¶ã€Œ%1ã€ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "æŽ¥ç¶šã«æˆåŠŸã—ã¾ã—ãŸ" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "内容" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "" #: etc/initialdata:393 msgid "Correspondence" msgstr "" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "担当者を変更ã§ãã¾ã›ã‚“ã§ã—ãŸ: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "カスタムフィールド %1 を作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "グループを作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "ãƒã‚±ãƒƒãƒˆã‚’作æˆã§ãã¾ã›ã‚“。キューãŒè¨­å®šã•れã¦ã„ã¾ã›ã‚“" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "ユーザーを作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "グループを読ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸ" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "ユーザ情報を設定ã§ãã¾ã›ã‚“ã§ã—ãŸ" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "グループã«ãƒ¡ãƒ³ãƒãƒ¼ã‚’追加ã§ãã¾ã›ã‚“ã§ã—ãŸ" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "トランザクション %1 を作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "ダッシュボード「%1ã€ã¯å‰Šé™¤ã•れã¾ã›ã‚“: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "責任者ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "ãã®å€¤ã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "ダッシュボード「%1ã€ã‚’読ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸ: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "グループ#%1 をロードã§ãã¾ã›ã‚“ã§ã—ãŸ" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "グループ %1 を読ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸ" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "リンクを読ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸ" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "キューを読ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸ" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "キュー#%1をロードã§ãã¾ã›ã‚“ã§ã—ãŸ" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "キュー%1を読ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸ" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "キュー「%1ã€ã‚’ロードã§ãã¾ã›ã‚“ã§ã—ãŸ" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "scrip#%1をロードã§ãã¾ã›ã‚“ã§ã—ãŸ" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "テンプレート#%1をロードã§ãã¾ã›ã‚“ã§ã—ãŸ" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "ãƒã‚±ãƒƒãƒˆ'%1'を読ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸ" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "秘密éµã‚’設定ã§ãã¾ã›ã‚“ã§ã—ãŸ" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "国" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "作æˆ" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "ãƒã‚±ãƒƒãƒˆä½œæˆ" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "クラスã®ä½œæˆ" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "カスタムフィールドã®ä½œæˆ" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "記事ã®ä½œæˆ" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "ãƒ€ãƒƒã‚·ãƒ¥ãƒœãƒ¼ãƒ‰ã®æ–°è¦ä½œæˆ" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "ã‚°ãƒ«ãƒ¼ãƒ—ã®æ–°è¦ä½œæˆ" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®æ–°è¦ä½œæˆ" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "キューã®ä½œæˆ" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "テンプレートã®ä½œæˆ" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "ãƒã‚±ãƒƒãƒˆä½œæˆ" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "記事ã®ä½œæˆ" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "ダッシュボードã®ä½œæˆ ( グループ用 )" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "ã“ã®scripテンプレートã«ã‚‚ã¨ã¥ã„ã¦ãƒã‚±ãƒƒãƒˆã‚’æ–°è¦ä½œæˆ" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "ダッシュボードã®ä½œæˆ ( 個人用 )" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "ダッシュボードã®ä½œæˆ ( システム用 )" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "ãƒã‚±ãƒƒãƒˆã®ä½œæˆ" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢ã®ä½œæˆã€ä¿®æ­£ã€å‰Šé™¤" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "ä½œæˆæ—¥" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "作æˆè€…" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "作æˆè€…" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "作æˆè€…" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "æš—å·æŠ€è¡“" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "ç¾åœ¨ã®ãƒªãƒ³ã‚¯" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "ç¾åœ¨ã®ãƒ¡ãƒ³ãƒãƒ¼" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "ç¾åœ¨ã®æ¤œç´¢å¼" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "ç¾åœ¨ã®ã‚¦ã‚©ãƒƒãƒãƒ£ãƒ¼" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "カスタムフィールド" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "カスタムフィールド %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "カスタムフィールド%1ã¯å€¤ãŒå…¥åŠ›ã•れã¦ã„ã¾ã™ã€‚" #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "カスタムフィールド%1ã¯å€¤ãŒã‚りã¾ã›ã‚“。" #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "カスタムフィールド%1ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "カスタムフィールド%2ã®ã‚«ã‚¹ã‚¿ãƒ ãƒ•ィールドãƒãƒªãƒ¥ãƒ¼%1ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "カスタムフィールドãƒãƒªãƒ¥ãƒ¼ã¯å‰Šé™¤ã•れã¾ã›ã‚“" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "カスタムフィールドãƒãƒªãƒ¥ãƒ¼ãŒå‰Šé™¤ã•れã¾ã—ãŸ" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "カスタマイズ" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "ダッシュボード" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "ダッシュボードを作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "ダッシュボードを更新ã§ãã¾ã›ã‚“ã§ã—ãŸ: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "ダッシュボードを更新ã—ã¾ã—ãŸ" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "ダッシュボード" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "ダッシュボード" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "日付書å¼" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "日付" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "12月" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "デフォルトã®ã‚­ãƒ¥ãƒ¼" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "デフォルト: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "削除" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "テンプレートã®å‰Šé™¤" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "ライフサイクルã®è¨­å®šã«ã‚ˆã‚Šã€å‰Šé™¤æ“作ã¯ç„¡åйã«ãªã£ã¦ã„ã¾ã™" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "ãƒã‚±ãƒƒãƒˆã®å‰Šé™¤" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "値ã®å‰Šé™¤" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "%1 を削除ã—ã¾ã—ãŸ" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢ã®å‰Šé™¤" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "ã“ã®ã‚ªãƒ–ジェクトを削除ã™ã‚‹ã¨æŒ‡ç¤ºã®å®Œå…¨æ€§ãŒããšã‚Œã¾ã™" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "ã“ã®ã‚ªãƒ–ジェクトを削除ã™ã‚‹ã¨æŒ‡ç¤ºã®å®Œå…¨æ€§ãŒæãªã‚れã¾ã™" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "æ‹’å¦" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "ã“ã®ãƒã‚±ãƒƒãƒˆã¸ã®ä¾å­˜" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "%1 ã®ä¾å­˜ã‚’追加" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "%1 ã®ä¾å­˜ã‚’削除" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "%1 ã¸ã®ä¾å­˜ã‚’追加" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "%1 ã¸ã®ä¾å­˜ã‚’削除" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "ä¾å­˜ã—ã¦ã„ã‚‹ãƒã‚±ãƒƒãƒˆ" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "é™é †" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "ãƒã‚±ãƒƒãƒˆã®æœ¬æ–‡ã‚’ä»¥ä¸‹ã«æ›¸ã込んã§ãã ã•ã„" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "詳細" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "詳細" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "表示" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "記事「%1ã€ã®è¡¨ç¤º" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "コラム表示" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "æ¤œç´¢çµæžœã‚’å†èª­ã¿è¾¼ã¿ã—ãªã„。" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "ページã®è‡ªå‹•更新を行ã‚ãªã„" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "ダウンロード" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "終了予定日" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "オープンã—ãŸãƒã‚±ãƒƒãƒˆã‚’ã¾ã¨ã‚ã¦æ›´æ–°" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "編集" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "%1ã®ã‚«ã‚¹ã‚¿ãƒ ãƒ•ィールドを編集ã™ã‚‹" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "リンクã®ç·¨é›†" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "クエリã®ç›´æŽ¥ç·¨é›†" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "検索ã®ç·¨é›†" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "システムテンプレートã®ç·¨é›†" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "カスタムフィールド%1ã®ç·¨é›†" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "グループ%1ã®ãƒ¡ãƒ³ãƒãƒ¼ç·¨é›†" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "ベースもã—ãã¯ã‚¿ãƒ¼ã‚²ãƒƒãƒˆã‚’指定ã—ã¦ãã ã•ã„ãªã‘れã°ãªã‚Šã¾ã›ã‚“" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢ã€Œ%1ã€ã‚’見る権é™ãŒãªã„ã€ã‚‚ã—ãã¯æŒ‡å®šãŒæ­£ã—ãã‚りã¾ã›ã‚“" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Eメール アドレス" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "ãã®ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã¯ä½¿ç”¨ã•れã¦ã„ã¾ã™" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "有効(ãƒã‚§ãƒƒã‚¯ã‚’外ã™ã¨ã“ã®ã‚¯ãƒ©ã‚¹ã¯ç„¡åйã«ãªã‚Šã¾ã™)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "有効(ã“ã®ãƒœãƒƒã‚¯ã‚¹ã®ãƒã‚§ãƒƒã‚¯ã‚’外ã™ã¨ã“ã®ã‚«ã‚¹ã‚¿ãƒ ãƒ•ィールドã¯ç„¡åйã«ãªã‚Šã¾ã™ï¼‰" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "有効(ã“ã®ãƒœãƒƒã‚¯ã‚¹ã®ãƒã‚§ãƒƒã‚¯ã‚’外ã™ã¨ã“ã®ã‚°ãƒ«ãƒ¼ãƒ—ã¯ç„¡åйã«ãªã‚Šã¾ã™ï¼‰" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "有効(ã“ã®ãƒœãƒƒã‚¯ã‚¹ã®ãƒã‚§ãƒƒã‚¯ã‚’外ã™ã¨ã“ã®ã‚­ãƒ¥ãƒ¼ã¯ç„¡åйã«ãªã‚Šã¾ã™ï¼‰" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "有効ãªã‚¯ãƒ©ã‚¹" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "ã“ã®è¨˜äº‹ã«é–¢é€£ã—ãŸã€è¨˜äº‹ã‚„ãƒã‚±ãƒƒãƒˆã€ãã®ä»–URLを入力" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "" #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "" #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "リンクã—ãŸã„ãƒã‚±ãƒƒãƒˆã¾ãŸã¯URIを入力ã—ã¦ãã ã•ã„。入力ã™ã‚‹é …ç›®ãŒã„ãã¤ã‹ã‚ã‚‹å ´åˆã«ã¯ã‚¹ãƒšãƒ¼ã‚¹ã§åŒºåˆ‡ã£ã¦ãã ã•ã„。" #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "エラー" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "エラー: ä¿å­˜ã—ãŸæ¤œç´¢ã€Œ%1ã€ã‚’ロードã§ãã¾ã›ã‚“ã§ã—ãŸï¼š %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "例ãˆã°ã€" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "ãã®ä»–ã®æƒ…å ±" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "記事を採å–ã™ã‚‹" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "ãƒã‚±ãƒƒãƒˆã€Œ%1ã€ã‹ã‚‰æ–°ã—ã„記事を採å–ã™ã‚‹" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "'特権ã®ã‚ã‚‹'ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®æ“¬ä¼¼ã‚°ãƒ«ãƒ¼ãƒ—ã®æ¤œç´¢ãŒå¤±æ•—ã—ã¾ã—ãŸ" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "'特権ã®ãªã„'ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®æ“¬ä¼¼ã‚°ãƒ«ãƒ¼ãƒ—ã®æ¤œç´¢ãŒå¤±æ•—ã—ã¾ã—ãŸ" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "2月" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "ファイルå" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "最終優先度" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "æ¡ä»¶æ¤œç´¢" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "グループを探ã™" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "担当者を探ã™" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "ãƒã‚±ãƒƒãƒˆã‚’ã•ãŒã™" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "" #: share/html/Elements/Tabs:878 msgid "First" msgstr "先頭" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "変更を強制" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "表示フォーマット" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "転é€ã™ã‚‹" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "%1ä»¶ã®ãƒã‚±ãƒƒãƒˆã‚’発見" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "頻度" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "金曜日" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "金曜日" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD ãŒç„¡åŠ¹ã‚‚ã—ãã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ã¾ã›ã‚“。画åƒã®ã‚¢ãƒƒãƒ—ロードã¯å¯èƒ½ã§ã™ãŒã€è‡ªå‹•ã§ã®è‰²ã®ææ¡ˆã¯ãªã•れã¾ã›ã‚“。" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "担当者変更: %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "グローãƒãƒ«" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "ã‚°ãƒ«ãƒ¼ãƒ—ã‚’ç›´æŽ¥é¸æŠž" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "ユーザーå" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "実行" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "ãƒã‚±ãƒƒãƒˆã«ç§»å‹•" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "グラフ表示" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "グラフ設定" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "グラフã¯è¡¨ç¤ºã§ãã¾ã›ã‚“。" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "グループ" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "グループã§ã®æ¨©é™" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "グループã«ã¯ã™ã§ã«ãƒ¡ãƒ³ãƒãƒ¼ãŒã„ã¾ã™: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "グループãŒä½œæˆã•れã¾ã—ãŸ" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "グループãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "グループ" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "グループã¯å½¼ã‚‰ã®ãƒ¡ãƒ³ãƒãƒ¼ã«ã¯ãªã‚Œã¾ã›ã‚“" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’å«ã‚€ã‚°ãƒ«ãƒ¼ãƒ—" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "ã“ã‚“ã«ã¡ã¯ï¼" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "更新履歴" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "記事「%1ã€ã®å±¥æ­´" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "グループ%1ã®å±¥æ­´" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "ユーザー%1ã®å±¥æ­´" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "自宅ã®é›»è©±" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "ホームページã®å†èª­ã¿è¾¼ã¿é–“éš”" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "ホームページ" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "時間" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "時間" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "ID" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "個人識別情報" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "å¤‰æ›´ã‚’åæ˜ ã™ã‚‹ã«ã¯ãƒœã‚¿ãƒ³ã‚’押ã—ã¦ãã ã•ã„" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "無効ãªãƒã‚±ãƒƒãƒˆ" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "è¨˜äº‹ã®æŒ¿å…¥" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "記事ã®åå‰ã‚’å«ã‚ã‚‹" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "記事ã®ã‚µãƒžãƒªã‚’å«ã‚ã‚‹" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "無効ãªã‚¯ãƒ©ã‚¹ã‚’å«ã‚ã‚‹" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "無効ãªã‚°ãƒ«ãƒ¼ãƒ—を一覧ã«å«ã‚ã‚‹" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "åˆ©ç”¨åœæ­¢ã—ãŸã‚­ãƒ¥ãƒ¼ã‚‚リストã«å«ã‚ã‚‹" #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "åˆ©ç”¨åœæ­¢ã—ãŸãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚‚検索ã«å«ã‚ã‚‹" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "入力エラー" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "%1 ã«ã¯ç„¡åйãªå€¤ã§ã™" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "無効ãªã‚­ãƒ¥ãƒ¼ã§ã™" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "権é™ãŒç„¡åйã§ã™" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "%1 ã«ã¯ç„¡åйãªå€¤ã§ã™" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "カスタムフィールドã«ç„¡åйãªå€¤ã§ã™" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "" #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "イタリック" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "1月" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "7月" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "ç·åˆãƒ“ュー" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "6月" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "言語" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "最後" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "最終連絡日" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "最終連絡日" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "最終更新日" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "最終更新日" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "最終更新者" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "最終更新日(ã‹ã‚‰ã®çµŒéŽ)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "残り時間" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã‚’RTã«ã‚¢ã‚¯ã‚»ã‚¹å¯èƒ½ã«ã—ã¾ã™" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®æ¨©é™ã‚’承èªã—ã¾ã™" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "ライフサイクル" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "リンク" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "ã™ã§ã«ãƒªãƒ³ã‚¯ã—ã¦ã„ã¾ã™" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "リンクãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "ãƒã‚±ãƒƒãƒˆ#%1ã®ãƒªãƒ³ã‚¯" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "リンク" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "読ã¿è¾¼ã¿" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢ã®ãƒ­ãƒ¼ãƒ‰" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢ã®ãƒ­ãƒ¼ãƒ‰" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢ã®ãƒ­ãƒ¼ãƒ‰:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "ロードã—ã¦ã„ã‚‹perlモジュール" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢ã€Œ%1ã€ã‚’ロードã—ã¾ã—ãŸ" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "地域" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "使‰€" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "\"%1\"ã§ãƒ­ã‚°ã‚¤ãƒ³ã—ã¦ã„ã¾ã™" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "ログアウトã—ã¾ã—ãŸ" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "ログイン" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "ログアウト" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "担当者を設定" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "ステータスを設定" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "æœŸé™æ—¥ã‚’設定" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "開始日を指定" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "é–‹å§‹ã™ã‚‹æ—¥ã‚’設定" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "指示ã—ãŸæ—¥ã‚’設定" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "優先度を決ã‚ã‚‹" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "キューを設定" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "ä»¶åを設定" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "グループã¨ãƒ¡ãƒ³ãƒãƒ¼ã®ç®¡ç†" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "ä¿å­˜ã—ãŸã‚°ãƒ©ãƒ•ã®ç®¡ç†" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "ユーザーã¨ãƒ‘スワードã®ç®¡ç†" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "3月" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "5月" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "自分" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "メンãƒãƒ¼" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "メンãƒãƒ¼ %1 を追加ã—ã¾ã—ãŸ" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "メンãƒãƒ¼ %1 を削除ã—ã¾ã—ãŸ" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "追加メンãƒãƒ¼: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "削除メンãƒãƒ¼" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "削除ã•れãªã‹ã£ãŸãƒ¡ãƒ³ãƒãƒ¼" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "メンãƒãƒ¼" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "%1 ã®ãƒ¡ãƒ³ãƒãƒ¼è¿½åŠ " #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "%1 ã®ãƒ¡ãƒ³ãƒãƒ¼å‰Šé™¤" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "メンãƒãƒ¼æ‰€å±ž" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "ユーザ %1 ã®æ‰€å±ž" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "çµåˆãŒæˆåŠŸã—ã¾ã—ãŸ" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "çµåˆãŒå¤±æ•—ã—ã¾ã—ãŸã€‚有効ãªIDãŒè¨­å®šã§ãã¾ã›ã‚“ã§ã—ãŸ" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "次ã®ãƒã‚±ãƒƒãƒˆã«çµåˆ" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "本文" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "メッセージボックスã®é«˜ã•" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãƒœãƒƒã‚¯ã‚¹ã®æ¨ªå¹…" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "分" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "æºå¸¯" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "æºå¸¯ç•ªå·" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "メンãƒãƒ¼æ›´æ–°" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "記事「%1ã€ã‚’æ›´æ–°" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "ãƒã‚±ãƒƒãƒˆ#%1ã®æœŸæ—¥ã‚’変更" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "グローãƒãƒ«ã‚°ãƒ«ãƒ¼ãƒ—ã®æ¨©é™ã‚’変更" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "グローãƒãƒ«ãƒ¦ãƒ¼ã‚¶ãƒ¼ã®æ¨©é™ã‚’変更" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "%1ã®ã‚°ãƒ«ãƒ¼ãƒ—権é™ã‚’修正" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "キュー%1ã®ã‚°ãƒ«ãƒ¼ãƒ—権é™ã‚’修正" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "ãƒã‚±ãƒƒãƒˆ#%1ã®æ‹…当者を変更" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "テンプレート%1を変更" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "ãƒ€ãƒƒã‚·ãƒ¥ãƒœãƒ¼ãƒ‰ã®æ›´æ–°ã€€%1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "ダッシュボード「%1ã€ã‚’æ›´æ–°" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "グループ%1を変更" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "ダッシュボード「%1ã€ã®äºˆç´„購読を更新" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "ユーザー%1を変更" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "検索を変更中..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "ãƒã‚±ãƒƒãƒˆ# %1を変更" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "ãƒã‚±ãƒƒãƒˆ#%1を変更" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "ãƒã‚±ãƒƒãƒˆã®ä¿®æ­£" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "グループ%1ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼æ¨©é™ã‚’変更" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "キュー%1ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼æ¨©é™ã‚’変更" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "月曜日" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "月曜日" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "毎月" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "'åå‰'ã®å±žæ€§ã‚’指定ã—ã¦ãã ã•ã„" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "ç§ã® %1 ãƒã‚±ãƒƒãƒˆ" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "ç§ã®ä¸€æ—¥" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "ç§ã®ãƒªãƒžã‚¤ãƒ³ãƒ€" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "担当ãƒã‚±ãƒƒãƒˆã®æ‰¿èªçжæ³" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "ç§ã®ãƒ€ãƒƒã‚·ãƒ¥ãƒœãƒ¼ãƒ‰" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "ç§ã®ãƒªãƒžã‚¤ãƒ³ãƒ€" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "ç§ãŒä¿å­˜ã—ãŸæ¤œç´¢" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "åå‰" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "åå‰ã¨ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "ç¾åœ¨ä½¿ã£ã¦ã„ã‚‹åå‰" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "æ–°è¦" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "æ–°ã—ã„記事" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "æ–°ã—ã„ダッシュボード" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "æ–°ã—ã„リンク" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "æ–°è¦æ¤œç´¢" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "æ–°è¦ãƒ‘スワード" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "æ–°ã—ã„パスワード情報ãŒé€ã‚‰ã‚Œã¾ã—ãŸ" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "æ–°è¦ãƒªãƒžã‚¤ãƒ³ãƒ€ä½œæˆ:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "æ–°è¦ãƒã‚±ãƒƒãƒˆ" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "æ–°ã—ã„ãƒã‚±ãƒƒãƒˆã¯ã‚りã¾ã›ã‚“" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "æ–°è¦ã‚¦ã‚©ãƒƒãƒãƒ£ãƒ¼" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "次ã¸" #: lib/RT/User.pm:96 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "ニックãƒãƒ¼ãƒ " #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "ã„ã„ãˆ" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "カスタムフィールドãŒã‚りã¾ã›ã‚“" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "グループãŒå®šç¾©ã•れã¾ã›ã‚“" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "キューãŒå®šç¾©ã•れã¾ã›ã‚“" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "テンプレートãŒã‚りã¾ã›ã‚“" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "ã“ã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã«ã¤ã„ã¦ã®ã‚³ãƒ¡ãƒ³ãƒˆã¯ã‚りã¾ã›ã‚“" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "%1 詳細情報ãŒã‚りã¾ã›ã‚“" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "ã‚°ãƒ«ãƒ¼ãƒ—ãŒæŒ‡å®šã•れã¦ã„ã¾ã›ã‚“" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:970 msgid "No password set" msgstr "パスワードãŒè¨­å®šã•れã¾ã›ã‚“" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "キューを作æˆã™ã‚‹è¨±å¯ãŒã•れã¦ã„ã¾ã›ã‚“" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "ãã®ãƒã‚±ãƒƒãƒˆã‚’表示ã™ã‚‹è¨±å¯ãŒã‚りã¾ã›ã‚“" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "記事を表示ã™ã‚‹è¨±å¯ãŒã•れã¦ã„ã¾ã›ã‚“" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "æ›´æ–°ã•れãŸãƒã‚±ãƒƒãƒˆã‚’見る許å¯ãŒã‚りã¾ã›ã‚“" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "責任者ãŒé¸æŠžã•れã¦ã„ã¾ã›ã‚“" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "検索基準ã«ã‚ã£ãŸã‚­ãƒ¥ãƒ¼ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "æ“作ã®ãŸã‚ã®æ¤œç´¢ãŒã§ãã¾ã›ã‚“" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "ä»¶åãªã—" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "ãƒã‚±ãƒƒãƒˆãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "ãƒˆãƒ©ãƒ³ã‚¶ã‚¯ã‚·ãƒ§ãƒ³ã‚¿ã‚¤ãƒ—ãŒæŒ‡å®šã•れã¦ã„ã¾ã›ã‚“" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "使用ã§ãã‚‹éµãŒã‚りã¾ã›ã‚“。" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "検索基準ã«ã‚ã£ãŸãƒ¦ãƒ¼ã‚¶ãƒ¼ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "ãªã—" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "ログインã—ã¦ã„ã¾ã›ã‚“" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "未指定" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "付記" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "ãŠçŸ¥ã‚‰ã›ã‚’é€ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸ" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "ä»–ã®å®›å…ˆã«é€šçŸ¥" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "ä»–ã®å®›å…ˆã«ã‚³ãƒ¡ãƒ³ãƒˆå½¢å¼ã§é€šçŸ¥" #: etc/initialdata:47 msgid "Notify Owner" msgstr "" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "11月" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "10月" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "" #: etc/initialdata:170 msgid "On Comment" msgstr "" #: etc/initialdata:142 msgid "On Correspond" msgstr "" #: etc/initialdata:131 msgid "On Create" msgstr "" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "" #: etc/initialdata:199 msgid "On Queue Change" msgstr "" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "" #: etc/initialdata:205 msgid "On Resolve" msgstr "" #: etc/initialdata:176 msgid "On Status Change" msgstr "" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "今回ã®ã¿ Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "今回ã®ã¿ Cc" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "ã“ã®æ—¥ã‚ˆã‚Šã‚‚後ã«ä½œæˆã•ã‚ŒãŸæ‰¿èªã®ã¿è¡¨ç¤º %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "ã“ã®æ—¥ã‚ˆã‚Šã‚‚å‰ã«ä½œæˆã•ã‚ŒãŸæ‰¿èªã®ã¿è¡¨ç¤º %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "" #: etc/initialdata:108 msgid "Open Tickets" msgstr "ãƒã‚±ãƒƒãƒˆã‚ªãƒ¼ãƒ—ン" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "ãƒã‚±ãƒƒãƒˆã‚ªãƒ¼ãƒ—ン" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "オプション" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "並ã³ã‹ãˆé †ç•ª" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "組織" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "コメントã«ã¤ã„ã¦ã®ãƒ¡ãƒ¼ãƒ«é€ä¿¡ã‚’記録ã—ã¾ã—ãŸ" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "メールé€ä¿¡ã‚’記録ã—ã¾ã—ãŸ" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "é€ä¿¡ãƒ¡ãƒ¼ãƒ«" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "概è¦" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "ãƒã‚±ãƒƒãƒˆã‚’担当ã™ã‚‹" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "担当者" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "担当者ã¯%1ã‹ã‚‰%2ã«å¤‰æ›´ã•れã¾ã—ãŸ" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "担当者ã¯å¼·åˆ¶çš„ã«%1ã‹ã‚‰%2ã«å¤‰æ›´ã•れã¾ã—ãŸ" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "ページ" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "ãƒã‚±ãƒƒãƒˆãƒ™ãƒ«" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "ãƒã‚±ãƒ™ãƒ«ã®ç•ªå·" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "上ä½ãƒã‚±ãƒƒãƒˆ" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "パスワード" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "パスワード: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "担当者" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perlã®è¨­å®šæƒ…å ±" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "権é™ãŒã‚りã¾ã›ã‚“" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "権é™ãŒã‚りã¾ã›ã‚“" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "電話番å·" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "プレファレンス" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "設定をä¿å­˜ã—ã¾ã—ãŸã€‚" #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "å‰" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "優先度" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "プライãƒã‚·ãƒ¼æƒ…å ±" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "プライãƒã‚·ãƒ¼æƒ…å ±:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "秘密éµ" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "特権ステータス: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "特権ã®ã‚るユーザー" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "クエリ" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "クエリ" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "クエリ作æˆ" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "キュー" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "キュー %1 ã¯ã¿ã¤ã‹ã‚Šã¾ã›ã‚“" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "キューã®åå‰" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "キューã¯ã™ã§ã«å­˜åœ¨ã—ã¦ã„ã¾ã™" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "キューを作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "キューを読ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸ" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "キューãŒä½œæˆã•れã¾ã—ãŸ" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "キューãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "キュー" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "担当キュー情報" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "管ç†Ccã®ã‚­ãƒ¥ãƒ¼" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "ã‹ã‚“ãŸã‚“検索" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "ãƒã‚±ãƒƒãƒˆæ–°è¦ä½œæˆ" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT管ç†" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT エラー" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT ã¯ã€ã“ã®ã‚«ã‚¹ã‚¿ãƒ ãƒ•ィールドã®å€¤ã‚’ã€åˆ¥ã‚µãƒ¼ãƒ“スã¸ã®ãƒã‚¤ãƒ‘ーリンクã«ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "実å" #: lib/RT/User.pm:95 msgid "RealName" msgstr "åå‰" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "å…¨ã¦ã®æ›´æ–°å†…容を登録" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "å‚ç…§ã•れã¦ã„ã‚‹ãƒã‚±ãƒƒãƒˆ" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "å‚ç…§ã—ã¦ã„ã‚‹ãƒã‚±ãƒƒãƒˆ" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "è¡¨ç¤ºã®æ›´æ–°" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "ページを%1分ãŠãã«æ›´æ–°ã™ã‚‹" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "æ‹’å¦" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "デフォルトã®ã‚­ãƒ¥ãƒ¼ã‚’記憶ã™ã‚‹" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "リマインダ" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "リマインダ「%1ã€ã‚’追加ã—ã¾ã—ãŸ" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "リマインダ通知" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "ãƒã‚±ãƒƒãƒˆ#%1ã®ãƒªãƒžã‚¤ãƒ³ãƒ€" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "管ç†Ccを削除ã™ã‚‹" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "ブックマークã®å‰Šé™¤" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Ccを削除ã™ã‚‹" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "作æˆè€…を削除ã™ã‚‹" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "担当者欄をドロップダウンã‹ã‚‰ãƒ†ã‚­ã‚¹ãƒˆãƒœãƒƒã‚¯ã‚¹ã«ç½®ãæ›ãˆã¾ã™" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "返信" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "返信アドレス" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "リクエストã—ãŸäººã«è¿”ä¿¡" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "ãƒã‚±ãƒƒãƒˆã«è¿”ç­”ã™ã‚‹" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "作æˆè€…" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "作æˆè€…" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "リセット" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "デフォルトã®è¨­å®šã«æˆ»ã™" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "使‰€" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "解決済ã¿ã«ã™ã‚‹" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "解決済ã¿" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "çµæžœ" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "パスワードã®å†å…¥åŠ›" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "権é™ãŒãƒ­ãƒ¼ãƒ‰ã•れã¾ã—ãŸ" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "権é™ã‚’無効ã«ã§ãã¾ã›ã‚“ã§ã—ãŸ" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "権é™ãŒãƒ­ãƒ¼ãƒ‰ã§ãã¾ã›ã‚“ã§ã—ãŸ" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "役割" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "æž ã®ä¸­ã«è¡¨ç¤ºã™ã‚‹è¡Œæ•°" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "一度ã«è¡¨ç¤ºã™ã‚‹è¡Œæ•°" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "土曜日" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "土曜日" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "ä¿å­˜ã™ã‚‹" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "変更をä¿å­˜" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "設定をä¿å­˜" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "%1ã®%2 ã‚’ä¿å­˜ã—ã¾ã—ãŸ" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "ä¿å­˜ã—ãŸã‚°ãƒ©ãƒ•" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "検索" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "記事を検索" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "検索設定" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "è¨˜äº‹ã®æ¤œç´¢" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "承èªçжæ³ã®æ¤œç´¢" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "ãƒã‚±ãƒƒãƒˆã®æ¤œç´¢" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "検索オプション" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "æ¤œç´¢çµæžœã®å†èª­ã¿è¾¼ã¿é–“éš”" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "ã“ã®ã‚¯ãƒ©ã‚¹ã«ã‚る記事を見る" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "é¸æŠž" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "ã‚¯ãƒ©ã‚¹ã‚’é¸æŠž" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "グループã®é¸æŠž" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "キューã®é¸æŠž" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "テーマã®å¤‰æ›´å¯¾è±¡ã‚’指定" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "ユーザーã®é¸æŠž" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "挿入ã™ã‚‹è¨˜äº‹ã‚’é¸ã¶" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "別ã®è¨€èªžã‚’é¸æŠžã—ã¦ãã ã•ã„" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "値を1ã¤é¸æŠž" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "\"RT at a glance\" ã«è¡¨ç¤ºã™ã‚‹ã‚­ãƒ¥ãƒ¼ã‚’é¸æŠžã—ã¦ãã ã•ã„" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "9月" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "基本設定" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "短ã„ユーザå" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "表示ã™ã‚‹" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "コラム表示" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "çµæžœã‚’見る" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "承èªã•れãŸãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’表示ã™ã‚‹" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "æ‹’å¦ã•れãŸãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’表示ã™ã‚‹" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "å¤ã„履歴ã‹ã‚‰è¡¨ç¤ºã™ã‚‹" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "ä¿ç•™ã—ã¦ã„るリクエストを表示ã™ã‚‹" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "ä»–ã®æ‰¿èªå¾…ã¡ã®ãƒªã‚¯ã‚¨ã‚¹ãƒˆã‚’表示ã™ã‚‹" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "シュレッダー" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "サイドãƒãƒ¼" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "ç½²å" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "シンプル検索" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "サイズ" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "ブラウザã«ã‚ˆã£ã¦ã¯ã€RT サーãƒã¨åŒã˜ãƒ‰ãƒ¡ã‚¤ãƒ³ã‹ã‚‰ã®ã‚³ãƒ³ãƒ†ãƒ³ãƒ„ã®ã¿ã‚’読ã¿ã“むもã®ãŒã‚りã¾ã™ã€‚" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "並ã³ã‹ãˆ" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "並ã³ã‹ãˆ" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "表形å¼" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "ä¿ç•™ã«ã™ã‚‹" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "é–‹å§‹æ—¥" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "開始予定日" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "都é“府県" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "ステータス" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "ステータスãŒ%1ã‹ã‚‰%2ã«å¤‰æ›´ã•れã¾ã—ãŸ" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "担当者変更" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "%1ã‹ã‚‰æ‹…当者を変更ã—ã¾ã—ãŸ" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "表示スタイル" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "ä»¶å" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "ä»¶åã¯%1ã«å¤‰æ›´ã•れã¾ã—ãŸ" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "予約購読をã™ã‚‹" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "ダッシュボード「%1ã€ã«äºˆç´„購読をã™ã‚‹" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "ダッシュボードã«äºˆç´„購読をã™ã‚‹" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "ダッシュボード「%1ã€ã«äºˆç´„購読をã—ã¾ã—ãŸ" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "予約購読" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "予約購読ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸ: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "概è¦" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "日曜日" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "日曜日" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "システム" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "システムã®è¨­å®šæƒ…å ±" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "システムã®ãƒ‡ãƒ•ォルト" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "システムエラー" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "システムエラー: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "システムツール" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "システムエラーã§ã™ã€‚権é™ãŒæŽˆä¸Žã•れã¦ã„ã¾ã›ã‚“" #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "担当ã™ã‚‹" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "ãƒã‚±ãƒƒãƒˆã‚’担当ã™ã‚‹" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "担当" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "テンプレート" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "テンプレート「%1ã€ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "テンプレートを解æžã—ã¾ã—ãŸ" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "テンプレート" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "ã“ã®ã‚«ã‚¹ã‚¿ãƒ ãƒ•ィールドã¯ãã®å€¤ã‚’ã†ã‘ã¤ã‘ã¾ã›ã‚“" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "未解決ã®ä¾å­˜é–¢ä¿‚ãŒå­˜åœ¨ã—ã¾ã™" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "ãã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã¯ã™ã§ã«ãƒã‚±ãƒƒãƒˆã‚’所有ã—ã¦ã„ã¾ã™" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "ãã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã¯å­˜åœ¨ã—ã¾ã›ã‚“" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "ãã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã¯ã™ã§ã«ç‰¹æ¨©ãŒä¸Žãˆã‚‰ã‚Œã¦ã„ã¾ã™" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "ãã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã«ã¯ã™ã§ã«ç‰¹æ¨©ãŒã‚りã¾ã›ã‚“" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "ãã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã¯ä»Šç‰¹æ¨©ã‚’与ãˆã‚‰ã‚Œã¾ã—ãŸ" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "ãã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã¯ä»Šç‰¹æ¨©ã‚’失ã„ã¾ã—ãŸ" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "ãã®ãƒ¦ãƒ¼ã‚¶ãƒ¼ã¯ã“ã®ã‚­ãƒ¥ãƒ¼ã§ã¯ãƒã‚±ãƒƒãƒˆã‚’所有ã—ã¦ã„ãªã„å¯èƒ½æ€§ãŒã‚りã¾ã™" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "ãã‚Œã¯æ•°å­—ã®IDã§ã¯ã‚りã¾ã›ã‚“" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "基本項目" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "æš—å·éµã¯æœŸé™åˆ‡ã‚Œã§ã™" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "æ–°ã—ã„値ãŒè¨­å®šã•れã¾ã—ãŸã€‚" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "ページãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "テーマ" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "ã“ã®ãƒˆãƒ©ãƒ³ã‚¶ã‚¯ã‚·ãƒ§ãƒ³ã«ã¯æœ¬æ–‡ãŒã‚りã¾ã›ã‚“" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "木曜日" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "木曜日" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "ãƒã‚±ãƒƒãƒˆã€€#%1 更新(ç·åˆãƒ“ュー): %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "ãƒã‚±ãƒƒãƒˆ #%1 %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "ãƒã‚±ãƒƒãƒˆ#%1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "ãƒã‚±ãƒƒãƒˆ %1ãŒã‚­ãƒ¥ãƒ¼ '%2'ã§ä½œæˆã•れã¾ã—ãŸ" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "ãƒã‚±ãƒƒãƒˆã€€%1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "ãƒã‚±ãƒƒãƒˆãƒ’ストリー # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "ãƒã‚±ãƒƒãƒˆæ¤œç´¢" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "ãƒã‚±ãƒƒãƒˆã‚³ãƒ³ãƒ†ãƒ³ãƒ„" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "ãƒã‚±ãƒƒãƒˆã‚³ãƒ³ãƒ†ãƒ³ãƒ„タイプ" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "ãƒã‚±ãƒƒãƒˆè¡¨ç¤º" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "ãƒã‚±ãƒƒãƒˆæƒ…å ±" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "ãƒã‚±ãƒƒãƒˆã®ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹ãŒå¤‰æ›´ã•れã¾ã—ãŸ" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "ãƒã‚±ãƒƒãƒˆ" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "ãƒã‚±ãƒƒãƒˆ %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "æ‰€è¦æ™‚間(予想)" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "残り時間" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "作業時間" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "表示時間" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "残り時間" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "使ã£ãŸæ™‚é–“" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "タイムゾーン" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "タイトル" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "サãƒãƒ¼ãƒˆã€ãƒˆãƒ¬ãƒ¼ãƒ‹ãƒ³ã‚°ã€ã‚«ã‚¹ã‚¿ãƒ é–‹ç™ºã¾ãŸã¯ãƒ©ã‚¤ã‚»ãƒ³ã‚¹å–å¾—ã«ã¤ã„ã¦ã¯ã€%1ã¾ã§ãŠå•ã„åˆã‚ã›ãã ã•ã„" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "表示ツール" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "トピックå" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "トピックス" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "åˆè¨ˆ" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "トランザクション%1ãŒæ¶ˆåŽ»ã•れã¾ã—ãŸ" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "トランザクションãŒä½œæˆã•れã¾ã—ãŸ" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "トランザクションã¯å¤‰æ›´ã•れるã“ã¨ã¯ã‚りã¾ã›ã‚“" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "ç«æ›œæ—¥" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "ç«æ›œæ—¥" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "タイプ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "タイプã¯%1ã‹ã‚‰%2ã«å¤‰æ›´ã•れã¾ã—ãŸ" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "記事ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Unixログイン" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "䏿˜Žãªã‚¨ãƒ³ã‚³ãƒ¼ãƒ‡ã‚£ãƒ³ã‚° %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "無制é™" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "åå‰ãªã—ã®ãƒ€ãƒƒã‚·ãƒ¥ãƒœãƒ¼ãƒ‰" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "担当者未定" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "æ›´æ–°" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "ã‚°ãƒ©ãƒ•ã®æ›´æ–°" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã®æ›´æ–°" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "ãƒã‚±ãƒƒãƒˆã®æ›´æ–°" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "ã‚¿ã‚¤ãƒ—ã®æ›´æ–°" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "フォーマットを更新ã—ã¦æ¤œç´¢" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "複数ã®ãƒã‚±ãƒƒãƒˆã‚’æ›´æ–°" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "更新内容ã¯è¨˜éŒ²ã•れã¾ã›ã‚“ã§ã—ãŸ" #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "ãƒã‚±ãƒƒãƒˆã‚’æ›´æ–°ã™ã‚‹" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "ãƒã‚±ãƒƒãƒˆ #%1 ã‚’æ›´æ–°" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "ãƒã‚±ãƒƒãƒˆæ›´æ–° #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "最終更新日時" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢ã€Œ%1ã€ã‚’æ›´æ–°ã—ã¾ã—ãŸ" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "アップロード" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "フォームã®ä½œæˆã¨æ›´æ–°ã‚’二段組ã®ãƒ¬ã‚¤ã‚¢ã‚¦ãƒˆã«ã—ã¾ã™ã‹ï¼Ÿ" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "担当者を自動補完ã—ã¾ã™ã‹ï¼Ÿ" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "デフォルト設定「%1ã€ã‚’使ã†" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "デフォルト設定(%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "ユーザー情報" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "ユーザー権é™" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "ユーザー情報" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "ユーザーを作æˆã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸ: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "ユーザーãŒä½œæˆã•れã¾ã—ãŸ" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "ユーザ定義グループ" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "åå‰" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "ユーザåã®æ›¸å¼" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "ユーザー" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "妥当性検証" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "ä¿å­˜ã—ãŸæ¤œç´¢ã‚’見る" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "WYSIWYG メッセージ作æˆ" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "ウォッãƒãƒ£ãƒ¼" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "水曜日" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "水曜日" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "週間ダイジェスト" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "RT ã¸ã‚ˆã†ã“ã!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "今日行ã£ãŸä½œæ¥­" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "RTã£ã¦ä½•?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "RTã¯ãƒ¡ãƒ¼ãƒ«ã‚’é€ä¿¡ã™ã‚‹ã¨ãã« From: 㨠Reply-To: ヘッダをセットã—ã¾ã™ã®ã§ã€ãƒ¦ãƒ¼ã‚¶ã¯ãƒ¡ãƒ¼ãƒ«ã‚¯ãƒ©ã‚¤ã‚¢ãƒ³ãƒˆã§è¿”ä¿¡ã™ã‚‹ã ã‘ã§ã‚„りã¨ã‚Šã‚’追加ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚返信ã¨ã‚³ãƒ¡ãƒ³ãƒˆã«ã¯ãれãžã‚Œåˆ¥ã®ã‚¢ãƒ‰ãƒ¬ã‚¹ãŒä½¿ã‚れã¾ã™ã€‚ã“れらã¯ã‚­ãƒ¥ãƒ¼æ¯Žã«å¤‰æ›´ã§ãã¾ã™ã€‚ã“れらã®ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’使ã†ã«ã¯ã€rt-mailgateプログラムãŒè¨­å®šã•れã¦ã„ã‚‹å¿…è¦ãŒã‚りã¾ã™ã€‚" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:137 msgid "When anything happens" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "抹消" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "仕事" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "勤務先ã®é›»è©±" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "ç´¯ç©ä½œæ¥­æ™‚é–“" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "ã¯ã„" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "ã™ã§ã«ã“ã®ãƒã‚±ãƒƒãƒˆã‚’担当ã—ã¦ã„ã¾ã™" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "変更ã§ãã‚‹ã®ã¯è‡ªåˆ†ãŒæ‹…当ã—ã¦ã„ã‚‹ãƒã‚±ãƒƒãƒˆã‹æ‹…当者ã®ã„ãªã„ãƒã‚±ãƒƒãƒˆã ã‘ã§ã™ã€‚" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "担当ã§ãã‚‹ã®ã¯ã€ã¾ã æ‹…当者ã®ã„ãªã„ãƒã‚±ãƒƒãƒˆã®ã¿ã§ã™" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "RTã‹ã‚‰ãƒ­ã‚°ã‚¢ã‚¦ãƒˆã—ã¾ã—ãŸ" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "指定ã®ã‚­ãƒ¥ãƒ¼ã§ãƒã‚±ãƒƒãƒˆä½œæˆã®è¨±å¯ãŒã‚りã¾ã›ã‚“" #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "ã¾ãŸã®ãƒ­ã‚°ã‚¤ãƒ³ã‚’ãŠå¾…ã¡ã—ã¦ã„ã¾ã™" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "パスワードãŒè¨­å®šã•れã¦ã„ã¾ã›ã‚“" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "ã‚ãªãŸã®åå‰ã¾ãŸã¯ãƒ‘スワードãŒé–“é•ã£ã¦ã„ã¾ã™" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "郵便番å·" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ãªã—]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "ãŒä»¥ä¸‹ã‚ˆã‚Šå¾Œã§ã‚ã‚‹" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "棒" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "ãŒä»¥ä¸‹ã‚ˆã‚Šå‰ã§ã‚ã‚‹" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "本文" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "ã™ã¹ã¦ã‚’ãƒã‚§ãƒƒã‚¯/ãƒã‚§ãƒƒã‚¯è§£é™¤ã™ã‚‹" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "本体設定" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "削除" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "å«ã¾ãªã„" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "ダウンロード" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "ç­‰ã—ã„" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "エラー:下ã«ç§»å‹•ã§ãã¾ã›ã‚“" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "エラー:左ã«ç§»å‹•ã§ãã¾ã›ã‚“" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "エラー:上ã«ç§»å‹•ã§ãã¾ã›ã‚“" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "エラー: 削除ã™ã‚‹ã‚‚ã®ãŒã‚りã¾ã›ã‚“" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "エラー: 移動ã™ã‚‹ã‚‚ã®ãŒã‚りã¾ã›ã‚“" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "エラー: 切り替ãˆã‚‰ã‚Œã‚‹ã‚‚ã®ãŒã‚りã¾ã›ã‚“" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "毎" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "ãƒ—ãƒ©ã‚°ã‚¤ãƒ³å®Ÿè¡Œã«æˆåŠŸã—ã¾ã—ãŸ" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "詳細" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "より大ãã„" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "グループ" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "グループ'%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "ID" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "一致ã™ã‚‹" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "一致ã—ãªã„" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "éµãŒåˆ©ç”¨ã§ããªã„" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "éµãŒæœŸé™åˆ‡ã‚Œ" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "éµãŒç„¡åй" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "å·¦ã‹ã‚‰å³" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "よりå°ã•ã„" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "ã‚る程度" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "å«ã‚€" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "分" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "毎月" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "æ–°è¦" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "ã„ã„ãˆ" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "ãªã—" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "ç­‰ã—ããªã„" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "何もã—ãªã„" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "é …ç›®ã®å‰Šé™¤ã«æˆåŠŸã—ã¾ã—ãŸ" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "ãŒä»¥ä¸‹ã§ã‚ã‚‹" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "1" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "オープン" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "オープン/クローズ" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "ãã®ä»–…" #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "円" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "プラグインãŒç©ºã®ãƒªã‚¹ãƒˆã‚’è¿”ã—ã¾ã—ãŸã€‚" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "キュー %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "æ‹’å¦" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "rt-crontool を実行ã™ã‚‹å¿…è¦ãŒã‚りã¾ã™" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "解決済ã¿" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "å³ã‹ã‚‰å·¦" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "サイト設定" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "ä¿ç•™" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "è¦ç´„" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "システム %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "システムグループ '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "呼ã³å‡ºã—ã¦ã„るコンãƒãƒ¼ãƒãƒ³ãƒˆã¯ãªãœæ¬¡ã®ã‚ˆã†ãªã“ã¨ãŒèµ·ã“ã‚‹ã®ã‹ç‰¹å®šã§ãã¾ã›ã‚“ã§ã—ãŸ" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "コメントメールã®Fromã‚„Reply-Toã®ãƒ˜ãƒƒãƒ€ãƒ¼ã«ãƒªã‚¹ãƒˆã‚¢ãƒƒãƒ—ã•れるデフォルトアドレス" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "対応メールã®Fromã‚„Reply-Toã®ãƒ˜ãƒƒãƒ€ãƒ¼ã«ãƒªã‚¹ãƒˆã‚¢ãƒƒãƒ—ã•れるデフォルトアドレス" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "ãƒã‚±ãƒƒãƒˆã€€#%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "上ã‹ã‚‰ä¸‹ã¸" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "絶対的" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "ユーザ" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "ユーザー %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "ユーザå" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "毎週" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "週間" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "webサーãƒãŒåˆ©ç”¨ã—ã¦ã„ã‚‹ãƒãƒ¼ãƒˆç•ªå·ã¯ï¼Ÿ(例ãˆã°ã€8080)" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "ヘッダーã¤ã" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "ã¯ã„" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/lt.po0000664000175000017500000134216113131430353014541 0ustar vagrantvagrant# Lithuanian translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2016-03-30 21:52+0000\n" "Last-Translator: Vitolis Bendinskas \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "Nr." #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "Nr. %1: %2" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "%1 Nr. %2" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%1 %4.%2.%3" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %7.%2.%3 %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 pridÄ—tas" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 pakeistas į %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 panaikintas" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 panaikintas." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 neegzistuoja" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 yra iÅ¡jungtas" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 iÅ¡saugotas." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 atnaujinta." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 Naudojant Å¡ablonÄ… %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) prie %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (nekeiÄiama)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (iÅ¡ panelÄ—s %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Keiskite parametrÄ… LogToSTDERR" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Parametras perdavimui į %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "%1 - yra argumentas, skirtas %2. Å is nustatymas gali bÅ«ti pakartotas, norint perduoti atitinkamus argumentus į daugelį %2 iÅ¡kvietimų." #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - BÅ«senos atnaujinimas perduodamas į STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - nurodykite ar norite naudoti 'pirmÄ…', 'paskutinÄ™' or 'visas' operacijas" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - nurodykite Å¡ablono, kurį norÄ—tumÄ—te naudoti, vardÄ… arba identifikatorių" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "%1 - nurodykite veiksmo modulį, kurį norite naudoti. Å is nustatymas gali bÅ«ti pakartotas, norint įvykdyti keletÄ… veiksmų su rastais praÅ¡ymais." #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - nurodykite kableliais atskirtÄ… operacijų tipų sÄ…rašą, kur norite naudoti" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Nurodykite kurį sÄ…lygų modulį norite naudoti" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Nurodykite kurį paieÅ¡kos modulį norite naudoti" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "%1 Papildomi laukai" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "%1 versija" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 įdÄ—ta kaip %2 reikÅ¡mÄ—" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "prieÅ¡ %1" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 jau egzistuoja ir turi reikalingas RT sistemos lenteles, bet neturi RT sistemos meta-duomenų. Tolesnis žingsnis 'Initialize Database' gali sudÄ—ti reikiamus meta-duomenis į egzistuojanÄiÄ… duomenų bazÄ™. Jeigu jums tai tinka, rinkitÄ—s 'Customize Basics' punktÄ… ir tÄ™skite RT diegimÄ…." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 jau egzistuoja, bet neturi reikalingų RT sistemos lentelių ir meta-duomenų. Tolesnis žingsnis 'Initialize Database' gali sudÄ—ti reikiamas lenteles ir meta-duomenis į egzistuojanÄiÄ… duomenų bazÄ™. Jeigu jums tai tinka, rinkitÄ—s 'Customize Basics' punktÄ… ir tÄ™skite RT diegimÄ…." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "%1 jau turi teisÄ™ %2 į %3 %4" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 yra lokalus objektas, bet nerastas duomenų bazÄ—je" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 atrodo pilnai inicializuota. Nereikia kurti jokių lentelių ar kelti meta-duomenų, bet galite tÄ™sti RT diegimÄ… rinkdamiesi 'Customize Basics' žemiau" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1. Naudotojas %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 negali bÅ«ti grupÄ—" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 pakeitas iÅ¡ %2 į %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 pakeista iÅ¡ '%2' į '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 kopija" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 pagrindinÄ— kongiÅ«racija" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 negalima nustatyti į %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 sukurtas" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 panaikintas" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 iÅ¡jungta" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 neegzistuoja." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 įjungta" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 aukÅ¡Äiausio prioriteto mano praÅ¡ymų" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 yra instrumentas dirbti su praÅ¡ymais ir iÅ¡orinÄ—s planavimo sistemos, pvz. cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 -- yra instrumentas, vykdomas cron planavimo sistemos, skirtas iÅ¡siųsti naudotojams atidÄ—tų RT praneÅ¡imų suvestines." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "%1 jau yra %2" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 jau nustatyta %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 yra adresas, kuriuo RT gauna laiÅ¡kus. Nurodžius jį kaip '%2', susidarys paÅ¡to kilpa" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "%1 daugiau nebÄ—ra Å¡ios eilÄ—s %2" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "%1 daugiau nebÄ—ra Å¡io praÅ¡ymo %2" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 daugiau nebÄ—ra papildomo lauko %2 reikÅ¡me" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 nÄ—ra %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 nÄ—ra teisingas gyvavimo ciklas" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 problemų" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 raktažodis '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 vÄ—liausiai atnaujintų aprašų" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "%1 vÄ—liausiai atnaujintų susijusių praÅ¡ymų" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 naujausių aprašų" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 naujausių nepriskirtų praÅ¡ymų" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objektų" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 nustatytas %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 sistemos konfigÅ«racija" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 pakeitimas: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 pakeitimas: Niekas nepakeista" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 pakeista" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1 %2 objektų" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1's %2's %3 objektų" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1 dabartinis slaptažodis" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "InformacinÄ—s panelÄ—s %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "%1 Å¡ifravimo raktai" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1 įsimintos paieÅ¡kos" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: nÄ—ra prikabintų failų" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Naujas praÅ¡ymas eilÄ—je%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "%1 sav." #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "%1 met." #: lib/RT/Date.pm:458 msgid "%1d" msgstr "%1 dien." #: lib/RT/Date.pm:452 msgid "%1h" msgstr "%1 val." #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1 sek." #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,apraÅ¡as,apraÅ¡ai)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,dien.)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1, valanda,valandos,valandų)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,valanda,valandos) (%quant(%2,minutÄ—,minutÄ—s))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,min.)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,mÄ—n.)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,sek.)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,sav.)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,met.)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' nÄ—ra teisingas vardas." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' nÄ—ra teisinga kategorija" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' nÄ—ra tesingas kategorijos identifikatorius" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Užbaigimui pažymÄ—kite varnelÄ™)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(PažymÄ—kite kÄ… norite paÅ¡alinti)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(PažymÄ—kite kÄ… norite paÅ¡alinti)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "(PažymÄ—kite norÄ—dami iÅ¡trinti visas reikÅ¡mes)" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Nurodykite praÅ¡ymų identifikatorius arba URL'us, atskirtus tarpais)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Neužpildytas reiÅ¡kia %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(nebaigtas)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(Klaidingi duomenys)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Papildomų laukų nÄ—ra)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(NÄ—ra narių)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(NÄ—ra skriptų)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(NÄ—ra Å¡ablonų)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(PraneÅ¡imo kopija siunÄiama administracinių el. paÅ¡to adresatų sÄ…raÅ¡ui, atskirtų kableliais. Nuo Å¡iol Å¡ie adresatai gaus praneÅ¡imus.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(PraneÅ¡imo kopijÄ… siunÄiama el. paÅ¡to adresatų sÄ…raÅ¡ui, atskirtų kableliais. Nuo Å¡iol Å¡ie adresatai gaus praneÅ¡imus.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Naudokite Å¡iuos laukus kai pasirenkate 'Nurodyta naudotojo' sÄ…lygoms arba veiksmams)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(bet kuris)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(nÄ—ra santraukos)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(be pavadinimo)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(nÄ—ra vieÅ¡o rakto!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(reikÅ¡mÄ— nenurodyta)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(reikÅ¡mÄ—s nenurodytos)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(laukia %quant(%1,kitas praÅ¡ymas,kiti praÅ¡ymai,kitų praÅ¡ymų))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(laukia patvirtinimo)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "(laukiantis praÅ¡ymas #%1)" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(privaloma)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(pasitikÄ—jimas: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(be pavadinimo)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(nepatikimas!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "(naudojant šį inventoriaus katalogÄ…)" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "--" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--Å¡ablono identifikatorius yra nebetaikomas parametras ir nebegali bÅ«ti naudojamas su --Å¡ablonu" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 sekundžių" #: lib/RT/Date.pm:424 msgid "0s" msgstr "0 sek." #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Å ablonas tokiu vardu jau yra" #: etc/initialdata:258 msgid "A blank template" msgstr "TuÅ¡Äias Å¡ablonas" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Nepriskirtas slaptažodis, todÄ—l naudotojas negalÄ—s prisijungti." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE nerastas" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACE galima tik sukurti ir panaikinti" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "ACL keiÄiasi iÅ¡ %1" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "IR" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Apie mane" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "PriÄ—jimo teisÄ—s" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Veiksmas" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Veiksmas %1 nerastas" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Veiksmas patvirtintas." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Veiksmas yra privalomas argumentas" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Veiksmas parengtas..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Veiksmai" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "AktyvÅ«s praÅ¡ymai" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "AktyvÅ«s praÅ¡ymai" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Vykdomi praÅ¡ymai, kurių atsakingas asmuo yra %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "PridÄ—ti %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "PridÄ—ti administracinÄ™ kopijÄ… (CC)" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "PažymÄ—ti praÅ¡ymÄ…" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "PridÄ—ti kopijÄ… (CC)" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "PridÄ—ti stulpelius" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Papildomi kriterijai" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "PridÄ—ti daugiau failų" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "PridÄ—ti praÅ¡ymo autorių" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "PridÄ—ti reikÅ¡mÄ™" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "PridÄ—ti grupÄ™" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "PridÄ—ti asmenį" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "PridÄ—ti inventorių prie Å¡io praÅ¡ymo" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "PridÄ—ti komentarus ar atsakymus pažymÄ—tiems praÅ¡ymams" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "PridÄ—kite grupÄ™" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "PridÄ—ti Äia" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Ä®traukti narius" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "PridÄ—ti naujus stebÄ—tojus" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Suteikite teises Å¡iam %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "PridÄ—ti kriterijus" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "PridÄ—ti kriterijus ir ieÅ¡koti" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "PridÄ—kite naudotojÄ…" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "PridÄ—ti reikÅ¡mes" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "PridÄ—ti, pakeisti ar panaikinti papildomo laiko reikÅ¡mes objektui" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "PridÄ—tas" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "PridÄ—ti %1 kaip Å¡ios eilÄ—s %2" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "PridÄ—ti %1 kaip Å¡io praÅ¡ymo %2" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "PridÄ—tas pavadinimo perraÅ¡ymas: %1" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "PridÄ—ti papildomÄ… laukÄ… %1 prie %2." #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adresas" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Adreso tÄ™sinys" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adresas" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adreso tÄ™sinys" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "Koreguotas dirbtas laikas: %quant(%1,minutÄ—,minutÄ—s)" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Administratorius" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "Administraciniai katalogai" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "AdministracinÄ— kopija (CC)" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Administracinis komentaras" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Administracinis komentas HTML formatu" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Administracinis atsakymas" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Administracinis atsakymas HTML formatu" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Eilių valdymas" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Administravimas/Bendri nustatymai" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "Admininistracinių kopijų grupÄ—" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "AdministracinÄ— kopija (CC)" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "AdministracinÄ—s kopijos (CC)" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Administarcinis slaptažodis" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Rankinis užklausos taisymas" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "IÅ¡plÄ—stinÄ— paieÅ¡ka" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "PrisijungÄ™ bÅ«site nukreipti į pradinį tikslÄ…" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Jungtukas" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Visi patvirtinimai gauti" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Visi patvirtinimai gauti HTML formatu" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Visi apraÅ¡ai Å¡ioje kategorijoje turi bÅ«ti iÅ¡vardinti pasirinkimo sÄ…raÅ¡e atsakymo į praÅ¡ymÄ… lange." #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "Visi katalogai" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Visos kategorijos" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Visi papildomi laikai" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Visos informacinÄ—s panelÄ—s" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Visos eilÄ—s" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Visi praÅ¡ymai" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "Visi atitinkantys paieÅ¡kos kriterijus katalogai" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Visi iCal srautai turi slaptÄ… žymÄ…, pagal kuriÄ… jus tapažįsta. Jeigu vienas iÅ¡ jÅ«sų iCal srautų URLų buvo atskleistas, galite gauti naujÄ… žymÄ… panaikinant visus esamus iCal srautus, žemiau." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Visos eilÄ—s, atitinkanÄios paieÅ¡kos kriterijus" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "Visi gavÄ—jai" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Visi praÅ¡ymai" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Visos temos" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "Skirti" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Leisti įsiminti paieÅ¡kas" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Leisti atstatyti įsimintas paieÅ¡kas" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Leisti naudoti Perl kodÄ… Å¡ablonuose, skriptuose ir t.t." #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Jau užšifruota" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "Visada siųsti laiÅ¡kÄ… praÅ¡ymo autoriui, nepriklausomai nuo praneÅ¡imo siuntÄ—jo" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "%1įvadas darbui su RT apraÅ¡ais%3 yra pasiekiami %2Best Practical's dokumentacijoje internete%3." #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "Turi bÅ«ti nurodytas egzenpiorius" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Ä®vyko klaida" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "Deklaruojant laikÄ… įvyko klaida. Ä®veskite laiko sÄ…naudas rankiniu bÅ«du." #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Ir/arba" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Kasmet" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Bet kuris laukas" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Bet kurio RT neatpažinto žodžio bus ieÅ¡koma praÅ¡ymų antraÅ¡tÄ—se." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Taikoma" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Taikoma visiems objektams" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Taikyti" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Taikyti visuotinai" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Taikyti pasirinktus skriptus" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Pritaikyti pakeitimus" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Patvirtinimas" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Patvirtinimas Nr. %1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Patvirtinimas Nr. %1: Pastabos neiÅ¡saugotos dÄ—l sistemos klaidos" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Patvirtinimas Nr. %1: Pastabos iÅ¡saugotos" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Pratvirtinimas gautas" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "Patvirtinimas gautas HTML formatu" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Patvirtinimas savinikui gautas" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "Patvirtinimas paruoÅ¡tas atsakingam HTML formatu" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Patvirtinimas atmestas" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "Neigiamas patvirtinimas HTML formatu" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Patvirtinti" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Bal" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "ApraÅ¡as #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "ApraÅ¡as #%1 nerastas" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "ApraÅ¡as Nr. %1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "ApraÅ¡as %1 sukurtas" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Aprašų valdymas" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "ApraÅ¡as nerastas" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "ApraÅ¡ai" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "%1 apraÅ¡ai" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "ApraÅ¡ai, atitinkantys %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "ApraÅ¡ai be temų" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "DidÄ—jimo tvarka" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "Inventorius #" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "Inventorius #%1" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "Inventorius %1 užregistruotas: %2" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "Inventorius %1: %2" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "Inventoriaus tvarkymas" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "Inventoriaus registravimo veiksmas nepavyko: %1" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "Inventoriaus papildomi laukai" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "Inventoriaus registravimas nepavyko: %1" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "Inventorius" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "Inventorius negali bÅ«ti panaikintas" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Susieti ar atsieti eilÄ™ su papildomais laukais" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "Priskirtas inventorius" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "PridÄ—ti failÄ…" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "PridÄ—ti failÄ…" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "PridÄ—tas failas" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Priedas" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Priedas '%1' negali bÅ«ti nuskaitytas" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Priedas sukurtas" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "PridÄ—to failo pavadinimas" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Priedai" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Priedų Å¡ifravimas iÅ¡jungtas" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Atributas panaikintas" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "Požymis atnaujintas" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Rgp" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "Automatinis pasiraÅ¡ymas" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "Automatinis paskyros sukÅ«rimas nepavyko" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "JÅ«sų įkeltam paveikslÄ—liui negalima automatiÅ¡kai pasiÅ«lyti spalvinių temų. Taip gali bÅ«ti todÄ—l, kad jÅ«sų GD bibliotekos nepalaiko paveikslÄ—lio failo formato. Palaikomi formatai yra: %1. Galite pabandyti perkompiliuoti libgd ir GD.pm įtraukÄ™ papildomus paveikslÄ—lių failų formatus." #: etc/initialdata:261 msgid "Autoreply" msgstr "Automatinis atsakymas" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Automatinis atsakymas praÅ¡ymo autoriui" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Automatinis atsakymas HTML formatu" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Pasirinkite" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "Vidurkis: užregistruotas-paskutinį kartÄ… keistas" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "Vidurkis: užregistruotas-įvykdytas" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "Vidurkis: užregistruotas-pradÄ—tas vykdyti" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "Vidurkis: galutinis terminas-užbaigtas vykdyti" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "Vidurkis: pradÄ—tas vykdyti-užbaigtas vykdyti" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "Vidurkis: bus pradÄ—tas vykdyti-pradÄ—tas vykdyti" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "Vidurkis: laiko sÄ…naudų įvertinimas" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "Vidurkis: liko dirbti" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "Vidurkis: jau dirbta" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Atgal" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Neteisingas privatumas atributui %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Pagrindai" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "Paketinis" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "Paketinis (iÅ¡jungtas konfigÅ«racijoje)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Paketinis skriptas" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "Apdorojimo skriptas vykdomas po susijusių praÅ¡ymo pakeitimų" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Slapta kopija (Bcc)" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "Prie naudojant aprašų funkcionalumÄ…, RT administratorius turi %1sukurti kategorijas%2, sudÄ—ti reikalingus papildomus laukus, suteikti naudotojams teises klasÄ—se ir papildomuose laukuose." #: etc/initialdata:257 msgid "Blank" msgstr "TuÅ¡Äias" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Turinys" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "ParyÅ¡kintas" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "PasižymÄ—jimas" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Nuoroda į Å¡iÄ… paieÅ¡kÄ…, skirta įsiminti narÅ¡yklÄ—je" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "PažymÄ—ti praÅ¡ymai" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "PažymÄ—ti praÅ¡ymus" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "PeržiÅ«rÄ—ti pagal temas" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "PeržiÅ«rÄ—ti SQL užklausas, įvykdytas Å¡iame procese" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Masinis pakeitimas" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "Kopijų grupÄ—" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "Papildomame lauke gali bÅ«ti ieÅ¡koma naudojant panaÅ¡iÄ… sintaksÄ™, kaip ankstesnÄ— %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "ApskaiÄiuoti" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "ApskaiÄiuoti nurodytas reikÅ¡mes:" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Nepavyksta atstatyti įsimintos paieÅ¡kos \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Sisteminių naudotojų keisti negalima" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Negalima įtraukti papildomÄ… laukÄ… be pavadinimo" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "Negalima pakeisti %1 nutylÄ—tosios reikÅ¡mÄ—s iÅ¡ %2 į %3: %4" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "Negalima pakeisti nutylÄ—tųjų reikÅ¡mių iÅ¡ %1 į %2: %3" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Nepavyksta rasti tinkamos naudojimui įsimintos paieÅ¡kos" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Negalima persiųti: nenurodytas teisingas paÅ¡to adresas" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Negalima susieti praÅ¡ymo su juo paÄiu" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "NuorodÄ… į panaikintÄ… praÅ¡ymÄ… negalima" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Negalima apjungti praÅ¡ymo su juo paÄiu" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "EilÄ—je %1 negalima greitai sukurti praÅ¡ymo, nes yra privalomų papildomų laukų. Užbaikite praÅ¡ymo registravimÄ… įprastinÄ—je formoje." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Nepavyko iÅ¡saugoti %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Negalima iÅ¡saugoti paieÅ¡kos nenurodžius jos apraÅ¡ymo" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Nepavyko įsiminti Å¡ios paieÅ¡kos" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "Negalima vienu metu nurodyti ir Å¡altinį, ir adresatÄ…" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Negalima įdÄ—ti nuorodos į paprastÄ… skaiÄių" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Negalima sukurti praÅ¡ymo iÅ¡jungtoje eilÄ—je." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "Negalima pakeisti iÅ¡jungto papildomo vaidmens #%1 objektų" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "Katalogas" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "Katalogas #%1 sukurtas: %2" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "Katalogas %1: Taisyti papildomus laukus" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "Katalogas %1: Taisyti pagrindinius nustatymus" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "Katalogas %1: Taisyti grupÄ—s teises" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "Katalogas %1: Taisyti vaidmenis" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "Katalogas %1: Taisyti naudotojo teises" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "Katalogo sukÅ«rimas nepavyko: %1" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "Katalogo sukÅ«rimas nepavyko: %1" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "Katalogai" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "Katalogai negali bÅ«ti panaikinti" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategorijos remiasi" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategorija" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Kopija (CC)" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "Kopijos (CC)" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Pakeisti" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Pakeiti tvirtinimo praÅ¡ymÄ… į vykdomÄ… bÅ«senÄ…" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Pakeista laiÅ¡ko antraÅ¡tÄ™" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Pakeisti slaptažodį" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "EilÄ—s keitimas nerealizuotas" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Diagrama" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "PažymÄ—ti" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "PažymÄ—ti visus" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Patikritni duomenų bazÄ—s autentikacijÄ…" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Pasirinkite kÄ… norite paÅ¡alinti" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Dukterinis objektas" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Palikuonys" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Pasirinkti DBVS" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Pasirinkite iÅ¡ temų dÄ—l %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Miestas" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Kategorija" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Kategorijos pavadinimas" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Kategorija negali bÅ«ti sukurta: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Kategorijos identifikatorius" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Kategorija jau taikoma visuotinai" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Kategorija jau pritaikyta %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Kategorijos" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "IÅ¡valyti" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "NepažymÄ—ti nei vieno" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Pasirinkite spalvÄ…" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "Užverti langÄ…" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Ä®vykdytas" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Uždaryti praÅ¡ymai" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: pasirinkite arba įveskite keletÄ… reikÅ¡mių" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Combobox: pasirinkite arba įveskite vienÄ… reikÅ¡mÄ™" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Combobox: pasirinkite arba įveskite iki %1 reikÅ¡mių" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Komentuoti" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Adresas komentarams" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Adresas komentarams" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "Komentuoti praÅ¡ymÄ…" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Komentuoti praÅ¡ymÄ…" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Komentarai" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Komentaras (nesiunÄiamas praÅ¡ymo autoriui)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Komentarai apie šį naudotojÄ…" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Komentarai pridÄ—ti" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Patvirtinimas pažymÄ—tas" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "SÄ…lyga" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "SÄ…lyga '%1' nerasta" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "SÄ…lyga yra privalomas argumentas" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "SÄ…lyga atitinka..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "SÄ…lyga, Veiksmas ir Å ablonas" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "KonfigÅ«racijos failas %1 blokuotas" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "EilÄ—s %1 konfigÅ«racija" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "Vaidmens %1 nustatymai" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Prisijungta sÄ—kmingai" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "Kontaktai" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "KreipkitÄ—s į RT administratorių %1el. laiÅ¡ku dÄ—l %2%3." #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "KreipkitÄ—s į RT administratorių" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Turinys" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Turinys paÅ¡alintas, nes jo dydis (%1 baitų) virÅ¡yja nustatytÄ… maksimaliÄ… reikÅ¡mÄ™ (%2 baitų)." #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "Turinio įkÄ—limas nepavyko. Detaliau žiÅ«rÄ—kite klaidų žurnale." #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Turinyje yra neteisingas IP adresas" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Turinyje yra neteisingas IP adresų intervalas" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Turinys sutrumpintas, nes jo dydis (%1 baitų) virÅ¡yja nustatytÄ… maksimaliÄ… reikÅ¡mÄ™ (%2 baitų)." #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Turinio tipas" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "Turinio tipas" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "SusiraÅ¡inÄ—jimo adresas" #: etc/initialdata:393 msgid "Correspondence" msgstr "SusiraÅ¡inÄ—jimas" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "SusiraÅ¡inÄ—jimas pridÄ—tas" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Atsakymas HTML formatu" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Negalima pridÄ—ti naujos papildomo lauko reikÅ¡mÄ—s: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Nepavyko pakeisti atsakingo: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Klaida kuriant papildomÄ… laukÄ…: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Nepavyko sukurti grupÄ—s" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Nepavyksta įsiminti paieÅ¡kos: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Nepavyko sukurti praÅ¡ymo. EilÄ— nenurodyta." #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Nepavyko sukurti naudotojo" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Negalima panaikinti paieÅ¡kos %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Nepavyko rasti grupÄ—s '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Nepavyko rasti naudotojo '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Nepavyko užkrauti atributo %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Negaliu įkelti kategorijos %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Nepavyko užkrauti papildomo lauko %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "Nepavko nuskaityti papildomo vaidmens #%1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Nepavyko užkrauti grupÄ—s" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Nepavyko nuskaityti objekto, skirto %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "Nepavyko rasti skripto #%1" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "Nepavyko nuskaityti praÅ¡ymo istorijos. Priežastis:" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Nepavyko įkelti naudotojo '%1'" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "Negalima %1 paversti į %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "Negalima paÅ¡alinti %1 iÅ¡ %2" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Nepavyko priskirti naudotojui informacijos" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Nepavyko pakeisti stulpelio %1: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "Negalima pridÄ—ti, nes jau pridÄ—ta globaliai" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Negalima pridÄ—ti priedo" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "Nepavyko pridÄ—ti papildomo lauko reikÅ¡mÄ—s sukÅ«rimo metu: %1" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Nepavyko įtraukti naudotojo į grupÄ™" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Nepavyksta sukompiliuoti %1 kodo bloko '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Nepavyksta sukompiliuoti Å¡ablono kodo bloko '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Negalima sukurti tranzakcijos: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Nepavyksta sukurti įraÅ¡o: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "Nepavyko sukurti vaidmens grupių inventoriui" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "Nepavyko sukurti vaidmens grupių katalogui" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Negalima panaikinti informacinÄ—s panelÄ—s %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Negaliu rasti eilutÄ—s" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Nepavyksta rasti tinkamÄ… tranzakcijÄ…. Praleidžiama" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Negaliu rasti Å¡io naudotojo" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Negaliu rasti Å¡ios reikÅ¡mÄ—s" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "Nepavyko gauti %1 raktų informacijos" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Negaliu įkelti kategorijos %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Klaida nuskaitant papildomÄ… laukÄ… Nr. %1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Nepavyksta nuskaityti papildomo lauko Nr. %1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Negaliu nuskaityti papildomo lauko %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "Nepavyko įkelti %1 #%2 kopijos" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Negaliu nuskaityti praÅ¡ymo Nr. %1 kopijos." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "Nepavyko nuskaityti papildomo vaidmens '%1'" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Klaida nuskaitant informacinÄ™ panelÄ™ %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Nepavyko nuskaityti grupÄ—s Nr. %1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Nepavyko nuskaityti grupÄ—s %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Nepavyko nuskaityti nuorodos" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "Nepavyko įkelti nuorodos: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Nepavyko nuskaityti objekto %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Klaida kuriant ar įkeliant naudotojÄ…: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "Nepavyko įkelti naudotojo: #%1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "Nepavyko įkelti naudotojo: %1" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Negaliu nuskaityti eilÄ—s" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Nepavyko nuskaityti eilÄ—s Nr. %1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Nepavyko nuskaityti eilÄ—s %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Klaida nuskaitant eilÄ™ '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Nepavyko nuskaityti skripto Nr. %1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Nepavyko nuskaityti Å¡ablono Nr. %1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Nepavyksta nuskaityti nurodyto atsakingo" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Nepavyko nuskaityti Å¡io praÅ¡ymo '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Nepavyksta nuskaityti temos narystÄ—s bandant jÄ… panaikinti" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Nepavyko nuskaityti tranzakcijos Nr. %1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Nepavyksta nuskaityti naudotojo" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Nepavyko nuskaityti naudotojo Nr. %1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Nepavyko nuskaityti naudotojo Nr. %1 arba naudotojo '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Nepavyksta nuskaityti naudotojo '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "Nepavyko iÅ¡skirti bazinio URI: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "Nepavyko iÅ¡skirti tikslinio URI: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "Negalima paÅ¡alinti ankstesnio nario: %1" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Klaida užpildant turinį deÅ¡ifruotais duomenimis: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Klaida užpildant turinį užšifruotais duomenimis: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "Nepavyko paversti '%1' į nuorodÄ…." #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Negaliu paversti bazÄ™ '%1' į URI." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Negaliu paversti tikslÄ… '%1' į URI." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Klaida skiriant naudotojÄ… %1 stebÄ—toju: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Klaida nustatant privatų raktÄ…" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Klaida naikinant privatų raktÄ…" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Å alis" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Užregistruoti naujÄ…" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "Sukurti naujÄ…" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Užregistruoti praÅ¡ymus" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Sukurti kategorijÄ…" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Sukurti papildomÄ… laukÄ…" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Sukurti papildomÄ… laukÄ… eilei %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "Sukurti papildomÄ… vaidmenį" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "Sukurti globalų skriptÄ…" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Sukurti naujÄ… aprašą" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Sukurti naujÄ… aprašą" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "Užregistruoti naujÄ… inventorių kataloge %1" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "Užregistruoti naujÄ… inventorių kataloge %1." #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Sukurti naujÄ… informacinÄ™ panelÄ™" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Sukurti naujÄ… grupÄ™" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Sukurti naujÄ… Å¡ablonÄ… eilei %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "Užregistruoti naujÄ… praÅ¡ymÄ… eilÄ—je %1" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "Užregistruoti naujÄ… praÅ¡ymÄ… eilÄ—je %1 dÄ—l inventoriaus #%2: %3." #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Sukurti naujÄ… naudotojÄ…" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Sukurti eilÄ™" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "Sukurti skriptÄ… ir pridÄ—ti į eilÄ™ %1" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Sukurti Å¡ablonÄ…" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Užregistruoti praÅ¡ymÄ…" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "Užregistruoti praÅ¡ymÄ… eilÄ—je %1" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Sukurti praÅ¡ymÄ… eilÄ—je, nurodant šį asmenį kaip autorių" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Sukurti naujÄ… aprašą" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Sukurti naujÄ… aprašą kategorijoje..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Sukurti naujÄ… aprašą kategorijoje" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "Užregistruoti inventorių" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "Užregistruoti inventorių" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "Sukurti katalogÄ…" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Sukurti grupÄ—s informacinÄ™ panelÄ™" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "Sukurti susietÄ… praÅ¡ymÄ…" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "Sukurti susietÄ… praÅ¡ymÄ… inventoriui #%1: %2" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "Užregistruoti naujÄ… inventorių" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Sukurti naujus praÅ¡ymus naudojant Å¡io skripto Å¡ablonÄ…" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Sukurti asmenines informacines paneles" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Sukurti sistemines informacines paneles" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Užregistruoti praÅ¡ymÄ…" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Sukurti praÅ¡ymus" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Kurti, keisti arba panaikinti prieigos teisių įraÅ¡us" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Kurti, keisti arba panaikinti papildomus laukus" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Kurti, keisti arba panaikinti papildomų laukų reikÅ¡mes" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "Sukurti, taisyti ar panaikinti papildomas vaidmenis" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Kurti, keisti arba panaikinti eiles" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Kurti, keisti arba panaikinti įsimintas paieÅ¡kas" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Kurti, keisti arba panaikinti naudotojus" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "Sukurti, taisyti ar panaikinti katalogus" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Pateiktas" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Pateiktas:" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Sukurtas papildomas laukas %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "SukÅ«rÄ—" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Sukurta paieÅ¡ka %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "Pateiktas:" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "Pateiktas santykinai" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "PraÅ¡ymo autorius" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Å ifravimas" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "Kriptografija iÅ¡jungta" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "DabartinÄ—s nuorodos" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Einamoji paieÅ¡kos sÄ…lyga" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Dabartiniai nariai" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Einamoji paieÅ¡kos sÄ…lyga" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Dabartiniai stebÄ—tojai" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "Modifikuotas CSS (iÅ¡plÄ—stinis)" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Papildomi laukai" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Papildomi laukai, skirti %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "EilÄ—s %1 papildomi laukai" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "Papildomi vaidmenys" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "Papildomas veiksmo patvirtinimo kodas" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Papildomas veiksmo parengimo kodas" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Papildoma sÄ…lyga" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Papildomas laukas Nr. %1 netaikomas Å¡iam objektui" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Papildomas laukas %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Papildomas laukas %1 netaikomas Å¡iam objektui" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Papidomo lauko %1 reikÅ¡mÄ— nurodyta." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Papidomo lauko %1 reikÅ¡mÄ— nenurodyta." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Nerastas papildomas laukas %1" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Nerasta reikÅ¡mÄ— %1 papildomam laukui %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Nepavyko panaikinti papildomo lauko reikÅ¡mÄ—s" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Papildomo lauko reikÅ¡mÄ— panaikinta" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "Papildomas vaidmuo sukurtas" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "Papildomas vaidmuo iÅ¡jungtas" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "Papildomas vaidmuo įjungtas" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "Papildomas vaidmuo nepridÄ—tas" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Papildomas laukas" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "Papildomo lauko reikÅ¡mÄ—" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "Papildomas vaidmuo" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Keisti:" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Pakeisti informacinÄ™ panelÄ™, nurodytÄ… meniu" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "Modifikuoti RT temÄ…" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Keisti individualiÄ… RT iÅ¡vaizdÄ…" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Kasdien" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "KasdieninÄ— santrauka" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "InformacinÄ— panelÄ—" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "InformacinÄ™ panelÄ— %1 negali bÅ«ti pakeista: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "InformacinÄ™ panelÄ— %1 pakeista" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "KlaidÄ… kuriant informacinÄ™ panelÄ™: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "KlaidÄ… keiÄiant informacinÄ™ panelÄ™: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "InformacinÄ— panelÄ— pakeista" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "InformacinÄ—s panelÄ—s" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "InformacinÄ—s panelÄ—s, nurodytos meniu" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "InformacinÄ—s panelÄ—s, nurodytos naudotojo %1meniu" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Duomenų bazÄ—s pavadinimas" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "Data" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Datos formatas" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Datos" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "Diena" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "MÄ—nesio diena" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "SavaitÄ—s diena" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "Metų diena" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Grd" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "DeÅ¡ifruoti" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "DeÅ¡ifravimo klaida. KreipkitÄ—s į RT administratorių." #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "NutylÄ—tasis %numerate(%1,value,values)" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "NutylÄ—tosios reikÅ¡mÄ—s" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "NutylÄ—tosios reikÅ¡mÄ—s eilei %1" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "NutylÄ—ta eilÄ—" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "Standartinis priminimo Å¡ablonas" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "NutylÄ—toji reikÅ¡mÄ— uždrausti visus siunÄiamus praneÅ¡imus (per narÅ¡yklÄ—s sÄ…sajÄ…) atnaujinus praÅ¡ymus" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "%1 nutylÄ—toji reikÅ¡mÄ— pakeista iÅ¡ %2 į %3" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "NutylÄ—toji reikÅ¡mÄ— pakeista iÅ¡ %1 į %2" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "NutylÄ—ta: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "NutylÄ—ta: %1/%2 pakeista iÅ¡ %3 į %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "NutylÄ—toji galutinÄ— data" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "NutylÄ—tasis formatas" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "NutylÄ—toji pradinÄ— data" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "PaÅ¡alinti" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Panaikinti Å¡ablonÄ…" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Panaikinti nepavyko: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Panaikinti grupÄ—s informacinÄ™ panelÄ™" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Panaikinimas yra uždraustas gyvavimo ciklo konfigÅ«racijoje" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Panaikinti asmenines informacines paneles" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Panaikinti sistemines informacines paneles" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Panaikinti praÅ¡ymus" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Panaikinti reikÅ¡mes" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Panaikinta %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Panaikintos užklausos" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Panaikinta paieÅ¡ka" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Panaikinta užklausa %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "IÅ¡trynus šį objektÄ… bus sugrautas nuorodų integralumas" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "IÅ¡trynus šį objektÄ… bus pažeistas nuorodų integralumas" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Atmesti" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Nuo jo priklauso" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "Priklauso nuo pagal" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "PridÄ—ta %1 priklausomybÄ—" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Panaikinta %1 priklausomybÄ—" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "PridÄ—ta priklausomybÄ— nuo %1" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Panaikinta priklausomybÄ— nuo %1" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "Priklauso nuo" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Priklauso nuo" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "Priklauso nuo" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Mažėjimo tvarka" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "PraÅ¡ymo turinys" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "ApraÅ¡ymas" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Detali informacija apie RT nustatymus" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "IÅ¡samiau" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "Aptikti situacijÄ…, kai turime nustatyti galutinÄ™ datÄ…" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "Aptikti situacijÄ…, kai turime nustatyti pradinÄ™ datÄ…" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Kryptis" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "Uždrausti apraÅ¡us Å¡ioje klasÄ—je" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "IÅ¡juntgta" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "Uždraustas?" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Parodyti" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Parodyti teisių sÄ…rašą" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Parodyti aprašą %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Rodyti stulpelius" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "Rodyti prikabintus tekstinius failus fiksuoto ploÄio Å¡riftu, iÅ¡laikant formatavimÄ…, bet su ilgų eiluÄių karpymu." #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "Kai įmanoma, rodyti sumaketuotus praneÅ¡imus" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Rodyti tekstinius prikabintus failus fiksuoto ploÄio Å¡riftu" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Parodyti paÅ¡ymÄ… po \"Greito sukÅ«rimo\"" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Platinama pagal %1 versijÄ… 2 GNU GPL%2 licencijÄ…." #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Daryti viskÄ… ir visur" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Domeno vardas" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Nenaudokite http://, tik kÄ… nors panaÅ¡aus į 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Neatnaujinti pradinio puslapio" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Neatnaujinti paieÅ¡kos rezultatų" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Neatnaujinti Å¡io puslapio automatiÅ¡kai" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Nuo Å¡iol nepasitikÄ—ti Å¡iuo raktu" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Atsiųsti" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "Pasisiųsti elektroninÄ™ lentelÄ™" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Atsisiųsti dump failÄ…" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "Nutempkite Äia failÄ… arba spustelkite norÄ—dami prikabinti" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Pasirinkimo sÄ…raÅ¡as" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Galutinis terminas" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "Santykinis terminas" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "KLAIDA: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Masinis mano vykdomų praÅ¡ymų atnaujinimas" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Paprastas priminimų peržiÅ«rÄ—jimas" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Taisyti" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "Keisti %1" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Taisyti papildomus laukus" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Taisyti papildomus laukus praÅ¡ymui %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "Keisti inventoriaus papildomus laukus visose kataloguose" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Taisyti papildomus laukus visoms grupÄ—ms" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Taisyti papildomus laukus visose eilÄ—se" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Taisyti papildomus laukus visiems naudotojams" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Taisyti apraÅ¡ams papildomus laukus visose kategorijose" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Taisyti papildomus laukus visoms eilÄ—ms" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Taisyti nuorodas" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Taisyti užklausÄ…" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Patikslinti paieÅ¡kÄ…" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Taisyti bendrÄ… temų hierarchijÄ…" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Taisyti sisteminius Å¡ablonus" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Taisyti %1 temų hierarchijÄ…" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Lauko %1 redagavimas" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "GrupÄ—s %1 naudotojų sÄ…raÅ¡o redagavimas" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "Efektyvus Id" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Reikia nurodyti ara Å¡altinį, arba paskirties adresÄ…" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Arba jÅ«s neturite teisÄ—s matyti įsimintos paieÅ¡kos %1, arba paieÅ¡kos identifikatorius klaidingas" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "Užtruko" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "El. paÅ¡to adresas" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "El. paÅ¡to adresas" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "PaÅ¡to santrauka" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "PraÅ¡ymo %1 paÅ¡to adresas, pridÄ—tas failas %2" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Email adresas jau naudojamas" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Informavimas el. paÅ¡tu" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "LaiÅ¡ko Å¡ablonas periodinÄ—ms suvestinÄ—ms" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "El. paÅ¡to adresas" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "TuÅ¡Äias" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "Leisti ilgų citatų skaidymÄ… į kelias eilutes?" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Ä®jungtas" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "Ä®jungtas (nuimkite pažymÄ—jimÄ…, norÄ—dami iÅ¡jungti šį aprašą)" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Ä®jungta (nuimkite pažymÄ—jimÄ…, norÄ—dami iÅ¡jungti Å¡iÄ… kategorijÄ…)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Naudojamas (nuÄ—mus 'varnelÄ™' Å¡io papildomo lauko naudojimas iÅ¡jungiamas)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "Ä®jungtas (nuimkite pažymÄ—jimÄ…, norÄ—dami iÅ¡jungti Å¡iÄ… papildomÄ… vaidmenį)" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Naudojama (nuÄ—mus 'varnelÄ™' Å¡ios grupÄ—s naudojimas iÅ¡jungiamas)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Naudojama (nuÄ—mus 'varnelÄ™' Å¡ios eilÄ—s naudojimas iÅ¡jungiamas)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Ä®jungtas (varnelÄ—s nuÄ—mimas iÅ¡jungia skriptÄ…)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "Ä®jungti katalogus" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Ä®jungtos kategorijos" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Naudojamos eilÄ—s" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "PaieÅ¡kos kriterijų atitinkantys katalogai yra įjungti" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Ä®jungtos eilÄ—s, atitinkanÄios paieÅ¡kos kriterijus" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Ä®jungta bÅ«sena %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Užšifruoti" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Užšifruoti nutyl'tai" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Užšifruoti/DeÅ¡ifruoti" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Užšifruoti/DeÅ¡ifruoti tranzakcijÄ… Nr. %1 praÅ¡ymui Nr. %2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "Å ifravimas" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Užšifravimo klaida. KreipkitÄ—s į RT administratorių" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "Ä®vesti" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Nurodyti apraÅ¡us, praÅ¡ymus ar kitas URL nuorodas, susijusias su Å¡iuo apraÅ¡u." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "Ä®raÅ¡ykite nuorodÄ… į inventorių, pvz., \"asset:###\", kur ### yra inventoriaus ID." #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Nurodykite keletÄ… IP adresų intervalų" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Nurodykite keletÄ… IP adresų" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Ä®raÅ¡ykite keletÄ… reikÅ¡mių" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Ä®raÅ¡ykite keletÄ… reikÅ¡mių (automatinis užbaigimas)" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "IÅ¡vardinkite objektus arba nuorodas į juos (URI). ReikÅ¡mes atskirkite tarpais." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Nurodykite vienÄ… IP adresÄ…" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Nurodykite vienÄ… IP adresų intervalÄ…" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Ä®raÅ¡ykite vienÄ… reikÅ¡mÄ™" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Ä®raÅ¡ykite vienÄ… reikÅ¡mÄ™ (automatinis užbaigimas)" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "IÅ¡vardinkite eiles arba nuorodas į jas (URI). ReikÅ¡mes atskirkite tarpais." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "IÅ¡vardinkite praÅ¡ymus arba nuorodas į juos (URI). ReikÅ¡mes atskirkite tarpais." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "Nurodykite praÅ¡ymÄ… arba URI nuorodÄ…. Kelias reikÅ¡mes atskirkite tarpais" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Pagal nutylÄ—jimÄ… laikas nurodomas valandomis" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Nurodykite iki %1 adresų intervalų" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Nurodykite iki %1 adresų" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Nurodykite iki %1 reikÅ¡mių" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Nurodykite iki %1 reikÅ¡mių (automatinis užbaigimas)" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "Nurodžius %1, %2, %3 arba %4, rezultatai apribojami atitinkamo bÅ«senos praÅ¡ymais. Nurodžis konkremiÄ… bÅ«senÄ…, rezultatai apribojami tik tos bÅ«senos praÅ¡ymais." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "Patarimas, paaiÅ¡kinimas" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "Aplinkos kintamieji" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Klaida" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "Nepavyko įkelti prikabinto failo" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "Klaida formuojant grafikÄ…: %1" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Klaida RT valdytojui: vieÅ¡as raktas" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Klaida: nÄ—ra informacinÄ—s panelÄ—s" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Klaida: neteisingi GnuPG duomenys" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "Klaida: neteisingai užšifruoti duomenys" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Klaida: negalima pakeisti privatumo nustatymo esamai paieÅ¡kai" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Klaida: nepavyksta atstatyti įsimintos paieÅ¡kos %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Klaida: nÄ—ra privataus rakto" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Klaida: nÄ—ra vieÅ¡o rakto" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Klaida: paieÅ¡ka %1 nepakeista: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "Klaida: neužšifruotas praneÅ¡imas" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Eskaluoti praÅ¡ymÄ…" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Ä®vertinta" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Visi" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Pavyzdys:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Baigiasi" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "IÅ¡plÄ—stinÄ— bÅ«sena" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "IÅ¡orinÄ— autentikacija įjungta" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "Papildoma informacija" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Papildoma informacija" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Perkelti į aprašą" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Panaudoti pavadinimo laukÄ…" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Sukurti naujÄ… aprašą praÅ¡ymo Nr. %1 pagrindu" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Sukurti naujÄ… aprašą praÅ¡ymo Nr. %1 pagrindu kategorijoje %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Panaudoti žymes iÅ¡ tranzakcijos pavadinimo ir įdÄ—ti jas į praÅ¡ymo pavadinimÄ…" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Klaida kuriant atributÄ… %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Nepavyko rasti pseudo-grupÄ™ 'Privileged'" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Nepavyko rasti pseudo-grupÄ™ 'Unprivileged'" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Užkrovimo klaida %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Užkrovimo klaida %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Klaida užkraunant modulį %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Klaida užkraunant objektÄ…, skirtÄ… %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Å ablono užkrovimo klaida" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "Nepavyko įkelti praÅ¡ymo %1" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Å ablono apdorojimo klaida" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "Nepavyko atnaujinti formato. Priežastis:" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Vas" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Sklaidos kanalai" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Laukas" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Lauko reikÅ¡mių Å¡altinis:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "Failas '%1' paÅ¡alintas, nes jo dydis (%2 baitų) virÅ¡yja nustatytÄ… maksimaliÄ… reikÅ¡mÄ™ (%3 baitų)." #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "Failo '%1' įkÄ—limas nepavyko. Detaliau žiÅ«rÄ—kite klaidų žurnale." #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "Failas '%1' sutrumpintas, nes jo dydis (%2 baitų) virÅ¡yja nustatytÄ… maksimaliÄ… reikÅ¡mÄ™ (%3 baitų)." #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Failo pavadinimas" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "Failai, kurių varde yra dvigubos kabutÄ—s, negali bÅ«ti įkelti" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Nurodykite parametrus" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Nurodykite spalvas" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Užpildykite keletÄ… tekstinių laukų" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Užpildykite keletÄ… wikitext laukų" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Užpildykite vienÄ… tekstinį laukÄ…" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Užpildykite wikitext formato laukÄ…" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Užpildykite šį laikÄ… URL'u" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Užpildykite iki %1 tekstinių laukų" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Užpildykite iki %1 wikitext laukų" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Galutinis bÅ«simas prioritetas" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "Galutinis bÅ«simas prioritetas" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "Rasti grupÄ™..." #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Rasti naudotojÄ…" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "Rasti naudotojÄ…..." #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Rasti naudotojus, kurių" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "Rasti inventorių" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Rasti grupes, kurių" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Rasti naudotojus, kurių" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "PraÅ¡ymų paieÅ¡ka" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "Rasti inventorių" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "Rasti naudotojÄ…" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Rakto \"pirÅ¡to atspaudas\"" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Pabaigti" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Pirmas" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "VietinÄ—s pagalbos kreipkitÄ—s į %1" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "NorÄ—dami panaudoti visas RT paieÅ¡kos galimybes, atverkite %1paieÅ¡kos konstravimo sÄ…sajÄ…%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Priverstinai pakeisti" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "PaieÅ¡kos rezultatų forma" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "Formuoja iCal srauto įvykius su data ir laiku" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Persiųsti" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Persiųsti praneÅ¡imÄ…" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Persiųsti praneÅ¡imÄ… ir grįžti" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Persiųsti praÅ¡ymÄ…" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Persiųsti praneÅ¡imÄ… iÅ¡ RT į iÅ¡orÄ™" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Persiųsti praÅ¡ymÄ… Nr. %1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Persiųsti operacijÄ… Nr. %1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "Persiųsta %3Veiksmas #%1%4 %2" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Persiųstas praÅ¡ymas adresu %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "Persiųstas praneÅ¡imas" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "Persiųstas praÅ¡ymo praneÅ¡imas" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "Rasta %quant(%1,asset,assets)" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Rasta %quant(%1,praÅ¡ymas,praÅ¡ymai,praÅ¡ymų)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Rastas objektas" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Dažnumas" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Pen" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Penktadienis" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Nuo" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD iÅ¡jungtas arba neinstaliuotas. Galite padÄ—ti paveikslÄ—lį, bet negausite automatinio spalvų pasiÅ«lymo." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "Gecos adresas" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Bendri" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "Bendras inventorius" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Bendros teisÄ—s" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "Parodyti rezultatÄ… net ir sÄ—kmingai iÅ¡siuntus praneÅ¡imÄ…" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Paskirta %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Bendri" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Bendri požymiai" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Bendros temos" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Bendro papildomo lauko nustatymai" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "Ä®simintos globalios informacinÄ—s panelÄ—s, rodomos meniu" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "Globalus ar eilÄ—s Å¡ablonas '%1' nerastas" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Bendras portletas %1 iÅ¡saugotas." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "Globalus Å¡ablonas '%1' nerastas" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "Visur pridÄ—tas papildomas laukas %1." #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "Visur panaikintas papildomas laukas %1." #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "GnuPG privatus raktas" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Rodyti" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "Eiti pirmyn / atgal" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Pasirinkti grupÄ™" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Pasirinti naudotojÄ…" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Pakeisti" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Pasirinti praÅ¡ymÄ…" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Rodyti praÅ¡ymÄ…" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "%2 suteikta teisÄ— '%1'." #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Diagrama" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Grafiko nustatymai" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Grafikai nepasiekiami." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "GrupÄ—" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "GrupÄ—s teisÄ—s" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "naudotojas jau priklauso grupei: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "Grupuoti pagal" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Negalima sukurti grupÄ™: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "GrupÄ— sukurta" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "GrupÄ— iÅ¡jungta" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "GrupÄ— įjungta" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "GrupÄ—je nÄ—ra tokio naudotojo" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "GrupÄ— pavadinimu '%1' jau naudojama" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "GrupÄ— nerasta" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "Grupuoti praÅ¡ymus pagal" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "GrupÄ—: %1" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "Sugrupuoti paieÅ¡kos rezultatai" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "GrupÄ—s" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "GrupÄ—s negali bÅ«ti savo paÄių nariais" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "GrupÄ—s, atitinkanÄios paieÅ¡kos kriterijus" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "Grupuoja naudotojus pagal priklausymÄ… grupÄ—ms (norÄ—dami panaikinti nuimkite varnelÄ™)" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "Grupuoja naudotojus pagal priklausymÄ… grupÄ—ms (norÄ—dami pridÄ—ti uždÄ—kite varnelÄ™)" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "GrupÄ—s, kurioms priklauso Å¡is naudotojas" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "Automatinio atsakymo Å¡ablonas HTML formatu" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "PraÅ¡ymo įvykdymo Å¡ablonas HTML formatu" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "PraÅ¡ymo bÅ«senos pasikeitimo Å¡ablonas HTML formatu" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "Administracinio komentaro Å¡ablonas HTML formatu" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "Administracinio atsakymo Å¡ablonas HTML formatu" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "Atsakymo Å¡ablonas HTML formatu" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "Veiksmo Å¡ablonas HTML formatu" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "Priklauso" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "PersiunÄiamo praÅ¡ymo antraÅ¡tÄ—" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Persiųsto laiÅ¡ko antraÅ¡tÄ—" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "AukÅ¡tis" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "Yra pas" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Labas!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "PaslÄ—pti visÄ… cituojamÄ… tekstÄ…" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "PaslÄ—pti cituojamÄ… tekstÄ…" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "Nerodyti tuÅ¡Äių laukų?" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Istorija" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "ApraÅ¡o Nr. %1 istorija" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "Inventoriaus #%1 istorija: %2" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "GrupÄ—s %1 istorija" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "EilÄ—s %1 istorija" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Naudotojo %1 istorija" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Namų telefonas" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Pradinio puslapio atnaujinimo dažnumas" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Ä® pradžiÄ…" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Valanda" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "Kas valandÄ…" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Valandos" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Turiu %quant(%1,concrete mixer)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "Noriu pakeisti savo slaptÄ… žymÄ…" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "PraÅ¡ymas" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Asmuo" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "Jeigu pasirinktas papildomas laukas, iÅ¡einanÄio laiÅ¡ko antraÅ¡tÄ— bus pakeista naudojant šį aprašą" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Jeigu patvirtinimas atmestas, atmesti originalÄ… ir panaikinti laukianÄius patvirtinimus" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "Jeigu jÅ«s tikÄ—jotÄ—s ne to, iÅ¡eikite iÅ¡ Å¡io puslapi neprisijungdami." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Jeigu Å¡i programa nustatyta setgid, prieÅ¡iÅ¡kas naudotojas gali pasinaudoti ja norÄ—damas gauti RT administratoriaus teises." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "Jeigu turite vidinÄ™ RT paskyrÄ…, galite %1pabandyti panaudoti jÄ…%2." #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "Jeigu jÅ«s tikrai norÄ—jote patekti į %1 ir %2, %3spauskite ÄiÄ…, norÄ—dami atnaujinti savo praÅ¡ymÄ…%4." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Jeigu pakeitÄ—te RT naudojamÄ… TCP portÄ…, norinti prisijugti iÅ¡ naujo, reikia restartuoti serverį." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Jeigu kÄ… nors keitÄ—te, nepamirÅ¡kite:" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Jeigu jÅ«sų pageidaujama duomenų bazÄ— nÄ—ra paminÄ—ta pateiktame sÄ…raÅ¡e, tai reiÅ¡kia, kad RT neranda tinkamo duomenų bazÄ—s draiverio. JÅ«s gakite tai pataisyti naudodami %1 parsisiųsti ir įdiegti DBD::MySQL, DBD::Oracle arba DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Neleistina reikÅ¡mÄ— laukui %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "PaveikslÄ—lis bus parodytas tekste virÅ¡" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "PaveikslÄ—lis nerodomas, nes tai iÅ¡jungta RT konfigÅ«racijoje." #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "PaveikslÄ—lis nerodomas, nes siuntÄ—jas neįdÄ—jo jo į tekstÄ…." #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "NekeiÄiamas laukas" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "NeaktyvÅ«s praÅ¡ymai" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "NeaktyvÅ«s praÅ¡ymai" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Ä®traukti aprašą:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "Ä®terpti TicketSQL užklausÄ…" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Ä®traukti apraÅ¡o pavadinimÄ…" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Ä®traukti apraÅ¡o santraukÄ…" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "Ä®traukti prikabintus failus" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "Ä®traukti papildomÄ… laukÄ… '%1'" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "Ä®terpti duomenų lentelÄ™" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "Ä®traukti į sÄ…rašą uždraustus katalogus" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Ä® sÄ…rašą įtraukti iÅ¡jungtas kategorijas" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Rodyti sÄ…raÅ¡e iÅ¡jungus papildomus laukus." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "Ä®traukti į sÄ…rašą iÅ¡jungtus papildomus vaidmenis" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "SÄ…raÅ¡e rodyti nenaudojamas grupes." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "SÄ…raÅ¡e rodyti nenaudojamas eiles." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "PaieÅ¡koje įtraukti iÅ¡jungtus naudotojus." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Ä®terpti puslapį" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Ä®traukti temas" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "Ar įtraukti laikÄ… į iCal srauto įvykius?" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "Indeksai atnaujinami iÅ¡ %1" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Asmeniniai praneÅ¡imai" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "Informuoti naudotojÄ…, kad iÅ¡siųstame praneÅ¡ime yra neteisingai užšifruotų duomenų" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "Informuoti naudotojÄ…, kad jo neužšifruotas laiÅ¡kas buvo atmestas" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Pradinis prioritetas" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "Pradinis prioritetas" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Ä®vedimo klaida" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Ä®vestas tekstas turi atitikti %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "Ä®terpti iÅ¡ %1" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "VidinÄ— klaida: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "VidinÄ— klaida: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "Neteisingas %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Neteisingas %1 parametras" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "Neteisingas katalogas" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Neteisinga kategorija" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Netesingas papildomo lauko reikÅ¡mÄ—s Å¡altinis" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "Neteisingas grupÄ—s pavadinimas ir domenas" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "Neteisingas vardas (negali bÅ«ti vien tik skaiÄiai)" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "Neteisingas vardas (turi bÅ«ti unikalus ir negali bÅ«ti vien tik skaiÄiai)" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Neteisinga eilÄ—, nepavyksta pritaikyti kategorijos: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "Neteisingas pavertimo tipas" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Neteisingas pavertimo tipas papildomam laukui, kurio tipas %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "NekorektiÅ¡ki duomenys" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Neteisingas raktas %1 adresui '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "NekorektiÅ¡kas objektas" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Klaidinga forma: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "Neteisingas portletas %1" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Neteisinga eilÄ—" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "Neteisingas eilÄ—s identifikatorius" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Neteisinga teisÄ—" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Neteisinga teisÄ—. Neįmanoma konizuoti teisÄ™ '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Neteisinga el. paÅ¡to adreso sintaksÄ—" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Neleistina reikÅ¡mÄ— laukui %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Neleistina papildomo lauko reikÅ¡mÄ—" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "Jau pridÄ—ta prie objekto" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Neužšifruotas" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Nepaprastai svarbu, kad neprivilegijuoti naudotojai negalÄ—tų naudoti Å¡io įrankio." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Daroma prielaida, kad Å¡io įrankio vykdymui jÅ«s sukÅ«rÄ—te neprivilegijuotÄ… Unix naudotojÄ…, priklausantį teisingai grupei, ir su RT prieiga." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "Atrodo jÅ«s pamirÅ¡ote prikabinti failÄ…." #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Tai reikalauja kelių parametrų:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Kursyvas" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Sau" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Prisijungti prie ar palikti grupÄ™" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Lie" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Visi duomenys" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Bir" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "Spartieji klaviÅ¡ai" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "PaieÅ¡ka pagal raktinius žodžius arba intuityvi paieÅ¡ka" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Kalba" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Kalba" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Didelis" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Paskutinis" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Paskutinis kontaktas" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Paskutinis kontaktas" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Paskutinis atnaujinimas" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Paskutinį kartÄ… atnaujino:" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Paskutinis atnaujinimas" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Paskutinį kartÄ… atnaujino" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "Paskutinį kartÄ… atnaujinta" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "Paskutinį kartÄ… atnaujino" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "Paskutinį kartÄ… atnaujinta santykinai" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Liko" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Sutartiniai ženklai" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Dydis simboliais. Naudokite 0, jei norite matyti visÄ… praneÅ¡imo tekstÄ…, nepriklausomai nuo jo dydžio." #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Leisti naudotojui jungtis prie RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Suteikti naudotojui teises" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Pradedam!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Gyvavimo ciklas" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Nuoroda" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "RyÅ¡ys jau yra" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "Nepavyko sukurti nuorodos: %1" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "Nepavyko panaikinti nuorodos: %1" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "RyÅ¡ys nerastas" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Susieti praÅ¡ymÄ… Nr. %1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Susieti reikÅ¡mÄ™ su" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Susieta" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "Susieta iÅ¡" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "Susieta su" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "NuorodÄ… į panaikintÄ… %1 neleidžiama" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Nuorodos" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "Nuoroda į" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "SÄ…raÅ¡as" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Atstatyti" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Atstatyti įsimintÄ… paieÅ¡kÄ…" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Atstatyti įsimintÄ… paieÅ¡kÄ…" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Atstatyti įsimintÄ… paieÅ¡kÄ…:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Užkrauta %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "Ä®kelti konfigÅ«racijos failai" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Atstatyta originali įsiminta paieÅ¡ka \"%1\"" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Ukrauti perl moduliai" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Atstatyta įsiminta paieÅ¡ka \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Ä®keliama…" #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Regioniniai nustatymai" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "Vietinio formato data ir laikas" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Adresas" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "PrisijungÄ—" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "PrisijungÄ™s %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "AtsijungÄ—" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "Ä® žurnalÄ… %2 raÅ¡omi %1 ir aukÅ¡tesnio lygio praneÅ¡imai" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "Ä® sisteminį žurnalÄ… STDERR raÅ¡omi %1 ir aukÅ¡tesnio lygio praneÅ¡imai paprastai atsiduria web serverio klaidų žurnale." #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "Ä® sisteminį žurnalÄ… syslog raÅ¡omi %1 ir aukÅ¡tesnio lygio praneÅ¡imai, naudojant konfigÅ«racijÄ…: %2" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "Ä® sisteminį žurnalÄ… syslog raÅ¡omi %1 ir aukÅ¡tesnio lygio praneÅ¡imai" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "Žurnalo pildymo suvestinÄ—" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Prisijungti" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "Logotipo alternatyvus tekstas" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Atsijungti" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Neatitinka tipas" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "PaÅ¡tas" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Pagrindinis ryÅ¡ių tipas" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "Padaryti %1" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Skirti atsakingÄ…" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Nurodyti bÅ«senÄ…" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Nurodyti terminÄ…" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Nurodyti datÄ… 'Buvo pradÄ—tas'" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Nurodyti datÄ… 'Bus pradÄ—tas'" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Nurodyti paskutinio kontakto datÄ…" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Nurodyti prioritetÄ…" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Nurodyti eilÄ™" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Nurodyti pavadinimÄ…" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Tvarkyti papildomus laukus ir jų reikÅ¡mes" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "Tvarkyti papildomus vaidmenis" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Tvarkyti grupes ir jų narius" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Tvarkyti bendrus nustatymus visoms eilÄ—ms" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Tvarkyti eiles ir jų savybes" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Valdyti įsimintas diagramas" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "Valdyti skriptus" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Tvarkyti naudotojus ir slaptažodžius" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "SÄ…saja tarp gyvavimo ciklo %1 ir %2 yra neiÅ¡baigta. KreipkitÄ—s į RT administratorių." #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Kov" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "PaÅ¡ymÄ—ti visus praneÅ¡imus parskaitytais" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Mason Å¡ablono paieÅ¡kos tvarka" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "Didžiausios reikÅ¡mÄ—s" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "Maksimumas: užregistruotas-paskutinį kartÄ… keistas" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "Maksimumas: užregistruotas-įvykdytas" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "Maksimumas: užregistruotas-pradÄ—tas vykdyti" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "Maksimumas: galutinis terminas-užbaigtas vykdyti" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "Maksimumas: pradÄ—tas vykdyti-užbaigtas vykdyti" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "Maksimumas: : bus pradÄ—tas vykdyti-pradÄ—tas vykdyti" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Didžiausias rodomo praneÅ¡imo ilgis" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "Maksimumas: laiko sÄ…naudų įvertinimas" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "Maksimumas: liko dirbti" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "Maksimumas: jau dirbta" #: lib/RT/Date.pm:95 msgid "May" msgstr "Gegužė" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "AÅ¡" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Narys" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Narys %1 pridÄ—tas" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Narys %1 panaikintas" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Naudotojas įtrauktas į grupÄ™: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Naudotojas paÅ¡alintas iÅ¡ grupÄ—s" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Naudotojas nepaÅ¡alintas iÅ¡ grupÄ—s" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "Yra narys" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Nariai" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "NarystÄ— grupÄ—je %1 pridÄ—ta" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "NarystÄ— grupÄ—je %1 panaikinta" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Priklausymas grupÄ—ms" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "GrupÄ—s %1 nariai" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "Naudotojo #%1 narystÄ—" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Varotojo %1 priklausymas grupÄ—ms" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Sujungti" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "PraÅ¡ymai sÄ—kmingai apjungti" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Apjungimo klaida. Nepavyko nustatyti praÅ¡ymo ID." #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "Sujungimas nepavyko. Negalima nustatyti požymio \"IsMerged\"" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Apjungti su praÅ¡ymu" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Apjungta į %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Tekstas" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "PraneÅ¡imo turinys nerodomas, nes jis per didelis" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "PraneÅ¡imo turinys nerodomas, nes siuntÄ—jas nurodÄ— jo neįtraukti į praneÅ¡imo tekstÄ…." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "PraneÅ¡imo turinys nerodomas, nes jis nÄ—ra tekstas" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "PraneÅ¡imo lango aukÅ¡tis" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "PraneÅ¡imo lango plotis" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "PraneÅ¡imas negali bÅ«ti iÅ¡saugotas" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "PraneÅ¡imas naudotojui" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "PraneÅ¡imas iÅ¡saugotas" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "Minimumas: užregistruotas-paskutinį kartÄ… keistas" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "Minimumas: užregistruotas-įvykdytas" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "Minimumas: užregistruotas-pradÄ—tas vykdyti" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "Minimumas: galutinis terminas-užbaigtas vykdyti" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "Minimumas: pradÄ—tas vykdyti-užbaigtas vykdyti" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "Minimumas: bus pradÄ—tas vykdyti-pradÄ—tas vykdyti" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Minimalus slaptažodžio ilgis" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "Minimumas: laiko sÄ…naudų įvertinimas" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "Minimumas: liko dirbti" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "Minimumas: jau dirbta" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "MinutÄ—s" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Ä®vairÅ«s" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "TrÅ«ksta pirminio rakto?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobilusis telefonas" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Mobilusis telefonas" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Keisti" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "Keisti %3 inventoriui #%1: %2" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Pakeisti narius" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Keisti skriptų Å¡ablonus" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Keisti skriptus" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Pakeisti papildomÄ… laukÄ… eilei %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Pakeisti ir sukurti kategorijÄ…" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Pakeisti ir sukurti papildomus laukus apraÅ¡uose" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Keisti aprašą Nr. %1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "Keisti Å¡ios klasÄ—s apraÅ¡us" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "Keisti inventorių #%1: %2" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "Keisti inventoriaus katalogus" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "Keisti inventoriaus papildomus laukus" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "Kesiti inventorių" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Pakeisti asociuotus objektus %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "Pakeisti susietus objektus skriptui #%1" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Keisti papildomų laukų reikÅ¡mes" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "Keisti datas inventoriui #%1: %2" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Pakeisti praÅ¡ymo Nr. %1 datas" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Keisti bendras apraÅ¡o temas" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Pakeisti bendrus papildomus laukus" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Pakeisti bendras teises grupei" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Keisti bendras temas" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Pakeisti bendras naudotojo teises" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Keisti grupÄ—s informacines paneles" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Keisti narystÄ—s grupÄ—se sÄ…rašą" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Pakeisti grupÄ—s duomenis arba panaikinti grupÄ™" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Keisti grupÄ—s teises kategorijai %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Pakeisti grupÄ—s teises papildomam laukui %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Pakeisti grupÄ—s teises grupei %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Pakeisti grupÄ—s teises eilei %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "Keisti nuorodas inventoriui #%1: %2" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Keisti Å¡ios kategorijos metaduomenis ir papildomus laukus" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Pakeisti paties RT naudotojÄ…" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "Keisti susijusius asmenis inventoriui #%1: %2" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Pakeisti su praÅ¡ymu Nr. %1 susijusius asmenis" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Pakeisti asmenines informacines paneles" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Keisti eilÄ—s stebÄ—tojus" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "Pakeisti skriptÄ… #%1" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Pakeisti skriptus eilei %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Pakeisti skriptus, taikomus visoms eilÄ—ms" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Pakeisti sistemines informacines paneles" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Pakeisti Å¡ablonÄ… %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Keisti eilÄ—s %2 Å¡ablonÄ… %1" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Pakeisti Å¡ablonus, taikomus visoms eilÄ—ms" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Pakeisti kategorijÄ… %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Keisti informacinÄ—s panelÄ—s %1 turinį" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Pakeisti informacinÄ™ panelÄ™ %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Pakeisti įprastÄ… puslapio \"RT apžvalga\" iÅ¡vaizdÄ…" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Pakeisit grupÄ™ %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Pakeisti prenumeratÄ… informacinei panelei %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Pakeisti naudotojÄ… %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Keisti Å¡iÄ… paieÅ¡kÄ…..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Pakeisti praÅ¡ymÄ… Nr. %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Pakeisti praÅ¡ymÄ… Nr. %1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "Pakeisti atsakingÄ… asmenį sau paskirtuose praÅ¡ymuose" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Pakeisti praÅ¡ymus" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Keisti temÄ…, priskirtÄ… %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Keisti temų hierarchijÄ…, susietÄ… su Å¡ia kategorija" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Keisti aprašų temas Å¡ioje kategorijoje" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Keisti naudotojo teises kategorijai %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Pakeisti naudotojo teises į papildomÄ… laukÄ… %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Pakeisti naudotojo teises grupei %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Pakeisti naudotojo teises eilei %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Keisti el. paÅ¡to gavÄ—jų sÄ…rašą praÅ¡ymui Nr. %1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modulis" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Pir" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Pirmadienis" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "MÄ—nuo" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "Kas mÄ—nesį" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "PlaÄiau apie praÅ¡ymo autorių" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "Pekrelti" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Perkelti Äia" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "Pakelti / nuleisti rezultatų sÄ…rašą" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Keletas reikÅ¡mių" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "Keletas naudotojų (sukÅ«rus to nebegalima pakeisti)" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "Keletas naudotojų (iÅ¡jungus pažymÄ—jimÄ… vaidmuo apribojamas vienu naudotoju. SukÅ«rus to nebegalima pakeisti)" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "BÅ«tina nurodyti pavadinimÄ…" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "%1 mano praÅ¡ymai" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Mano patvirtinimai" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "Mano inventorius" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Mano diena" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Mano priminimai" #: etc/initialdata:890 msgid "My Tickets" msgstr "Man paskirti praÅ¡ymai" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mano patvirtinimai" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "Užbaigti vykdyti mano praÅ¡ymai" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mano informacinÄ—s panelÄ—s" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Vykdomi mano praÅ¡ymai" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Mano priminimai" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mano įsimintos paieÅ¡kos" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "Mano administruojamos eilÄ—s" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "Mano inventorius" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "Mano priminimai" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "Mano prižiÅ«rimos eilÄ—s" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "Nauja eilÄ—tÄ—" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Pavadinimas" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Vardas ir el. paÅ¡to adresas" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Å is pavadinimas jau panaudotas" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "Vardas yra privalomas" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Pavadinimas:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Niekada" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Naujas" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Naujas apraÅ¡as" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Nauja informacinÄ— panelÄ—" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Naujos nuorodos" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Naujas laukiantis patvirtinimas" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "Naujas patvirtinimo reikalavimas HTML formatu" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "IÅ¡plÄ—stinÄ— paieÅ¡ka" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "Nauja reikÅ¡mÄ—" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "Naujas inventorius negali bÅ«ti bÅ«senoje '%1'." #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nauji praneÅ¡imai" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Naujas slaptažodis" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "PraneÅ¡imas su nauju slaptažodžiu iÅ¡siųstas" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Naujas priminimas:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Naujas praÅ¡ymas" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Nauajs praÅ¡ymas neegzistuoja" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Naujas praÅ¡ymas Å¡ioje eilÄ—je negali bÅ«ti bÅ«senoje '%1'." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Naujas stebÄ—tojas" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Kitas" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Slapyvardis" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Slapyvardis" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Ne" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "NÄ—ra %1 raktų Å¡iam adresui" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "%1 nenuskaitytas" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Nei vienas apraÅ¡as neatitinka %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Kategorija nenurodyta" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Jokių kategorijų, atitinkanÄių paieÅ¡kos kriterijų, nerasta" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "NÄ—ra papildomo lauko" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Papildomas laukas nenurodytas" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "GrupÄ— nenurodyta" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "Be pavadinimo" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "NÄ—ra užklausos" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "EilÄ— neapibrėžta" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "RT naudotojas nerastas. KreipkitÄ—s į savo sistemos administratorių." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Nenurodytas pavadinimas" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "AntraÅ¡tÄ—s pakeitimas negalimas" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "NÄ—ra Å¡ablono" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Veiksmas nenurodytas" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "Inventoriaus ID nenurodytas" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "Nerasta paieÅ¡kos kriterijus atitinkanÄio inventoriaus." #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "Katalogas nenurodytas" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "Nerasta paieÅ¡kos kriterijus atitinkanÄių katalogų." #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Stulpelis nenurodytas" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Apie šį naudotojÄ… komentarų nÄ—ra" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "Grupavimui '%1' papildomų laukų nerasta" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "Nerasta paieÅ¡kos kriterijus atitinkanÄių papildomų vaidmenų." #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "NÄ—ra apraÅ¡ymo %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "NÄ—ra globalaus Å¡ablono %1" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "GrupÄ— nenurodyta" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "PaieÅ¡kos kriterijus atitinkanÄių grupių nerasta." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "NÄ—ra užšifravimui tinkamo rakto." #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "Jau nebeleidžiama" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "NÄ—ra prijungto praneÅ¡imo" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Pavadinimas nenurodytas" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "NÄ—ra reikalo Å¡ifruoti" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Slaptažodis nepaskirtas" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "NÄ—ra eilių kÅ«rimo teisių" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "NÄ—ra praÅ¡ymų kÅ«rimo teisių eilÄ—je '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "NÄ—ra praÅ¡ymo peržiÅ«ros teisių" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "Neturite teisių keisti šį inventorių" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "Neturite teisių keisti šį katalogÄ…" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Neturite teisÄ—s iÅ¡saugoti bendras paieÅ¡kas" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "NÄ—ra teisių keisti nustatymus" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Neužtenka teisių pamatyti aprašą" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "NÄ—ta praÅ¡ymo pakeitimų peržiÅ«ros teisių" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Naudotojai nenurodyti." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "NÄ—ra privataus rakto" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Nerasta eilių, atitinkanÄių paieÅ¡kos kriterijus." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "TeisÄ—s nenurodytos" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "TeisÄ—s nerastos" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "Neturite teisių įtraukti '%1' Å¡io praÅ¡ymo stebÄ—toju" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "NÄ—ra užklausos su kuria bÅ«tų dirbama." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Pavadinimas nenurodytas" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "NÄ—ra tokio rakto arba raktas netinka pasiraÅ¡ymui" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "NÄ—ra Å¡ablono %1 nei eilÄ—je %2, nei globaliai" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "PraÅ¡ymų nerasta." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Tranzakcijos tipas nenurodytas" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Tinkamų raktų nerasta." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Nerasta naudotojų, atitinkanÄių paieÅ¡kos kriterijus." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "NÄ—ra teisingo naudotojo identifikatoriaus" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "Nebuvo nusiųsta reikÅ¡mÄ—, skirta _Set!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Niekas" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Nenurodyta" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Neegzistuojantis laukas?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "Normalus" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "Netaikomi skriptai" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Nerasta" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "NeprisijungÄ™s." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Nenurodyta" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Nenaudojate mobilios narÅ¡yklÄ—s?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Pastabos" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "PraneÅ¡imas negali bÅ«ti iÅ¡siųstas" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Informuoti gaunanÄius administracines kopijas" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Komentru informuoti gaunanÄius administracines kopijas asmenis" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Informuoti kopijas gaunanÄius asmenis" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Komentaru informuoti gaunanÄius Cc asmenis" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Informuoti kitus gavÄ—jus" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Komentaru informuoti kitus gavÄ—jus" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Informuoti atsakingÄ… asmenį" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "Informuoti praÅ¡ymo autorių ir stebÄ—tojus" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Informuoti atsakingÄ… asmenį komentaro forma" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Informuoti atsakingÄ… asmenį apie praÅ¡ymo atmetimÄ…" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "PraneÅ¡ti atsakingam, kad jo praÅ¡ymas buvo patvirtintas kelių ar visų tvirtintojų" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "Informuoti atsakingÄ… ir administracines kopijas gaunanÄius asmenis" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Informuoti atsakingÄ…, autorių, kopijas ir administracines kopijas gaunanÄius asmenis." #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Komentaru informuoti atsakingÄ…, autorių, kopijas ir administracines kopijas gaunanÄius asmenis." #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Informuoti atsakingus ir kopijas gaunanÄius asmenis apie jų patvirtinimo reikalaujanÄius praÅ¡ymus" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "PraneÅ¡ti autoriui, kad jo praÅ¡ymas buvo patvirtintas visų tvirtintojų" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "PraneÅ¡ti autoriui, kad jo praÅ¡ymas buvo patvirtintas kelių tvirtintojų" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Informuoti praÅ¡ymo autorius" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Informuoti praÅ¡ymo autorius ir kopijas gaunanÄius asmenis" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Komentaru informuoti praÅ¡ymo autorius ir kopijas gaunanÄius asmenis" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Informuoti mane apie neskaitytus praneÅ¡imus" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Lap" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "Å iuo metu naudojamas" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "Numeris" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ARBA" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objektas" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "Objekto identifikatorius" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "Objekto tipas" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Nepavyko sukurti objekto" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Objekto negalima panaikinti" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objektas sukurtas" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objektas panaikintas" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "Perduotas objektas nerastas" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Objekto tipas nesutampa" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Objektų sÄ…raÅ¡as yra tuÅ¡Äias" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Spa" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "Sena reikÅ¡mÄ—" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "%1 naudotojas %2 rašė:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Uždarant" #: etc/initialdata:170 msgid "On Comment" msgstr "Gavus komentarÄ…" #: etc/initialdata:142 msgid "On Correspond" msgstr "Gavus atsakymÄ…" #: etc/initialdata:131 msgid "On Create" msgstr "SukÅ«rus praÅ¡ymÄ…" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "PersiunÄiant" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "PersiunÄiant praÅ¡ymÄ…" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "PersiunÄiant veiksmÄ…" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Pasikeitus atsakingam" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Pasikeitus prioritetui" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Pakeitus eilÄ™" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Atmetimo atveju" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Pradedant vykdyti pakartotinai" #: etc/initialdata:205 msgid "On Resolve" msgstr "Ä®vykdžius praÅ¡ymÄ…" #: etc/initialdata:176 msgid "On Status Change" msgstr "KeiÄiant bÅ«senÄ…" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "Pasikeitus lauko \"Dirbta valandų\" reikÅ¡mei" #: etc/initialdata:136 msgid "On Transaction" msgstr "Atlikus tranzakcijÄ…" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "BÅ«tinas vienas ir tik vienas atsakingas naudotojas ar grupÄ—" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "VienkartinÄ— slapta kopija (BCC)" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "VienkartinÄ— kopija (CC)" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Tai taikoma tik įvedimui, bet ne rodymui" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Rodyti patvirtinimus praÅ¡ymams, sukurtiems po %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Rodyti patvirtinimus praÅ¡ymams, sukurtiems iki %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Papildomus laukus rodyti tik:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "Atverti neaktyvius praÅ¡ymus" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "PradÄ—ti vykdyti" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Vykdomi praÅ¡ymai" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "Parodyti laikmatį" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Atverti nuorodÄ…" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "Atverti neaktyvius praÅ¡ymus" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Vykdomi praÅ¡ymai" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Gavus atsakymÄ… pakeisti bÅ«senÄ… į Vykdomas" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "OperacinÄ— sistema" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Nustatymas" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Pagrindiniai nustatymai" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "Oracle naudotojai privalo turÄ—ti slaptažodį" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Rikiuoti pagal" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organizacija" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Pirminis praÅ¡ymas: Nr. %1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "IÅ¡siųstas laiÅ¡kas apie komentarÄ…" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "IÅ¡siųstas laiÅ¡kas" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Informavimas savo paties veiksmus" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Apžvalga" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Skirti save atskingu" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Atsakingas" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "Atsakingas %1 neturi pakankamai teisių bÅ«ti atsakingu už šį praÅ¡ymÄ…" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Atsakingas pakeistas iÅ¡ %1 į %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Atsakingas priverstinai pakeistas iÅ¡ %1 į %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "Autorių grupÄ—" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "Atsakingas" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Puslapis" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Puslapis 1 iÅ¡ 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Puslapis nerastas" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Faksas" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Fakso numeris" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "TÄ—vinis" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "ProtÄ—viai" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Slaptažodis" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Slaptažodis pakeistas" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Slaptažodis nebuvo nustatytas." #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Slaptažodis turi bÅ«ti ne trumpesnis kaip %1 simboliai" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Slaptažodis neatspausdintas" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Slaptažodis paskirtas" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Slaptažodis: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Slaptažodis: neturite teisÄ—s" #: etc/initialdata:714 msgid "PasswordChange" msgstr "Slaptažodžio keitimas" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Slaptažodžiai nesutampa" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "Pristabdyti laikmatį" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "Laukia %quant(%1,patvirtinimo,patvirtinimų)." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "Laukia %quant(%1,praÅ¡ymas,praÅ¡ymų)." #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "Laukiama patvirtinimo." #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Asmenys" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Asmenys, susijÄ™ su eile %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Ä®vykdyti naudotojo apibrėžtÄ… veiksmÄ…" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl konfigÅ«racija" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Perl bibliotekos paieÅ¡kos tvarka" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Negrįžtamai panaikinti RT duomenis" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Neturite teisÄ—s" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Neturite teisÄ—s" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefonų numeriai" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "PaveikslÄ—lis" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "Atsakymo Å¡ablonas tekstiniu formatu" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "Administracinio komentaro Å¡ablonas tekstiniu formatu" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "Administracinio atsakymo Å¡ablonas tekstiniu formatu" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "Atsakymo Å¡ablonas tekstiniu formatu" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "Veiksmo Å¡ablonas tekstiniu formatu" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Patikrinkite URL ir bandykite dar kartÄ…." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Teisingai nurodykite dabartinį slaptažodį." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Nurodykite dabartinį slaptažodį." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "Galima sufalsifikuota užklausa tarp svetainių (cross-site)" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Galimos paslÄ—tos paieÅ¡kos" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "StandartinÄ— paieÅ¡ka %1 nerasta" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Nustatymai" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Nustatymai %1 naudotojo %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "Nustatymų atstatymas" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Nustatymai %1 iÅ¡saugoti." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "Meniu rodomų informacinių panelių nustatymai iÅ¡saugoti" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Nustatymai naudotojui %1 iÅ¡saugoti." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Nustatymai įsiminti." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "Nerasti nustatymai" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Prioritetinis raktas: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Prioritetinis raktas" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "PasiruoÅ¡imas nerealizuotas" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "NorÄ—dami pamatyti sparÄiuosius klaviÅ¡us paspauskite %1." #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Atgal" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Naudotojas %1 nerastas." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Spausdinti šį praneÅ¡imÄ…" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Dabartinis prioritetas" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Prieigos lygis" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Prieigos lygis:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Privatus raktas" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "%1 privatÅ«s raktai" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "PrivatÅ«s raktai" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Privelegijuotas" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Privilegijų bÅ«sena: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Privilegijuoti naudotojai" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "Privelegijuoti: prisijungimo_vardai; Neprivelegijuoti: vardai ir paÅ¡to adresai" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseudo-grupÄ—s vidiniam naudojimui" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "VieÅ¡as raktas '0x%1' reikalingas paraÅ¡o patikrinimui" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "%1 vieÅ¡i raktai" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Užklausos" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Užklausa" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "PaieÅ¡kos konstravimas" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "EilÄ—" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "EilÄ— %1 negali bÅ«ti įkeltÄ…" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "EilÄ— %1 nerasta" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "EilÄ—s pavadinimas" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Tokia eilÄ— jau yra" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "EilÄ— negali bÅ«ti sukurta" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "EilÄ— negali bÅ«ti užkrauta" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "EilÄ— sukurta" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "EilÄ—s identifikatorius" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "Eilių sÄ…raÅ¡as" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "EilÄ— nerasta" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "Pakeistas nutylÄ—tasis eilÄ—s aptarnavimo lygis" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Raktas eilei" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "EilÄ—s administracinÄ— kopija (CC)" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "EilÄ—s papildomas laukas" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "EilÄ—s korespondencijos kopijos" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "Eilių sÄ…raÅ¡as" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "EilÄ—s pavadinimas" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "EilÄ—s stebÄ—tojas" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "EilÄ—s" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "EilÄ—s, kurias administruoju" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "EilÄ—s, kurioms gaunu administracines kopijas" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Greita paieÅ¡ka" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Greitas praÅ¡ymo sukÅ«rimas" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "Greitas sukÅ«rimas" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT nustatymai" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT konfigÅ«racija" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT klaida" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "RT portalas" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT dydis" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT apžvalga" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "RT apžvalga naudotojui %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT gali įtraukti kito web serverio turinį rodydamas šį papildomÄ… laukÄ…" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT gali paversti Å¡io papildomo lauko turinį nuorodomis į kitÄ… serverį" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT baziniai kintamieji" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "%1 praÅ¡ymų valdymo sistema RT" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "RT nustatÄ— galimÄ… %1sufabrikuotÄ… užklausÄ… tarp svetainių%2, nes %3. GalbÅ«t įsilaužėlis bando %1%4%2 jÅ«sų vardu. Jeigu jÅ«s nevykdÄ—te Å¡ios užklausos, skubiai susisiekite specialistais, atsakingais už jÅ«sų sistemos saugumÄ…." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT naudoja Fortune 100 sÄ…raÅ¡o bendrovÄ—s, individualios įmonÄ—s, valstybinÄ—s institucijos, mokymo įstaigos, ligoninÄ—s, pelno nesiekianÄios organizacijos, bibliotekos, atviro kodo projektai ir įvairiausios kitos organizacijos visuose septyniuose žemynuose. (Taip, netgi Antarktidoje.)" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "RT atnaujinimo istorija" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT pakeis %1 ir %2 praÅ¡ymo numeriu ir papildomo lauko reikÅ¡me atitinkamai" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "RT žurnalo pildymo konfigÅ«racijos suvestinÄ—:" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "RTAddressRegexp nustatymas konfigÅ«racijoje neatitinka %1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Vykdyti pakartotinai" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "Pasiektas maksimalus reiksmių skaiÄius, todÄ—l naujos reikÅ¡mÄ—s pakeis senesnes." #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Tikras vardas" #: lib/RT/User.pm:95 msgid "RealName" msgstr "Tikras vardas" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "GavÄ—jai" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Įšsaugoti visus pakeitimus" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Rekursinis narys" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "Perdirbti" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Nurodo į" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "PridÄ—ta nuoroda iÅ¡ praÅ¡ymo %1" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Panaikinta nuoroda iÅ¡ praÅ¡ymo %1" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "PridÄ—ta nuoroda į praÅ¡ymÄ… %1" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Panaikinta nuoroda į praÅ¡ymÄ… %1" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Ä® jį rodo" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "Ä® jį rodo" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Nurodo į" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "Nurodo į" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Atnaujinti" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "AutomatiÅ¡kai atnaujinti šį puslapį kas %1 minuÄių." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "Atnaujinti pradinį puslapį" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "Neleistina pridÄ—ti nuorodÄ…, kuri suformuoja uždarÄ… priklausomybių ratÄ…" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Atmesti" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "SusijÄ™ praÅ¡ymai" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Atsiminti nutylÄ—tÄ…jÄ… eilÄ™" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Priminimas" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Priminimas '%1' pridÄ—tas" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Priminimas '%1' įvykdytas" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "Priminimas '%1' vykdomas pakartotinai" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "Priminimas '%1': %2" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "PridÄ—tas priminimas" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "Priminimas užbaigtas" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "Priminimas pakartotinai aktyvuotas" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Priminimai" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Priminimai praÅ¡ymui Nr. %1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "PaÅ¡alinti" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "PaÅ¡alinti %1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "PaÅ¡alinti administracinÄ™ kopijÄ… (CC)" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Nuimti pažymÄ—jimÄ…" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "PaÅ¡alinti kopijÄ… (CC)" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "PaÅ¡alinti praÅ¡ymo autorių" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "Panaikinti pavadinimo perraÅ¡ymÄ…" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "Papildoma laukas %1 paÅ¡alintas iÅ¡ %2." #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "Pavertimo tipas" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "PakeiÄia atsakingo asmens pasirikimÄ… iÅ¡ sÄ…raÅ¡o į teksto įvedimo laukÄ…" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Atsakyti" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Atsakymo adresas" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Atsakymas praÅ¡ymo autoriams" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "Atsakyti į praÅ¡ymÄ…" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Atsakyti į praÅ¡ymus" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "PraneÅ¡ti apie perimtÄ… praÅ¡ymÄ…" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "PraÅ¡ymo autorius" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "PraÅ¡ymo autoriaus grupÄ—" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "PraÅ¡ymo autoriai" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "Reikalauti galutinÄ—s datos nustatymo pagal SLA sÄ…lygas" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "Reikalauti pradinÄ—s datos nustatymo pagal SLA sÄ…lygas" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Priovaloma parametras '%1' nenurodytas" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "IÅ¡valyti" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "Pakeisti papildomų laukų reikÅ¡mes į nutylÄ—tasias" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Atstatyti RT apžvalgos parametrus" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "Atstatyti meniu standartines informacines paneles" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Sugeneruoti naujÄ… slaptÄ… autentikacijos žymÄ…" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Atstatyti numatytuosius" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "Atstatyti standartinį RT logotipÄ…" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "Atstatyti standartinÄ™ RT temÄ…" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Namų" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Užbaigti vykdyti" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Ä®vykdyti praÅ¡ymÄ… Nr. %1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Ä®vykdytas" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "Ä®vykdytas HTML formatu" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "Ä®vykdytas santykinai" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Atsakyti" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Rezultatai" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "PratÄ™sti laikmatį" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Grįžti prie praÅ¡ymo" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "Grįžti į pradžiÄ…" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Pakartokite naujÄ… slaptažodį" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Atkeisti" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "Atimti teisÄ™ '%1' iÅ¡ %2." #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "Rich text (HTML) formatas iÅ¡laiko maketavimÄ…, pavyzdžiui, spalvotas, paryÅ¡kintas, pasvirusias raides ir pan." #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "TeisÄ— užkrauta" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "TeisÄ— negali bÅ«ti atÅ¡aukta" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "TeisÄ— neužkrauta" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Negali bÅ«ti suteiktos teisÄ—s %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Administratorių teisÄ—s" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Personalo teisÄ—s" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "Vaidmens pavadinimas" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "Vaidmuo jau egzistuoja" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "Vaidmens grupÄ— '%1' nerasta" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "Vaidmens grupÄ— jau egzistuoja" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Vaidmenys" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "EiluÄių" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "EiluÄių skaiÄius langelyje" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "EiluÄių skaiÄius puslapyje" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "SLA (paslaugų teikimo sÄ…lygos)" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "SLA įjungtas (nuÄ—mus pažymÄ—jimÄ… Å¡iai eilei SLA netaikomas)" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "SMIME sertifikatas" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "SMIME sertifikatas" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL užklausos" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "SQL užklausos raÅ¡omos į žurnalÄ… %1 lygyje ir taip pat pasiekiamos %2užklausų įrankio pagalba%3." #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "SQL užklausos į žurnalÄ… neraÅ¡omos" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite yra duomenų bazÄ—, nereikalaujanti jokio serverio ar konfigÅ«ravimo. RT autoriai rekomenduoja jÄ… naudoti tik testavimui, demonstravimui ir programavimui, bet ji netinkama intensyviai naudojamoje produkcinÄ—je aplinkoje." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Å eÅ¡" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Å eÅ¡tadienis" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Ä®siminti" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Ä®siminti pakeitimus" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Ä®siminti nustatymus" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Ä®siminti kaip naujÄ…" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "Ä®siminti inventoriaus pakeitimus" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Ä®siminti naujÄ…" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Ä®siminti Å¡iÄ… paieÅ¡kÄ…" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "IÅ¡saugota %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "IÅ¡saugota paieÅ¡ka" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Ä®simintos paieÅ¡kos" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Ä®simintos diagramos" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "IÅ¡saugota paieÅ¡ka %1 nerasta" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Ä®simintos paieÅ¡kos" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "IÅ¡saugotos paieÅ¡kos" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "Schema atnaujinta iÅ¡ %1" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Skriptas Nr. %1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Skriptas sukurtas" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "Skriptas nepridÄ—tas" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Skriptai" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Skriptai ir gavÄ—jai" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "Ä®prastai skriptai vykdomi po kiekvieno praÅ¡ymo pakeitimo." #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "IeÅ¡koti" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "PaieÅ¡ka %1 pakeista" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "IeÅ¡koti aprašų" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "IeÅ¡koti inventoriaus" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "PaieÅ¡kos nustatymai" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "IeÅ¡koti atitinkanÄių aprašų" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Patvirtinų paieÅ¡ka" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "IeÅ¡koti aprašų" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "PraÅ¡ymų paieÅ¡ka" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "IeÅ¡kokite praÅ¡ymų nurodydami %1numerį%2, žodžius pavadinime %1\"kabutÄ—se\"%2, %1iÅ¡saugotas užklausas%2 nurodydami jos vardÄ…, atsakingus asmenis pagal %1naudotojo vardÄ…%2, praÅ¡ymo autorius pagal %1el. paÅ¡to adresÄ…%2 ir praÅ¡ymus pagal %1bÅ«senÄ…%2. PaieÅ¡koje nurodiusr %1@domenovardas.lt%2 rasite visus praÅ¡ymus, atsiųstus iÅ¡ to domenu naudotojų." #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "PaieÅ¡kos parametrai" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "PaieÅ¡kos rezultatai" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "PaieÅ¡kos rezultatų atnaujinimo dažnumas" #: share/html/Search/index.html:48 msgid "Searches" msgstr "PaieÅ¡kos" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "PilnatekstÄ— paieÅ¡ka visuose praÅ¡ymuose gali užtrukti labai ilgai. TaÄiau jeigu jums tikrai to reikia, galite jÄ… naudoti naudodami sintaksÄ™ %1tekstas." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Slapta autentikacijos žyma" #: bin/rt-crontool:352 msgid "Security:" msgstr "Saugumas:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Žr. taip pat:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "PeržiÅ«trÄ—ti apraÅ¡us Å¡ioje kategorijoje" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "PeržiÅ«rÄ—ti inventorių" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "PeržiÅ«rÄ—ti katalogus" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Parodyti aprašų pakeitimus Å¡ioje kategorijoje" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Pamatyti ar Å¡i kategorija egzistuoja" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Pasirinkti" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Pasirinkti papildomus laukus apraÅ¡ams visose kategorijose" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "Pasirinkti papildomus laukus visam inventoriui visuose kataloguose" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Pasirinkti kategorijÄ…" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Pasirinkite papildomÄ… laukÄ…" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "Pasirinkti papildomÄ… vaidmenį" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "Pasirinkite skriptÄ…" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "Pasirinkti katalogÄ…" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Pasirinkti spalvÄ… Å¡iai skecijai" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "Pasirinkti papildomÄ… vaidmenį" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Pasirinkite grupÄ™" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Pasirinkite eilÄ™" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Pasirinkte eilÄ™ savo praÅ¡ymui" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Pasirinkti sekcijÄ…" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Pasirinkite naudotojÄ…" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Pasirinkti aprašą iÅ¡ %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Pasirinti įtraukiamÄ… aprašą" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Pasirinkti punktÄ…" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Pasirinkite papildomus laukus visoms eilÄ—ms" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Pasirinkite papildomus laukus visoms naudotojų grupÄ—ms" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Pasirinkte papildomus laukus visiems naudotojams" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Pasirinkite papildomus laukus visoms eilÄ—ms" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Pasirinkite papildomus laukus visoms tranzakcijoms visose eilÄ—se" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Pasirinkti datÄ…" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Pasirinkti datÄ… ir laikÄ…" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "Pasirinkite globalaus skirpto stadijÄ…:" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Pasirinkti keletÄ… datų" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "Pasirinkti keletÄ… datų ir laikų" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Pasirinkite keletÄ… reikÅ¡mių" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Pasirinkite vienÄ… reikÅ¡mÄ™" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Pasirinkite eiles, kurios bus rodomos puslapyje \"RT apžvalga\"" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "Pasirinkite skripto stadijÄ… naujai sukurtoms eilÄ—ms:" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Pasirinkti temas Å¡iam apraÅ¡ui" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Pasirinkti iki %1 datų" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "Pasirinkti iki %1 datų ir laikų" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Pasirinkite iki %1 reikÅ¡mių" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Pasirinkti papildomi laukai" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Pasirinkti eiles" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Pasirinktas raktas arba nepatikimas, arba jau neegzistuoja." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Pasirinkti objektai" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Pakeisti pasirinkimai. IÅ¡saugokite pakeitimus." #: etc/initialdata:117 msgid "Send Forward" msgstr "Persiųsti" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "Persiųsti praneÅ¡imÄ…" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Pasiųsti laiÅ¡kÄ… atsakingam asmeniui ir visiems stebÄ—tojams" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Pasiųsti komentarÄ… atsakingam asmeniui ir visiems stebÄ—tojams" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Pasiųsti laiÅ¡kÄ… praÅ¡ymo autoriams ir kopijas gaunatiems asmenims" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Pasiųsti komentarÄ… praÅ¡ymo autoriams ir gaunatiems CC kopijas" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "Praeito laiÅ¡ko siuntimas nepavyko. KreipkitÄ—s į savo sistemos administratorių, kurie gali peržiÅ«rÄ—ti detalesnÄ™ informacijÄ… sistemos žurnale." #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Pasiųsti laiÅ¡kÄ… praÅ¡ymo autoriams" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Pasiųsti laiÅ¡kÄ… visiems gaunatiems kopijas ir slaptas kopijas" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Pasiųsti laiÅ¡kÄ… visiems gaunatiems kopijas" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Pasiųsti komentarÄ… visiems gaunatiems kopijas" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "Pasiųsti praneÅ¡imÄ… atsakingas asmeniui ir administracinÄ—s kopijos gavÄ—jams" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "SiunÄia laiÅ¡kÄ… atsakingas asmeniui, jeigu toks nurodytas. Kitu atveju siunÄia gaunatiems administracines kopijas." #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Pasiųsti laiÅ¡kÄ… gaunatiems administracines kopijas" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Pasiųsti laiÅ¡kÄ… gaunatiems administracines kopijas kaip komentarÄ…" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Pasiųsti laiÅ¡kÄ… atsakingam" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Rgs" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Atskirkite reikÅ¡mes tarpais." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "Nustatyti galutinÄ™ datÄ… pagal SLA sÄ…lygas" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "Nustatyti asmeninį raktÄ…" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "Nustatyti pradinÄ™ datÄ… pagal SLA sÄ…lygas" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "Nustatyti galutinÄ™ datÄ… pagal sutartį" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "Nustatyti pradinÄ™ datÄ… pagal sutartį" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Nustatymai" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "Reikalingi nustatymai" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Trumpi naudotojų vardai" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Nustatoma, ar RT turi siųsti man laiÅ¡kus apie mano paties atliktus praÅ¡ymų papildymus ir pakeitimus." #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Parodyti" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "Rodyti administravimo meniu" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Rodyti tvirtinimo punktÄ…" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "Rodyti aprašų meniu" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Rodyti stulpelius" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Rodyti rezultatus" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Rodyti praÅ¡ymo savybes %1 lygyje" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Parodyti visÄ… cituojamÄ… tekstÄ…" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Rodyti patvirtintus praÅ¡ymus" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Taip pat rodyti" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Rodyti trumpas antraÅ¡tes" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Rodyti atmestus praÅ¡ymus" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Rodyti pilnas antraÅ¡tes" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Rodyti bendrus Å¡ablonus" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "Rodyti istorijÄ…" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "Rodyti vieÅ¡o naudotojo savybių istorijÄ…" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Rodyti nuorodų apraÅ¡ymus" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "Nerodyti autoriaus praÅ¡ymų" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Pirmiausia rodyti seniausius pakeitimus" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Rodyti patvirtinimo laukianÄius praÅ¡ymus" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Rodyti cituojamÄ… tekstÄ…" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Rodyti kitų patvirtinimo laukianÄius praÅ¡ymus" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "KeiÄiant praÅ¡ymÄ… rodyti supaprastintÄ… gavÄ—jų sÄ…rašą" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Parodyti Å¡io praÅ¡ymo autoriaus 10 aukÅ¡Äiausio prioriteto vykdomų praÅ¡ymų" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Parodyti Å¡io praÅ¡ymo autoriaus 10 aukÅ¡Äiausio prioriteto įvykdytų praÅ¡ymų" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Parodyti Å¡io praÅ¡ymo autoriaus 10 aukÅ¡Äiausio prioriteto visų praÅ¡ymų" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Rodyti praÅ¡ymo istorijÄ…" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Naikiklis" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "Naikikliui reikalinga direktorija iÅ¡saugoti duomenų bazÄ—s iÅ¡raÅ¡ams. Ä®sitikinkite, kad direktorija %1 egzistuoja ir RT serverio procesas turi raÅ¡ymo teises joje." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Å oninis meniu" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "PasiraÅ¡yti" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "PasiraÅ¡yti visus automatiÅ¡kai formuojamus laiÅ¡kus. %1DÄ—mesio%2: Ä®jungdami Å¡iÄ… savybÄ™ pakeiÄiate paraÅ¡o funkcijÄ… iÅ¡ %3autentikacijos%4 į %3integralumo užtikrinimÄ…%4." #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "PasiraÅ¡yti nutylÄ—tai" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "PasiraÅ¡yti praÅ¡ymo autoriumi arba praÅ¡ymo ar eilÄ—s kopija" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Pasiskirti praÅ¡ymo ar eilÄ—s administracinÄ™ kopijÄ… (CC)" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "PasiraÅ¡yti%1%2" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "PasiraÅ¡yti%1%2 naudojant %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "ParaÅ¡as" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "PasiraÅ¡ymas" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Paprastas" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Paprasta paieÅ¡ka" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Viena reikÅ¡mÄ—" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "SvetainÄ—s pavadinimas" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Dydis" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Praleisti meniu" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Praleidžiam iÅ¡jungtÄ… naudotojÄ…" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Mažas" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Kai kurios narÅ¡yklÄ—s gali užkrauti turinį tik iÅ¡ to paties domeno, kaip Å¡is RT serveris." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Kažkas negerai. KreipkitÄ—s į savo sistemos administratorių." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Rikiavimas" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "Rikiavimo tvarka" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Rikiavimas" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Å altinis" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Nurodykite periodiÅ¡kumÄ…" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "SkaiÄialentÄ—" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "Steko trasavimÄ… rodyti %1 ir aukÅ¡tesnio lygio praneÅ¡imams" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "Steko trasavimas į žurnalÄ… neraÅ¡omas" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Stadija" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Pristabdyti" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "NorÄ—dami tiksliai nurodyti paieÅ¡kos tipÄ…, užraÅ¡ykite lauko vardÄ… su dvitaÅ¡kiu pabaigoje prieÅ¡ ieÅ¡komÄ… tekstÄ…, kaip parodyta %1 ir %2." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Buvo pradÄ—tas" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "PradÄ—ta %1." #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "PradÄ—ta santykinai" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Bus pradÄ—tas" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "Bus pradÄ—ta santykinai" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Valstija" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "Fiksuota failų paieÅ¡kos tvarka" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "BÅ«sena" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "BÅ«sena '%1' netinka inventoriui." #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "BÅ«sena '%1' nÄ—ra tinkama Å¡iam %2." #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "BÅ«sena '%1' nÄ—ra tinkama praÅ¡ymams Å¡ioje eilÄ—je." #: etc/initialdata:449 msgid "Status Change" msgstr "BÅ«senos pakeitimas" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "BÅ«seno pakeitimas HTML formatu" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "BÅ«sena pakeista iÅ¡ %1 į %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "BÅ«senos pakeitimai" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Pasiskirti sau" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Pasiskirti praÅ¡ymus sau" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Žingsnis %1 iÅ¡ %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Atsakingas perimtas iÅ¡ %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "Laikmatis" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Stilius" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Pavadinimas" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Pavadinimo žymÄ—" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Pavadinimas pakeistas į %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "Pavadinimo žyma" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Pasiųsti" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "Pateikti laikmaÄio parodymus" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "Pateikimas" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Prenumeruoti" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Prenumeruoti informacinÄ™ panelÄ™ %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Prenumeruoti informacines paneles" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Užprenumeruota informacinÄ— panelÄ— %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Prenumerata" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Prenumerata nepavyko: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "Prenumerata atnaujinta" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Duomenys sÄ—kmingai deÅ¡ifruoti" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Duomenys sÄ—kmingai užšifruoti" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Santrauka" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "Santrauka: užregistruotas-paskutinį kartÄ… keistas" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "Santrauka: užregistruotas-įvykdytas" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "Santrauka: užregistruotas-pradÄ—tas vykdyti" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "Santrauka: galutinis terminas-užbaigtas vykdyti" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "Santrauka: pradÄ—tas vykdyti-užbaigtas vykdyti" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "Santrauka: bus pradÄ—tas vykdyti-pradÄ—tas vykdyti" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "Santrauka: laiko sÄ…naudų įvertinimas" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "Santrauka: liko dirbti" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "Santrauka: jau dirbta" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Sek" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Sekmadienis" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Laikinai iÅ¡jungtas" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "Sistema" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Sistemos konfigÅ«racija" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Naudoti sistemos nutylÄ—tÄ…jÄ… reikÅ¡mÄ™" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "SisteminÄ— klaida" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "SisteminÄ— klaida: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Sisteminiai įrankiai" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Sistemos klaida" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "SisteminÄ— klaida. TeisÄ— nesuteikta." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "SisteminÄ— vaidmens grupÄ— vidiniam naudojimui" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Paskirti sau" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Paskirti praÅ¡ymus sau" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Paskirtas" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Å ablonas" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Å ablonas Nr. %1 panaikintas" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "Å ablonas '%1' nÄ—ra globalus" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "Å ablonas '%1' nÄ—ra nei globalus, net konkreÄios eilÄ—s" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Å ablonas '%1' nerastas" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "Å ablonas kompiliuojamas" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "Å ablone nÄ—ra Perl kodo" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Å ablonas tuÅ¡Äias" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "Å ablonas yra naudojamas" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Å ablonas yra privalomas argumentas" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Å ablonas apdorotas" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Å ablono apdorojimo klaida" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "Å ablono apdorojimo klaida: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "Å ablonas: %1" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Å ablonai" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "EilÄ—s %1 Å¡ablonai" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Tekstas" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Tekstinis failas nerodomas, nes tai uždrausta nustatymuose." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Tai jau dabartinÄ— reikÅ¡mÄ—" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Å is laukas negali turÄ—ti tokios reikÅ¡mÄ—s" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "Å is vaidmuo netinkamas Å¡iam objektui" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Å is praÅ¡ymas turi neiÅ¡sprÄ™stas priklausomybes" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Å is naudotojas jau atsakingas už šį praÅ¡ymÄ…" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Naudotojas neegzistuoja" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Å is naudotojas jau priveligijuotas" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Å is naudotojas jau nepriveligijuotas" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Å is naudotojas dabar priveligijuotas" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Å is naudotojas dabar nepriveligijuotas" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Å is naudotojas negali bÅ«ti atsakingas už praÅ¡ymus Å¡ioje eilÄ—je" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Tai ne skaitmeninis id" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Esminiai parametrai" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "PraÅ¡ymo kopija" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "ApraÅ¡o kategorija identifikuota %1 netaikoma Å¡iai eilei" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "PraÅ¡ymo administracinÄ— kopija (CC)" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "PažymÄ—ti naudotojai gali gauti laiÅ¡kus apie šį praÅ¡ymÄ…, priklausomai nuo su juo atliekamų veiksmų. Nuimkite pažymÄ—jimÄ…, jeigu norite, kad jie nebegautų su Å¡iuo praÅ¡ymu susijusių laiÅ¡kų." #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "NutylÄ—tasis katalogas" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Duomenų bazÄ—s serverio pilnas pavadinimas(pvz., 'db.example.com')" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "Toliau nurodyta komanda ras visus aktyvius praÅ¡ymus eilÄ—je 'general' ir pakeis jų prioritetÄ… į 99, jeigu praÄ—jo praÅ¡ymo galutinis terminas:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "IÅ¡vardintos užklausos buvo panaikintos ir bus paÅ¡alintos iÅ¡ informacinių panelių kai Å¡ios panelÄ—s bus atnaujintos." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "IÅ¡vardintos užklausos gali bÅ«ti nematomos visiems naudotojams, kurie matys Å¡iÄ… informacinÄ™ panelÄ™." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "Raktas deaktyvuotas" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "Raktas atÅ¡auktas" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "Raktas nebegalioja" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "Raktas yra visiÅ¡kai patikimasе" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "Raktas yra absoliuÄiai patikimas" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Priskirta nauja reikÅ¡mÄ—" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Atsakingas už praÅ¡ymÄ…" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "JÅ«sų praÅ¡omas puslapis nerastas." #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "PraÅ¡ymo autorius" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "IÅ¡vaizda" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Yra keletas raktų, tinkamų Å¡ifravimui." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Å iame praÅ¡yme yra neskaitytų praneÅ¡imų." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Å is raktas yra riboto pasitikÄ—jimo" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "Yra daugiau nei viena grupÄ— pavadinimu '%1'. Tai gali sukelti neteisingÄ… sistemos veikimÄ…, todÄ—l rekomenduojama pervadinti grupes." #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "NÄ—ra tinkamų raktų." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "NÄ—ra susietos bÅ«senos gyvavimo cikle %1 ir %2. KreipkitÄ—s į RT administratorių" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Yra vienas tinkamas raktas, bet pasitikÄ—jimo lygis nenustatytas" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "Ä®vyko klaida vykdant jÅ«sų paieÅ¡kÄ…: %1. RT admininistratorius gali pamatyti detalesnÄ™ informacijÄ… klaidų žurnale." #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Å ie nustatymai bÅ«tini RT veikimui. Reikia nurodyti RT sistemos pavadinimÄ… ir interneto domenÄ…, kuriame veiks RT sistema. Be to, reikÄ—s nurodyti sistemos administratoriaus slaptažodį." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Å is papildomas laukas negali turÄ—ti reikÅ¡mių sÄ…raÅ¡o" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "Å i kategorija netaikoma Å¡iam objektui" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "Å is papildomas laukas negali bÅ«ti įtrauktas į šį objektÄ…" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "Å is papildomas laukas neturi pavertimo tipų" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Å i savybÄ— prieinama tik sistemos administratoriui." #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Å i savybÄ— skirta tik sistemos administratoriams" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "Å is serverio procesas neužfiksavo jokių SQL užklausų" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "Å is praÅ¡ymas negali bÅ«ti užbaigtas vykdyti, kol nÄ—ra patvirtinimo." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "Å is praÅ¡ymas negali bÅ«ti užbaigtas vykdyti, kol nebus užbaigti vykdyti %%1 praÅ¡ymai, nuo kurių jis priklausomas." #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Å is įrankis leidžia naudotojui vykdyti kai kuriuos Perl modulius iÅ¡ RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Atrodo, kad Å¡i tranzakcija neturi turinio" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "Å io naudotojo %1 aukÅ¡Äiausio prioriteto %2 praÅ¡ymų" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "Naudotojų paieÅ¡ka bus vykdoma Å¡iuose laukuose:" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "Tai jus nukreips į dalinai užpildytÄ… inventoriaus registravimo formÄ…." #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "Tai jus nukreips į dalinai užpildytÄ… praÅ¡ymo registravimo formÄ…." #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Ket" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Ketvirtadienis" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "PraÅ¡ymas" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "PraÅ¡ymo Nr. %1 visų duomenų keitimas. %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "PraÅ¡ymo Nr. %1 ryÅ¡ių diagrama" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "PraÅ¡ymas Nr. %1. %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "PraÅ¡ymas Nr. %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "PraÅ¡ymas Nr. %1 sukurtas eilÄ—je '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "PraÅ¡ymas Nr. %1. %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "PraÅ¡ymo Nr. %1 istorija. %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "PraÅ¡ymas įvykdytas" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "PraÅ¡ymų paieÅ¡ka" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "PraÅ¡ymo tranzakcija" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "PraÅ¡ymas ir operacija" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "PraÅ¡ymo sudÄ—tis" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "PraÅ¡ymo turinys" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "PraÅ¡ymo turinio duomenų tipas" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "PraÅ¡ymas negali bÅ«ti sukurtas dÄ—l vidinÄ—s sistemos klaidos" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Nepavyko užkrauti praÅ¡ymo" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "PraÅ¡ymų skaiÄius" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "PraÅ¡ymo atvaizdavimas" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "PraÅ¡ymas eilÄ—je" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "PraÅ¡ymo meta-duomenys" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "PraÅ¡ymo bÅ«sena pakeista" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "PraÅ¡ymo atnaujinimas" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "PraÅ¡ymoSQL paieÅ¡kos modulis" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "PraÅ¡ymai" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "PraÅ¡ymai %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "PraÅ¡ymai %1 naudotojo %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Man skirti praÅ¡ymai" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Nuo Å¡io patvirtinimo priklauso Å¡ie praÅ¡ymai:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "Laikas" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Laiko sÄ…naudų įvertinimas" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Liko dirbti" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "Pareikalavo darbo laiko" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Jau dirbta" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "Pradinis darbo laiko įvertis" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Parodyta per" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "Laiko sÄ…naudų įvertinimas" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "Liko dirbti" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "Jau dirbta" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "Laikmatis, skirtas #%1: %2" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Laiko juosta" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Pavadinimas" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "DÄ—l palaikymo, mokymo, vystymui ar licenzijavimo kreipkitÄ—s %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "Perjungti %quant(%1,query,queries)" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "Perjungti iÅ¡skirtų praÅ¡ymų pažymÄ—jimÄ…" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "Perjungti steko pÄ—dsakų fiksavimÄ…" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Informuotas" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "Nurodyta giminystÄ—" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Ä®rankiai" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Temos pavadinimas" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "PridÄ—ta narystÄ— temoje" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "Panaikinta narystÄ— temoje" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Tema nerasta" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Temos" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "IÅ¡ viso" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "Suma: užregistruotas-paskutinį kartÄ… keistas" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "Suma: užregistruotas-įvykdytas" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "Suma: užregistruotas-pradÄ—tas vykdyti" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "Suma: galutinis terminas-užbaigtas vykdyti" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "Suma: pradÄ—tas vykdyti-užbaigtas vykdyti" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "Suma: bus pradÄ—tas vykdyti-pradÄ—tas vykdyti" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "Suma: laiko sÄ…naudų įvertinimas" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "Suma: liko dirbti" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "Suma: jau dirbta" #: etc/initialdata:317 msgid "Transaction" msgstr "Tranzakcija" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Tranzakcija %1 panaikinta" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Tranzakcija atlikta" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Papildomi tranzakcojos laukai" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "Veiksmai HTML formatu" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Tranzakcija->Neįmanoma sukurti, nes nenurodytas objekto tipas ir identifikatorius" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "Veiksmų papildomi laukai" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "Tranzakcijos data" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "Veiksmai" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Tranzakcijos nekeiÄiamos" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "PasitikÄ—jimas" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "Pabandyti" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "Bandyti dar kartÄ…" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Ant" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Antradienis" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "Veiksmų papildomi laukai" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tipas" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Tipas a: prieÅ¡ apraÅ¡o numerius ir t: prieÅ¡ praÅ¡ymo numerius." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Tipas pakeistas iÅ¡ '%1' į '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "Netaikyti pasirinktų skriptų" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "Nepavyko pridÄ—ti %1 nuorodos: %2" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "Nepavyko pridÄ—ti pavadinimo perraÅ¡ymo: %1 %2" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "Nepavyksta pridÄ—ti narystÄ—s temoje" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "Nepavyko panaikinti narystÄ—s temoje %1" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Neįmanoma nustatyti objekto ar identifikatoriaus tipÄ…" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "Nepavymo rasti inventoriaus #%1" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "Nepavyko rasti katalogo %1" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "Nepavyko rasti katalogo '%1'" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Nepavyksta nuskaityti apraÅ¡o" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "Nepavyko atverti sparÄiųjų klavišų apraÅ¡o. Priežastis:" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "Nepavyksta nustatyti naudotojo CSS: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "Nepavyksta nustatyti naudotojo logotipo: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "Nepavyksta nustatyti privatumo identifikatoriaus: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "Nepavyksta nustatyti privatumo objekto ar identifikatoriaus: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "Nepavyksta nustatyti privatumo objekto: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "Nepavyko įkelti darbo laiko. Ä®veskite jį rankinių bÅ«du. Priežastis:" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "Nepavyko užprenumeruoti informacinÄ—s panelÄ—s %1: Neužtenka teisių" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "Nesuteiktos teisÄ—s" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Nuimkite pažymÄ—jimÄ…, jeigu norite iÅ¡jungti iÅ¡vardintų gavÄ—jų informavimÄ… tik Å¡iai operacijai. Nuolatinis iÅ¡jungimas valdomas Asmenų puslapyje." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Atkurti" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "Deja RT nepavyksta automatiÅ¡kai sukurti jÅ«sų paskyros. RT administratorius ras detalesnÄ™ informacijÄ… klaidų žurnaluose." #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "UNIX naudotojas" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Nežinomas (pasitikÄ—jimo lygis neapibrėžtas)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Nežinomas (Å¡is lygis sistemoje neapibrėžtas)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Nežinomas turinio kodavimas %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Nežinomas laukas: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "Jeigu nenurodÄ—te konkreÄios bÅ«senos, bus ieÅ¡koma tik aktyvių (%1) praÅ¡ymų." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Neribota" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Neribota" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "BevardÄ— informacinÄ— panelÄ—" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "BevardÄ— užklausa" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Nepaskirti praÅ¡ymai" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "PraÅ¡ymai, neturintys paskirto atsakingo asmens" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Nepriveligijuotas" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "NepažymÄ—ti papildomi laukai" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "NepažymÄ—tos eilÄ—s" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "NepažymÄ—ti objektai" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Privatus raktas nuimtas" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Nepaskirtas atsakingas" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Keisti" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Atnaujinti diagramÄ…" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Pakeisti grafikÄ…" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Pakeisti šį meniu" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Papildyti praÅ¡ymo istorijÄ…" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Pakeisti tipÄ…" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Pakeisti formatÄ… ir ieÅ¡koti" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Pakeisti pažymÄ—tus praÅ¡ymus" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Pakeitimas neįsimintas" #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Pakeisti praÅ¡ymÄ…" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "PraÅ¡ymo Nr. %1 pakeitimas" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "PraÅ¡ymo Nr. %1 pakeitimas (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Pakeitimas nebuvo nei atsakymas, nei komentaras." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "Pakeitimo bÅ«sena" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Pakeista" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "Atnaujino" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Pakeista įsiminta paieÅ¡ka \"%1\"" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "Atnaujino" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "Atnaujinti iÅ¡ %1 į %2" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Ä®kelti" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Ä®dÄ—ti naujÄ… logotipÄ…" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Ä®kelti keletÄ… failų" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Ä®kelti keletÄ… vaizdų" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Ä®kelti vienÄ… failÄ…" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Ä®kelti vienÄ… vaizdÄ…" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Ä®kelti iki %1 failų" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Ä®kelti iki %1 vaizdų" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "Ä®keliama..." #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Naudojimas:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "Ar naudoti dviejų stulpelių iÅ¡dÄ—stymÄ… kuriant ir atnaujinant formas?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "Naudoti inventorių %1 kaip praÅ¡ymo autorių: %2" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Naudoti automatinį teksto užbaigimÄ… parenkant atsakingÄ… asmenį" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Naudoti sistemos nutylÄ—tÄ…jÄ… reikÅ¡mÄ™ (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Naudoti kitas RT administravimo priemones" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Naudoti sistemos nutylÄ—tÄ…jÄ… reikÅ¡mÄ™ (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Pasirinkite praÅ¡ymo tekstus, kuriuos norite perkelti į naujÄ… aprašą." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "Naudojama skriptuose" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Naudotojas" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "Naudotojas %1 yra užblokuotas." #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "Naudotojas %1 yra užblokuotas. NorÄ—dami iÅ¡jungti blokavimÄ…, atverkite naudotojo įrašą ir pasirinkite \"Leisti naudotojui jungtis prie RT\"." #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Naudotojas (sukurtas - nebegalioja)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Nustatyta naudotojo" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "Naudotojo apibrėžtos sÄ…lygos ir rezultatai" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "Naudotojų grupÄ—s" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Naudotojo duomenys" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Naudotojo teisÄ—s" #: share/html/User/Search.html:48 msgid "User Search" msgstr "Naudotojo paieÅ¡ka" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "Naudotojo informacija" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Naudotojas pageidauja nežinomo tipo pakeitimo %2 objekto Nr. %3 papildomam laukui %1" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Negalima sukurti naudotojo: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Naudotojas sukurtas" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Naudotojas iÅ¡jungtas" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Naudotojas įjungtas" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Nenurodytas naudotojo el. paÅ¡to adresas" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Naudotojas įkeltas" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Naudotojo sukurtos grupÄ—s" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "Naudotojas: %1" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Naudotojo vardas" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Naudotojo vardo formatas" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Naudotojai" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Naudotojai, atitinkantys paeiÅ¡kos kriterijus" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Naudojama tranzakcija Nr. %1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Patikrinta užklausa" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Patikrinimas" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "ReikÅ¡mÄ—" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "ReikÅ¡mÄ—s" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Kintamasis" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Versija" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "PeržiÅ«rÄ—ti skriptų Å¡ablonus" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "PeržiÅ«rÄ—ti skriptus" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "PeržiÅ«rÄ—ti papildomų laukų reikÅ¡mes" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "PeržiÅ«rÄ—ti papildomus laukus" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "PeržiÅ«rÄ—ti pilnus iÅ¡siųstus laiÅ¡kus ir jų gavÄ—jus" #: lib/RT/Group.pm:94 msgid "View group" msgstr "PeržiÅ«rÄ—ti grupÄ™" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "PeržiÅ«rÄ—ti grupÄ—s informacines paneles" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "PeržiÅ«rÄ—ti iÅ¡skirtus praÅ¡ymus" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "ŽiÅ«rÄ—ti asmenines informacines paneles" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "PeržiÅ«rÄ—ti eilÄ™" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "PeržiÅ«rÄ—ti įsimintas paieÅ¡kas" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "ŽiÅ«rÄ—ti sistemines informacines paneles" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "PeržiÅ«rÄ—ti praÅ¡ymo privaÄius komentarus" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "PeržiÅ«rÄ—ti praÅ¡ymo santraukas" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "DÄ–MESIO: įsimenama naudotojo asmeninio matomumo lygio paieÅ¡ka" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "WYSIWYG praneÅ¡imų kÅ«rimo lango aukÅ¡tis" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "WYSIWYG praneÅ¡imų kÅ«rimas" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "DÄ—mesio! Tai nepasiraÅ¡yta!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "DÄ—mesio: praÅ¡ymų sujungimas yra neatÅ¡aukiamas veiksmas! Nurodykite vieno praÅ¡ymo numerį, į kurį bus sujungti praÅ¡ymai." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "StebÄ—tojas" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "StebÄ—tojų grupÄ—" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "StebÄ—tojai" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Negalima parodyti kaip sÄ…raÅ¡o, kai kategorijos remiasi kitu papildomu lauku. Pasirinkite kitÄ… pavertimo tipÄ…." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Reikia nurodyti RT naudojamos duomenų bazÄ—s pavadinimÄ… ir kur ji yra. Be to, reikia nurodyti naudotojo vardÄ… ir slaptažodį prisijungui prie duomenų bazÄ—s. RT instaliacija gali sukurti trÅ«kstama duomenų bazÄ™ ir naudotojÄ…, todÄ—l reikia nurodyti duomenų bazÄ—s administratoriaus vardÄ… ir slaptažodį. 6-ame instaliavimo žingsnyje Å¡i informacija bus panaudota inicializuojant RT duomenų bazÄ™." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "WWW serverio portas" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Tre" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "TreÄiadienis" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "Metų savaitÄ—" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Kas savaitÄ™" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "KassavaitinÄ— santrauka" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Sveiki prisijungÄ™ prie RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "KÄ… nuveikiau Å¡iandien" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Kas yra RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "Kurie praÅ¡ymai rodomi sÄ…raÅ¡e \"Informacija apie praÅ¡ymo autorių\"" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Kai RT siunÄia laiÅ¡kÄ…, ji nurodo From: ir Reply-To: antraÅ¡tes, kad naudotojai galÄ—tų tiesiogiai atsakyti paspaudÄ™ Reply mygtukÄ… savo paÅ¡to programoje. Atsakymams ir komentarams naudojami skirtingi adresai iÅ¡ eilÄ—s nustatymų. Å ie adresai turi bÅ«ti nurodyti rt-mailgate programos konfigÅ«racijoje." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "Kaip pasikeiÄia dirbtas laikas" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "KiekvienÄ… kartÄ… kai praÅ¡ymas sukurtas" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "kai sukuriamas patvirtinimo praÅ¡ymas, informuoti atsakingÄ… asmenį ir administracines kopijas gaunanÄius asmenis, kad yra patvirtinimo laukianÄių praÅ¡ymų" #: etc/initialdata:137 msgid "When anything happens" msgstr "KiekvienÄ… kartÄ… kai kas nors atsitinka" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "Kai staripsniai iÅ¡ Å¡ios klasÄ—s perkeliami į laiÅ¡kus:" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "KiekvienÄ… kartÄ… uždarius praÅ¡ymÄ…" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Kai persiunÄiamas praÅ¡ymas" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Kai praÅ¡ymas yra atmestas" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "KiekvienÄ… kartÄ… pradedant vykdyti praÅ¡ymÄ… pakartotinai" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "KiekvienÄ… kartÄ… įvykdžius praÅ¡ymÄ…" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Kai praÅ¡ymas arba veiksmas yra persiunÄiamas" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "KiekvienÄ… kartÄ… keiÄiantis atsakingas už praÅ¡ymÄ…" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "KiekvienÄ… kartÄ… keiÄiantis praÅ¡ymo prioritetui" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "KiekvienÄ… kartÄ… keiÄiantis praÅ¡ymo eilei" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "KiekvienÄ… kartÄ… keiÄiantis praÅ¡ymo bÅ«senai" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Kai veiksmas persiunÄiamas" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "KiekvienÄ… kartÄ…, įvykus naudotojo apibrėžtai sÄ…lygai" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "KiekvienÄ… kartÄ… pridÄ—jus komentarÄ…" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "KiekvienÄ… kartÄ… gavus korespondencijÄ…" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Kur jÅ«sų Sendmail programa" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "Plotis" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Nuvalyti" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Darbo" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Darbo telefonas" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Dirbta" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "Dirbta %quant(%1,valanda,valandos) (%quant(%2,minutÄ—,minutÄ—s))" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "Dirbta %quant(%1,minutÄ—,minutÄ—s)" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "Metai" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Taip" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "JÅ«s (%1) neturite teisių naudoti RT." #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "JÅ«s galite taisyti Å¡iÄ… informacinÄ™ panelÄ™ ir prenumeruoti jÄ…." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "JÅ«s jau esate atsakingas už šį praÅ¡ymÄ…" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "JÅ«s pageidaujate užšifruoti iÅ¡einanÄius laiÅ¡kus, bet ne viskas gerai su gavÄ—jo vieÅ¡ais raktais ar sertifikatais. Turite arba iÅ¡jungti Å¡ifravimÄ…, arba iÅ¡sprÄ™sti problemas su raktais, arba nesiųsti laiÅ¡kų probleminiams gavÄ—jams." #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "JÅ«s pageidaujate užšifruoti iÅ¡einanÄius laiÅ¡kus, bet ne viskas gerai su gavÄ—jo vieÅ¡ais raktais ar sertifikatais. Turite arba iÅ¡jungti Å¡ifravimÄ…, arba iÅ¡sprÄ™sti problemas su raktais, arba nesiųsti laiÅ¡kų probleminiams gavÄ—jams." #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "JÅ«s neturite teisių naudoti RT." #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Galite pereiti prie pirmo neskaityto praneÅ¡imo arba pereiti prie pirmo neskaityto praneÅ¡imo ir pažymÄ—ti visus praneÅ¡imus skaitytais." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "Taip pat galite bakstelti į aukÅ¡Äaiu rodomÄ… logotipÄ… ir gauti jo spalvas." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "JÅ«s taip pat galite taisyti standartinÄ™ paieÅ¡kÄ…" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "Jeigu reikia, galite pakeisti Å¡ablonÄ…" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Galite įterpti praÅ¡ymo turinį bet kuriame laisvos formos, tekstiniame ar wiki tipo lauke." #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "JÅ«s negalite nustatyti slaptažodžio." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Galite perskirti tik tuo praÅ¡ymus, kurie priskirti jums arba nepriskirti niekam." #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "Pasiskirti sau galite tik tuos praÅ¡ymus, kurie priskirti kažkam kitam" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "JÅ«s galite paskirti sau tik tuos praÅ¡ymus, kurie nepriskirti niekam" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Galite ieÅ¡koti bet kokio žodžio praÅ¡ymo istorijoje naudodami sintaksÄ™ %1žodis." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "JÅ«s negalite pakeisti bÅ«senos iÅ¡ '%1' į '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "JÅ«s neturite b>SuperUser teisių." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "JÅ«s neturite teisių kurti Aprašų jokioje KlasÄ—je." #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "JÅ«s neturite teisÄ—s registruoti inventoriaus kataloge %1." #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "JÅ«s neturite teisių pamatyti ApraÅ¡us jokioje KlasÄ—je." #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "JÅ«s neturite teisÄ—s matyti šį inventorių." #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "JÅ«s neturite teisÄ—s matyti šį katalogÄ…." #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "JÅ«s įjungÄ—te %1 bet %2 liko nesukonfigÅ«ruotas faile RT_SiteConfig.pm, detalesnes instrukcijas rasite '%3'" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "JÅ«s atsijungÄ—te nuo RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "JÅ«s įjungÄ—te Å¡ifravimÄ… bet nenustatÄ—te komentarų adreso Å¡iai eilei." #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "JÅ«s įjungÄ—te Å¡ifravimo funkcijas, bet nenurodÄ—te susiraÅ¡inÄ—jimo adreso Å¡iai eilei" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "JÅ«s neturite teisÄ—s kurti praÅ¡ymus Å¡ioje eilÄ—je." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Galite įdÄ—ti nuorodÄ… į aprašą naudodami formÄ… \"a:###\", kur ### atitinka apraÅ¡o numerį." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "You must enter an Administrative password." #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "JÅ«s turite įjungti StatementLog parametrÄ…, norÄ—dami naudoti užklausų istorijos puslapį." #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "NorÄ—dami sukonfigÅ«ruoti privatų raktÄ…, turite nurodyti adresÄ… komantarams" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "NorÄ—dami sukonfigÅ«ruoti privatų raktÄ…, turite nurodyti adresÄ… susiraÅ¡inÄ—jimui" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "JÅ«s bÅ«site nukreipti į prisijungimo puslapį. Galite jungtis naudotoju %1 su slaptažodžiu, kurį nurodÄ—te anksÄiau." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "JÅ«s buvote atjungtas nuo RT. Tai gali bÅ«ti laikinas sutrikimas, kuri galbÅ«t galima pataisyti atnaujinant puslapį." #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "AÄiÅ«. KvieÄiame užeiti dar kartÄ…" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "JÅ«sų slaptažodis nenustatyas." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "JÅ«sų sistema palaiko automatinį spalvų pasiÅ«lymÄ…, skirtÄ… %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Klaidingas naudotojo vardas arba slaptažodis" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "PaÅ¡to indeksas" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Žemyn]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[AukÅ¡tyn]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "[paslÄ—ptas katalogas]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[nieko]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "papildomas laukas" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "aktyvus" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "po" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "bakstelÄ—jus nuorodÄ…" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "po to, kai įkeltas visas puslapis" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "iÅ¡skirta" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "ir prieÅ¡ tai" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "ir ne" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "ir tada" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "kai slenkate vaizdÄ…" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "stulpeliai" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "iki" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "turinys" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "iÅ¡ apaÄios į viršų" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "pažymÄ—kite, norÄ—dami taikyti Å¡iÄ… kategorijÄ… bendrai visoms eilÄ—ms." #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "pažymÄ—kite, norÄ—dami taikyti šį papildomÄ… laukÄ… visiems objektams." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "pažymÄ—kite varnelÄ™ taikyti skriptÄ… visiems objektams" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "pažymÄ—kite, norÄ—dami netaikyti Å¡ios kategorijos bendrai visoms eilÄ—ms, o galÄ—ti pasirinkti konkreÄias eiles." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "pažymÄ—kite, norÄ—dami netaikyti Å¡io papildomo lauko visiems objektams, o galÄ—ti pasirinkti konkreÄius objektus." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "nuimkite varnelÄ™, jeigu nenorite taikyti skriptÄ… visiems objektams, o norite pasirinkti individualiai" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "pažymÄ—kite norÄ—dami pridÄ—ti" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "spustelk pažymÄ—ti visus objektus iÅ¡ karto" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "pagrindinÄ— konfigÅ«racija" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "pateikti praÅ¡ymÄ…" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "kasdien %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "kasdien" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "informacinÄ— panelÄ—" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "informacinÄ—s panelÄ—s, rodomos meniu" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "panaikintas" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "dalinai nÄ—ra" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "parsiųsti" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "trukmÄ—" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "el. laiÅ¡kų siuntimas sustabdytas" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "elektroninis paÅ¡tas uždraustas praÅ¡ymui" #: lib/RT/User.pm:270 msgid "empty name" msgstr "vardas nenurodytas" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "lygu" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "klaida: negalima nuleisti" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "klaida: negalima patraukti kairÄ—n" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "klaida: negalima pakelti" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "klaida: nÄ—ra kÄ… panaikinti" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "klaida: nÄ—ra kÄ… perkelti" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "klaida: nÄ—ra kÄ… perjungti" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "kiekvienas" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "papildinys įvykdytas sÄ—kmingai" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "vienkartinÄ— slapta kopija (Bcc)" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "vienkartinÄ— kopija (Cc)" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "pilnas" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "daugiau nei" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "grupÄ—" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "grupÄ— %1" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "grupÄ— '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "Numeris" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "nedelsiant" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "kategorijoje %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "naudojama" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "neaktyvus" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "apima %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "indeksas" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "neteisinga galutinÄ— data: %1" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "yra" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "nÄ—ra" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "raktas uždraustas" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "raktas nebegalioja" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "raktas panaikintas" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "iÅ¡ kairÄ—s į deÅ¡inÄ™" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "mažiau kaip" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "ribinis" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "dalinai yra" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "maksimalus gylis" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minuÄių" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "pakeisti RT konfigÅ«racijÄ…" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "pakeisti informacinÄ™ panelÄ™" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "pakeisti ar pažiÅ«rÄ—ti paieÅ¡kos kriterijus" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "pakeisti asmeninius nustatymus" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "kas mÄ—nesį" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "kas mÄ—nesį (%1) %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "niekada" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "naujas" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "ne" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "elektroninio paÅ¡to adresas nenurodytas" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "nÄ—ra" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "ne" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "nelygu" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "nieko" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "Objektai buvo panaikinti sÄ—kmingai" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "Kada" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "nurodytÄ… dienÄ…" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "vienas" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "vykdomas" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "atidaryti/uždaryti" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "kiti..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "atlikti veiksmus" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "pyragas" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "papildinys grąžino tuÅ¡ÄiÄ… sÄ…rašą" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "tÅ¡k." #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "eilÄ— %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "gauna kasdieninÄ™ suvestinÄ™" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "gauna kassavaitinÄ™ suvestinÄ™" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "perdirbtas" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "atmestas" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "reikalauja veikianÄio rt-crontool įrankio" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "Ä®vykdytas" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "iÅ¡ deÅ¡inÄ—s į kairÄ™" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "paieÅ¡ka" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "žr. objektų sÄ…rašą žemiau" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "Å¡oninis skydelis" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "sistemos konfigÅ«racija" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "pristabdytas" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "užklausa" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "perimtas" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "suminÄ—s eilutÄ—s" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "sistema %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "sisteminÄ— grupÄ— '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "lentelÄ—" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "NarÅ¡yklÄ—s pateikta antraÅ¡tÄ— Referrer (%1) neatitinka RT serverio vardo (%2)" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "NarÅ¡yklÄ—s pateikta antraÅ¡tÄ— Referrer (%1) neatitinka RT serverio vardo (%2) arba kitų leistinų vardų (%3)" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "besikreipiantis komponentas nenurodÄ— priežasties" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "adresas bus naudojamas komentarų laiÅ¡kų laukuose From: ir Reply-To:" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "adresas bus naudojamas atsakymų laiÅ¡kų laukuose From: ir Reply-To:" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "praÅ¡ymas Nr. %1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "iÅ¡ virÅ¡aus į apaÄiÄ…" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "absoliuÄiai" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "neapraÅ¡yta grupÄ—: %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "neribotas" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "atnaujinti praÅ¡ymÄ…" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "atnaujinti patvirtinimÄ…" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "pakeisti aprašą" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "naudotojas" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "naudotojas %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "naudotojo vardas" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "kas savaitÄ™" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "kas savaitÄ™ (%1) %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "savaitÄ—s" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "kuris gali %1 jÅ«sų vardu." #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "kuriuo portu veiks www serveris, pvz. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "su antraÅ¡tÄ—mis" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "taip" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "JÅ«sų narÅ¡yklÄ— nepalaiko antraÅ¡tÄ—s atributo Referrer" rt-4.4.2/share/po/is.po0000664000175000017500000116344213131430353014540 0ustar vagrantvagrant# Icelandic translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-08 23:10+0000\n" "Last-Translator: ToddWade \n" "Language-Team: Icelandic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "%1. %2 %3" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%1 %3. %2 %4" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%1 %3. %2 %4:%5 %6" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3. %2 %4:%5:%6 %7" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 bætt við" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 breytt í %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 eytt" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 eytt." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 er ekki til" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 er óvirkt" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 vistað." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 uppfært." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 með sniðmátinu %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) breytandi er %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Óbreytt)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (frá rúðu %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Gildi sem sent er til %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Senda stöðuuppfærslur í STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Tilgreint hvort óskað er að nota fyrsta ('first), síðata ('last') eða allar ('all') hreyfingar" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "%1 notandaskilgreint svið" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 Höfundarréttur 1996-%3 %4." #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "Útgáfa %1" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 bætt við sem gildi fyrir %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "fyrir %1" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "" #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 fannst ekki í gagnagrunninum þó það virðist vera viðfangsefni sem er á staðnum" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 virðist vera frumstillt að fullu. Ekki þarf að setja inn töflur eða lýsigögn, en halda má áfram við að sérsníða RT við að smella á 'Grunnatriði sérsníðunar' að neðan" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 eftir %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 má ekki vera hópur" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 breyttist úr %2 í %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 breytt úr '%2' í '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 afrit" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 kjarnstillingar" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "Ekki var hægt að breyta %1 í %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 búið til" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 eytt" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 óvirkt" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 er ekki til." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 virkt" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 hæstu forgangsmál sem ég á" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 er verkfæri sem verkar á mál úr ytra tímastilltu verkfæri, eins og cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 er nú þegar stillt á %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 er ekki %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 mál" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 lykill '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 nýjustu uppfærslur greina." #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 nýjustu greinarnar" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 nýjustu mál sem enginn á" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 hlutir" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 stillt á %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "Vefuppsetning %1" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 uppfærsla: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 uppfærsla: Engin breyting" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 uppfært" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1's %2 hlutir" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1's %2's %3 hlutir" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "núverandi lykilorð %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: ekkert viðhengi tilgreint" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Nýtt mál í%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%1 mínútur" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,mánuður,mánuðir)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,sekúnda,sekúndur)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,Vika,Vikur)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,ár,ár)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' er ekki gilt nafn." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' er ekki gildur klasi" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Haka þarf í boxið til að ljúka)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Hakaðu í boxið til að eyða)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Haka þarf í boxið til að eyða)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "(Haka þarf í boxið til að eyða öllum gildurm)" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Skrifaðu málsnúmer eða URL, með bil á milli þeirra)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(verður sjálfgefið %1 ef þetta er látið vera autt)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(ófullgert)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(röng gögn)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Engin notandaskilgreind svæði)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "Engir meðlimir" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "Engir sneplar" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Engin sniðmát)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Afrit er sent af þessari uppfærslu til lista af netföngum umsjónaraðila - aðgreindum með kommu. Þau munu framvegis fá sendar uppfærslur um þetta mál.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Afrit er sent af þessari uppfærslu til lista af netföngum - aðgreindum með kommu. Þau munu framvegis fá sendar uppfærslur um þetta mál.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(nafnlaust)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(ekkert)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(engin gildi)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(bíður samþykkis)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(krafist)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(traust: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(án titils)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(vantreyst!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 sekúndur" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Sniðmát með þessu nafni er nú þegar til" #: etc/initialdata:258 msgid "A blank template" msgstr "Tómt sniðmát" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Lykilorð var ekki stillt, þannig að notandinn getur ekki skráði sig inn." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "OG" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Um mig" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Aðgangsstjórnun" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Aðgerð" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Aðgerðin '%1' fannst ekki" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Aðgerð hafin." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "" #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Bæta við AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Bæta við bókamerki" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Bæta við Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Bæta við dálkum" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Bæta við leitarskilyrðum" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Bæta skrám við" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Bæta við spyrjanda" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Bæta athugasemdum eða svörum við þetta mál" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Bæta við nýjum áhorfendum" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Bæta við réttindum fyrir þennan %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Bæta við þessum orðum" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Bæta við þessum orðum og Leita" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Bæta gildum við" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Heimilisfang" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Heimilisfang 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Heimilisfang1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Heimilisfang2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Umsjón" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Athugasemdir Umsjónaraðila" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Athugasemdir Umsjónaraðila í formi HTML" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Bréfaskipti Umsjónaraðila" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Bréfaskipti Umsjónaraðila í formi HTML" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Biðraðir Umsjónaraðila" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Umsjón/Altæk uppsetning" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Lykilorð Umsjónar" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Nánar" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Ãtarleg leit" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Tengiliður" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "" #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Allar biðraðir sem passa við leitarskilyrði" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Og/Eða" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "à við" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "à við alla hluti" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Nota" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Nota alsstaðar" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Beita völdum sneplum" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Virkja breytingarnar þínar" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Samþykki" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Samþykki #%1: Ekki skráð vegna kerfisvillu" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Samþykki viðurkennt" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "Samþykki viðurkennt í HTML" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Samþykki Tilbúið fyrir Eiganda" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "Samþykki Tilbúið fyrir Eiganda í HTML" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Samþykki var vísað frá" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "Samþykki var vísað frá í HTML" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Samþykkja" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "apr." #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "Grein #%1 fannst ekki" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Grein #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Grein %1 búin til" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Umsjón greina" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Grein fannst ekki" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Greinar" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Greinar í %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Greinar sem passa við %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Greinar án efnisatriða" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Hækk" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Viðhengi" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Skrá sem viðhengi" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Meðfylgjandi skrá" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "ágú" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:261 msgid "Autoreply" msgstr "Sjálfvirkt svar" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Sjálfvirkt svar til spyrjenda" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Sjálfvirkt svar í HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Til taks" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "Meðaltími Upphaf-SíðastUppfært" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "Meðaltími Upphaf-Leyst" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "Meðaltími Upphaf-Hafið" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "Meðaltími Skylduskil-Leyst" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "Meðaltími Hafið-Leyst" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "Meðaltími Hefst-Hafið" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "Meðaltími áætlaður" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "Meðaltími eftir" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "Meðaltími unninn" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Til baka" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Lélegur trúnaður fyrir eigindi %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Grunnatriði" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "Magnvinnsla" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Bakvinnsla snepla" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "Bakvinnsla snepla eftir skilgreindar breytingar á máli." #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "Ãður en hægt er að nota greinar, þarf umsjónaraðili RT að %1búa til klasa%2, beita á þá sérsniðnum sviðum greina og heimila notendum réttindi á klasana og sérsniðnu sviðin." #: etc/initialdata:257 msgid "Blank" msgstr "Autt" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Meginmál" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Feitletrað" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Bókamerki" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Tengill fyrir þessa leit sem má bókmerkja" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Bókmerkt mál" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Bókmerkt mál" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Vafra um efnisatriði" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Vafra um SQL fyrirspurnirnar sem þetta ferli hefur gert" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Fjöldauppfærsla" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "Reikna" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "Reikna gildin í" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Ekki tókst að sækja vistaða leit \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Ekki er hægt að breyta kerfisnotendum" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Ekki er hægt að bæta við sérsniðnu sviði án nafns" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Ekki fannst nein vistuð leit að vinna með" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Framsending ekki möguleg: ekkert gilt netfang var tilgreint" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Ekki er hægt að tengja mál við sjálft síg" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Ekki er hægt að tengja við mál sem búið er að eyða" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Ekki er hægt að sameina mál við sjálft sig" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Ekki er hægt að búa til mál á snöggan hátt í biðröð %1 þar sem þar er krafist notandaskilgreindra sviða. Hægt er að klára málið með því að nota venjulegu síðuna til að búa til mál." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Ekki er hægt að vista %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Ekki er hægt að vista leit án Lýsingar" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Ekki er hægt að vista þessa leit" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Ekki er hægt að búa til mál í óvirkri biðröð." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Flokkar eru byggðir á" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Flokkur" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Afrit" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Breyta" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Breyta stöðu samþykkts máls í Opið" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Breyta viðfangsenfni tölvupósts:" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Breyta lykilorði" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Ekki er búið að forrita til að hægt sé að breyta biðröð" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Línurit" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Velja allt" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Staðfesta aðgang að gagnagrunni" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Staðfesta notandanafn og lykilorð að gagnagrunni" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Haka í box til að eyða" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Afkvæmi" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Afkvæmi" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Veldu úr efnisorðum fyrir %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Borg" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Flokkur" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Hreinsa" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Hreinsa allt" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Litur er valinn með smelli" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Lokað" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Lokuð mál" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Athugasemd" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Netfang Athugasemda" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Netfang athugasemda" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Gera athugasemdir við mál" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Athugasemdir" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Athugasemdir (Ekki sendar til spyrjenda)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Athugasemdir um þennan spyrjanda" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Athugasemd bætt við" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Skilyrði" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Skilyrði '%1' fannst ekki" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Staða, Aðgerð og Sniðmát" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Stilliskrá %1 er læst" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Stillingar fyrir biðröðina %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Tenging heppnaðist" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Hafðu sambandi við umsjónaraðila RT." #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Innihald" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "" #: etc/initialdata:393 msgid "Correspondence" msgstr "" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Ekki tókst að búa til leitina: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Ekki var hægt að búa til mál. Biðröðin óstillt" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Ekki tókst að eyða leitinni %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "Ekki var hægt að sækja snepil #%1" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Ekki var hægt að stilla notendaupplýsingar" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Ekki var hægt að sækja snepil #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Land" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Búa til" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Búa til mál" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "Búa til altækan snepil" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Búa til nýja grein" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Búa til nýja grein í" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Búa til nýjan hóp" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Búa til nýjan notanda" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "Búa til snepil og bæta við biðröð %1" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Búa til mál" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Búa til nýja grein" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Búa til nýja grein í klasanum..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Búa til nýja grein í þessum klasa" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Búa til ný mál samkvæmt sniðmáti þessa snepils" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Búa til mál" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Búa til, breyta og eyða vistuðum leitum" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "BúiðTil" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Þetta Gerði" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Búa til leit %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "ÞettaGerði" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Höfundur" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Dulritun" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Núverandi Tengingar" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Núverandi Leit" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Núverandi meðlimir" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Núverandi leit" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Núverandi áhorfendur" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Sérsniðnir reitir" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "" #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "" #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Sérsníða" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Sérsníða Grunnatriði" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Stjórnborð" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Stjórnborð uppfært" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Stjórnborð" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Gagnagrunnsþjónn" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nafn á gagnagrunni" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Snið dagsetningar" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Dagsetningar" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "des" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "Villa í afkóðun; hafið sambandi við umsjónaraðila" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Eyða" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Eyða sniðmáti" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Eyða vistaðri leit" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Eyða leit %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Leysist fyrst" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "LeysistFyrst" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Leysist á eftir" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "LeysistÃEftir" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Lækk" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Lýsing" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Stefna" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Óvirkt" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Sýna" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Sýna grein %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Sýna Dálka" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Gera allt og ekkert" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Nafn léns" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Ekki uppfæra heimasvæðið." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Ekki uppæra leitarniðurstöður." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ekki uppfæra þessa síðu." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Hala niður" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Skiladagur" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Þægileg leið til að uppfæra opnu málin þín" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Breyta" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Breyta notandaskilgrendum sviðum fyrir greinar í öllum klösum" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Breyta Tengingum" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Breyta Leit" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Breyta Leit" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "Tölvupóstfang" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Netfang" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Netfang er þegar í notkun" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "Netfang" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Virkt" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Virkt (Sé ekki hakað við þetta box, eru sneplar óvirkir)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Virkar biðraðir sem passa við leitarskilyrði" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Dulrita" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Dulritun er sjálfgefin" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Dulkóðunarvilla; hafið samband við umsjónaraðila" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Bæta við greinum, málum eða tenglum (URL) tengdum þessari grein." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Setja skal inn mörg vistfang" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Skráið viðföng eða slóðir (URI) sem tengja í viðföng. Séu fleiri færslur, á bil að vera á milli." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Setja skal inn eitt vistfang" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Setja skal inn eina spönn af IP-tölum" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Skráið biðraðir eða slóðir (URI) sem tengja við biðraðir. Séu fleiri færslur, á bil að vera á milli." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Skráið mál eða slóðir (URI) sem tengja við mál. Séu fleiri færslur, á bil að vera á milli." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Setja skal inn allt að %quant(%1,spönn af IP-tölum,spannir af IP-tölum)" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Setja skal inn %quant(%1,IP-tölu,IP-tölur)" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Villa" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Öll" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Útrunnið" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "AukinStaða" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Úrdráttur úr grein" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Vinna nýja grein úr máli #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Vinna grein úr máli #%1 inn í klasann %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "feb" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Skráarnafn" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Loka Forgangur" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "LokaForgangur" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Finna alla notendur þar sem" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Finna hópa þar sem" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Finna fólk þar sem" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Ljúka" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Fyrsta" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Þvinga fram breytingu" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Snið" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Framsenda" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Framsenda Skilaboð" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Framsenda Skilaboð og snúa til baka" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Framsenda Mál" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Framsenda Skilaboð utanvið RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Framsenda mál #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Framsenda hreyfing #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "Framsenda %3Hreyfingu #%1%4 til %2" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Framsent Mál til %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "Framsend skilaboð" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "Framsend skilaboð máls" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Tíðni" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "fös" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Föstudagur" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Almennt" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Almenn aukin réttindi" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Altækt" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Ãfram" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Nú!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Línurit" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Hópur" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Aukin Réttindi Hóps" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Hópar" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Hópar sem passa við leitarskilyrði" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Skilaboðahausar framsends Máls" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Skilaboðahausar framsendra skilaboða" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Halló!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Fela allann meðsendan texta" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Fela meðsendan texta" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Ferill" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Saga greinar #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Heimasími" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Heimasíða" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Klst." #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Klukkustundir" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Auðkenni" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "Ef valið er sérsniðið svið, verður viðfangsefni tölvupóstsins samkvæmt þessari grein." #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Hafi eitthvað ofangreint verið uppfært, þarf að" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Innifela grein:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Nafn innifaldrar greinar" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Samantekt innifaldrar greinar" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Taka með óvirka sérsniðna reiti í listuninni." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Taka með óvirka hópa í listuninni." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Taka með óvirkar biðraðir í listuninni." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Taka með óvirk notendanöfn í listuninni." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Taka síðu með" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Stök skilaboð" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Upphafs Forgangur" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "UpphafsForgangur" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Innri villa: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Ógilt %1: '%2' virðist ekki vera netfang" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Villa í netfangi" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "" #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Skáletrað" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "jan" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "júl" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Risa" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "jún" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Tungumál" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Stórt" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Síðasta" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Síðasta Samband" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Síðast à Sambandi" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Síðasta Uppfærsla" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Síðustu Uppfærslu Gerði" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Síðustu uppfærslu gerði" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "SíðastaUppfærsla" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "SíðustuUppfærsluGerði" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Eftir" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Veita þessum notanda aðgang að RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Veita þessum notanda aukin réttindi" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Af stað!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Tengill" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Tenging er núþegar til" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Tenging fannst ekki" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Tengja mál #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Tengt" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "TengtFrá" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "TengtVið" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Tengingar" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Hlaða inn" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Sækja vistaða leit" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Sækja vistaða leit" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Hlaða inn vistuðum leitum:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Hlóð inn %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Hlóð inn vistaðri leit \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Tungumál" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Staðsetning" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Innskráning sem %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Útskráningu lokið" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Innskráning" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Útskráning" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Póstur" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Gera að eiganda" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Gera að stöðu" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Gera að skiladegi" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Gera að byrjunardegi" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Búa til biðröð" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Umsjón með sérsniðnum reitum og gildum þeirra" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Umsjón með hópum og aðild að hópum" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Umsjón með eiginleikum og uppsetningu sem á við allar biðraðir" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Umsjón með biðröðum og eiginleikum biðraða" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Umsjón með vistuðum línuritum" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "Umsjón snepla" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Umsjón með notendanöfnum og lykilorðum" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "mar" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "maí" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Meðlimur" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "MeðlimurÃ" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Meðlimir" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Sameina" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Sameining heppnaðist" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Sameining misheppnaðist. Ekki var hægt að stilla EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "Sameining misheppnaðist. Ekki var hægt að stilla IsMerged" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Sameina við" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Sameina við %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Skilaboð" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Mínútur" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Farsími" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Breyta sniðmátum snepla" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Breyta sneplum" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Breyta og búa til notandaskilgreind svið fyrir greinar" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Breyta grein #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "Breyta tengdum viðföngum snepils #%1" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Altæk breyting á efnisatriðum greina" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Breyta altækum réttindum hóps" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Breyta altækum réttindum notanda" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Breyta réttindum hóps fyrir klasa %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Breyta réttindum hóps fyrir notandaskilgreint svið %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Breyta hópréttindum hópsins %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Breyta hópréttindum fyrir biðröðina %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Breyta áhorfendum biðraðar" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "Breyta snepli #%1" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Breyta snepli biðraðar %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Breyta sneplum sem eiga við allar biðraðir" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Breyta þessari leit..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Breyta máli # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Breyta máli #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Breyta málum" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Breyta efnisatriðum greina í þessum klasa" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Breyta notandaréttindum fyrir klasann %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Breyta notandaréttindum fyrir sérsniðna sviðið %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Breyta notandaréttindum fyrir hópinn %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Breyta notandaréttindum fyrir biðröðina %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "mán" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Mánudagur" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Mín %1 mál" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Dagurinn minn" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Minnisatriðin Mín" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mælaborðin mín" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Minnisatriðin mín" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Vistaðar leitir mínar" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "MinnisatriðinMín" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Nafn" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Nafn og netfang" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Nafnið er þegar í notkun" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Aldrei" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Nýtt" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Ný grein" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nýjar Tengingar" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Ný leit" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nýtt lykilorð" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Nýtt minnisatriði" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nýir áhorfendur" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Næst" #: lib/RT/User.pm:96 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Gælunafn" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Nei" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Engar greinar passa við %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Ekkert viðfangsefni" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Engin aðgerð" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Nafn ekki tilgreint" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Ekkert lykilorð sett" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Engin heimild til að skoða grein" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Engar biðraðir fundust sem passa við leitarskilyrðin." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Engin réttindi fundust" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "Engin réttindi til að bæta '%1' við sem AdminCc í þessu máli" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Engin leit til að vinna með." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Ekkert viðfangsefni" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Engir notendur fundust sem passa við leitarskilyrðin." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Enginn" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Ekkert" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Innskráning er eftir." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Ekki stillt" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Er ekki verið að nota farandlegan vafra?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Glósur" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Senda til AdminCcs" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Senda sem athugasemd ti AdminCcs" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "" #: etc/initialdata:47 msgid "Notify Owner" msgstr "" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Láta eiganda vita um höfnun á sínu máli" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Senda eiganda, spyrjendum, Cc og AdminCC" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Senda eiganda, spyrjendum, Cc og AdminCC með athugasemd" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Senda spyrjendum" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Láta mig vita um ólesin skilaboð" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "nóv" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "EÃA" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Hlutur" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "okt" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "" #: etc/initialdata:170 msgid "On Comment" msgstr "" #: etc/initialdata:142 msgid "On Correspond" msgstr "" #: etc/initialdata:131 msgid "On Create" msgstr "" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "Ef Framsent" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Ef Mál er Framsent" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Sé Forgangi Breytt" #: etc/initialdata:199 msgid "On Queue Change" msgstr "" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "" #: etc/initialdata:205 msgid "On Resolve" msgstr "" #: etc/initialdata:176 msgid "On Status Change" msgstr "" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "BCC í þettta eina skipti" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "CC í þettta eina skipti" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Sýna aðeins beiðnir sem samþykktar voru eftir þann %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Sýna aðeins beiðnir sem samþykktar voru fyrir þann %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Sýna aðeins sérsniðna reiti fyrir:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Opna það" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Opin Mál" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Opna slóð" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Opin mál" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Valkostur" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Valkostir" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Raða eftir" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Stofnun/félag" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Upptökin eru í máli: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Skráning á sendu tölvubréfi um athugasemd" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Skráning á sendu tölvubréfi" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Tölvubréf sent" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Eigin mál" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Eigandi" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "Eigandinn '%1' virðist ekki hafa réttindi til að eiga þetta mál." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Eiganda var breytt úr %1 í %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Þvinguð var fram breyting á eiganda úr %1 í %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "EigandaNafn" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Síða" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Síða 1 af 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Síða fannst ekki" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Flettir" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "Foreldri" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Foreldrar" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Lykilorð" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Lykilorð sett" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Lykilorð: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Lykilorðin stemma ekki." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Fólk" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Heimild ekki veitt" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Aðgangi hafnað" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Vinsamlegast athugaðu slóðina (URL) og reyndu aftur." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Vinsamlegast skrifaðu núverandi lykilorð þitt rétt." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Vinsamlegast skrifaðu núverandi lykilorð þitt." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Kjörstillingar" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Kjörstillingar %1 fyrir notanda %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Kjörstillingar vistaðar fyrir %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Kjörstillingar vistaðar." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Fyrra" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Prenta þessi skilaboð" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Forgangur" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Friðhelgi" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Friðhelgi:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Aukin réttindi" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Staða aukinna réttinda: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Notendur með aukin réttindi" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Fyrirspurn" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Gera Fyrirspurn" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Biðröð" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Biðröð %1 fannst ekki" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Biðröð búin til" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Biðröð nr" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Biðröð fannst ekki" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "BiðraðarNafn" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Biðraðir" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Flýtileit" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Búa til mál" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT í stuttu máli" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT kerfið er málaskrá sem hentar fyrirtækjum og er hannað til að hjálpa þér á skilvirkan og skynsamlegan hátt, að stjórna og leysa úr verkefnum, beiðnum, vandamálum, göllum eða allt sem virðist þurfa úrlausnar eða krefst athafnar \"action item.\"" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Raunverulegt Nafn" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Skrá allar endurnýjanir" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Bætt við tilvísun frá %1" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Eytt tilvísun frá %1" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Bætt við tilvísun til %1" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Eytt tilvísun til %1" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Tilvísun frá" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "TilvísunFrá" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Vísar til" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "VísarTil" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Endurlesa (uppfæra)" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Uppfæra þessa síðu á %1 mínútna fresti." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Minnisatriði" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Minnisatriðinu '%1' bætt við" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Minnisatriðið '%1' er klárað" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "Minnisatriðið '%1' er endurvakið" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "Minnisatriði '%1': %2" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Minnisatriði" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Minnisatriði fyrir mál #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Fjarlægja bókamerki" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Svara" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Svara spyrjendum" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Spyrjandi" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Spyrjendur" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Frumstilla" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Frumstilla að sjálfgefnum gildum" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Bústaður" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Leysa" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Leysa mál #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Leyst" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Svara" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Niðurstöður" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Skrifa lykilorð aftur" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Afturkalla" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Ekki var hægt að veita %1 réttindi" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Réttindi Stjórnenda" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Réttindi Starfsmanna" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Hlutverk" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Raðir" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Raðir á hverja síðu" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "lau" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Laugardagur" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Vista" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Vista breytingar" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Vista kjörstillingar" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Vista sem Nýtt" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Vistaði %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Vistaðar leitir" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Sneplar" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Sneplar og Móttakendur" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Leita" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Leita í greinum" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Leitarstillingar" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Leita að greinum sem passa við" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Leita að greinum" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Leita að málum" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Leitarmöguleikar" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "Öryggi:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Sjá einnig:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Leita að greinum í þessum klasa" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Skoða breytingar greina í þessum klasa" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Velja" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Sjá notandaskilgreind svið greina í öllum klösum" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Velja sérsniðin reit" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "Velja snepil" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Velja hóp" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Velja biðröð" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Veldu biðröð fyrir nýja málið þitt" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Velja notanda" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Velja grein úr %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Velja grein til að innifela" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Velja efnisatriði fyrir þessa grein" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "" #: etc/initialdata:117 msgid "Send Forward" msgstr "Senda Ãfram" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "Senda áframsend skilaboð" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Senda eiganda og öllum áhorfendum tölvupóst" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Senda eiganda og öllum áhorfendum tölvupóst sem væri það \"athugasemd\"" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Senda póst til spyrjenda og Cc" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Sendir spyrjendum skilaboð" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "sep" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Séu fleiri færslur, á bil að vera á milli." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Stillingar" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Sýna" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "Sýna valmynd Greina" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Sýna dálka" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Sýna niðurstöður" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Sýna allann meðsendan texta" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Sýna samþykktar beiðnir" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Sýna hausa í stuttri útgáfu" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Sýna hafnaðar beiðnir" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Sýna alla skilaboðahausa" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Sýna lýsingar tengla" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Sýna fyrirliggjandi beiðnir" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Sýna meðsendan texta" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Tætari" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Hliðarslá" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Skrifa undir" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Undirskrift" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Einföld leit" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Stakt" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Nafn vefs" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Stærð" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Smátt" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Sumir vafrar gætu aðeins sótt innihald frá sama léni og RT þjónninn er á." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Raða" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Röðun" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Uppruni" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Töflureiknir" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Þrep" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Byrjaði" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Byrjar" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Fylki" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "Staða" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "Breyta stöðu" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Staða máls breyttist úr %1 í %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Stela málum" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Skref %1 af %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Stolið af %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Stíll" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Viðfangsefni" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Viðfangsefni breytt í %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Senda" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Gerast áskrifandi" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Ãskrift" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Ekki var hægt að búa til áskrift: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "Ãskrift uppfærð" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "sun" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Sunnudagur" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Stillingar kerfis" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Kerfistól" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "" #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Taka málin" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Tekið" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Sniðmát" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Sniðmát" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Grunnatriðin" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Lénanafnið á gagnagrunnsþjóninum þínum (til dæmis 'db.example.com')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "fim" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "fimmtudagur" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Mál" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Mált #%1 Risauppfærsla: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Mál #%1 venslagraf" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Mál #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Mál %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Mál %1 búið til í biðröð '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Mál %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Saga Máls # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Mál Leyst" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Leit í Málum" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Innihald máls" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Lýsigögn máls" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Staða máls breyttist" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Mál" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Mál %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Mál %1 eftir %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Mál sem eru háð þessu samþykki:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Ãætlaður tími" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Tími eftir" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Unninn tími" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tími til birtingar" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "TímiEftir" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Tímabelti" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Titill" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Til" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Ãhöld" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Heild" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Traust" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "þri" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Þriðjudagur" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tegund" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Setja á a: fyrir framan númer greina og t: fyrir framan númer mála." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Ekki tókst að sækja grein" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Ótakmarkað" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Laust" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Uppfæra" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Tegund uppfærslu" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Uppfæra sniðið og leita" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "" #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Uppfæra mál" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Uppfæra mál #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Uppfæra mál #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "StaðaUppfærslu" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Uppfært" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Senda" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Nota önnur áhöldd til að sjá um RT" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Nota á fellilistana til að velja hvaða uppfærslur mála, á að nota til að vinna nýja grein." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Notandi" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Skilgreint af notanda" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Réttindi Notenda" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "" #: lib/RT/User.pm:256 msgid "User created" msgstr "Notandi búinn til" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Notandanafn" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Notendur" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Prófun" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Gildi" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Gildi" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Breyta" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Útgáfunúmer" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Skoða sniðmát snepla" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Skoða Snepla" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "Viðvörun: sameining er óafturkræf aðgerð! Setja skal inn eitt málsnúmer til að sameinast því." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Ãhorfandi" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Ãhorfendur" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Hægt var að finna gagnagrunninn þinn og tengjast sem umsjónarmaður gagnagrunnsins. Þý getur smellt á 'Sérsníða Grunnatrið' til að halda áfram að sérsníða RT." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "mið" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Miðvikudagur" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Velkomin(n) í RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Hvað er RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:137 msgid "When anything happens" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "Þegar greinar úr þessum klasa eru settar inn í lölvupóst:" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Alltaf þegar mál er framsent" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "à hvert skipti sem máli er hafnað" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "à hvert skipti sem mál er leyst" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Alltaf þegar hreyfing eða mál er framsent" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Alltaf þegar hreyfing er framsend" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Alltaf þegar athugasemdir berast" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Útmá" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Vinna" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Já" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Þú mátt breyta þessu mælaborði og áskrift þinni að því í RT." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Þú getur ekki stillt lykilorð." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "" #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Tengla á greinar má setja inn sem \"a:###\", þar sem ### merkir númer greinarinnar." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Þér er velkomið að ská þig inn aftur" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Lykilorðið þitt er ekki stillt." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Notandanafnið þitt eða lykilorð er ekki rétt" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Póstnúmer" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ekkert]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "eftir" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "og áður en" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "og ekki" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "og" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "stöplarit" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "fyrir" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "innihald" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "neðst til efst" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "Þessi snepill virkar á öll viðföng sé hakað við þetta box." #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "haka við til að bæta við" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "smella til að setja/fjarlægja hak við öll viðföng í einu" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "stillingar í kjarna" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "Gera Mál" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "daglega kl. %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "mælaborð" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "mælaborð í valmynd" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "eytt" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "passar ekki við" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "sækja" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "tímalengd" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "nafnlaust" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "jafnt og" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "villa: ekki var hægt að fara neðar" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "villa: ekki var hægt að færa til vinstri" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "villa: ekki var hægt að fara ofar" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "villa: ekkert var til þess að eyða" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "villa: ekkert var til að færa" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "villa: ekkert var til að víxla" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "hverjar" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "fullt" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "stærri en" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "hópur" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "hópur %1" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "hópur '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "málsnúmer" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "þegar í stað" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "í klasa %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "óvirkt" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "efnisyfirlit" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "er" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "er ekki" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "lykill óvirkur" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "lykill útrunninn" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "lykill afturkallaður" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "frá vinstri til hægri" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "minna en" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "passar við" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "mínútur" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "mánaðarlega" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "aldrei" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "nýtt" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "nei" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "ekkert" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "ekki jafnt og" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "ekkert" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "það tókst að fjarlægja viðföngin" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "þann" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "á degi" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "eitt" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "opið" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "opna/loka" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "önnur..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "framkvæma aðgerðir" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "kökurit" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "biðröð %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "hafnað" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "virkar aðeins ef rt-crontool er virkt" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "leyst" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "hægri til vinstri" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "leit" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "sjá atriðaskrá að neðan" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "hliðarslá" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "stillingar vefseturs" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "biðstaða" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "yrðing" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "samantekt" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "kerfi %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "kerfishópur '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "tafla" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "vafrinn þinn (%1) hefur sent haus með tilvísun sem er óleyfileg samkvæmt hýsisnafninu (%2) í uppsetningu RT þjónustunnar" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "vafrinn þinn (%1) hefur sent haus með tilvísun sem er ekki leyfileg samkvæmt hýsisnafninu (%2) í uppsetningu RT þjónustunnar eða leyfðum hýsitölvum (%3)" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "íhluturinn sem kallar tilgreindi ekki ástæðu" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "sjálfgefna netfangið sem verður tilgreint í hausunum Frá: og Svara-Til: fyrir athugasemdir." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "sjálfgefna netfangið sem verður tilgreint í hausunum Frá: og Svara-Til: fyrir bréfaskipti." #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "mál #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "frá toppi til táar" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "endanlegur" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "hópur án lýsingar %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "ótakmarkað" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "bæta við mál" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "bæta við samþykki máls" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "bæta í grein" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "notandi" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "notandi %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "notandanafn" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "vikuleg" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "vikulega ( %1) kl. %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "vikur" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "sem má %1 fyrir þína hönd." #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "hvaða gátt vefþjónninn þinn hlustar á, t.d. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "með hausum" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "Já" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "vafrinn þinn sendi ekki haus með tilvísun" rt-4.4.2/share/po/eu.po0000664000175000017500000123521613131430353014535 0ustar vagrantvagrant# Basque translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 22:20+0000\n" "Last-Translator: Emmanuel Lacour \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "#%2 %1" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "#%2 %3 %1" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "#%2 %1:" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "#%2 %1: %3" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%1, %4(e)ko %2ren %3a" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%1, %6(e)ko %2ren %3a %4:%5" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1, %7(e)ko %2ren %3a %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 gehitua" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2-tik %3-ra aldatua" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 ezabatuta" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 ezabatuta." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 ez da existitzen" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 desgaituta dago" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 gordeta." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 eguneratuta." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 %3 txantiloiarekin" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) %3(e)k" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Aldatu gabe)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (%2 paneletik)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - LogToSTDERR konfigurazio aukera doitu" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - %2 -ri pasatu beharreko argumentu bat" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Egoera aldaketak STDOUT-era atera" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Zehaztu lehen ('first'), azken ('last') edo eragiketa guztiak ('all') erabili nahi dituzun" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Zehaztu erabili nahi dituzun txantiloien izen edo id-a" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Zehaztu komaz banaturiko zerrenda baten erabili nahi dituzun eragiketa motak" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Zehaztu erabili nahi duzun baldintza modulua" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Zehaztu erabili nahi duzun bilaketa modulua" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "%1 EPak" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 Copyright 1996-%3 %4" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "%1 Bertsioa" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 gehituta %2ren balio gisa" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "duela %1" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 existitzen da eta RTren taulak baditu, baina ez du RTren metadaturik. 'Datubasea Inizializatu' pausoak existitzen den datubasean metadatuak sar ditzake geroago. Hau onargarria bada, klik egin beheko 'Oinarrizkoak Pertsonalizatu'n RT pertsonalizatzen jarraitzeko." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 existitzen da, baina ez ditu RTren taula edo metadatuak. 'Datubasea Inizializatu' pausoak existitzen den datubasean metadatuak sar ditzake geroago. Hau onargarria bada, klik egin beheko 'Oinarrizkoak Pertsonalizatu'n RT pertsonalizatzen jarraitzeko." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1k objektu lokal bat dela dirudi, baian ezin da aurkitu datubasean" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 guztiz iniziliazitatua dagoela dirudi. Ez dugu taulak sortu edo metadatuak sartzeko beharrik, baina RT pertsonalizatzen jarraitu dezakezu beheko 'Oinarrizkoak Pertsonalizatu'n klik eginda." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 %2(e)k" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 ezin da talde bat izan" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 aldatuta %2tik %3ra" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 aldatuta '%2'tik '%3'ra" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 kopia" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 funtsezko konfigurazioa" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 ezin izan da %2ra ezarri" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 sortuta" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 ezabatuta" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 desgaituta" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 ez da existitzen." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 gaituta" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "Neure %1 lehentasun handieneko lan-aginduak" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "" #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 dagoeneko %2ra ezarrita" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 RTk posta jasotzeko duen helbide bat da. '%2' gisa gehitzeak posta begizta bat sortuko luke" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 ez da aurrerantzean %2 eremu pertsonalizaturako balio bat izango" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 ez da %2 bat" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 ez da baliozko bizitzabide bat" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 arazo" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 azken eguneratutako artikuluak" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 artikulu berrienak" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "Jabe gabeko %1 lan-agindu berrienak" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objektu" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 %2ra ezarrita" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 gunearen konfigurazioa" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 eguneraketa: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 eguneraketa: Ez da ezer aldatu" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 eguneratuta" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1(r)en %2 objektuak" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1(r)en %2(r)en %3 objektu" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1(r)en uneko pasahitza" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1ren aginte-panelak" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "%1(r)en enkriptazio gakoak" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1(r)en gordetako bilaketak" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: ez da eranskinik zehaztu" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "%1H" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Lan-agindu berria hemen%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "%1A" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "%1U" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "%1e" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "%1o" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%1 artikulu" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%1 egun" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%1 ordu" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%1 ordu %2 minutu" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%1 minutu" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%1 hilabete" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%1 segundu" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%1 aste" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%1 urte" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' ez da baliozko izen bat." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' ez da baliozko klase bat" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' ez da baliozko klase identifikatzaile bat" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Kaxa markatu bukatzeko)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Markatu kaxa ezabatzeko)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Markatu kaxak ezabatzeko)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Sartu lan-agindu id edo URLak, hutsunez bananduta" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Hutsik utzi ezkero, %1 balioa hartuko du)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(Osatugabe)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(okerreko data)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Eremu pertsonalizaturik ez)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Kiderik ez)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Scrip-ik ez)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Txantiloirik ez)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Eguneraketa honen kopia komaz banandutako administratzaile posta-e helbidetara bidaltzen du. Pertsona hauek etorkizuneko eguneraketak jasoko dituzte.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Eguneraketa honen kopia komaz banandutako posta-e helbidetara bidaltzen du. Pertsona hauek etorkizuneko eguneraketak jasoko dituzte.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Erabili eremu hauek baldintza edo ekintza baterako 'User Defined' aukeratzen duzunean)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(edozein)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(Laburpenik ez)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(izenik ez)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(gako publikorik ez!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(baliorik ez)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(baliorik ez)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(beste %1 lan-agindu zain)" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(onespenaren zain)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(derrigorrezkoa)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(fidatu: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(izenburugabea)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(ez fidagarria!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id zaharkitutako argumentu bat da eta ezin da erabili --template argumentuarekin batera" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--transaction argumentua 'first', 'last' edo 'all' bakarrik izan daiteke" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 segundu" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Dagoeneko badago izen bereko txantiloi bat" #: etc/initialdata:258 msgid "A blank template" msgstr "Txantiloi huts bat" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Ez da pasahitzik ezarri, beraz erabiltzaileak ezingo du saioa hasi." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "ETA" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Niri buruz" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Sarbide kontrola" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Ekintza" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "'%1' ekintza ez da aurkitu" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Ekintza burututa." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Ekintza derrigorrezko argumentua da" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Ekintza prest..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Ekintzak" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Lan-agindu aktiboak" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "%1(r)en lan-agindu aktiboak" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Gehitu %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "AdminCc gehitu" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Laster-marka gehitu" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Cc gehitu" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Zutabeak Gehitu" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Irizpidea Gehitu" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Fitxategi Gehiago Gehitu" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Eskatzailea Gehitu" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Balioa Gehitu" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Aukeratutako lan-aginduei iruzkinak edo erantzunak gehitu" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Taldea gehitu" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Hemen gehitu" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Kideak gehitu" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Begirale berriak gehitu" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "%1 honi eskubideak gehitu" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Gehitu termino hauek" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Gehitu termino hauek eta Bilatu" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Erabiltzailea gehitu" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Balioak gehitu" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Objektuen eremu pertsonalizatu balioak gehitu, aldatu eta ezabatu" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Gehituta" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Helbidea" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Helbidea 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Helbidea1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Helbidea2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "Lan egindako denbora %1 minututan doituta" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Admin iruzkina" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Admin Korrespondentzia" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Ilarak administratu" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Pasahitz administratiboa" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Aurreratua" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Bilaketa aurreratua" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Lotzailea" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Onespen Guztiak Pasata" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Klase honetako Artikulu guztiak lan-agindua erantzuteko orriko goitibehera-koadro baten zerrendatuak izan beharko lirakete" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Klase Guztiak" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Eremu pertsonalizatu guztiak" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Aginte-panel Guztiak" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Ilara guztiak" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Lan-agindu guztiak" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "iCal jario guztiek zu baimentzen zaituen token sekretu bat dute txertatuta. Zure iCal jario baten URLa mundura agerian geratu bada, sekretu berri bat lor dezakezu, beheko existitzen diren iCal jario guztiak apurtuaz." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Bilaketa irizpideak betetzen dituzten ilara guztiak" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Lan-agindu guztiak" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Gai guztiak" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Gordetako bilaketak sortzea baimendu" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Gordetako bilaketak kargatzea baimendu" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Txantiloi, scrip, eta abarrean Perl kodea idaztea baimendu" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Enkriptatuta dagoeneko" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "Instantzia bat eman behar da" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Errore bat gertatu da" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Eta/Edo" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Urtero" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Edozein eremu" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "RTk ezagutzen ez duen hitzak lan-aginduen gaiean bilatuko dira" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Aplikatu" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Objektu guztiei aplikatzen zaio" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Aplikatu" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Globalki aplikatu" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Aukeratutako scrip-ak ezarri" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Zure aldaketak aplikatu" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Onespena" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "#%1 Onespena: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "#%1 Onespena: Ez dira oharrak gorde sistemaren errore bategatik" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "#%1 Onespena: Oharrak gordeta" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Onetsita" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Jabearendako Onespena Prest" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Onespena Ukatuta" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Onetsi" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Api" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "#%1 artikulua" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "#%1 artikulua ez da aurkitu" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "#%1 artikulua: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "%1 artikulua sortuta" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Artikulu Administrazioa" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Ez da aurkitu artikulua" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Artikuluak" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "%1 buruzko artikuluak" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "%1 betetzen duten artikuluak" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Gai gabeko artikuluak" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Gora" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Ilara eremu-pertsonalizatuak esleitu eta kendu" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Erantsi" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Fitxategia erantsi" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Erantsitako fitxategia" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Eranskina" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "'%1' eranskina ezin izan da kargatu" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Eranskina sortuta" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Eranskinaren fitxategi-izena" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Eranskinak" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Eranskinen enkripzioa desgaituta dago" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Atributua Ezabatuta" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Abu" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Automatikoki iradokitako gai koloreak ez daude eskuragarri zure irudiarentzat. Instalaturik duzun GD bertsioak onartzen ez duen irudi mota bat igo duzulako izan daiteke. Onartuatko motak hauek dira: %1. Beste irudi mota batzu erabili ahal izateko libgd eta GD.pm birkonpilatu ditzakezu." #: etc/initialdata:261 msgid "Autoreply" msgstr "Erantzun automatikoa" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Eskatzaileei Erantzun Automatikoa" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Eskuragarri" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "Created-LastUpdated Batazbestekoa" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "Created-Resolved Batazbestekoa" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "Created-Started Batazbestekoa" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "Due-Resolved Batazbestekoa" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "Started-Resolved Batazbestekoa" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "Starts-Started Batazbestekoa" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Atzera" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "%1 atributuarendako okerreko pribatasuna" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Oinarrizkoak" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Ezkutuko kopia (bcc)" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Hutsik" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Gorputza" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Belztua" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Laster-marka" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Bilaketa honetarako laster-marka egiteko esteka" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Laster-markadun Lan-aginduak" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Laster-markadun lan-aginduak" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Gaika arakatu" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Prozesu honetan egindako SQL kontsultak arakatu" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Eguneraketa Masiboa" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "EP" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "EPtan bilaketa egin daiteke goiko antzeko sintaxia erabilita %1-rekin." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "Kalkulatu" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "Hauen balioak kalkulatu" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Ezin da kargatu gordetako \"%1\" bilaketa" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Ezin dira aldatu sistemako erabiltzaileak" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Ezin da eremu pertsonalizatu baten izenik gabeko balioa gehitu" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Ezin da aurkitu lan egiteko gordetako bilaketa" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Ezin da birbidali: ez da baliozko posta-e helbiderik eman" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Ezin da lan-agindu bat bere buruari estekatu" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Ezin da ezabatutako lan-agindu bat estekatu" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Ezin da lan-agindu bat bere buruarekin bateratu" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Ezin da lan-agindu sorrera azkarra burutu %1 ilaran derrigorrezko eremu pertsonalizatuak daudelako. Mesedez bukatu lan-agindu sorrera orri normala erabilita." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Ezin da %1 gorde" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Ezin da bilaketa bat gorde izen gabe" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Ezin da gorde bilaketa hau" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "Ezin dira zehaztu oinarri eta helburua batera" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Ezin da zenbaki soil batera esteka gehitu" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Ezin dira lan-aginduak sortu desgaitutako ilara baten" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategoriak honetan daude oinarrituta" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategoria" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Kopia (cc)" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "Kopiak (cc)" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Aldatu" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Posta-e gaia aldatu:" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Pasahitza aldatu" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Ilara aldaketa ez dago inplementatuta" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Diagrama" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Hautatu denak" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Markatu kaxa ezabatzeko" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Semea" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Semeak" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Aukeratu %1(r)en Gai Zerrendatik" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Hiria" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Klasea" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Klase-izena" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Ezin izan da klasea sortu: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Klasea Globalki aplikatuta dago dagoeneko" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Klasea %1(r)i aplikatuta dago dagoeneko" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Klaseak" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Garbitu" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Garbitu Guztia" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Klik egin kolorea aukeratzeko" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Itxita" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Itxitako lan-aginduak" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Balio anitz hautatu edo idatzi" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Combobox: Balio bakarra hautatu edo idatzi" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Combobox: %1 baliorarte hautatu edo idatzi" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Iruzkindu" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Iruzkin Helbidea" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Iruzkin helbidea" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Lan-aginduak iruzkindu" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Iruzkinak" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Iruzkinak (Ez zaizkie eskatzaileei bidaliko)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Erabiltzaile honi buruzko oharrak" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Iruzkinak gehituta" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Ekintza Amaituta" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Baldintza" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "'%1' baldintza ez da aurkitu" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Baldintza derrigorrezko argumentua da" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Baldintzak betetzen du..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Baldintza, Ekintza eta Txantiloia" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "%1 konfigurazio fitxategia blokeatuta dago" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "%1 ilararen konfigurazioa" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Kontaktuan jarri zure RT administratzailearekin %1%2 posta-e%3 bidez." #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Kontaktuan jarri zure RT administratzailearekin." #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Edukia" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Edukia atzera bota da bere tamainak (%1 byte) konfiguratutako gehienezko tamaina (%2 byte) gainditzen duelako." #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Edukia ez da baliozko IP helbide bat" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Edukia ez da baliozko IP helbide barrutia" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Edukia moztua bere tamaina (%1 byte) konfiguratutako tamaina maximoa gainditzen duelako (%2 byte)." #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Korrespondentzia helbidea" #: etc/initialdata:393 msgid "Correspondence" msgstr "Korrespondentzia" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Korrespondentzia gehituta" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Ezin izan da eremu pertsonalizatuaren balio berri bat gehitu: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Ezin izan da jabea aldatu: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Ezin da EremuPertsonalizatua sortu: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Ezin izan da taldea sortu" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Ezin izan da bilaketa sortu: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Ezin izan da lan-agindua sortu. Ez da ilara ezarri" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Ezin izan da erabiltzailea sortu" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Ezin izan da %1 bilaketa ezabatu: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Ezin izan da '%1' taldea aurkitu" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Ezin izan da '%1' erabiltzailea aurkitu edo sortu" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Ezin izan da %1 atributua kargatu" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Ezin izan da %1 Klasea kargatu" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Ezin izan da %1 EremuPertsonalizatua kargatu" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Ezin izan da taldea kargatu" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Ezin izan da %1(r)endako objektua kargatu" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Ezin izan da '%1' erabiltzailea kargatu" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "Ezin izan da %1 %2 bihurtu" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Ezin izan da erabiltzailearen informazioa ezarri" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Ezin izan da %1 zutabea eguneratu: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "Ezin izan da gehitu dagoeneko globala da eta" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Ezin izan da eranskina gehitu" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Ezin izan zaio taldeari kidea gehitu" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Ezin izan da %1(r)en '%2' kode-blokea konpilatu: %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Ezin izan da txantiloiaren '%1' kode-blokea konpilatu: %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Ezin izan da eragiketa bat sortu: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Ezin izan da grabaketa sortu: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Ezin izan da %1 aginte-panela ezabatu: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Ezin izan da errenkada aurkitu" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Ezin izan da eragiketa egokirik aurkitu, alde batera uzten." #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Ezin izan da 'principal' hori aurkitu" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Ezin izan da balio hori aurkitu" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Ezin izan da %1 Klasea kargatu" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Ezin izan da #%1 Eremu Pertsonalizatua kargatu" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Ezin izan da #%1 EremuPertsonalizatua kargatu" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Ezin izan da %1 EremuPertsonalizatua kargatu" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "Ezin izan da %1 #%2-ren kopia kargatu" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Ezin izan da #%1 lan-aginduaren kopia kargatu" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Ezin izan da %1 aginte-panela kargatu: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Ezin izan da #%1 taldea kargatu" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Ezin izan da %1 taldea kargatu" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Ezin izan da esteka kargatu" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "Ezin izan da esteka kargatu: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Ezin izan da %1 objektua kargatu" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Ezin izan da erabiltzailea kargatu edo sortu: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Ezin izan da ilara kargatu" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Ezin izan da #%1 ilara kargatu" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Ezin izan da %1 ilara kargatu" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Ezin izan da '%1' ilara kargatu" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Ezin izan da #%1 scrip-a kargatu" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Ezin izan da #%1 txantiloia kargatu" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Ezin izan da zehaztutako 'principal' kargatu" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Ezin izan da '%1' lan-agindua kargatu" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Ezin izan da #%1 eragiketa kargatu" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Ezin izan da erabiltzailea kargatu" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Ezin izan da #%1 erabiltzailea kargatu" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Ezin izan da #%1 edo '%2' erabiltzailea kargatu" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Ezin izanda '%1' erabiltzailea kargatu" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "Ezin izan da prozesatu Oinarri URIa: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "Ezin izan da prozesatu Helburu URIa: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "Ezin izan da aurreko kidea kendu: %1" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Ezin da edukia enkriptatutako datuekin ordeztu: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "Ezin izan da '%1' esteka bat bihurtu" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Ezin izan da '%1' oinarria URI bat bihurtu" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Ezin izan da '%1' helburua URI bat bihurtu" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Ezin izan da %1(r)en begiralea ezarri: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Ezin izan da gako pribatua ezarri" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Ezin izan da gako pribatua kendu" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Herrialdea" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Sortu" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Lan-aginduak Sortu" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Klase bat sortu" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "EremuPertsonalizatu bat sortu" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "%1 ilararako EremuPertsonalizatu bat sortu" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Artikulu berri bat sortu" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Artikulu berri bat sortu hemen" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Aginte-panel berri bat sortu" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Talde berri bat sortu" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "%1 ilararako txantiloi berri bat sortu" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Erabiltzaile berri bat sortu" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Ilara bat sortu" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Txantiloi bat sortu" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Lan-agindu bat sortu" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Lan-agindu bat sortu erabiltzaile hau Eskatzaile dela Ilaran" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Artikulu bat sortu" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Artikulu bat sortu klasean..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Artikulu sortu klase honetan" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Taldearen aginte-panelak sortu" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Lan-agindu berri bat sortu scrip honen txantiloian oinarrituta" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Aginte-panel pertsonalak sortu" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Sistemaren aginte-panelak sortu" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Lan-agindua sortu" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Lan-aginduak sortu" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Eremu pertsonalizatuak sortu, aldatu eta ezabatu" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Eremu pertsonalizatuen balioak sortu, aldatu eta ezabatu" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Ilara sortu, aldatu eta ezabatu" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Gordetako bilaketak sortu, aldatu eta ezabatu" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Erabiltzaileak sortu, aldatu eta ezabatu" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Sortuta" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Nork Sortua" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "%1 EremuPertsonalizatua sortuta" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Sortzailea" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "%1 bilaketa sortuta" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Sortzailea" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kriptografia" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Uneko Estekak" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Uneko Bilaketa" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Uneko kideak" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Uneko bilaketa" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Uneko begiraleak" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Eremu Pertsonalizatuak" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "%1endako Eremu Pertsonalizatuak" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "%1 ilararendako Eremu Pertsonalizatuak" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Ekintza prestaketarako kode pertsonalizatua" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Baldintza pertsonalizatua" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "#%1 eremu pertsonalizatua ez dago objektu honi aplikatuta" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "%1 %2 %3 eremu pertsonalizatua" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "%1 eremu pertsonalizatua ez zaio objektu honi aplikatzen" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "%1 eremu pertsonalizatuak balio bat du." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "%1 eremu pertsonalizatuak ez du baliorik." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Ez da aurkitu %1 eremu pertsonalizatua" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "%1 eremu pertsonalizatu balioa ezin da aurkitu %2 eremu pertsonalizatuan" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Ezin izan da eremu pertsonalizatuaren balioa ezabatu" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Eremu pertsonalizatuaren balioa ezabatuta" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Pertsonalizatu" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Oinarrizkoak Pertsonalizatu" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Posta-e Helbideak Pertsonalizatu" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Posta-e Konfigurazioa Pertsonalizatu" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Menuan agertuko diren aginte-panelak pertsonalizatu" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Zure RTren itxura personalizatu" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Egunero" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Eguneroko laburpena" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Aginte-panela" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "%1 aginte-panela ezin izan da eguneratu: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "%1 aginte-panela eguneratuta" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Ezin izan da aginte-panela sortu: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Ezin izan da aginte-panela eguneratu: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Aginte-panela eguneratuta" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Aginte-panelak" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Aginte-panelak menuan" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "aginte-panelak %1 erabiltzailearen menuan" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "Data" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Data formatua" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Datak" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "Eguna" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Abe" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Dezifratu" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Ilara lehenetsia" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "Oroigarri txantiloi lehenetsia" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Lehenetsia: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Lehenetsia: %1/%2 aldatuta %3tik %4ra" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Ezabatu" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Txantiloia Ezabatu" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Ezabaketak huts egin du: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Taldearem aginte-panelak ezabatu" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Bizitzabidearen konfigurazioak ezabaketa operazioa desgaitzen du" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Aginte-panel pertsonalak ezabatu" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Sistemako aginte-panelak ezabatu" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Lan-aginduak ezabatu" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Balioak ezabatu" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "%1 ezabatuta" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Ezabatutako kontsultak" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Ezabatutako gordetako bilaketa" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Ezabatutako %1 bilaketa" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Objektu hau ezabatzeak integritate erreferentziala hautsi dezake" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Objektu hau ezabatzeak integritate erreferentziala urratu dezake" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Ukatu" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Menpean ditu" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "%1(e)n menpekotasuna gehituta" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "%1(e)n menpekotasuna ezabatuta" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "%1kiko menpekotasuna gehituta" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "%1kiko menpekotasuna ezabatuta" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Hauen menpeko da" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Behera" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Deskribatu arazoa behean" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Deskribapena" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Zure RT konfigurazioari (setup) buruzko informazio xehetua" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Xehetasunak" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Norabidea" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Desgaituta" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Bistaratu" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Sarbide Kontrol Zerrenda Bistaratu" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "%1 Artikulua Bistaratu" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Bistaratutako Zutabeak" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "Testu-plano eranskin guztiak zabalera finkoko letra-tipoan bistaratu formatua errespetatuz, baina testua egokituta beharrezko denean." #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "Mezuak testu aberastuan bistaratu posible bada" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Testu-plano eranskinak zabalera finkoko letra-tipoan bistaratu" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Lan-agindua bistaratu \"Sorrera azkarraren\" ondoren" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "%1GNU GPLren 2 bertsio%2aren menpean banatuta" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Edozer eta dena egin" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Domeinu-izena" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Ez freskatu etxeko-orria." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Ez freskatu bilaketa emaitzak." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ez freskatu orri hau." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Ez fidatu inola ere gako honetaz" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Jaitsi" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Iraulketa-fitxategia (dumpfile) deskargatu" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Goitibehera-koadroa" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Mugaeguna" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "ERROREA: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Zure lan-agindu irekien eguneraketa erraza" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Zure oroigarrien erraz ikusteko" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Editatu" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Eremu Pertsonalizatuak Editatu" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "%1endako Eremu Pertsonalizatuak Editatu" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Talde guztiendako Eremu Pertsonalizatuak editatu" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Ilara guztiendako Eremu Pertsonalizatuak editatu" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Erabiltzaile guztiendako Eremu Pertsonalizatuak editatu" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Klase guztietan dauden artikuluen Eremu Pertsonalizatuak editatu" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Ilara guztietako lan-aginduen Eremu Pertsonalizatuak editatu" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Estekak Editatu" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Kontsulta Editatu" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Bilaketa Editatu" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Gaien hierarkia orokorra editatu" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Sistema txantiloiak editatu" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "%1(e)n gai hierarkia editatu" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "%1 eremu pertsonalizatua editatzen" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "%1 taldeko kidetasuna editatzen" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Jatorria edo helburua zehaztu behar dira" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Ez duzu %1 gordetako bilaketa ikusteko eskubiderik edo identifikatzailea ez da zuzena" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "Igarotakoa" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "Posta-e" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Helbide Elektronikoa" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Laburpena Postaz" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "Posta-e iturburua %1 lan-agindu, %2 eranskinarendako" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Post-e helbidea erabilita dago" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Posta-e banaketa" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Posta-e bidezko aldizkako laburpen jakinarazpenen txantiloia" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "Hutsik" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Gaituta" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Gaituta (Kaxari marka kentzeak klase hau desgaitzen du)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Gaituta (Kaxari marka kentzeak eremu pertsonalizatu hau desgaitzen du)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Gaituta (Kaxari marka kentzeak talde hau desgaitzen du)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Gaituta (Kaxari marka kentzeak ilara hau desgaitzen du)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Gaituta (kaxari marka kentzeak scrip hau desgaituko du)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Gaitutako Klaseak" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Gaitutako Ilarak" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Bilaketa irizpidea betetzen duten gaitutako ilarak" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "%1 egoera gaituta" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Enkriptatu" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "#%2 lan-aginduaren #%1 eragiketa enkriptatu/desenkriptatu" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Artikulu honekin erlazionatutako artikulu, lan-agindu edo bestelako URLak sartu" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "IP helbide barruti anitz sartu" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "IP helbide anitz sartu" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Balio anitz sartu" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Balio anitz sartu auto-osaketarekin" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Idatzi objektuak edo URIak objektuak horietara estekatzeko. Banandu sarrera anitz hutsune batekin." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "IP helbide bakarra sartu" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "IP helbide barruti bakarra sartu" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Balio bakarra sartu" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Idatzi balio bat auto-osaketarekin" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Idatzi ilarak edo URIak ilarak horietara estekatzeko. Banandu sarrera anitz hutsune batekin." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Idatzi lan-aginduak edo URIak lan-aginduak horietara estekatzeko. Banandu sarrera anitz hutsune batekin." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "Idatzi lan-aginduak edo URIak zeinetara estekatzeko. Balio anitzak hutsuneekin banandu." #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Lehenetsi denbora ordutan sartzea" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Gehienez %1 IP helbide barruti idatzi" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Gehienez %1 IP helbide idatzi" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Errorea" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "Errorea eranskina kargatzerakoan" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Errorea: aginte-panela faltan" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Errorea: ezin da aldatu existitzen den bilaketa baten pribatasuna" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Errorea: ezin izan da %1 gordetako bilaketa kargatu: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Errorea: ez dago gako pribaturik" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Errorea: gako publikoa" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Errorea: %1 bilaketa ez da eguneratu: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Estimatuta" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Edonork" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Adibidea:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Iraungi" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Kanpo-autentifikazioa gaituta." #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Informazio gehigarria" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Artikuluak Atera" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "#%1 lan-agindutik artikulu berri bat atera" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "#%1 lan-agindutik %2 klaseko artikulu berri bat atera" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Atera etiketak Eragiketaren gaitik eta gehitu Lan-aginduaren gaiari." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Datubasera konektatzeak huts egin du: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "%1 atributua sortzeak huts egin du" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "%1 %2 kargatzeak huts egin du" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "%1 %2 kargatzeak huts egin du: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "%1 modulua kargatzeak huts egin du. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "%1 objektua kargatzeak huts egin du" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Txantilolia kargatzeak huts egin du" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Txantiloia prozesatzean huts egin du" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Ots" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Jarioak" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Eremua" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Fitxategi-izena" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Kaxak kolorez bete hau erabilita" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Testu-kaxa anitz bete" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Wikitext kaxa anitz bete" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Testu kaxa bakarra bete" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Wikitext kaxa bakarra bete" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Eremu hau URL batekin bete" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Azkeneko Lehentasuna" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Erabiltzaile bat aurkitu" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Aurkitu ondokoa betetzen duten erabiltzaile guztiak" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Aurkitu ondokoa betetzen duten talde guztiak" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Aurkitu ondokoa betetzen duen jende guztia" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Lan-aginduak aurkitu" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Amaitu" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Lehena" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Aldaketa behartu" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formatua" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Birbidali" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Mezua Birbidali" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Mezua Birbidali eta Itzuli" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Lan-agindua Birbidali" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Mezuak RTtik at birbidali" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "#%1 lan-agindua birbidali" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "#%1 eragiketa birbidali" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "%3#%1 eragiketa%4 %2(r)i birbidalita" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Lan-agindua %1ra birbidalita" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "%1 lan-agindu aurkituak" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Objektua Aurkituta" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Maiztasuna" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Ol." #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Ostirala" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Nork" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD desgaituta edo instalatu gabe dago. Irudi bat igo dezakezu, baina ez duzu kolore iradokizun automatikorik lortuko." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Orokorra" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Eskubide orokorrak" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Erabiltzen hasteko" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "%1(r)i emanda" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Globala" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Atributu Globalak" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Gai Globalak" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Eremu pertsonalizatu globalen konfigurazioa" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Joan" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Taldera joan" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Erabiltzailera joan" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Joan!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Lan-agindura Joan" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Lan-agindura joan" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Grafikoa" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Grafikoaren Propietateak" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Diagrama grafikoak ez daude erabilgarri" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Taldea" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Talde Eskubideak" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Kidea taldean da dagoeneko: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "Taldekatzea" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Ezin izan da taldea sortu: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Taldea sortuta" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Taldea desgaituta" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Taldea gaituta" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Taldean ez dago horrelako kiderik" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "'%1' talde izena erabilita dago" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Ez da taldea aurkitu" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "Lan-aginduak honela taldekatu" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "Taldea: %1" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "Taldekatutako bilaketa emaitzak" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Taldeak" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Taldeak ezin dira beraien kideen kide izan" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Bilaketa erizpideak betetzen dituzten taldeak" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Erabiltzaile hau kidetzat dituzten taldeak" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Birbidalitako mezu baten goiburua" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "Altuera" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Kaixo!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Ezkutatu aipatutako testu guztiak" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Ezkutatu aipatutako testua" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historia" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "#%1 artikuluaren historia" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "%1 taldearen historia" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "%1 ilararen historia" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "%1 erabiltzailearen historia" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Etxeko-telefonoa" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Etxeko orria freskatze tartea" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Etxeko-orria" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Ordua" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "Orduro" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Ordu" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Nortasuna" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Goiko zerbait eguneratu baduzu, ez ahaztu" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "%1(e)n legez-kanpoko balioa" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Eremu aldaezina" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Lan-agindu ez aktiboak" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Sartu Artikulua:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Gehitu artikulu laburpena" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "Gehitu '%1' eremu pertsonalizatua" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Desgaitutako klaseak zerrendan sartu." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Desgaitutako eremu pertsonalizatuak zerrendan sartu." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Desgaitutako taldeak ere zerrendan sartu" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Desgaitutako ilarak zerrendan sartu." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Desgaitutako erabiltzaileak bilaketan sartu." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Orria sartu" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Azpi-gaiak sartu" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Mezuak banaka" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Erabiltzaileari jakinarazi harpidetu duen aginte-panel bat falta dela" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Haserako lehentasuna" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Barne-errorea: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Barne-errorea: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "%1 baliogabea" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "%1 argumentu baliogabea" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "%1 baliogabea: '%2'k ez dirudi posta-e helbide bat" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "%1 baliogabea: zenbaki bat izan beharko litzateke" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Klase Baliogabea" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Baliogabeko Eremu Pertsonalizatu balioen jatorria" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Ilara baliogabe, ezin Klasea aplikatu: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Datu baliogabea" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Objektu baliogabea" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Eredu baliogabea: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Ilara baliogabea" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Eskubide baliogabea" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Baliogabeko balioa eremu pertsonalizaturako" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "Dagoeneko objektuari gehituta dago" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Ez dago enkriptatuta" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "" #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Etzana" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Urt" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Taldean sartu edo utzi" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Uzt" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Eka" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Hizkuntza" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Handia" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Azkena" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Azken Kontaktua" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Azkenekoz Kontaktatuta" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Azkenekoz Eguneratua" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Azken Eguneraketaren Egilea" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Azken eguneratzea" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Azken eguneraketaren egilea" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "LastUpdateRelative" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Ezker" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legendak" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Luzeera karakteretan; Erabili '0' mezu guztiak linean erakusteko, luzeera kontuan izan gabe" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Erabiltzaile honi utzi RTra sartzen" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Erabiltzaile honi eskubideak eman dakioke" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Goazen!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Bizitzabidea" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Esteka" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Esteka existitzen da dagoeneko" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "Ezin izan da esteka sortu: %1" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "Ezin izan da esteka ezabatu: %1" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Ez da esteka aurkitu" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "#%1 lan-agindua estekatu" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Balioak honi lotu" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Estekatuta" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "Ez dago baimenduta ezabatutako %1 bat estekatzea" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Estekak" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Zerrenda" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Kargatu" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Kargatu gordetako bilaketa" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Kargatu gordetako bilaketa" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Kargatu gordetako bilaketa:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "%2 %1 kargatuta" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Kargatuta gordetako \"%1\" bilaketa originala" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Perl moduluak kargatuta" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Kargatuta gordetako \"%1\" bilaketa" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Kargatzen..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Kokapena" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Saioa hasita" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Saioan %1 gisa" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Saiotik at" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Saioa hasi" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Saioa amaitu" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Posta" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Esteka mota nagusia" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Jabe Egin" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Egoera Egin" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Eremu pertsonalizatuak eta beraien balioak kudeatu" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Taldeak eta talde partaidetzak kudeatu" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Ilara guztiei dagozkien propietate eta konfigurazioak kudeatu" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Ilarak eta ilarei dagozkien propietateak kudeatu" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Gordetako grafikoak kudeatu" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Erabiltzaile eta pasahitzak kudeatu" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "%1 eta %2 bizitzabideen arteko elkarrekikotasuna ez da osoa. Zure sistema administratzailearekin kontaktuan jarri." #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Markatu mezu guztiak ikusitako gisa" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Gehienezko lineako mezu luzeera" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Mai" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Neroni" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Kidea" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "%1 kidea gehituta" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "%1 kidea ezabatuta" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Kidea gehituta: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Kidea ezabatuta" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Kidea ez da ezabatu" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Kideak" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "%1(e)ko kidetasuna gehituta" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "%1eko kidetza ezabatuta" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Kidetasunak" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "%1 taldearen kideak" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "%1 erabiltzailearen kidetasunak" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Bateratu" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Bateratze Arrakastatsua" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Bateratzeak huts egin du. Ezin izan da EffectiveId ezarri" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "Bateratzeak huts egin du. Ezin izan da IsMerged esleitu." #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Honekin Bateratu" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "%1(e)kin bateratuta" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Mezua" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Mezuaren gorputza ez da erakusten handiegia delako" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Ez da mezuaren gorputza erakutsi ez delako testu arrunta" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Mezu kaxaren altuera" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Mezu kaxaren zabalera" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Mezua ezin izan da grabatu" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Erabiltzailearendako mezua" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Mezua grabatuta" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Pasahitzaren guxieneko luzeera" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minutu" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Hainbat" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Sakelekoa" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Sakelako telefonoa" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Aldatu" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Kideak Aldatu" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Artikuluentzako Eremu Pertsonalizatuak aldatu eta sortu" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "#%1 artikulua aldatu" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Eremu pertsonalizatu balioak aldatu" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "#%1 lan-aginduaren datak aldatu" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Artikulu gai globalak aldatu" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Eremu pertsonalizatu globalak aldatu" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Talde eskubide globalak aldatu" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Gai globalak aldatu" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Erabiltzaile eskubide globalak aldatu" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Taldearen aginte-panelak aldatu" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Taldearen metadatuak aldatu edo taldea ezabatu" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "%1 klaserako talde eskubideak aldatu" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "%1 eremu pertsonalizaturako talde eskubideak aldatu" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "%1 talderako talde eskubideak aldatu" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "%1 ilararako talde eskubideak aldatu" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Klase honetarako metadatu eta eremu pertsonalizatuak aldatu" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "#%1 lan-aginduarekin erlazionatutako jendea aldatu" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Aginte-panel pertsonalak aldatu" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Ilararen begiraleak aldatu" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Ilara guztietara aplikatzen diren scrip-ak aldatu" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Sistemaren aginte-panelak aldatu" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "%1 txantiloia aldatu" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "%2 ilararako %1 txantiloia aldatu" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Ilara guztiei aplikatzen zaien txantiloiak aldatu" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "%1 aginte-panelaren edukia aldatu" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "%1 aginte-panela aldatu" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "\"RT begiratu batean\" ikuspegi lehenetsia aldatu" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "%1 taldea aldatu" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "%1 aginte-panelera harpidetza aldatu" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "%1 erabiltzailea aldatu" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Bilakeat hau aldatu..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "# %1 lan-agindua aldatu" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "#%1 lan-agindua aldatu" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Lan-aginduak aldatu" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "%1 klaserako erabiltzaile eskubideak aldatu" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "%1 eremu pertsonalizatuaren erabiltzaile eskubideak aldatu" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "%1 talderako erabiltzaile eskubideak aldatu" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "%1 ilararako erabiltzaile eskubideak aldatu" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "#%1 lan-aginduaren posta nork jasoko duen aldatu" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modulua" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Al." #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Astelehena" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "Hilabetea" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "Hilero" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Eskatzaileei buruz gehiago" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "Mugitu" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Mugitu hona" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Anitza" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "'Name' atributua adierazi behar da" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Nere %1 lan-agindu" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Nere Onespenak" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Nere Eguna" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Nere Oroigarriak" #: etc/initialdata:890 msgid "My Tickets" msgstr "Nire lan-aginduak" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Nere onespenak" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "Nire amaitutako lan-aginduak" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Nere aginte-panelak" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Nire irekitako lan-aginduak" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Nere oroigarriak" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Nere gordetako bilaketak" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "ERRENKADABERRIA" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Izena" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Izena eta posta-e helbidea" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Izena erabilita" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "Izena behar da" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Izena:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Inoiz ez" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Berria" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Artikulu Berria" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Aginte-panel Berria" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Esteka Berriak" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Bilaketa Berria" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Mezu berriak" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Pasahitz berria" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Pasahitz berri jakinarazpena bidalita" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Oroigarri berria:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Lan-agindu berria" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Lan-agindu berria ez da existitzen" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Lan-agindu berriek ezin dute '%1' egoera izan ilara honetan." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Begirale berriak" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Hurrengoa" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Goitizena" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Ezizena" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Ez" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "Ez da %1(r)ik kargatu" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Ez dago %1 betetzen duen Artikulurik" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Ez da Klaserik definitu" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Ez da aurkitu bilaketa erizpidea betetzen duen Klaserik." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Gairik ez" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Txantiloirik ez" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Ekintzarik ez" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Ez da zutaberik zehaztu" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Ez dago deskribapenik %1-rentzako" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "Ez dago %1 txantiloi globalik" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Ez da talderik zehaztu" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Ez dago bilaketa irizpideak betetzen dituen talderik" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "Ez zaude baimenduta" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Ez da mezurik erantsi" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Ez da izenik eman" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Ez da pasahitzik ezarri" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Ilarak sortzeko baimenik ez" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "'%1' ilaran lan-aginduak sortzeko baimenik ez" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Lan-agindu hori bistaratzeko baimenik ez" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Ez duzu baimenik sistema-mailako bilaketak gordetzeko" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Hobespenak ezarteko baimenik ez" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Artikulua ikusteko baimenik ez" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Ez duzu baimenik lan-agindu eguneraketa ikusteko" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Ez dago bilaketa irizpideak betetzen dituen ilararik." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Ez da eskubiderik zehaztu" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Ez da eskubiderik aurkitu" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "Ez duzu eskubiderik '%1' AdminCC gisa gehitzeko lan-agindu honetan" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Gairik ez" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Ez da lan-agindurik aurkitu." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Ez da aurkitu bilaketa erizpidea betetzen duen erabiltzailerik" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Inor ez" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Ez da aurkitu" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Saioa hasi gabe." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Ezarri gabea" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Oharrak" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Ezin izan da jakinarazpena bidali" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Jakinarazi Beste Hartzaileak" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Beste Hartzaileei Jakinarazi Iruzkin gisa" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Jabeari Jakinarazi" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Jabeari Jakinarazi Iruzkin gisa" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Jabeei jakinarazi beraien baztertutako lan-aginduak" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Jabeak, Eskatzaileak, CC eta AdminCC-ak jakinarazi" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Jabeak, Eskatzaileak, CC eta AdminCC-ak jakinarazi iruzkin gisa" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Jakinarazi Eskatzaileei beraien lan-agindua onetsia izan dela onartu behar dutenen guztien partetik" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Jakinarazi Eskatzaileei beraien lan-agindua onetsia izan dela onartu behar dutenen batzuen partetik" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Eskatzaileei jakinarazi" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Eskatzaile eta CC-ei jakinarazi" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Eskatzaile eta CC-ei jakinarazi iruzkin gisa" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Jakinarazi neri irakurri gabeko mezuak daudela" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Aza" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "EDO" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objektua" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Ezin izan da objektua sortu" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Ezin izan da objektua ezabatu" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objektua sortuta" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objektua ezabatuta" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Objektu zerrenda hutsik dago" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Urr" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "%1ean, %2(e)k idatzi zuen:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "" #: etc/initialdata:170 msgid "On Comment" msgstr "" #: etc/initialdata:142 msgid "On Correspond" msgstr "" #: etc/initialdata:131 msgid "On Create" msgstr "" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "" #: etc/initialdata:199 msgid "On Queue Change" msgstr "" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "" #: etc/initialdata:205 msgid "On Resolve" msgstr "" #: etc/initialdata:176 msgid "On Status Change" msgstr "" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Sarrerarako bakarrik, ez bistaratzeko" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Honendako eremu pertsonalizatuak bakarrik erakutsi:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Ireki" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Irekitako Lan-aginduak" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "URLa Ireki" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Lan-agindu irekiak" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Aukera" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Aukerak" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Honegatik ordenatu" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Erakundea" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Jatorrizko lan-agindua: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Irteera posta-e grabatuta" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Kanpora doan posta" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Gainbegiratua" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Lan-aginduen jabe izan" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Jabea" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "'%1' jabeak ez du eskubiderik lan-agindu honen jabe izateko." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Jabea aldatua %1tik %2ra" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Orria" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "" #: share/html/dhandler:48 msgid "Page not found" msgstr "Ez da orria aurkitu" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "\"Busca\"" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Gurasoak" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Pasahitza" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Pasahitza aldatuta" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Pasahitza ez da ezarria izan" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Pasahitzak gutxienez %1 karaktere izan behar ditu" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Pasahitza ezarrita" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Pasahitza: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Pasahitzak ez datoz bat." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Jendea" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "%1 ilararekin erlazionatutako jendea" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Erabiltzaileak definitutako ekintza bat egin" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "RT-tik datuak behin-betiko ezabatu" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Baimena Ukatuta" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Baimena Ukatuta" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefono zenbakiak" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "Irudia" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Mesedez zuzen sartu zure oraingo pasahitza." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Mesedez sartu zure oraingo pasahitza." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Hobespenak" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Hobespenak gordeta." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Aurr" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Inprimatu mezu hau" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Lehentasuna" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Pribatutasuna" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Pribatutasuna:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Kontsultak" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Kontsulta" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Kontsulta Eraikitzailea" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Ilara" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "%1 ilara ezin izan da kargatu" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Ez da aurkitu %1 ilara" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Ilara Izena" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Ilara existitzen da dagoeneko" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Ezin izan da ilara sortu" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Ezin izan da ilara kargatu" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Ilara sortuta" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Ilara id-a" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Ez da ilara aurkitu" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Ilarak" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Nik kudeatzen ditudan ilarak" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Bilaketa azkarra" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Lan-agindu sorrera azkarra" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT begiratu batean" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "%1 erabiltzailearen RT begiratu batean" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RTk beste web zerbitzu bateko edukia erakutsi dezake eremu pertsonalizatu honetan." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RTk eremu pertsonalizatu honen balioak beste zerbitzu baterako esteka bihur ditzake." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RTk %1 eta %2 errenkada id eta eremu pertsonalizatuaren balioekin ordezkatuko ditu, hurrenez hurren." #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Berriz ireki" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Benetako Izena" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Hartzaileak" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Eguneraketa guztiak gorde" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Hauek erreferentziatua" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Hauei erreferentzia egiten die" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Freskatu" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Orri hau %1 minuturo freskatu." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Baztertu" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Ilara lehenetsia gogoratu" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Oroigarria" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "'%1' oroigarria gehituta" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "'%1' oroigarria eginda" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "'%1' oroigarria berrirekita" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "'%1' oroigarria: %2" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Oroigarriak" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "#%1 lan-agindurako oroigarriak" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Laster-marka Kendu" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Eskatzailea Kendu" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Jabeen goitibehera-koadroak testu-kaxekin ordezkatzen du" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Erantzun" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Eskatzaileei erantzun" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Eskatzailea" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Eskatzaileak" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Berrezarri" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Berrezarri RT begiratu batean" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Berrezarri autentikazio token sekretua" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Lehenetsira berrezarri" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "RT Logo lehenetsira berrezarri" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "RT Tema lehenetsira berrezarri" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Bizilekua" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Amaitu" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "#%1 (%2) lan-agindua amaitu" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Amaituta" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Erantzun" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Emaitzak" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Lan-agindu honetara itzuli" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Pasahitza berriro idatzi" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Leheneratu" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Eskubidea Kargatuta" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Eskubidea ezin da errebokatu" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Eskubidea ez da kargatu." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Ezin izan dira %1rako eskubideak eman" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Administratzaile eskubideak" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Langilego eskubideak" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Errenkadak" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Errenkadak kaxako" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Errenkadak orriko" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL Kontsultak" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Lr." #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Larunbata" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Gorde" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Aldaketak Gorde" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Gorde Hobespenak" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Berria bezala Gorde" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Gorde berria" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Gorde bilaketa hau" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "%1 %2 gordeta" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Gordetako bilaketa" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Gordetako Bilaketak" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Gordetako diagramak" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "Ez da aurkitu %1 gordetako bilaketa" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Gordetako bilaketak" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "Eskema eguneraketa %1-tik" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Scrip-a Sortuta" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Scrip-ak" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Scrip-ak eta Hartzaileak" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Bilatu" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "%1 bilaketa eguneratuta" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Artikuluak Bilatu" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Bilaketa Hobespenak" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Onespenak bilatu" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Artikuluak bilatu" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Lan-aginduak bilatu" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "Lan-aginduen bilaketa egin %1id%2 zenbakiak, gaien hitzak %1\"komatxo artean\"%2, %1ilaren%2 izenak, Jabeen %1erabiltzaile-izenak%2, Eskatzailern %1post-e helbideak%2, eta lan-aginduen %1egoerak%2 erabilita. %1@domainname.com%2 bilatuz gero, domeinu horretako eskatzaileak dituzten lan-agindu guztiak itzuliko dira." #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Bilaketa aukerak" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Bilaketa emaitzak" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Bilaketa emaitzak freskatzeko tartea" #: share/html/Search/index.html:48 msgid "Searches" msgstr "Bilaketak" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Autentikazio token sekretua" #: bin/rt-crontool:352 msgid "Security:" msgstr "Segurtasuna:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Ikus halaber:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Klase honetako artikuluak ikusi" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Hautatu" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Klase guztietan dauden Artikuluen Eremu Pertsonalizatuak hautatu" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Klase bat Hautatu" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Eremu pertsonalizatu bat Hautatu" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Sekziorako kolore bat hautatu" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Talde bat hautatu" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Ilara bat hautatu" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Aukeratu ilara bat zure lan-agindu berriarendako" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Sekzio bat hautatu" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Erabiltzaile bat hautatu" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "%1ko Artikulu bat hautatu" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Beste hizkuntza bat hautatu" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Ilara guztietarako eremu pertsonalizatuak hautatu" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Erabiltzaile talde guztietarako eremu pertsonalizatuak hautatu" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Erabiltzaile guztietarako eremu pertsonalizatuak hautatu" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Ilara guztietako lan-aginduendako eremu pertsonalizatuak hautatu" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Ilara guztietako lan-aginduen eragiketendako eremu pertsonalizatuak hautatu" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Data hautatu" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Data-ordua hautatu" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Data anitz hautatu" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "Data-ordu anitz hautatu" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Balio anitz hautatu" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Balio bakarra hautatu" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Aukeratu \"RT begiratu batean\" orrian bistaratzeko ilarak" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Artikulu honetarako gaiak hautatu" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Hautatutako Eremu Pertsonalizatuak" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Hautatutako Ilarak" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Hautatutako gakoa ez da fidagarria edo ez da existitzen." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Hautatutako objektuak" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Hautapenak aldatuta. Mesedez, gorde zure aldaketak." #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Jabeari eta begirale guztiei mezua bidali" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Jabe eta begirale guztiei mezu bidali \"iruzkin\" gisa" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Eskatzaile eta CC-ei bidali mezua" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Eskatzaile eta CC-ei bidali mezua iruzkin gisa" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Eskatzaileei mezu bat bidaltzen die" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Jabeari mezu bat bidaltzen dio" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Ira" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Banandu sarrera anitz hutsuneekin." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Ezarpenak" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Erabiltzaile-izen motzak" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "RTk zuk egindako lan-agindu eguneraketengatik posta bidali beharko lizuke?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Erakutsi" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Erakutsi Zutabeak" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Emaitzak Erakutsi" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Aipatutako testu guztiak erakutsi" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Erakutsi baita" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Goiburu laburrak erakutsi" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Ukatutako eskariak erakutsi" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Goiburu osoak erakutsi" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Erakutsi txantiloi globalak" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "Historia erakutsi" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Esteka deskribapenak erakutsi" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "Ez erakutsi Eskatzailearen lan-agindurik" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Erakutsi historia zaharrena lehenengo" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Aipatutako testua erakutsi" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Erakutsi Eskatzailearen lehentasun handieneko 10 lan-agindu aktibo" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Erakutsi Eskatzailearen lehentasun handieneko 10 lan-agindu ez-aktibo" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Erakutsi Eskatzailearen 10 lehentasun handieneko lan-aginduak" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Erakutsi lan-aginduaren historia" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Birrintzailea" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Albo-barra" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Sinatu" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Sinatu besterik adierazi ezean" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Izena eman lan-agindu Eskatzaile edo lan-agindu edo ilara CC gisa" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "%1 %2 sinatu %3 erabilita" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Sinadura" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Soila" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Oinarrizko Bilaketa" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Bakarra" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Gunearen izena" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Tamaina" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Menua Salto egin" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Desgaitutako erabiltzailea salto egiten" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Txikia" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Zerbait gaizki doa. Jarri kontaktuan sistemaren administratzailearekin" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Ordenatu" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Ordena" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Eguneroko edo asteroko ejekuzioa den zehaztu" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Kalkulu-orria" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Izoztu" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Hasita" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Hasiera" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Estatua" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "Egoera" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "'%1' egoera ez da baliozko egoera ilara honetako lan-aginduentzat" #: etc/initialdata:449 msgid "Status Change" msgstr "Egoera Aldaketa" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Egoera %1tik %2ra aldatuta" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Egoera aldaketak" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Lapurtu" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Lan-aginduak lapurtu" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "%1(r)i lapurtuta" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Estiloa" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Gaia" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Gaia %1ra aldatuta" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Bidali" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Harpidetu" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "%1 aginte-panelera harpidetu" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Aginte-paneletara harpidetu" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "%1 aginte-panelera harpidetuta" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Harpidetza" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Ezin izan da harpidetza sortu: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Laburpena" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Ig." #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Igandea" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Geldiarazi" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "Sistema" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Sistemaren Konfigurazioa" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Sistemaren Lehentsia" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Sistema Errorea" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Sistema Errorea: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Sistemaren Tresnak" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Sistema errorea" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Sistema errorea. Eskubidea ez da eman." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Hartu" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Lan-aginduak hartu" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Hartuta" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Txantiloia" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "#%1 txantilolia ezabatuta" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "'%1' txantiloia ez da aurkitu" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Txantiloia hutsik dago" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Txantiloia prozesatuta" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Txantiloiak" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "%1 ilararako txantiloiak" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Testua" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Hori ez da eremu pertsonalizatu honendako balio bat" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Lan-aginduak konpondu gabeko menpekotasunak ditu" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Erabiltzaile hori lan-aginduaren jabe da dagoeneko" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Erabiltzaile hori ez da existitzen" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Erabiltzaile hori ezin da ilara horretako lan-aginduen jabe izan" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Oinarrizkoak" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Ondorengo kontsultak ezabatuak izan dira eta aginte-paneletik kenduko dira bakoitzaren panela eguneratutakoan." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Ondorengo kontsultak baliteke ez izatea ikusgai aginte-panela ikusi dezaketen erabiltzaile guztientzat." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "Gakoa desgaitua izan da" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "Gakoa atzera botea izan da" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "Gakoa iraungi da" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Balio berria ezarria izan da." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Lan-agindu baten jabea" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Eskatu duzun orria ezin izan da aurkitu" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Lan-agindu baten eskatzailea" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "Aukeratu dituzun ezarpenak %1-en gordeta daude." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Gaia (itxura)" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Irakurri gabeko mezuak daude lan-agindu honetan." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "'%1' izendun talde bat baino gehiago dago. Honek inkonsistentzia eragin dezake administrazio interfazeko zebait ataletan, eta, beraz, talde gatazkatsuei izena aldatzea gomendatzen da." #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "Ez dago %1 eta %2 bizitzabideen egoeren arteko elkarrekikotasunik. Zure sistema administratzailearekin kontaktuan jarri." #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Eremu Pertsonalizatu honek ezin du balio zerrenda izan" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "Eremu pertsonalizatu hau ezin zaio objektu horri gehitu" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "Lan-agindu hau ezin da amaitu onartuta dagoen arte." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" "Lan-agindu hau ezin da amaitu bere %numerate(%1,dependentzia,dependentziak) amaitu arte.\\r\n" "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Eragiketa honek ez duela edukirik dirudi" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "Erabiltzaile honen lehentasun handieneko %1 %2 lan-aginduak" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Og." #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Osteguna" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Lan-agindua" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "#%1 lan-aginduaren Jumbo eguneraketa: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "#%1 lan-aginduaren erlazio grafikoa" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "#%1 lan-agindua: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "%1 lan-agindua" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "%1 lan-agindua '%2' ilaran sortuta" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "%1 lan-agindua: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "# %1 %2 Lan-aginduaren Historia" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Lan-agindua Amaituta" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Lan-agindu Bilaketa" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Lan-agindu Eragiketak" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Lan-agindu eta Eragiketa" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Lan-agindu konposaketa" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Lan-aginduaren edukia" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Lan-aginduaren eduki mota" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Ezin izan da lan-agindua sortu barne-errore bategatik" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Ezin izan da lan-agindua kargatu" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "Agindu kopurua" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Lan-agindu bistaratzea" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Lan-aginduaren metadatuak" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Lan-aginduaren egoera aldatuta" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Lan-agindua eguneratu" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Lan-aginduak" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "%1 %2 lan-aginduak" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "%2(e)k egindako %1 lan-aginduak" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Neure lan-aginduak" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Onarpen honen mende dauden lan-aginduak:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Estimatutako Denbora" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Falta den Denbora" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Lan egindako Denbora" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Ordu-eremua" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Izenburua" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Nori" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Tresnak" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Gai Izena" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Ez da gaia aurkitu" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Gaiak" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Guztira" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "Eragiketa" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "%1 eragiketa betiko borratuta" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Eragiketa Sortuta" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Eragiketa Eremu Pertsonalizatuak" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "Eragiketak" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Eragiketak aldaezinak dira" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Fidatu" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "Probatu" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Ar." #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Asteartea" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Mota" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Idatzi a: artikulu zenbakien aurretik eta t: lan-agindu zenbakien aurretik." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Ezin zehaztu objektu mota edo id-a" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "Ezin ezarri pribatasun id-a: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "Ezin ezarri pribatasun objektu edo id-a: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "Ezin ezarri pribatasun objektua: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "Ezin da %1 aginte-panelera harpidetza egin: Baimena Ukatuta" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "Baimenik gabe" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Desezabatu" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Eremu ezezaguna: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Mugagabe" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Mugagabea" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Aginte-panel izengabea" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Bilaketa izengabea" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Jaberik gabeko lan-aginduak" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Jaberik gabeko lan-aginduak" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Hautatu gabeko Eremu Pertsonalizatuak" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Hartu gabeak" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Eguneratu" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Diagrama Eguneratu" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Grafikoa Eguneratu" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Menu hau eguneratu" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Lan-agindua Eguneratu" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Eguneraketa Mota" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Formatua eguneratu eta Bilatu" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Lan-agindu anitz eguneratu" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Eguneraketa ez grabatua." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Lan-agindua eguneratu" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "#%1 lan-agindua eguneratu" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "#%1 (%2) lan-agindua eguneratu" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Eguneratuta" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "Eguneratzailea" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Gordetako \"%1\" bilaketa eguneratuta" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "%1-tik %2-ra hobetua" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Kargatu" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Logo berri bat kargatu" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Fitxategi anitz kargatu" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Irudi anitz kargatu" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Fitxategi bakarra kargatu" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Irudi bakarra kargatu" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "%1 fitxategirarte kargatu" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "%1 irudirarte kargatu" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Erabilera:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "Bi zutabeko diseinua erabili sortze eta eguneratze formularioendako?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Auto-osaketa erabili jabeak aurkitzeko?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Erabili lehenetsia (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "RTren beste tresna administratibo batzuk erabili" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Erabili sistemaren lehenetsia (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Erabili goitibehera-koadro menuak artikulu berri batera ateratzeko lan-agindu eguneraketak hautatzeko" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Erabiltzailea" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "%1 erabiltzailea desgaituta dago une honetan" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "%1 erabiltzailea desgaituta dago une honetan. Editatu erabiltzailea eta aukeratu \"Erabiltzaile honi utzi RTra sartzen\" gaitzeko." #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "Erabiltzaile Taldeak" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Erabiltzailearen informazioa" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Erabiltzaile Eskubideak" #: share/html/User/Search.html:48 msgid "User Search" msgstr "Erabiltzaile-Bilaketa" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "Erabiltzaile Laburpena" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Ezin izan da erabiltzailea sortu: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Erabiltzailea sortuta" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Erabiltzailea desgaituta" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Erabiltzailea gaituta" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Erabiltzaileak posta-e helbidea hutsik du" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Erabiltzailea kargatuta" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Erabiltzaileak definituriko taldeak" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "Erabiltzailea: %1" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Erabiltzaile-izena" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Erabiltzaile-izenaren formatua" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Erabiltzaileak" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Bilaketa irizpidea betetzen duten erabiltzaileak" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "#%1 eragiketa erabiltzen..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Baliozko Ilara" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Balidazioa" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Balioa" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Balioak" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Bertsioa" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Eremu pertsonalizatu balioak ikusi" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Eremu pertsonalizatuak ikusi" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Aterako diren posta-e mezu zehatzak eta beraien hartzaileak ikusi" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Taldea ikusi" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Taldearen aginte-panelak ikusi" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Aginte-panel pertsonalak ikusi" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Ilara ikusi" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Gordetako bilaketak ikusi" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Sistemaren aginte-panelak ikusi" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Lan-aginduaren iruzkin pribatua ikusi" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Lan-aginduen laburpenak ikusi" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "ADI: Bilaketa erabiltzaile-mailako pribatasunarekin gordetzen" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "WYSIWYG konposatzailearen altuera" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "WYSIWYG mezu konposatzailea" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Adi! Hau EZ dago sinatuta!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "Adi: bateratzeak ez du atzera bueltarik! Bateratu beharreko lan-agindu zenbaki bakarra sartu." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Begiralea" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Begiraleak" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Az." #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Asteazkena" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Astero" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Asteroko laburpena" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Ongi etorri RT-ra!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Gaur egin dudana" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Zer da RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "Zein lan-agindu bistaratu \"Gehiago eskatzaileari buruz\" kaxan" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Lan-agindu bat sortua denean" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:137 msgid "When anything happens" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Lan-agindu bat ixten den aldiro" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Lan-agindu bat birbidaltzen den aldiro" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Lan-agindu bat baztertzen den aldiro" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Lan-agindu bat berriz zabaltzen den aldiro" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Lan-agindu bat amaitzen den aldiro" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Lan-agindu bat edo eragiketa bat birbidaltzen den aldiro" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Lan-agindu baten jabea aldatzen den aldiro" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Lan-agindu baten lehentasuna aldatzen den aldiro" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Lan-agindu baten ilara aldatzen den aldiro" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Lan-agindu baten egoera aldatzen den aldiro" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Eragiketa bat birbidaltzen den aldiro" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "Zabalera" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Deuseztu" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Lana" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Laneko Telefonoa" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Lan eginda" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%1 ordu (%2 minutu) lan eginda" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "%1 minutu lan eginda" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "Urtea" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Bai" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "Zu (%1) ez zaude RT erabiltzeko baimenduta." #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Aginte-panel hau eta zure harpidetza editatu ditzakezu RTn." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Lan-agindu honen jabe zara dagoeneko" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "Ez zeude RT erabiltzeko baimenduta." #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "Goiko logoan klik egin dezakezu koloreak lortzeko!" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Aurrez definitutako bilaketa bera ere editatu dezakezu" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "Behar izanez gero txantiloia aldatu dezakezu" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Ezin duzu pasahitza ezarri." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Zureak diren edo jaberik ez duten lan-aginduak bakarrik esleitu ditzakezu" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "Beste norbaitena den lan-aginduak bakarrik ohostu ditzakezu" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Jaberik ez duten lan-aginduak bakarrik hartu ditzakezu" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Lan-aginduaren historia osoan egin dezakezu bilaketa %1hitza idatzita." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Ezin duzu egoera '%1'(e)tik '%2'(e)ra aldatu." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Ez duzu SuperUser baimenik." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "RTetik aterea izan zara." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Ez duzu baimenik ilara horretan lan-aginduak sortzeko." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Artikuluetara estekak sar ditzakezu \"a:###\" forman, non ### Artikulu zenbakia den." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Berriz saioa hasi ezkero ongietorria izango zara" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Zure pasahitza ez dago ezarrita." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Okerreko erabiltzaile-izena edo pasahitza" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Posta kodea" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Jaitsi]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Igo]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ezer]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "eremu pertsonalizatu bat" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "aktibo" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "ondoren" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "esteka baten klik egin ondoren" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "orriaren gainontzekoa kargatu ondoren" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "eta aurretik" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "eta ez" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "eta ondoren" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "barra" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "aurretik" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "gorputza" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "behetik gora" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "markatu kaxatxoa Eremu Pertsonalizatua objektu guztiei ezartzeko" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "markatu kaxa hau scrip hau objektu guztiei aplikatzeko" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "markatu kaxatxoa Eremu Pertsonalizatu hau objektu guztietatik kentzeko eta objektu zehatzak aukeratu ahal izateko." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "markatu gehitzeko" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "klik egin objektu guztiei batera marka jartzeko/kentzeko" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "lan-agindu bat sortu" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "egunero %1tan" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "aginte-panela" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "aginte-panelak menuan" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "ezabatuta" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "ez du betetzen" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "deskargatu" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "iraupena" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "izen gabe" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "berdina da" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "errorea: ezin da behera mugitu" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "errorea: ezin da ezkerrera mugitu" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "errorea: ezin da gora mugitu" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "errorea: ez dago ezer ezabatzeko" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "errorea: ez dago ezer mugitzeko" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "errorea: ez dago ezer txandatzeko" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "zenbatetik behin:" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "plugina arrakastaz exekutatua" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "osoa" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "handiagoa baino" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "taldea" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "%1 taldea" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "'%1' taldea" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "berehala" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "%1 klasean" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "ez-aktiboa" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "%1 barne" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "indizea" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "baliogabeko amaiera data: %1" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "da" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "ez da" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "gakoa desgaituta" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "gakoa iraungita" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "gakoa atzera botata" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "ezkerretik eskuinera" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "txikiagoa baino" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "betetzen du" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "gehienezko sakonera" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minutu" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "RTren konfigurazioa aldatu" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "aginte-panel bat aldatu" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "bilaketa bat aldatu edo atzitu" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "zure hobespenak aldatu" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "hilero" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "hilero (%1 egunean) %2tan" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "inoiz ez" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "berria" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "ez" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "ezer" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "ezberdina da" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "ezer ez" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "objektuak arrakastaz ezabatu dira" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "noiz" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "egun honetan" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "bat" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "irekita" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "ireki/itxi" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "beste bat..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "ekintzak egin" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "tarta" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "pluginak zerrenda hutsa itzuli du" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "%1 %2 ilara" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "baztertuta" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "amaituta" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "eskuinetik ezkerrera" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "bilatu" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "Objektu zerrenda ikusi beherago" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "albo-barra" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "gunearen konfigurazioa" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "izoztuta" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "sententzia" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "laburpenaren errenkadak" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "sistema %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "'%1' sistema taldea" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "deitzen duen osagaiak ez du zehaztu zergatik" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "#%1 %2 lan-agindua" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "goitik behera" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "deskribatu gabeko %1 taldea" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "mugagabea" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "Lan-agindu bat eguneratu" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "artikulu bat eguneratu" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "erabiltzaile" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "%1 erabiltzailea" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "erabiltzaile-izena" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "astero" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "astero (%1) %2tan" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "aste" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "zeinak zure izenean %1 lezake." #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "zure web zerbitzariak zein portutan entzungo duen, adibidez 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "goiburuekin" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "bai" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/et.po0000664000175000017500000121013213131430353014522 0ustar vagrantvagrant# Estonian translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 10:06+0000\n" "Last-Translator: Shawn M Moore \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "%1. %2 %3" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%1 %3 %2 %6 %4:%5" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3.%2 %7 %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "lisati %1 %2" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1: %2 muudeti %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "kustutati %1 %2" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "kustutati %1 %2" #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 salvestati." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 muudeti." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 malliga %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) saatja %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (muutmata)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (paneelilt %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Muuda LogToSTDERR konfiguratsioonivalikut" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - argument %2 jaoks" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - väljasta muutused standardväljundisse STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - kas soovid kasutada 'esimest', 'viimast' või 'kõiki' toiminguid" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - anna malli nimi või id, mida soovid kasutada" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Määratle tegevustüüpide loetelu, mida soovid kasutada (kasuta eraldajana koma)" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Määratle tingimusmoodul, mida soovid kasutada" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 Määratle soovitud otsingumoodul" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 lisati %2 väärtuseks" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 on juba olemas ja sisaldab RT tabelid, kuid ei sisalda RT metaandmeid. Järgnev 'Initialize Database' samm võib lisada metaandmed olemasolevasse andmebaasi. Kui see sobib, siis jätkamiseks kliki 'Customize Basics' allpool." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 on juba olemas, kuid ei sisalda RT tabeleid või metaandmeid. Järgnev 'Initialize Database' samm võib lisada tabeleid ja metaandmed olemasolevasse andmebaasi. Kui see sobib, siis jätkamiseks RT kohandamisega kliki 'Customize Basics' allpool." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 näib olevat kohalik objekt, kuid seda pole andmebaasist võimalik leida." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 näib olevat täielikult algväärtustatud. Me ei soovi luua tabeleid ega lisada metaandmeid, kuid võid jätkata RT kohandamist klikkides 'Kohanda põhiandmed'." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 - %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 muudeti väärtusest %2 %3-ks" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 muudeti endisest '%2' uueks '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 koopia" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 põhikonfiguratsioon" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 ei ole võimalik anda väärtust %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "Loodi %1" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "Kustutati %1" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 keelatud" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 ei ole olemas." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 lubatud" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "Minu %1 tähtsaimat juhtumit" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 on töövahend, mis reageerib välisest allikatest pärit juhtumitele." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 on abiprogramm, mis saadab kõik edasilükatud RT sõnumid lühendatuna kasutajakohase ülevaatena" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 on meiliaadress, mille kaudu RT leob meili. Lisades selle kui '%2' loob meilisilmuse." #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 ei ole enam välja %2 väärtus" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 ei ole lubatud elutsükkel" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 viimati uuendatud artiklit" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 uusimat artiklit" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 uusimat omanikuta juhtumit" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objekti" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 koha konfiguratsioon" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 uuendus: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 uuendus: Muutusteta" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "Uuendati %1" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1-i %2 objekti" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1 %2 %3 objekti" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1 praegune parool" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1 töölauad" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1 talletatud otsingud" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: manused on määratlemata" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Uus juhtum%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "%1 m" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' ei ole lubatud nimi." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' pole lubatud klass" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' ei ole kehtiv klassi identifikaator" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(lõpetamiseks märgista kast)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Vali eemaldatavad)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Kustutamiseks märgista kastid)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Kirjuta juhtumite id-numbrid või URL-d tühikutega eraldatuna)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Kui jääb tühjaks, võetakse väärtus %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Väljad puuduvad)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Liikmed puuduvad)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Automaattoimingud puuduvad)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Mallid puuduvad)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Saadab uuenduse koopia haldurite komaga eraldatud meiliaadressidele. Need inimesed saavad tulevased uuendused.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Saadab sellest uuendusest koopia komaga eraldatud loetelus näidatud meiliaadressidele. Need inimesed saavad edaspidised uuendusteated.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Kasuta neid välju tingimuste ja toimigute jaoks, kui valid 'Kasutaja kirjeldatud'." #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(iga)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(kokkuvõte puudub)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(nimi puudub)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(avalik võti puudub!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(väärtus puudub)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(väärtused puuduvad)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(ootel %quant(%1,muu juhtum))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(ootab kinnitust)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(nõutav)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(usalda: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(nimetu)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(mitteusaldusväärne!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id on mittesoovitatud võti ja seda ei saa kasutada koos --template võtmega" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--toimingu argument võib olla ainult 'first', 'last' või 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "sellise nimega mall on juba olemas" #: etc/initialdata:258 msgid "A blank template" msgstr "Tühi mall" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Parooli ei seatud, seega ei saa kasutaja sisse logida" #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "Ei leia ACE-d" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACEsid saab ainult luua ja kustutada." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Enda andmed" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Juurdepääsu kontroll" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Toiming" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Ei leia toimingut '%1'" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Tegevus täidetud." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Toiming on kohustuslik argument" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Valmistati ette toiming..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Tegevused" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Aktiivsed juhtumid" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Kasutaja %1 aktiivsed juhtumid" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Lisa %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Lisa koopia adminile" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Lisa järjehoidja" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Lisa koopia" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Lisa veerud" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Lisa tingimus" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Lisa failid" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Lisa tellija" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Lisa väärtus" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Lisa kommentaar või vastus valitud juhtumeile" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Lisa grupp" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Lisa siia" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Lisa liikmed" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Lisa uued jälgijad" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Lisa õigused %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Lisa need tingimused" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Lisa need tingimused ja otsi" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Lisa kasutaja" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Lisa väärtused" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Lisa, muuda ja kustuta kohandatud objektide väljaväärtuseid" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Lisatud" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Aadress" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Aadress 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Aadress1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Aadress2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Administraator" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "Koopia haldurile" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Halduri kommentaar" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Administraatori kommentaar HTML-s" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Halduri vastus" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Administraatori kirjavahetus HTML-s" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Haldusjärjekorrad" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Haldus-/üldine konfiguratsioon" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "Koopia haldurite rühmale" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "Koopia haldusele" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "Halduse koopiad" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Administratiivne parool" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Täpsem" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Laiem otsing" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Pärast sisselogimist suunatakse Teid algupärasesse sihtkohta:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Koguja" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Kõik heakskiidud on saadud" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Kõik kinnitused edastati HTML-s" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Kõik klassid" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Kõik töölauad" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Kõik järjekorrad" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Kõik juhtumid" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Kõik iCal etteanded sisaldavad salajast märki, mis volitab sind. Kui ühe iCal etteande URL paljastub, siis võid saada uue salajase märgi, mis katkestab kõik olemasolevad iCal etteanded allpool." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Kõik otsingukriteeriumile vastavad järjekorrad" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Kõik juhtumid" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Kõik teemad" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Luba salvestatud otsingute loomine" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Luba salvestatud otsingute laadimine" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Luba Perl koodi kirjutamine mallides, skripides jne" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Krüpteeritud" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Esines viga" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Ja/või" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Igaaastaselt" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Mistahes väli" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "RT poolt tundmatu sõna vasteid otsitakse teema pealkirjast" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Kehtib" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Rakendub kõigile objektidele" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Kehtesta" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Rakenda üldiselt" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Kehtesta oma muudatused" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Heakskiit" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Heakskiit #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Heakskiit #%1: märkusi ei talletatud süsteemi vea tõttu" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Heakskiit #%1: märkused talletati" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Kiidetud heaks" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Kinnitus omaniku jaoks on valmis" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Tagasi lükatud" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Nõustu" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "Artikkel #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "Ei leitud artiklit #%1" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Artikkel #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Artikkel %1 loodud" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Artikli administreerimine" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artiklit ei leita" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Artiklid" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Artiklid teemas %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Artiklid vastavad otsingule %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artiklid ilma teemata" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Kasvav" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Määra ja eemalda järjekorra kohandatud välju" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Kaasa" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Lisa fail" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Lisatud fail" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Manus" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Manuse '%1' laadimine ebaõnnestus" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Loodi manus" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Manuse failinimi" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Manused" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Manuste salastamine on välja lülitatud" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Atribuut kustutati" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "Konto automaatne seadistamine ebaõnnestus" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:261 msgid "Autoreply" msgstr "Automaatvastus" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Automaatvastus tellijale" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Automaatvastus HTML-s" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Saadaval" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Tagasi" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Põhitõed" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Pimekoopia" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Tühi" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Sisu" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Rasvane" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Järjehoidja" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Antud otsingu järjehoidjasse lisamise link" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Meeldejäetud juhtumid" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Järjehoidjas olevad teemad" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Lehitse teema järgi" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Lehitse antud protsessi tehtud SQL päringuid" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Hulkmuudatus" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "Koopia grupp" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Ei saa laadida talletatud otsingut \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Ei saa muuta süsteemi kasutajaid" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Ei saanud lisada kohandatud välja väärtust ilma nimeta" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Ei leia salvestatud otsingut" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Juhtumit ei saa ühendada iseendaga" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Ei saa ühendada kustutatud juhtumiga" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Ei saa salvestada %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Ei saa salvestada seda otsingut" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Ei saa lisada linki numbrile" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Juhtumeid ei saa luua passiivsesse järjekorda" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategooriad põhinevad" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategooria" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Koopia" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "Koopiad" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Muuda" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Muuda salasõna" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Järjekorra muutmine pole toetatud" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Diagramm" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Märgi kõik" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Kontrolli andmebaasi ühendust" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Kontrolli andmebaasi volitused" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Märgista kustutamaks" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Järglased" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Vali andmebaasisüsteem" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Vali %1 jaoks teema" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Linn" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Klass" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Klassi nimi" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Ei saa luu klassi: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Klassi id" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Klass on juba globaalselt rakendatud" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Klass on juba järjekorral %1 rakendatud" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Klassid" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Tühjenda" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Tühjenda kõik" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Toimigu teostamiseks kliki allpool \"Lõpeta paigaldus\"" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Loomaks süsteemi andmebaasi ja lisamaks metaandmed kliki \"Alusta andmebaas\". See võib kesta mõne hetke." #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Kliki värvi valmiseks" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Suletud" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Suletud juhtumid" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Valik: Vali või sisesta mitu väärtust" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Valik: Vali või sisesta üks väärtus" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Valik: Vali või sisesta kuni %1 väärtust" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Kommentaar" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Kommentaari aadress" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Kommentaari aadress" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Kommenteeri juhtumeid" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentaarid" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Kommentaar (ei saadeta nõudjale)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Kommentaarid kasutaja kohta" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Lisati kommentaar" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Peidetud Commit" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Tingimus" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "E leia tingimust '%1'" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Tingimus on kohustuslik argument" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Tingimus klapib..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Tingimus, toiming ja mall" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Seadistusfail %1 on lukustatud" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Järjekorra %1 konfiguratsioon" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Loodi ühendus" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Võta ühendust oma RT administraatoriga" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Sisu" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Sisuks on kehtetu IP aadress" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Sisuks on kehtetu IP aadressi vahemik" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Sisu tüüp" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Nõudja aadress" #: etc/initialdata:393 msgid "Correspondence" msgstr "Kirjavahetus" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Lisati kirjavahetus" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Kirjavahetus HTML-s" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Ei saa lisada uut kohandatud välja väärtust: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Ei saa vahetada omanikku: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Ei saa luua kohandatud välja: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Ei saa luua rühma" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Ei saa luua otsingut: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Ei saa luua juhtumit. Järjekord on määramata." #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Ei saa luua kasutajat" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Ei saa kustutada otsingut: %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Ei leia rühma '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Ei leia ega saa luua kasutajat '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Ei saa laadida %1 tunnust" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Ei saa laadida klassi %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Ei saa laadida kohandatud välja %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Rühma laadimine ebaõnnestus" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Ei saa laadida objekti %1 jaoks" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Ei õnnestu laadida kasutajat '%1'" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Ei saanud seada kasutajainfot" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Ei õnnestunud muuta veergu %1: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "Ei õnnestunud lisada, kuna on juba globaalne" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Ei õnnestunud lisada manust" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Liikme rühma lisamine ebaõnnestus" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Ei saa kompileerida %1 koodiblokki '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Ei saa kompileerida malli koodiblokki '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Tehingu loomine ebaõnnestus: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Ei saa luua kannet: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Ei õnnestunud kustutada töölauda %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Ei leia rida" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Ei õnnestunud leida sobivat tõlget, jääb vahele" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Ei leidnud seda vastutajat" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Ei leia seda väärtust" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Klassi %1 laadimine ebaõnnestus" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Ei õnnestunud laadida kohandatud välja #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Ei saanud laadida kohandatud välja #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Ei õnnestunud laadida kohandatud välja #%1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "Ei õnnestunud laadida %1 koopiat #%2" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Juhtumi #%1 koopia laadimine ebaõnnestus" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Ei õnnestunud laadida töölauda %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Rühma #%1 laadimine ebaõnnestus" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Rühma %1 laadimine ebaõnnestus" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Lingi laadimine ebaõnnestus" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "Ei õnnestunud laadida viita: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Objekti %1 laadimine ebaõnnestus" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Kasutaja laadimine või loomine ebaõnnestus: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "Ei õnnestunud laadida vastutajat #%1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "Ei õnnestunud laadida vastutajat: %1" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Järjekorra laadimine ebaõnnestus" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Ei õnnestunud laadida järjekorda #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Ei õnnestunud laadida järjekorda %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Ei õnnestunud laadida järjekorda '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Skripti #%1 laadimine ebaõnnestus" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Ei saanud laadida malli #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Ei õnnestunud laadida kirjeldatud vastutajat" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Ei saanud laadida juhtumit '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Ei saa laadida teema kuuluvust seda kustutades" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Ei saanud laadida toimingut #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Ei saanud laadida kasutajat" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Ei saanud laadida kasutajat #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Ei saanud laadida kasutajat #%1 või '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Ei saanud laadida kasutajat '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "Ei õnnestunud parsida baas URI: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "Ei õnnestunud parsida siht-URI: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "Ei õnnestunud eemaldada eelmist liiget: %1" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Ei õnnestunud asendada sisu lahtisalastatud andmetega: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Ei õnnestunud asendada sisu salastatud andmetega: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "Ei õnnestunud lahendada '%1' viidaks" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Ei õnnestunud lahendada alust '%1' URI-ks" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Ei suutnud lahendada '%1' URI-ks" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Ei õnnestunud seada %1 jälgijat: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Ei õnnestunud seada privaatvõtit" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Privaatvõtme eemaldamine ebaõnnestus" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Riik" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Loo" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Loo juhtumid" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Loo uus klass" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Loo kohandatud väli" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Loo kohandatud väli järjekorra %1 jaoks" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "Loo üldine skrip" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Loo uus artikkel" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Loo uus artikkel teemasse" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Loo uus töölaud" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Loo uus rühm" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Loo uus mall järjekorrale %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Loo uus kasutaja" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Loo järjekord" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "Loo skrip ja lisa järjekorda %1" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Loo mall" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Loo juhtum" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Loo juhtum järjekorras antud kasutajaga nõudja rollis" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Loo artikkel" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Loo artikkel klassi..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Loo artiklied klassi" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Loo grupi töölaudu" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Loo uued juhtumid selle juhise malli alusel" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Loo isiklikud töölauad" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Loo süsteemi töölaud" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Loo juhtum" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Loo juhtumeid" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Loo, muuda ja kustuta juurdepääsu nimekirja kandeid" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Loo, muuda ja kustuta kohandatud välju" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Loo, muuda ja kustuta kohandatud väljade väärtusi" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Loo, muuda ja kustuta järjekordi" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Loo, muuda ja kustuta salvestatud otsinguid" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Loo, muuda ja kustuta kasutajaid" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Loodud" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Looja" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Loodi kohandatud väli %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Autor:" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Loodud otsing %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Looja" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Krüpto" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Jooksvad lingid" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Aktiivne otsing" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Praeguse liikmed" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Praegune otsing" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Praegused vaatlejad" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Kohandatud väljad" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Kohandatud väljad %1 jaoks" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Kohandatud väljad järjekorrale %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "Kohandatud tegevuse soorituskood" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Kohandatud toimingu ettevalmistuskood" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Kohandatud tingimus" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Kohandatud väli #%1 ei ole rakendatud sellele objektile" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Kohandatud väli %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Kohandatud väli %1 ei kehti selle objekti kohta" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Kohandatud väli %1 omab väärtust." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Kohandatud väli %1 ei oma väärtust." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Ei leidnud kohandatud välja %1" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Kohandatud välja väärtust %1 ei ole võimalik leida välja %2 jaoks" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Ei saanud kustutada kohandatud välja väärtust" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Kohandatud välja väärtus kustutati" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "KohandatudVäli" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "KohandatudVäljaVäärtus" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Kohanda" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Kohanda põhiandmed" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Kohanda meiliaadressid" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Kohanda meilikonfiguratsioon" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Kohanda näidikulauad menüüs" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Kohanda RT väljanägemist" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA parool" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA kasutajanimi" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Igapäevane" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Päevakokkuvõte" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Näidikulaud" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "Ei õnnestunud muuta näidikulauda %1: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "Uuendati näidikulaud %1" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Ei õnnestunud luua näidikulauda: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Ei õnnestunud uuendada näidikulauda: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Näidikulaud uuendati" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Näidikulauad" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Menüü näidikulauad" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Menüüsolevad näidikulauad kasutaja %1 jaoks" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Andmebaasi host" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Andmebaasi nimi" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Andmebaasi parool RT jaoks" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Andmebaasi port" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Andmebaasi tüüp" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Andmebaasi kasutajanimi RT jaoks" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Kuupäeva vorming" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Kuupäevad" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "dets" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Dekrüpti" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Vaikimisi järjekord" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Vaikimisi: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Vaikimisi: %1/%2 muudetud %3-st %4-ks" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "VaikeFormaat" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Kustuta" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Kustuta mall" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Kustutamine ebaõnnestus: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Kustuta grupi töölauad" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Kustutusoperatsioon on keelatud konfiguratsioonis" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Kustuta isiklikud näidikulauad" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Kustuta süsteemi näidikulauad" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Kustuta juhtumid" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Kustuta väärtused" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Kustutati %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Kustutati päringud" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Kustutati salvestatud otsing" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Kustutatud otsing %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Selle objekti kustutamine lõhub viiteterviklikkuse" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Selle objekti kustutamine rikub viiteterviklikkuse" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Keeldu" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Sõltuv" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "Sõltuv" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Lisati %1 sõltuvus" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Kustutati %1 sõltuvus" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Lisati sõltuvus %1-st" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Kustutati sõltuvus %1-st" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "Sõltuv" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Sõltub" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "Sõltub" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Kahanev" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Kirjelda juhtumit allpool" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Kirjeldus" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Detailne info sinu RT paigalduse kohta" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Üksikasjad" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Suund" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Keelatud" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Näita" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Näita juurdepääsulist" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Kuva artikkel %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Näita veerud" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "Kuva teated rich-tekstis kui võimalik" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Kuva lihttekstmanused fikseeritud laiusega kirjatüübis" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Kuva juhtum pärast \"Kiirloomine\"" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Levitatakse GNU GPL %2 %1versioon 2 all" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Tee midagi või kõike" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Doomeninimi" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ära lisa http://, vaid ainul hosti nimi nagu 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Ära värskenda kodulehte" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Ära värskenda otsingutulemusi" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ära uuenda (refresh) seda lehte." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Ära usalda seda võtit üldse" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Laadi alla" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Laadi alla tõmmisfail" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Hüpikmenüü" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Tähtaeg" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "VIGA: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Sinu lahtiste juhtumite lihtne uuendamine" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Meeldetuletuste kiirvaade" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Muuda" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Muuda kohandatud välju" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Muuda %1 kohandatud välju" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Muuda kõikide gruppide kohandatud välju" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Muuda kõikide järjekordade kohandatud välju" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Muuda kõikide kasutajate kohandatud välju" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Muuda artiklite kohandatud välju kõikides klassides" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Muuda kohandatud välju kõigi järjekordade juhtumites" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Linkide redigeerimine" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Muuda päringut" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Muuda otsingut" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Muuda üldist teemade struktuuri" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Muuda süsteemi malle" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Muuda teemade struktuuri %1 jaoks" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Kohandatud välja %1 muutmine" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Rühma %1 liikmelisuse muutmine" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "TegelikId" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Kas alus või eesmärk peab olema antud" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Sule ei ole kas õigust vaadata salvestatud otsingut %1 või identifikaator on mittekorrektne" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "Meiliaadress" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "E-posti aadress" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Meiliülevaade" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Meiliaadress on kasutusel" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Meili kohaletoimetamine" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Meili mall perioodiliste teadete kokkuvõtte jaoks" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "Meiliaadress" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "Tühi" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Lubatud" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Aktiivne (märgistuse eemaldamine teeb klassi passiivseks)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Lubatud (mittelubamine keelab selle kohandatud välja kasutamise)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Lubatud (mittelubamine keelab selle rühma kasutamise)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Lubatud (mittelubamine keelab selle järjekorra)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Lubatud (mittevalimine keelab selle skripi)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Aktiivsed klassid" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Lubatud järjekorrad" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Otsingukriteeriumile vastavad lubatud järjekorrad" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Lubatud olek %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Krüpti" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Krüpti vaikimisi" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Krüpti/dekrüpti" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Salasta / ava juhtumi #%2 toiming #%1" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Sisesta artiklid, juhtumid või muud antud artikliga seotuvad URL-d." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Sisesta IP aadressite vahemikud" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Sisesta IP aadresse" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Sisesta mitu väärtust" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Sisesta mitu väärtust automaatlõpetusega" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Sisesta objektid või URI-d, mis viitavad neile. Kasuta eraldajana tühikut." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Sisesta IP aadress" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Sisesta IP aadressi vahemik" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Sisesta üks väärtus" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Sisesta üks väärtus automaatlõpetusega" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Sisesta järjekorrad või URI-viited, mida järjekorda ühendada. Eralda need tühikuga." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Sisesta juhtumid või URI-viited, mida juhtumitega ühendada. Eralda need tühikutega." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Lisa vaikimisi aeg tundides (vaikimisi)" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Sisesta kuni %1 IP aadressi vahemikku" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Sisesta kuni %1 IP aadressi" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Sisesta kuni %1 väärtust" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Sisesta kuni %1 väärtust automaatlõpetusega" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "Keskkonnamuutujad" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Viga" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "RT omanikule: vigane avalik võti" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Viga: näidikulaud puudub" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Vigased GnuPG andmed" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Viga: ei saa muuta olemasoleva otsingu privaatsusväärtust" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Viga: ei õnnestunud laadida salvestatud otsingut %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Viga: puudub isiklik võti" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Viga: avalik võti" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Viga: otsingut %1 ei muudetud: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Eskaleeri juhtumid" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Hinnanguline" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Kõik" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Näide:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Määra aegumine" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "LaiendatudOlek" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Väline autentimine on lubatud." #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Lisainfo" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Võta välja artikkel" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Võta välja teema lipik" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Võta välja uus artikkel juhtumist #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Võta välja artikkel juhtumist #%1 ja liigita %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Võta välja lipikud toimingu teemast ja lisa need juhtumi teemale" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Andmebaasiga ühendumine ebaõnnestus: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "%1 atribuudi loomine ebaõnnestus" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Ei leia 'Privileged' kasutajate pseudorühma" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Ei leia 'Unprivileged' kasutajate pseudorühma" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Ei õnnestunud laadida %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Ei õnnestunud laadida %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Mooduli %1 laadimine ebaõnnestus. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Objekti laadimine %1 jaoks ebaõnnestus" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Malli laadimine ebaõnnestus" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "Juhtumi %1 laadimine ebaõnnestus" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Malli parsimine ebaõnnestus" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "veebr" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Uudistevood" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Väli" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Välja väärtuste allikas:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Faili nimi" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Täida argumendid" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Täida kastikesed värviga kasutades" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Täida tekstilahtrid" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Täida vikitekstilahtrid" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Täida tekstilahter" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Täida vikitekstilahter" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Sisesta välja URL" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Täida kuni %1 tekstilahtrit" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Täida kuni %1 vikitekstilahtrit" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Lõplik prioriteet" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Leia kasutaja" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Leia kõik kastuajad, kes" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Leia rühmad, mille" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Leia inimesed, kelle" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Leia juhtumid" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "LeiaKasutaja" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Sõrmejälg" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Lõpeta" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Esimene" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Sunni muudatus" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Vorming" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "Vormindab iCal sündmusvoo kuupäeva ja kellaajaga" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Edasi" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Edasta sõnum" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Edasta sõnum ja naase" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Edasta juhtum" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Edasta sõnumid väljapoole RT-d" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Edasta juhtum #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Edasta toiming #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Juhtum edastati %1-le" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Leiti %quant(%1,juhtum)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Leitud objekt" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Sagedus" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Reede" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Reede" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Saatja" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Üldine" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Üldised õigused" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Alustame siit" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Omistatud %1-le" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Globaalne" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Globaalsed parameetrid" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Globaalsed teemad" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Globaalne kohaldatud välja konfigureerimine" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "Menüü üldised näidikulauad salvestati." #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "Ei leidnud üldist või järjekorraspetsiifilist malli '%1'" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Üleüldine portlet %1 salvestati." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "Ei leidnud üldist malli '%1'" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Mine" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Liigu rühma" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Mine kasutaja juurde" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Mine!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Liigu juhtumi juurde" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Mine juhtumi juurde" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Diagramm" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Diagrammi omadused" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Diagrammid pole saadaval." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Rühm" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Rühma õigused" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Rühmas on juba liige: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Rühma ei saa luua: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Rühm loodi" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Rühm keelati" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Rühm lubati" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Rühmas pole sellist liiget" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Rühma nimetus '%1' on juba kasutusel" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Rühma ei leitud" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Rühmad" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Rühm ei saa olla oma liikme liige" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Otsingutingimusele vastavad rühmad" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Rühmad, kuhu kasutaja kuulub" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "HTML automaatvastuse mall" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "HTML juhtum on lahendatud" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "HTML juhtumi staatus muudeti" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "HTML administraatori kommentaari mall" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "HTML administraatori kirjavahetuse mall" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "HTML kirjavahetuse mall" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "HTML toimingu mall" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Edastatud juhtumi päis" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Edastatud juhtumi päis" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Tere!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Aita meil seadistada mõned kasulikud RT vaikeväärtused" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Peida kõik jutumärkides tekst" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Peida jutumärkides tekst" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Ajalugu" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Artikli #%1 ajalugu" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Rühma %1 ajalugu" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Järjekorra %1 ajalugu" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Kasutaja %1 ajalugu" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Kodune telefon" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Avalehe uuendamise intervall" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Avaleht" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Tund" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "Igatunnine" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Tunnid" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "Soovin algväärtustada oma salajast võtit." #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identiteet" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "Kui on valitud \"kohandatud väli\", siis väljasaadetava meili \"teema\" asendatakse selle artikliga." #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Kui" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "Kui see ei ole see, mis ootate, siis lahkuge sellelt lehelt ilma sisselogimata." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Kui see vahend oleks setgid, siis vaenulik kohalik kasutaja võiks kasutada seda vahendit RT administraatori õiguste saamiseks." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "Kui teil on RT sisemine kasutajatunnus, siis võite proovida %1 %2 asemel." #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "Kui kavatsesite tõepoolest külastada %1 ja %2, siis klikkige %3siia%4 päringu ennistamiseks." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Kui oled uuendanud midagi ülalpool, siis veendu, et" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Lubamatu väärtus %1 jaoks" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "Pilt kujutatakse ülalpool tekstivoo sees" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "Pilti ei näidatud, kuna kuvamine on keelatud süsteemi seadistustes." #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "Pilti ei näidatud, kuna saatja keelas näitamise tekstivoo sees." #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Muutumatu väli" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Mitteaktiivsed juhtumid" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Kaasa artikkel:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Lisa artikli nimi" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Lisa artikli kokkuvõte" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Kaasa keelatud kohandatud väljad loetellu." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Kaasa keelatud rühmad loetellu." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Kaasa keelatud järjekorrad loetellu." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Kaasa otsingusse keelatud kasutajad." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Lisa lehekülg" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Pane kaasa alamteemad" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Individuaalsed sõnumid" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Teavita RT omanikku, et kasutaja(te)l on probleeme avalike võtmetega" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Teavita kasutajat, et tema tellitud näidikute paneel puudub" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Teavita kasutajat, et tema saadetud sõnum on vigaste GnuPG andmetega" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Teavita kasutajat, et tal on avaliku võtmega probleem ning ta ei saa vastu võtta salastatud sisu." #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Teavita kasutajat, et tema salasõna lähtestati" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Teavita kasutajat, et saime salastatud meili ja meil ei ole lahtisalastamiseks salajast võtit" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Esialgne prioriteet" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Algväärtusta andmebaas" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Sisestusviga" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Sisend peab vastama %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Sisemine viga: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Sisemine viga: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "Vigane %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Vigane %1 argument" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Vigane %1: '%2' ei näe meiliaadressi moodi välja" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Vigane %1: see peaks olema arv" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Vigane klass" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Kehtetu kohandatud välja väärtuste allikas" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Vigane \"järjekord\", ei saa kehtestada klassi: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Kehtetu renderdustüüp kohandatud välja tüübile %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Vigased andmed" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Vigane meiliaadressi '%2' võti %1" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Vigane objekt" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Vigane muster: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "Vigane portlet %1" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Vigane järjekord" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "Vigane järjekorra id" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Vigane õigus" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Vigane õigus. Ei suuda normaliseerida õigust '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Vigane meiliaadressi süntaks" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Vigane '%1' väärtus" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Vigane kohandatud välja väärtus" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "On juba lisatud objektile" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Ei ole salastatud" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "See on erakordselt tähtis, et priviligeerimata kasutajatel ei oleks lubatud käivitada seda töövahendit." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "See vajab mitut argumenti:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Kursiiv" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "jaan" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Liitu või lahku grupist" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "juuli" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Hiigelsuur" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "juuni" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Jära 'localhost', kui sa pole kindel. Jäta tühjaks ühendumaks lokaalselt soketi kaudu." #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "Võtmesõnapõhine ja intuitiivne otsing" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Keel" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Keel" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Suur" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Viimane" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Viimane kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Viimati kontakteerutud" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Viimati uuendatud" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Viimane uuendaja" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Viimati uuendatud" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Viimane uuendaja" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "ViimatiUuendatud" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "Viimati uuendas" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Jäta tühjaks, et kasutada andmebaasi jaoks vaikeväärtust" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Jäta see nii kasutamaks vaikimisi dba kasutajanime sinu andmebaasi jaoks" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Vasak" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Seletused" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Pikkus märkides; kasuta '0' näitamaks kõiki teateid vaatamata pikkusele" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Luba sellel kasutajal kasutada RT-d" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Luba kasutajale õiguste andmine" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Lase käia!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Viit" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Viit on juba olemas" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "Seose loomine ebaõnnestus: %1" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "Seose kustutamine ebaõnnestus: %1" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Ei leia viita" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Seo juhtum #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Seo väärtused" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Seotud" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Viited" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Nimekiri" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Laadi" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Lae salvestatud otsing" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Lae salvestatud otsing" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Laadi salvestatud otsing:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Laaditi %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "Laeti konfiguratsioonifailid" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Laaditi algupärane \"%1\" salvestatud otsing" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Laaditi perli moodulid" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Laadi salvestatud otsing \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Laadimine..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Keeleseadistused" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Asukoht" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Sisse logitud" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Sisselogitud kui %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Väljalogitud" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "Logimiskokkuvõte" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Logi sisse" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Logi välja" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Otsingutüübi mittevastavus" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Kirjad" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Sidemete peamine liik" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Tee omanikuks" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Määra see kuupäev tähtajaks" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Määra see kuupäev alustamise päevaks" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Määra see kuupäev alustamise päevaks" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Määra prioriteet" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Tee järjekord" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Halda kohandatud välju ja nende väärtusi" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Halda rühmasid ja rühmade liikmeid" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Halda kõigile järjekordadele rakenduvaid omadusi ja konfiguratsiooni" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Halda järjekordi ja järjekorrakohaseid omadusi" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Halda salvestatud graafikuid" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Halda kasutajaid ja salasõnu" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "märts" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Kõik sõnumid märgiti loetuks" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Mason malli otsingu järjestus" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Reasõnumi maksimaalne pikkus" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Mai" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Mina" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Liige" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Lisati liige %1" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Kustutati liige %1" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Lisati liige: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Liige kustutuati" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Liiget ei kustutatud" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "Liige" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Liikmed" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Lisati liikmelisus %1-s" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Kustutati liikmelisus %1-s" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Liikmelisused" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Kasutaja %1 liikmelisus" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Mestimine õnnestus" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Mestimine ebaõnnestus. Ei saanud seada EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Mesti" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Mestitud %1-sse" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Sõnum" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Sõnumi keha ei näidata, kuna see pole lihtne tekst." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Sõnumikasti kõrgus" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Sõnumikasti laius" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Sõnumit ei õnnestunud salvestada" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Sõnum kasutajale" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Sõnum salvestati" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Vähim salasõna pikkus" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "minutit" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Muu" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Puudub peavõti?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobiil" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Mobiiltelefon" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Redigeeri" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Muuda liikmeid" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Redigeeri Skripi malle" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Redigeeri Skripe" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Muuda järjekorra %1 kohandatud välja" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Muuda ja loo klasse" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Muuda ja loo kohandatud välju artiklitele" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Muuda artiklit #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Muuda %1 assotsieeritud objekte" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Muuda kohandatud välja väärtusi" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Muuda juhtumi #%1 kuupäevi" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Muuda globaalseid artiklite teemasid" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Muuda globaalseid kohandatud välju" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Muuda üldrühma õigusi" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Muuda globaalseid teemasid" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Muuda üldkasutaja õigusi" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Muuda grupi töölaudu" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Muuda rühma metaandmeid või kustuta rühm" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Muuda grupi õigusi klassile %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Muuda kohandatud välja %1 grupiõigusi" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Muuda rühma %1 rühmaõigusi" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Muuda järjekorra %1 rühmaõigusi" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Muuda metaandmeid ja kohandatud välju sellele klassile" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Muuda tema oma RT kontot" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Muuda juhtumiga #%1 seotud inimesi" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Muuda isiklikke näidikuid" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Muuda järjekorra %1 skrippe" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Muuda kõigi järjekordade jaoks kehtivaid skrippe" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Muuda süsteemi näidikuid" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Muuda malli %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Muuda kõigi järjekordade suhtes kehtivaid malle" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Muuda näidikulauda %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Muuda vaikimisi \"RT esmapilgul\" vaadet" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Muuda rühma %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Muuda tellimus näidikulauale %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Muuda kasutajat %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Muuda juhtumit #%1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Muuda juhtumit #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Muuda juhtumeid" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Muuda kohandatud välja %1 kasutajaõigusi" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Muuda rühma %1 kasutajaõigusi" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Muuda järjekorra %1 kasutajaõigusi" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Moodul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "E" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "esmaspäev" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Mitu võimalust" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Pead kirjeldama atribuudi 'Name'" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Minu %1 juhtumit" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Minu päev" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Minu kinnitused" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Minu näidikulauad" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Minu talletatud otsingud" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "reavahetus" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Nimi" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Nimi on kasutusel" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Mitte kunagi" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Uus" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Uued lingid" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Uus ootel kinnitus" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Uus otsing" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Uued sõnumid" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Uus parool" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Uue parooli teade saadeti välja" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Uus meeldetuletus:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Uus juhtum" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Uut juhtumit pole olemas" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Uued vaatlejad" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Edasi" #: lib/RT/User.pm:96 msgid "NickName" msgstr "" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Hüüdnimi" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Ei" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "%1 ei laaditud" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Klass on kirjeldamata" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Puudub kohandatud väli" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Kohandatud väli defineerimata" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Rühm on kirjeldamata" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Päring puudub" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Järjekord on kirjeldamata" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Teema puudub" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Mall puudub" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Toiming puudub" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Veerg on kirjeldamata" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Selle kasutaja kohta kommentaarid puuduvad" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Kirjeldus puudub %1 jaoks" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Rühm on kirjeldamata" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Otsingukriteeriumile vastavaid rühmi ei leitud." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Ei leia salastamiseks sobivat võtit" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Sõnumit pole lisatud" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Nime pole antud" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Pole vaja salastada" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Parool määramata" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Järjekorra loomise õigus puudub" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Puudub õigus luua juhtumit järjekorda '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Puudub õigus selle juhtumi vaatamiseks" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Puudub õigus talletada süsteemi ulatuses otsingut" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Puudub õigus seada eelistusi" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Puudub õigus juhtumi muudatuse vaatamiseks" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Vastutaja on valimata." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Privaatvõti puudub" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Otsingukriteeriumile vastavat järjekorda ei leitud." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Õigusi pole määratud" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Ei leitud õigusi" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "teemat pole" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Juhtumit ei leitud." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Toimingu liik on kirjeldamata" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Puuduvad kasutuskõlbulikud võtmed." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Otsingukriteeriumile vastavat kasutajat ei leitud." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Mitte keegi" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Puudub" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Olematu väli?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Ei leitud" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Pole sisse logitud." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Pole määratud" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Märkused" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Ei saanud saata teadet" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Teade AdminCc-dela kommentaarina" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Teavita Cc-d" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Teavita Cc-d kommentaarina" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Teavita omanikku" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Teavita omanikku kommentaarina" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Teavita omanikku tema tagasilükatud juhtumist" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Teavita omanikku, et tema juhtum on kinnitatud ja valmis edasi töötlemiseks" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Teavita omanikku, et tema juhtum on kinnitatud" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Teata omanikule, nõudjale, koopia ja admin koopia saajale kommentaarina" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Teata omanikele ja administraatoritele nende kinnitust vajavatest juhtumitest" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Teata nõudjale, et tema juhtum on kinnitatud kõigi kinnitajate poolt" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Teata nõudjale, et tema juhtum on kinnitatud mõne kinnitaja poolt" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Teata nõudjale" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Teata nõudjale ja koopia saajatele" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Teata nõudjale ja koopia saajatele kommentaarina" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "nov" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "VÕI" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekti ei olnud võimalik luua" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Ei saanud kustutada objekti" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objekt loodi" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objekt kustutati" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Objekti tüüp ei klapi" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Objektide loetelu on tühi" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "okt" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "%2 kirjutas %1 kohta:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Sulegemisel" #: etc/initialdata:170 msgid "On Comment" msgstr "Kommenteerimisel" #: etc/initialdata:142 msgid "On Correspond" msgstr "" #: etc/initialdata:131 msgid "On Create" msgstr "Loomisel" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Omaniku muutumisel" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Prioriteedi muutumisel" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Järjekorra muutumisel" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Tagasilükkamisel" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Taasavamisel" #: etc/initialdata:205 msgid "On Resolve" msgstr "Lahendamisel" #: etc/initialdata:176 msgid "On Status Change" msgstr "Oleku muutumisel" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Toimingul" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Ühekordne pimekoopia" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Ühekordne koopia" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Näita kinnitusi ainult pärast %1 tehtud päringute kohta" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Näita kinnitusi ainult enne %1 tehtud päringute kohta" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Näita kohandatud välju:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Avatud juhtumid" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Ava URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Avatud juhtumid" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Kirjavahetusega seoses avatud juhtumid" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Valik" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Valikud" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Järjestatud" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organisatsioon" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Lähtejuhtum: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Kommentaari kohta registreeriti väljuv meil" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Registreeriti väljuv meil" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Väljuv meil" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Oma juhtumid" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Omanik" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Omanik muutus %1-st %2-ks" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Omanik muudeti jõuga %1-st %2-ks" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Lehekülg" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Lk 1/1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Lehte ei leitud" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Peiler" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Eellased" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Parool" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Parool muudeti" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Parool pole määratud" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Parool peab olema vähemalt %1 märgi pikkune" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Parool määratud" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Parool: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Parool: ei ole luba" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Paroolid ei klapi." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Sendmaili asukoht" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Inimesed" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Soorita kasutaja määratud toiming" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perli konfiguratsioon" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Perli teekide ostsingu järjestus" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Õigused puuduvad" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Õigused puuduvad" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefoninumbrid" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Kontrolli URL üle ja proovi uuesti" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Palun sisesta oma parool korrektselt." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Palun sisesta oma parool." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Võimalikud peidetud otsingud" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Eelistused" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Kasutaja %2 %1 eelistused" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Eelistused %1 jaoks talletati." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Kasutaja %1 eelistused salvestati." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Eelistused salvestati." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Eelistatud võti: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Eelistatud võti" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Eelmine" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Ei leitud vastutajat %1" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Prindi see sõnum" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Tähtsus" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privaatsus:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Salajane võti" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Eesõigustatud" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Eesõigustatud olek: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Eesõigustatud kasutajad" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Sisemiselt kasutatav pseudorühm" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "Allkirja kontrollimiseks on vajalik avalik võti '0x%1'" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Päringud" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Päring" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Päringu koostaja" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Järjekord" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Järjekorda %1 ei leitud" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Järjekorra nimi" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Järjekord on juba olemas" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Ei saanud luua järjekorda" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Ei saanud laadida järjekorda." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Järjekord loodi" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Järjekorra id" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Järjekorrad" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Minu haldatavad järjekorrad" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Kiirotsing" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Juhtumi kiirloomine" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT haldamine" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "RT halduri meiliaadress" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT viga" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT suurus" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT esmapilgul" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "RT kasutaja %1 esmapilgul" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT %1 jaoks" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Tegelik nimi" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Märgi üles kõik muudatused" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Rekursiivne liige" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Viide %1 kaudu lisati" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Viide %1 kaudu kustutati" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Viide %1-le lisati" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Viide %1-le kustutati" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Viidatud" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Värskenda" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Värskenda otsingu tulemusi iga %1 minuti järel" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Meeldetuletus '%1' lisati" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Meeldetuletus '%1' valmis" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "Meeldetuletus '%1' avati uuesti" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Meeldetuletused" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Juhtumi #%1 meeldetuletused" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Eemalda AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Eemalda järjehoidja" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Eemalda Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Vasta" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Vastusaadress" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Vasta nõudjatele" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Vasta juhtumile" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Nõudja" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Nõudjad" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Kohustuslik parameeter '%1' on kirjeldamata" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Taasta" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Lähtesta vaikeväärtustele" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Elukoht" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Lahenda" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Lahenda juhtum #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Lahendatud" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Vasta" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Tulemused" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Sisesta parool uuesti" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Võta tagasi" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Rollid" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Read" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Laup" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "laupäev" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Salvesta" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Salvesta muudatused" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Salvesta eelistused" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Salvesta uuena" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Salvestati %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Salvestatud otsingud" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Skrip #%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Loodi skrip" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Skripid" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Skripid ja adressaadid" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Otsing" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Kinnituste otsing" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Juhtumite otsing" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Otsingu valikud" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Otsingutulemuste värskendusintervall" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Vaata ka:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Vali" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Vali kohandatud väljad kõikide klasside artiklites" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Vali andmebaasi tüüp" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Vali kohandatud väli" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Vali rühm" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Vali järjekord" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Vali uue juhtumi jaoks järjekord" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Vali kasutaja" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Vali muu keel" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Vali kõikide järjekordade jaoks kohandatud väljad" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Vali kõikide kasutajarühmade jaoks kohandatud väljad" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Vali kõikide kasutajate jaoks kohandatud väljad" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Vali mitu väärtust" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Vali üks väärtus" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Vali järjekorrad \"RT ühe silmapilguga\" lehel näitamiseks" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Vali kuni %1 väärtust" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Valitud kohandatud väljad" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Valitud võti kas pole usaldatud või ei ole enam olemas" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Valitud objektid" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Valikud on muudetud. Palun salvesta muudatused" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Saada meil omanikule ja kõigile jälgijatele" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Saada meil omanikule ja kõigile jälgijatele kommentaarina" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Saada meil algatajatele ja Cc-dele" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Saada meil algatajatele ja Cc-dele kommentaarina" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Saadab sõnumi algatajatele" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Saadab meili eraldi loetud Cc ja Bcc-dele" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Saadab meili Cc-dele" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Saadab meili Cc-dele kommentaarina" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Saadab meili administratiivsetele Cc-dele" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Saadab meili administratiivsetele Cc-dele kommentaarina" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Saadab meili omanikule" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "sept" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Sätted" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Näita" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Näita veerud" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Näita tulemused" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Näita kinnitatud nõuded" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Näita hüljatud päringud" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Näita lingi kirjeldused" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "" #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Teisipäev" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tüüp" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Valimata kohandatud väljad" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Uuenda" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "" #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Uuendatud" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Lae üles" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Kasutus:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Kasutaja" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Kasutaja määratud" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Kasutaja õigused" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "" #: lib/RT/User.pm:256 msgid "User created" msgstr "Kasutaja loodud" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Kasutaja on mitteaktiivne" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Kasutaja on aktiivne" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Kasutaja laetud" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Kasutajanimi" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Kasutajanime formaat" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Kasutajad" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Valideerimine" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Väärtus" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Väärtused" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Muutuja" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Versioon" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Kuva skripe" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Kuva kohandatud välja väärtused" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Kuva kohandatud väljad" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Kuva grupp" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Kuva grupi töölauad" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Kuva personaalsed töölauad" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Kuva järjekord" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Kuva salvestatud otsingud" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Kuva süsteemi töölauad" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Kuva juhtumi kokkuvõtted" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Jälgija" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "JälgijaGrupp" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Jälgijad" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Kol" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Kolmapäev" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Kord nädalas" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Iganädalane uudiskiri" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Teretulemast RTsse!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Minu tänased tegevused" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Mis on RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "" #: etc/initialdata:137 msgid "When anything happens" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Töö" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Töötelefon" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Tegeles" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Jah" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "" #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Postiindeks" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Alla]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Üles]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[puudub]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "kohandatud väli" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "aktiivne" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "pärast" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "ja enne" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "ja mitte" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "tulp" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "enne" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "keha" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "alt üles" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "märgista kast et rakendada kohandatud välja kõikidele objektidele" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "kustutatud" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "ei kattu" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "lae alla" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "kestus" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "võrdne" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "iga" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "täielik" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "suurem kui" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "grupp" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "grupp '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "mitteaktiivne" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "sisukord" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "on" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "ei ole" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "võti keelatud" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "võti on aegunud" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "võti tühistatud" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "vasakult paremale" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "väiksem kui" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "põgusalt" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "kattub" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "maksimaalne sügavus" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minutit" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "igakuine" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "igakuiselt (päev %1) %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "mitte kunagi" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "uus" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "ei" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "puudub" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "pole võrdne" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "mitte midagi" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "objektid edukalt eemaldatud" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "kuupäeval" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "päeval" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "üks" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "ava" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "ava/sulge" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "muu..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "pirukas" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "järjekord %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "lükati tagasi" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "nõuab rt-control-i jooksutamist" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "lahendatud" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "paremalt vasakule" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "vaata objektide loetelu allpool" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "külgriba" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "lehe seaded" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "seiskus" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "lause" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "summaread" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "süsteem %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "süsteemi grupp '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "juhtum #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "ülalt alla" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "ülimalt" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "kirjeldamata grupp %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "piiramatu" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "kasutaja" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "kasutaja %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "kasutajanimi" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "nädalas" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "nädalat" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "mis porti veebiserver kuulab, näiteks 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "päistega" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "jah" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/pl.po0000664000175000017500000122775313131430353014546 0ustar vagrantvagrant# Polish translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2016-07-10 17:01+0000\n" "Last-Translator: Marcin \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "Nr" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%1 %3 %2 %4:%5 %6" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3 %2 %7, %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 zostaÅ‚y dodane" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 zostaÅ‚o zamienione na %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 zostaÅ‚o usuniÄ™te" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 zostaÅ‚o usuniÄ™te." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 nie istnieje" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 jest wyłączony" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 zapisano." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 zaktualizowano" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 wg szablonu %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) przez %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Niezmienione)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (z %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Dostosuj opcjÄ™ konfiguracji LogToSTDERR" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - warunek przejÅ›cia na %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Status wyjÅ›ciowy zaktualizowany na STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - OkreÅ›l czy chcesz używać 'pierwszej', 'ostatniej' albo 'wszystkich' transakcji" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - OkreÅ›l nazwÄ™ lub ID szablonu(ów) który chcesz użyć." #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - OkreÅ›l listÄ™ oddzielonych przecinkami typów transakcji , których chcesz użyć" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - OkreÅ›l moduÅ‚ warunków, którego chcesz użyć" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - OkreÅ›l moduÅ‚ wyszukiwania, którego chcesz użyć" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "%1 pole(a)" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 Wszelkie prawa zastrzeżone 1996-%3 %4" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "wersja %1" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "dodano %1 jako wartość dla %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "%1 temu" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 już istnieje i zawiera tabele RT, ale nie zawiera metadanych RT. Kolejny krok, 'Zainicjuj BazÄ™ Danych', może zaimportować metadane do tej bazy danych. Jesli siÄ™ na to zgadzasz, kliknij 'Dostosuj Ustawienia Podstawowe' poniżej aby kontynuować dostosowywanie RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 już istnieje ale nie zawiera tabel i metadanych RT. Kolejny krok, 'Zainicjuj BazÄ™ Danych', może utworzyć tabele i zaimportować metadane do tej bazy danych. Jesli siÄ™ na to zgadzasz, kliknij 'Dostosuj Ustawienia Podstawowe' poniżej aby kontynuować dostosowywanie RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "Wydaje siÄ™, że %1 to obiekt lokalny, ale nie udaÅ‚o siÄ™ wyszukać go w bazie danych" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 wydaje siÄ™ być w peÅ‚ni zainicjowana. Nie trzeba tworzyć żadnych tabel ani importować metadanych, ale możesz kontynuować dostosowywanie RT poprzez klikniÄ™cie 'Dostosuj Ustawienia Podstawowe' poniżej" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 przez %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 nie może być grupÄ…" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 zmieniÅ‚o siÄ™ z %2 na %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 zmieniÅ‚ siÄ™ z '%2' na '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "kopia %1" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "Ustawienia podstawowe %1" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "nie udaÅ‚o siÄ™ ustawić %1 na %2" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 utworzono" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 usuniÄ™to" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 zablokowane" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 nie istnieje." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 odblokowane" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 zgÅ‚oszeÅ„ o najwyższym priorytecie, których jestem wÅ‚aÅ›cicielem" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 jest narzÄ™dziem umożliwiajÄ…cym obsÅ‚ugÄ™ zgÅ‚oszeÅ„ z zewnÄ™trznej aplikacji do sporzÄ…dzania wykazów, takiej jak cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 to narzÄ™dzie, które powinno być uruchamianane z crona, wysyÅ‚ajÄ…ce wszelkie opóźnione powiadomienia RT jako zestawienie na każdego użytkownika." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 jest już ustawione na %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 jest adresem, pod którym RT otrzymuje pocztÄ™. Dodanie tego jako '%2' stworzyÅ‚oby pÄ™tlÄ™ pocztowÄ…." #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 nie jest już wartoÅ›ciÄ… pola %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 nie jest %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 nie jest prawidÅ‚owym cyklem życia" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 zgÅ‚oszeÅ„" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 klucz '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 ostatnio zaktualizowanych artykułów" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 najnowszych artykułów" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 zgÅ‚oszeÅ„ bez wÅ‚aÅ›ciciela" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objets" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 ustawione na %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 konfiguracja miejsca" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 aktualizacja: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "Aktualizacja %1: Bez dokonanych zmian" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 zaktualizowano" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%2 obiekty %1" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%3 obiekty %1 i %2" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "aktualne hasÅ‚o dla %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Panele użytkownika %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "Klucze szyfrujace %1" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "Zapisane zapytania %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: nie okreÅ›lono załącznika" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Nowe zgÅ‚oszenie w%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "%1g" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,artykuÅ‚,artykuÅ‚y)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,dzieÅ„,dni)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,godzina,godzin)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,godzina,godziny) (%quant(%2,minuta,minuty))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,minuta,minuty)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,miesiÄ…c,miesiÄ…ce)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,sekunda,sekundy)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,tydzieÅ„,tygodnie)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,rok,lata)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' nie jest prawidÅ‚owÄ… nazwÄ…." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' nie jest prawidÅ‚owÄ… klasÄ…" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' nie jest prawidÅ‚owym identyfikatorem klasy" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Zaznacz pole aby zakoÅ„czyć)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Zaznacz pole, aby usunąć)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Zaznacz pola, aby usunąć)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "(Zaznacz, aby skasować wszystkie wartoÅ›ci)" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Wprowadź numery lub adresy URL zgÅ‚oszeÅ„, oddzielone spacjami)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(JeÅ›li pozostawisz puste, domyÅ›lnie zostanie ustawione na %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(Niekompletny)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(NieprawidÅ‚owe dane)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Brak pól definiowanych przez użytkownika)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Brak czÅ‚onków grupy)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Brak skryptów)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Brak szablonów)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(WysyÅ‚a kopiÄ™ tej aktualizacji jako \"do wiadomoÅ›ci\" do oddzielonej przecinkami listy administracyjnych adresów e-mail. Ci ludzie bÄ™dÄ… otrzymywali przyszÅ‚e aktualizacje.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(WysyÅ‚a kopie tej aktualizacji na adres email podane jako oddzielana przecinkami lista. Te osoby bÄ™dÄ… w przyszÅ‚oÅ›ci otrzymywać aktualizacje)." #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Skorzystaj z tych pól jeÅ›li wybrano 'Definiowany przez użytkownika' w atrybutach warunku lub operacji)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(jakiekolwiek)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(brak streszczenia)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(brak nazwy)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(brak klucza publicznego!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(brak wartoÅ›ci)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(aucune valeur)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(w toku %quant(%1,zadanie,zadaÅ„))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(oczekuje na zatwierdzenie)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(wymagana)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(ufaj: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(nienazwany)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(niezaufany!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id jest przestarzaÅ‚ym parametrem i nie może być używany z --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--transaction może przyjmować jednÄ… z wartoÅ›ci: 'first', 'last' lub 'all' (odpowiednio pierwsza, ostatnia, wszystkie)" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 sekund" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Szablon o takiej nazwie już istnieje" #: etc/initialdata:258 msgid "A blank template" msgstr "Pusty szablon" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "HasÅ‚o nie zostaÅ‚o ustawione, wiÄ™c użytkownik nie bÄ™dzie mógÅ‚ siÄ™ zalogować." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "Nie udaÅ‚o siÄ™ odnaleźć ACE" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACE mogÄ… być tylko utworzone lub usuniÄ™te." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "aktualizacja listy dostÄ™pu z %1" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "I" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Użytkownika" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Kontrola dostÄ™pu" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Operacja" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Akcja '%1' nie znaleziona" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Operacja zostaÅ‚a zatwierdzona" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Akcja jest obowiÄ…zkowym parametrem" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Operacja zostaÅ‚a przygotowana..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "DziaÅ‚ania" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Aktywne zgÅ‚oszenia" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Aktywne zgÅ‚oszenia dla %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Dodaj %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Dodaj AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Dodaj zakÅ‚adkÄ™" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Dodaj Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Dodaj kolumny" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Dodaj kryterium" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Dodaj wiÄ™cej plików" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Dodaj zgÅ‚aszajÄ…cego" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Dodaj wartość" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Dodaj komentarze lub odpowiedzi do wybranych zgÅ‚oszeÅ„" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Dodaj grupÄ™" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Dodaj tutaj" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Dodaj czÅ‚onków grupy" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Dodaj nowych obserwatorów" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Dodaj prawa do tego %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Dodaj wybrane warunki" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Dodaj wybrane warunki i wyszukaj" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Dodaj użytkownika" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Dodaj wartoÅ›ci" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Dodaj, modyfikuj i usuÅ„ wartoÅ›ci pól zdefiniowanych przez użytkownika dla obiektów" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Dodano" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "Dodano nadpisanie tematu: %1" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adres" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Adres 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adres 1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adres 2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "Skorygowany czas przepracowany przez %quant(%1,minutÄ™,minut)" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Administrator" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Administracja komentarzami" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Komentarz administratora w HTML" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Administracja korespondencjÄ…" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Korespondencja administratora w HTML" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Administracja kolejkami" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Globalna konfiguracja - administracja" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "Do wiadomoÅ›ci administratorów" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "Do wiadomoÅ›ci administratorów" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "HasÅ‚o administracyjne" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Zaawansowane" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Wyszukiwanie zaawansowane" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Po zalogowaniu zostaniesz przekierowany do pierwotnego miejsca:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Subskrybent" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Wszystkie warunki poprawnoÅ›ci speÅ‚nione" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Wszystkie zatwierdzenia przekazane w HTMLu" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Wszystkie artykuÅ‚y w tej klasie powinny być wykazane w menu rozwijalnym dla każdego zgÅ‚oszenia na stronie odpowiedzi na zgÅ‚oszenie." #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Wszystkie klasy" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Wszystkie dowolnie zdefiniowane pola" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Wszystkie panele" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Wszystkie kolejki" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Wszystkie zgÅ‚oszenia" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Wszystkie źródÅ‚a iCal zawierajÄ… token powiÄ…zany z tobÄ…. Jeżeli ktokolwiek pozna odnoÅ›nik URL dla któregoÅ› z twoich źródeÅ‚ iCal, poniżej możesz otrzymać nowy token, jednak wzsystkie dotychczasowe źródÅ‚a iCal zostanÄ… odłączone od tokena." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Wszystkie kolejki speÅ‚niajÄ…ce kryteria wyszukiwania" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Wszystkie zgÅ‚oszenia" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Wszystkie tematy" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Zezwól na tworzenie zapisanych wyszukiwaÅ„" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Umożliwienie wgrywania zapisywanych schematów wyszukiwania" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Zezwól na wpisywanie kodu Perl w szablonach, skryptach, etc" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "ZostaÅ‚ zaszyfrowany już wczeÅ›niej" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "Należey podać przykÅ‚ad" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "WystÄ…piÅ‚ błąd" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "I/Lub" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Jakiekolwiek pole" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Jakiekolwiek sÅ‚owo nie rozpoznane przez RT szukane jest po tematach zgÅ‚oszeÅ„" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Zastosuj do:" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Zastosuj do wszystkich obiektów" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Zastosuj" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Zastosuj globalnie" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Użyj zaznaczonych skryptów" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Zastosuj zmiany" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Potwierdzenia" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Potwierdzenie #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Potwierdzenie #%1: Uwagi nie zostaÅ‚y zapisane z powodu błędu systemu" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Potwierdzenie #%1: Uwagi zostaÅ‚y zapisane" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Zatwierdzone" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Zatwierdzona gotowość dla WÅ‚aÅ›ciciela" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Odrzucone" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Zatwierdź" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Kwi" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "ArtykuÅ‚ #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "ArtykuÅ‚ #%1 nie zostaÅ‚ znaleziony" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "ArtykuÅ‚ #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Utworzono artykuÅ‚ %1" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Administracja artykuÅ‚ami" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "ArtykuÅ‚ nie zostaÅ‚ odnaleziony" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "ArtykuÅ‚y" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "ArtykuÅ‚y w %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "ArtykuÅ‚y podobne do %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "ArtykuÅ‚y bez tematów" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "RosnÄ…co" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Załączniki" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Załącz plik" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Plik zostaÅ‚ załączony" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Załącznik" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Nie udaÅ‚o siÄ™ dodać załącznika '%1'" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Załącznik zostaÅ‚ utworzony" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Nazwa pliku załącznika" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Załączniki" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Szyfrowanie załączników jest wyłączone" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Atrybut usuniÄ™ty" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Sie" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:261 msgid "Autoreply" msgstr "Automatyczna odpowiedź" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Automatyczna odpowiedź wysyÅ‚ana do zgÅ‚aszajÄ…cych" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "DostÄ™pne" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Wstecz" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "ZÅ‚e ustawienia prywatnoÅ›ci dla atrybutu %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Podst. informacje" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Skrypty wsadowe" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Bcc/UDW" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Pusty" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Treść" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Pogrubienie" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "ZakÅ‚adka" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "ZgÅ‚oszenia zapisane w zakÅ‚adkach" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "ZgÅ‚oszenia w zakÅ‚adkach" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "PrzeglÄ…daj wedÅ‚ug tematów" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "PrzeglÄ…daj zapytania SQL utworzone w tym procesie" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Hurtowa Aktualizacja" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "Oblicz" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "Oblicz wartoÅ›ci" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Nie można wczytać zapisanego wyszukiwania \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Nie można zmienić użytkowników systemu" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Nie można wprowadzić wartoÅ›ci pola bez nazwy" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Nie można połączyć zgÅ‚oszenia z tym samym zgÅ‚oszeniem" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Nie można zapisać %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Niemożliwe jest zapisanie tego zapytania" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Nie można tworzyć zgÅ‚oszeÅ„ w wyłączonej kolejce." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategorie sÄ… oparte o" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategoria" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "DW" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Zmodyfikuj" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "ZmieÅ„ hasÅ‚o" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Wykres" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Zaznacz wszystko" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Sprawdź łączność z bazÄ… danych" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Sprawdź poÅ›wiadczenia do bazy danych" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Zaznacz pole, aby usunąć" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "ZgÅ‚oszenia podrzÄ™dne" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Wybierz silnik bazy danych" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Wybierz spoÅ›ród tematów dla %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Miasto" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Klasa" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Nazwa klasy" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Klasa nie może zostać utworzona: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Identyfikator klasy" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Klasa jest już przypisana globalnie" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Klasa jest już przypisana do %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Klasy" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Wyczyść" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Odznacz wszystko" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "WciÅ›nij \"ZakoÅ„cz instalacje\" poniżej aby zakoÅ„czyć kreator instalacji." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "WciÅ›nij przycisk \"Inicjuj bazÄ™\" aby utworzyć bazÄ™ danych RT oraz wczytać dane startowe. Proces ten może potrwać chwilÄ™." #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Kliknij aby wybrać kolor" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "ZamkniÄ™te" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "ZamkniÄ™te zgÅ‚oszenia" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Wybierz lub wpisz wiele wartoÅ›ci" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Combobox: Wybierz lub wpisz jednÄ… wartość" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Combobox: Wybierz lub wpisz do %1 wartoÅ›ci" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Komentuj" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Adres komentarza" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Adres do komentarzy" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Komentarz do zgÅ‚oszeÅ„" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Komentarze" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Komentarze (które nie zostanÄ… wysÅ‚ane zgÅ‚aszajÄ…cym)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Uwagi dotyczÄ…ce użytkownika" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Komentarze zostaÅ‚y dodane" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Potwierdzenie wysÅ‚ane do zgÅ‚aszajÄ…cego" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Warunek" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Nie znaleziono warunku '%1'" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Warunek jest argumentem obowiÄ…zkowym" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Warunek zgadza siÄ™ z ..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Warunek, Akcja i Szablon" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Plik konfiguracyjny %1 jest zablokowany" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Konfiguracja dla kolejki %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Połączenie siÄ™ powiodÅ‚o" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Skontaktuj siÄ™ z administratorem Twojego RT %1wysyÅ‚ajÄ…c email na adres %2%3." #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Skontaktuj siÄ™ z administratorem Twojego RT" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Zawartość" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Zawartość jest nieprawidÅ‚owym adresem IP" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Zawartość jest nieprawidÅ‚owym zakresem adresów IP" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Typ zawartoÅ›ci" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Adres do korespondencji" #: etc/initialdata:393 msgid "Correspondence" msgstr "Korespondencja" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Korespondencja zostaÅ‚a dodana" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Nie udaÅ‚o siÄ™ zmienić wÅ‚aÅ›ciciela: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Nie udaÅ‚o siÄ™ utworzyć grupy" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Nie udaÅ‚o siÄ™ utworzyć wyszukiwania: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Nie udaÅ‚o siÄ™ utworzyć zgÅ‚oszenia. Nie okreÅ›lono kolejki" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Nie udaÅ‚o siÄ™ utworzyć użytkownika" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Nie można usunąć wyszukiwaÅ„ %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Nie znaleziono grupy '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Nie udaÅ‚o siÄ™ odnaleźć ani utworzyć użytkownika '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Nie można wczytać atrybutu %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować Klasy %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować grupy" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować obiektu dla %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "Nie udaÅ‚o siÄ™ wczytać skryptu #%1" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Nie udaÅ‚o siÄ™ wczytać użytkownika '%1'" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Niemożliwe byÅ‚o zapisanie danych użytkownika" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Aktualizacja kolumny %1 niepowiodÅ‚a siÄ™: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Nie udaÅ‚o siÄ™ dodać ząłącznika" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Nie udaÅ‚o siÄ™ dodać nowego czÅ‚onka grupy" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Nie udaÅ‚o siÄ™ utworzyć transakcji: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Nie można stworzyć rekordu: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Nie można usunąć panelu %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Nie udaÅ‚o siÄ™ wyszukać wiersza" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Nie udaÅ‚o siÄ™ wyszukać tego zarzÄ…dzajÄ…cego" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Nie udaÅ‚o siÄ™ wyszukać tej wartoÅ›ci" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować klasy %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Nie można zaÅ‚adować niestandardowego pola #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować pola %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Nie można zaÅ‚adować kopii zÅ‚oszenia #%1" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować panelu %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować grupy #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować grupy %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować połączenia" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Impossible de charger l'objet %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować lub utworzyć użytkownika: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować kolejki" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować kolejki #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować kolejki %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Nie można wczytać kolejki '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować skryptu #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować szablonu #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować zgÅ‚oszenia '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować czÅ‚oków tematu podczas próby jego usuniÄ™cia" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować transakcji nr %1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować użytkownika" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować użytkownika nr %1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować użytkownika nr %1 lub użytkownika '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować użytkownika '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Nie udaÅ‚o siÄ™ zastÄ…pić zawartoÅ›ci zaszyfrowanymi danymi: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Nie udaÅ‚o siÄ™ zastÄ…pić zawartoÅ›ci zaszyfrowanymi danymi: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Nie udaÅ‚o siÄ™ ustawić obserwatora %1: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Nie udaÅ‚o siÄ™ ustawić klucza prywatnego" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Kraj" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Utwórz" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Utwórz zgÅ‚oszenia" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Utwórz klasÄ™" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Utwórz pole definiowane przez użytkownika" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Utwórz pole dla kolejki %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Utwórz nowy artykuÅ‚" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Utwórz nowy artykuÅ‚ w" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Utwórz nowy panel" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Utwórz nowÄ… grupÄ™" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Stwórz nowy szablon dla kolejki %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "Utwórz nowe zgÅ‚oszenie w kolejce" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Utwórz nowego użytkownika" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Utwórz kolejkÄ™" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Utwórz szablon" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Utwórz zgÅ‚oszenie" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Utwórz artykuÅ‚" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Utwórz artykuÅ‚ w ramach klasy..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Utwórz artykuÅ‚y w tej klasie" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Utwórz grupÄ™ paneli" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Utwórz nowe zgÅ‚oszenia na podstawie szablonu tego skryptu" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Utwórz prywatny panel" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Utwórz panel systemowy" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Utwórz zgÅ‚oszenie" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Utwórz zgÅ‚oszenia" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Twórz, zmieniaj i usuwaj pola definiowane przez użytkownika" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Twórz, zmieniaj i usuwaj wartoÅ›ci pól definiowanych przez użytkownika" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Tworzenie, modyfikacja oraz usuwanie kolejek" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Twórz, zmieniaj lub usuwaj zapamiÄ™tane wyszukiwania" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Tworzenie, modyfikacja oraz usuwanie użytkowników" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Zarejestrowane" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Utworzono przez" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Pole %1 zostaÅ‚o utworzone" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Utworzony przez" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Utworzono wyszukiwanie %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "UtworzonyPrzez" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "UtworzonaZależność" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "ZgÅ‚aszajÄ…cy" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kryptografia" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "Kryptografia zostaÅ‚a wyłączona" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Aktualne powiÄ…zania" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Bieżące wyszukiwanie" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Aktualni czÅ‚onkowie" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Aktualne wyszukiwanie" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Aktualni obserwatorzy" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Pola def. przez użytkownika" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Pola definiowane przez użytkownika dla %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Pola definiowane przez użytkownika dla kolejki %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Treść procedury definiowana przez użytkownika" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Warunek definiowany przez użytkownika" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Pole definiowane przez użytkownika nr %1 nie jest zastosowane dla tego obiektu" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Pole definiowane przez użytkownika %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Pole definiowane przez użytkownika %1 nie ma zastosowania dla tego obiektu" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Pole %1 definiowane przez użytkownika ma wartość." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Brak wartoÅ›ci w polu %1 definiowanym przez użytkownika." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Nie udaÅ‚o siÄ™ wyszukać pola %1 definiowanego przez użytkownika" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Nie udaÅ‚o siÄ™ wyszukać wartoÅ›ci %1 dla pola %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Nie można usunąć wartoÅ›ci pola" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Wartość pola zostaÅ‚a usuniÄ™ta" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Pole" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "WartośćPola" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Dostosuj" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Dostosuj adresy email" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Dostosuj konfiguracjÄ™ email" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Dostosuj wyglÄ…d swojego RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "hasÅ‚o DBA" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "nazwa użytkownika DBA" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Dziennie" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Skrót dzienny" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Panel" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "Panel %1 nie mógÅ‚ być zaktualizowany: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "Panel %1 zaktualizowany" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Nie udaÅ‚o siÄ™ utworzyć panelu: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Nie udaÅ‚o siÄ™ zaktualizować panelu: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Panel zaktualizowany" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Panele" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Panele w menu" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Panele w menu dla użytkownika %1" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Host bazy danych" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nazwa bazy danych" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "HasÅ‚o bazy danych dla RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Port bazy danych" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Typ bazy danych" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Nazwa użytkownika bazodanowego dla RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "Data" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Format daty" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Daty" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Gru" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Odszyfrowanie" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "Błąd deszyfracji, skontaktuj siÄ™ z administratorem" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "DomyÅ›lna kolejka" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "DomyÅ›lny szablon przypomnienia" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "DomyÅ›lnie: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "DomyÅ›lnie: %1/%2 zmieniane z \"%3\" na \"%4\"" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "UsuÅ„" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "UsuÅ„ szablon" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Nie udaÅ‚o siÄ™ usunąć: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "UsuÅ„ grupowe panele" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Funkcja kasowania zostaÅ‚a wyłączona w konfiguracji cyklu życia" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "UsuÅ„ panele osobiste" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "UsuÅ„ panele systemowe" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "UsuÅ„ zgÅ‚oszenia" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "UsuÅ„ wartoÅ›ci" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "UsuniÄ™to %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "UsuniÄ™te zapytania" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "UsuniÄ™to zapisane wyszukiwanie" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "UsuniÄ™te wyszukiwanie %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "UsuniÄ™cie tego obiektu spowoduje brak spójnoÅ›ci" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "UsuniÄ™cie tego obiektu naruszy spójność" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Odrzucić" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "ZgÅ‚oszenia zależne" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "WymaganePrzez" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Zależność %1 dodana" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Zależność %1 usuniÄ™ta" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Zależność od %1 dodana" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Zależność od %1 usuniÄ™ta" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "ZależneOd" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Zależy od" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "ZależyOd" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "MalejÄ…co" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Opis zgÅ‚oszenia" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Opis" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Szczegółowe informacja o twojej instalacji RT" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Szczegóły" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Kierunek" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Nieaktywne" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "WyÅ›wietl" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "WyÅ›wietl ListÄ™ Praw DostÄ™pu" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "WyÅ›wietl artykuÅ‚ %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Wybierz kolumny" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Rozpowszechniane zgodnie z %1wersjÄ… 2 licencji GNU GPL%2." #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Zrób cokolwiek i wszystko" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Nazwa domeny" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Nie odÅ›wieżaj strony domowej." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Nie odÅ›wieżaj wyników wyszukiwania" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Nie odÅ›wieżaj tej strony." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Wogóle nie ufaj temu kluczowi." #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Pobierz" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Lista rozwiajana" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Termin realizacji" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "WÅ‚aÅ›ciwaZależność" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "BÅÄ„D: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Edytuj" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Edytuj pola definiowane przez użytkownika" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Edytuj pola dla kolejki %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Edytuj pola definiowane przez użytkownika dla wszystkich grup" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Edytuj pola definiowane przez użytkownika dla wszystkich kolejek" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Edytuj pola definiowane przez użytkownika dla wszystkich użytkowników" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Edytuj pola definiowane przez użytkownika dla artykułów we wszystkich klasach" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Edycja zdefiniowanych przez użytkownia pól dla zgÅ‚oszeÅ„ we wszystkich kolejkach" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Edytuj powiÄ…zania" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Zmodyfikuj zapytanie" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Modyfikacja wyszukiwania" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Edytuj globalnÄ… hierarchiÄ™ tematów" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Edytuj szablony systemowe" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Edytuj hierarchie tematów %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Edytuj pole %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Edytuj listÄ™ czÅ‚onków grupy %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Podstawy lub cel muszÄ… być okreÅ›lone" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "UpÅ‚yneÅ‚o" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "e-mail" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Adres email" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Używany adres e-mail" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "Adres e-mail" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Włączone" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "UdostÄ™pnione (nieoznaczenie tego pola spowoduje, że pole bÄ™dzie niedostÄ™pne)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "UdostÄ™pniona (nieoznaczenie tego pola spowoduje, że grupa bÄ™dzie niedostÄ™pna)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "UdostÄ™pniona (nieoznaczenie tego pola spowoduje, że kolejka bÄ™dzie niedostÄ™pna)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "DostÄ™pne klasy" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "DostÄ™pne kolejki" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Aktywny status %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Zaszyfruj" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "DomyÅ›lnie szyfruj" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Szyfruj/Deszyfruj" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Błąd szyfrowania, skontaktuj siÄ™ z administratorem" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Wprowadź artykuÅ‚y, zgÅ‚oszenia lub inne URLe zwiÄ…zane z tym zgÅ‚oszeniem." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Wprowadź wiele zakresów adresów IP" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Wprowadź wiele adresów IP" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Wprowadzanie wielu wartoÅ›ci" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Wprowadź wiele wartoÅ›ci z autouzupeÅ‚nianiem" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Aby powiÄ…zać obiekty, wprowadź URI obiektów oddzielone spacjami." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Wprowadź jeden adres IP" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Wprowadź jeden zakres adresów IP" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Wprowadzanie jednej wartoÅ›ci" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Wprowadź jednÄ… wartość z autouzupeÅ‚nianiem" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Aby powiÄ…zać kolejki, wprowadź URI kolejek oddzielone spacjamii." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Aby powiÄ…zać zgÅ‚oszenia, wprowadź numery zgÅ‚oszeÅ„ lub URI oddzielone spacjami." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Wprowadź do %1 zakresów adresów IP" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Wprowadź do %1 adresów IP" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Wprowadź wartoÅ›ci aż do %1" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Wprowadź do %1 wartoÅ›ci z autouzupeÅ‚nianiem" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "Zmienne Å›rodowiskowe" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Błąd" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "Błąd kreÅ›lenia wykresu: %1" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Błąd dla wÅ‚aÅ›ciciela RT: klucz publiczny" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Błąd: brakuje panelu" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Błąd: zÅ‚e dane GnuPG" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "Błąd: niepoprawne zaszyfrowane dane" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Błąd: nie udaÅ‚o siÄ™ zaÅ‚adować zapisanego wyszukiwania %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Błąd: brak klucza prywatnego" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Błąd: klucz publiczny" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Eskaluj zgÅ‚oszenia" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Szacowane" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Wszyscy" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "PrzykÅ‚ad:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Wygasa" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "RozszerzonyStatus" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Uwierzytelnianie zewnÄ™trzne włączone." #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Informacje dodatkowe" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "WydobÄ…dź artykuÅ‚" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "WydobÄ…dź nowy artykuÅ‚ ze zgÅ‚oszenia nr %1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Wydziel artykuÅ‚ ze zgÅ‚oszenia #%1 w klasie %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Nie udaÅ‚o siÄ™ połączyć z bazÄ… danych: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Nie udaÅ‚o siÄ™ utworzyć atrybutu %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Nie udaÅ‚o siÄ™ wyszukać czÅ‚onków grupy 'Uprawnieni'" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Nie udaÅ‚o siÄ™ wyszukać czÅ‚onków grupy 'Nieuprawnieni'" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować moduÅ‚u %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować obiektu dla %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować szablonu" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "Błąd wczytywania zgÅ‚oszenia %1" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Nie udaÅ‚o siÄ™ przetworzyć szablonu" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Lut" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "KanaÅ‚y" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Pole" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" # Nie jestem pewien: jedno sÅ‚owo! #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Nazwa pliku" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "Pliki, których nazwa zawieraja podwójny cudzysłów nie mogÄ… być przesÅ‚ane na serwer." #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Podaj argumenty" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Wypełń pola tekstowe" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "WypeÅ‚nij wiele obszarów wikitext" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Wypełń jedno pole tekstowe" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "WypeÅ‚nij jeden obszar wikitext" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "WypeÅ‚nij to pole URLem." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Saisir dans %1 champs de type texte maximum" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "WypeÅ‚nij do %1 obszarów wikitext" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "KoÅ„cowy priorytet" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "KoÅ„cowy priorytet" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Znajdź użytkownika" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Wyszukaj grupy, których:" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Wyszukaj użytkowników, których" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Wyszukaj zgÅ‚oszenia" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Odcisk klucza" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "ZakoÅ„cz" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Pierwsze" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "Aby uzyskać pomoc skontaktuj siÄ™ z %1" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "WymuÅ› zmianÄ™" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Przekaż" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Przekaż wiadomość" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Przekaż Wiadomość i Powróć" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Przekaż zgÅ‚oszenie" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Przekazuj wiadomoÅ›ci poza RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Przekaż zgÅ‚oszenie #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "" #: etc/initialdata:644 msgid "Forwarded message" msgstr "PrzesÅ‚ana wiadomość" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Wyszukano %1 zgÅ‚oszeÅ„" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Wyszukany obiekt" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "CzÄ™stotliwość" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Pt" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "PiÄ…tek" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Od" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Ogólne" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Ogólne prawa" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Wprowadzenie" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Nadany dla %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Globalna" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Atrybuty globalne" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Tematy globalne" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Pola definiowane przez użytkownika" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "Szablon globalny '%1' nie zostaÅ‚ znaleziony" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Pobierz" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Przejdź do grupy" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Przejdź do użytkownika" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Start!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Przejdź do zgÅ‚oszenia" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Przejdź do zgÅ‚oszenia" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Wykres" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "WÅ‚aÅ›ciwoÅ›ci wykresu" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Wyresy nie sÄ… dostÄ™pne" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Grupa" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Uprawnienia grupowe" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Grupa ma już czÅ‚onka: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "Grupuj wg" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Nie udaÅ‚o siÄ™ utworzyć grupy: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Grupa zostaÅ‚a utworzona" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Grupa zablokowana" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Grupa odblokowana" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Nie ma takiego czÅ‚onka grupy" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Nazwa grupy '%1' jest już używana" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Nie udaÅ‚o siÄ™ wyszukać grupy" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "Grupuj zgÅ‚oszenia wg" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "Grupa: %1" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupy" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Nie można przypisac grup jako czÅ‚onków tych grup" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Grupy do których należy ten użytkownik" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "PosiadaUżytkownika" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Witaj!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Ukryj wszystkie cytowane teksty" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Ukryj cytowane teksty" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historia" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Historia artykuÅ‚u #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Historique du groupe %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Historia kolejki %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Historique de l'utilisateur %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Telefon domowy" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "CzÄ™stotliwość odÅ›wieżania strony domowej" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Strona domowa" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Godzina" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Godziny" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Posiadam %quant(%1,concrete mixer)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "Nr" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identyfikacja użytkownika" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "JeÅ›li potwierdzenie zostaÅ‚o odrzucone, odrzuć oryginaÅ‚ i usuÅ„ oczekujÄ…ce potwierdzenia" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "JeÅ›li ta aplikacja zostaÅ‚a zachwiana, obcy lokalny użytkownik mógÅ‚ używać tej aplikacji, aby uzyskać do RT dostÄ™p na prawach administratora" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "JeÅ›li zmodyfikowaÅ‚eÅ› coÅ› powyżej" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Niedopuszczalna wartość dla %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "Obrazek wyÅ›wietlany w treÅ›ci powyżej" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "Obrazek nie jest pokazywany ponieważ nadawca wysÅ‚aÅ‚ go w sposób sugerujÄ…cy domyÅ›lnie nie wyÅ›wietlanie go." #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Pole, które nie może być powielane" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Nieaktywne zgÅ‚oszenia" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "UwzglÄ™dnij artykuÅ‚:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "UwzglÄ™dnij na liÅ›cie nieaktywne klasy" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "UwzglÄ™dnij na liÅ›cie nieaktywne pola." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "UwzglÄ™dnij na liÅ›cie nieaktywne grupy." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "UwzglÄ™dnij na liÅ›cie nieaktywne kolejki." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "UwzglÄ™dnij w wyszukiwaniu nieaktywnych użytkowników." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "UwzglÄ™dnij strone" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "UwzglÄ™dnij podtematy" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Poinformuj użytkownika że jego hasÅ‚o zostaÅ‚o zresetowane" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "PoczÄ…tkowy priorytet" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "PoczÄ…tkowy priorytet" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Błąd na wejÅ›ciu" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Błąd wewnÄ™trzny: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Błąd wewnÄ™trzny: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "Nieważny %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Nieważny %1 argument" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "NieprawidÅ‚owa wartość dla %1: musi być liczbÄ…" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "NieprawidÅ‚owe dane" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Niepoprawny obiekt" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Brak zgodnoÅ›ci ze wzorcem: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "NieprawidÅ‚owa kolejka" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "NieprawidÅ‚owe uprawnienie" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "NieprawidÅ‚owa wartość dla %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "NieprawidÅ‚owa wartość pola" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Bardzo ważne, aby nieuprawnieni użytkownicy nie posiadali uprawnieÅ„ do uruchomienia tej aplikacji." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Sugeruje siÄ™, aby utworzyć nieuprawnionego użytkownika w odpowiedniej grupie o odpowiednim dostÄ™pie do RT, aby uruchomić tÄ™ aplikacjÄ™" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Wymaga kilku argumentów:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Kursywa" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Sty" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Dołącz lub opuść grupÄ™" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Lip" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Wszystko" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Cze" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "JÄ™zyk" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "JÄ™zyk" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Duże" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Ostatnie" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Ostatnia modyfikacja" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Ostatnio modyfikowane" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Ostatnia aktualizacja" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Ostatnio zaktualizowane przez" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Ostatnio zaktualizowane" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Ostatnio zaktualizowane przez" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "OstAktualiz" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "OstAktPrzez" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "OstatniaAktualizacjaZależnoÅ›ci" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "PozostaÅ‚y" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "UdostÄ™pnij temu użytkownikowi RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Przydziel uprawnienia temu użytkownikowi" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "ÅÄ…cze" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Połączenie już istnieje" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Połączenie nie zostaÅ‚o odnalezione" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Powiąż zgÅ‚oszenie #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "PowiÄ…zane" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "PodpiÄ™tyDo" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "PowiÄ…zania" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "ZaÅ‚aduj" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "ZaÅ‚aduj zapisane zapytanie" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "ZaÅ‚aduj zapisane zapytanie" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "ZaÅ‚aduj zapisane zapytanie:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "ZaÅ‚adowano %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "ZaÅ‚adowane moduÅ‚y PERL" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Wczytywanie..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Ustawienia regionalne" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Lokalizacja" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Zalogowano jako %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Wylogowano" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Zaloguj siÄ™" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Wyloguj siÄ™" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Poczta" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Wprowadź wÅ‚aÅ›ciciela" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Wprowadź status" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Wprowadź termin realizacji" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Wprowadź datÄ™ rozpoczÄ™cia realizacji" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Wprowadź datÄ™ rozpoczÄ™cia realizacji" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Wprowadź datÄ™ wpÅ‚ywu" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Wprowadź priorytet" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Wprowadź kolejkÄ™" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Wprowadź temat" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Administracja polami zdefiniowanymi przez użytkownika" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Administracja grupami i czÅ‚onkami grup" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Administracja wÅ‚aÅ›ciwoÅ›ciami i konfiguracjÄ…, które dotyczÄ… wszystkich kolejek" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Administracja kolejkami i specyficznymi wÅ‚aÅ›ciwoÅ›ciami kolejek" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Administracja użytkownikami i hasÅ‚ami" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Zaznaczono wszystkie wiadomoÅ›ci jako przeczytane" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maj" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Moje" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "CzÅ‚onek" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "CzÅ‚onek %1 dodany" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "CzÅ‚onek %1 usuniÄ™ty" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "CzÅ‚onek grupy zostaÅ‚ dodany: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "CzÅ‚onek grupy zostaÅ‚ usuniÄ™ty" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "CzÅ‚onek grupy nie zostaÅ‚ usuniÄ™ty" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "CzÅ‚onekGrupy" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "CzÅ‚onkowie grup" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "CzÅ‚onkowstwo w %1 dodane" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "CzÅ‚onkowstwo w %1 usuniÄ™te" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "CzÅ‚onkostwo" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "CzÅ‚onkostwo użytkownika %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Połącz przez scalenie" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "UdaÅ‚o siÄ™ połączyć" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Nie udaÅ‚o siÄ™ połączyć. Nie udaÅ‚o siÄ™ ustawić efektywnego Id" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Połączyć w" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Połączono z %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Wiadomość" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Treść wiadomoÅ›ci nie zostaÅ‚a wyÅ›wietlona ponieważ jest za duża." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Treść wiadomoÅ›ci nie zostaÅ‚a wyÅ›wietlona ponieważ nadawca nie ustawiÅ‚ wyÅ›wietlania tej treÅ›ci." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Treść wiadomoÅ›ci nie zostaÅ‚a wyÅ›wietlona, ponieważ nie jest to zwykÅ‚y tekst" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Wiadomość nie mogÅ‚a zostać zapisana" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Wiadomość dla użytkownika" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Wiadomość zapisana" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Minimalna dÅ‚ugość hasÅ‚a" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuty" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "BrakujÄ…cy klucz główny?: %1:" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Tel. komórkowy" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Telefon komórkowy" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Zmodyfikuj" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Modyfikuj CzÅ‚onków" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Modyfikuj szablon skryptów" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Modyfikuj skrypty" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Modyfikuj pole dla kolejki %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Modyfikuj oraz stwarzaj klasy" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Zmodyfikuj oraz stwórz pola definiowane przez użytkownika dla artykułów" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Modyfikuj artykuÅ‚ #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Modyfikuj wartoÅ›ci pól definiowanych przez użytkownika" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Modyfikuj daty dla zgÅ‚oszenia #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Modyfikuj tytuÅ‚y artykułów globalnych" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Modyfikuj globalne pola definiowane przez użytkownika" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Modyfikuj globalne uprawnienia grupowe" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Modyfikuj tematy globalne" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Modyfikuj globalne uprawnienia użytkowników" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Modyfikuj panele grupowe" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Modyfikuj listÄ™ czÅ‚onków grupy" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Modyfikuj grupowe dane poÅ›rednie lub usuÅ„ grupÄ™" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Modyfikuj uprawnienia grupowe dla pola %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Modyfikuj uprawnienia grupowe dla grupy %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Modyfikuj uprawnienia grupowe dla kolejki %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Modyfikuj konto w RT" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Modyfikuj użytkowników powiÄ…zanych ze zgÅ‚oszeniem %1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Modyfikuj panele osobiste" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Modyfikuj obserwatorów kolejki" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Modyfikuj skrypty dla kolejki %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Modyfikuj skrypty, które dotyczÄ… wszystkich kolejek" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Modyfikuj panele systemowe" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Edytuj szablon %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Modyfikuj szablon %1 dla kolejki %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Modyfikuj szablony, które dotyczÄ… wszystkich kolejek" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Modyfikuj panel %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Modyfikuj grupÄ™ %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Modyfikuj subskrypcje panelu %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Modyfikuj użytkownika %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Modyfikuj zgÅ‚oszenie %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Modyfikuj zgÅ‚oszenie %1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Modyfikuj zgÅ‚oszenia" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Modyfikuj prawa użytkowników dla klasy %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Modyfikuj prawa użytkownika dla zdefiniowanego pola %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Modyfikuj uprawnienia użytkowników dla grupy %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Modyfikuj uprawnienia użytkowników dla kolejki %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Modyfikuj kto otrzyma pocztÄ™ za zgÅ‚oszenie #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Pon" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "PoniedziaÅ‚ek" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "WiÄ™cej o zgÅ‚aszajÄ…cych" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Wielokrotny" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Należy okreÅ›lić atrybut 'Nazwa'" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Moje %1 zgÅ‚oszenia" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Moje potwierdzenia" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Mój dzieÅ„" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Moje przypomnienia" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Moje potwierdzenia" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Moje panele" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Moje przypomnienia" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Moje zapytania" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Nazwa" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Nazwa oraz adres email użytkownika" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Używana nazwa" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Nigdy" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Nowe" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Nowy artykuÅ‚" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Nowy panel" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nowe powiÄ…zania" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Nowe zgÅ‚oszenie oczekujÄ…ce na zatwierdzenie" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Nowe wyszukiwanie" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nowe wiadomoÅ›ci" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nowe hasÅ‚o" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Nowe hasÅ‚o zostaÅ‚o wysÅ‚ane" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Nowe przypomnienie:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nowe zgÅ‚oszenie" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Nowe zgÅ‚oszenie nie istnieje" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Nowe zgÅ‚oszenie nie może mieć statusu '%1' w tej kolejce." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nowi obserwatorzy" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "NastÄ™pne" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Pseudonim" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Pseudonim" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Nie" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Nie zdefiniowano klasy" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Brak pola definiowanego przez użytkownika" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Nie zdefiniowano pola def. przez użytkownika" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Nie zdefiniowano grupy" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Brak zapytania" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Nie zdefiniowano kolejki" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Nie odnaleziono użytkownika RT. ProszÄ™ skontaktować siÄ™ z administratorem RT." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Brak tematu" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Brak szablonu" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Zawieszenie operacji" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Nie okreÅ›lono kolumny" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Nie wprowadzono komentarza dotyczÄ…cego tego użytkownika" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Brak opisu dla %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Nie okreÅ›lono grupy" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Brak załączonej wiadomoÅ›ci" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Nie ustawiono hasÅ‚a" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Brak uprawnieÅ„ do tworzenia kolejek" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Brak uprawnieÅ„ do tworzenia zgÅ‚oszeÅ„ w kolejce '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Brak uprawnieÅ„ do wyÅ›wietlenia tego zgÅ‚oszenia" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Brak uprawnieÅ„ do wyÅ›wietlenia zaktualizowanych zgÅ‚oszeÅ„" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Nie wybrano zarzÄ…dzajÄ…cych." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Brak klucza prywatnego" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Brak kolejek odpowiadajÄ…cych kryteriom wyszukiwania" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Nie udaÅ‚o siÄ™ wyszukać uprawnieÅ„" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Brak kryteriów wyszukiwania" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Brak tematu" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Nie znaleziono zgÅ‚oszeÅ„." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Nie okreÅ›lono typu transakcji" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Nie znaleziono używalnych kluczy." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Brak użytkowników odpowiadajÄ…cych kryteriom wyszukiwania" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Niczyje" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Brak" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "NieistniejÄ…ce pole?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Nie znaleziono" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Nie udaÅ‚o siÄ™ zalogować." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Nie ustawiona" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Uwagi" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Powiadomienie nie może zostać wysÅ‚ane" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "WyÅ›lij powiadomienie do osób o uprawnieniach AdminDW" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "WyÅ›lij powiadomienie do osób o uprawnieniach AdminDW jako komentarz" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "WyÅ›lij powiadomienia do osób o uprawnieniach Cc" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "WyÅ›lij powiadomienia do osób o uprawnieniach Cc jako komentarz" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "WyÅ›lij powiadomienie do innych odbiorców" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "WyÅ›lij powiadomienie do innych odbiorców jako komentarz" #: etc/initialdata:47 msgid "Notify Owner" msgstr "WyÅ›lij powiadomienie do wÅ‚aÅ›ciciela" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "WyÅ›lij powiadomienie do wÅ‚aÅ›ciciela jako komentarz" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Powiadom WÅ‚aÅ›ciciela o odrzuceniu jego zgÅ‚oszenia" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "WyÅ›lij powiadomienie do wÅ‚aÅ›cicieli i osób o uprawnieniach AdminCc o nowych pozycjach oczekujÄ…cych na zatwierdzenie przez nich" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "WyÅ›lij powiadomienie do zgÅ‚aszajÄ…cych" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "WyÅ›lij powiadomienie do zgÅ‚aszajÄ…cych i osób o uprawnieniach DW" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "WyÅ›lij powiadomienie do zgÅ‚aszajÄ…cych i osób o uprawnieniach DW jako komentarz" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Lis" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Nie udaÅ‚o siÄ™ utworzyć obiektu" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Obiekt zostaÅ‚ utworzony" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Obiekt zostaÅ‚ usuniÄ™ty" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Le type d'objet ne correspond pas" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Paź" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "w przypadku zamkniÄ™cia" #: etc/initialdata:170 msgid "On Comment" msgstr "w przypadku komentarza" #: etc/initialdata:142 msgid "On Correspond" msgstr "W przypadku korespondencji" #: etc/initialdata:131 msgid "On Create" msgstr "w przypadku rejestracji zgÅ‚oszeÅ„" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "w przypadku zmiany wÅ‚aÅ›ciciela" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "w przypadku zmiany priorytetu" #: etc/initialdata:199 msgid "On Queue Change" msgstr "w przypadku zmiany kolejki" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "w przypadku odrzucenia" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "w przypadku ponownego otwarcia" #: etc/initialdata:205 msgid "On Resolve" msgstr "w przypadku zamykania zgÅ‚oszeÅ„" #: etc/initialdata:176 msgid "On Status Change" msgstr "w przypadku zmiany statusu" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "w przypadku transakcji" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Jednorazowe Bcc/UDW" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Jednorazowe DW" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "WyÅ›wietl tylko potwierdzenia dotyczÄ…ce zgÅ‚oszeÅ„ zarejestrowanych po %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "WyÅ›wietl tylko potwierdzenia dotyczÄ…ce zgÅ‚oszeÅ„ zarejestrowanych przed %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Pokaż pola definiowane przez użytkownika tylko dla:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Otwórz" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Otwórz zgÅ‚oszenia" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Otwórz URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Otwarte zgÅ‚oszenia" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Otwórz zgÅ‚oszenia, które sÄ… w trakcie ustalania (wymiany korespondencji)" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Ustawienia" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "UporzÄ…dkuj wg" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Firma" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "ZgÅ‚oszenie źródÅ‚owe: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Zarejestrowano wychodzÄ…cÄ… wiadomość o komentarzu" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Zarejestrowano wiadomość wychodzÄ…cÄ…" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "PrzeglÄ…d" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Moje zgÅ‚oszenia" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "WÅ‚aÅ›ciciel" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "WÅ‚aÅ›ciciel '%1' nie ma uprawnieÅ„ do tego zgÅ‚oszenia." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Zmieniono wÅ‚aÅ›ciciela z %1 na %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Wymuszono zmianÄ™ wÅ‚aÅ›ciciela z %1 na %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "NazwaWÅ‚aÅ›ciciela" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Strona" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Strona 1 z 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Strona nie zostaÅ‚a znaleziona" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "ZgÅ‚oszenia nadrzÄ™dne" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "HasÅ‚o" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "HasÅ‚o zostaÅ‚o zmienione" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "HasÅ‚o nie zostaÅ‚o ustawione" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "HasÅ‚o musi mieć co najmniej %1 znaków dÅ‚ugoÅ›ci" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "HasÅ‚o ustawione" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "HasÅ‚o: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "HasÅ‚o: Odmowa dostÄ™pu" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "HasÅ‚a sÄ… różne." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Osoby" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Wykonaj operacjÄ™ zdefiniowanÄ… przez użytkownika" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Konfiguracja PERL" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Trwale usuÅ„ dane z RT" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Odmowa dostÄ™pu" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Odmowa dostÄ™pu" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Numery tel." #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "WÅ‚aÅ›ciwoÅ›ci" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Zapisano zmiany." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Informacja o przygotowaniu zostaÅ‚a wysÅ‚ana do zgÅ‚aszajÄ…cego" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Poprzednie" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Nie udaÅ‚o siÄ™ wyszukać zarzÄ…dzajÄ…cego %1." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Drukuj wiadomość" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Priorytet" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Prywatność" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Prywatne:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Klucz prywatny" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Uprawnieni" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Uprawniony status: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Uprawnieni użytkownicy" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Grupa do użytku wewnÄ™trznego" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Zapytania" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Zapytanie" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Kreator zapytaÅ„" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Kolejka" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Nie udaÅ‚o siÄ™ wyszukać kolejki %1" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Nazwa kolejki" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Kolejka już istnieje" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Nie udaÅ‚o siÄ™ utworzyć kolejki" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować kolejki" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Kolejka zostaÅ‚a utworzona" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Id kolejki" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Nie udaÅ‚o siÄ™ wyszukać kolejki" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "NazwaKolejki" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Kolejki" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Szybkie wyszukiwanie" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Szybkie tworzenie zgÅ‚oszeÅ„" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Administracja RT" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "Adres poczty elektronicznej administratora RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "Błąd RT" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT - przeglÄ…d podstawowych informacji" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "RT - przeglÄ…d podstawowych informacji dla użytkownika %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT dla %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Otwórz ponownie" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "ImiÄ™ i nazwisko" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "PowiÄ…zanie %1 dodane" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "PowiÄ…zanie %1 usuniÄ™te" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "PowiÄ…zanie z %1 dodane" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "PowiÄ…zanie z %1 usuniÄ™te" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "ZgÅ‚oszenia powiÄ…zane" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "OdnoÅ›nieDo" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "PowiÄ…zane z" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "PowiÄ…zaneZ" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "OdÅ›wież" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "OdÅ›wieżaj tÄ™ stronÄ™ co %1 minut." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Odrzuć" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Przypomnienie" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Dodano przypomnienie '%1'" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "Przypomnienie '%1': %2" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Przypomnienia" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Przypomnienia dla zgÅ‚oszenia nr %1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "UsuÅ„ AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "UsuÅ„ zakÅ‚adkÄ™" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "UsuÅ„ Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "UsuÅ„ zgÅ‚aszajÄ…cego" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Odpowiedz" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Adres odpowiedzi" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Odpowiedz zgÅ‚aszajÄ…cym" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Odpowiedz na zgÅ‚oszenia" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "ZgÅ‚aszajÄ…cy" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "ZgÅ‚aszajÄ…cy" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Wymagany atrybut '%1' nie zostaÅ‚ okreÅ›lony" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Zresetuj" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Tel. domowy" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Zamknij" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Zamknij zgÅ‚oszenie nr %1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "ZamkniÄ™te" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "RozwiÄ…zanaZależność" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Wyniki" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Powróć do zgÅ‚oszenia" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Wpisz ponownie hasÅ‚o" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Przywróć" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Uprawnienie zostaÅ‚o zaÅ‚adowane" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Uprawnienie nie może być odebrane" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować uprawnienia" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Nie udaÅ‚o siÄ™ przydzielić uprawnieÅ„ dla %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Role" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Wiersze" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Linii na stronie" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sob" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Sobota" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Zapisz" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Zapisz zmiany" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Zapisz" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Zapisz jako Nowe" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Zapisano %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Zapisane wyszukiwanie" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Zapisane wyszukiwania" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Zapisane zapytania" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Skrypt #%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Skrypt zostaÅ‚ utworzony" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Skrypty" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Skrypty i Adresaci" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Wyszukaj" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Preferencje wyszukiwania" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Wyszukaj pasujÄ…ce artykuÅ‚y" # nie jestem pewien! #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Wyszukaj oczekujÄ…ce potwierdzenia" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Wyszukaj artykuÅ‚y" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Wyszukiwanie zgÅ‚oszeÅ„" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "Wyszukiwanie zgÅ‚oszeÅ„ poprzez wpisanie numeru %1id%2, treÅ›ci tematu %1\"w cudzysÅ‚owie\"%2, %1kolejki%2 przy użyciu nazwy, wÅ‚aÅ›cicieli poprzez %1nazwÄ™ użytkownika%2, zgÅ‚aszajÄ…cych poprzez %1adres email%2 oraz zgÅ‚oszenia po wpisaniu %1statusu%2." #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Opcje szukania" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "" #: bin/rt-crontool:352 msgid "Security:" msgstr "Zabezpieczenie:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Zobacz też:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Wybierz" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Edytuj pola definiowane przez użytkownika dla artykułów we wszystkich klasach" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Wybierz klasÄ™" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Wybierz pole definiowane przez użytkownika" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Wybierz grupÄ™" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Wybierz kolejkÄ™" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Wybierz kolejkÄ™ dla swojego nowego zgÅ‚oszenia" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Wybierz użytkownika" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Wybierz pola definiowane przez użytkownika dla wszystkich kolejek" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Edytuj pola definiowane przez użytkownika dla wszystkich grup" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Edytuj pola definiowane przez użytkownika dla wszystkich użytkowników" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Wybierz pola zdefiniowane przez użytkownika dla zgÅ‚oszeÅ„ we wszystkich kolejkach" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Wybór pól zdefiniowanych przez użytkownika dla zgÅ‚oszeÅ„ we wszystkich kolejkach" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Wybierz datÄ™" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Wybierz datÄ™ i czas" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Wybierz wiele dat" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Wybór wielu wartoÅ›ci" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Wybór jednej wartoÅ›ci" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Wybierz tematy dla tego artykuÅ‚u" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Wybierz maksymalnie %1 wartoÅ›ci" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Zaznaczone pola" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Zaznaczone obiekty" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "WyÅ›lij e-mail do zgÅ‚aszajÄ…cych i osób o uprawnieniach Cc" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "WyÅ›lij e-mail do zgÅ‚aszajÄ…cych i osób o uprawnieniach Cc jako komentarz" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "WysyÅ‚a wiadomość do zgÅ‚aszajÄ…cych" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "WysyÅ‚a e-mail do osób wymienionych w Cc i Bcc" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "WysyÅ‚a e-mail do użytkowników o uprawnieniach CC" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "WysyÅ‚a e-mail jako komentarz do użytkowników o uprawnieniach CC" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "WysyÅ‚a e-mail do osób wymienionych w administracyjnym Cc" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "WysyÅ‚a e-mail do osób wymienionych w administracyjnym Cc jako komentarz" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "WysyÅ‚a e-mail do wÅ‚aÅ›ciciela" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Wrz" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Ustawienia" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Pokaż" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "WyÅ›wietlane kolumny" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "WyÅ›wietl wyniki" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Pokaż caÅ‚y cytowany tekst" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "WyÅ›wietl zatwierdzone zgÅ‚oszenia" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Pokaż krótkie nagłówki" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "WyÅ›wietl odrzucone zgÅ‚oszenia" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Pokaż peÅ‚ne nagłówki" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "WyÅ›wietl zgÅ‚oszenia oczekujÄ…ce na zatwierdzenie" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Pokaż cytowany tekst" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "WyÅ›wietl zgÅ‚oszenia oczekujÄ…ce na pozostaÅ‚e zatwierdzenia" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Niszczarka" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Panel boczny" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Podpisz" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "DomyÅ›lnie podpisuj" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Podpisz jako zgÅ‚aszajÄ…cy lub osoba o uprawnieniach Cc dla zgÅ‚oszenia lub kolejki" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Podpisz jako osoba o uprawnieniach AdminCc dla zgÅ‚oszenia lub kolejki" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Podpis" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Proste wyszukiwanie" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Pojedynczy" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Nazwa strony" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Rozmiar" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "PomiÅ„ menu" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "MaÅ‚e" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sortuj" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Sortowanie" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Arkusz kalkulacyjny" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Etap" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Zamroź" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Realizacja rozpoczÄ™ta" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "RozpoczÄ™teZależnoÅ›ci" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "PoczÄ…tek realizacji" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Województwo" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "Zmiana statusu" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Status zmieniony z %1 na %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Przejmij" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Przejmij zgÅ‚oszenia" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Krok %1 z %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "PrzejÄ™te od %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Styl" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Temat" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Temat zostaÅ‚ zmieniony na %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Zastosuj" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Subskrybuj" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Subskrypcja" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Streszczenie" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Nd" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Niedziela" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Zawieszony" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Konfiguracja systemu" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "DomyÅ›lne ustawienie systemu" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Błąd systemowy" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "NarzÄ™dzia systemowe" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Błąd systemowy. Uprawnienie nie zostaÅ‚o przydzielone" #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "Grupa ról systemowych do użytku wewnÄ™trznego" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Przyjmij" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Przyjmij zgÅ‚oszenia" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "PrzyjÄ™ty" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Szablon" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Szablon nie zostaÅ‚ rozpoznany" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Szablony" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Texte" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "To już jest aktualna wartość" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "To nie jest wartość tego pola" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "To zgÅ‚oszenie ma niewykonane zgÅ‚oszenia zależne" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Ten użytkownik już jest wÅ‚aÅ›cicielem tego zgÅ‚oszenia" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Taki użytkownik nie istnieje" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Ten użytkownik już posiada to uprawnienie" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Ten użytkownik nie jest uprawniony" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Ten użytkownik jest już uprawniony" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Ten użytkownik jest teraz nieuprawniony" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Ten użytkownik może nie posiadać zgÅ‚oszeÅ„ w tej kolejce" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "To nie jest id typu liczbowego" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Podstawowe informacje" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "CC zgÅ‚oszenia" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "Administracyjne CC zgÅ‚oszenia" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Ustawiono nowÄ… wartość." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "WÅ‚aÅ›ciciel zgÅ‚oszenia" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "ZgÅ‚aszajÄ…cy" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Motyw" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "To zgÅ‚oszenie zawiera nieprzeczytane wiadomoÅ›ci." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Ta funkcja jest dostÄ™pna tylko dla administratora systemu" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Ta aplikacja pozwala użytkownikowi na przypadkowe uruchomienie tzw. perl modułów z RT" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Nie okreÅ›lono zawartoÅ›ci tej transakcji" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "%1 %2 zgÅ‚oszeÅ„ o najwyższym priorytecie tego użytkownika" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "Szukaj użytkowników wg nastÄ™pujÄ…cych pól:" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Czw" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Czwartek" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "ZgÅ‚oszenie" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "PeÅ‚na aktualizacja: %2 zgÅ‚oszenia nr %1" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "ZgÅ‚oszenie nr %1 %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "ZgÅ‚oszenie %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "ZgÅ‚oszenie %1 zostaÅ‚o utworzone w kolejce '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "ZgÅ‚oszenie %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Historia zgÅ‚oszenia nr %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "ZgÅ‚oszenie zamkniÄ™te" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Wyszukiwanie zgÅ‚oszeÅ„" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Transakcja zgÅ‚oszeÅ„" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "ZgÅ‚oszenia oraz transakcje" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Zawartość zgÅ‚oszenia" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Typ zawartoÅ›ci zgÅ‚oszenia" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Nie udaÅ‚o siÄ™ utworzyć zgÅ‚oszenia z powodu wewnÄ™trznego błędu" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "ZgÅ‚oszenie nie mogÅ‚o być zaÅ‚adowane" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Meta-dane zgÅ‚oszenia" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "ZmieniÅ‚ siÄ™ status zgÅ‚oszenia" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "ZgÅ‚oszenia" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "ZgÅ‚oszenia %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "ZgÅ‚oszenia %1 do %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "ZgÅ‚oszenia, które zależą od tego zatwierdzenia:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Szacowany czas" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "PozostaÅ‚y czas" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Czas realizacji" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "WyÅ›wietlany czas" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "SzacowanyCzas" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "PozostaÅ‚yCzas" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "Czas realizacji" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Strefa czasowa" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "TytuÅ‚" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Do" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "WiÄ™cej o wsparciu, szkoleniach, rozwoju i licencjonowaniu dostÄ™pne jest w %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "WpÅ‚ynęło" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "PrzekazanaZależność" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "NarzÄ™dzia" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Tematy" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "ÅÄ…cznie" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "CaÅ‚kowity czas realizacji" #: etc/initialdata:317 msgid "Transaction" msgstr "Transakcja" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transakcja %1 zostaÅ‚a wyczyszczona" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transakcja zostaÅ‚a utworzona" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Transakcje nie sÄ… możliwe do powielenia" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Zaufanie" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Wt" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Wtorek" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Typ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Nie udaÅ‚o siÄ™ zaÅ‚adować artykuÅ‚u" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Nie zaznaczaj pola by wyłączyć powiadomienia do podanych odbiorców ale tylko dla tej transakcji; usuwanie odbiorców na staÅ‚e możliwe jest przez stronÄ™ Osoby." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Nieznany Typ ZawartoÅ›ci %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Nieograniczona" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Zapytanie bezimienne" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "ZgÅ‚oszenia bez wÅ‚aÅ›ciciela" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Nieuprawnieni" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Niezaznaczone Pola" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Niepobrany" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Zaktualizuj" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Aktualizacja Tego Menu" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Zaktualizuj zgÅ‚oszenie" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Zaktualizuj typ" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Zaktualizuj format oraz wyszukaj" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Zaktualizuj wiele zgÅ‚oszeÅ„ jednoczeÅ›nie" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Aktualizacja nie zostaÅ‚a zapisana." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Zaktualizuj zgÅ‚oszenie" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Zaktualizuj zgÅ‚oszenie nr %1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Zaktualizuj zgÅ‚oszenie nr %1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Aktualizacja nie dotyczyÅ‚a korespondencji ani komentarza." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "AktualizacjaStatusu" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Zaktualizowane" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Zapisz" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Wgraj nowe logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "WyÅ›lij wiele plików" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "WyÅ›lij wiele obrazków" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "WyÅ›lij jeden plik" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "WyÅ›lij jeden obrazek" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "WyÅ›lij aż do %1 plików" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "WyÅ›lij aż do %1 obrazków" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Użytkownik" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Definiowany przez użytkownika" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Uprawnienia użytkowników" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Nie udaÅ‚o siÄ™ utworzyć użytkownika: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Użytkownik zostaÅ‚ utworzony" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Użytkownik ma pusty adres poczty elektronicznej" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Użytkownik zaÅ‚adowany" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Grupy zdefiniowane przez użytkownika" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Nazwa" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Format nazwy użytkownika" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Użytkownicy" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Użytkownicy odpowiadajÄ…cy kryteriom wyszukiwania" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Sprawdź zapytanie" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "WartoÅ›ci" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Zmienna" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Wersja" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Zobacz Skrypty" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Zobacz panele osobiste" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Zobacz kolejke" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "WyÅ›wietl zapisane wyszukiwania" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Zobacz panele systemowe" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Zobacz podsumowania zgÅ‚oszeÅ„" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Wysokość edytora graficznego (WYSIWYG)" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "Użyj edytora graficznego (WYSIWYG)" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "Ostrzeżenie: łączenie jest operacjÄ… nieodwracalnÄ…! Wpisz numer pojedynczego zgÅ‚oszenia do którego włączyć obecne zgÅ‚oszenie." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Obserwator" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Obserwatorzy" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Port www" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Åšr" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Åšroda" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Tygodniowo" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Zestawienie tygodniowe" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Witaj w RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Co dziÅ› zrobiÅ‚em" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Czym jest RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Gdzie przekierować wiadomość, której RT nie mógÅ‚ przetworzyć?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Po utworzeniu zgÅ‚oszenia" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Po utworzeniu zgÅ‚oszenia podlegajÄ…cego zatwierdzeniu, powiadom wÅ‚aÅ›ciciela i osoby o uprawnieniach AdminCc o zadaniu oczekujÄ…cym zatwierdzenie przez nich" #: etc/initialdata:137 msgid "When anything happens" msgstr "JeÅ›li cokolwiek siÄ™ wydarzy" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Zawsze gdy zgÅ‚oszenie bÄ™dzie zamykane" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Zawsze gdy zmieni siÄ™ wÅ‚aÅ›ciciel zgÅ‚oszenia" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Zawsze gdy zmieni siÄ™ priorytet zgÅ‚oszenia" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Zawsze gdy zmieni siÄ™ kolejka zgÅ‚oszenia" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Zawsze gdy zmieni siÄ™ status zgÅ‚oszenia" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Zawsze gdy wystÄ…pi warunek definiowany przez użytkownika" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Zawsze gdy wystÄ…piÄ… komentarze" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Zawsze gdy wpÅ‚ynie korespondencja" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Praca" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Realizowano" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Tak" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "JesteÅ› już wÅ‚aÅ›cicielem tego zgÅ‚oszenia" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Możesz także edytować samo predefiniowane wyszukiwanie" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Możesz ponownie przydzielić tylko te zgÅ‚oszenia, których jesteÅ› wÅ‚aÅ›cicielem lub te, które nie majÄ… wÅ‚aÅ›ciciela" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "ZostaÅ‚eÅ› wylogowany z RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Nie masz uprawnieÅ„ do rejestrowania zgÅ‚oszeÅ„ w tej kolejce." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Można dodawać powiÄ…zania do Artykułów podajÄ…c \"a:###\", gdzie ### oznacza numer ArtykuÅ‚u." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "ProszÄ™ zalogować siÄ™ ponownie" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Nazwa użytkownika lub hasÅ‚o jest nieprawidÅ‚owe" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Kod pocztowy" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[brak]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "po" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "i nie" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "pasek" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "przed" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "treść" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "od doÅ‚u do góry" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "co dzieÅ„ o %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "usuniÄ™te" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "nie pasuje" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "pobierz" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "równy" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "co" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "peÅ‚ne" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "wiÄ™kszy od" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "grupy '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "Numer" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "w ramach klasy %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "jest" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "nie jest" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "klucz wygasÅ‚" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "od lewej do prawej" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "mniejszy od" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "marginalne" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "zgadza siÄ™ z" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minuty" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "miesiÄ™cznie" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "miesiÄ™cznie (dzieÅ„ %1) o %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "nigdy" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "nowe" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "nie" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "żaden" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "różny od" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "nic" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "dnia" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "w dniu" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "otwarte" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "otwórz/zamknij" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "inne..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "koÅ‚owy" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "kolejka %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "odrzucone" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "zamkniÄ™te" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "od prawej do lewej" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "zamrożone" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "grupy systemowej '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "przywoÅ‚ywany komponent nie okreÅ›liÅ‚ powodu" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "zgÅ‚oszenie #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "od góry do doÅ‚u" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "absolutne" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "nieopisana grupa %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "użytkownik" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "użytkownika %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "nazwa użytkownika" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "tygodniowo" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "tygodniowo (w/we %1) o %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "tygodniami" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "na którym porcie serwer bÄ™dzie nasÅ‚uchiwaÅ‚, np. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "z nagłówkami" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "tak" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "Twoja przeglÄ…darka nie przekazaÅ‚a nagłówka Referrer" rt-4.4.2/share/po/fr.po0000664000175000017500000136032613131430353014534 0ustar vagrantvagrant# French translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2016-12-01 13:25+0000\n" "Last-Translator: Emmanuel Lacour \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "n°" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "n°%1 : %2" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "%1 n°%2" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "%1 n°%2 %3" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "%1 n°%2:" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "%1 n°%2: %3" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%1 %3 %2 %4" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%1 %3 %2 %4:%5 %6" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3 %2 %7 %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 ajouté" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 changé en %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 supprimé" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 supprimés" #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 n'existe pas" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 est désactivé" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 sauvés." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 mis à jour" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 avec le modèle %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) par %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (inchangé)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (du panneau %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Ajustez l'option de configuration LogToSTDERR" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Un paramètre à passer à %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "%1 - Un argument à fournir à %2. Cette option peut être répétée pour passer les arguments correspondants aux différents appels de %2." #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Écrit les mises à jour de statuts sur STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Précisez si vous souhaitez utiliser la première (first), la dernière (last) ou toutes (all) les transactions" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Spécifiez le nom ou l'id du modèle que vous désirez utiliser" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "%1 - Indique l'action que vous souhaitez utiliser. Cette options peut être répétée pour exécuter plusieurs actions sur les tickets trouvés." #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Précisez par une liste séparée par des virgules, les types de transactions que vous souhaitez utiliser" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Précisez la condition que vous voulez utiliser" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Précisez la recherche que vous voulez utiliser" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "CPs %1" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "Version %1" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 ajouté(e) comme valeur de %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "%1 ajouté comme destinataire" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "il y a %1" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 existe déjà et contient des tables RT mais ne contient pas les métadonnées RT. L'étape 'Initialiser la base de données' pourra insérer ces données dans cette base. Si cette solution vous convient, cliquez sur 'Personnalisation de base' ci-dessous pour continuer la configuration de RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 existe déjà mais ne contient pas de tables RT. L'étape 'Initialiser la base de données' pourra insérer ces tables et les données initiales dans cette base. Si cette solution vous convient, cliquez sur 'Personnalisation de base' ci-dessous pour continuer la configuration de RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "%1 a déjà la permission %2 sur %3 %4" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 semble être un objet local, mais est introuvable dans la base de données" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 semble être complètement initialisé(e). Il ne sera pas nécessaire de créer des tables ou d'insérer les données de bases mais vous pouvez continuer à personnaliser RT en cliquant 'Personnalisation de base' ci-dessous" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 par %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 ne peut pas être un groupe" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 changé(e) de %2 à %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 changé de '%2' en '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "copie de %1" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "Configuration centrale %1" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 n'a pas pu être positionné à %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 créé(e)" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 supprimé(e)" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 désactivé(e)" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 n'existe pas." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 activé(e)" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "Mes %1 tickets de plus haute priorité" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 est un outil agissant sur les tickets depuis un ordonnanceur externe tel que cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 est un utilitaire, destiné a être lancé via cron, qui envoi une compilation par utilisateur des notifications RT en attente." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "%1 est déjà %2" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 est déja configuré pour %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "RT reçoit déjà des courriels à l'adresse %1. L'ajouter comme %2 créerais une boucle." #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "%1 n'est plus %2 pour cette file" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "%1 n'est plus %2 pour ce ticket" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 n'est plus une valeur pour le champs personnalisé %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 n'est pas un %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 n'est pas un cycle de vie valide" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 problèmes" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 clefs '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 articles récemments mis à jour" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "%1 tickets liés récemment mis à jour" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 articles les plus récents" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "Les %1 derniers tickets sans intervenant" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objets" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "%1 supprimé des destinataires" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 changé en %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "Configuration de site %1" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 mise à jour: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 mise à jour: Aucun changement" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 mis à jour" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1 de %2 objets" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1 de %2 de %3 objets" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "Mot de passe actuel de %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Tableaux de bord de %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "Clefs de chiffrement de %1" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "Recherches sauvées de %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1 : pas d'attachement spécifié" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "%1o" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "%1 Ko" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "%1 Mo" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Créer un ticket dans%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "%1S" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "%1A" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "%1 j" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "%1 m" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1 s" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,jour)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,heure)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,heure,heures) (%quant(%2,minute,minutes))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%1 mois" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,seconde)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,semaine)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,année)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "%1 n'es pas un nom valide." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "%1 n'est pas une classe valide" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' n'est pas un identifiant de classe valide" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Cocher la case pour terminer le rappel)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Cocher la case pour supprimer)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Cocher les cases pour effacer)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "(Cocher pour supprimer toutes les valeurs)" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Entrer le numéro du ticket ou son URL, séparés par des espaces)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Si vide, le défaut sera %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(Incomplet)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(données incorectes)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Pas de champ personnalisé)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Aucun membre)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Aucun Scrip)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Aucun modèle)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Transmettre une copie de cette mise à jour à une liste d'adresses courriel administratives séparées par des virgules. Ces personnes recevront les mises à jour suivantes.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Transmettre une copie de cette mise à jour à une liste d'adresses courriel séparées par des virgules. Ces personnes recevront les mises à jour suivantes.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "(Type de champs personnalisé non supporté)" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Utilisez ces champs lorsque vous sélectionnez « Défini par l'utilisateur » pour une condition ou une action)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(tous)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(aucun résumé)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(sans nom)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(pas de clé publique!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(sans information)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(aucune valeur)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(attente de %quant(%1, autre ticket))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(en attente d'approbation)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "(en attente du ticket n°%1)" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(exigé)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(confiance: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(sans titre)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(n'est pas de confiance !)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "(via le catalogue de ce bien)" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id est un argument obsolète et ne peut pas être utilisé avec --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "l'argument pour --transaction ne peut être que 'first', 'last' ou 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 secondes" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Un modèle avec ce nom existe déjà" #: etc/initialdata:258 msgid "A blank template" msgstr "Un modèle vide" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Pas de mot de passe spécifié, l'utilisateur ne pourra donc pas se connecter." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE non trouvé" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "Les ACE peuvent seulement être créés et effacés." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "Mise à jour des permissions pour %1" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "ET" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "A propos" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "contrôle d'accès" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Action '%1' non trouvée" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Action exécutée" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "L'argument 'Action' est obligatoire" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Action préparée..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Tickets actifs" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "Tickets actifs" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Tickets actifs pour %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Ajouter %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Ajouter AdminCC" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Ajouter un signet" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Ajouter CC" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Ajouter des colonnes" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Ajouter un critère" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Ajouter d'autres fichiers" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "Ajouter de nouveaux destinataires" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Ajouter Demandeur" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Ajouter une valeur" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "Ajouter un groupe" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "Ajouter une personne" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "Ajouter un bien à ce ticket" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Ajouter des commentaires ou des réponses aux tickets sélectionnés" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "Ajouter une valeur de champs personnalisé à la création uniquement" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Ajouter le groupe" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Ajouter ici" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Ajouter des membres" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Ajouter de nouveaux observateurs" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Ajouter des permissions pour cet %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Ajouter ces termes" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Ajouter ces termes et rechercher" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Ajouter un utilisateur" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Ajouter les valeurs" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Ajouter, modifier et supprimer des valeurs de champs personnalisés pour des objets" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Ajouté(s)" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "%1 ajouté comme %2 pour cette file" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "%1 ajouté comme %2 pour ce ticket" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "Réécriture du sujet ajoutée: %1" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "Champs personnalisé %1 ajouté à %2" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adresse" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Adresse 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adresse1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adresse2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "Temps travaillé ajusté de %quant(%1,minute,minutes)" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Administration" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "Gestion des catalogues" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Commentaire Admin" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Commentaire admin (HTML)" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Correspondance Admin" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Réponse admin (HTML)" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Administrateurs de files" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Configuration globale / administration" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "GroupeAdminCc" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Mot de passe administrateur" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Avancé" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Recherche avancée" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Une fois connecté, vous serez redirigé vers votre destination d'origine :" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Aggrégateur" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Toutes les approbations obtenues" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Approbations obtenues (HTML)" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Tous les articles de cette classe doivent être disponibles sous forme de liste sur la page de réponse d'un ticket" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "Tous les catalogues" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Toutes les classes" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Tous les champs personnalisés" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Tous les tableaux de bord" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Toutes les files" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Tous les tickets" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "Tous les catalogues correspondant aux critères de recherche" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Tous les fluxs iCal contiennent une clefs secrète qui vous permet de vous y connecter. Si l'URL d'un de vos fluxs iCal a été divulguée, vous pouvez obtenir une nouvelle clefs, ci dessous. Cette action rendra invalides tous vos fluxs iCal existants." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Toutes les files correspondant au critère de recherche" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "Tous les destinataires" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Tous les tickets" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Toutes les rubriques" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "Réserver" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Autoriser la création de recherches sauvées" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Autoriser le chargement de recherches sauvées" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Autoriser l'écriture de code Perl dans les modèles, scrips, etc" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Déjà chiffré" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "Envoyer toujours un message aux demandeurs indépendamment de l'émetteur" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "Une %1introduction aux articles%3 est disponible sur la %2documentation en ligne Best Practical%3." #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "Une instance doit être fournie" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Une erreur s'est produite" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "Une erreur est survenue lors de l'enregistrement du temps passé. Veuillez le saisir manuellement." #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Et/Ou" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Annuel" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "N'importe quel champs" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Tous les mots non reconnus par RT sont recherchés dans le champ objet des tickets." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "S'applique à" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Appliqué à tous les objets" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Appliquer" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Appliquer en global" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Appliquer les scrips sélectionnés" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Appliquer vos changements" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Approbation" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Approbation #%1 : %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Approbation #%1 : Notes non enregistrées à cause d'une erreur système" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Approbation #%1 : Notes enregistrées" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Approbation obtenue" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "Approbation obtenue en HTML" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Approbation prête pour l'intervenant" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "Aprobation obtenue (pour l'intervenant) (HTML)" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Approbation refusée" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "Approbation rejetée (HTML)" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Approuver" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Avr" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "Article n°%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "Article #%1 non trouvé" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Article n°%1 : %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Article %1 créé" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Gestion des articles" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Article non trouvé" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Articles dans %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Articles correspondant à %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Articles sans rubrique" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Ascendant" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "Bien n°" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "Bien n°%1" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "Bien n°%1 créé: %2" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "Bien n°%1: %2" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "Gestion des biens" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "Échec de création de la transaction: %1" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "Champs personalisés des biens" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "Échec de création du bien: %1" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "Biens" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "Les biens ne peuvent être supprimés" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Assigner et supprimer des champs personnalisés pour cette file" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "Biens affectés" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Attaché" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Attacher un fichier" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Fichier attaché" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Attachement" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Attachement '%1' ne peut pas être chargé" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Attachement créé" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Nom de fichier de l'attachement" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Attachements" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Le chiffrement des attachements est désactivé" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Attribut supprimé" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "Attribut mis à jour" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Aoû" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "Signature automatique" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "Échec de la configuration automatique du compte" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Il n'y a pas de couleurs de thème suggérées automatiquement pour votre image. La version de GD installée ne gère peut-être pas le type d'image choisie. Les types gérés sont : %1. Vous pouvez recompiler libgd et GD.pm pour inclure la gestion d'autres types d'image." #: etc/initialdata:261 msgid "Autoreply" msgstr "RéponseAuto" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Réponse automatique aux demandeurs" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Auto-réponse en HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Disponible" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "Moyenne de Créé-Dernière mise à jour" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "Moyenne Création-Résolution" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "Moyenne de Créé-Ouvert le" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "Moyenne de Échéance-Résolution" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "Moyenne de Ouvert le-Résolu" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "Moyenne de Débute-Ouvert le" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "Moyenne du temps estimé" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "Moyenne du temps restant" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "Moyenne du temps passé" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Retour" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Mauvaise sécurité pour l'attribut %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Essentiel" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "Batch (désactivé dans la configuration)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Scrips batch" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "Les scrips en mode \"batch\" sont exécutés à la fin d'une série de changements" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "Cci" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "Pour pouvoir utiliser les Articles, votre administrateur RT doit %1créer des Classes%2, appliquer un champs personnalisé Article à celles-ci et donner des permissions sur ces classes et champs personnalisés." #: etc/initialdata:257 msgid "Blank" msgstr "Vide" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Corps" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Gras" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Signet" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Mettre un marque page pour cette recherche" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Tickets favoris" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Tickets favoris" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Parcourir par rubrique" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Parcourir les requêtes SQL exécutées par ce processus" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Màj en masse" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "GroupeCc" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "CP" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "Les Champs Personnalisés peuvent être recherchés de la même manière qu'au-dessus avec %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "Calcul" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "Calculer la valeur de" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Impossible de charger la recherche enregistrée \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Les utilisateurs système ne peuvent être modifiés" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Impossible d'ajouter une valeur de champ personnalisé sans un nom" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "Impossible de changer la valeur par défaut pour %1 de %2 à %3 : %4" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "Impossible de changer les valeurs par défaut de %1 à %2 : %3" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Impossible de trouver une recherche sauvée et de l'utiliser" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Transfert impossible: aucune adresse email valide spécifiée" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Un ticket ne peut être lié à lui même" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Ne peut pas lier à un ticket supprimé" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Impossible de fusionner un ticket avec lui-même" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Impossible de faire une création rapide de ticket dans la file %1 car des champs personnalisés sont requis. Veuillez terminer en utilisant la page standard de création de ticket." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Impossible de sauvegarder %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Impossible de sauvegarder une recherche sans nom" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Impossible de sauver cette recherche" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "Impossible de spécifier base et cible" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Impossible de créer un lien avec une valeur uniquement numérique" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Impossible de créer des tickets dans une file désactivée." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "Impossible de modifier les objets du rôle personnalisé désactivé n°%1" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "Catalogue" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "Catalogue n°%1 créé: %2" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "Catalogue %1: modifier les champs personnalisés" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "Catalogue %1: modifier les éléments de base" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "Catalogue %1: modifier les droits de groupe" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "Catalogue %1: modifier les rôles" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "Catalogue %1: modifier les droits utilisateurs" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "Échec de création de la transaction: %1" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "Échec de création du catalogue: %1" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "Catalogues" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "Les catalogues ne peuvent pas être supprimés" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Les catégories sont basées sur" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Catégorie" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Changer" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Passer le ticket d'approbation en statut ouvert" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Changer le sujet du mail:" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Changer le mot de passe" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Changement de file non implémenté" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Graphique" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "Cocher" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Tout cocher" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Contrôler la connection à la base de données" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Vérifie les Identifiants sur la Base" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Cocher la case pour supprimer" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Fils" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Fils" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Choisissez le moteur de base de données" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Choisir les rubriques pour %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Ville" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Classe" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Nom de la classe" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "La classe n'a pas pu être créée: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Identifiant de la classe" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Cette classe est déjà appliquée en global" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Cette classe est déjà appliquée à %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Effacer" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Tout effacer" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Cliquer \"Terminer l'installation\" pour terminer." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Cliquer \"Initialiser la base de données\" pour créer la base de données RT et insérer les éléments de base. Cela peu durer quelques instants" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Cliquer pour choisir une couleur" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "Fermer la fenêtre" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Fermé" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Tickets fermés" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Boîte combo : Sélectionnez ou saisissez plusieurs valeurs" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Boîte combo : Sélectionnez ou saisissez une valeur" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Boîte combo : Sélectionner ou saisir au plus %1 valeurs" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Commenter" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Adresse de commentaire" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Adresse de commentaire" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "Commenter un ticket" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Commentaire sur le ticket" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Commentaires" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Commentaires (non envoyés aux demandeurs)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Commentaires sur cet utilisateur" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Commentaires ajoutés" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "tr(Commit Stubbed)" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Condition '%1' non trouvée" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "L'argument condition est obligatoire" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "La condition satisfait..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Condition, Action et Modèle" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Le fichier de configuration %1 est blocké" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Configuration de la file %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "Configuration du rôle %1" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Connexion réussie" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Contactez votre administrateur RT en envoyant un %1email à %2%3." #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Contactez votre administrateur RT" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Contenu" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Contenu supprimé car sa taille (%1 octets) dépassait la taille maximum autorisée (%2 octets)." #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "Erreur d'enregistrement du message. Veuillez consulter les fichiers journaux pour plus de détails." #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Le contenu n'est pas une adresse IP valide" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Le contenu n'est pas une plage d'adresses IP valide" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Contenu tronqué car sa taille (%1 octets) dépassait la taille maximum autorisée (%2 octets)." #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Type de contenu" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "TypeDeContenu" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Adresse de réponse" #: etc/initialdata:393 msgid "Correspondence" msgstr "Courrier" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Courrier ajouté" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Courrier en HTML" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "Impossible d'ajouter %1 comme destinataire: %2" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Impossible d'ajouter la nouvelle valeur de champ personnalisé: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Impossible de changer l'ntervenant : %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Impossible de créer le champ personnalisé : %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Impossible de créer un groupe" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Impossible de créer la recherche : %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Impossible de créer un ticket. File non indiquée" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Impossible de créer l'utilisateur" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Impossible de supprimer la recherche %1 : %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Impossible de trouver le groupe '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Impossible de trouver ou créer l'utilisateur '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Impossible de charger l'attribut %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Impossible de charge la classe %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Impossible de charger le champ personnalisé %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "Impossible de charger le rôle personnalisé n°%1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Impossible de charger ce groupe" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Impossible de charger l'objet pour %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "Impossible de charger le scrip #%1" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "Impossible de charger l'historique du ticket. Raison:" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Impossible de charger l'utilisateur '%1'" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "Impossible de faire de %1 un %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "Impossible de supprimer %1 comme %2" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Impossible de sauver les informations utilisateur" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Impossible de mettre à jour la colonne %1: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "Ajout impossible (déjà configuré en global)" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Impossible d'ajouter la pièce jointe" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "Impossible d'ajouter le champs personnalisé: %1" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Impossible d'ajouter un membre à ce groupe" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Impossible de compiler %1 block de code '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Impossible de compiler le template, bloc de code '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Impossible de créer une transaction : %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Impossible de créer l'enregistrement : %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "Impossible de créer le rôle pour ce bien" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "Impossible de créer le rôle pour ce catalogue" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Impossible de supprimer le tableau de bord %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Colonne introuvable" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Impossible de trouver une transaction adaptée, ignoré" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Groupe/utilisateur introuvable" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Valeur introuvable" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "Impossible d'obtenir les informations de le clefs %1" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Impossible de charger la classe %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Impossible de charger le champs personnalisé #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Impossible de charger le champs personnalisé n°%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Impossible de charger le champ personnalisé %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "Impossible de charger la copie de %1 #%2" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Impossible de charger une copie du ticket #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "Impossible de charger le rôle personnalisé '%1'" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Impossible de charger le tableau de bord %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Impossible de charger le groupe #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Impossible de charger le groupe %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Impossible de charger le lien" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "N'a pas pu chargé le lien : %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Impossible de charger l'objet %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Impossible de charger ou de créer l'utilisateur: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "Impossible de charger le groupe/utilisateur #%1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "Impossible de charger le groupe/utilisateur: %1" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Impossible de charger la file" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Impossible de charger la file #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Impossible de charger la file %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Impossible de charger la file '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Impossible de charger le scrip #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Impossible de charger le modèle #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Impossible de charger ce groupe/utilisateur" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Impossible de charger le ticket '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Impossible de charger la rubrique d'appartenance en essayant de le supprimer" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Impossible de charger la transaction #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Impossible de charger l'utilisateur" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Impossible de charger l'utilisateur #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Impossible de charger l'utilisateur n° %1 ou l'utilisateur '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Impossible de charger l'utilisateur '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "Impossible d'analyser l'URI de base: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "Impossible d'analyser l'URI cible: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "Impossible de supprimer le membre précédent: %1" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Impossible de remplacer le contenu avec des données déchiffrées: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Impossible de remplacer le contenu par des données chiffrées: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "Impossible de convertir '%1' en lien" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Impossible de résoudre la base '%1' en URI." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Impossible de résoudre la cible '%1' en URI." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Impossible de mettre %1 observateur: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Impossible de sélectionner la clefs privée" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Impossible de désélectionner la clefs privée" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Pays" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Ajouter" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "Créer un nouveau" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Ajouter des tickets" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Ajouter une classe" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Ajouter un Champ Personnalisé" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Ajouter un champ personnalisé pour la file %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "Créer un rôle personnalisé" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "Ajouter un scrip global" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Ajouter un nouvel article" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Créer un nouvel article dans" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "Créer un nouveau bien dans le catalogue %1" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "Créer un nouveau bien dans le catalogue %1." #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Créer un nouveau tableau de bord" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Ajouter un nouveau groupe" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Créer un nouveau modèle pour la file %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "Créer un ticket dans %1" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "Créer un nouveau ticket dans la file %1 lié au bien n°%2: %3." #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Ajouter un nouvel utilisateur" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Ajouter une file" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "Créer un scrip et l'ajouter à la file %1" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Ajouter un modèle" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Ajouter un ticket" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "Créer un ticket dans %1" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Créer un ticket avec ce demandeur dans la file" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Créer un article" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Créer un article dans la classe ..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Créer un article dans cette classe" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "Créer un bien" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "Créer des biens" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "Créer un catalogue" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Créer un tableau de bord de groupe" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "Créer un ticket lié" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "Créer un ticket lié au bien n°%1: %2" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "Créer un nouveau bien" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Ajouter de nouveaux tickets basés sur le modèle de ce scrip" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Créer des tableaux de bord personnels" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Créer des tableaux de bord systèmes" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Ajouter un ticket" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Créer des tickets" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Créer, modifier et supprimer des permissions" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Créer, modifier et supprimer des champs personnalisés" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Créer, modifier et supprimer des valeurs de champs personnalisés" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "Créeŕ, modifier et supprimer des rôles personnalisés" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Créer, modifier et supprimer des files" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Créer, modifier et supprimer des recherches sauvées" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Créer, modifier et supprimer des utilisateurs" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "Créer, modifier et désactiver des catalogues" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Créé" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Créé Par" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Champ Personnalisé %1 créé" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Créé par" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Recherche %1 créée" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "CrééPar" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "CrééDepuis" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Créateur" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Chiffrement" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "Le support du chiffrement est désactivé" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Liens courants" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "Destinataires actuels" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Recherche actuelle" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Membres actuels" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Recherche courante" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Observateurs actuels" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "CSS personnalisée (Avancé)" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Champs personnalisés" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Champs personnalisés pour %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Champs personnalisés pour la file %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "Rôles personnalisés" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "Code d'action personnalisée (commit)" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Programme de préparation d'action personnalisé" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Condition personnalisée" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Le champs personnalisé n°%1 n'est pas appliqué à cet objet" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Champs personnalisé %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Le champs personnalisé %1 ne s'applique pas à cet objet" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Le champ personnalisé %1 a une valeur." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Le champ personnalisé %1 n'a pas de valeur." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Le champ personnalisé %1 est introuvable" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "La valeur du champ personnalisé %1 ne peut pas être trouvée pour le champ personnalisé %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "La valeur du champ personnalisé ne peut pas être effacée" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "La valeur du champ personnalisé est effacée" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "Rôle créé" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "Rôle désactivé" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "Rôle activé" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "Le rôle n'a pas été ajouté" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "ChampPersonnalisé" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "ValeurDeChampPersonnalisé" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "Rôle personnalisé" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Personnaliser" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Personnalisation de base" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Personnaliser les adresses de courriel" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Configurer l'envoi des courriels" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Configurer le menu des tableaux de bord" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "Personnaliser le thème RT" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Modifier l'apparence de RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Mot de passe de l'administrateur" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Identifiant DBA" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Quotidien" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Compilation quotidienne" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Tableau de bord" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "Le tableau de bord %1 n'a pas pu être mis à jour: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "Tableau de bord %1 mis à jour" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Le tableau de bord n'a pas pu être créé: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Le tableau de bord n'a pas pu être mis à jour: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Tableau de bord mis à jour" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Tableaux de bord" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Menu des tableaux de bord" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Menu des tableaux de bord pour l'utilisateur %1" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Nom d'hôte de la base de données" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nom de la base de données" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Mot de passe de la base de données pour RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Port de connexion à la base" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Type de base de données" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Nom d'utilisateur de la base de données pour RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Format de date" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "Jour" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "Jour du mois" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "Jour de la semaine" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "Jour de l'année" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Déc" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Déchiffrer" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "Erreur de déchiffrement, veuillez contacter l'administrateur" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "%numerate(%1,Valeur,Valeurs) par défaut" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "Valeurs par défaut" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "Valeurs par défaut pour la file %1" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "File par défaut" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "Modèle de rappel par défaut" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "Valeur par défaut pour %1 changée de %2 à %3" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "Valeurs par défaut changées de %1 à %2" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Valeur par défaut: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Valeur par défaut: %1/%2 changée de %3 en %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "Date d'échéance par défaut" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Format par défaut" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "Date de début par défaut" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Supprimer" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Détruire le modèle" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Échec de la destruction : %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Supprimer des tableaux de bords de groupe" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "L'effacement de l'opération est désactivée par la configuration du cycle de vie" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Supprimer les tableaux de bord personnels" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Supprimer les tableaux de bord systèmes" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Supprimer les tickets" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Supprimer les valeurs" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "%1 effacé" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Requêtes supprimées" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Recherche sauvée effacée" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Recherche %1 supprimée" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Effacer cet objet briserait l'intégrité référentielle" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Effacer cet objet violerait l'intégrité référentielle" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Refuser" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "En dépend" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "EnDépend" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Ajout de la dépendance par %1" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Suppression de la dépendance par %1" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Ajout de la dépendance de %1" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Suppression de la dépendance de %1" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "DépendantDe" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Dépend de" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "DépendDe" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Descendant" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Décrivez la situation ci-dessous" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Informations détaillées de votre installation RT" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Détails" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "Condition nécessitant un changement de date d'échéance" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "Condition nécessitant un changement de date de début" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Orientation" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "Désactiver les articles de cette classe" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Désactivé" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "Désactivé?" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Afficher" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Afficher la liste des droits" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Afficher l'article %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Afficher les colonnes" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "Afficher les pièces jointes en texte seul avec une police à chasse fixe, en préservant le formatage, mais en effectuant une césure si nécessaire." #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "Afficher les messages en texte enrichi lorsque celà est possible" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Afficher les pièces jointes en texte seul avec une police à chasse fixe" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Afficher le ticket après une \"Création rapide\"" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Distribué selon la %1version 2 de la GNU GPL%2" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Faire tout et n'importe quoi" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Nom de domaine" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ne pas inclure http://, juste quelquechose comme 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Ne pas actualiser le page d'accueil." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Ne pas rafraîchir les résultats de recherche." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ne pas actualiser cette page." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Ne pas du tout faire confiance à cette clefs" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Télécharger" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "Télécharger au format tableur" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Télécharger le fichier dump" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "Glisser/déposer ou clicker pour ajouter une PJ" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Liste déroulante" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Échéance" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "ÉchéanceDepuis" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "ERREUR: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Mise à jour facile de vos tickets ouverts" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Accès rapide à vos rappels" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Modifier" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "Modifier %1" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Modifier les champs personnalisés" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Modifier les champs personnalisés pour %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "Modifier les champs personnalisés des biens dans tous les catalogues" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Modifier les champs personnalisés pour tous les groupes" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Modifier les champs personnalisés pour toutes les files" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Modifier les champs personnalisés pour tous les utilisateurs" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Modifier les champs personnalisés des articles dans toutes les classes" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Modifier les champs personnalisés pour les tickets de toutes les files" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Modifier les liens" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Modifier la requête" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Mod. recherche" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Modifier la hierrarchie globale des rubriques" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Modifier les modèles système" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Modifier la hierarchie des rubriques pour %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Modifier le champ personnalisé %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Modifier les membres du groupe %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "IdEffectif" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "La base ou la cible doivent être spécifiées" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Soit vous n'avez pas les droits pour voire la recherche sauvée %1, soit votre identifiant est incorrect" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "Écoulé" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "Courriel" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Adresse de courriel" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Compilation de courriels" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "Source du message pour le ticket %1, attachement %2" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Adresse de courriel utilisée" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Distribution des courriels" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Modèle de courriel pour les envois périodiques (compilation) des notifications" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "Adresse de courriel" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "Vide" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "Activer le masquage des citations?" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Activé" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "Activé (Décocher cette case désactive cet article)" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Activé (Décocher cette case désactive cette classe)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Activé (Décocher cette case désactive ce champ personnalisé)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "Activé (Décocher cette case désactive ce rôle)" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Activé (Décocher cette case désactive ce groupe)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Activé (Décocher cette case désactive cette file)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Activé (Décocher cette case pour désactiver ce scrip)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "Catalogues actifs" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Classes actives" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Files actives" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "Catalogues actifs correspondants aux critères de recherche" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Files actives correspondants au critère de recherche" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "État %1 activé" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Chiffrer" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Chiffrer par défaut" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Chiffrer/Déchiffrer" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Chiffrer/Déchiffrer la transaction #%1 du ticket #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "Chiffrement" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Erreur de déchiffrement, veuillez contacter l'administrateur" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "Entrée" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Saisir des articles, tickets ou d'autres URLs en rapport avec cet article" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "Saisir des liens vers des biens \"asset:###\", où ### est le numéro de bien." #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Saisir plusieurs plages d'adresses IP" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Saisir plusieurs adresses IP" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Saisir plusieurs valeurs" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Saisir plusieurs valeurs avec complétion automatique" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Saisir les objets ou les URI pour y lier les objets. Séparer les saisies par des espaces." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Saisir une adresse IP" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Saisir une plage d'adresses IP" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Saisir une seule valeur" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Saisir une valeur avec complétion automatique" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Saisir des noms de files ou des URI pour lier aux files. Séparer les saisies avec des espaces." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Saisir des n° de tickets ou des URI pour lier aux tickets. Séparer les saisies par des espaces." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "Saisissez des tickets ou des URLs à lier. Séparez plusieurs entrées par des espaces." #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Saisir les durées en heures par défaut" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Saisir au maximum %1 plage(s) d'adresses IP" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Saisir au maximum %1 adresse(s) IP" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Saisir au plus %1 valeurs" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Saisir jusqu'à %1 valeurs avec complétion automatique" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "Saisir %1, %2, %3 ou %4 limite les résultats aux tickets correspondant à l'un de ces statuts. Un seul nom de statut limite les résultats aux statuts nommés." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "Consigne" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "Variables d'environnement" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Erreur" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "Erreur lors du chagement de la pièce jointe" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "Erreur de création du graphique: %1" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Erreur au propriétaire RT: clef publique" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Erreur: tableau de bord manquant" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Erreur: mauvaises données GnuPG" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "Erreur: données de chiffrement incorrectes" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Erreur : impossible de changer la confidentialité de la recherche" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Erreur : impossible de charger la recherche sauvée %1 : %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Erreur: pas de clefs privée" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Erreur: clefs publique" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Erreur : recherche %1 non mise à jour : %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "Erreur: message non chiffré" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Échelonner les tickets" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Estimé" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Tout le monde" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Exemple :" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Expire le" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "StatutÉtendu" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Authentification externe activée" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "Infos Complémentaires" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Info supplémentaire" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Extraire un article" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Extraire la marque de sujet" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Extraire un nouvel article du ticket n°%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Extraire un article du ticket n°%1 dans la classe %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extraire la marque du sujet d'une transaction et l'ajouter au sujet tu ticket." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Échec lors de la connexion à la base de données: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Impossible de créer l'attribut %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Recherche du pseudo groupe d'utilisateurs 'Privilégiés' infructueuse." #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Recherche du pseudo groupe d'utilisateurs 'non-privilégiés' infructueuse" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Échec pour charger %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Échec pour charger %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Impossible de charger le module %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Impossible de charger l'objet pour %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Impossible de charger le modèle" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "Échec du chargement du ticket %1" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Impossible d'analyser le modèle" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "Impossible de mettre à jour le format. Raison:" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Fév" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Exports" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Champ" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Source pour les valeurs de ce champs:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "Fichier '%1' supprimé car sa taille (%2 octets) dépassait la taille maximum autorisée (%3 octets)." #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "Erreur d'enregistrement du fichier '%1'. Consulter le fichier journal pour plus de détails." #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "Fichier '%1' tronqué car sa taille (%2 octets) dépassait la taille maximum autorisée (%3 octets)." #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "NomFichier" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "les fichiers comportant des apostrophes double ne peuvent être chargés" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Remplissez les champs" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Utiliser une couleur de fond par" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Saisir dans plusieurs champs de type texte" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Saisir plusieurs champs de type wiki" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Saisir dans un champ de type texte" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Saisir un champ de type wiki" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Saisir une URL." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Saisir au plus %1 champs de type texte" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Saisir au plus %1 champs de type wiki" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Priorité finale" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "PrioritéFinale" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "Rechercher un groupe..." #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Rechercher un utilisateur" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "Rechercher un utilisateur..." #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Trouver tous les utilisateurs dont" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "Rechercher un bien" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Trouver les groupes dont" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Trouver les gens dont" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Rechercher des tickets" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "Rechercher des biens" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "RechercherUnUtilisateur" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Empreinte" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Terminer" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Premier" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "Pour obtenir de l'aide, veuillez contacter %1" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "Pour accéder à toutes les options de recherche, veuillez utiliser le %1moteur de recherche%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Forcer la modification" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "Formater les événements de flux iCal avec date et heure" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Transférer" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Transférer le message" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Transférer le message et revenir" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Transférer un ticket" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Transférer des messages en dehors de RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Transférer le ticket n°%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Transférer la transaction n°%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "Message %3#%1%4 transmis à %2" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Ticket transféré à %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "Message transféré" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "Message de transfert" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "%quant(%1,bien trouvé)" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Trouvé %quant(%1,ticket)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Objet trouvé" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Fréquence" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Ven" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Vendredi" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "De" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD est désactivé ou n'est pas installé. Vous pouvez charger une image, mais vous n'aurez pas la suggestion automatique des couleurs." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "Identifiant Unix" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Général" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "Général" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Permissions générales" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Pour commencer" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "Afficher le détail même lorsque les messages sont envoyés avec succès" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Donné à %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Attributs globaux" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Topics généraux" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Configuration globale des champs personnalisés" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "Menu global des tableaux de bord sauvé." #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "Modèle global ou spécifique à une file '%1' non trouvé" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Portlet global %1 sauvé." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "Modèle global '%1' non trouvé" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "Champs personnalisé %1 ajouté en global." #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "Champs personnalisé %1 supprimé en global" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "Clefs privée GnuPG" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Envoyer" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "Avancer / reculer" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Aller au groupe" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Aller à l'utilisateur" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Go !" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Aller au ticket" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Aller au ticket" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "Permission '%1' accordée à %2." #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Graphique" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Propriétés du graphique" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Les graphiques ne sont pas disponibles." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Groupe" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Droits de groupe" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Le groupe à déjà le membre: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "Regroupement" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Le groupe %1 ne peut être créé" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Groupe ajouté" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Groupe désactivé" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Groupe activé" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Un tel membre n'appartient pas au groupe" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Le nom de groupe '%1' est déjà utilisé" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Groupe introuvable" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "Regrouper les tickets par" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "Groupe: %1" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "Graphique" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Groupes" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Les groupes ne peuvent pas être membres de leurs membres" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Groupes correspondant au critère de recherche" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "Groupes dont cet utilisateur/groupe est membre (cocher la case pour supprimer)" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "Groupes dont cet utilisateur/groupe n'est pas membre (cocher la case pour ajouter)" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Cet utilisateur appartient aux groupes" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "Modèle d'auto-réponse HTML" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "Ticket résolu HTML" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "Changement de status HTML" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "Modèle de commentaire admin HTML" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "Modèle de réponse admin HTML" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "Modèle de réponse HTML" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "Modèle de transaction HTML" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "ÀCommeMembre" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "En-tête pour un transfert de ticket" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "En-tête d'un message Transféré" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "Hauteur" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "Propriétaire" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Bonjour !" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Aidez-nous à mettre en place une liste de valeurs par défaut pour RT." #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Cacher les citations" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Cacher le texte cité" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "Masquer les champs vides" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "Masquer les champs vides?" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historique" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Historique de l'article n°%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "Historique du bien n°%1: %2" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Historique du groupe %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Historique de la file %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Historique de l'utilisateur %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Téléphone personnel" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Intervalle d'actualisation de la page d'accueil" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Accueil" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Heure" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "Toutes les heures" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Heures" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "J'ai %quant(%1, toupie à béton)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "Je veux réinitialiser mon jeton d'authentification" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "Identifiant" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identité" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "Si un champs personnalisé est sélectionné, le sujet de vos mails sortants sera remplacé par cet article." #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Si une approbation est refusée, rejette l'original et supprime les approbations en attente" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "Si cette page n'est pas celle que vous attendiez, quittez cette page immédiatement sans vous authentifier." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Si cet outil était setgid, un utilisateur local mal intentionné pourrait l'utiliser pour obtenir un accès administrateur à RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Si vous avez déjà un serveur et une base de données RT fonctionnelle, vous devriez saisir cette opportunité pour être certain que votre serveur de base de données est en fonctionnement et que le serveur RT peut s'y connecter. Une fois ceci fait, arrêtez et redémarrez le serveur RT.

    " #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "Si vous avez un identifient RT interne, vous pouvez %1l'utiliser%2." #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "Si vous souhaitiez vraiment visiter %1 et %2, alors %3cliquez ici pour poursuivre votre demande%4." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Si vous avez changé le port utilisé par RT, vous devrez redémarrer le serveur pour pouvoir vous identifier." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Si vous avez fait une modification, assurez vous de" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Si votre base de données préférées n'est pas listée ci-dessous, celà signifie que RT ne peut pas trouver un pilote de base de données installé pour celle-ci. Vous pouvez remédier à ceci en utilisant %1 pour télécharger et installer DBD::MySQL, DBD::Oracle ou DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Valeur incorrecte pour %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "Image affichée ci-dessus dans le corps du message" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "Image non affichée car l'option est désactivée dans la configuration système." #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "Image non affichée car l'émetteur a demandé de ne pas l'afficher dans le corps du message." #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Champ non modifiable" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Tickets inactifs" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "Tickets inactifs" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Inclure l'article :" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "Include la requête TicketSQL" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Inclure le nom de l'article" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Inclure le résumé de l'article" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "Inclure les PJ" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "Include le champs personnalisé '%1'" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "Inclure le tableau des données" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "Inclure les catalogues désactivés dans la liste." #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Inclure les classes désactivées dans la liste." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Inclure les champs personnalisés désactivés dans la liste." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "Inclure les champs personnalisés désactivés." #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Inclure les groupes inactifs dans le listage." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Afficher les files inactives." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Inclure les utilisateurs désactivés dans le résultat." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Inclure la page" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Inclure les sous-rubriques" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "Insérer l'heure dans les évènements des flux iCal?" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "Mise à jour de l'indexe à partir de %1" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Messages individuels" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informer le propriétaire RT que les utilisateurs ont un problème avec les clefs publiques" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informer l'utilisateur que le tableau de bord souscrit est manquant" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informer l'utilisateur qu'un message qu'il a envoyé contient des données GnuPG invalides" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "Informer l'utilisateur qu'un message qu'il a envoyé contient des données de chiffrement invalides" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informer un utilisateur qu'il a des problèmes avec sa clefs publique et qu'il ne peut recevoir de documents chiffrés" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Informer l'utilisateur que sont mot de passe a été réinitialisé" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "Informer l'utilisateur que son message non chiffré a été refusé" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informer l'utilisateur qu'il a reçu un courriel chiffré et que nous n'avons pas de clefs privées pour déchiffrer" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Priorité initiale" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "PrioritéInitiale" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Initialisation de la base" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Erreur à l'entrée" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "La valeur saisie doit correspondre à %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "Insertion depuis %1" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Erreur interne : %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Erreur interne : %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "%1 invalide" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Argument %1 invalide" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "%1 invalide: '%2' ne semble pas être une adresse de courriel" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "%1 invalide: ceci devrait être un nombre" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "Catalogue invalide" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Classe invalide" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Source de valeurs de champs personnalisé invalide" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "Nom de groupe et domaine invalides" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "Nom invalide (les noms ne peuvent pas être constitués que de chiffres)" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "Nom invalide (les noms doivent être uniques et ne pas être constitués que de chiffres)" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "File invalide, impossible d'appliquer la classe : %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "Type d'affichage invalide" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Type d'affichage infalide pour un champs personnalisé de type %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Données invalides" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Clé %1 invalide pour l'adresse mail '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Objet invalide" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Motif invalide : %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "Composant %1 invalide" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "File invalide" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "Numéro de file invalide" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Droit invalide" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Permission invalide. Impossible de résoudre la permission '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Syntaxe invalide de l'adresse de courriel" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "File invalide pour %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Valeur incorrecte pour le champ personnalisé" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "Est déjà ajouté à l'objet" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "N'est pas chiffré" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Il est extrêmement important que les utilisateurs non autorisés n'aient pas accès à cet outil." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Il est suggéré de créer un utilisateur Unix non privilégié appartenant au bon groupe et ayant accès à RT pour utiliser cet outil." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "Il semblerait que vous ayez omis une pièce jointe." #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Il faut plusieurs paramètres :" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Italique" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Joindre ou quiter un groupe" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Jui" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Tout" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Juin" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Garder 'localhost' si vous n'êtes pas sûr. Laissez vide pour vous connecter localement via un socket." #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "Raccourcis clavier" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "Recherche intelligente par mots clefs" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Langue" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Langue" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Grande" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Dernier" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Dernier contact" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Date dernier contact" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Date dernière MAJ" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Dernière MAJ Par" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Dernière mise à jour" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Dernière MAJ par" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "DateDernièreMAJ" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "DernièreMAJPar" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "DernièreMAJDepuis" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Laisser vide pour utiliser la valeur par défaut pour votre base de données" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Laisser ceci pour utiliser l'identifiant dba par defaut pour votre type de base de données" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Restant" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Légendes" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Longueur en caractères; Utiliser '0' pour voir tous les messages dans la page, quelle que soit leur longueur" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Donner accès à RT à cet utilisateur" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Autoriser cet utilisateur à recevoir des droits" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "C'est parti!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Cycle de vie" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Relation" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Le lien existe déjà" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "Échec de la création du lien: %1" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "Échec de la suppression du lien: %1" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Lien introuvable" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Lier le ticket n°%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Lier les valeurs à" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Lié" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "LiéDepuis" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "LiéVers" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "Lier à un objet %1 n'est pas autorisé" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Relations" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "Lié à" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Liste" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Charger" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Charger une recherche sauvée" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Charger une recherche sauvée" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Charger les recherches sauvées :" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "%1 %2 chargé" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "Fichiers de configuration chargés" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Recherche originale \"%1\" chargée" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Modules perl chargés" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Recherche sauvée \"%1\" chargée" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Chargement en cours..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Langage" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Localisation" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Connecté" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Connecté en tant que %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Déconnecté" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "Écrire les messages de niveau %1 ou supérieur dans %2" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "Écrire les messages de niveau %1 ou supérieur dans STDERR, ceux-ci seront visible généralement dans les journaux d'erreur du service web." #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "Écrire les messages de niveau %1 et supérieur via syslog avec la configuration suivante: %2" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "Écrire les messages de niveau %1 et supérieur via syslog" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "Journaux" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Connexion" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "Texte pour le logo" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Déconnexion" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Faire attention aux types différents" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Courriel" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Type de liens principal" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "Faire %1" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Attribuer" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Appliquer Statut" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Appliquer date d'échéance" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Appliquer date d'ouverture" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Appliquer date de début" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Appliquer Âge" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Appliquer priorité" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Appliquer file" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Changer le sujet" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Gérer les champs personnalisés et leurs valeurs" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "Gérer les rôles personnalisés" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Gérer les groupes et leurs membres" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Gérer les propriétés et configurations générales des files" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Gérer les files et leurs propriétés individuelles" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Gérer les graphiques sauvés" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "Gérer les scrips" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Gérer les utilisateurs et mots de passe" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "La correspondance entre les cycles de vie %1 et %2 est incomplète. Contactez l'administrateur." #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Marquer tous les messages comme lus" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Ordre de recherche des modèles Mason" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "Valeurs max." #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "Maximum de Créé-Dernière mise à jour" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "Maximum de Créé-Résolu" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "Maximum de Créé-Ouvert le" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "Maximum Échéance-Résolution" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "Maximum de Ouvert le-Résolu" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "Maximum de Débute-Ouvert le" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Longueur maximum pour les messages en-ligne" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "Temps estimé maximum" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "Temps restant maximum" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "Temps travaillé maximum" #: lib/RT/Date.pm:95 msgid "May" msgstr "Mai" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Moi" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Membre" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Membre %1 ajouté" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Membre %1 supprimé" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Membre ajouté: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Membre supprimé" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Membre non supprimé" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "MembreDe" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Membres" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Appartenance à %1 ajoutée" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Appartenance à %1 supprimée" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Affiliations" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "Appartenances du groupe %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "Appartenances de l'object #%1" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Affiliations de l'utilisateur %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Fusionner" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Fusion réussie" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Échec de fusion. Ne peut appliquer EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "Échec de la fusion. Impossible de définir IsMerged" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Fusionner dans" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Fusionné avec %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Le corps du message n'est pas affiché car il est trop long." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Le corps du message ne s'affiche pas parce que l'expéditeur a demandé de ne pas le mettre en ligne." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Le corps du message ne s'affiche pas parce qu'il n'est pas en texte plat." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Hauteur des boîtes de dialogue" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Largeur des boîtes de dialogue" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Le message ne peut être sauvegardé" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Message pour l'utilisateur" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Message sauvegardé" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "Minimum de Créé-Dernière mise à jour" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "Minimum de Créé-Résolu" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "Minimum de Créé-Ouvert le" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "Minimum de Échéance-Résolu" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "Minimum de Ouvert le-Résolu" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "Minimum de Débute-Ouvert le" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Longueur minimum des mots de passe" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "Temps estimé minimum" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "Temps restant minimum" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "Temps travaillé minimum" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Divers" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Clé primaire manquante ? : %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Téléphone mobile" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Téléphone mobile" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Modifier" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "Modifier %3 pour le bien n°%1: %2" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Modifier les membres" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Modifier les modèles des scrips" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Modifier les scrips" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Modifier un champ personnalisé pour la file %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Modifier et Créer des Classes" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Modifier et Créer des Champs Personnalisés pour les Articles" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Modifier l'article n°%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "Modifier des articles dans cette classe" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "Modifier le bien n°%1: %2" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "Modifier les catalogues de biens" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "Modifier les champs personnalisés de biens" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "Modifier des biens" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Modifier les objets associés à %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "Modifier les objets associés au scrip #%1" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Modifier les valeurs des champs personnalisés" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "Modifier les dates pour le bien n°%1: %2" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Modifier les dates pour le ticket n°%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Modifier les rubriques d'article globales" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Modifier globalement les champs personnalisés" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Modifier les droits de groupe globaux" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Modifier les rubriques en global" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Modifier les droits utilisateurs globaux" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Modifier les tableaux de bord de groupe" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Modifier la liste des membres d'un groupe" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Modifier les méta-données ou supprimer le groupe" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Modifier les droits de groupe pour la classe %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Modifier les droits de groupe pour le champ personnalisé %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Modifier les droits de groupes du groupe %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Modifier les droits de groupe pour la file %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "Modifier les liens pour le bien n°%1: %2" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Modifier les méta-données et les champs personnalisés pour cette classe" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Modifier son propre profil RT" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "Modifier les personnes liées au bien n°%1: %2" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Modifier les utilisateurs du ticket n°%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Modifier les tableaux de bord personnels" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Modifier les observateurs de la file" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "Modifier le scrip #%1" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Modifier les scrips de la file %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Modifier les scrips s'appliquant à toutes les files" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Modifier les tableaux de bord systèmes" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Modifier le modèle %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Modifier le modèle %1 pour la file %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Modifier les modèles globaux" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Modifier la classe %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Modifier le contenu du tableau de bord %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Modifier le tableau de bord %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Modifier la vue \"RT en un coup d'Å“il\" par défaut" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Modifier le groupe %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Modifier l'inscription au tableau de bord %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Modifier l'utilisateur %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Modifier cette recherche..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Modifier le ticket n°%1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Modifier le ticket n°%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "Réassigner un ticket" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Modifier les tickets" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Modifier la rubrique pour %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Modifier la hierarchie des rubriques associés à cette classe" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Modifier les rubriques pour tous les articles de cette classe" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Modifier les droits utilisateurs pour la classe %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Modifier les droits utilisateurs pour le champ personnalisé %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Modifier les droits utilisateurs pour le groupe %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Modifier les droits utilisateurs pour la file %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Modifier les destinataires du ticket n°%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Lun" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Lundi" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "Mois" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "Mensuel" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Plus d'informations sur les demandeurs" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "Déplacer" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Déplacer ici" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "Aller vers le haut / bas dans la liste de résultats" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "Multi-utilisateurs (ne peut être modifié après la création)" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "Multi-utilisateurs (en décochant cette case, vous limitez à un seul utilisateur. ne peut être modifié après la création)" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Attribut 'Nom' obligatoire" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Mes tickets %1s" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Mes aprobations" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "Mes biens" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Ma journée" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Mes rappels" #: etc/initialdata:890 msgid "My Tickets" msgstr "Mes tickets" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mes approbations" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "Mes tickets fermés" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mes tableaux de bord" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "Mes tickets ouverts" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Mes rappels" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mes recherches" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "Les files que j'administre" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "Mes biens" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "MesRappels" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "Mes files de support" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "cellule vide" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "LIGNEVIDE" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Nom" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Nom et adresse e-mail" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Nom utilisé" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "Nom requis" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Nom :" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Jamais" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Nouveau" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Nouvel article" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Nouveau tableau de bord" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nouveaux liens" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Nouvelle approbation en attente" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "Nouvel approbation en attente en HTML" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Nouv. recherche" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "Nouvelle valeur" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "Un nouveau bien ne peut avoir le statut '%1'." #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nouveaux messages" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nouveau mot de passe" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Notification de nouveau mot de passe envoyée" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Nouveau rappel :" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nouveau ticket" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Nouveau ticket inconnu" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Les nouveaux tickets ne peuvent avoir le statut '%1' dans cette file" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nouveaux observateurs" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Suivant" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Surnom" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Surnom" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Non" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "Pas de clefs %1 pour cette adresse" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "Pas de %1 chargé" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Aucun article ne correspond à %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Aucune classe définie" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Aucune classe ne correspond au critère de recherche" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Aucun champ personnalisé" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Aucun champ personnalisé défini" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Aucun groupe défini" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "Sans nom" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Aucune requête" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Aucune file définie" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Utilisateur RT non trouvé. Veuillez contacter votre administrateur RT." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Pas de sujet" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "Pas de réécriture du sujet" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Pas de modèle" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Pas d'action" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "Aucun numéro de bien spécifié." #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "Aucun bien correspondant à la recherche." #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "Aucun catalogue spécifié." #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "Aucun catalogue correspondant aux critères de recherches." #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Aucune colonne spécifiée" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Pas de commentaires concernant cet utilisateur" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "Pas de champs personnalisés trouvés pour le regroupement '%1'" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "Aucun rôle coresspondant aux critères trouvé." #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Aucune description disponible pour %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "Pas de modèle global %1" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Aucun groupe spécifié" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Aucun groupe trouvé d'après le critère de recherche." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Pas de clefs adapté pour le chiffrement" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "Déconnecté" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Aucun messages attachés" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Pas de nom fourni" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Chiffrement non nécessaire" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Pas de mot de passe configuré" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Permission refusée pour la création de file" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Vous n'êtes pas autorisé à créer un ticket dans cette file '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Pas de permission pour afficher ce ticket" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "Permission refusée pour modifier ce bien" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "Permission refusée pour modifier ce catalogue" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Pas de permission pour sauvegarder des recherches systèmes" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Pas de permission pour modifier les préférences" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Permission refusée pour voir cet article" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Pas de permission pour afficher le ticket mis à jour" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Aucun groupe/utilisateur sélectionné." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Pas de clefs privée" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Pas de file correspondant aux critères de recherche." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Pas de permissions spécifiées" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Aucun droit trouvé" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "Pas de permission pour ajouter '%1' comme AdminCc de ce ticket" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Pas de critère de recherche." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Pas de sujet" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Clefs non trouvée ou non adapté pour les signatures" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "Pas de modèle %1 pour la file %2 ou en global" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Aucun ticket trouvé" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Aucun type de transaction spécifié" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Pas de clefs utilisable." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Aucun utilisateur ne correspond aux critères de recherche." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "Pas de PrincipalId valide" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "Aucune valeur envoyée à _Set !" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Personne" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Aucune" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Champ inexistant ?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "Scrips non appliqués" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Non trouvé" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Non connecté." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Non renseigné" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Vous n'utilisez pas de navigateur pour téléphone mobile ?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Remarques" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Impossible d'envoyer la notification" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Avertir les AdminCCs" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Avertir les AdminCCs par un commentaire" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Avertir les Ccs" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Avertir les Ccs par un commentaire" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Avertir les autres destinataires" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Avertir les autres destinataires par un commentaire" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Avertir l'intervenant" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "Notifier l'intervenant et les AdminCcs" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Avertir l'intervenant par un commentaire" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Avertir l'intervenant du rejet de son ticket" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Avertir l'intervenant que son ticket a été approuvé et est prêt à être traité" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Avertir l'intervenant que son ticket a été approuvé par un ou tous les approbateurs" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "Notifier l'intervenant et les AdminCcs" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Avertir l'intervenant, les demandeurs, Ccs et AdminCcs" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Avertir l'intervenant, les demandeurs, Ccs et AdminCcs par un commentaire" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Avertir les intervenants et les AdminCCs de nouveaux éléments attendant leur approbation" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Avertir le Demandeur que son ticket a été approuvé par tous les approbateurs" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Avertir le Demandeur que son ticket a été approuvé par certains approbateurs" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Avertir les demandeurs" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Avertir les demandeurs et les Ccs" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Avertir les demandeurs et les CC par un commentaire" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Me notifier les messages non-lus" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "Affecter" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "Nombre" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "OU" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objet" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "N° d'objet" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "Type d'objet" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "L'objet n'a pas pu être ajouté" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Impossible d'effacer l'objet" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objet ajouté" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objet effacé" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "L'objet fourni n'est pas chargé" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Le type d'objet ne correspond pas" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "La liste d'objets est vide" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "Ancienne valeur" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "Le %1, %2 a écrit :" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Lors de la fermeture" #: etc/initialdata:170 msgid "On Comment" msgstr "Lors d'un commentaire" #: etc/initialdata:142 msgid "On Correspond" msgstr "Lors d'un courrier" #: etc/initialdata:131 msgid "On Create" msgstr "Lors d'une création" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "En cours de renvoi" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Ticket renvoyé" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Lors d'un transfert de transaction par e-mail" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Lors d'un changement d'intervenant" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Lors d'un changement de priorité" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Lors d'un changement de file" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Lors d'un rejet" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Lors de la réouverture" #: etc/initialdata:205 msgid "On Resolve" msgstr "Lors de la résolution/clôture" #: etc/initialdata:176 msgid "On Status Change" msgstr "Lors d'un changement de statut" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "Lors d'un changement de temps passé" #: etc/initialdata:136 msgid "On Transaction" msgstr "Lors d'une transaction" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "Un seul Principal/PrincipalId/Utilisateur/Groupe est requis" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Copie cachée (pour ce message)" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Copie (pour ce message)" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Seulement pour la saisie, pas pour l'affichage." #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Ne montrer que les approbations pour les demandes créées après %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Ne montrer que les approbations pour les demandes créées avant %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Ne montrer que les champs personnalisés pour :" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "Ouvrir un ticket inactif" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Ouvrir" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Ouvrir le ticket" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "Ouvrir le compteur" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Ouvrir l'URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "Ouvrir un ticket inactif" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Tickets ouverts" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Ouvrir les tickets lors d'une correspondance" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "Système d'exploitation" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "Les utilisateurs Oracle ne peuvent avoir de mot de passe vide" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Trier par" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organisation" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Ticket source : n°%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Courriel sortant suite à l'enregistrement d'un commentaire" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Courriel sortant enregistré" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Courriels envoyés" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Aperçu" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Tickets propres" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Intervenant" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "L'intervenant '%1' n'a pas les droits pour s'approprier ce ticket." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Intervenant changé de %1 à %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Intervenant forcé de %1 à %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "Groupe Intervenant" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "NomIntervenant" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Page 1 sur 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Page non trouvée" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Bipeur" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Téléphone pager" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Mot de passe" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Mot de passe changé" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Le mot de passe n'a pas été initialisé" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Le mot de passe doit comporter au moins %1 caractères" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Mot de passe non affiché" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Mot de passe défini" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Mot de passe : %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Mot de passe : non autorisé" #: etc/initialdata:714 msgid "PasswordChange" msgstr "ChangementDeMotDePasse" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Les mots de passe sont différents." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Chemin pour sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "Mettre en pause" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "%quant(%1,approbation,approbations) en attente." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "%quant(%1,ticket,tickets) en attente." #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "En attente d'approbation." #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Personnes" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Utilisateurs liés à la file %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Réaliser une action définie par l'utilisateur" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Configuration de Perl" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Ordre de recherche des bibliothèques Perl" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Supprimer définitivement des données de RT" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Accès refusé" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Accès refusé" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Numéros de téléphone" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "Graphique" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "Mettre la signature en haut de la citation" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "Modèle d'auto-réponse (texte brut)" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "Modèle de commentaire admin (texte brut)" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "Modèle de réponse admin (texte brut)" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "Modèle de réponse (texte brut)" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "Modèle de transaction (texte brut)" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Vérifiez l'adresse et réessayez." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Veuillez saisir votre mot de passe actuel correctement." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Veuillez saisir votre mot de passe actuel." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "Attaque de type CSRF possible" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Recherches possible cachées" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "Recherche prédéfinie %1 non trouvée" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Préférences" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Préférences %1 pour l'utilisateur %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "Préférences réinitialisées" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Préférences sauvées pour %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "Preférences de menu des tableaux de bord sauvées" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Préférences sauvées pour l'utilisateur %1." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Préférences sauvées." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "Préférences non trouvées" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Clefs préférée: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Clefs préférée" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Préparation interrompue" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "Taper %1 pour voir les raccourcis clavier." #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Précédent" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Personne/groupe %1 non trouvé(e)." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Afficher la compilation des messages sur la sortie standard (STDOUT); ne pas les envoyer. Ne pas les marquer comme \"envoyés\"" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Imprimer ce message" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Priorité" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Confidentialité" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Confidentialité :" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Clefs privée" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "Clef(s) privée(s) pour %1" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "Clefs privées" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Privilégié" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Statut privilégiés :  %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Utilisateurs privilégiés" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "Privilégiés: noms d'utilisateur; Non-privilégiés: nom complet et adresse email" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Exécution sans transactions, certaines conditions ou actions risquent d'échouer. Vous devriez essayer d'utiliser l'option \"--transaction\"" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseudo groupe pour usage interne" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "La clefs publique '0x%1' est nécessaire pour vérifier la signature" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "Clef(s) publique(s) pour %1" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Requêtes" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Requête" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Constructeur de requête" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "File" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "File %1 impossible à charger." #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "File %1 non trouvée" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Nom de la file" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "File déjà créée" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Impossible de créer la file" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "File ne pouvant être chargée." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "File créée" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Id. file" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "Liste de files" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "File inconnue" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "Niveau de service changé pour cette file" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Clefs pour la file" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "AdminCcFile" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "CPFile" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "CcFile" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "Liste de files" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "NomFile" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "ObservateurFile" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Files" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Files I administrer" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Les files pour lesquelles je suis observateur AdminCc" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Recherche rapide" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Création rapide de ticket" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "CréationRapide" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Administration RT" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "Courriel de l'administrateur RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "Configuration RT" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "Erreur RT" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "Portail RT" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Volumétrie" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT en un coup d'Å“il" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "RT en un coup d'Å“il pour l'utilisateur %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT peut communiquer avec vos utilisateurs au sujet des nouveaux ticket ou des nouveaux échanges. Indiquez où il est possible de trouver sendmail (ou un exécutable compatible sendmail comme celui fourni par postfix). RT nécessite également une adresse où envoyer les courriels invalides. Cette adresse ne doit pas être une adresse redirigée vers RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT peut inclure le contenu d'un autre service web lorsque ce champs personnalisé est affiché." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT peu convertir les valeurs de ce champs personnalisé en liens vers un autre service." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "Variables globales RT" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT pour %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "RT a détecté qu'une attaque de type %1CSRF%2 était possible pour cette requête, en raison de %3. Un attaquant malicieux et peut-être en train d'essayer de %1%4%2 à votre place.Si vous n'êtes pas à l'origine de cette requête, alors vous devriez alerter votre responsable sécurité." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT est un outil de gestion d'incidents de niveau professionnel, destiné à vous permettre de gérer de manière intelligente et efficace les tâches, les problèmes, les demandes, les incidents ou n'importe quoi d'autre qui nécessite une action." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT est utilisé par plus de 100 sociétées, entreprises unipersonnelles, organismes publics, facultés, hopitaux, associations, ONGs, bibliothèques, projets de logiciels libres, et toute sorte d'autre organisation sur les septs continents. (Oui, même en Antarctique.)" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "Historique de mise à jour RT" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT se connectera à la base de données avec cet identifiant. Il sera automatiquement créé." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT va créer un utilisateur nommé \"root\" et lui assigner ce mot de passe" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT remplacera respectivement %1 et %2 avec l'identifiant et la valeur du champs personnalisé" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT utilisera cette chaine de caractère pour identifier de manière unique votre installation et la chercher dans le sujet des courriels pour décider à quel ticket chaque message s'applique. Nous recommandons que vous utilisiez votre nom de domaine internet. (ex: example.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT fonctionne avec différentes bases de données. MySQL, PostgreSQL, Oracle and SQLite sont supportées." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "La configuration des journaux RT est la suivante:" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "L'option RTAddressRegexp dans la configuration RT ne correspond pas à %1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Ré-ouvrir" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "Limite maximum atteinte, les nouvelles valeurs remplaceront les anciennes." #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Nom Complet" #: lib/RT/User.pm:95 msgid "RealName" msgstr "Nom complet" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Destinataires" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Tout enregistrer" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Membre récursif" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "Recycler" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Se rapporte à" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Ajout d'une référence par %1" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Suppression de la référence par %1" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Ajout d'une référence à %1" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Suppression d'une référence à %1" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Mentionné par" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "MentionnéPar" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Se rapporte à" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "SeRapporteÀ" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Actualiser" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Actualiser cette page toutes les %1 minute(s)." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "Rafraîchir la page d'accueil" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "Création de la relation refusée car elle entraînerait une boucle" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Rejeter" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "Tickets liés" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Se souvenir de la file par défaut" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Rappel" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Rappel '%1' ajouté" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Rappel '%1' terminé" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "Rappel '%1' ré-ouvert" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "Rappel '%1': %2" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "Rappel ajouté" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "Rappel terminé" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "Rappel ré-ouvert" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Rappels" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Rappels pour le ticket n°%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "Supprimer" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "Supprimer %1" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Enlever AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Supprimer le favori" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Enlever Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Enlever Demandeur" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "Réécriture du sujet supprimée" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "Champs personnalisé %1 supprimé de %2." #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "Type d'affichage" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Remplacer les listes déroulantes d'intervenants par des boîtes de saisie" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "Remplacer le selecteur de files par des cases à cocher" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Répondre" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Adresse de réponse" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Répondre aux demandeurs" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "Répondre au ticket" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Répondre aux tickets" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "Indiquer un vol" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Demandeur" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "GroupeDemandeur" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Demandeurs" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "Échéance positionnée en fonction du SLA" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "Date de début positionnée en fonction du SLA" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Le paramètre requis '%1' n'est pas spécifié" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Remise à zéro" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "Réinitialiser aux valeurs par défaut" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Ré-initialiser RT en un coup d'oeil" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "Réinitialiser le menu des tableaux de bord" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Réinitialiser le jeton d'authentification" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Réinitialiser avec les valeurs par défaut" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "Remettre le logo RT par défaut" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "Remettre le thème RT par défaut" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Domicile" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Résoudre" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Résoudre le ticket n°%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Résolu" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "Résolu en HTML" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "RésoluDepuis" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Répondre" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Résultats" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "Reprendre" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Retourner au ticket" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "Revenir à l'accueil" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Saisissez à nouveau votre mot de passe" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Annuler" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "Permission '%1' révoquée pour %2." #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "Texte enrichi (HTML) affiche les formattage comme le texte en couleur, caractère gras, italique, etc..." #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Droit activé" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Droit irrévocable" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Droit non activé." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Les droits n'ont pas pu être attribués à %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Permissions pour les administrateurs" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "permissions pour les intervenants" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "Nom du rôle" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "Le rôle existe déjà" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "Rôle '%1' non trouvé" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "Le rôle existe déjà" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Rôles" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Lignes" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Lignes par boîte" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Lignes par pages" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "SLA activé (décocher pour le désactiver pour cette file)" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "Certificat SMIME" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "Certificat SMIME" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "Requêtes SQL" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "Les requêtes SQL sont écrites au niveau %1 et également disponibles dans l'%2outil de requêtes%3." #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "Les requêtes SQL ne sont pas journalisées" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite est une base de données qui ne nécessite pas de serveur ou de configuration spécifique. Les auteurs de RT la recommande pour les tests, démonstrations ou développements, mais ce n'est pas adaptés à une utilisation intensive d'un serveur RT en production." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sam" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Samedi" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Sauver" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Enregistrer les modifications" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Sauvegarder les préférences" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Enregistrer sous" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "Sauver le bien" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Sauver comme" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Enregistrer cette recherche" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "%1 %2 sauvé" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Recherche enregistrée" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Recherches sauvegardées" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Graphiques sauvés" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "Recherche sauvegardée %1 non trouvée" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Recherches sauvées" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "RecherchesSauvées" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "Mise à jour du schéma depuis %1" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Scrip n°%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Scrip ajouté" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "Le scrip n'a pas été ajouté" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Scrips et destinataires" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "Les scrips sont normalement exécutés après chaque changement individuel sur un ticket." #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Rechercher" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "Recherche %1 mise à jour" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Rechercher des articles" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "Rechercher des biens" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Préférences de recherche" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Rechercher les articles correspondant" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Rechercher des approbations" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Rechercher des articles" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Rechercher des tickets" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "Rechercher des tickets en saisissant des %1numéros%2 de ticket,des mots du sujet %1\"entre apostrophes\"%2, des noms de %1files%2, des noms d'%1intervenant%2, des %1adresses email%2 de demandeurs et des %1statuts%2 de tickets. Une recherche comme %1@mondomaine.com%2 listera les tickets dont le demandeur est dans ce domaine." #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Options de recherche" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Résultats de la recherche:" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Intervalle d'actualisation des résultats de recherche" #: share/html/Search/index.html:48 msgid "Searches" msgstr "Recherches" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "La recherche du texte entier de chaque ticket peut prendre longtemps, mais si vous avez besoin de le faire, vous pouvez chercher chaque mot dans l'historique complète des tickets en tapant %1mot." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Jeton d'authentification" #: bin/rt-crontool:352 msgid "Security:" msgstr "Sécurité :" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Voir également:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Voir les articles de cette classe" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "Voir les biens" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "Voir les catalogues" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Voir les changements des articles dans cette catégorie" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Voir que cette classe existe" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Choisir" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Sélectionner des champs personnalisés pour des articles dans toutes les classes" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "Choisir des chmps personnalisés de biens pour tous les catalogues" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Choisissez un type de base de données" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Choisir une classe" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Choisir un champ personnalisé" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "Choisir un rôle" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "Choisir un scrip" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "Sélectionner un catalogue" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Choisir une couleur pour cette section" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "Choisir un rôle" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Choisir un groupe" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Choisir une file" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Choisir une file pour votre nouveau ticket" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Choisir une section" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Choisir un utilisateur" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Sélectionner un article dans %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Choisir un article à inclure" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Séléctionner une autre langue" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Champ de sélection" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Sélectionner les champs personnalisés pour toutes les files" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Choisir des champs personnalisés pour tous les groupes d'utilisateurs" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Choisir des champs personnalisés pour tous les utilisateurs" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Choisir des champs personnalisés pour toutes les files" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Choisir des champs personnalisés pour les opération sur les tickets de toutes les files" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Choisir une date" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Chosir une date/heure" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "Sélectionner l'étape de scrip globale:" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Choisir plusieurs dates" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "Choisir plusieurs dates/heure" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Choisir plusieurs valeurs" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Choisir une valeur" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Sélectionnez les files à afficher dans la page \"RT en un coup d'Å“il\"" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "Étape par défaut pour les nouvelles files:" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Choisir les rubriques pour cette article" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Choisir au maximum %1 date(s)" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "Choisir au maximum %1 date(s)/heure" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Choisir au plus %1 valeurs" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Champs personnalisés sélectionnés" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "File sélectionnées" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "La clefs sélectionnée n'est pas de confiance ou n'existe plus." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Objets sélectionnés" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Sélections modifiées. Merci de sauver vos modifications" #: etc/initialdata:117 msgid "Send Forward" msgstr "Transférer" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "Transférer le message" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Envoyer un courriel aux intervenants et observateurs" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Envoyer un courriel à l'intervenants et aux observateurs en \"commentaire\"" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Envoyer un courrier aux demandeurs et aux CCs" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Envoyer un courrier aux demandeurs et aux CCs en tant que commentaire" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "L'envoi de l'email précédent a échoué. Merci de contacter votre administrateur, il pourra trouver plus de détails dans les fichiers journaux." #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Envoyer un courrier aux demandeurs" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Envoyer un courrier aux CCs et Bccs explicitement indiqués" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Envoyer un courriel en cc" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Envoyer un courriel en cc pour commentaires" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "Envoyer un email à l'intervenant et aux Ccs administratifs" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "Envoyer l'email à l'nintervenant s'il existe, sinon aux Ccs administratifs" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Envoyer un mail aux AdminCCs" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Envoyer un mail aux AdminCCs en tant que commentaire" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Envoyer un courrier à l'intervenant" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Séparer les différentes saisies par des espaces" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "Définir l'échéance en fonction du SLA" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "Définir la clé privée" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "Définir la date de début en fonction du SLA" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "Définir l'échéance en fonction d'une obligation" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "Définir la date de début en fonction d'une obligation" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Réglages" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "Configuration requise" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Noms d'utilisateur courts" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "RT doit-il vous envoyer des courriels pour les mises à jour de ticket que vous effectuez ?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Afficher" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "Afficher le menu Admin" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Voir l'onglet approbations" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "Afficher le menu Articles" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "Afficher le menu des biens" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Afficher les colonnes" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Aff. résultats" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Afficher les propriétés des tickets de niveau %1" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Afficher toutes les citations" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Afficher les requêtes approuvées" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Voir également" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Cacher les en-têtes" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Afficher les requêtes refusées" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Montrer les en-têtes" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Voir les modèles en global" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "Afficher l’historique" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "Voir l'historique des propriétés publiques des utilisateurs" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Afficher la description des liens" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "Ne pas afficher les tickets du demandeur" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Afficher le message le plus ancien en premier" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Afficher les requêtes en attente" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Voir le texte cité" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Afficher les requêtes attendant d'autres approbations" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "Affichage simplifié de la liste des destinataires lors de la mise à jour d'un ticket" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Montrer les 10 tickets actifs de plus haute priorité du demandeur" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Montrer les 10 tickets inactifs de plus haute priorité du demandeur" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Voir les 10 tickets de plus haute priorité pour ce demandeur" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Montrer l'historique du ticket" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "Afficher les champs vides" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "La fonction « shredder » nécessite un répertoire pour y déposer les sauvegardes. Veuillez vous assurer que le répertoire %1 existe et qu'il est bien accessible en écriture par le serveur web." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Barre latérale" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Signer" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Signer par défaut" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "S'identifier en tant que demandeur ou CC de file ou de ticket" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "S'identifier en tant qu'AdminCC de ticket ou de file" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "Signer%1%2" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "Signer%1%2 en utilisant %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "Signer" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Recherche rapide" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Unique" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Nom du site" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Taille" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Passer le menu" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Sauter les utilisateurs désactivés" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Petite" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Certains navigateurs peuvent restreindre le chargement du contenu au domaine du serveur RT." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Un problème est survenu. Contactez votre administrateur système." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Trier" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "Ordre de tri" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Tri" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Spécifie si le lancement et quotidien ou hebdomadaire." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Tableur" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "Les \"stack traces\" sont écrites en niveau %1 et supérieurs." #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "Les \"stack traces\" ne sont pas journalisés." #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Étape" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Passer en stagnant" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Préfixez le terme de la recherche par le nom d'un champs supporté, suivi de \":\" comme %1 et %2 pour spécifier explicitement le type de recherche." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Ouvert le" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "Démarré le %1." #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "OuvertDepuis" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Débute" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "DébuteDepuis" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "État" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "Ordre de recherche des fichiers statiques" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "Statut" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "Le statut '%1' n'est pas valide pour un bien." #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "Le statut '%1' n'est pas valide pour ce %2." #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "Le statut '%1' n'est pas un statut valide pour les tickets de cette file." #: etc/initialdata:449 msgid "Status Change" msgstr "Changement de statut" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "Changement de statut (HTML)" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Statut changé de %1 à %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Changements de statut" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Voler" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Voler les tickets" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Étape %1 sur %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Volé à %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "Stopper la surveillance" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Sujet" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Marque de sujet" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Sujet modifié en %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "MarqueDeSujet" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Valider" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "Enregistrer" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "Enregistrement" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "S'abonner" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "S'abonner au tableau de bord %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "S'abonner aux tableaux de bord" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "S'abonner au tableau de bord %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Abonnement" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "L'abonnement n'a pas pu être créé: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "Abonnement mis à jour" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Donnée déchiffrées sans erreur" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Données chiffrées sans erreur" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "ReÌsumeÌ" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "Résumé de Créé-Dernière mise à jour" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "Résumé de Créé-Résolu" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "Résumé de Créé-Ouvert le" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "Résumé de Échéance-Résolu" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "Résumé de Ouvert le-Résolu" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "Résumé de Débute-Ouvert le" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "Résumé du temps estimé" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "Résumé du temps restant" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "Résumé du temps travaillé" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Dim" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Dimanche" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "Ne pas envoyer si vide (Cochez cette case pour éviter l'envoi du tableau de bord si les recherches ne contiennent pas de résultats)" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Suspendu" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "Système" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Configuration système" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Valeur par défaut du système" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Erreur système" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Erreur système :  %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Outils système" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Erreur système." #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Erreur système. Droit non accordé." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup à usage interne" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Prendre" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Prendre les tickets" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Pris" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Donnez nous quelques information pour trouver la base de données que RT utilisera" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Modèle" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Modèle #%1 effacé" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "Le modèle '%1' n'est pas global" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "Le modèle '%1' n'est ni global ni spécifique à une file" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Modèle '#%1' non trouvé" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "Compilation du modèle ok" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "Le modèle n'inclus pas de code Perl" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Le modèle est vide" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "Modèle en cours d'utilisation" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Modèle est un argument obligatoire" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Modèle analysé" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Erreur d'analyse du modèle" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "Erreur de format de modèle : %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "Modèle: %1" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Modèles" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Modèles pour la file %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Texte" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Le fichier texte n'est pas affiché car désactivé dans les préférences." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Ceci est déjà la valeur actuelle" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Valeur incorrecte pour ce champ personnalisé" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "Ce rôle est invalide pour cet objet" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Ticket ayant des tickets fils ou dépendants non résolus" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Cet utilisateur possède déjà ce ticket" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Utilisateur inconnu" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Utilisateur possédant déjà un statut privilégié" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Utilisateur déjà non-privilégié" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Utilisateur bénéficiant à présent du statut privilégié" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Cet utilisateur est maintenant non privilégié" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Cet utilisateur ne peut pas posséder de ticket dans cette file" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Identifiant non numérique" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Éléments de base" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "Le CC d'un ticket" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "La classe de l'article dont l'identifiant est %1 n'est pas appliqué à la file actuelle" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Le mot de passe du DBA de la base de données" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "L'AdminCC d'un ticket" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "Les utilisateurs cochés peuvent recevoir des emails en rapport avec ce ticket, en fonction de l'action effectuée. Décocher des utilisateurs pour stopper tout envoi sur ce ticket." #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "Le catalogue par défaut" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Le nom de domaine de votre serveur de base de données (ex: 'db.example.com')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "La commande suivante recherchera tous les tickets actifs dans la file 'general' et leurs mettra comme priorité \"99\" s'ils ont dépassé leur échéance:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Les requêtes suivantes ont été supprimées et chacune sera enlevée du tableau de bord quand son panneau sera mis à jour." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Les requêtes suivantes ne sont pas forcément visibles à tous les utilisateurs de ce tableau de bord." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "La clefs a été désactivée" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "La clefs a été révoquée" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "La clefs a expiré" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "Entière confiance pour cette clefs" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "Confiance ultime pour cette clefs" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "La nouvelle valeur est enregistrée." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "L'intervenant d'un ticket" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "La page que vous avez demandé n'a pas pu être trouvée" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Le demandeur d'un ticket" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "La configuration choisie est stockée dans %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Le système n'est pas capable de signer les messages courriels sortants. Ceci indique généralement que la passphrase a été mal saisie, ou que l'agent GPG est arrêté. Prévenez s'il-vous plait votre administrateur système immédiatement. Les adresses avec problème sont:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Thème" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Il y a plusieurs clefs disponibles pour le chiffrement." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Il y a des messages non lu dans ce ticket." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Confiance marginale pour cette clefs" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "Il existe plus d'un groupe avec comme nom '%1'. Ceci peut poser un problème de cohérence dans certaines parties de l'interface d'administration, et de ce fait il est recommandé de renommer les groupes en conflit." #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Il n'y a pas de clefs disponible pour le chiffrement." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "Il n'y a pas de correspondance entre les statuts des cycles de vie %1 et %2. Contactez votre administrateur RT." #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Il y a une clefs disponible, mais le niveau de confiance n'est pas configuré." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "Une erreur s'est produite en analysant votre recherche: %1. L'administrateur RT pourra trouver plus d'information dans les fichiers journaux d'erreur." #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Ces options de configurations concernent les éléments de base pour obtenir un RT fonctionnel. Nous avons besoin de connaître le nom de votre installation RT et le nom de domaines lui correspondant. Vous devrez également définir un mot de passe pour l'administrateur par défaut." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Ce genre personnalisé ne peut pas avoir de liste de valeurs" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "Cette classe ne s'applique pas à cet objet" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "Ce champs personnalisé ne peut être ajouté à cet objet" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "Aucun type d'affichage d'est défini pour ce champs personnalisé" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Cet possibilité n'est offerte qu'aux administrateurs systèmes" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Cette fonctionnalité n'est disponible que pour les administrateurs du système." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "Ce processus n'a pas enregistré de requêtes SQL." #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "Ce ticket ne peut être résolu tant qu'il n'a pas été approuvé." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "Ce ticket ne peut être résolu tant que %numerate(%1,sa dépendance n'est pas résolue,ses dépendances ne sont pas résolues)." #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Cet outil permet à l'utilisateur de lancer un module perl quelconque depuis RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Cette opération semble ne pas avoir de contenu" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "%1 tickets %2 de plus haute priorité pour cet utilisateur" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "Recherche des utilisateurs à partir des champs" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "Affichera un formulaire de création de bien pré-rempli." #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "Affichera un formulaire de création de ticket pré-rempli." #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Jeu" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Jeudi" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Ticket n°%1 mise à jour globale : %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Graphique des relations pour le ticket n° %1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Ticket n°%1 : %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Ticket %1 créé dans la file '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Ticket %1 :  %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Historique du ticket n°%1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Ticket résolu" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Recherche de ticket" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Transactions du ticket" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Ticket et transaction" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Rédaction des tickets" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Contenu du ticket" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Type du contenu du ticket" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Une erreur interne a empêché l'ajout du ticket" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Le ticket n'a pas pu être chargé" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "Nombre de tickets" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Affichage des tickets" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "ticket dans" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Méta-données du ticket" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Statut de ticket modifié" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Réponse du ticket" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "Module de recherche TicketSQL" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Tickets %1 sur %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Les tickets que je gère" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Tickets dépendant de cette approbation :" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "Temps" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Temps estimé" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Temps restant" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "Durée de prise en compte" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Temps passé" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "Temps estimé" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Temps de calcul" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "TempsEstimé" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "TempsRestant" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "TempsPassé" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "Compteur pour n°%1 : %2" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Fuseau horaire" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Titre" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "À" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Pour vous renseigner au sujet du support, de la formation, des développements spécifiques ou au sujet de la licence, merci de contacter en anglais %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "Afficher/cacher %quant(%1,requête,requêtes)" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "Cocher/décocher le ticket surligné" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "Afficher/cacher la pile d'exécution" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Annoncé" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "AnnoncéDepuis" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Outils" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Nom de la rubrique" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "Appartenance à la rubrique ajoutée" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "Appartenance à la rubrique supprimée" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Rubrique non trouvée" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Rubriques" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "Somme de Créé-Dernière mise à jour" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "Somme de Créé-Résolu" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "Somme de Créé-Ouvert le" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "Somme de Échéance-Résolu" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "Somme de Ouvert le-Résolu" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "Somme de Débute-Ouvert le" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "Somme du temps estimé" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "Somme du temps restant" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "Somme du temps travaillé" #: etc/initialdata:317 msgid "Transaction" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "La transaction %1 est supprimée" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transaction ajoutée" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Champs personnalisés de transaction" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "Transaction (HTML)" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create a échoué car vous n'avez pas spécifié de type d'objet et d'id" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "CPTransaction" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "DateDeTransaction" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Les transactions ne peuvent être transférées" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Confiance" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "Essayer" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "Réessayer" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Mar" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Mardi" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "CPTransaction" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Saisissez a: devant des numéros d'article et t: devant des numéros de ticket." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Type changé de '%1' à '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "Désélectionner les scrips cochés" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "Impossible d'ajouter le lien %1: %2" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "Impossible d'ajouter la réécriture du sujet: %1 %2" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "Impossible d'ajouter l'appartenance à cette rubrique" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "Impossible de supprimer l'appartenance à la rubrique %1" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Impossible de déterminer le type ou l'identifiant de l'objet" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "Impossible de trouver le bien n°%1" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "Impossible de trouver le catalogue %1" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "Impossible de trouver le catalogue '%1'" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Impossible de charger l'article" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "Impossible d'ouvrir l'aide des raccourcis clavier. Raison:" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "Impossible de définir UserCSS : %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "Impossible de définir UserLogo : %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "Impossible de définir l'id de confidentialité : %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "Impossible de définir l'id ou l'objet de confidentialité : %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "Impossible de définir l'objet de confidentialité : %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "Impossible d'enregistrer le temps passé. Veuillez l'ajouter au ticket manuellement. Raison:" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "Impossible de s'abonner au tableau de bord %1: Permission refusée" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "Interdit" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Décocher les cases pour désactiver les notifications aux destinataires suivant pour cette transaction seulement ; les désactivations permanentes sont gérés sur la page des utilisateurs." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Restaurer" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "Malheureusement, RT n'a pas pu créer un compte pour vous. Votre administrateur pourra trouver plus d'informations dans les fichiers journaux." #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Identifiant Unix" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Inconnu (pas de niveau de confiance assigné)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Inconnu (ceci est une nouvelle valeur pour le système)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Type d'encodage de courrier inconnu : %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Champ inconnu: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "Tant que vous ne spécifiez pas un statut particulier, seul les tickets avec le statut actif (%1) seront recherchés." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Pas de limite" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Illimité" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Tableau de bord sans nom" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Recherche non nommée" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Tickets sans propriétaire" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Tickets sans intervenant" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Sans droits" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Champs personnalisés non sélectionnés" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Files non sélectionnées" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Objets non sélectionnés" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Désélectionner la clefs privée" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Non pris" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Mettre à jour" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Mettre à jour le graphique" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Mettre à jour le graphique" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Personnaliser ce menu" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Mettre à jour le ticket" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Mettre à jour le type" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Mettre à jour le format et rechercher" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Mettre à jour plusieurs tickets" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Mise à jour non enregistrée." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Mettre à jour le ticket" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Mettre à jour le ticket n°%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Mettre à jour le ticket n°%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Le type de mise à jour n'était ni un commentaire ni un courrier." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "Statut de mise à jour" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Mis(e) à jour" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "Mis à jour par" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Recherche sauvée \"%1\" mise à jour" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "Mis à jour par" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "Mise à jour de %1 à %2" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Envoyer" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Charger un nouveau logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Télécharger plusieurs fichiers" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Télécharger plusieurs images" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Télécharger un fichier" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Télécharger une image" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Télécharger un maximum de %1 fichiers" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Télécharger au plus %1 images" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "Chargement..." #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Utilisation :" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "Utiliser un affichage sur deux colonnes pour les forumlaires de création/réponse?Utiliser un affichage sur deux colonnes pour les formulaires de création et de mise à jour ?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "Utiliser le bien %1 comme demandeur de ticket: %2" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Utiliser l'auto-completion pour rechercher les intervenants ?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "Utiliser l'autocompletion pour chercher des files" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Utiliser la valeur par défaut (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Utiliser les autres outils d'administration de RT" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Utiliser la valeur système par défaut (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Utilisez les menus déroulants pour sélectionner quelles mises à jour du ticket vous souhaitez extraire comme nouvel article." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "Utilisé par les scrips" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Utilisateur" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "L'utilisateur %1 est désactivé" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "L'utilisateur %1 est désactivé. Cochez la case \"Donner accès à RT à cet utilisateur\" pour l'activer." #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Utilisateur (créé - expire)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Défini par l'utilisateur" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "Conditions et actions définies par l'utilisateur" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "Groupes utilisateur" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Informations" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Droits utilisateurs" #: share/html/User/Search.html:48 msgid "User Search" msgstr "Recherche d'utilisateurs" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "Détail" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "L'utilisateur a demandé un type de mise à jour non connu pour le champ personnalisé %1 de l'objet %2 n°%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "L'utilisateur ne peut être créé : %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Utilisateur créé" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Utilisateur désactivé" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Utilisateur activé" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "L'adresse de courriel de l'utilisateur est vide" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Utilisateur chargé" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Groupe définis par l'utilisateur" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "Utilisateur: %1" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Nom d'utilisateur" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Format de nom d'utilisateur" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Utilisateurs" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Utilisateurs correspondants aux critères de recherche" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Utilisation de la transaction #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Valider la requête" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Valeur" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Valeurs" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Voir les modèles du scrip" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Voir les scrips" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Voir les valeurs de champs personnalisés" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Voir les champs personnalisés" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Voir en détail les courriels envoyés avec leurs destinataires" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Voir le groupe" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Voir les tableaux de bord de ce groupe" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "Voir le ticket surligné" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Voir les tableaux de bord personnels" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Voir cette file" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Voir les recherches sauvées" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Voir les tableaux de bord systèmes" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Voir les commentaires privés des tickets" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Voir les informations de base des tickets" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "ATTENTION : recherche sauvée avec une confidentialité de niveau utilisateur" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Hauteur de l'éditeur WYSIWYG" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "Editeur de messages WYSIWYG" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Attention! Ceci n'est pas signé!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "Attention: ce tableaux de bord n'a pas de destinataires" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "Attention: la fusion est une action irréversible! Saisissez un numéro de ticket avec lequel effectuer la fusion." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Observateur" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "GroupeObservateur" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Observateurs" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Nous sommes capables de trouver votre base de données et de s'y connecter en DBA. Vous pouvez cliquer sur \"Personnalisation de base\" pour continuer à personnaliser RT." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Il n'est pas possible actuellement de générer une affichage de type liste quand les catégories sont basées sur un autre champs personnalisé. Veuillez utiliser un autre type d'affichage." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Nous avons besoin de connaître le nom de la base de données qui sera utilisée par RT ainsi que sa localisation. Nous avons également besoin de connaître le nom d'utilisateur et le mot de passe que RT doit utiliser. RT peut créer la base de donnée et l'utilisateur pour vous, c'est pourquoi, l'identifiant et le mot de passe d'un utilisateur avec des privilèges DBA sont demandés. Pendant l'étape 6 du processus d'installation nous utiliseront cette information pour créer et initialiser la base de données RT." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Port web" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Mer" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Mercredi" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "Numéro de semaine" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Hebdomadaire" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Compilation hebdomadaire" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Bienvenue dans RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Ce que j'ai fait aujourd'hui" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Qu'est-ce que RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "Quels tickets afficher dans la boîte \"Plus d'informations sur le demandeur\"" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Lorsque RT ne peut gérer un courriel, où doit-il être envoyé?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Quand RT envoi un courriel, il positionne les champs expéditeur et Reply-To afin que les utilisateurs puissent participer à la conversation en cliquant simplement sur Répondre dans leur client de courriel. Une adresse différente est utilisée pour les réponses et les commentaires. Celles-ci peuvent-être définies pour chaque file. Ces adresses devront être configurées pour utiliser le programme rt-mailgate." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "Lors d'un changement de temps passé" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Quand un ticket est créé" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Quand un ticket d'approbation est créé, informer l'intervenant et l'AdminCC de l'élément attendant leur approbation" #: etc/initialdata:137 msgid "When anything happens" msgstr "Quand quelque chose arrive" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "Lorsque des articles de cette classe sont insérés dans des emails:" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Lorsque vous cliquez sur 'Tester la connexion à la base de données' il peut y avoir un peu d'attente le temps que RT se connecte à votre base de données." #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Quand un ticket et fermé(désactivé)" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Lorsqu'un ticket est transféré par e-mail" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Quand un ticket est rejeté" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Quand un ticket est ré-ouvert(activé)" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Lorsqu'un ticket quelconque est résolu/clos" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Lorsqu'un ticket ou une transaction est transférée par e-mail" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Lorsqu'un ticket quelconque change d'intervenant" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Lorsqu'un ticket change de priorité" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Lorsqu'un ticket quelconque change de file" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Lorsqu'un ticket quelconque change de statut" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Lorsqu'une transaction est transférée par e-mail" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Lorsqu'une condition définie par l'utilisateur est satisfaite" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Lorsque un commentaire arrive" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Lorsque un courrier arrive" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Où trouver l'exécutable sendmail." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "Largeur" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Supprimer définitivement" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Travail" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Téléphone professionnel" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Travaillé" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "Travaillé %quant(%1,heure,heures) (%quant(%2,minute,minutes))" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "Travaillé %quant(%1,minute,minutes)" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "Année" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Oui" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "Vous (%1) n'êtes pas autorisé à utiliser RT." #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Vous pouvez modifier ce tableau de bord et votre inscription à celui-ci dans RT." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Vous êtes déjà intervenant de ce ticket" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "Vous êtes sur le point de chiffrer les messages sortants, mais il y a des problèmes avec les clefs publiques ou les certificats des destinataires. Vous devez résoudre ce problème en désactivant ces destinataires ou en désactivant le chiffrement." #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "Vous êtes sur le point de chiffrer vos emails envoyés, mais il y a un problème avec la clefs publique ou le certificat d'un destinataire. Vous devez corriger ce problème. Désactiver l'envoi de messages à ce destinataire ou désactiver le chiffrement." #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "Vous n'êtes pas autorisé à utiliser RT." #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Vous pouvez aller au premier message non-lu ou aller au premier message non-lu et marquer tous les messages comme lus." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "Vous pouvez également cliquer sur le logo ci-dessus pour obtenir ses couleurs!" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Vous pouvez aussi modifier la recherche prédéfinie elle-même" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "Vous pouvez changer le modèle si nécessaire" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Vous pouvez saisir le contenu d'un ticket dans n'importe quel champ de type texte libre, texte ou wiki." #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Vous ne pouvez définir le mot de passe." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Vous pouvez seulement réaffecter vos ticket ou ceux qui ne sont pas affectés" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "Vous pouvez uniquement voler un ticket détenu par quelqu'un d'autre" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Vous pouvez uniquement prendre des tickets sans intervenant" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Vous pouvez chercher pour chaque mot dans l'historique complet des tickets en tapant %1mot." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Vous ne pouvez changer le statut de '%1' en '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Vous n'avez pas les droits SuperUtilisateur." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "Vous n'avez pas la permission pour créer un ticket dans cette classe" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "Vous n'avez pas la permission pour créer des biens dans le catalogue %1." #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "Vous n'avez pas la permission pour voir des articles" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "Vous n'avez pas la permission pour voir ce bien." #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "Vous n'avez pas la permission pour voir ce catalogue." #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "Vous avez activé %1 mais %2 n'a pas été configuré dans RT_SiteConfig.pm, veuillez consulter '%3' pour plus d'aide" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Vous avez été déconnecté de RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "Vous avez activé le chiffrement mais n'avez pas saisi d'adresse de commentaire pour cette file." #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "Vous avez activé le chiffrement mais n'avez pas saisi d'adresse de réponse pour cette file." #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Vous n'avez pas l'autorisation de créer des tickets dans cette file." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Vous pouvez saisir des liens vers des articles avec \"a:###\", ou ### est le numéro de cet article." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Vous devez saisir un mot de passe Administrateur" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "Vous devez définir la variable \"StatementLog\" à \"true\" pour activer cette page d'historique des requêtes." #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "Vous devez saisir une adresse de commentaire pour cette file avant de configurer une clefs privée" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "Vous devez saisir une adresse de réponse pour cette file avant de configurer une clefs privée" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Vous devriez être redirigé vers la page de connection. Vous pourrez vous identifier avec l'identifiant %1 et le mot de passe configuré précédemment." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Vous devez choisir la base de données que vous ou votre administrateur de base de données maîtrisez le mieux." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "Vous avez été déconnecté de RT par votre système d'authentification. Ça peut être le fait d'une erreur temporaire, dans ce cas, rafraîchir la page peu résoudre ce problème." #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Vous voyez cet écran car vous avez démarré RT sans base de données fonctionnelle. C'est probablement la première fois que vous lancez RT. Si vous cliques \"%1\" ci-dessous, RT vous guidera pour configurer votre serveur RT et votre base de données." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Vous êtes invité à vous identifier à nouveau" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Votre mot de passe n'est pas défini." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "Votre système gère la sugestion automatique des couleurs pour : %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Votre nom d'utilisateur ou votre mot de passe est incorrect" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Code Postal" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Bas]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Haut]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "[un catalogue non-visible]" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[aucun]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "un champs personnalisé" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "actifs" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "après" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "après click sur un lien" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "après le chargement du reste de la page" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "réservé" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "et avant" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "et pas" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "puis" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "Lors du défilement" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "barres" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "avant" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "corps" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "de bas en haut" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "cocher cette case pour appliquer cette classe en global à toutes les files." #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "cocher cette case pour appliquer ce champs personnalisé à tous les objets." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "cocher cette case pour appliquer ce scrip à tous les objets" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "cocher cette case pour supprimer cette classe en global et pouvoir la définir pour des files spécifiques." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "cocher cette case pour supprimer ce champs personnalisé de tous les objets et pouvoir le définir pour des objets spécifiques." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "cocher cette case pour ne plus appliquer ce scrip en global et pouvoir l'appliquer individuellement." #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "cocher pour ajouter" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "cliquer pour sélectionner/désélectionner tous les objets en une fois" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "Configuration centrale" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "créer un ticket" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "tous les jours à %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "quotidiennement, le" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "tableaux de bord" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "Menu des tableaux de bord" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "effacé" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "ne contient pas" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "télécharger" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "durée" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "envoi d'emails suspendu" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "emails désactivés pour ce ticket" #: lib/RT/User.pm:270 msgid "empty name" msgstr "nom vide" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "égal à" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "erreur : ne peut aller plus bas" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "erreur : ne peut aller à gauche" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "erreur : ne peut aller plus haut" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "erreur : rien à effacer" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "erreur : rien à déplacer" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "erreur : rien à commuter" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "tous les" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "greffons exécuté avec succès" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "Bcc temporaire sélectionné explicitement" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "Cc temporaire sélectionné explicitement" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "entière" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "supérieur à" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "groupe" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "groupe %1" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "groupe '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "n°" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "immédiatement" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "dans la classe %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "affecté" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "inactifs" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "inclus %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "indexe" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "date d'échéance invalide: %1" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "est" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "n'est pas" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "clefs désactivée" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "clefs expirée" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "clefs révoquée" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "de gauche à droite" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "inférieur à" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "marginale" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "contient" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "Profondeur maximale" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "Modifier la configuration de RT" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "modifier un tableau de bord" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "modifier ou accéder à une recherche" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "modifier vos préférences" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "mensuel" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "tous les mois (jour %1) à %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "jamais" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "nouveau" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "non" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "aucune adresse email configurée" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "aucun" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "pas" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "différent de" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "aucun" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "les objets ont été supprimés avec succès" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "Le" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "le jour" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "une" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "ouvert" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "ouvrir/fermer" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "autre..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "faire les actions" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "camembert" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "le greffon a retourné une liste vide" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "pixels" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "file %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "reçois des résumés quotidiens" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "reçois des résumés hebdomadaires" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "recyclé" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "rejeté" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "nécessite l'utilisation de rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "résolu" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "de droite à gauche" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "recherche" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "voir la liste d'objets ci-dessous" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "barre latérale" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "configuration du site" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "stagnant" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "requête" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "volé" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "lignes de sommaire" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "système %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "groupe système '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "L'en-tête \"Referrer\" envoyée par votre navigateur (%1) n'est pas autorisé par la configuration de RT (%2)" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "l'entête Referrer fourni par votre navigateur (%1) n'est pas autorisé par l'hôte configuré dans RT (%2) ou par la liste blanche des hôtes (%3)" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "le composant appelant n'a pas spécifié pourquoi" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "les adresses par défaut qui seront listée dans les en-têtes de l'émetteur et Reply-To: d'un courriel de commentaire." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "les adresses par défaut qui seront listée dans les en-têtes de l'émetteur et Reply-To: d'un courriel de réponse." #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "ticket n°%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "de haut en bas" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "ultime" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "groupe %1 non décrit" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "illimité" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "mettre à jour un ticket" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "mettre à jour une approbation" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "mettre à jour un article" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "utilisateur" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "utilisateur %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "nom d'utilisateur" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "Hebdomadaire" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "toutes les semaines (le %1) à %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "semaines" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "qui pourrait %1 à vos dépends" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "sur quel port votre serveurweb est-il en écoute, ex: 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "avec en-têtes" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "oui" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "votre navigateur n'a pas envoyé d'en-tête « Referrer »" rt-4.4.2/share/po/ca.po0000664000175000017500000127304113131430353014505 0ustar vagrantvagrant# Catalan translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 10:05+0000\n" "Last-Translator: Ton \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%1 %3 %2 %4" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%1 %3 %2 %6 %4:%5" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3 %2 %7 %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "Afegit %1 %2" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 ha canviat a %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "S'ha esborrat %1 %2" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "S'ha esborrat %1 %2." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 no existeix" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 està deshabilitat" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 guardat." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "S'ha actualitzat %1 %2 ." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 amb la plantilla %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) per %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Sense canvis)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (del panell %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Ajusteu la opció de config. LogToSTDERR" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Un argument per a passar a %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Els missatges d'estat actualitzen STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Especifica si vols utilitzar les transaccions 'first' (primera), 'last' (darrera) o 'all' (totes)" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Especifiqueu el nom o l'identificador de la(es) plantilla(es) que voleu emprar" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Especifiqueu la llista separada per comes de tipus de transaccions que voleu emprar" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Especifiqueu la condició del mòdul que voleu utilitzar" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Especifiqueu el mòdul de cerca que voleu emprar" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "Versió %1" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 afegit com a valor per %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "fa %1" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 ja existeix i té les taules de RT al seu lloc, però no contenen les metadades de RT. Mitjançant 'Inicialitzat la base de dades', més endavant pots afegir les metadades a la base de dades preexistent. Si això és acceptable, clica a 'Personalització Bàsica' a sota per seguir personalitzant RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 ja existeix, però no conté les taules ni les metadades de RT. Més endavant, al pas 'Inicialitzar la base de dades', pots afegir les metadades en aquesta base de dades existent. Si això és acceptable, clica a 'Personalitzacions bàsiques' a sota per seguir personalitzant RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 apareix com a objecte local, però no s'ha pogut trobar dins la base de dades" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "Senbla que %1 ja està completament inicialitzat. No hem de crear les taules ni les metadades de RT, però pots continuar personalitzant RT clicant a 'Personalització Bàsica' a sota." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 per %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 no pot ser un grup" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 canviat de %2 a %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "S'ha modificat %1 de '%2' a '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 copiar" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "Configuració principal de %1" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "No s'ha pogut posar %1 com a %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 creat" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 eliminat" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "S'ha inhabilitat %1" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 no existeix" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "S'ha habilitat %1" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 tickets amb més prioritat que tinc assignats" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 és una eina per efectuar actuacions a tiquets de servei des d'una eina externa de planificació, com cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 és una utilitat, feta per ser executada des de cron, que reparteix les notificacions diferides de RT en forma de resum per usuari" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 ja és un %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 és una adreça en la que RT reb el correu. Afegir-la com a '%2' podria crear un bucle de correu" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 ja no és un valor per al camp personalitzat %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 no és %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 no és un cicle de vida vàlid" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 problemes" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 articles actualitzats més recentment" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 articles més nous" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "Els %1 tiquets més recents no assignats" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objectes" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 assignat a %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 configuració del lloc" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 actualitzar: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 actualitzar: Res ha canviat" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 actualitzat" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1's %2 objectes" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1's %2's %3 objectes" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "Contrasenya actual de %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Taulers de %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "Claus d'encriptació de %1" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "Cerques desades per %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: no s'ha especificat cap adjunt" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Nou tiquet a%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,dia,dies)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,hora,hores)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,hora,hores) (%quant(%2,minut,minuts))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,minut,minuts)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,mes,mesos)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,segon,segons)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,setmana,setmanes)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,any,anys)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' no és un nom vàlid" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' no és una classe vàlida" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' no és un identificador de classe vàlid" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Marca la casella per completar)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "Marcar la casella per eliminar" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Marca les caselles a eliminar)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Introdueix els IDs o les URL dels tiquets, separats per espais)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Si es deixa en blanc, per defecte serà %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(Incomplet)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(Dada incorrecta)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Sense camps personalitzats)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Cap membre)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Cap scrip)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Cap plantilla)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Envia una còpia d'aquesta actualització a una llista delimitada per comes d'adreces de correu administratives. Aquestes persones rebran futures actualitzacions.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Envia una còpia exacta d'aquesta actualització a una llista d'adreces separada per comes. Aquestes persones rebràn futures actualitzacions.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Utilitza aquests camps quan escullis 'Definit per l'Usuari' per a una condició o acció)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(qualsevol)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(sense Sumari)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(sense nom)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(no hi ha clau pública!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(sense valor)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(sense valors)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(pendent %quant(%1,altre tiquet,altres tiquets))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(pendent d'aprovació)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(necessari)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(confiança: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(sense títol)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(sense confiança!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id és un argument obsolet (deprecated) i no es pot utilitzar amb --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "l'argument de --transaction només pot ser 'first', 'last' o 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 segons" #: lib/RT/Date.pm:424 msgid "0s" msgstr "0 s" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Ja existeix una plantilla amb aquest nom" #: etc/initialdata:258 msgid "A blank template" msgstr "Una plantilla en blanc" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "No s'ha introduït contrasenya, així que l'usuari no podrà iniciar sessió" #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE no trobat" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "Les ACEs només es poden crear o esborrar." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "I" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Quant a mi" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Control d'accés" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Acció" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "No es troba l'acció '%1" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Acció realitzada." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "L'acció és un argument obligatori" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Acció preparada..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Accions" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Tiquets actius" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Tiquets actius per a %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Afegeix %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Afegeix AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Afegeix una adreça d'interès" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Afegeix Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Afegeix columnes" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Afegeix criteris" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Afegeix més fitxers" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Afegeix sol·licitant" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Afegeix valor" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Afegeix comentaris o respostes als tiquets sel·leccionats" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Afegeix grup" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Afegeix aquí" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Afegeix membres" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Afegeix nous observadors" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Afegeix permisos per aquest %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Afegeix aquests termes" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Afegeix aquests termes i Cerca" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Afegeix usuari" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Afegeix valors" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Afegeix, modifica o esborra valors de camp personalitzats per als objectes" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Afegit" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "Afegida la modificació de l'assumpte: %1" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adreça" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Adreça 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adreça 1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adreça 2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Administrador" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Administra comentaris" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Comentari de l'admin en HTML" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Administra respostes" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Correspondència de l'admin en HTML" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Administra cues" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Configuració global" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Contrasenya administrativa" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Avançat" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Cerca avançada" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Un cop iniciïs sessió, seràs enviat al destí original" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Totes les aprovacions estan acceptades" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Totes les aprovacions en HTML" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Tots els articles d'aquesta classe haurien de llistar-se en un menú desplegable de la pàgina de resposta al tiquet" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Totes les classes" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Tots els taulers" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Totes les cues" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Totes els tiquets" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Tots els feeds de iCal inclouen un token secret que els identifica i autoritza. Si la URL d'un dels teus feeds iCal s'ha vist compromesa, pots obtenir un nou token, inhabilitant tots els feeds d'iCal existents a sota." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Totes les cues coincidents amb el criteri de cerca" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Tots els tiquets" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Tots els temes" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Permet la creació de cerques desades" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Permet carregar cerques desades" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Permet escriure codi Perl a les plantilles, scripts, etc" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Ja xifrat" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "I/O" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Anualment" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Qualsevol camp" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Qualsevol paraula que no sigui reconeguda per RT es busca a l'assumpte dels tiquets." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "S'aplica a" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "S'aplica a tots els objectes" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Aplica" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Aplica globalment" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Aplicar els scrips seleccionats" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Aplica els canvis" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Aprovació" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Aprovació #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Aprovació #%1: No s'han desat les notes degut a un error del sistema" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Aprovació #%1: Notes desades" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Aprovació passada" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "Aprovació Feta en HTML" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Aprovació preparada pel propietari" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "Aprovació llesta per al propietari en HTML" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Aprovació rebutjada" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "Refús de l'aprovació en HTML" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Aprova" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Abr" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "No s'ha trobat l'article #%1" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Article %1 creat" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Administració d'articles" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "No s'ha trobat l'article" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Articles a %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Articles coincidents amb %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Articles sense temes" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Assignar i esborrar camps personalitzats de la cua" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Adjunta" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Adjunta un fitxer" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Fitxer adjunt" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Fitxer adjunt" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "No s'ha pogut carregar el fitxer adjunt '%1'" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Fitxer adjunt creat" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Nom del fitxer adjunt" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Fitxers adjunts" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "El xifrat de fitxers adjunts està deshabilitat" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Atribut esborrat" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Ago" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "Ha fallat la configuració automàtica del compte" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Els colors del tema suggerits automàticament no estan disponibles per a la teva imatge. Això pot ser segut a que has pujat un tipus d'imatge que no suporta la versió instal·lada de GD. Els tipus suportats son: %1. Pots recompilar libgd i GD.pm per a afegir suport per a altres tipus d'imatges." #: etc/initialdata:261 msgid "Autoreply" msgstr "Resposta automàtica" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Resposta automàtica als sol·licitants" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Autoresposta en HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Disponible" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Enrere" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Privacitat errònia per a l'atribut %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Opcions bàsiques" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "Batch (desactivat per configuració)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Scrips de batch" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "CCO" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "En blanc" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Cos del missatge" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Negreta" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Marcador" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Enllaç afegible als marcadors per a aquesta cerca" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Tiquets a marcadors" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Tiquets a marcadors" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Navega per tema" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Buscar les consultes SQL fetes en aquest procés" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Actualizació en bloc" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "Camp Pers." #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "Es pot buscar als camps personalitzats utilitzant una sintaxis similar a l'anterior amb %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "No es pot carregar la cerca desada \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "No es poden modificar els usuaris de sistema" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "No es pot afegir un valor de camp personalitzat sense nom" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "No es pot trobar una cerca desada per treballar-hi" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "No es pot enllaçar un tiquet amb ell mateix" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "No es pot enllaçar a un tiquet esborrat" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "No es pot desar %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "No es pot desar aquesta cerca" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "No es pot afegir un enllaç a un número pla" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "No es poden crear tiquets en una cua deshabilitada" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Les categories es basen en" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Categoria" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "CC" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "CCs" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Canvia" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Canvia el tiquet d'aprovació a estat obert" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Canvia la contrasenya" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "El canvi de cua encara no està implementat" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Gràfic" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Marca-ho tot" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Verifica la connectivitat a la base de datos" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Verifica les credencials de la base de dades" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Marca la casella per a esborrar" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Fills" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Escull un motor de base de dades" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Escull d'entre els temes per a %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Població" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Classe" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Nom de la classe" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "No s'ha pogut crear la classe: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "ID de la classe" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Aquesta classe ja s'aplica globalment" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Aquesta classe ja s'aplica a %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Neteja" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Neteja-ho tot" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Fes click a \"Finalitzar instal·lació\" a sota per a completar l'assistent" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Fes click a \"Inicialitzar la base de dades\" per a crear la base de dades de RT i inserir les metadades originals. Això pot trigar uns instants" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Fes clic per triar un color" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Tancat" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Tiquets tancats" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Escull o introdueix múltiples valors" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Combobox: Escull o introdueix un valor" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Combobox: Escull o introdueix fins a %1 valors" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Comenta" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Adreça del comentari" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Adreça del comentari" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Comenta als tiquets" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Comentaris" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Comentaris (no s'envien als sol·licitants)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Comentaris sobre aquest usuari" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Comentaris afegits" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Acció realitzada" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Condició" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "No s'ha trobat la condició '%1'" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "La condició és un argument obligatori" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "La condició es correspon amb..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Condició, Acció i Plantilla" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "El fitxer de configuració %1 està bloquejat" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Configuració per la cua %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Connectat correctament" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Contacteu el vostre adminstrador de RTvia %1email to %2%3." #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Contacta el teu administrador de RT." #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Contingut" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "El contingut no és una adreça IP vàlida" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "El contingut no és un rang d'adreces IP vàlid" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tipus de contingut" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Adreça de correspondència" #: etc/initialdata:393 msgid "Correspondence" msgstr "Respostes" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Resposta afegida" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Correspondència en HTML" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "No s'ha pogut afegir el valor del camp personalitzat: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "No s'ha pogut canviar el propietari: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "No s'ha pogut crear el camp personalitzat: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "No s'ha pogut crear el grup" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "No s'ha pogut crear la cerca: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "No s'ha pogut crear el tiquet. No s'ha definit la cua" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "No s'ha pogut crear l'usuari" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "No s'ha pogut esborrar la cerca %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "No s'ha trobat el grup '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "No s'ha pogut trobar o crear l'usuari '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "No s'ha pogut carregar l'atribut %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "No s'ha pogut carregar la classe %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "No s'ha pogut carregar el camp personalitzat %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "No s'ha pogut carregar el grup" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "No s'ha pogut carregar l'objecte per a %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "No s'ha pogut carregar l'scrip #%1" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "No s'ha pogut carregar l'usuari '%1'" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "No s'ha pogut establir l'informació de l'usuari" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "No s'ha pogut afegir el fitxer adjunt" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "No s'ha pogut afegir el membre al grup" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "No s'ha pogut compilar el bloc %1 de codi '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "No s'ha pogut compilar el bloc de codi de la plantilla '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "No s'ha pogut crear la transacció: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "No s'ha pogut crear el registre: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "No s'ha pogut esborrar el tauler %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "No s'ha trobat la fila" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "No s'ha trobat una transacció adequada, ometent" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "No s'ha pogut trobar aquest element" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "No s'ha trobat aquest valor" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "No s'ha pogut carregar la classe %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "No s'ha pogut carregar el camp personalitzat #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "No s'ha pogut carregar el camp personalitzat #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "No s'ha pogut carregar el camp personalitzat %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "No s'ha pogut carregar la còpia del tiquet #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "No s'ha pogut carregar el tauler %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "No s'ha pogut carregar el grup #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "No s'ha pogut carregar el grup %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "No s'ha pogut carregar l'enllaç" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "No s'ha pogut carregar l'enllaç: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "No s'ha pogut carregar l'objecte %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "No s'ha pogut carregar o crear l'usuari: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "No s'ha pogut carregar la cua" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "No s'ha pogut carregar la cua #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "No s'ha pogut carregar la cua %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "No s'ha pogut carregar la cua '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "No s'ha pogut carregar el script #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "No s'ha pogut carregar la plantilla #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "No s'ha pogut carregar l'element especificat" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "No s'ha pogut carregar el tiquet '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "No s'ha pogut carregar la pertinència del tema mentre s'intentava esborrar" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "No s'ha pogut carregar la transacció #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "No s'ha pogut carregar l'usuari" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "No s'ha pogut carregar l'usuari #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "No s'ha pogut carregar l'usuari #%1 ni l'usuari '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "No s'ha pogut carregar l'usuari '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "No s'ha pogut interpretar la URI d'origen: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "No s'ha pogut interpretar la URI de destí: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "No s'ha pogut substituir el contingut amb l'informació desxifrada: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "No s'ha pogut substituir el contingut amb l'informació xifrada: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "No s'ha pogut resoldre '%1' en una URI." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "No s'ha pogut resoldre el destí '%1' en una URI." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "No s'ha pogut establir %1 observador: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "No s'ha pogut establir la clau privada" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "No s'ha pogut desassignar la clau privada" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "País" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Crea" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Crea tiquets" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Crea una classe" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Crea un camp personalitzat" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Crea un camp personalitzat per a la cua %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Crea un nou article" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Crea un nou article a" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Crea un nou tauler" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Crea un grup nou" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Crea una nova plantilla per a la cua %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Crea un nou usuari" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Crea una cua" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Crea una plantilla" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Crea un tiquet" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Crea un article" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Crea un article a la classe..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Crea un article en aquesta classe" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Crea taulers de grup" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Crea nous tiquets basats en la plantilla d'aquest script" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Crea taulers personalitzats" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Crea taulers de sistema" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Crea tiquet" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Crea tiquets" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Crea, modifica i esborra entrades a les Llistes de control d'accés" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Crea, modifica i esborra camps personalitzats" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Crea, modifica i esborra valors de camps personalitzats" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Crea, modifica i esborra cues" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Crea, modifica i esborra cerques desades" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Crea, modifica i esborra usuaris" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Creat" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Creat per" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Camp personalitzat %1 creat" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Creat per" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Cerca %1 creada" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Autor" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Criptografia" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Enllaços actuals" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Cerca actual" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Membres actuals" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Cerca actual" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Observadors actuals" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Camps personalitzats" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Camps personalitzats per a %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Camps personalitzats per a la cua %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Codi de preparació de l'acció personalitzada" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Condició personalitzada" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "El camp personalitzat #%1 no s'aplica a aquest objecte" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Camp personalitzat %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "El camp personalitzat %1 no s'aplica a aquest objecte" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "El camp personalitzat %1 té un valor." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "El camp personalitzat %1 no té cap valor." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "No s'ha trobat el camp personalitzat %1" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "No s'ha trobat el valor de camp personalitzat %1 per al camp personalitzat %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "No s'ha pogut esborrar el valor de camp personalitzat" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "S'ha esborrat el valor de camp personalitzat" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Personalitza" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Personalització Bàsica" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Personalitza les adreces de correu electrònic" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Configuració de correu electrònic" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Personalitza l'aparença del RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Contrasenya DBA" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Nom d'usuari DBA" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Diàriament" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Resum diari" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Tauler" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "No s'ha pogut crear el tauler: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "No s'ha pogut actualitzar el tauler: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Tauler actualitzat" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Taulers" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Host de la base de dades" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nom de la base de dades" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Contrasenya de la base de dades per a RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Port de la base de dades" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tipus de base de dades" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Usuari de la base de dades per a RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Format de data" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Des" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Desxifra" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Cua per defecte" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Per defecte: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Per defecte: %1/%2 ha canviat de %3 a %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Esborra" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Esborra la plantilla" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Error a l'esborrar: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Esborra taulers de grup" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "L'operació d'esborrat ha estat desactivada per la configuració del cicle de vida" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Esborra taulers personalitzats" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Esborra taulers de sistema" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Esborra els tiquets" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Esborra els valors" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "S'ha esborrat %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "S'han esborrat les consultes" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "S'ha esborrat la cerca desada" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "S'ha esborrat la cerca %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Esborrar aquest objecte trencarà la integritat referencial" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "A l'esborrar aquest objecte es violarà l'integritat referencial" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Denega" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "En depenen" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Dependència per %1 afegida" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Dependència per %1 esborrada" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Dependència de %1 afegida" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Dependència de %1 esborrada" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Depèn de" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Descriu el problema a sota" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Descripció" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Informació detallada sobre la teva instal·lació de RT" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Detalls" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Direcció" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Deshabilitat" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Visualitza" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Mostra la llista de control d'accés" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Mostra article %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Mostra columnes" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Distribuït sota la %1versió 2 de la GNU GPL%2" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Fes tot el possible" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Nom de domini" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "No incloguis http://, només alguna cosa com ara 'localhost' o 'rt.exemple.cat'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "No refresquis la pàgina principal" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "No refresquis els resultats de la cerca" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "No refresquis aquesta pàgina" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "No confiïs mai en aquesta clau" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Descarrega" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Descarrega fitxer de bolcat (dump)" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Desplegable" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Venciment" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Actualitza fàcilment els teus tiquets oberts" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Visualitza fàcilment els teus recordatoris" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Edita" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Edita els camps personalitzats" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Edita els camps personalitzats per a %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Edita els camps personalitzats per a tots els grups" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Edita els camps personalitzats per a totes les cues" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Edita els camps personalitzats per a tots els usuaris" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Edita els camps personalitzats pels articles de totes les classes" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Edita els camps personalitzats per als tiquets de totes les cues" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Edita els enllaços" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Edita la consulta" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Edita la cerca" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Edita la jerarquia de temes global" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Edita les plantilles de sistema" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Edita la jerarquia de temes per a %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Editant el camp personalitzat %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Editant els membres del grup %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "S'han d'especificar la base o el destinatari" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "O no tens permís per veure la la cerca desada %1 o bé l'identificador és incorrecte" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "Correu electrònic" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Adreça de correu electrònic" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Resum per correu electrònic" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "L'adreça de correu electrònic ja està en ús" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Enviament per correu electrònic" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Plantilla de correu electrònic per a notificacions de resum periòdiques" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Habilitat" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Habilitat (al desactivar aquesta casella es deshabilitarà aquesta classe)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Habilitat (al desactivar aquesta casella es deshabilitarà aquest camp personalitzat)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Habilitat (al desactivar aquesta casella es deshabilitarà aquest grup)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "habilitat (Al desmarcar aquesta casella es deshabilita aquesta cua)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Classes habilitades" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Cues habilitades" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Cues habilitades que coincideixen amb el criteri de cerca" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Estat habilitat %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Xifra" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Xifra per defecte" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Xifra/Desxifra" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Xifra/Desxifra transacció #%1 del tiquet #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Introdueix articles, tiquets o altres URLs relacionades amb aquest article." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Introdueix múltiples rangs d'adreces IP" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Introdueix múltiples adreces IP" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Introdueix múltiples valors" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Introdueix múltiples valors amb autocompletat" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Introdueix objectes o URIs als quals enllaçar els objectes. Separa múltiples estrades amb espais." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Introdueix una adreça IP" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Introdueix un rang d'adreces IP" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Introdueix un valor" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Introdueix un valor amb autocompletat" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Introdueix les cues o URIs a on enllaçar les cues. Separa múltiples entrades amb espais." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Introdueix els tiquets o URIs a on enllaçar els tiquets. Separa múltiples entrades amb espais." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Introdueix el temps en hores per defecte" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Introdueix fins a %1 rangs d'adreces IP" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Introdueix fins a %1 adreces IP" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Introdueix fins a %1 valors" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Introdueix fins a %1 valors amb autocompletat" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "Introduint %1, %2, %3 o %4 es limiten els resultats als tiquets amb un dels respectius tipus d'estat. Qualsevol nom d'estat individual limita els resultats només als estats anomenats." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "S'ha produït un error" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Error al propietari de RT: clau pública" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Error: No s'ha trobat el tauler" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Error: Dades GnuPG incorrectes" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Error: No es pot canviar el nivell de privacitat d'una cerca existent" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Error: no s'ha pogut carregar la cerca desada %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Error: no hi ha clau privada" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Error: clau pública" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Error: cerca %1 no actualitzada: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Escalar tiquets" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Aproximat" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Tothom" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Exemple:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Venç" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Autenticació externa habilitada" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Informació addicional" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Extreu article" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Extreu etiqueta de l'assumpte" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Extreu un nou article del tiquet #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Extreu un article del tiquet #%1 per a la classe %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Extreu etiquetes de l'assumpte de la transacció i afegeix-les a l'assumpte del tiquet." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Error al connectar a la base de dades: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Error al crear %1 atribut" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Error al buscar el grup d'usuaris de sistema 'Privilegiat'" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Error al buscar el grup d'usuaris de sistema 'No Privilegiat'" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Error al carregar %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Error al carregar %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Error al carregar el mòdul %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Error al carregar l'objecte per a %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Error al carregar la plantilla" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "No s'ha pogut carregat el tiquet %1" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Error a l'interpretar la plantilla" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Camp" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Origen dels valors del camp:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Nom de fitxer" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Omple els arguments" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Omple les caixes amb color utilitzant" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Omple en múltiples àrees de text" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Omple en múltiples àrees de wikitext" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Omple en una àrea de text" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Omple en una àrea de wikitext" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Omple aquest camp amb una URL." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Omple fins a %1 àrees de text" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Omple fins a %1 àrees de wikitext" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Prioritat Final" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Troba tots els usuaris pel quals" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Troba grups pels quals" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Troba gent pels quals" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Troba tiquets" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Empremta digital" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Finalitza" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Primer" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "Per a obtenir la màxima potència en les cerques de RT, si us plau visita la %1interfície de construcció de cerques%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Força el canvi" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Reenvia" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Reenvia el missatge" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Reenvia el missatge i torna" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Reassigna el tiquet" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Reenvia els missatges fora de RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Reassigna el tiquet #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Reassigna la transacció #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Tiquet transferit a %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Trobat %quant(%1,tiquet)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Objete trobat" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Freqüència" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Div" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Divendres" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "De" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD està desactivat o no està instal·lat. Pots carregar una imatge, però no obtindràs suggeriments automàtics de color." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Permisos generals" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Com començar" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Assignat a %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Atributs globals" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Temes globals" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Configuració global de camps personalitzats" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Portlet global %1 desat." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Vés" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Vés al grup" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Vés a l'usuari" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Vés!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Vés al tiquet" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Vés al tiquet" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Gràfic" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Propietats del gràfic" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Els diagrames gràfics no estan disponibles." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Grup" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Permisos del grup" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "El grup ja té un membre: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "No s'ha pogut crear el grup: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "S'ha creat el grup" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "S'ha deshabilitat el grup" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "S'ha habilitat el grup" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "El grup no té aquest membre" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "El nom de grup '%1' ja s'està utilitzant" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "No s'ha trobat el grup" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grups" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Els grups no poden ser membres dels seus propis membres" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Grups que coincideixen amb el criteri de cerca" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Grups als que pertany l'usuari" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Capçalera d'un tiquet reassignat" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Capçalera d'un missatge reenviat" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Hola!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Ajuda'ns a establir alguns valors per defecte útils per a RT" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Amaga tot el text citat" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Amaga el text citat" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historial" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Historial de l'article #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Historial del grup %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Historial de la cua %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Historial de l'usuari %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Telèfon de casa" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Interval de refresc de la pàgina d'inici" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Pàgina d'inici" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Hora" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "Cada hora" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Hores" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Tinc %quant(%1,formigonera,formigoneres)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "Vull restablir el meu token de seguretat" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identitat" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Si una aprobació es rebutja, rebutjar la original i esborrar les aprobacions pendents" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "Si això no és el que esperaves, surt d'aquesta pàgina sense iniciar sessió." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Si aquesta eina era setgid, un usuari local hostil podria utilitzar-la per a obtenir accés administratiu a RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Si ja tens un servidor i base de dades funcional de RT, hauries d'aprofitar aquesta oportunitat per comprovar que el servidor de base de dades funciona i que el servidor RT s'hi pot connectar. Un cop fet això, para i torna a engegar el servidor RT." #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "Si realment vols visitar %1 i %2, llavors %3fes clic aquí per a continuar%4." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Si has canviat el port pel qual treballa RT, necessitaràs reiniciar el servei per poder iniciar sessió." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Si has actualitzat algun paràmeter de més amunt, assegura't de" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Si la teva base de dades preferida no apareix al desplegable de sota, vol dir que RT no pot trobar el driver de base de dades corresponent instal·lat localment. Pots solucionar-ho utilitzant %1 per a descarregar i instal·lar DBD::MySQL, DBD::Oracle o DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Valor il·legal per a %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Camp immutable" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Tiquets inactius" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Inclou article:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Inclou les classes deshabilitades al llistat." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Inclou els camps personalitzats deshabilitatats al llistat." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Inclou els grups deshabilitats al llistat." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Inclou les consultes deshabilitades al llistat." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Inclou els usuaris deshabilitats a la cerca." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Inclou pàgina" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Inclou subtemes" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Missatges individuals" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informa al propietari de RT que el(s) usuari(s) tenen problemes amb les claus públiques" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informa a l'usuari que el tauler al que s'havia subscrit no existeix" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informa a l'usuari que el missatge que ha enviat té dades GnuPG no vàlides" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informa a l'usuari que té problemes amb la clau pública i no s'ha pogut rebre el contingut xifrat" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Informa a l'usuari que se li ha restablert la contrasenya" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informa a l'usuari que hem rebut un correu xifrat i no disposem de claus privades per desxifrar-lo" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Prioritat inicial" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Inicialitza la base de dades" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Error d'entrada" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "L'entrada ha de coincidir amb %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Error intern: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Error intern: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "%1 invàlid" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Argument %1 invàlid" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Invàlid %1: '%2' no és una adreça de correu vàlida" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Invàlid %1: s'espera un número" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Classe invàlida" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Orígen de valors de camps personalitzats invàlid" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Cua invàlida, impossible aplicar-hi la classe: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "Tipus de presentació invàlid" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Tipus de presentació invàlid pel camp personalitzat del tipus %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Dades no vàlides" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Clave %1 invàlida per a l'adreça '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Objecte no vàlid" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Patró no vàlid: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Cua no vàlida" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Permís no vàlid" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Permís no vàlid. No es pot normalitzar el permís '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Sintaxis de l'adreça de correu electrònic no vàlida" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Valor no vàlid per a %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Valor no vàlid per al camp personalitzat" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "No està xifrat" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "És increiblement importante que els usuaris sense privilegis no puguin executar aquesta eina" #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "És recomanable crear un usuari unix sense privilegis que pertanyi al grup correcte i que tingui accés a executar aquesta eina." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Té diversos arguments:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Cursiva" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Gen" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Uneix-te o abandona el grup" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Deixa 'localhost' si no n'estas segur. Deixa en blanc per a connectar a nivell local per socket" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "Cerca basada en paraules clau i intuició" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Idioma" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Idioma" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Gran" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Últim" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Últim contacte" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Últim contactat" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Darrera actualització" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Darrera actualització per" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Darrera actualització" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Darrera actualització per" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "LastUpdateRelative" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Deixa en blanc per per utilitzar el valor per defecte per a la teva base de dades" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Deixa en blanc per per utilitzar l'usuari DBA per defecte per a la teva base de dades" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Esquerra" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Llegendes" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Longitut en caràcters; Utilitza '0 'per mostrar tots els missatges en línia, independentment de la longitut de" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Permet a aquest usuari accedir a RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Permet la concessió de permisos a aquest usuari" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Som-hi!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Cicle de vida" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Enllaç" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Ja existeix l'enllaç" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "No s'ha trobat l'enllaç" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Enllaça el tiquet #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Enllaça els valors a" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Enllaçat" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Enllaços" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Llista" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Carrega" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Carrega una cerca desada" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Carrega una cerca desada" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Carrega una cerca desada:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Carregat %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "S'ha carregat la cerca desada original \"%1\"" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Mòduls perl carregats" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "S'ha carregat la cerca desada \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Carregant..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "UbicacioÌ" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Sessió iniciada" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Sessió iniciada com a %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Desconnectat" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Inicia sessió" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Tanca la sessió" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "No coincideixen els tipus de cerca" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Correu" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Tipus principal d'enllaços" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Fes-ne propietari a" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Estableix estat" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Estableix data de venciment" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Estableix data d'inici" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Estableix data d'inici" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Estableix data esmentada" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Estableix prioritat" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Estableix cua" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Estableix assumpte" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Gestionar camps personalitzats i valors de camp personalitzats" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Administra grups i els seus membres" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Administra propietats i configuració que aplica a totes les cues" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Administra cues i les seves propietats" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Administra gràfics desats" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Administra usuaris i contrasenyes" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "S'han marcat tots els missatges com a llegits" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Ordre de cerca de plantilla Mason" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Longitud màxima del missatge" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Mai" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Jo" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Membre" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "S'ha afegit el membre %1" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "S'ha esborrat el membre %1" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Membre afegit: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Membre esborrat" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Membre no esborrat" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Membres" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "S'ha afegit la pertinença a %1" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "S'ha esborrat la pertinença a %1" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Pertinences" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Pertinences de l'usuari %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "S'ha fusionat amb èxit" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Error al fusionar. No s'ha pogut establir el EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Fusiona dins de" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "S'ha fusionat dins de %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Missatge" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "No es mostra el cos del missatge perquè és massa gran." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "No es mostra el cos del missatge perquè el sol·licitant va demanar no incloure'l." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "No es mostra el cos del missatge perquè no és text pla." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Alçada del quadre de missatge" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Amplada del quadre de missatge" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "No s'ha pogut gravar el missatge" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Missatge per l'usuari" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Missatge gravat" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Longitud mínima de la contrasenya" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuts" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Varis" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Falta una clau primària?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mòbil" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Telèfon mòbil" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Modifica" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Modifica els membres" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Modifica les plantilles de Scrip" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Modifica scrips" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Modifica un camp personalitzat per a la cua %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Modifica i crea classes" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Modifica i crea camps personalitzats per a articles" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Modifica article #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Modifica objectes associats per a %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Modifica valors de camp personalitzats" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Modifica dates per al tiquet #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Modifica els temes d'articles globals" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Modifica els camps personalitzats globals" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Modifica els permisos de grup globals" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Modifica els temes globals" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Modifica els permisos d'usuari globals" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Modifica els taulers de grup" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Modifica la pla de pertinença de grup" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Modifica les metadades del grup o esborra el grup" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Modifica els permisos de grup per la classe %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Modifica els permisos de grup per al camp personalitzat %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Modifica els permisos de grup per al grup %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Modifica els permisos de grup per la cua %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Modifica les metadades i els camps personalitzats per a aquesta classe" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Modifica el propi compte de RT" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Modifica les persones relacionades amb el tiquet #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Modifica els taulers personalitzats" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Modifica els observadors de la cua" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Modifica els scrips per la cua %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Modifica els scrips que s'apliquen a totes les cues" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Modifica els taulers de sistema" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Modifica la plantilla %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Modifica la plantilla%1 per a la cua %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Modifica les plantilles que s'apliquen a totes les cues" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Modifica la classe %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Modifica el contingut del tauler %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Modifica el tauler %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Modifica la vista per defecte de \"RT d'un cop d'ull\"" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Modifica el grup %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Modifica la subscripció al tauler %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Modifica l'usuari %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Modifica aquesta cerca..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Modifica el tiquet # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Modifica el tiquet #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Modifica els tiquets" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Modifica el tema per a %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Modifica la jerarquia de temes associada a aquesta classe" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Modifica els temes per als articles d'aquesta classe" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Modifica els permisos d'usuari per la classe %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Modifica els permisos d'usuari pel camp personalitzat %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Modifica els permisos d'usuari pel grup %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Modifica els permisos d'usuari per la cua %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Modifica qui rep correus pel tiquet #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Mòdul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Dll" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Dilluns" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "Mensualment" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Més informació dels sol·licitants" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Mou aquí" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Múltiple" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "S'ha d'especificar un nom" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Els meus %1 tiquets" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Les meves aprovacions" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "El meu dia" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Els meus recordatoris" #: etc/initialdata:890 msgid "My Tickets" msgstr "Els meus tiquets" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Les meves aprovacions" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Els meus taulers" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Els meus recordatoris" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Les meves cerques" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "LesMevesCuesAdministratives" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "ElsMeusRecordatoris" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "LesMevesCuesDeSuport" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Nom" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Nom i adreça de correu electrònic" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Nom ja utilitzat" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Nom:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Mai" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Nou" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Nou article" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Nou tauler" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nous enllaços" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Nova aprovació pendent" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Nova cerca" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nous missatges" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Contrasenya nova" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "S'ha enviat la notificació de nova contrasenya" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Nou recordatori:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nou tiquet" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "El nou tiquet no existeix" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Els tiquets nous no poden tenir l'estat '%1' en aquesta cua." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nous observadors" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Següent" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Sobrenom" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Sobrenom" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "%1 no carregat" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Cap article coincideix amb %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "No s'ha definit la classe" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "No s'ha trobat cap classe que coincideixi amb el criteri de cerca." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Cap camp personalitzat" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Cap camp personalitzat definit" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Cap grup definit" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Cap consulta" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Cap cua definida" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "No s'ha trobat l'usuari de RT. Si us plau consulta amb l'administrador de RT." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Sense assumpte" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Cap plantilla" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Cap acció" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Cap columna especificada" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "No hi ha cap comentari sobre aquest usuari" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Cap descripció per a %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Cap grup especificat" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "No s'ha trobat cap grup que coincideix amb el criteri de cerca." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "No existeix cap clau adecuada per al xifratge" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "No hi ha cap missatge adjunt" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "No s'ha introduït cap nom" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "No és necessari xifrar" #: lib/RT/User.pm:970 msgid "No password set" msgstr "No s'ha establert contrasenya" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "No tens permís per crear cues" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "No tens permís per crear tiquets a la cua '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "No tens permís per visualitzar aquest tiquet" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "No tens permís per desar cerques a tot el sistema" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "No tens permís per canviar la configuració" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "No tens permís per visualitzar l'article" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "No tens permís per visualitzar l'actualització del tiquet" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "No s'ha sel·leccionat cap element" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Sense clau privada" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "No s'ha trobat cap cua que coincideixi amb els criteris de cerca." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "No s'han definit permisos" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "No s'han trobat permisos" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "No hi ha cap cerca sobre la qual treballar." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Sense assumpte" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "No existeix la clau o no és vàlida per firmar" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "No s'han trobat tiquets." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "No s'ha especificat el tipus de transacció" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Sense claus utilitzables." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "No s'han trobat usuaris que coincideixin amb els criteris de cerca." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "No s'ha enviat cap valor a _Set!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Ningú" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Cap" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Camp inexistent?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "No s'ha trobat" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "No has iniciat sessió" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "No establert" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "No estas utilitzant un navegador mòbil?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "No s'ha pogut enviar la notificació" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Notificar AdminCcs" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Notificar AdminCcs com a comentari" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Notificar Ccs" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Notifica Ccs com a comentari" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Notifica altres destinataris" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Notifica altres destinataris com a comentari" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Notifica al propietari" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Notifica al propietari com a comentari" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Notifica al propietari del tiquet al ser rebutjat" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Notifica al propietari del tiquet al ser aprovat i a punt per treballar-hi" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Notifica al propietari del tiquet al ser aprovat per algun o tots els aprovadors." #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Notifica al propietari, sol·licitants, Ccs i AdminCcs" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Notifica al propietari, sol·licitants, Ccs i AdminCcs com a comentari" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Notifica als propietaris i a AdminCcs de que tenen elements esperant la seva aprovació" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Notifica al sol·licitant si el seu tiquet s'ha aprovat per tots els aprovadors" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Notifica al sol·licitant si el seu tiquet s'ha aprovat per algun aprovador" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Notifica als sol·licitants" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Notifica als sol·licitants i Ccs" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Notifica als sol·licitants i Ccs com a comentari" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Notifica'm sobre els missatges no llegits" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "O" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objecte" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "No s'ha pogut crear l'objecte" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "No s'ha pogut esborrar l'objecte" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "S'ha creat l'objecte" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "S'ha esborrat l'objecte" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Tipus d'objetes no compatibles" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "La llista d'objetes està buida" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "Sobre %1, %2 ha escrit:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Al tancar" #: etc/initialdata:170 msgid "On Comment" msgstr "Al comentar" #: etc/initialdata:142 msgid "On Correspond" msgstr "En cas de correspondència" #: etc/initialdata:131 msgid "On Create" msgstr "Al crear" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "Al reassignar" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Al reassignar un tiquet" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Al reassignar una transacció" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Al canviar de propietari" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Al canviar de prioritat" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Al canviar de cua" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Al rebutjar" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Al reobrir" #: etc/initialdata:205 msgid "On Resolve" msgstr "Al resoldre" #: etc/initialdata:176 msgid "On Status Change" msgstr "Al canviar l'estat" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Al fer la transacció" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Bcc només aquest cop" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Cc només aquest cop" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Només per introduïr, no per visualitzar" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Mostra només les aprovacions per a sol·licituds creades després del %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Mostra només les aprovacions per a sol·licituds creades abans del %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Mostra només els camps personalitzats per a:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Obre'l" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Tiquets oberts" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Obre l'URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Obre els tiquets" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Obrir tiquets al respondre" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Opció" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Opcions" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Ordena per" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organització" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Tiquet orígen: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Correu sortint sobre un comentari registrat" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Correu sortint registrat" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Correu sortint" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Visió general" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Fer-se propietari d'un tiquet" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Propietari" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "El propietari '%1' no té permisos per a assignar-se aquest tiquet" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "S'ha canviat el propietari de %1 a %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "S'ha canviat forçosament el propietari de %1 a %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Pàgina" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Pàgina 1 de 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "No s'ha trobat la pàgina" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Cercapersones" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Telèfon del cercapersones" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Pares" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Contrasenya" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "S'ha canviat la contrasenya" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "No s'ha establert la contrasenya." #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "La contraseña necessita tenir com a mínim %1 caràcters de longitud" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "No es mostra la contrasenya" #: lib/RT/User.pm:980 msgid "Password set" msgstr "S'ha establert contrasenya" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Contrasenya: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Contrasenya: Permís denegat" #: etc/initialdata:714 msgid "PasswordChange" msgstr "" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Les contrasenyes no coincideixen." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Ruta del sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Persones" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Persones relacionades a la cua %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Realitza una acció definida per l'usuari" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Configuració de Perl" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Ordre de cerca de la libreria Perl" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Esborrar permanentment tota la informació de RT" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "S'ha denegat el permís" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "S'ha denegat el permís" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Números de telèfon" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Si us plau, comprova la URL i torna-ho a intentar." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Si us plau introdueix la teva contrasenya actual correctament." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Si us plau introdueix la teva contrasenya actual." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "Possible atac de falsificació de petició de llocs creuats (CSRF)" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Possibles cerques ocultes" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "No s'ha trobat la cerca predefinida %1" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Preferències" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Preferències %1 per a l'usuari %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "S'han desat les preferències per a %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "S'han desat les preferències per a l'usuari %1." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "S'han desat les preferències." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Clau preferida: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Clau preferida" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Preparació interrompuda" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Previ" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "No s'ha trobat l'element %1." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Imprimir els missatges resumits resultants a STDOUT, no enviar-los per correu. No marcar-los com a enviats" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Imprimeix aquest missatge" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioritat" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Privacitat" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privacitat:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Clau privada" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Privilegiat" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Estat privilegiat: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Usuaris privilegiats" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Processant sense transacció, algunes condicions i accions podríen fallar. Considera utilitzar l'argument --transaction" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Grup d'usuaris de sistema d'us intern" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "La clau pública '0x%1' és necessària per a verificar la signatura" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Consultes" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Consulta" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Constructor de consultes" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Cua" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "No s'ha trobat la cua %1" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Nom de la cua" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Ja existeix la cua" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "No s'ha pogut crear la cua" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "No s'ha pogut carregar la cua" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "S'ha creat la cua" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Id de cua" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "No s'ha trobat la cua" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Clau de la cua" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Cues" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Cues que gestiono" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Cues per les que soc AdminCc" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Cerca ràpida" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Creació ràpida de tiquet" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "CreaRapid" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Administració del RT" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "Correu de l'administrador del RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "Configuració del RT" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "Error del RT" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Tamany del RT" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT d'un cop d'ull" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "RT d'un cop d'ull per a l'usuari %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT pot comunicar-se amb els seus usuaris sobre nous tiquets o noves respostes pels tiquets. Digues on trobar el sendmail (o un executable compatible amb sendmail, com el que proporciona postfix). El RT també necessita saber a qui notificar quan algú envia un correu invàlid. Aquesta no pot ser una adreça que retroalimenti el RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "El RT pot incloure contingut d'un altre servei web quan es mostra aquest camp personalitzat." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "El RT pot convertir aquests valors de camp personalitzat en enllaços a un altre servei." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "Variables de nucli de RT" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT per a %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "El RT ha detectat una possible %1falsificació de petició de llocs creuats (CSRF)%2 per a aquesta petició, per %3. Un atacant maliciós podria estar tractant de %1%4%2 en nom teu. Si no has iniciat aquesta petició has d'alertar al teu equip de seguretat." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "El RT és un sistema de seguiment d'incidències d'ús empresarial, dissenyat per a permetre gestionar de forma intel·ligent i eficient tasques, incidències, peticions, defectes o qualsevol altra cosa similar com ara una \"acció a prendre\"" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "El RT és utilitzat per empreses de la llista Fortune 100, negocis personals, agències governamentals, institucions educatives, hospitals, ONGs, biblioteques, projectes de codi obert i tot tipus d'organitzacions dels set continents (Si, inclús a l'Antàrtida)" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "El RT es connectarà a la base de dades amb aquest usuari. Serà creat per a tu." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "El RT crearà un usuari anomenat \"root\" i establirà això com a contrasenya" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "El RT substituirà %1 i %2 amb l'id del registre i el valor del camp personalitzat, respectivament." #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "El RT utilitzarà aquesta cadena de text per a identificar de forma única la teva instal·lació, i buscarà a l'assumpte dels correus per decidir a quin tiquet correspon cada missatge. Et recomanem que estableixis el valor al del teu domini d'internet (per exemple: exemple.cat)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "El RT funciona amb un gran número de bases de dades diferents. MySQL, PostgreSQL, Oracle y SQLite estan suportades." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "La opció RTDireccionRegexp de la configuració no coincideix amb %1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Tornar a obrir" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Nom real" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Destinataris" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Desa tots els canvis" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Membre recursiu" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Fa referència a" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "S'ha afegit una referència des de %1" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "S'ha esborrat la referència des de %1" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "S'ha afegit la referència a %1" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "S'ha esborrat la referència a %1" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Li fan referència" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Fa referència a" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Refresca" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Refresca aquesta pàgina cada %1 minuts." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "RefrescaPaginaInici" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Rebutja" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Recorda la cua per defecte" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Recordatori" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "S'ha afegit el recordatori '%1'" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "S'ha completat el recordatori '%1'" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "S'ha reobert el recordatori '%1'" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Recordatoris" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Recordatoris per al tiquet #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Esborra el AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Esborra el marcador" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Esborra el Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Esborra el sol·licitant" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "Tipus de visualització" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Substitueix els desplegables del propietari per caselles de text" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Respon" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Adreça de resposta" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Respon als sol·licitants" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Respon als tiquets" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Sol·licitant" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Sol·licitants" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "No s'ha especificat el paràmetre requerit '%1'" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Restaura" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Restaura l'RT en un instant" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Restaura el token d'autenticació secret" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Restaura als valors per defecte" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Residència" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Resol" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Resol el tiquet #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "S'ha resolt" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Respon" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultats" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Torna al tiquet" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Torna a introduir la contrasenya" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Desfés" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Permís carregat" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "No s'ha pogut revocar el permís" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Permís no carregat" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "No s'han pogut assignar els permisos a %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Permisos per a administradors" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Permisos per al personal" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Files" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Files per caixa" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Files per pàgina" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "Consultes SQL" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite és una base de dades que no necessita un servidor ni configuració especial. Els autors de RT la recomanen per a proves, demostracions i fase de disseny, però no és suficient per a un servidor RT de producció amb un alt volum de dades." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Dis" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Dissabte" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Desa" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Desa els canvis" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Desa les preferències" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Desa com a nou" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Desa nou" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Desa aquesta cerca" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "S'ha desat %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Cerca desada" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Cerques desades" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Gràfics desats" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Cerques desades" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "CerquesDesades" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "S'ha creat el scrip" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Scrips i destinataris" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Cerca" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "S'ha actualitzat la cerca %1" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Cerca articles" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Preferències de cerca" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Cerca articles que coincidèixin" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Cerca aprovacions" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Cerca articles" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Cerca tiquets" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Opcions de cerca" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Resultats de la cerca" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Interval de refresc dels resultats de cerca" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "Cercar el text complet de cada tiquet pot trigar molt temps, però si necessites fer-ho, pots buscar qualsevol paraula a tot l'historial del tiquet escrivint %1paraula." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Token d'autenticació secret" #: bin/rt-crontool:352 msgid "Security:" msgstr "Seguretat:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Veure també:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Veure els articles d'aquesta classe" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Veure canvis dels articles d'aquesta classe" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Veure si aquesta classe existeix" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Escull" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Escull els camps personalitzats per als articles de totes les classes" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Escull el tipus de base de dades" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Escull una classe" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Escull un camp personalitzat" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Escull un color per a la secció" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Escull un grup" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Escull una cua" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Escull una cua per al teu nou tiquet" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Escull una secció" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Escull un usuari" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Escull un article de %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Escull un article a incloure" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Escull un altre idioma" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Casella de selecció" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Escull els camps personalitzats per a totes les cues" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Escull els camps personalitzats per a tots els grups" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Escull els camps personalitzats per a tots els usuaris" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Escull els camps personalitzats per als tiquets de totes les cues" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Escull els camps personalitzats per les transaccions en tiquets de totes les cues" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Escull data" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Escull data i hora" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Escull múltiples dates" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "Escull múltiples dates i hores" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Escull múltiples valors" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Escull un valor" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Escull les cues que es mostraran a la pàgina \"RT d'un cop d'ull\"" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Escull els temes per a aquest article" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Escull fins a %1 dates" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "Escull fins a %1 dates i hores" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Escull fins a %1 valors" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Camps personalitzats seleccionats" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Cues seleccionades" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "La clau seleccionada o no és de confiança o bé ja no existeix." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Objectes seleccionats" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Seleccions modificades. Si us plau desa el canvis" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Envia un correu al propietari i a tots els observadors" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Envia un correu al propietari i a tots els observadors com a comentari" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Envia un correu als sol·licitants i Ccs" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Envia un correu als sol·licitants i Ccs com a comentari" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Envia un missatge als sol·licitants" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Envia un correu als Ccs i Bccs llistats explicitament" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Envia un correu als Ccs" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Envia un correu als Ccs com a comentari" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Envia un correu als AdminCcs" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Envia un correu als AdminCcs com a comentari" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Envia un correu al propietari" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Set" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Separa múltiples entrades amb espais." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "Defineix la clau privada" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Configuració" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Noms d'usuari curts" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Vols que l'RT t'enviï un correu per cada modificació que facis a un tiquet?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Mostra" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Mostra la pestanya d'aprovacions" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Mostra columnes" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Mostra els resultats" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Mostra les propietats del tiquet de nivell %1" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Mostra tot el text citat" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Mostra les sol·licituds aprovades" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Mostra també" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Mostra capçaleres curtes" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Mostra sol·licituds denegades" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Mostra les capçaleres completes" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Mostra les plantilles globals" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Mostra les descripcions de l'enllaç" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "No mostris els tiquets pel sol·licitant" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Mostra primer l'historial més antic" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Mostra les sol·licituds pendents" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Mostra el text citat" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Mostra les sol·licituds pendents d'altres aprovacions" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Mostra els 10 tiquets actius del sol·licitant amb més prioritat" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Mostra els 10 tiquets inactius del sol·licitant amb més prioritat" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Mostra els 10 tiquets del sol·licitant amb més prioritat" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Mostra l'historial del tiquet" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Trituradora" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "La trituradora necessita un directori on escriure els bolcats. Si us plau assegura't que el directori %1 existeix i que el teu servidor web hi pot escriure." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Barra lateral" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Signa" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "Signa tots els correus auto-generats. %1Atenció%2: Activar aquesta opció canvia la signatura de proporcionar %3autenticació%4 a proporcionar %3integritat%4." #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Signa per defecte" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Registrar-se com a sol·licitant d'un tiquet o Cc del tiquet o la cua" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Registrar-se com a AdminCc del tiquet o la cua" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "Signa%1%2 utilitzant %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Signatura" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Senzill" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Cerca simple" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Únic" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Nom del lloc" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Mida" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Salta Menú" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Saltant l'usuari deshabilitat" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Petita" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Alguns navegadors només podran carregar contingut del mateix domini que el teu servidor RT." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Alguna cosa ha fallat. Contacta amb l'administrador del sistema." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Ordena" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Ordenació" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Orígen" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Especifica si s'ha d'executar diàriament o setmanal." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Full de càlcul" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Fase" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Casella" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Comença el terme de cerca amb el nom d'un camp suportat seguit per dos punts, com a %1 i %2, per a indicar explícitament el tipus de cerca." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Iniciat" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Comença" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Estat" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "Estat" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "L'estat '%1' no és un estat vàlid per als tiquets d'aquesta cua." #: etc/initialdata:449 msgid "Status Change" msgstr "Canvia l'estat" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "S'ha canviat l'estat de %1 a %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Canvis d'estat" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Robar" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Robar tiquets" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Pas %1 de %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Robat a %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Estil" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Assumpte" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Etiqueta de l'assumpte" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "S'ha canviat l'assumpte a %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Envia" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Subscriu-m'hi" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Subscriu-me al tauler %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Subscriu-me als taulers" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Subscrit al tauler %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Subscripció" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "No s'ha pogut crear la subscripció: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Dades desxifrades amb èxit" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Dades xifrades amb èxit" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Resum" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Diu" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Diumenge" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Suspesa" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Configuració del sistema" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Valor predeterminat del sistema" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Error del sistema" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Error del sistema: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Eines del sistema" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Error del sistema" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Error del sistema. Permís denegat." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup d'us intern" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Assignar-me" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Assignar-me els tiquets" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "S'ha assignat" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Digues quelcom sobre com localitzar la base de dades que utilitzarà l'RT" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Plantilla" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Plantilla #%1 esborrada" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "No s'ha trobat la plantilla '%1'" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "La plantilla compila" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "La plantilla no inclou codi Perl" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "La plantilla està buida" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "La plantilla és un argument obligatori" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Plantilla processada" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Error al processar la plantilla" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "Error al processar la plantilla: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Plantilles" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Plantilles per la cua %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "El fitxer de text no es mostra perquè està deshabilitat a les preferències." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Aquest ja és el valor actual" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Aquest no és un valor correcte per a aquest camp personalitzat" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Aquest tiquet té dependències no resoltes" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Aquest usuari ja és propietari d'aquest tiquet" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "No existeix aquest usuari" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Aquest usuari ja és privilegiat" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Aquest usuari ja és no privilegiat" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Aquest usuari és ara privilegiat" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Aquest usuari és ara no privilegiat" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Aquest usuari pot no ser propietari de tiquets en aquesta cua" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Això no és un identificador numèric" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "El més bàsic" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "El Cc d'un tiquet" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "La classe de l'article identificat per %1 no s'aplica a la cua actual" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "La contrasenya del DBA de la base de dades" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "L'AdminCc d'un tiquet" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "El nom de domini del servidor de base de dades (com ara 'db.exemple.cat')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "La següent comanda buscarà tot els tiquets actius a la cua 'general' i els hi establirà la prioritat a 99 si ja han vençut:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "S'ha eliminat les següents consultes i s'esborraran del tauler un cop s'actualitzi el panell." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Les següents consultes podrien no ser visibles per a tots els usuaris que poden veure aquest tauler." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "S'ha deshabilitat la clau" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "S'ha revocat la clau" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "La clau ha expirat" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "La clau és plenament de confiança" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "La clau és en última instància de confiança" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "S'ha establert el nou valor" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "El propietari d'un tiquet" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "No s'ha trobat la pàgina sol·licitada" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "El sol·licitant d'un tiquet" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "Les preferències que has escollit s'emmagatzemen a %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "El sistema es incapaç de signar els correus sortints. Això normalment indica que la frase de pas (passphrase) no està ben configurada, o que l'agent GPG està aturat. Si us plau, avisa al teu administrador de sistemes immediatament. Les adreces amb problemes son:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Hi ha diverses claus adequades per al xifratge." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Hi ha missatges sense llegir d'aquest tiquet" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Hi hy una confiança marginal en aquesta clau" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "Hi ha més d'un grup amb el nom '%1'. Això pot provocar inconsistències a parts de l'interfície d'administració, pel que es recomana canviar el nom als grups en conflicte." #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Hi ha cap clau adequada per al xifratge." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Hi ha una clau adequada, però no se li ha establert el nivell de confiança." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Aquestes opcions de configuració cobreixen el més essencial per a fer funcionar l'RT. Necessitem saber el nom de la teva instal·lació de RT i el nom del domini al qual s'inclou RT. També hauràs d'establir la contrasenya per a l'usuari administrador per defecte." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Aquest camp personalitzat no pot contenir llistes de valors" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "Aquesta classe no s'aplica a aquest objecte" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "Aquest camp personalitzat no té tipus de presentació" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Aquesta característica només està disponible per a administradors del sistema" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Aquesta característica només està disponible per a administradors del sistema." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "Aquest procés de servidor no ha registrat consultes SQL." #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Aquesta eina permet a l'usuari executar mòduls Perl arbitraris des de RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Sembla que aquesta transacció no té contingut" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "Els %1 tiquets %2 amb més prioritat per a aquest usuari" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Dij" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Dijous" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Tiquet" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Actualització massiva per al tiquet #%1: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Gràfic de relacions del tiquet #%1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Tiquet #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Tiquet %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Tiquet %1 creat a la cua '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Tiquet %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Historial del tiquet # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "S'ha resolt el tiquet" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Cerca tiquets" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Transaccions del tiquet" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Tiquet i transacció" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Redacció del tiquet" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Contingut del tiquet" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Tipus de contingut del tiquet" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "No s'ha pogut crear el tiquet degut a un error intern" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "No s'ha pogut carregar el tiquet" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Visualitza el tiquet" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Metadades del tiquet" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "S'ha canviat l'estat del tiquet" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Actualitza el tiquet" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "Mòdul de cerca TicketSQL" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Tiquets" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Tiquets %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Tiquets %1 per %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Tiquets que tinc assignats" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Tiquets que depenen d'aquesta aprovació:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Temps estimat" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Temps restant" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Temps treballat" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Temps a mostrar" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Zona horària" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Títol" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Per a" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Per a consultes sobre suport, formació, desenvolupaments a mida i llicenciament, si us pla contacta amb %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "Mostra/Amaga %quant(%1,consulta,consultes)" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "Mostra/Amaga bolcat de pila" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Darrera actualització" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Eines" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Nom del tema" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "S'ha afegit la pertinença al tema" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "S'ha esborrat la pertinença al tema" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "No s'ha trobat el tema" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Temes" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "Transacció" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transacció %1 purgada" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transacció creada" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Camps personalitzats de la transacció" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transacció->Crea no ha pogut, ja que no has especificat un tipus d'objecte i ID" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Les transaccions són immutables" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Confia" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Dmt" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Dimarts" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tipus" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Tipus a: abans dels números d'article i t: abans dels números de tiquet." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "S'ha canviat el tipus de '%1' a '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "No s'ha pogut afegir la pertinença al tema" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "No s'ha pogut esborrar la pertinença al tema %1" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "No s'ha pogut determinar el tipus d'objecte o ID" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "No s'ha pogut carregar l'article" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "No s'ha pogut establir UserCSS: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "No s'ha pogut establir UserLogo: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "No s'ha pogut establir l'ID de privacitat: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "No s'ha pogut establir l'objecte o ID de privacitat: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "No s'ha pogut establir l'objecte de privacitat: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Desmarca les caselles per a deshabilitar les notificacions per als destinataris llistats només per a aquesta transacció; el silenciament persistent s'administra a la pàgina Persones." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Desfès la supressió" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Usuari Unix" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Desconegut (no hi ha valor de confiança assignat)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Desconegut (aquest valor és nou al sistema)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Codificació de contingut desconeguda: %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Camp desconegut: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "A no ser que especifiquis un estat en concret, només es buscaran els tiquets amb estats actius (%1)." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Treu el límit" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Sense límit" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Tauler sense nom" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Cerca sense nom" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Tiquets sense propietari" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Tiquets no assignats" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "No privilegiat" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Camps personalitzats no sel·leccionats" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Cues no sel·leccionades" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Objectes no sel·leccionats" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Desassigna la clau privada" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "No assignat" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Actualitza" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Actualitza el gràfic" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Actualitza el gràfic" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Actualitza el tiquet" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Actualitza el tipus" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Actualitza el format i cerca" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Actualitza múltiples tiquets" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Actualització no registrada." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Actualitza el tiquet" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Actualitza el tiquet #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Actualitza el tiquet #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "El tipus d'actualització no era ni una resposta ni un comentari" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Actualitzat" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "S'ha actualitzar la cerca desada \"%1\"" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Puja" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Puja un nou logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Puja múltiples fitxers" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Puja múltiples imatges" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Puja un fitxer" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Puja una imatge" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Puja fins a %1 fitxers" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Puja fins a %1 imatges" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Ús:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "Utilitzar una distribució de dues columnes per als formularis de creació i actualització?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Utilitzar autocompletar per tobar propietaris?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Per defecte (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Utilitza altres eines administratives de RT" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Utilitza el per defecte del sistema (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Utilitza els desplegables per seleccionar quines actualitzacions del tiquet vols extreure en un nou article." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Usuari" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Usuari (creat - expira)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Definit per l'usuari" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Permisos de l'usuari" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "L'usuari ha sol·licitat un tipus d'actualització desconeguda per al camp personalitzat %1 per a l'objecte %2 #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "No s'ha pogut crear l'usuari: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "S'ha creat l'usuari" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "S'ha deshabilitat l'usuari" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "S'ha habilitat l'usuari" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "L'usuari no té adreça de correu electrònic" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "S'ha carregat l'usuari" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Grups definits per l'usuari" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Nom d'usuari" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Format pel nom d'usuari" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Usuaris" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Usuaris que coincideixen amb el criteri de cerca" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Utilitzant la transacció #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Consulta vàlida" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Validació" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Valor" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Valors" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Versió" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Mostra plantilles d'scrips" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Mostra scrips" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Mostra els valors de camp personalitzats" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Mostra els camps personalitzats" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Mostra el detall dels correus sortints i els seus destinataris" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Mostra el grup" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Mostra els taulers de grup" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Mostra els taulers personalitzats" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Mostra la cua" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Mostra les cerques desades" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Mostra els taulers de sistema" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Mostra el comentaris privats del tiquet" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Mostra el resum del tiquet" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "ATENCIÓN: Desant la cerca a nivell de privacitat d'usuari" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Alçada de l'editor WYSIWYG" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "Editor de missatges WYSIWYG" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Atenció! NO està signat!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Observador" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Observadors" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "No ha estat possible connectar a la base de dades com a DBA. Pots clicar a 'Personalització bàsica' per continuar personalitzant l'RT." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Actualment no ho podem presentar com una llista quan es basen les categories en un altre camp personalitzat. Si us plau, utilitza un altre tipus de visualització." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Necessitem conèixer el nom de la base de dades que l'RT utilitzarà i on trobar-la. També necessitem conèixer l'usuari i la contrasenya de l'usuari que utilitzarà l'RT. L'RT pot crear la base de dades i l'usuari per tu, per la qual cosa demanem l'usuari i la contrasenya d'un usuari amb privilegis de DBA. Durant el pas 6 del procés d'instal·lació, utilitzarem aquesta informació per a crear i inicialitzar la base de dades de RT." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Port web" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Dmc" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Dimecres" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Setmanalment" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Resum setmanal" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Benvingut a RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Què he fet avui" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Què és RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Quan RT no pugi gestionar un missatge de correu, on s'hauria de reenviar?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Quan l'RT envia un correu, configura les capçaleres \"De:\" y \"Respondre-A:\" de manera que els usuaris puguin afegir-se a la conversa clicant a Respondre al seu client de correu. Utilitza adreces diferents per a Respostes i Comentaris. Això es pot canviar per a cada una de les cues. Aquestes adreces han d'estar configurades per utilitzar el programa rt-mailgate." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Al crear un tiquet" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Al crear un tiquet d'aprovació, notifica el propietari i l'AdminCc de l'element que espera la seva aprovació" #: etc/initialdata:137 msgid "When anything happens" msgstr "Quan passa qualsevol cosa" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Quan cliques a 'Comprovar la connectivitat amb la base de dades' hi pot haver un cert retard mentre l'RT intenta connectar a la teva base de dades." #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Sempre que es tanca un tiquet" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Sempre que es reassigna un tiquet" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Sempre que es rebutja un tiquet" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Sempre que es reobre un tiquet" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Sempre que es resol un tiquet" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Sempre que es reassigna un tiquet o una transacció" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Sempre que canvia el propietari d'un tiquet" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Sempre que canvia la prioritat d'un tiquet" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Sempre que canvia la cua d'un tiquet" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Sempre que canvia l'estat d'un tiquet" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Sempre que es reassigna una transacció" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Sempre que succeeix una condició definida per l'usuari" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Sempre que entra algun comentari" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Sempre que es rep una resposta" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "On en troba el binari del sendmail." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Buida" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Feina" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Telèfon de la feina" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Treballat" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Si" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Pots editar aquest tauler i la teva subscripció corresponent a l'RT." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Ja ets propietari d'aquest tiquet" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Pots anar al primer missatge sense llegir o anar al primer missatge sense llegir i marcar tots els missatges com a llegits." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "També pots editar directament la cerca predefinida" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Pots introduir el contingut del tiquet a qualsevol camp de text lliure, text o camp de text wiki." #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "No pots establir la contrasenya." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Només pots reassignar tiquets teus o que tenen un propietari" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Només et pots assignar tiquets que no tenen un propietari" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Pots cercar qualsevol paraula a tot l'historial escrivint %1paraula." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "No es pot canviar l'estat de '%1' a '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "No tens permisos de Superusuari." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "S'ha tancat la teva sessió de RT" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "No tens permís per crear tiquets a aquesta cua." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Hauries de poder introduir enllaços a articles de la forma \"a:###\", on ### representa el número d'article." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Has d'introduir una contrasenya d'administrador" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "Has de definir StatementLog a \"true\" per a activar aquesta pàgina d'historial de consulta." #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Seràs redirigit a la pàgina d'inici de sessió. Podràs iniciar sessió amb l'usuari %1 i la contrasenya definida prèviament." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Hauries d'escollir la base de dades amb la que tu o el teu DBA local us sentiu més còmodes." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Estas veient aquesta pantalla degut a que has iniciat un servidor RT sense cap base de dades funcional. El més probable és que sigui el primer cop que inicies l'RT. Si fas clic a \"%1\" a sota, l'RT et guiarà a través de la configuració del servidor RT i de la base de dades." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Ets benvingut a tornar en qualsevol moment." #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "No tens una contrasenya definida." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "El teu sistema suporta suggeriments automàtics de color per a: %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Nom o contrasenya d'usuari incorrectes" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Codi Postal" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Avall]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Amunt]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[cap]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "un camp personalitzat" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "actiu" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "després" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "i abans" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "i no" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "barra" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "abans de" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "cos" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "del final al principi" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "marca aquesta casella per a aplicar aquesta classe globalment a totes les cues." #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "Marca aquesta casella per aplicar aquest camp personalitzat a tots els objectes." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "marca aquesta casella per esborrar aquesta classe globalment i ser capaç d'escollir cues específiques." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "marca aquesta casella per esborrar aquest camp personalitzat de tots els objectes i ser capaç d'escollir objectes específics." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "marca per afegir" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "clica que marcar/desmarcar tots els objectes de cop" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "configuració de nucli" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "crea un tiquet" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "diariament a les %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "eliminat" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "no coincideix" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "descarrega" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "durada" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "el nom està en blanc" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "igual que" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "error: no es pot moure avall" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "error: no es pot moure a l'esquerra" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "error: no es pot moure amunt" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "error: res a esborrar" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "error: res a moure" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "error: res a commutar" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "cada" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "plugin executat amb èxit" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "completa" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "major que" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "grup" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "grup '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "a la classe %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "inactiu" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "inclou %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "índex" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "és" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "no és" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "clau deshabilitada" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "clau expirada" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "clau revocada" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "d'esquerra a dreta" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "menor que" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "coincideix amb" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "profunditat màxima" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minuts" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "modifica la configuració de RT" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "modifica el tauler" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "modifica o accedeix a una cerca" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "modifica les teves preferències" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "mensualment" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "mensualment (dia %1) fins %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "mai" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "nou" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "cap" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "diferent de" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "res" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "S'han esborrat els objectes amb èxit" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "a" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "el dia" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "un" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "obert" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "obrir/tancar" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "un altre..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "realitza accions" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "formatge" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "el plugin ha retornat una llista buida" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "cua %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "rebutjat" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "requereix una instància de rt-crontool executant-se" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "resolt" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "de dreta a esquerra" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "mira la llista d'objectes a sota" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "configuració del lloc" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "aparcat" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "sentència" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "files de totals" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "sistema %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "grup de sistema '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "la capçalera Sol·licitant proporcionada per teu navegador (%1) no està permesa pel nom de màquina configurat a l'RT (%2)" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "la capçalera Sol·licitant proporcionada per teu navegador (%1) no està permesa pel nom de host configurat a l'RT (%2) o els hosts de la llista blanca (%3)" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "el component que s'ha cridat no especifica perquè" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "les adreces predeterminades que es llistaran a les capçaleres De: i Respon a: als correus electrònics sobre comentaris" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "les adreces predeterminades que es llistaran a les capçaleres De: i Respon a: als correus electrònics de resposta" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "del principi al final" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "absolut" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "grup sense descripció %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "il·limitat" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "actualitza un tiquet" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "actualitza una aprovació" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "actualitza un article" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "usuari" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "usuari %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "Usuari" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "setmanalment" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "setmanalment (el %1) a les %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "setmanes" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "el qual podria %1 el en teu nom." #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "el port en el que estarà escoltant el vostre servidor web, per exemple, 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "amb capçaleres" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "si" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "el teu navegador no ha proporcionat una capçalera Sol·licitant" rt-4.4.2/share/po/nn.po0000664000175000017500000122262713131430353014541 0ustar vagrantvagrant# Norwegian Nynorsk translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 10:07+0000\n" "Last-Translator: Shawn M Moore \n" "Language-Team: Norwegian Nynorsk \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "%1: %2" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "%1 %2" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%1 %3. %2 %4" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%1 %3. %2 %6 %4.%5" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3. %2 %7 %4.%5.%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 lagt til" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 «%2» endra til «%3»" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 sletta" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 sletta." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 lagra" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 «%2» oppdatert" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1: %2 med malen «%3»" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) av %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (uendra)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (frÃ¥ rute %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 – endra innstillinga «LogToSTDERR»" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 – eit argument som skal sendast til %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 – send statusoppdateringar til standard ut" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 – om du vil bruka «first» (første), «last» (siste) eller «all» (alle) transaksjonar" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 – namn eller ID til malan(e) du vil bruka" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 – kommadelt liste over transaksjonstypane du vil bruka" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 – vilkÃ¥rsmodulen du vil bruka" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 – søkjemodulen du vil bruka" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 Copyright 1996–%3 %4." #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "«%1» lagt til som verdi for «%2»" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 finst frÃ¥ før, og har RT-tabellane pÃ¥ plass, men inneheld ikkje RT-metadata. Steget «Gjer klar database», som kjem seinare, kan automatisk setja inn dei nødvendige metadataa i databasen. Viss dette er i orden, kan du trykkja «Tilpass detaljar» for Ã¥ halda fram med Ã¥ setje opp RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 finst frÃ¥ før, men inneheld ikkje tabellar eller metadata for RT. Steget «Gjer klar database», som kjem seinare, kan automatisk setja inn dei nødvendige tabellane og metadataa i databasen. Viss dette er i orden, kan du trykkja «Tilpass detaljer» for Ã¥ halda fram med Ã¥ setja opp Request Tracker." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 ser ut til Ã¥ vera eit lokalt objekt, men finst ikkje i databasen" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 ser alt ut til Ã¥ vera klargjort. Det er derfor ikkje nødvendig Ã¥ oppretta tabellar eller setja inn metadata, og du kan halda fram med Ã¥ tilpassa Request Tracker ved trykkja «Tilpass detaljer»." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 av %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 endra frÃ¥ %2 til %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1-kopi" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1-kjerneoppsett" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 kunne ikkje setjast til %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 oppretta" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 sletta" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 deaktivert" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 finst ikkje." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 aktivert" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 høgast prioriterte saker eg eig" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 er eit verktøy for Ã¥ handtera saker frÃ¥ eksterne verktøy, som cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 er eit verktøy, meint for Ã¥ verta køyrd via cron, som sender alle avviste RT-varslingar som ein samle-e-post for kvar brukar." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 er ei adresse RT tek imot e-post pÃ¥. Viss du la ho til som ein «%2», ville det oppstÃ¥ ei e-postlykkje." #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "Fleksifeltet %2 har ikkje lenger verdien %1" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 nyaste saker utan eigar" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1-objekt" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1-nettstadoppsett" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "Oppdatering av %1: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "Oppdatering av %1: ingenting endra" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 oppdatert" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1 sine %2 objekt" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1 sine %2 sine %3 objekt" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1 sine utformingar" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1 sine lagra søk" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: ingen vedlegg oppgjevne" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "%1.%2" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "%1.%2.%3" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "%1 byte" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "%1 KiB" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Ny sak i%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,time,timar)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%1 minutt" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Kryss av for Ã¥ fjerna.)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(skriv inn saksnummer eller nettadresser, skilde med mellomrom)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(vert sett til %1 viss tom)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(ingen fleksifelt)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(ingen medlemmer)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(ingen utløysarar)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(ingen malar)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Sender ein kopi av oppdateringa til valde administrative e-postadresser (ei kommadelt liste). Desse personane vil òg fÃ¥ framtidige oppdateringar.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Sender ein kopi av oppdateringa til valde e-postadresser (ei kommadelt liste). Desse personane vil òg fÃ¥ framtidige oppdateringar.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Bruk desse felta nÃ¥r du vel «Tilpassa» for eit vilkÃ¥r eller ei handling.)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(vilkÃ¥rleg)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(manglar offentlegnøkkel)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(manglar verdi)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(manglar verdiar)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(ventar pÃ¥ %quant(%1,anna sak,andre saker))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(ventar pÃ¥ godkjenning)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(obligatorisk)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(tiltrunivÃ¥: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(namnlaus)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(ikkje tiltrudd)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "–" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "«--template-id» er eit utdatert argument, og kan ikkje brukast med «--template»" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "«--transaction»-argumentet kan berre ta verdiane «first», «last» eller «all»" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "Ein tom mal" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Eit passord var ikkje oppgjeve, sÃ¥ brukaren kan ikkje logga inn" #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "Fann ikkje ACE" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "Du kan berre oppretta eller sletta ACE-er." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "OG" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Om meg" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Tilgangskontroll" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Handling" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Fann ikkje handlinga «%1»" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Handling er eit obligatorisk argument" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Handling førebudd …" #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Legg til admin-kopimottakar" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Legg til bokmerke" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Legg til kopimottakar" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Legg til kolonnar" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Legg til søkjekriterium" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Legg til fleire filer" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Legg til innmeldar" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Legg til verdi" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Legg til kommentarar eller svar til dei valde sakene" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Legg til medlemmer" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Legg til overvakarar" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Legg til vilkÃ¥ra" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Legg til vilkÃ¥ra og søk" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Legg til verdiar" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adresse" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adresse 1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adresse 2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "Admin-kopimottakar" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Admin-kommentar" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Admin-svar" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" # «Velg kø» er rett oversettelse, og nødvendig for Ã¥ fÃ¥ konsekvente overskrifter. #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Vel kø" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Administrering / globalt oppsett" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "AdminKopimottakarGruppe" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "Admin-kopimottakar" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "AdminKopimottakarar" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Administratorpassord" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Avansert" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Samanstilling" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Alle førespurnader godkjende" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Alle køar" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Alle iCal-adressene inneheld ein hemmeleg kode som identifiserer deg. Viss andre fÃ¥r kjennskap til ei av disse adressene, kan du fÃ¥ generert ein ny kode. Merk at alle iCal-adressene nedanfor dÃ¥ ikkje lenger vil fungera." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Alle køar i samsvar med søkjekriteria" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Allereie kryptert" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Og/eller" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Gjeld" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Gjeld alle objekta" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Bruk" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Bruk globalt" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Ta endringane i bruk" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Godkjenning" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Godkjenning %1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Godkjenning %1: klarte ikkje lagra merknader, grunna systemfeil" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Godkjenning %1: merknader lagra" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Godkjend" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Godkjenning klar for eigar" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Godkjenning avslÃ¥tt" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Godkjenn" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "april" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "stigande" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Legg ved" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Legg ved fil" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Vedlagt fil" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Vedlegg" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Klarte ikkje lasta vedlegget «%1»" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Vedlegg oppretta" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Vedleggsnamn" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Vedlegg" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Kryptering av vedlegg er slÃ¥tt av" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Attributt fjerna" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "aug." #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:261 msgid "Autoreply" msgstr "Autosvar" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Autosvar til innmeldar" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Tilgjengeleg" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Tilbake" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Ugyldig offentlegstatus for attributtet %1" # Dette *er* rett / ei god omsetting for dette omgrepet er i brukargrensesnittet. #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Detaljar" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Tom" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Hovudflate" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Halvfeit" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Bokmerke" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Bokmerkte saker" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Masseoppdater" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "Kopigruppe" # CF = Custom Field #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "FF" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Klarte ikkje henta det lagra søket «%1»" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Kan ikkje endra systembrukarar" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Kan ikkje leggja verdi til eit fleksifelt utan namn" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Fann ikkje eit lagra søk Ã¥ arbeida med" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Kan ikkje kopla ein sak til seg sjølv" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Klarte ikkje lagra %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Klarte ikkje lagra søket" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Kan ikkje oppretta saker i ein deaktivert kø" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategoriar baserte pÃ¥" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategori" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Kopimottakar" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "Kopimottakarar" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Endra" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Endra godkjenningssak til status «open»" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Byt passord" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Merk alle" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Kontroller databasetilgang" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Kontroller databaseautentisering" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Kryss av for Ã¥ fjerna" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Undersaker" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Vel databasemotor" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Poststad" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Tøm" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Tøm alle" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Trykk «Fullfør installering» for Ã¥ avslutta vegvisaren." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Trykk «Gjer klar database» for Ã¥ oppretta RT-databasen og setja inn dei nødvendige metadataa. Dette kan ta nokre minutt." #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Lukka" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Lukka saker" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Komboboks: vel eller skriv inn fleire verdiar" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Komboboks: vel eller skriv inn enkeltverdi" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Komboboks: vel eller skriv inn opptil %1 verdiar" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Kommenter" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Kommentaradresse" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Kommentaradresse" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Kommenter saker" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentarar" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Kommentar (vert ikkje send til innmeldaren)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Kommentarar om brukaren" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "La til kommentarar" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Utføring klargjord" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "VilkÃ¥r" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Fann ikkje vilkÃ¥ret «%1»" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "VilkÃ¥r er eit obligatorisk argument" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "VilkÃ¥ret oppfyller …" #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "VilkÃ¥r, handling og mal" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Oppsettfila %1 er lÃ¥st" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Kopla til" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Melding" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Innhaldstype" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "Innhaldstype" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Svaradresse" #: etc/initialdata:393 msgid "Correspondence" msgstr "Svar" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Svar lagt til" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Klarte ikkje leggja til ny fleksifeltverdi: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Klarte ikkje endra eigar: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Klarte ikkje oppretta fleksifelt: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Klarte ikkje oppretta gruppe" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Klarte ikkje oppretta sak. Kø ikkje oppgjeven." #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Klarte ikkje oppretta brukar" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Klarte ikkje lasta attributtet %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Klarte ikkje lasta fleksifeltet %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Klarte ikkje lasta gruppa" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Klarte ikkje lasta objekt for %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Klarte ikkje lagra brukarinfo" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Klarte ikkje leggja til vedlegg" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Klarte ikkje leggja medlem til gruppa" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Klarte ikkje oppretta transaksjon: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Klarte ikkje fjerna utforminga %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Fann ikkje rada" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Fann ikkje ein passende transaksjon – hoppar over" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Fann ikkje primærobjektet" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Fann ikkje verdien" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Klarte ikkje lasta klassen %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Klarte ikkje lasta fleksifelt %1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Klarte ikkje lasta fleksifelt %1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Klarte ikkje lasta fleksifeltet %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Klarte ikkje lasta kopi av sak %1" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Klarte ikkje lasta utforminga %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Klarte ikkje lasta gruppe %1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Klarte ikkje lasta gruppa %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Klarte ikkje lasta lenkja" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Klarte ikkje lasta objektet %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Klarte ikkje lasta eller oppretta brukaren: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Klarte ikkje lasta køen" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Klarte ikkje lasta kø %1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Klarte ikkje lasta køen %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Klarte ikkje lasta køen «%1»" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Klarte ikkje lasta utløysar %1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Klarte ikkje lasta mal %1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Klarte ikkje henta saka «%1»" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Klarte ikkje lasta transaksjon %1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Klarte ikkje lasta brukar" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Klarte ikkje lasta brukar %1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Klarte ikkje lasta brukar %1 eller brukaren «%2»" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Klarte ikkje lasta brukaren «%1»" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Klarte ikkje byta ut innhaldet med dekryptert innhald: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Klarte ikkje byta ut innhaldet med kryptert innhald: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Klarte ikkje gjera kjelda «%1» om til ei adresse" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Klarte ikkje gjera mÃ¥let «%1» om til ei adresse" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Klarte ikkje registrera %1-overvakar: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Klarte ikkje registrera privatnøkkel" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Klarte ikkje fjerna privatnøkkel" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Land" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Ny" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Opprett saker" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Nytt fleksifelt" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Opprett fleksifelt for køen %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Ny utforming" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Ny gruppe" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Ny brukar" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Ny kø" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Opprett mal" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Ny sak" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Opprett nye saker basert pÃ¥ malen til denne utløysaren" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Lag personlege utformingar" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Lag systemutformingar" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Opprett sak" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Oppretta" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Oppretta av" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Oppretta fleksifeltet %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "OpprettaAv" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "OpprettaRelativt" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Innmeldar" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kryptografi" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Gjeldande koplingar" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Gjeldande medlemmer" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Gjeldande søk" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Gjeldande overvakarar" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Fleksifelt" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Fleksifelt for %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Tilpassa førebuingskode for handling" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Sjølvvalt vilkÃ¥r" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Fleksifelt %1 vert ikkje brukt pÃ¥ dette objektet" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Fleksifeltet %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Fleksifeltet %1 gjeld ikkje dette objektet" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Fleksifeltet %1 har ein verdi." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Fleksifeltet %1 har ingen verdi." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Fann ikkje fleksifeltet %1" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Fann ikkje feltverdien %1 for fleksifeltet %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Klarte ikkje sletta feltverdien til fleksifeltet" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Feltverdi til fleksifelt sletta" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Fleksifelt" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "Fleksifeltverdi" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Tilpass" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Tilpass detaljer" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Tilpass e-postadresser" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Tilpass e-postoppsett" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "" # DBA = databaseadministrator #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA-passord" # DBA = databaseadministrator #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA-brukarnamn" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Dagleg samandrag" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Utforming" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Klarte ikkje oppretta utforminga: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Klarte ikkje oppdatera utforminga: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Utforming oppdatert" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Utformingar" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Databasetenar" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Databasenamn" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Databasepassord for RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Databaseport" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Databasetype" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Databasebrukarnamn for RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Datoformat" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Datoar" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "des." #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Dekrypter" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Standardkø" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Standard: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Standard: %1/%2 endra frÃ¥ %3 til %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Standardformat" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Slett" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Slett mal" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Feil ved sletting: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Slett personlege utformingar" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Slett systemutformingar" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Slett saker" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Slett verdiar" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Sletta %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Sletta søk" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Sletta lagra søk" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Sletting av dette objektet vil øydeleggja referanseintegriteten" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Sletting av dette objektet vil øydeleggja referanseintegriteten" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Nekt" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Avhengnad frÃ¥" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "AvhengnadFrÃ¥" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Avhengnad av %1 lagt til" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Avhengnad av %1 slettet" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Avhengnad av %1 lagt til" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Avhengnad av %1 sletta" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "AvhengAv" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Avheng av" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "AvhengAv" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "synkande" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Skildra problemet nedanfor" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Skildring" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Retning" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Deaktivert" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Vis" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Vis tilgangsliste" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Vis kolonnar" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Gjera alt" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Domenenamn" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ta ikkje med «http://», berre vertsnamnet. Eksempel: rt.eksempel.no" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Ikkje oppdater heimesida" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Ikkje oppdater søkeresultata" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ikkje oppdater sida" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Ikkje stol pÃ¥ denne nøkkelen" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Last ned" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Last ned dumpfil" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Forfallsdato" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "ForfallsdatoRelativ" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "Feil: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Enkel oppdatering av opne saker" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Rediger" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Rediger fleksifelt" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Rediger fleksifelt: %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Rediger fleksifelt for alle gruppene" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Rediger fleksifelt for alle køane" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Rediger fleksifelt for alle brukarane" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Rediger fleksifelt for saker i alle køar" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Rediger koplingar" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Rediger spørjing" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Rediger søk" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Rediger systemmalar" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Redigerer fleksifeltet %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Redigerer medlemskap for gruppa %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "EffektivID" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Du mÃ¥ oppgje anten kjelde eller mÃ¥l" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Anten manglar du løyve til Ã¥ visa det lagra søket %1, eller sÃ¥ er identifikatoren feil" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "E-postadresse" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "E-postsamandrag" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "E-postadressa er alt i bruk" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "E-postlevering" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "E-postmal for regelmessige samandrag" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "E-postadresse" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Aktivert" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "I bruk (fjern krysset for Ã¥ deaktivera feltet)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "I bruk (fjern krysset for Ã¥ deaktivera gruppa)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "I bruk (fjern krysset for Ã¥ deaktivera køen)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Aktive køar" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Verksame køar i samsvar med søkjekriteria" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Aktivert statusen %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Krypter" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Krypter som standard" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Krypter/dekrypter" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Krypter/dekrypter transaksjon %1 av sak %2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Skriv inn fleire verdiar" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Skriv inn fleire verdiar – med autofullføring" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Skriv inn objekta eller nettadressene du vil kopla til. Du kan skilja fleire verdiar ved Ã¥ bruka mellomrom." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Skriv inn enkeltverdi" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Skriv inn enkeltverdi – med autofullføring" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Skriv inn køane eller nettadressene du vil kopla køane til. Du kan skilja fleire verdiar ved Ã¥ bruka mellomrom." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Skriv inn sakene eller nettadressene du vil kopla sakene til. Du kan skilja fleire verdiar ved Ã¥ bruka mellomrom." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Skriv inn opptil %1 verdiar" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Skriv inn opptil %1 verdiar – med autofullføring" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Feil" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Feil til RT-eigar: offentlegnøkkel" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Feil: Manglar utforming" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Feil: Ugyldige GnuPG-data" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Feil: manglar privatnøkkel" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Feil: offentlegnøkkel" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Auk saksprioritetar" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Estimert" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Alle" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Eksempel:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "UtgÃ¥r" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "UtvidaStatus" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Ekstern autentisering slÃ¥tt pÃ¥" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Tilleggsinformasjon" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Hent emnekode" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Hent emnekodar frÃ¥ emnelinja i ein transaksjon, og legg desse til saksemnet." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Klarte ikkje kopla til databasen: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Klarte ikkje oppretta attributtet %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Fann ikkje pseudogruppa «brukarar med utvida løyve»" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Fann ikkje pseudogruppa «brukarar utan utvida løyve»" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Klarte ikkje lasta %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Klarte ikkje lasta %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Klarte ikkje lasta modulen %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Klarte ikkje lasta objektet for %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Klarte ikkje lasta malen" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Klarte ikkje tolka malen" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "feb." #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Kjelde for feltverdiar:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Filnamn" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Fyllargument" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Fyll boksane med farge med" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Fyll ut fleire fritekstfelt" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Fyll ut fleire wikitext-felt" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Fyll ut eit fritekstfelt" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Fyll ut eit wikitext-felt" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Fyll ut feltet med ei nettadresse." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Fyll ut opptil %1 fritekstfelt" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Fyll ut opptil %1 wikitext-felt" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Sluttprioritet" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "Sluttprioritet" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Finn alle brukarane der" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Finn alle gruppene der" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Finn alle personane der" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Finn saker" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Fullfør" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Først" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Tving gjennom endring" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Vidaresend" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Vidaresend melding" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Vidaresend melding og gÃ¥ tilbake" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Vidaresend sak" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Vidaresend sak %1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Vidaresend transaksjon %1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Fann %quant(%1,sak,saker)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Fann objekt" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frekvens" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "fr." #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "fredag" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Generelt" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Kom i gang" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Tildelt %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Globalt" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Oppsett av globale fleksifelt" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Globalt panel «%1» lagra" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Køyr" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Køyr" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "GÃ¥ til saka" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Diagram" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Diagrameigenskapar" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Diagram er ikkje tilgjengelege." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Gruppe" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Gruppeløyve" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Alt medlem av gruppa: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Klarte ikkje oppretta gruppa: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Gruppa er oppretta" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Gruppa er deaktivert" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Gruppa er aktivert" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Gruppa har ikkje medlemmen" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Fann ikkje gruppa" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupper" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Grupper kan ikkje vera medlem av sine medlemmer" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Grupper i samsvar med søkjekriteria" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Brukaren er medlem av" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "HarMedlem" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Overskrift til vidaresend sak" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Overskrift til vidaresend melding" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Hei!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Hjelp oss Ã¥ setja opp nokre nyttige standardverdiar for RT." #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Oppdateringar" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Gruppeendringar for %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Køendringar for %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Brukarendringar for %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Oppdater heimesida" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Heimeside" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Time" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "timar" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Eg har %quant(%1,sementblandar,sementblandarar)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "ID" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identitet" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Viss ei godkjenning vert avvist, avvis originalen, og slett ventande godkjenningar" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Viss dette verktøyet var «setgid», kunne ein vondsinna lokal brukar bruka det for Ã¥ fÃ¥ administrativ tilgang til RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Viss du alt har ein fungerande RT-tenar og RT-database, bør du no sjÃ¥ til at databasetenaren køyrer, og at RT-tenaren kan kopla til han. NÃ¥r du har gjort dette, bør du stoppa og sÃ¥ starta RT-tenaren pÃ¥ nytt." #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Viss du har gjort endringar her, mÃ¥ du hugsa Ã¥" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Viss databasen du føretrekkjer ikkje er synleg i feltet nedanfor, tyder det at RT ikkje fann ein databasedrivar for denne installert. Det kan hjelpa Ã¥ bruka %1 for Ã¥ lasta ned og installera «DBD::MySQL», «DBD::Oracle» eller «DBD::Pg»." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Ugyldig verdi for %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "LÃ¥st felt" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Ta med deaktiverte fleksifelt i lista" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Ta med deaktiverte grupper i lista" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Ta med deaktiverte køar i lista" #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Ta med deaktiverte brukarar i søkeresultata" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Vis nettside" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Enkeltmeldingar" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Varsla RT-eigaren om at brukaren/brukarane har ugyldige offentlegnøklar" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Varsla brukaren om at utforminga han/ho brukar er fjerna" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Varsla brukaren om at meldinga han/ho sende har ugyldige GnuPG-data" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Varsla brukaren om at han/ho har feil i offentlegnøkkelen, og derfor ikkje kan fÃ¥ krypterte meldingar" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Varsla brukaren om at passordet hans/hennar er nullstilt" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Varsla brukaren om mottak av kryptert e-post som RT manglar privatnøkkel for Ã¥ dekryptera" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Startprioritet" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "Startprioritet" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Gjer klar databasen" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Feil i inndata" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Inndataa mÃ¥ vera i samsvar med %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Internfeil: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Ugyldig %1: «%2» er ikkje ei gyldig e-postadresse" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Ugyldig %1: mÃ¥ vera eit tal" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Ugyldige data" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Ugyldig objekt" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Ugyldig mønster: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Ugyldig kø" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Ugyldig løyve" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Ugyldig løyve. Klarte ikkje kanonisera løyvet «%1»." #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Ugyldig syntaks for e-postadresse" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Ugyldig verdi for %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Ugyldig verdi for fleksifelt" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Er ikkje kryptert" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Det er svært viktig at brukarar utan utvida løyve ikkje fÃ¥r køyra dette verktøyet." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Det er anbefalt at du opprettar ein vanlig Unix/Linux-brukar med riktig gruppemedlemskap og tilgang til RT for Ã¥ køyra dette verktøyet." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Du kan bruka fleire kommandolinjeargument:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Kursiv" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "jan." #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "juli" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Storside" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "juni" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Behald «localhost» viss du er usikker. La feltet stÃ¥ tomt for Ã¥ kopla til via ein sokkel." #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "SprÃ¥k" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Stor" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Siste" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Siste kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Sist kontakta" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Sist oppdatert" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Sist oppdatert av" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Sist oppdatert av" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "SistOppdatert" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "SistOppdatertAv" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "SistOppdatertRelativ" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "La feltet stÃ¥ tomt for Ã¥ bruka standardverdien for databasen" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "La feltet stÃ¥ tomt for Ã¥ bruka standard DBA-brukarnamn for databasetypen" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Igjen" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Forklaring" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Talet pÃ¥ teikn. Bruk «0» for Ã¥ vise heile meldingane, uavhengig av meldingslengda." #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Gje brukaren tilgang til systemet" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Gje brukaren utvida løyve" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Start" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Lenkje" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Lenkja finst alt" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Fann ikkje lenkja" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Kopla saman sak %1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Lenk verdiane til" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Kopla" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "KoplaFrÃ¥" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "KoplaTil" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Koplingar" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Opna" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Opna lagra søk:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Lasta %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Lasta opphavleg lagra søk «%1»" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Lasta perl-modular" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Lasta lagra søk: %1" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Dato og klokkeslett" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "LokaltDatoKlokkeslett" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Plassering" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Logga inn som %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Logga ut" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Logg inn" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "LogoAltTekst" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Logg ut" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Ikkje typesamsvar ved feltoppslag" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "E-post" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Hovudkoplingstype" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Vel eigar" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Vel status" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Vel tidsfrist" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Vel startdato" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Vel startdato" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Vel dato varsla" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Vel prioritet" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Vel kø" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Vel emne" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Rediger brukardefinerte felt" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Rediger grupper og gruppemedlemskap" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Rediger eigenskapar og innstillingar for alle køane" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Rediger køar og eigenskapar til køar" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Rediger lagra diagram" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Rediger brukarar og passord" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "mars" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Merkte alle meldingane som lesne" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Malrekkjefølgje for Mason" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "MaksVerdiar" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Makslengd for direktevising av meldingar" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "mai" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Medlem" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Medlemmen %1 lagt til" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Medlemmen %1 sletta" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Medlem lagt til: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Medlem sletta" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Medlem ikkje sletta" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "MedlemAv" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Medlemmer" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Lagt til som medlem i %1" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Fjerna som medlem av %1" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Medlemskap" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Medlemskap til brukaren %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Fletting utførd" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Feil ved fletting. Klarte ikkje lagra «EffectiveId»." #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Flett inn i" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Fletta inn i %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Melding" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Meldingsteksten vert ikkje vist, sidan avsendaren sende han som eit vedlegg." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Meldingsteksten vert ikkje vist, fordi han ikkje er reintekst." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Høgd pÃ¥ meldingsfelt" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Breidd pÃ¥ meldingsfelt" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Klarte ikkje lagra meldinga" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Melding for brukar" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Melding registrert" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Minste passordlengd" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "minutt" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Manglar primærnøkkel? %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobil" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Rediger medlemmer" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Endra fleksifelt for køen %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Endra objekt knytt til %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Endra fleksifeltverdiar" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Endra datoar for sak %1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Endra globale fleksifelt" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Endra globale gruppeløyve" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Endra globale brukarløyve" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Endra gruppemetadata eller slett gruppa" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Endra gruppeløyve for fleksifeltet %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Endra gruppeløyve for gruppa %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Endra gruppeløyve for køen %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Endra sin eigen RT-konto" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Endra personar knytte til sak %1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Endra personlege utformingar" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Endra utløysarar for køen %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Endra utløysarar som gjeld alle køane" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Endra systemutformingar" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Endra malen %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Endra malar som gjeld alle køane" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Endra utforminga %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Set opp standardskjermbiletet («RT-oversikt»)" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Endra gruppa %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Endra abonnement til utforminga %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Endra brukaren %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Endra sak %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Endra sak %1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Endra saker" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Endra brukarløyve for fleksifeltet %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Endra brukarløyve for gruppa %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Endra brukarløyve for køen %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "mÃ¥." #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "mÃ¥ndag" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Fleire" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "MÃ¥ oppgje «Name»-attributt" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Mine saker med status «%1»" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "OppgÃ¥veoversikt" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mine godkjenningar" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mine utformingar" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mine lagra søk" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "LINJESKIFT" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Namn" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Namn og e-postadresse" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Namnet er alt i bruk" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Aldri" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Ny" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nye koplingar" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Ny godkjenningsførespurnad" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Nytt søk" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nye meldingar" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nytt passord" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Melding om nytt passord send" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Ny pÃ¥minning:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Ny sak" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Den nye saka finst ikkje" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nye overvakarar" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Neste" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Kallenamn" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Kallenamn" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Nei" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "Ingen %1 lasta" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Ingen klasse definert" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Inkje fleksifelt" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Inkje fleksifelt definert" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Inga gruppe definert" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Inga spørjing" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Ingen kø definert" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Manglar emne" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Ingen mal" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Inga handling" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Ingen kolonne vald" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Ingen kommentar skriven om brukaren" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Inga skildring av %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Inga gruppe vald" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Fann ingen grupper i samsvar med søkjekriteria" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Manglar eigna krypteringsnøkkel" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Inga melding lagd ved" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Namn ikkje oppgjeve" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Kryptering unødvendig" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Passord ikkje vald" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Manglar løyve til Ã¥ oppretta køar" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Manglar løyve til Ã¥ oppretta saker i køen «%1»" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Manglar løyve til Ã¥ visa saka" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Manglar løyve til Ã¥ køyra globale søk" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Manglar løyve til Ã¥ endra innstillingane" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Manglar tilgang til Ã¥ sjÃ¥ oppdatering av saka" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Ingen primærobjekt oppgjevne." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Manglar privatnøkkel" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Fann ingen køar i samsvar med søkjekriteria." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Ingen løyve oppgjevne" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Fann ingen løyve" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Manglar søk Ã¥ bruka" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Utan emne" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Nøkkelen manglar, eller er ikkje eigna til signering" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Fann ingen saker." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Transaksjonstype ikkje oppgjeven" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Ingen eigna nøklar" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Fann ingen brukarar i samsvar med søkjeteksten." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Ingen" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Ingen" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Feltet finst ikkje?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Fann ikkje" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Ikkje innlogga" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "ikkje definert" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Merknader" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Klarte ikkje senda melding" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Varsla admin-kopimottakarane" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Varsla admin-kopimottakarane som kommentar" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Varsla kopimottakarane" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Varsla kopimottakarane som kommentar" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Varsla andre mottakarar" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Varsla andre mottakarar som kommentar" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Varsla sakeigaren" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Varsla eigaren som kommentar" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Varsla sakeigaren om avvist sak" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Varsla sakeigaren at saka er godkjend, og vert handsama" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Varsla sakeigaren at saka er godkjend av nokon eller alle godkjennarane" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Varsla sakeigaren, innmeldarane, kopimottakarane og admin-kopimottakarane" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Varsla sakeigaren, innmeldarane, kopimottakarane og admin-kopimottakarane som kommentar" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Varsla sakeigaren og admin-kopimottakarne om nye førespurnader som krev godkjenninga deira" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Varsla innmeldaren nÃ¥r saka er godkjend av alle godkjennarane" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Varsla innmeldaren nÃ¥r saka er godkjend av minst éin godkjennar" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Varsla innmeldarane" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Varsla innmeldarane og kopimottakarane" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Varsla innmeldarane og kopimottakarane som kommentar" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Opplys om ulesne meldingar" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "nov." #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ELLER" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Klarte ikkje oppretta objektet" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Klarte ikkje sletta objektet" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objekt oppretta" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objekt sletta" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Ikkje samsvar i objekttype" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Objektlista er tom" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "okt." #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "%1 skreiv %2:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Ved lukking" #: etc/initialdata:170 msgid "On Comment" msgstr "Ved kommentar" # Skal vera komma her. #: etc/initialdata:142 msgid "On Correspond" msgstr "Ved svar" #: etc/initialdata:131 msgid "On Create" msgstr "Ved oppretting" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Ved eigarskifte" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Ved prioritetsendring" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Ved købyte" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Ved avvising" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Ved gjenopning" #: etc/initialdata:205 msgid "On Resolve" msgstr "Ved løysing" #: etc/initialdata:176 msgid "On Status Change" msgstr "Ved statusendring" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Ved transaksjon" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Eingangsblindkopi" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Eingangskopi" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Vis berre godkjenningar for saker oppretta etter %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Vis berre godkjenningar for saker oppretta før %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Vis berre fleksifelt for:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Opne saker" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Opna adresse" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Opne saker" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Opna saker ved svar" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Val" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Val" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sorter etter" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organisasjon" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Opphavleg sak: %1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "UtgÃ¥ande e-post om ein kommentar registrert" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "UtgÃ¥ande e-post registrert" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "UtgÃ¥ande e-post" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Eigne saker" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Eigar" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "Eigaren «%1» har ikkje løyve til Ã¥ eiga denne saka." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Eigar bytta frÃ¥ %1 til %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Eigar vart tvangsendra frÃ¥ %1 til %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "Eigarnamn" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Side" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Side 1 av 2" #: share/html/dhandler:48 msgid "Page not found" msgstr "Fann ikkje sida" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Personsøkjar" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Oversaker" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Passord" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Passord endra" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Passordet er ikkje registrert" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Passordet mÃ¥ vera minst %1 teikn langt" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Passordet er registrert" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Passord: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Passord: nekta tilgang" #: etc/initialdata:714 msgid "PasswordChange" msgstr "PassordByte" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Dei to passorda er ikkje like." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Adresse til «sendmail»" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Personar" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Køyr ei brukardefinert handling" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl-oppsett" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Søkjerekkjefølgje for Perl-bibliotek" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Nekta tilgang" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Nekta tilgang" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefonnummer" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Kontroller adressa, og prøv sÃ¥ pÃ¥ nytt." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Skriv inn ditt noverande passord rett" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Skriv inn ditt noverande passord" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Moglege gøymde søk" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Innstillingar" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Innstillingar %1 for brukaren %2" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Innstillingar lagra for %1" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Innstillingar lagra for brukaren %1" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Innstillingar lagra" #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Føretrekt nøkkel: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Føretrekt nøkkel" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Førebuing klargjord" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Førre" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Fann ikkje primærobjektet %1" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Send meldingssamandraga til standard ut i staden for via e-post. Disse vert ikkje merkte som sende." #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Vis denne meldinga" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioritet" # Omgrepet seier om ei utforming er privat eller offentleg (og ordet fÃ¥r eit kolon etter seg). Dette er derfor ei rett «omsetting». #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Offentleg" # Omgrepet seier om ei utforming er privat eller offentleg. Dette er derfor ei rett «omsetting». #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Offentleg:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Privatnøkkel" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Med utvida løyve" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Utvida løyve: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Brukarar med utvida løyve" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Køyrer utan transaksjon. Det kan oppstÃ¥ feil for nokre vilkÃ¥r og handlingar. Vurder Ã¥ bruka argumentet «--transaction»." #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseduogruppe for intern bruk" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "Offentlegnøkkelen «0x%1» er nødvendig for stadfesting av signaturen" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Spørjingar" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Spørjing" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Avansert søk" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Kø" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Fann ikkje køen %1" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Kønamn" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Køen finst frÃ¥ før" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Klarte ikkje oppretta køen" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Klarte ikkje lasta køen." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Kø oppretta" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Kø-ID" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Fann ikkje køen" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Kønøkkel" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "KøAdminKopimottakar" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "KøKopimottakar" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "Kønamn" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "KøOvervakar" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Køar" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Køar eg administrerer" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Køar eg er administrativ kopimottakar for" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Kjappsøk" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Kjapp saksoppretting" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC 2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC 2822" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT-administrering" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "E-post til RT-administrator" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT-oppsett" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT-feil" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT-storleik" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT-oversikt" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "RT-oversikt for brukaren %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT kan kommunisera med brukarane om nye saker, og om svar pÃ¥ saker. Oppgje kor sendmail (eller eit sendmail-kompatibelt program, som det som følgjer med Postfix) er installert. RT mÃ¥ òg veta kven som skal kontaktast nÃ¥r nokon sender ein ugyldig e-post. Dette kan ikkje vera ei adresse som fører til RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT kan visa innhald frÃ¥ ei anna netteneste i dette fleksifeltet." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT kan gjera feltverdiane til fleksifeltet til lenkjer til ei nettside." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT-kjernevariablar" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT er eit profesjonelt sakshandsamingssystem som lèt deg smart og enkelt handtera oppgÃ¥ver, problem, førespurnader, feilinnmeldingar og andre ting som krev handling." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT vert brukt av Fortune 100-bedrifter, enkeltmannsføretak, offentlege verksemder, utdanningsinstitusjonar, sjukehus, ideelle organisasjonar, bibliotek, fri programvare-prosjekt og mange andre typar verksemder, pÃ¥ alle kontinenta (ja, òg i Antarktika!)." #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT vil kopla til databasen som denne brukaren. Han vert automatisk oppretta." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT vil laga brukaren «root», og registrera dette som passord." #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT vil automatisk byta ut %1 og %2 med saksnummeret og verdien til fleksifeltet." #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT vil bruka denne koden for Ã¥ identifisera installasjonen, og sjÃ¥ etter han i emnefeltet i e-postmeldingar for Ã¥ finna ut kva sak meldinga gjeld. Du bør setja verdien lik nettdomenet ditt. Eksempel: eksempel.no" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT kan bruka ulike databaser, og bÃ¥de MySQL, PostgreSQL, Oracle og SQLite er støtta." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "«RTAddressRegexp»-valet i oppsettet er ikkje i samsvar med «%1»" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Fullt namn" # Blir bare brukt som overskrift i en tabell, og kan derfor ha mellomrom. #: lib/RT/User.pm:95 msgid "RealName" msgstr "Fullt namn" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Lagra alle oppdateringane" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Rekursivt medlem" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Referanse frÃ¥ %1 lagt til" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Referanse frÃ¥ %1 sletta" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Referanse til %1 lagt til" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Referanse til %1 sletta" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Referert til av" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "ReferertTilAv" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Refererer til" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "ReferererTil" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Oppdatering" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Oppdater sida kvart %1. minutt" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "PÃ¥minninga «%1» lagd til" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "PÃ¥minninga «%1» fullførd" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "PÃ¥minninga «%1» gjenopna" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "PÃ¥minningar" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "PÃ¥minningar for sak %1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Fjern admin-kopimottakar" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Fjern bokmerke" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Fjern kopimottakar" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Fjern innmeldar" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Svar" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Svaradresse" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Svar til innmeldarar" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Svar pÃ¥ sak" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Innmeldar" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "Innmeldargruppe" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Innmeldar" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Obligatorisk parameter «%1» ikkje oppgjeven" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Tilbakestill" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Generer hemmeleg brukarkode" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Tilbakestill til standard" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Heime" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Løys" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Løys sak %1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Løyst" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "LøystRelativ" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Svar" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultat" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "GÃ¥ tilbake til saka" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Skriv passordet pÃ¥ nytt" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Tilbakestill" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Løyve lasta" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Løyvet kunne ikkje trekkjast tilbake" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Løyve ikkje lasta." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Løyve kunne ikkje tildelast for %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Roller" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Rader" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Rader per boks" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Rader per side" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite er ein database som ikkje treng databasetenar eller oppsett. Han er anbefalt for testing, demonstrasjonar og utvikling, men bør ikkje brukast i produksjonsmiljø." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "la." #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "laurdag" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Lagra" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Lagra endringar" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Lagra innstillingane" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Lagra som ny" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Lagra %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Lagra diagram" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Lagra søk" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Utløysar %1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Utløysar oppretta" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Utløysarar" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Utløysarar og mottakarar" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Søk" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Søkjeinnstillingar" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Søk etter godkjenningar" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Søk etter saker" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Søkjeval" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Oppdater søkjeresultata" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Hemmeleg brukarkode" #: bin/rt-crontool:352 msgid "Security:" msgstr "Tryggleik:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "SjÃ¥ òg:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Vel" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Vel databasetype" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Vel fleksifelt" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Vel gruppe" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Vel kø" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Vel kø for den nye saka" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Vel brukar" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Vel eit anna sprÃ¥k" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Vel fleksifelt for alle køane" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Vel fleksifelt for alle brukargruppene" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Vel fleksifelt for alle brukarane" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Vel fleksifelt for saker i alle køane" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Vel fleksifelt for transaksjonar pÃ¥ saker i alle køane" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Vel fleire verdiar" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Vel enkeltverdi" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Vel køane som skal visast pÃ¥ «RT-oversikt»-sida" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Vel opptil %1 verdiar" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Valde fleksifelt" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Den valde nøkkelen er ikkje tiltrudd, eller finst ikkje lenger" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Valde objekt" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Utval endra. Du bør lagra endringane." #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Send e-post til eigar og overvakarar" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Send e-post til eigar og overvakarar som kommentar" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Send e-post til innmeldarar og kopimottakarar" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Send e-post til innmeldarar og kopimottakarar som kommentar" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Send melding til innmeldarane" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Send e-post til eksplisitt oppgjevne kopi- og blindkopimottakarar" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Send e-post til kopimottakarane" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Send e-post til kopimottakarane som kommentar" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Send e-post til dei administrative kopimottakarane" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Send e-post til dei administrative kopimottakarane som kommentar" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Send e-post til eigaren" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "sep." #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Innstillingar" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Korte brukarnamn" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Skal RT senda deg e-post med dine eigne saksoppdateringar?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Vis" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Vis kolonnar" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Vis søkjeresultat" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Vis sakseigenskapar pÃ¥ nivÃ¥ %1" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Vis godkjende førespurnader" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Vis ogsÃ¥" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Vis avviste førespurnader" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Vis koplingsskildringar" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Vis eldste oppdatering først" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Vis ventande førespurnader" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Vis førespurnader som ventar pÃ¥ andre godkjenningar" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Makulering" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Sidestolpe" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Signer" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Signer som standard" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Registrer som innmeldar eller kopimottakar for sak eller kø" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Registrer som admin-kopimottakar for sak eller kø" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Signatur" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Enkelt søk" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Enkel" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Nettstadnamn" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Storleik" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Hopp over menyen" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Hoppar over deaktivert brukar" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Liten" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Merk at nokre nettlesarar berre kan lasta inn innhald frÃ¥ same domene som RT køyrer pÃ¥." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Noko er gale. Ta kontakt med systemadministratoren." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sorter" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Sortering" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Kjelde" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Vel om denne skal køyrast dagleg eller vekentleg." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Rekneark" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "NivÃ¥" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Starta" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "StartaRelativ" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Startdato" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "StartdatoRelativ" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Delstat/region" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "Statusendring" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Status endra frÃ¥ %1 til %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Stel" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Stel saker" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Steg %1 av %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Stolen frÃ¥ %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Stil" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Emne" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Emnekode" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Emnet endra til %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "Emnekode" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Send inn" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Abonner" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Abonner pÃ¥ utforminga %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Abonner pÃ¥ utformingar" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Abonnerer pÃ¥ utforminga «%1»" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Abonnement" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Klarte ikkje starta abonnement: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Data dekryptert" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Data kryptert" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "su." #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "sundag" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Stoppa" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Systemoppsett" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Systemverdi" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Systemfeil" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Systemfeil: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Systemverktøy" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Systemfeil. Løyvet vart ikkje tildelt." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "Systemrollegruppe for intern bruk" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Ta" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Ta saker" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Teken" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Oppgje kor databasen som RT skal bruka er plassert" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Mal" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Mal %1 vart sletta" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Fann ikkje malen «%1»" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Malen er tom" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Mal er eit obligatorisk argument" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Mal tolka" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Feil ved maltolking" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Malar" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Tekstfila vert ikkje vist, dÃ¥ denne visinga er slÃ¥tt av i innstillingane." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Verdien ble ikke endret" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Dette er ikkje ein gyldig verdi for fleksifeltet" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Saka har uløyste avhengnader" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Brukaren eig alt saka" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Brukaren finst ikkje" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Brukaren har alt utvida løyve" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Brukaren har alt berre enkle løyve" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Brukaren har no utvida løyve" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Brukaren har no berre enkle løyve" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Brukaren kan ikkje eiga saker i denne køen" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Dette er ikkje ein numerisk ID" # «Detaljer» er bedre oversettelse enn «Grunnleggende» o.l. i denne sammenhengen. #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Detaljar" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "Kopimottakar til ei sak" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Databasepassord til DBA" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "Administrativ kopimottakar for ei sak" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Domenenamnet til databasetenaren (eksempel: «db.eksempel.no»)" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Desse spørjingane er sletta, og vert fjerna frÃ¥ utforminga nÃ¥r panelet vert oppdatert" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Desse spørjingane er kanskje ikkje synlege for alle brukarane som kan sjÃ¥ utforminga" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "Nøkkelen er deaktivert" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "Nøkkelen er tilbakekalla" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "Nøkkelen er utgÃ¥tt" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "Nøkkelen er fullstendig tiltrudd" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "Nøkkelen er ultimat tiltrudd" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Den nye verdien er lagra" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Eigaren av ei sak" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Fann ikkje sida du bad om" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Innmeldar av ei sak" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "Innstillingane du har valt er lagra i %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Systemet kan ikkje signera utgÃ¥ande e-postar. Dette tyder vanlegvis pÃ¥ at passfrasen er feil, eller at GPG Agent ikkje køyrer. Meld frÃ¥ til systemadministratoren med ein gang. Problemadressene er:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Det finst fleire nøklar eigna for kryptering." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Det finst ulesne meldingar i denne saka." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Nøkkelen er marginalt tiltrudd" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Det finst ingen nøklar eigna for kryptering." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Det finst éin eigna nøkkel, men tiltru-nivÃ¥et er ikkje definert for denne nøkkelen." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Desse innstillingane dekkjer det nødvendige for Ã¥ setja RT i drift. Du mÃ¥ velja eit namn pÃ¥ RT-installasjonen, og oppgje domenenamnet til maskina. Du mÃ¥ òg velja eit passord for standard administrativ brukar." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Denne funksjonen er berre tilgjengeleg for systemadministratorar" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Dette verktøyet lèt brukaren køyra Perl-modular frÃ¥ RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Denne transaksjonen ser ikkje ut til Ã¥ ha noko innhald" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "to." #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "torsdag" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Sak" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Sak %1 storoppdatering: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Koplingsdiagram for sak %1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Sak %1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Sak %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Sak %1 oppretta i køen «%2»" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Sak %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Saksoppdatering %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Sak løyst" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Sak-søk" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Sakstransaksjonar" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Saksinnhald" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Innhaldstype i sak" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Klarte ikkje oppretta sak, grunna ein intern feil" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Klarte ikkje lasta inn sak" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Saksvising" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Saksinformasjon" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Saksstatus endra" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "TicketSQL-søkjemodul" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Saker" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Saker %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Sak %1 av %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Saker som er avhengige av denne godkjenninga:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Estimert tidsbruk" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Tid att" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tid arbeida" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tid brukt til Ã¥ generera sida" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "TidEstimert" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "TidAtt" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "TidArbeida" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Tidssone" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Tittel" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Til" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Ta kontakt med %1 for førespurnader om
    opplæring, brukarstøtte, systemtilpassing eller lisensvilkÃ¥r." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Varsla" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "VarslaRelativ" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Verktøy" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Totalt" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "Transaksjon" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transaksjon %1 sletta" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transaksjon oppretta" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Fleksifelt for transaksjon" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Klarte ikkje utføra «Transaction->Create», sidan du ikkje oppgav objekttype og ID" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "Transaksjonsdato" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Transaksjonar kan ikkje forandrast" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Tiltru" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "ty." #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "tysdag" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Type endra frÃ¥ «%1» til «%2»" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Klarte ikkje fastsetja type eller ID til objekt" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Unix-brukarnamn" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Ukjend (ingen tiltruverdi tildelt)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Ukjend (verdien er ny for dette systemet)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Ukjend teiknkoding: %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Ukjent felt: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Uavgrensa" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Uavgrensa" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Namnlaust søk" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Utan utvida løyve" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Ikkje-valde fleksifelt" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Ikkje-valde objekt" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Fjern privatnøkkel" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Ikkje teken" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Oppdater" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Oppdater diagram" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Oppdater sak" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Oppdateringstype" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Oppdater format og søk" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Oppdater fleire saker" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Oppdatering ikkje loggførd." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Oppdater sak" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Oppdater sak %1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Oppdater sak %1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Oppdateringstypen var verken svar eller kommentar." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "Oppdateringsstatus" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Oppdatert" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Oppdatert lagra søk: %1" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Last opp" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Last opp fleire filer" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Last opp fleire bilete" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Last opp enkeltfil" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Last opp enkeltbilete" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Last opp opptil %1 filer" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Last opp opptil %1 bilete" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Systemverdi (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Bruk andre administrative verktøy for RT" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Systemverdi (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Brukar" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Brukar (oppretta – utgÃ¥r)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Tilpassa" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Brukarløyve" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Brukaren bad om ein ukjend oppdateringstype for fleksifeltet %1 for %2 objekt %3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Klarte ikkje oppretta brukaren: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Brukar oppretta" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Brukar deaktivert" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Brukar aktivert" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Brukaren manglar e-postadresse" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Brukar lasta" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Brukardefinerte grupper" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Brukarnamn" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Format pÃ¥ brukarnamn" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Brukarar" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Brukarar i samsvar med søkjekriterium" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Brukar transaksjon %1 …" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Gyldig spørjing" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Formatkontroll" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Verdi" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Verdiar" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Variabel" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Versjon" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Vis personlege utformingar" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Vis systemutformingar" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Høgd pÃ¥ visuelt skrivefelt" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "Visuelt skrivefelt" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Ã…tvaringa: Meldinga er ikkje signert." #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Overvakar" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "Overvakargruppe" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Overvakarar" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Fann databasen, og kan kopla til som databaseadministrator. Trykk «Tilpass detaljar» for Ã¥ halda fram med Ã¥ setje opp RT." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Du mÃ¥ oppgje namnet og plasseringa til databasen, samt brukarnamnet og passordet til brukaren RT skal bruka. Du mÃ¥ oppgje brukarnamn og passord til ein brukar med administratortilgang, slik at RT kan oppretta databasen og brukaren for deg automatisk. I steg 6 av installasjonen vert denne informasjonen brukt til Ã¥ oppretta og klargjera RT-databasen." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Port" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "on." #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "onsdag" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Vekentleg samandrag" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Velkommen til RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Gjort i dag" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Kva er RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Kor skal e-postmeldingar som RT ikkje kan handtera vidaresendast?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Felta «From» og «Reply-To» i meldingshovudet til e-postane vert automatisk fylte ut, slik at brukaren berre treng Ã¥ bruka svarfunksjonen i e-postprogrammet for Ã¥ leggja meir informasjon til saka. Systemet kan automatisk bruka forskjellige adresser for svar og for kommentarar, og forskjellige adresser for ulike køar. Adressene mÃ¥ setjast opp til Ã¥ bruka programmet rt-mailgate." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "NÃ¥r ei sak vert oppretta" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Varsla eigaren og admin-kopimottakaren nÃ¥r det vert oppretta ei ny godkjenningssak" #: etc/initialdata:137 msgid "When anything happens" msgstr "NÃ¥r noko skjer" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Det kan oppstÃ¥ ein liten pause nÃ¥r du trykkjer «Kontroller databasetilgang», sidan RT prøver Ã¥ kopla til databasen." #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "NÃ¥r ei sak vert løyst" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "NÃ¥r ei sak vert avvist" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "NÃ¥r ei sak vert gjenopna" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "NÃ¥r ei sak vert løyst" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "NÃ¥r ei sak fÃ¥r ny eigar" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "NÃ¥r ei sak fÃ¥r ny prioritet" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "NÃ¥r ei sak vert flytta til ein ny kø" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "NÃ¥r ei sak fÃ¥r ny status" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "NÃ¥r eit brukardefinert vilkÃ¥r vert utløyst" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "NÃ¥r ein ny kommentar vert lagt til" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "NÃ¥r eit svar vert lagt til" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Adressa til «sendmail»-programfila." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Slett" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Arbeid" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Arbeida" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Ja" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Du eig alt denne saka" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Du kan hoppa til den første ulesne meldinga, eller hoppa til den første ulesne meldinga og merkja alle meldingane som lesne." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Du kan òg redigera søket" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Du kan ikkje velja passord" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Du kan berre velja eigar pÃ¥ saker som du eig, eller som manglar eigar" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Du kan berre ta saker som manglar eigar" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Du har ikkje superbrukar-løyve." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Du er no logga ut av RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Du har ikkje tilgang til Ã¥ oppretta saker i køen." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Du mÃ¥ oppgje eit administrativt passord" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Du vert teken til innloggingssida. Du kan dÃ¥ logga inn med brukarnamnet %1 og passordet du valde tidlegare." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Du bør velja databasesystemet som du eller systemanadministratoren kjenner best." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Du ser denne teksten fordi du starta ein RT-tenar utan ein fungerande database. Mest sannsynleg er dette første gong du køyrer RT. Trykk \"%1\" for Ã¥ opna ein vegvisar som hjelper deg Ã¥ sette opp RT-tenaren og tilhøyrande database." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Velkommen tilbake" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Passordet er ikkje registrert" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Feil brukarnamn eller passord" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Postnummer" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Ned]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Opp]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ingen]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "etter" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "Stolpediagram" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "før" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "botn til topp" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "Kryss av her for Ã¥ bruka fleksifeltet pÃ¥ alle objekta." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "Kryss av her for Ã¥ fjerna fleksifeltet frÃ¥ alle objekta, slik at du kan bruka det pÃ¥ einskildobjekt." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "kryss av for Ã¥ leggja til" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "trykk for Ã¥ merkja eller fjerna merkinga for alle objekta" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "Globalt oppsett" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "dagleg klokka %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "sletta" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "inneheld ikkje" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "last ned" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "er lik" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "Feil: kan ikkje flytta ned" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "Feil: kan ikkje flytta til venstre" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "Feil: kan ikkje flytta opp" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "Feil: ingenting Ã¥ sletta" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "Feil: ingenting Ã¥ flytta" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "Feil: ingenting Ã¥ byta mellom" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "kvar" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "tillegget vart køyrd" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "fullstendig" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "er større enn" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "gruppe «%1»" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "ID" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "er lik" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "er ulik" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "nøkkel deaktivert" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "nøkkel utgÃ¥tt" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "nøkkel tilbakekalla" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "venstre til høgre" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "er mindre enn" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "marginalt" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "inneheld" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "Maksdjupn" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minutt" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "mÃ¥nadleg" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "mÃ¥nadleg (dag %1) klokka %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "aldri" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "ny" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "nei" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "ingen" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "er ulik" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "ingenting" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "objekta vart fjerna" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "pÃ¥" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "pÃ¥ dag" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "éin" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "opna/lukk" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "annan …" #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "Kakediagram" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "tillegget returnerte ei tom liste" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "kø %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "avvist" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "løyst" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "høgre til venstre" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "sjÃ¥ objektliste nedanfor" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "Lokalt oppsett" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "stoppa opp" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "samandragsrader" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "systemgruppa «%1»" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "den kallande komponenten oppgav ikkje korfor" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "standardadressene som skal visast i «From» og «Reply-To»-felta i kommentarmeldingar." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "standardadressene som skal visast i «From» og «Reply-To»-felta i svarmeldingar." #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "sak %1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "topp til botn" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "ultimat" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "uskildra gruppe %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "uavgrensa" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "brukar %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "vekentleg" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "vekentleg (%1) klokka %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "veker" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "kva port vevtenaren skal lytta pÃ¥ (eksempel: 8080)" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "med meldingshovud" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "ja" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/bg.po0000664000175000017500000133021313131430353014505 0ustar vagrantvagrant# Bulgarian translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 10:05+0000\n" "Last-Translator: Shawn M Moore \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 добавен" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 променен на %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 изтрит" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 изтрит." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 запазен." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½ %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) от %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Ðепроменен)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (от панел %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Регулирайте LogToSTDERR Ð¾Ð¿Ñ†Ð¸Ñ Ð² конфигурациÑта" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Ðргумент, който Ñе подава на %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Извеждане на Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð¾ ÑÑŠÑтоÑнието на STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Укажете, ако желаете да използвате 'първата', 'поÑледната' или 'вÑички' транзакции" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Укажете име или id на шаблон(и), който иÑкате да използвате" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Укажете ÑпиÑък, разделен по запетаи, от типове транзакции, които иÑкате да използвате" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Укажете модулът за уÑловиÑ, който иÑкате да използвате" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Укажете модулът за търÑене, който иÑкате да използвате" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 ÐвторÑки права 1996-%3 %4." #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 добавен като ÑтойноÑÑ‚ на %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 вече ÑъщеÑтвува и Ñъдържа таблиците на RT, но не Ñъдържа метаданните на RT. Стъпката 'Ð˜Ð½Ð¸Ñ†Ð¸Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð½Ð° базата данни' по-къÑно може да внеÑе метаданни в тази ÑъщеÑтвуваща база. Ðко това е приемливо, щракнете 'ОÑновна перÑонализациÑ' по-надолу, за да продължите да перÑонализирате RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 вече ÑъщеÑтвува, но не Ñъдържа нито таблиците, нито метаданните на RT. Стъпката 'Ð˜Ð½Ð¸Ñ†Ð¸Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð½Ð° базата данни' по-къÑно може да внеÑе таблици и метаданни в тази ÑъщеÑтвуваща база. Ðко това е приемливо, щракнете 'ОÑновна перÑонализациÑ' по-надолу, за да продължите да перÑонализирате RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 изглежда като локален обект, но не беше открит в базата данни" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 изглежда като напълно инициализиран. Ðе Ñе налага да Ñе Ñъздават таблици или да Ñе внаÑÑÑ‚ метаданни, но бихте могли да продължите да перÑонализирате RT чрез кликване на 'ОÑновна перÑонализациÑ' по-долу" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 от %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 променен от %2 на %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 копие" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð½Ð° Ñдрото" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 не може да получи ÑтойноÑÑ‚ %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 Ñъздаден" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 изтрит" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 изключен" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 не ÑъщеÑтвува." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 включен" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 билета Ñ Ð½Ð°Ð¹-виÑок приоритет, които притежавам" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 е инÑтрумент за дейÑÑ‚Ð²Ð¸Ñ Ð½Ð°Ð´ билети от външен инÑтрумент за планиране, като cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 е инÑтрумент, предназначен за изпълнение от cron, който разпраща вÑички отложени нотификации от RT като по-потребителÑко резюме." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 вече не е ÑтойноÑÑ‚ за перÑонализирано поле %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 най-нови безÑтопанÑтвени билети" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 обекта" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð½Ð° инÑталациÑта" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 обновление: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 обновление: Ðищо не е променено" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 обновен" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%2 обекта на %1" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Таблата на %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "Съхранените търÑÐµÐ½Ð¸Ñ Ð½Ð° %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: нищо не е прикрепено" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "%1к" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Ðов билет в%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,чаÑ)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%1 Минути" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(ПоÑтавете отметка за да изтриете)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Въведете id-та на билети или URL-та, разделени ÑÑŠÑ Ð·Ð°Ð¿ÐµÑ‚Ð°Ñ)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Ðко е оÑтавено празно, по подразбиране ще бъде %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(ÐÑма перÑонализирани полета)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(ÐÑма членове)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(ÐÑма scrips)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(ÐÑма шаблони)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Изпраща точно копие на това обновление на ÑпиÑък от админиÑтративни имейл адреÑи, разделен ÑÑŠÑ Ð·Ð°Ð¿ÐµÑ‚Ð°Ñ. Тези хора ще получават бъдещи обновлениÑ.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Изпраща точно копие на това обновление на ÑпиÑък от имейл адреÑи, разделен ÑÑŠÑ Ð·Ð°Ð¿ÐµÑ‚Ð°Ñ. Тези хора ще получават бъдещи обновлениÑ.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Използвайте тези полета, когато изберете 'Дефиниран от потребителÑ' за уÑловие или дейÑтвие)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(вÑеки)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(нÑма публичен ключ!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(без ÑтойноÑÑ‚)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(без ÑтойноÑти)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(виÑÑщ %quant(%1,друг билет))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(предÑтои одобрение)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(задължително)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(доверие: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(неозаглавен)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(ненадежден!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id е непрепоръчителен аргумент и не може да бъде използван Ñ --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "Ðргументът на --transaction може да бъде Ñамо 'first', 'last' или 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "Празен шаблон" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Парола не бе наÑтроена, така че потребителÑÑ‚ нÑма да може да влезе." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE не е намерен" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACE-ове могат да бъдат Ñамо Ñъздавани и изтривани." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "И" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "За мен" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Контрол на доÑтъпа" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "ДейÑтвие" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "ДейÑтвие '%1' не е намерено" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "ДейÑтвие е задължителен аргумент" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "ДейÑтвието приготвено..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Добави AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Добави отметка" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Добави Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Добави колони" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Добави критерии" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Добави още файлове" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Добави заÑвител" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Добави ÑтойноÑÑ‚" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Добави коментари или отговори на избраните билети" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Добави членове" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Добави нови наблюдатели" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Добави тези уÑловиÑ" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Добави тези уÑÐ»Ð¾Ð²Ð¸Ñ Ð¸ търÑи" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Добави ÑтойноÑти" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "ÐдреÑ" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "ÐÐ´Ñ€ÐµÑ 1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "ÐÐ´Ñ€ÐµÑ 2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "ÐдминиÑтративно копие" #: etc/initialdata:410 msgid "Admin Comment" msgstr "ÐдминиÑтративен коментар" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "ÐдминиÑтративна кореÑпонденциÑ" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "ÐдминиÑтративни опашки" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Ðдмин/Глобална конфигурациÑ" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "ÐдминКопиеГрупа" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "ÐдминКопие" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "ÐдминКопиÑ" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "ÐдминиÑтративна парола" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Разширени" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Ðгрегатор" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Ð’Ñички Ð¾Ð´Ð¾Ð±Ñ€ÐµÐ½Ð¸Ñ Ð±Ñха направени" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Ð’Ñички опашки" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Ð’Ñички iCal потоци вграждат таен белег, който ви упълномощава. Ðко URL адреÑÑŠÑ‚ на един от вашите iCal потоци е бил разкрит за Ð²ÑŠÐ½ÑˆÐ½Ð¸Ñ ÑвÑÑ‚, можете да получите нов белег, Ñчупвайки вÑички ÑъщеÑтвуващи iCal потоци по-долу." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Вече криптирано" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "И/Или" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "ОтнаÑÑ Ñе до" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Приложи" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Приложи промените" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Одобрение" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Одобрение #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Одобрение #%1: Бележките не бÑха запиÑани заради ÑиÑтемна грешка" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Одобрение #%1: Бележките запиÑани" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Одобрено" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Одобрението е готово за ÑобÑтвеника" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Ðеодобрено" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Одобри" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "апр" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Възх" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Прикачи" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Прикачи файл" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Прикачен файл" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Прикрепен обект" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "ПрикрепениÑÑ‚ обект '%1' не може да бъде зареден" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Прикачка Ñъздадена" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Име на прикрепениÑÑ‚ файл" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Прикачени обекти" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Криптирането на прикачките е изключено" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Ðтрибут изтрит" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "авг" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:261 msgid "Autoreply" msgstr "Ðвто-отговор" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Ðвто-отговор на заÑвителите" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "ДоÑтъпен" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Ðазад" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Лоша Ð¸Ð·Ð¾Ð»Ð°Ñ†Ð¸Ñ Ð½Ð° атрибут %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "ОÑновни" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Празно" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "ТÑло" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Получер" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Отметка" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Отметнати билети" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Обемни актуализации" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "КопиеГрупа" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Ðе може да Ð¿Ñ€Ð¾Ð¼ÐµÐ½Ñ ÑиÑтемни потребители" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Ðе може да Ñе добави ÑтойноÑÑ‚ за перÑонализирано поле без име" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Ðе беше открито Ñъхранено търÑене за работа" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Ðе може билет да бъде Ñвързан ÑÑŠÑ Ñебе Ñи" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Ðе може да Ñе Ñъхрани %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Ðе може да Ñе Ñъхрани това търÑене" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Ðе може да Ñе Ñъздават билети в изключена опашка." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Категориите Ñе базират на" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "КатегориÑ" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Копие до" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "КопиÑ" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Промени" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "СмÑна на парола" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Маркиране на вÑички" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Провери връзката Ñ Ð±Ð°Ð·Ð°Ñ‚Ð° данни" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Провери акредитациÑта за базата данни" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Маркирайте кутиÑта за изтриване" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Дъщерни" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Изберете тип на базата данни" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Град" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "ИзчиÑтване" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "ИзчиÑти вÑичко" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Щракнете на \"Приключи инÑталациÑта\" по-долу за да завършите този Ñъветник." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Щракнете \"Ð˜Ð½Ð¸Ñ†Ð¸Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð½Ð° базата данни\" за да Ñъздадете базата данни на RT и въведете първоначалните метаданни. Това може да отнеме извеÑтно време" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Затворен" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Затворени билети" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Изберете или въведете множеÑтво ÑтойноÑти" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Combobox: Изберете или въведете една ÑтойноÑÑ‚" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Combobox: Изберете или въведете макÑимум %1 ÑтойноÑти" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Коментар" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "ÐÐ´Ñ€ÐµÑ Ð·Ð° коментари" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "ÐÐ´Ñ€ÐµÑ Ð·Ð° коментари" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Коментар на билети" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Коментари" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Коментари (не Ñе изпращат на заÑвителите)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Коментари за този потребител" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Коментарите добавени" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "УÑловие" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "УÑловие '%1' не е намерено" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "УÑловие е задължителен аргумент" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "УÑловието паÑват..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "УÑловие, ДейÑтвие и Шаблон" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "КонфигурационниÑÑ‚ файл %1 е заключен" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Връзката оÑъщеÑтвена" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Съдържание" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Вид на Ñъдържанието" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "ВидСъдържание" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "ÐÐ´Ñ€ÐµÑ Ð·Ð° кореÑпонденциÑ" #: etc/initialdata:393 msgid "Correspondence" msgstr "КореÑпонденциÑ" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "КореÑÐ¿Ð¾Ð½Ð´ÐµÐ½Ñ†Ð¸Ñ Ð´Ð¾Ð±Ð°Ð²ÐµÐ½Ð°" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Ðе може да бъде добавена нова ÑтойноÑÑ‚ за перÑонализирано поле: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Ðе може да Ñе Ñмени ÑобÑтвеникът: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Ðе може да Ñе Ñъздаде перÑонализирано поле: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Ðе може да Ñе Ñъздаде група" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Ðе може да Ñе Ñъздаде билет. Ðе е указана опашка" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Ðе може да Ñе Ñъздаде потребител" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Ðе може да бъде зареден атрибут %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Ðе може да бъде заредено перÑонализирано поле %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Ðе може да Ñе зареди група" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Ðе може да Ñе зареди обект за %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Ðе може да Ñе уÑтанови потребителÑката информациÑ" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Ðе може да Ñе добави прикачен обект" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Ðе може да Ñе добави член в групата" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Ðе може да Ñе Ñъздаде транзакциÑ: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Ðе може да Ñе изтрие табло %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Ðе може да бъде открит ред" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Ðе беше намерена подходÑща транзакциÑ, пропуÑнато" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Ðе беше открит този принÑипал" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Ðе беше открита тази ÑтойноÑÑ‚" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Ðе може да Ñе зареди ÐšÐ»Ð°Ñ %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Ðе може да Ñе зареди ПерÑонализирано Поле #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Ðе може да Ñе зареди ПерÑонализирано Поле %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Ðе може да Ñе зареди копие на билет #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Ðе може да Ñе зареди табло %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Ðе може да Ñе зареди група #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Ðе може да Ñе зареди група %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Ðе може да Ñе зареди връзка" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Ðе може да Ñе зареди обект %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Ðе може да Ñе зареди или Ñъздаде потребител: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Ðе може да Ñе зареди опашка" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Ðе може да Ñе зареди опашка #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Ðе може да Ñе зареди опашка %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Ðе може да Ñе зареди опашка '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Ðе може да Ñе зареди scrip #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Ðе може да Ñе зареди шаблон #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Ðе може да Ñе зареди билет '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Ðе може да Ñе зареди Ñ‚Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Ðе може да Ñе зареди потребител" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Ðе може да Ñе зареди потребител #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Ðе може да Ñе зареди потребител #%1 или потребител '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Ðе може да Ñе зареди потребител '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Ðе може да Ñе подмени Ñъдържанието Ñ Ð´ÐµÑˆÐ¸Ñ„Ñ€Ð¸Ñ€Ð°Ð½Ð¸ данни: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Ðе може да Ñе подмени Ñъдържанието Ñ ÑˆÐ¸Ñ„Ñ€Ð¸Ñ€Ð°Ð½Ð¸ данни: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Ðе може да Ñе Ñведе базата '%1' в URI.о" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Ðе може да Ñе Ñведе целта '%1' в URI." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "ÐаблюдателÑÑ‚ на %1 не може да бъде уÑтановен: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Ðе може да Ñе уÑтанови чаÑтниÑÑ‚ ключ" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Ðе може да Ñе унищожи чаÑтниÑÑ‚ ключ" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Държава" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Създай" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Създай билети" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Създай перÑонализирано поле" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Създай перÑонализирано поле за опашка %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Създай ново табло" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Създай нова група" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Създай нов потребител" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Създай опашка" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Създай шаблон" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Създай билет" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "" #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Създай нови билети, базирайки Ñе на шаблона на този scrip" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Създай лични табла" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Създай ÑиÑтемни табла" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Създай билет" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Създаден" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Създаден от" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Създадено е потребителÑко поле %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "СъздаденОт" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "СъздаденОтноÑително" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Създател" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "КриптографиÑ" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Текущи връзки" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Текущи членове" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Текущо търÑене" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Текущи наблюдатели" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "ПерÑонализирани полета" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "ПерÑонализирани полета за %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "ИнÑтрукции за приготовление на перÑонализирано дейÑтвие" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "ПерÑонализирано уÑловие" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "ПерÑонализирано поле %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "ПерÑонализирано поле %1 не Ñе отнаÑÑ Ð´Ð¾ този обект" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "ПерÑонализирано поле %1 има указана ÑтойноÑÑ‚." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "ПерÑонализирано поле %1 нÑма указана ÑтойноÑÑ‚." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "ПерÑонализирано поле %1 не е открито" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "СтойноÑтта %1 не беше намерена за перÑонализирано поле %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "СтойноÑтта на перÑонализирано поле не може да бъде изтрита" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "СтойноÑтта на перÑонализирано поле беше изтрита" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "ПерÑонализираноПоле" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "СтойноÑÑ‚ÐаПерÑонализираноПоле" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "ПерÑонализирай" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "ОÑновни перÑонализации" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "ПерÑÐ¾Ð½Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð½Ð° имейл адреÑи" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð½Ð° имейл" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Парола за базата данни" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "ПотребителÑко име за базата данни" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Дневно резюме" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Табло" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Ðе може да бъде Ñъздадено табло: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Ðе може да бъде обновено табло: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Табло обновено" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Табла" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "ÐÐ´Ñ€ÐµÑ Ð½Ð° базата данни" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Име на базата данни" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Парола за базата данни на RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Порт на базата данни" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Тип на базата данни" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "ПотребителÑко име за базата данни на RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Формат на датата" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Дати" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "дек" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Разшифроване" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Опашка по подразбиране" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "По подразбиране: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "По подразбиране: %1/%2 променен от %3 на %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "ФорматПоПодразбиране" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Изтриване" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Изтриване на шаблон" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Изтриването пропадна: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Изтриване на лични табла" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Изтриване на ÑиÑтемни табла" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Изтриване на билети" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Изтриване на ÑтойноÑти" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Изтрит е %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "ЗаÑвки изтрити" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Съхранено търÑене изтрито" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Изтриването на този обект ще наруши интегритета на референциите" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Изтриването на този обект ще наруши интегритета на референциите" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Отказ" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "ЗавиÑещи" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "ЗавиÑими" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "ЗавиÑимоÑÑ‚ от %1 добавена" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "ЗавиÑимоÑÑ‚ от %1 изтрита" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "ЗавиÑимоÑÑ‚ към %1 добавена" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "ЗавиÑимоÑÑ‚ към %1 изтрита" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "ЗавиÑимОт" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "ЗавиÑи от" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "ЗавиÑиОт" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Ðизх" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Опишете проблема по-долу" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "ОпиÑание" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "ПоÑока" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Изключен" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Изглед" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Показване на ÑпиÑъка за контрол на доÑтъпа" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Показвани колони" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Име на домейн" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ðе включвайте http://, проÑто нещо като 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Ðе опреÑнÑвай началната Ñтраница." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Ðе опреÑнÑвай резултатите от търÑенето." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ðе опреÑнÑвай тази Ñтраница." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Ðе Ñе доверÑвай на този ключ въобще" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "ИзтеглÑне" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "ИзтеглÑне на dump файл" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Краен Ñрок" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "ГРЕШКÐ: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "ЛеÑно обновление на вашите отворени билети" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Редактиране" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Редактиране на перÑонализирани полета" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Редактиране на перÑонализирани полета за %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Редактиране на перÑонализирани полета за вÑички групи" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Редактиране на перÑонализирани полета за вÑички опашки" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° перÑонализирани полета за вÑички потребители" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° перÑонализирани полета за билети във вÑички опашки" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° връзки" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° заÑвката" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° търÑенето" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° ÑиÑтемни шаблони" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° перÑонализирано поле %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° членÑтвото за група %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "ЕфективенId" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "ТрÑбва да бъде определена база или цел" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "ÐÑмате право да видите Ñъхранено търÑене %1 или идентификаторът е неправилен" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "Ел. поща" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Електронно резюме" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Ел. поща Ñе използва" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "ДоÑтавка на ел. поща" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Шаблон за ел. поща за периодични нотификационни резюмета" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "ЕлПоща" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Включен" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Включено (ИзчиÑтвайки тази отметка изключвате това перÑонализирано поле)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Включена (ИзчиÑтвайки тази отметка изключвате тази група)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Включена (ИзчиÑтвайки тази отметка изключвате тази опашка)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Включени опашки" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Включено ÑÑŠÑтоÑние %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Шифриране" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Шифрирай по подразбиране" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Шифриране/дешифриране" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Шифриране/дешифриране на Ñ‚Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ #%1 от билет #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Въведете множеÑтво ÑтойноÑти" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Въведете множеÑтво ÑтойноÑти Ñ Ð°Ð²Ñ‚Ð¾-довършване" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Въведете обекти или URI-та, Ñ ÐºÐ¾Ð¸Ñ‚Ð¾ ще Ñе Ñвържат обектите. Разделете множеÑтво Ð²ÑŠÐ²ÐµÐ´ÐµÐ½Ð¸Ñ Ñ ÑˆÐ¿Ð°Ñ†Ð¸Ð¸." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Въведете една ÑтойноÑÑ‚" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Въведете една ÑтойноÑÑ‚ Ñ Ð°Ð²Ñ‚Ð¾-довършване" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Въведете опашки или URI-та, Ñ ÐºÐ¾Ð¸Ñ‚Ð¾ ще Ñе Ñвържат опашките. Разделете множеÑтво Ð²ÑŠÐ²ÐµÐ´ÐµÐ½Ð¸Ñ Ñ ÑˆÐ¿Ð°Ñ†Ð¸Ð¸." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Въведете билети или URI-та, Ñ ÐºÐ¾Ð¸Ñ‚Ð¾ ще Ñе Ñвържат билетите. Разделете множеÑтво Ð²ÑŠÐ²ÐµÐ´ÐµÐ½Ð¸Ñ Ñ ÑˆÐ¿Ð°Ñ†Ð¸Ð¸." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Въведете най-много %1 ÑтойноÑти" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Въведете най-много %1 ÑтойноÑти Ñ Ð°Ð²Ñ‚Ð¾-довършване" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Грешка" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Грешка към ÑобÑтвеника на RT: публичен ключ" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Грешка: ЛипÑващо табло" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Грешка: лоши GnuPG данни" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Грешка: нÑма публичен ключ" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Грешка: публичен ключ" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "ЕÑкалиране на билети" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Приблизително" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Ð’Ñички" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Пример:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Изтичане" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "РазширеноСъÑтоÑние" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Допълнителна информациÑ" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Извличане на таг за тема" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Извличане на тагове от темата на Ñ‚Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ Ð¸ добавÑнето им към темата на билета." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "ÐеуÑпех при Ñвързването Ñ Ð±Ð°Ð·Ð°Ñ‚Ð° данни: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Грешка при Ñъздаването на атрибут %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "ПотребителÑка пÑевдо-група 'Привилегировани' не е намерена." #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "ПотребителÑка пÑевдо-група 'Ðепривилегировани' не е намерена" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "ÐеуÑпех при зареждането на %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "ÐеуÑпех при зареждането на %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "ÐеуÑпех при зареждането на модул %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "ÐеуÑпех при зареждането на обект за %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "ÐеуÑпех при зареждането на шаблон" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "ÐеуÑпех при разбор на шаблон" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "фев" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Източник на ÑтойноÑти за полето:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Име на файл" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Попълнете аргументите" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Запълване на кутиите Ñ Ñ†Ð²ÑÑ‚ използвайки" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Попълване на множеÑтво текÑтови облаÑти" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Попълване на множеÑтво wikitext облаÑти" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Попълване на една теÑктова облаÑÑ‚" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Попълване на една wikitext облаÑÑ‚" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Попълнете това поле Ñ URL." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Попълване на макÑимум %1 текÑтови облаÑти" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Попълване на макÑимум %1 wikitext облаÑти" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Окончателен приоритет" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "ОкончателенПриоритет" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Попълнете вÑички потребители, чиито" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Ðамерете групи, чиито" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Ðамерете хора, чиито" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Ðамиране на билети" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Край" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Първо" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Ðаложи промÑна" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Формат" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Препращане" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Препращане на Ñъобщение" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Препращане на Ñъобщение и връщане" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Препращане на билет" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Препращане на билет #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Препращане на Ñ‚Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Ðамерени %quant(%1,билет)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Ðамерен обект" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "ЧеÑтота" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "пт" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "петък" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Общи" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Първи Ñтъпки" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Даден на %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Глобални" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð½Ð° глобални перÑонализирани полета" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Глобален portlet %1 Ñъхранен." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Давай" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Давай!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Иди до билет" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Графика" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "СвойÑтва на графиката" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Графични диаграми не Ñа налични" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Група" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Права на групи" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Групата вече Ñъдържа член: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Групата не може да бъде Ñъздадена: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Групата Ñъздадена" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Групата изключена" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Групата включена" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Групата нÑма такъв член" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Групата не е намерена" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Групи" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Групите не могат да бъдат членове на ÑобÑтвените Ñи членове" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Групи, отговарÑщи на критериите за търÑене" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Групи, в които принадлежи този потребител" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "ИмаЧлен" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Заглавие на препратен билет" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Заглавие на препратено Ñъобщение" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Здравейте!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Помогнете ни да уÑтановим полезни ÑтойноÑти по подразбиране за RT." #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "ИÑториÑ" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° група %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° опашка %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° потребител %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Интервал на опреÑнÑване на началната Ñтраница" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Ðачална Ñтраница" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "ЧаÑ" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "ЧаÑове" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Имам %quant(%1,бетонобъркачка)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "СамоличноÑÑ‚" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Ðко одобрение е отхвърлено, отхвърлÑне на оригинала и изтриване на предÑтоÑщи одобрениÑ" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Ðко този инÑтрумент е setgid, недобронамерен локален потребител би могъл да го използва за да получи админиÑтративен доÑтъп до RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Ðко вече разполагате Ñ Ñ€Ð°Ð±Ð¾Ñ‚ÐµÑ‰ RT Ñървър и база данни, използвайте момента за да Ñе уверите, че Ñървърът Ñ Ð±Ð°Ð·Ð¸ данни работи и RT Ñървърът може да Ñе Ñвърже Ñ Ð½ÐµÐ³Ð¾. Щом това е готово, Ñпрете и пуÑнете RT Ñървъра.

    " #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Ðко Ñте променили нещо по-горе, Ñе уверете, че" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Ðко предпочитаната от Ð²Ð°Ñ Ð±Ð°Ð·Ð° данни не е в ÑпиÑъка по-долу, това означава, че RT не уÑÐ¿Ñ Ð´Ð° намери драйвер за базата данни инÑталиран локално. Бихте могли да поправите това като използвате %1 за да изтеглите и инÑталирате DBD::MySQL, DBD::Oracle или DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Ðевалидна ÑтойноÑÑ‚ за %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "ÐепроменÑемо поле" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Включване на деактивирани перÑонализирани полета в ÑпиÑъка." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Включване на деактивирани групи в ÑпиÑъка." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Включване на деактивирани опашки в ÑпиÑъка." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Включване на деактивирани потребители в търÑенето." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Включване на Ñтраница" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Индивидуални ÑъобщениÑ" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Информиране на ÑобÑтвеника на RT, че потребител(и) има проблем Ñ Ð¿ÑƒÐ±Ð»Ð¸Ñ‡Ð½Ð¸ ключове" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Информиране на потребител, че табло, за което Ñе е абонирал(а) липÑва" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Информиране на потребител, че Ñъобщение, което е изпратил(а) има невалидни GnuPG данни" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Информиране на потребител, че има проблеми Ñ Ð¿ÑƒÐ±Ð»Ð¸Ñ‡Ð½Ð¸Ñ Ñи ключ и не може да приема шифрирано Ñъдържание" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Информиране на потребител за ÑмÑна на паролата" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Информиране на потребител, че Ñме получили шифрирана ел. поща, а нÑмаме чаÑтни ключове за дешифриране" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Първоначален приоритет" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "ПървоначаленПриоритет" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Ð˜Ð½Ð¸Ñ†Ð¸Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð½Ð° базата данни" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Грешка при въвеждането" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Въведеното трÑбва да ÑъответÑтва на %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Вътрешна грешка: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Ðевалиден %1: '%2' не изглежда като Ð°Ð´Ñ€ÐµÑ Ð½Ð° ел. поща" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Ðевалиден %1: нужно е да е чиÑло" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Ðевалидни данни" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Ðевалиден обект" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Ðевалиден образец: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Ðевалидна опашка" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Ðевалидно право." #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Ðевалидно право. ÐеуÑпех при канонизациÑта на право '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Ðевалиден ÑинтакÑÐ¸Ñ Ð½Ð° Ð°Ð´Ñ€ÐµÑ Ð½Ð° ел. поща" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Ðевалидна ÑтойноÑÑ‚ за %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Ðевалидна ÑтойноÑÑ‚ за перÑонализирано поле" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Ðе е шифрирано" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Изключително важно е да не е позволено на непривилегировани потребители да Ñтартират този инÑтрумент." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Препоръчително е да Ñъздадете непривилегирован UNIX потребител Ñ Ð¿Ñ€Ð°Ð²Ð¸Ð»Ð½Ð¾ членÑтво в групи и доÑтъп до RT, за да Ñтартирате този инÑтрумент." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Приема редица аргументи:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "КурÑив" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Ñну" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "юли" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Джъмбо" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "юни" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "ОÑтавете 'localhost' ако не Ñте Ñигурен/на. ОÑтавете празно за да локална връзка през socket." #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Език" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "ГолÑм" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "ПоÑледен" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "ПоÑледен контакт" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "ПоÑледно Ñвързване" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "ПоÑледно обновÑване" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "ПоÑледно обновÑване от" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "ПоÑледно обновÑване от" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "ПоÑледноОбновÑване" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "ПоÑледноОбновÑванеОт" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "ПоÑледноОбновÑванеОтноÑително" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "ОÑтавете празно за да използвате ÑтойноÑтта по подразбиране за вашата база данни" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "ОÑтавете това така, за да използвате потребителÑкото име по подразбиране за типа на вашата база данни" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "ОтлÑво" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Легенди" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Дължина в Ñимволи; Използвайте '0' за показване на вÑички ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¿Ð¾Ñледователно, без значение дължината им" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "ПозволÑване на този потребител доÑтъп до RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "ПредоÑтавÑне на права на този потребител" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Хайде!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Връзка" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Връзката вече ÑъщеÑтвува" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Връзката не е намерена" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Свързване на билет #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Свързване на ÑтойноÑтите Ñ" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Свързано" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "СвързаноОт" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "СвързаноКъм" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Връзки" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Зареждане" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Зареждане на Ñъхранено търÑене:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Заредено %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Заредено оригинално \"%1\" Ñъхранено търÑене" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Заредени модули на perl" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Заредено Ñъхранено търÑене \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Локал" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "ЛокализираноДатаВреме" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "ЛокализациÑ" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "ВлÑзохте като %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "ИзлÑзохте" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Вход" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Изход" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Грешка в типа на търÑене" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Поща" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Главен тип на връзките" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Ðаправи ÑобÑтвеник" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Ðаправи ÑÑŠÑтоÑние" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Ðаправи краен Ñрок" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Ðаправи дата на Ñтартиране" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Ðаправи дата на Ñтарт" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Ðаправи дата на нареждане" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Ðаправи приоритет" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Ðаправи опашка" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Ðаправи тема" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Управление на перÑонализирани полета и ÑтойноÑти на такива" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Управление на групи и членÑтво в такива" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Управление на ÑвойÑтва и конфигурациÑ, които Ñе отнаÑÑÑ‚ до вÑички опашки" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Управление на опашки и Ñпецифичните им ÑвойÑтва" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Управление на Ñъхранени графики" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Управление на потребители и пароли" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "мар" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Ð’Ñички ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ñа маркирани като прочетени" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "МакÑимална дължина на Ñъобщение инлайн" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "май" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Член" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Член %1 добавен" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Член %1 премахнат" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Член добавен: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Членът е изтрит" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Членът не е изтрит" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "ЧленÐа" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Членове" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "ЧленÑтво в %1 добавено" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "ЧленÑтво в %1 премахнато" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "ЧленÑтва" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "ЧленÑтва на потребителÑÑ‚ %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Сливането уÑпешно" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Сливането неуÑпешно. Ðе може да Ñе уÑтанови EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Сливане в" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "СлÑто в %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Съобщение" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "ТÑлото на Ñъобщението не е показано, защото изпращачът е пожелал да не го показва инлайн." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "ТÑлото на Ñъобщението не е показано, защото не е прав текÑÑ‚." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "ВиÑочина на кутиÑта ÑÑŠÑ Ñъобщение" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Ширина на кутиÑта ÑÑŠÑ Ñъобщение" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Съобщението не може да бъде запиÑано" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Съобщение за потребител" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Съобщението запиÑано" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Минимална дължина на паролата" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Минути" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "ЛипÑва първичен ключ?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Мобилен" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° членове" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° перÑонализирано поле за опашка %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° аÑоциирани обекти на %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° ÑтойноÑти на перÑонализирани полета" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° датите за билет #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° глобални перÑонализирани полета" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° глобални групови права" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° глобални потребителÑки права" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° групови метаданни или изтриване на група" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° групови права за перÑонализирано поле %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° групови права за група %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° групови права за опашка %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° ÑобÑтвен RT акаунт" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° хората, Ñвързани Ñ Ð±Ð¸Ð»ÐµÑ‚ #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° лични табла" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° scrips за опашка %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° scrips, които Ñе отнаÑÑÑ‚ до вÑички опашки" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° ÑиÑтемни табла" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° шаблон %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° шаблони, които Ñе отнаÑÑÑ‚ до вÑички опашки" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° табло %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° \"RT обзор\" изгледът по подразбиране" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° група %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° абонаментите за табло %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° потребител %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° билет # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° билет #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° билети" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° потребителÑки права за перÑонализирано поле %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° потребителÑки права за група %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Ð ÐµÐ´Ð°ÐºÑ†Ð¸Ñ Ð½Ð° потребителÑки права за опашка %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "пон" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "понеделник" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "МножеÑтво" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Ðужно е да поÑочите атрибут 'Име'" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Моите %1 билети" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "МоÑÑ‚ ден" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Моите одобрениÑ" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Моите табла" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Моите Ñъхранени търÑениÑ" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Име" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Името е заето" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Ðикога" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Ðов" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Ðови връзки" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Ðови озчакващи одобрение" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Ðово търÑене" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Ðови ÑъобщениÑ" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Ðова парола" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð·Ð° нова парола изпратена" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Ðово напомнÑне:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Ðов билет" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "ÐовиÑÑ‚ билет не ÑъщеÑтвува" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Ðови наблюдатели" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Следващо" #: lib/RT/User.pm:96 msgid "NickName" msgstr "ПÑевдоним" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "ПÑевдоним" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Ðе" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "ÐÑма %1 зареден" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Ðе е дефиниран клаÑ" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "ÐÑма перÑонализирано поле" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Ðе е дефинирано перÑонализирано поле" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Ðе е дефинирана група" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "ÐÑма заÑвка" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Ðе е дефинирана опашка" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "ÐÑма тема" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "ÐÑма шаблон" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "ÐÑма дейÑтвие" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Ðе е указана колона" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "ÐÑма въведени коментари за този потребител" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "ÐÑма опиÑание за %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Ðе е указана група" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Ðе Ñа намерени групи, отговарÑщи на критериите за търÑене." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "ÐÑма ключ, подходÑщ за шифриране" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "ÐÑма прикачено Ñъобщение" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Ðе е указано име" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Ðе е нужно шифриране" #: lib/RT/User.pm:970 msgid "No password set" msgstr "ÐÑма парола" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "ÐÑма право да Ñъздава опашки" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "ÐÑма право да Ñъздава билети в опашка '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "ÐÑма право да види този билет" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "ÐÑма право да ÑъхранÑва общоÑиÑтемни търÑениÑ" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "ÐÑма право да уÑтановÑва предпочитаниÑ" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "ÐÑма право да преглежда Ð¾Ð±Ð½Ð¾Ð²ÐµÐ½Ð¸Ñ Ð±Ð¸Ð»ÐµÑ‚" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Ðе Ñа избрани принÑипали." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "ÐÑма чаÑтен ключ" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Ðе Ñа намерени опашки, отговарÑщи на критериите за търÑене." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Ðе е указано право" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Ðе Ñа намерени права" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "ÐÑма търÑене, на което да Ñе дейÑтва." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Без тема" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "ÐÑма такъв ключ или е неподходÑщ за подпиÑване" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Ðе Ñа намерени билети." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Ðе е указан тип на транзакциÑта" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "ÐÑма използваеми ключове." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "ÐÑма намерени потребители, които отговарÑÑ‚ на критериите за търÑене." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Ðикой" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "ÐÑма" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "ÐеÑъщеÑтвуващо поле?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Ðе е намерен" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Ðе Ñте впиÑани." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Ðеуказано" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Бележки" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Ðе може да бъде изпратена нотификациÑ" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° AdminCcs" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° AdminCcs като коментар" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° Ccs" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° Ccs като коментар" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° други получатели" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° други получатели като коментар" #: etc/initialdata:47 msgid "Notify Owner" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° ÑобÑтвеника" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° ÑобÑтвеника като коментар" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° ÑобÑтвеника за Ñ‚ÐµÑ…Ð½Ð¸Ñ Ð¾Ñ‚Ñ…Ð²ÑŠÑ€Ð»ÐµÐ½ билет" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° ÑобÑтвеника за одобрението на билета им и готовноÑтта за работа" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° ÑобÑтвеника за одобрението на билета им от нÑкои или вÑички одобрители" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° ÑобÑтвеника, заÑвителите, Ccs и AdminCcs" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° ÑобÑтвеника, заÑвителите, Ccs и AdminCcs като коментар" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° ÑобÑтвениците и AdminCcs за нови елементи, очакващи одобрение" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° заÑвителÑ, за това, че Ñ‚ÐµÑ…Ð½Ð¸Ñ Ð±Ð¸Ð»ÐµÑ‚ е одобрен от вÑички одобрители" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° заÑвителÑ, за това, че Ñ‚ÐµÑ…Ð½Ð¸Ñ Ð±Ð¸Ð»ÐµÑ‚ е одобрен от нÑкой одобрител" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° заÑвителите" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° заÑвителите и Ccs" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "ÐÐ¾Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° заÑвителите и Ccs като коментар" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Съобщавай ми за непрочетени ÑъобщениÑ" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "ное" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ИЛИ" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "ÐеуÑпех при Ñъздаването на обект" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "ÐеуÑпех при изтриването на обект" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Обектът Ñъздаден" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Обектът изтрит" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Разминаване в типа на обектите" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "СпиÑъкът Ñ Ð¾Ð±ÐµÐºÑ‚Ð¸ е празен" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "окт" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "Ðа %1, %2 напиÑа:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "При затварÑне" #: etc/initialdata:170 msgid "On Comment" msgstr "При коментар" #: etc/initialdata:142 msgid "On Correspond" msgstr "При кореÑпонденциÑ" #: etc/initialdata:131 msgid "On Create" msgstr "При Ñъздаване" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "При промÑна на ÑобÑтвеникът" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "При промÑна на приоритетът" #: etc/initialdata:199 msgid "On Queue Change" msgstr "При промÑна на опашката" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "При отхвърлÑне" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "При ре-отварÑне" #: etc/initialdata:205 msgid "On Resolve" msgstr "При разрешаване" #: etc/initialdata:176 msgid "On Status Change" msgstr "При промÑна на ÑÑŠÑтоÑнието" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "При транзакциÑ" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Еднократно ÑлÑпо копие" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Еднократно копие" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Покажи Ñамо Ð¾Ð´Ð¾Ð±Ñ€ÐµÐ½Ð¸Ñ Ð½Ð° заÑвки, Ñъздадени Ñлед %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Покажи Ñамо Ð¾Ð´Ð¾Ð±Ñ€ÐµÐ½Ð¸Ñ Ð½Ð° заÑвки, Ñъздадени преди %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Покажи Ñамо перÑонализирани полета за:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Отворени билети" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "ОтварÑне на Ð°Ð´Ñ€ÐµÑ (URL)" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Отворени билети" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "ОтварÑне на билетите при кореÑпонденциÑ" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Опции" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Подреждане по" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "ОрганизациÑ" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Билет-произход: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "ЗапиÑана излизаща ел. поща отноÑно коментар" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "ЗапиÑана излизаща ел. поща" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "СобÑтвени билети" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "СобÑтвеник" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "СобÑтвеник '%1' нÑма право да притежава този билет." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "СобÑтвеникът Ñменен от %1 на %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "СобÑтвеникът наÑилÑтвено променен от %1 на %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "ИмеÐаСобÑтвеника" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Страница" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Страница 1 от 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Страницата не е намерена" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Пейджър" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Родители" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Парола" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Паролата е променена" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Ðужно е паролата да бъде дълга поне %1 Ñимвола" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Паролата уÑтановена" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Парола: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Парола: ДоÑтъпът отказан" #: etc/initialdata:714 msgid "PasswordChange" msgstr "ПромÑнаПарола" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Паролите не Ñъвпадат." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Път до sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Хора" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Изпълни дейÑтвие, зададено от потребителÑ" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl конфигурациÑ" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "ДоÑтъпът отказан" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "ДоÑтъпът отказан" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Телефонни номера" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "МолÑ, проверете адреÑа и опитайте отново." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Възможни Ñкрити търÑениÑ" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "ПредпочитаниÑ" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "ÐŸÑ€ÐµÐ´Ð¿Ð¾Ñ‡Ð¸Ñ‚Ð°Ð½Ð¸Ñ %1 за потребител %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "ПредпочитаниÑта запазени за %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "ПредпочитаниÑта запазени за потребител %1." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "ПредпочитаниÑта запазени." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Предпочитан ключ: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Предпочитан ключ" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Предишен" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "ПринÑипал %1 не е намерен." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Покажи резултатните резюме ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð½Ð° STDOUT; не ги изпращай по пощата. Ðе ги маркирай като изпратени" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Разпечатване на това Ñъобщение" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Приоритет" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "ПоверителноÑÑ‚" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "ПоверителноÑÑ‚:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "ЧаÑтен ключ" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Привилегирован" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "СъÑтоÑние на привилегированоÑÑ‚: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Привилегировани потребители" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Обработка без транзакциÑ, нÑкои уÑÐ»Ð¾Ð²Ð¸Ñ Ð¸ дейÑÑ‚Ð²Ð¸Ñ Ð¼Ð¾Ð¶Ðµ да пропаднат. ОбмиÑлете използването на --transaction аргумент" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "ПÑевдогрупа за вътрешна употреба" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "ИзиÑква Ñе публичен ключ '0x%1' за проверката на подпиÑа" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "ЗаÑвки" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "ЗаÑвка" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Строител на заÑвки" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Опашка" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Опашка %1 не е намерена" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Име на опашката" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Опашката вече ÑъщеÑтвува" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "ÐеуÑпех при Ñъздаването на опашка" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "ÐеуÑпех при зареждането на опашка." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Опашката Ñъздадена" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Идентификатор на опашката" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Опашката не е намерена" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Ключ на опашката" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "ОпашкаÐдминКопие" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "ОпашкаКопие" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "ОпашкаИме" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "ОпашкаÐаблюдател" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Опашки" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Опашки, които админиÑтрирам" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Опашки, от които получавам админиÑтративни копиÑ" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Бързо търÑене" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Бързо Ñъздаване на билет" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT админиÑтрациÑ" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "Ел. поща на админиÑтратора на RT" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT грешка" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT размер" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT обзор" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "RT обзор за потребител %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT може да комуникира Ñ Ð²Ð°ÑˆÐ¸Ñ‚Ðµ потребители отноÑно нови билети или нова кореÑÐ¿Ð¾Ð½Ð´ÐµÐ½Ñ†Ð¸Ñ Ð¿Ð¾ билети. Кажете ни къде да намерим sendmail (или ÑъвмеÑтим ÑÑŠÑ sendmail двоичен файл, като например този доÑтавÑн от postfix). RT Ñъщо така е нужно да знае кой да уведоми, когато нÑкой изпрати невалидна ел. поща. Това не трÑбва да е адреÑ, който Ñе връща обратно в RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT може да включва Ñъдържание от друга web-уÑлуга, когато показва това перÑонализирано поле." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT може да направи ÑтойноÑтите на това перÑонализирано поле в хиперлинкове към друга уÑлуга." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT за %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT е промишлен ÐºÐ»Ð°Ñ ÑиÑтема за Ñледене на проблеми, проектирана за да ви позволи да управлÑвате интелигентно и ефективно задачи, проблеми, заÑвки, дефекти или каквото и да било друго, което прилича на \"единица дейÑтвие\"." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT Ñе използва от компании във Fortune 100, еднолични бизнеÑи, правителÑтвени агенции, образователни инÑтитуции, болници, неÑтопанÑки организации, неправителÑтвени организации, библиотеки, проекти Ñ Ð¾Ñ‚Ð²Ð¾Ñ€ÐµÐ½ код и вÑички други видове организации на вÑички Ñедем континента (да, дори Ðнтарктика)." #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT ще Ñе Ñвърже Ñ Ð±Ð°Ð·Ð°Ñ‚Ð° данни, използвайки този потребител. Той ще бъде Ñъздаден за ваÑ." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT ще Ñъздаде потребител, наречен \"root\" и ще уÑтанови това като паролата му" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT ще подмени %1 и %2 Ñ id на запиÑа и ÑтойноÑтта на перÑонализираното поле, Ñъответно" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT ще използва този низ за да идентифицира вашата уникална инÑÑ‚Ð°Ð»Ð°Ñ†Ð¸Ñ Ð¸ ще търÑи за него в темите на ел. поща, за да реши към кой билет принадлежи даденото Ñъобщение. Препоръчваме да уÑтановите това на вашиÑÑ‚ Интернет домейн (напр.: example.com)." #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT работи Ñ Ñ€ÐµÐ´Ð¸Ñ†Ð° различни бази данни. Поддържат Ñе MySQL, PostgreSQL, Oracle и SQLite." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "ИÑтинÑко име" #: lib/RT/User.pm:95 msgid "RealName" msgstr "ИÑтинÑкоИме" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Ð—Ð°Ð¿Ð¸Ñ Ð½Ð° вÑички обновÑваниÑ" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "РекурÑивен член" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Ð ÐµÑ„ÐµÑ€ÐµÐ½Ñ†Ð¸Ñ Ð¾Ñ‚ %1 добавена" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Ð ÐµÑ„ÐµÑ€ÐµÐ½Ñ†Ð¸Ñ Ð¾Ñ‚ %1 изтрита" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Ð ÐµÑ„ÐµÑ€ÐµÐ½Ñ†Ð¸Ñ ÐºÑŠÐ¼ %1 добавена" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Ð ÐµÑ„ÐµÑ€ÐµÐ½Ñ†Ð¸Ñ ÐºÑŠÐ¼ %1 изтрита" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Референции от" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "РеференцииОт" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "ОтнаÑÑ Ñе към" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "ОтнаÑÑСеКъм" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "ОпреÑнÑване" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "ОпреÑнÑване на тази Ñтраница на вÑеки %1 минути." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "ÐапомнÑне '%1' добавено" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "ÐапомнÑне '%1' завършено" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "ÐапомнÑне '%1' отново отворено" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "ÐапомнÑниÑ" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "ÐапомнÑÐ½Ð¸Ñ Ð·Ð° билет #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Премахване на админиÑтративно копие" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Премахване на отметка" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Премахване на копие" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Премахване на заÑвител" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Отговор" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "ÐÐ´Ñ€ÐµÑ Ð·Ð° отговор" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Отговор на заÑвителите" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Отговор на билети" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "ЗаÑвител" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "ГрупаÐаЗаÑвителÑ" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "ЗаÑвители" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Задължителен параметър '%1' не е указан" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Ðнулиране" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Преиздаване на тайниÑÑ‚ оторизиращ Ñимвол" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Връщане ÑтойноÑти по подразбиране" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "МеÑтожителÑтво" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Разрешаване" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Разрешаване на билет #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Разрешен" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "РазрешенОтноÑително" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Отговор" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Резултати" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Връщане към билета" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Ðапишете наново паролата" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "ВъзÑтановÑване" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Право заредено" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "ÐеуÑпех при отнемането на право" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Правото не е заредено" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "ÐеуÑпех при предоÑтавÑнето на право за %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Роли" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Редове" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Редове за кутиÑ" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Редове за Ñтраница" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite е база данни, коÑто не Ñе нуждае от Ñървър или въобще нÑкаква конфигурациÑ. Ðвторите на RT Ñ Ð¿Ñ€ÐµÐ¿Ð¾Ñ€ÑŠÑ‡Ð²Ð°Ñ‚ за теÑтове, демота и разработка, но е неподходÑща за виÑокообемен производÑтвен RT Ñървър." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Ñб" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Ñъбота" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Запазване" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Ð—Ð°Ð¿Ð¸Ñ Ð½Ð° промените" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Ð—Ð°Ð¿Ð¸Ñ Ð½Ð° предпочитаниÑта" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Ð—Ð°Ð¿Ð¸Ñ ÐºÐ°Ñ‚Ð¾ ново" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "ЗапиÑан %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Запазени диаграми" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Съхранени търÑениÑ" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Scrip Ñъздаден" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Scrips и получатели" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "ТърÑене" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "ÐŸÑ€ÐµÐ´Ð¿Ð¾Ñ‡Ð¸Ñ‚Ð°Ð½Ð¸Ñ Ð½Ð° търÑенето" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "ТърÑене на одобрениÑ" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "ТърÑене на билети" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Опции при търÑене" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Интервал на опреÑнение на резултатите от търÑене" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Таен оторизационен белег" #: bin/rt-crontool:352 msgid "Security:" msgstr "СигурноÑÑ‚:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Вижте Ñъщо:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Избиране" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Избор на вида на базата данни" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Изберете перÑонализирано поле" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Изберете група" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Изберете опашка" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Изберете опашка за новиÑÑ‚ ви билет" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Изберете потребител" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Изберете друг език" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Изберете перÑонализирани полета за вÑички опашки" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Изберете перÑонализирани полета за вÑички потребителÑки групи" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Изберете перÑонализирани полета за вÑички потребители" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Изберете перÑонализирани полета за билети във вÑички опашки" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Изберете перÑонализирани полета за транзакции върху билети във вÑички опашки" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Изберете множеÑтво ÑтойноÑти" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Изберете една ÑтойноÑÑ‚" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Изберете опашки, които да Ñе показват на Ñтраница \"RT обзор\"" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Изберете до %1 ÑтойноÑти" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Избрани перÑонализирани полета" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "ИзбраниÑÑ‚ ключ е или ненадежден, или вече не ÑъщеÑтвува." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Избрани обекти" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Изборът е променен. МолÑ, запазете промените Ñи" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Изпращане на ел. поща до ÑобÑтвеника и вÑички наблюдатели" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Изпращане на ел. поща до ÑобÑтвеника и вÑички наблюдатели като \"коментар\"" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Изпращане на ел. поща до заÑвителите и копиÑта" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Изпращане на ел. поща до заÑвителите и копиÑта като коментар" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Изпращане на Ñъобщение до заÑвителите" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Изпраща ел. поща до изрично указани ÐºÐ¾Ð¿Ð¸Ñ Ð¸ Ñлепи копиÑ" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Изпраща ел. поща до копиÑта" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Изпраща ел. поща до копиÑта като коментар" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Изпраща ел. поща до админиÑтративните копиÑ" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Изпраща ел. поща до админиÑтративните ÐºÐ¾Ð¿Ð¸Ñ ÐºÐ°Ñ‚Ð¾ коментар" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Изпраща ел. поща до ÑобÑтвеника" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Ñеп" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "ÐаÑтройки" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Показване" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Показване на колони" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Показване на резултатите" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Показване на ÑвойÑтвата на билети на %1 ниво" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Показване на одобрените заÑвки" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Показване Ñъщо" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Показване на отхвърлените заÑвки" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Показване на опиÑание на връзката" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Показване на най-Ñтарата иÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð°Ð¹-напред" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Показване на виÑÑщи заÑвки" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Показване на заÑвки, които очакват други одобрениÑ" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Заличител" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Страничен панел" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "ПодпиÑване" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "ПодпиÑване по подразбиране" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "ЗапиÑване като заÑвител на билет или билет или копие от опашката" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "ЗапиÑване като админиÑтративно копие на билет или опашка" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "ПодпиÑ" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "ОпроÑтено търÑене" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Единично" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Име на Ñайта" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Размер" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "ПреÑкочи меню" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "ПреÑкачане на изключен потребител" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Малък" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "ÐÑкои браузъри може да зареждат Ñъдържание Ñамо от ÑÑŠÑ‰Ð¸Ñ Ð´Ð¾Ð¼ÐµÐ¹Ð½ като Ð²Ð°ÑˆÐ¸Ñ RT Ñървър." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Сортиране" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Сортиране" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Укажете дали това е дневно или Ñедмично изпълнение." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Електронна таблица" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Етап" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Ðачало" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "ÐачалоОтноÑително" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Започва" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "ЗапочваОтноÑително" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "СъÑтоÑние" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "СъÑтоÑние" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "ПромÑна на ÑÑŠÑтоÑнието" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "ПромÑна на ÑÑŠÑтоÑнието от %1 на %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Открадни" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Открадни билети" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Стъпка %1 от %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Откраднат от %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Стил" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Тема" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Маркер за тема" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Темата променена на %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Изпращане" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Ðбониране" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Ðбониране за табло %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Ðбониране за табла" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Ðбониран за табло %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Ðбонамент" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "ÐеуÑпех при Ñъздаването на абонамент: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "УÑпешно дешифриране на данни" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "УÑпешно шифриране на данни" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "нед" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "неделÑ" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "ПрекъÑнат" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "СиÑтемна конфигурациÑ" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "СиÑтемни наÑтройки по подразбиране" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "СиÑтемна грешка" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "СиÑтемна грешка: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "СиÑтемни инÑтрументи" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "СиÑтемна грешка. Правото не е предоÑтавено." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "СиÑтемнаРолеваГрупа за вътрешна употреба" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Вземи" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Взимане на билети" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Взет" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Кажете ни нÑколко неща за това как да намерим базата данни, коÑто RT ще използва" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Шаблон" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Шаблон #%1 изтрит" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Шаблон '%1' не е намерен" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Шаблонът е празен" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Шаблон е задължителен аргумент" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Шаблонът премина разбор" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Грешка при разбора на шаблона" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Шаблони" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "ТекÑтовиÑÑ‚ файл не е показан, защото е изключен в предпочитаниÑта." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Текущата ÑтойноÑÑ‚ е Ñъщата" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Това не е ÑтойноÑÑ‚ за това перÑонализирано поле" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Този билет има неразрешени завиÑимоÑти" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Този потребител вече притежава този билет" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Този потребител не ÑъщеÑтвува" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Този потребител вече е привилегирован" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Този потребител вече е непривилегирован" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Този потребител Ñега е привилегирован" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Този потребител Ñега е непривилегирован" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Този потребител не може да притежава билети в тази опашка" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Това не е чиÑлово id" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "ОÑновите" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "Копието на билет" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Паролата на админиÑтратора на базата данни" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "ÐдминиÑтративните ÐºÐ¾Ð¿Ð¸Ñ Ð½Ð° билет" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Името на вашиÑÑ‚ Ñървър Ñ Ð±Ð°Ð·Ð¸ данни (като 'db.example.com')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Следните заÑвки Ñа изтрити и вÑÑка ще бъде премахната от таблото веднъж щом е обновен панела." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Следните заÑвки може да не Ñа видими за вÑички потребители, които виждат това табло." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "Ключът е изключен" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "Ключът е отменен" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "Ключът е проÑрочен" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "Ключът е доверен напълно" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "Ключът е доверен докрай" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Ðовата ÑтойноÑÑ‚ беше уÑтановена." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "СобÑтвеникът на билет" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Страницата, коÑто пожелахте, не беше намерена" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "ЗаÑвителÑÑ‚ на билет" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "ÐаÑтройките, които избрахте, Ñе пазÑÑ‚ в %1" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "СиÑтемата не може да подпиÑва излизащите ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¿Ð¾ ел. поща. Това обикновено означава, че паролата е неправилна или че GPG агента не работи. МолÑ, Ñвържете Ñе незабавно ÑÑŠÑ ÑиÑÑ‚ÐµÐ¼Ð½Ð¸Ñ Ñи админиÑтратор. Проблемните адреÑи Ñа:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Визуална Ñхема" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Има нÑколко ключа подходÑщи за шифриране." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Има непрочетени ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð² този билет." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Има маргинално доверие в този ключ" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "ÐÑма ключ подходÑщ за шифриране." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Има един подходÑщ ключ, но нивото на доверие не е наÑтроено." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Тези конфигурационни опции покриват нÑкои от оÑновните неща, нужни, за да Ñе пуÑне RT. Ðужно е да знаем името на вашата RT инÑталациÑ, както и името на домейна, където ще живее RT. Също така е нужно да Ñе наÑтрои парола за админиÑÑ‚Ñ€Ð°Ñ‚Ð¸Ð²Ð½Ð¸Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ» по подразбиране." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Тази Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ Ðµ доÑтъпна Ñамо за ÑиÑтемни админиÑтратори" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Този инÑтрумент позволÑва на Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ Ð´Ð° изпълнÑва произволни модули за perl от RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Тази Ñ‚Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ Ð¸Ð·Ð³Ð»ÐµÐ¶Ð´Ð° нÑма Ñъдържание" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "четв" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "четвъртък" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Билет" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Билет #%1 Джъмбо обновление: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Графика на взаимоотношениÑта на билет #%1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Билет #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Билет %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Билет %1 Ñъздаден в опашка '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Билет %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° билет # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Билетът разрешен" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "ТърÑене на билет" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Транзакции на билет" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Съдържание на билет" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Тип на Ñъдържанието на билет" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "ÐеуÑпех при Ñъздаването на билет заради вътрешна грешка" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "ÐеуÑпех при зареждането на билета" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Показване на билет" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Метаданни на билет" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "СъÑтоÑнието на билета променено" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "TicketSQL модул за търÑене" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Билети" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Билети %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Билети %1 по %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Билети, които завиÑÑÑ‚ от това одобрение" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Време приблизително" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "ОÑтаващо време" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Време работено" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Време за показване" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "ВремеПриблизително" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "ОÑтаващоВреме" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "ВремеРаботено" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "ЧаÑови поÑÑ" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Заглавие" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "До" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "За Ð·Ð°Ð¿Ð¸Ñ‚Ð²Ð°Ð½Ð¸Ñ Ð¾Ñ‚Ð½Ð¾Ñно поддръжка, тренировка, перÑонализирани разработки или лицензиране, молÑ, Ñвържете Ñе ÑÑŠÑ %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "ИнÑтрументи" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Общо" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "ТранзакциÑ" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Ð¢Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ %1 очиÑтена" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Ð¢Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ Ñъздадена" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "ПерÑонализирани полета на транзакциÑта" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create не уÑпÑ, защото не указахте тип на обекта и id" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "ДатаÐаТранзакциÑ" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Транзакциите Ñа неотменими" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Доверие" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "вт" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "вторник" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Тип" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Типът Ñменен от '%1' на '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "ÐеуÑпех при определÑнето на типа на обекта и id" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Unix логин" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Ðепознат (не е възложена ÑтойноÑÑ‚ за доверие)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Ðепознат (тази ÑтойноÑÑ‚ е нова за ÑиÑтемата)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Ðепознато кодиране на Ñъдържанието %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Ðепознато поле: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Премахване на ограничение" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Без ограничение" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Ðенаименовано търÑене" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Ðепривилегирован" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Ðеизбрано перÑонализирано поле" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Ðеизбрани обекти" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Премахване на чаÑÑ‚Ð½Ð¸Ñ ÐºÐ»ÑŽÑ‡" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Отдаден" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "ОбновÑване" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Графика на обновÑването" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "ОбновÑване на билет" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Тип на обновÑването" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "ОбновÑване на форматът и търÑене" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "ОбновÑване на множеÑтво билети" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "ОбновÑването не е запиÑано." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "ОбновÑване на билет" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "ОбновÑване на билет #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "ОбновÑване на билет #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Типът на обновление не е нито кореÑпонденциÑ, нито коментар." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "СъÑтоÑниеÐаОбновлението" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Обновен" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Обновено Ñъхранено търÑене \"%1\"" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Качване" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Качване на множеÑтво файлове" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Качване на множеÑтво изображениÑ" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Качване на един файл" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Качване на едно изображение" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Качване до %1 файла" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Качване до %1 изображениÑ" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Използване ÑтойноÑтта по подразбиране (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Използване на други админиÑтративни инÑтрументи на RT" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Използване на ÑиÑтемната ÑтойноÑÑ‚ по подразбиране(%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Потребител" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Потребител (Ñъздаден - изтича)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "ПотребителÑко зададено" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "ПотребителÑки права" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "ПотребителÑÑ‚ поиÑка непознат тип на обновлението за перÑонализирано поле %1 за %2 обект #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "ÐеуÑпех при Ñъздаването на потребител: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "ПотребителÑÑ‚ е Ñъздаден" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "ПотребителÑÑ‚ изключен" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "ПотребителÑÑ‚ включен" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "ПотребителÑÑ‚ има празен Ð°Ð´Ñ€ÐµÑ Ð·Ð° ел. поща" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "ПотребителÑÑ‚ зареден" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "ПотребителÑки-зададени групи" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "ПотребителÑко име" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Формат на потребителÑкото име" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Потребители" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Потребители, отговарÑщи на критериите за търÑене" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Използване на Ñ‚Ñ€Ð°Ð½Ð·Ð°ÐºÑ†Ð¸Ñ #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Валидна заÑвка" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Валидиране" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "СтойноÑти" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Преглед на лични табла" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Преглед на ÑиÑтемни табла" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "виÑочина на WYSIWYG композитора" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "WYSIWYG композитор на ÑъобщениÑ" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Внимание! Това ÐЕ Е подпиÑано!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Ðаблюдател" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "Група на наблюдателÑ" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Ðаблюдатели" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Ðамерихме вашата база данни и уÑпешно Ñе Ñвързваме като админиÑтратор. Можете да щракнете на \"ОÑновни перÑонализации\", за да продължите да перÑонализирате RT." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Ðужно е да знаем името на базата данни, коÑто RT ще използва, както и къде да Ñ Ð½Ð°Ð¼ÐµÑ€Ð¸Ð¼. Също така е нужно потребителÑкото име и паролата, които RT ще ползва. RT може да Ñъздаде базата данни и потребителÑÑ‚ за ваÑ, това е причината да иÑкаме потребителÑко име и парола за потребител Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸ÑтраторÑки права в базата данни. По време на Ñтъпка 6 на инÑÑ‚Ð°Ð»Ð°Ñ†Ð¸Ð¾Ð½Ð½Ð¸Ñ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ñ‰Ðµ използваме тази Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð·Ð° да Ñъздадем и инициализираме базата данни на RT." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Web порт" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "ÑÑ€" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "ÑÑ€Ñда" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Седмично резюме" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Добре дошли в RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Какво правих днеÑ" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Какво е RT" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Когато RT не може да Ñе Ñправи ÑÑŠÑ Ñъобщение по ел. поща, къде да го препраща?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Когато RT изпраща ел. поща, наÑтройва заглавните чаÑти From: и Reply-To:, така че потребителите да могат да добавÑÑ‚ в разговора като проÑто натиÑкат Отговор в техниÑÑ‚ клиент за ел. поща. Използват Ñе различни адреÑи за отговори и коментари. Тези могат да бъдат променени за вÑÑка от опашките. Тези адреÑи ще трÑбва да Ñа конфигурирани да използват програмата rt-mailgate." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Когато билет Ñе Ñъздава" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Когато Ñе Ñъздава одобрителен билет, Ñъобщи на ÑобÑтвеника и админиÑтративните ÐºÐ¾Ð¿Ð¸Ñ Ð·Ð° елемента, който очаква Ñ‚Ñхното одобрение" #: etc/initialdata:137 msgid "When anything happens" msgstr "Когато Ñе Ñлучи каквото и да било" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Когато щракнете на 'Проверка на ÑвързаноÑтта Ñ Ð±Ð°Ð·Ð°Ñ‚Ð° данни' може да има кратко закъÑнение, докато RT Ñе опитва да Ñе Ñвърже към вашата база данни" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Когато Ñе Ð·Ð°Ñ‚Ð²Ð°Ñ€Ñ Ð±Ð¸Ð»ÐµÑ‚" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Като Ñе Ð¾Ñ‚Ñ…Ð²ÑŠÑ€Ð»Ñ Ð±Ð¸Ð»ÐµÑ‚" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Когато Ñе Ð¾Ñ‚Ð²Ð°Ñ€Ñ Ð±Ð¸Ð»ÐµÑ‚ наново" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Когато Ñе разрешава билет" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Когато ÑобÑтвеникът на билет Ñе Ñмени" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Когато Ñе Ð¿Ñ€Ð¾Ð¼ÐµÐ½Ñ Ð¿Ñ€Ð¸Ð¾Ñ€Ð¸Ñ‚ÐµÑ‚ÑŠÑ‚ на билет" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Когато Ñе Ð¿Ñ€Ð¾Ð¼ÐµÐ½Ñ Ð¾Ð¿Ð°ÑˆÐºÐ°Ñ‚Ð° на билет" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Когато Ñе Ð¿Ñ€Ð¾Ð¼ÐµÐ½Ñ ÑÑŠÑтоÑнието на билет" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Когато Ñе Ñлучи потребителÑки-зададено ÑÑŠÑтоÑние" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Когато Ñе получават коментари" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Когато Ñе получава кореÑпонденциÑ" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Къде Ñе намира вашиÑÑ‚ sendmail изпълним файл." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Заличаване" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Служебен" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Работил/а" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Да" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Вече притежавате този билет" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Можете да Ñкочите до първото непрочетено Ñъобщение или Ñкочите до първото непрочетено Ñъобщение и да маркирате вÑички ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ ÐºÐ°Ñ‚Ð¾ прочетени." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Също така можете да редактирате предефинираното търÑене" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Можете да назначавате Ñамо билети, които притежавате или които Ñа безÑтопанÑтвени" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Можете да взимате Ñамо билети, които Ñа безÑтопанÑтвени" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Вие нÑмате SuperUser право." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "ОтпиÑването от RT приключи." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "ÐÑмате право да Ñъздавате билети в тази опашка." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "ТрÑбва да въведете админиÑтративна парола" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "ТрÑбва да бъдете отведени директно към Ñтраница за вход. Ще можете да влезете Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñко име %1 и паролата, коÑто наÑтроихте по-рано." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "ТрÑбва да изберете базата данни, коÑто е най-удобна на Ð²Ð°Ñ Ð¸Ð»Ð¸ на вашиÑÑ‚ админиÑтратор на бази данни." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Виждате този екран, защото Ñтартирахте RT Ñървър без работеща база данни. Ðай-вероÑтно, това е първиÑÑ‚ път, в който пуÑкате RT. Ðко щракнете \"%1\" по-долу, RT ще ви преведе през процедурата по уÑтановÑването на RT Ñървър и база данни." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Можете да влезете отново" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Вашето потребителÑко име или парола Ñа неправилни" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "ПощенÑки код" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[без]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "Ñлед" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "лента" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "преди" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "отдолу нагоре" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "щракнете за да маркирате/отмаркирате вÑички обекти наведнъж" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð½Ð° Ñдрото" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "ежедневно в %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "изтрит" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "не Ñъвпада" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "изтеглÑне" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "равно на" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "грешка: не може да Ñе премеÑти надолу" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "грешка: не може да Ñе премеÑти налÑво" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "грешка: не може да Ñе премеÑти нагоре" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "грешка: нищо за триене" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "грешка: нищо за меÑтене" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "грешка: нищо за превключване" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "вÑеки" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "изпълнение на плъгин уÑпешно" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "пълен" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "по-голÑм от" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "група '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "е" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "не е" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "ключът изключен" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "ключът проÑрочен" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "ключът отменен" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "отлÑво надÑÑно" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "по-малко от" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "маргинален" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "Ñъвпада" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "макÑимална дълбочина" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "минути" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "ежемеÑечно" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "ежемеÑечно (ден %1) в %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "никога" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "нов" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "не" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "нÑма" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "не е равно на" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "нищо" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "обектите Ñа уÑпешно премахнати" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "на" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "на ден" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "отворени" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "отвори/затвори" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "друг..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "пай" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "плъгинът върна празен ÑпиÑък" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "опашка %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "отхвърлен" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "разрешен" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "отдÑÑно налÑво" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "виж ÑпиÑъка Ñ Ð¾Ð±ÐµÐºÑ‚Ð¸ долу" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð½Ð° Ñайта" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "ÑпрÑн" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "резюме редове" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "ÑиÑтема %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "ÑиÑтемна група '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "извикващиÑÑ‚ компонент не уточни защо" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "адреÑите по подразбиране, които ще бъдат в заглавните чаÑти From: и Reply-To: на ел. поща от коментари." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "адреÑите по подразбиране, които ще бъдат в заглавните чаÑти From: и Reply-To: на ел. поща от кореÑпонденциÑ." #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "билет #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "отгоре надолу" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "докрай" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "неопиÑана група %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "потребител %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "ежеÑедмично" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "ежеÑедмично (в %1) в %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "Ñедмици" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "на кой порт ще Ñлуша вашиÑÑ‚ web Ñървър, напр. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "ÑÑŠÑ Ð·Ð°Ð³Ð»Ð°Ð²Ð½Ð¸ чаÑти" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "да" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/lv.po0000664000175000017500000124633713131430353014553 0ustar vagrantvagrant# Latvian translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2016-12-29 11:17+0000\n" "Last-Translator: zux \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 pievienots" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 mainits uz %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 dzÄ“sts" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 izdzÄ“sts" #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 neeksistÄ“" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 ir izslÄ“gts" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 saglabÄts." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 atjaunots" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 ar Å¡ablonu %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) no %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Nav mainÄ«ts)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (no rÅ«ts %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - PielÄgot LogToSTDERR config opciju" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Arguments kuru nodot uz %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "%1 - Arguments, kuru nodod uz %2. Å o opciju var atkÄrtot, lai nodotu korespondÄ“joÅ¡os argumentus vairÄkiem %2 izsaukumiem." #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - DrukÄt statusa izmaiņas uz STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - UzrÄdiet vai vÄ“laties izmantot 'first', 'last' vai 'all' tranzakcijas" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - NorÄdiet Å¡ablona(u) vÄrdu vai id, kuru vÄ“laties izmantot" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "%1 - NorÄdiet darbÄ«bas moduli, ko vÄ“laties lietot. Å o opciju var atkÄrtot, lai veiktu vairÄkas darbÄ«bas ar atrastajiem pieteikumiem." #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - UzrÄdiet ar komatiem atdalÄ«tu sarakstu ar tranzakciju tipiem, kurus vÄ“laties izmantot" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - UzrÄdiet nosacÄ«juma moduli, kuru vÄ“laties izmantot" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - UzrÄdiet meklēšanas moduli, kuru vÄ“laties izmantot" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "%1 papildus lauki" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "%1 Versija" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 pievienots kÄ vÄ“rtÄ«ba priekÅ¡ %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "%1 pievienots pie paneļa abonementiem" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "pirms %1" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 jau eksistÄ“ un tai ir RT tabulas gatavas vietÄ, bet tÄ nesatur RT metadatus. 'Initialize Database' solis vÄ“lÄk var papildinÄt esoÅ¡o datu bÄzi ar metadatiem. Ja tas ir pieņemami, klikšķiniet 'Customize Basics' zemÄk, lai turpinÄtu pielÄgot RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 jau eksistÄ“, tÄ nesatur RT tabulas vai metadatus. 'Initialize Database' solis vÄ“lÄk var to papildinÄt ar tabulÄm un metadatiem, jau eksistÄ“joÅ¡Ä datu bÄzÄ“. Ja tas ir pieņemami, klikšķiniet 'Customize Basic' zemÄk, lai turpinÄtu pielÄgot RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "%1 jau ir tiesÄ«bas %2 uz %3 %4" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 izskatÄs pÄ“c lokÄla objekta, bet nav atrodams datu bÄzÄ“" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 izskatÄs pilnÄ«bÄ inicializÄ“ta. Mums nebÅ«s nepiecieÅ¡ams pievienot vairÄk nevienu tabulu vai papildinÄt ar metadatiem, bet jÅ«s varat turpinÄt pielÄgot RT klikšķinot uz 'Customize Basics' zemÄk" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 no %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 nevar bÅ«t grupa" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 mainÄ«ts not %2 uz %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 nomainÄ«ts no '%2' uz '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 kopija" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 pamatkonfigurÄcija" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 nevar tikt uzstÄdÄ«ts kÄ %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 izveidots" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 dzÄ“sts" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 atslÄ“gts" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 neeksistÄ“." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 ieslÄ“gts" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 man piederoÅ¡i augstÄkÄs prioritÄtes pieteikumi" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 ir instruments kas darbojas ar pieteikumiem no ÄrÄ“jÄ Å¡edulēšanas instrumenta, kÄ piemÄ“ram no cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 ir utilita, kas paredzÄ“ta darbinÄÅ¡anai no cron, kas izsÅ«ta visus atliktos RT ziņojumus kÄ katra lietotÄja daidžestu." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "%1 jau ir %2" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 jau ir uzstÄdÄ«ts uz %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 adrese, uz kuru RT saņem e-pastu. Pieliekot to kÄ '%2' veidos pasta ciklēšanu" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "%1 vairs nav %2 Å¡ai rindai" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "%1 vairs nav %2 Å¡ai rindai" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 vairs nav vÄ“rtÄ«ba pielÄgojuma laukam %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 nav %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 nav derÄ«gs dzÄ«ves cikls" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 problÄ“mas" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 atslÄ“ga '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 visnesenÄk atjaunotie raksti" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "%1 visnesenÄk atjaunotie saistÄ«tie pieprasÄ«jumi" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 jaunÄkie raksti" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 jaunÄkie pieprasÄ«jumi bez Ä«paÅ¡nieka" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objekti" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "%1 izņemts no paneļa abonentiem." #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 uzstÄdÄ«ts uz %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 vietnes konfigurÄcija" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 papildinÄjums: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 papildinÄjums: Nav izmaiņu" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 papildinÄts" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1' %2 objekti" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1' %2' %3 objekti" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1 paÅ¡reizÄ“jÄ parole" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1' dashboardi" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "%1 Å¡ifrēšanas atslÄ“ga" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1' saglabÄtie meklÄ“jumi" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: nav norÄdÄ«ti pielikumi" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Izveidot pieprasÄ«jumu iekÅ¡%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "%1N" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "%1G" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "%1st" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,raksts,raksti,rakstiem)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,diena,dienas)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,stunda)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,stunda,stundas) (%quant(%2,minÅ«te,minÅ«tes))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,minÅ«te,minÅ«tes)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,mÄ“nesis,mÄ“neÅ¡i)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,sekunde,sekundes)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,nedēļa,nedēļas)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,gads,gadi)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1'nav derÄ«gs vÄrds" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' nav derÄ«ga klase" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' nav derÄ«gs identifikators" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(IezÄ«mÄ“jiet lai pabeigtu)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(AtzÄ«mÄ“t rÅ«ti lai dzÄ“stu)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(AtzÄ«mÄ“jiet lai dzÄ“stu)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "(AtzÄ«mÄ“jiet, lai dzÄ“stu visu saturu)" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Ievadiet pieprasÄ«jumu id vai URL, atdalÄ«tus ar atstarpÄ“m)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Ja paliks tukÅ¡s, standarta vÄ“rtÄ«ba saglabÄsies %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(Nav pabeigts)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(Nepareizs datums)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Nav pielÄgojuma lauku)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Nav elementu)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Nav skriptu)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Nav Å¡ablonu)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(SÅ«ta carbon-copy Å¡im papildinÄjumam uz, ar komatiem atdalÄ«tu, sarakstu ar administratÄ«vajÄm e-pasta adresÄ“m. Å ie adresÄti saņems tÄlÄkos papildinÄjumus nÄkotnÄ“.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(SÅ«ta carbon-copy Å¡im papildinÄjumam uz, ar komatiem atdalÄ«tu, sarakstu ar e-pasta adresÄ“m. Å ie adresÄti saņems tÄlÄkos papildinÄjumus nÄkotnÄ“.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "(NeatbalstÄ«ts papildus lauka tips)" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Izmanto Å¡os laukus kad esi izvÄ“lÄ“jies 'User Defined' kÄ nosacÄ«jumu darbÄ«bai)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(katrs)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(Nav kosavilkuma)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(nav vÄrda)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(nav publiskÄs atslÄ“gas!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(nav vÄ“rtÄ«bas)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(nav vÄ“rtÄ«bas)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(rindÄ %quant(%1,citi pieprasÄ«jumi))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(gaida uz apstiprinÄjumu)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "(gaida uz pieteikumu #%1)" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(nepiecieÅ¡ams)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(uzticÄ“t: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(beznosaukuma)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(neuzticams!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "(ar šī pamatlÄ«dzekļa katalogu)" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id ir novecojis arguments, un to nevar izmantot ar --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--tranzakcijas arguments var bÅ«t tikai 'first', 'last' vai 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 sekundes" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Å ablons ar Å¡Ädu nosaukumu jau eksistÄ“" #: etc/initialdata:258 msgid "A blank template" msgstr "TukÅ¡s Å¡ablons" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Parole netika uzstÄdÄ«ta, lÄ«dz ar ko, lietotÄjs nevarÄ“s autorizÄ“ties." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE nav atrasta" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACEs var tikai tikt izveidotas vai dzÄ“stas." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "ACL atjaunots no %1" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Par mani" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Piekļuves kontrole" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "DarbÄ«ba" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "DarbÄ«ba '%1' nav atrasta" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "DarbÄ«ba izpildÄ«ta" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "DarbÄ«ba ir obligÄts arguments" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "DarbÄ«ba sagatavota..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "DarbÄ«bas" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "AktÄ«vie pieprasÄ«jumi" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "AktÄ«vie pieprasÄ«jumi" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "AktÄ«vie lietotÄja %1 pieprasÄ«jumi" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Pievienot %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Pievienot AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Pievienot GrÄmatzÄ«mi" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Pievienot Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Pievienot Kolonnas" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Pievienot KritÄ“riju" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Pievienot Papildus Failus" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "Pievienot jaunus saņēmÄ“jus" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Pievienot PieprasÄ«tÄju" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Pievienot VÄ“rtÄ«bu" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "Pievienot grupu" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "Pievienot personu" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "Pievienot pamatlÄ«dzekli Å¡im pieteikumam" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Pievienot komentÄrus vai atbildes atzÄ«mÄ“tajiem pieprasÄ«jumiem" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "Pievienot papildus lauku vÄ“rtÄ«bas tikai objekta izveides laikÄ" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Pievienot grupu" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Pievienot Å¡eit" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Pievienot elementus" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Pievienot jaunus skatÄ«tÄjus" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Pievienot tiesÄ«bas no %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Pievienot Å¡os terminus" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Pievienot Å¡os terminus un MeklÄ“t" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Pievienot lietotÄju" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Pievienot vÄ“rtÄ«bas" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Pievienot, labot un dzÄ“st papildus laukus" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Pievienots" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "%1 pievienots kÄ %2 Å¡ai rindai" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "%1 pievienots kÄ %2 Å¡im pieteikumam" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "Pievienots papildus lauks %1 pie %2" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adrese" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Adreses lÄ«nija 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adrese1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adrese2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "Labots pavadÄ«tais laiks uz %quant(%1,minÅ«te,minÅ«tes)" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Administrators" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "Administratora katalogi" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "Admina Cc" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Admina KomentÄrs" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Administratora komentÄrs HTML" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Admina Korespondence" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Administratora sarakste HTML" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Admina rindas" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admina/GlobÄlÄ konfigurÄcija" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "AdministratÄ«vÄ parole" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Papildus" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "PaplaÅ¡inÄtÄ meklēšana" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "PÄ“c pieslÄ“gÅ¡anÄs, JÅ«s tiksiet nosÅ«tÄ«ts uz sÄkotnÄ“jo lapu:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "AggregÄtors" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Visi ApstiprinÄjumi Izlaisti" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "Visi apstiprinÄjumi saņemti HTML" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Visiem rakstiem Å¡ajÄ klasÄ“ vajadzÄ“tu parÄdÄ«ties iznirstoÅ¡ajÄ logÄ, pieprasÄ«juma atbildes lapÄ." #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "Visi katalogi" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Visas klases" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Visi papildus lauki" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Visi paneļi" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Visas Rindas" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Visi pieprasÄ«jumi" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "Visi katalogi kas izpilda meklēšanas kritÄ“rijus" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Visi iCal barotuve satur slepenu pazÄ«mi, kas kalpo tevis autorizÄcijai. Ja URL adrese tavam iCal barotuve kļūst pieejama pÄrÄ“jai pasaulei, tu vari iegÅ«t jaunu, kas pÄrtrauks visas eksistÄ“joÅ¡Äs iCal barotuves zemÄk." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "visi meklÄ“jumÄ atlasÄ«tie uzdevumi" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "Visi saņēmÄ“ji" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Visi pieteikumi" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Visas tÄ“mas" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "Piešķirt" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Atļaut veidot saglabÄtos meklÄ“jumus" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Atļaut ielÄdÄ“t saglabÄtos meklÄ“jumus" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Atļaut rakstÄ«t Perl kodu Å¡ablonos, scripos utt." #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Jau aizkodÄ“ts" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "VienmÄ“r nosÅ«tÄ«t ziņu pieprasÄ«tÄjam, neatkarÄ«gi no tÄ, kurÅ¡ sÅ«ta ziņu" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "%1 ievads darba sÄkÅ¡anai ar rakstiem %3 ir pieejams no %2Best Practical tÄ«klÄ pieejamÄs dokumentÄcijas%3" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "JÄuzrÄda objekts" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "GadÄ«jÄs kļūda" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "Ievadot laiku, radÄs kļūda. LÅ«dzu ievadiet laiku ar roku." #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Un/Vai" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Reizi gadÄ" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "JebkurÅ¡ lauks" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "JebkurÅ¡ vÄrds, ko RT neatpazÄ«st, tiek meklÄ“ts pieprasÄ«juma tÄ“mÄ" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Attiecas uz" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Attiecas uz visiem objektiem" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "ApstiprinÄt" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "ApstiprinÄt globÄli" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Pielietot iezÄ«mÄ“to scripu" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "ApstiprinÄt jÅ«su izmaiņas" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "ApstiprinÄjums" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "ApstiprinÄjums #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "ApstiprinÄjums #%1: PiezÄ«mes nav ierakstÄ«tas sakarÄ ar sistÄ“mas kļūdu." #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "ApstiprinÄjums #%1: PiezÄ«mes ierakstÄ«tas" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "ApstiprinÄjums Izlaists" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "ApstiprinÄjums saņemts HTML" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "ApstiprinÄjums Gatavs priekÅ¡ ĪpaÅ¡nieka" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "ApstiprinÄjums gatavs Ä«paÅ¡niekam HTML" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "ApstiprinÄjums NoraidÄ«ts" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "ApstiprinÄjums noraidÄ«ts HTML" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "ApstiprinÄt" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "Raksts #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "Raksts #%1 nav atrasts" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Raksts #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Raksts %1 izveidots" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Rakstu administrēšana" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Raksts nav atrasts" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Raksti" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Raksti sadaÄ¼Ä %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Raksti, kas izpilda noteikumu %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Raksti bez sadaļÄm." #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Aug" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "AktÄ«vs #" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "AKtÄ«vs #%1" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "AktÄ«vs #%1 izveidots: %2" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "AktÄ«vs #%1: %2" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "AktÄ«vu administrēšana" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "AktÄ«va izveide txn neizdevÄs: %1" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "AktÄ«vu papildus lauki" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "AktÄ«va izveide neizdevÄs: %1" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "AktÄ«vi" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "AktÄ«vi nevar tikt dzÄ“sti." #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "PIevienot un dzÄ“st rindas papildus laukus" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "Pievienotie aktÄ«vi" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Pievienot" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Pievienot failu" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Pievienotais fails" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Pielikums" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Pielikums '%1' nevar tikt ielÄdÄ“ts" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Pielikums izveidots" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Pielikuma faila vÄrds" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Pielikumi" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Pielikuma kodēšana ir atslÄ“gta" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "AtribÅ«ts DzÄ“sts" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "Īpašība atjaunota" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "AutomÄtiskais paraksts" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "AutomÄtiskÄ konta izveide neizdevÄs" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "AutomÄtiski izveidotÄs tÄ“mu krÄsas nav pieejamas jÅ«su bildei. IespÄ“jams, ka tas noticis tÄdēļ, ka ielÄdÄ“to bildi neatbalsta uzstÄdÄ«tÄ GD versija. AtbalstÄ«tie tipi ir: %1. Varat pÄrkompilÄ“t libgd un GD.pm, lai iekļautu atbalstu citiem bilžu veidiem." #: etc/initialdata:261 msgid "Autoreply" msgstr "Autoatbilde" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Autoatbilde PieprasÄ«tÄjiem" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "AutomÄtiskÄ atbilde HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Pieejams" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "VidÄ“jÄ izveidots-PÄ“dÄ“jÄsIzmaiņas" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "VidÄ“jÄ Izveidots-AtrisinÄts" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "VidÄ“jÄ Izveidots-UzsÄkts" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "VidÄ“jÄ Termiņš-AtrisinÄts" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "VidÄ“jÄ UzsÄkts-AtrisinÄts" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "VidÄ“jÄ JÄsÄak-SÄkts" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "VIdÄ“jais ieplÄnotais laiks" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "VidÄ“jais atlikuÅ¡ais laiks" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "VidÄ“jais nostrÄdÄtais laiks" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Atpakaļ" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Nepareizs privÄtums atribÅ«tam %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Pamati" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "PakeÅ¡apstrÄde" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "PakeÅ¡apstrÄda (izslÄ“gta konfigurÄcijÄ)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "PakeÅ¡apstrÄdes scripi" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "PakeÅ¡apstrÄdes scripi tiek palaisti pÄ“c izmaiņu izdarīšanas pieprasÄ«jumÄ" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "SlÄ“ptÄ kopija" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "Pirms ir iespÄ“jams lietot rakstus, jÅ«su RT administratoram %1jÄizveido klases%2, jÄpielieto tÄm papildus lauki un jÄiedod lietotÄjiem tiesÄ«bas uz klasÄ“m un papildus laukiem." #: etc/initialdata:257 msgid "Blank" msgstr "TukÅ¡s" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "GalvenÄ daļa" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Trekns" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "GrÄmatzÄ«me" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "GrÄmatzÄ«mes links Å¡im meklÄ“jumam" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "PieprasÄ«jumi GrÄmatzÄ«mÄ“s" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "PieprasÄ«jumi ar grÄmatzÄ«mÄ“m" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "PÄrlÅ«kot pÄ“c sadaļÄm" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "PÄrlÅ«kot šī procesa izveidotos SQL pieprasÄ«jumus" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "PapildinÄjumi VairumÄ" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "Papildus laukos iespÄ“jams meklÄ“t ar analoÄ£isku sintaksi, kÄ %1" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "AprēķinÄt" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "AprēķinÄt vÄ“rtÄ«bu" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Nevar ielÄdÄ“t saglabÄto meklÄ“jumu \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Nav iespÄ“jams mainÄ«t sistÄ“mas lietotÄjus" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Nevar pievienot pielÄgojuma lauku bez vÄrda" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "Nevar nomainÄ«t noklusÄ“juma vÄ“rtÄ«bu %1 no %2 uz %3: %4" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "Nevar nomainÄ«t noklusÄ“juma vÄ“rtÄ«bas no %1 uz %2: %3" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Nevar atrast saglabÄto meklÄ“jumu ar kuru strÄdÄt" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Nav iespÄ“jams nosÅ«tÄ«t: norÄdÄ«ta nekorekta e-pasta adrese" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "PieprasÄ«jumu nevar linkot paÅ¡u ar sevi" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Nevar izveidot saiti ar dzÄ“stu pieteikumu" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Nevar apvienot pieteikumu ar sevi paÅ¡u" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Nevar izveidot pieteikumu ar ÄtrÄ izveides logu rindÄ %1, jo nepiecieÅ¡ams aizpildÄ«t papildus laukus. LÅ«dzu turpinat pieteikuma izveidi parastajÄ formÄ." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Nevar saglabÄt %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Nevar saglabÄt meklÄ“jumu bez apraksta" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Nevar saglabÄt Å¡o meklÄ“jumu" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "Nav iespÄ“jams norÄdÄ«t gan izcelsmi, gan mÄ“rÄ·i" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Nevar izveidot saiti uz skaitli" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Nevar izveidot pieprasÄ«jumus atslÄ“gtÄ rindÄ" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "Nevar rediģēt objektus atspÄ“jotai papildus lomai #%1" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "Katalogs" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "Katalogs %1 izveidots: %2" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "Katalogs %1: Rediģēt papildus laukus" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "Katalogs %1: rediģēt pamata laukus" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "Katalogs %1: MainÄ«t grupas tiesÄ«bas" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "Katalogs %1: Rediģēt lomas" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "Katalogs %1: Rediģēt lietotÄju tiesÄ«bas" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "Kļūda veidojot kataloga tranzakciju: %1" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "NeizdevÄs izveidot katalogu: %1" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "Katalogi" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "Katalogus nav iespÄ“jams dzÄ“st" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategorijas ir balstÄ«tas uz" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategorija" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "MainÄ«t" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "NomainÄ«t ApstiprinÄta pieprasÄ«juma statusu uz atvÄ“rts" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "MainÄ«t e-pasta tÄ“mu" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "MainÄ«t paroli" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Rindas mainīšana nav izstrÄdÄta" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Diagrammas" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "PÄrbaudÄ«t" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "AtzÄ«mÄ“t Visu" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "PÄrbaudÄ«t DatubÄzes Savienojumu" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "PÄrbaudÄ«t DatubÄzes UzstÄdÄ«jumus" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "AtzÄ«mÄ“ rÅ«ti lai dzÄ“stu" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "BÄ“rns" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "BÄ“rni" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "IzvÄ“lies DatubÄzes Dzini" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "IzvÄ“lÄ“ties no tÄ“mÄm priekÅ¡ %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "PilsÄ“ta" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Klase" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Klases nosaukums" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Klasi nevarÄ“ja izveidot: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Klases id" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Klase jau tiek lietot globÄli" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Klase jau tiek lietota uz %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Klases" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "TÄ«rÄ«t" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "TÄ«rÄ«t Visu" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Pabeigt InstalÄciju" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Klikšķini \"Initialize Database\" lai izveidotu RT datubÄzi un ievadÄ«tu sÄkotnÄ“jos metadatus. Tas var aizņemt pÄris mirkļus" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Uzklikšķiniet lai izvÄ“lÄ“tos krÄsu" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "AizvÄ“rt logu" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "AizvÄ“rts" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "AizvÄ“rti pieprasÄ«jumi" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "KomborÅ«ts: IzvÄ“lies vai ievadi vairÄkas vÄ“rtÄ«bas" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "KomborÅ«ts: IzvÄ“lies vai ievadi vienu vÄ“rtÄ«bu" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "KomborÅ«ts: IzvÄ“lies vai ievadi lÄ«dz pat %1 vÄ“rtÄ«bÄm" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "PiezÄ«me" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "PiezÄ«mes Adrese" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "PiezÄ«mes adrese" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "KomentÄ“t pieprasÄ«jumu" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "PiezÄ«me pieprasÄ«jumiem" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "PiezÄ«mes" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "PiezÄ«mes (NesÅ«tÄ«tas pieprasÄ«tÄjiem)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "PiezÄ«mes par Å¡o lietotÄju" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "PiezÄ«mes pievienotas" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "ApstirpinÄt NodzÄ“sts" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "NosacÄ«jums" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "NosacÄ«jums '%1' nav atrasts" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "NosacÄ«jums ir obligÄts arguments" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "NosacÄ«jums atbilst..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "NosacÄ«jums, RÄ«cÄ«ba un Å ablons" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "KonfigurÄcijas fails %1 ir slÄ“gts" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Rindas %1 konfigurÄcija" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "Lomas %1 konfigurÄcija" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Savienojums veiksmÄ«gs" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "Kontakts" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Sazinieties ar savu RT administratoru pa %1 e-pastu %2%3" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Sazinieties ar savu RT administratoru" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Saturs" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Saturs dzÄ“sts, jo tÄ izmÄ“rs (%1 baiti) pÄrsniedz uzstÄdÄ«to maksimÄlo izmÄ“ru (%2 baiti)." #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "Satura pievienoÅ¡ana neizdevÄs. Apskatiet log ierakstus, lai uzzinÄtu detaļas." #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Saturs nav derÄ«ga ip adrese" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Saturs nav derÄ«ga ip adreses maska" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Saturs saÄ«sinÄts, jo tÄ izmÄ“rs (%1 baiti) pÄrsniedz uzstÄdÄ«to maksimÄlo izmÄ“ru (%2 baiti)." #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Satura-Tips" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "AtbilstoÅ¡Ä adrese" #: etc/initialdata:393 msgid "Correspondence" msgstr "Sarakste" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Sarakste pievienota" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Korespondece HTML" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "NevarÄ“ja pievienot %1 kÄ saņēmÄ“ju: %2" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Nav iespÄ“jams pievienot jaunu pielÄgota lauka vÄ“rtÄ«bu: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Nevar nomainÄ«t Ä«paÅ¡nieku: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Nevar izveidot CustomField: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Nevar izveidot grupu" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "NevarÄ“ja izveidot meklēšanas pieprasÄ«jumu: %1K" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Nevar izveidot pieprasÄ«jumu. Rinda nav uzstÄdÄ«ta" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Nevar izveidot lietotÄju" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "NevarÄ“ja izdzÄ“st meklÄ“jumu %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Nevar atrast grupu '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Nevar atrast, vai izveidot lietotÄju '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Nevar ielÄdÄ“t %1 atribÅ«tu" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Nevar ielÄdÄ“t klasi %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Nevar ielÄdÄ“t CustomField %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "Nevar ielÄdÄ“t papildus lomu %1" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Nevar ielÄdÄ“t grupu" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Nevar ielÄdÄ“t objektu priekÅ¡ %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "Nevar ielÄdÄ“t skripu #%1" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "Nevar ielÄdÄ“t pieprasÄ«juma vÄ“sturi. Iemesls:" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Nevar ielÄdÄ“t lietotÄju '%1'" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "Nevar izveidot %1 par %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "Nevar noņemt %1 kÄ %2" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Nevar iestatÄ«t lietotÄja informÄciju" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "NevarÄ“ja izmainÄ«t kolonnu %1: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "Nevar pievienot, jo tas jau ir globÄls" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "NevarÄ“ja pievienot pielikumu" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "NeizdevÄs pievienot papildus laika vÄ“rtÄ«bu pie izveides: %1" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "NevarÄ“ja pievienot elementu grupai" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "NeizdevÄs nokompilÄ“t %1 kods '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "NeizdevÄs nokompilÄ“t Å¡ablona kodu '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "NevarÄ“ja izveidot tranzakciju: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "NeizdevÄs izveidot ierakstu: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "NeizdevÄs izveidot grupas lomu pamatlÄ«dzeklim" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "NeizdevÄs izveidot grupas lomu katalogam" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "NevarÄ“ja izdzÄ“st dashboardu %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "NevarÄ“ja atrast rindu" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "NevarÄ“ja atrast atbilstoÅ¡u transakciju, izlaižam" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "NevarÄ“ja atrast Å¡o principÄlu" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "NevarÄ“ja atrast Å¡o vÄ“rtÄ«bu" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "NeizdevÄs iegÅ«t %1 atslÄ“gu informÄciju" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "NevarÄ“ja ielÄdÄ“t Klasi %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "NevarÄ“ja ielÄdÄ“t PielÄgojuma Lauku #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "NevarÄ“ja ielÄdÄ“t CustomField #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "NevarÄ“ja ielÄdÄ“t CustomField %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "NeizdevÄs ielÄdÄ“t %1 #%2 kopiju" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "NevarÄ“ja ielÄdÄ“t kopiju pieprasÄ«jumam #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "NeizdevÄs ielÄdÄ“t papildus lomu '%1'" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "NevarÄ“ja ielÄdÄ“t dashboardu %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "NevarÄ“ja ielÄdÄ“t grupu #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "NevarÄ“ja ielÄdÄ“t grupu %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "NevarÄ“ja ielÄdÄ“t saiti" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "NeizdevÄs ielÄdÄ“t saiti: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "NevarÄ“ja ielÄdÄ“t objektu %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "NevarÄ“ja ielÄdÄ“t vai izveidot lietotÄju: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "NeizdevÄs ielÄdÄ“t tiesÄ«bas #%1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "NeizdevÄs ielÄdÄ“t tiesÄ«bas: %1" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "NevarÄ“ja ielÄdÄ“t rindu" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "NevarÄ“ja ielÄdÄ“t rindu #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "NevarÄ“ja ielÄdÄ“t rindu %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "NevarÄ“ja ielÄdÄ“t rindu '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "NevarÄ“ja ielÄdÄ“t skriptu #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "NevarÄ“ja ielÄdÄ“t Å¡ablonu #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "NeizdevÄs ielÄdÄ“t norÄdÄ«to dalÄ«bnieku" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "NevarÄ“ja ielÄdÄ“t pieprasÄ«jumu '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "NeizdevÄs ielÄdÄ“t tÄ“mas dalÄ«bniekus, mēģinot to dzÄ“st" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "NevarÄ“ja ielÄdÄ“t transakciju #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "NevarÄ“ja ielÄdÄ“t lietotÄju" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "NevarÄ“ja ielÄdÄ“t lietotÄju #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "NevarÄ“ja ielÄdÄ“t lietotÄju #%1 vai lietotÄju '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "NevarÄ“ja ielÄdÄ“t lietotÄju '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "NeizdevÄs izanalizÄ“s bÄzes URI: %1" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "NeizdevÄs izanalizÄ“t mÄ“rÄ·a URI: %1" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "NeizdevÄs noņemt iepriekšējo dalÄ«bnieku: %1" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "NevarÄ“ja aizvietot saturu ar dekriptÄ“tiem datiem: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "NevarÄ“ja aizvietot saturu ar kriptÄ“tiem datiem: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "NeizdevÄs atvÄ“rt '%1' kÄ saiti." #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "NevarÄ“ja atpazÄ«t bÄzi '%1' iekÅ¡ URI." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "NevarÄ“ja atpazÄ«t mÄ“rÄ·i '%1' iekÅ¡ URI." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "NevarÄ“ja uzstrÄdÄ«t %1 uzraugu: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "PrivÄtÄs atslÄ“gas iestatīšana neizdevÄs" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "PrivÄtÄs atslÄ“gas atiestatīšana neizdevÄs" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Valsts" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Izveidot" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "Izveidot jaunu" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Izveidot PieprasÄ«jumus" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Izveidot klasi" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Izveidot CustomField" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Izveidot CustomField rindai %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "Izveidot papildus lomu" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "Izveidot globÄlu skripu" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Izveidot jaunu rakstu" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Izveidot jaunu rakstu" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "Izveidot jaunu pamatlÄ«dzekli katalogÄ %1" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "Izveidot jaunu pamatlÄ«dzekli katalogÄ %1" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Izveidot jaunu instrumentu paneli" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Izveidot jaunu grupu" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Izveidot jaunu Å¡ablonu rindai %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "Izveidot jaunu pieprasÄ«jumu rindÄ %1" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "Izveidot jaunu pieprasÄ«jumu rindÄ %1 par pamatlÄ«dzekli #%2: %3." #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Izveidot jaunu lietotÄju" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Izveidot rindu" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "Izveidot jaunu skripu un pievienot to rindai %1" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Izveidot veidni" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Izveidot pieprasÄ«jumu" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "Izveidot pieprasÄ«jumu %1" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Izveidot pieprasÄ«jumu ar Å¡o lietotÄju kÄ pieprasÄ«tÄju rindÄ" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Izveidot rakstu" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Izveidot rakstu klasÄ“..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Izveidot rakstu Å¡ajÄ klasÄ“" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "Izveidot pamatlÄ«dzekli" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "Izveidit pamatlÄ«dzekļus" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "Izveidot katalogu" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Izveidot grupas paneļus" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "izveidot saistÄ«to pieprasÄ«jumu" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "Izveidot saistÄ«tu pieprasÄ«jumu pamatlÄ«dzeklim #%1: %2" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "Izveidot jaunu pamatlÄ«dzekli" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Izveidot pieprasÄ«jumu, kas balstÄ«tÅ¡ uz šī skripta veidnes" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Izveidot privÄtu instrumentu paneli" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Izveidot sistÄ“mas intsrumentu paneli" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Izveidot pieprasÄ«jumu" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Izveidot pieprasÄ«jumus" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Izveidot, rediģēt un dzÄ“st piekļuves kontroles ierakstus" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Izveidot, rediģēt un dzÄ“st papildus laukus" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Izveidot, rediģēt un dzÄ“st papildus lauku vÄ“rtÄ«bas" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "Izveidot, rediģēt un dzÄ“st papildus lomas" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Izveidot, rediģēt un dzÄ“st rindu" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Izveidot, rediģēt un dzÄ“st saglabÄtos meklÄ“jumus" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Izveidot, rediģēt un dzÄ“st lietotÄjus" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "Izveidot, rediģēt un dzÄ“st katalogus" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Izveidots" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Izveidoja" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Izveidots CustomField %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Izveidoja" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Izveidots meklÄ“jums %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "IzveidotÄjs" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "KriptogrÄfija" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "Å ifrēšana ir atslÄ“gta" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "PaÅ¡reizÄ“jÄs Saites" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "PaÅ¡reizÄ“jie saņēmÄ“ji" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "PaÅ¡reizÄ“jÄ meklēšana" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "PaÅ¡reizÄ“jie dalÄ«bnieki" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "PaÅ¡reizÄ“jais meklÄ“jums" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "PaÅ¡reizÄ“jie uzraugi" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "LietotÄja CSS (paplaÅ¡inÄts)" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "PielÄgotie Lauki" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "PielÄgotie lauki priekÅ¡ %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Papildus lauki rindai %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "Papildus lomas" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "Papildus darbÄ«bas izpildes kods" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "PielÄgots darbÄ«bas sagatavoÅ¡anas kods" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "PielÄgoti apstÄkļi" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "PielÄgotais lauks #%1 nevar tikt pielietots Å¡im objektam" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "PielÄgotais lauks %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "PielÄgotais lauks %1 nevar tikt pielietots Å¡im objektam" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "PielÄgotÄ lauka %1 vÄ“rtÄ«ba ir." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "PielÄgotajam laukam %1 nav vÄ“rtÄ«bas." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "PielÄgotais lauks %1 nav atrasts" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "PielÄgotÄ lauka vÄ“rtÄ«ba %1 priekÅ¡ pielÄgotÄ lauka %2 nav atrasta" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "PielÄgotÄ lauka vÄ“rtÄ«ba nevar tikt dzÄ“sta" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "PielÄgotÄ lauka vÄ“rtÄ«ba ir dzÄ“sta" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "Papildus loma izveidota" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "Papildus loma atslÄ“gta" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "Papildus loma ieslÄ“gta" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "Papildus loma nav pievienota" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "Papildus loma" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "PielÄgot" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "PielÄgot Pamatus" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "PielÄgot E-pasta Adreses" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "PielÄgot E-pasta KonfigurÄciju" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Paneļu rediģēšana" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "Rediģēt RT tÄ“mu" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "IzmainÄ«t jÅ«su RT izskatu" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA parole" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA lietotÄja vÄrds" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Ikdienas" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Ikdienas kontrolskaitlis" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Instrumentu panelis" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "Paneli %1 neizdevÄs izmainÄ«t: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "Panelis %1 atjaunots" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Instrumentu paneli nevar izveidot: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Instrumentu paneli nevar atjauninÄt: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Instrumentu panelis atjauninÄts" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Instrumentu paneļi" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Paneļi izvÄ“lnÄ“" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Paneļi izvÄ“lne lietotÄjam %1" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "DatubÄzes resursdators" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "DatubÄzes nosaukums" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "RT datubÄzes parole" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "DatubÄzes ports" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "DatubÄzes tips" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "RT datubÄzes lietotÄja vÄrds" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "Datums" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Datuma formÄts" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Datumi" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "Diena" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "Datums" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "NedÄ“las diena" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "Gada diena" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "DekriptÄ“t" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "Kļūda atÅ¡ifrÄ“jot; lÅ«dzu sazinieties ar administratoru" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "NoklusÄ“tÄs vÄ“rtÄ«bas" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "NoklusÄ“tÄs vÄ“rtÄ«bas rindai %1" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "NoklusÄ“tÄ rinda" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "NoklusÄ“tais atgÄdinÄjuma Å¡ablons" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "%1 noklusÄ“tÄ vÄ“rtÄ«ba izmainÄ«ta no %2 uz %3" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "NoklusÄ“tÄs vÄ“rtÄ«bas izmainÄ«ts no %1 uz %2" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "NoklusÄ“jums: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "NoklusÄ“jums: %1/%2 mainÄ«ts no %3 uz %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "NoklusÄ“tÄ \"LÄ«dz\" vÄ“rtÄ«ba" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "NoklusÄ“tÄ \"SÄkas\" vÄ“rtÄ«ba" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "DzÄ“st" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "DzÄ“st Veidni" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Dzēšana neizdevÄs: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "DzÄ“st grupas paneļus" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Dzēšanas operÄcija ir atspÄ“jota cikla konfigurÄcijÄ" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "DzÄ“st privÄto instrumentu paneli" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "DzÄ“st sistÄ“mas instumentu paneļus" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "DzÄ“st pieteikumus" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "DzÄ“st vÄ“rtÄ«bas" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "DzÄ“sts %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "DzÄ“stas rindas" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "DzÄ“sti saglabÄtie meklÄ“jumi" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "DzÄ“sts meklÄ“jums %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Dzēšot Å¡o objektu, tiks lauzta savstarpÄ“jÄ integritÄte" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Dzēšot Å¡o objektu, tiks pÄrkÄpta savstarpÄ“jÄ integritÄte" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Aizliegt" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "AtkarÄ«gs no" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "AtkarÄ«ba no %1 pievienota" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "AtkarÄ«ba no %1 dzÄ“sta" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "AtkarÄ«ba no %1 pievienota" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "AtkarÄ«ba no %1 dzÄ“sta" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "AtkarÄ«gs no" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "AprakstÄ«t jautÄjumu zemÄk" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Apraksts" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "SÄ«kÄka informÄcija par jÅ«su RT konfigurÄciju" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "SÄ«kÄk" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "Noteikt situcÄiju, kad vajadzÄ“tu uzstÄdÄ«t \"LÄ«dz\" lauku" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "Noteikt situÄciju, kad vajadzÄ“tu uzstÄdÄ«t \"SÄkt\" lauku" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Virziens" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "AtspÄ“jot rakstus Å¡ajÄ klasÄ“" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "AtslÄ“gts" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "AtspÄ“jots?" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "AttÄ“lot" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "AttÄ“lot Pieejas Kontroles Sarakstu" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "ParÄdÄ«t rakstu %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "AttÄ“lot Kolonnas" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "ParÄdÄ«t vienkÄrÅ¡Ä teksta pielikumus monospace fontÄ saglabÄjot formatēšanu, bet apvienojot pÄ“c nepiecieÅ¡amÄ«bas" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "RÄdÄ«t ziņas ar paplaÅ¡inÄto tekstu, ja iespÄ“jams" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "RÄdÄ«t vienkÄrÅ¡Ä teksta pielikumus" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "ParÄdÄ«t pieteikumu pÄ“c \"Ä€trÄs izveides\"" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Dari ko un kÄ gribi" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Domeina vÄrds" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Neiekļaujiet http://, izmantojiet vienkÄrÅ¡i 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Neatjaunini mÄjas lapu." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Neatjaunini meklēšanas rezultÄtus." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Neatjaunini Å¡o lapu." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "NeuzticÄ“ties Å¡ai atslÄ“gam pavisam" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "LejuplÄdÄ“t" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "LejuplÄdÄ“t dumpfailu" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "KrÄ«toÅ¡Ä izvÄ“lne" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "LÄ«dz" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "RelatÄ«vi" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "KĻŪDA: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "AtvÄ“rto pieprasÄ«jumu ÄtrÄ atjaunoÅ¡ana" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "VienkÄrÅ¡a atgÄdinÄjumu apskate" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Rediģēt" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "Rediģēt %1" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Rediģēt PielÄgotos Laukus" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Labot laukus uz %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "Rediģēt papildus laukus papamtlÄ«dzekļiem visos katalogos" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "mainÄ«t laukus visÄm grupÄm" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Labot laukus visiem uzdevumiem" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Labot laukus visiem lietotÄjiem" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Rediģēt papildus laukus rakstiem visÄs klasÄ“s" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Labot laukus pieprasÄ«jumam visos uzdevumos" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Labot adreses" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Labot uzdevumus" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Labot meklēšanu" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Rediģēt globÄlo topiku hierarhiju" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Labot sistÄ“mas Å¡ablonus" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "RedigÄ“t %1 topiku hierarhiju" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Labot lauku %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Labot lietotÄju grupai %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "EfektÄ«vaID" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "BÄzei vai mÄ“rÄ·im jÄbÅ«t norÄdÄ«tam" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "vai jums nav tiesÄ«bu skatÄ«ties saglabÄto meklÄ“jumu %1 vai id in repareizs" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "IztÄ“rÄ“tais" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "Epasts" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "E-pasta adrese" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Epasta daidžests" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "E-pasta avots pieteikuma %1 pielikums %2" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Epasta adrese jau aizņemta" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Epasta piegÄde" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Epasta Å¡ablons regulÄrÄm ziņojumu vÄ“stulÄ“m" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "EpastaAdrese" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "TukÅ¡s" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "AktivizÄ“ts" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "c" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Atļauts (ieklišķinot šī klase tiks atspÄ“jota)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "AktÄ«vs (AtÄ·eksÄ“jot lauks bÅ«s neaktÄ«vs)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "Atļauts (ieklišķinot šī papildus loma tiks atspÄ“jota)" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "AktÄ«vs (AtÄ·eksÄ“jot grupa bÅ«s neaktÄ«va)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "AktÄ«vs (AtÄ·eksÄ“jot uzdevums bÅ«s neaktÄ«vs)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Atļauts (ieklišķinot Å¡is skrips tiks atspÄ“jots)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "Atļautie katalogi" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "AtļautÄs klases" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "AktÄ«vie uzdevumi" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "Meklēšanas kritÄ“rijiem atbilstoÅ¡i, atļauti katalogi" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "AktÄ«vie sameklÄ“tie uzdevumi" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "AktÄ«vs statuss %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Å ifrÄ“t" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Å ifrÄ“t pÄ“c noklusÄ“juma" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Å ifrÄ“t/AtÅ¡ifrÄ“t" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Å ifrÄ“t/AtÅ¡ifrÄ“t transakciju #%1 no pieprasÄ«juma #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "Å ifrēšana" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Å ifrēšanas kļūda, sazinieties ar administratoru" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "IevadÄ«t" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Ievadiet rakstus, pieprasÄ«jumus vai citas saites, kas saistÄ«tas ar Å¡o rakstu." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "Ievadiet saites uz pamatlÄ«dzekļiem kÄ \"asset:###\", kur ### apzÄ«mÄ“ pamatlÄ«dekļa identifikatoru." #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Ievadiet vairÄkas IP adreÅ¡u apgabalus" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Ievadiet vairÄkas IP adreses" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Ievadi vairÄkas vÄ“rtÄ«bas" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Ievadi vairÄkas vÄ“rtÄ«bas ar autotekstu" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Ievadi objektus vai URLs uz objektu. VairÄki ierasti caur space" #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Ievadiet vienu IP adresi" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Ievadiet vienu IP adreÅ¡u apgabalu" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Ievadi vienu vÄ“rtÄ«bu" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Ievadi vienu vÄ“rtÄ«bu ar autotekstu" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Ievadi uzdevumus vai norÄdes uz tiem. VairÄki ieraksti caur space" #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Ievadi pieprasÄ«jumus vai norÄdes uz tiem. VairÄki ieraksti caur space" #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Ievadiet laiku stundÄs pÄ“c noklusÄ“juma" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "ievadi lÄ«dz %1 vÄ“rtÄ«bas" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "ievadi lÄ«dz %1 vÄ“rtÄ«bas ar autotekstu" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "Ievades mÄjiens" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "MainÄ«gie parametri" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Kļūda" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "Kļūda ielÄdÄ“jot pielikumu" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "Kļūda zÄ«mÄ“jot grafiku : %1" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Kļūda RT Ä«paÅ¡niekam: publiskÄ atslÄ“ga" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Kļūda: TrÅ«kst daÅ¡boarda" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Kļūda: slikti GnuPG dati" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "Kļūda: slikti Å¡ifrÄ“ti dati" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Kļūda: nav privÄtÄs atslÄ“gas" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Kļūda: publiskÄ atslÄ“ga" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "izplatÄ«t pieprasÄ«jumus" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Aptuveni" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "JebkurÅ¡" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Paraugs:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "DerÄ«gums" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "PaplaÅ¡.Statuss" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Ä€rÄ“jÄ autentifikÄcija aktÄ«va" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "Papildus informÄcija" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Papildus informÄcija" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Izveidot rakstu" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Izcelt Subjekta tegu" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Izcelt tegus no sarakstes subjekta un pielikt to pieprasÄ«juma subjekta" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Nevar piekonektÄ“ties pie datubÄzes %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "NeizdevÄs izveidot %1 atribÅ«tus" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "NeizdevÄs atrast 'Priveleged' lietotÄju pseidogrupu" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "NeizdevÄs atrast 'UnPriveleged' lietotÄju pseidogrupu" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "NeizdevÄs ielÄdÄ“t %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "NeizdevÄs ielÄdÄ“t %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "NeizdevÄs ielÄdÄ“t moduli %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "NeizdevÄs ielÄdÄ“t objektu %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "NeizdevÄs ielÄdÄ“t Å¡ablonu" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "neizdevÄs parsÄ“t Å¡ablonu" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Lauku vÄ“rtÄ«bu avots:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Fails" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Aizpildi argumentus" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Aizpildi laukus pielietojot krÄsas" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Aizpildi vairÄkos teksta laukos" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Aizpildi vairÄkÄs wikitext vietÄs" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Aizpildi vienÄ teksta vietÄ" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Aizpildi vienÄ wikiteksta vietÄ" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Aizpildi Å¡o lauku ar URL" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Aizpildi lÄ«dz %1 teksta vietas" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Aizpildi lÄ«dz %1 wikiteksta vietas" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Gala PrioritÄte" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "Gala PrioritÄte" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "MeklÄ“t visus lietotÄjus kuri" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "MeklÄ“t grupas kuras" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "MeklÄ“t personas kuri" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "MeklÄ“t pieprasÄ«jumus" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Beigt" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Pirmais" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "ÄtrÄs izmaiņas" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "FormÄts" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "PÄrsÅ«tÄ«t" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "PÄrsÅ«tÄ«t vÄ“stuli" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "PÄrsÅ«tÄ«t ziņu un atgriezties" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "PÄrsÅ«tÄ«t pieprasÄ«jumu" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "PÄrsÅ«tÄ«t pieprasÄ«jumu #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "PÄrsÅ«tÄ«t saraksti #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Atrasti %quant(%1,pieprasÄ«jumi)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Atrasts objekts" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Biežums" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Piektd." #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Piektdiena" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "VispÄrÄ“ji" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "SÄkt" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Iedots %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "GlobÄlais" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "GlobÄlo lauku konfigurÄcija" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "GlobÄlais portlets %1 saglabÄts." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "AtvÄ“rt" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "AtvÄ“rt" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Iet uz pieprasÄ«jumu" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Grafiks" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Grafika properties" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Grafiki nav pieejami" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Grupa" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Grupas tiesÄ«bas" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "GrupÄ jau ir lietotÄjs: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Grupa nevar tikt izveidota: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Grupa izveidota" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Grupa neaktÄ«va" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Grupa aktÄ«va" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "GrupÄ nav Å¡Äda lietotÄja" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Grupa nav atrasta" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupas" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Grupas nevar bÅ«t biedri saviem biedriem" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "SameklÄ“tÄs grupas" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "GrupÄ“t Å¡o lietotÄju pÄ“c piederÄ«bas" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "IrBiedrs" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "PÄrsÅ«tÄ«tÄs vÄ“stules headers" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "PÄrsÅ«tÄ«tas vÄ“stules headers" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Sveiki!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "PalÄ«dzi mums uzstÄdÄ«t RT uzstatÄ«jumus" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "VÄ“sture" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Grupas vÄ“sture %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "PieprasÄ«jumu vÄ“sture %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "LietotÄja vÄ“sture %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "MÄjas lapas atjaunoÅ¡anas intervÄls" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "MÄjas lapa" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Stunda" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Stundas" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Man ir %quant(%1,concrete mixer)" #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "ID:" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Profils" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Ja apstiprinÄjums noraidÄ«ts, atcelt oriÄ£inÄlu un dzÄ“st gaidoÅ¡os apstiprinÄjumus" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Ja kaut tika mainÄ«ts, pÄrliecinies, ka" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "nepareiza vÄ“rtÄ«ba %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "NemainÄ«gs lauks" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Pielikt neaktÄ«vos laukus sarakstÄ" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Pielikt neaktÄ«vÄs grupas sarakstÄ" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Pielikt neaktÄ«vos uzdevumus sarakstÄ" #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Pielikt neaktÄ«vos lietotÄjus meklēšanÄ" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Pielikt lapu" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "PersonÄ«gÄs ziņas" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "InformÄ“t RT Ä«paÅ¡nieku ka lietotÄjam(iem) ir problÄ“mas ar publisko atslÄ“gu" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "InformÄ“t lietotÄju, ka daÅ¡bords nav pieejams" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "InformÄ“t lietotÄju, ka nosÅ«tÄ«tÄ vÄ“stule satur nekorektus GnuPG datus" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "InformÄ“t lietotÄju, ka ir problÄ“mas ar publisko atslÄ“gu un lietotÄjs nevarÄ“s saņemt Å¡ifrÄ“tas vÄ“stules" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "InformÄ“t lietotÄju, ka atjaunota sÄkotnÄ“jÄ parole" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "InformÄ“t lietotÄju, ka saņemta Å¡ifrÄ“ts e-pasts un nav privÄtÄs atslÄ“gas atÅ¡ifrēšanai" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "PamatprioritÄte" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "PamatprioritÄte" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "InicializÄ“t DatubÄzi" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Ievades kļūda" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Ievadei jÄsakrÄ«t ar %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Iekšēja kļūda: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Nepareizi %1`: '%2' nepareizs e-pasta formÄts" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Nepareizs %1: JÄbÅ«t ir numuram" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Nepareizi dati" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Nepareizs objekts" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Nepareizs paterns %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Nepareizs uzdevums" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Nepareizas tiesÄ«bas" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Nepareizas tiesÄ«bas. '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Nepareiza E-pasta sintakse" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "nepareiza vÄ“rtÄ«ba %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Nepareiza vÄ“rtÄ«ba laukÄ" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Nav Å¡ifrÄ“ti dati" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "SvarÄ«gi ir neļaut nepriveleģētiem lietotÄjiem izmantot Å¡o utilÄ«tu." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Ieteicams izveidot nepriveliģētu lietotÄju korektÄ lietotÄju grupÄ un atļauju lietot RT un Å¡o utilÄ«tu" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "NepiecieÅ¡ami daži argumenti:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "SlÄ«praksts" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "JÅ«l" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "JÅ«n" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "AtastÄt 'localhost' ja neesat pÄrliecinÄts.AtstÄt tukÅ¡u lai konektÄ“ties lokÄli" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Valoda" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Liels" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "PÄ“dÄ“jais" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "PÄ“dÄ“jais kontakts" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "PÄ“dÄ“jais Kontakts" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "PÄ“dÄ“joreiz atjauninÄts" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "PÄ“dÄ“jais atjauninÄtÄjs" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "PÄ“dÄ“jais atjauninÄtÄjs" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "PÄ“d.JauninÄjums" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "PÄ“d.JauninÄtÄjs" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "AtstÄj tukÅ¡u lai lietotu noklusÄ“to vÄ“rtÄ«bu datubÄzÄ“" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "AtstÄt tukÅ¡u lai lietotu noklusÄ“to dba lietotÄju datubÄzÄ“" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Pa kreisi" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "VÄ“sture" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Garums simbolos; Lietot '0' lai parÄdÄ«tu visus paziņojumus" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Atļaut Å¡im lietotÄjam lietot RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "pieÅ¡irt lietotÄjam Priveliģētas tiesÄ«bas" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Aiziet!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Saite" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Saite jau eksistÄ“" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Saite nav atrasta" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "SaiknÄ“t pieprasÄ«jumu #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "SaiknÄ“t vÄ“rtÄ«bas uz" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "SaistÄ«tie" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "PievienotsNo" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "PievienotsUz" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Saites" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "IelÄdÄ“t" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "IelÄdÄ“t saglabÄto meklÄ“jumu:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "IelÄdÄ“ts %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "IelÄdÄ“ts oriÄ£inÄls \"%1\" saglabÄtais meklÄ“jums" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "IelÄdÄ“tie Perl moduļi" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "IelÄdÄ“tie saglabÄtie meklÄ“jumi \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "" #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "LokÄlie" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "LokÄlDatumsLaiks" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Vieta" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Ielogojies kÄ %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Atvienojies" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Ielogoties" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "LogoAltTeksts" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Iziet" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "meklēšanas tips nesakrÄ«t" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "Pasts" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Saitnes pamattips" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Veidot Ä«paÅ¡nieku" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Veidot statusu" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Veidot datumu lÄ«dz" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Veidot datumu SÄkts" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Veidot datumu SÄkts" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Veidot datumu Pateikts" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "PieÅ¡kirt prioritÄti" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Veidot uzdevumu" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Veidot tÄ“mu" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Menedžēt laukus un lauku vÄ“rtÄ«bas" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Menedžet grupas un grupas dalÄ«bniekus" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Labot uzstÄdÄ«jumus un konfigurÄcijas visiem uzdevumiem" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Labot uzdevumu un speciÄlo uzdevumu uzstÄdÄ«jumus" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Labot saglabÄtos grafikus" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Labot lietotÄjus un paroles" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "IezÄ«mÄ“t vÄ“stules kÄ izlasÄ«tas" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Masona Å¡ablonu meklēšanas kÄrtÄ«ba" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "MaxVÄ“rtÄ«bas" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "MaksimÄlais vÄ“stules izmÄ“rs" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maijs" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Biedrs" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Biedrs %1 pievienots" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Biedrs %1 dzÄ“sts" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Biedrs pievienots: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Biedrs dzÄ“sts" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Biedrs netika dzÄ“sts" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "Biedrs" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Biedri" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Biedrs %1 pielikts" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Biedrs %1 dzÄ“sts" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Biedri" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "LietotÄja tiesÄ«bas %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Apvienots veiksmÄ«gi" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "ApvienoÅ¡ana neveiksmÄ«ga. Nevar pieÅ¡kirt EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Apvienot ar" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Apvienots %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "VÄ“stule" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "VÄ“stule netiks parÄdÄ«ta. SÅ«tÄ«tÄjs neļauj izlasÄ«t paÅ¡u vÄ“stuli" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "VÄ“stule netiks parÄdÄ«ta jo nav tÄ«ra teksta formÄtÄ." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "VÄ“stules augstums punktos" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "VÄ“stules lauka platums punktos" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "VÄ“stule netiks ierakstÄ«ta" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "VÄ“stule lietotÄjam" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "VÄ“stule ierakstÄ«ta" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "MinimÄlais paroles simbolu skaits" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "MinÅ«tes" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Nav primÄrÄs atslÄ“gas?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobilais" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Labot biedrus" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Labot laukus uzdevumam %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Labot piesaistÄ«tos objektus %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Labot formas vÄ“rtÄ«bas" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "MainÄ«t datumu pieprasÄ«jumam #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "mainÄ«t globÄlos laukus" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "MainÄ«t globÄlÄs grupas tiesÄ«bas" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "MainÄ«t globÄlÄs lietotÄja tiesÄ«bas" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "MainÄ«t grupas pamatdatus vai dzÄ“st grupu" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "MainÄ«t grupas tiesÄ«bas laukam %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "MainÄ«t grupas tiesÄ«bas grupai %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "MainÄ«t grupas tiesÄ«bas uzdevumam %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "MainÄ«t lietotÄja RT akkauntu" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "MainÄ«t pieprasÄ«juma biedrus #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "MainÄ«t personÄ«gos paneļus" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "MainÄ«t uzdevuma parametrus %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "MainÄ«t skripus kas uzliksies visiem uzdevumiem" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "MainÄ«t sistÄ“mas paneļus" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "MainÄ«t Å¡ablonu %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "MainÄ«t Å¡ablonus, kas uzliksies visiem uzdevumiem" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "MainÄ«t paneli %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "MainÄ«t pamatÄ“mu \"RT at a glance\"" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "MainÄ«t grupu %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "MainÄ«t abonementus panelim %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Labot lietotÄju %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "" #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Labot pieprasÄ«jumu # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Labot pieprasÄ«jumu #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Labot pieprasÄ«jumus" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Labot lietotÄja tiesÄ«bas laukam %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Labot lietotÄja tiesÄ«bas grupai %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Labot lietotÄja tiesÄ«bas uzdevumam %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modulis" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Pirmd." #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Pirmdiena" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "DaudzkÄrtÄ“js" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "JÄnorÄda 'Name' atribÅ«ti" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Mani %1 pieprasÄ«jumi" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Mana diena" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mani apstiprinÄjumi" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "mani paneļi" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mani saglabÄtie meklÄ“jumi" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "VÄrds" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "VÄrds jau ir aizņemts" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Nekad" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Jauns" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Jauna saite" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Jauns apstiprinÄjums rindÄ" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Jauna Meklēšana" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Jaunas vÄ“stules" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "JaunÄ parole" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "JaunÄs paroles paziņojums nosÅ«tÄ«ts" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Jauns atgÄdinÄjums:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Jauns pieprasÄ«jums" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Jauns pieprasÄ«jums nepastÄv" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "" #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Jauni vÄ“rotÄji" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "NÄkamais" #: lib/RT/User.pm:96 msgid "NickName" msgstr "SegvÄrds" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "SegvÄrds" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "NÄ“" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "Nav %1 ielÄdÄ“ts" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "NedefinÄ“ta klase" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "" #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Nav definÄ“ts lauks" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Nav definÄ“ta grupa" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Nav uzdevuma" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Nav definÄ“ts uzdevums" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "" #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Nav temata" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Nav Å¡ablona" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Nav darbÄ«bas" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Nav norÄdÄ«ta kolonna" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Par Å¡o lietotÄju nav ievadÄ«ti komentÄri" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Nav paraksta %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Nav norÄdÄ«ta grupa" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Nav atrastas meklÄ“jamÄs gr4upas" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Nav atslÄ“gas Å¡ifrēšanai" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Nav pievienota vÄ“stule" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Nav norÄdÄ«ts vÄrds" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Å ifrēšana nav vajadzÄ«ga" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Nav uzlikta parole" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Nav tiesÄ«bu veidot uzdevumus" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Nav tiesÄ«bu veidot pieprasÄ«jumu uzdevumÄ '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Nav tiesÄ«bu skatÄ«t Å¡o pieprasÄ«jumu" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Nav tiesÄ«bu saglabÄt meklēšanas kritÄ“rijus" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Nav tiesÄ«bu saglabÄt uzstÄdÄ«jumus" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Nav tiesÄ«bu skatÄ«t pieprasÄ«juma izmaiņas" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "" #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Nav privÄtÄs atslÄ“gas" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Nav Å¡Ädu meklÄ“to uzdevumu" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Nav norÄdÄ«tas tiesÄ«bas" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Nav atrastas tiesÄ«bas" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Nav norÄdÄ«ts meklÄ“jamais" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Nav subjekta" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Nav atslÄ“gas vai atslÄ“ga nav derÄ«ga" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Nav atrasti pieprasÄ«jumi" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Nav lietojamas atslÄ“gas" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Å Ädi meklÄ“tie lietotÄji nepast" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Neviens" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Neviens" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "NeesoÅ¡s lauks?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Nav atrasts" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Nav ielogojies" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Nav iestatÄ«ts" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "PiezÄ«mes" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "BrÄ«dinÄjums netiks nosÅ«tÄ«ts" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "BrÄ«dinÄt AdminCcs" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "BrÄ«dinÄt AdminCcs ar komentÄru" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Paziņot Ccs" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Paziņot Ccs ar komentÄru" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Paziņot citus saņēmÄ“jus" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Paziņot citus saņēmÄ“jus ar koentÄru" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Paziņot Ä«paÅ¡niekam" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Paziņot Ä«paÅ¡niekam ar komentÄru" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Paziņot Ä«paÅ¡niekam par atteiktu pieprasÄ«jumu" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Paziņot Ä«paÅ¡niekam, ika viņa pieprasÄ«jums ir gatavs apstrÄdei" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Paziņot Ä«paÅ¡niekam, ika viņa pieprasÄ«jums ir apstiprinÄts apstrÄdei" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "paziņot Ä«paÅ¡niekam, pieprasÄ«tÄjam, Ccs un AdminCcs" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Paziņot Ä«paÅ¡niekam, pieprasÄ«tÄjiem, Css un AdminCcs ar komentÄru" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Paziņot Ä«paÅ¡niekam un AdminCcs ka ir jauni dati gaida apstiprinÄjumu" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Paziņot pieprasÄ«tÄjam ka ir jauni dati ir apstiprinÄti" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Paziņot pieprasÄ«tÄjam ka ir jauni dati ir apstiprinÄti" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "paziņot pieprasÄ«tÄjiem" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "paziņot pieprasÄ«tÄjiem un Ccs" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "paziņot pieprasÄ«tÄjiem un Ccs ar komentÄru" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Paziņot man par neizlasÄ«tu e-pastu" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "VAI" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekts" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekts nevar tikt izveidots" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Objekts nevar tikt dzÄ“sts" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objekts izveidots" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objekts dzÄ“sts" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Objekta tips nesakrÄ«t" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Ojektu saraksts ir tukÅ¡s" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Okt." #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "%1, %2 raksta:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Aizverot" #: etc/initialdata:170 msgid "On Comment" msgstr "KomentÄ“jot" #: etc/initialdata:142 msgid "On Correspond" msgstr "Sarakstoties" #: etc/initialdata:131 msgid "On Create" msgstr "Pie Izveides" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Uz Ä«paÅ¡nieka maiņu" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "uz PrioritÄtes maiņu" #: etc/initialdata:199 msgid "On Queue Change" msgstr "uz uzdevuma maiņu" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "atsakot" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Atverot par jaunu" #: etc/initialdata:205 msgid "On Resolve" msgstr "Atrisinot" #: etc/initialdata:176 msgid "On Status Change" msgstr "Statusu mainot" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Sarakstoties" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "VienreizÄ“js Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "VienreizÄ“js Cc" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "RÄdÄ«t pieprasÄ«jumu apstiprinÄjumus, veidotus pÄ“c %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "RÄdÄ«t pieprasÄ«jumu apstiprinÄjumus, veidotus pirms %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "RÄdÄ«t laukus tikai:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "" #: etc/initialdata:108 msgid "Open Tickets" msgstr "AtvÄ“rtie pieprasÄ«jumi" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "AtvÄ“rt URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "AtvÄ“rtie pieprasÄ«jumi" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "AtvÄ“rt pieprasÄ«jumus sarakstei" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Opcija" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Opcijas" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "Orakle" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "SakÄrtot" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "OrganizÄcija" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "OriÄ£inÄls pieprasÄ«jums: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "IzejoÅ¡s e-pasts ar komentÄru ierakstÄ«ts" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "IzejoÅ¡s e-pasts ierakstÄ«ts" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "IzejoÅ¡ais e-pasts" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "piederÄ«gie pieprasÄ«jumi" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "ĪpaÅ¡nieks" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "ĪpaÅ¡niekam '%1' nav tiesÄ«bu paņemt Å¡o pieprasÄ«jumu." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "ĪpaÅ¡nieks nomainÄ«ts no %1 uz %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "ĪpaÅ¡nieks nomainÄ«ts no %1 uz %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "ĪpaÅ¡n.VÄrds" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Lapa" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Lapa 1 no 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Lapa nav atrasta" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Peidžeris" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "VecÄki" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Parole" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Parole nomainÄ«ta" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Parole nav uzlikta" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Parolei jÄbÅ«t vismaz %1 simbolu garai" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Parole uzlikta" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Parole: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Parole: Pieeja aizliegta" #: etc/initialdata:714 msgid "PasswordChange" msgstr "ParolesMaiņa" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Paroles nesakrÄ«t." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "ceļš uz sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "CilvÄ“ki" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Veikt lietotÄja definÄ“tu komandu" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl konfigurÄcija" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Atļauja liegta" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Pieeja aizliegta" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefona numuri" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "PÄrbaudi URL un mēģini vÄ“lreiz" #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "LÅ«dzu ievadiet paroli korekti" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "LÅ«dzu ievadiet esoÅ¡o paroli" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "iespÄ“jams slÄ“pti meklÄ“jumi" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "UzstÄdÄ«jumi" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "UzstÄdÄ«jumi %1 lietotÄjam %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "UzstÄdÄ«jumi saglabÄti %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "UzstÄdÄ«jumi saglabÄti lietotÄjam %1." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "UzstÄdÄ«jumi saglabÄti." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "VÄ“lamÄ atslÄ“ga: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "VÄ“lamÄ atslÄ“ga" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Iepr" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "DrukÄt Å¡o vÄ“stuli" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "PrioritÄte" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "PrivÄtums" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "PrivÄtums:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "PrivÄtÄ atslÄ“ga" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Priveliģēts" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Priveliģēts statuss: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Priveliģēti lietotÄji" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseidogrupa iekšējai lietoÅ¡anai" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "PÄrbaudei nepiecieÅ¡ama '0x%1' publiskÄ atslÄ“ga" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "PieprasÄ«jumi" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "PieprasÄ«jums" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "PieprasÄ«jumu veidoÅ¡ana" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "SecÄ«ba" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Uzdevums %1 nav atrasts" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Uzdevuma nosaukums" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Uzdevums jau eksistÄ“" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Uzdevums nevar tikt izveidots" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Uzdevums nevar tikt ielÄdÄ“ts" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Uzdevums izveidots" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Uzdevuma Id" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Uzdevums nav atrasts" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Uzdevumu atslÄ“gas" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "UzdevumaAdminCc" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "UzdevumaCc" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "Uzd.VÄrds" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "Uzd.SekotÄjs" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Rindas" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Uzdevumi, kurus administrÄ“ju" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Uzdevumi, kuriem es kÄ AdminCc" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Ä€trÄ meklēšana" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "ÄtrÄ pieprasÄ«juma veidoÅ¡ana" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT AdministrÄcija" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "RT AdministrÄcijas Epasts" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT konfigurÄcija" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT kļūda" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT izmÄ“rs" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT Ä«sumÄ" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "RT Ä«sumÄ lietotÄjam %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT PamatvÄ“rtÄ«bas" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Īstais vÄrds" #: lib/RT/User.pm:95 msgid "RealName" msgstr "" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "IerakstÄ«t visus jauninÄjumus" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "RekursÄ«vs lietotÄjs" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Atsauce no %1 pielikta" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Atsauce no %1 dzÄ“sta" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Atsauce %1 pielikta" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Atsauce %1 dzÄ“sta" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Atsauksme uz no" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Atsauce uz" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Atjaunot" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Atjaunot Å¡o lapu katras %1 minÅ«tes." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "AtgÄdinÄjums '%1' pielikts" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "AtgÄdinÄjums '%1' sagatavots" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "AtgÄdinÄjums '%1' pÄratvÄ“rts" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "AtgÄdinÄjumi" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "AtgÄdinÄjums pieprasÄ«jumam #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Noņemt AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Izņemt grÄmatzÄ«mi" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Noņemt Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Noņemt PieprasÄ«tÄju" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "AtbildÄ“t" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Attbildes adrese" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "AtbildÄ“t pieprasÄ«tÄjiem" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "AtbildÄ“t pieprasÄ«jumiem" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "PieprasÄ«tÄjs" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "PieprasÄ«tÄji" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "VajadzÄ«gais parametrs '%1' nav norÄdÄ«ts" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "AtstatÄ«t" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "AtstatÄ«t slepeno autentifikÄcijas zÄ«mi" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "AtstatÄ«t uz noklusÄ“to" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "UzturēšanÄs" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "AtrisinÄt" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "AtrisinÄt pieprasÄ«jumu #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "AtrisinÄts" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "AtbildÄ“t" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "RezultÄti" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Atgriezties pieprasÄ«jumÄ" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "IevadÄ«t paroli" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Atgriezt" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "TiesÄ«bas ielÄdÄ“tas" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "TiesÄ«bas netiks anulÄ“tas" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "TiesÄ«bas nav ielÄdÄ“tas" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "TiesÄ«bas nav apstiprinÄtas %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "TiesÄ«bas" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Rindas" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "rindas laukumÄ" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Rindas lapÄ" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "SQL lite" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sestd." #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Sestdiena" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "SaglabÄt" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "SaglabÄt izmaiņas" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "SaglabÄt uzstÄdÄ«jumus" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "SaglabÄt kÄ jaunu" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "SaglabÄts %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "SaglabÄtie grafiki" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "SaglabÄtÄs meklēšanas" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Skrips #%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Skrips izveidots" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Skripi" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Skripi un saņēmÄ“ji" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "MeklÄ“t" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Meklēšanas iestatÄ«jumi" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "meklÄ“t apstiprinÄjumus" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "MeklÄ“t pieprasÄ«jumus" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Meklēšanas iestatÄ«jumi" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Meklēšanas rezultÄtu atjaunoÅ¡anas intervÄls" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Slepenais autorizÄcijas žetons" #: bin/rt-crontool:352 msgid "Security:" msgstr "Drošība:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "SkatÄ«t arÄ«:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "IezÄ«mÄ“t" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "IzvÄ“lÄ“ties DatubÄzes tipu" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "IzvÄ“lÄ“ties lauku" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "IzvÄ“lÄ“ties grupu" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "IzvÄ“lÄ“ties uzdevumu" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "IzvÄ“lÄ“ties uzdevumu jaunajam pieprasÄ«jumam" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "IzvÄ“lÄ“ties lietotÄju" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "IzvÄ“lÄ“ties citu valodu" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "IzvÄ“lÄ“ties laukus visiem uzdevumiem" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "IzvÄ“lÄ“ties laukus visÄm lietotÄju grupÄm" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "IzvÄ“lÄ“ties laukus visiem lietotÄjiem" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "IzvÄ“lÄ“ties laukus pieprasÄ«jumiem visos uzdevumos" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "IzvÄ“lÄ“ties laukus transakcijÄs pieprasÄ«jumos visos uzdevumos" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "IzvÄ“lÄ“ties vairÄkas vÄ“rtÄ«bas" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "IzvÄ“lÄ“ties vienu vÄ“rtÄ«bu" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "IzvÄ“lÄ“ties uzdevumus kurus rÄdÄ«t \"RT at a glance\" lapÄ" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "IzvÄ“lies lÄ«dz %1 vÄ“rtÄ«bas" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "IzvÄ“lies Custom laukus" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "IzvÄ“lÄ“tÄ atslÄ“ga nav droÅ¡a vai vispÄr nepastÄv." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "IzvÄ“lÄ“ties objektus" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "IzvÄ“lne mainÄ«ta. SaglabÄjiet izmaiņas" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "NosÅ«tÄ«t vÄ“stuli Ä«paÅ¡niekam un visiem sekotÄjiem" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "NosÅ«tÄ«t vÄ“stuli Ä«paÅ¡niekam un visiem sekotÄjiem kÄ \"komentÄrs\"" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "NosÅ«tÄ«t vÄ“stuli pieprasÄ«tÄjiem un Ccs" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "NosÅ«tÄ«t vÄ“stuli pieprasÄ«tÄjiem un Ccs kÄ komentÄru" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "NosÅ«tÄ«t vÄ“stuli pieprasÄ«tÄjiem" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "NosÅ«tÄ«t vÄ“stuli norÄdÄ«tajiem Bccs un Ccs" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "NosÅ«tÄ«t vÄ“stuli Ccs" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "NosÅ«tÄ«t vÄ“stuli Ccs kÄ komentÄru" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "NosÅ«tÄ«t vÄ“stuli administratÄ«vajiem Ccs" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "NosÅ«tÄ«t vÄ“stuli administratÄ«vajiem Ccs kÄ komentÄru" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "NosÅ«tÄ«t vÄ“stuli Ä«paÅ¡niekam" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "UzstÄdijumi" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Vai RT sÅ«tÄ«t jums e-pastu ja ir pieprasÄ«jumÄ izmaiņas?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "RÄdÄ«t" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "RÄdÄ«t kolonas:" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "RÄdÄ«t rezultÄtus" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "RÄdÄ«t pieprasÄ«jumu uzstÄdÄ«jumus %1 lÄ«menÄ«" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "RÄdÄ«t apstiprinÄtos uzdevumus" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "ParÄdÄ«t kÄ arÄ«" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "ParÄdÄ«t noraidÄ«tos pieprasÄ«jumus" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "RÄdÄ«t lika komantÄrus" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "RadÄ«t vecÄko vÄ“sturi pirmo" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "RÄdÄ«t gaidoÅ¡os pieprasÄ«jumus" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "RÄdÄ«t pieprasÄ«jumus kuri gaida citu aprstiprinÄjumus" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Å rederis" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "SÄnjosla" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "ParakstÄ«t" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "ParakstÄ«t pÄ“c noklusÄ“juma" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Paraksts" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "VienkÄrÅ¡a meklēšana" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Viens" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Saita nosaukums" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "IzmÄ“rs" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Izlaist IzvÄ“lni" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Izlaist neaktÄ«vo lietotÄju" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Mazs" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Radusies kļūda. KontaktÄ“ties ar administratoru" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "KÄrtot" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "KÄrtoÅ¡ana" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Avots" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "NorÄdi vai jÄpalaiž ikdienÄ vai reizi nedēļÄ" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Tabullapa" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "IesÄkta" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "SÄkas" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Statuss" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "StÄvoklis" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "" #: etc/initialdata:449 msgid "Status Change" msgstr "Statusa maiņa" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Statuss mainÄ«ts no %1 uz %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Zagt" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Zagt pieprasÄ«jumus" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Solis %1 no %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Nozagts no %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Stils" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Temats" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Temata tegs" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Temats mainÄ«ts uz %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "NosÅ«tÄ«t" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "PierakstÄ«ties" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "PierakstÄ«ties panelÄ« %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "PierakstÄ«ties panelÄ«" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "ParakstÄ«jies uz paneli %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "ParakstīšanÄs" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "ParakstīšanÄs netika veikta: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "VeiksmÄ«gi atÅ¡ifrÄ“ti dati" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "VeiksmÄ«gi Å¡ifrÄ“ti dati" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "SvÄ“td." #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "SvÄ“tdiena" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "IesaldÄ“ts" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "SistÄ“mas konfigurÄcija" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "SistÄ“mas noklusÄ“tais" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "SistÄ“mas kļūda" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "SistÄ“mas kļūda: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "SistÄ“mas rÄ«ki" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "SistÄ“mas kļūda. Nav tiesÄ«bu." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup iekšējai lietoÅ¡anai" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Paņemt" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Paņemt pieprasÄ«jumus" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Paņemts" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Å ablons:" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Å ablons #%1 dzÄ“sts" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Å ablons '%1' nav atrasts" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Å ablons ir tukÅ¡s" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Å ablons ir obligÄts arguments" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Å ablons apvienots" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Å ablona apvienoÅ¡anas kļūda" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Å abloni" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Teksta fails netiks parÄdÄ«ts, jo funkcija aizliegta uzstÄdÄ«jumos" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Tas jau ir tekoÅ¡Ä vÄ“rtÄ«ba" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Å Ä« nav vÄ“rtÄ«ba Å¡im laukam" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Å¡im pieprasÄ«jumam ir neatrsinÄtas atkarÄ«bas" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Å im lietotÄjam jau pieder Å¡is pieprasÄ«jums" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Å Äds lietotÄjs neeksistÄ“" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Å is lietotÄjs jau ir priveliģēts" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Å is lietotÄjs jau ir nepriveliģēts" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Å is lietotÄjs tagad ir priveliģēts" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Å is lietotÄjs tagad ir nepriveliģēts" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Å im lietotÄjam nav savu pieprasÄ«jumu Å¡ajÄ uzdevumÄ" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Tas nav numerisks id" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Pamati" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "PieprasÄ«juma CC" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "DB'a datubÄzes parole" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "PieprasÄ«juma administratÄ«vÄ CC" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "DomÄ“na vÄrds datubÄzes serverim (piem. 'db.example.com')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "SekojoÅ¡i pieprasÄ«jumi tiks dzÄ“sti un katrs tiks noņemts no paneļa kad panelis tiks atjauninÄts." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "SekojoÅ¡i uzdevumi varbÅ«t netiks visiem lietotÄjiem, kuri var skatÄ«ties Å¡o paneli" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "AtslÄ“ga tiks liegta" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "AtslÄ“ga tiks anulÄ“ta" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "AtslÄ“gas termiņš beidzies" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "AtslÄ“ga ir uzticama" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "AtslÄ“ga pilnÄ«gi uzticama" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "JaunÄ vÄ“rtÄ«ba uzstÄdÄ«ta" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "PieprasÄ«juma Ä«paÅ¡nieks" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "PieprasÄ«tÄ lapa nav atrasta" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "PieprasÄ«juma pasÅ«tÄ«tÄjs" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "IzvÄ“lÄ“tie uzstÄdÄ«jumi saglabÄti %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "SistÄ“ma nevar apstiprinÄt izejoÅ¡o e-pastu. Tas liecina, ka, vai passfrÄze ir nepareiza, vai GPG aÄ£ents nedarbojas. Paziņjiet sistÄ“mas adminam. ProblÄ“mas adrese ir:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "TÄ“ma" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Ir vairÄkas atslÄ“gas derÄ«gas Å¡ifrēšanai." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "ir neizlasÄ«tas vÄ“stules Å¡ajÄ pieprasÄ«jumÄ" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Å aj atslÄ“gai ir nepilna uzticÄ«ba" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Nav piemÄ“rotas atslÄ“gas Å¡ifrēšanai" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Ir viena piemÄ“rota atslÄ“ga, bet uzticÄ«bas lÄ«menis nav uzlikts." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Å Ä«s konfigurÄcijas opcijas pÄrsedz pamatus, kuri nepiecieÅ¡ami li RT palaistos un strÄdÄtu. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Å Ä« iespÄ“ja atļauta tikai sistÄ“mas adminam" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Å is rÄ«ks atļauj lietotÄjam palaist Perl moduļus no RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Å Äds darÄ«jums parÄdÄs bez satura" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Ceturtd." #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Ceturtdiena" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "PieprasÄ«jums" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "PieprasÄ«jums #%1 Jumbo labojums: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "PieprasÄ«juma #%1 grafiks" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "PieprasÄ«jums #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "PieprasÄ«jums %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "PieprasÄ«jums %1 izveidots uzdevumÄ '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "PieprasÄ«jums %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "PieprasÄ«juma vÄ“sture # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "PieprasÄ«jums atrisinÄts" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "MeklÄ“t pieprasÄ«jumu" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "DarbÄ«bas ar pieprasÄ«jumu" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "PieprasÄ«juma saturs" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "PieprasÄ«juma satura tips" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "PieprasÄ«jums nav izveidots iekšējas kļūdas dēļ" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "PieprasÄ«jums nav ielÄdÄ“ts" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "PieprasÄ«jumu displejs" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "PieprasÄ«juma Metadati" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "PieprasÄ«juma statuss mainÄ«ts" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "PieprasÄ«jumaSQL meklēšanas modulis" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "PieprasÄ«jumi" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "PieprasÄ«jumi %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "PieprasÄ«jumi %1 no %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "PieprasÄ«jumi piederoÅ¡i Å¡im apstiprinÄjumam" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "AprēķinÄtais laiks" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "AtlikuÅ¡ais laiks" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "RisinÄjuma laiks" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Laiks ko parÄdÄ«t" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Laika josla" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Titls" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "LÄ«dz" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Ar jautÄjumiem par palÄ«dzÄ«bu, pamÄcÄ«bu utt., kontaktÄ“ties ar %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Teica" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "RÄ«ki" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "KopÄ" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "DarÄ«jumi" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "DarÄ«jums %1 iztÄ«rÄ«ts" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "DarÄ«jums veikts" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "DarÄ«juma dažÄdi lauki" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "DarÄ«jums->Veikt, nepareizs jo nav norÄdÄ«ts objekta tips un id" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "DarÄ«jums ir nemainÄ«gs" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "UzticamÄ«ba" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Otrd." #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Otrdiena" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tips" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Tips mainÄ«ts no '%1' uz '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Nevar noteikt objekta tipu vai id" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "unix logins" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "NezinÄms (nav piešķirta ticama vÄ“rtÄ«ba)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "NezinÄms (vÄ“rtÄ«ba ir jauna sistÄ“mai)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "NezinÄma Satura Å¡ifrēšana %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "NezinÄms lauks: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "NelimitÄ“ts" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "NelimitÄ“ts" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "bezvÄrda meklēšana" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Nepriviliģēts" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "NeatlasÄ«ti Cust. lauki" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "NeatlasÄ«ti objekti" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Nepiešķirta privÄtÄ atslÄ“ga" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Nepaņemts" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "JauninÄt" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "JauninÄt grafiku" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "JauninÄt PieprasÄ«jumu" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "JauninÄt Tipu" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "JauninÄt formÄtu un meklÄ“t" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "JauninÄt vairÄkus pieprasÄ«jumus" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "JauninÄjums nav ierakstÄ«ts." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "JauninÄt PieprasÄ«jumu" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "JauninÄt pieprasÄ«jumu #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "JauninÄt PieprasÄ«jumu #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "AtjaunoÅ¡anas veids nebija ne korespondence, ne komentÄrs." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "AtjauninÄts" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "JauninÄts saglabÄts meklÄ“jums \"%1\"" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "IelÄdÄ“t" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "IelÄdÄ“t vairÄkus failus" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "IelÄdÄ“t vairÄkas bildes" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "IelÄdÄ“t vienu failu" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "IelÄdÄ“t vienu bildi" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "IelÄdÄ“t lÄ«dz pat %1 failiem" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "IelÄdÄ“t lÄ«dz pat %1 bildÄ“m" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Lietot noklusÄ“to (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Lietot citus RT administrēšanas rÄ«kus" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Lietot sistÄ“mas noklusÄ“to (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "LietotÄjs" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "LietotÄjs (izveidots - noilgums)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "LietotÄja definÄ“ts" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "LietotÄja tiesÄ«bas" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "LietotÄjs pieprasÄ«ja nezinÄmu jauninÄjuma tipu cust.laukam %1 dēļ %2 objektam #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Nevar izveidot lietotÄju %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "LietotÄjs izveidot" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "LietotÄjs atslÄ“gts" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "LietÄjs pieslÄ“gts" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "LietotÄjam nenorÄdÄ«ta E-pasta adrese" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "LietotÄjs ielÄdÄ“ts" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "LietotÄju-definÄ“tas grupas" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "LietotÄjvÄrds" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "LietotÄjvÄrda formÄts" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "LietotÄji" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "FiltrÄ“jot sameklÄ“tie lietotÄji" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Lietot darbÄ«bu #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "PÄrbaudÄ«t uzdevumu" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "PÄrbaudīšana" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "VÄ“rtÄ«ba" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "VÄ“rtÄ«bas" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "MainÄ«gais" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Versija" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "SkatÄ«t personÄla paneļus" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "SkatÄ«t sistÄ“mas paneļus" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "WYSIWYG editora augstums" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "WYSIWYG vÄ“stuļu editors" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "UzmanÄ«bu! NAV parakstÄ«ts!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "SkatÄ«tÄjs" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "SkatÄ«tÄjuGrupa" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "SkatÄ«tÄji" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Web ports" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "TreÅ¡d." #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "TreÅ¡diena" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Nedēļas apskats" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "SveicinÄm RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Ko es Å¡odien izdarÄ«ju" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Kas ir RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Kad RT nevar paņemt epasta vÄ“stuli, kam to pÄrsÅ«tÄ«t?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Kad RT sÅ«ta epastu tiek norÄdÄ«ts NO: un AtbildÄ“t: apraksti lai lietotÄjs varÄ“tu sarakstÄ«ties vienkÄrÅ¡i nospiežot Reply. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Kad pieprasÄ«jums ir izveidots" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Kad pieprasÄ«jums ir apstiprinÄts, ziņot Ä«paÅ¡niekam un AdminCc, ka ieraksts gaida viņu apstiprinÄjumu." #: etc/initialdata:137 msgid "When anything happens" msgstr "Kad kaut kas noticis" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Kad tiek nospiests 'PÄrbaudÄ«t DatubÄzes sakarus' var paeiet brÄ«dis kamÄ“r RT mēģinÄs savienoties ar datubÄzi" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Kad vien pieprasÄ«jums ir slÄ“gts" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Kad vien pieprasÄ«jums ir atteikts" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Kad vien pieprasÄ«jums ir atvÄ“rts par jaunu" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Kad vien pieprasÄ«jums ir atrisinÄts" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Kad vien pieprasÄ«jumiem mainÄs Ä«paÅ¡nieki" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Kad vien pieprasÄ«jumiem mainÄs prioritÄte" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Kad vien pieprasÄ«jumiem mainÄs uzdevums" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Kad vien pieprasÄ«jumiem mainÄs statuss" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Kad vien pieprasÄ«jumiem mainÄs lietotÄju darbÄ«bas" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Kad vien parÄdÄs komentÄri" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Kad vien parÄdÄs korespondence" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Kur meklÄ“t sendmaila datu failus." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "NotÄ«rÄ«t" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Darbs" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "StrÄdÄts" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "JÄ" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Jums jau pieder Å¡is pieprasÄ«jums" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "JÅ«s varat iet uz pirmo nelasÄ«to vÄ“stuli vai iet uz pirmo vÄ“stuli un atzÄ«mÄ“t visas vÄ“stules kÄ izlasÄ«tas." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "JÅ«s pats varat atlasÄ«t meklēšanas kritÄ“rijus" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "JÅ«s nevarat piešķirt paroli." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "JÅ«s varat pÄrsÅ«tÄ«t pieprasÄ«jumus kas jums pieder, vai tiem nav Ä«paÅ¡nieka" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "JÅ«s varat paņemt pieprasÄ«jumus kuriem nav Ä«paÅ¡nieka" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Jums nav SuperUser tiesÄ«bu." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "JÅ«s izgÄjÄt no RT" #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Jums nav tiesÄ«bu veidot pieprasÄ«jumus Å¡ajÄ uzdevumÄ" #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "NepiecieÅ¡ams ievadÄ«t Administatora paroli" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "JÅ«s pÄrsÅ«tÄ«s uz login lapu. VarÄ“siet ieiet ar lietotÄjvÄrdu %1 un agrÄko paroli" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "SveicinÄts atkal ielogoties" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "parole nav uzlikta" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Nepareizs lietotÄjvÄrds vai parole" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Lejup]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[AugÅ¡up]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[nekas]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "pÄ“c" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "rinda" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "pirms" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "Apakšējais uz augÅ¡u" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "AtÄ·eksÄ“t lai uzlliktu Å¡o lauku visiem objektiem." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "AtÄ·eksÄ“t lai noņemtu lauku no visiem objektiem un atÄlut izvÄ“lÄ“ties specifiskus objektus." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "AtÄ·eksÄ“t lai pieliktu" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "Spiest lai uzreiz pieliktu/noņemtu visus objektus" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "Pamatu konfigurÄcija" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "katru dienu %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "dzÄ“sts" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "nesakrÄ«t" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "lejuplÄdÄ“t" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "vienÄds ar" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "kļūda: navar pÄrlikt lejup" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "kļūda: navar pÄrlikt pa kreisi" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "kļūda: navar pÄrlikt augÅ¡up" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "kļūda: nav ko dzÄ“st" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "kļūda: nav ko pÄrlikt" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "kļūda: nav ko pÄrcelt" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "katru" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "VeiksmÄ«gi izpildÄ«ts plugins" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "pilns" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "lielÄks kÄ" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "Grupa '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "ir" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "nav" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "AtslÄ“ga atspÄ“kota" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "AtslÄ“ga noilgusi" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "AtslÄ“ga anulÄ“ta" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "kreiso uz labo" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "mazÄks par" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "ierobežots" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "sakritÄ«bas" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "maksimÄlais dziļums" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minÅ«tes" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "ikmÄ“neÅ¡a" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "ikmÄ“naÅ¡a (diena %1) at %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "nekad" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "Jauns" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "NÄ“" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "nekas" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "nav vienÄds ar" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "nekas" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "Objekti veiksmÄ«gi noņemti" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "uz" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "dienÄ" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "viens" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "atvÄ“rt" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "AtvÄ“rt/AizvÄ“rt" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "cits..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "plugins atgrieza tukÅ¡u sarakstu" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "uzdevums %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "noraidÄ«ts" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "atrisinÄts" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "labo pa kreisi" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "skatÄ«t zemÄk norÄdÄ«to objektu" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "Saita konfig" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "apstÄdinÄts" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "Savilkuma rindas" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "SistÄ“ma %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "SistÄ“mas grupas '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "Izsaucamais komponents nenorÄda kÄdēļ" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "NoklusÄ“tÄs adreses kas parÄdÄ«sies From: un Reply-Tu: laukÄ komentÄ“jamÄ pastÄ" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "NoklusÄ“tÄs adreses kas parÄdÄ«sies From: un Reply-Tu: laukÄ korespondencÄ“" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "PieprasÄ«jums #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "Augšējo uz apakÅ¡u" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "PilnÄ«ga" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "NeparakstÄ«ta grupa %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "neierobežots" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "lietotÄjs %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "ik nedēļu" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "ik nedēļu (%1) %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "nedēļas" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "kuru portu JÅ«su tÄ«mekļa serveris klausÄ«sies, piem., 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "ar hederiem" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "jÄ" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/zh_CN.po0000664000175000017500000122740213131430353015123 0ustar vagrantvagrant# Chinese (Simplified) translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 10:09+0000\n" "Last-Translator: Tasp \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%4-%2-%3 %1" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%7-%2-%3 %4:%5:%6 %1" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%2 已创建为 %1" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1已从%2改为%3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%2 已自%1删除" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2已删除" #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 ä¸å­˜åœ¨" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 已关闭" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2å·²ä¿å­˜" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2已更新" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "æ¡ä»¶ï¼š%1 | 动作:%2 | 模æ¿ï¼š%3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) - %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (未更改)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (æ¥è‡ªçª—æ ¼%2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - 调整LogToSTDERRé…置选项" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - 传递给%2çš„ä¸€ä¸ªå‚æ•°" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - 将更新状æ€è¾“出到 STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - 指定你è¦ä½¿ç”¨ç¬¬ä¸€ä¸ªï¼Œæœ€åŽä¸€ä¸ªè¿˜æ˜¯æ‰€æœ‰äº‹åŠ¡" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - 指定您想在模æ¿ä¸­ä½¿ç”¨çš„å字或者编å·" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - 指定你è¦ä½¿ç”¨ç”±é€—å·(,)分隔的transactions类型列表" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - 指定è¦ä½¿ç”¨çš„æ¡ä»¶æ¨¡å—" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - 指定è¦ä½¿ç”¨çš„æœç´¢æ¨¡å—" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT%2版,%4 ç‰ˆæƒæ‰€æœ‰ï¼Œ1996-%3。" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "%1 版本" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "创建%1作为%2的值" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 å­˜åœ¨å¹¶ä¸”å·²ç»æœ‰äº†RT的数æ®åº“表,但是其中没有RT的元数æ®ã€‚ç¨åŽçš„'åˆå§‹åŒ–æ•°æ®åº“‘步骤能够往里é¢åŠ å…¥å…ƒæ•°æ®ã€‚如果这正是你想è¦çš„,点击下é¢çš„'自定基本项'继续自定RT。" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 存在但是没有RT的数æ®åº“表。ç¨åŽçš„'åˆå§‹åŒ–æ•°æ®åº“'步骤能够创建数æ®åº“表并加入元数æ®ã€‚如果这正是你想è¦çš„,点击下é¢çš„'自定基本项'继续自定RT。" #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1是个本地对象,但å´ä¸åœ¨æ•°æ®åº“里" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 å·²ç»å®Œå…¨åˆå§‹åŒ–了。ä¸éœ€è¦å†åˆ›å»ºä»»ä½•的数æ®åº“表或者加入元数æ®ï¼Œç‚¹å‡»ä¸‹é¢çš„'自定基本项'继续自定RT." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 (%2)" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 ä¸èƒ½ä¸ºä¸€ç»„" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 的值从%2改为 %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 已由'%2' 改为 '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1å¤åˆ¶" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 核心é…ç½®" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "无法将%1设定为 %2。" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1已创建" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1已删除" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1å·²åœç”¨" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1ä¸å­˜åœ¨." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1å·²å¯ç”¨" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "我拥有的å‰%1份待处ç†ç”³è¯·å•" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1是从外部定时程åº(如cron)æ¥å¯¹ç”³è¯·å•进行æ“作的工具。" #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1是一个由cronè¿è¡Œçš„工具,å¯ä»¥åˆ†æ´¾æ‰€æœ‰å»¶æœŸçš„é€šçŸ¥ç”Ÿæˆæ¯ä¸ªç”¨æˆ·çš„æ‘˜è¦ã€‚" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 已被设置为 %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1是RT接收邮件的地å€ï¼ŒåŠ åˆ°%2会导致邮件循环å‘é€" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1å·²ä¸å†æ˜¯è‡ªå®šå­—段%2的值" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 最近更新的文章" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 最新的文章" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "å‰%1份待认领的申请å•" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1对象" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1站点é…ç½®" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1已更新: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1已更新: 没有改å˜" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1已更新" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1内的%2对象" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1内的%2çš„%3对象" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1 的当å‰å¯†ç " #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1的表å•" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1的已存æœç´¢" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1:未指定附件" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "%1字节" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "%1k字节" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1创建申请å•%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "%1 分钟" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1 ç§’" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%1 篇文章" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%1å°æ—¶" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%1分钟" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' 䏿˜¯ä¸€ä¸ªæœ‰æ•ˆçš„类型标识符" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(标记è¦å®Œæˆçš„项目)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(标记è¦åˆ é™¤çš„项目)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(标记è¦åˆ é™¤çš„项目)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(输入申请å•ç¼–å·æˆ–网å€ï¼Œä»¥ç©ºç™½åˆ†éš”)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(如果留白, 则默认为%1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(没有自定字段)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(没有æˆå‘˜)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(没有脚本)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "没有模æ¿" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(é€å‡ºæœ¬ä»½æ›´æ–°çš„æŠ„é€ç»™åå•上以逗å·éš”开的管ç†å‘˜é‚®ç®±ã€‚这将会更改åŽç»­çš„æ”¶ä»¶è€…åå•。)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(é€å‡ºæœ¬ä»½æ›´æ–°çš„æŠ„é€ç»™åå•上以逗å·éš”开的邮箱。这将会更改åŽç»­çš„æ”¶ä»¶è€…åå•。)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(当æ¡ä»¶æˆ–动作设为‘用户自定’时,请填写这些字段)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(ä»»æ„)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(没有摘è¦)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(没有åç§°)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(没有公钥!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(æ— )" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(没有值)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(等待批准)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(å¿…å¡«)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "ä¿¡ä»»: %1" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(未命å)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(ä¸è¢«ä¿¡ä»»!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id 是å¯å¿½è§†å‚数并且无法和 --template 一起使用" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--transaction 傿•° åªèƒ½æ˜¯ 'first','last' 或者'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "空白模æ¿" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "å¯†ç æ²¡æœ‰è®¾å®šï¼Œå› æ­¤è¯¥ç”¨æˆ·å°†æ— æ³•登录。" #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "找ä¸åˆ° ACE 设定" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "åªèƒ½åˆ›å»ºæˆ–删除 ACE 设定。" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "个人信æ¯" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "å­˜å–æƒé™" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "动作" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "没有找到Action '%1'" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "动作执行完æˆã€‚" #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "动作为必填字段" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "动作准备完æˆ..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "动作" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "活动的申请å•" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "添加 %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "åˆ›å»ºç®¡ç†æŠ„é€äºº" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "添加到收è—夹" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "创建抄é€äºº" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "创建字段" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "创建æ¡ä»¶" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "创建更多附件" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "创建申请人" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "创建字段值" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "创建注释或回å¤åˆ°æŒ‡å®šçš„申请å•" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "添加群组" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "创建æˆå‘˜" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "创建关注者" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "为 %1 添加æƒé™" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "增加这些项" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "加入这些æ¡ä»¶å’Œæœç´¢" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "添加用户" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "创建值" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "添加ã€ä¿®æ”¹ä¸Žåˆ é™¤å¯¹è±¡çš„字段值" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "地å€" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "åœ°å€ 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "ä½å€" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "ä½å€(ç»­)" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "管ç†å‘˜" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "管ç†å‘˜æŠ„é€" #: etc/initialdata:410 msgid "Admin Comment" msgstr "管ç†å‘˜æ³¨é‡Š" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "管ç†å‘˜å›žå¤" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "队列管ç†" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "管ç†/全局设定" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "管ç†å‘˜æŠ„é€ç»„" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "管ç†å‘˜æŠ„é€" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "管ç†å‘˜æŠ„é€" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "管ç†å‘˜å¯†ç " #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "高级" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "高级æœç´¢" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "ç»“åˆæ–¹å¼" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "完æˆå…¨éƒ¨æ‰¹å‡†" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "本类型的所有文章都列于申请å•回å¤é¡µé¢çš„下拉列表" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "所有类型" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "所有表å•" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "所有队列" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "所有申请å•" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "所有的iCalç§å­éƒ½å†…嵌一个授æƒç»™æ‚¨çš„密钥。如果您的æŸä¸ªiCalç§å­çš„URL暴露在外部世界,您å¯ä»¥èŽ·å¾—ä¸€ä¸ªæ–°çš„å¯†é’¥ï¼Œæ–­å¼€ä»¥ä¸‹æ‰€æœ‰å·²ç»å­˜åœ¨çš„iCalç§å­ 。" #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "满足æ¡ä»¶çš„队列" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "所有申请å•" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "所有主题" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "å…许创建已存æœç´¢" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "å…许加载已存æœç´¢" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "å…许在模æ¿ã€è„šæœ¬ç­‰å¤„å†™ Perl 代ç " #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "å·²ç»åР坆" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "AND/OR" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "任何字段" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "应用于" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "应用到所有对象" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "应用" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "应用到全局" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "应用改动" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "批准请求" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "æ‰¹å‡†è¯·æ±‚å• #%1:%2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "æ‰¹å‡†è¯·æ±‚å• #%1:系统错误,记录失败" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "æ‰¹å‡†è¯·æ±‚å• #%1:记录完æˆ" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "批准请求通过" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "为拥有人准备批准请求" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "驳回æŸé¡¹æ‰¹å‡†è¯·æ±‚" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "批准" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "四月" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "文章 #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "文章 %1 已创建" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "文章管ç†é¡µé¢" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "文章未找到" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "文章" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "%1 的文章" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "åŒ¹é… %1 的文章" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "无主题的文章" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "递增" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "指派或移除队列自定字段" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "附件" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "附加档案" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "当å‰é™„ä»¶" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "附件" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "无法加载附件 '%1'" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "附件创建完æˆ" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "附件档å" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "附件" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "附件加密被ç¦ç”¨" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "已删除该属性" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "八月" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "对您的图片没有自动的主题色彩建议。这å¯èƒ½æ˜¯å› ä¸ºå½“å‰çš„GD䏿”¯æŒæ‚¨ä¸Šä¼ çš„图片类型,它支æŒçš„类型为: %1。您å¯ä»¥é€šè¿‡é‡æ–°ç¼–译libgdå’ŒGD.pmæ¥åŒ…å«å¯¹å…¶ä»–图片格å¼çš„æ”¯æŒã€‚" #: etc/initialdata:261 msgid "Autoreply" msgstr "自动回å¤" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "自动对申请人回å¤" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "å¯ç”¨" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "返回" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "属性%1å«é”™è¯¯çš„éšç§é¡¹" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "基本信æ¯" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "密é€" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "空白模æ¿" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "正文" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "粗体" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "书签" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "坿·»åŠ ä¸ºä¹¦ç­¾çš„è¯¥æœç´¢é“¾æŽ¥" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "æ”¶è—的书签" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "已加入书签的申请å•" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "æ ¹æ®ä¸»é¢˜æµè§ˆ" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "æµè§ˆè¯¥è¿›ç¨‹ä¸­çš„ SQL 队列" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "æ‰¹é‡æ›´æ–°" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "抄é€ç»„" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "" #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "加载\"%1\"失败" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "无法更改系统用户" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "无法创建没有å称的自定字段值" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "找ä¸åˆ°å·²å­˜æœç´¢" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "ç”³è¯·å•æ— æ³•链接自己。" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "无法ä¿å­˜ %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "无法ä¿å­˜æ­¤é¡¹æœç´¢" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "ä¸èƒ½ä¸ºç¼–å·æ·»åŠ é“¾æŽ¥" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "无法在一个ç¦ç”¨çš„队列中创建标签" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "类型基于" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "分类" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "抄é€" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "抄é€" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "更改" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "更改批准申请å•的状æ€ä¸ºå·²æ‰“å¼€" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "更改密ç " #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "图表" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "选择全部" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "检查数æ®åº“是å¦å¯è¿žæŽ¥" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "检查数æ®åº“的连接设置" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "选择è¦åˆ é™¤çš„项目" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "å­ç”³è¯·å•" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "选择数æ®åº“引擎" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "从 %1 的主题选择" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "城市" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "类型" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "类型åç§°" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "类型id" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "类型已应用到全局" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "类型已应用到 %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "类型" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "清空" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "全部清空" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "点击下é¢çš„\"完æˆå®‰è£…\"æ¥ç»“æŸå®‰è£…" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "点击\"åˆå§‹åŒ–æ•°æ®åº“\"æ¥åˆå§‹åŒ–。该过程å¯èƒ½éœ€è¦ä¸€ç‚¹æ—¶é—´" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "已关闭" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "已关闭的申请å•" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "下拉文字区å—:选择或输入多个值" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "下拉文字区å—:选择或输入一个值" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "下拉文字区å—:选择或输入最多%1个值" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "注释" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "注释邮箱" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "注释地å€" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "注释申请å•" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "注释" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "注释(ä¸å‘é€ç»™ç”³è¯·äºº)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "该用户的注释" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "创建注释完æˆ" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "消除改动完æˆ" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "æ¡ä»¶" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "æ¡ä»¶ '%1' 没有找到" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "æ¡ä»¶æ˜¯å¿…填字段" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "ç¬¦åˆæ¡ä»¶..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "æ¡ä»¶ï¼ŒåŠ¨ä½œå’Œæ¨¡æ¿" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "é…置文件%1被é”定" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "队列 %1 çš„é…ç½®" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "连接æˆåŠŸ" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "内容" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "内容是无效的IP地å€" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "内容是无效的IP地å€èŒƒå›´" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "内容类型" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "内容类型" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "回å¤åœ°å€" #: etc/initialdata:393 msgid "Correspondence" msgstr "回å¤" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "创建申请å•回å¤" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "无法创建自定字段值:%1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "æ— æ³•æ”¹å˜æ‹¥æœ‰äººï¼š %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "无法创建自定字段:%1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "无法创建群组" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "无法创建æœç´¢: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "无法创建申请å•。队列未指定" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "无法创建用户" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "无法删除æœç´¢ %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "无法加载属性 %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "无法加载类新 %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "无法加载自定字段 %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "无法加载群组" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "无法为%1加载对象" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "无法设定用户信æ¯" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "无法创建附件" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "无法创建æˆå‘˜è‡³ç¾¤ç»„" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "无法编译 %1 ç å— '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "无法编译模æ¿ç å— '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "无法创建事务: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "无法创建记录: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "æ— æ³•åˆ é™¤è¡¨å• %1:%2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "找ä¸åˆ°è¯¥è¡Œ" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "找ä¸åˆ°åˆé€‚的事务,跳过" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "找ä¸åˆ°è¯¥å•ä½" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "找ä¸åˆ°è¯¥å€¼" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "无法加载类型 %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "无法加载自定字段 #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "无法加载自定字段 #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "无法加载自定字段 %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "无法加载申请å•%1的副本。" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "æ— æ³•åŠ è½½è¡¨å• %1:%2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "无法加载群组 #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "无法加载群组 %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "无法加载链接" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "无法加载对象 %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "无法加载或创建用户: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "无法加载队列" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "无法加载队列 #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "无法加载队列 %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "无法加载队列 '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "无法加载脚本 %1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "æ— æ³•åŠ è½½æ¨¡æ¿ #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "无法加载指定的å•ä½" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "æ— æ³•åŠ è½½ç”³è¯·å• '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "在å°è¯•删除的过程中无法加载主题æˆå‘˜" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "无法加载事务 #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "无法加载用户" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "无法加载用户 #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "无法加载用户 #%1 或用户 '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "无法加载用户 '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "æ— æ³•ç”¨è§£å¯†çš„æ•°æ®æ›¿æ¢å†…容: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "æ— æ³•ç”¨åŠ å¯†çš„æ•°æ®æ›¿æ¢å†…容: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "æ— æ³•è§£æžæº '%1' 到一个URI" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "无法解æžç›®æ ‡ '%1' 到一个URI" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "无法设置%1关注者: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "æ— æ³•è®¾ç½®ç§æœ‰é’¥" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "æ— æ³•å–æ¶ˆç§æœ‰é’¥" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "国家" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "创建" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "创建申请å•" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "创建类型" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "创建自定字段" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "为%1队列创建自定字段" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "创建新文章" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "创建新文章于" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "创建一个新的表å•" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "创建群组" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "创建队列 %1 的新模æ¿" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "创建用户" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "创建队列" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "创建模æ¿" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "创建申请å•" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "创建文章" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "创建文章,类型为..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "在此类型中创建文章" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "创建群组表å•" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "æŒ‰æ®æ­¤è„šæœ¬å†…çš„æ¨¡ç‰ˆï¼Œåˆ›å»ºç”³è¯·å•" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "创建个人表å•" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "创建系统表å•" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "创建申请å•" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "创建申请å•" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "创建ã€ä¿®æ”¹ä¸Žåˆ é™¤è®¿é—®æŽ§åˆ¶åˆ—表æ¡ç›®" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "创建ã€ä¿®æ”¹ä¸Žåˆ é™¤è®¿é—®è‡ªå®šå­—段" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "创建ã€ä¿®æ”¹ä¸Žåˆ é™¤è®¿é—®è‡ªå®šå­—段值" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "创建ã€ä¿®æ”¹ä¸Žåˆ é™¤è®¿é—®é˜Ÿåˆ—" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "创建ã€ä¿®æ”¹ä¸Žåˆ é™¤è®¿é—®å·²å­˜æœç´¢" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "创建ã€ä¿®æ”¹ä¸Žåˆ é™¤è®¿é—®ç”¨æˆ·" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "创建日期" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "创建者" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "自定字段%1创建æˆåŠŸ" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "创建者" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "已创建æœç´¢ %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "创建者" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "创建日期(相对值)" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "创建者" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "加密系统" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "当å‰å…³ç³»" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "当剿œç´¢" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "当剿ˆå‘˜" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "当剿œç´¢æ¡ä»¶" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "当å‰å…³æ³¨è€…" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "自定字段" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "%1 的自定字段" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "队列 %1 的自定字段" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "自定动作å‰å‡†å¤‡ç¨‹åº" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "自定æ¡ä»¶" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "自定字段 #%1 没有应用到该对象" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "自定字段%1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "自定字段%1没有应用到该对象" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "自定字段%1已有值" #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "自定字段%1没有值" #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "找ä¸åˆ°è‡ªå®šå­—段 %1" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "无法从自定字段%2中找到%1这个值" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "无法删除自定字段值" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "自定字段值删除æˆåŠŸ" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "自定字段" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "自定字段值" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "自定" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "自定基本项" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "自定邮件地å€" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "自定邮件é…ç½®" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "自定 RT 外观" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "æ•°æ®åº“管ç†å‘˜å¯†ç " #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "æ•°æ®åº“管ç†å‘˜ç”¨æˆ·å" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "æ¯æ—¥æ‘˜è¦" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "表å•" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "无法创建表å•: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "无法更新表å•: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "表å•已更新" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "表å•" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "æ•°æ®åº“主机地å€" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "æ•°æ®åº“åç§°" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "RT的数æ®åº“用户密ç " #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "æ•°æ®åº“端å£" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "æ•°æ®åº“类型" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "RT的数æ®åº“用户å" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "日期格å¼" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "日期" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "å二月" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "解密" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "默认队列" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "默认值:%1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "默认:%1/%2 已自 %3 改为 %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "默认格å¼" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "删除" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "删除模æ¿" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "删除失败:%1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "删除群组表å•" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "删除被生命周期é…ç½®åœç”¨çš„æ“ä½œ" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "删除个人表å•" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "删除系统表å•" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "删除申请å•" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "删除值" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "已删除 %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "已删除的队列" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "已删除的已存æœç´¢" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "删除æœç´¢ %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "删除此对象会破å完整性" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "删除此对象会破å完整性" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "驳回" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "å¯è¿žç»­å¤„ç†çš„申请å•" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "å¯è¿žç»­å¤„ç†" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "已加入å¯è¿žç»­å¤„ç†çš„ç”³è¯·å• %1" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "已移除å¯è¿žç»­å¤„ç†çš„ç”³è¯·å• %1" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "已加入需先处ç†çš„ç”³è¯·å• %1" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "已移除需先处ç†çš„ç”³è¯·å• %1" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "需先处ç†" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "需先处ç†" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "需先处ç†" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "递å‡" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "在以下字段æè¿°ä¸»é¢˜" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "æè¿°" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "RT设定的详细信æ¯" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "细节" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "æ–¹å‘" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "åœç”¨" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "显示" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "显示æƒé™æŽ§åˆ¶æ¸…å•" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "显示文章 %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "显示字段" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "以 %1GNU GPL%2 第二版å‘布。" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "å…许一切æ“作" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "域å" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "ä¸è¦åŒ…括“http://â€ï¼Œç±»ä¼¼ 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "ä¸è¦åˆ·æ–°ä¸»é¡µã€‚" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "ä¸è¦åˆ·æ–°æœç´¢ç»“果。" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "ä¸è¦åˆ·æ–°æ­¤é¡µé¢ã€‚" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "ä¸ä¿¡ä»»è¯¥å€¼" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "下载" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "下载 dumpfile" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "下拉列表" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "到期日期" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "到期日期(相对值)" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "错误: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "更新您已打开的申请å•" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "æé†’項目的便æ·è§†å›¾" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "编辑" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "编辑自定字段" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "编辑%1的自定字段" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "编辑适用于所有群组的自定字段" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "为所有的队列编辑自定字段" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "编辑适用于所有用户的自定字段" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "编辑所有类型的文章自定字段" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "编辑适用于所有队列内申请å•的自定字段" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "编辑申请å•关系" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "编辑æœç´¢" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "编辑æœç´¢" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "编辑全局主题层次" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "编辑系统模æ¿" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "编辑 %1 的主题层次" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "编辑自定字段 %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "编辑群组%1çš„æˆå‘˜ä¿¡æ¯" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "有效编å·" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "éœ€è¦æŒ‡å®šæºç”³è¯·å•或目标申请å•" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "没有æƒé™æŸ¥çœ‹å·²å­˜æœç´¢%1æˆ–è€…æ ‡è¯†ç¬¦ä¸æ­£ç¡®" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "邮箱" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "电å­é‚®ä»¶ä¿¡ç®±" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "邮件摘è¦" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "邮箱已被使用" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "邮件投递" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "周期性å‘é€é‚®ä»¶æ‘˜è¦çš„æ¨¡æ¿" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "邮箱" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "å¯ç”¨" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "å¯ç”¨ (ä¸å‹¾é€‰å°†åœç”¨è¯¥ç±»åž‹)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "å¯ç”¨(ä¸å‹¾é€‰å°†åœç”¨æ­¤è‡ªå®šå­—段)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "å¯ç”¨(ä¸å‹¾é€‰å°†åœç”¨æ­¤ç¾¤ç»„)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "å¯ç”¨(ä¸å‹¾é€‰å°†åœç”¨æ­¤é˜Ÿåˆ—)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "å¯ç”¨ç±»åž‹" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "å·²å¯ç”¨çš„队列" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "å·²å¯ç”¨å¹¶æ»¡è¶³æœç´¢æ¡ä»¶çš„队列" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "å·²å¯ç”¨çŠ¶æ€ %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "加密" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "默认加密" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "加密/解密" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "加密/解密申请å•#%2的事务#%1" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "输入与该文章相关的文章ã€ç”³è¯·å•或其他URL" #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "输入多个 IP 地å€èŒƒå›´" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "输入多个 IP 地å€" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "输入多个值" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "输入多个值(带自动补全功能)" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "输入è¦å°†å¯¹è±¡é“¾æŽ¥åˆ°çš„对象或URI地å€. å„项间请以空白隔开." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "输入一个 IP 地å€" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "输入一个 IP 地å€èŒƒå›´" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "输入一个值" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "输入一个值(带自动补全功能)" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "输入è¦å°†é˜Ÿåˆ—链接到的队列或URI地å€. å„项间请以空白隔开." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "输入è¦å°†ç”³è¯·å•链接到的申请å•ç¼–å·æˆ–URI地å€. å„项之间请以空白隔开." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "最多å¯è¾“å…¥ %1 个 IP 地å€èŒƒå›´" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "最多å¯è¾“å…¥ %1 个 IP 地å€" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "输入最多%1个值" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "输入最多%1个值(带自动补全功能)" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "错误" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "å‘ç»™RT拥有人的错误: 公钥" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "错误: 表å•ä¸å­˜åœ¨" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "错误: 错误的GnuPGæ•°æ®" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "错误: 无法改å˜å½“剿œç´¢çš„éšç§å€¼" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "错误: 无法加载已存æœç´¢ %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "错误: 没有ç§é’¥" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "错误: 公钥" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "错误: æœç´¢ %1 未更新: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "调整申请å•优先等级" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "预计" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "所有人" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "范例:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "过期" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "扩展状æ€" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "外部认è¯å·²å¯ç”¨" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "备注" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "æå–文章" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "æå–主题标签" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "ä»Žç”³è¯·å• #%1 æå–新文章" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "ä»Žç”³è¯·å• #%1 中æå–文章至类型 %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "从æŸä¸€äº‹åŠ¡çš„ä¸»é¢˜æå–标签并加到申请å•的主题" #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "连接数æ®åº“失败: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "创建属性%1失败" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "找ä¸åˆ°â€˜å†…部æˆå‘˜â€™è™šæ‹Ÿç¾¤ç»„的用户。" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "找ä¸åˆ°â€˜éžå†…部æˆå‘˜â€™è™šæ‹Ÿç¾¤ç»„的用户。" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "加载%1 %2失败" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "加载%1 %2失败: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "加载模å—%1失败. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "为%1加载对象失败" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "加载模æ¿å¤±è´¥" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "è§£æžæ¨¡æ¿å¤±è´¥" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "二月" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "馈é€" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "字段" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "å­—æ®µå€¼æ¥æº:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "文件å" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "填写傿•°" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "用哪ç§é¢œè‰²å¡«å……å—" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "填写多个文字区å—" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "填写多个 Wiki 文字区å—" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "填写一个文字区å—" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "填写一个 Wiki 文字区å—" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "填写一个网å€" #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "填写最多%1个文字区å—" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "填写最多%1个Wiki文字区å—" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "最终优先级" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "最终优先级" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "æœç´¢ç”¨æˆ·æ»¡è¶³" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "æœç´¢ç¾¤ç»„满足" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "æœç´¢äººå‘˜çš„" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "æœç´¢ç”³è¯·å•" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "指纹" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "完æˆ" #: share/html/Elements/Tabs:878 msgid "First" msgstr "第一项" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "" #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "强制改å˜" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "æ ¼å¼" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "转å‘" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "è½¬å‘æ¶ˆæ¯" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "è½¬å‘æ¶ˆæ¯å¹¶è¿”回" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "转å‘申请å•" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "转å‘ä¿¡æ¯è‡³ RT 之外" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "转å‘申请å•#%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "转å‘事务#%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "转å‘申请å•至 %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "找到%1张申请å•" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "找到对象" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "频率" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "星期五" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "星期五" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD被ç¦ç”¨æˆ–者没有安装。您å¯ä»¥ä¸Šä¼ å›¾ç‰‡ï¼Œä½†æ˜¯æ²¡æœ‰è‰²å½©çš„自动建议。" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "通用" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "一般æƒé™" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "准备开始" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "交给%1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "全局设定" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "全局属性" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "全局自定字段设定" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "æˆåŠŸä¿å­˜å…¨å±€å…¥å£ç»„ä»¶%1." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "执行" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "跳到用户" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "执行!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "跳到申请å•" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "跳到申请å•" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "图表" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "图标属性" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "图表已åœç”¨" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "群组" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "群组æƒé™" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "群组内已有此æˆå‘˜: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "无法创建群组:%1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "群组创建完æˆ" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "群组已åœç”¨" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "群组已å¯ç”¨" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "群组里没有这个æˆå‘˜" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "群组åç§° '%1' å·²ç»è¢«ä½¿ç”¨" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "找ä¸åˆ°ç¾¤ç»„" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "群组" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "群组ä¸èƒ½è®¾ä¸ºå…¶æˆå‘˜çš„æˆå‘˜" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "ç¬¦åˆæœç´¢æ¡ä»¶çš„群组" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "用户所属的群组" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "拥有æˆå‘˜" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "转å‘申请å•的邮件头" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "è½¬å‘æ¶ˆæ¯çš„邮件头" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "å—¨ï¼" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "帮助我们建立RT的默认值" #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "éšè—引用文本" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "历å²è®°å½•" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "文章 #%1 的历å²" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "群组%1的历å²è®°å½•" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "队列%1的历å²è®°å½•" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "用户%1的记录" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "家庭电è¯" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "主页刷新间隔时间" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "主页" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "å°æ—¶" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "å°æ—¶" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "我有%1ä»½å›ºä½“æ…æ‹Œå™¨." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "ç¼–å·" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "身份" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "若批准请求å•é­åˆ°é©³å›žï¼Œåˆ™è¿žå¸¦é©³å›žåŽŸç”³è¯·å•,并删除其它相关的待批准请求å•" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "如果此工具程åºä¸ºsetgid, æ¶æ„的本地端用户å³èƒ½ç”±æ­¤å–å¾—RT的管ç†å‘˜æƒé™ã€‚" #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "å¦‚æžœå·²ç»æœ‰äº†æ­£å¸¸å·¥ä½œçš„RT,在这里您还å¯ä»¥ç¡®å®šæ•°æ®åº“正在è¿è¡Œå¹¶ä¸”RTå¯ä»¥æ­£å¸¸è®¿é—®å®ƒã€‚完æˆä¹‹åŽï¼Œè¯·é‡å¯RT。" #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "如果您改å˜äº† RT è¿è¡Œçš„端å£ï¼Œæ‚¨éœ€è¦é‡å¯æœåС噍æ‰èƒ½ç™»å½•。" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "若已更新以上数æ®ï¼Œè¯·è®°å¾—" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "如果你想用的数æ®åº“ä¸å†åˆ—表里,说明RT找ä¸åˆ°æ•°æ®åº“驱动。å¯ä»¥å°è¯•使用%1下载并安装DBD::MySQL,DBD::Oracle或者DBD::Pg" #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "%1的值错误" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "此字段值ä¸å¯æ›´æ”¹" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "éžæ´»åŠ¨çš„ç”³è¯·å•" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "包括文章:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "包括列表中åœç”¨çš„类型" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "包括åœç”¨çš„自定字段" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "包括åœç”¨çš„群组" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "包括åœç”¨çš„队列" #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "包括åœç”¨çš„用户" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "引入页é¢" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "包括副主题" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "å•个消æ¯" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "通知RT拥有人用户é‡åˆ°å…¬é’¥é—®é¢˜" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "通知用户其订阅的一个表å•ä¸å­˜åœ¨" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "通知用户其å‘é€çš„æ¶ˆæ¯å«æœ‰æ— æ•ˆçš„GnuPGæ•°æ®" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "通知用户其é‡åˆ°å…¬é’¥é—®é¢˜å¹¶ä¸”接收ä¸åˆ°åŠ å¯†çš„å†…å®¹" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "通知用户密ç å·²è¢«é‡ç½®" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "通知用户我们收到加密的邮件但是没有å¯ç”¨çš„ç§é’¥æ¥è§£å¯†" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "åˆå§‹ä¼˜å…ˆçº§" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "åˆå§‹ä¼˜å…ˆçº§" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "åˆå§‹åŒ–æ•°æ®åº“" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "输入错误" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "输入必须符åˆ%1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "内部错误:%1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "内部错误: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "无效 %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "无效 %1 傿•°" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "无效的%1: '%2'䏿˜¯é‚®ç®±" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "无效的%1: 必须是数字" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "无效类型" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "æ— æ•ˆè‡ªå®šå­—æ®µå€¼æ¥æº" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "无效队列,无法应用类型: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "无效渲染类型" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "无效的类型 %1 自定字段渲染类型" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "无效的数æ®" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "无效的对象" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "无效的样å¼ï¼š%1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "无效的队列" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "无效的æƒé™" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "无效的æƒé™. ä¸èƒ½è§„范化æƒé™'%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "无效的邮箱" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "无效的%1的值" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "无效的自定字段值" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "没有加密" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "请ä¸è¦è®©æ²¡æœ‰æƒé™çš„用户执行此工具。" #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "建议您创建一个隶属于正确群组的低æƒé™ç³»ç»Ÿç”¨æˆ·ï¼Œå¹¶ä»¥è¯¥èº«ä»½æ‰§è¡Œæ­¤å·¥å…·ã€‚" #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "它接å—ä¸‹åˆ—å‚æ•°ï¼š" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "斜体" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "一月" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "加入或退出群组" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "七月" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "全部信æ¯" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "六月" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "ä¿æŒ'localhost'如果你ä¸ç¡®å®šçš„è¯ã€‚ä¿æŒç©ºç™½æ„味ç€é€šè¿‡æœ¬åœ°socket链接" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "基于关键è¯ä¸Žç›´è§‚çš„æœç´¢" #: lib/RT/User.pm:97 msgid "Lang" msgstr "使用语言" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "语言" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "大" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "上次更新" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "上次è”络" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "上次è”络日期" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "上次更新日期" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "上次更新者" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "上次更新" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "上次更新者" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "上次更新日期" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "上次更新者" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "上次更新日期(相对值)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "ä¿æŒç©ºç™½æ„味ç€ä½¿ç”¨æ•°æ®åº“的默认值" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "ä¿æŒç©ºç™½æ„味ç€ä½¿ç”¨æ•°æ®åº“管ç†å‘˜çš„默认值" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "剩余时间" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "图例" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "字符长度;使用0æ„味ç€ä»¥inlineæ–¹å¼æ˜¾ç¤ºæ‰€æœ‰æ¶ˆæ¯" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "å…许该用户访问RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "内部æˆå‘˜ï¼ˆå…·æœ‰ä¸ªäººæƒé™ï¼‰" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "开始" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "生命周期" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "链接" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "此链接已存在" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "找ä¸åˆ°é“¾æŽ¥" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "链接申请å•#%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "将值链接至" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "被链接" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "链接æº" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "链接到" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "链接" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "列表" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "加载" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "加载已存æœç´¢" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "加载已存æœç´¢" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "加载已存æœç´¢ï¼š" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "已加载%1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "已加载åˆå§‹çš„\"%1\"已存æœç´¢" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "已加载的Perl模å—" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "已加载已存æœç´¢\"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "正在加载..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "本地" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "本地化日期" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "ä½ç½®" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "已登录" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "用户:%1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "注销" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "登录" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "注销" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "类型ä¸ç¬¦" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "邮件" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "链接的主类型" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "更改拥有人" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "更改状æ€" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "更改到期日期" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "更改实际起始日期" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "更改应起始日期" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "事务日期" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "更改优先级" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "更改队列" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "更改主题" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "管ç†è‡ªå®šå­—段åŠå­—段值" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "管ç†ç¾¤ç»„åŠæ‰€å±žæˆå‘˜" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "管ç†é€‚用于所有队列的属性与设定" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "管ç†å„队列åŠç›¸å…³å±žæ€§" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "管ç†å·²å­˜å›¾åƒ" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "管ç†ç”¨æˆ·ä¸Žå¯†ç " #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "三月" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "标记所有消æ¯ä¸ºå·²è¯»" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Masonæ¨¡æ¿æœç´¢é¡ºåº" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "最大值" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "inline消æ¯çš„æœ€å¤§é•¿åº¦" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "五月" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "我" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "æˆå‘˜" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "æˆå‘˜%1已创建" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "æˆå‘˜%1已删除" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "æˆå‘˜å·²åˆ›å»º: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "æˆå‘˜å·²åˆ é™¤" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "æˆå‘˜æœªåˆ é™¤" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "隶属于" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "æˆå‘˜" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "已加入群组%1" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "已从群组%1移除" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "所属群组" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "用户%1的所属群组" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "æ•´åˆå®Œæˆ" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "æ•´åˆå¤±è´¥. 无法设定有效编å·" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "æ•´åˆåˆ°" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "已整åˆåˆ°%1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "消æ¯" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "由于信æ¯è¿‡å¤§ï¼Œä¿¡æ¯å†…容未显示" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "å‘é€è€…è¦æ±‚消æ¯ä¸èƒ½inline,所以未予显示。" #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "消æ¯ä¸æ˜¯æ™®é€šæ–‡æœ¬ï¼Œæ‰€ä»¥æœªäºˆæ˜¾ç¤ºã€‚" #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "æ¶ˆæ¯æ¡†é«˜åº¦" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "æ¶ˆæ¯æ¡†å®½åº¦" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "无法记录消æ¯" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "给用户的消æ¯" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "消æ¯è®°å½•æˆåŠŸ" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "最短密ç é•¿åº¦" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "分钟" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "æ‚项" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "缺少主键?:(%1)" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "手机" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "移动电è¯" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "更改" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "更改æˆå‘˜" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "更改脚本模æ¿" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "更改脚本" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "更改%1队列内的自定字段" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "更改文章 #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "更改适用%1的对象" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "更改自定字段值" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "更改申请å•# %1的日期" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "更改全局自定字段" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "更改全局的群组æƒé™" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "更改全局主题" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "更改全局的用户æƒé™" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "更改群组表å•" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "更改群组æˆå‘˜åå•" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "更改åŠåˆ é™¤ç¾¤ç»„" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "更改类型 %1 的群组æƒé™" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "更改自定字段%1的群组æƒé™" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "更改群组%1的群组æƒé™" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "更改队列%1的群组æƒé™" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "更改该类型的元数æ®ä¸Žè‡ªå®šå­—段" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "更改个人å¸å·ä¿¡æ¯" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "更改申请å•#%1链接到的人员" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "更改个人表å•" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "更改队列的关注者" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "更改队列%1的脚本" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "更改适用于所有队列的脚本" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "更改系统表å•" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "更改模æ¿%1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "更改队列 %2 ä¸­çš„æ¨¡æ¿ %1" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "更改适用于所有队列的模æ¿" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "æ›´æ”¹è¡¨å• %1 的内容" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "更改表å•%1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "更改默认的‘RT一览’视图" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "更改群组%1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "æ›´æ”¹è¡¨å• %1 的订阅" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "更改用户%1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "更改该æœç´¢..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "更改申请å•# %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "更改申请å•# %1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "更改申请å•" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "更改 %1 的主题" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "更改与该类型相关的主题层次" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "更改该类型的文章主题" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "更改类型 %1 的用户æƒé™" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "更改自定字段%1的用户æƒé™" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "更改群组%1的用户æƒé™" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "更改队列%1的用户æƒé™" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "æ›´æ”¹ç”³è¯·å• #%1 的邮件接收者" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "模å—" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "星期一" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "星期一" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "关于申请者的更多情况" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "多个" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "必须指定'Name'的属性" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "我的%1申请å•" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "我的批准å•" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "我今天的工作" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "我的æé†’项目" #: etc/initialdata:890 msgid "My Tickets" msgstr "队列处ç†" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "我的队列批准å•" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "我的表å•" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "我的æé†’项目" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "我的已存æœç´¢" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "(æ¢è¡Œ)" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "åç§°" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "å¸å·å·²æœ‰äººä½¿ç”¨" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "åç§°:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "ç»ä¸" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "创建" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "新文章" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "新表å•" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "创建链接" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "新的待批准请求å•" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "创建æœç´¢" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "创建消æ¯" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "新密ç " #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "å·²å‘逿–°å¯†ç é€šçŸ¥" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "创建æé†’项目:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "创建申请å•" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "新申请å•ä¸å­˜åœ¨" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "该队列的新申请å•的状æ€ä¸èƒ½ä¸º '%1'." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "新关注者" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "下一项" #: lib/RT/User.pm:96 msgid "NickName" msgstr "昵称" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "昵称" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "å¦" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "%1没有加载" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "æ²¡æœ‰åŒ¹é… %1 的文章" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "尚未定义类型" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "æ²¡æœ‰æ‰¾åˆ°åŒ¹é…æœç´¢æ¡ä»¶çš„类型." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "无自定字段" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "尚未定义自定字段" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "尚未定义群组" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "没有æœç´¢" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "尚未定义队列" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "没有找到 RT 用户. 请咨询您的 RT 管ç†å‘˜." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "没有标题" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "没有模æ¿" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "æš‚ä¸å¤„ç†" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "未指定字段" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "没有对这å用户的注释" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "没有%1çš„æè¿°" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "未指定群组" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "找ä¸åˆ°ç¬¦åˆæœç´¢æ¡ä»¶çš„群组。" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "没有适åˆçš„密钥" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "没有附上消æ¯" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "没有æä¾›åå­—" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "ä¸è®¸è¦åР坆" #: lib/RT/User.pm:970 msgid "No password set" msgstr "没有设定密ç " #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "没有创建队列的æƒé™" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "没有在队列'%1'创建申请å•çš„æƒé™" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "没有显示该申请å•çš„æƒé™" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "没有ä¿å­˜å…¨å±€å·²å­˜æœç´¢çš„æƒé™" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "没有首选项设置的æƒé™" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "没有查看文章的æƒé™" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "æ²¡æœ‰è§†å›¾ç”³è¯·å•æ›´æ–°çš„æƒé™" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "未指定å•ä½." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "没有ç§é’¥" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "找ä¸åˆ°ç¬¦åˆæœç´¢æ¡ä»¶çš„队列." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "没有指定的æƒé™" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "找ä¸åˆ°æƒé™" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "没有è¦è¿›è¡Œçš„æœç´¢" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "没有标题" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "没有密钥或者它ä¸èƒ½åšç­¾å" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "没有找到申请å•" #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "未指定事务类型" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "没有å¯ç”¨çš„密钥" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "找ä¸åˆ°ç¬¦åˆæœç´¢æ¡ä»¶çš„用户." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "没有å‘é€è‡³ _Set的值!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "没人" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "从ä¸" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "字段ä¸å­˜åœ¨ï¼Ÿ" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "没有找到" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "尚未登录" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "尚未设定" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "未使用移动æµè§ˆå™¨?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "备注" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "无法å‘é€é€šçŸ¥" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "é€šçŸ¥ç®¡ç†æŠ„é€äºº" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "以注释方å¼é€šçŸ¥ç®¡ç†æŠ„é€äºº" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "通知抄é€äºº" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "以注释方å¼é€šçŸ¥æŠ„é€äºº" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "通知其它收件人" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "以注释方å¼é€šçŸ¥å…¶å®ƒæ”¶ä»¶äºº" #: etc/initialdata:47 msgid "Notify Owner" msgstr "通知拥有人" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "以注释方å¼é€šçŸ¥æ‹¥æœ‰äºº" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "通知拥有人申请å•已驳回" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "通知拥有人申请å•已被批准,å¯ä»¥è¿›è¡Œä¸‹ä¸€æ­¥" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "通知拥有人申请å•已被批准" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "通知拥有人,申请人,抄é€äººå’Œç®¡ç†æŠ„é€äºº" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "以注释方å¼é€šçŸ¥æ‹¥æœ‰äººï¼Œç”³è¯·äººï¼ŒæŠ„é€äººå’Œç®¡ç†æŠ„é€äºº" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "æ•´ç†å¾…批准请求å•,通知拥有人åŠç®¡ç†æŠ„é€äºº" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "通知申请者申请å•已被所有批准者批准" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "通知申请者申请å•已被æŸä¸ªæ‰¹å‡†è€…批准" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "通知申请人" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "é€šçŸ¥ç”³è¯·äººåŠæŠ„é€äºº" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "以注释方å¼é€šçŸ¥ç”³è¯·äººåпЄé€äºº" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "通知我未读的消æ¯" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "å一月" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "对象" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "无法创建对象" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "无法删除对象" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "对象已创建" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "对象已删除" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "对象类型ä¸ç¬¦" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "对象列表为空" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "åæœˆ" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "在%1时,%2写到:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "关闭时" #: etc/initialdata:170 msgid "On Comment" msgstr "注释时" #: etc/initialdata:142 msgid "On Correspond" msgstr "回å¤ç”³è¯·å•æ—¶" #: etc/initialdata:131 msgid "On Create" msgstr "åˆ›å»ºç”³è¯·å•æ—¶" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "" #: etc/initialdata:191 msgid "On Owner Change" msgstr "æ‹¥æœ‰äººæ”¹å˜æ—¶" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "ä¼˜å…ˆçº§æ”¹å˜æ—¶" #: etc/initialdata:199 msgid "On Queue Change" msgstr "é˜Ÿåˆ—æ”¹å˜æ—¶" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "驳回时" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "釿–°æ‰“开时" #: etc/initialdata:205 msgid "On Resolve" msgstr "解决时" #: etc/initialdata:176 msgid "On Status Change" msgstr "çŠ¶æ€æ”¹å˜æ—¶" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "事务å‘生时" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "一次密é€" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "一次抄é€" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "仅显示%1之åŽåˆ›å»ºçš„申请å•" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "仅显示%1之å‰åˆ›å»ºçš„申请å•" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "仅显示适用于下列项目的自定字段:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "" #: etc/initialdata:108 msgid "Open Tickets" msgstr "打开申请å•" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "打开链接" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "打开的申请å•" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "æ”¶åˆ°å›žå¤æ—¶å³æ‰“开申请å•" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "选项" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "选项" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "甲骨文" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "æŽ’åºæ–¹å¼" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "组织åç§°" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "原申请å•:#%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "已记录å‘é€çš„æ³¨é‡Šé‚®ä»¶" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "已记录å‘é€çš„邮件" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "å‘é€çš„邮件" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "总览" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "拥有申请å•" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "拥有人" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "拥有人'%1'没有æƒé™æ‹¥æœ‰æ­¤ç”³è¯·å•" #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "拥有人已从%1改为%2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "强制将拥有人从%1改为%2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "拥有人åå­—" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "页" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "第1页(å…±1页)" #: share/html/dhandler:48 msgid "Page not found" msgstr "找ä¸åˆ°é¡µé¢" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "寻呼机" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "寻呼电è¯" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "父申请å•" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "密ç " #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "å¯†ç æ›´æ”¹å®Œæˆ" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "å¯†ç æœªè®¾å®š" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "密ç é•¿åº¦è‡³å°‘为%1个字符" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "å¯†ç æœªæ‰“å°" #: lib/RT/User.pm:980 msgid "Password set" msgstr "密ç å·²è®¾å®š" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "密ç ï¼š%1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "密ç ï¼šæ²¡æœ‰æƒé™" #: etc/initialdata:714 msgid "PasswordChange" msgstr "å¯†ç æ›´æ”¹" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "两次密ç ä¸ç¬¦." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "sendmail的路径" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "人员" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "与队列 %1 有关的人" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "执行用户自定的动作" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl设定" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Perl库的æœç´¢é¡ºåº" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "永久删除 RT 的数æ®" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "没有æƒé™" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "没有æƒé™" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "电è¯å·ç " #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "请检查URLé“¾æŽ¥æ˜¯å¦æ­£ç¡®ï¼Œç„¶åŽå†è¯•." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "请输入您当å‰çš„密ç ." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "请输入您当å‰çš„密ç ." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "å¯èƒ½çš„éšè—æœç´¢" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "首选项" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "%2的首选项%1" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "%1的首选项已ä¿å­˜." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "用户%1的首选项已ä¿å­˜." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "首选项已ä¿å­˜." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "首选密钥: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "首选密钥" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "准备动作完æˆ" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "上一项" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "找ä¸åˆ°å•ä½ %1。" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "è¾“å‡ºæ‘˜è¦æ¶ˆæ¯åˆ°ç»ˆç«¯; ä¸è¦å‘é€ä¹Ÿä¸è¦æ ‡è®°ä¸ºå·²å‘é€" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "输出此消æ¯" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "优先级" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "éšç§è®¾å®š" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "éšç§è®¾å®šï¼š" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "ç§é’¥" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "内部æˆå‘˜" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "内部æˆå‘˜çжæ€ï¼š%1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "内部æˆå‘˜" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "ä¸ç”¨äº‹åŠ¡è¿›è¡Œå¤„ç†ï¼Œä¸€äº›æ¡ä»¶å’ŒåŠ¨ä½œå¯èƒ½å¤±è´¥ï¼Œè¯·è€ƒè™‘使用--transaction傿•°" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "内部用的虚拟群组" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "需è¦å…¬é’¥'0x%1'æ¥æ ¸å®žç­¾å" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "组件" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "æœç´¢" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "创建æœç´¢" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "队列" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "找ä¸åˆ°é˜Ÿåˆ—%1" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "队列åç§°" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "队列已存在" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "无法创建队列" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "无法加载队列" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "队列创建完æˆ" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "队列编å·" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "找ä¸åˆ°é˜Ÿåˆ—" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "队列的密钥" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "é˜Ÿåˆ—çš„ç®¡ç†æŠ„é€äºº" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "队列的抄é€äºº" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "队列åç§°" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "队列的关注者" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "队列" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "由我管ç†çš„队列" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "我作为管ç†å‘˜æŠ„é€äººçš„队列" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "快速æœç´¢" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "快速创建申请å•" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT管ç†é¡µé¢" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "RT管ç†è€…邮箱" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT设置" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT错误" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT大å°" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT一览" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "用户%1çš„RT 一览" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT能通过邮件和用户交æµï¼Œæ‚¨éœ€è¦å‘Šè¯‰æˆ‘们sendmail的路径。RT也需è¦çŸ¥é“当有人å‘逿— æ•ˆçš„邮件时应该å‘é€é€šçŸ¥åˆ°å“ªä¸ªé‚®ç®±ï¼Œè¿™ä¸ªé‚®ç®±ä¸èƒ½å’ŒRT接收邮件的邮箱一样" #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RTå¯äºŽæ˜¾ç¤ºæ­¤è‡ªå®šå­—段时引入其它网站的内容" #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT å¯å°†æ­¤è‡ªå®šå­—段的值视为连往其它网站的超链接" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT核心å˜é‡" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "%1专用æµç¨‹ç³»ç»Ÿ" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT是一个ä¼ä¸šçº§çš„问题跟踪系统,您å¯ä»¥æœ‰æ•ˆåœ°ç®¡ç†ä»»åŠ¡ï¼Œè®®é¢˜ï¼Œé—®é¢˜æˆ–è€…åˆ«çš„å…¶ä»–ç±»ä¼¼çš„äº‹åŠ¡" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT在100强公å¸ï¼Œä¸ªäººä¸šåŠ¡ï¼Œæ”¿åºœä»£ç†ï¼Œæ•™è‚²æœºæž„,医院,公益组织,NGO,图书馆,开æºé¡¹ç›®è¿˜æœ‰å…¶ä»–çš„å„ç§ç»„织里广泛使用,éåŠä¸ƒå¤§æ´²ï¼ˆæ˜¯çš„ï¼Œç”šè‡³åœ¨å—æžæ´²ï¼‰ã€‚" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT将使用这个用户æ¥è¿žæŽ¥æ•°æ®åº“,它将会被自动创建" #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT将创建一个\"root\"用户并且用它作为密ç " #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT 会将 %1 åŠ %2 ç½®æ¢æˆè®°å½•ç¼–å·åŠè‡ªå®šå­—段" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT将使用此字符串æ¥è¯†åˆ«æ‚¨çš„æ­¤æ¬¡å®‰è£…并在邮件的主题里æœç´¢å®ƒä»¥ä¾¿ç¡®å®šè¯¥æ¶ˆæ¯æ˜¯å±žäºŽå“ªä¸ªç”³è¯·å•的。我们建议您把它设置为您的域å。" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RTå¯ä»¥ä½¿ç”¨å¤šç§æ•°æ®åº“。MySQL, PostgreSQL, Oracle and SQLite全部都支æŒã€‚" #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "é…置里的RTAddressRegexp选项ä¸åŒ¹é…%1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "真实姓å" #: lib/RT/User.pm:95 msgid "RealName" msgstr "真实姓å" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "收件人" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "记录所有的更新" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "递归的æˆå‘˜" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "å‚考" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "已加入%1为å‚考本申请å•" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "已移除%1为å‚考本申请å•" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "已加入å‚考申请å•%1" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "已移除å‚考申请å•%1" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "被å‚考" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "被å‚考" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "å‚考" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "å‚考" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "æ›´æ–°" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "æ¯%1分钟刷新此页é¢" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "è®°ä½é»˜è®¤é˜Ÿåˆ—" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "æé†’" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "已创建æé†’项目'%1'" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "å·²å®Œæˆæé†’é¡¹ç›®'%1'" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "已釿–°æ‰“å¼€æé†’项目'%1'" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "æé†’项目" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "申请å•#%1çš„æé†’项目" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "移除管ç†å‘˜æŠ„é€" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "移除书签" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "移除抄é€" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "移除申请人" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "渲染类型" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "ç”¨æ–‡æœ¬æ¡†æ¥æ›¿ä»£æ‰€æœ‰è€…的下拉列表" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "回å¤" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "回å¤åœ°å€" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "回å¤ç”³è¯·äºº" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "回å¤ç”³è¯·å•" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "申请人" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "申请人群组" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "申请人" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "未指定必è¦çš„傿•°'%1'" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "é‡ç½®" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "é‡ç½® RT" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "é‡ç½®ç§å¯†è®¤è¯ç " #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "é‡ç½®ä¸ºé»˜è®¤å€¼" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "使‰€" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "解决" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "解决申请å•#%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "已解决" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "解决日期(相对值)" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "回å¤" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "结果" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "返回申请å•" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "冿¬¡è¾“入密ç " #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "å¤åŽŸ" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "æƒé™å·²åŠ è½½" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "æƒé™æ— æ³•å–æ¶ˆ" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "æƒé™æœªåŠ è½½ã€‚" #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "无法将æƒé™èµ‹äºˆ%1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "管ç†å‘˜çš„æƒé™" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "工作人员的æƒé™" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "角色" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "行" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "æ¯æ ¼è¡Œæ•°" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "æ¯é¡µè¡Œæ•°" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL 查询" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite是一个ä¸éœ€è¦ä»»ä½•é…置或æœåŠ¡çš„æ•°æ®åº“,尽管如此,RTçš„ä½œè€…ä»¬å»ºè®®ä»…åœ¨æµ‹è¯•ï¼Œæ¼”ç¤ºå’Œå¼€å‘æ—¶ä½¿ç”¨å®ƒï¼Œå› ä¸ºå®ƒä¸èƒ½èƒœä»»å·¥ä½œä¸­é«˜è´Ÿè½½çš„RTæœåŠ¡" #: lib/RT/Date.pm:112 msgid "Sat" msgstr "星期六" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "星期六" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "ä¿å­˜" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "ä¿å­˜æ›´æ”¹" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "ä¿å­˜é¦–选项" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "作为新的ä¿å­˜" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "ä¿å­˜ä¸ºæ–°æ–‡ä»¶" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "ä¿å­˜è¯¥æœç´¢" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "å·²ä¿å­˜%1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "已存æœç´¢" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "已存图表" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "未找到已存æœç´¢ %1" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "已存æœç´¢" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "脚本 #%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "脚本已创建" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "脚本" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "脚本和收件人" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "æœç´¢" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "æœç´¢ %1已更新" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "æœç´¢æ–‡ç« " #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "æœç´¢é¦–选项" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "æœç´¢æ–‡ç« åŒ¹é…" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "æ‰¹å‡†è¯·æ±‚å•æœç´¢" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "æœç´¢æ–‡ç« " #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "ç”³è¯·å•æœç´¢" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "æœç´¢é€‰é¡¹" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "æœç´¢ç»“æžœ" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "æœç´¢ç»“果刷新间隔" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "" #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "ç§å¯†è®¤è¯ç " #: bin/rt-crontool:352 msgid "Security:" msgstr "安全性:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "å‚è§ï¼š" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "在该类型æœç´¢æ–‡ç« " #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "ä¿è¯ç±»åž‹å­˜åœ¨" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "选择" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "选择所有类型文章的自定字段" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "选择数æ®åº“类型" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "选择类型" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "选择自定字段" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "选择段è½çš„颜色" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "选择群组" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "选择队列" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "为您新的申请å•选择一个队列" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "选择段è½" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "选择用户" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "从 %1 中选择文章" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "选择文章以包括" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "选择å¦ä¸€ç§è¯­è¨€" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "选择框" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "选择应用于所有队列自定字段" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "选择应用于所有用户群组的自定字段" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "选择应用于所有用户的自定字段" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "选择应用于所有队列内申请å•的自定字段" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "选择应用于所有队列内申请å•之更改的自定字段" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "选择日期" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "选择时间" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "选择多个日期" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "选择多个时间" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "选择多é‡é¡¹ç›®" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "选择å•一项目" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "选择è¦åœ¨'RT 一览'页颿˜¾ç¤ºçš„队列" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "选择该文章的主题" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "最多å¯é€‰æ‹© %1 个日期" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "最多å¯é€‰æ‹© %1 个时间" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "选择最多%1个值" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "已选择的自定字段" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "已选队列" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "选择的密钥ä¸è¢«ä¿¡ä»»æˆ–ä¸å­˜åœ¨." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "已选择的对象" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "选择的项目已更改. 请ä¿å­˜æ‚¨çš„æ›´æ”¹" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "å‘é€é‚®ä»¶ç»™æ‹¥æœ‰äººå’Œæ‰€æœ‰çš„关注者" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "以注释方å¼å‘é€é‚®ä»¶ç»™æ‹¥æœ‰äººå’Œæ‰€æœ‰çš„关注者" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "å‘é€é‚®ä»¶ç»™ç”³è¯·äººåпЄé€äºº" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "以注释方å¼å‘é€é‚®ä»¶ç»™ç”³è¯·äººåпЄé€äºº" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "å‘é€é‚®ä»¶ç»™ç”³è¯·äºº" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "å‘é€é‚®ä»¶ç»™ç‰¹å®šçš„æŠ„é€åŠå¯†é€äºº" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "å‘é€é‚®ä»¶ç»™æŠ„é€äºº" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "以注释方å¼å‘é€é‚®ä»¶ç»™æŠ„é€äºº" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "å‘é€é‚®ä»¶ç»™ç®¡ç†æŠ„é€äºº" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "以注释å‘é€é‚®ä»¶ç»™ç®¡ç†æŠ„é€äºº" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "å‘é€é‚®ä»¶ç»™ç”³è¯·äºº" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "乿œˆ" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "以空格区分多个æ¡ç›®" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "设置" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "对于您对申请å•的更新,RT是å¦ç»™æ‚¨å‘信?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "显示" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "显示批准标签æ " #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "显示字段" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "显示结果" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "在%1级显示申请å•属性" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "显示已批准请求的批准请求å•" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "也显示" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "显示已驳回的批准请求å•" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "显示全局模æ¿" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "显示链接æè¿°" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "对申请者显示无申请å•" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "先显示最è€çš„历å²è®°å½•" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "显示待处ç†çš„æ‰¹å‡†è¯·æ±‚å•" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "显示引用文本" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "显示尚待他人批准请求的批准请求å•" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "显示申请者 10 个最优先的申请å•" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "粉碎机" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "工具æ " #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "ç­¾å" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "默认签å" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "登记æˆä¸ºç”³è¯·äººæˆ–抄é€äºº" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "登记æˆä¸ºç®¡ç†æŠ„é€äºº" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "ç­¾åæ¡£" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "简å•" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "快速æœç´¢" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "å•一" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "网站åç§°" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "大å°" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "跳过èœå•" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "跳过已åœç”¨çš„用户" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "å°" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "æŸäº›æµè§ˆå™¨åªå…许加载和RTæœåС噍åŒä¸€ä¸ªç½‘域的内容。" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "出了问题,请è”系系统管ç†å‘˜" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "排åº" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "排åº" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "æº" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "指定是æ¯å¤©è¿è¡Œè¿˜æ˜¯æ¯å‘¨è¿è¡Œ" #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "电å­è¡¨æ ¼" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "阶段" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "实际起始日期" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "实际起始日期(相对值)" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "应起始日期" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "应起始日期(相对值)" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "å·ž" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "状æ€" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "çŠ¶æ€ '%1' 䏿˜¯è¯¥é˜Ÿåˆ—申请å•的有效状æ€." #: etc/initialdata:449 msgid "Status Change" msgstr "çŠ¶æ€æ”¹å˜" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "状æ€ä»Ž%1改为%2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "çŠ¶æ€æ”¹å˜" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "å¼ºåˆ¶æ›´æ¢æ‹¥æœ‰äºº" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "强制拥有申请å•" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "%2的步骤%1" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "拥有人从%1强制更æ¢" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "æ ·å¼" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "主题" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "主题标签" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "标题已改为%1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "主题标签" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "æäº¤" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "订阅" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "订阅表å•%1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "订阅表å•" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "已订阅表å•%1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "订阅" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "无法创建订阅: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "已解密数æ®" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "已加密数æ®" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "摘è¦" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "星期日" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "星期日" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "暂时æç½®çš„" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "系统" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "系统设定" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "系统默认" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "系统错误" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "系统错误:%1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "系统工具" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "系统错误" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "系统错误. æƒé™æŽˆäºˆå¤±è´¥ã€‚" #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "内部使用的系统角色群组" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "å—ç†" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "自行拥有申请å•" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "å·²å—ç†" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "更多有关RTæ•°æ®åº“的信æ¯" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "模æ¿" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "模æ¿#%1已删除" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "找ä¸åˆ°æ¨¡æ¿'%1'" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "模æ¿ç¼–译" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "模æ¿ä¸åŒ…括Perl代ç " #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "模æ¿ä¸ºç©º" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "æ¨¡æ¿æ˜¯å¿…填字段" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "模æ¿è§£æžå®Œæˆ" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "模æ¿è§£æžé”™è¯¯" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "模æ¿è§£æžé”™è¯¯: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "模æ¿" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "队列 %1 的模æ¿" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "文字" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "首选项里åœç”¨ï¼Œæ‰€ä»¥æ–‡æœ¬æ–‡ä»¶æœªäºˆæ˜¾ç¤º" #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "å·²ç»æ˜¯ç›®å‰å­—段的值" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "䏿˜¯è¯¥è‡ªå®šå­—段的值" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "ç”³è¯·å•æœ‰å°šæœªè§£å†³çš„附属申请å•" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "ç”¨æˆ·å·²ç»æ‹¥æœ‰è¯¥ç”³è¯·å•" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "用户ä¸å­˜åœ¨" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "ç”¨æˆ·å·²ç»æ˜¯å†…部æˆå‘˜" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "用户属于éžå†…部æˆå‘˜ç¾¤ç»„" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "用户已加入内部æˆå‘˜ç¾¤ç»„" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "用户已加入éžå†…部æˆå‘˜ç¾¤ç»„" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "用户ä¸èƒ½æ‹¥æœ‰è¯¥é˜Ÿåˆ—里的申请å•" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "è¿™ä¸æ˜¯ä¸€ä¸ªæ•°å­—ç¼–å·" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "基本信æ¯" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "申请å•的抄é€äºº" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "标识为 %1 的文章类型ä¸é€‚用于当å‰é˜Ÿåˆ—" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "æ•°æ®åº“管ç†å‘˜çš„密ç " #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "申请å•çš„ç®¡ç†æŠ„é€äºº" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "æ•°æ®åº“æœåŠ¡å™¨çš„åŸŸå" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "以下命令将在“一般â€é˜Ÿåˆ—中找到所有活动的申请å•,如果已ç»è¿‡æœŸçš„è¯åˆ™å°†å…¶ä¼˜å…ˆå€¼è®¾ä¸º99:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "下列组件已被删除并且将会被从表å•里删除" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "下列组件对æŸäº›å¯çœ‹è§è¯¥è¡¨å•的用户å¯èƒ½ä¸å¯è§" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "密钥已被åœç”¨" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "密钥已被注销" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "密钥已过期" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "密钥被完全信任(fully)" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "密钥被终æžä¿¡ä»»(ultimately)" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "新的字段值已设定。" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "申请å•的拥有人" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "找ä¸åˆ°è¯·æ±‚的页é¢" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "申请å•的申请人" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "设置ä¿å­˜åœ¨%1" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "系统ä¸èƒ½å¯¹è¦å‘é€çš„邮件签å,通常是因为密ç é”™è¯¯æˆ–者GPG代ç†å®•了。请立å³è”系系统管ç†å‘˜ï¼Œå‡ºé—®é¢˜çš„åœ°å€æ˜¯:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "主题" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "有好几个å¯ç”¨ä½œåŠ å¯†çš„å¯†é’¥" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "ç”³è¯·å•æœ‰æœªè¯»ä¿¡æ¯" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "密钥被部分信任(marginal)" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "有超过一个å为 '%1' 的群组。这将会造æˆéƒ¨åˆ†ç®¡ç†ç•Œé¢çš„矛盾,因此建议您é‡å‘½å有冲çªçš„群组。" #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "没有适åˆåŠ å¯†çš„å¯†é’¥" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "有一个åˆé€‚的密钥,但是信任等级没有设定" #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "这些é…置选项包括è¿è¡ŒRT的基本选项。我们需è¦çŸ¥é“æ­¤RTçš„å称和域å。您也将需è¦ä¸ºæ‚¨çš„管ç†å‘˜ç”¨æˆ·è®¾ç½®å¯†ç ã€‚" #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "该自定字段ä¸èƒ½å…·æœ‰å€¼åˆ—表" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "该自定字段没有渲染类型" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "此功能仅é™ç³»ç»Ÿç®¡ç†å‘˜ä½¿ç”¨" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "此功能åªé€‚用于系统管ç†å‘˜ã€‚" #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "æœåŠ¡å™¨è¿›ç¨‹è®°å½•æ²¡æœ‰SQL查询." #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "此工具会让用户ç»ç”±RT执行任æ„命令。" #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "事务没有内容" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "用户 %1 最优先处ç†çš„ %2 张申请å•" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "星期四" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "星期四" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "申请å•" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "更新申请å•#%1的全部信æ¯ï¼š%2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "申请å•#%1关系图" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "申请å•#%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "申请å•%1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "申请å•#%1æˆåŠŸåˆ›å»ºäºŽ'%2'队列" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "申请å•%1:%2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "申请å•处ç†è®°å½•#%1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "申请å•已解决" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "ç”³è¯·å•æœç´¢" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "申请å•的事务" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "申请å•与事务" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "ç”³è¯·å•æž„æˆ" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "申请å•内容" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "申请å•内容类型" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "内部错误,无法创建申请å•" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "无法加载申请å•" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "ç”³è¯·å•æ˜¾ç¤º" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "申请å•的元信æ¯" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "申请å•状æ€å·²æ”¹å˜" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "ç”³è¯·å•æ›´æ–°" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "TicketSQLæœç´¢æ¨¡å—" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "申请å•" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "申请å•%1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "申请å•%1(%2)" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "待处ç†çš„申请å•" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "批准请求之åŽï¼Œå¯è¿žç»­å¤„ç†ï¼š" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "预计时间" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "剩余时间" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "å¤„ç†æ—¶é—´" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "显示时间" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "预计时间" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "剩余时间" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "å·²å¤„ç†æ—¶é—´" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "时区" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "标题" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "到" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "å¦‚æžœéœ€è¦æ”¯æŒã€åŸ¹è®­ã€å®šåˆ¶å¼€å‘或许å¯ï¼Œè¯·è”ç³»%1。" #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "åˆ‡æ¢ %1 项查询" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "切æ¢å †æ ˆè½¨è¿¹" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "告知日期" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "告知日期(相对值)" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "工具" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "主题åç§°" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "主题æˆå‘˜å·²æ·»åŠ " #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "主题æˆå‘˜å·²ç§»é™¤" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "未找到主题" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "主题" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "总数" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "事务" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "事务%1被清除" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "事务已创建" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "事务的自定字段" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "未指定对象类型åŠç¼–å·ï¼Œæ— æ³•创建事务" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "事务日期" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "ä¸å¯æ›´æ”¹äº‹åŠ¡" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "ä¿¡ä»»" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "星期二" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "星期二" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "类型" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "在文章编å·å‰è¾“å…¥a: ,在申请å•ç¼–å·å‰è¾“å…¥ t:" #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "类型从'%1'更改为'%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "无法添加主题æˆå‘˜" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "无法删除 %1 主题的æˆå‘˜" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "无法确定对象类型或编å·" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "无法加载文章" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "无法设置用户 CSS: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "无法设置用户 Logo: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "无法设置éšç§id: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "无法设置éšç§å¯¹è±¡æˆ–id: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "无法设置éšç§å¯¹è±¡: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "æ— æ³•è®¢é˜…è¡¨å• %1: æƒé™è¢«æ‹’ç»" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Uncheck boxes to disable notifications to the listed recipients 仅针对该事务ä¸å‹¾é€‰ä»¥åœæ­¢é€šçŸ¥åˆ—出的收件人;在“人员页é¢â€ä¸­è¿›è¡Œæ°¸ä¹…å–æ¶ˆçš„管ç†ã€‚" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "外部系统登录å¸å·" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "未知的(没有设定信任值)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "未知的(该值是新添加的)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "未知的内容编ç %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "未知的字段:%1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "ä¸é™åˆ¶" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "全数显示" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "未命å表å•" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "未命åçš„æœç´¢" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "未分é…的申请å•" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "éžå†…部æˆå‘˜" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "未选择的自定字段" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "未选中队列" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "未选择的对象" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "未设定主密钥" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "未被å—ç†" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "æ›´æ–°" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "更新图表" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "更新图表" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "更新申请å•" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "更新类型" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "æ›´æ–°æ ¼å¼å¹¶æœç´¢" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "æ‰¹é‡æ›´æ–°ç”³è¯·å•" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "更新未被记录." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "更新申请å•" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "更新申请å•#%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "更新申请å•#%1(%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "更新类型既éžå›žå¤ä¹Ÿéžæ³¨é‡Š" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "更新状æ€" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "已更新" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "已更新已存æœç´¢\"%1\"" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "上传" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "上传新logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "上传多个档案" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "上传多张图片" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "上传一个文件" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "上传一张图片" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "上传最多%1个文件" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "上传最多%1张图片" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "使用情况:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "使用两列的布局æ¥åˆ›å»ºä¸Žæ›´æ–°è¡¨å•?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "ä½¿ç”¨è‡ªåŠ¨å®Œæˆæ¥å¯»æ‰¾æ‹¥æœ‰äºº?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "使用默认值(%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "使用其它的 RT 管ç†å·¥å…·" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "使用系统默认值(%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "使用下拉列表èœå•æ¥é€‰æ‹©æ‚¨æƒ³è¦æå–ä¸ºæ–°æ–‡ç« çš„ç”³è¯·å•æ›´æ–°ã€‚" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "用户" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "用户(创建-过期)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "用户自定" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "用户æƒé™" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "用户试图在%2对象 #%3 的自定字段%1上执行未知的更新æ“作" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "无法创建用户:%1" #: lib/RT/User.pm:256 msgid "User created" msgstr "用户已创建" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "用户已åœç”¨" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "用户已å¯ç”¨" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "用户的邮箱为空" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "已加载用户" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "用户自定群组" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "用户å" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "ç”¨æˆ·åæ ¼å¼" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "用户" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "ç¬¦åˆæœç´¢æ¡ä»¶çš„用户" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "使用事务#%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "有效的æœç´¢" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "验è¯" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "值" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "字段值" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "å˜é‡" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "版本" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "查看脚本模æ¿" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "查看脚本" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "查看自定字段值" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "查看自定字段" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "查看外é€ç”µå­é‚®ä»¶ä¿¡æ¯åŠæ”¶ä»¶äººç»†èŠ‚" #: lib/RT/Group.pm:94 msgid "View group" msgstr "查看群组" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "查看群组表å•" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "查看个人表å•" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "查看队列" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "查看已存æœç´¢" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "查看系统表å•" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "查看申请å•éšç§è¯„论" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "æŸ¥çœ‹ç”³è¯·å•æ‘˜è¦" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "警告: ä¿å­˜æœç´¢ä¸ºç”¨æˆ·å±‚次éšç§" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "所è§å³æ‰€å¾—编辑器高度" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "所è§å³æ‰€å¾—消æ¯ç¼–辑器" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "è­¦å‘Šï¼æ²¡æœ‰ç­¾åï¼" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "关注者" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "关注者群组" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "关注者" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "å¯ä»¥ç”¨æ•°æ®åº“管ç†å‘˜çš„身分连接到数æ®åº“。请点击'自定基本项'继续自定RT。" #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "当类别以å¦ä¸€è‡ªå®šå­—æ®µä¸ºåŸºç¡€æ—¶ï¼Œæˆ‘ä»¬å½“å‰æ— æ³•渲染列表。请使用其他的渲染类型。" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "我们需è¦çŸ¥é“RT的数æ®åº“å称,RT用æ¥è¿žæŽ¥æ•°æ®åº“的用户å和密ç ã€‚RTå¯ä»¥åˆ›å»ºæ•°æ®åº“和将æ¥è®¿é—®æ•°æ®åº“所用的用户åï¼Œè¿™éœ€è¦æ•°æ®åº“管ç†å‘˜çš„用户å和密ç ã€‚在第6æ­¥æ—¶æˆ‘ä»¬ä¼šä½¿ç”¨è¿™é‡Œçš„ä¿¡æ¯æ¥åˆ›å»ºå’Œåˆå§‹åŒ–RTæ•°æ®åº“。" #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "网站端å£" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "星期三" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "星期三" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "æ¯å‘¨æ‘˜è¦" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "欢迎使用RTï¼" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "今日工作一览" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "RT是什么?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "如果RTä¸èƒ½å¤„ç†ä¸€å°é‚®ä»¶ï¼Œè¯¥æŠŠè¿™å°é‚®ä»¶è½¬å‘到哪里?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "RTå‘出的邮件包å«äº†é€‚当的From:å’ŒReply-To:邮件头,这样用户å¯ä»¥å¾ˆæ–¹ä¾¿åœ°åœ¨é‚®ä»¶å®¢æˆ·ç«¯é‡Œå›žå¤é‚®ä»¶ã€‚å¯ä»¥ä¸ºæ¯ä¸ªé˜Ÿåˆ—指定回å¤å’Œæ³¨é‡Šä¸¤ç§é‚®ç®±ï¼Œä½¿ç”¨rt-mailgateå‰åº”先设定好这些邮箱。" #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "åˆ›å»ºç”³è¯·å•æ—¶" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "批准请求å•创建之åŽï¼Œé€šçŸ¥åº”å—ç†çš„æ‹¥æœ‰äººåŠç®¡ç†æŠ„é€äºº" #: etc/initialdata:137 msgid "When anything happens" msgstr "当任何事情å‘生时" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "当点击'检查数æ®åº“是å¦å¯è¿žæŽ¥'时,å¯èƒ½ä¼šæœ‰ä¸€ç‚¹å»¶è¿Ÿ(因为RT正在å°è¯•连接数æ®åº“)" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "å…³é—­ç”³è¯·å•æ—¶" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "é©³å›žç”³è¯·å•æ—¶" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "釿–°æ‰“å¼€ç”³è¯·å•æ—¶" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "è§£å†³ç”³è¯·å•æ—¶" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "æ›´æ¢ç”³è¯·å•拥有人时" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "申请å•ä¼˜å…ˆé¡ºåºæ”¹å˜æ—¶" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "申请å•é˜Ÿåˆ—æ”¹å˜æ—¶" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "申请å•çŠ¶æ€æ”¹å˜æ—¶" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "用户自定的æ¡ä»¶å‘生时" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "æ³¨é‡Šå®Œæˆæ—¶" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "回å¤å®Œæˆæ—¶" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "sendmail路径" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "清ç†" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "工作" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "工作电è¯" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "工作时间" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "是" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "您å¯ä»¥åœ¨RTç¼–è¾‘è¯¥è¡¨å• ä¸Ž 您的订阅 to it in RT." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "您已是这份申请å•的拥有人" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "您å¯ä»¥è·³åˆ°é¦–ä¸ªæœªè¯»æ¶ˆæ¯æˆ–者跳到首个未读消æ¯å¹¶ä¸”标记所有消æ¯ä¸ºå·²è¯»" #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "您也å¯ä»¥ç›´æŽ¥ç¼–辑预定义的æœç´¢" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "您ä¸èƒ½åœ¨ç”³è¯·å•内容æ’入任何自由形å¼ã€æ–‡æœ¬æˆ–wiki字段" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "ä¸èƒ½è®¾ç½®å¯†ç ." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "åªèƒ½é‡æ–°æŒ‡æ´¾æ‚¨æ‰€æ‹¥æœ‰æˆ–是没有拥有人的申请å•" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "您åªèƒ½å—ç†å°šæ— æ‹¥æœ‰äººçš„申请å•" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "" #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "您ä¸èƒ½å°†æ”¹å˜çŠ¶æ€ '%1' 至 '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "您没有超级用户æƒé™" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "您已注销." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "您没有在该队列创建申请å•çš„æƒé™." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "您å¯ä»¥ä¸ºæ–‡ç« æ·»åŠ  \"a:###\" å½¢å¼çš„链接,其中 j### 代表文章的数字" #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "必须输入管ç†å‘˜å¯†ç " #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "您必须设置指令日志为真,以å¯ç”¨è¯¥é˜Ÿåˆ—的历å²é¡µé¢" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "将会跳转到登录页é¢ï¼Œæ‚¨å¯ä»¥ä»¥ç”¨æˆ·%1和之å‰è®¾ç½®çš„密ç ç™»å½•。" #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "您应当选择您或数æ®åº“管ç†å‘˜æœ€é¡ºæ‰‹çš„æ•°æ®åº“" #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "æ‚¨çœ‹åˆ°è¿™ä¸ªé¡µé¢æ˜¯å› ä¸ºä½ å¯åŠ¨äº†RTæœåŠ¡ä½†æ˜¯å´æ²¡æœ‰å¯ç”¨çš„æ•°æ®åº“。通常这是因为您第一次å¯åЍRT,如此,å¯ç‚¹å‡»\"%1\",RT会指导您创建RTæ•°æ®åº“å’ŒæœåŠ¡ã€‚" #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "æ¬¢è¿Žä¸‹æ¬¡å†æ¥" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "å¯†ç æœªè®¾ç½®." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "您的系统支æŒè‡ªåŠ¨è‰²å½©å»ºè®®çš„å›¾ç‰‡ç±»åž‹ä¸º: %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "å¸å·æˆ–密ç é”™è¯¯" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "邮政编ç " #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[下]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[上]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[æ— ]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "自定字段" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "活动的" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "晚于" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "与之å‰" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "与å¦" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "æ¡å½¢å›¾" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "早于" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "主体" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "从下到上" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "选中本框以在全部的队列应用该类型。" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "标记此项以应用到所有对象" #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "选中本框以移除该全局类型,之åŽå³èƒ½ä¸ºæ­¤ç±»åž‹é€‰æ‹©ç‰¹å®šçš„队列。" #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "标记此项以从所有对象移除,然åŽä¾¿å¯ä»¥é€‰æ‹©æŒ‡å®šçš„对象" #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "标记以增加" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "点击选择/ä¸é€‰æ‹©å…¨éƒ¨å¯¹è±¡" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "核心é…ç½®" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "æ¯å¤©%1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "已删除" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "ä¸ç¬¦åˆ" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "下载" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "æŒç»­" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "等于" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "错误:无法下移" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "错误:无法左移" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "错误:无法上移" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "错误:没有å¯åˆ é™¤çš„对象" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "错误:没有å¯ç§»åŠ¨çš„å¯¹è±¡" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "错误:没有å¯åˆ‡æ¢çš„对象" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "æ¯" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "æ’件已执行" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "完全" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "大于" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "群组" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "群组'%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "ç¼–å·" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "在类型 %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "éžæ´»åŠ¨çš„" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "包括 %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "索引" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "是" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "䏿˜¯" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "密钥已åœç”¨" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "密钥已过期" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "密钥已注销" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "从左至å³" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "å°äºŽ" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "部分" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "符åˆ" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "最大深度" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "分钟" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "æ¯æœˆ" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "æ¯æœˆ(第%1天%2)" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "从ä¸" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "创建" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "å¦" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "æ— " #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "ä¸ç­‰äºŽ" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "空的" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "对象已删除" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "在" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "第几天" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "一" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "打开" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "打开/关闭" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "其它..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "饼图" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "æ’件为空" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "队列%1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "已驳回" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "需è¦è¿è¡Œ rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "已解决" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "从å³è‡³å·¦" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "显示对象列表" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "ä¾§è¾¹æ " #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "siteé…ç½®" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "延迟" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "指令" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "摘è¦è¡Œæ•°" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "系统%1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "系统群组'%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "呼å«ç»„件未指明原因" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "默认的邮箱(将会被用作邮件里的From:å’ŒReply-To:字段)" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "默认的邮箱(将会被用作邮件里的From:å’ŒReply-To:字段)" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "申请å•#%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "自上而下" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "终æž" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "未æè¿°çš„群组%1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "æ— é™åˆ¶çš„" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "用户" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "用户%1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "用户å" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "æ¯å‘¨" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "æ¯å‘¨(星期%1 %2)" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "周" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "网站端å£" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "包括邮件头" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "是" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/it.po0000664000175000017500000130434613131430353014541 0ustar vagrantvagrant# Italian translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 22:14+0000\n" "Last-Translator: ToddWade \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%4:%5 del %1 %3 %2 %6" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3 %2 %7 %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "Aggiunto %1 %2" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 cambiato in %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 eliminato" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 eliminato." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 non esiste" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 è disabilitato" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 salvato." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "aggiornato %1 %2." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 con il modello %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) da %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (invariato)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (dal riquadro %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Modifica l'opzione di configurazione LogToSTDERR" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Un parametro da passare a %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Visualizza aggiornamenti dello stato su STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Specificare se si vuole usare la prima (first), l'ultima (last) o tutte (all) le transazioni" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Specifica nome o id del/dei template che vuoi usare" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Specificare la lista dei tipi di transazione da utilizzare, separati da virgole" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Specificare la condizione da utilizzare" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Specificare la ricerca da utilizzare" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "%1 Versione" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 aggiunto come valore di %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "%1 fa" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "Il database %1 esiste già e contiene le tabelle di RT, ma non contiene i metadati di sistema. Il passo 'Inizializza Database' può inserire i metadati mancanti all'interno del database esistente. Clicca 'Configurazione di base' qui sotto se vuoi continuare la configurazione." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "Il database %1 esiste già, ma non contiene le tabelle di RT e i necessari metadati di sistema. Il passo 'Inizializza Database' può creare le tabelle e inserire i metadati mancanti all'interno del database esistente. Clicca 'Modifica dati base' qui sotto se vuoi continuare la configurazione." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 sembra essere un oggetto locale, ma non è presente nel database" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "Il database %1 appare già correttamente inizializzato. Non è necessario creare tabelle o inserire metadati di sistema, ma puoi ugualmente cliccare 'Configurazione di base' qui sotto per completare la configurazione." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 da %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 non può essere un gruppo" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 cambiato da %2 a %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 modificato da '%2' a '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "copia di %1" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "configurazione base %1" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 non può essere impostato a %2" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "creato %1" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "eliminato %1" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "disabilitato %1" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 non esiste." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "abilitato %1" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "I %1 ticket a maggior priorità che ho in carico" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 è uno strumento per agire sui ticket da uno schedulatore esterno, per esempio cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 è uno strumento pensato per essere lanciato da cron, che spedisce le notifiche pendenti condensandole in un singolo messaggio riassuntivo per ogni utente." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 è già valorizzato con %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 è un indirizzo usato da RT per ricevere messaggi. La sua aggiunta come '%2' creerebbe un ciclo infinito di email" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 non è più un valore per il campo personalizzato %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 non è un %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "Il ciclo di vita %1 non è valido" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "%1 problemi" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "%1 chiave '%2'" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "I %1 articoli aggiornati più di recente" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 nuovi articoli" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "I %1 ticket più recenti non ancora assegnati" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 oggetti" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "%1 valorizzato con %2" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "Configurazione locale %1" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "aggiornamento di %1: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "aggiornamento di %1: nessuna modifica" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "aggiornato %1" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "oggetti %2 di %1" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "oggetti %3 di %2 di %1" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "La password attuale di %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "Cruscotti di %1" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "chiavi crittografiche di %1" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "ricerche salvate di %1" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: nessun allegato specificato" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Crea un ticket in%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,articolo,articoli)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "%quant(%1,giorno,giorni)" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,ora,ore)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "%quant(%1,ora,ore) (%quant(%2,minuto,minuti))" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%quant(%1,minuto,minuti)" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "%quant(%1,mese,mesi)" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "%quant(%1,secondo,secondi)" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "%quant(%1,settimana,settimane)" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "%quant(%1,anno,anni)" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' non è un nome valido." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' non è una classe valida" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' non è un identificatore di classe valido" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Spunta la casella per completare)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(spunta la casella per cancellare)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(spunta le caselle per cancellare)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(inserire i numeri o gli URL dei ticket, separati da spazi)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Se non specificato userà: %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "(Incompleto)" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "(Dati non corretti)" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(nessun campo personalizzato)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(nessun appartenente)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(nessuno Scrip)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(nessun modello)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(invia copia per conoscenza di questo aggiornamento ad una lista di indirizzi email amministrativi, separati da virgole. Questi destinatari riceveranno eventuali successivi aggiornamenti.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(invia copia per conoscenza di questo aggiornamento ad una lista di indirizzi email, separati da virgole. Questi destinatari riceveranno eventuali successivi aggiornamenti.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(usa questi campi se si sceglie 'Definito dall'utente' come condizione o azione)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(qualsiasi)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(nessun riepilogo)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(senza nome)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(nessuna chiave pubblica!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(nessun valore)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(nessun valore)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(%1 altri ticket in sospeso)" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(in attesa di approvazione)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(obbligatorio)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(affidabilità: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(senza titolo)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(non fidato!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "l'opzione --template-id è deprecata e non può essere usata assieme a --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "il parametro --transaction può valere solo 'first', 'last' o 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "0 secondi" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Esiste già un Template con quel nome" #: etc/initialdata:258 msgid "A blank template" msgstr "Un modello vuoto" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "La password non è stata impostata, l'utente non potrà accedere." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE non trovata" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "Le ACE possono essere solo create e cancellate." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "ACL aggiornate da %1" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Informazioni personali" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Controllo di Accesso" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Azione" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Azione '%1' non trovata" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Azione eseguita." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "L'azione è un argomento obbligatorio" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Azione preparata..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Azioni" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Ticket Attivi" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "I ticket attivi per %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Aggiungi %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Aggiungi AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Aggiungi a preferiti" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Aggiungi Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Aggiungi colonne" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Aggiungi criterio" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Aggiungi altri file" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Aggiungi un richiedente" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Aggiungi un valore" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Aggiungere commenti o repliche ai ticket selezionati" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Aggiungi gruppo" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Aggiungi qui" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Aggiungi appartenenti" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Aggiungi nuovi osservatori" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Aggiungi permessi per questo %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Aggiungi questi termini alla ricerca" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Aggiungi questi termini ed esegui la ricerca" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Aggiungi utente" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Aggiungi valori" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Aggiungi, modifica ed elimina custom field values per oggetti" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Aggiunto" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "Aggiunta sostituzione dell'Oggetto: %1" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Indirizzo" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Indirizzo 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Indirizzo1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Indirizzo2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "Tempo lavorato corretto di %quant(%1,minuto,minuti)" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "Cc amministrativo" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Commento Amministrativo" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "Commenti di amministrazione in HTML" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Corrispondenza Amministrativa" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "Corrispondenza di amministrazione in HTML" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Gestione dei servizi" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Amministra/Configurazione globale" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "GruppoDiAdminCc" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "AdminCc" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Password di amministrazione" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Avanzata" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Ricerca avanzata" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "In seguito al log-in verrai reindirizzato alla tua destinazione originale:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Aggregatore" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Ottenute tutte le approvazioni" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Tutti gli articoli di questa classe dovrebbero essere visualizzati in un menu a tendina della pagina di risposta dei ticket" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Tutte le Classi" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "Tutti i campi personalizzati" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Tutti i Cruscotti" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Tutti i servizi" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Tutti i Ticket" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Tutti i feed iCal includono un token segreto di autorizzazione. Se l'URL di un tuo feed iCal è stato reso pubblico per errore, è meglio generare un nuovo token segreto qui sotto, invalidando tutti i feed iCal precedenti." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Tutte i servizi che corrispondono al criterio di ricerca" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Tutti i ticket" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Tutti gli Argomenti" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Permetti il salvataggio delle ricerche" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Permetti il caricamento delle ricerche salvate" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Permetti la scrittura di codice Perl nei modelli, scrips, etc" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Già crittografato" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "Invia sempre un messaggio ai richiedenti, indipendentemente dall'autore del messaggio" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "Una %1introduzione all'uso degli articoli%3 è disponibile al sito %2Best Practical - Documentazione in linea%3." #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "E' necessario specificare una istanza" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Si è verificato un errore" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Annualmente" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Qualsiasi campo" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Qualsiasi parola non riconosciuta da RT sarà utilizzata nella ricerca nel campo Oggetto dei tickets" #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Si applica a" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Applicabile a tutti gli oggetti" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Applica" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Applica globalmente" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Applica gli scrip selezionati" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Applica modifiche" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Approvazione" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Approvazione n°%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Approvazione n°%1: Note non registrate a causa di un errore di sistema" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Approvazione n°%1: Note registrate" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Approvazione ottenuta" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Approvazione pronta per l'Incaricato" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Approvazione rifiutata" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Approva" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "Articolo #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "Articolo #%1 non trovato" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Articolo #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Articolo %1 creato" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Amministrazione Articoli" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Articolo non trovato" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Articoli" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Articoli in %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Articoli corrispondenti %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Articolo senza argomenti" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Cresc" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Assegna e rimuove campi personalizzati del servizio" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Allega" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Allega un file" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "File allegato" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Allegato" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Impossibile caricare l'allegato '%1'" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Allegato creato" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Nome file dell'allegato" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Allegati" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "La crittografia per gli allegati è disabilitata" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Attributo cancellato" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Ago" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "Importazione automatica dell'account fallina" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "" #: etc/initialdata:261 msgid "Autoreply" msgstr "Risposta automatica" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Risposta automatica ai richiedenti" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Risposta automatica in HTML" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Disponibile" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "Media Creazione-UltimoAggiornamento" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "Media Creazione-Risoluzione" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "Media Creazione-Apertura" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "Media Scadenza-Risoluzione" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "Media Aperti-Risolti" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "Media Apertura-Aperti" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "Media tempistica stimata" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "Media tempo rimanente" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "Media tempo lavorazione" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Indietro" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Privacy dell'attributo %1 incorretta" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Dati base" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "Batch (disabilitato dalla configurazione)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "Batch scrips eseguito dopo una serie di cambiamenti ad un ticket." #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Vuoto" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Testo" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Grassetto" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Preferiti" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Link disponibili per essere inseriti tra i preferiti in questa ricerca" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Ticket preferiti" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Ticket preferiti" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Sfoglia per argomento" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Sfoglia le query SQL eseguite in questo processo" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Aggiornamenti multipli" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "GruppoDiCc" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "CP" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "E' possibile effettuare delle ricerche tramite i campi personalizzati utilizzando una sintassi simile a quella riportata sopra, ad esempio %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "Calcola" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "Calcola i valori di" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Impossibile caricare la ricerca salvata \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Gli utenti di sistema non possono essere modificati" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Impossibile aggiungere un valore di campo personalizzato senza un nome" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Impossibile trovare una ricerca salvata su cui lavorare" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "Inoltro impossibile: non sono stati specificati indirizzi validi" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Non è possibile collegare un ticket a se stesso" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Impossibile effettuare il collegamento con un ticket cancellato" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "Non è possibile unire un ticket a se stesso" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "Impossibile creare velocemente un ticket nella coda %1 perché vi sono campi proprietari richiesti. Per favore completa l'operazione utilizzando la normale pagina di creazione dei ticket." #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Impossibile salvare %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "Non è possibile salvare una ricerca senza descrizione" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Impossibile salvare questa ricerca" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "Impossibile specificare sia la base che l'obiettivo" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Impossibile aggiungere un collegamento ad un semplice numero" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Impossibile creare ticket su un servizio disabilitato." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Le categorie sono basate su" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Categoria" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "Cc" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Cambia" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Metti il ticket di approvazione nello stato open" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "Cambia l'oggetto della email:" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Cambia la password" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Il cambio della Coda non è implementato" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Grafico" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Seleziona tutto" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Controlla connessione al database" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Verifica le credenziali di accesso al database" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Spunta la casella per cancellare" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "Figlio" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Derivati" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Scegli un tipo di database" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Scegli dagli Argomenti per %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Città" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Classe" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Nome della classe" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "La Classe non può essere creata: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "ID Classe" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Questa Classe è già stata applicata Globalmente" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Questa Classe è già stata applicata a %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Classi" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Azzera" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Deseleziona tutto" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Premi \"Completa installazione\" qui sotto per concludere l'installazione guidata." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Premi \"Inizializza database\" per creare il database di RT e inserire i dati di sistema. L'operazione potrebbe richiedere qualche tempo" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Clicca per scegliere un colore" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Chiuso" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Ticket chiusi" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: seleziona o inserisci valori multipli" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Combobox: seleziona o inserisci un valore" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Combobox: seleziona o inserisci fino a %1 valori" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Commento" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Indirizzo email per i commenti" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Indirizzo email per i commenti" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Aggiungere commenti ai ticket" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Commenti" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Commenti (non inviati ai richiedenti)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Commenti su questo utente" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Aggiunti commenti" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Esecuzione saltata" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Condizione" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Condizione '%1' non trovata" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "La condizione è un campo obbligatorio" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "La condizione è soddisfatta..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Condizione, azione e modello" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Il file di configurazione %1 è bloccato" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Configurazione per la coda %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Connessione completata" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Contatta il tuo Amministratore di RT via %1email a %2%3" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Contatta il tuo Amministratore di RT" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Contenuto" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Contenuto non visualizzato perché troppo grosso (%1 bytes) rispetto alla dimensione massima impostata (%2 bytes)." #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Il contenuto è un indirizzo IP non valido" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Il contenuto è un range IP non valido" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "Contenuto troncato perché troppo grosso (%1 bytes) rispetto alla dimensione massima impostata (%2 bytes)." #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "TipoDiContenuto" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Indirizzo di corrispondenza" #: etc/initialdata:393 msgid "Correspondence" msgstr "Corrispondenza" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Aggiunta corrispondenza" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Corrispondenza in HTML" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Impossibile aggiungere un nuovo valore di campo personalizzato: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Impossibile cambiare l'incaricato: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Impossibile creare il campo personalizzato: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Impossibile creare il gruppo" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Impossibile creare la ricerca: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Impossibile creare il ticket. Servizio non impostato" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Impossibile creare l'utente" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Impossibile cancellare la ricerca %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Impossibile trovare il gruppo '%1'" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Impossibile trovare o creare l'utente '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Impossibile caricare l'attributo %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Impossibile caricare la Classe %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Impossibile caricare il campo personalizzato %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Impossibile caricare il gruppo" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Impossibile caricare l'oggetto per %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "Impossibile caricare lo scrip #%1" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "Impossibile caricare l'utente '%1'" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "Impossibile realizzare %1 a %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "Impossibile rimuovere %1 as a %2" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Impossibile impostare le informazioni dell'utente" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "Impossibile aggiornare la colonna %1: %2" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "Impossibile aggiungere poiché è già una impostazione globale" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Impossibile aggiugere l'allegato" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Impossibile aggiungere un appartenente al gruppo" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Impossibile compilare il blocco di codice %1 '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Impossibile creare una transazione: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Impossibile cancellare il cruscotto %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Impossibile trovare la riga" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Impossibile trovare una transazione adatta, procedo oltre" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Impossibile trovare questo gruppo/utente" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Impossibile trovare questo valore" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Impossibile caricare la classe %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Impossibile caricare il campo personalizzato n°%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Impossibile caricare il campo personalizzato n° %1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Impossibile caricare il campo personalizzato %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "Impossibile caricare una copia di %1 #%2" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Impossibile caricare una copia del ticket n°%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Impossibile caricare il cruscotto %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Impossibile caricare il gruppo n°%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Impossibile caricare il gruppo %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Impossibile caricare il collegamento" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Impossibile caricare l'oggetto %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Impossibile caricare o creare l'utente: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Impossibile caricare il servizio" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Impossibile caricare la coda n°%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Impossibile caricare la coda %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Impossibile caricare la coda '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Impossibile caricare lo Scrip n°%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Impossibile caricare il modello n°%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Impossibile caricare il ticket '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Impossibile caricare la transazione n°%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Impossibile caricare l'utente" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Impossibile caricare l'utente n°%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Impossibile caricare l'utente n° %1 o l'utente '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Impossibile caricare l'utente '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Impossibile rimpiazzare il contenuto con i dati decrittografati: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Impossibile rimpiazzare il contenuto con i dati crittografati: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Impossibile convertire la base '%1' in un URI." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Impossibile convertire la destinazione '%1' in un URI." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Impossibile impostare l' osservatore %1: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Impossibile impostare la chiave privata" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Impossibile annullare la chiave privata" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Nazione" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Crea" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Crea ticket" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Crea una Classe" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Crea un campo Personalizzato" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Crea un campo personalizzato per la coda %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "Crea un scrip globale" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Crea un nuovo articolo" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Crea un nuovo iarticolo in" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Crea nuovo cruscotto" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Crea un nuovo gruppo" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Crea un nuovo modello per la coda %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Crea un nuovo utente" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Crea un servizio" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "Crea uno scrip ed aggiungilo alla coda %1" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Crea un modello" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Nuovo ticket" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "Crea un ticket con questo utente come Richiedente nella Coda" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Crea un articolo" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Crea un articolo nella classe..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Crea articoli in questa classe" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Crea schermata di gruppo" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Creare nuovi ticket basati sul modello di questo scrip" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Crea cruscotti personali" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Crea cruscotti di sistema" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Crea il ticket" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Crea nuovi tickets" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Crea, modifica e cancella ACL" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Crea, modifica e cancella campi personalizzati" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Crea, modifica e cancella i valori nei campi personalizzati" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Creare, modificare ed eliminare servizio" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Crea, modifica e cancella ricerche salvate" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Crea, modifica e cancella utenti" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Creato" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Creato da" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Campo personalizzato %1 creato" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Creato da" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Creata ricerca %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "CreatoDa" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "TempoDaCreazione" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "CreatoDa" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Crittografia" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "Crittografia disabilitata" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Collegamenti attuali" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Ricerca attuale" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Appartenenti attuali" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Ricerca attuale" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Osservatori attuali" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "CSS personalizzati (Avanzata)" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Campi personalizzati" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Campi personalizzati per %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Campi personalizzati per la coda %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Programma di preparazione dell'azione personalizzata" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Condizione personalizzata" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Il campo personalizzato n° %1 non è applicato a questo oggetto" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Campo personalizzato %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "L'oggetto non ammette il campo personalizzato %1" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Il campo personalizzato %1 ha un valore." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Il campo personalizzato %1 non ha valore." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Campo personalizzato %1 non trovato" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Impossibile trovare il valore %1 per il campo personalizzato %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Impossibile cancellare il valore del campo personalizzato" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Il valore del vampo personalizzato è stato eliminato" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "CampoPersonalizzato" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "ValoreCampoPersonalizzato" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Personalizza" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Configurazione di base" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Modifica indirizzi email" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Modifica configurazione email" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "Personalizza le schermate nel menu" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "Personalizza il tema di RT" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Personalizza l'aspetto del tuo RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Password per amministrazione" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "Username per amministrazione" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Giornaliero" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Riassunto giornaliero" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Cruscotto" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "La schermata %1 non può essere aggiornata: %2" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "Schermata %1 aggiornata" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Impossibile creare il cruscotto: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Impossibile aggiornare il cruscotto: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Cruscotto aggiornato" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Cruscotti" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "Schermata nel menù" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "Schermate nel menù per l'utente %1" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Server database" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Nome database" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Password per accesso al database da parte di RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Porta del database" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Tipo di database" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Username per accesso al database da parte di RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "Data" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Formato data" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Date" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Dic" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Decifra" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "Errore di decodifica; contatta l'amministratore" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Servizio di default" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "Modello del promemoria di default" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Default: %1/%2 modificato da %3 a %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "FormatoPredefinito" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Cancella" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Cancella modello" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Cancellazione fallita: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Cancella schermata di gruppo" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "L'operazione di cancellazione è disabilitata dalla configurazione del ciclo di vita" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Cancella cruscotti personali" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Cancella cruscotto di sistema" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Cancella ticket" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Cancella valori" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Cancellato %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Ricerche cancellate" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Ricerca cancellata" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Cancella ricerca %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "La cancellazione di quest'oggetto danneggerebbe l'integrità referenziale" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "La cancellazione di quest'oggetto violerebbe l'integrità referenziale" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Nega" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "È una dipendenza per" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "DipendenzaPer" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Aggiunta dipendenza da parte di %1" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Cancellata dipendenza da parte di %1" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Aggiunta dipendenza da %1" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Cancellata dipendenza da %1" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "DipendenteDa" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Dipende da" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "DipendeDa" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Disc" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Descrivi il problema qui sotto" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Descrizione" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Informazioni dettagliate a proposito della tua configurazione di RT" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Dettagli" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Direzione" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Disabilitato" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Visualizza" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Visualizza la Lista Controllo Accessi (ACL)" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Visualizza Articolo %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Visualizza colonne" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "Mostra tutti gli allegati di tipo testo con una font di tipo monospace, andando a capo dove opportuno" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "Visualizza i messaggi in rich text, se disponibile" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "Mostra allegati di tipo testo con una font a larghezza fissa" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "Mostra il ticket dopo averlo creato con una \"creazione veloce\"" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Rilasciato sotto %1version 2 della licenza GNU GPL%2." #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Fai di tutto e di più" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Nome DNS" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Non scrivere anche http://, è sufficiente un nome tipo 'localhost' o 'rt.azienda.it'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Non ricaricare la pagina home." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Non ricaricare i risultati di ricerca." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Non aggiornare questa pagina." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Questa chiave non è assolutamente affidbile" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Visualizza" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Download archivio oggetti eliminati" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "A cascata" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Scadenza" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "TempoDaScadenza" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "ERRORE: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Aggiornamento facilitatao dei ticket aperti che hai in carico" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Visualizzazione semplice dei tuoi promemoria" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Modifica" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Modifica campi personalizzati" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Modifica i campi personalizzati per %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Modifica i campi personalizzati per tutti i gruppi" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Modifica i campi personalizzati per tutte le code" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Modifica i campi personalizzati per tutti gli utenti" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Modifica i campi personalizzati per tutti gli articoli di tutte le classi" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Modifica i campi personalizzati per tutte le code" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Modifica collegamenti" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Modifica query" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Modifica ricerca" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Modifica la gerarchia globale degli argomenti" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Modifca i modelli di sistema" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Modifica la gerarchia degli argomenti per %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Modifica del campo personalizzato %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Modifica degli appartenenti al gruppo %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "IdEffettivo" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "È necessario specificare base o target" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Non hai il permesso di visualizzare la ricerca salvata %1, o l'identificativo non è corretto" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "Trascorso" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Indirizzo di posta elettronica" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Riassunto dei messaggi" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "Sorgente della Email per il Ticket %1, Allegato %2" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "Inidirizzo email in uso" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Invio email" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Modello da usare per i messaggi riassuntivi periodici" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "IndirizzoEmail" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "Vuoto" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Abilitato" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Abilitato (Togli la spunta per disabilitare questa classe)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Abilitato (togliere il segno di spunta per disabilitare questo campo personalizzato)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Abilitato (togliere il segno di spunta per disabilitare questo gruppo)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Abilitato (togliere il segno di spunta per disabilitare questa coda)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "Abilitato (Togli la spunta per disabilitare questo scrip)" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Classi Abilitate" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Servizi abilitati" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Code abilitate che corrispondono al criterio di ricerca" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Stato %1 abilitato" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Crittografa" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Crittografia sempre attiva" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Crittografa/Decrittografa" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Crittografa/Decrittografa la transazione n°%1 del ticket n°%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "Errore nella codifica; contatta l'amministratore" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Aggiungi gli articoli, tickets o altri URL relativi a questo articolo." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Inserisci più range IP" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Inserisci più indirizzi IP" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Valori multipli" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Inserisci valori multipli, con autocompletamento" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Inserire, separati da spazio, gli oggetti (o URI di oggetti) da collegare." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Inserisci un solo indirizzo IP" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Inserisci un solo range IP" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Valore singolo" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Inserisci valore singolo, con autocompletamento" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Inserire, separati da spazio, le code (o URI di code) da collegare." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Inserire, separati da spazio, i ticket (o URI di ticket) da collegare." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "Inserisci i tickets o i relativi URI per collegarli. Separa gli elementi con spazi." #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Inserisci il tempo in ore di default" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Inserisci fino a %quant(%1,intervallo di indirizzi IP,intervalli di indirizzi IP)" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Inserisci fino a %quant(%1,indirizzo IP,indirizzi IP)" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Inserimento di un massimo di %quant(%1,valore,valori)" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Inserisci un massimo di %quant(%1,valore,valori), con autocompletamento" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "" "Ricercando per %1, %2, %3, o %4 verranno visualizzati i soli ticket aventi lo stato indicato.\\r\n" "Nello specifico: \\r\n" "initial->il campo oggetto inizia per 'initial' e lo stato del ticket e' uguale a 'nuovo' o 'aperto'.\\r\n" "active->lo stato del ticket e' uguale a 'nuovo' o 'aperto'\\r\n" "inactive->lo stato del ticket e' uguale a 'risolto', 'respinto' o 'cancellato'\\r\n" "any->non viene applicato nessun filtro" #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "Variabili d'ambiente" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Errore" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "Errore nel caricamento dell'allegato" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "Errore durante il disegno del grafico: %1" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Errore per l'amministratore di RT: chiave pubblica" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Errore: cruscotto mancante" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Errore: dati GnuPG non validi" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "Errore: dati crittati non validi" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Errore: impossibile caricare la ricerca salvata %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Errore: nessuna chiave privata" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Errore: chiave pubblica" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Errore: ricerca %1 non aggiornata: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "Errore: messaggio non crittato" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Propaga ticket" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Stima" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Chiunque" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Esempio:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Scadenza" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "StatoAggiuntivo" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Autenticazione esterna abilitata." #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "Informazioni aggiuntive" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Informazioni aggiuntive" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Estrazione Articolo" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Estrazione di parte dell'oggetto del messaggio" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Estrai un nuovo articolo dal ticket #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Estrai articolo dal ticket #%1 nella classe %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Estrae parti dell'oggetto del messaggio e le mette nell'oggetto del ticket." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Connessione al database fallita: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Creazione dell'attributo %1 fallita" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Impossibile trovare il pseudogruppo di utenti 'Privilegiato'." #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Impossibile trovare il pseudogruppo di utenti 'Non Privilegiato'." #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Caricamento %1 %2 non andato a buon fine" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Caricamento %1 %2 non andato a buon fine: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Errore nel caricamento del modulo %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Impossibile caricare un oggetto per %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Caricamento del modello non andato a buon fine" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "Errore nel caricamento del ticket %1" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Interpretazione del modello non andata a buon fine" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Fonti" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Campo" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Origine dei valori del campo:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "File '%1' non visualizzato perché troppo grosso (%2 bytes) rispetto alla dimensione massima impostata (%3 bytes)." #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "File '%1' troncato perché troppo grosso (%2 bytes) rispetto alla dimensione massima impostata (%3 bytes)." #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Nome file" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "I nomi dei file con il doppio apice non possono essere caricati." #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Specifica i seguenti parametri" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Colora i riquadri usando" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Testi multipli" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Testi WIKI multipli" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Testo singolo" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Testo WIKI singolo" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Riempi questo campo con un URL." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Testi multipli (max. %1)" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Testi WIKI multipli (max. %1)" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Priorità finale" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "PrioritaFinale" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "Trova un utente" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Trova tutti gli utenti il cui" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Cerca i gruppi in cui" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Cerca le persone in cui" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Ricerca ticket" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "TrovaUtente" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Fine" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Primo" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "Per assistenza, contattare %1" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "Per eseguire ricerche più approfondite, si consiglia l'utilizzo del %1\"costruttore di query\"%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Forza la modifica" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Opzioni colonna" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Inoltra" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Inoltra messaggio" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Inoltra messaggio e ritorna" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Inoltra Ticket" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Inoltra messaggi al di fuori di RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Inoltra ticket #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Inoltra la transazione n° %1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "%3Transazione #%1%4 inoltrata a %2" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Inoltra Ticket a %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "Messaggio inoltrato" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "Messaggio del ticket inoltrato" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Trovati %quant(%1,ticket)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Trovato Oggetto" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frequenza" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Ven" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Venerdì" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Mittente" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "" #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Generale" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Diritti generali" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Per cominciare" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Assegnato a %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Globale" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Attributi Globali" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Argomenti Globali" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Configurazione globale campi personalizzati" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "Il template '%1' (globale o specifico per coda) non è stato trovato" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Salvato il portlet globale %1" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "Il template globale '%1' non è stato trovato" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "Chiave privata GnuPG" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Vai" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Vai al gruppo" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Vai all'utente" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Vai!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Vai al ticket" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Vai al ticket" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Grafico" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Proprierà del grafico" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Mappe grafiche non disponibili." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Gruppo" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Diritti di gruppo" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Appartiene già al gruppo: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "Raggruppa per" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Impossibile creare il gruppo: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Gruppo creato" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Disabilitato il gruppo" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Abilitato il gruppo" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Non appartiene al gruppo" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Un Gruppo con nome '%1' è già in uso" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Gruppo non trovato" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "Raggruppa i tickets per" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "Gruppo: %1" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "Raggruppa risultati della ricerca" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Gruppi" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "I gruppi non possono appartenere a gruppi che sono già loro appartenenti" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Gruppi che corrispondono ai criteri di ricerca" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "L'utente appartiene ai gruppi" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "HaUnAppartenente" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Intestazione di un Ticket inoltrato" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Intestazione di un messaggio inoltrato" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "Altezza" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Ciao!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Serve il tuo aiuto per impostare alcune impostazioni predefinite per RT." #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Nascondi tutto il testo quotato" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Nascondi il testo citato" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Cronologia" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Cronologia per l'articolo #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Cronologia del gruppo %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Cronologia della coda %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Cronologia dell'utente %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Telefono abitazione" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Intervallo di caricamento automatico per la Home Page" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Ora" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "Ogni ora" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Ore" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Ho %quant(%1,concrete mixer)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "Voglio azzerare il mio token segreto" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identità" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "Se il campo personalizzato è selezionato, l'oggetto della email uscente verrà sovrascritto" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Se un'approvazione viene negata, respingi l'originale e elimina le approvazioni accodate" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Se questo strumento viene ha il flag setgid, un utente locale malintenzionato potrebbe usarlo per ottenere accesso amministrativo a RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Se hai già un server RT e un database funzionanti, assicurati che il server database sia attivo, e che le connessioni provenienti dal server RT vadano a buon fine. Quando sei sicuro di questo, riavvia il server RT.

    " #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "" #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Se hai aggiornato qualche impostazione, assicurati di premere" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Se il tuo database preferito non è presente nell'elenco sottostante, significa che RT non ha trovato un driver database adatto installato sul server. Puoi rimediare usando %1 per scaricare e installare i moduli DBD::MySQL, DBD::Oracle o DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Valore non valido per %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "Immagini mostrate nel testo" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "Immagini non mostrate, poiché la visualizzazione è disabilitata nella configurazione di sistema" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "Immagini non mostrate su richiesta del mittente" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Campo immutabile" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Tickets Inattivi" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Includi Articolo:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "Includi il nome dell'articolo" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "Includi i riassunti degli articolo" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "Includi il campo personalizzato '%1'" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Includi nell'elenco le classi disabilitate" #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Elenca anche i campi personalizzati disabilitati." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Elenca anche i gruppi disabilitati." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Elenca anche le code disabilitate." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Includi nella ricerca gli utenti disabilitati." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Allega pagina" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Includi i sotto-argomenti" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Messaggi singoli" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informa l'amministratore del server RT che alcuni utenti hanno problemi di chiave pubblica" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informa l'utente che un cruscotto a cui si è abbonato è mancante" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Informa l'utente che un messaggio da lui inviato contiene dati GnuPG non validi" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "Informa l'utente che un messaggio mandato da lui contiene dati crittati non validi" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informa l'utente che ci sono problemi con la sua chiave pubblica, per i quali non può ricevere messaggi crittografati" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Informa l'utente che la sua password è stata resettata." #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "Informa gli utenti quando i loro messaggi non crittati vengono rifiutati" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informa l'utente che è stata ricevuta email crittografata ma non esiste nessuna chiave privata con cui decifrarla" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Priorità iniziale" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "PrioritaIniziale" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Inizializzazione database" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Errore in input" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "L'Input deve corrispondere con %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Errore interno: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Errore interno: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "%1 Invalido" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Argomento %1 Invalido" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Valore %1 non valido: '%2' non sembra un indirizzo email" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Valore non valido (%1): deve essere un numero intero" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Classe non valida" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Dati non validi" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Oggetto non valido" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "%1: pattern non valido" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "Portlet %1 invalida" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Coda non valida" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "Id di coda non valido" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Diritto non valido" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Diritto non valido. Impossibile rendere in forma canonica il diritto '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Sintassi non valida per un indirizzo email" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Valore non valido per %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Valore non valido per il campo personalizzato" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "E' già stato aggiunto all'oggetto" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Non è crittografato" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "È estremamente importante che agli utenti non previlegiati non sia consentita l'esecuzione di questo strumento." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Per eseguire questo strumento, si suggerisce di creare un utente unix non privilegiato appartenente al gruppo corretto e con i necessari diritti in RT." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Accetta svariati argomenti:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Corsivo" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Gen" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Aggiungi o lascia il gruppo" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Lug" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Modifica" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Giu" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Se sei indeciso, lascia 'localhost'. Lascia il campo vuoto per connettere il DB usando un socket locale" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Lingua" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Lingua" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Grande" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Ultimo" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Ultima comunicazione a richiedenti" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Ultima comunicazione a richiedenti" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Ultima modifica" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Modificato Da" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Ultimo aggiornamento" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Ultimo aggiornamento da parte di" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "UltimaModifica" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "ModificatoPerUltimoDa" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "TempoDaUltimoAggiornamento" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Se non specificato, verrà usato il valore predefinito dal tuo database" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Se non specificato, verrà usato username amministrativo predefinito dal tuo database" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Rimasti" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legenda" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Lunghezza in caratteri; Usa '0' per mostrare i messaggi completi, indipendentemente dalla loro lunghezza" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Consenti a questo utente di accedere a RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Consenti la concessione di diritti espliciti a questo utente" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Iniziamo!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Ciclo di vita" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Collegamento" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Il collegamento esiste già" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "Il collegamento non può essere creato: %1" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "Il collegamento non può essere cancellato: %1" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Collegamento non trovato" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Collega ticket n°%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Collega valori a" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Collegato" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "CollegatoDa" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "CollegatoA" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "Il collegamento ad un %1 cancellato non è permesso" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Collegamenti" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "Collega a" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Elenco" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Carica" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Carica una ricerca salvata" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Carica una ricerca salvata" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Carica ricerca salvata:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "%1 caricato %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "Carica file di configurazione" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "La ricerca salvata originaria \"%1\" è stata caricata" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Moduli perl caricati" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "La ricerca salvata \"%1\" è stata caricata" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Caricamento..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Impostazioni nazionali" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "DataOraInFormatoLocale" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Domicilio" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Accesso effettuato" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Accesso effettuato come %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Disconnesso" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Accedi" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Esci" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Tipo di ricerca sbagliato" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Tipi principali di collegamento" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Nuovo incaricato" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Nuovo stato" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Nuova data scadenza" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Nuova data iniziato" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Nuova data inizio previsto" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Nuova data ultimo contatto" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Nuova priorità" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Nuova coda" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Nuovo oggetto" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Gestione campi personalizzati e relativi valori" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Gestione di gruppi e appartenenze" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Gestione di proprietà e configurazioni che si applicano a tutte le code" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Gestione delle code e delle propietà specifiche delle code" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Gestione grafi salvati" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "Gestisci scrips" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Gestione di utenti e password" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "La mappatura tra i cicli di vita %1 e il %2 è incompleta. Contattare l'amministratore di sistema." #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Tutti i messaggi marcati come 'letti'" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Ordine di ricerca per i template Mason" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "ValoriMassimi" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Lunghezza massima dei messaggi inline" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maggio" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Io" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Appartenente" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Aggiunto appartenente %1" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Rimosso appartenente %1" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Aggiunto appartenente: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Rimosso appartenente" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Appartenente non rimosso" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "AppartenenteA" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Appartenenti" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Aggiunta appartenenza al gruppo %1" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Rimossa appartenenza al gruppo %1" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Appartenenza a gruppi" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "Appartenenti al gruppo %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "Appartenenti al principale #%1" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Appartenenza a gruppi per l'utente %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "Unisci" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Unione avvenuta con Successo" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Unione fallita. Impossibile impostare EffectiveId" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "Unione fallita. Impossibile impostare il flag IsMerged" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Unisci a" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Unito a %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Messaggio" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Il corpo del messaggio non è visualizzato perché troppo grande" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Il corpo del messaggio non è mostrato su richiesta del mittente." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Il corpo del messaggio non viene mostrato perché non è testo semplice." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Altezza del riquadro messaggi" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Larghezza del riquadro messaggi" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Impossibile registrare il messaggio" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Messaggio per l'utente" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Messaggio registrato" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Lunghezza minima per le password" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuti" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Varie" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Manca una chiave primaria?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Cellulare" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Telefono cellulare" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Modifica" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Modifica appartenenti al gruppo" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Modifica il template dello Scrip" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Modifica Scrips" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Modifica un campo personalizzato per la coda %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Modifica e Crea Classi" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Modifica e Crea Campi personalizzati per gli Articoli" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Modifica articolo #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Modifica oggetti associati a %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Modifica i valori dei campi personalizzati" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Modifica le date per il ticket n° %1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Modifica gli argomenti globali per gli articoli" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Modifica campi personalizzati globali" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Modifica i diritti di gruppo globali" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Modifica gli argomenti globali" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Modifica i diritti globali per gli utenti" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Modifica i metadati del gruppo o elimina un gruppo" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Modifica i diritti di gruppo per la classe %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Modifica i diritti di gruppo per il campo personalizzato %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Modifica i diritti di gruppo per il gruppo %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Modifica i diritti di gruppo per la coda %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Modifica i metadati e i campi personalizzati per questa classe" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Modifica il proprio account RT" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Modifica le persone collegate al ticket n°%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Modifica i cruscotti personali" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "Modifica lo scrip #%1" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Modifica gli scrips per la coda %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Modifica gli scrips validi per tutte le code" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Modifica i cruscotti di sistema" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Modifica modello %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Modifica il template %1 per la coda %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Modifica i modelli validi per tutte le code" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Modifica la classe %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Modifica il cruscotto %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Modifca il quadro di insieme di default" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Modifica il gruppo %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Modifica l'abbonamento al cruscotto %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Modifica l'utente %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Modifica questa ricerca..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Modifica il ticket n° %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Modifica il ticket n°%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Modifica i ticket" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Modifica argomento per %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Modifica la gerarchia di argomenti associati a questa classe" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Modifica gli argomenti per gli articoli di questa classe" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Modifica i diritti utente per la classe %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Modifica i diritti utente per il il campo personalizzato %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Modifica i diritti utente per il gruppo %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Modifica i diritti utente per la coda %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Modifica i destinatari dei messaggi di posta elettronica per il ticket #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modulo" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Lun" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Lunedì" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "Mese" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "Ogni mese" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Informazioni sui richiedenti" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "Muovi" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Sposta qui" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Multiplo" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "L'attributo 'name' deve essere specificato" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "I miei ticket in stato: %1" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Le mie richieste di approvazione" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Giornata" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Miei Promemoria" #: etc/initialdata:890 msgid "My Tickets" msgstr "I miei Tickets" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Le mie richieste di approvazione" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "I miei ticket chiusi" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "I miei cruscotti" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "I miei ticket aperti" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Miei promemoria" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Le mie ricerche salvate" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "Amministratore nelle code" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "I miei Promemoria" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "Code in cui sono membro del supporto" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "A_CAPO" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Nome" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Nome ed indirizzo e-mail" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Nome già usato" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "Il Nome è richiesto" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Nome:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Mai" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Nuovo" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Nuovo Articolo" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Nuova schermata" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nuovi collegamenti" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Nuove approvazioni pendenti" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Nuova Ricerca" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nuovi messaggi" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nuova password" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Inviata notifica della nuova password" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Nuovo promemoria" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Nuovo ticket" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Il nuovo ticket non esiste" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "I nuovi tickets non possono avere lo stato '%1' in questa coda." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nuovo osservatore" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Seguente" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Nomignolo" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Soprannome" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "Nessuna chiave %1 per questo indirizzo" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "Nessun %1 caricato" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Nessun Articolo corrisponde a %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Nessuna classe definita" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Nessuna Classe corrisponde ai criteri di ricerca indicati." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Nessun campo personalizzato" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Nessun campo personalizzato definito" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Nessun gruppo definito" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Nessuna query" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Nessuna coda definita" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Nessuno utente RT trovato. Consulta il tuo Amministratore di RT." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Senza oggetto" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Nessun Modello" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Nessuna azione" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Nessuna colonna specificata" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Nessun commento su questo utente" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Nessuna descrizione per %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "Nessun template globale %1" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Nessun gruppo specificato" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Nessun gruppo corrisponde ai criteri di ricerca." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Nessuna chiave adatta per la crittografia" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "Non sei più autorizzato" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Nessun messaggio allegato" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Nessun nome fornito" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Crittografia non necessaria" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Nessuna password impostata" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Manca il permesso per creare code" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Manca il permesso per creare ticket nella coda '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Manca il permesso per visualizzare il ticket" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Manca il permesso per salvare ricerche a livello di sistema" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Non autorizzato a impostare le preferenze" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Non hai il permesso di visualizzare questo Articolo" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Manca il permesso per aggiornare il ticket" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Nessun utente/gruppo selezionato." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Nessuna chiave privata" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Nessuna coda soddisfa i criteri di ricerca." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Nessun diritto specificato" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Nessun diritto trovato" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "Non hai i diritti per aggiungere '%1' come AdminCC a questo ticket" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Nessuna ricerca su cui operare." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Senza oggetto" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Questa chiave non esiste, o non è adatta per la firma" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "Nessun template %1 nella coda %2 o globale" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Nessun ticket trovato." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Nessun tipo transazione specificato" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Nessuna chiave utilizzabile." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Nessuna utente soddisfa i criteri di ricerca." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Nessuno" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Nessuno" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Campo inesistente?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "Normale" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "Scrip non applicati" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Non trovato" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Accesso non effettuato." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Non impostato" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Non sei su un dispositivo mobile ?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Note" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Impossibile inviare la notifica" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "invia notifica agli AdminCc" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "invia notifica agli AdminCc come commento" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "invia notifica ai Cc" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "invia notifica ai Cc come commento" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "invia notifica agli altri destinatari" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "invia notifica agli altri destinatari come commento" #: etc/initialdata:47 msgid "Notify Owner" msgstr "invia notifica all'incaricato" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "Notifica il Proprietario e gli Amministratori in BCC" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "invia notifica all'incaricato come commento" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "invia notifica all'incaricato del ticket respinto" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Notifica all'Incaricato l'approvazione del ticket, che ora può seguire il suo corso" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Notifica all'Incaricato l'approvazione del ticket parziale o completa" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Invia notifica a: incaricato, richiedenti, Cc e Cc amministrativi" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Invia notifica come commento a: incaricato, richiedenti, Cc e Cc amministrativi" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "invia notifica agli incaricati e AdminCc quando è necessario richiedere nuove approvazione" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Notifica al Richiedente il completamento dell'approvazione del ticket" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Notifica al Richiedente l'approvazione parziale del ticket" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "invia notifica al richiedente" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "invia notifica ai richiedenti e ai Cc" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "invia notifica ai richiedenti e ai Cc come commento" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Notifica messaggi da leggere" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Oggetto" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "L'oggetto non può essere creato" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "L'oggetto non può essere cancellato" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Oggetto creato" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Oggetto cancellato" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Tipo oggetto non corrisponde" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "La lista oggetti è vuota" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Ott" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "Il %1, %2 ha scritto:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Alla chiusura" #: etc/initialdata:170 msgid "On Comment" msgstr "All'arrivo di un commento" #: etc/initialdata:142 msgid "On Correspond" msgstr "All'arrivo di una corrispondenza" #: etc/initialdata:131 msgid "On Create" msgstr "Alla creazione" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "Su Inoltra" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Su Inoltro del Ticket" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Su Inoltro della transazione" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Al cambio dell'incaricato" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Al cambio della priorità" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Al cambio di coda" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Se respinto" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Alla riapertura" #: etc/initialdata:205 msgid "On Resolve" msgstr "Alla risoluzione" #: etc/initialdata:176 msgid "On Status Change" msgstr "Al cambio di stato" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Ad ogni transazione" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Ccn una tantum" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Cc una-tantum" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Mostra le approvazioni solo per le richieste create dopo il %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Mostra le approvazioni solo per le richieste create prima del %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Mostra campi personalizzati solo per:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "Apri ticket inattivi" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Aprilo" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Ticket aperti" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Apri URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "Apri tickets non attivi" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Ticket aperti" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Apri i ticket all'arrivo di corrispondenza" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "Sistema operativo" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Opzione" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Opzioni" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "Gli utenti Iracle non possono avere password vuota" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Ordina per" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Azienda" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Ticket originario: n°%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Registrata email in uscita riguardante un commento" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Registrata email in uscita" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Posta in uscita" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Panoramica" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Prende in carico ticket" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Incaricato" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "'%1' non può prendere in carico questo ticket per carenza di autorizzazioni." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Cambiato incaricato da %1 a %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Cambiato forzatamente l'incaricato da %1 a %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "Proprietario del Gruppo" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "NomeIncaricato" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Pagina" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Pagina 1 di 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Pagina non trovata" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Cercapersone" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Cercapersone" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "Genitore" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "DerivaDa" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Password cambiata" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "La password non è stata impostata" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "La password deve essere lunga almeno %1 caratteri" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Password non visualizzata" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Password impostata" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Password: permesso negato" #: etc/initialdata:714 msgid "PasswordChange" msgstr "CambioPassword" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Le passwords non corrispondono." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Path di sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "%quant(%1,ticket,ticket) in sospeso." #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "In attesa di approvazione." #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Persone" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Persone collegate alla coda %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Esegui un'azione personalizzata" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Configurazione perl" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Ordine di ricerca delle librerie Perl" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Elimina permanentemente i dati da RT" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Operazione non consentita" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Permesso negato" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Numeri telefonici" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "Immagine" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Controlla l'URL e riprova." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Inserire correttamente la propria password" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Inserire la password attuale" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Possibili ricerche nascoste" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "La ricerca predefinita %1 non è stata trovata" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Preferenze" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Preferenze %1 per l'utente %2 ." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "Preferenze reimpostate." #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Preferenze salvate per %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Salvate preferenze dell'utente %1." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Preferenze salvate." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "Preferenze non trovate" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Chiave preferita: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Chiave preferita" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Preparazione non necessaria" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Precedente" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Utente/gruppo %1 not trovato." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Invia i messaggi riassuntivi a STDOUT; non inviare email; non marcare i messaggi come inviati" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Stampa questo messaggio" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Priorità" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Riservatezza" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Riservatezza:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Chiave privata" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "Chiavi private per %1" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "Chiave privata" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Privilegiato" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Stato previlegiato: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Utenti privilegiati" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Nell'elaborazione senza transazioni, qualche condizione o azione potrebbe fallire. Si prega di notare l'esistenza del parametro --transaction" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseudogruppo per uso interno" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "E' richiesta la chiave pubblica '0x%1' per verificare la firma" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "Chiavi pubbliche per %1" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Ricerche" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Costruttore di query" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Servizio" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "La coda %1 non può essere caricata" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Coda %1 non trovata" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Nome del servizio" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "La coda esiste già" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Impossibile creare la coda" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Impossibile caricare la coda." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Coda creata" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Id della coda" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Coda non trovata" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Chiave della coda" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "AdminCcDellaCoda" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "CcDellaCoda" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "NomeCoda" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "OsservatoreCoda" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Code" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Le mie code" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Le code per cui sono AdminCc" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Ricerca veloce" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Creazione veloce di un ticket" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "Creazione rapida" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "Amministrazione di RT" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "Email dell'amministratore di sistema" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "Configurazione di RT" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "Errore RT" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "Dimensione di RT" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "Quadro di insieme" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "Quadro di insieme per l'utente %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT comunica con gli utenti segnalando nuovi ticket o nuova corrispondenza sui ticket esistenti. Per fare ciò deve sapere dove trovare sendmail (o un programma compatibile con sendmail tipo quello fornito da postfix). È anche necessario specificare un indirizzo da notificare in caso di ricezione di email non valide. Deve essere un indirizzo di una mailbox, non uno usato a sua volta per scrivere a RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "Quando viene visualizzato questo campo personalizzato, RT può includere il contenuto fornito da un altro web service." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "E' possibile creare questo valore del campo personalizzato come un collegamento ad un altro servizio" #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "Variabili principali di RT" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "RT / %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT è un sistema di gestione delle richieste, progettato per gestire intelligentemente e efficientemente attività, problemi, richieste, difetti o qualunque altra evento che richieda una azione di risposta." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT è usato nelle aziende più importanti così come in ditte individuali, pubbliche amministrazioni, istituti scolastici, ospedali, associazioni senza scopo di lucro, biblioteche, progetti open-source e in qualsiasi altro tipo di ente in tutti e sette i continenti (sì, anche l'antartide)." #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "Cronologia aggiornamenti di RT" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT userà questo utente per connettersi al database. Verrà creato se non esiste." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT crea un utente di nome \"root\", usando questa come password." #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT sostituirà %1 e %2 rispettivamente con l'id del record e il valore del campo personalizzato" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT userà questa stringa per identificare univocamente questa installazione, e verificherà che esista nell'oggetto di ogni messaggio email ricevuto per decidere a quale ticket questo deve essere abbinato. E' consigliabile impostare la stringa al nome del dominio internet (es: dominio.it)." #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "Con RT è possibile usare i database MySQL, PostgreSQL, Oracle e SQLite." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "L'opzione RTAddressRegexp nella configurazione non corrisponde a %1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Riapri" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "Numero massimo raggiunto. I nuovi valori sovrascriveranno quelli vecchi." #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Nome reale" #: lib/RT/User.pm:95 msgid "RealName" msgstr "NomeReale" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Destinatari" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Registra tutti gli aggiornamenti" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Numero ricorsivo" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Riferisci a" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Aggiunto riferimento da %1" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Cancellato riferimento da %1" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Aggiunto riferimento a %1" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Cancellato riferimento a %1" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "È un riferimento per" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "RiferimentoPer" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Fa riferimento a" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "FaRiferimentoA" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Aggiorna" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Aggiorna la pagina ogni %quant(%1,minuto,minuti)." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "Aggiorna schermata" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "Collegamento non aggiunto, poiché potrebbe provocare una relazione circolare" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Respinto" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Ricorda la coda di default" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Promemoria" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Promemoria '%1' aggiunto" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Promemoria '%1' completato" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "Promemoria '%1' riaperto" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "Promemoria '%1': %2" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Promemoria" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Promemoria per ticket #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Rimuovi AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Elimina preferito" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Rimuovi Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Rimuovi richiedente" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Sostituisce la casella a discesa del proprietario con una caselle di testo" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Risposta" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Indirizzo a cui indirizzare le risposte" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Rispondi ai richiedenti" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Rispondi ai ticket" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Richiedente" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "GruppoDiRichiedenti" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Richiedenti" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Il parametro obbligatorio '%1' non è stato specificato" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Azzera" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Reimposta il quadro di insieme" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Reimposta codice segreto di autenticazione" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Reimposta ai valori di default" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "Reimposta il logo di RT predefinito" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "Reimposta il tema di RT predefinito" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Casa" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Risolvi" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Risolvi il ticket n°%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Risolto" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "TempoDaRisoluzione" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Rispondi" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Risultati" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Torna al ticket" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Ridigita Password" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Annulla modifiche" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Diritto caricato" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Il diritto non può essere revocato" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Diritto non caricato." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "I diritti per %1 non possono essere concessi" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Diritti per gli Amministratori" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Diritti per lo Staff" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "Ruolo del Gruppo '%1' non trovato" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Ruoli" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Righe" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Righe per riquadro" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Righe per pagina" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "Queries SQL" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite è una database che non richiede un server o qualsiasi tipo di configurazione esterna. Gli sviluppatori di RT lo raccomandano per prove, demo o sviluppo, ma non è certamente adatto per un server di produzione con un certo traffico." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sab" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Sabato" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Salva" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Salva modifiche" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Salva preferenze" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Salva come nuovo" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Salva nuovo" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Salva questa ricerca" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "%1 %2 salvato" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Ricerca salvata" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Ricerche salvate" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Grafici salvati" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "Ricerca salvata %1 non trovata" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Ricerche salvate" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Scrip n°%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Scrip creato" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "Scrip non aggiunto" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Scrip e destinatari" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "Gli scrip normalmente vengono eseguiti dopo ogni singolo cambiamento effettuato su un ticket." #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Ricerca" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "Ricerca %1 aggiornata" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Cerca Articoli" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Preferenze per la ricerca" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Cerca articoli corrispondenti" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Ricerca le richieste di approvazione" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Ricerca articoli" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Ricerca ticket" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "E' possibile ricercare i ticket inserendo: il codice %1id%2, parole contenute nell'oggeto %1\"tra doppi apici\"%2, il nome della %1coda%2, il proprietario del ticket tramite %1nome utente%2, il richiedente tramite %1indirizzo e-mail%2, lo %1stato%2 del ticket. Ricerche effettuate per %1@nomedominio.com%2 restituisco l'elenco dei ticket aperti dai richiedenti appartenenti al dominio indicato." #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Opzioni di ricerca" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Risultati della ricerca" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Intervallo di aggiornamento dei risultati delle ricerche" #: share/html/Search/index.html:48 msgid "Searches" msgstr "Ricerche" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "La ricerca nel testo completo di tutti i ticket può richiedere molto tempo, ma - se necessario - è possibile cercare qualsiasi parola in tutta la storia dei ticket scrivendo %1parola." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Codice di autenticazione segreto" #: bin/rt-crontool:352 msgid "Security:" msgstr "Protezione:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Vedi anche:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Visualizzare gli articoli di questa classe" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Visualizzare modifiche agli articoli di questa classe" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Vedere che questa classe esiste" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Seleziona" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Visualizzare i campi personalizzati per articoli di qualsiasi classe" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Scegli il tipo di database" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Seleziona una classe" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Scegli un campo personalizzato" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "Seleziona uno scrip" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Seleziona un colore per la sezione" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Seleziona un gruppo" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Seleziona una coda" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Scegli una coda per il nuovo ticket" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Seleziona una sezione" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Seleziona un utente" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Seleziona un articolo da %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Seleziona articolo da includere" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Scegli un'altra lingua" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Scegli i campi personalizzati validi per tutte le code" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Seleziona i campi personalizzati per tutti i gruppi degli utenti" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Seleziona i campi personalizzati per tutti gli utenti" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Seleziona i campi personalizzati per i ticket in tutte le code" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Seleziona i campi personalizzati per le transazioni relative ai ticket in tutte le code" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Elenco a selezione multipla" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Elenco a selezione singola" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Seleziona le code da visualizzare nella pagina \"Quadro di insieme\"" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Seleziona argomenti per questo articolo" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Seleziona fino a %quant(%1,data,date)" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Seleziona un massimo di %quant(%1,valore,valori)" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Campi personalizzati selezionati" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Code selezionate" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "La chiave selezionata non è più ritenuta affidabile, o non esiste più" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Oggetti selezionati" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Selezioni modificate. Per favore salva i tuoi cambiamenti" #: etc/initialdata:117 msgid "Send Forward" msgstr "Inoltra" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "Invia messaggio inoltrato" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Invia email all'incaricato e a tutti gli osservatori" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Invia messaggio come commento all'incaricato e a tutti gli osservatori" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Invia mail ai richiedenti e Ccs" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Invia mail come commento a richiedenti e Cc" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "L'invio della email precedente è fallito. Contattare l'amministratore, potrà trovare ulteriori dettagli nel log." #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Invia un messaggio ai richiedenti" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Invia mail a Cc e Bcc esplicitamente elencati" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Invia mail ai Cc" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Invia mail ai Cc come commento" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Invia mail ai Cc amministrativi" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Invia mail ai Cc amministrativi come commento" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Invia mail all'incaricato" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Set" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "" #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Impostazioni" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "E' necessario effettuare ulteriori impostazioni" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Nomi brevi" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Vuoi ricevere una mail da RT per le tue modifiche ai Ticket?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Mostra" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "Mostra il menù amministratore" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Mostra la scheda delle approvazioni" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "Mostra il menù degli articoli" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Mostra colonne" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Mostra i risultati" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Mostra le proprietà dei ticket al livello %1" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Mostra tutto il testo quotato" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Mostra le richieste approvate" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Mostra anche" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Mostra intestazioni brevi" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Mostra le richieste negate" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Mostra le intestazioni complete" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Mostra i modelli globali" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "Visualizza cronologia" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Mostra le descrizioni del collegamento" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Mostra la storia partendo dal passato" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Mostra le richieste in attesa" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Mostra testo citato" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Mostra le richieste in attesa di altre approvazioni" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Mostra i 10 ticket attivi con priorità più alta di questo richiedente" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Mostra i 10 ticket inattivi con priorità più alta di questo richiedente" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Mostra i 10 ticket con priorità più alta di questo richiedente" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Mostra la cronologia" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Distruttore di ticket" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "" #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Barra laterale" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Firma" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Firma se non diversamente specificato" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Registra come richiede o come Cc del ticket o della coda" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Registra come AdminCc del ticket o della coda" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Firma" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Ricerca Semplice" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Singolo" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Nome del sito" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Carattere" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Salta menu" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Salto gli utente disabilitati" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Piccolo" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Alcuni browser possono solo visualizzare dallo stesso dominio del server su cui è installato RT" #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Qualcosa è andato storto. Contatta il supporto tecnico" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Ordinamento" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Ordinamento" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Sorgente" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Specificare se viene eseguito settimanalmente o giornalmente." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Foglio di calcolo" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Tappa" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Per eseguire ricerche su specifici campi, indicare il nome campo seguito dal simbolo \":\", come ad esempio %1 e %2." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Iniziato" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "TempoDaInizio" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "InizioPrevisto" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "TempoDaInizioPrevisto" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Provincia" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "Stato" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "Lo stato '%1' non è uno stato valido per questo %2" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "Lo stato '%1' non è uno stato valido per i ticket in questa coda." #: etc/initialdata:449 msgid "Status Change" msgstr "Cambiamento di stato" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Cambiato lo stato da %1 a %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Cambi di stato" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Sottrai" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Sottrae ticket" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Passo %1 di %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Sottratto da %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Stile" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Oggetto" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Marcatore da aggiungere al campo 'Oggetto'" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "L'oggetto diventa %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Invia" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Abbonati" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Abbonati al cruscotto %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Abbonati ai cruscotti" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Abbonati al cruscotto %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Abbonamento" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Impossibile creare l'abbonamento: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Dati decrittografati correttamente" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Dati crittografati correttamente" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Riepilogo" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Dom" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Domenica" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Sospeso" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "Sistema" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Configurazione del sistema" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Predefinito di sistema" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Errore di sistema" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Errore di sistema: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Strumenti di sistema" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Errore di sistema. Diritto non concesso." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "SystemRolegroup per uso interno" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Prendi in carico" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Prendi in carico ticket" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Preso in carico" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Serve un po' di informazioni sulla localizzazione del database che RT utilizzerà" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Modello" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Aggiunto il modello n°%1" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "Il template '%1' non è globale" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "Il template '%1' non è globale né specifico di una coda" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Impossibile trovare il modello '%1'" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "Modello compilato" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "Il modello non include codice Perl" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Il modello è vuoto" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "Modello in uso" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Il Template è un argomento obbligatorio" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Modello elaborato" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Errore nell'elaborazione del modello" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "Errore nell'elaborazione del modello: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Modelli" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Modelli per la coda %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Testo" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Il file di test non è visualizzato perché disabilitato nelle preferenze." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Il valore attuale è già questo" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Questo campo personalizzato non ammette questo valore" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Il ticket ha dipendenze non risolte" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "L'utente ha già il ticket in carico" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "L'utente non esiste" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "L'utente è già previlegiato" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "L'utente è già non previlegiato" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Ora l'utente è previlegiato" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Ora l'utente è non previlegiato" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "L'utente non può prendere in carico ticket da questa coda" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Non è un identificativo numerico" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Dati di base" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "Il Cc di un ticket" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "La classe dell'articolo identificato con %1 non è applicata alla coda corrente" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Password dell'amministratore del database" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "Il Cc amministrativo di un ticket" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "Gli utenti selezionati potrebbero ricevere una email relativa a questo ticket, a seconda dell'azione intrapresa. Deselezionare gli utenti per evitare che ricevano email relative a questo ticket." #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Il nome DNS del tuo server database (es 'db.reteaziendale.local')" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "Il comando seguente troverà tutti i ticket nella coda 'generale' e imposterà la priorità a 99 se i ticket sono già scaduti:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Le ricerche seguenti sono state cancellate e saranno rimosse dal cruscotto appena il relativo riquadro verrà aggiornato." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Le seguenti ricerche potrebbero non essere visibili a tutti gli utenti che possono vedere questo cruscotto" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "La chiave è stata disabilitata" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "La chiave è stata revocata" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "La chiave è scaduta" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "L'affidabilità della chiava è completa" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "La chiave è considerata affidabile" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Il nuovo valore è stato impostato." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "L'incaricato del ticket" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "La pagina richiesta non è disponibile" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Il richiedente del ticket" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "Le impostazioni scelte sono salvate in %1" #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Il sistema non può firmare i meggaggi email in uscita. Normalmente significa che la passphrase non è impostata correttamente, o che l'agente GPG non sta funzionando. Avvisa immediatamente l'amministratore di sistema. Gli indirizzi email che evidenziano il problema sono:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Sono disponibili varie chiavi crittografiche" #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Questo ticket contiene messaggi non letti" #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Il livello di affidabilità di questa chiave è limitato" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "C'è più di un gruppo con nome '%1'. Questo potrebbe causare inconsistenze in alcune parti dell'interfaccia di amministrazione; si raccomanda perciò di rinominare i gruppi con nome uguale." #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Nessuna chiave crittografica disponibile" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "Non c'è mappatura tra gli stati dei cicli di vita %1 e %2. Contattare l'amministratore di sistema." #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "È disponibile una chiave crittografica, ma il livello di affidabilità non è impostato." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "Errore nell'elaborazione della query di ricerca: %1. L'amministratore potrà fornire maggiori dettagli esaminando i log." #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Le seguenti opzioni di configurazione sono il minimo necessario per consentire a RT di funzionare. È richiesto l'inserimento del nome di questa installazione di RT, e il nome DNS che verrà usato per raggiungerla. È anche necessario fornire una password da usare per l'amministratore di sistema." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Questo campo personalizzato non supporta liste di valori" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "Questa classe non si applica a questo oggetto" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "Questo campo personalizzato non può essere associato a questo oggetto" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Questa funzionalità è riservata agli amministratori di sistema" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Questa funzionalità è riservata agli amministratori di sistema." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "Questo ticket non può essere risolto finché non viene approvato." #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "Questo ticket non può essere risolto finche' %numerate(%1,la sua dipendenza non sara' risolta,le sue dipendenze non saranno risolte)." #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Questo strumento permette di eseguire qualsiasi modulo perl da dentro RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "La transazione sembra non avere alcun contenuto" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "I %1 ticket %2 con priorità più alta per questo utente" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Gio" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Giovedì" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Ticket n°%1 aggiornamento Jumbo: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Grafico delle relazioni del ticket n°%1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Ticket n°%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Creato ticket %1 nella coda '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Cronologia del ticket n° %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Ticket risolto" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Ricerca ticket" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Transazioni sul ticket" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Ticket e transazione" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Composizione del ticket" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Contenuto del ticket" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Tipo del contenuto del ticket" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "A causa di un errore interno non è stato possibile creare il ticket" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Impossibile caricare il ticket" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Visualizzazione ticket" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Metadati del ticket" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Stato del ticket cambiato" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "Modulo di ricerca TicketSQL" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Ticket" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Ticket %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Ticket %1 da %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Ticket che ho in carico" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Ticket che dipendono da questa approvazione:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "Ora" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Tempo stimato" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Tempo rimasto" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tempo lavorato" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tempo impiegato per l'elaborazione" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "Tempo Stimato" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "Tempo Rimanente" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "Tempo Impiegato" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Fuso orario" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Titolo" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "A" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Per richieste di supporto, formazione, personalizzazioni o acquisto di licenze, si prega di contattare %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Ultima Comunicazione a Richiedenti" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "Tempo Da Ultimo Contatto Richiedente" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Strumenti" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Nome dell'argomento" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Argomento non trovato" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Argomenti" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Totale" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "Transazioni" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transazione %1 ripulita" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transazione creata" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Campi personalizzati della transazione" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaction->Create fallita, devi specificare il tipo e l'identificativo dell'oggetto" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "DataTransazione" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Le transazioni sono immutabili" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Affidabilità" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Mar" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Martedì" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tipo" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Inserisci a: prima dei numeri degli articoli e t: prima dei numeri dei ticket." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Il tipo è cambiato da '%1' a '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "Impossibile aggiungere collegamento di tipo %1: %2" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Impossibile determinare il tipo o l'id dell'oggetto" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Ompossibile caricare l'articolo" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "" #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Username unix" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Sconosciuto (nessun valore di affidabilità assegnato)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Sconosciuto (questo valore è nuovo per il sistema)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "ContentEncoding sconosciuto %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Campo sconosciuto: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "Se non viene specificato uno stato specifico, la ricerca viene effettuata solo sui ticket attivi (%1)." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "TogliLimiti" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Illimitato" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Cruscotto senza nome" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Ricerca senza nome" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Ticket non assegnati" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Ticket non assegnati" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Non Privilegiato" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Campi personalizzati non selezionati" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Oggetti non selezionati" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Annulla chiave privata" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Non Preso" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Aggiornamento" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Aggiorna grafico" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "Aggiorna questo menù" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Aggiorna ticket" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Tipo aggiornamento" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Aggiorna formato e avvia ricerca" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Aggiorna ticket multipli" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Aggiornamento non registrato." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Aggiorna il ticket" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Aggiorna il ticket n°%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Aggiorna il ticket n°%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Il tipo aggiornamento non era ne' corrispondenza ne' commento." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "AggiornaStato" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Aggiornato" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "Aggiornato da" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Ricerca salvata \"%1\" aggiornata" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "Aggiornamento da %1 a %2" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Upload nuovo logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Upload file multipli" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Upload immagini multiple" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Upload file singolo" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Upload immagine singola" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Upload fino a %1 file" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Upload fino a %1 immagini" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Usa l'auto-completamento per trovare i proprietari del ticket ?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Usa il valore predefinito (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Usa altri strumenti di amministrazione di RT" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Usa il valore predefinito dal sistema (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "" #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "Utilizzato dagli scrip" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Utente" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "L'utente %1 è al momento disabilitato." #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "L'utente %1 è al momento disabilitato. Modificare l'utente selezionando \"Consenti a questo utente di accedere a RT\" per abilitarlo." #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Utente (creato - scadenza)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Definito dall'utente" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "Gruppi utente" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Informazioni utente" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Diritti dell'utente" #: share/html/User/Search.html:48 msgid "User Search" msgstr "Ricerca utente" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "Riepilogo utente" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "L'utente ha richiesto un aggiornamento di tipo sconosciuto sul campo personalizzato %1 per %2 l'oggetto n°%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Impossibile creare l'utente: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Utente creato" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Utente disabilitato" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Utente abilitato" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "L'utente non ha un indirizzo email" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Utente caricato" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Gruppi definiti dall'utente" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "Utente: %1" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Formato Nome Utente" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Utenti" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Utenti che soddisfano il criterio di ricerca" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Uso la transazione n°%1" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Query valida" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Validazione" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Valore" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Valori" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Variabile" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Versione" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "" #: lib/RT/Group.pm:94 msgid "View group" msgstr "" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Visualizza i cruscotti personali" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Visualizza ricerche salvate" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Visualizza i cruscotti di sistema" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "altezza dell'editor WYSIWYG" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "Editor visuale di messaggi (WYSIWYG)" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Attenzione! NON è firmato!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "Attenzione: l'azione unisci NON e' reversibile ! Inserire il ticket al quale unire il ticket corrente." #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Osservatore" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "GruppoOsservatori" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Osservatori" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "La connessione al database come amministratore è stata verificata con successo. Ora puoi cliccare 'Configurazione di base' per continuare la configurazione di RT." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "" #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "E' necessario specificare il nome del database da usare per RT e dove è situato. Servono anche username e password che RT userà per accedere al DB. Le credenziali di amministratore verranno usate solo per creare il database e le tabelle se necessario. Durante il passo 6 dell'installazione guidata, con queste informazioni sarà possibile creare e inizializzare il database di RT." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Porta web" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Mer" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Mercoledì" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Riassunto settimanale" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Benvenuto a RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Cosa ho fatto oggi" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Cos'è RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Quando RT non può elaborare un messaggio, a chi deve essere inoltrato?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Quando RT invia un email, imposta il mittente e l'indirizzo di risposta in modo che un utente possa aggiungere contenuti al ticket semplicemente usando la funzione 'Rispondi al mittente' del programma di posta elettronica. RT usa indirizzi email diversi per le normali risposte e per i commenti interni. Questi indirizzi email possono essere diversi per ogni coda, e devono essere configurati per poter usare il programma rt-mailgate." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Quando viene creato un ticket" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Quando una richiesta di approvazione viene creata, notifica chi ha in carico il ticket e gli AdminCc che devono approvarlo" #: etc/initialdata:137 msgid "When anything happens" msgstr "Quando succede qualsiasi cosa" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "Quando si inseriscono articoli di questa classe nelle email:" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Quando clicchi 'Verifica connessione al database' potresti sperimentare un certo ritardo mentre RT prova ad effettuare una connessione al server DB." #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Quando un ticket viene chiuso" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Ogni volta che un ticket viene inoltrato" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Ogni volta che un ticket viene respinto" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Quando un ticket viene riaperto" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Quando un ticket viene risolto" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Ogni volta che un ticket o una transazione vengono inoltrati" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Quando cambia colui che ha in carico il ticket" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Quando cambia la priorità di un ticket" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Quando il ticket si sposta in un'altra coda" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Quando cambia lo stato di un ticket" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Ogni volta che una transazione viene inoltrata" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Quando si verifica una condizione definita dall'utente" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Quando arrivano commenti" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Quando arrivano corrispondenze" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Dove si trova il programma sendmail sul tuo server" #: share/html/Search/Chart.html:184 msgid "Width" msgstr "Larghezza" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Azzerare" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Lavoro" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Telefono (lavoro)" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Impiegato" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "%quant(%1,minuto,minuti) dedicato/i" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "Anno" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Sì" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "%1, non sei autorizzato ad usare RT." #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "" #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Hai già in carico questo ticket" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "Non sei autorizzato ad usare RT." #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Puoi andare al primo messaggio non letto oppure andare al primo messaggio non letto e marcare tutti i messaggi come visti." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "E' possibile anche modificare la ricerca predefinta stessa" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "Puoi modificare il modello, se necessario" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "" #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Non puoi impostare la password." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Puoi solo riassegnare ticket che hai in carico, o che non sono ancora assegnati" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "Puoi sottrarre solo i ticket assegnati ad altri utenti" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "E' possibile prendere in carico solo i ticket non assegnati" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Per cercare qualsiasi parola nella cronologia completa dei ticket, scrivi %1parola." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Non è possibile cambiare lo stato da '%1' a '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Non hai diritti di Super Utente" #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Ti sei scollegato da RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Non hai l'autorizzazione per creare ticket in questa coda." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Puoi inserire link agli articoli nel formato \"###\", dove ### rappresenta il numero di Articolo." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Devi fornire una password di amministratore" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "" #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Verrai indirizzato direttamente alla pagina di accesso. Potrai accedere usando %1 come username, e la password specificata precedentemente." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Scegli il database che tu, o che il tuo amministratore di sistema, preferite usare." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Questa pagina viene visualizzata quando il server RT è stato avviato senza un database attivo. Con tutta probabilità questa è la prima volta che provi ad avviare RT. Clicca \"%1\" qui sotto per eseguire la configurazione guidata del server e del database." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Collegati di nuovo" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Password non impostata." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Il tuo username o la tua password non sono corretti" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "CAP" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Giù]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Su]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[nessuno]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "un campo personalizzato" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "dopo il" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "e prima di" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "barra" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "prima del" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "dal basso verso l'alto" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "Spunta questa casella per applicare questa classe a tutte le code." #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "Spunta questa casella per applicare questo campo personalizzato a tutti gli oggetti." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "Spunta questa casella per applicare questo scrip a tutti gli oggetti." #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "Spuntando questa casella questa classe non sarà più globale e sarà possibile scegliere le singole code a cui applicarla." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "Spuntando questa casella questo campo personalizzato non sarà più globale e sarà possibile scegliere i singoli oggetti a cui applicarlo." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "Spuntando questa casella questo scrip non sarà più globale e sarà possibile scegliere i singoli oggetti a cui applicarlo." #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "clicca per aggiungere" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "clicca per selezionare/deselezionare tutti gli oggetti in una sola volta" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "configurazione base" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "quotidianamente alle %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "cancellato" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "non corrisponde" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "scarica" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "uguale a" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "errore: impossibile spostare in basso" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "errore: impossibile spostare a sinistra" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "errore: impossibile spostare in alto" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "errore: niente da cancellare" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "errore: niente da spostare" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "errore: niente da invertire" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "ogni" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "plugin eseguito con successo" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "completo" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "maggiore di" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "gruppo" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "gruppo '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "Codice" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "immediatamente" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "nella classe %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "inattivo" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "include %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "data di scadenza invalida: %1" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "uguale a" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "diverso da" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "chiave disabilitata" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "chiave scaduta" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "chiave revocata" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "da sinistra a destra" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "minore di" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "marginale" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "corrisponde a" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "profondità massima" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minuti" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "Modifica la configurazione di RT" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "modifica un cruscotto" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "modifica o accedi ad una ricerca" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "modifica le tue preferenze" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "mensilmente" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "mensilmente (il %1 del mese) alle %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "mai" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "nuovo" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "nessuno" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "diverso da" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "nulla" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "oggetti rimossi con successo" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "il" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "al giorno" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "uno" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "aperto" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "apri/chiudi" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "altro..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "torta" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "il plugin ha restituito una lista vuota" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "coda %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "respinto" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "necessita dell'uso di rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "risolto" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "da destra a sinistra" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "ricerca" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "vedi lista oggetti sottostante" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "configurazione locale" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "in stallo" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "righe riepilogative" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "sistema %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "gruppo di sistema '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "il componente chiamante non ha specificato il perché" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "l'indirizzo email che verrà usato per default come mittente e Reply-To nei messaggi riguardanti i commenti" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "l'indirizzo email che verrà usato per default come mittente e Reply-To nei messaggi riguardanti la corrispondenza" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "ticket n°%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "dall'alto verso il basso" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "definitivo" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "gruppo %1 senza descrizione" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "illimitato" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "utente %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "nome utente" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "settimanalmente" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "settimanalmente (il %1) alle %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "settimane" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "numero della porta sulla quale il server riceverà le connessioni, es. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "comprese le intestazioni" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "sì" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/da.po0000664000175000017500000125471313131430353014513 0ustar vagrantvagrant# Danish translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 10:05+0000\n" "Last-Translator: Shawn M Moore \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:13+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%2 %1 %3 %4:%5:%6 %7" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 tilføjet" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 ændret til %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 slettet" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 slettet." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 gemt." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 opdateret." #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 med skabelon %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) af %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (Uændret)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (fra rude %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Juster LogToSTDERR konfigurations option" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - En parameter til afsendelse til %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Send statusopdateringer til STDOUT" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Specificer om du ønsker at bruge enten første ('first), sidste ('last') eller alle ('all') transaktioner" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Specificer navnet eller ID'et pÃ¥ de(n) skabelon(er) du ønsker at bruge" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Angiv den komma separerede liste af transaktionstyper du ønsker at bruge" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Angiv det betingelsesmodul, du vil bruge" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Angiv det søgemodul, du vil bruge" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 tilføjet som en værdi til %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 eksisterer allerede og indeholder RT's tabeller, men indeholder ikke RT's metadata. 'Initialiser database' trinnet senere i dette forløb can indsætte omtalte metadata i den eksisterende database, hvis dette er en acceptabel løsning, klik da pÃ¥ 'Grundlæggende tilpasning' nedenfor for at fortsætte med at tilpasse RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 eksisterer allerede men indeholder ikke RT's tabeller eller metadata. 'Initialiser database' trinnet senere i dette forløb can indsætte omtalte tabekller og metadata i den eksisterende database, hvis dette er en acceptabel løsning, klik da pÃ¥ 'Grundlæggende tilpasning' nedenfor for at fortsætte med at tilpasse RT." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 er tilsyneladende et lokalt objekt, men eksisterer ikke i databasen" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 ser ud til at være fuldt initialiseret. Vi behøver ikke at indsætte nogen tabeller eller metadata, men du kan fortsætte med at tilpasse RT ved at klikke 'Grundlæggende tilpasning' nedenfor" #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 af %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 ændret fra %2 til %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 ændret fra '%2' til '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 kopi" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 kerne konfiguration" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 kunne ikke sættes til %2" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 oprettet" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 slettet" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 deaktiveret" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 eksisterer ikke." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 aktiveret" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "Mine %1 højest prioriterede sager" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 er et værktøj, der arbejder med sager fra et bestemt planlægningsværktøj som f.eks. cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 er et program, beregnet til kørsel som et cron-job, til visning af alle udskudte RT notifikationer, opsamlet, pÃ¥ brugerniveau." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 er en mail-adresse som RT modtager mail pÃ¥. Hvis du tilføjer den som '%2' skaber du en mail - løkke." #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 er ikke længere en værdi til ekstrafelt %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 senest opdaterede artikler." #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 nyeste artikler" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 nyeste sager uden ejer" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objekter" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 site konfiguration" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 opdatering: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 opdatering: Intet ændret" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 opdateret" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1's %2 objekter" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1's %2's %3 objekter" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1's nuværende password" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1's instrumentpaneler" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1's gemte søgninger" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: ingen vedhæftet fil er angivet" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Ny sag i%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "%1 s" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,artikel)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,time)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' er ikke et gyldigt navn." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' er ikke en valid klasseidentifikator" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Afkryds boks for at færdiggøre)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Markér for at slette)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Afkryds bokse for at slette)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Indtast sagsnummer eller URL'er, adskilt af mellemrum)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Hvis intet angives, vil det som standard være %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Ingen ekstrafelter)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Ingen medlemmer)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Ingen scrips)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Ingen skabeloner)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Sender en kopi af denne opdatering til en kommasepareret liste af administrative e-mail-adresser. Disse personer vil modtage fremtidige opdateringer)." #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Sender en kopi af denne opdatering til en kommasepareret liste af e-mail-adresser. Disse personer vil modtage fremtidige opdateringer)." #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Brug disse felter, nÃ¥r du vælger 'brugerdefineret' som betingelse eller handling)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(vilkÃ¥rlig)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(ingen Opsummering)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(intet navn)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(ingen offentlig nøgle!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(ingen værdi)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(ingen værdier)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(afventer %quant(%1,anden sag, andre sager))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(afventer godkendelse)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(obligatorisk)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "troværdig: %1" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(uden titel)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(uden troværdighed!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id er et forældet argument og kan ikke bruges sammen med --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "argumentet --transaction skal være 'first', 'last' eller 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "En tom skabelon" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Adgangskode er ikke blevet tildelt, sÃ¥ brugeren kan ikke logge ind." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE ikke fundet" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACE'er kan kun oprettes og slettes." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "OG" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Om mig" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Adgangskontrol" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Handling" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Handling '%1' findes ikke" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Handling igangsat." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Handlingen er en obligatorisk parameter" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Handling forberedt..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Handlinger" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Aktive sager" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Aktive sager for %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Tilføj %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Tilføj AdminCc" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Tilføj bogmærke" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Tilføj Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Tilføj kolonner" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Tilføj kriterier" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Tilføj flere filer" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Tilføj rekvirent" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Tilføj værdi" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Tilføj kommentarer til eller svar pÃ¥ de udvalgte sager" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Tilføj gruppe" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Tilføj medlemmer" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Tilføj nye observatører" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Tilføj rettigheder for denne %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Tilføj disse kriterier" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Tilføj disse kriterier og søg" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Tilføj bruger" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Tilføj værdier" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Tilføj, tilpas and slet tilpassede feltværdier for objekter" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adresse" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Adresse 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adresse1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adresse2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Admin kommentar" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Admin korrespondance" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Admin køer" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admin/Global konfiguration" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "AdminCCGruppe" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "AdminCc'er" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Administrativt password" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Avanceret" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Avanceret søgning" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Alle godkendelser accepteret" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Alle artikler i denne klasse bør listes i en rulleliste pÃ¥ svarsiden for sag" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Alle klasser" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Alle instrumentpaneler" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Alle køer" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Alle Sager" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Alle iCal feeds indholder en hemmelig token med det formÃ¥l at verificere din identitet. Hvis en af dine iCal feeds' URL er blevet eksponeret for omverdenen kan du fÃ¥ en ny token, med det resultat at alle forudgÃ¥ende iCal feeds ophører med at fungere." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Alle køer der tilsvarer søgekriterierne" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Alle sager" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Alle emner" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Tillad oprettelse af gemte søgninger" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Tillad indlæsning af gemte søgninger" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Tillad at der skrives Perl-kode i skabeloner, skripter, etc." #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Allerede krypteret" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "Der opstod en fejl" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Og/eller" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Ã…rligt" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Ethvert felt" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Der bliver søgt efter ethvert ord som ikke genkendes af RT i sagsemner." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Gælder for" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Gælder for alle objekter" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Anvend" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Anvend globalt" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Anvend dine ændringer" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Godkendelse" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Godkendelse #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Godkendelse #%1: Noter ikke gemt pÃ¥ grund af en systemfejl" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Godkendelse #%1: Noter blev gemt" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Godkendelse accepteret" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Godkendelse Klar til Ejer" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Godkendelse afvist" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Godkend" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Artikel #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Artikel %1 oprettet" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Administration af artikler" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artikel ikke fundet" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Artikler" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Artikler i %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Artikler som matcher %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artikler som ikke har emne" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Stigende" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Tildel og fjern tilpassede felter for kø" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Vedhæft" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Vedhæft fil" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Vedhæftet fil" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Vedhæftet fil" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Vedhæftede fil '%1' kunne ikke indlæses" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Vedhæftet fil oprettet" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Navn pÃ¥ vedhæftet fil" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Vedhæftede filer" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Kryptering af vedhæftede filer er slÃ¥et fra" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Egenskab slettet" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Automatisk foreslÃ¥ede tema-farver er ikke tilgængelige for dit billede. Dette kan være pÃ¥ grund af at du overførte en billedtype som din installerede version af GD ikke understøtter. Understøttede typer er: %1. Du kan rekompilere libgd og GD.pm for at inkludere understøttelse af andre billedtyper." #: etc/initialdata:261 msgid "Autoreply" msgstr "Autosvar" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Autosvar til rekvirenter" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Tilgængelig" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Tilbage" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "DÃ¥rlig fortrolighed for attribut %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Stamdata" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Tom" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Brødtekst" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Fed" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Bogmærke" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Henvisninger som kan gøres til bogmærke for denne søgning" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Bogmærkede Sager" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Bogmærkede sager" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Gennemse efter emne" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Gennemse SQL-forespørgsler som er dannet i denne proces" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Masseopdatering" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "CcGruppe" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "BF" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "Der kan søges efter BF'ere ved brug af en syntaks som ovenfor med %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Kan ikke indlæse gemte søgning \"%1\"" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Kan ikke rette systembrugere" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Kan ikke tilføje ekstrafeltværdier uden navn" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Kan ikke finde en gemt søgning at arbejde med" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Kan ikke referere en sag til sig selv" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Kan ikke gemme %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Kan ikke gemme denne søgning" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Kan ikke føje henvisning til rent tal" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Kan ikke oprette sager i en nedlagt kø." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategorier er baseret pÃ¥" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategori" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "Cc'er" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Ændring" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Skift godkendelse af sag til Ã¥ben status" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Skift adgangskode" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Diagram" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Vælg alle" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Kontrollér adgang til database" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Kontroller database brugernavn/password" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Markér for at slette" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Børn" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Vælg database type" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Vælg fra Emner for %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "By" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Klasse" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Klassenavn" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Klasse kunne ikke oprettes: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Klasse-id" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Klasse er allerede anvendt globalt" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Klasse er allerede anvendt pÃ¥ %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Klasser" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Ryd" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Fravælg alle" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Tryk \"Afslut installation\" nedenfor for at afslutte guiden" #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Klik pÃ¥ \"Initialiser Database\" for at oprette RT's database og indsætte oprindelige metadata. Dette kan tage et øjeblik" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Lukket" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Lukkede sager" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Combobox: Vælg eller indtast flere værdier" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Combobox: Vælg eller indtast en værdi" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Combobox: Vælg eller indtast op til %1 værdier" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Kommentar" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Kommentar - adresse" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Kommentar adresse" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Kommentar pÃ¥ sager" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentarer" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Kommentarer (ikke sendt til rekvirenter)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Kommentarer om denne bruger" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Kommentarer tilføjet" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Commit tømt" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Betingelse" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Betingelse '%1' ikke fundet" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Betingelsen er en obligatorisk parameter" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Betingelser stemmer overens..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Tilstand, Handling og Skabelon" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Konfigurationsfil %1 er lÃ¥st" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Konfiguration for køen %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Forbindelse Lykkedes" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Kontakt din RT-administrator" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Indhold" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Indhold er en ugyldig IP-adresse" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Indhold er en ugyldig række af IP-adresser" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Indhold-Type" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "IndholdsType" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Korrespondent adresse" #: etc/initialdata:393 msgid "Correspondence" msgstr "Korrespondance" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Korrespondance tilføjet" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Kunne ikke tilføje følgende ny værdi til brugerdefineret felt: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Kunne ikke ændre ejer: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Kunne ikke oprette ekstrafelt: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Kunne ikke oprette gruppe" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Kunne ikke oprette søgning: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Kunne ikke at oprette sag. Kø ikke sat." #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Kunne ikke oprette bruger" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Kunne ikke slette søgning %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Kunne ikke indlæse %1 attribut" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Kunne ikke indlæse Klasse %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Kunne ikke indlæse ekstrafelt %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Kunne ikke indlæse gruppe" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Kunne ikke indlæse objekt til %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Kunne ikke angive brugerinfo" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Kunne ikke tilføje fil" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Kunne ikke tilføje medlem til gruppe" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Kunne ikke kompilere %1 kodeblok '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Kunne ikke kompilere skabelon kodeblok '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Kunne ikke oprette en transaktion: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Kunne ikke oprette post: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Kunne ikke slette instrumentpanel %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Kunne ikke finde række" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Kunne ikke finde passende transaktion, springer over" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Kunne ikke finde den principal" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Kunne ikke finde den værdi" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Kunne ikke indlæse klasse %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Kunne ikke indlæse Custom Field #%1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Kunne ikke indlæse TilpassetFelt #%1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Kunne ikke indlæse ekstrafelt %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Kunne ikke indlæse kopi af sag #%1." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Kunne ikke indlæse instrumentpanel %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Kunne ikke indlæse gruppe #%1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Kunne ikke indlæse gruppe %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Kunne ikke indlæse reference" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Kunne ikke indlæse objekt %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Kunne ikke indlæse eller oprette bruger: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Kunne ikke indlæse kø" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Kunne ikke indlæse kø #%1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Kunne ikke indlæse kø %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Kunne ikke indlæse kø '%1'" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Kunne ikke indlæse scrip #%1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Kunne ikke indlæse skabelon #%1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Kunne ikke indlæse den angivne principal" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Kunne ikke indlæse sag '%1'" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Kunne ikke indlæse emne-medlemskab mens det blev forsøgt slettet" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Kunne ikke indlæse transaktion #%1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Kunne ikke indlæse bruger" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Kunne ikke indlæse bruger #%1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Kunne ikke indlæse bruger #%1 eller bruger '%2'" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Kunne ikke indlæse bruger '%1'" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Kunne ikke erstatte indhold med dekrypteret data: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Kunne ikke erstatte indhold med krypteret data: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Kunne ikke fÃ¥ gjort basen '%1' til en URI." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Kunne ikke gøre mÃ¥let '%1' til en URI." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Kunne ikke sætte %1 observatør: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "kunne ikke sætte privat nøgle" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Kunne ikke nulstille private nøgle" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Land" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Opret" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Opret sager" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Opret en klasse" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Opret et ekstrafelt" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Opret et ekstrafelt til kø %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Opret en ny artikel" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Opret en ny artikel i" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Opret nyt instrumentpanel" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Opret en ny gruppe" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Opret en ny skabelon for køen %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Opret en ny bruger" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Opret en ny kø" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Opret en skabelon" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Opret en sag" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Opret en artikel" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Opret en artikel i klasse..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Opret artikler i denne klasse" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Opret gruppe for instrumentpaneler" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Opret en ny sag baseret pÃ¥ denne scrips skabelon" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Opret personligt instrumentpanel" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Opret system instrumentpanel" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Opret sag" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Opret sager" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Opret, tilpas og slet poster i Adgangskontrolliste" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Opret, tilpas og slet tilpassede felter" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Opret, tilpas og slet værdier for tilpassede felter" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Opret, tilpas og slet kø" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Opret, tilpas og slet gemte søgninger" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Opret, tilpas og slet brugere" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Oprettet" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Oprettet af" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Ekstrafelt %1 oprettet" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Oprettet af" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Oprettede søgning %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "OprettetAf" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "OprettetRelativt" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Opretter" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kryptografi" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Aktuelle referencer" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Nuværende søgning" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Aktuelle medlemmer" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Aktiv søgning" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Aktuelle observatører" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Ekstrafelter" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Ekstrafelter for %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Tilpassede felter for køen %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Ekstrahandling til forberedelseskode" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Ekstra betingelse" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Tilpasset felt #%1 er ikke anvendt pÃ¥ dette projekt" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Ekstrafelt %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Brugerdefineret felt %1 er ikke gyldigt for dette element" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Ekstrafelt %1 har en værdi." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Ekstrafelt %1 har ingen værdi." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Ekstrafelt %1 ikke fundet" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Ekstrafeltværdi %1 kunne ikke findes til ekstrafelt %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Ekstrafeltværdi kunne ikke slettes" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Ekstrafeltværdi slettet" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Ekstrafelt" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "BrugerdefineretFeltVærdi" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Tilpas" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Grundlæggende tilpasning" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Tilpas Email Adresser" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Tilpas Email Konfiguration" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Tilpas udseendet pÃ¥ din RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBa kodeord" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA brugernavn" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Daglig" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Daglig sammenfatning" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Instrumentpanel" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Instrumentpanel kunne ikke oprettes: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Instrumentpanel kunne ikke opdateres: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Instrumentpanel opdateret" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Instrumentpaneler" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Database vært" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Database navn" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "RT's database password" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "RT's database brugernavn" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Dato format" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Datoer" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Dekrypter" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Standard kø" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Standard: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Standard: %1/%2 ændret fra %3 til %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "StandardFormat" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Slet" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Slet skabelon" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Sletning mislykkedes: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Slet gruppe for instrumentpaneler" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Slette-handling er deaktiveret i konfiguration for livscyklus" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Slet personlige instrumentpaneler" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Slet system instrumentpaneler" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Slet sager" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Slet værdier" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Slettet %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Slettet Forespørgelser" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Slettet gemt søgning" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Slettede søgning %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Sletning af dette objekt vil ødelægge referentiel integritet" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Sletning af dette objekt vil stride mod referentiel integritet" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Afvis" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Afhængighed til" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "Afhængighedsforhold til" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Afhængighed til %1 tilføjet" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Afhængighed til %1 slettet" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Afhængighed af %1 tilføjet" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Afhængighed af %1 slettet" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "AfhængigAf" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Afhængig af" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "AfhængigAf" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Faldende" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Beskriv problemet nedenfor" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Beskrivelse" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Detaljeret information om din RT-opsætning" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Detaljer" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Retning" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Deaktiveret" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Vis" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Vis adgangskontrolliste" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Vis artikel %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Vis kolonner" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Distribueret under %1version 2 af GNU GPL%2." #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Gør hvad som helst" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Domæne navn" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Undlad at inkludere 'http://', skriv noget lignende 'localhost' eller 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Genopfrisk ikke startside." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Genopfrisk ikke søgeresultater." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Opdater ikke denne side." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Undlad helt at stole pÃ¥ denne nøgle" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Download dumpfil" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Rulleliste" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Forfalden" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "ForfaldenRelativt" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "FEJL: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Nem opdatering af dine Ã¥bne sager" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Nem visning af dine pÃ¥mindelser" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Rediger" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Rediger ekstrafelter" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Rediger ekstrafelter for %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Rediger ekstrafelter for alle grupper" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Rediger Custom Fields for alle køer" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Rediger ekstrafelter for alle brugere" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Rediger Tilpassede felter for artikler i alle klasser" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Rediger ekstrafelter for sager i alle køer" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Rediger referencer" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Rediger søgning" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Rediger søgning" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Rediger globalt emne-hierarki" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Rediger systemskabeloner" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Rediger emne-hierarki for %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Redigerer ekstrafelt %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Redigerer medlemskab for gruppe %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "EffektivId" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Enten kilde eller destination skal angives" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Enten har du ikke rettigheder til at se den gemte søgning %1 eller den angivne identifikator er ikke korrekt" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "E-mail" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "E-post-adresse" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "E-post sammenfatning" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "E-mail-adresse i brug" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Email leverance" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "E-post-skabelon for periodisk sammenfatning af pÃ¥mindelser" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "E-mailAdresse" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Aktiveret" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Aktiveret (fravalg af denne boks deaktiverer denne klasse)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Aktiveret (fravalg af denne boks deaktiverer dette ekstrafelt)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Aktiveret (fravalg af denne boks deaktiverer denne gruppe)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Aktiveret (fravalg af denne boks deaktiverer denne kø)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Aktiverede klasser" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Aktiverede køer" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Aktiverede køer som matcher søgekriterie" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Aktiveret status %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Krypter" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Krypter som standard" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Kryptér/dekryptér" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Kryptér/dekryptér transaktion #%1 i sag #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Indsæt artikler, sager eller andre URL'er som er relateret til denne artikel." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Indtast flere IP-adresse-serier" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Indtast flere IP-adresser" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Indtast flere værdier" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "tilføj flere værdier for autokomplettering" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Angiv objekter eller URL'er til tilknytning af objekter. Flere indtastninger adskilles med mellemrum." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Indtast én IP-adresse" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Indtast én IP-adresse-serie" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Indtast en værdi" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "tilføj en værdi for autokomplettering" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Angiv køer eller URL'er til tilknytning af køer. Flere indtastninger adskilles med mellemrum." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Angiv sager eller URL'er til tilknytning af sager. Flere værdier adskilles med mellemrum." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Indtast tid i timer som standard" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Indtast op til %1 IP-adresse-serier" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Indtast op til %1 IP-adresser" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Angiv op til %1 værdier" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Indtast op til %1 værdier med autofuldførelse" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "Indtastning af %1, %2, %3 eller %4 begrænser resultater til sager med én af de respektive statustyper. Ethvert individuelt navn begrænser resultater til blot statusnavne." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Fejl" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Fejl til RT ejer: Offentlig nøgle" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Fejl: Manglende instrumentpanel" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Fejl: ugyldig GnuPG data" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Fejl: kan ikke ændre værdi for beskyttelse af personlige oplysninger for eksisterende søgning" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Fejl: kan ikke indlæse gemt søgning %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Fejl: ingen privat nøgle" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Fejl: Offentlig nøgle" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Fejl: søgning %1 ikke opdateret: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Opprioriter sager" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Estimeret" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Alle" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Eksempel:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Udløber" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "UdvidStatus" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Ekstern godkendelsesmetode aktiveret." #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Ekstra information" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Udtræk artikel" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Udtræk emnemærke" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Udtræk en ny artikel fra sag #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Udtræk artikel fra sag #%1 ind i klasse %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Udtræk mærker fra en transaktions emne og tilføj dem til sagens emne linie." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Kunne ikke fÃ¥ kontakt til database: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Kunne ikke oprettet %1 attibutten" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Kunne ikke finde 'privilegerede' brugeres pseudogruppe." #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Kunne ikke finde 'uprivilegerede' brugeres pseudogruppe." #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "kunne ikke indlæse %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Kunne ikke indlæse %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Kunne ikke indlæse modul %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Kunne ikke indlæse objekt for %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Kunne ikke indlæse skabelon" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "kunne ikke fortolke skabelon" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Nyhedskilder" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Felt" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Kilde til feltets værdier:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Filnavn" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Fyld-argumenter" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Fyld bokse med farve med brug af" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Udfyld flere tekstomrÃ¥der" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Udfyld flere wikitekst-omrÃ¥der" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Udfyld et tekstomrÃ¥de" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Udfyld et wikitekst-omrÃ¥de" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Udfyld dette felt med en URL." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Udfyld op til %1 tekstomrÃ¥der" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Udfyld op til %1 wikitekst-omrÃ¥der" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Endelig prioritet" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "EndeligPrioritet" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Find alle brugere hvis" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Find grupper hvis" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Find personer hvis" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Find sager" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Fingeraftryk" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Udfør" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Første" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "For at opnÃ¥ fuld styrke af RTs søgninger, sÃ¥ besøg venligst grænsefladen %1search builder interface%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Gennemtving ændring" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Videresend" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Videresend Besked" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Videresend Besked og Returner" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Videresend sag" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Videresend beskeder udenfor RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Videresend sag #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Videresend transaktion #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Videresendte sag til %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Fandt %quant(%1,ticket)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Object fundet" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frekvens" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Fre" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Fredag" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Fra" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD er deaktiveret eller er ikke installeret. Du kan overføre et billed, men du vil ikke fÃ¥ automatiske farveforslag." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Generelt" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Generelle rettigheder" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Kom godt igang" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Givet til %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Globale egenskaber" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Globale emner" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Global ekstrafelt-konfiguration" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Global portlet %1 gemt." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Start" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "GÃ¥ til gruppe" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "GÃ¥ til bruger" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Start!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "GÃ¥ til sag" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "GÃ¥ til sag" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Graf" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Graf egenskaber" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "grafiske diagrammer er ikke tilgænglige" #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Gruppe" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Grupperettigheder" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Gruppe har allerede medlem: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Gruppe kunne ikke oprettes: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Gruppe oprettet" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Gruppe deaktiveret" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Gruppe aktiveret" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Gruppen har ikke et sÃ¥dant medlem" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Gruppenavnet '%1' er allerede i brug" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Gruppe ikke fundet" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupper" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Grupper kan ikke være medlem af deres medlemmer" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Grupper som opfylder søgekriterier" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Grupper denne bruger hører til" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "HarMedlem" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Overskrift for en videresendt sag" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Overskrift for en videresendt besked" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Hej!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Hjælp os med at fÃ¥ lavet nogle nyttige defaults for RT." #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Skjul al citeret tekst" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Skjul citeret tekst" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Historik" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Historik for artikel #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Historik for gruppen %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Kø historik %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Historik for brugeren %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Hjemmetelefon" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Hjemmeside opdateringsinterval" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Forside" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Time" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Timer" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Jeg har %quant(%1,concrete mixer)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "ID" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identitet" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Hvis en godkendelse bliver afvist, afvis den oprindelige og slet afventende godkendelser" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "" #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Hvis dette værktøj var \"setgid\", kunne en fjendtlig bruger benytte det til at opnÃ¥ administratoradgang til RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Hvis du allerede har en fungerende RT server og database, bør du bruge denne lejlighed til at sikre dig at din database server kører og at RT serveren kan fÃ¥ forbindelse til den. NÃ¥r du har gjort det, bør du starte og stoppe RT serveren.

    " #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "" #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Hvis du har ændret porten som RT kører pÃ¥, sÃ¥ skal du genstarte serveren for at kunne logge ind." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Hvis du har foretaget opdateringer ovenfor, sørg for at..." #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Hvis din foretrukne database ikke er i rullemenuen nedenfor, betyder det at RT ikke kunne finde en database driver installeret lokalt. Du kan muligvis afhjælpe dette ved hjælp af %1 for at downloade og installere DBD::MySQL, DBD::Oracle or DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Ulovlig værdi for %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Felt kan ikke ændres" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Inaktive sager" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Inkludér artikel:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Inkludér deaktiverede klasser i listning." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Medtag deaktiverede ekstrafelter pÃ¥ liste." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Medtag deaktiverede grupper pÃ¥ denne liste." #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Medtag deaktiverede køer pÃ¥ liste." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Medtag deaktiverede brugere i søgning." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Medtag side" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Inkludér underemner" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "individuelle beskeder" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Informer RT ejeren om at en eller flere brugere har problemer med offentlige nøgler" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Informer bruger om at det instrumentpanel brugeren abonnerede pÃ¥, ikke findes" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Infromer brugeren om at en afsendt besked indeholder ugyldig GnuPG data" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Informer brugeren om at han/hun har problemer med sin offentlige nøgle og derfor ikke var i stand til at modtage krypteret indhold" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "informer brugeren at hans kodeord er blevet nulstillet" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Informer brugeren om at vi modtog en krypteret email og ikke havde nogen privat nøgle til at dekryptere" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Første prioritet" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "FørstePrioritet" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "initialisere Databasen" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Inputfejl" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Input skal stemme overens med %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Intern fejl: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Intern fejl: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "Ugyldig %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Ugyldig %1 argument" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Ugyldigt %1: '%2' ligner ikke en email adresse" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Ugyldigt %1: burde være et tal" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Ugyldig klasse" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Ugyldigt tilpasset feltværdi-kilde" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Ugyldig kø, ikke i stand til at anvende Klasse: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "Ugyldig gengivelsestype" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Ugyldig gengivelsestype for tilpasset felt af typen %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Ugyldige data" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Ugyldtigt objekt" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Ugyldigt mønster: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Ugyldig kø" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Ugyldig rettighed" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Ugyldig højre. Kunne ikke kanonisere højre '%1'" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Ugyld syntax for email adresse" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Ugyldig værdi for %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Ugyldig værdi for ekstrafelt" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Er ikke krypteret" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Det er yderst vigtigt, at ikke-privilegerede brugere ikke fÃ¥r adgang til at bruge dette værktøj." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Det anbefales, at du opretter en ikke-privilegeret Unix-bruger med det korrekte gruppemedlemskab og RT-adgang for at benytte dette værktøj." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Flere parametre er nødvendige:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Kursiv" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Slut dig til eller forlad gruppe" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Behold 'localhost' hvis du ikke er sikker. Efterlad blank for at oprette forbindelse lokalt over en sokkel" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "Nøgleords- og intuitionsbaseret søgning" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Sprog" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Sprog" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Stor" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Sidste" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Sidste kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Sidst kontaktet" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Sidst opdateret" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Sidst Opdateret af" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Senest opdateret" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Sidst opdateret af" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "SidstOpdateret" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "SidstOpdateretAf" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "SidstOpdateretSlægtning" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Efterlad tom for at bruge standard værdien for din database" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Undlad at ændre dette felt hvis du vil bruge standard databaseadministrator brugernavn, for den databasetype du anvender" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Tilbage" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Signaturforklaringer" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Længde talt i bogstaver; Brug '0' for at fÃ¥ vist alle beskeder, uanset længden" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Lad denne bruger fÃ¥ adgang til RT" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Lad denne bruger fÃ¥ rettigheder" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Lad os komme igang!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Livscyklus" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Reference" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Reference eksisterer allerede" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Reference ikke fundet" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Referér sag #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Referér værdier til" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Refereret" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "RefereretTilAf" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "RefereretTil" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Referencer" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Liste" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Indlæs" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Indlæs en gemt søgning" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Indlæs gemt søgning" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Indlæs gemt søgning:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Indlæste %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Indlæste den originale \"%1\" gemte søgning" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Indlæste Perl-moduler" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Indlæste gemte søgning \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Indlæser..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Lokalitet" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "LokaliseretDatoTid" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Lokation" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Logget pÃ¥" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Logget ind som %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Logget ud" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Log ind" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "LogoAltTekst" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Log ud" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Opslagstype mismatch" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Primær type af links" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Sæt ejer" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Sæt status" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Sæt forfaldsdato" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Sæt startdato" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Sæt datostart" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Sæt dato meddelt" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Sæt prioritet" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Sæt kø" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Sæt emne" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Administrer ekstrafelter og ekstrafeltværdier" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Administrer grupper og gruppemedlemskab" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Administrer egenskaber og konfiguration som gælder for alle køer" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Administrer køer og kø-specifikke egenskaber" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "HÃ¥ndter gemte grafer" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Administrer brugere og adgangskoder" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Markerede alle beskeder som set" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Søgerækkefølge for Mason-skabelon" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "MaksVærdier" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Maksimal længde for integreret besked" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Maj" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Mig" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Medlem" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Medlem %1 tilføjet" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Medlem %1 slettet" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Medlem tilføjet: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Medlem slettet" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Medlem ikke slettet" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "MedlemAf" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Medlemmer" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Medlemskab af %1 tilføjet" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Medlemskab af %1 slettet" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Medlemskaber" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Medlemskaber for brugeren %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Sammenføjning udført med succes" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Sammenføjning lykkedes ikke. Kunne ikke sætte EffektivID." #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Føj ind i" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Føjet ind i %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Besked" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Brødtekst for besked vises ikke fordi den er for stor" #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Beskedens brødtekst er ikke vist fordi afsenderen ikke ønskede at integrere den." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Beskedens indhold blev ikke vist fordi den ikke er klar tekst." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Besked feltets højde" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Besked feltets bredde" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Besked kunne ikke gemmes" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Besked til bruger" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Besked gemt" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Minimum password længde" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minutter" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Forskelligt" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Mangler en primærnøgle?: %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobil" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Mobiltelefon" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Tilpas" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Rediger medlemmer" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Tilpas Scrip-skabeloner" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Tilpas Scrip'er" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Rediger et ekstrafelt for kø %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Modificér og opret klasser" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Modificér og opret brugerdefinerede felter for artikler" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Tilpas artikel #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Rediger tilhørende objekter til %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Modificer det brugerdefinerede felts værdier" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Rediger datoer for sag #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Tilpas globale emner for artikler" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Rediger globale ekstrafelter" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Rediger globale grupperettigheder" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Tilpas globale emner" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Rediger globale brugerrettigheder" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Modificer gruppe-instrumentpaneler" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Tilpas gruppemedlemskab for vagtplan" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Rediger gruppemetadata eller slet gruppe" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Tilpas grupperettigheder for Klasse %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Rediger grupperettigheder for ekstrafelter %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Rediger grupperettigheder for gruppe %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Rediger grupperettigheder for kø %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Tilpas metadata og brugertilpassede felter for denne klasse" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Rediger din egen RT-konto" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Rediger personer, der tilhører sag #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Modificer personlige instrumentpaneler" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Tilpas hvem som holder øje med køen" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Rediger scrips for kø %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Rediger scrips, der gælder for alle køer" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Modificer instrumentpaneler for system" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Rediger skabelon %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Tilpas skabelon %1 for kø %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Rediger skabeloner, der gælder for alle køer" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Modificér klassen %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Modificer indholdet af instrumentpanel %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Modificer instrumentpanelet %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Tilpas standardvisningen af \"RT set fra oven\"" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Rediger gruppen %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Modificer abonnement pÃ¥ instrumentpanel %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Rediger brugeren %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Tilpas denne søgning..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Rediger sag # %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Rediger sag #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Rediger sager" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Tilpas emne for %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Tilpas emnehierarki som er knyttet til denne klasse" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Tilpas emner for artikler i denne klasse" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Tilpas brugerrettigheder for klasse %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Rediger brugerrettigheder for ekstrafelter %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Rediger brugerrettigheder for gruppe %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Rediger brugerrettigheder for kø %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Tilpas hvem som modtager post for sag #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Man" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Mandag" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "MÃ¥nedlig" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Mere om de som anmoder" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Flere" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Egenskab 'Navn' skal angives" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Mine %1 sager" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Mine godkendelser" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Min dag" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Mine pÃ¥mindelser" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mine godkendelser" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mine instrumentpaneler" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Mine pÃ¥mindelser" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mine gemte søgninger" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "NYLINIE" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Navn" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Navn og e-post-adresser" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Navn i brug" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Navn:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Aldrig" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Ny" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Ny artikel" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Nyt Instrumentpanel" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nye referencer" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Ny afventende godkendelse" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Ny søgning" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nye beskeder" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Ny adgangskode" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Ny meddelelse om adgangskode sendt" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Ny pÃ¥mindelse:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Ny sag" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Ny sag eksisterer ikke" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Nye sager kan ikke have '%1' som status i denne kø." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nye observatører" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Næste" #: lib/RT/User.pm:96 msgid "NickName" msgstr "KaldeNavn" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Kaldenavn" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Nej" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "Ingen %1 indlæst" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Ingen artikler matcher %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Ingen klasse defineret" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Der blev ikke fundet klasser som matcher søgekriteriet." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Intet ekstrafelt" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Intet ekstrafelt defineret" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Ingen gruppe defineret" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Ingen søgning" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Ingen kø defineret" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Ingen RT-bruger fundet. RÃ¥dfør dig venligst med din RT-administrator." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Intet emne" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Ingen skabelon" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Ingen handling" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Ingen kolonne angivet" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Ingen kommentar indtastet for denne bruger" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Ingen beskrivelse af %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Ingen gruppe angivet" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Ingen grupper fundet, der opfylder søgekriterier" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Ingen nøgle egnet til kryptering" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Ingen meddelelse vedhæftet" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Intet navn angivet" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Ingen grund til kryptering" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Ingen adgangskode sat" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Ingen adgang til at oprette køer" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Ingen adgang til at oprette sager i denne kø '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Ingen adgang til at vise denne sag" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Ingen tilladelse til at gemme søgninger for hele systemet" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Ingen tilladelse til at ændre indstillinger" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Ingen adgang til at se artikel" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Ingen adgang til at se opdater sag" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Ingen principaler valgt." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Ingen privat nøgle" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Ingen køer fundet, der opfylder søgekriterier." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Ingen rettigheder specificeret" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Ingen rettigheder fundet" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Ingen søgning at arbejde med." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Intet emne" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Angivne nøgle findes ikke eller er ikke egnet til signering" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Ingen sager fundet." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Ingen transaktionstype angivet" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Ingen brugbare nøgler." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Ingen brugere fundet, der opfylder søgekriterier" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "Ingen værdi sendt til _Set!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Ingen" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Ingen" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Ikke-eksisterende felt?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Ikke fundet" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Ikke logget ind." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Ikke sat" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Bruger du andet end mobilbrowser?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Noter" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Besked kunne ikke sendes" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Giv besked til AdminCc'ere" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Giv besked til AdminCc'ere som kommentar" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Giv besked til Cc'ere" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Giv besked til Cc'ere som kommentarer" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Giv besked til andre modtagere" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Giv besked til andre modtagere som kommentar" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Giv besked til ejer" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Giv besked til ejer som kommentar" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Giv besked til ejer om deres afviste sag" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Notificer ejer om at deres sag er godkendt og er klar til at blive arbjedet videre pÃ¥" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Notificer ejer om at deres sag er blevet godkendt af nogle eller alle godkendere" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Notificer ejere, rekvirenter Cc'er og AdminCc'er" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Notificer ejere, rekvirenter, Cc'er og AdminCc'er" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Giv besked til ejere og AdminCc'ere om nye emner, som afventer deres godkendelse" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Notificer rekvirent om at deres sag er blevet godkendt af alle godkendere" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Notificer rekvirent om at deres sag er blevet godkendt af en godkender" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Giv besked til rekvirenter" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Giv besked til rekvirenter og Cc'ere" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Giv besked til rekvirenter og Cc'ere som kommentar" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Gør mig opmærksom pÃ¥ ulæste beskedder" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ELLER" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekt kunne ikke oprettes" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Objekt kunne ikke slettes" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objekt oprettet" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objekt slettet" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Objekttype mismatch" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Element listen er tom" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Okt" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "PÃ¥ %1, skrev %2:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Ved Lukning" #: etc/initialdata:170 msgid "On Comment" msgstr "Ved kommentar" #: etc/initialdata:142 msgid "On Correspond" msgstr "Ved korrespondance" #: etc/initialdata:131 msgid "On Create" msgstr "Ved oprettelse" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "Ved videresendelse" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Ved videresendelse af sag" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Ved videresendelse af transaktion" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Ved ændring af ejer" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Ved ændring af prioritet" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Ved ændring af kø" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Ved Afvisning" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Ved GenÃ¥bning" #: etc/initialdata:205 msgid "On Resolve" msgstr "Ved løsning" #: etc/initialdata:176 msgid "On Status Change" msgstr "Ved statusændring" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Ved transaktion" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Engangs Bcc" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Engangs Cc" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Blot til indtastning, ikke visning" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Vis kun godkendelser for sager oprettet efter %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Vis kun godkendelser for sager oprettet før %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Vis kun ekstrafelter for:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Ã…bn den" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Ã…bne sager" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Ã…bn URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Ã…bne sager" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Ã…bn sager ved korrespondance" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Valgmulighed" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Valgmuligheder" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sorteret efter" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organisation" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Oprindelig sag: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "UdgÃ¥ende e-mail omkring en kommentar er gemt" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "UdgÃ¥ende e-mail gemt" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "UdgÃ¥ende post" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Oversigt" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Egne sager" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Ejer" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "Ejer '%1' har ikke rettigheder til at eje denne sag." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Ejer ændret fra %1 til %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Ejer tvungent ændret fra %1 til %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "EjerNavn" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Side" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Side 1 af 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Side ikke fundet" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Personsøger" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Personsøger" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Forældre" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Adgangskode" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Adgangskode ændret" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Adgangskode er ikke blevet angivet." #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Adgangskode skal være pÃ¥ mindst %1 karakterer" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Adgangskode ikke udskrevet" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Adgangskode sat" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Adgangskode: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Adgangskode: Adgang afvist" #: etc/initialdata:714 msgid "PasswordChange" msgstr "KodeordsÆndring" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Adgangskoder stemmer ikke overens." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Sti til sendmail" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Personer" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Personer knyttet til kø %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Udfør en brugerdefineret handling" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl-konfiguration" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Søgerækkefølge for Perl-bibliotek" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Slet data fra RT permanent" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Adgang afvist" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Adgang afvist" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefonnumre" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Tjek venligst URL igen." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Indtast venligst din nuværende adgangskode korrekt." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Indtast venligst din nuværende adgangskode." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Mulige skjulte søgninger" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Præferencer" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Præferencer %1 for bruger %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Præferencer gemt for %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Præferencer for bruger %1 gemt." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Indstillinger gemt." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Foretrukne nøgle: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Foretrukket nøgle" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Forbered tømning" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Forr." #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Principal %1 ikke fundet." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Jdskriv de resulterende beskedsammendrag til STDOUT; send dem ikke med post. Undlad at markere dem som sendt." #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Udskriv denne besked" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioritet" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Privat" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privat:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Privat nøgle" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Privilegeret" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Privilegeret status: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Privilegerede brugere" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Behandler uden transaktion, nogle betingelser og handlinger kan slÃ¥ fejl. Overvej at anvende argumentet --transaction" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseudogruppe til internt brug" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "Offentlig nøgle '0x%1' er pÃ¥krævet for at kunne verificere signatur" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Forespørgsler" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Søgning" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Søgedefinition" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Kø" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Kø %1 ikke fundet" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Navn pÃ¥ kø" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Kø eksisterer allerede" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Kø kunne ikke oprettes" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Kø kunne ikke indlæses." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Kø oprettet" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Kø id" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Kø ikke fundet" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Køs nøgle" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "KøAdminCc" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "KøCc" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "KøNavn" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "KøObservatør" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Køer" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Køer som jeg administrerer" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Køer: Jeg er en AdminCc for" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Hurtigsøgning" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Hurtigoprettelse af sager" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT-administration" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "Konfiguration for RT" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT-fejl" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT størrelse" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "Request Tracker - hurtigt overblik" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "Request Tracker - hurtigt overblik for bruger %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT kan informere dine brugere om nye sager eller nye svar pÃ¥ eksisterende sager. Fortæl os hvor sendmail (eller et sendmail kompatibelt binært program, sÃ¥som postfix) kan findes. RT skal ogsÃ¥ vide hvem der skal kontaktes hvis den modtager en ugyldig email, den email addresse der angives til dette formÃ¥l mÃ¥ ikke være en der peger tilbage ind i RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT kan medtage indhold fra en anden web-service, nÃ¥r dette ekstrafelt vises." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT kan gøre dette ekstrafelts værdier til hyperlinks til en anden tjeneste." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "Kernevariabler for RT" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT er et professionelt system til sagsstyring, der er designet til at lade dig hÃ¥ndtere opgaver, sager, forespørgsler, defekter eller hvad som helst andet som ligner en \"opgavehandling\" pÃ¥ en intelligent og effektiv mÃ¥de." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT bliver brugt af firmaer der figurerer pÃ¥ Fortune 100-listen, enmands firmaer, statslige organer, undervisnings institutioner, hospitaler, ikke statsstyrede organisationer (NGO), biblioteker, open source projekter og alle mulige andre typer af organisationer pÃ¥ alle syv kontinenter." #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT vil oprette forbindelse til databasen ved hjælp af denne bruger. Den vil blive oprettet for dig." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT vil oprette en bruger kaldet \"root\" og anvende dette som brugerens password" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT vil erstatte %1 og %2 med henholdsvis sagsnummer og ekstrafeltværdi" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT anvender denne streng til at identificere præcis denne instans af RT, den vil søge i emne felterne i indkomne mails efter denne streng for at bestemme hvilken sag en given mail hører til. Vi anbefaler at du indtaster dit internet domæne i dette felt. (F.eks. eksempel.dk)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT kan samarbejde med et antal forskellige databaser. MySQL, PostgreSQL, Oracle og SQLite er alle understøttede." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "RTAddressRegexp i konfigurationen matcher ikke %1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "GenÃ¥ben" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Fulde navn" #: lib/RT/User.pm:95 msgid "RealName" msgstr "FuldeNavn" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Modtagere" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Optag alle opdateringer" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Rekursivt medlem" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Henvis til" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Reference fra %1 tilføjet" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Reference fra %1 slettet" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Reference til %1 tilføjet" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Reference til %1 slettet" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Refereret til af" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "RefereretTilAf" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Refererer til" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "ReferererTil" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Genopfrisk" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Opdater denne side hver %1 minut." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Afvis" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Husk standard-kø" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "PÃ¥mindelse" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "PÃ¥mindelse '%1' tilføjet" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "PÃ¥mindelse '%1' afsluttet" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "PÃ¥mindelse '%1' genÃ¥bnet" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "PÃ¥mindelser" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "PÃ¥mindelser for sag #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Fjern AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Fjern bogmærker" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Fjern Cc" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Fjern rekvirent" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "Gengivelsestype" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Erstatter ejer-rullemenuer med tekstbokse" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Svar" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Svaradresse" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Svar til rekvirenter" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Svar pÃ¥ sager" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Rekvirent" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "RekvirentGruppe" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Rekvirenter" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "PÃ¥krævet parameter '%1' ikke angivet" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Nulstil" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Nulstil RT med ét overblik" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Nulstil hemmelig autentificering token" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Sæt tilbage til standard" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Hjemme" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Løs" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Løs sag #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Løst" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "LøstRelativt" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Svar" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultater" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Vend tilbage til sagen" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Gentag adgangskoden" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "GÃ¥ tilbage" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Rettighed indlæst" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Rettighed kunne ikke inddrages" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Rettighed ikke indlæst." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Rettigheder kunne ikke tildeles %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Rettigheder for administratorer" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Rettigheder for personale" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Roller" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Rækker" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Rækker pr. boks" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Rækker pr. side" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL-forespørgsler" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite er en database der udmærker sig ved ikke at have behov for en selvstændig server eller nogen form for konfiguration. RT's udviklere anbefaler denne database til test, demo og udviklingsformÃ¥l, men ikke til høj-volumen produktions systemer." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Lør" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Lørdag" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Gem" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Gem ændringer" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Gem præferencer" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Gem som ny" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Gem ny" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Gem denne søgning" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Gemte %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Gemte søgninger" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Gemte diagrammer" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Gemte søgninger" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Scrip oprettet" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Scrips og modtagere" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Søg" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "Søgning %1 opdateret" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Søg artikler" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Søgepræferencer" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Søg efter artikler som matcher" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Søg efter godkendelser" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Søg efter artikler" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Søg efter sager" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Søgemuligheder" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Søgeresultater" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Interval mellem genopfriskning af søgeresultater" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "Søgning i den fulde tekst for hver sag kan tage lang tid, men hvis du har brug for at gøre det, sÃ¥ kan du søge for ethvert ord i fuld sagshistorik ved at taste %1ord." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Hemmeligt godkendelsessymbol" #: bin/rt-crontool:352 msgid "Security:" msgstr "Sikkerhed:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Se ogsÃ¥:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Se artikler i denne klasse" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Se ændringer for artikler i denne klasse" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Se om denne klasse eksisterer" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Vælg" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Vælg tilpassede felter for artikler i alle klasser" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Vælg databasetype" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Vælg en klasse" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Vælg et ekstrafelt" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Vælg en farve for sektionen" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Vælg en gruppe" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Vælg en kø" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Vælg en kø til din nye sag" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Vælg en sektion" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Vælg en bruger" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Vælg en artikel fra %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Vælg en artikel som skal inkluderes" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Vælg et andet sprog" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Vælg boks" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Vælg brugerdefinerede feltet til alle køer" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Vælg ekstrafelter for alle brugergrupper" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Vælg ekstrafelter for alle brugere" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Vælg ekstrafelter for sager i alle køer" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Vælg ekstrafelter for transaktioner pÃ¥ sager i alle køer" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Vælg dato" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Vælg datotid" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Vælg flere datoer" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "Vælg flere datotider" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Vælg flere værdier" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Vælg en værdi" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Vælg køer, der skal vises pÃ¥ siden \"Request Tracker - hurtigt overblik\"" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Vælg emner for denne artikel" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Vælg op til %1 datoer" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "Vælg op til %1 datotider" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Vælg op til %1 værdier" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Valgte ekstrafelter" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Valgte køer" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Den valgte nøgle har enten ingen troværdighed eller den eksisterer ikke længere." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Valgte objekter" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Det udvalgte er ændret. Gem dine ændringer." #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Send mail til ejer og alle rekvirenter" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Send mail til ejer og alle rekvirenter i form af en kommentar" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Send e-mail til rekvirenter og Cc'ere" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Send e-mail til rekvirent og Cc'ere som en kommentar" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Sender en besked til rekvirenterne" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Sender e-mail til synligt angivne Cc'ere og Bcc'ere" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Sender e-mail til Cc'erne" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Sender e-mail to Cc'ere som en kommentar" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Sender e-mail til de administrative Cc'ere" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Sender e-mail til de administrative Cc'ere som en kommentar" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Sender e-mail til ejeren" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Adskil flere poster med mellemrum." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "Angiv privat nøgle" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Indstillinger" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Korte brugernavne" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Skal RT sende dig post for de sagsopdateringer du foretager?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Vis" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Vis fane for Godkendelse" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Vis kolonner" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Vis resultater" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Vis egenskaber for sager pÃ¥ %1 niveau" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Vis al citeret tekst" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Vis godkendte sager" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Vis ogsÃ¥" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Vis hovederkortfattet" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Vis afviste sager" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Vis fuld længde pÃ¥ hoveder" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Vis globale skabeloner" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Vis henvisningsbeskrivelser" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "Vis ikke sager fra Forespørger" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Vis den ældste historie først" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Vis afventende sager" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Vis citeret tekst" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Vis sager, som afventer andre godkendelser" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Vis forespørgers 10 højest prioriterede sager" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Vis sagshistorik" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Makulator" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "Shredder kræver et katalog hvor dump kan skrives til. Sørg venligst for at kataloget %1 eksisterer og at din internetserver kan skrives til den." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Sidebjælke" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Underskriv" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Underskriv som standard" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Tilmeld som sagsrekvirent, sag eller kø-Cc" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Tilmeld som sag eller kø-AdminCc" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "Sign%1%2 med brug af %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Signatur" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Simpel" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Enkel søgning" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Enkelt" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Navn pÃ¥ stedet" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Størrelse" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Spring menu over" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Springer over bruger som er slÃ¥et fra" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Lille" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Nogle browsere indlæser kun indhold fra det samme domæne som din RT-server." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Noget er galt. Kontakt systemadministrator" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sorter" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Sortering" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Kilde" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Specificer om dette er en daglig eller ugentlig kørsel." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Regneark" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Trin" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Sæt i stÃ¥" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Start søgeordet med navnet pÃ¥ et understøttet felt efterfulgt af et kolon, som i %1 og %2, for at angive søgetypen eksplicit." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Startet" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "StartetRelativt" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Starter" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "StarterRelativt" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Stat" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "Status '%1' er ikke en gyldig status for sager i denne kø." #: etc/initialdata:449 msgid "Status Change" msgstr "Statusændring" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Status ændret fra %1 til %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Ændringer i status" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Stjæl" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Stjæl sager" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Trin %1 af %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "StjÃ¥let fra %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Stil" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Emne" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Emne mærke" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Emne ændret til %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "EmneMærke" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Indsend" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Abonner" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Abonner pÃ¥ instrumentpanel %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Abonner pÃ¥ instrumentpaneler" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Abonner pÃ¥ instrumentpanel %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Abonnement" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Abonnement kunne ikke oprettes: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Data dekrypteret uden problemer" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Data krypteret uden problemer" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Opsummering" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Søn" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Søndag" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Suspenderet" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Systemkonfiguration" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Systemforvalg" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Systemfejl" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Systemfejl: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Systemværktøjer" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Systemfejl" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Systemfejl. Rettighed ikke tildelt." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "SystemRolleGruppe til internt brug" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Tag" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Tag sager" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Taget" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Fortæl os lidt om hvordan vi finder den database RT kommer til at bruge" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Skabelon" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Skabelon %1 slettet" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Skabelon '%1' kunne ikke findes" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "Skabelon kompilerer" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "Skabelon indeholder ikke Perl-kode" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Skabelonen er tom" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Skabelonen er en obligatorisk parameter" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Skabelon fortolket" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Skabelonfortolkningsfejl" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "Fejl under fortolkning af skabelon: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Skabeloner" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Skabeloner for kø %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Tekst" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Indholdet af tekst filen bliver ikke vist fordi dette er slÃ¥et fra i præferencer." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Det er allerede den nuværende værdi" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Det er ikke værdi for dette ekstrafelt" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Denne sag har uløste afhængigheder" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Brugeren ejer allerede den sag" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Brugeren eksisterer ikke" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Brugeren er allerede privilegeret" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Brugeren er allerede uprivilegeret" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Brugeren er nu privilegeret" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Brugeren er nu uprivilegeret" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Den bruger mÃ¥ ikke eje sager i den kø" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Dette er ikke et numerisk ID" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Stamdata" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "En sags CC" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "Klassen for artiklen som identificeres af %1 anvendes ikke pÃ¥ nuværende kø" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Database administratorens database password" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "En sags administrative CC" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Din database servers domæne navn (F.eks. 'database.eksempel.dk')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "Den følgende kommando vil finde alle aktive sager i køen 'generelt' og angive deres prioritet til 99, hvis deres tidsfrist er overskredet:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Følgende søgninger er blevet slettet og hver enkelt vil blive fjernet fra instrumentpanelet næste gang det opdateres." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Følgende søgninger er muligvis ikke synlige, for alle brugere der kan se dette instrumentpanel." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "Nøglen er slÃ¥et fra" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "Nøglen er blevet trukket tilbage" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "Nøglen er udløbet" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "Nøglen har fuld troværdighed" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "Nøglen har ultimativ troværdighed" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Den nye værdi er sat." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Sagens ejer" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Kunne ikke finde den ønskede side" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Sagens rekvirent" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "De valgte indstillinger er gemt i %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Systemet er ikek i stand til at signere udgÃ¥ende email beskeder. Dette indikere normalt at løsenet ikke blev sat korrekt eller at GPG Agent er nede. Du bedes venligst informere din system administrator om dette øjeblikkeligt. De problemramte adresser er:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Adskillige af de tilgængelige nøgler er passende at bruge til kryptering." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Der er ulæste beskeder i denne sag." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Denne nøgle har marginal troværdighed." #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "Der er mere end én gruppe med navnet '%1'. Dette kan forÃ¥rsage inkonsistens i dele af administrationsgrænsefladen, og derfor anbefales det at du omdøber grupperne som er i konflikt." #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Der er ingen tilgængelige nøgler som er passende at bruge til kryptering." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Der er en enkelt passende nøgle, men dens troværdighedsniveau er ikke defineret." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Disse konfigurationsmuligheder dækker nogle af de grundlæggende informationer RT behøver for at fungere. Vi skal kende navnet pÃ¥ din RT installation og domænenavnet hvor RT bor. Du skal ogsÃ¥ definere et løsen til din administrative bruger." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Dette tilpassede felt kan ikke have en liste med værdier" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "Denne klasse gælder ikke pÃ¥ det objekt." #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "Dette tilpassede felt har ingen gengivelsestype" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Denne funktion er kun tilgængelig for systemadministratorer" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Denne egenskab er kun tilgængelig for systemadministratorer." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "Denne server-proces har ikke registreret nogle SQL-forespørgsler." #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Dette værktøj tillader brugeren at benytte vilkÃ¥rlige Perl-moduler inde fra RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Denne transaktion har tilsyneladende ikke noget indhold" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "Denne brugers %1 højest prioriterede %2 sager" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "Tor" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "Torsdag" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Sag" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Sag #%1 Jumbo-opdatering: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Forholdsdiagram for sag #%1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Sag #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Sag %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Sag %1 oprettet i kø '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Sag %1 : %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Sagshistorik # %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Sag løst" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Søgning efter sager" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Sagstransaktioner" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Sag og transaktion" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Sammensætning af sag" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Sagsindhold" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Sagsindholdstype" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Sag kunne ikke oprettes pÃ¥ grund af en intern fejl" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Sagen kunne ikke indlæses" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Sagsvisning" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Sagens metadata" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Satsstatus ændret" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Sagsopdatering" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "SagSQL søgemodul" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Sager" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Sager %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Sager %1 af %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Sager jeg ejer" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Sager som afhænger af denne godkendelse:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "AnslÃ¥et tid" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Resterende tid" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tid brugt" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tid for sidevisning" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "EstimeretTidsforbrug" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "TidTilbage" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "TidBrugt" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Tidszone" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Titel" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Til" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Ved forespørgsel om support, undervisning, specialudvikling eller licenser, kontakt venligst %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "Vis/skjul %quant(%1,forespørgsel,forespørgsler)" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "Vis/skjul staksporing" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Meddelt" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "FortalteFamilie" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Værktøjer" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Emne-navn" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "Emne-medlemskab tilføjet" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "Emne-medlemskab fjernet" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Emne ikke fundet" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Emner" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "Transaktion" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transaktion %1 tømt" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transaktion oprettet" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Transaktions-ekstrafelter" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transaktion->Kunne ikke oprette, fordi ikke angav en objekttype og et ID" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "TransaktionsDato" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Transaktioner kan ikke ændres" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Troværdighed" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Tir" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Tirsdag" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Indtast a: før artikelnumre og t: før sagsnumre." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Type ændret fra '%1' til '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "Ikke i stand til at tilføje emne-medlemskab" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "Ikke i stand til at slette emne-medlemskab i %1" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Var ikke i stand til at afgøre elementets type eller id" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Kunne ikke indlæse artikel" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "Kunne ikke angive BrugerCSS: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "Kunne ikke angive BrugerLogo: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "Kunne ikke angive id for privatliv: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "Kunne ikke angive objekt eller id for privatliv: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "Kunne ikke angive objekt for privatliv: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Fjern markering fra bokse for at deaktivere pÃ¥mindelser til de viste modtagere for denne transaktion alene; vedvarende tilbageholdelse hÃ¥ndteres pÃ¥ siden med Personer." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Fortryd slet" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Unix log-ind" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Ukendt (ingen troværdighedsværdi tildelt)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Ukendt (denne værdi er ny for systemet)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Ukendt IndholdsKodning %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Ukendt felt: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "Medmindre du angiver en specifik status, sÃ¥ er det kun sager status som aktiv (%1) som gennemsøges." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Fjern begrænsninger" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Ubegrænset" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Unavngivet instrumentpanel" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Unavngiven søgning" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Sager uden ejer" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Uprivilegeret" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Ikke-valgte ekstrafelter" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Køer som ikke er valgt" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Ikke-valgte objekter" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Fjern privat nøgle" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Ikke taget" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Opdater" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Opdatér diagram" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Opdater graf" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Opdater sag" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Opdater type" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Opdater formattering og udfør søgning" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Opdater flere sager" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Opdatering ikke registreret." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Opdater sag" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Opdater sag #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Opdater sag #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Opdateringstype var hverken korrespondance eller kommentar" #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "OpdaterStatus" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Opdateret" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Opdaterede den gemte søgning ved navn \"%1\"" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Overfør" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Overfør et nyt logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Overfør flere filer" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Overfør flere billeder" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Overfør en fil" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Overfør et billede" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Overfør op til %1 filer" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Overfør op til %1 billeder" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Anvendelse:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "Brug et layout med to kolonner til oprettelse og opdatering af formularer?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Brug automatisk fuldførelse nÃ¥r ejere skal findes?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Brug standard (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Brug andre RT-administrative værktøjer" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Brug systemstandard (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Brug menuerne der rulles ned til at vælge hvilke sagsopdateringer du ønsker at udtrække til en ny artikel." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Bruger" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Bruger (oprettet - udløber)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Brugerdefineret" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Brugerrettigheder" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Bruger bad om en ukendt opdateringstype for ekstrafelt %1 til %2 objekt #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Bruger kunne ikke oprettes: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Bruger oprettet" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Bruger deaktiveret" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Bruger aktiveret" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Brugeren har en tom email adresse" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Bruger indlæst" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Brugerdefinerede grupper" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Brugernavn" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Format pÃ¥ brugernavn" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Brugere" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Brugere som opfylder søgekriterier" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Bruger transaktion #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Gyldig søgning" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Validering" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Værdi" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Værdier" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Variabel" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Vis Scrip-skabeloner" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Vis Scrips" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Vis tilpassede feltværdier" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Vis tilpassede felter" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Vis eksakte udgÃ¥gende e-post-beskeder og deres modtagere" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Vis gruppe" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Vis instrumentpaneler for gruppe" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Vis personlige instrumentpaneler" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Vis kø" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Vis gemte søgninger" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Vis instrumentpaneler for system" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Vis privat kommentar til sag" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Vis sagssammendrag" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "ADVARSEL: Gemmer søgning til privatliv pÃ¥ brugerniveau" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Højden pÃ¥ HDSEHDF skriveværktøjet" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "HDSEHDF skriveværktøj" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Advarsel! Beskeden er IKKE signeret!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Observatør" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "ObservatørGruppe" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Observatører" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Den angivne database kunne findes og der er oprettet forbindelse som database administrator. Du kan klikke pÃ¥ 'Grundlæggende tilpasning' for at fortsætte med at tilpasse RT." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Vi kan i øjeblikket ikke gengive som en Liste nÃ¥r kategorier baseres pÃ¥ et andet tilpasset felt. Brug venligst en anden gengivelsestype." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Vi har brug for at kende navnet pÃ¥ databasen, som RT vil anvende og hvor den findes. Vi har ogsÃ¥ brug for at kende brugernavn og adgangskode, pÃ¥ den bruger som RT skal bruge. RT kan oprette databasen og brugeren for dig, hvilket er hvorfor vi spørger efter brugernavn og adgangskode for en bruger med DBA-privilegier. Under trin 6 i installationsprocessen vil vi anvende denne information til, at oprette og klargøre RTs database." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Ons" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Onsdag" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Ugentlig" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Ugentligt sammendrag" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Velkommen til RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Hvad lavede jeg i dag" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Hvad er RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "NÃ¥r RT ikke kan hÃ¥ndtere en email, hvor skal den da sendes hen?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "NÃ¥r RT sender e-post, sætter den hovederne med Fra: og Svar-til: sÃ¥ledes at brugere kan føje til konversationen, blot ved at trykke Besvar i deres postklient. Den bruger forskellige adresser for besvarelser og kommentarer. Disse kan ændres for hver af dine køer. Disse adresser vil skulle konfigureres for at gøre brug af programmet rt-mailgate." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "NÃ¥r en sag oprettes" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "NÃ¥r en godkendelsessag oprettes, giv besked til ejeren og AdminCc om det punkt, der afventer deres godkendelse" #: etc/initialdata:137 msgid "When anything happens" msgstr "NÃ¥r der sker noget som helst" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "NÃ¥r du klikker pÃ¥ 'Kontrollér adgang til database', sÃ¥ kan der opstÃ¥ en smule forsinkelse mens RT forsøger at tilslutte til din database" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "NÃ¥r en sag bliver lukket" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "NÃ¥r som helst en sag videresendes" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "NÃ¥r en sag bliver afvist" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Altid nÃ¥r en sag genÃ¥bnes" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "NÃ¥r en sag er blevet løst" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "NÃ¥r som helst en sag eller transaktion videresendes" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "NÃ¥r en sags ejer ændres" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "NÃ¥r en sags prioritet ændres" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "NÃ¥r en sags kø ændres" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "NÃ¥r en sags status ændres" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "NÃ¥r som helst en transaktion videresendes" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "NÃ¥r en brugerdefineret betingelse forekommer" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "NÃ¥r kommentarer kommer ind" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "NÃ¥r korrespondance kommer ind" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Angiv hvor et sendmail binært-kompatibelt program kan findes." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Ryd helt ud" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Arbejde" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Arbejdstelefon" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Arbejdet" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Ja" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Du kan redigere dette instrumentpanel og dine abonnementer for det i RT." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Du ejer allerede denne sag" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Du kan hoppe videre til den første ulæste besked eller hoppe videre til den første ulæste besked samtidig med at du markerer alle beskeder som læste." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Du kan ogsÃ¥ redigere selve den foruddefinerede søgning" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Du kan indsætte sagsindhold i enhver friforms-, tekst- eller wiki-felt." #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Du kan ikke angive adgangskode." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Du kan kun videretildele sager, som du ejer, eller som ikke har en ejer" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Du kan kun tage sager uden ejer" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Du kan søge efter ethvert ord i den fulde sagshistorik ved at taste %1ord." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Du kan ikke ændre status fra \"%1\" til \"%2\"." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Du har ikke SuperBruger rettigheder." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Du er blevet logget ud af RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Du har ikke tilladelse til at oprette sager i den kø." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Du kan indsætte henvisninger til artikler med \"a:###\", hvor ### angiver nummeret pÃ¥ artiklen." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Du skal indtaste en administrativ adgangskode" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "Du skal angive ErklæringsLog til sand for at aktivere historikside for forespørgsler." #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Du bør nu blive ført direkte til en side til logind. Du vil være i stand til at logge ind med brugernavn for %1 og adgangskoden du tidligere angav." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Du bør vælge den database du eller din lokale database administrator er mest fortrolig med." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Du ser denne skærm, fordi du startede RT op uden en fungerende database. Det mest sandsynlige er, at dette er første gang du kører RT. Hvis du klikker \"%1\" nedenfor, sÃ¥ vil RT føre dig gennem opsætningen af din RT-server og -database." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Du er velkommen til at logge ind igen" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Dit kodeord er ikke angivet." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "Dit system understøtter automatiske farve-forslag for: %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Dit brugernavn eller din adgangskode er forkert." #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Postnummer" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Ned]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Op]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ingen]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "et tilpasset felt" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "aktiv" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "Efter" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "og før" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "og ikke" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "søjle" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "Før" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "indhold" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "bund til top" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "afkryds denne boks for at benytte denne klasse globalt pÃ¥ alle køer." #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "afkryds denne boks for at anvende dette Tilpassede felt pÃ¥ alle objekter." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "afkryds denne boks for at fjerne denne Klasse globalt og blive i stand til at vælge specifikke Køer." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "afkryds denne boks for at fjerne dette Tilpassede felt fra alle objekter og blive i stand til at vælge specifikke objekter." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "afkryds for at tilføje" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "klik for at markere/afmarkere alle elementer pÃ¥ en gang" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "grundkonfig" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "dagligt kl. %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "slettet" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "stemmer ikke" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "varighed" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "lig med" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "fejl: kan ikke flytte ned" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "fejl: kan ikke flytte til venstre" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "fejl: kan ikke flytte op" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "fejl: intet at slette" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "fejl: intet at flytte" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "fejl: intet at skifte" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "hver" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "afviklede udvidelsesmodul problemfrit" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "fuld" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "større end" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "gruppe" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "gruppe '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "ID" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "i klasse %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "inaktiv" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "inkluderer %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "indeks" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "er" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "er ikke" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "nøgle deaktiveret" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "nøgle udløbet" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "nøgle tilbagekaldt" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "venstre til højre" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "mindre end" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "stemmer overens" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "maksimal dybde" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minutter" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "mÃ¥nedligt" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "mÃ¥nedligt (dag nummer %1) kl. %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "aldrig" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "ny" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "nej" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "ingen" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "ikke lig med" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "ingenting" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "elementer blev fjernet uden problemer" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "Ved" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "pÃ¥ dag" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "en" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "Ã¥ben" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "Ã¥ben/luk" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "anden..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "tærte" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "udvidelsesmodul returnerede en tom liste" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "kø %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "afvist" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "kræver kørende rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "løst" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "højre til venstre" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "se elementlisten nedenfor" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "konfig. af sted" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "sat i bero" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "erklæring" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "oversigtsrækker" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "systemgruppe '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "den kaldende komponent angav ikke hvorfor" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "standard-adresserne som vil blive vist i hoveder for Fra: og Svar-til: for kommentar-post." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "standard adresserne der vil blive vist i From: og Reply-To: hovederne i en korrespondance mail." #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "sag #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "top til bund" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "ultimativ" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "ubeskrevet gruppe %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "ubegrænset" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "bruger" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "bruger %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "brugernavn" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "ugentlig" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "ugentligt (pÃ¥ en %1) kl. %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "uger" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "" #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "hvilken port din webserver vil lytte pÃ¥, f.eks. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "med brevhoved" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "ja" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/share/po/hr.po0000664000175000017500000126642613131430353014544 0ustar vagrantvagrant# Croatian translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2016-09-12 09:32+0000\n" "Last-Translator: Valentin Vidic \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3. %2 %7, %4:%5:%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 dodano" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 %2 promijenjeno u %3" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 obrisano" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 obrisao." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "%1 %2 ne postoji" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "%1 %2 je neaktivan" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 spremljeno." #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 %2 ažurirano" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1 %2 s predloÅ¡kom %3" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) od %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (nepromijenjeno)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (sa ploÄe %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 - Ažuriraj postavku logiranja na ekran" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 - Argument za prosljeÄ‘ivanje na %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 - Izmjene statusa se prikazuju na standardnom izlazu" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 - Zadajte želite li koristiti 'first', 'last' ili 'all' transakcije" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 - Zadajte naziv ili identifikator predložaka koje želite koristiti" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 - Zadajte zarezom odijeljenu listu tipova transakcija koje želite koristiti" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 - Navedi koji će se modul uvjetovanja koristiti" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 - Navedi koji će se modul pretraživanja koristiti" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "" #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "%1 inaÄica" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "%1 dodano kao vrijednost za %2" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "prije %1" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 već postoji i ima RT tablice, ali ne sadrži RT metapodatke. Kasniji korak 'Inicijalizacija baze podataka' može dodati metapodatke u postojeću bazu. Ako je to prihvatljivo, kliknite dolje na 'Osnovno podeÅ¡avanje' za nastavak RT podeÅ¡avanja." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 već postoji, ali ne sadrži RT tablice ili metapodatke. Kasniji korak 'Inicijalizacija baze podataka' može dodati tablice i metapodatke u postojeću bazu. Ako je to prihvatljivo, kliknite dolje na 'Osnovno podeÅ¡avanje' za nastavak RT podeÅ¡avanja." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "%1 već ima pravo %2 na %3 %4" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 nije pronaÄ‘en u datoteci iako izgleda da je lokalni objekt" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 izgleda u potpunosti inicijalizirana. Neće biti potrebno dodavati tablice i unositi metapodatke, no ako želite možete nastaviti podeÅ¡avati RT klikom na 'Osnovno podeÅ¡avanje' dolje." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 od %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "%1 ne može biti grupa" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 promijenjeno iz %2 u %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 promijenjen sa '%2' na '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1 kopija" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1 osnovna konfiguracija" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 nije moguće postaviti na %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 napravljen" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 obrisan" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 deaktivirano" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 ne postoji." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 aktivirano" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 zahtjeva najviÅ¡eg prioriteta koje posjedujem" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 je alat za obradu zahtjeva preko vanjskog radnog alata kao Å¡to je cron" #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 je alat namijenjen cron pokretanju koji Å¡alje sve odgoÄ‘ene RT obavijesti u obliku sažetka za korisnika." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "%1 je već postavljen na %2" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 je adresa na koju RT prima poruke elektroniÄke poÅ¡te. Dodavanje te adrese kao '%2' bi stvorilo petlju kod dostave poruka" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "%1 viÅ¡e nije vrijednost za vlastito polje %2" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "%1 nije %2" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 nije valjan životni ciklus" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 zadnji nadograÄ‘eni Älanci" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 najnoviji Älanci" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 najnovijih zahtjeva bez rjeÅ¡avatelja" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1 objekti" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1 konfiguracija sjediÅ¡ta" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "%1 osvježen: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "%1 osvježen: Nema promjena" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 osvježen" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1's %2 objekti" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1's %2's %3 objekti" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "Trenutna lozinka korisnika %1" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1 kontrolne ploÄe" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1's pohranjene pretrage" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: privitak nije naveden" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Novi zahtjev u%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "%quant(%1,Älanak)" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,sat)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' nije ispravno ime." #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "'%1' nije valjana klasa" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' nije ispravan identifikator klase" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(OznaÄiti za brisanje podsjetnika)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(OznaÄiti za brisanje)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(OznaÄite kućice za brisanje)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(Unesite identifikatore zahtjeva ili URL-ove odvojene razmakom)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(Ako nije zadano, koristi se %1)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(Nema vlastitih polja)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(Nema Älanova)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(Nema natuknica)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(Nema predložaka)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Å alje kopiju ovog ažuriranja na zarezom odijeljenu listu administrativnih adresa elektroniÄke poÅ¡te. Ove adrese će primati i buduća ažuriranja.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Å alje kopiju ovog ažuriranja na zarezom odijeljenu listu adresa elektroniÄke poÅ¡te. Ove adrese će primati i buduća ažuriranja.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Koristite ova polja kad odabirete \"user defined\" za uvjet ili radnju)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(sve)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(nema sažetka)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(nema imena)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(nema javnog kljuÄa!)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(nema vrijednosti)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(nema vrijednosti)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(Äeka %quant(%1,drugi zahtjev))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(Äeka odobrenje)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(potrebno)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(povjerenje: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(samo sadržaj)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(nepovjerljiv!)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "--template-id je nepodržani parametar i ne može se koristiti zajedno sa --template" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "--transaction parametar može se biti samo 'first', 'last' ili 'all'" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "Predložak s tim imenom već postoji" #: etc/initialdata:258 msgid "A blank template" msgstr "Prazan predložak" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Lozinka nije postavljenja, pa se korisnik neće moći prijaviti." #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "ACE nije pronaÄ‘eno" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "ACEs se mogu samo praviti i brisati." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "I" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "O meni" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Kontrola pristupa" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Radnja" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Radnja '%1' nije pronaÄ‘ena" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Radnja izvrÅ¡ena." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Radnje je obavezan argument" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Radnja u pripremi..." #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Akcije" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Aktivni zahtjevi" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Aktivni zahtjevi korisnika %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Dodati %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Dodati AdminCC" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Dodaj zabiljeÅ¡ku" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Dodati Cc" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Dodati stupce" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Dodati kriterij" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Dodati viÅ¡e datoteka" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Dodati prijavitelja" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Dodati vrijednost" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Dodaj komentare ili odgovore odabranim zahtjevima" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Dodaj grupu" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Dodaj ovdje" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Dodati Älanove" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Dodati nove promatraÄe" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Dodaj ovlasti za ovaj %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Dodaj zadane kriterije" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Dodaj zadane kriterije i pretraži" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Dodaj korisnika" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Dodaj vrijednosti" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Dodaj, ažuriraj i obriÅ¡i vrijednosti vlastitog polja za objekte" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "Dodano" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adresa" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Adresa 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adresa 1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adresa 2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "Administrator" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "Admin CC" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Admin komentar" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "HTML komentar administratora" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Admin korespondencija" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "HTML korespondencija administratora" #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Admin kategorije" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Admin/Globalne postavke" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "AdminCcovi" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Lozinka administratora" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Napredno" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Napredna pretraga" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Nakon prijave bit ćete preusmjereni na vaÅ¡e originalno odrediÅ¡te:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Agregator" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Odobrena sve dozvole" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Svi Älanci u ovoj klasi trebaju biti prikazanu u padajućem izborniku stranice odgovora na zahtjev" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Sve klase" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Sve kontrolne ploÄe" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Sve kategorije" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Svi zahtjevi" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "

    Svi iCal izvori sadrže tajnu znaÄku pomoću koje se autorizirate. Ako se URL nekog od vaÅ¡ih iCal izvora javno objavi, klikom na tipku dolje možete napraviti novu tajnu znaÄku i time deaktivirati sve postojeće iCal izvore." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Sve kategorije koje zadovoljavaju kriterij pretrage" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Svi zahtjevi" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Sve teme" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Dozvoli dodavanje spremljenih pretraga" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Dozvoli uÄitavanje spremljenih pretraga" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Dozvoli pisanje Perl koda u predloÅ¡cima, natuknicama, itd." #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Već kriptirano" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "DoÅ¡lo je do greÅ¡ke" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "I/ili" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "GodiÅ¡nje" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Bilo koje polje" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "RijeÄi koje RT nije prepoznao pretražuju se u naslovima zahtjeva." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Odnosi se" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Odnosi se na sve objekte" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Primijeniti" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Primjeni na sve" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "Primijeni odabrane natuknice" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Primijeniti promjene" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Odobrenja" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Odobrenje #%1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Odobrenje #%1: Nema zabiljeÅ¡ki zbog greÅ¡ke sustava" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Odobrenje #%1: Zabilježene napomene" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Odobrenje proÅ¡lo" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Odobrenje spremno za rjeÅ¡avatelja" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Odobrenje odbijeno" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Odobriti" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "Tra" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "ÄŒlanak #%1" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "ÄŒlanak #%1 nije pronaÄ‘en" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "ÄŒlanak #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "ÄŒlanak %1 napravljen" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Administracija Älanaka" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "ÄŒlanak nije pronaÄ‘en" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "ÄŒlanci" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "ÄŒlanci u %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "ÄŒlanci koji odgovaraju %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "ÄŒlanci bez teme" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "Rastuće" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Pridruži i obriÅ¡i vlastita polja kategoriji" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Priložiti" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Priložiti datoteku" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Priložena datoteka" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Prilog" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Datoteka '%1' se nije mogla uÄitati" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Prilog napravljen" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Ime datoteke u prilogu" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Prilozi" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Kriptiranje priloga je iskljuÄeno" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Atribut obrisan" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "Kol" #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Automatski prijedlozi boja teme nisu dostupni za vaÅ¡u sliku. Moguće da format slike koju ste poslali nije podržan. Podržani formati su: %1. Možete ponovo prevesti libgd i GD.pm tako da podržavaju i druge formate slike." #: etc/initialdata:261 msgid "Autoreply" msgstr "Automatski odgovor" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Automatski odgovor prijaviteljima" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "Automatski odgovor u HTMLu" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Raspoloživo" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Nazad" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Slaba privatnost za atribut: %1" #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Osnovno" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "Grupno" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "Grupno (iskljuÄeno u postavkama)" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "Grupne natuknice" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "BCC" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Prazno" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Tijelo" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Podebljano" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "ZabiljeÅ¡ka" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Poveznica na ovu pretragu" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Zabilježeni zahtjevi" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Zabilježeni zahtjevi" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Pregled po temi" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Pregled SQL upita napravljenih u ovom procesu" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Skupno ažuriranje" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "" #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "VP" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "Vlasita polja mogu se pretraživati sliÄnom sintaksom koristeći %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Spremljena pretraga \"%1\" ne može se uÄitati" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Sistemski korisnici se ne mogu promijeniti" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Vrijednost za vlastito polje se ne može dodati bez imena" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Nije pronaÄ‘ena spremljena pretraga" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Zahtjev se ne može povezati na sebe!" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Spremanje %1 nije uspjelo" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Ne može se spremiti ova pretraga" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Nije moguće dodati vezu na obiÄan broj" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Ne može se napraviti zahtjev u deaktiviranoj kategoriji." #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategorije se temelje na" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategorija" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "CC" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "Ccovi" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Promijeni" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Promijeni status zahtjeva odobrenja na otvoreno" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Promijeniti lozinku" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "Promjena kategorije nije implementirana" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Graf" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Odabrati sve" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Provjeri dostupnost baze podataka" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Provjeri prijavu na bazu podataka" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "OznaÄiti za brisanje" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Djeca" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Odaberite tip baze podataka" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Odabir tema za %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Grad" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Klasa" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Ime klase" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Klasu nije moguće dodati: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Identifikator klase" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Klasa je već primijenjena globalno" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Klasa je već primijenjena na %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Klase" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "PoniÅ¡ti" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Isprazniti sve" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Kliknite dolje na \"ZavrÅ¡etak instalacije\" da bi zavrÅ¡ili s instalacijom." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Kliknite na \"Inicijalizacija baze\" da bi napravili RT bazu i dodali poÄetne metapodatke. To može potrajati neko vrijeme" #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "Kliknite za odabir boje" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Zatvoreno" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Zatvoreni zahtjevi" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Slobodan unos: Odaberite ili unesite viÅ¡e vrijednosti" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Slobodan unos: Odaberite ili unesite jednu vrijednost" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Slobodan unos: Odaberite ili unesite do %1 vrijednosti" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Komentiraj" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Adresa komentara" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Adresa komentara" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Komentiraj zahtjeve" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Komentari" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Komentar (ne Å¡alje se prijaviteljima)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Komentar o ovom korisniku" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "Komentar dodan" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Predaja odrezana" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Uvjet" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Uvjet '%1' nije pronaÄ‘en" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Uvjet je obavezan parametar" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Uvjet se podudara s..." #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Uvjet, radnja ili predložak" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Datoteka s postavkama %1 je zakljuÄana" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Postavke kategorije %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Veza uspostavljena" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "Kontaktirajte vaÅ¡eg RT administratora emailom na %1%2%3." #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "Kontaktirajte vaÅ¡eg RT administratora." #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Sadržaj" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Vrijednost nije ispravna IP adresa" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Vrijednost nije ispravan raspon IP adresa" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Tip sadržaja" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "Tip sadržaja" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Adresa za korespondenciju" #: etc/initialdata:393 msgid "Correspondence" msgstr "Korespondencija" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Dodana korespondencija" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "Korespondencija u HTMLu" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Nije se mogla dodati nova vrijednost vlastitog polja: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "RjeÅ¡avatelj nije mogao biti promijenjen: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Vlastito polje: %1 nije moglo biti napravljeno" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Ne može se napraviti grupa" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Nije uspjelo dodavanje pretrage: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Zahtjev nije mogao biti napravljen. Kategorija nije odreÄ‘ena" #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Korisnik nije mogao biti napravljen" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Nije uspjelo brisanje pretrage %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "Grupa '%1' nije pronaÄ‘ena" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "Nije moguće pronaći ili dodati korisnika '%1'" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Atribut %1 se nije mogao uÄitati" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Nije uspjelo uÄitavanje klase %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Vlastito polje %1 nije se moglo uÄitati" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Grupa se nije mogla uÄitati" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Objekt za %1 se nije mogao uÄitati" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "UÄitavanje natuknice #%1 nije uspjelo" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "UÄitavanje korisnika '%1' nije uspjelo" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Informacije o korisniku se nisu mogle dodati" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Dodavanje priloga nije uspjelo" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "ÄŒlan se nije mogao dodati grupi" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "PrevoÄ‘enje %1 koda '%2' nije uspjelo: %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "PrevoÄ‘enje koda predloÅ¡ka '%1' nije uspjelo: %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Transakcija: %1 se nije mogla napraviti" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Zapis se nije mogao napraviti: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Kontrolna ploÄa %1 se nije mogla obrisati: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Red nije pronaÄ‘en" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Prikladna transakcija nije pronaÄ‘ena, preskaÄem" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Taj glavni parametar nije pronaÄ‘en" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Ova vrijednost nije pronaÄ‘ena" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Klasa %1 se nije mogla uÄitati" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Vlastito polje #%1 se nije moglo uÄitati" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Vlastito polje #%1 se nije moglo uÄitati" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Vlastito polje %1 nije se moglo uÄitati" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Kopija zahtjeva #%1 se nije mogla uÄitati." #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Kontrolna ploÄa %1 se nije mogla uÄitati: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Grupa #%1 se nije mogla uÄitati" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Grupa %1 se nije mogla uÄitati" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Link se nije mogao uÄitati" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Objekt %1 se nije mogao uÄitati" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Korisnik se nije mogao uÄitati ili dodati: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Kategorija se nije mogla uÄitati" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Kategorija #%1 se nije mogla uÄitati" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Kategorija %1 se nije mogla uÄitati" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Kategorija '%1' se nije mogla uÄitati" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Natuknica #%1 se nije mogla uÄitati" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Predložak #%1 se nije mogao uÄitati" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "Zadane ovlasti se nisu mogle uÄitati" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Zahtjev '%1' se nije mogao uÄitati" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Nije uspjelo uÄitavanje Älanstva tema prilikom pokuÅ¡aja brisanja" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Transakcija #%1 se nije mogla uÄitati" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Korisnik se nije mogao uÄitati" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Korisnik #%1 se nije mogao uÄitati" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Korisnik #%1 ili '%2' se nije mogao uÄitati" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Korisnik '%1' se nije mogao uÄitati" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Zamjena sadržaja sa dekriptiranim podacima nije uspjela: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Zamjena sadržaja sa kriptiranim podacima nije uspjela: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Nije moguće prevesti osnovu '%1' u URI." #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Nije moguće prevesti vezu '%1' u URI." #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Postavljanje promatraÄa %1 nije moguće: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Privatni kljuÄ nije se mogao postaviti" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Privatni kljuÄ nije se mogao iskljuÄiti" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Zemlja" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Napravi" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Napravi zahtjeve" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Napravi klasu" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Napravi vlastito polje" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Napravi vlastito polje za kategoriju %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Napravi novi Älanak" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Napravi novi Älanak u" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Napravi novu kontrolnu ploÄu" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Napravi novu grupu" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Napravi novi predložak za kategoriju %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Napravi novog korisnika" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Napravi kategoriju" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Napravi predložak" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Napravi novi zahtjev" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Napravi Älanak" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Napravi Älanak u klasi..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Dodavanje Älanaka u ovu klasu" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Napravi grupne kontrolne ploÄe" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Napravi nove zahtjeve temeljene na ovoj natuknici" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Napravi privatnu kontrolnu ploÄu" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Napravi sistemsku kontrolnu ploÄu" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "PoÅ¡alji zahtjev" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Napravi zahtjeve" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Praviti, mijenjati i brisati zapise u listi kontrole pristupa" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Praviti, mijenjati i brisati vlastita polja" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Praviti, mijenjati i brisati vrijednosti vlastitih polja" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Praviti, mijenjati i brisati kategorije" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Praviti, mijenjati i brisati spremljene pretrage" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Praviti, mijenjati i brisati korisnike" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Napravljeno" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Napravio" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Napravi vlastito polje %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Napravljeno od" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Dodana pretraga %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "Napravio" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "Napravljeno (relativno)" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Prijavitelj" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kriptografija" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Trenutni linkovi" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Trenutna pretraga" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Trenutni Älanovi" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Trenutna pretraga" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Trenutni promatraÄi" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Vlastita polja" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Vlastita polja za %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Vlastita polja za kategoriju %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Definirani kod pripreme" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Definirani uvjet" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Vlastito polje #%1 nije primijenjeno na ovaj objekt" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Definirano polje %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Vlastito polje %1 ne odnosi se na ovaj objekt" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Definirano polje %1 ima vrijednost." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Definirano polje %1 nema vrijednost." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Definirano polje %1 nije pronaÄ‘eno" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Vrijednost %1 vlastitog polja %2 nije moglo biti pronaÄ‘eno" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Vrijednost vlastitog polja se nije mogla obrisati" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Vrijednost vlastitog polja obrisana" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "DefiniranoPolje" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "Vrijednost vlastitog polja" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Izmijeni" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Osnovno podeÅ¡avanje" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "PodeÅ¡avanje adresa elektroniÄke poÅ¡te" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "PodeÅ¡avanje postavki elektroniÄke poÅ¡te" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "PodeÅ¡avanje izgleda vaÅ¡eg RT-a" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "Lozinka administratora baze podataka" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "KorisniÄko ime administratora baze podataka" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Dnevno" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Dnevni sažetak" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Kontrolna ploÄa" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Kontrolnu ploÄu nije moguće napraviti: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Kontrolnu ploÄu nije moguće ažurirati: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Kontrolna ploÄa ažurirana" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Kontrolne ploÄe" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Poslužitelj baze podataka" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Ime baze podataka" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Lozinka baze podataka za RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "PrikljuÄak baze podataka" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Vrsta baze podataka" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "KorisniÄko ime baze podataka za RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Format datuma" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Datumi" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "Pro" #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Dekriptiraj" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Standardna kategorija" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Standardno: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Standard: %1/%2 iz \"%3\" u \"%4\" promijenjen." #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Standardni format" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "ObriÅ¡i" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Obrisati predložak" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Brisanje nije moguće: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Obrisati grupne kontrolne ploÄe" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Brisanje je onemogućeno u postavkama životnog ciklusa" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Obrisati osobne kontrolne ploÄe" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Obrisati kontrolne ploÄe sustava" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Obrisati zahtjeve" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "ObriÅ¡i vrijednosti" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Obrisan %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Obrisani upiti" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Obrisana spremljena pretraga" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Obrisana pretraga %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Brisanje ovog objekta bi ugrozilo referencijalni integritet" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Brisanje ovog objekta bi povrijedilo referencijalni integritet" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Odbiti" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Druge stvari koje ovise o ovome" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "Ovisi o ovom zahtjevu" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Dodana ovisnost od strane %1" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Obrisana ovisnost od strane %1" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Dodana ovisnost o %1" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Obrisana ovisnost o %1" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "Ovisan o" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Ovisi o" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "Ovisi o" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "Padajuće" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "OpiÅ¡i problem ispod" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Opis" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Detaljne informacije o vaÅ¡em RT sustavu" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Detalji" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Smjer" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Deaktivirano" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Prikaži" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Prikaži listu kontrole pristupa" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Prikaži Älanak %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Prikaži stupce" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Distribuirano pod %1verzijom 2 GNU GPL-a.%2." #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "UÄini bilo Å¡to i sve" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Ime domene" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ne upisuje se http://, samo neÅ¡to kao 'localhost', 'rt.example.com'" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Ne osvježavaj poÄetnu stranicu." #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Ne osvježavaj rezultate pretraživanja." #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ne osvježavaj ovu stranicu." #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Ne vjeruj ovom kljuÄu" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Prikaži" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Preuzmi datoteku sa stanjem" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Padajuće" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "RijeÅ¡iti do" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "RijeÅ¡iti do (relativno)" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "GREÅ KA: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Jednostavno osvježavanje mojih otvorenih zahtjeva" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Jednostavan pregled vaÅ¡ih podsjetnika" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Uredi" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Uredi vlastita polja" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Uredi vlastita polja za %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Uredi vlastita polja za sve grupe" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Uredi vlastita polja za sve kategorije" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Uredi vlastita polja za sve korisnike" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Uredi vlastita polja Älanaka svih klasa" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Uredi vlastita polja za zahtjeve u svim kategorijama" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Uredi linkove" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Uredi upit" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Uredi pretragu" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Uredi globalnu hijerarhiju tema" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Uredi sistemske predloÅ¡ke" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Uredi hijerarhiju tema za %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "UreÄ‘ivanje vlastita polja %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "UreÄ‘ivanje Älanstva za grupu %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "Efektivni identifikator" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Ili baza ili cilj mora biti definiran" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Nemate prava uÄitavanja spremljene pretrage %1 ili je identifikator neispravan" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "E-Mail" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "Email adresa" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "Poruka sažetka" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "E-Mail adresa se već koristi" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "Dostava poÅ¡te" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "Predložak za poruke periodiÄkih sažetaka obavijesti" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "E-Mail adresa" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Aktivirano" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Aktivna (IskljuÄivanje ove kućice deaktivira klasu)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "Aktivirano (Uklanjanje oznake deaktivira ovo vlastito polje)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "Aktivirano (Uklanjanje oznake deaktivira ovu grupu)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "Aktivirano (Uklanjanje oznake deaktivira ovu kategoriju)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Aktivirane klase" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Aktivirane kategorije" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Aktivne kategorije koje zadovoljavaju kriterije pretrage" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Status %1 aktiviran" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Kriptiraj" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Uvijek kriptiraj" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Kriptiraj/Dekriptiraj" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Kriptiraj/dekriptiraj transakciju #%1 zahtjeva #%2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Unesite Älanke, zahtjeve ili druge vanjske poveznice koje se odnose na ovaj Älanak." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Unesi viÅ¡e raspona IP adresa" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Unesi viÅ¡e IP adresa" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Unesi viÅ¡e vrijednosti" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Unesi viÅ¡e vrijednosti sa automatskim nadopunjavanjem" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Unesi objekte ili URI-je na koje se objekti vezu. ViÅ¡estruke unose razdvoji razmacima." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Unesi jednu IP adresu" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Unesi jedan raspon IP adresa" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Unesi jednu vrijednost" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Unesi jednu vrijednost sa automatskim nadopunjavanjem" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Unesi kategorije ili URI-je na koje se kategorije vezu. ViÅ¡estruke unose razdvoji razmacima." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Unesi zahtjeve ili URI-je na koje se zahtjevi vežu. ViÅ¡estruke unose razdvoji razmacima." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Pretpostavi unos vremena u satima" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Unesi do %1 raspona IP adresa" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Unesi do %1 IP adresa" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Unesi do %1 vrijednosti" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Unesi do %1 vrijednosti sa automatskim nadopunjavanjem" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "Unosom %1, %2, %3 ili %4 pretraživanje se ograniÄava na zahtjeve zadanog tipa. Unosom imena konkretnog statusa pretraživanje se ograniÄava samo na zadani status." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "GreÅ¡ka" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "GreÅ¡ka RT vlasniku: javni kljuÄ" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "GreÅ¡ka: Nedostaje kontrolna ploÄa" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "GreÅ¡ka: neispravni GnuPG podaci" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "GreÅ¡ka: nije uspjela promjena privatnosti postojeće pretrage" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "GreÅ¡ka: nije uspjelo uÄitavanje spremljene pretrage %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "GreÅ¡ka: nema privatnog kljuÄa" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "GreÅ¡ka: javni kljuÄ" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "GreÅ¡ka: pretraga %1 nije ažurirana: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Eskalirati zahtjeve" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "OÄekivano" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Svatko" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Primjer:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "IstiÄe" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "ProÅ¡ireni status" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Eksterna autentikacija aktivirana." #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Dodatne informacije" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Napravi Älanak" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Izvadi oznaku iz naslova" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Napravi novi Älanak iz zahtjeva #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Izvadi Älanak iz zahtjeva #%1 u klasu %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Izvadi oznake iz naslova transakcije i dodaj ih u naslov zahtjeva." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Spajanje na bazu podataka nije moguće: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Dodavanje atributa %1 nije moguće" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Pseudogrupa 'Privilegirani' korisnici nije pronaÄ‘ena." #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Pseudogrupa 'Neprivilegirani' korisnici nije pronaÄ‘ena" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "UÄitavanje nije moguće za %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "UÄitavanje nije moguće za %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Modul %1 nije mogao biti uÄitan. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Objekt za %1 nije mogao biti uÄitan" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Predložak nije mogao biti uÄitan" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "PrevoÄ‘enje predloÅ¡ka nije moguće" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "Velj" #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Izvori" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Polje" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Izvor vrijednosti polja:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Ime datoteke" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Unesi parametre" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Ispuni blokove bojom koristeći" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Ispuniti viÅ¡e polja u tekstu" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Ispuniti viÅ¡e polja sa wiki tekstom" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Ispuniti jedno polje u tekstu" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Ispuniti jedno polje sa wiki tekstom" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Ispuniti ovo polje sa URL-om." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Ispuniti do %1 polja u tekstu" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Ispuniti do %1 polja sa wiki tekstom" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Krajnji prioritet" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "Krajnji prioritet" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "PronaÄ‘i sve korisnike Äiji" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "PronaÄ‘i grupe Äije" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "PronaÄ‘i korisnike Äiji" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "PronaÄ‘i zahtjeve" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Otisak prsta" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "ZavrÅ¡etak" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Prvi" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "Za sve mogućnosti RT pretraživanja molimo koristite %1suÄelje za definiranje pretrage%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Prisili na promjenu" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "Formatiranje" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Proslijedi" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Proslijedi poruku" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Proslijedi poruku i vrati se na zahtjev" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Proslijedi zahtjev" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Proslijedi poruke izvan RT-a" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Proslijedi zahtjev #%1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Proslijedi transakciju #%1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Proslijedi zahtjev na %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "PronaÄ‘eno zahtjeva: %1" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "PronaÄ‘en objekt" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Ponavljanje" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "Pet" #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "Petak" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Od" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD je iskljuÄen ili nije instaliran. Možete poslati sliku, ali nećete dobiti automatske prijedloge boja." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Općenito" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Općenita prava" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "PoÄetak" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Dano %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Globalno" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Globalni atributi" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Globalne Teme" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Postavke globalnih vlastitih polja" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Prikaz stanja %1 spremljen." #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Prikaži" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "Prikaži grupu" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "Prikaži korisnika" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Idi!" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "Prikaži zahtjev" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "Pokaži zahtjev" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Graf" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Postavke grafa" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Prikaz grafa nije dostupan." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Grupa" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Grupne ovlasti" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Grupa već ima Älana: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Grupa nije mogla biti napravljena: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Grupa napravljena" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Grupa deaktivirana" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Grupa aktivirana" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Grupa ne sadrži takvog Älana" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Ime grupe '%1' se već koristi" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Grupa nije pronaÄ‘ena" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupe" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Grupe ne mogu biti Älanovi svojih Älanova" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Grupe koje odgovaraju kriterijima pretrage" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Grupe kojima pripada ovaj korisnik" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "Ima Älana" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Zaglavlje proslijeÄ‘enog zahtjeva" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Zaglavlje proslijeÄ‘ene poruke" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Pozdrav!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Ažurirajmo neke korisne standardne postavke za RT." #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Sakrij sav citirani tekst" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Sakrij citirani tekst" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Povijest" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Povijest za Älanak #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Povijest grupe %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Povijest kategorije %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Povijest korisnika %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Kućni telefon" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "UÄestalost osvježavanja poÄetne stranice" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "PoÄetna stranica" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Vrijeme" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "Sati" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Imam %quant(%1,mjeÅ¡alicu betona)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "Broj" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identitet" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Ako je odobrenje odbijeno, odbij original i pobriÅ¡i odobrenja na Äekanju" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "Ako niste to oÄekivali napustite ovu stranicu bez prijave." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Ako je ovaj alat 'setgid', neprijateljski lokalni korisnik bi mogao koristiti ovaj alat za dobivanje administratorskog pristupa RT-u." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Ako već imate radeći RT poslužitelj i bazu podataka, sad bi trebali provjeriti je li baza podataka pokrenuta i može li se RT poslužitelj spojiti na nju. Nakon toga zaustavite i ponovo pokrenite RT poslužitelj." #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "Ako se zaista željeli otvoriti %1 i %2, %3kliknite ovdje za dovrÅ¡etak vaÅ¡eg zahtjeva%4." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Ako ste promijenili prikljuÄak na kojem se nalazi RT, trebat ćete ponovo pokrenuti poslužitelj da bi se mogli prijaviti." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Ako ste iÅ¡ta mijenjali iznad, ne zaboravite kliknuti ovdje" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Ako se vaÅ¡a željena baza podataka ne nalazi u donjem popisu to znaÄi da RT nije pronaÅ¡ao instalaciju upravljaÄkog programa za bazu podataka. Ovo vjerojatno možete popraviti koristeći %1 za preuzimanje i instalaciju DBD::MySQL, DBD::Oracle ili DBD::Pg." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "NedopuÅ¡tena vrijednost za %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "Nepromjenjivo polje" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Neaktivni zahtjevi" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Prikaži Älanke:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Prikaži i deaktivirane klase." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Prikaži i deaktivirana vlastita polja." #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Prikaži i deaktivirane grupe" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Prikaži i deaktivirane kategorije." #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "UkljuÄi deaktivirane korisnike u pretragu." #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "UkljuÄi stranicu" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "UkljuÄi podteme" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "PojedinaÄne poruke" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Obavijesti RT administratora da korisnici imaju problema sa javnim kljuÄevima" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Obavijesti korisnika da nedostaje kontrolna ploÄa na koju je pretplaćen" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Obavijesti korisnika da poruka koju je poslao sadrži neispravne GnuPG podatke" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Obavijesti korisnika da ima problema s javnim kljuÄem i ne može primati kriptirani sadržaj" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Obavijesti korisnika da mu je lozinka promijenjena" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Obavijesti korisnika da je primljena kriptirana poruka ali nemamo privatnog kljuÄa za dekriptiranje" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "PoÄetni prioritet" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "PoÄetni prioritet" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Inicijalizacija baze podataka" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "GreÅ¡ka pri unosu" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Unosi moraju odgovarati %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Interna greÅ¡ka: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Interna greÅ¡ka: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "Neispravan %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Neispravan %1 argument" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Nevažeći %1: '%2' ne izgleda kao adresa elektroniÄke poÅ¡te" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Nevažeći %1: oÄekuje se broj" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Neispravna klasa" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Nevažeći izvor vrijednosti za vlastito polje" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Neispravna kategorija, nije uspjela primjena klase: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "Neispravan naÄin prikaza" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Neispravan naÄin prikaza za vlastita polja tipa %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Nevažeći podaci" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Nevažeći kljuÄ %1 za adresu '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Nevažeći objekt" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Nevažeći uzorak: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Nevažeća kategorija" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Nevažeća ovlast" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Nevažeća ovlast. Primjena prava '%1' nije uspjela" #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Nevažeća sintaksa adrese elektroniÄke poÅ¡te" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Nevažeća vrijednost za %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Nevažeća vrijednost za vlastito polje" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Nije kriptirano" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Vrlo je važno da neprivilegiranim korisnicima nije dopuÅ¡teno koristiti ovaj alat." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "PreporuÄljivo je napraviti neprivilegiranog unix korisnika s ispravnim Älanstvom u grupi i RT pristupom za koriÅ¡tenje ovog alata." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Potrebno je nekoliko parametara:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Kurziv" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "Sij" #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Pridruži se ili napusti grupu" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "Srp" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Sve" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "Lip" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Ostavite 'localhost' ako niste sigurni. Ostavite prazno za lokalno spajanje preko utiÄnice" #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "KljuÄne rijeÄi i intuitivno pretraživanje" #: lib/RT/User.pm:97 msgid "Lang" msgstr "Jezik" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "Jezik" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Veliko" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Zadnji" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Zadnji kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Posljednji kontaktiran" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Posljednje osvježavano" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Posljednji osvježio" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Ažurirano" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Posljednji osvježio" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "Posljednje osvježavano" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "Posljednji osvježio" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "Posljednje osvježeno (relativno)" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "Ostavite prazno za koriÅ¡tenje standardne vrijednosti za vaÅ¡u bazu podataka" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "Ostavite prazno za koriÅ¡tenje standardne vrijednosti korisniÄkog imena administratora vaÅ¡e baze podataka" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Preostalo" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Legenda" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Dužina u znakovima; Koristite '0' za direktan prikaz svih poruka, neovisno o duljini" #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Dopustiti pristup RT-u ovom korisniku" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Dodijeliti viÅ¡e ovlasti ovom korisniku" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Krenimo!" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Životni ciklus" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Veza" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Link već postoji" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Link nije pronaÄ‘en" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Poveži na zahtjev #%1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Poveži vrijednosti" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Povezano" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "Povezano sa" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "Povezano na" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Veze" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Lista" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "UÄitati" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "UÄitaj spremljenu pretragu" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "UÄitaj spremljenu pretragu" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "UÄitati spremljenu pretragu" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "UÄitan %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "UÄitana originalna \"%1\" spremljena pretraga" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "UÄitani Perl moduli" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "UÄitana spremljena pretraga \"%1\"" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "UÄitava se..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Lokalizacija" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "Lokaliziran datum i vrijeme" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Adresa" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Prijavljeni ste" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Prijavljeni ste kao %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Odjavljeni ste" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Prijavi se" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "Alternativni tekst logotipa" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Odjava" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Nepodudarajući tip pretrage" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "ElektroniÄka poÅ¡ta" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Osnovna vrsta veze" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Napravi rjeÅ¡avatelja" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Napravi status" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Napravi datum" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Napravi datum poÄetka" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Napravi datum poÄinjanja" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Napravi datum ulaza" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Napravi prioritet" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Napravi kategoriju" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Napravi temu" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Upravljanje vlastitim poljima i njihovim vrijednostima" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Upravljanje grupama i Älanstvom u grupama" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Upravljanje svojstvima i postavkama koji se primjenjuju na sve kategorije" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Upravljanje kategorijama i svojstvima specifiÄnima za kategorije" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Upravljanje spremljenim grafovima" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Upravljanje korisnicima i lozinkama" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "Ožu" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "OznaÄi sve poruke kao proÄitane" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Redoslijed pretraživanja Mason predložaka" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "Maksimalne vrijednosti" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Najveća dužina poruke koja se prikazuje direktno" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "Svibanj" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Ja" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "ÄŒlan" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Dodan Älan %1" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Obrisan Älan %1" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "ÄŒlan dodan: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Obrisan Älan" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "ÄŒlan nije obrisan" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "ÄŒlan od" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "ÄŒlanovi" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Dodano Älanstvo u %1" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Obrisano Älanstvo u %1" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "ÄŒlanstva" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "ÄŒlanstvo korisnika %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Spajanje uspjeÅ¡no" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Spajanje neuspjeÅ¡no. EfectiveId se nije mogao postaviti" #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Spojiti u" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Spojiti u %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Poruka" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Tijelo poruke nije prikazano jer je preveliko." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Tijelo poruke nije prikazano jer je poÅ¡iljatelj tražio da se ne prikazuje direktno." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Tijelo poruke nije prikazano jer nije Äisti tekst." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Visina okvira za unos poruke" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Å irina okvira za unos poruke" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Poruku nije bilo moguće zabilježiti" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Poruka za korisnika" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Poruka zabilježena" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Minimalna duljina lozinke" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "Minuta" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Razno" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "%1: Nedostaje primarni kljuÄ?" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobilni telefon" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Mobitel" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Promijeniti" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Promijeni Älanove" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Promijeni predloÅ¡ke natuknica" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Promijeni natuknice" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Promijeni vlastito polje za kategoriju %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Promjena i dodavanje klasa" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Promjena i dodavanje vlastitih polja za Älanke" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Promijeni Älanak #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Promijeni povezane objekte za %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Promijeni vrijednosti vlastitih polja" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Promijeni datume za zahtjev #%1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Promijeni globalne teme Älanaka" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Promijeni globalna vlastita polja" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Promijeni globalne grupne ovlasti" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Promijeni globalne teme" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Promijeni globalne korisniÄke ovlasti" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Promijeni grupne kontrolne ploÄe" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Promijeni oglaÅ¡avanje Älanstva u grupi" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Promijeni grupne metapodatke ili obriÅ¡i grupu" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Uredi grupne ovlasti za klasu %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Promijeni grupne ovlasti za vlastito polje %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Promijeni grupne ovlasti za grupu %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Promijeni grupne ovlasti za kategoriju %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "UreÄ‘ivanje metapodataka i vlastitih polja za ovu klasu" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Promijeni neÄiji vlastiti RT pristup" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Promijeni korisnike koji se odnose na zahtjev #%1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Promijeni osobne korisniÄke ploÄe" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Promijeni promatraÄe kategorije" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Promijeni natuknice za kategoriju %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Promijeni natuknice koji se primjenjuju na sve kategorije" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Promijeni kontrolne ploÄe sustava" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Promijeni predložak %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Promijeni predložak %1 za kategoriju %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Promijeni predloÅ¡ke koji se primjenjuju na sve kategorije" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Promijeni klasu %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Promijeni sadržaj kontrolne ploÄe %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Promijeni kontrolnu ploÄu %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Promijeni standardnu PoÄetnu stranicu" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Promijeni grupu %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Promijeni pretplate na kontrolnu ploÄu %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Promijeni korisnika %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Promijeni ovu pretragu..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Promijeni zahtjev #%1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Promijeni zahtjev #%1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Promijeni zahtjeve" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Promijeni temu za %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "UreÄ‘ivanje hijerarhije tema pridružene ovoj klasi" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "UreÄ‘ivanje tema za Älanke u ovoj klasi" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Uredi korisniÄke ovlasti za klasu %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Promijeni korisniÄke ovlasti za vlastito polje %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Promijeni korisniÄke ovlasti za grupu %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Promijeni korisniÄke ovlasti za kategoriju %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Promijeni primatelje za zahtjev #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "Pon" #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "Ponedjeljak" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "MjeseÄno" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "ViÅ¡e o prijaviteljima" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Pomaknuti ovdje" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "ViÅ¡estruki" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "Potrebno je navesti vrijednost za 'Ime'" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Moji %1 zahtjevi" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Moja odobrenja" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Moj dan" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Moji podsjetnici" #: etc/initialdata:890 msgid "My Tickets" msgstr "" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Moja odobrenja" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Moje kontrolne ploÄe" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Moji podsjtnici" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Moje spremljene pretrage" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "RAZMAK BEZ PRELOMA" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "NOVI RED" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Ime" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Ime i adresa elektroniÄke poÅ¡te" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "KorisniÄko ime se već koristi" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Naziv:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Nikad" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Novo" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Novi Älanak" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Nova kontrolna ploÄa" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Novi linkovi" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Nova odobrenja na Äekanju" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Nova pretraga" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nove poruke" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nova lozinka" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Poslan novi podsjetnik na novu lozinku" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Novi podsjetnik:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Novi zahtjev" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Novi zahtjev ne postoji" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Novi zahtjevi ne mogu imati status '%1' u ovoj kategoriji." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Novi promatraÄi" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Sljedeći" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Nadimak" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Nadimak" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Ne" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "%1 nije uÄitan" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Nema Älanaka koji odgovaraju %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Nema definirane klase" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Nisu pronaÄ‘ene klase koje odgovaraju zahtjevima pretrage." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Nema vlastitog polja" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Nema definiranog vlastitog polja" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Nema definirane grupe" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Nema upita" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Nema kategorije" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Nije pronaÄ‘en RT korisnik. Kontaktirajte svog RT administratora." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Nema naslova" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Nema predloÅ¡ka" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Nema radnji" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Nema definiranog stupca" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Nema unesenih komentara za ovog korisnika" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Nema opisa za %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Nema definirane grupe" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Nema grupa koje odgovaraju kriterijima pretrage" #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Nema odgovarajućeg kljuÄa za kriptiranje" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Nema poruke u prilogu" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Ime nije zadano" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Ne treba kriptirati" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Lozinka nije postavljena" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Nemate ovlasti za pravljenje kategorije" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Nemate ovlasti za pravljenje zahtjeva u kategoriji '%1'" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Nemate ovlasti za prikazivanje tog zahtjeva" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Nemate ovlasti za spremanje pretraga sustava" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Nemate ovlasti za izmjenu postavki" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Nemate ovlasti za pregledavanje Älanka" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Nemate ovlasti za ažuriranje zahtjeva" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Nema odabranih glavnih parametara." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Nema privatnog kljuÄa" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Nisu pronaÄ‘ene kategorije koji odgovaraju kriterijima pretrage" #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Ovlasti nisu zadane" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Ovlasti nisu pronaÄ‘ene" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Nema pretrage za obradu." #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Nema naslova" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "KljuÄ nije dostupan ili nije prikladan za potpisivanje" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Nema zahtjeva koji zadovoljavaju zadane uvjete." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Nije naveden tip transakcije" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Nema upotrebljivih kljuÄeva." #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Nisu pronaÄ‘eni korisnici koji odgovaraju kriterijima pretrage" #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "Nije poslana vrijednost na _Set!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Nitko" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "NiÅ¡ta" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Nepostojeće polje?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Nije pronaÄ‘eno" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Niste prijavljeni." #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "Nije postavljeno" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Ne koristite mobilni preglednik?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "BiljeÅ¡ke" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Obavijest nije mogla biti poslana" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Obavijesti AdminCC-ove" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "obavijesti AdminCC-ove u obliku komentara" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Obavijesti Cc-ove" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Obavijesti Cc-ove u obliku komentara" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Obavijesti ostale primatelje" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Obavijesti ostale primatelje u obliku komentara" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Obavijesti rjeÅ¡avatelja" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Obavijesti rjeÅ¡avatelja u obliku komentara" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Obavijesti rjeÅ¡avatelja o odbijenim zahtjevima" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Obavijesti rjeÅ¡avatelja da je njihov zahtjev odobren i spreman za daljnju obradu" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Obavijesti rjeÅ¡avatelja da su zahtjev odobrili neke ili sve nadležne osobe" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Obavijesti rjeÅ¡avatelja, prijavitelje, Ccove i AdminCcove" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Obavijesti rjeÅ¡avatelja, prijavitelje, Ccove i AdminCcove kao komentar" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Obavijesti rjeÅ¡avatelje i AdminCc-ove o odobrenjima na Äekanju" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Obavijesti prijavitelja da su njegov zahtjev odobrile sve nadležne osobe" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Obavijesti prijavitelja da su njegovi zahtjev odobrile neke nadležne osobe" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Obavijesti prijavitelje" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Obavijesti prijavitelje i CC-ove" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Obavijesti prijavitelje i CC-ove u obliku komentara" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Obavijesti me o neproÄitanim porukama" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "Stu" #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "Ili" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Objekt nije bilo moguće napraviti" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Objekt nije bilo moguće obrisati" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objekt napravljen" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objekt obrisan" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Tip objekta nije odgovarajući" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Lista objekata je prazna" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "Lis" #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "Dana %1, %2 reÄe:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Pri zatvaranju" #: etc/initialdata:170 msgid "On Comment" msgstr "Pri komentaru" #: etc/initialdata:142 msgid "On Correspond" msgstr "Pri korespondenciji" #: etc/initialdata:131 msgid "On Create" msgstr "Pri pravljenju" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "Pri prosljeÄ‘ivanju" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Pri prosljeÄ‘ivanju zahtjeva" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Pri prosljeÄ‘ivanju transakcije" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Pri promjeni rjeÅ¡avatelja" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Pri promjeni prioriteta" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Pri promjeni kategorije" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Pri odbijanju" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Pri ponovnom otvaranju" #: etc/initialdata:205 msgid "On Resolve" msgstr "Pri rjeÅ¡avanju" #: etc/initialdata:176 msgid "On Status Change" msgstr "Pri promjeni statusa" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Pri transakciji" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "BCC (samo ova poruka)" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "CC (samo ova poruka)" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Samo za unos, bez prikaza" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Prikaži samo odobrenja za zahtjeve napravljene nakon %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Prikaži samo odobrenja za zahtjeve napravljene prije %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Prikaži samo vlastita polja za:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Otvori" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Otvori zahtjeve" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Otvori URL" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Otvoreni zahtjevi" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Otvori zahtjeve pri korespondenciji" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Postavka" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Postavke" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sortirano prema" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organizacija" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Izvorni zahtjev: #%1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "Zabilježena odlazna poÅ¡ta o komentaru" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "Zabilježena odlazna poÅ¡ta" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "Odlazna poÅ¡ta" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Pregled" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "RjeÅ¡avatelj zahtjeva" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "RjeÅ¡avatelj" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "RjeÅ¡avatelj '%1' nema prava za rjeÅ¡avanje ovog zahtjeva." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "RjeÅ¡avatelj promijenjen iz %1 u %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Vlasnik silom promijenjen od %1 u %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "Ime rjeÅ¡avatelja" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Stranica" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Stranica 1 od 1" #: share/html/dhandler:48 msgid "Page not found" msgstr "Nepostojeća stranica" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Pager" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Roditelji" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Lozinka" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Lozinka promijenjena" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Lozinka nije promijenjena." #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Lozinka treba imati bar %1 znakova" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Lozinka nije prikazana" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Lozinka promijenjena" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Lozinka: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Lozinka: Nije dozvoljeno" #: etc/initialdata:714 msgid "PasswordChange" msgstr "Promjena lozinke" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "Lozinke se ne podudaraju" #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Lokacija sendmail programa" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Osobe" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Osobe vezane za kategoriju %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Izvedi radnju definiranu od korisnika" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl konfiguracija" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Redoslijed pretraživanja Perl biblioteka" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Trajno brisanje RT podataka" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Nije dozvoljeno" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Nije dozvoljeno" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Brojevi telefona" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Molim provjerite URL i pokuÅ¡ajte ponovo." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Molim ispravno unesite vaÅ¡u trenutnu lozinku. Lozinka nije promijenjena." #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Molim unesite vaÅ¡u trenutnu lozinku." #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "Moguće lažiranje zahtjeva izmeÄ‘u stranica" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Moguće skrivene pretrage" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "Predefinirana pretraga %1 nije pronaÄ‘ena" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Osobne postavke" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Postavke %1 za korisnika %2." #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Postavke spremljene za %1." #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Postavke spremljene za korisnika %1." #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Postavke spremljene." #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Odabrani kljuÄ: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Odabrani kljuÄ" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Priprema presjeÄena" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Prethodni" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Glavni parametar %1 nije pronaÄ‘en." #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "IspiÅ¡i dobivenu poruku sažetka na standardni izlaz; ne Å¡alji ju elektroniÄkom poÅ¡tom. Nemoj ju oznaÄiti kao poslanu" #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "IspiÅ¡i ovu poruku" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioritet" #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Privatnost" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Privatnost" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Privatni kljuÄ" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Privilegirani" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Stanje privilegija: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Privilegirani korisnici" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Koristi se obrada bez transakcija, neki uvjeti i radnje možda neće uspjeti. Razmislite o koriÅ¡tenju opcije --transaction" #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseudogrupa za internu uporabu" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "Za provjeru potpisa potreban je javni kljuÄ '0x%1'" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Upiti" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Upit" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Kreiranje upita" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Kategorija" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Kategorija %1 nije pronaÄ‘ena" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Ime kategorije" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Kategorija već postoji" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Kategoriju nije moguće napraviti" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Kategorija se ne može uÄitati" #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Kategorija napravljena" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Identifikator kategorije" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Kategorija nije pronaÄ‘ena" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "kljuÄ kategorije" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "AdminCc kategorije" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "Cc kategorije" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "Ime kategorije" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "PromatraÄ kategorije" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Kategorije" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Kategorije koje administriram" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Kategorije za koje sam AdminCC" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Brza pretraga" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Brzo pravljenje zahtjeva" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT administracija" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "Adresa elektroniÄke poÅ¡te RT administratora" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT konfiguracija" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT greÅ¡ka" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT veliÄina" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "PoÄetna stranica" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "PoÄetna stranica za korisnika %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT može komunicirati s vaÅ¡im korisnicima prilikom stvaranja zahtjeva ili kod korespondencije vezane uz zahtjev. Zadajte gdje se nalazi sendmail (ili sendmail kompatibilni program kao onaj u postfixu). Za RT takoÄ‘er treba definirati koga treba obavijestiti kad netko poÅ¡alje nevažeću poruku elektroniÄke poÅ¡te. To ne smije biti adresa koja se vraća nazad u RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT može ukljuÄiti sadržaj druge web usluge kod prikaza ovog vlastitog polja." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT može vrijednosti ovog vlastitog polja pretvoriti u hiperveze na drugu uslugu." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT osnovne varijable" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "Request Tracker za %1" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "RT je prepoznao moguće %1lažiranje zahtjeva izmeÄ‘u stranica%2 za ovaj zahtjev, jer %3. Zloćudni napadaÄ možda pokuÅ¡ava %1%4%2 u vaÅ¡e ime. Ako niste zatražili ovu stranicu, trebali bi ste upozoriti osobe zadužene za sigurnost." #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT je profesionalni sustav za praćenje problema napravljen tako da omogućava inteligentno i efikasno upravljanje zadacima, problemima, zahtjevima, greÅ¡kama ili bilo Äime drugim Å¡to izgleda kao \"radni zadatak.\"" #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT koriste Fortune 100 poduzeća, državne agencija, obrazovne institucije, bolnice, neprofitne organizacije, nevladine organizacije, knjižnice, projekti otvorenog koda i razne vrste drugih organizacija na svih sedam kontinenata. (Da, Äak i na Antarktiku.)" #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT će se spojiti na bazu koristeći ovog korisnika. Navedeni korisnik će biti napravljen." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT će napraviti korisnika s imenom \"root\" i postaviti ovo kao njegovu lozinku" #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT će zamijeniti %1 i %2 sa identifikatorom zapisa i vrijednosti vlastitog polja, respektivno" #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT će ovaj niz znakova koristiti za jedinstvenu identifikaciju vaÅ¡e instalacije i tražit će ga u naslovima poruka elektroniÄke poÅ¡te da bi prepoznao na koji se zahtjev poruka odnosi. PreporuÄamo da ovdje unesete svoju Internet domenu. (npr: example.com)" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT podržava viÅ¡e razliÄitih baza podataka. Podržani su MySQL, PostgreSQL, Oracle i SQLite." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "Postavka RTAddressRegexp iz konfiguracije ne odgovara %1" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "Ponovno otvaranje" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Pravo ime" #: lib/RT/User.pm:95 msgid "RealName" msgstr "Pravo ime" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Primatelji" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Zabilježi sve izmjene" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Rekurzivni Älan" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Odnosi se na" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Dodana referenca od strane %1" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Obrisana referenca od strane %1" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Dodana referenca za %1" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Referenca za %1 obrisana" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Druge stvari koje se odnose na ovo" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "Odnosi se na ovaj zahtjev" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Odnosi se" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "Odnosi se" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Osvježavanje" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Osvježi stranicu svakih %1 minuta." #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Odbij" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Zapamti pretpostavljenu kategoriju" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "Podsjetnik" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "Podsjetnik '%1' dodan" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "Podsjetnik '%1' zavrÅ¡en" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "Podsjetnik '%1' ponovo otvoren" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "Podsjetnici" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "Podsjetnici za zahtjev #%1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Ukloni AdminCc" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Ukloni zabiljeÅ¡ku" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Ukloni CC" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Ukloni prijavitelja" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "NaÄin prikaza" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Mijenja padajući popis vlasnika sa tekstualnim poljem" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Odgovori" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Adresa odgovora" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Odgovor prijaviteljima" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Odgovor na zahtjeve" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Prijavitelj" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "Grupa prijavitelja" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Prijavitelji" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Traženi parametar '%1' nije naveden" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Vratiti na prijaÅ¡nje" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Resetiranje poÄetne stranice" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Promijeni tajnu autentikacijsku znaÄku" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Vrati na standardne postavke" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Kuća" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "RijeÅ¡i" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "RijeÅ¡i zahtjev #%1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "RijeÅ¡eno" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "RijeÅ¡eno (relativno)" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Odgovori" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Rezultati" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "Vrati se nazad na zahtjev" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Ponoviti lozinku" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Vratiti" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Ovlast uÄitana" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Ovlasti nisu mogle biti poniÅ¡tene" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Ovlast nije uÄitana." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Ovlasti nisu mogle biti odobrene za %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Prava administratora" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Prava osoblja" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Uloge" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Zapisa" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Redova po okviru" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Redova po stranici" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL upiti" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite je baza podataka koja ne zahtjeva poslužitelj ili bili kakvu konfiguraciju. Autori RT-a ju preporuÄuju za testiranje, prezentaciju i razvoj, ali ne i za veće produkcijske RT poslužitelje." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "Sub" #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "Subota" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Spremiti" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Spremi promjene" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Spremiti osobne postavke" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Spremi pod novim imenom" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Spremi kao novo" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Spremi ovu pretragu" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Spremljena %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Spremljene pretrage" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Spremljeni grafovi" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Spremljene pretrage" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Natuknica #%1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Natuknica napravljena" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Natuknice" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Natuknice i primatelji" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Traži" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "Pretraga %1 ažurirana" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Pretraži Älanke" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Postavke pretraživanja" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "PronaÄ‘i Älanke koji sadrže" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Traži odobrenja" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Traži Älanke" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Pretraživanje zahtjeva" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Pretraživanje" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Rezultati pretraživanja" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Period osvježavanja rezultata pretraživanja" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "Pretraživanje cijelog sadržaja svih zahtjeva može potrajati, ali ako je potrebno možete pretražiti po bilo kojoj rijeÄi u povijesti zahtjeva unoseći %1rijeÄ." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Tajna autentikacijska znaÄka" #: bin/rt-crontool:352 msgid "Security:" msgstr "Sigurnost:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "TakoÄ‘er vidi:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Prikaži Älanke u ovoj klasi" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Prikaži promjena na Älancima u ovoj klasi" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Prikaži da klasa postoji" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Odabir" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Odaberi vlastito polje za Älanke u svim klasama" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Odaberi tip baze podataka" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Odaberi klasu" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Odaberi vlastito polje" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Odaberi boju za ovaj dio" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Odaberi grupu" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Odaberi kategoriju" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Odaberi kategoriju za novi zahtjev" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Odaberi dio" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Odaberi korisnika" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Odaberi Älanak iz %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Odaberi Älanak za dodavanje" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Odaberi drugi jezik" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Odaberi kućicu" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Odaberi vlastita polja za sve kategorije" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Odaberi vlastita polja za sve korisniÄke grupe" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Odaberi vlastita polja za sve korisnike" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Odaberi vlastita polja za zahtjeve u svim kategorijama" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Odaberi vlastita polja za transakcije u zahtjevima u svim kategorijama" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Odaberi datum" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Odaberi datum i vrijeme" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Odaberi viÅ¡e datuma" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "Odaberi viÅ¡e datuma s vremenom" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Odaberi viÅ¡e vrijednosti" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Odaberi jednu vrijednost" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Odaberi kategorije koje će se prikazivati na PoÄetnoj stranici" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Odabir tema za ovaj Älanak" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Odaberi do %1 datuma" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "Odaberi do %1 datuma s vremenom" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Odaberi do %1 vrijednosti" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Odabrana vlastita polja" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Odabrane kategorije" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Odabranom kljuÄu se ne vjeruje ili viÅ¡e ne postoji." #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Odaberi objekte" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Odabiri su promijenjeni. Molim spremite vaÅ¡e izmjene" #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "PoÅ¡alji mail rjeÅ¡avatelju i svim promatraÄima" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "PoÅ¡alji mail rjeÅ¡avatelju i svim promatraÄima kao \"komentar\"" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "PoÅ¡alji mail prijaviteljima i CC-ovima" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "PoÅ¡alji mail prijaviteljima i CC-ovima kao komentar" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Å alje poruku prijaviteljima" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Å alje mail CC-ovima i BCC-ovima s ovog popisa" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Å alje mail CC-ovima" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Å alje mail CC-ovima kao komentar" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Å alje mail administrativnim CC-ovima" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Å alje mail administrativnim CC-ovima kao komentar" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Å alje mail rjeÅ¡avatelju" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "Ruj" #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "ViÅ¡estruke zapise razdvojite razmakom." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "Postavi privatni kljuÄ" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Postavke" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Kratka korisniÄka imena" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Treba li RT slati obavijesti o izmjenama koje ste sami napravili na zahtjevima?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Pokaži" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Prikaži karticu odobrenja" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Pokaži stupce" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Prikaz rezultata" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Na razini %1 prikaži svojstva zahtjeva" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Prikaži sav citirani tekst" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Pokaži odobrene zahtjeve" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "TakoÄ‘er prikaži" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Pokaži kratka zaglavlja" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Pokaži odbijene zahtjeve" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Pokaži cijela zaglavlja" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Pokaži globalne predloÅ¡ke" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Pokaži opis veze" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "Ne prikazuj zahtjeve za prijavitelja" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Prvo prikaži najstarije poruke" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Pokaži zahtjeve na Äekanju" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Pokaži citirani tekst" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Pokaži zahtjeve koji Äekaju druga odobrenja" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Prikaži 10 aktivnih zahtjeva najvećeg prioriteta za prijavitelja" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Prikaži 10 neaktivnih zahtjeva najvećeg prioriteta za prijavitelja" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Prikaži 10 zahtjeva najvećeg prioriteta za prijavitelja" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Pokaži povijest zahtjeva" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "ÄŒistaÄ" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "ÄŒistaÄ zahtjeva direktorij za spremanje stanja. Molim provjerite da direktorij %1 postoji i web poslužitelj može pisati u njega." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Pomoćni stupac" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "PotpiÅ¡i" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "Potpisivanje svih automatski generiranih poruka. %1Upozorenje%2: UkljuÄivanjem ove opcije potpisi viÅ¡e ne pružaju %3autentiÄnost%4 već %3integritet%4." #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Uvijek potpiÅ¡i" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Prijavi se kao prijavitelj zahtjeva ili Cc za zahtjev ili kategoriju" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Prijavi se kao AdminCc za zahtjev ili kategoriju" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "PotpiÅ¡i%1%2 koristeći %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "E-mail potpis" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Jednostavno" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Jednostavna pretraga" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "PojedinaÄni" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Naziv sjediÅ¡ta" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "VeliÄina" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "PreskoÄi izbornik" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "PreskaÄem deaktiviranog korisnika" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Malo" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Neki pretraživaÄi uÄitavaju samo sadržaj sa iste domene kao vaÅ¡ RT poslužitelj." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "NeÅ¡to nije u redu. Kontaktirajte administratora sustava" #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sortirati" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Sortiranje" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Izvor" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Zadajte dali je ovo dnevno ili tjedno izvrÅ¡avanje." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Preuzmi tablicu" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "Stadij" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Zadržano" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Tip pretraživanja eksplicitno je zadan ako upit poÄinje sa imenom podržanog atributa i dvotoÄkom kao u %1 i %2." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "ZapoÄeto" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "ZapoÄeto (relativno)" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "PoÄinje" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "PoÄinje (relativno)" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Država" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "Status '%1' nije valjan za zahtjeve u ovoj kategoriji." #: etc/initialdata:449 msgid "Status Change" msgstr "Promjena statusa" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Status se promijenio iz %1 u %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Promjene statusa" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Ukrasti" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Ukrasti zahtjeve" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Korak %1 od %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "Ukradeno od %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Stil" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Naslov" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Prefiks naslova" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Naslov promijenjen u %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "Prefiks naslova" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "PoÅ¡alji" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Pretplati se" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Pretplati se na kontrolnu ploÄu %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Pretplati se na kontrolne ploÄe" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Pretplaćen na kontrolnu ploÄu %1" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Pretplata" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Dodavanje pretplate nije moguće: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Podaci uspjeÅ¡no dekriptirani" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Podaci uspjeÅ¡no kriptirani" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Sazetak" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "Ned" #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "Nedjelja" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "IskljuÄeno" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "Sustav" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Postavke sustava" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Postavke sustava" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "GreÅ¡ka sustava" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "GreÅ¡ka sustava: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Sistemski alati" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "GreÅ¡ka sustava" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "GreÅ¡ka sustava. Ovlast nije odobrena." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "Sistemska uloga grupe za internu uporabu" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Preuzmi" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Preuzmi zahtjeve" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Zahtjev preuzet" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Zadajte gdje se nalazi baza podataka koju će RT koristiti" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Predložak" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Predložak #%1 obrisan" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Predložak '%1' nije pronaÄ‘en" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "Predložak preveden" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "Predložak ne sadrži Perl kod" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Predložak je prazan" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Predložak je obavezan argument" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Predložak analiziran" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "GreÅ¡ka kod prevoÄ‘enja predloÅ¡ka" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "GreÅ¡ka kod prevoÄ‘enja predloÅ¡ka: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "PredloÅ¡ci" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "PredloÅ¡ci za kategoriju %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Tekst" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Tekstualna datoteka nije prikazana jer je prikaz iskljuÄenu postavkama." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Navedena vrijednost već je postavljena" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "To nije valjana vrijednost za ovo vlastito polje" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Taj zahtjev ima nerijeÅ¡ene ovisnosti" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Taj korisnik već posjeduje taj zahtjev" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Taj korisnik ne postoji" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Taj korisnik je već privilegiran" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Taj korisnik je već neprivilegiran" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Navedeni korisnik je sada privilegiran" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Navedeni korisnik je sada neprivilegiran" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Ovaj korisnik ne može biti rjeÅ¡avatelj zahtjeva u toj kategoriji" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "To nije numeriÄki Id" #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Osnovno" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "CC zahtjeva" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "Klasa Älanka zadanog sa %1 nije primjenjena na trenutnu kategoriju" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Lozinka administratora baze podataka" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "Administrativni CC zahtjeva" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Naziv domene poslužitelja baze podataka (kao 'db.example.com')." #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "Sljedeća naredba će pronaći sve aktivne zahtjeve u kategoriji 'Općenito' i postaviti njihov prioritet na 99 ako su u zakaÅ¡njenju:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Sljedeći upiti su obrisani i biti će uklonjeni sa kontrolne ploÄe jednom kad se njen prikaza ažurira." #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Sljedeći upiti možda neće biti vidljivi svim korisnicima koji vide ovu kontrolnu ploÄu." #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "KljuÄ je deaktiviran" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "KljuÄ je opozvan" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "KljuÄ je istekao" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "KljuÄu se potpuno vjeruje" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "KljuÄu se beskrajno vjeruje" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Nova vrijednost je postavljena." #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "RjeÅ¡avatelj zahtjeva" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Stranica koju ste tražili nije pronaÄ‘ena" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Prijavitelj zahtjeva" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "Odabrane postavke spremljene su u %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Sustav ne može potpisati odlazne poruke elektroniÄke poÅ¡te. To obiÄno znaÄi da lozinka nije ispravno postavljena ili je GPG Agent ugaÅ¡en. Molim odmah obavijestite administratora sustava. ProblematiÄne adrese su:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Dostupno je viÅ¡e kljuÄeva za kriptiranje." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "U ovom zahtjevu ima neproÄitanih poruka." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Povjerenje u ovaj kljuÄ je marginalno" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "Postoji viÅ¡e od jedne grupe s imenom '%1'. To može uzrokovati nekonzistentnost u dijelovima suÄelja za administraciju pa preporuÄujemo da preimenujete grupe koje su u konfliktu." #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Nema raspoloživih kljuÄeva za kriptiranje." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Na raspolaganju je jedan kljuÄ, ali vrijednost povjerenja nije postavljena." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Slijedeće postavke potrebno je definirati da bi RT radio. Treba zadati naziv RT instalacije i domenu na kojoj se RT nalazi. TakoÄ‘er je potrebno postaviti lozinku standardnog RT administratora." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Ovo vlastito polje ne može imati listu vrijednosti" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "Ova klasa se ne odnosi na navedeni objekt" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "Ovo vlastito polje nema naÄin prikaza" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Ova karakteristika je dostupna samo administratorima sustava" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Ova mogućnost je dostupna samo administratorima sustava." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "Poslužiteljski proces nije zabilježio ni jedan SQL upit." #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Ovaj alat dopuÅ¡ta korisniku rad s proizvoljnim Perl modulima iz RT-a." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Ova transakcija vjerojatno nema sadržaja" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "%1 %2 zahtjeva najviÅ¡eg prioriteta ovog korisnika" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "ÄŒet" #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "ÄŒetvrtak" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Zahtjev" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Zahtjev #%1 sve ažurirati: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Graf veza za zahtjev #%1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Zahtjev #%1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Zahtjev %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Zahtjev %1 napravljen u kategoriji '%2'" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Zahtjev %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Tijek zahtjeva Br. %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Zahtjev rijeÅ¡en" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Pretraživanje zahtjeva" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Transakcije zahtjeva" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Zahtjevi i transakcije" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Sastavljanje zahtjeva" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Sadržaj zahtjeva" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Tip sadržaja zahtjeva" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Zahtjev nije mogao biti napravljen zbog interne greÅ¡ke" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Zahtjev nije moga biti uÄitan" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Prikaz zahtjeva" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "O zahtjevu" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Status zahtjeva promijenjen" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Ažuriranje zahtjeva" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "TicketSQL modul za pretraživanje" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Zahtjevi" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Zahtjevi %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Zahtjevi %1 od %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Zahtjevi Äiji sam rjeÅ¡avatelj" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Zahtjevi koji ovise o ovom odobrenju:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Procijenjeno vrijeme" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Preostalo vrijeme" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Vrijeme rada" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Vrijeme za prikaz" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "PredviÄ‘eno vrijeme" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "Preostalo vrijeme" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "Vrijeme rada" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Vremenska zona" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Naslov" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Za" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Za pitanja o podrÅ¡ci, edukaciji, razvoju kao i licencama, molimo kontaktirajte %1." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "UkljuÄi/iskljuÄi %quant(%1,upit,upita)" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "UkljuÄi/iskljuÄi popis poziva" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Uneseno" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "Uneseno (relativno)" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Alati" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Naziv teme" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "ÄŒlanstvo teme dodano" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "ÄŒlanstvo teme obrisano" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Tema nije pronaÄ‘ena" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Teme" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Ukupno" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "Transakcija" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transakcija %1 proÄišćena" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transakcija napravljena" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Transakcija vlastita polja" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Transakcija->Napraviti nije izvrÅ¡eno jer nisu navedeni tip i id objekta" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "Datum transakcije" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Transakcije su nepromjenjive" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Povjerenje" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "Uto" #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "Utorak" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "Tip" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "UpiÅ¡ite a: prije broja Älanka i t: prije broja zahtjeva." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Tip promijenjen iz '%1' u '%2'" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "Nije uspjelo dodavanje Älanstva teme" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "Nije uspjelo brisanje Älanstva teme u %1" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "OdreÄ‘ivanje tipa ili identifikatora objekta nije moguće" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Nije uspjelo uÄitavanje Älanka" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "Nije uspjelo postavljanje korisniÄkog CSS-a: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "Nije uspjelo postavljanje korisniÄkog loga: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "Nije uspjelo postavljanje identifikatora privatnosti: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "Nije uspjelo postavljanje objekta ili identifikatora privatnosti: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "Nije uspjelo postavljanje objekta privatnosti: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Uklanjanjam oznake iskljuÄuju se obavijesti za dotiÄne primatelje samo za ovu transakciju; trajno iskljuÄivanje obavijesti može se podesiti na stranici Osobe." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Vraćanje obrisanog" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Unix prijava" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Nepoznato (povjerenje nije postavljeno)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Nepoznato (ova vrijednost je nova u sustavu)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Nepoznato kodiranje sadržaja %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Nepoznato polje: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "Ako status nije zadan pretražuju se samo zahtjevi koji su aktivni (%1)." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "NeograniÄeno" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "NeograniÄeno" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Neimenovana kontrolna ploÄa" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Nepoznata pretraga" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Zahtjevi bez rjeÅ¡avatelja" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Neprivilegirani" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Neodabrana vlastita polja" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Neodabrane kategorije" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Neodabrani objekti" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "PoniÅ¡ti privatni kljuÄ" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Vraćeno" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Ažuriraj" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Ažuriraj graf" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Ažuriraj graf" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Ažuriraj zahtjev" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Tip ažuriranja" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Ažuriraj prikaz i pretraži" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Ažuriraj viÅ¡e zahtjeva" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Ažuriranje nije zabilježeno." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Ažuriraj zahtjev" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Ažuriraj zahtjev #%1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Ažuriraj zahtjev #%1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Tip ažuriranja nije bio ni korespondencija ni komentar." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "Ažuriraj status" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Ažurirano" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Ažurirana spremljena pretraga \"%1\"" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "UÄitaj s raÄunala" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "UÄitaj novi logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "UÄitaj nekoliko datoteka s raÄunala" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "UÄitaj nekoliko slika s raÄunala" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "UÄitaj jednu datoteku s raÄunala" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "UÄitaj jednu sliku s raÄunala" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "UÄitaj do %1 Datoteka s raÄunala" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "UÄitaj do %1 slika s raÄunala" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "KoriÅ¡tenje:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "Koristi raspored sa dvije kolone u formama za dodavanje i izmjenu?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Koristi automatsko dovrÅ¡avanje za pronalazak rjeÅ¡avatelja?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Koristi standardno (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Ostali RT administrativni alati" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Koristi postavke sustava (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Koristite padajuće izbornike za odabir ažuriranja zahtjeva koje želite ukljuÄiti u novi Älanak." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Korisnik" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Korisnik (napravljen - istiÄe)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Definirano od strane korisnika" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "KorisniÄke grupe" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "Informacije o korisniku" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "KorisniÄke ovlasti" #: share/html/User/Search.html:48 msgid "User Search" msgstr "Pretraživanje korisnika" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Korisnik upitan o nepoznatom tipu ažuriranja za vlastito polje %1 za %2 objekt #%3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Korisnika nije bilo moguće napraviti: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Korisnik napravljen" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Korisnik deaktiviran" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Korisnik aktiviran" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Korisnik nema definiranu adresu elektroniÄke poÅ¡te" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "korisnik uÄitan" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Grupe definirane od korisnika" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "KorisniÄko ime" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Format korisniÄkog imena" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Korisnici" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Korisnici koji se podudaraju s kriterijima pretrage" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Koristim transakciju #%1..." #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Valjani upit" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Provjera" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Vrijednost" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Vrijednosti" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Postavka" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "InaÄica" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Prikaži predloÅ¡ke natuknica" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Prikaži natuknice" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Prikaži vrijednosti vlastitih polja" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Prikaži vlastita polja" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Prikaži primatelje i cijeli sadržaj poslanih email poruka" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Prikaži grupu" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Prikaži grupne kontrolne ploÄe" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Pregledaj osobne korisniÄke ploÄe" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Prikaži kategoriju" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Prikaži spremljene pretrage" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Pregledaj korisniÄke ploÄe sustava" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Prikaži privatne komentare zahtjeva" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Prikaži sažetke zahtjeva" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "UPOZORENJE: Spremljena pretraga će biti vidljiva samo korisniku" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Visina WYSIWYG ureÄ‘ivaÄa" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "WYSIWYG ureÄ‘ivaÄ poruka" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Pozor! Ovo NIJE potpisano!" #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "PromatraÄ" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "Grupa promatraÄa" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "PromatraÄi" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Baza podataka je pronaÄ‘ena i prijava kao administrator baze radi. Kliknite na 'Osnovno podeÅ¡avanje' za nastavak RT podeÅ¡avanja." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Prikaz u obliku liste nije moguć kad se kategorije baziraju na drugom vlastitom polju. Molimo odaberite drugi naÄin prikaza." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Potrebno je unijeti ime baze podataka koju će RT koristiti i gdje se ista nalazi. TakoÄ‘er treba zadati korisniÄko ime i lozinku koju će RT koristiti za spajanje na bazu. RT može dodati bazu i korisnika, ali je za to potrebno unijeti korisniÄko ime i lozinku korisnika s administratorskim ovlastima na bazi podataka. U 6. koraku instalacijske procedure ti podaci koristit će se za stvaranje i inicijalizaciju RT baze podataka." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Web prikljuÄak" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "Sri" #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "Srijeda" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Tjedno" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Tjedni sažetak" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "DobrodoÅ¡li u RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Å to sam danas radio" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Å to je RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Gdje treba preusmjeriti poruke elektroniÄke poÅ¡te koje RT ne može obraditi?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "RT prilikom slanja poruka elektroniÄke poÅ¡te postavlja zaglavlja From: i Reply-To: tako da korisnici mogu ažurirati zahtjev odgovarajući na poruku iz svog klijenta za elektroniÄku poÅ¡tu. Za odgovore i komentare koriste se razliÄite adrese elektroniÄke poÅ¡te. Ove adrese mogu se podesiti za svaku od kategorija. Za te adrese potrebno je postaviti i koriÅ¡tenje programa rt-mailgate." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Kad je zahtjev napravljen" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Kad je zahtjev napravljen, obavijesti rjeÅ¡avatelja i adminCc o predmetu koji Äeka njihovo odobrenje" #: etc/initialdata:137 msgid "When anything happens" msgstr "Kad se bilo Å¡to dogodi" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Kad kliknete na 'Provjeri dostupnost baze podataka' moguća je kraća pauza dok se RT pokuÅ¡ava spojiti na vaÅ¡u bazu podataka" #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Uvijek kad se zahtjev rijeÅ¡i" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Uvijek kad se zahtjev prosljeÄ‘uje" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Uvijek kad se zahtjev odbije" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Uvijek kad se zahtjev ponovo otvori" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Uvijek kad se rijeÅ¡i zahtjev" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Uvijek kad se zahtjev ili transakcija prosljeÄ‘uje" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Uvijek kad se promijeni rjeÅ¡avatelj zahtjeva" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Uvijek kad se promijeni prioritet zahtjeva" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Uvijek kad se promijeni kategorija zahtjeva" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Uvijek kad se promijeni status zahtjeva" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Uvijek kad se transakcija prosljeÄ‘uje" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Uvijek kad se pojavi uvjet definiran od korisnika" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Uvijek kad uÄ‘u komentari" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Uvijek kad uÄ‘e korespondencija" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Staza do programa sendmail." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "ObriÅ¡i" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Posao" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Posao" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Vrijeme rada" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Da" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Možete ažurirati ovu kontrolnu ploÄu i pretplatiti se na nju u RT-u." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Već posjedujete ovaj zahtjev" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "Niste autorizirani za koriÅ¡tenje RT-a." #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Možete skoÄiti na prvu neproÄitanu poruku ili skoÄiti na prvu neproÄitanu poruku i oznaÄiti sve poruke kao proÄitane." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "Za odreÄ‘ivanje boja možete kliknuti i na gornji logo." #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "TakoÄ‘er možete urediti i samu predefiniranu pretragu" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "Ako želite možete promijeniti predložak" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Sadržaj zahtjeva možete dodati u bilo koje slobodno, tekstualno ili polje s wiki tekstom." #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Ne možete promijeniti lozinku." #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Možete samo dodjeljivati zahtjeve koje posjedujete ili koji nemaju rjeÅ¡avatelja" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "Možete ukrasti zahtjev samo ako mu je netko drugi vlasnik" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Možete preuzeti samo zahtjeve koji nemaju rjeÅ¡avatelja" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Možete pretraživati bilo koju rijeÄ u povijesti zahtjeva unoseći %1rijeÄ." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Nije moguće promijeniti status iz '%1' u '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Nemate prava SuperKorisnika." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Odjavljeni ste iz RT-a." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Nemate dopuÅ¡tenje za pravljenje zahtjeva u toj kategoriji." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Možete unijeti poveznice na Älanke kao \"a:###\", gdje ### predstavlja broj Älanka." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Morate unijeti administratorsku lozinku" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "Morate ukljuÄiti postavku StatementLog da bi aktivirali stranicu povijesti upita." #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Nakon ovoga trebala bi se prikazati stranica za prijavu. Možete se prijaviti sa korisniÄkim imenom %1 i lozinkom koju ste prije zadali." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Odaberite bazu s kojom ste vi ili vaÅ¡ administrator baze podataka najviÅ¡e upoznati." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "VaÅ¡ sustav za prijavu odjavio vas je iz RT-a. Ako se radi o privremenom problemu, ponovno uÄitavanje ove stranice bi trebalo pomoći." #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Ova stranica je prikazana jer se pokrenuli RT poslužitelj bez radeće baze podataka. Najvjerojatnije ovo je prvi put da ste pokrenuli RT. Ako dolje kliknete na \"%1\", RT će vas voditi kroz postavljanje vaÅ¡eg RT poslužitelja i baze podataka." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Možete se ponovno prijaviti" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "VaÅ¡a lozinka nije postavljena." #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "VaÅ¡ sustav podržava automatske prijedloge boja za: %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "VaÅ¡e korisniÄko ime ili lozinka je neispravno" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "PoÅ¡tanski broj" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Dolje]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Gore]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[niÅ¡ta]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "vlastito polje" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "aktivno" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "Nakon" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "nakon odabira veze" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "nakon Å¡to se uÄita ostatak stranice" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "i prije" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "a ne" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "StupÄasti" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "Prije" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "tijelo" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "prema gore" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "odaberite ovu kućicu da bi se ova klasa primijenila na sve kategorije." #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "odaberite ovu kućicu da bi se ovo vlastito polje primijenilo na sve objekte." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "odaberite ovu kućicu za primjenu natuknice na sve objekte." #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "odaberite ovu kućicu za brisanje klase globalno i omogućavanja dodavanja na pojedine kategorije." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "odaberite ovu kućicu za brisanje ovog vlastitog polja sa svih objekata i omogućavanja dodavanja na pojedine objekte." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "odaberite kućicu za brisanje natuknice sa svih objekata i dodavanje na pojedinaÄne objekte." #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "odaberite za dodavanje" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "kliknite za dodavanje/brisanje odabira svih objekata odjednom" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "osnovna konfiguracija" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "napravi zahtjev" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "dnevno u %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "upravljaÄke ploÄe u izborniku" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "obrisano" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "se ne podudara sa" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "preuzmi" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "trajanje" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "prazno ime" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "jednako je" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "greÅ¡ka: ne može se pomicati dolje" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "greÅ¡ka: ne može se pomicati ulijevo" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "greÅ¡ka: ne može se pomicati gore" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "greÅ¡ka: nema niÄega za obrisati" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "greÅ¡ka: nema niÄega za pomicati" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "greÅ¡ka: nema niÄega za prebaciti" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "svakih" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "dodatak uspjeÅ¡no izvrÅ¡en" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "potpuno" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "veće od" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "grupa" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "grupa %1" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "grupa '%1'" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "odmah" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "u klasi %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "neaktivno" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "sadrži %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "indeks" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "neispravan datum zavrÅ¡etka: %1" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "je" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "nije" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "kljuÄ deaktiviran" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "kljuÄ istekao" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "kljuÄ opozvan" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "udesno" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "manje od" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "marginalno" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "se podudara sa" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "maksimalna dubina" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minute" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "ažuriranje RT postavki" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "ažuriranje kontrolne ploÄe" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "ažuriranje ili koriÅ¡tenje pretrage" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "izmjena vlastitih postavki" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "mjeseÄno" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "mjeseÄno (%1. u mjesecu) u %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "nikad" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "novo" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "ne" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "nijedan" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "nije jednako" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "niÅ¡ta" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "objekti su uspjeÅ¡no obrisani" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "Pri" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "na datum" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "jedan" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "otvoreno" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "pokaži/sakrij" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "ostalo..." #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "izvrÅ¡i akcije" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "Kružni" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "dodatak je vratio praznu listu" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "kategorija %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "odbijeno" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "zahtjeva aktiviran rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "rijeÅ¡eno" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "ulijevo" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "pogledajte donji popis objekata" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "Izbornik sa strane" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "konfiguracija sjediÅ¡ta" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "zaustavljeno" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "upit" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "redci sažetka" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "sustav %1" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "grupu sustava '%1'" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "zaglavlje Referrer koje je poslao vaÅ¡ preglednik (%1) ne odgovara postavljenom imenu RT poslužitelja (%2)" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "zaglavlje Referrer koje je poslao vaÅ¡ preglednik (%1) ne odgovara postavljenom imenu RT poslužitelja (%2) niti listi dopuÅ¡tenih imena (%3)" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "komponenta zvanja nije navela zaÅ¡to" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "standardna adresa koja će se prikazivati u zaglavljima From: i Reply-To: poruka komentara" #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "standardna adresa koja će se prikazivati u zaglavljima From: i Reply-To: poruka korespondencije" #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "zahtjev #%1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "prema dolje" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "beskrajno" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "neopisana grupa %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "neograniÄeno" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "ažuriraj zahtjev" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "ažuriraj odobrenje" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "ažuriraj Älanak" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "korisnik" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "korisnika %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "korisniÄko ime" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "tjedno" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "tjedno (%1) u %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "tjedna" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "koji može %1 u vaÅ¡e ime." #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "na kojem će prikljuÄku sluÅ¡ati vaÅ¡ web poslužitelj, npr. 8080" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "sa zaglavljima" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "da" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "vaÅ¡ preglednik nije poslao Referrer zaglavlje" rt-4.4.2/share/po/nb.po0000664000175000017500000125136613131430353014527 0ustar vagrantvagrant# Norwegian Bokmal translation for rt # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the rt package. # FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: rt\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2016-07-20 22:51+0000\n" "PO-Revision-Date: 2015-11-09 10:07+0000\n" "Last-Translator: Shawn M Moore \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-05-31 23:12+0000\n" "X-Generator: Launchpad (build 18391)\n" #: share/html/Articles/Elements/NewestArticles:51 share/html/Articles/Elements/UpdatedArticles:51 share/html/Elements/ColumnMap:62 share/html/Elements/RT__ScripAction/ColumnMap:56 share/html/Elements/RT__ScripCondition/ColumnMap:56 msgid "#" msgstr "" #. ($Ticket->Id, $Ticket->Subject || '') #. ($Ticket->id, $Ticket->Subject) #. ($TicketObj->Id, $TicketObj->Subject || '') #. ($asset->id, $asset->Name) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($object->Id, $object->Subject || '') #. ($t->Id, $t->Subject || '') #. ($ticket->Id, $ticket->Subject) #: lib/RT/URI/fsck_com_rt.pm:222 share/html/Approvals/Elements/Approve:50 share/html/Approvals/Elements/ShowDependency:73 share/html/Helpers/Autocomplete/Tickets:105 share/html/SelfService/Display.html:48 share/html/Ticket/Display.html:217 share/html/Ticket/Elements/ShowAssets:121 share/html/Ticket/Elements/ShowAssetsOnCreate:109 share/html/m/ticket/history:56 share/html/m/ticket/show:205 msgid "#%1: %2" msgstr "%1: %2" #. ($self->Data) #: lib/RT/Transaction.pm:1148 lib/RT/Transaction.pm:1187 msgid "%1" msgstr "" #. ($self->ObjectType, $object->Id) #: lib/RT/URI/fsck_com_rt.pm:229 msgid "%1 #%2" msgstr "%1 %2" #. ($self->loc($class), $self->Instance, $self->Name) #: lib/RT/Group.pm:132 msgid "%1 #%2 %3" msgstr "" #. (loc($record_type), $Transaction->ObjectId) #: share/html/Elements/ShowTransaction:130 msgid "%1 #%2:" msgstr "" #. ($self->ObjectType, $object->Id, $name) #: lib/RT/URI/fsck_com_rt.pm:227 msgid "%1 #%2: %3" msgstr "" #. ($args{'FIELD'}, $args{'OPERATOR'}, $args{'VALUE'}) #: lib/RT/Tickets.pm:1532 msgid "%1 %2 %3" msgstr "" #. ($wday,$mon,$mday,$year) #: lib/RT/Date.pm:759 msgid "%1 %2 %3 %4" msgstr "%1 %3. %2 %4" #. ($wday,$mon,$mday,$hour,$min,$year) #: lib/RT/Date.pm:774 msgid "%1 %2 %3 %4:%5 %6" msgstr "%1 %3. %2 %6 %4.%5" #. ($wday,$mon,$mday,$hour,$min,$sec,$year) #: lib/RT/Date.pm:771 msgid "%1 %2 %3 %4:%5:%6 %7" msgstr "%1 %3. %2 %7 %4.%5.%6" #. ($cf->Name, $new_content) #. ($field, $new) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2066 lib/RT/Transaction.pm:1048 lib/RT/Transaction.pm:1091 msgid "%1 %2 added" msgstr "%1 %2 lagt til" #. ($cf->Name, $old_content, $new_content) #. ($field, $old, $new) #: lib/RT/Record.pm:2073 lib/RT/Transaction.pm:1054 msgid "%1 %2 changed to %3" msgstr "%1 «%2» endret til «%3»" #. ($cf->Name, $old_content) #. ($field, $old) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Record.pm:2070 lib/RT/Transaction.pm:1051 lib/RT/Transaction.pm:1097 msgid "%1 %2 deleted" msgstr "%1 %2 slettet" #. (loc($self->{SearchType}), $self->{CurrentSearch}{Object}->Description) #: share/html/Widgets/SavedSearch:143 msgid "%1 %2 deleted." msgstr "%1 %2 slettet." #. ($self->loc($column), $args{Value}) #: lib/RT/Record/Role/Status.pm:256 msgid "%1 %2 does not exist" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:261 msgid "%1 %2 is disabled" msgstr "" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:133 msgid "%1 %2 saved." msgstr "%1 %2 lagret" #. (loc($self->{SearchType}), $args->{SavedSearchDescription}) #: share/html/Widgets/SavedSearch:114 msgid "%1 %2 updated." msgstr "%1 «%2» oppdatert" #. ($_[0]->loc($_[0]->ConditionObj->Name), $_[0]->loc($_[0]->ActionObj->Name), $_[0]->loc($_[0]->Template),) #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->Template)) #: share/html/Elements/RT__Scrip/ColumnMap:102 share/html/Helpers/PreviewScrips:101 msgid "%1 %2 with template %3" msgstr "%1: %2 med malen «%3»" #. (loc("Canonicalizer"), $CanonicalizeClass) #: share/html/Admin/CustomFields/Modify.html:283 msgid "%1 '%2' added" msgstr "" #. (loc("Canonicalizer"), $original) #: share/html/Admin/CustomFields/Modify.html:287 msgid "%1 '%2' removed" msgstr "" #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $m->scomp('/Elements/ShowUser', User => $rev->CreatorObj)) #. ($rev->CreatedAsString, $rev->FriendlyContentLength, $rev->CreatorObj->Name) #: share/html/Ticket/Elements/ShowAttachments:77 share/html/m/ticket/show:326 msgid "%1 (%2) by %3" msgstr "%1 (%2) av %3" #. ($TicketObj->OwnerObj->Format) #. ($t->OwnerObj->Format) #. (loc($TicketObj->Status)) #. (loc('Approve')) #. (loc('Deny')) #: share/html/Approvals/Elements/Approve:72 share/html/Approvals/Elements/Approve:81 share/html/Ticket/Elements/SelectStatus:64 share/html/Ticket/Update.html:105 share/html/m/ticket/reply:77 msgid "%1 (Unchanged)" msgstr "%1 (uendret)" #. (($_->{description} || $_->{name}), $_->{pane}) #: share/html/Dashboards/Elements/Deleted:57 msgid "%1 (from pane %2)" msgstr "%1 (fra panel %2)" #. ("--log") #: bin/rt-crontool:347 msgid "%1 - Adjust LogToSTDERR config option" msgstr "%1 – endre innstillingen «LogToSTDERR»" #. ("--condition-arg", "--condition") #. ("--search-arg", "--search") #: bin/rt-crontool:322 bin/rt-crontool:329 msgid "%1 - An argument to pass to %2" msgstr "%1 – et argument som skal sendes til %2" #. ("--action-arg", "--action") #: bin/rt-crontool:335 msgid "%1 - An argument to pass to %2. This option may be repeated to pass corresponding arguments to multiple calls of %2." msgstr "" #. ("--verbose") #: bin/rt-crontool:349 msgid "%1 - Output status updates to STDOUT" msgstr "%1 – send statusoppdateringer til standard ut" #. ("--transaction") #: bin/rt-crontool:341 msgid "%1 - Specify if you want to use either 'first', 'last' or 'all' transactions" msgstr "%1 – om du vil bruke «first» (første), «last» (siste) eller «all» (alle) transaksjoner" #. ("--template") #: bin/rt-crontool:338 msgid "%1 - Specify name or id of template(s) you want to use" msgstr "%1 – navn eller ID til malen(e) du vil bruke" #. ("--action") #: bin/rt-crontool:332 msgid "%1 - Specify the action module you want to use. This option may be repeated to apply multiple actions to found tickets." msgstr "" #. ("--transaction-type") #: bin/rt-crontool:344 msgid "%1 - Specify the comma separated list of transactions' types you want to use" msgstr "%1 – kommadelt liste over transaksjonstypene du vil bruke" #. ("--condition") #: bin/rt-crontool:326 msgid "%1 - Specify the condition module you want to use" msgstr "%1 – betingelsesmodulen du vil bruke" #. ("--search") #: bin/rt-crontool:319 msgid "%1 - Specify the search module you want to use" msgstr "%1 – søkemodulen du vil bruke" #. (loc($Class)) #: share/html/Search/Elements/PickObjectCFs:72 msgid "%1 CFs" msgstr "" #. ('»|«', $RT::VERSION, '2017', 'Best Practical Solutions, LLC',) #. ('', '', '2017', 'Best Practical Solutions, LLC',) #: share/html/Elements/Footer:56 share/html/m/_elements/footer:51 msgid "%1 RT %2 Copyright 1996-%3 %4." msgstr "%1 RT %2 Copyright 1996–%3 %4." #. ($package) #: share/html/Admin/Elements/UpgradeHistory:58 msgid "%1 Version" msgstr "" #. ($args{'Value'}, $cf->Name) #: lib/RT/Record.pm:2107 msgid "%1 added as a value for %2" msgstr "«%1» lagt til som verdi for «%2»" #. ($email) #. ($record->Name) #: share/html/Dashboards/Subscription.html:297 share/html/Dashboards/Subscription.html:325 msgid "%1 added to dashboard subscription recipients" msgstr "" #. (join ' ', @res) #: lib/RT/Date.pm:489 msgid "%1 ago" msgstr "" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:177 msgid "%1 already exists and has RT's tables in place, but does not contain RT's metadata. The 'Initialize Database' step later on can insert metadata into this existing database. If this is acceptable, click 'Customize Basics' below to continue customizing RT." msgstr "%1 finnes fra før, og har RT-tabellene pÃ¥ plass, men inneholder ikke RT-metadata. Steget «Gjør klar database», som kommer senere, kan automatisk sette inn de nødvendige metadataene i databasen. Hvis dette er i orden, kan du trykke «Tilpass detaljer» for Ã¥ fortsette Ã¥ sette opp RT." #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:182 msgid "%1 already exists, but does not contain RT's tables or metadata. The 'Initialize Database' step later on can insert tables and metadata into this existing database. if this is acceptable, click 'Customize Basic' below to continue customizing RT." msgstr "%1 finnes fra før, men inneholder ikke tabeller eller metadata for RT. Steget «Gjør klar database», som kommer senere, kan automatisk sette inn de nødvendige tabellene og metadataene i databasen. Hvis dette er i orden, kan du trykke «Tilpass detaljer» for Ã¥ fortsette Ã¥ sette opp Request Tracker." #. ($princ_obj->DisplayName, $args{'RightName'}, $args{'ObjectType'}, $args{'ObjectId'}) #: lib/RT/ACE.pm:272 msgid "%1 already has the right %2 on %3 %4" msgstr "" #. ($args{'Base'}) #. ($args{'Target'}) #: lib/RT/Link.pm:176 lib/RT/Link.pm:184 msgid "%1 appears to be a local object, but can't be found in the database" msgstr "%1 ser ut til Ã¥ være et lokalt objekt, men finnes ikke i databasen" #. ($RT::DatabaseName) #: share/html/Install/DatabaseDetails.html:173 msgid "%1 appears to be fully initialized. We won't need to create any tables or insert metadata, but you can continue to customize RT by clicking 'Customize Basics' below" msgstr "%1 ser alt ut til Ã¥ være klargjort. Det er derfor ikke nødvendig Ã¥ opprette tabeller eller sette inn metadata, og du kan fortsette Ã¥ tilpasse Request Tracker ved trykke «Tilpass detaljer»." #. ($m->interp->apply_escapes($AssetObj->CreatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->CreatorObj)) #. ($m->interp->apply_escapes($AssetObj->LastUpdatedAsString, 'h'), $m->scomp('/Elements/ShowUser', User => $AssetObj->LastUpdatedByObj)) #. ($Ticket->LastUpdatedAsString, $Ticket->LastUpdatedByObj->Name) #. ($Ticket->LastUpdatedAsString, $m->scomp('/Elements/ShowUser', User => $Ticket->LastUpdatedByObj)) #. ($self->BriefDescription , $self->CreatorObj->Name) #: lib/RT/Transaction.pm:765 share/html/Asset/Elements/EditDates:55 share/html/Asset/Elements/EditDates:64 share/html/Asset/Elements/ShowDates:55 share/html/Asset/Elements/ShowDates:64 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "%1 by %2" msgstr "%1 av %2" #. ($group->Label) #: lib/RT/Record/Role/Roles.pm:487 msgid "%1 cannot be a group" msgstr "" #. ($group->Label, $original_user->Name, $principal->Object->Name) #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")) , "'". $self->NewValue."'") #. ($self->loc($self->Field), ($self->OldValue? "'".$self->OldValue ."'" : $self->loc("(no value)")), ($self->NewValue? "'".$self->NewValue ."'" : $self->loc("(no value)"))) #. ($self->loc($self->Field), $q1->Name // '#'.$q1->id, $q2->Name // '#'.$q2->id) #. ($self->loc( $args{'Field'} ), ( $old_val ? '"' . $old_val . '"' : $self->loc("(no value)") ), '"' . $self->__Value( $args{'Field'}) . '"',) #. ($self->Field, ( $self->OldValue ? "'" . $self->OldValue . "'" : $no_value ), "'" . $self->NewValue . "'") #. ($self->loc($self->Field), $t2->AsString, $t1->AsString) #: lib/RT/Record.pm:481 lib/RT/Ticket.pm:683 lib/RT/Transaction.pm:1197 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1216 lib/RT/Transaction.pm:1225 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:1333 lib/RT/Transaction.pm:922 msgid "%1 changed from %2 to %3" msgstr "%1 endret fra %2 til %3" #. (loc("Canonicalizer"), $original, $CanonicalizeClass) #. (loc("Render Type"), $original, $RenderType) #. (loc("Field values source"), $original, $ValuesClass) #: share/html/Admin/CustomFields/Modify.html:264 share/html/Admin/CustomFields/Modify.html:291 share/html/Admin/CustomFields/Modify.html:312 msgid "%1 changed from '%2' to '%3'" msgstr "%1 endret fra '%2' to '%3'" #. ($SavedSearch->{'Object'}->Description) #: share/html/Search/Elements/EditSearches:203 msgid "%1 copy" msgstr "%1-kopi" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:77 msgid "%1 core config" msgstr "%1-kjerneoppsett" #: lib/RT/Record.pm:1003 msgid "%1 could not be set to %2." msgstr "%1 kunne ikke settes til %2." #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:887 msgid "%1 created" msgstr "%1 opprettet" #. ($self->FriendlyObjectType) #: lib/RT/Transaction.pm:901 msgid "%1 deleted" msgstr "%1 slettet" #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:895 msgid "%1 disabled" msgstr "%1 deaktivert" #. ($ARGS{SendmailPath}) #: share/html/Install/Sendmail.html:86 msgid "%1 doesn't exist." msgstr "%1 finnes ikke." #. ($self->Field ? $self->loc($self->Field) : $self->FriendlyObjectType) #: lib/RT/Transaction.pm:891 msgid "%1 enabled" msgstr "%1 aktivert" #: etc/initialdata:849 msgid "%1 highest priority tickets I own" msgstr "%1 høyest prioriterte saker jeg eier" #. ($0) #: bin/rt-crontool:314 msgid "%1 is a tool to act on tickets from an external scheduling tool, such as cron." msgstr "%1 er et verktøy for Ã¥ behandle saker fra eksterne verktøy, som cron." #. ($0) #: sbin/rt-email-digest:83 msgid "%1 is a utility, meant to be run from cron, that dispatches all deferred RT notifications as a per-user digest." msgstr "%1 er et verktøy, ment for Ã¥ bli kjørt via cron, som sender alle avviste RT-varslinger som en samle-e-post for hver bruker." #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:484 msgid "%1 is already %2" msgstr "" #. ($self->loc($column), $name) #: lib/RT/Record/Role/Status.pm:264 msgid "%1 is already set to %2" msgstr "" #. ($email, $self->loc($args{Type})) #. ($name, $self->loc($args{Type})) #. ($email->format, loc($field =~ /^(.*?)s?$/)) #. ($email->format, loc(substr($field, 6))) #: lib/RT/Record/Role/Roles.pm:388 lib/RT/Record/Role/Roles.pm:396 share/html/Ticket/Create.html:493 share/html/Ticket/Update.html:350 share/html/m/ticket/create:189 share/html/m/ticket/reply:207 msgid "%1 is an address RT receives mail at. Adding it as a '%2' would create a mail loop" msgstr "%1 er en adresse RT tar imot e-post pÃ¥. Hvis du la henne til som en «%2», ville det oppstÃ¥ en e-postløkke." #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:588 msgid "%1 is no longer %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:720 msgid "%1 is no longer %2 for this ticket" msgstr "" #. ($old_value, $cf->Name) #: lib/RT/Record.pm:2241 msgid "%1 is no longer a value for custom field %2" msgstr "Fleksifeltet %2 har ikke lenger verdien %1" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:568 msgid "%1 is not a %2" msgstr "" #. ($args{'Lifecycle'}) #. ($value) #: lib/RT/Catalog.pm:217 lib/RT/Queue.pm:179 lib/RT/Record/Role/Lifecycle.pm:126 msgid "%1 is not a valid lifecycle" msgstr "%1 er ikke en gyldig livssyklus" #. (RT->Config->Get('Crypt')->{'Outgoing'}) #: share/html/Elements/Crypt/KeyIssues:50 msgid "%1 issues" msgstr "" #. ($protocol, $res{'info'}{'Formatted'}) #: share/html/Admin/Elements/ShowKeyInfo:61 msgid "%1 key '%2'" msgstr "" #. ($rows) #: share/html/Articles/Elements/UpdatedArticles:48 msgid "%1 most recently updated articles" msgstr "%1 nyligst oppdaterte artikler" #. ($ShowRelatedTickets) #: share/html/Ticket/Elements/ShowAssets:169 msgid "%1 most recently updated related tickets" msgstr "" #. ($rows) #: share/html/Articles/Elements/NewestArticles:48 msgid "%1 newest articles" msgstr "%1 nyeste artikler" #: etc/initialdata:860 msgid "%1 newest unowned tickets" msgstr "%1 nyeste saker uten eier" #: lib/RT/CustomField.pm:1381 msgid "%1 objects" msgstr "%1-objekt" #. ($record->Name) #: share/html/Dashboards/Subscription.html:328 msgid "%1 removed from dashboard subscription recipients" msgstr "" #. ($self->loc($self->Name), $new_member_obj->Object->Name) #. ($self->_CanonicalizeRoleName($self->Field), $self->_FormatPrincipal($principal)) #: lib/RT/Group.pm:1028 lib/RT/Transaction.pm:1103 msgid "%1 set to %2" msgstr "" #. ($meta->{'Source'}{'Extension'}) #: share/html/Admin/Tools/Configuration.html:74 msgid "%1 site config" msgstr "%1-nettstedoppsett" #. (ucfirst($self->ObjectName), $msg) #: lib/RT/SharedSetting.pm:259 msgid "%1 update: %2" msgstr "Oppdatering av %1: %2" #. (ucfirst($self->ObjectName)) #: lib/RT/SharedSetting.pm:252 msgid "%1 update: Nothing changed" msgstr "Oppdatering av %1: ingenting endret" #. ($self->loc( $args{'Field'} ),) #: lib/RT/Record.pm:474 lib/RT/SharedSetting.pm:256 msgid "%1 updated" msgstr "%1 oppdatert" #: lib/RT/CustomField.pm:1382 msgid "%1's %2 objects" msgstr "%1 sine %2 objekt" #: lib/RT/CustomField.pm:1383 msgid "%1's %2's %3 objects" msgstr "%1 sine %2 sine %3 objekt" #. ($session{'CurrentUser'}->Name()) #: share/html/Elements/EditPassword:55 msgid "%1's current password" msgstr "%1 sitt gjeldende passord" #. ($object->Format) #. ($object->Name) #. ($Object->Name) #: share/html/Dashboards/Elements/SelectPrivacy:63 share/html/Dashboards/Elements/SelectPrivacy:65 share/html/Dashboards/Elements/ShowDashboards:55 msgid "%1's dashboards" msgstr "%1 sine utforminger" #. ($UserObj->Name) #: share/html/Admin/Users/Keys.html:48 msgid "%1's encryption keys" msgstr "" #. ($Object->Format) #. ($Object->Name) #. ($privacies{$privacy}->Name) #: share/html/Articles/Article/Elements/SelectSavedSearches:56 share/html/Elements/SavedSearches:56 share/html/Search/Elements/SearchPrivacy:56 share/html/Search/Elements/SearchPrivacy:58 msgid "%1's saved searches" msgstr "%1 sine lagrede søk" #. ($self) #: lib/RT/Transaction.pm:707 msgid "%1: no attachment specified" msgstr "%1: ingen vedlegg oppgitt" #. ($hour,$min) #: lib/RT/Date.pm:766 msgid "%1:%2" msgstr "%1.%2" #. ($hour,$min,$sec) #: lib/RT/Date.pm:763 msgid "%1:%2:%3" msgstr "%1.%2.%3" #. ($size) #: lib/RT/Attachment.pm:464 msgid "%1B" msgstr "%1 byte" #. (int( $size / 102.4 ) / 10) #: lib/RT/Attachment.pm:461 msgid "%1KiB" msgstr "%1 KiB" #: lib/RT/Date.pm:470 msgid "%1M" msgstr "" #. (int( $size / 1024 / 102.4 ) / 10) #: lib/RT/Attachment.pm:458 msgid "%1MiB" msgstr "" #. ($button_start, $button_end, $queue_selector) #: share/html/Elements/CreateTicket:54 msgid "%1New ticket in%2 %3" msgstr "%1Ny sak i%2 %3" #: lib/RT/Date.pm:464 msgid "%1W" msgstr "" #: lib/RT/Date.pm:476 msgid "%1Y" msgstr "" #: lib/RT/Date.pm:458 msgid "%1d" msgstr "" #: lib/RT/Date.pm:452 msgid "%1h" msgstr "" #: lib/RT/Date.pm:446 msgid "%1m" msgstr "" #. (sprintf('%.4f', $duration)) #. (sprintf('%.4f', $seconds)) #: lib/RT/Date.pm:440 share/html/Admin/Tools/Queries.html:122 share/html/Admin/Tools/Queries.html:85 msgid "%1s" msgstr "" #. ($Articles->Count) #: share/html/Articles/Elements/ShowTopicLink:61 msgid "%quant(%1,article,articles)" msgstr "" #: lib/RT/Date.pm:459 msgid "%quant(%1,day,days)" msgstr "" #: lib/RT/Date.pm:453 msgid "%quant(%1,hour,hours)" msgstr "%quant(%1,time,timer)" #. ($h, $value) #. (sprintf("%.2f",$minutes / 60), $minutes) #: lib/RT/Ticket.pm:1383 share/html/Ticket/Elements/ShowTime:51 msgid "%quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($Transaction->TimeTaken) #. ($minutes) #. ($value) #: lib/RT/Date.pm:447 lib/RT/Ticket.pm:1380 share/html/Elements/ShowTransaction:137 share/html/Ticket/Elements/ShowTime:49 msgid "%quant(%1,minute,minutes)" msgstr "%1 minutt" #: lib/RT/Date.pm:471 msgid "%quant(%1,month,months)" msgstr "" #: lib/RT/Date.pm:441 msgid "%quant(%1,second,seconds)" msgstr "" #: lib/RT/Date.pm:465 msgid "%quant(%1,week,weeks)" msgstr "" #: lib/RT/Date.pm:477 msgid "%quant(%1,year,years)" msgstr "" #. ($name) #: lib/RT/CustomRole.pm:282 lib/RT/Queue.pm:276 msgid "'%1' is not a valid name." msgstr "'%1' er ikke et gyldig navn" #. ($Class) #: share/html/Articles/Article/Edit.html:110 msgid "'%1' isn't a valid class" msgstr "" #. ($Class) #: share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70 msgid "'%1' isn't a valid class identifier" msgstr "'%1' er ikke en gyldig kategoriidentifikator" #: share/html/Ticket/Elements/Reminders:105 msgid "(Check box to complete)" msgstr "(Hak av boks for Ã¥ fullføre)" #: share/html/Admin/Elements/EditCustomFieldValues:88 share/html/Admin/Elements/EditTemplates:70 share/html/Admin/Groups/Members.html:107 share/html/Admin/Queues/People.html:64 share/html/Asset/Elements/EditCatalogPeople:59 share/html/Elements/BulkLinks:109 share/html/Elements/EditLinks:104 share/html/Ticket/Elements/EditPeople:88 msgid "(Check box to delete)" msgstr "(Kryss av for Ã¥ fjerne.)" #: share/html/Articles/Article/Elements/EditLinks:54 msgid "(Check boxes to delete)" msgstr "(Merk boksene for Ã¥ slette)" #: share/html/Asset/Search/Bulk.html:132 share/html/Elements/BulkCustomFields:99 msgid "(Check to delete all values)" msgstr "" #: share/html/m/ticket/create:389 msgid "(Enter ticket ids or URLs, separated with spaces)" msgstr "(skriv inn saksnummer eller nettadresser, skilt med mellomrom)" #. ($count) #: share/html/Elements/ShowSearch:140 share/html/User/Elements/TicketList:109 msgid "(Found %quant(%1,ticket,tickets))" msgstr "" #. (RT->Config->Get('CommentAddress')) #. (RT->Config->Get('CorrespondAddress')) #: share/html/Admin/Queues/Modify.html:93 share/html/Admin/Queues/Modify.html:96 msgid "(If left blank, will default to %1)" msgstr "(settes til %1 hvis tom)" #: share/html/Admin/Elements/UpgradeHistoryRow:69 msgid "(Incomplete)" msgstr "" #: lib/RT/Report/Tickets.pm:431 msgid "(Incorrect data)" msgstr "" #: share/html/Admin/Elements/EditCustomFields:95 msgid "(No custom fields)" msgstr "(ingen fleksifelt)" #: share/html/Admin/Groups/Members.html:71 msgid "(No members)" msgstr "(ingen medlemmer)" #: share/html/Admin/Elements/EditScrips:58 share/html/Admin/Elements/EditScrips:66 share/html/Admin/Elements/EditScrips:88 msgid "(No scrips)" msgstr "(ingen utløsere)" #: share/html/Elements/Tabs:612 msgid "(No subject)" msgstr "" #: share/html/Admin/Elements/EditTemplates:54 msgid "(No templates)" msgstr "(ingen maler)" #: share/html/Ticket/Create.html:183 share/html/m/ticket/create:290 msgid "(Sends a carbon-copy of this update to a comma-delimited list of administrative email addresses. These people will receive future updates.)" msgstr "(Sender en kopi av oppdateringen til valgte administrative e-postadresser (en kommadelt liste). Disse personene vil ogsÃ¥ motta framtidige oppdateringer.)" #: share/html/Ticket/Create.html:167 share/html/m/ticket/create:281 msgid "(Sends a carbon-copy of this update to a comma-delimited list of email addresses. These people will receive future updates.)" msgstr "(Sender en kopi av oppdateringen til valgte e-postadresser (en kommadelt liste). Disse personene vil ogsÃ¥ motta framtidige oppdateringer.)" #: share/html/Elements/BulkCustomFields:94 msgid "(Unsupported custom field type)" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:52 msgid "(Use these fields when you choose 'User Defined' for a condition or action)" msgstr "(Bruk disse feltene nÃ¥r du velger «Tilpasset» for en betingelse eller en handling.)" #: share/html/Admin/CustomFields/index.html:57 msgid "(any)" msgstr "(vilkÃ¥rlig)" #: share/html/Articles/Elements/NewestArticles:66 share/html/Articles/Elements/UpdatedArticles:67 msgid "(no Summary)" msgstr "(ingen sammendrag)" #: share/html/Admin/Articles/Elements/Topics:99 share/html/Articles/Article/Elements/EditTopics:62 share/html/Articles/Article/Elements/EditTopics:78 share/html/Articles/Article/Elements/Preformatted:49 share/html/Articles/Article/Elements/Preformatted:50 share/html/Articles/Elements/BeforeMessageBox:103 share/html/Articles/Elements/BeforeMessageBox:120 share/html/Articles/Elements/BeforeMessageBox:70 share/html/Articles/Elements/BeforeMessageBox:82 share/html/Articles/Elements/BeforeMessageBox:90 share/html/Articles/Elements/NewestArticles:60 share/html/Articles/Elements/ShowTopic:51 share/html/Articles/Elements/ShowTopicLink:55 share/html/Articles/Elements/UpdatedArticles:61 share/html/Articles/Topics.html:105 share/html/SelfService/Article/Display.html:49 share/html/SelfService/Article/Search.html:77 share/html/SelfService/Article/Search.html:85 msgid "(no name)" msgstr "(uten navn)" #: share/html/Elements/RT__Ticket/ColumnMap:288 share/html/Elements/RT__Ticket/ColumnMap:88 msgid "(no pubkey!)" msgstr "(mangler offentlignøkkel)" #: lib/RT/CustomField.pm:2238 lib/RT/CustomField.pm:2239 lib/RT/Queue.pm:1180 lib/RT/Queue.pm:1185 lib/RT/Report/Tickets.pm:701 lib/RT/Report/Tickets.pm:870 lib/RT/Report/Tickets.pm:881 lib/RT/Report/Tickets/Entry.pm:75 lib/RT/Report/Tickets/Entry.pm:80 lib/RT/Report/Tickets/Entry.pm:90 lib/RT/Transaction.pm:1202 lib/RT/Transaction.pm:1264 lib/RT/Transaction.pm:1265 lib/RT/Transaction.pm:827 lib/RT/Transaction.pm:832 lib/RT/Transaction.pm:916 share/html/Admin/Elements/AddCustomFieldValue:69 share/html/Admin/Elements/EditCustomFieldValues:77 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:51 share/html/Admin/Tools/Shredder/Elements/SelectPlugin:55 share/html/Articles/Article/Elements/SearchByCustomField:56 share/html/Elements/EditCustomFieldSelect:102 share/html/Elements/EditCustomFieldSelect:66 share/html/Elements/EditCustomFieldSelect:87 share/html/Elements/SelectCustomFieldValue:54 share/html/Elements/ShowCustomFields:68 share/html/m/ticket/show:266 msgid "(no value)" msgstr "(mangler verdi)" #: share/html/Admin/Elements/EditCustomFieldValues:49 msgid "(no values)" msgstr "(mangler verdier)" #. ($count) #: share/html/Elements/RT__Ticket/ColumnMap:144 msgid "(pending %quant(%1,other ticket,other tickets))" msgstr "(venter pÃ¥ %quant(%1,annen sak,andre saker))" #: share/html/Elements/RT__Ticket/ColumnMap:132 msgid "(pending approval)" msgstr "(venter pÃ¥ godkjenning)" #. ($pending_ticket->id) #: share/html/Elements/RT__Ticket/ColumnMap:141 msgid "(pending ticket #%1)" msgstr "" #: share/html/Admin/Users/Modify.html:69 msgid "(required)" msgstr "(obligatorisk)" #. ($key->{'TrustTerse'}) #: share/html/Elements/Crypt/SelectKeyForEncryption:53 msgid "(trust: %1)" msgstr "(tiltronivÃ¥: %1)" #: share/html/Elements/ShowTransactionAttachments:285 share/html/Elements/ShowTransactionAttachments:71 msgid "(untitled)" msgstr "(uten navn)" #: share/html/Elements/RT__Ticket/ColumnMap:291 share/html/Elements/RT__Ticket/ColumnMap:90 msgid "(untrusted!)" msgstr "(ikke tiltrodd)" #: share/html/Asset/Elements/ShowPeople:69 msgid "(via this asset's catalog)" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:68 msgid "-" msgstr "–" #: bin/rt-crontool:126 msgid "--template-id is deprecated argument and can not be used with --template" msgstr "«--template-id» er et utdatert argument, og kan ikke brukes med «--template»" #: bin/rt-crontool:121 msgid "--transaction argument could be only 'first', 'last' or 'all'" msgstr "«--transaction»-argumentet kan kun ta verdiene «first», «last» eller «all»" #. (Content => $title)) #: share/html/Elements/CollectionAsTable/Header:126 msgid "/Elements/ScrubHTML" msgstr "" #: share/html/Elements/Tabs:634 msgid "/Reports" msgstr "" #: lib/RT/Date.pm:424 msgid "0 seconds" msgstr "" #: lib/RT/Date.pm:424 msgid "0s" msgstr "" #: share/html/Elements/EmailInput:86 msgid "<% $EntryHint %>" msgstr "" #: share/html/Dashboards/Subscription.html:101 msgid "<% $day %>" msgstr "" #: lib/RT/Template.pm:288 lib/RT/Template.pm:740 msgid "A Template with that name already exists" msgstr "" #: etc/initialdata:258 msgid "A blank template" msgstr "En tom mal" #: share/html/Admin/Users/Modify.html:307 msgid "A password was not set, so user won't be able to login." msgstr "Et passord var ikke oppgitt, sÃ¥ brukeren kan ikke logge inn" #: lib/RT/ACE.pm:152 msgid "ACE not found" msgstr "Fant ikke ACE" #: lib/RT/ACE.pm:540 msgid "ACEs can only be created and deleted." msgstr "Du kan bare opprette eller slette ACE-er." #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:62 msgid "ACL updates from %1" msgstr "" #: share/html/Search/Elements/SelectAndOr:48 msgid "AND" msgstr "OG" #: share/html/Elements/Tabs:710 msgid "About me" msgstr "Om meg" #: share/html/Admin/Users/Modify.html:110 share/html/Prefs/AboutMe.html:119 msgid "Access control" msgstr "Tilgangskontroll" #: share/html/Admin/Elements/UpgradeHistory:55 share/html/Admin/Scrips/Elements/EditBasics:59 share/html/Elements/RT__Scrip/ColumnMap:89 msgid "Action" msgstr "Handling" #. ($args{'ScripAction'}) #. ($value) #: lib/RT/Scrip.pm:153 lib/RT/Scrip.pm:804 msgid "Action '%1' not found" msgstr "Fant ikke handlingen «%1»" #: share/html/Admin/Actions/Elements/EditBasics:63 share/html/Admin/Actions/Elements/ShowBasics:63 msgid "Action Module" msgstr "" #: bin/rt-crontool:233 msgid "Action committed." msgstr "Handling skrevet." #: lib/RT/ScripAction.pm:114 msgid "Action is in use" msgstr "" #: lib/RT/Scrip.pm:149 lib/RT/Scrip.pm:799 msgid "Action is mandatory argument" msgstr "Handling er et obligatorisk argument" #: bin/rt-crontool:229 msgid "Action prepared..." msgstr "Handling forberedt …" #: share/html/Admin/Global/Actions.html:53 share/html/Elements/Tabs:1082 share/html/Elements/Tabs:1241 share/html/Elements/Tabs:143 share/html/Elements/Tabs:761 msgid "Actions" msgstr "Handlinger" #: share/html/Ticket/Elements/ShowRequestor:159 share/html/User/Elements/Portlets/ActiveTickets:54 msgid "Active Tickets" msgstr "Aktive saker" #: share/html/Elements/RT__Asset/ColumnMap:97 msgid "Active tickets" msgstr "" #. ($session{'CurrentUser'}->Name) #: share/html/Tools/MyDay.html:53 msgid "Active tickets for %1" msgstr "Aktive saker for %1" #. ($role->Name) #. (loc($AddPrincipal)) #. (loc($rname)) #: share/html/Admin/Elements/EditRights:195 share/html/Asset/Search/Bulk.html:121 share/html/Search/Bulk.html:113 msgid "Add %1" msgstr "Legg til %1" #: share/html/Search/Bulk.html:93 msgid "Add AdminCc" msgstr "Legg til admin-kopimottaker" #: share/html/Ticket/Elements/Bookmark:70 msgid "Add Bookmark" msgstr "Legg til bokmerke" #: share/html/Search/Bulk.html:89 msgid "Add Cc" msgstr "Legg til kopimottaker" #: share/html/Search/Elements/EditFormat:51 msgid "Add Columns" msgstr "Legg til kolonner" #: share/html/Search/Elements/PickCriteria:48 msgid "Add Criteria" msgstr "Legg til søkekriterier" #: share/html/Ticket/Elements/AddAttachments:161 share/html/m/ticket/create:324 share/html/m/ticket/reply:137 msgid "Add More Files" msgstr "Legg til flere filer" #: share/html/Dashboards/Elements/SubscriptionRecipients:118 msgid "Add New Recipients" msgstr "" #: share/html/Search/Bulk.html:85 msgid "Add Requestor" msgstr "Legg til innmelder" #: share/html/Admin/Elements/AddCustomFieldValue:48 msgid "Add Value" msgstr "Legg til verdi" #: share/html/Asset/Elements/AddCatalogPeople:61 msgid "Add a group" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:52 msgid "Add a person" msgstr "" #: share/html/Ticket/Elements/ShowAssets:193 msgid "Add an asset to this ticket" msgstr "" #: share/html/Search/Bulk.html:152 msgid "Add comments or replies to selected tickets" msgstr "Legg til kommentarer eller svar til de valgte sakene" #: lib/RT/Catalog.pm:88 lib/RT/Class.pm:95 lib/RT/CustomField.pm:230 lib/RT/Queue.pm:110 msgid "Add custom field values only at object creation time" msgstr "" #: share/html/Admin/Elements/SelectNewGroupMembers:69 msgid "Add group" msgstr "Legg til gruppe" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Add here" msgstr "Legg til her" #: share/html/Admin/Groups/Members.html:63 msgid "Add members" msgstr "Legg til medlemmer" #: share/html/Admin/Queues/People.html:89 share/html/Ticket/Elements/AddWatchers:51 msgid "Add new watchers" msgstr "Legg til overvÃ¥kere" #. (loc($AddPrincipal)) #: share/html/Admin/Elements/EditRights:261 msgid "Add rights for this %1" msgstr "Legg til rettigheter for denne %1" #: share/html/Search/Build.html:83 msgid "Add these terms" msgstr "Legg til vilkÃ¥rene" #: share/html/Search/Build.html:84 msgid "Add these terms and Search" msgstr "Legg til vilkÃ¥rene og søk" #: share/html/Admin/Elements/SelectNewGroupMembers:51 msgid "Add user" msgstr "Legg til bruker" #: share/html/Elements/BulkCustomFields:52 msgid "Add values" msgstr "Legg til verdier" #: lib/RT/CustomField.pm:229 msgid "Add, modify and delete custom field values for objects" msgstr "Legg til, endre og slett fleksifeltverdier for objekter" #: share/html/Elements/RT__CustomField/ColumnMap:85 share/html/Elements/RT__CustomRole/ColumnMap:79 msgid "Added" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Queue.pm:557 msgid "Added %1 as %2 for this queue" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Ticket.pm:687 msgid "Added %1 as %2 for this ticket" msgstr "" #. ($cf->Name) #: lib/RT/Class.pm:387 msgid "Added Subject Override: %1" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1671 msgid "Added custom field %1 to %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1349 msgid "Added group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1368 msgid "Added to group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1346 msgid "Added user '%1'" msgstr "" #: share/html/Elements/RT__Queue/ColumnMap:81 share/html/Elements/RT__User/ColumnMap:101 msgid "Address" msgstr "Adresse" #: share/html/Elements/RT__User/ColumnMap:106 msgid "Address 2" msgstr "Adresse 2" #: share/html/Admin/Users/Modify.html:141 share/html/Prefs/AboutMe.html:138 msgid "Address1" msgstr "Adresse 1" #: share/html/Admin/Users/Modify.html:146 share/html/Prefs/AboutMe.html:142 msgid "Address2" msgstr "Adresse 2" #. ($duration) #: lib/RT/Transaction.pm:1274 msgid "Adjusted time worked by %quant(%1,minute,minutes)" msgstr "" #: share/html/Elements/Tabs:64 msgid "Admin" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:48 msgid "Admin Catalogs" msgstr "" #: share/html/Ticket/Create.html:174 share/html/Ticket/Elements/EditPeople:109 share/html/m/ticket/create:284 msgid "Admin Cc" msgstr "Admin-kopimottaker" #: etc/initialdata:410 msgid "Admin Comment" msgstr "Admin-kommentar" #: etc/initialdata:424 etc/upgrade/4.1.9/content:77 msgid "Admin Comment in HTML" msgstr "" #: etc/initialdata:370 msgid "Admin Correspondence" msgstr "Admin-svar" #: etc/initialdata:381 etc/upgrade/4.1.9/content:56 msgid "Admin Correspondence in HTML" msgstr "" # «Velg kø» er rett oversettelse, og nødvendig for Ã¥ fÃ¥ konsekvente overskrifter. #: share/html/Admin/Queues/index.html:48 msgid "Admin queues" msgstr "Velg kø" #: share/html/Admin/Global/index.html:48 msgid "Admin/Global configuration" msgstr "Administrering / globalt oppsett" #: lib/RT/Tickets.pm:166 msgid "AdminCCGroup" msgstr "AdminKopimottakerGruppe" #: lib/RT/Report/Tickets.pm:74 lib/RT/Ticket.pm:104 lib/RT/Tickets.pm:148 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowPeople:83 share/html/m/ticket/show:302 msgid "AdminCc" msgstr "Admin-kopimottaker" #: lib/RT/Graph/Tickets.pm:178 msgid "AdminCcs" msgstr "AdminKopimottakere" #: lib/RT/Installer.pm:151 msgid "Administrative password" msgstr "Administratorpassord" #: share/html/Elements/Tabs:970 msgid "Advanced" msgstr "Avansert" #: share/html/Articles/Article/Elements/ShowSearchCriteria:49 share/html/Articles/Article/Elements/ShowSearchCriteria:51 msgid "Advanced search" msgstr "Avansert søk" #: share/html/Elements/LoginRedirectWarning:62 msgid "After logging in you'll be sent to your original destination:" msgstr "Etter innlogging vil du bli sendt til din opprinnelige destinasjon:" #: share/html/Search/Elements/PickCriteria:63 msgid "Aggregator" msgstr "Sammenstilling" #: etc/initialdata:560 etc/upgrade/3.8.2/content:95 msgid "All Approvals Passed" msgstr "Alle forespørsler godkjent" #: etc/initialdata:574 etc/upgrade/4.1.9/content:146 msgid "All Approvals Passed in HTML" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:80 msgid "All Articles in this class should be listed in a dropdown of the ticket reply page" msgstr "Alle artikler i denne kategorien skal bli listet i en drop-down nÃ¥r man svarer pÃ¥ saker" #: share/html/Admin/Assets/Catalogs/index.html:108 msgid "All Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:78 msgid "All Classes" msgstr "Alle kategorier" #: share/html/Admin/CustomFields/index.html:52 msgid "All Custom Fields" msgstr "" #: share/html/Elements/Tabs:594 msgid "All Dashboards" msgstr "Alle utforminger" #: share/html/Admin/Queues/index.html:111 msgid "All Queues" msgstr "Alle køer" #: share/html/Admin/Scrips/index.html:80 msgid "All Scrips" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:161 msgid "All Tickets" msgstr "Alle saker" #: share/html/Admin/Assets/Catalogs/index.html:96 msgid "All catalogs matching search criteria" msgstr "" #: share/html/Prefs/AboutMe.html:175 msgid "All iCal feeds embed a secret token which authorizes you. If the URL for one of your iCal feeds was exposed to the outside world, you can get a new secret, breaking all existing iCal feeds, below." msgstr "Alle iCal-adressene inneholder en hemmelig kode som identifiserer deg. Hvis andre fÃ¥r kjennskap til en av disse adressene, kan du fÃ¥ generert en ny kode. Merk at alle iCal-adressene nedenfor da ikke lenger vil fungere." #: share/html/Admin/Queues/index.html:99 msgid "All queues matching search criteria" msgstr "Alle køer i samsvar med søkekriteriene" #: share/html/Helpers/PreviewScrips:97 share/html/Helpers/ShowSimplifiedRecipients:107 share/html/Ticket/Elements/UpdateCc:63 share/html/Ticket/Elements/UpdateCc:92 share/html/Ticket/ModifyPeople.html:70 msgid "All recipients" msgstr "" #: share/html/m/_elements/menu:82 msgid "All tickets" msgstr "Alle saker" #: share/html/Articles/Topics.html:51 msgid "All topics" msgstr "Alle emner" #: etc/RT_Config.pm:3387 msgid "Allocate" msgstr "" #: lib/RT/System.pm:94 msgid "Allow creation of saved searches" msgstr "Tillat opprettelse av lagrede søk" #: lib/RT/System.pm:93 msgid "Allow loading of saved searches" msgstr "Tillat lasting av lagrede søk" #: lib/RT/System.pm:95 msgid "Allow writing Perl code in templates, scrips, etc" msgstr "Tillat Perl-kode i maler, utløsere osv" #: lib/RT/Attachment.pm:811 msgid "Already encrypted" msgstr "Allerede kryptert" #: etc/initialdata:36 msgid "Always sends a message to the requestors independent of message sender" msgstr "" #. (qq[], qq[], '') #: share/html/Articles/Elements/NeedsSetup:51 msgid "An %1introduction to getting started with articles%3 is available from %2Best Practical's online documentation%3." msgstr "" #: lib/RT/Group.pm:532 msgid "An Instance must be provided" msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:49 msgid "An error occurred" msgstr "" #: share/html/Helpers/TicketTimer:227 msgid "An error occurred while submitting time. Please submit your time manually." msgstr "" #: share/html/Search/Elements/EditQuery:60 msgid "And/Or" msgstr "Og/eller" #: lib/RT/Report/Tickets.pm:133 msgid "Annually" msgstr "Ã…rlig" #: share/html/Articles/Article/Elements/ShowSearchCriteria:74 msgid "Any field" msgstr "Hvilket som helst felt" #: share/html/Search/Simple.html:65 msgid "Any word not recognized by RT is searched for in ticket subjects." msgstr "Ethvert ord som ikke blir gjenkjent av RT blir søkt pÃ¥ i saksemner." #: share/html/Admin/Conditions/Elements/EditBasics:77 share/html/Admin/Conditions/Elements/ShowBasics:77 msgid "Applicable Transaction Types" msgstr "" #: share/html/Admin/CustomFields/Modify.html:100 share/html/Admin/Scrips/Modify.html:62 share/html/Elements/Tabs:421 share/html/Elements/Tabs:436 share/html/Elements/Tabs:471 share/html/Elements/Tabs:533 msgid "Applies to" msgstr "Gjelder" #: share/html/Admin/Articles/Classes/Objects.html:56 share/html/Admin/CustomFields/Objects.html:57 share/html/Admin/Scrips/Objects.html:57 msgid "Applies to all objects" msgstr "Gjelder alle objektene" #: share/html/Search/Edit.html:62 msgid "Apply" msgstr "Bruk" #: share/html/Admin/Articles/Classes/Objects.html:60 share/html/Admin/CustomFields/Objects.html:61 share/html/Admin/Scrips/Objects.html:68 msgid "Apply globally" msgstr "Bruk globalt" #: share/html/Admin/Elements/EditScrips:95 msgid "Apply selected scrips" msgstr "" #: share/html/Search/Edit.html:62 msgid "Apply your changes" msgstr "Ta endringene i bruk" #: share/html/Elements/Tabs:684 msgid "Approval" msgstr "Godkjenning" #. ($Ticket->Id, $Ticket->Subject) #. ($link->BaseObj->Id, $link->BaseObj->Subject) #. ($ticket->id, $msg) #: share/html/Approvals/Display.html:64 share/html/Approvals/Elements/ShowDependency:65 share/html/Approvals/index.html:92 msgid "Approval #%1: %2" msgstr "Godkjenning %1: %2" #. ($ticket->Id) #: share/html/Approvals/index.html:81 msgid "Approval #%1: Notes not recorded due to a system error" msgstr "Godkjenning %1: klarte ikke lagre merknader, grunnet systemfeil" #. ($ticket->Id) #: share/html/Approvals/index.html:79 msgid "Approval #%1: Notes recorded" msgstr "Godkjenning %1: merknader lagret" #: etc/initialdata:530 etc/upgrade/3.8.2/content:81 msgid "Approval Passed" msgstr "Godkjent" #: etc/initialdata:544 etc/upgrade/4.1.9/content:130 msgid "Approval Passed in HTML" msgstr "" #: etc/initialdata:618 etc/upgrade/3.8.2/content:122 msgid "Approval Ready for Owner" msgstr "Godkjenning klar for eier" #: etc/initialdata:630 etc/upgrade/4.1.9/content:177 msgid "Approval Ready for Owner in HTML" msgstr "" #: etc/initialdata:590 etc/upgrade/3.8.2/content:109 msgid "Approval Rejected" msgstr "Godkjenning avslÃ¥tt" #: etc/initialdata:603 etc/upgrade/4.1.9/content:162 msgid "Approval Rejected in HTML" msgstr "" #: share/html/Approvals/Elements/Approve:75 msgid "Approve" msgstr "Godkjenn" #: lib/RT/Date.pm:94 msgid "Apr" msgstr "april" #. ($object->id) #: lib/RT/URI/fsck_com_article.pm:215 msgid "Article #%1" msgstr "" #. ($id) #: share/html/Articles/Article/History.html:61 msgid "Article #%1 not found" msgstr "" #. ($article->Id, $article->Name || loc("(no name)")) #. ($object->id, $object->Name) #: lib/RT/URI/fsck_com_article.pm:213 share/html/Articles/Article/Display.html:112 share/html/SelfService/Article/Display.html:66 msgid "Article #%1: %2" msgstr "Artikkel #%1: %2" #. ($self->id) #: lib/RT/Article.pm:223 msgid "Article %1 created" msgstr "Artikkel %1 opprettet" #: share/html/Admin/Articles/index.html:48 msgid "Article Administration" msgstr "Artikkeladministrasjon" #: share/html/Articles/Article/Display.html:104 share/html/SelfService/Article/Display.html:60 msgid "Article not found" msgstr "Artikkel ikke funnet" #: lib/RT/Article.pm:72 share/html/Admin/Global/CustomFields/index.html:95 share/html/Articles/index.html:48 share/html/Elements/Tabs:189 share/html/Elements/Tabs:199 share/html/Elements/Tabs:623 share/html/Elements/Tabs:653 msgid "Articles" msgstr "Artikler" #. ($currtopic->Name) #: share/html/Articles/Topics.html:99 msgid "Articles in %1" msgstr "Artikler i %1" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:64 msgid "Articles matching %1" msgstr "Artikler som samsvarer med %1" #: share/html/Articles/Topics.html:101 msgid "Articles with no topics" msgstr "Artikler uten emner" #: share/html/Search/Elements/EditSort:79 msgid "Asc" msgstr "stigende" #: share/html/Ticket/Elements/ShowAssets:194 msgid "Asset #" msgstr "" #. ($object->id) #: lib/RT/URI/asset.pm:205 msgid "Asset #%1" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Asset.pm:325 msgid "Asset #%1 created: %2" msgstr "" #. ($asset->id, $_) #. ($asset->id, $asset->Name) #. ($object->id, $object->Name) #: lib/RT/URI/asset.pm:203 share/html/Asset/Display.html:48 share/html/Asset/Search/Bulk.html:220 share/html/SelfService/Asset/Display.html:48 msgid "Asset #%1: %2" msgstr "" #: share/html/Admin/Assets/index.html:48 msgid "Asset Administration" msgstr "" #. ($txn_msg) #: lib/RT/Asset.pm:314 msgid "Asset Create txn failed: %1" msgstr "" #: share/html/Elements/Tabs:1155 msgid "Asset Custom Fields" msgstr "" #. ($msg) #: lib/RT/Asset.pm:267 msgid "Asset create failed: %1" msgstr "" #: share/html/Asset/Search/Bulk.html:48 share/html/Asset/Search/index.html:59 share/html/Asset/index.html:52 share/html/Elements/Tabs:1206 share/html/Elements/Tabs:194 share/html/Elements/Tabs:226 share/html/Elements/Tabs:628 share/html/Elements/Tabs:661 share/html/Ticket/Elements/ShowAssets:108 share/html/Ticket/Elements/ShowAssetsOnCreate:100 msgid "Assets" msgstr "" #: lib/RT/Asset.pm:368 msgid "Assets may not be deleted" msgstr "" #: lib/RT/Queue.pm:111 msgid "Assign and remove queue custom fields" msgstr "Tildel og fjern fleksifelt for kø" #: share/html/User/Elements/Portlets/UserAssets:49 msgid "Assigned Assets" msgstr "" #: share/html/Ticket/Elements/AddAttachments:61 msgid "Attach" msgstr "Legg ved" #: share/html/m/ticket/create:321 share/html/m/ticket/reply:134 msgid "Attach file" msgstr "Legg ved fil" #: share/html/Ticket/Elements/AddAttachments:49 share/html/m/ticket/create:308 share/html/m/ticket/reply:123 msgid "Attached file" msgstr "Vedlagt fil" #: share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 msgid "Attachment" msgstr "Vedlegg" #. ($Attachment) #: share/html/Ticket/ShowEmailRecord.html:108 msgid "Attachment '%1' could not be loaded" msgstr "Klarte ikke laste vedlegget «%1»" #: lib/RT/Transaction.pm:715 msgid "Attachment created" msgstr "Vedlegg opprettet" #: lib/RT/Tickets.pm:1923 msgid "Attachment filename" msgstr "Vedleggsnavn" #: share/html/Ticket/Elements/ShowAttachments:48 share/html/m/ticket/show:309 msgid "Attachments" msgstr "Vedlegg" #: lib/RT/Attachment.pm:806 msgid "Attachments encryption is disabled" msgstr "Kryptering av vedlegg er slÃ¥tt av" #: lib/RT/Attributes.pm:178 msgid "Attribute Deleted" msgstr "Attributt fjernet" #: lib/RT/Attribute.pm:288 msgid "Attribute updated" msgstr "" #: lib/RT/Date.pm:98 msgid "Aug" msgstr "aug." #: lib/RT/Queue.pm:350 msgid "AutoSigning" msgstr "" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:48 msgid "Automatic account setup failed" msgstr "" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:269 msgid "Automatically suggested theme colors aren't available for your image. This might be because you uploaded an image type that your installed version of GD doesn't support. Supported types are: %1. You can recompile libgd and GD.pm to include support for other image types." msgstr "Automatisk foreslÃ¥tte temafarger er ikke tilgjengelig for ditt bilde. Dette kan være fordi du lastet opp et bildeformat som din installerte versjon av GD ikke støtter. Støttede format er: %1. Du kan rekompilere libgd og GD.pm for Ã¥ inkludere støtte for andre bildeformater." #: etc/initialdata:261 msgid "Autoreply" msgstr "Autosvar" #: etc/initialdata:34 msgid "Autoreply To Requestors" msgstr "Autosvar til innmelder" #: etc/initialdata:291 etc/upgrade/4.1.9/content:8 msgid "Autoreply in HTML" msgstr "" #: share/html/Widgets/SelectionBox:170 msgid "Available" msgstr "Tilgjengelig" #: lib/RT/Report/Tickets.pm:234 msgid "Average Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:229 msgid "Average Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:224 msgid "Average Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:244 msgid "Average Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:249 msgid "Average Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:239 msgid "Average Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:214 msgid "Average time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:219 msgid "Average time left" msgstr "" #: lib/RT/Report/Tickets.pm:209 msgid "Average time worked" msgstr "" #: share/html/Elements/Submit:109 share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:73 share/html/Install/DatabaseDetails.html:89 share/html/Install/Global.html:65 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:64 msgid "Back" msgstr "Tilbake" #. ($id) #: lib/RT/SharedSetting.pm:151 msgid "Bad privacy for attribute %1" msgstr "Ugyldig offentligstatus for attributtet %1" # Dette *er* rett / ei god omsetting for dette omgrepet er i brukargrensesnittet. #: share/html/Admin/Actions/Create.html:54 share/html/Admin/Actions/Display.html:51 share/html/Admin/Actions/Modify.html:55 share/html/Admin/Assets/Catalogs/Create.html:55 share/html/Admin/Assets/Catalogs/Modify.html:55 share/html/Admin/Conditions/Create.html:54 share/html/Admin/Conditions/Display.html:51 share/html/Admin/Conditions/Modify.html:55 share/html/Admin/Groups/Modify.html:66 share/html/Admin/Queues/DefaultValues.html:56 share/html/Admin/Scrips/Create.html:56 share/html/Admin/Scrips/Modify.html:56 share/html/Articles/Article/Elements/ShowSearchCriteria:55 share/html/Asset/Create.html:183 share/html/Asset/Create.html:70 share/html/Asset/Elements/AssetSearchBasics:48 share/html/Asset/Elements/ShowSummary:53 share/html/Asset/Modify.html:58 share/html/Asset/Search/Bulk.html:82 share/html/Dashboards/Modify.html:60 share/html/Elements/Tabs:1066 share/html/Elements/Tabs:1152 share/html/Elements/Tabs:339 share/html/Elements/Tabs:374 share/html/Elements/Tabs:399 share/html/Elements/Tabs:417 share/html/Elements/Tabs:435 share/html/Elements/Tabs:470 share/html/Elements/Tabs:528 share/html/Elements/Tabs:744 share/html/Elements/Tabs:786 share/html/Ticket/Create.html:515 share/html/Ticket/Create.html:70 share/html/m/_elements/ticket_menu:60 msgid "Basics" msgstr "Detaljer" #: lib/RT/Scrip.pm:472 msgid "Batch" msgstr "" #: lib/RT/Scrip.pm:473 msgid "Batch (disabled by config)" msgstr "" #: share/html/Admin/Elements/EditScrips:61 msgid "Batch scrips" msgstr "" #: share/html/Admin/Elements/EditScrips:62 msgid "Batch scrips run after a set of related changes to a ticket." msgstr "" #: share/html/Ticket/Forward.html:74 msgid "Bcc" msgstr "" #. (qq[], '') #: share/html/Articles/Elements/NeedsSetup:50 msgid "Before Articles can be used, your RT administrator must %1create Classes%2, apply Article custom fields to them, and grant users rights on the classes and CFs." msgstr "" #: etc/initialdata:257 msgid "Blank" msgstr "Tom" #: share/html/Dashboards/Queries.html:180 msgid "Body" msgstr "Hovedflate" #: share/html/Search/Elements/EditFormat:126 msgid "Bold" msgstr "Halvfet" #: share/html/Search/Elements/BuildFormatString:102 share/html/m/_elements/ticket_list:101 share/html/m/ticket/show:249 msgid "Bookmark" msgstr "Bokmerke" #: share/html/Articles/Article/Search.html:111 msgid "Bookmarkable link for this search" msgstr "Bokmerkbar link for dette søket" #: etc/initialdata:873 etc/initialdata:898 etc/upgrade/3.7.82/content:6 msgid "Bookmarked Tickets" msgstr "Bokmerkede saker" #: share/html/m/_elements/menu:73 msgid "Bookmarked tickets" msgstr "Bokmerkede saker" #: share/html/Articles/Topics.html:48 share/html/Articles/Topics.html:60 msgid "Browse by topic" msgstr "Bla etter emne" #: share/html/Elements/Tabs:289 msgid "Browse the SQL queries made in this process" msgstr "Bla i SQL-spørringene gjort i denne prosessen" #: share/html/Elements/Tabs:1123 share/html/Elements/Tabs:976 msgid "Bulk Update" msgstr "Masseoppdater" #: lib/RT/Tickets.pm:165 msgid "CCGroup" msgstr "Kopigruppe" # CF = Custom Field #: lib/RT/Report/Tickets.pm:85 lib/RT/Tickets.pm:156 msgid "CF" msgstr "FF" #. ('cf.Name:value') #: share/html/Search/Simple.html:87 msgid "CFs may be searched using a similar syntax as above with %1." msgstr "Fleksifelt kan søkes pÃ¥ ved Ã¥ bruke en lignende syntaks som over med %1." #: share/html/Search/Chart.html:166 msgid "Calculate" msgstr "" #: share/html/Search/Chart.html:168 msgid "Calculate values of" msgstr "" #. ($ARGS{'SavedSearchLoad'}) #: share/html/Search/Elements/EditSearches:176 msgid "Can not load saved search \"%1\"" msgstr "Klarte ikke hente det lagrede søket «%1»" #: lib/RT/User.pm:1681 msgid "Can not modify system users" msgstr "Kan ikke endre systembrukere" #: lib/RT/CustomField.pm:665 msgid "Can't add a custom field value without a name" msgstr "Kan ikke legge verdi til et fleksifelt uten navn" #. ($args{Name}, $old_value, $new_value, $msg) #: lib/RT/Queue.pm:1201 msgid "Can't change default value of %1 from %2 to %3: %4" msgstr "" #. ($old_values, $new_values, $msg) #: lib/RT/CustomField.pm:2245 msgid "Can't change default values from %1 to %2: %3" msgstr "" #: share/html/Search/Elements/EditSearches:316 msgid "Can't find a saved search to work with" msgstr "Fant ikke et lagret søk Ã¥ arbeide med" #: lib/RT/Ticket.pm:3145 msgid "Can't forward: no valid email addresses specified" msgstr "" #: lib/RT/Link.pm:192 msgid "Can't link a ticket to itself" msgstr "Kan ikke koble en sak til seg selv" #: lib/RT/Reminders.pm:126 msgid "Can't link to a deleted ticket" msgstr "Kan ikke linke til en slettet sak" #: lib/RT/Ticket.pm:1878 msgid "Can't merge a ticket into itself" msgstr "" #. ($QueueObj->Name) #: lib/RT/Interface/Web.pm:3959 msgid "Can't quickly create ticket in queue %1 because custom fields are required. Please finish by using the normal ticket creation page." msgstr "" #. (loc($self->{SearchType})) #: share/html/Widgets/SavedSearch:136 msgid "Can't save %1" msgstr "Klarte ikke lagre %1" #: share/html/Search/Elements/EditSearches:320 msgid "Can't save a search without a Description" msgstr "" #: share/html/Search/Elements/EditSearches:323 msgid "Can't save this search" msgstr "Klarte ikke lagre søket" #: lib/RT/Record.pm:1356 lib/RT/Record.pm:1500 msgid "Can't specify both base and target" msgstr "" #: lib/RT/Article.pm:327 msgid "Cannot add link to plain number" msgstr "Kan ikke legge til link til rent nummer" #: share/html/Ticket/Create.html:449 share/html/m/ticket/create:147 msgid "Cannot create tickets in a disabled queue." msgstr "Kan ikke opprette saker i en deaktivert kø" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:106 msgid "Cannot modify objects of disabled custom role #%1" msgstr "" #: share/html/Admin/CustomFields/Modify.html:95 msgid "Canonicalizer:" msgstr "" #: share/html/Asset/Elements/AssetSearchBasics:50 share/html/Asset/Elements/EditBasics:51 share/html/Asset/Elements/ShowBasics:50 share/html/Asset/Search/Bulk.html:85 share/html/Elements/RT__Asset/ColumnMap:88 msgid "Catalog" msgstr "" #. ($self->id, $args{'Name'}) #: lib/RT/Catalog.pm:252 msgid "Catalog #%1 created: %2" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/CustomFields.html:48 msgid "Catalog %1: Edit Custom Fields" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Modify.html:48 msgid "Catalog %1: Modify basics" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/GroupRights.html:48 msgid "Catalog %1: Modify group rights" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/Roles.html:48 msgid "Catalog %1: Modify roles" msgstr "" #. ($Catalog->Name) #: share/html/Admin/Assets/Catalogs/UserRights.html:48 msgid "Catalog %1: Modify user rights" msgstr "" #. ($txn_msg) #: lib/RT/Catalog.pm:246 msgid "Catalog Create txn failed: %1" msgstr "" #. ($msg) #: lib/RT/Catalog.pm:227 msgid "Catalog create failed: %1" msgstr "" #: share/html/Elements/Tabs:1142 share/html/Elements/Tabs:228 msgid "Catalogs" msgstr "" #: lib/RT/Catalog.pm:284 msgid "Catalogs may not be deleted" msgstr "" #: share/html/Admin/CustomFields/Modify.html:162 msgid "Categories are based on" msgstr "Kategorier basert pÃ¥" #: share/html/Admin/Elements/AddCustomFieldValue:57 share/html/Admin/Elements/EditCustomFieldValues:61 msgid "Category" msgstr "Kategori" #: lib/RT/Report/Tickets.pm:73 lib/RT/Ticket.pm:103 lib/RT/Tickets.pm:147 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:79 share/html/Ticket/Create.html:158 share/html/Ticket/Elements/EditPeople:102 share/html/Ticket/Elements/ShowPeople:79 share/html/Ticket/Forward.html:71 share/html/m/ticket/create:275 share/html/m/ticket/show:298 msgid "Cc" msgstr "Kopimottaker" #: lib/RT/Graph/Tickets.pm:178 msgid "Ccs" msgstr "Kopimottakere" #: share/html/Install/index.html:64 share/html/Search/Results.html:89 msgid "Change" msgstr "Endre" #: lib/RT/Approval/Rule/Created.pm:56 msgid "Change Approval ticket to open status" msgstr "Endre godkjenningssak til status «åpen»" #: share/html/Admin/Articles/Classes/Modify.html:113 msgid "Change email subject:" msgstr "" #: share/html/SelfService/Prefs.html:70 msgid "Change password" msgstr "Bytt passord" #: lib/RT/Template.pm:719 msgid "Changing queue is not implemented" msgstr "" #: share/html/Elements/Tabs:977 msgid "Chart" msgstr "Diagram" #: share/html/Elements/JavascriptConfig:71 msgid "Check" msgstr "" #: share/html/Elements/Submit:102 msgid "Check All" msgstr "Merk alle" #: share/html/Install/DatabaseDetails.html:88 msgid "Check Database Connectivity" msgstr "Kontroller databasetilgang" #: share/html/Install/Basics.html:63 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:70 msgid "Check Database Credentials" msgstr "Kontroller databaseautentisering" #: share/html/m/ticket/create:310 share/html/m/ticket/reply:125 msgid "Check box to delete" msgstr "Kryss av for Ã¥ fjerne" #: share/html/Search/Elements/SelectLinks:59 msgid "Child" msgstr "" #: share/html/Elements/AddLinks:87 share/html/Elements/BulkLinks:131 share/html/Elements/BulkLinks:81 share/html/Elements/EditLinks:79 share/html/Elements/ShowLinks:77 share/html/Elements/ShowLinks:92 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:396 share/html/m/ticket/show:441 msgid "Children" msgstr "Undersaker" #: share/html/Install/DatabaseDetails.html:89 share/html/Install/DatabaseType.html:48 msgid "Choose Database Engine" msgstr "Velg databasemotor" #. ($QueueObj->Name) #: share/html/Articles/Elements/BeforeMessageBox:97 msgid "Choose from Topics for %1" msgstr "Velg fra emner for %1" #: lib/RT/User.pm:100 share/html/Admin/Users/Modify.html:151 share/html/Elements/RT__User/ColumnMap:111 share/html/Prefs/AboutMe.html:146 msgid "City" msgstr "Poststed" #: share/html/Articles/Article/Display.html:58 share/html/Articles/Article/Elements/EditBasics:58 share/html/Articles/Article/Elements/ShowSearchCriteria:58 share/html/Elements/RT__Article/ColumnMap:76 msgid "Class" msgstr "Kategori" #: share/html/Admin/Articles/Classes/Modify.html:62 msgid "Class Name" msgstr "Navn pÃ¥ kategori" #. ($msg) #: share/html/Admin/Articles/Classes/Modify.html:149 msgid "Class could not be created: %1" msgstr "Kategori kunne ikke opprettes: %1" #: share/html/Elements/RT__Article/ColumnMap:71 msgid "Class id" msgstr "Kategori-ID" #: lib/RT/Class.pm:323 msgid "Class is already applied Globally" msgstr "Kategori allerede brukt globalt" #. ($queue->Name) #: lib/RT/Class.pm:318 msgid "Class is already applied to %1" msgstr "Kategori allerede brukt pÃ¥ %1" #: share/html/Elements/Tabs:200 share/html/Elements/Tabs:524 msgid "Classes" msgstr "Kategorier" #: share/html/Tools/MyDay.html:72 share/html/Widgets/SelectionBox:198 msgid "Clear" msgstr "Tøm" #: share/html/Elements/Submit:104 msgid "Clear All" msgstr "Tøm alle" #: share/html/Install/Finish.html:52 msgid "Click \"Finish Installation\" below to complete this wizard." msgstr "Trykk «Fullfør installering» for Ã¥ avslutte veiviseren." #: share/html/Install/Initialize.html:54 msgid "Click \"Initialize Database\" to create RT's database and insert initial metadata. This may take a few moments" msgstr "Trykk «Gjør klar database» for Ã¥ opprette RT-databasen og sette inn de nødvendige metadataene. Dette kan ta noen minutt." #: share/html/Admin/Elements/EditActions:57 share/html/Admin/Elements/EditActions:65 msgid "Click Create to add a new custom action." msgstr "" #: share/html/Admin/Elements/EditConditions:57 share/html/Admin/Elements/EditConditions:65 msgid "Click Create to add a new custom condition." msgstr "" #: share/html/Admin/Tools/Theme.html:101 msgid "Click to choose a color" msgstr "" #: share/html/Helpers/TicketTimer:206 share/html/Helpers/TicketTimer:206 msgid "Close Window" msgstr "" #: share/html/Ticket/Elements/ShowDates:87 share/html/m/ticket/show:382 msgid "Closed" msgstr "Lukket" #: share/html/Elements/Tabs:1204 share/html/SelfService/Closed.html:48 msgid "Closed tickets" msgstr "Lukkede saker" #: lib/RT/CustomField.pm:151 msgid "Combobox: Select or enter multiple values" msgstr "Komboboks: velg eller skriv inn flere verdier" #: lib/RT/CustomField.pm:152 msgid "Combobox: Select or enter one value" msgstr "Komboboks: velg eller skriv inn enkeltverdi" #: lib/RT/CustomField.pm:153 msgid "Combobox: Select or enter up to %quant(%1,value,values)" msgstr "Komboboks: velg eller skriv inn opptil %1 verdier" #: share/html/Elements/ShowTransaction:195 share/html/Elements/Tabs:812 share/html/Search/Elements/EditFormat:103 msgid "Comment" msgstr "Kommenter" #: share/html/Admin/Queues/Modify.html:94 msgid "Comment Address" msgstr "Kommentaradresse" #: lib/RT/Installer.pm:166 msgid "Comment address" msgstr "Kommentaradresse" #: share/html/Elements/ShortcutHelp:104 msgid "Comment on ticket" msgstr "" #: lib/RT/Queue.pm:126 msgid "Comment on tickets" msgstr "Kommenter saker" #: share/html/Tools/MyDay.html:64 msgid "Comments" msgstr "Kommentarer" #: share/html/Search/Bulk.html:156 share/html/Ticket/ModifyAll.html:101 share/html/Ticket/Update.html:77 share/html/m/ticket/reply:92 msgid "Comments (Not sent to requestors)" msgstr "Kommentar (blir ikke sendt til innmelderen)" #: share/html/Admin/Users/Modify.html:214 share/html/Ticket/Elements/ShowRequestor:78 msgid "Comments about this user" msgstr "Kommentarer om brukeren" #: lib/RT/Ticket.pm:1709 lib/RT/Transaction.pm:991 msgid "Comments added" msgstr "La til kommentarer" #: share/html/Helpers/TicketTimer:214 msgid "Comments for the ticket" msgstr "" #: lib/RT/Action.pm:155 lib/RT/Rule.pm:74 msgid "Commit Stubbed" msgstr "Utførelse klargjort" #: share/html/Admin/Scrips/Elements/EditBasics:54 share/html/Elements/RT__Scrip/ColumnMap:85 msgid "Condition" msgstr "Betingelse" #. ($args{'ScripCondition'}) #. ($value) #: lib/RT/Scrip.pm:180 lib/RT/Scrip.pm:825 msgid "Condition '%1' not found" msgstr "Fant ikke betingelsen «%1»" #: share/html/Admin/Conditions/Elements/EditBasics:63 share/html/Admin/Conditions/Elements/ShowBasics:63 msgid "Condition Module" msgstr "" #: lib/RT/ScripCondition.pm:125 msgid "Condition is in use" msgstr "" #: lib/RT/Scrip.pm:176 lib/RT/Scrip.pm:818 msgid "Condition is mandatory argument" msgstr "Betingelse er et obligatorisk argument" #: bin/rt-crontool:199 msgid "Condition matches..." msgstr "Betingelsen oppfyller …" #: share/html/Elements/RT__Scrip/ColumnMap:97 msgid "Condition, Action and Template" msgstr "Betingelse, handling og mal" #: share/html/Admin/Global/Conditions.html:53 share/html/Elements/Tabs:135 msgid "Conditions" msgstr "" #. ($file) #: share/html/Install/index.html:107 msgid "Config file %1 is locked" msgstr "Oppsettfila %1 er lÃ¥st" #. ($QueueObj->Name) #: share/html/Admin/Queues/Modify.html:190 msgid "Configuration for queue %1" msgstr "Konfigurasjon for kø %1" #. ($RoleObj->Name) #: share/html/Admin/CustomRoles/Modify.html:129 msgid "Configuration for role %1" msgstr "" #: share/html/Install/DatabaseDetails.html:137 msgid "Connection succeeded" msgstr "Koblet til" #: lib/RT/Asset.pm:88 msgid "Contact" msgstr "" #. (qq[], $owner, '') #: share/html/Errors/WebRemoteUser/Wrapper:67 msgid "Contact your RT administrator via %1email to %2%3." msgstr "" #: share/html/Errors/WebRemoteUser/Wrapper:69 msgid "Contact your RT administrator." msgstr "" #: lib/RT/Tickets.pm:141 share/html/Admin/Elements/ModifyTemplate:70 share/html/Articles/Article/Display.html:78 share/html/Articles/Article/Elements/ShowSearchCriteria:71 share/html/Elements/QuickCreate:75 share/html/Elements/SelectAttachmentField:51 share/html/Elements/Tabs:745 share/html/Ticket/Forward.html:87 share/html/Ticket/ModifyAll.html:122 msgid "Content" msgstr "Innhold" #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:947 msgid "Content dropped because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: lib/RT/Transaction.pm:956 msgid "Content insert failed. See error log for details." msgstr "" #: lib/RT/CustomField.pm:1882 msgid "Content is not a valid IP address" msgstr "Innhold er en ugyldig IP-adresse" #: lib/RT/CustomField.pm:1898 msgid "Content is not a valid IP address range" msgstr "Innhold er et ugyldig IP-adresseomrÃ¥de." #. ($self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:936 msgid "Content truncated because its size (%1 bytes) exceeded configured maximum size setting (%2 bytes)." msgstr "" #: share/html/Elements/SelectAttachmentField:53 msgid "Content-Type" msgstr "Innholdstype" #: lib/RT/Tickets.pm:142 msgid "ContentType" msgstr "Innholdstype" #: share/html/Admin/Actions/Display.html:58 share/html/Admin/Actions/Modify.html:60 msgid "Copy Action" msgstr "" #: share/html/Admin/Conditions/Display.html:58 share/html/Admin/Conditions/Modify.html:60 msgid "Copy Condition" msgstr "" #: lib/RT/Installer.pm:174 msgid "Correspond address" msgstr "Svaradresse" #: etc/initialdata:393 msgid "Correspondence" msgstr "Svar" #: lib/RT/Ticket.pm:1711 lib/RT/Transaction.pm:987 msgid "Correspondence added" msgstr "Svar lagt til" #: etc/initialdata:401 etc/upgrade/4.1.9/content:68 msgid "Correspondence in HTML" msgstr "" #. ($email, $msg) #: share/html/Dashboards/Subscription.html:289 msgid "Could not add %1 as a recipient: %2" msgstr "" #. ($msg) #. ($value_msg) #: lib/RT/Record.pm:2021 lib/RT/Record.pm:2094 msgid "Could not add new custom field value: %1" msgstr "Klarte ikke legge til ny fleksifeltverdi: %1" #. ($msg) #: lib/RT/Ticket.pm:2131 msgid "Could not change owner: %1" msgstr "Klarte ikke endre eier: %1" #. ($msg) #: share/html/Admin/CustomFields/Modify.html:229 share/html/Admin/Elements/EditCustomField:116 msgid "Could not create CustomField: %1" msgstr "Klarte ikke opprette fleksifelt: %1" #: lib/RT/Group.pm:332 lib/RT/Group.pm:339 msgid "Could not create group" msgstr "Klarte ikke opprette gruppe" #. ($msg) #: share/html/Articles/Article/Search.html:210 msgid "Could not create search: %1" msgstr "Kunne ikke opprette søk: %1" #: lib/RT/Ticket.pm:261 msgid "Could not create ticket. Queue not set" msgstr "Klarte ikke opprette sak. Kø ikke oppgitt." #: lib/RT/User.pm:182 lib/RT/User.pm:195 lib/RT/User.pm:204 lib/RT/User.pm:213 lib/RT/User.pm:222 lib/RT/User.pm:236 lib/RT/User.pm:246 lib/RT/User.pm:450 msgid "Could not create user" msgstr "Klarte ikke opprette bruker" #. ($searchname, $msg) #: share/html/Articles/Article/Search.html:250 msgid "Could not delete search %1: %2" msgstr "Kunne ikke slette søk %1: %2" #. ($name) #: lib/RT/Record/Role/Roles.pm:420 msgid "Could not find group '%1'" msgstr "" #. ($name) #: lib/RT/Record/Role/Roles.pm:410 msgid "Could not find or create user '%1'" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:244 msgid "Could not load %1 attribute" msgstr "Klarte ikke laste attributtet %1" #: share/html/Admin/Articles/Classes/Objects.html:105 msgid "Could not load Class %1" msgstr "Kunne ikke laste kategori %1" #. ($id) #: share/html/Admin/CustomFields/Objects.html:109 msgid "Could not load CustomField %1" msgstr "Klarte ikke laste fleksifeltet %1" #. ($id) #: share/html/Admin/CustomRoles/Objects.html:102 msgid "Could not load custom role #%1" msgstr "" #: share/html/Admin/Groups/Members.html:115 msgid "Could not load group" msgstr "Klarte ikke laste gruppa" #. ($privacy) #: lib/RT/SharedSetting.pm:127 msgid "Could not load object for %1" msgstr "Klarte ikke laste objekt for %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:128 msgid "Could not load scrip #%1" msgstr "" #: share/html/Elements/JavascriptConfig:75 msgid "Could not load ticket history. Reason:" msgstr "" #. ($args{User}) #: lib/RT/Record/Role/Roles.pm:548 msgid "Could not load user '%1'" msgstr "" #. ($principal->Object->Name, $group->Label) #: lib/RT/Record/Role/Roles.pm:495 msgid "Could not make %1 a %2" msgstr "" #. ($principal->Object->Name, $self->loc($args{Type})) #: lib/RT/Record/Role/Roles.pm:576 msgid "Could not remove %1 as a %2" msgstr "" #: lib/RT/User.pm:135 msgid "Could not set user info" msgstr "Klarte ikke lagre brukerinfo" #. ($col, $msg) #: lib/RT/Group.pm:990 msgid "Could not update column %1: %2" msgstr "" #: lib/RT/Record/AddAndSort.pm:200 msgid "Couldn't add as it's global already" msgstr "" #: lib/RT/Transaction.pm:166 msgid "Couldn't add attachment" msgstr "Klarte ikke legge til vedlegg" #. ($cfmsg) #: lib/RT/Asset.pm:301 msgid "Couldn't add custom field value on create: %1" msgstr "" #: lib/RT/Group.pm:964 msgid "Couldn't add member to group" msgstr "Klarte ikke legge medlem til gruppa" #. ($method, $code, $error) #: lib/RT/Scrip.pm:786 msgid "Couldn't compile %1 codeblock '%2': %3" msgstr "Kunne ikke kompilere %1 kodeblokk '%2': %3" #. ($fi_text, $error) #: lib/RT/Template.pm:842 msgid "Couldn't compile template codeblock '%1': %2" msgstr "Kunne ikke kompilere malkodeblokk '%1': %2" #. ($Msg) #. ($msg) #: lib/RT/Record.pm:2104 lib/RT/Record.pm:2223 msgid "Couldn't create a transaction: %1" msgstr "Klarte ikke opprette transaksjon: %1" #. ($msg) #: lib/RT/CustomField.pm:1811 msgid "Couldn't create record: %1" msgstr "Kunne ikke opprette register: %1" #: lib/RT/Asset.pm:277 msgid "Couldn't create role groups for asset" msgstr "" #: lib/RT/Catalog.pm:234 msgid "Couldn't create role groups for catalog" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:154 msgid "Couldn't delete dashboard %1: %2" msgstr "Klarte ikke fjerne utforminga %1: %2" #: lib/RT/Record.pm:1012 msgid "Couldn't find row" msgstr "Fant ikke raden" #: bin/rt-crontool:170 msgid "Couldn't find suitable transaction, skipping" msgstr "Fant ikke en passende transaksjon – hopper over" #: lib/RT/Group.pm:938 msgid "Couldn't find that principal" msgstr "Fant ikke primærobjektet" #: lib/RT/CustomField.pm:693 msgid "Couldn't find that value" msgstr "Fant ikke verdien" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:56 msgid "Couldn't get %1 keys information" msgstr "" #. ($id) #: share/html/Admin/Articles/Classes/GroupRights.html:66 share/html/Admin/Articles/Classes/UserRights.html:65 share/html/Admin/CustomFields/UserRights.html:66 msgid "Couldn't load Class %1" msgstr "Klarte ikke laste klassen %1" #. ($cf_id) #: lib/RT/CustomFieldValue.pm:119 lib/RT/CustomFieldValue.pm:86 msgid "Couldn't load Custom Field #%1" msgstr "Klarte ikke laste fleksifelt %1" #. ($cf_id) #: share/html/Admin/Elements/EditCustomFields:134 share/html/Admin/Elements/EditCustomFields:145 msgid "Couldn't load CustomField #%1" msgstr "Klarte ikke laste fleksifelt %1" #. ($id) #: share/html/Admin/CustomFields/GroupRights.html:66 msgid "Couldn't load CustomField %1" msgstr "Klarte ikke laste fleksifeltet %1" #. ($id) #: share/html/Admin/Actions/Display.html:73 share/html/Admin/Actions/Modify.html:75 msgid "Couldn't load action #%1" msgstr "" #. ($id) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:69 msgid "Couldn't load asset %1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:71 share/html/Admin/Conditions/Modify.html:74 msgid "Couldn't load condition #%1" msgstr "" #. (blessed($self), $self->Id) #: lib/RT/Record/Role/Status.pm:291 msgid "Couldn't load copy of %1 #%2" msgstr "" #. ($self->Id) #: lib/RT/Ticket.pm:1137 msgid "Couldn't load copy of ticket #%1." msgstr "Klarte ikke laste kopi av sak %1" #. ($Name) #: share/html/Admin/CustomRoles/Modify.html:124 msgid "Couldn't load custom role '%1'" msgstr "" #. ($id, $msg) #: share/html/Dashboards/Modify.html:122 share/html/Dashboards/Queries.html:81 share/html/Dashboards/Render.html:121 share/html/Dashboards/Subscription.html:224 msgid "Couldn't load dashboard %1: %2" msgstr "Klarte ikke laste utforminga %1: %2" #. ($gid) #: share/html/Admin/Elements/MembershipsPage:100 share/html/Admin/Elements/MembershipsPage:110 msgid "Couldn't load group #%1" msgstr "Klarte ikke laste gruppe %1" #. ($id) #: share/html/Admin/Groups/GroupRights.html:66 share/html/Admin/Groups/UserRights.html:67 msgid "Couldn't load group %1" msgstr "Klarte ikke laste gruppa %1" #: lib/RT/Link.pm:267 msgid "Couldn't load link" msgstr "Klarte ikke laste lenken" #. ($msg) #: lib/RT/Link.pm:240 msgid "Couldn't load link: %1" msgstr "Kunne ikke laste link: %1" #. ($id) #: share/html/Admin/Articles/Classes/CustomFields.html:54 share/html/Admin/Queues/CustomFields.html:56 share/html/Admin/Queues/DefaultValues.html:139 share/html/Admin/Users/CustomFields.html:56 msgid "Couldn't load object %1" msgstr "Klarte ikke laste objektet %1" #. ($msg) #: lib/RT/Record/Role/Roles.pm:636 msgid "Couldn't load or create user: %1" msgstr "Klarte ikke laste eller opprette brukeren: %1" #. ($id) #: share/html/Admin/Elements/MembershipsPage:89 msgid "Couldn't load principal #%1" msgstr "" #. ($msg) #: lib/RT/Record/Role/Roles.pm:621 msgid "Couldn't load principal: %1" msgstr "" #. ($id) #: share/html/Admin/Queues/People.html:142 msgid "Couldn't load queue" msgstr "Klarte ikke laste køen" #. ($id) #: share/html/Admin/Elements/EditScrips:107 msgid "Couldn't load queue #%1" msgstr "Klarte ikke laste kø %1" #. ($Queue) #. ($id) #: share/html/Admin/Queues/GroupRights.html:71 share/html/Admin/Queues/UserRights.html:72 share/html/Admin/Scrips/Create.html:101 msgid "Couldn't load queue %1" msgstr "Klarte ikke laste køen %1" #. ($Name) #: share/html/Admin/Queues/Modify.html:185 msgid "Couldn't load queue '%1'" msgstr "Klarte ikke laste køen «%1»" #. ($id) #: share/html/Admin/Scrips/Modify.html:105 msgid "Couldn't load scrip #%1" msgstr "Klarte ikke laste utløser %1" #. ($id) #: share/html/Admin/Elements/EditTemplates:107 msgid "Couldn't load template #%1" msgstr "Klarte ikke laste mal %1" #: lib/RT/Interface/Web.pm:2700 msgid "Couldn't load the specified principal" msgstr "" #. ($id) #: lib/RT/Action/CreateTickets.pm:404 msgid "Couldn't load ticket '%1'" msgstr "Klarte ikke hente saken «%1»" #: lib/RT/Article.pm:441 msgid "Couldn't load topic membership while trying to delete it" msgstr "Kunne ikke laste emnemedlemskap mens det prøves Ã¥ slette den" #. ($QuoteTransaction) #. ($id) #: share/html/Ticket/Crypt.html:71 share/html/Ticket/Forward.html:124 msgid "Couldn't load transaction #%1" msgstr "Klarte ikke laste transaksjon %1" #: share/html/Prefs/AboutMe.html:217 msgid "Couldn't load user" msgstr "Klarte ikke laste bruker" #. ($id) #: share/html/Admin/Users/Keys.html:95 share/html/Prefs/AboutMe.html:213 msgid "Couldn't load user #%1" msgstr "Klarte ikke laste bruker %1" #. ($id, $Name) #: share/html/Prefs/AboutMe.html:211 msgid "Couldn't load user #%1 or user '%2'" msgstr "Klarte ikke laste bruker %1 eller brukeren «%2»" #. ($Name) #: share/html/Prefs/AboutMe.html:215 msgid "Couldn't load user '%1'" msgstr "Klarte ikke laste brukeren «%1»" #. ($args{Base}) #: lib/RT/Link.pm:229 msgid "Couldn't parse Base URI: %1" msgstr "" #. ($args{Target}) #: lib/RT/Link.pm:233 msgid "Couldn't parse Target URI: %1" msgstr "" #. ($msg) #: lib/RT/Group.pm:972 msgid "Couldn't remove previous member: %1" msgstr "" #. ($msg) #: lib/RT/Attachment.pm:898 msgid "Couldn't replace content with decrypted data: %1" msgstr "Klarte ikke bytte ut innholdet med dekryptert innhold: %1" #. ($msg) #: lib/RT/Attachment.pm:847 msgid "Couldn't replace content with encrypted data: %1" msgstr "Klarte ikke bytte ut innholdet med kryptert innhold: %1" #. ($remote_link) #: lib/RT/Record.pm:1392 lib/RT/Record.pm:1529 msgid "Couldn't resolve '%1' into a link." msgstr "" #. ($args{'Base'}) #: lib/RT/Link.pm:155 msgid "Couldn't resolve base '%1' into a URI." msgstr "Klarte ikke gjøre kilden «%1» om til en adresse" #. ($args{'Target'}) #: lib/RT/Link.pm:162 msgid "Couldn't resolve target '%1' into a URI." msgstr "Klarte ikke gjøre mÃ¥let «%1» om til en adresse" #. ($role, $msg) #: lib/RT/Record/Role/Roles.pm:706 msgid "Couldn't set %1 watcher: %2" msgstr "Klarte ikke registrere %1-overvÃ¥ker: %2" #: lib/RT/User.pm:1955 msgid "Couldn't set private key" msgstr "Klarte ikke registrere privatnøkkel" #: lib/RT/User.pm:1939 msgid "Couldn't unset private key" msgstr "Klarte ikke fjerne privatnøkkel" #: lib/RT/User.pm:101 share/html/Admin/Users/Modify.html:168 share/html/Elements/RT__User/ColumnMap:126 share/html/Prefs/AboutMe.html:158 msgid "Country" msgstr "Land" #: share/html/Admin/Actions/Create.html:61 share/html/Admin/Articles/Classes/Modify.html:128 share/html/Admin/Conditions/Create.html:61 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomRoles/Modify.html:98 share/html/Admin/Elements/EditCustomField:87 share/html/Admin/Global/Template.html:100 share/html/Admin/Groups/Modify.html:97 share/html/Admin/Queues/Modify.html:162 share/html/Admin/Queues/Template.html:111 share/html/Admin/Scrips/Create.html:74 share/html/Admin/Scrips/Create.html:81 share/html/Admin/Users/Modify.html:229 share/html/Articles/Article/Edit.html:91 share/html/Articles/Article/ExtractFromTicket.html:83 share/html/Articles/Article/ExtractIntoClass.html:68 share/html/Articles/Article/ExtractIntoTopic.html:60 share/html/Dashboards/Modify.html:72 share/html/Elements/QuickCreate:78 share/html/Elements/ShowLinks:54 share/html/Elements/ShowLinks:72 share/html/Elements/Tabs:107 share/html/Elements/Tabs:1145 share/html/Elements/Tabs:117 share/html/Elements/Tabs:132 share/html/Elements/Tabs:140 share/html/Elements/Tabs:148 share/html/Elements/Tabs:156 share/html/Elements/Tabs:207 share/html/Elements/Tabs:222 share/html/Elements/Tabs:233 share/html/Elements/Tabs:242 share/html/Elements/Tabs:325 share/html/Elements/Tabs:344 share/html/Elements/Tabs:348 share/html/Elements/Tabs:468 share/html/Elements/Tabs:475 share/html/Elements/Tabs:482 share/html/Elements/Tabs:485 share/html/Elements/Tabs:488 share/html/Elements/Tabs:496 share/html/Elements/Tabs:502 share/html/Elements/Tabs:508 share/html/Elements/Tabs:514 share/html/Elements/Tabs:526 share/html/Elements/Tabs:537 share/html/Elements/Tabs:656 share/html/Elements/Tabs:662 share/html/Elements/Tabs:72 share/html/Elements/Tabs:80 share/html/Elements/Tabs:88 share/html/Elements/Tabs:97 share/html/Ticket/Create.html:256 share/html/Ticket/Create.html:355 share/html/User/Elements/Portlets/CreateAsset:57 share/html/User/Elements/Portlets/CreateTicket:53 share/html/m/ticket/create:235 share/html/m/ticket/create:405 msgid "Create" msgstr "Ny" #: share/html/Elements/Tabs:1133 msgid "Create New" msgstr "" #: etc/initialdata:104 msgid "Create Tickets" msgstr "Opprett saker" #: share/html/Admin/Articles/Classes/Modify.html:140 share/html/Admin/Articles/Classes/Modify.html:160 msgid "Create a Class" msgstr "Opprett en kategori" #: share/html/Admin/CustomFields/Modify.html:210 share/html/Admin/CustomFields/Modify.html:230 share/html/Admin/Elements/EditCustomField:99 msgid "Create a CustomField" msgstr "Nytt fleksifelt" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:65 msgid "Create a CustomField for queue %1" msgstr "Opprett fleksifelt for køen %1" #: share/html/Admin/CustomRoles/Modify.html:167 msgid "Create a custom role" msgstr "" #: share/html/Admin/Scrips/Create.html:109 msgid "Create a global scrip" msgstr "" #: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:185 msgid "Create a new article" msgstr "Opprett en ny artikkel" #: share/html/Articles/Article/ExtractIntoClass.html:52 msgid "Create a new article in" msgstr "Opprett en ny artikkel i" #. ($catalog->Name) #: share/html/Asset/Create.html:48 msgid "Create a new asset in catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog", Default => $ARGS{Catalog}),) #: share/html/User/Elements/Portlets/CreateAsset:56 msgid "Create a new asset in the catalog %1" msgstr "" #. ($m->scomp("/Asset/Elements/SelectCatalog"),) #: share/html/Asset/Elements/CreateInCatalog:51 msgid "Create a new asset in the catalog %1." msgstr "" #: share/html/Dashboards/Modify.html:131 share/html/Dashboards/Modify.html:98 msgid "Create a new dashboard" msgstr "Ny utforming" #: share/html/Admin/Groups/Modify.html:109 share/html/Admin/Groups/Modify.html:129 msgid "Create a new group" msgstr "Ny gruppe" #. ($QueueObj->Name) #: share/html/Admin/Queues/Template.html:110 msgid "Create a new template for queue %1" msgstr "Opprett en ny mal for kø %1" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $QueueObj)) #: share/html/Ticket/Create.html:443 msgid "Create a new ticket in %1" msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"), @description) #: share/html/Asset/Elements/CreateLinkedTicket:84 msgid "Create a new ticket in the %1 queue about asset #%2: %3." msgstr "" #. ($m->scomp("/Elements/SelectNewTicketQueue"),) #: share/html/Asset/Elements/CreateLinkedTicket:89 msgid "Create a new ticket in the %1 queue about multiple assets." msgstr "" #: share/html/Admin/Users/Modify.html:255 share/html/Admin/Users/Modify.html:269 msgid "Create a new user" msgstr "Ny bruker" #: share/html/Admin/Queues/Modify.html:243 msgid "Create a queue" msgstr "Ny kø" #. ($queue_obj->Name) #: share/html/Admin/Scrips/Create.html:107 msgid "Create a scrip and add to queue %1" msgstr "" #: share/html/Admin/Global/Template.html:99 msgid "Create a template" msgstr "Opprett mal" #: share/html/SelfService/CreateTicketInQueue.html:48 share/html/m/ticket/create:140 share/html/m/ticket/select_create_queue:53 msgid "Create a ticket" msgstr "Ny sak" #. ($m->scomp("/Ticket/Elements/ShowQueue", QueueObj => $queue_obj)) #: share/html/SelfService/Create.html:48 msgid "Create a ticket in %1" msgstr "" #: share/html/User/Elements/Portlets/CreateTicket:50 msgid "Create a ticket with this user as the Requestor in Queue" msgstr "" #: share/html/Articles/Elements/CreateArticle:48 msgid "Create an article" msgstr "Opprett en artikkel" #: share/html/Articles/Article/PreCreate.html:48 msgid "Create an article in class..." msgstr "Opprett en artikkel i kategori..." #: lib/RT/Class.pm:88 msgid "Create articles in this class" msgstr "Opprette artikler i denne kategorien" #: share/html/Asset/Create.html:102 msgid "Create asset" msgstr "" #: lib/RT/Catalog.pm:83 msgid "Create assets" msgstr "" #: share/html/Admin/Assets/Catalogs/Create.html:48 share/html/Admin/Assets/Catalogs/Create.html:59 msgid "Create catalog" msgstr "" #: lib/RT/Group.pm:96 msgid "Create group dashboards" msgstr "Opprette gruppeutforminger" #: share/html/Elements/Tabs:1083 share/html/Elements/Tabs:1242 msgid "Create linked ticket" msgstr "" #. ($asset->id, $asset->Name) #. ($asset_objs[0]->id, $asset_objs[0]->Name) #: share/html/Asset/CreateLinkedTicket.html:72 share/html/SelfService/Asset/CreateLinkedTicket.html:55 msgid "Create linked ticket for asset #%1: %2" msgstr "" #: share/html/Asset/CreateLinkedTicket.html:76 msgid "Create linked ticket for multiple assets" msgstr "" #: share/html/Asset/CreateInCatalog.html:49 msgid "Create new asset" msgstr "" #: etc/initialdata:106 msgid "Create new tickets based on this scrip's template" msgstr "Opprett nye saker basert pÃ¥ malen til denne utløseren" #: lib/RT/Dashboard.pm:86 msgid "Create personal dashboards" msgstr "Lag personlige utforminger" #: lib/RT/Dashboard.pm:81 msgid "Create system dashboards" msgstr "Lag systemutforminger" #: share/html/SelfService/Create.html:114 msgid "Create ticket" msgstr "Opprett sak" #: lib/RT/Queue.pm:124 msgid "Create tickets" msgstr "Opprette saker" #: lib/RT/Class.pm:99 lib/RT/Queue.pm:106 msgid "Create, modify and delete Access Control List entries" msgstr "Opprett, endre og slett oppføringer i adgangskontrolliste" #: lib/RT/CustomField.pm:227 msgid "Create, modify and delete custom fields" msgstr "Opprett, endre og slett fleksifelt" #: lib/RT/CustomField.pm:228 msgid "Create, modify and delete custom fields values" msgstr "Opprett, endre og slett fleksifeltverdier" #: lib/RT/System.pm:86 msgid "Create, modify and delete custom roles" msgstr "" #: lib/RT/Queue.pm:104 msgid "Create, modify and delete queue" msgstr "Opprett, endre og slett kø" #: lib/RT/Group.pm:92 msgid "Create, modify and delete saved searches" msgstr "Opprett, endre og slett lagrede søk" #: lib/RT/System.pm:85 msgid "Create, modify and delete users" msgstr "Opprett, endre og slett brukere" #: lib/RT/Catalog.pm:80 msgid "Create, modify, and disable catalogs" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:77 lib/RT/Tickets.pm:139 share/html/Admin/Elements/ShowKeyInfo:71 share/html/Articles/Article/Display.html:66 share/html/Articles/Article/Elements/EditBasics:74 share/html/Articles/Article/Elements/ShowSearchCriteria:99 share/html/Asset/Elements/EditDates:50 share/html/Asset/Elements/ShowDates:50 share/html/Elements/ColumnMap:69 share/html/Elements/ColumnMap:74 share/html/Elements/SelectDateType:49 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowDates:50 share/html/m/_elements/ticket_list:97 share/html/m/ticket/show:357 msgid "Created" msgstr "Opprettet" #: share/html/Elements/ColumnMap:79 msgid "Created By" msgstr "Opprettet av" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:234 share/html/Admin/Elements/EditCustomField:120 msgid "Created CustomField %1" msgstr "Opprettet fleksifeltet %1" #: share/html/Articles/Elements/NewestArticles:53 share/html/Articles/Elements/UpdatedArticles:53 msgid "Created by" msgstr "Opprettet av" #: share/html/Elements/Tabs:647 msgid "Created in a date range" msgstr "" #. ($search->Name) #: share/html/Articles/Article/Search.html:206 msgid "Created search %1" msgstr "Opprettet søk %1" #: share/html/Reports/CreatedByDates.html:54 msgid "Created tickets in period, grouped by status" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedBy" msgstr "OpprettetAv" #: share/html/Search/Elements/BuildFormatString:102 msgid "CreatedRelative" msgstr "OpprettetRelativt" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:69 lib/RT/Tickets.pm:111 share/html/Articles/Article/Display.html:62 share/html/Articles/Article/Elements/EditBasics:70 share/html/Search/Elements/PickBasics:115 msgid "Creator" msgstr "Innmelder" #: share/html/Prefs/Other.html:71 msgid "Cryptography" msgstr "Kryptografi" #: lib/RT/Attachment.pm:804 lib/RT/Attachment.pm:864 msgid "Cryptography is disabled" msgstr "" #: share/html/Elements/BulkLinks:51 share/html/Elements/EditLinks:51 msgid "Current Links" msgstr "Gjeldende koblinger" #: share/html/Dashboards/Elements/SubscriptionRecipients:164 msgid "Current Recipients" msgstr "" #: share/html/Elements/Tabs:961 msgid "Current Search" msgstr "Gjeldende søk" #: share/html/Admin/Groups/Members.html:60 msgid "Current members" msgstr "Gjeldende medlemmer" #: share/html/Search/Elements/EditQuery:49 msgid "Current search" msgstr "Gjeldende søk" #: share/html/Admin/Queues/People.html:62 share/html/Ticket/Elements/EditPeople:87 msgid "Current watchers" msgstr "Gjeldende overvÃ¥kere" #: share/html/Admin/Elements/EditActions:60 msgid "Custom Actions" msgstr "" #: share/html/Admin/Tools/Theme.html:108 msgid "Custom CSS (Advanced)" msgstr "" #: share/html/Admin/Elements/EditConditions:60 msgid "Custom Conditions" msgstr "" #: lib/RT/Graph/Tickets.pm:190 share/html/Asset/Elements/AssetSearchCFs:48 share/html/Asset/Modify.html:62 share/html/Asset/ModifyCFs.html:58 share/html/Elements/EditCustomFieldCustomGroupings:50 share/html/Elements/ShowCustomFieldCustomGroupings:51 share/html/Elements/Tabs:159 share/html/Elements/Tabs:214 share/html/Elements/Tabs:237 share/html/Elements/Tabs:307 share/html/Elements/Tabs:350 share/html/Elements/Tabs:530 share/html/Elements/Tabs:92 share/html/m/ticket/show:255 msgid "Custom Fields" msgstr "Fleksifelt" #. ($Type) #: share/html/Admin/CustomFields/index.html:52 msgid "Custom Fields for %1" msgstr "Fleksifelt for %1" #. ($Object->Name) #: share/html/Admin/Queues/CustomFields.html:61 msgid "Custom Fields for queue %1" msgstr "Fleksifelt for kø %1" #: share/html/Elements/Tabs:102 share/html/Elements/Tabs:308 msgid "Custom Roles" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:73 msgid "Custom action commit code" msgstr "" #: share/html/Admin/Scrips/Elements/EditCustomCode:72 msgid "Custom action preparation code" msgstr "Tilpasset foreberedelseskode for handling" #: share/html/Admin/Scrips/Elements/EditCustomCode:71 msgid "Custom condition" msgstr "Selvvalgt betingelse" #. ($MoveCustomFieldDown) #. ($MoveCustomFieldUp) #: share/html/Admin/Elements/EditCustomFields:109 share/html/Admin/Elements/EditCustomFields:120 msgid "Custom field #%1 is not applied to this object" msgstr "Fleksifelt %1 blir ikke brukt pÃ¥ dette objektet" #. ($CF->Name, $args{OPERATOR}, $args{VALUE}) #: lib/RT/Tickets.pm:2350 msgid "Custom field %1 %2 %3" msgstr "Fleksifeltet %1 %2 %3" #. (ref $args{'Field'} ? $args{'Field'}->id : $args{'Field'}) #: lib/RT/Record.pm:1955 msgid "Custom field %1 does not apply to this object" msgstr "Fleksifeltet %1 gjelder ikke dette objektet" #. ($CF->Name) #: lib/RT/Tickets.pm:2344 msgid "Custom field %1 has a value." msgstr "Fleksifeltet %1 har en verdi." #. ($CF->Name) #: lib/RT/Tickets.pm:2340 msgid "Custom field %1 has no value." msgstr "Fleksifeltet %1 har ingen verdi." #. ($args{'Field'}) #: lib/RT/Record.pm:1944 lib/RT/Record.pm:2204 msgid "Custom field %1 not found" msgstr "Fant ikke fleksifeltet %1" #. ($args{'Content'}, $self->Name) #: lib/RT/CustomField.pm:1979 msgid "Custom field value %1 could not be found for custom field %2" msgstr "Fant ikke feltverdien %1 for fleksifeltet %2" #: lib/RT/CustomField.pm:1991 lib/RT/CustomField.pm:701 msgid "Custom field value could not be deleted" msgstr "Klarte ikke slette feltverdien til fleksifeltet" #: lib/RT/CustomField.pm:1993 lib/RT/CustomField.pm:703 msgid "Custom field value deleted" msgstr "Feltverdi til fleksifelt slettet" #: share/html/Admin/CustomRoles/Modify.html:121 msgid "Custom role created" msgstr "" #: lib/RT/CustomRole.pm:699 msgid "Custom role disabled" msgstr "" #: lib/RT/CustomRole.pm:697 msgid "Custom role enabled" msgstr "" #: lib/RT/CustomRole.pm:450 msgid "Custom role is not added" msgstr "" #: lib/RT/Tickets.pm:155 lib/RT/Transaction.pm:995 share/html/Elements/SelectGroups:54 share/html/Elements/SelectUsers:54 msgid "CustomField" msgstr "Fleksifelt" #: lib/RT/Tickets.pm:154 msgid "CustomFieldValue" msgstr "Fleksifeltverdi" #: lib/RT/Tickets.pm:153 msgid "CustomRole" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 share/html/Prefs/MyRT.html:81 share/html/Prefs/QueueList.html:79 share/html/Prefs/Search.html:81 msgid "Customize" msgstr "Tilpass" #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:72 share/html/Install/Sendmail.html:64 msgid "Customize Basics" msgstr "Tilpass detaljer" #: share/html/Install/Global.html:48 share/html/Install/Initialize.html:62 share/html/Install/Sendmail.html:63 msgid "Customize Email Addresses" msgstr "Tilpass e-postadresser" #: share/html/Install/Basics.html:62 share/html/Install/Global.html:65 share/html/Install/Sendmail.html:48 msgid "Customize Email Configuration" msgstr "Tilpass e-postoppsett" #: share/html/Elements/Tabs:261 msgid "Customize dashboards in menu" msgstr "" #: share/html/Admin/Tools/Theme.html:76 msgid "Customize the RT theme" msgstr "" #: share/html/Elements/Tabs:282 msgid "Customize the look of your RT" msgstr "Tilpasse utseendet pÃ¥ din RT" #: lib/RT/Installer.pm:113 msgid "DBA password" msgstr "DBA-passord" #: lib/RT/Installer.pm:105 msgid "DBA username" msgstr "DBA-brukernavn" #: lib/RT/Dashboard/Mailer.pm:418 lib/RT/Report/Tickets.pm:133 msgid "Daily" msgstr "Daglig" #: lib/RT/Config.pm:598 msgid "Daily digest" msgstr "Daglig sammendrag" #: share/html/Dashboards/Queries.html:107 share/html/Dashboards/Queries.html:107 share/html/Dashboards/Subscription.html:59 share/html/Dashboards/Subscription.html:63 msgid "Dashboard" msgstr "Utforming" #. ($Dashboard->Name, $msg) #: share/html/Dashboards/Modify.html:143 msgid "Dashboard %1 could not be updated: %2" msgstr "" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:140 msgid "Dashboard %1 updated" msgstr "" #. ($msg) #: share/html/Dashboards/Modify.html:110 msgid "Dashboard could not be created: %1" msgstr "Klarte ikke opprette utforminga: %1" #. ($msg) #: share/html/Dashboards/Queries.html:261 msgid "Dashboard could not be updated: %1" msgstr "Klarte ikke oppdatere utforminga: %1" #: share/html/Dashboards/Queries.html:258 msgid "Dashboard updated" msgstr "Utforming oppdatert" #: etc/RT_Config.pm:1296 etc/initialdata:917 share/html/Dashboards/index.html:48 share/html/Elements/Dashboards:49 msgid "Dashboards" msgstr "Utforminger" #: share/html/Admin/Global/DashboardsInMenu.html:48 share/html/Admin/Global/DashboardsInMenu.html:54 share/html/Admin/Users/DashboardsInMenu.html:62 share/html/Elements/Tabs:260 share/html/Elements/Tabs:379 share/html/Elements/Tabs:714 share/html/Prefs/DashboardsInMenu.html:57 msgid "Dashboards in menu" msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:71 msgid "Dashboards in menu for the user %1" msgstr "" #: lib/RT/Installer.pm:78 msgid "Database host" msgstr "Databasetjener" #: lib/RT/Installer.pm:96 msgid "Database name" msgstr "Databasenavn" #: lib/RT/Installer.pm:129 msgid "Database password for RT" msgstr "Databasepassord for RT" #: lib/RT/Installer.pm:87 msgid "Database port" msgstr "Databaseport" #: lib/RT/Installer.pm:60 msgid "Database type" msgstr "Databasetype" #: lib/RT/Installer.pm:122 msgid "Database username for RT" msgstr "Databasebrukernavn for RT" #: lib/RT/Report/Tickets.pm:133 share/html/Admin/Elements/UpgradeHistory:56 msgid "Date" msgstr "" #: lib/RT/Config.pm:547 msgid "Date format" msgstr "Datoformat" #: share/html/Admin/Queues/DefaultValues.html:79 share/html/Articles/Article/Elements/ShowSearchCriteria:96 share/html/Asset/Elements/ShowSummary:55 share/html/Asset/ModifyDates.html:57 share/html/Asset/Search/Bulk.html:149 share/html/Elements/Tabs:1069 share/html/Elements/Tabs:795 share/html/SelfService/Display.html:73 share/html/Ticket/Create.html:298 share/html/Ticket/Elements/ShowSummary:87 share/html/Ticket/ModifyAll.html:69 share/html/m/ticket/create:374 share/html/m/ticket/show:351 msgid "Dates" msgstr "Datoer" #: lib/RT/Report/Tickets.pm:133 msgid "Day" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfMonth" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfWeek" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "DayOfYear" msgstr "" #: lib/RT/Date.pm:102 msgid "Dec" msgstr "des." #: share/html/Ticket/Crypt.html:58 msgid "Decrypt" msgstr "Dekrypter" #: lib/RT/Attachment.pm:893 msgid "Decryption error; contact the administrator" msgstr "" #. ($CustomFieldObj->MaxValues) #: share/html/Admin/CustomFields/Modify.html:137 msgid "Default %numerate(%1,value,values)" msgstr "" #: share/html/Elements/Tabs:1160 share/html/Elements/Tabs:360 msgid "Default Values" msgstr "" #. ($catalog->Name) #: share/html/Admin/Assets/Catalogs/DefaultValues.html:71 msgid "Default Values for catalog %1" msgstr "" #. ($queue->Name) #: share/html/Admin/Queues/DefaultValues.html:141 msgid "Default Values for queue %1" msgstr "" #: lib/RT/Config.pm:157 msgid "Default queue" msgstr "Standardkø" #: etc/initialdata:438 etc/upgrade/4.1.16/content:7 msgid "Default reminder template" msgstr "" #: lib/RT/Config.pm:510 msgid "Default to squelching all outgoing email notifications (from web interface) on ticket update" msgstr "" #. ($args{Name}, $old_value, $new_value) #: lib/RT/Queue.pm:1198 msgid "Default value of %1 changed from %2 to %3" msgstr "" #. ($old_values, $new_values) #: lib/RT/CustomField.pm:2242 msgid "Default values changed from %1 to %2" msgstr "" #. ($DefaultValue) #: share/html/Widgets/Form/Integer:61 share/html/Widgets/Form/String:69 msgid "Default: %1" msgstr "Standard: %1" #: lib/RT/Transaction.pm:821 msgid "Default: %1/%2 changed from %3 to %4" msgstr "Standard: %1/%2 endret fra %3 til %4" #: share/html/Elements/RT__Queue/ColumnMap:73 msgid "DefaultDueIn" msgstr "" #: lib/RT/Date.pm:116 msgid "DefaultFormat" msgstr "Standardformat" #: share/html/Elements/RT__Queue/ColumnMap:77 msgid "DefaultStarts" msgstr "" #: etc/RT_Config.pm:3344 etc/RT_Config.pm:3433 share/html/Admin/Elements/EditActions:71 share/html/Admin/Elements/EditConditions:71 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Search/Elements/EditFormat:148 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Ticket/Elements/AddAttachments:54 share/html/Widgets/SelectionBox:196 msgid "Delete" msgstr "Slett" #: share/html/Admin/Elements/EditTemplates:73 msgid "Delete Template" msgstr "Slett mal" #. ($msg) #: lib/RT/SharedSetting.pm:287 msgid "Delete failed: %1" msgstr "Feil ved sletting: %1" #: lib/RT/Group.pm:98 msgid "Delete group dashboards" msgstr "Slett gruppeutforminger" #: lib/RT/Ticket.pm:2520 lib/RT/Ticket.pm:2520 msgid "Delete operation is disabled by lifecycle configuration" msgstr "Sletteoperasjon er deaktivert av livssykluskonfigurasjon" #: lib/RT/Dashboard.pm:88 msgid "Delete personal dashboards" msgstr "Slett personlige utforminger" #: share/html/Admin/Elements/EditActions:70 msgid "Delete selected actions" msgstr "" #: share/html/Admin/Elements/EditConditions:70 msgid "Delete selected conditions" msgstr "" #: lib/RT/Dashboard.pm:83 msgid "Delete system dashboards" msgstr "Slett systemutforminger" #: lib/RT/Queue.pm:129 msgid "Delete tickets" msgstr "Slett saker" #: share/html/Elements/BulkCustomFields:53 msgid "Delete values" msgstr "Slett verdier" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:285 msgid "Deleted %1" msgstr "Slettet %1" #: share/html/Dashboards/Elements/Deleted:52 msgid "Deleted queries" msgstr "Slettede søk" #: share/html/Search/Elements/EditSearches:194 msgid "Deleted saved search" msgstr "Slettet lagret søk" #. ($searchname) #: share/html/Articles/Article/Search.html:239 msgid "Deleted search %1" msgstr "Slettet søk %1" #: lib/RT/Queue.pm:220 msgid "Deleting this object would break referential integrity" msgstr "Sletting av dette objektet vil ødelegge referanseintegriteten" #: lib/RT/User.pm:461 msgid "Deleting this object would violate referential integrity" msgstr "Sletting av dette objektet vil ødelegge referanseintegriteten" #: share/html/Approvals/Elements/Approve:84 msgid "Deny" msgstr "Nekt" #: share/html/Elements/AddLinks:79 share/html/Elements/BulkLinks:123 share/html/Elements/BulkLinks:63 share/html/Elements/EditLinks:63 share/html/Elements/ShowLinks:75 share/html/Elements/ShowLinks:90 share/html/Search/Elements/SelectLinks:62 share/html/m/ticket/create:394 share/html/m/ticket/show:426 msgid "Depended on by" msgstr "Avhengighet fra" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:131 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependedOnBy" msgstr "AvhengighetFra" #. ($value) #: lib/RT/Transaction.pm:1129 msgid "Dependency by %1 added" msgstr "Avhengighet av %1 lagt til" #. ($value) #: lib/RT/Transaction.pm:1171 msgid "Dependency by %1 deleted" msgstr "Avhengighet av %1 slettet" #. ($value) #: lib/RT/Transaction.pm:1126 msgid "Dependency on %1 added" msgstr "Avhengighet av %1 lagt til" #. ($value) #: lib/RT/Transaction.pm:1168 msgid "Dependency on %1 deleted" msgstr "Avhengighet av %1 slettet" #: lib/RT/Tickets.pm:130 msgid "DependentOn" msgstr "AvhengerAv" #: share/html/Elements/AddLinks:75 share/html/Elements/BulkLinks:119 share/html/Elements/BulkLinks:54 share/html/Elements/EditLinks:55 share/html/Elements/ShowLinks:74 share/html/Elements/ShowLinks:89 share/html/Search/Elements/SelectLinks:61 share/html/m/ticket/create:393 share/html/m/ticket/show:396 msgid "Depends on" msgstr "Avhenger av" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:127 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "DependsOn" msgstr "AvhengerAv" #: share/html/Search/Elements/EditSort:84 msgid "Desc" msgstr "synkende" #: share/html/SelfService/Create.html:109 share/html/Ticket/Create.html:237 share/html/m/ticket/create:231 msgid "Describe the issue below" msgstr "Beskriv problemet nedenfor" #: share/html/Admin/Actions/Elements/EditBasics:56 share/html/Admin/Actions/Elements/ShowBasics:56 share/html/Admin/Articles/Classes/Modify.html:66 share/html/Admin/Articles/Elements/Topics:60 share/html/Admin/Assets/Catalogs/Elements/EditBasics:54 share/html/Admin/Conditions/Elements/EditBasics:56 share/html/Admin/Conditions/Elements/ShowBasics:56 share/html/Admin/CustomFields/Modify.html:66 share/html/Admin/CustomRoles/Modify.html:62 share/html/Admin/Elements/AddCustomFieldValue:55 share/html/Admin/Elements/EditCustomField:62 share/html/Admin/Elements/EditCustomFieldValues:59 share/html/Admin/Elements/ModifyTemplate:54 share/html/Admin/Groups/Modify.html:73 share/html/Admin/Queues/Modify.html:66 share/html/Admin/Scrips/Elements/EditBasics:48 share/html/Asset/Elements/AssetSearchBasics:64 share/html/Asset/Elements/EditBasics:60 share/html/Asset/Elements/ShowBasics:58 share/html/Asset/Search/Bulk.html:93 share/html/Elements/RT__Class/ColumnMap:61 share/html/Elements/RT__Group/ColumnMap:77 share/html/Elements/RT__Scrip/ColumnMap:105 share/html/Elements/RT__ScripAction/ColumnMap:67 share/html/Elements/RT__ScripCondition/ColumnMap:67 share/html/Elements/RT__Template/ColumnMap:61 share/html/Elements/RT__Transaction/ColumnMap:90 share/html/Search/Elements/EditSearches:56 msgid "Description" msgstr "Beskrivelse" #: share/html/Elements/Tabs:277 msgid "Detailed information about your RT setup" msgstr "Detaljert informasjon om ditt RT-oppsett" #: share/html/Asset/Create.html:184 share/html/Ticket/Create.html:516 msgid "Details" msgstr "Detaljer" #: etc/initialdata:242 etc/upgrade/4.3.8/content:11 msgid "Detect a situation when we should set Due date" msgstr "" #: etc/initialdata:237 etc/upgrade/4.3.8/content:6 msgid "Detect a situation when we should set Starts date" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:50 msgid "Direction" msgstr "Retning" #: lib/RT/Class.pm:100 msgid "Disable articles in this class" msgstr "" #: lib/RT/CustomField.pm:1185 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Disabled" msgstr "Deaktivert" #: share/html/Admin/Assets/Catalogs/Elements/EditBasics:69 msgid "Disabled?" msgstr "" #: share/html/Elements/Tabs:1026 share/html/Elements/Tabs:1046 share/html/Elements/Tabs:1064 share/html/Elements/Tabs:1237 share/html/Elements/Tabs:781 share/html/Search/Elements/EditFormat:99 msgid "Display" msgstr "Vis" #: lib/RT/Class.pm:98 lib/RT/Queue.pm:105 msgid "Display Access Control List" msgstr "Vis tilgangsliste" #. ($id) #: share/html/SelfService/Article/Display.html:48 msgid "Display Article %1" msgstr "Vis artikkel %1" #: share/html/Search/Elements/DisplayOptions:51 msgid "Display Columns" msgstr "Vis kolonner" #. ($id) #: share/html/Admin/Actions/Display.html:48 msgid "Display action #%1" msgstr "" #: lib/RT/Config.pm:476 msgid "Display all plain-text attachments in a monospace font with formatting preserved, but wrapping as needed." msgstr "" #. ($id) #: share/html/Admin/Conditions/Display.html:48 msgid "Display condition #%1" msgstr "" #: lib/RT/Config.pm:419 msgid "Display messages in rich text if available" msgstr "" #: lib/RT/Config.pm:475 msgid "Display plain-text attachments in fixed-width font" msgstr "" #: lib/RT/Config.pm:519 msgid "Display ticket after \"Quick Create\"" msgstr "" #. ('', '') #: share/html/Elements/Footer:59 msgid "Distributed under %1version 2 of the GNU GPL%2." msgstr "Distribuert under %1versjon 2 av GNU GPL%2" #: lib/RT/System.pm:83 msgid "Do anything and everything" msgstr "Gjøre alt" #: lib/RT/Installer.pm:209 msgid "Domain name" msgstr "Domenenavn" #: lib/RT/Installer.pm:210 msgid "Don't include http://, just something like 'localhost', 'rt.example.com'" msgstr "Ta ikke med «http://», bare vertsnavnet. Eksempel: rt.eksempel.no" #: lib/RT/Config.pm:393 msgid "Don't refresh home page." msgstr "Ikke oppdater hjemmesiden" #: lib/RT/Config.pm:363 msgid "Don't refresh search results." msgstr "Ikke oppdater søkeresultatene" #: share/html/Elements/Refresh:53 msgid "Don't refresh this page." msgstr "Ikke oppdater siden" #: lib/RT/Crypt/GnuPG.pm:1738 msgid "Don't trust this key at all" msgstr "Ikke stol pÃ¥ denne nøkkelen" #: share/html/Elements/ShowTransactionAttachments:71 msgid "Download" msgstr "Last ned" #: share/html/Elements/Tabs:1128 msgid "Download Spreadsheet" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/DumpFileLink:49 msgid "Download dumpfile" msgstr "Last ned dumpfil" #: share/html/Ticket/Elements/AddAttachments:71 msgid "Drop files here or click to attach" msgstr "" #: lib/RT/CustomField.pm:88 msgid "Dropdown" msgstr "Nedtrekksmeny" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:81 lib/RT/Tickets.pm:136 share/html/Admin/Queues/DefaultValues.html:82 share/html/Elements/RT__Ticket/ColumnMap:211 share/html/Elements/RT__Ticket/ColumnMap:244 share/html/Elements/SelectDateType:55 share/html/Elements/ShowReminders:52 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:315 share/html/Ticket/Elements/EditDates:92 share/html/Ticket/Elements/Reminders:141 share/html/Ticket/Elements/Reminders:177 share/html/Ticket/Elements/Reminders:83 share/html/Ticket/Elements/ShowDates:76 share/html/m/ticket/create:381 share/html/m/ticket/show:373 msgid "Due" msgstr "Forfallsdato" #: share/html/Search/Elements/BuildFormatString:102 msgid "DueRelative" msgstr "ForfallsdatoRelativ" #. ($msg) #: share/html/Install/Initialize.html:132 share/html/Install/Initialize.html:94 msgid "ERROR: %1" msgstr "Feil: %1" #: share/html/Elements/Tabs:670 msgid "Easy updating of your open tickets" msgstr "Enkel oppdatering av Ã¥pne saker" #: share/html/Elements/Tabs:677 msgid "Easy viewing of your reminders" msgstr "Enkel visning av dine pÃ¥minnelser" #: share/html/Elements/Dashboards:51 share/html/Elements/QueueList:52 share/html/Elements/ShowSearch:52 share/html/Elements/Tabs:1168 share/html/Elements/Tabs:1176 share/html/Ticket/Elements/ShowRequestor:124 msgid "Edit" msgstr "Rediger" #. (($group? loc($group) : loc('Custom Fields'))) #: share/html/Asset/Search/Bulk.html:158 msgid "Edit %1" msgstr "" #: share/html/Search/Bulk.html:203 msgid "Edit Custom Fields" msgstr "Rediger fleksifelt" #. ($Object->Name) #: share/html/Admin/Articles/Classes/CustomFields.html:59 share/html/Admin/Users/CustomFields.html:61 msgid "Edit Custom Fields for %1" msgstr "Rediger fleksifelt: %1" #: share/html/Admin/Global/CustomFields/Catalog-Assets.html:52 msgid "Edit Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Admin/Global/CustomFields/Groups.html:53 msgid "Edit Custom Fields for all groups" msgstr "Rediger fleksifelt for alle gruppene" #: share/html/Admin/Global/CustomFields/Queues.html:53 msgid "Edit Custom Fields for all queues" msgstr "Rediger fleksifelt for alle køene" #: share/html/Admin/Global/CustomFields/Users.html:53 msgid "Edit Custom Fields for all users" msgstr "Rediger fleksifelt for alle brukerne" #: share/html/Admin/Global/CustomFields/Class-Article.html:52 msgid "Edit Custom Fields for articles in all classes" msgstr "Endre fleksifelt for artikler i alle kategorier" #: share/html/Admin/Global/CustomFields/Queue-Tickets.html:53 share/html/Admin/Global/CustomFields/Queue-Transactions.html:53 msgid "Edit Custom Fields for tickets in all queues" msgstr "Rediger fleksifelt for saker i alle køer" #: share/html/Asset/Search/Bulk.html:164 share/html/Search/Bulk.html:208 share/html/Ticket/ModifyLinks.html:59 msgid "Edit Links" msgstr "Rediger koblinger" #: share/html/Search/Edit.html:66 msgid "Edit Query" msgstr "Rediger spørring" #: share/html/Elements/Tabs:968 msgid "Edit Search" msgstr "Rediger søk" #: share/html/Admin/Global/Topics.html:56 msgid "Edit global topic hierarchy" msgstr "Endre globalt emnehierarki" #: share/html/Elements/Tabs:144 msgid "Edit system actions" msgstr "" #: share/html/Elements/Tabs:136 msgid "Edit system conditions" msgstr "" #: share/html/Elements/Tabs:152 msgid "Edit system templates" msgstr "Rediger systemmaler" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:60 msgid "Edit topic hierarchy for %1" msgstr "Endre emnehierarki for %1" #. ($CustomFieldObj->Name) #. ($CustomFieldObj->Name()) #: share/html/Admin/CustomFields/Modify.html:240 share/html/Admin/Elements/EditCustomField:123 msgid "Editing CustomField %1" msgstr "Redigerer fleksifeltet %1" #. ($Group->Label) #: share/html/Admin/Groups/Members.html:55 msgid "Editing membership for group %1" msgstr "Redigerer medlemskap for gruppa %1" #: lib/RT/Tickets.pm:114 share/html/Elements/RT__Ticket/ColumnMap:171 msgid "EffectiveId" msgstr "EffektivID" #: lib/RT/Record.pm:1369 lib/RT/Record.pm:1514 msgid "Either base or target must be specified" msgstr "Du mÃ¥ oppgi enten kilde eller mÃ¥l" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:68 msgid "Either you have no rights to view saved search %1 or identifier is incorrect" msgstr "Enten mangler du rettigheter til Ã¥ vise det lagrede søket %1, eller sÃ¥ er identifikatoren feil" #: share/html/Admin/Elements/UpgradeHistory:57 msgid "Elapsed" msgstr "" #: share/html/Admin/Users/Modify.html:72 share/html/Dashboards/Elements/SubscriptionRecipients:150 share/html/Prefs/AboutMe.html:65 share/html/Ticket/Elements/AddWatchers:91 msgid "Email" msgstr "E-postadresse" #: share/html/Elements/RT__User/ColumnMap:71 msgid "Email Address" msgstr "E-postadresse" #: etc/initialdata:729 etc/upgrade/3.7.85/content:7 msgid "Email Digest" msgstr "E-postsammendrag" #. ($AttachmentObj->TransactionObj->ObjectId, $AttachmentObj->Id) #: share/html/Ticket/ShowEmailRecord.html:117 msgid "Email Source for Ticket %1, Attachment %2" msgstr "" #: lib/RT/User.pm:590 msgid "Email address in use" msgstr "E-postadressen er alt i bruk" #: lib/RT/Config.pm:595 msgid "Email delivery" msgstr "E-postlevering" #: etc/initialdata:730 etc/upgrade/3.7.85/content:8 msgid "Email template for periodic notification digests" msgstr "E-postmal for regelmessige sammendrag" #: lib/RT/User.pm:93 msgid "EmailAddress" msgstr "E-postadresse" #: share/html/Elements/RT__Template/ColumnMap:77 msgid "Empty" msgstr "" #: lib/RT/Config.pm:528 msgid "Enable quote folding?" msgstr "" #: lib/RT/CustomField.pm:1187 share/html/Elements/RT__Catalog/ColumnMap:67 share/html/Elements/RT__Class/ColumnMap:68 share/html/Elements/RT__CustomField/ColumnMap:58 share/html/Elements/RT__CustomRole/ColumnMap:58 share/html/Elements/RT__Group/ColumnMap:83 share/html/Elements/RT__Queue/ColumnMap:58 share/html/Elements/RT__Scrip/ColumnMap:112 share/html/Elements/RT__User/ColumnMap:147 msgid "Enabled" msgstr "Aktivert" #: share/html/Articles/Article/Elements/EditBasics:88 msgid "Enabled (Unchecking this box disables this article)" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:73 msgid "Enabled (Unchecking this box disables this class)" msgstr "Aktivert (Ã¥ ta vekk hake i denne boksen deaktiverer denne kategorien)" #: share/html/Admin/CustomFields/Modify.html:183 share/html/Admin/Elements/EditCustomField:75 msgid "Enabled (Unchecking this box disables this custom field)" msgstr "I bruk (fjern krysset for Ã¥ deaktivere feltet)" #: share/html/Admin/CustomRoles/Modify.html:90 msgid "Enabled (Unchecking this box disables this custom role)" msgstr "" #: share/html/Admin/Groups/Modify.html:81 msgid "Enabled (Unchecking this box disables this group)" msgstr "I bruk (fjern krysset for Ã¥ deaktivere gruppa)" #: share/html/Admin/Queues/Modify.html:130 msgid "Enabled (Unchecking this box disables this queue)" msgstr "I bruk (fjern krysset for Ã¥ deaktivere køen)" #: share/html/Admin/Scrips/Create.html:67 share/html/Admin/Scrips/Modify.html:83 msgid "Enabled (Unchecking this box disables this scrip)" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:109 msgid "Enabled Catalogs" msgstr "" #: share/html/Admin/Articles/Classes/index.html:82 msgid "Enabled Classes" msgstr "Aktiverte kategorier" #: share/html/Admin/Queues/index.html:112 msgid "Enabled Queues" msgstr "Aktive køer" #: share/html/Admin/Scrips/index.html:81 msgid "Enabled Scrips" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:97 msgid "Enabled catalogs matching search criteria" msgstr "" #: share/html/Admin/Queues/index.html:100 msgid "Enabled queues matching search criteria" msgstr "Virksomme køer i samsvar med søkekriteriene" #. (loc_fuzzy($msg)) #: share/html/Admin/Articles/Classes/Modify.html:207 share/html/Admin/Elements/EditCustomField:139 msgid "Enabled status %1" msgstr "Aktivert statusen %1" #: share/html/Elements/Crypt/SignEncryptWidget:67 share/html/Elements/RT__Queue/ColumnMap:96 share/html/Ticket/Crypt.html:58 msgid "Encrypt" msgstr "Krypter" #: share/html/Admin/Queues/Modify.html:122 msgid "Encrypt by default" msgstr "Krypter som standard" #: share/html/Elements/ShowTransaction:221 msgid "Encrypt/Decrypt" msgstr "Krypter/dekrypter" #. ($id, $txn->Ticket) #: share/html/Ticket/Crypt.html:99 msgid "Encrypt/Decrypt transaction #%1 of ticket #%2" msgstr "Krypter/dekrypter transaksjon %1 av sak %2" #: lib/RT/Queue.pm:381 msgid "Encrypting" msgstr "" #: lib/RT/Attachment.pm:842 msgid "Encryption error; contact the administrator" msgstr "" #: share/html/Elements/ShortcutHelp:95 msgid "Enter" msgstr "" #: share/html/Articles/Article/Elements/EditLinks:51 msgid "Enter articles, tickets, or other URLs related to this article." msgstr "Skriv inn artikler, saker eller andre URL-er relatert til denne artikkelen." #: share/html/Elements/AddLinks:64 msgid "Enter links to assets as \"asset:###\", where ### represents the asset ID." msgstr "" #: lib/RT/CustomField.pm:203 msgid "Enter multiple IP address ranges" msgstr "Skriv inn flere IP-adressespekter" #: lib/RT/CustomField.pm:193 msgid "Enter multiple IP addresses" msgstr "Skriv inn flere IP-adresser" #: lib/RT/CustomField.pm:99 msgid "Enter multiple values" msgstr "Skriv inn flere verdier" #: lib/RT/CustomField.pm:161 msgid "Enter multiple values with autocompletion" msgstr "Skriv inn flere verdier – med autofullføring" #: share/html/Elements/AddLinks:71 msgid "Enter objects or URIs to link objects to. Separate multiple entries with spaces." msgstr "Skriv inn objektene eller nettadressene du vil koble til. Du kan skille flere verdier ved Ã¥ bruke mellomrom." #: lib/RT/CustomField.pm:194 msgid "Enter one IP address" msgstr "Skriv inn én IP-adresse" #: lib/RT/CustomField.pm:204 msgid "Enter one IP address range" msgstr "Skriv inn ett IP-adressespekter" #: lib/RT/CustomField.pm:100 msgid "Enter one value" msgstr "Skriv inn enkeltverdi" #: lib/RT/CustomField.pm:162 msgid "Enter one value with autocompletion" msgstr "Skriv inn enkeltverdi – med autofullføring" #: share/html/Elements/AddLinks:68 msgid "Enter queues or URIs to link queues to. Separate multiple entries with spaces." msgstr "Skriv inn køene eller nettadressene du vil koble køene til. Du kan skille flere verdier ved Ã¥ bruke mellomrom." #: share/html/Elements/AddLinks:62 share/html/Search/Bulk.html:209 msgid "Enter tickets or URIs to link tickets to. Separate multiple entries with spaces." msgstr "Skriv inn sakene eller nettadressene du vil koble sakene til. Du kan skille flere verdier ved Ã¥ bruke mellomrom." #: share/html/Elements/BulkLinks:115 msgid "Enter tickets or URIs to link to. Separate multiple entries with spaces." msgstr "" #: lib/RT/Config.pm:330 msgid "Enter time in hours by default" msgstr "Skriv inn tid i timer som standard" #: lib/RT/CustomField.pm:205 msgid "Enter up to %quant(%1,IP address range,IP address ranges)" msgstr "Skriv inn opptil %1 IP-adressespekter" #: lib/RT/CustomField.pm:195 msgid "Enter up to %quant(%1,IP address,IP addresses)" msgstr "Skriv inn opptil %1 IP-adresser" #: lib/RT/CustomField.pm:101 msgid "Enter up to %quant(%1,value,values)" msgstr "Skriv inn opptil %1 verdier" #: lib/RT/CustomField.pm:163 msgid "Enter up to %quant(%1,value,values) with autocompletion" msgstr "Skriv inn opptil %1 verdier – med autofullføring" #. (map { "$_" } qw(initial active inactive any)) #: share/html/Search/Simple.html:77 msgid "Entering %1, %2, %3, or %4 limits results to tickets with one of the respective types of statuses. Any individual status name limits results to just the statuses named." msgstr "Ã… skrive inn %1, %2, %3 eller %4 begrenser resultatene til saker med én av de respektive statustypene. Ethvert individuelt statusnavn begrenser resultatene til bare de navngitte statusene." #: share/html/Admin/CustomFields/Modify.html:124 share/html/Admin/CustomRoles/Modify.html:66 msgid "Entry Hint" msgstr "" #: share/html/Admin/Tools/Configuration.html:307 msgid "Environment variables" msgstr "" #: sbin/rt-email-digest:95 share/html/Elements/JavascriptConfig:70 share/html/Elements/Login:54 share/html/Install/Elements/Errors:49 share/html/Search/Results.html:58 share/html/m/_elements/login:53 msgid "Error" msgstr "Feil" #: share/html/Ticket/ShowEmailRecord.html:107 msgid "Error loading attachment" msgstr "" #. ($error) #: share/html/Search/Chart:466 msgid "Error plotting chart: %1" msgstr "" #: etc/initialdata:677 etc/upgrade/3.7.10/content:16 msgid "Error to RT owner: public key" msgstr "Feil til RT-eier: offentlignøkkel" #: etc/initialdata:739 etc/upgrade/3.7.87/content:7 msgid "Error: Missing dashboard" msgstr "Feil: Mangler utforming" #: etc/upgrade/3.7.10/content:41 msgid "Error: bad GnuPG data" msgstr "Feil: Ugyldige GnuPG-data" #: etc/initialdata:702 msgid "Error: bad encrypted data" msgstr "" #: share/html/Articles/Article/Search.html:215 msgid "Error: cannot change privacy value of existing search" msgstr "Feil: Kan ikke endre personvernsregel for eksisterende søk" #. ($ARGS{'LoadSavedSearch'}, $msg) #: share/html/Articles/Article/Search.html:178 msgid "Error: could not load saved search %1: %2" msgstr "Feil: kunne ikke laste lagret søk %1: %2" #: etc/initialdata:690 etc/upgrade/3.7.10/content:29 msgid "Error: no private key" msgstr "Feil: mangler privatnøkkel" #: etc/initialdata:668 etc/upgrade/3.7.10/content:7 msgid "Error: public key" msgstr "Feil: offentlignøkkel" #. ($search->Name, $msg) #: share/html/Articles/Article/Search.html:230 msgid "Error: search %1 not updated: %2" msgstr "Feil: søk %1 ikke oppdatert: %2" #: etc/initialdata:659 etc/upgrade/4.1.22/content:77 msgid "Error: unencrypted message" msgstr "" #: bin/rt-crontool:372 msgid "Escalate tickets" msgstr "Øk saksprioriteter" #: share/html/Ticket/Elements/ShowBasics:66 share/html/m/ticket/show:224 msgid "Estimated" msgstr "Estimert" #: lib/RT/Handle.pm:742 msgid "Everyone" msgstr "Alle" #: share/html/Elements/Tabs:649 msgid "Examine tickets created in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:644 msgid "Examine tickets resolved in a queue between two dates" msgstr "" #: share/html/Elements/Tabs:639 msgid "Examine tickets resolved in a queue, grouped by owner" msgstr "" #: bin/rt-crontool:358 msgid "Example:" msgstr "Eksempel:" #: share/html/Admin/Elements/ShowKeyInfo:74 msgid "Expire" msgstr "Utløper" #: share/html/Search/Elements/BuildFormatString:102 msgid "ExtendedStatus" msgstr "UtvidetStatus" #: share/html/Admin/Tools/Configuration.html:248 msgid "Extension" msgstr "" #: lib/RT/User.pm:1151 msgid "External authentication enabled." msgstr "Ekstern autentisering slÃ¥tt pÃ¥" #: share/html/Elements/RT__User/ColumnMap:141 msgid "Extra Info" msgstr "" #: share/html/Admin/Users/Modify.html:101 msgid "Extra info" msgstr "Tilleggsinformasjon" #: share/html/Elements/Tabs:860 msgid "Extract Article" msgstr "Trekk ut artikkel" #: etc/initialdata:114 etc/upgrade/3.8.3/content:78 msgid "Extract Subject Tag" msgstr "Hent emnekode" #. ($Ticket) #: share/html/Articles/Article/ExtractIntoClass.html:48 share/html/Articles/Article/ExtractIntoTopic.html:48 msgid "Extract a new article from ticket #%1" msgstr "Trekk ut en ny artikkel fra sak #%1" #. ($Ticket, $ClassObj->Name) #: share/html/Articles/Article/ExtractFromTicket.html:48 msgid "Extract article from ticket #%1 into class %2" msgstr "Trekk ut artikkel fra sak #%1 inn i kategori %2" #: etc/initialdata:115 etc/upgrade/3.8.3/content:79 msgid "Extract tags from a Transaction's subject and add them to the Ticket's subject." msgstr "Hent emnekoder fra emnelinjen i en transaksjon, og legg disse til saksemnet." #. ($DBI::errstr) #: share/html/Install/DatabaseDetails.html:194 msgid "Failed to connect to database: %1" msgstr "Klarte ikke koble til databasen: %1" #. ($self->loc( $self->ObjectName )) #: lib/RT/SharedSetting.pm:219 msgid "Failed to create %1 attribute" msgstr "Klarte ikke opprette attributtet %1" #: lib/RT/User.pm:330 msgid "Failed to find 'Privileged' users pseudogroup." msgstr "Fant ikke pseudogruppa «brukere med utvidede rettigheter»" #: lib/RT/User.pm:337 msgid "Failed to find 'Unprivileged' users pseudogroup" msgstr "Fant ikke pseudogruppa «brukere uten utvidede rettigheter»" #. ($self->ObjectName, $id) #: lib/RT/SharedSetting.pm:123 msgid "Failed to load %1 %2" msgstr "Klarte ikke laste %1 %2" #. ($self->ObjectName, $id, $msg) #: lib/RT/SharedSetting.pm:147 msgid "Failed to load %1 %2: %3" msgstr "Klarte ikke laste %1 %2: %3" #. ($modname, $error) #: bin/rt-crontool:306 msgid "Failed to load module %1. (%2)" msgstr "Klarte ikke laste modulen %1. (%2)" #. ($privacy) #: lib/RT/SharedSetting.pm:202 msgid "Failed to load object for %1" msgstr "Klarte ikke laste objektet for %1" #: sbin/rt-email-digest:159 msgid "Failed to load template" msgstr "Klarte ikke laste malen" #. ($self->Ticket) #: lib/RT/Reminders.pm:122 msgid "Failed to load ticket %1" msgstr "Lasting av sak %1 feilet" #: sbin/rt-email-digest:167 msgid "Failed to parse template" msgstr "Klarte ikke tolke malen" #: share/html/Search/Elements/EditFormat:73 share/html/Search/Elements/EditFormat:77 msgid "Failed to update format. Reason:" msgstr "" #: lib/RT/Date.pm:92 msgid "Feb" msgstr "feb." #: share/html/Elements/Tabs:979 msgid "Feeds" msgstr "Kilder" #: share/html/Articles/Article/ExtractFromTicket.html:62 share/html/Elements/RT__Transaction/ColumnMap:70 msgid "Field" msgstr "Felt" #: share/html/Admin/CustomFields/Modify.html:89 msgid "Field values source:" msgstr "Kilde for feltverdier:" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:943 msgid "File '%1' dropped because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #. ($self->Data) #: lib/RT/Transaction.pm:953 msgid "File '%1' insert failed. See error log for details." msgstr "" #. ($self->Data, $self->OldValue, $self->NewValue) #: lib/RT/Transaction.pm:932 msgid "File '%1' truncated because its size (%2 bytes) exceeded configured maximum size setting (%3 bytes)." msgstr "" #: lib/RT/Tickets.pm:143 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Elements/SelectAttachmentField:54 msgid "Filename" msgstr "Filnavn" #: share/html/Elements/JavascriptConfig:67 msgid "Filenames with double quotes can not be uploaded." msgstr "" #: share/html/Admin/Tools/Shredder/Elements/PluginArguments:52 msgid "Fill arguments" msgstr "Fyllargument" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:82 msgid "Fill boxes with color using" msgstr "Fyll boksene med farge med" #: lib/RT/CustomField.pm:109 msgid "Fill in multiple text areas" msgstr "Fyll ut flere fritekstfelt" #: lib/RT/CustomField.pm:119 msgid "Fill in multiple wikitext areas" msgstr "Fyll ut flere wikitext-felt" #: lib/RT/CustomField.pm:110 msgid "Fill in one text area" msgstr "Fyll ut et fritekstfelt" #: lib/RT/CustomField.pm:120 msgid "Fill in one wikitext area" msgstr "Fyll ut et wikitext-felt" #: share/html/Admin/CustomFields/Modify.html:148 share/html/Admin/CustomFields/Modify.html:156 msgid "Fill in this field with a URL." msgstr "Fyll ut feltet med en nettadresse." #: lib/RT/CustomField.pm:111 msgid "Fill in up to %quant(%1,text area,text areas)" msgstr "Fyll ut opptil %1 fritekstfelt" #: lib/RT/CustomField.pm:121 msgid "Fill in up to %quant(%1,wikitext area,wikitext areas)" msgstr "Fyll ut opptil %1 wikitext-felt" #: lib/RT/Tickets.pm:1829 share/html/Admin/Queues/DefaultValues.html:63 share/html/Search/Elements/PickBasics:202 share/html/Ticket/Create.html:275 share/html/m/ticket/create:347 msgid "Final Priority" msgstr "Sluttprioritet" #: lib/RT/Report/Tickets.pm:65 lib/RT/Tickets.pm:117 share/html/Elements/RT__Queue/ColumnMap:65 share/html/Elements/RT__Ticket/ColumnMap:165 share/html/Search/Elements/BuildFormatString:102 msgid "FinalPriority" msgstr "Sluttprioritet" #: share/html/Asset/Elements/AddCatalogPeople:66 msgid "Find a group..." msgstr "" #: share/html/Elements/FindUser:48 msgid "Find a user" msgstr "" #: share/html/Asset/Elements/AddCatalogPeople:57 msgid "Find a user..." msgstr "" #: share/html/Admin/Users/index.html:77 msgid "Find all users whose" msgstr "Finn alle brukerne der" #: share/html/Elements/FindAsset:48 msgid "Find an asset" msgstr "" #: share/html/Admin/Groups/index.html:68 share/html/Admin/Queues/People.html:84 share/html/Dashboards/Elements/SubscriptionRecipients:106 share/html/Ticket/Elements/EditPeople:57 msgid "Find groups whose" msgstr "Finn alle gruppene der" #: share/html/Admin/Queues/People.html:80 share/html/Dashboards/Elements/SubscriptionRecipients:96 share/html/Ticket/Elements/EditPeople:53 msgid "Find people whose" msgstr "Finn alle personene der" #: share/html/Search/Results.html:154 msgid "Find tickets" msgstr "Finn saker" #: etc/RT_Config.pm:1296 msgid "FindAsset" msgstr "" #: etc/RT_Config.pm:1296 msgid "FindUser" msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:67 msgid "Fingerprint" msgstr "Fingeravtrykk" #: share/html/Install/Finish.html:48 share/html/Install/Global.html:64 msgid "Finish" msgstr "Fullfør" #: share/html/Elements/Tabs:878 msgid "First" msgstr "Først" #. (RT->Config->Get('OwnerEmail')) #: share/html/Elements/LoginHelp:49 msgid "For local help, please contact %1" msgstr "" #. ($link_start, $link_end) #: share/html/Search/Simple.html:91 msgid "For the full power of RT's searches, please visit the %1search builder interface%2." msgstr "For den fulle kraften av RT-søk, vennligst besøk %1søkebyggegrensesnittet%2." #: share/html/Search/Bulk.html:84 msgid "Force change" msgstr "Tving gjennom endring" #: share/html/Search/Edit.html:59 share/html/Search/Elements/EditFormat:52 msgid "Format" msgstr "" #: lib/RT/Config.pm:267 msgid "Formats iCal feed events with date and time" msgstr "" #: etc/initialdata:643 etc/upgrade/3.7.15/content:7 share/html/Elements/ShowTransaction:208 share/html/Elements/Tabs:816 msgid "Forward" msgstr "Videresend" #: share/html/Ticket/Forward.html:102 msgid "Forward Message" msgstr "Videresend melding" #: share/html/Ticket/Forward.html:101 msgid "Forward Message and Return" msgstr "Videresend melding og gÃ¥ tilbake" #: etc/initialdata:651 etc/upgrade/3.8.6/content:6 msgid "Forward Ticket" msgstr "Videresend sak" #: lib/RT/Queue.pm:134 msgid "Forward messages outside of RT" msgstr "Videresend meldinger utenfor RT" #. ($TicketObj->id) #: share/html/Ticket/Forward.html:152 msgid "Forward ticket #%1" msgstr "Videresend sak %1" #. ($txn->id) #: share/html/Ticket/Forward.html:151 msgid "Forward transaction #%1" msgstr "Videresend transaksjon %1" #. ($self->Field, $recipients, [\''], \'') #: lib/RT/Transaction.pm:967 msgid "Forwarded %3Transaction #%1%4 to %2" msgstr "" #. ($recipients) #: lib/RT/Transaction.pm:975 msgid "Forwarded Ticket to %1" msgstr "Videresendte sak til %1" #: etc/initialdata:644 msgid "Forwarded message" msgstr "" #: etc/initialdata:652 msgid "Forwarded ticket message" msgstr "" #. ($assets->Count) #: share/html/Asset/Search/index.html:58 msgid "Found %quant(%1,asset,assets)" msgstr "" #. ($ticketcount) #. ($collection->CountAll) #: share/html/Search/Results.html:157 share/html/m/_elements/ticket_list:83 msgid "Found %quant(%1,ticket,tickets)" msgstr "Fant %quant(%1,sak,saker)" #: lib/RT/Record.pm:1014 msgid "Found Object" msgstr "Fant objekt" #: share/html/Dashboards/Subscription.html:92 msgid "Frequency" msgstr "Frekvens" #: lib/RT/Date.pm:111 msgid "Fri" msgstr "fr." #: share/html/Dashboards/Subscription.html:115 msgid "Friday" msgstr "fredag" #: share/html/Ticket/Forward.html:62 msgid "From" msgstr "Fra" #: share/html/Admin/Tools/Theme.html:67 msgid "GD is disabled or not installed. You can upload an image, but you won't get automatic color suggestions." msgstr "GD er deaktivert eller ikke installert. Du kan laste opp et bilde, men du vil ikke fÃ¥ automatiske fargeforslag." #: lib/RT/User.pm:98 msgid "Gecos" msgstr "" #: lib/RT/Config.pm:216 lib/RT/Config.pm:354 msgid "General" msgstr "Generelt" #: etc/initialdata:28 etc/upgrade/4.3.10/content:9 msgid "General assets" msgstr "" #: share/html/Admin/Elements/EditRightsCategoryTabs:87 msgid "General rights" msgstr "Generelle rettigheter" #: share/html/Install/index.html:76 msgid "Getting started" msgstr "Kom i gang" #: sbin/rt-email-digest:89 msgid "Give output even on messages successfully sent" msgstr "" #. ($self->_FormatUser($New)) #: lib/RT/Transaction.pm:1085 lib/RT/Transaction.pm:1238 lib/RT/Transaction.pm:1250 msgid "Given to %1" msgstr "Tildelt %1" #: share/html/Admin/Scrips/Modify.html:65 share/html/Elements/RT__CustomField/ColumnMap:88 share/html/Elements/RT__Scrip/ColumnMap:58 share/html/Elements/RT__Template/ColumnMap:69 share/html/Elements/ShortcutHelp:58 share/html/Elements/Tabs:121 msgid "Global" msgstr "Globalt" #: share/html/Admin/Tools/Configuration.html:219 msgid "Global Attributes" msgstr "Globale egenskaper" #: share/html/Articles/Topics.html:91 msgid "Global Topics" msgstr "Globale emner" #: share/html/Admin/Global/CustomFields/index.html:61 msgid "Global custom field configuration" msgstr "Oppsett av globale fleksifelt" #: share/html/Admin/Global/DashboardsInMenu.html:104 msgid "Global dashboards in menu saved." msgstr "" #. ($args{'Template'}) #: lib/RT/Scrip.pm:163 msgid "Global or queue specific template '%1' not found" msgstr "" #. ($pane) #: share/html/Admin/Global/MyRT.html:100 msgid "Global portlet %1 saved." msgstr "Globalt panel «%1» lagret" #. ($args{'Template'}) #: lib/RT/Scrip.pm:161 msgid "Global template '%1' not found" msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1673 msgid "Globally added custom field %1." msgstr "" #. ($self->Name) #: lib/RT/CustomField.pm:1713 msgid "Globally removed custom field %1." msgstr "" #: share/html/Admin/Users/Keys.html:63 msgid "GnuPG private key" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 share/html/Asset/Elements/CreateLinkedTicket:106 share/html/m/_elements/menu:67 msgid "Go" msgstr "Kjør" #: share/html/Elements/ShortcutHelp:74 msgid "Go back / forward" msgstr "" #: share/html/Admin/Groups/index.html:55 msgid "Go to group" msgstr "GÃ¥ til gruppe" #: share/html/Admin/Users/index.html:60 msgid "Go to user" msgstr "GÃ¥ til bruker" #: share/html/Admin/Articles/Classes/index.html:71 share/html/Admin/CustomFields/index.html:69 share/html/Admin/CustomRoles/index.html:70 share/html/Admin/Groups/index.html:71 share/html/Admin/Queues/People.html:82 share/html/Admin/Queues/People.html:86 share/html/Admin/Queues/index.html:70 share/html/Admin/Scrips/index.html:56 share/html/Admin/Users/index.html:81 share/html/Approvals/index.html:54 share/html/Dashboards/Elements/SubscriptionRecipients:102 share/html/Dashboards/Elements/SubscriptionRecipients:112 share/html/Elements/RefreshHomepage:52 share/html/Ticket/Elements/EditPeople:55 share/html/Ticket/Elements/EditPeople:59 msgid "Go!" msgstr "Kjør" #: share/html/SelfService/Elements/GotoTicket:49 share/html/SelfService/Elements/GotoTicket:49 msgid "Goto Ticket" msgstr "GÃ¥ til sak" #: share/html/Elements/GotoTicket:49 msgid "Goto ticket" msgstr "GÃ¥ til saken" #. ($self->RightName, $princ_obj->DisplayName) #: lib/RT/ACE.pm:288 msgid "Granted right '%1' to %2." msgstr "" #: share/html/Ticket/Elements/ShowSummary:93 share/html/Ticket/ModifyLinks.html:58 msgid "Graph" msgstr "Diagram" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:48 msgid "Graph Properties" msgstr "Diagramegenskaper" #: share/html/Search/Elements/Chart:73 msgid "Graphical charts are not available." msgstr "Diagram er ikke tilgjengelige." #: lib/RT/Record.pm:994 share/html/Asset/Elements/EditRoleMembers:74 share/html/Dashboards/Elements/SubscriptionRecipients:137 share/html/Search/Elements/SelectPersonType:59 share/html/Ticket/Elements/AddWatchers:75 msgid "Group" msgstr "Gruppe" #: share/html/Elements/Tabs:1157 share/html/Elements/Tabs:245 share/html/Elements/Tabs:357 share/html/Elements/Tabs:402 share/html/Elements/Tabs:418 share/html/Elements/Tabs:531 msgid "Group Rights" msgstr "Grupperettigheter" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:944 msgid "Group already has member: %1" msgstr "Alt medlem av gruppa: %1" #: share/html/Search/Chart.html:140 msgid "Group by" msgstr "" #. ($create_msg) #: share/html/Admin/Groups/Modify.html:117 msgid "Group could not be created: %1" msgstr "Klarte ikke opprette gruppa: %1" #: lib/RT/Group.pm:359 msgid "Group created" msgstr "Gruppa er opprettet" #: lib/RT/Group.pm:710 msgid "Group disabled" msgstr "Gruppa er deaktivert" #: lib/RT/Group.pm:712 msgid "Group enabled" msgstr "Gruppa er aktivert" #: lib/RT/Group.pm:1168 msgid "Group has no such member" msgstr "Gruppa har ikke medlemmet" #. ($value) #: lib/RT/Group.pm:415 msgid "Group name '%1' is already in use" msgstr "Gruppenavn '%1' er allerede i bruk" #: lib/RT/Group.pm:929 msgid "Group not found" msgstr "Fant ikke gruppa" #: share/html/Search/Chart.html:141 msgid "Group tickets by" msgstr "" #. ($_->Name) #. ($g->Name) #: share/html/Asset/Elements/ShowRoleMembers:78 share/html/Elements/ShowPrincipal:64 msgid "Group: %1" msgstr "" #: share/html/Search/Chart.html:58 msgid "Grouped search results" msgstr "" #: lib/RT/CustomField.pm:2051 lib/RT/CustomField.pm:218 share/html/Admin/Global/CustomFields/index.html:71 share/html/Admin/Groups/Members.html:88 share/html/Admin/Queues/People.html:109 share/html/Elements/Tabs:169 share/html/Elements/Tabs:306 share/html/Elements/Tabs:75 msgid "Groups" msgstr "Grupper" #: lib/RT/Group.pm:950 msgid "Groups can't be members of their members" msgstr "Grupper kan ikke være medlem av sine medlemmer" #: share/html/Admin/Groups/index.html:102 msgid "Groups matching search criteria" msgstr "Grupper i samsvar med søkekriteriene" #: share/html/Admin/Elements/MembershipsPage:55 msgid "Groups the principal is member of (check box to delete)" msgstr "" #: share/html/Admin/Elements/MembershipsPage:69 msgid "Groups the principal is not member of (check box to add)" msgstr "" #: share/html/Ticket/Elements/ShowRequestor:120 msgid "Groups this user belongs to" msgstr "Brukeren er medlem av" #: etc/initialdata:292 etc/upgrade/4.1.9/content:9 msgid "HTML Autoresponse template" msgstr "" #: etc/initialdata:484 etc/upgrade/4.1.9/content:103 msgid "HTML Ticket Resolved" msgstr "" #: etc/initialdata:461 etc/upgrade/4.1.9/content:91 msgid "HTML Ticket status changed" msgstr "" #: etc/initialdata:425 etc/upgrade/4.1.9/content:78 msgid "HTML admin comment template" msgstr "" #: etc/initialdata:382 etc/upgrade/4.1.9/content:57 msgid "HTML admin correspondence template" msgstr "" #: etc/initialdata:402 etc/upgrade/4.1.9/content:69 msgid "HTML correspondence template" msgstr "" #: etc/initialdata:337 etc/upgrade/4.1.9/content:35 msgid "HTML transaction template" msgstr "" #: lib/RT/Tickets.pm:129 msgid "HasMember" msgstr "HarMedlem" #: etc/upgrade/3.8.6/content:7 msgid "Heading of a forwarded Ticket" msgstr "Overskrift til videresendt sak" #: etc/upgrade/3.7.15/content:8 msgid "Heading of a forwarded message" msgstr "Overskrift til videresendt melding" #: share/html/Search/Chart.html:188 msgid "Height" msgstr "" #: lib/RT/Asset.pm:87 msgid "HeldBy" msgstr "" #: lib/RT/Interface/CLI.pm:75 lib/RT/Interface/CLI.pm:75 msgid "Hello!" msgstr "Hei!" #: share/html/Install/Global.html:52 msgid "Help us set up some useful defaults for RT." msgstr "Hjelp oss Ã¥ sette opp noen nyttige standardverdier for RT." #: share/html/Elements/ShowHistoryHeader:80 msgid "Hide all quoted text" msgstr "Skjul all sitert tekst" #: share/html/Elements/FoldStanzaJS:50 msgid "Hide quoted text" msgstr "Skjul sitert tekst" #: share/html/Ticket/Display.html:63 msgid "Hide unset fields" msgstr "" #: lib/RT/Config.pm:537 msgid "Hide unset fields?" msgstr "" #: share/html/Elements/ShowHistoryHeader:63 share/html/Elements/Tabs:1027 share/html/Elements/Tabs:1047 share/html/Elements/Tabs:1065 share/html/Elements/Tabs:1171 share/html/Elements/Tabs:1238 share/html/Elements/Tabs:359 share/html/Elements/Tabs:376 share/html/Elements/Tabs:404 share/html/Elements/Tabs:782 share/html/Ticket/Elements/ClickToShowHistory:49 share/html/Ticket/Elements/DelayShowHistory:49 share/html/m/_elements/ticket_menu:64 msgid "History" msgstr "Oppdateringer" #. ($id) #: share/html/Articles/Article/History.html:48 msgid "History for article #%1" msgstr "Historie for artikkel #%1" #. ($asset->id, $asset->Name) #: share/html/Asset/History.html:48 share/html/SelfService/Asset/History.html:48 msgid "History of Asset #%1: %2" msgstr "" #. ($GroupObj->Name) #: share/html/Admin/Groups/History.html:60 msgid "History of the group %1" msgstr "Gruppeendringer for %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/History.html:60 msgid "History of the queue %1" msgstr "Køendringer for %1" #. ($User->Format) #. ($UserObj->Name) #: share/html/Admin/Users/History.html:60 share/html/User/History.html:48 msgid "History of the user %1" msgstr "Brukerendringer for %1" #: share/html/Elements/RT__User/ColumnMap:81 msgid "Home Phone" msgstr "Hjemmetelefon" #: lib/RT/Config.pm:389 msgid "Home page refresh interval" msgstr "Oppdater hjemmesiden" #: share/html/Elements/Tabs:551 share/html/m/_elements/header:69 msgid "Homepage" msgstr "Hjemmeside" #: lib/RT/Report/Tickets.pm:133 share/html/Dashboards/Subscription.html:145 msgid "Hour" msgstr "Time" #: lib/RT/Report/Tickets.pm:133 msgid "Hourly" msgstr "Hver time" #: share/html/Elements/SelectTimeUnits:53 msgid "Hours" msgstr "timer" #. (6) #: lib/RT/Base.pm:125 msgid "I have %quant(%1,concrete mixer,concrete mixers)." msgstr "Jeg har %quant(%1,sementblander,sementblandere)." #: share/html/Prefs/AboutMe.html:178 msgid "I want to reset my secret token." msgstr "" #: lib/RT/Date.pm:117 msgid "ISO" msgstr "" #: lib/RT/Tickets.pm:1760 share/html/Ticket/Elements/ShowBasics:50 share/html/m/ticket/show:215 msgid "Id" msgstr "ID" #: share/html/Admin/Users/Modify.html:63 share/html/Prefs/AboutMe.html:60 msgid "Identity" msgstr "Identitet" #: share/html/Admin/Articles/Classes/Modify.html:114 msgid "If a Custom Field is selected, the Subject of your outgoing email will be overridden by this article." msgstr "" #: lib/RT/Approval/Rule/Rejected.pm:54 msgid "If an approval is rejected, reject the original and delete pending approvals" msgstr "Hvis en godkjenning blir avvist, avvis originalen, og slett ventende godkjenninger" #: share/html/Elements/LoginRedirectWarning:66 msgid "If this is not what you expect, leave this page now without logging in." msgstr "Hvis dette ikke er hva du forventer, forlat denne siden nÃ¥ uten Ã¥ logge inn." #: bin/rt-crontool:354 msgid "If this tool were setgid, a hostile local user could use this tool to gain administrative access to RT." msgstr "Hvis dette verktøyet var «setgid», kunne en ondsinnet lokal bruker bruke det for Ã¥ fÃ¥ administrativ tilgang til RT." #: share/html/Install/index.html:83 msgid "If you already have a working RT server and database, you should take this opportunity to make sure that your database server is running and that the RT server can connect to it. Once you've done that, stop and start the RT server." msgstr "Hvis du alt har en fungerende RT-tjener og RT-database, bør du nÃ¥ se til at databasetjeneren kjører, og at RT-tjeneren kan koble til den. NÃ¥r du har gjort dette, bør du stoppe og sÃ¥ starte RT-tjeneren pÃ¥ nytt." #. (qq[], '') #: share/html/Errors/WebRemoteUser/Wrapper:75 msgid "If you have an internal RT login, you may %1try it instead%2." msgstr "" #. ($escaped_path, $action, $start, $end) #: share/html/Elements/CSRF:59 msgid "If you really intended to visit %1 and %2, then %3click here to resume your request%4." msgstr "Hvis du virkelig mente Ã¥ besøke %1 og %2, sÃ¥ %3klikk her for Ã¥ fortsette din forespørsel%4." #: share/html/Install/Finish.html:60 msgid "If you've changed the Port that RT runs on, you'll need to restart the server in order to log in." msgstr "Hvis du har endret porten RT kjører pÃ¥, mÃ¥ du restarte serveren for Ã¥ logge inn." #: share/html/Admin/Queues/People.html:134 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:138 share/html/Ticket/ModifyPeople.html:82 msgid "If you've updated anything above, be sure to" msgstr "Viss du har gjort endringer her, mÃ¥ du huske Ã¥" #. ('CPAN') #: share/html/Install/DatabaseType.html:61 msgid "If your preferred database isn't listed in the dropdown below, that means RT couldn't find a database driver for it installed locally. You may be able to remedy this by using %1 to download and install DBD::MySQL, DBD::Oracle or DBD::Pg." msgstr "Hvis din foretrukne database ikke er synlig i feltet nedenfor, betyr det at RT ikke fant en databasedriver for denne installert. Det kan hjelpe Ã¥ bruke %1 for Ã¥ laste ned og installere «DBD::MySQL», «DBD::Oracle» eller «DBD::Pg»." #: lib/RT/Record.pm:1006 msgid "Illegal value for %1" msgstr "Ugyldig verdi for %1" #: share/html/Elements/ShowTransactionAttachments:277 msgid "Image displayed inline above" msgstr "" #: share/html/Elements/ShowTransactionAttachments:273 msgid "Image not shown because display is disabled in system configuration." msgstr "" #: share/html/Elements/ShowTransactionAttachments:281 msgid "Image not shown because sender requested not to inline it." msgstr "" #: lib/RT/Record.pm:1009 msgid "Immutable field" msgstr "LÃ¥st felt" #: share/html/Ticket/Elements/ShowRequestor:160 share/html/User/Elements/Portlets/InactiveTickets:54 msgid "Inactive Tickets" msgstr "Inaktive saker" #: share/html/Elements/RT__Asset/ColumnMap:106 msgid "Inactive tickets" msgstr "" #: share/html/Articles/Elements/BeforeMessageBox:59 msgid "Include Article:" msgstr "Inkluder artikkel:" #: share/html/Search/Chart.html:194 msgid "Include TicketSQL query" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:89 msgid "Include article name" msgstr "" #: share/html/Admin/Articles/Classes/Modify.html:93 msgid "Include article summary" msgstr "" #: share/html/Ticket/Elements/AddAttachments:168 msgid "Include attachments" msgstr "" #. ($cf->Name) #: share/html/Admin/Articles/Classes/Modify.html:97 msgid "Include custom field '%1'" msgstr "" #: share/html/Search/Chart.html:191 msgid "Include data table" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:85 msgid "Include disabled catalogs in listing." msgstr "" #: share/html/Admin/Articles/Classes/index.html:70 msgid "Include disabled classes in listing." msgstr "Inkluder deaktiverte kategorier i opplisting." #: share/html/Admin/CustomFields/index.html:64 msgid "Include disabled custom fields in listing." msgstr "Ta med deaktiverte fleksifelt i lista" #: share/html/Admin/CustomRoles/index.html:69 msgid "Include disabled custom roles in listing." msgstr "" #: share/html/Admin/Groups/index.html:70 msgid "Include disabled groups in listing." msgstr "Ta med deaktiverte grupper i lista" #: share/html/Admin/Queues/index.html:69 msgid "Include disabled queues in listing." msgstr "Ta med deaktiverte køer i lista" #: share/html/Admin/Scrips/index.html:55 msgid "Include disabled scrips in listing." msgstr "" #: share/html/Admin/Users/index.html:79 msgid "Include disabled users in search." msgstr "Ta med deaktiverte brukere i søkeresultatene" #: share/html/Admin/CustomFields/Modify.html:152 msgid "Include page" msgstr "Vis nettside" #: share/html/Articles/Article/Elements/ShowSearchCriteria:140 msgid "Include subtopics" msgstr "Inkluder underemner" #: lib/RT/Config.pm:266 msgid "Include time in iCal feed events?" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:64 msgid "Index updates from %1" msgstr "" #: lib/RT/Config.pm:597 msgid "Individual messages" msgstr "Enkeltmeldinger" #: etc/initialdata:679 etc/upgrade/3.7.10/content:18 msgid "Inform RT owner that user(s) have problems with public keys" msgstr "Varsle RT-eieren om at brukeren/brukerne har ugyldige offentlignøkler" #: etc/initialdata:741 etc/upgrade/3.7.87/content:9 msgid "Inform user that a dashboard he subscribed to is missing" msgstr "Varsle brukeren om at utforminga han/hun bruker er fjernet" #: etc/upgrade/3.7.10/content:43 msgid "Inform user that a message he sent has invalid GnuPG data" msgstr "Varsle brukeren om at meldinga han/hun sendte har ugyldige GnuPG-data" #: etc/initialdata:704 msgid "Inform user that a message he sent has invalid encryption data" msgstr "" #: etc/initialdata:670 etc/upgrade/3.7.10/content:9 msgid "Inform user that he has problems with public key and couldn't recieve encrypted content" msgstr "Varsle brukeren om at han/hun har feil i offentlignøkkelen, og derfor ikke kan motta krypterte meldinger" #: etc/initialdata:716 msgid "Inform user that his password has been reset" msgstr "Varsle brukeren om at passordet hans/hennes er nullstilt" #: etc/initialdata:661 etc/upgrade/4.1.22/content:79 msgid "Inform user that their unencrypted mail has been rejected" msgstr "" #: etc/initialdata:692 etc/upgrade/3.7.10/content:31 msgid "Inform user that we received an encrypted email and we have no private keys to decrypt" msgstr "Varsle brukeren om mottak av kryptert e-post som RT mangler privatnøkkel for Ã¥ dekryptere" #: lib/RT/Tickets.pm:1806 share/html/Search/Elements/PickBasics:201 msgid "Initial Priority" msgstr "Startprioritet" #: lib/RT/Report/Tickets.pm:64 lib/RT/Tickets.pm:116 share/html/Elements/RT__Queue/ColumnMap:61 share/html/Elements/RT__Ticket/ColumnMap:159 share/html/Search/Elements/BuildFormatString:102 msgid "InitialPriority" msgstr "Startprioritet" #: share/html/Install/Global.html:64 share/html/Install/Initialize.html:48 share/html/Install/Initialize.html:61 msgid "Initialize Database" msgstr "Gjør klar databasen" #: lib/RT/ScripAction.pm:142 msgid "Input error" msgstr "Feil i inndata" #. ($CF->FriendlyPattern) #. ($CustomField->FriendlyPattern) #. ($self->FriendlyPattern) #: lib/RT/CustomField.pm:1755 lib/RT/CustomField.pm:1984 share/html/Elements/EditCustomFields:89 share/html/Elements/ValidateCustomFields:102 msgid "Input must match %1" msgstr "Inndataene mÃ¥ være i samsvar med %1" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:58 msgid "Insert from %1" msgstr "" #. ($id->{error_message}) #: lib/RT/Record.pm:321 msgid "Internal Error: %1" msgstr "Internfeil: %1" #. ($txn_msg) #: lib/RT/Article.pm:219 msgid "Internal error: %1" msgstr "Intern feil: %1" #. ($type) #: share/html/Admin/Elements/EditRights:219 msgid "Invalid %1" msgstr "Ugyldig %1" #. ('LoadSavedSearch') #: share/html/Articles/Article/Search.html:181 msgid "Invalid %1 argument" msgstr "Ugyldig %1 argument" #. ($_, $ARGS{$_}) #. ('Administrator Email', $ARGS{OwnerEmail}) #: share/html/Install/Global.html:89 share/html/Install/Sendmail.html:92 msgid "Invalid %1: '%2' doesn't look like an email address" msgstr "Ugyldig %1: «%2» er ikke en gyldig e-postadresse" #. ('WebPort') #: share/html/Install/Basics.html:81 msgid "Invalid %1: it should be a number" msgstr "Ugyldig %1: mÃ¥ være et tall" #: lib/RT/Asset.pm:219 msgid "Invalid Catalog" msgstr "" #: lib/RT/Article.pm:110 msgid "Invalid Class" msgstr "Ugyldig kategori" #: lib/RT/CustomField.pm:339 lib/RT/CustomField.pm:819 msgid "Invalid Custom Field values source" msgstr "Ugyldig kilde for fleksifeltverdi" #: lib/RT/Group.pm:536 msgid "Invalid Group Name and Domain" msgstr "" #: lib/RT/Asset.pm:230 msgid "Invalid Name (names may not be all digits)" msgstr "" #: lib/RT/Catalog.pm:212 msgid "Invalid Name (names must be unique and may not be all digits)" msgstr "" #. ($msg) #: lib/RT/Class.pm:312 msgid "Invalid Queue, unable to apply Class: %1" msgstr "Ugyldig kø, kunne ikke bruke kategori: %1" #: lib/RT/CustomField.pm:328 msgid "Invalid Render Type" msgstr "Ugyldig gjengivelsestype" #. ($self->FriendlyType) #: lib/RT/CustomField.pm:1281 msgid "Invalid Render Type for custom field of type %1" msgstr "Ugyldig gjengivelsestype for fleksifelt av type %1" #: lib/RT/CustomField.pm:348 lib/RT/CustomField.pm:864 msgid "Invalid custom field values canonicalizer" msgstr "" #: lib/RT/Record.pm:1011 msgid "Invalid data" msgstr "Ugyldige data" #. ($ARGS{'PrivateKey'}, $email) #: share/html/Admin/Users/Keys.html:119 msgid "Invalid key %1 for address '%2'" msgstr "Ugyldig nøkkel %1 for adresse '%2'" #: lib/RT/CustomField.pm:1745 msgid "Invalid object" msgstr "Ugyldig objekt" #. ($msg) #: lib/RT/CustomField.pm:313 lib/RT/CustomField.pm:966 msgid "Invalid pattern: %1" msgstr "Ugyldig mønster: %1" #. ($name) #. ($path) #: share/html/Dashboards/Elements/ShowPortlet/component:62 share/html/Elements/MyRT:93 msgid "Invalid portlet %1" msgstr "" #: lib/RT/CustomRole.pm:405 lib/RT/Scrip.pm:139 lib/RT/Scrip.pm:307 lib/RT/Template.pm:274 msgid "Invalid queue" msgstr "Ugyldig kø" #: lib/RT/CustomRole.pm:442 lib/RT/Scrip.pm:361 msgid "Invalid queue id" msgstr "" #: lib/RT/ACE.pm:258 msgid "Invalid right" msgstr "Ugyldig rettighet" #. ($args{'RightName'}) #: lib/RT/ACE.pm:123 lib/RT/ACE.pm:246 msgid "Invalid right. Couldn't canonicalize right '%1'" msgstr "Ugyldig rettighet. Klarte ikke kanonisere rettigheten «%1»." #: lib/RT/User.pm:580 msgid "Invalid syntax for email address" msgstr "Ugyldig syntaks for e-postadresse" #. ($key) #. ($self->loc($role)) #: lib/RT/Record.pm:289 lib/RT/Record/Role/Roles.pm:604 msgid "Invalid value for %1" msgstr "Ugyldig verdi for %1" #: lib/RT/Record.pm:1965 msgid "Invalid value for custom field" msgstr "Ugyldig verdi for fleksifelt" #: lib/RT/Record/AddAndSort.pm:195 msgid "Is already added to the object" msgstr "" #: lib/RT/Attachment.pm:875 msgid "Is not encrypted" msgstr "Er ikke kryptert" #: bin/rt-crontool:355 msgid "It is incredibly important that nonprivileged users not be allowed to run this tool." msgstr "Det er svært viktig at brukere uten utvidede rettigheter ikke fÃ¥r kjøre dette verktøyet." #: bin/rt-crontool:356 msgid "It is suggested that you create a non-privileged unix user with the correct group membership and RT access to run this tool." msgstr "Det er anbefalt at du oppretter en vanlig Unix/Linux-bruker med riktig gruppemedlemskap og tilgang til RT for Ã¥ kjøre dette verktøyet." #: share/html/Elements/AttachmentWarning:54 msgid "It looks like you may have forgotten to add an attachment." msgstr "" #: bin/rt-crontool:316 msgid "It takes several arguments:" msgstr "Du kan bruke flere kommandolinjeargument:" #: share/html/Search/Elements/EditFormat:127 msgid "Italic" msgstr "Kursiv" #: lib/RT/Date.pm:91 msgid "Jan" msgstr "jan." #: lib/RT/Group.pm:91 msgid "Join or leave group" msgstr "Bli med i eller forlate gruppe" #: lib/RT/Date.pm:97 msgid "Jul" msgstr "juli" #: share/html/Elements/Tabs:800 msgid "Jumbo" msgstr "Storside" #: lib/RT/Date.pm:96 msgid "Jun" msgstr "juni" #: lib/RT/Installer.pm:80 msgid "Keep 'localhost' if you're not sure. Leave blank to connect locally over a socket" msgstr "Behold «localhost» hvis du er usikker. La feltet stÃ¥ tomt for Ã¥ koble til via en sokkel." #: share/html/Elements/ShortcutHelp:54 msgid "Keyboard Shortcuts" msgstr "" #. (ref $self) #: lib/RT/Search/Simple.pm:89 msgid "Keyword and intuition-based searching" msgstr "Stikkord og intuisjonsbasert søking" #: lib/RT/User.pm:97 msgid "Lang" msgstr "SprÃ¥k" #: share/html/Admin/Users/Modify.html:92 share/html/Dashboards/Subscription.html:168 share/html/Elements/RT__User/ColumnMap:136 share/html/Install/index.html:56 share/html/Prefs/AboutMe.html:76 share/html/SelfService/Prefs.html:59 msgid "Language" msgstr "SprÃ¥k" #: share/html/Search/Elements/EditFormat:118 msgid "Large" msgstr "Stor" #: share/html/Elements/Tabs:888 msgid "Last" msgstr "Siste" #: share/html/Ticket/Elements/EditDates:78 share/html/Ticket/Elements/ShowDates:67 share/html/Ticket/Elements/ShowDates:69 share/html/m/ticket/show:369 msgid "Last Contact" msgstr "Siste kontakt" #: share/html/Elements/SelectDateType:52 msgid "Last Contacted" msgstr "Sist kontaktet" #: share/html/Asset/Elements/EditDates:59 share/html/Asset/Elements/ShowDates:59 share/html/Elements/ColumnMap:84 share/html/Elements/ColumnMap:89 share/html/Elements/SelectDateType:53 msgid "Last Updated" msgstr "Sist oppdatert" #: share/html/Elements/ColumnMap:94 msgid "Last Updated By" msgstr "Sist oppdatert av" #: share/html/Articles/Article/Elements/ShowSearchCriteria:107 msgid "Last updated" msgstr "Sist oppdatert" #: share/html/Search/Elements/PickBasics:116 msgid "Last updated by" msgstr "Sist oppdatert av" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:83 lib/RT/Tickets.pm:138 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdated" msgstr "SistOppdatert" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:70 lib/RT/Tickets.pm:112 share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedBy" msgstr "SistOppdatertAv" #: share/html/Search/Elements/BuildFormatString:102 msgid "LastUpdatedRelative" msgstr "SistOppdatertRelativ" #: lib/RT/Installer.pm:90 msgid "Leave empty to use the default value for your database" msgstr "La feltet stÃ¥ tomt for Ã¥ bruke standardverdien for databasen" #: lib/RT/Installer.pm:104 msgid "Leave this alone to use the default dba username for your database type" msgstr "La feltet stÃ¥ tomt for Ã¥ bruke standard DBA-brukernavn for databasetypen" #: share/html/Ticket/Elements/ShowBasics:102 share/html/m/ticket/show:236 msgid "Left" msgstr "Igjen" #: share/html/Ticket/Graphs/Elements/ShowLegends:48 msgid "Legends" msgstr "Forklaring" #: lib/RT/Config.pm:431 msgid "Length in characters; Use '0' to show all messages inline, regardless of length" msgstr "Antall tegn. Bruk «0» for Ã¥ vise hele meldingene, uavhengig av meldingslengden." #: share/html/Admin/Users/Modify.html:113 msgid "Let this user access RT" msgstr "Gi brukeren tilgang til systemet" #: share/html/Admin/Users/Modify.html:119 msgid "Let this user be granted rights" msgstr "Gi brukeren utvidede rettigheter" #: share/html/Install/index.html:79 share/html/Install/index.html:87 msgid "Let's go!" msgstr "Start" #: lib/RT/Tickets.pm:160 share/html/Admin/Assets/Catalogs/Elements/EditBasics:58 share/html/Admin/Queues/Modify.html:70 msgid "Lifecycle" msgstr "Livssyklus" #: share/html/Search/Elements/EditFormat:95 msgid "Link" msgstr "Lenke" #: lib/RT/Record.pm:1402 msgid "Link already exists" msgstr "Lenken finnes alt" #. ($linkmsg) #: lib/RT/Record.pm:1424 msgid "Link could not be created: %1" msgstr "" #. ($msg) #: lib/RT/Record.pm:1559 msgid "Link could not be deleted: %1" msgstr "" #: lib/RT/Record.pm:1546 msgid "Link not found" msgstr "Fant ikke lenken" #. ($Ticket->Id) #: share/html/Ticket/ModifyLinks.html:48 msgid "Link ticket #%1" msgstr "Koble sammen sak %1" #: share/html/Admin/CustomFields/Modify.html:144 msgid "Link values to" msgstr "Lenk verdiene til" #: lib/RT/Tickets.pm:123 msgid "Linked" msgstr "Koblet" #: lib/RT/Tickets.pm:125 msgid "LinkedFrom" msgstr "KobletFra" #: lib/RT/Tickets.pm:124 msgid "LinkedTo" msgstr "KobletTil" #. ($self->loc(lc($remote_obj->RecordType))) #: lib/RT/Record.pm:1388 msgid "Linking to a deleted %1 is not allowed" msgstr "" #: share/html/Admin/Queues/DefaultValues.html:110 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowSearchCriteria:117 share/html/Asset/Create.html:78 share/html/Asset/Elements/ShowSummary:56 share/html/Asset/ModifyLinks.html:57 share/html/Elements/Tabs:1067 share/html/Elements/Tabs:796 share/html/Ticket/Create.html:342 share/html/Ticket/Elements/ShowSummary:96 share/html/Ticket/ModifyAll.html:82 share/html/m/ticket/create:387 share/html/m/ticket/show:393 msgid "Links" msgstr "Koblinger" #: share/html/Search/Elements/SelectLinks:65 msgid "Links to" msgstr "" #: lib/RT/CustomField.pm:85 lib/RT/CustomField.pm:89 msgid "List" msgstr "Liste" #: share/html/Articles/Article/Elements/ShowSavedSearches:69 share/html/Articles/Article/Search.html:72 share/html/Search/Elements/EditSearches:80 msgid "Load" msgstr "Ã…pne" #: share/html/Articles/Article/Elements/ShowSavedSearches:67 msgid "Load a saved search" msgstr "Last et lagret søk" #: share/html/Elements/ShowHistoryHeader:70 msgid "Load all history" msgstr "" #: share/html/Search/Elements/EditSearches:78 msgid "Load saved search" msgstr "Last lagret søk" #: share/html/Articles/Article/Search.html:70 msgid "Load saved search:" msgstr "Ã…pne lagret søk:" #. ($self->ObjectName, $self->Name) #: lib/RT/SharedSetting.pm:119 msgid "Loaded %1 %2" msgstr "Lastet %1 %2" #: share/html/Admin/Tools/Configuration.html:245 msgid "Loaded RT Extensions" msgstr "" #: share/html/Admin/Tools/Configuration.html:200 msgid "Loaded config files" msgstr "" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:169 msgid "Loaded original \"%1\" saved search" msgstr "Lastet opphavlig lagret søk «%1»" #: share/html/Admin/Tools/Configuration.html:261 msgid "Loaded perl modules" msgstr "Lastede perl-moduler" #. ($SavedSearch->{'Description'}) #: share/html/Search/Elements/EditSearches:171 msgid "Loaded saved search \"%1\"" msgstr "Lastet lagret søk: %1" #: share/html/Elements/JavascriptConfig:73 share/html/Ticket/Elements/ClickToShowHistory:50 share/html/Ticket/Elements/DelayShowHistory:50 share/html/Ticket/Elements/ShowAttachments:108 share/html/Ticket/Elements/ShowRequestor:109 msgid "Loading..." msgstr "Laster..." #: lib/RT/Config.pm:543 share/html/SelfService/Prefs.html:56 msgid "Locale" msgstr "Dato og klokkeslett" #: lib/RT/Date.pm:122 msgid "LocalizedDateTime" msgstr "LokaltDatoKlokkeslett" #: share/html/Admin/Users/Modify.html:133 share/html/Prefs/AboutMe.html:131 msgid "Location" msgstr "Plassering" #: lib/RT/Interface/Web.pm:853 msgid "Logged in" msgstr "Logget inn" #. ($username) #: share/html/Elements/Tabs:1213 share/html/Elements/Tabs:699 msgid "Logged in as %1" msgstr "Logget inn som %1" #: share/html/NoAuth/Logout.html:54 msgid "Logged out" msgstr "Logget ut" #. ($level, $logger->{filename}) #: share/html/Admin/Elements/LoggingSummary:59 msgid "Logging %1 level messages and higher to %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:52 msgid "Logging %1 level messages and higher to STDERR, which will usually end up in your webserver's error logs." msgstr "" #. ($level, $conf) #: share/html/Admin/Elements/LoggingSummary:66 msgid "Logging %1 level messages and higher to syslog with the following configuration: %2" msgstr "" #. ($level) #: share/html/Admin/Elements/LoggingSummary:68 msgid "Logging %1 level messages and higher to syslog." msgstr "" #: share/html/Admin/Tools/Configuration.html:212 msgid "Logging summary" msgstr "" #: share/html/Elements/Login:49 share/html/Elements/Login:62 share/html/Elements/Login:91 share/html/m/_elements/login:61 share/html/m/_elements/login:76 msgid "Login" msgstr "Logg inn" #. ()) #: share/html/Elements/Logo:52 share/html/Elements/Logo:56 msgid "LogoAltText" msgstr "LogoAltTekst" #: share/html/Elements/Tabs:1225 share/html/Elements/Tabs:736 share/html/NoAuth/Logout.html:48 share/html/m/_elements/menu:107 msgid "Logout" msgstr "Logg ut" #: lib/RT/CustomField.pm:1656 msgid "Lookup type mismatch" msgstr "Ikke typesamsvar ved feltoppslag" #: lib/RT/Config.pm:590 lib/RT/Config.pm:605 msgid "Mail" msgstr "E-post" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:58 msgid "Main type of links" msgstr "Hovedkoblingstype" #. ($role->Name) #: share/html/Search/Bulk.html:103 msgid "Make %1" msgstr "" #: share/html/Search/Bulk.html:81 msgid "Make Owner" msgstr "Velg eier" #: share/html/Search/Bulk.html:135 msgid "Make SLA" msgstr "" #: share/html/Search/Bulk.html:132 msgid "Make Status" msgstr "Velg status" #: share/html/Search/Bulk.html:144 msgid "Make date Due" msgstr "Velg tidsfrist" #: share/html/Search/Bulk.html:140 msgid "Make date Started" msgstr "Velg startdato" #: share/html/Search/Bulk.html:138 msgid "Make date Starts" msgstr "Velg startdato" #: share/html/Search/Bulk.html:142 msgid "Make date Told" msgstr "Velg dato varslet" #: share/html/Search/Bulk.html:128 msgid "Make priority" msgstr "Velg prioritet" #: share/html/Search/Bulk.html:130 msgid "Make queue" msgstr "Velg kø" #: share/html/Search/Bulk.html:126 msgid "Make subject" msgstr "Velg emne" #: share/html/Elements/Tabs:93 msgid "Manage custom fields and custom field values" msgstr "Rediger brukerdefinerte felt" #: share/html/Elements/Tabs:103 msgid "Manage custom roles" msgstr "" #: share/html/Elements/Tabs:76 msgid "Manage groups and group membership" msgstr "Rediger grupper og gruppemedlemskap" #: share/html/Elements/Tabs:122 msgid "Manage properties and configuration which apply to all queues" msgstr "Rediger egenskaper og innstillinger for alle køene" #: share/html/Elements/Tabs:84 msgid "Manage queues and queue-specific properties" msgstr "Rediger køer og egenskaper til køer" #: share/html/Ticket/Graphs/index.html:66 msgid "Manage saved graphs" msgstr "Rediger lagrede diagram" #: share/html/Elements/Tabs:113 msgid "Manage scrips" msgstr "" #: share/html/Elements/Tabs:68 msgid "Manage users and passwords" msgstr "Rediger brukere og passord" #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:281 msgid "Mapping between lifecycle %1 and %2 is incomplete. Contact your system administrator." msgstr "" #: lib/RT/Date.pm:93 msgid "Mar" msgstr "mars" #: share/html/SelfService/Display.html:157 share/html/Ticket/Display.html:210 share/html/m/ticket/show:125 msgid "Marked all messages as seen" msgstr "Merket alle meldingene som leste" #: share/html/Admin/Tools/Configuration.html:175 msgid "Mason template search order" msgstr "Malrekkefølge for Mason" #: share/html/Elements/RT__CustomField/ColumnMap:77 msgid "MaxValues" msgstr "MaksVerdier" #: lib/RT/Report/Tickets.pm:236 msgid "Maximum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:231 msgid "Maximum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:226 msgid "Maximum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:246 msgid "Maximum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:251 msgid "Maximum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:241 msgid "Maximum Starts-Started" msgstr "" #: lib/RT/Config.pm:429 msgid "Maximum inline message length" msgstr "Makslengde for direktevising av meldinger" #: lib/RT/Report/Tickets.pm:216 msgid "Maximum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:221 msgid "Maximum time left" msgstr "" #: lib/RT/Report/Tickets.pm:211 msgid "Maximum time worked" msgstr "" #: lib/RT/Date.pm:95 msgid "May" msgstr "mai" #: share/html/Elements/QuickCreate:65 msgid "Me" msgstr "Meg" #: share/html/Elements/RT__Group/ColumnMap:56 msgid "Member" msgstr "Medlem" #. ($value) #: lib/RT/Transaction.pm:1141 msgid "Member %1 added" msgstr "Medlemmet %1 lagt til" #. ($value) #: lib/RT/Transaction.pm:1183 msgid "Member %1 deleted" msgstr "Medlemmet %1 slettet" #. ($new_member_obj->Object->Name) #: lib/RT/Group.pm:1031 msgid "Member added: %1" msgstr "Medlem lagt til: %1" #: lib/RT/Group.pm:1214 msgid "Member deleted" msgstr "Medlem slettet" #: lib/RT/Group.pm:1173 msgid "Member not deleted" msgstr "Medlem ikke slettet" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:126 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "MemberOf" msgstr "MedlemAv" #: lib/RT/Graph/Tickets.pm:180 share/html/Elements/Tabs:400 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "Members" msgstr "Medlemmer" #. ($value) #: lib/RT/Transaction.pm:1138 msgid "Membership in %1 added" msgstr "Lagt til som medlem i %1" #. ($value) #: lib/RT/Transaction.pm:1180 msgid "Membership in %1 deleted" msgstr "Fjernet som medlem av %1" #: share/html/Elements/Tabs:375 share/html/Elements/Tabs:401 msgid "Memberships" msgstr "Medlemskap" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:138 msgid "Memberships of the group %1" msgstr "" #. ($id) #: share/html/Admin/Elements/MembershipsPage:140 msgid "Memberships of the principal #%1" msgstr "" #. ($object->Name) #: share/html/Admin/Elements/MembershipsPage:136 msgid "Memberships of the user %1" msgstr "Medlemskap til brukeren %1" #: share/html/Search/Bulk.html:213 share/html/Ticket/ModifyAll.html:88 share/html/Ticket/ModifyLinks.html:63 msgid "Merge" msgstr "" #: lib/RT/Ticket.pm:2026 msgid "Merge Successful" msgstr "Fletting utført" #: lib/RT/Ticket.pm:1918 msgid "Merge failed. Couldn't set EffectiveId" msgstr "Feil ved fletting. Klarte ikke lagre «EffectiveId»." #: lib/RT/Ticket.pm:1924 msgid "Merge failed. Couldn't set IsMerged" msgstr "" #: share/html/Ticket/Elements/EditMerge:54 msgid "Merge into" msgstr "Flett inn i" #. ($value) #: lib/RT/Transaction.pm:1144 msgid "Merged into %1" msgstr "Flettet inn i %1" #: share/html/Search/Bulk.html:178 share/html/Ticket/Update.html:142 share/html/Ticket/Update.html:160 share/html/m/ticket/reply:107 msgid "Message" msgstr "Melding" #: share/html/Elements/ShowTransactionAttachments:158 msgid "Message body is not shown because it is too large." msgstr "Meldingsteksten er ikke vist fordi den er for stor." #: share/html/Elements/ShowTransactionAttachments:150 msgid "Message body is not shown because sender requested not to inline it." msgstr "Meldingsteksten blir ikke vist, siden avsenderen sendte den som et vedlegg." #: share/html/Elements/ShowTransactionAttachments:298 msgid "Message body not shown because it is not plain text." msgstr "Meldingsteksten blir ikke vist, fordi den ikke er rentekst." #: lib/RT/Config.pm:321 msgid "Message box height" msgstr "Høyde pÃ¥ meldingsfelt" #: lib/RT/Config.pm:312 msgid "Message box width" msgstr "Bredde pÃ¥ meldingsfelt" #: lib/RT/Ticket.pm:1705 msgid "Message could not be recorded" msgstr "Klarte ikke lagre meldinga" #: sbin/rt-email-digest:286 msgid "Message for user" msgstr "Melding for bruker" #: lib/RT/Ticket.pm:3188 msgid "Message recorded" msgstr "Melding registrert" #: lib/RT/Report/Tickets.pm:235 msgid "Minimum Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:230 msgid "Minimum Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:225 msgid "Minimum Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:245 msgid "Minimum Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:250 msgid "Minimum Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:240 msgid "Minimum Starts-Started" msgstr "" #: lib/RT/Installer.pm:144 msgid "Minimum password length" msgstr "Minste passordlengde" #: lib/RT/Report/Tickets.pm:215 msgid "Minimum time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:220 msgid "Minimum time left" msgstr "" #: lib/RT/Report/Tickets.pm:210 msgid "Minimum time worked" msgstr "" #: share/html/Elements/SelectTimeUnits:50 msgid "Minutes" msgstr "minutt" #: share/html/Admin/Elements/EditRightsCategoryTabs:68 msgid "Miscellaneous" msgstr "Diverse" #: lib/RT/Record.pm:1013 msgid "Missing a primary key?: %1" msgstr "Mangler primærnøkkel? %1" #: share/html/Admin/Users/Modify.html:191 share/html/Prefs/AboutMe.html:97 msgid "Mobile" msgstr "Mobil" #: share/html/Elements/RT__User/ColumnMap:91 msgid "Mobile Phone" msgstr "Mobiltelefon" #: share/html/Elements/Tabs:1028 share/html/Elements/Tabs:1050 share/html/m/_elements/ticket_menu:67 msgid "Modify" msgstr "Endre" #. ($asset->id, $asset->Name, $Grouping || loc("Custom Fields")) #: share/html/Asset/ModifyCFs.html:48 msgid "Modify %3 for asset #%1: %2" msgstr "" #: share/html/Admin/Groups/Members.html:108 msgid "Modify Members" msgstr "Rediger medlemmer" #: lib/RT/Queue.pm:112 msgid "Modify Scrip templates" msgstr "Endre utløsermaler" #: lib/RT/Queue.pm:115 msgid "Modify Scrips" msgstr "Endre utløsere" #. ($QueueObj->Name()) #: share/html/Admin/Queues/CustomField.html:63 msgid "Modify a CustomField for queue %1" msgstr "Endre fleksifelt for køen %1" #. ($id) #: share/html/Admin/Actions/Modify.html:48 msgid "Modify action #%1" msgstr "" #: share/html/Elements/Tabs:203 msgid "Modify and Create Classes" msgstr "Endre og opprette kategorier" #: share/html/Elements/Tabs:208 msgid "Modify and Create Custom Fields for Articles" msgstr "Endre og opprette fleksifelt for artikler" #. ($ArticleObj->Id) #: share/html/Articles/Article/Edit.html:168 share/html/Articles/Article/Edit.html:271 msgid "Modify article #%1" msgstr "Endre artikkel #%1" #: lib/RT/Class.pm:92 msgid "Modify articles in this class" msgstr "" #. ($asset->id, $asset->Name) #: share/html/Asset/Modify.html:48 msgid "Modify asset #%1: %2" msgstr "" #: share/html/Elements/Tabs:229 msgid "Modify asset catalogs" msgstr "" #: share/html/Elements/Tabs:238 msgid "Modify asset custom fields" msgstr "" #: lib/RT/Catalog.pm:84 msgid "Modify assets" msgstr "" #. ($CF->Name) #. ($Class->Name) #. ($role->Name) #: share/html/Admin/Articles/Classes/Objects.html:148 share/html/Admin/CustomFields/Objects.html:154 share/html/Admin/CustomRoles/Objects.html:138 msgid "Modify associated objects for %1" msgstr "Endre objekt knyttet til %1" #. ($id) #: share/html/Admin/Scrips/Objects.html:170 msgid "Modify associated objects for scrip #%1" msgstr "" #. ($id) #: share/html/Admin/Conditions/Modify.html:48 msgid "Modify condition #%1" msgstr "" #: lib/RT/Catalog.pm:87 lib/RT/Class.pm:94 lib/RT/Queue.pm:109 msgid "Modify custom field values" msgstr "Endre fleksifeltverdier" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyDates.html:48 msgid "Modify dates for asset #%1: %2" msgstr "" #. ($TicketObj->Id) #: share/html/Ticket/ModifyDates.html:48 share/html/Ticket/ModifyDates.html:57 msgid "Modify dates for ticket #%1" msgstr "Endre datoer for sak %1" #: share/html/Elements/Tabs:266 msgid "Modify global article topics" msgstr "Endre globale artikkelemner" #: share/html/Elements/Tabs:160 msgid "Modify global custom fields" msgstr "Endre globale fleksifelt" #: share/html/Admin/Global/GroupRights.html:48 share/html/Elements/Tabs:246 msgid "Modify global group rights" msgstr "Endre globale grupperettigheter" #: share/html/Admin/Global/Topics.html:55 msgid "Modify global topics" msgstr "Endre globale emner" #: share/html/Admin/Global/UserRights.html:48 share/html/Elements/Tabs:251 msgid "Modify global user rights" msgstr "Endre globale brukerrettigheter" #: lib/RT/Group.pm:97 msgid "Modify group dashboards" msgstr "Endre gruppeutforminger" #: lib/RT/Group.pm:90 msgid "Modify group membership roster" msgstr "Endre gruppemedlemskap" #: lib/RT/Group.pm:89 msgid "Modify group metadata or delete group" msgstr "Endre gruppemetadata eller slett gruppa" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/GroupRights.html:48 msgid "Modify group rights for Class %1" msgstr "Endre grupperettigheter for kategori %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/GroupRights.html:70 msgid "Modify group rights for custom field %1" msgstr "Endre grupperettigheter for fleksifeltet %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/GroupRights.html:48 msgid "Modify group rights for group %1" msgstr "Endre grupperettigheter for gruppa %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/GroupRights.html:48 msgid "Modify group rights for queue %1" msgstr "Endre grupperettigheter for køen %1" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyLinks.html:48 msgid "Modify links for asset #%1: %2" msgstr "" #: lib/RT/Class.pm:96 msgid "Modify metadata and custom fields for this class" msgstr "Endre metadata og fleksifelt for denne kategorien" #: lib/RT/System.pm:87 msgid "Modify one's own RT account" msgstr "Endre sin egen RT-konto" #. ($asset->id, $asset->Name) #: share/html/Asset/ModifyPeople.html:48 msgid "Modify people related to asset #%1: %2" msgstr "" #. ($Ticket->Id) #. ($Ticket->id) #: share/html/Ticket/ModifyPeople.html:48 share/html/Ticket/ModifyPeople.html:58 msgid "Modify people related to ticket #%1" msgstr "Endre personer knyttet til sak %1" #: lib/RT/Dashboard.pm:87 msgid "Modify personal dashboards" msgstr "Endre personlige utforminger" #: lib/RT/Queue.pm:107 msgid "Modify queue watchers" msgstr "Endre overvÃ¥kere av kø" #. ($id) #: share/html/Admin/Scrips/Modify.html:48 msgid "Modify scrip #%1" msgstr "" #. ($QueueObj->Name) #: share/html/Admin/Queues/Scrips.html:56 msgid "Modify scrips for queue %1" msgstr "Endre utløsere for køen %1" #: share/html/Admin/Global/Scrips.html:53 share/html/Elements/Tabs:128 msgid "Modify scrips which apply to all queues" msgstr "Endre utløsere som gjelder alle køene" #: lib/RT/Dashboard.pm:82 msgid "Modify system dashboards" msgstr "Endre systemutforminger" #. (loc($TemplateObj->Name())) #: share/html/Admin/Global/Template.html:102 msgid "Modify template %1" msgstr "Endre malen %1" #. (loc( $TemplateObj->Name()), $QueueObj->Name) #: share/html/Admin/Queues/Template.html:114 msgid "Modify template %1 for queue %2" msgstr "Endre mal %1 for kø %2" #: share/html/Admin/Global/Templates.html:53 msgid "Modify templates which apply to all queues" msgstr "Endre maler som gjelder alle køer" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Modify.html:157 msgid "Modify the Class %1" msgstr "Endre kategorien %1" #. ($Dashboard->Name) #: share/html/Dashboards/Queries.html:82 msgid "Modify the content of dashboard %1" msgstr "Endre innholdet av utformingen %1" #. ($Dashboard->Name) #: share/html/Dashboards/Modify.html:126 msgid "Modify the dashboard %1" msgstr "Endre utforminga %1" #: share/html/Elements/Tabs:256 msgid "Modify the default \"RT at a glance\" view" msgstr "Sett opp standardskjermbildet («RT-oversikt»)" #. ($Group->Label) #. ($Group->Name) #: share/html/Admin/Groups/Members.html:117 share/html/Admin/Groups/Modify.html:124 msgid "Modify the group %1" msgstr "Endre gruppa %1" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:377 msgid "Modify the subscription to dashboard %1" msgstr "Endre abonnement til utforminga %1" #. ($UserObj->Name) #: share/html/Admin/Users/Modify.html:266 share/html/Admin/Users/Modify.html:276 msgid "Modify the user %1" msgstr "Endre brukeren %1" #: share/html/Articles/Article/Search.html:82 msgid "Modify this search..." msgstr "Endre dette søket..." #. ($Ticket->Id) #: share/html/Ticket/ModifyAll.html:60 msgid "Modify ticket # %1" msgstr "Endre sak %1" #. ($TicketObj->Id) #: share/html/Ticket/Modify.html:48 share/html/Ticket/Modify.html:58 msgid "Modify ticket #%1" msgstr "Endre sak %1" #: lib/RT/Queue.pm:132 msgid "Modify ticket owner on owned tickets" msgstr "" #: lib/RT/Queue.pm:128 msgid "Modify tickets" msgstr "Endre saker" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/Topics.html:59 msgid "Modify topic for %1" msgstr "Endre emne for %1" #: lib/RT/Class.pm:97 msgid "Modify topic hierarchy associated with this class" msgstr "Endre emnehierarki assosiert med denne kategorien" #: lib/RT/Class.pm:93 msgid "Modify topics for articles in this class" msgstr "Endre emner for artikler i denne kategorien" #. ($ClassObj->Name) #: share/html/Admin/Articles/Classes/UserRights.html:48 msgid "Modify user rights for class %1" msgstr "Endre brukerrettigheter for kategori %1" #. ($CustomFieldObj->Name) #: share/html/Admin/CustomFields/UserRights.html:68 msgid "Modify user rights for custom field %1" msgstr "Endre brukerrettigheter for fleksifeltet %1" #. ($GroupObj->Name) #: share/html/Admin/Groups/UserRights.html:48 msgid "Modify user rights for group %1" msgstr "Endre brukerrettigheter for gruppa %1" #. ($QueueObj->Name) #: share/html/Admin/Queues/UserRights.html:48 msgid "Modify user rights for queue %1" msgstr "Endre brukerrettigheter for køen %1" #. ($Ticket->Id) #: share/html/Ticket/ModifyPeople.html:61 msgid "Modify who receives mail for ticket #%1" msgstr "Endre hvem som mottar e-post for sak #%1" #: share/html/Admin/Tools/Configuration.html:264 msgid "Module" msgstr "Modul" #: lib/RT/Date.pm:107 msgid "Mon" msgstr "ma." #: share/html/Dashboards/Subscription.html:111 msgid "Monday" msgstr "mandag" #: lib/RT/Report/Tickets.pm:133 msgid "Month" msgstr "" #: lib/RT/Dashboard/Mailer.pm:420 lib/RT/Report/Tickets.pm:133 msgid "Monthly" msgstr "MÃ¥nedlig" #: share/html/Ticket/Elements/ShowRequestor:61 msgid "More about the requestors" msgstr "Mer om innmelderne" #: share/html/Elements/RT__Scrip/ColumnMap:140 msgid "Move" msgstr "" #: share/html/Admin/Articles/Elements/Topics:108 msgid "Move here" msgstr "Flytt hit" #: share/html/Elements/ShortcutHelp:92 msgid "Move up / down the list of results" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Multiple" msgstr "Flere" #: share/html/Admin/CustomRoles/Modify.html:82 msgid "Multiple users (This cannot be modified after creation)" msgstr "" #: share/html/Admin/CustomRoles/Modify.html:80 msgid "Multiple users (Unchecking this box limits this role to a single user. This cannot be modified after creation)" msgstr "" #: lib/RT/User.pm:163 msgid "Must specify 'Name' attribute" msgstr "MÃ¥ oppgi «Name»-attributt" #. ($friendly_status) #: share/html/SelfService/Elements/MyRequests:62 msgid "My %1 tickets" msgstr "Mine saker med status «%1»" #: share/html/Elements/Tabs:685 msgid "My Approvals" msgstr "Mine saker til godkjenning" #: share/html/Elements/MyAssets:48 share/html/SelfService/Asset/index.html:48 share/html/SelfService/Asset/index.html:49 msgid "My Assets" msgstr "" #: share/html/Elements/Tabs:669 msgid "My Day" msgstr "Oppgaveoversikt" #: share/html/Elements/Tabs:676 msgid "My Reminders" msgstr "Mine pÃ¥minnelser" #: etc/initialdata:890 msgid "My Tickets" msgstr "Mine saker" #: share/html/Approvals/index.html:48 msgid "My approvals" msgstr "Mine godkjenninger" #: share/html/SelfService/Closed.html:55 msgid "My closed tickets" msgstr "" #: share/html/Dashboards/Elements/SelectPrivacy:62 share/html/Dashboards/Elements/ShowDashboards:53 msgid "My dashboards" msgstr "Mine utforminger" #: share/html/SelfService/index.html:55 msgid "My open tickets" msgstr "" #: share/html/Elements/MyReminders:50 share/html/Tools/MyReminders.html:48 msgid "My reminders" msgstr "Mine pÃ¥minnelser" #: share/html/Articles/Article/Elements/SelectSavedSearches:54 share/html/Elements/SavedSearches:54 share/html/Search/Elements/SearchPrivacy:55 msgid "My saved searches" msgstr "Mine lagrede søk" #: etc/RT_Config.pm:1296 msgid "MyAdminQueues" msgstr "" #: etc/RT_Config.pm:1296 msgid "MyAssets" msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:909 msgid "MyReminders" msgstr "" #: lib/RT/Installer.pm:68 msgid "MySQL" msgstr "" #: etc/RT_Config.pm:1296 msgid "MySupportQueues" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NBSP" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "NEWLINE" msgstr "LINJESKIFT" #: lib/RT/User.pm:91 share/html/Admin/Actions/Elements/EditBasics:49 share/html/Admin/Actions/Elements/ShowBasics:49 share/html/Admin/Assets/Catalogs/Elements/EditBasics:50 share/html/Admin/Conditions/Elements/EditBasics:49 share/html/Admin/Conditions/Elements/ShowBasics:49 share/html/Admin/CustomFields/Modify.html:63 share/html/Admin/Elements/AddCustomFieldValue:54 share/html/Admin/Elements/EditCustomField:57 share/html/Admin/Elements/EditCustomFieldValues:58 share/html/Admin/Elements/ModifyTemplate:50 share/html/Admin/Groups/Modify.html:69 share/html/Admin/Tools/Configuration.html:222 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Articles/Article/Elements/EditBasics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:63 share/html/Articles/Elements/NewestArticles:52 share/html/Articles/Elements/UpdatedArticles:52 share/html/Asset/Elements/AssetSearchBasics:60 share/html/Asset/Elements/EditBasics:56 share/html/Asset/Elements/ShowBasics:54 share/html/Asset/Search/Bulk.html:89 share/html/Dashboards/Modify.html:63 share/html/Elements/BulkCustomFields:51 share/html/Elements/RT__Article/ColumnMap:61 share/html/Elements/RT__Class/ColumnMap:56 share/html/Elements/RT__Dashboard/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:72 share/html/Elements/RT__SavedSearch/ColumnMap:56 share/html/Elements/RT__ScripAction/ColumnMap:62 share/html/Elements/RT__ScripCondition/ColumnMap:62 share/html/Elements/RT__Template/ColumnMap:56 share/html/Elements/RT__Transaction/ColumnMap:94 share/html/Elements/RT__User/ColumnMap:56 msgid "Name" msgstr "Navn" #: lib/RT/Config.pm:191 msgid "Name and email address" msgstr "Navn og e-postadresse" #: lib/RT/Article.pm:117 lib/RT/User.pm:276 msgid "Name in use" msgstr "Navnet er alt i bruk" #: lib/RT/Template.pm:282 lib/RT/Template.pm:732 msgid "Name is required" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:55 msgid "Name:" msgstr "Navn:" #: lib/RT/Dashboard/Mailer.pm:421 share/html/Elements/RT__Dashboard/ColumnMap:99 share/html/Ticket/Elements/ShowDates:94 share/html/m/ticket/show:387 msgid "Never" msgstr "Aldri" #: share/html/Elements/RT__Ticket/ColumnMap:272 msgid "New" msgstr "Ny" #: share/html/Elements/Tabs:1039 msgid "New Article" msgstr "Ny artikkel" #: share/html/Elements/Tabs:597 msgid "New Dashboard" msgstr "Ny utforming" #: share/html/Elements/BulkLinks:114 share/html/Elements/EditLinks:110 msgid "New Links" msgstr "Nye koblinger" #: etc/initialdata:492 etc/upgrade/3.8.2/content:62 msgid "New Pending Approval" msgstr "Ny godkjenningsforespørsel" #: etc/initialdata:511 etc/upgrade/4.1.9/content:111 msgid "New Pending Approval in HTML" msgstr "" #: share/html/Elements/Tabs:604 msgid "New Search" msgstr "Nytt søk" #: share/html/Elements/RT__Transaction/ColumnMap:80 msgid "New Value" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:251 msgid "New assets cannot have status '%1'." msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:267 share/html/Ticket/Elements/ShowUpdateStatus:49 msgid "New messages" msgstr "Nye meldinger" #: share/html/Elements/EditPassword:61 msgid "New password" msgstr "Nytt passord" #: lib/RT/User.pm:901 msgid "New password notification sent" msgstr "Melding om nytt passord sendt" #: share/html/Ticket/Elements/Reminders:119 msgid "New reminder:" msgstr "Ny pÃ¥minnelse:" #: share/html/Elements/Tabs:1198 share/html/Elements/Tabs:1200 share/html/m/_elements/menu:70 msgid "New ticket" msgstr "Ny sak" #: lib/RT/Ticket.pm:1873 msgid "New ticket doesn't exist" msgstr "Den nye saken finnes ikke" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:294 msgid "New tickets can not have status '%1' in this queue." msgstr "Nye saker kan ikke ha status '%1' i denne køen." #: share/html/Admin/CustomFields/Modify.html:175 msgid "New values must be unique" msgstr "" #: share/html/Admin/Queues/People.html:78 share/html/Ticket/Elements/EditPeople:52 msgid "New watchers" msgstr "Nye overvÃ¥kere" #: share/html/Elements/Tabs:885 share/html/Install/Basics.html:62 share/html/Install/DatabaseDetails.html:72 share/html/Install/DatabaseType.html:70 share/html/Install/Global.html:64 share/html/Install/Global.html:64 share/html/Install/Sendmail.html:63 msgid "Next" msgstr "Neste" #: lib/RT/User.pm:96 msgid "NickName" msgstr "Kallenavn" #: share/html/Admin/Users/Modify.html:82 share/html/Elements/RT__User/ColumnMap:66 share/html/Prefs/AboutMe.html:72 msgid "Nickname" msgstr "Kallenavn" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Elements/RT__Ticket/ColumnMap:269 share/html/Widgets/Form/Boolean:82 msgid "No" msgstr "Nei" #. ($protocol) #: share/html/Admin/Elements/ShowKeyInfo:58 msgid "No %1 keys for this address" msgstr "" #. ($self->ObjectName) #: lib/RT/SharedSetting.pm:243 msgid "No %1 loaded" msgstr "Ingen %1 lastet" #. ($Articles_Content) #: share/html/SelfService/Article/Search.html:66 msgid "No Articles match %1" msgstr "Ingen artikler samsvarer %1" #: share/html/Admin/Articles/Classes/GroupRights.html:62 share/html/Admin/Articles/Classes/UserRights.html:61 share/html/Admin/CustomFields/UserRights.html:62 msgid "No Class defined" msgstr "Ingen klasse definert" #: share/html/Admin/Articles/Classes/index.html:54 msgid "No Classes matching search criteria found." msgstr "Ingen kategori som samsvarer med søkekriteriene funnet." #: share/html/Admin/CustomFields/Modify.html:237 share/html/Admin/Elements/EditCustomField:122 msgid "No CustomField" msgstr "Intet fleksifelt" #: share/html/Admin/CustomFields/GroupRights.html:62 msgid "No CustomField defined" msgstr "Intet fleksifelt definert" #: share/html/Admin/Groups/GroupRights.html:62 share/html/Admin/Groups/UserRights.html:63 msgid "No Group defined" msgstr "Ingen gruppe definert" #: share/html/Elements/RT__Transaction/ColumnMap:104 msgid "No Name" msgstr "" #: lib/RT/Tickets.pm:3200 msgid "No Query" msgstr "Ingen spørring" #: share/html/Admin/Queues/GroupRights.html:67 share/html/Admin/Queues/UserRights.html:68 msgid "No Queue defined" msgstr "Ingen kø definert" #: bin/rt-crontool:113 msgid "No RT user found. Please consult your RT administrator." msgstr "Ingen RT-bruker funnet. Vennligst kontakt din RT-administrator." #: share/html/Search/Elements/ResultsRSSView:103 msgid "No Subject" msgstr "Mangler emne" #: share/html/Admin/Articles/Classes/Modify.html:118 msgid "No Subject Override" msgstr "" #: share/html/Admin/Global/Template.html:81 share/html/Admin/Queues/Template.html:85 msgid "No Template" msgstr "Ingen mal" #: share/html/Approvals/Elements/Approve:90 msgid "No action" msgstr "Ingen handling" #: lib/RT/Interface/Web.pm:4114 msgid "No asset ID specified." msgstr "" #: share/html/Asset/Search/Bulk.html:66 share/html/Asset/Search/index.html:73 msgid "No assets matching search criteria found." msgstr "" #: lib/RT/Interface/Web.pm:4098 msgid "No catalog specified." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:54 msgid "No catalogs matching search criteria found." msgstr "" #: lib/RT/Record.pm:1008 msgid "No column specified" msgstr "Ingen kolonne valgt" #: share/html/Ticket/Elements/ShowRequestor:79 msgid "No comment entered about this user" msgstr "Ingen kommentar skrevet om brukeren" #. ($Grouping) #: share/html/Asset/ModifyCFs.html:78 msgid "No custom fields found for grouping '%1'" msgstr "" #: share/html/Admin/CustomRoles/index.html:75 msgid "No custom roles matching search criteria found." msgstr "" #. (ref $self) #: lib/RT/Action.pm:163 lib/RT/Condition.pm:183 lib/RT/Search.pm:125 lib/RT/Search/ActiveTicketsInQueue.pm:75 msgid "No description for %1" msgstr "Ingen beskrivelse av %1" #. ($tname) #: lib/RT/Scrip.pm:326 msgid "No global template %1" msgstr "" #: lib/RT/Users.pm:202 msgid "No group specified" msgstr "Ingen gruppe valg" #: share/html/Admin/Groups/index.html:75 msgid "No groups matching search criteria found." msgstr "Fant ingen grupper i samsvar med søkekriteriene." #: lib/RT/Attachment.pm:831 msgid "No key suitable for encryption" msgstr "Mangler egnet krypteringsnøkkel" #: share/html/Errors/WebRemoteUser/Deauthorized:48 msgid "No longer authorized" msgstr "" #: lib/RT/Ticket.pm:1630 msgid "No message attached" msgstr "Ingen melding vedlagt" #: lib/RT/CustomField.pm:2719 lib/RT/CustomField.pm:491 msgid "No name provided" msgstr "Navn ikke oppgitt" #: lib/RT/Attachment.pm:813 msgid "No need to encrypt" msgstr "Kryptering unødvendig" #: lib/RT/User.pm:970 msgid "No password set" msgstr "Passord ikke valgt" #: lib/RT/Queue.pm:169 msgid "No permission to create queues" msgstr "Mangler tilgang til Ã¥ opprette køer" #. ($QueueObj->Name) #: lib/RT/Ticket.pm:275 msgid "No permission to create tickets in the queue '%1'" msgstr "Mangler tilgang til Ã¥ opprette saker i køen «%1»" #: share/html/SelfService/Display.html:149 msgid "No permission to display that ticket" msgstr "Mangler tilgang til Ã¥ vise saken" #: lib/RT/Asset.pm:484 lib/RT/Asset.pm:499 msgid "No permission to modify this asset" msgstr "" #: lib/RT/Catalog.pm:335 lib/RT/Catalog.pm:350 msgid "No permission to modify this catalog" msgstr "" #: share/html/Search/Elements/EditSearches:246 msgid "No permission to save system-wide searches" msgstr "Mangler tilgang til Ã¥ kjøre globale søk" #: lib/RT/User.pm:1533 lib/RT/User.pm:1557 msgid "No permission to set preferences" msgstr "Mangler tilgang til Ã¥ endre innstillingene" #: share/html/Articles/Article/Edit.html:278 msgid "No permission to view Article" msgstr "Ingen rettighet til Ã¥ vise artikkel" #: share/html/SelfService/Update.html:112 msgid "No permission to view update ticket" msgstr "Mangler tilgang til Ã¥ se oppdatering av saken" #: share/html/Admin/Queues/People.html:182 share/html/Admin/Queues/People.html:193 msgid "No principals selected." msgstr "Ingen primærobjekt oppgitt." #: share/html/Admin/Users/Keys.html:69 msgid "No private key" msgstr "Mangler privatnøkkel" #: share/html/Admin/Queues/index.html:75 msgid "No queues matching search criteria found." msgstr "Fant ingen køer i samsvar med søkekriteriene." #: lib/RT/ACE.pm:200 msgid "No right specified" msgstr "Ingen rettigheter oppgitt" #: share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "No rights found" msgstr "Fant ingen rettigheter" #. ($principal->Object->Name) #: lib/RT/Ticket.pm:550 msgid "No rights to add '%1' as an AdminCc on this ticket" msgstr "" #: share/html/Search/Bulk.html:269 msgid "No search to operate on." msgstr "Mangler søk Ã¥ bruke" #: share/html/Elements/RT__Ticket/ColumnMap:118 msgid "No subject" msgstr "Uten emne" #: lib/RT/User.pm:1947 msgid "No such key or it's not suitable for signing" msgstr "Nøkkelen mangler, eller er ikke egnet til signering" #. ($tname, $queue->Name||$queue->id) #: lib/RT/Scrip.pm:324 msgid "No template %1 in queue %2 or global" msgstr "" #: share/html/Search/Chart:167 msgid "No tickets found." msgstr "Fant ingen saker." #: lib/RT/Transaction.pm:762 lib/RT/Transaction.pm:804 msgid "No transaction type specified" msgstr "Transaksjonstype ikke oppgitt" #: share/html/Elements/Crypt/SelectKeyForEncryption:49 msgid "No usable keys." msgstr "Ingen egnede nøkler" #: share/html/Admin/Users/index.html:85 share/html/User/Search.html:58 msgid "No users matching search criteria found." msgstr "Fant ingen brukere i samsvar med søketeksten." #: lib/RT/Record/Role/Roles.pm:553 msgid "No valid PrincipalId" msgstr "" #: lib/RT/Record.pm:1005 msgid "No value sent to _Set!" msgstr "Ingen verdi sendt til _Set!" #: share/html/Elements/QuickCreate:66 msgid "Nobody" msgstr "Ingen" #: share/html/Elements/RT__Dashboard/ColumnMap:71 msgid "None" msgstr "Ingen" #: lib/RT/Record.pm:1010 msgid "Nonexistant field?" msgstr "Feltet finnes ikke?" #: lib/RT/Scrip.pm:471 msgid "Normal" msgstr "" #: share/html/Admin/Elements/EditScrips:75 msgid "Not applied scrips" msgstr "" #: lib/RT/CustomField.pm:2756 lib/RT/CustomField.pm:532 lib/RT/CustomField.pm:610 msgid "Not found" msgstr "Ikke funnet" #: share/html/Elements/PersonalQuickbar:54 msgid "Not logged in." msgstr "Ikke innlogget" #: lib/RT/Date.pm:522 share/html/Elements/ShowReminders:74 share/html/Ticket/Elements/Reminders:207 msgid "Not set" msgstr "ikke definert" #: share/html/m/_elements/full_site_link:48 msgid "Not using a mobile browser?" msgstr "Bruker du ikke en mobil nettleser?" #: share/html/Approvals/Elements/Approve:95 msgid "Notes" msgstr "Merknader" #: lib/RT/User.pm:903 msgid "Notification could not be sent" msgstr "Klarte ikke sende melding" #: etc/initialdata:63 msgid "Notify AdminCcs" msgstr "Varsle admin-kopimottakerne" #: etc/initialdata:59 msgid "Notify AdminCcs as Comment" msgstr "Varsle admin-kopimottakerne som kommentar" #: etc/initialdata:55 etc/upgrade/3.1.17/content:9 msgid "Notify Ccs" msgstr "Varsle kopimottakerne" #: etc/initialdata:51 etc/upgrade/3.1.17/content:5 msgid "Notify Ccs as Comment" msgstr "Varsle kopimottakerne som kommentar" #: etc/initialdata:97 msgid "Notify Other Recipients" msgstr "Varsle andre mottakere" #: etc/initialdata:93 msgid "Notify Other Recipients as Comment" msgstr "Varsle andre mottakere som kommentar" #: etc/initialdata:47 msgid "Notify Owner" msgstr "Varsle sakeieren" #: etc/initialdata:67 etc/upgrade/4.1.15/content:5 msgid "Notify Owner and AdminCcs" msgstr "" #: etc/initialdata:43 msgid "Notify Owner as Comment" msgstr "Varsle eieren som kommentar" #: etc/initialdata:592 etc/initialdata:605 etc/upgrade/3.8.2/content:111 etc/upgrade/4.1.9/content:164 msgid "Notify Owner of their rejected ticket" msgstr "Varsle sakeieren om avvist sak" #: etc/initialdata:620 etc/initialdata:632 etc/upgrade/3.8.2/content:124 etc/upgrade/4.1.9/content:179 msgid "Notify Owner of their ticket has been approved and is ready to be acted on" msgstr "Varsle sakeieren at saken er godkjent, og blir behandlet" #: lib/RT/Approval/Rule/Passed.pm:54 msgid "Notify Owner of their ticket has been approved by some or all approvers" msgstr "Varsle sakeieren at saken er godkjent av noen eller alle godkjennerne" #: etc/initialdata:71 etc/upgrade/4.2.6/content:5 msgid "Notify Owner or AdminCcs" msgstr "" #: etc/initialdata:89 msgid "Notify Owner, Requestors, Ccs and AdminCcs" msgstr "Varsle sakeieren, innmelderne, kopimottakerne og admin-kopimottakerne" #: etc/initialdata:85 msgid "Notify Owner, Requestors, Ccs and AdminCcs as Comment" msgstr "Varsle sakeieren, innmelderne, kopimottakerne og admin-kopimottakerne som kommentar" #: etc/initialdata:494 etc/initialdata:512 etc/upgrade/3.8.2/content:64 etc/upgrade/4.1.9/content:112 msgid "Notify Owners and AdminCcs of new items pending their approval" msgstr "Varsle sakeieren og admin-kopimottakerne om nye førespørsler som krever deres godkjenning" #: etc/initialdata:562 etc/initialdata:576 etc/upgrade/3.8.2/content:97 etc/upgrade/4.1.9/content:148 msgid "Notify Requestor of their ticket has been approved by all approvers" msgstr "Varsle innmelderen nÃ¥r saken er godkjent av alle godkjennerne" #: etc/initialdata:532 etc/initialdata:546 etc/upgrade/3.8.2/content:83 etc/upgrade/4.1.9/content:132 msgid "Notify Requestor of their ticket has been approved by some approver" msgstr "Varsle innmelderen nÃ¥r saken er godkjent av minst én godkjenner" #: etc/initialdata:39 msgid "Notify Requestors" msgstr "Varsle innmelderne" #: etc/initialdata:80 msgid "Notify Requestors and Ccs" msgstr "Varsle innmelderne og kopimottakerne" #: etc/initialdata:75 msgid "Notify Requestors and Ccs as Comment" msgstr "Varsle innmelderne og kopimottakerne som kommentar" #: lib/RT/Config.pm:465 msgid "Notify me of unread messages" msgstr "Gi beskjed om uleste meldinger" #: lib/RT/Date.pm:101 msgid "Nov" msgstr "nov." #: etc/RT_Config.pm:3390 msgid "Now in-use" msgstr "" #: share/html/Elements/RT__CustomRole/ColumnMap:70 msgid "Number" msgstr "" #: share/html/Search/Elements/SelectAndOr:49 msgid "OR" msgstr "ELLER" #: share/html/Admin/Tools/Configuration.html:142 msgid "Object" msgstr "Objekt" #: share/html/Elements/RT__Transaction/ColumnMap:60 msgid "Object Id" msgstr "" #: share/html/Elements/RT__Transaction/ColumnMap:55 msgid "Object Type" msgstr "" #: lib/RT/Record.pm:335 msgid "Object could not be created" msgstr "Klarte ikke opprette objektet" #: lib/RT/Record.pm:130 msgid "Object could not be deleted" msgstr "Klarte ikke slette objektet" #: lib/RT/Record.pm:352 share/html/Admin/CustomFields/Modify.html:233 msgid "Object created" msgstr "Objekt opprettet" #: lib/RT/Record.pm:128 msgid "Object deleted" msgstr "Objekt slettet" #: lib/RT/Group.pm:255 msgid "Object passed is not loaded" msgstr "" #: lib/RT/CustomField.pm:1694 msgid "Object type mismatch" msgstr "Ikke samsvar i objekttype" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:53 msgid "Objects list is empty" msgstr "Objektlista er tom" #: lib/RT/Date.pm:100 msgid "Oct" msgstr "okt." #: share/html/Elements/RT__Transaction/ColumnMap:75 msgid "Old Value" msgstr "" #. ($self->CreatedAsString, $self->CreatorObj->Name) #: lib/RT/Transaction.pm:425 msgid "On %1, %2 wrote:" msgstr "%1 skrev %2:" #: etc/initialdata:226 etc/upgrade/3.7.1/content:5 msgid "On Close" msgstr "Ved lukking" #: etc/initialdata:170 msgid "On Comment" msgstr "Ved kommentar" #: etc/initialdata:142 msgid "On Correspond" msgstr "Ved svar" #: etc/initialdata:131 msgid "On Create" msgstr "Ved opprettelse" #: etc/initialdata:149 etc/upgrade/4.0.3/content:7 msgid "On Forward" msgstr "Ved videresending" #: etc/initialdata:156 etc/upgrade/4.0.3/content:14 msgid "On Forward Ticket" msgstr "Ved saksvideresending" #: etc/initialdata:163 etc/upgrade/4.0.3/content:21 msgid "On Forward Transaction" msgstr "Ved transaksjonsvideresending" #: etc/initialdata:191 msgid "On Owner Change" msgstr "Ved eierskifte" #: etc/initialdata:184 etc/upgrade/3.1.17/content:18 msgid "On Priority Change" msgstr "Ved prioritetsendring" #: etc/initialdata:199 msgid "On Queue Change" msgstr "Ved købytte" #: etc/initialdata:212 etc/upgrade/3.8.3/content:5 msgid "On Reject" msgstr "Ved avvising" #: etc/initialdata:231 etc/upgrade/3.7.1/content:10 msgid "On Reopen" msgstr "Ved gjenÃ¥pning" #: etc/initialdata:205 msgid "On Resolve" msgstr "Ved løsning" #: etc/initialdata:176 msgid "On Status Change" msgstr "Ved statusendring" #: etc/initialdata:247 etc/upgrade/4.3.9/content:6 msgid "On TimeWorked Change" msgstr "" #: etc/initialdata:136 msgid "On Transaction" msgstr "Ved transaksjon" #: lib/RT/Record/Role/Roles.pm:376 msgid "One, and only one, of Principal/PrincipalId/User/Group is required" msgstr "" #: share/html/Ticket/Elements/UpdateCc:82 share/html/m/ticket/reply:105 msgid "One-time Bcc" msgstr "Engangsblindkopi" #: share/html/Ticket/Elements/UpdateCc:50 share/html/m/ticket/reply:103 msgid "One-time Cc" msgstr "Engangskopi" #: lib/RT/Config.pm:331 msgid "Only for entry, not display" msgstr "Bare for oppføring, ikke visning" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:75 msgid "Only show approvals for requests created after %1" msgstr "Vis kun godkjenninger for saker opprettet etter %1" #. (qq{") #: share/html/Approvals/Elements/PendingMyApproval:73 msgid "Only show approvals for requests created before %1" msgstr "Vis kun godkjenninger for saker opprettet før %1" #: share/html/Admin/CustomFields/index.html:55 msgid "Only show custom fields for:" msgstr "Vis bare fleksifelt for:" #: etc/initialdata:111 etc/upgrade/4.2.4/content:5 msgid "Open Inactive Tickets" msgstr "" #: etc/RT_Config.pm:3341 etc/RT_Config.pm:3348 etc/RT_Config.pm:3430 etc/RT_Config.pm:3437 msgid "Open It" msgstr "Ã…pne den" #: etc/initialdata:108 msgid "Open Tickets" msgstr "Ã…pne saker" #: share/html/Ticket/Elements/PopupTimerLink:56 share/html/Ticket/Elements/PopupTimerLink:56 msgid "Open Timer" msgstr "" #: share/html/Elements/MakeClicky:67 msgid "Open URL" msgstr "Ã…pne adresse" #: etc/initialdata:112 etc/upgrade/4.2.4/content:6 msgid "Open inactive tickets" msgstr "" #: share/html/Elements/Tabs:1203 share/html/SelfService/index.html:48 msgid "Open tickets" msgstr "Ã…pne saker" #: etc/initialdata:109 msgid "Open tickets on correspondence" msgstr "Ã…pne saker ved svar" #: share/html/Admin/Tools/Configuration.html:323 msgid "Operating System" msgstr "" #: share/html/Admin/Tools/Configuration.html:61 msgid "Option" msgstr "Valg" #: share/html/Prefs/MyRT.html:64 msgid "Options" msgstr "Valg" #: lib/RT/Installer.pm:71 msgid "Oracle" msgstr "" #: share/html/Install/DatabaseDetails.html:149 msgid "Oracle users cannot have empty passwords" msgstr "" #: share/html/Search/Elements/EditSort:55 msgid "Order by" msgstr "Sorter etter" #: lib/RT/User.pm:94 share/html/Admin/Users/Modify.html:136 share/html/Elements/RT__User/ColumnMap:76 share/html/Prefs/AboutMe.html:134 msgid "Organization" msgstr "Organisasjon" #. ($approving->Id, $approving->Subject) #: share/html/Approvals/Elements/Approve:55 msgid "Originating ticket: #%1" msgstr "Opprinnelig sak: %1" #: lib/RT/Transaction.pm:979 msgid "Outgoing email about a comment recorded" msgstr "UtgÃ¥ende e-post om en kommentar registrert" #: lib/RT/Transaction.pm:983 msgid "Outgoing email recorded" msgstr "UtgÃ¥ende e-post registrert" #: lib/RT/Config.pm:610 msgid "Outgoing mail" msgstr "UtgÃ¥ende e-post" #: share/html/Elements/Tabs:654 msgid "Overview" msgstr "Oversikt" #: lib/RT/Queue.pm:127 msgid "Own tickets" msgstr "Egne saker" #: lib/RT/Asset.pm:86 lib/RT/Graph/Tickets.pm:178 lib/RT/Report/Tickets.pm:68 lib/RT/Ticket.pm:101 lib/RT/Tickets.pm:113 lib/RT/Tickets.pm:1978 share/html/Elements/QuickCreate:62 share/html/Elements/RT__Ticket/ColumnMap:106 share/html/Elements/RT__Ticket/ColumnMap:281 share/html/Elements/RT__Ticket/ColumnMap:298 share/html/Search/Elements/PickBasics:114 share/html/Ticket/Elements/EditPeople:70 share/html/Ticket/Elements/Reminders:137 share/html/Ticket/Elements/Reminders:175 share/html/Ticket/Elements/Reminders:84 share/html/Ticket/Elements/ShowPeople:50 share/html/m/_elements/ticket_list:96 share/html/m/ticket/create:258 share/html/m/ticket/reply:71 share/html/m/ticket/show:289 msgid "Owner" msgstr "Eier" #. ($owner->Name) #: lib/RT/Ticket.pm:544 msgid "Owner '%1' does not have rights to own this ticket." msgstr "Eieren «%1» har ikke rettigheter til Ã¥ eie denne saken." #. ($OldOwnerObj->Name, $NewOwnerObj->Name) #: lib/RT/Ticket.pm:2135 msgid "Owner changed from %1 to %2" msgstr "Eier byttet fra %1 til %2" #. (map { $self->_FormatUser($_) } $Old, $New) #: lib/RT/Transaction.pm:1073 lib/RT/Transaction.pm:1257 msgid "Owner forcibly changed from %1 to %2" msgstr "Eier ble tvangsendret fra %1 til %2" #: lib/RT/Tickets.pm:163 msgid "OwnerGroup" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "OwnerName" msgstr "Eiernavn" #: share/html/Elements/CollectionListPaging:65 msgid "Page" msgstr "Side" #: share/html/Elements/CollectionListPaging:62 msgid "Page 1 of 1" msgstr "Side 1 av 2" #: share/html/dhandler:48 msgid "Page not found" msgstr "Fant ikke siden" #: share/html/Admin/Users/Modify.html:196 share/html/Prefs/AboutMe.html:101 msgid "Pager" msgstr "Personsøker" #: share/html/Elements/RT__User/ColumnMap:96 msgid "Pager Phone" msgstr "Personsøkertelefon" #: share/html/Admin/Actions/Elements/EditBasics:70 share/html/Admin/Actions/Elements/ShowBasics:70 share/html/Admin/Conditions/Elements/EditBasics:70 share/html/Admin/Conditions/Elements/ShowBasics:70 msgid "Parameters to Pass" msgstr "" #: share/html/Search/Elements/SelectLinks:60 msgid "Parent" msgstr "" #: share/html/Elements/AddLinks:83 share/html/Elements/BulkLinks:127 share/html/Elements/BulkLinks:72 share/html/Elements/EditLinks:71 share/html/Elements/ShowLinks:76 share/html/Elements/ShowLinks:91 share/html/Search/Elements/BuildFormatString:102 share/html/m/ticket/create:395 share/html/m/ticket/show:437 msgid "Parents" msgstr "Oversaker" #: share/html/Elements/Login:75 share/html/m/_elements/login:73 msgid "Password" msgstr "Passord" #: lib/RT/Transaction.pm:1208 lib/RT/User.pm:981 msgid "Password changed" msgstr "Passord endret" #: lib/RT/User.pm:947 msgid "Password has not been set." msgstr "Passordet er ikke registrert" #. (RT->Config->Get('MinimumPasswordLength')) #: lib/RT/User.pm:295 msgid "Password needs to be at least %quant(%1,character,characters) long" msgstr "Passordet mÃ¥ være minst %1 tegn langt" #: share/html/Admin/Tools/Configuration.html:128 share/html/Admin/Tools/Configuration.html:91 msgid "Password not printed" msgstr "Passord ikke skrevet ut" #: lib/RT/User.pm:980 msgid "Password set" msgstr "Passord registrert" #. ($msg) #: share/html/Prefs/AboutMe.html:264 share/html/SelfService/Prefs.html:96 msgid "Password: %1" msgstr "Passord: %1" #: lib/RT/User.pm:966 msgid "Password: Permission Denied" msgstr "Passord: nektet tilgang" #: etc/initialdata:714 msgid "PasswordChange" msgstr "PassordBytte" #: lib/RT/User.pm:943 msgid "Passwords do not match." msgstr "De to passordene er ikke like." #: lib/RT/Installer.pm:183 msgid "Path to sendmail" msgstr "Adresse til «sendmail»" #: share/html/Helpers/TicketTimer:204 share/html/Helpers/TicketTimer:204 msgid "Pause Timer" msgstr "" #. ($approvals) #: share/html/Ticket/Elements/ShowDependencyStatus:54 msgid "Pending %quant(%1,approval,approvals)." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:59 msgid "Pending %quant(%1,ticket,tickets)." msgstr "" #: share/html/Ticket/Elements/ShowDependencyStatus:52 msgid "Pending approval." msgstr "" #: share/html/Admin/Queues/DefaultValues.html:95 share/html/Asset/Create.html:74 share/html/Asset/Elements/AssetSearchPeople:48 share/html/Asset/Elements/ShowSummary:54 share/html/Asset/ModifyPeople.html:59 share/html/Asset/Search/Bulk.html:108 share/html/Elements/Tabs:1068 share/html/Elements/Tabs:791 share/html/Ticket/Elements/EditPeople:66 share/html/Ticket/Elements/ShowSummary:62 share/html/Ticket/ModifyAll.html:76 share/html/m/ticket/show:285 msgid "People" msgstr "Personer" #. ($QueueObj->Name) #: share/html/Admin/Queues/People.html:195 msgid "People related to queue %1" msgstr "Folk relatert til kø %1" #: etc/initialdata:102 msgid "Perform a user-defined action" msgstr "Kjør en brukerdefinert handling" #: share/html/Admin/Elements/ModifyTemplate:62 msgid "Perl" msgstr "" #: share/html/Admin/Tools/Configuration.html:300 msgid "Perl configuration" msgstr "Perl-oppsett" #: share/html/Admin/Tools/Configuration.html:192 msgid "Perl library search order" msgstr "Søkerekkefølge for Perl-bibliotek" #: share/html/Elements/Tabs:295 msgid "Permanently wipeout data from RT" msgstr "Slett data fra RT permanent" #: lib/RT/ACE.pm:232 lib/RT/ACE.pm:238 lib/RT/ACE.pm:317 lib/RT/Article.pm:114 lib/RT/Article.pm:318 lib/RT/Article.pm:337 lib/RT/Article.pm:389 lib/RT/Article.pm:413 lib/RT/Article.pm:478 lib/RT/Article.pm:483 lib/RT/Asset.pm:227 lib/RT/Asset.pm:438 lib/RT/Asset.pm:595 lib/RT/Attachment.pm:801 lib/RT/Attachment.pm:802 lib/RT/Attachment.pm:861 lib/RT/Attachment.pm:862 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:377 lib/RT/Attribute.pm:387 lib/RT/Attribute.pm:400 lib/RT/Catalog.pm:209 lib/RT/Catalog.pm:443 lib/RT/Class.pm:131 lib/RT/Class.pm:166 lib/RT/Class.pm:305 lib/RT/Class.pm:355 lib/RT/CurrentUser.pm:137 lib/RT/CurrentUser.pm:143 lib/RT/CurrentUser.pm:149 lib/RT/CustomField.pm:1132 lib/RT/CustomField.pm:1660 lib/RT/CustomField.pm:1698 lib/RT/CustomField.pm:1751 lib/RT/CustomField.pm:1960 lib/RT/CustomField.pm:2120 lib/RT/CustomField.pm:278 lib/RT/CustomField.pm:295 lib/RT/CustomField.pm:306 lib/RT/CustomField.pm:660 lib/RT/CustomField.pm:687 lib/RT/CustomFieldValue.pm:123 lib/RT/CustomFieldValue.pm:89 lib/RT/CustomRole.pm:314 lib/RT/CustomRole.pm:410 lib/RT/CustomRole.pm:445 lib/RT/CustomRole.pm:98 lib/RT/Group.pm:1144 lib/RT/Group.pm:1230 lib/RT/Group.pm:283 lib/RT/Group.pm:378 lib/RT/Group.pm:670 lib/RT/Group.pm:900 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1218 lib/RT/Queue.pm:308 lib/RT/Queue.pm:339 lib/RT/Queue.pm:370 lib/RT/Queue.pm:756 lib/RT/Record/Role/Links.pm:149 lib/RT/Record/Role/Links.pm:168 lib/RT/Record/Role/Status.pm:172 lib/RT/Record/Role/Status.pm:267 lib/RT/Reminders.pm:129 lib/RT/Scrip.pm:123 lib/RT/Scrip.pm:131 lib/RT/Scrip.pm:142 lib/RT/Scrip.pm:224 lib/RT/Scrip.pm:312 lib/RT/Scrip.pm:364 lib/RT/Scrip.pm:697 lib/RT/Scrip.pm:705 lib/RT/Scrip.pm:714 lib/RT/Scrip.pm:719 lib/RT/Scrip.pm:727 lib/RT/ScripAction.pm:108 lib/RT/ScripCondition.pm:119 lib/RT/SharedSetting.pm:113 lib/RT/SharedSetting.pm:205 lib/RT/SharedSetting.pm:247 lib/RT/SharedSetting.pm:279 lib/RT/Template.pm:109 lib/RT/Template.pm:119 lib/RT/Template.pm:124 lib/RT/Template.pm:263 lib/RT/Template.pm:268 lib/RT/Template.pm:277 lib/RT/Template.pm:318 lib/RT/Template.pm:483 lib/RT/Template.pm:757 lib/RT/Template.pm:774 lib/RT/Template.pm:792 lib/RT/Ticket.pm:1119 lib/RT/Ticket.pm:1308 lib/RT/Ticket.pm:1530 lib/RT/Ticket.pm:1575 lib/RT/Ticket.pm:1864 lib/RT/Ticket.pm:1883 lib/RT/Ticket.pm:2273 lib/RT/Ticket.pm:2279 lib/RT/Ticket.pm:2293 lib/RT/Ticket.pm:2298 lib/RT/Ticket.pm:2322 lib/RT/Ticket.pm:2539 lib/RT/Ticket.pm:2778 lib/RT/Ticket.pm:3140 lib/RT/Ticket.pm:779 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Topic.pm:88 lib/RT/Transaction.pm:758 lib/RT/Transaction.pm:798 lib/RT/User.pm:1249 lib/RT/User.pm:130 lib/RT/User.pm:1684 lib/RT/User.pm:1932 lib/RT/User.pm:1965 lib/RT/User.pm:317 lib/RT/User.pm:849 lib/RT/User.pm:884 share/html/Admin/Global/DashboardsInMenu.html:91 share/html/Admin/Global/MyRT.html:96 share/html/Articles/Article/Display.html:110 share/html/Articles/Article/History.html:64 share/html/Dashboards/Modify.html:95 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:117 share/html/Ticket/ShowEmailRecord.html:111 share/html/Ticket/ShowEmailRecord.html:112 msgid "Permission Denied" msgstr "Nektet tilgang" #: lib/RT/Record.pm:1380 lib/RT/Record.pm:1524 lib/RT/Record/Role/Roles.pm:472 lib/RT/Record/Role/Roles.pm:560 msgid "Permission denied" msgstr "Nektet tilgang" #: share/html/Admin/Users/Modify.html:178 share/html/Prefs/AboutMe.html:86 msgid "Phone numbers" msgstr "Telefonnummer" #: share/html/Search/Chart.html:180 msgid "Picture" msgstr "" #: lib/RT/Config.pm:340 msgid "Place signature above quote" msgstr "" #: etc/initialdata:262 msgid "Plain text Autoresponse template" msgstr "" #: etc/initialdata:411 msgid "Plain text admin comment template" msgstr "" #: etc/initialdata:371 msgid "Plain text admin correspondence template" msgstr "" #: etc/initialdata:394 msgid "Plain text correspondence template" msgstr "" #: etc/initialdata:318 msgid "Plain text transaction template" msgstr "" #: share/html/dhandler:51 msgid "Please check the URL and try again." msgstr "Kontroller adressen, og prøv sÃ¥ pÃ¥ nytt." #: lib/RT/User.pm:938 msgid "Please enter your current password correctly." msgstr "Skriv inn ditt nÃ¥værende passord riktig" #: lib/RT/User.pm:940 msgid "Please enter your current password." msgstr "Skriv inn ditt nÃ¥værende passord" #: share/html/Elements/CSRF:48 share/html/Elements/CSRF:51 msgid "Possible cross-site request forgery" msgstr "" #: share/html/Dashboards/Elements/HiddenSearches:73 msgid "Possible hidden searches" msgstr "Mulige skjulte søk" #: lib/RT/Installer.pm:69 msgid "PostgreSQL" msgstr "" #. ($m->interp->apply_escapes($Name, 'h')) #. ($m->interp->apply_escapes($name, 'h')) #: share/html/Elements/ShowSearch:99 share/html/m/tickets/search:81 msgid "Predefined search %1 not found" msgstr "ForhÃ¥ndsdefinert søk %1 ikke funnet" #: share/html/Elements/Tabs:1219 share/html/Elements/Tabs:709 share/html/Prefs/AboutMe.html:48 share/html/Prefs/Other.html:80 share/html/SelfService/Prefs.html:48 msgid "Preferences" msgstr "Innstillinger" #. ($pane, $UserObj->Name) #: share/html/Admin/Users/MyRT.html:117 msgid "Preferences %1 for user %2." msgstr "Innstillinger %1 for brukeren %2" #: share/html/Prefs/Search.html:96 msgid "Preferences reset." msgstr "" #. ($pane) #. (loc('summary rows')) #: share/html/Prefs/MyRT.html:158 share/html/Prefs/MyRT.html:91 msgid "Preferences saved for %1." msgstr "Innstillinger lagret for %1" #: share/html/Admin/Users/DashboardsInMenu.html:107 share/html/Prefs/DashboardsInMenu.html:104 msgid "Preferences saved for dashboards in menu." msgstr "" #. ($UserObj->Name) #: share/html/Admin/Users/DashboardsInMenu.html:75 share/html/Admin/Users/MyRT.html:75 msgid "Preferences saved for user %1." msgstr "Innstillinger lagret for brukeren %1" #: share/html/Prefs/DashboardsInMenu.html:79 share/html/Prefs/MyRT.html:102 share/html/Prefs/Other.html:103 share/html/Prefs/QueueList.html:106 share/html/Prefs/Search.html:119 share/html/Prefs/SearchOptions.html:81 msgid "Preferences saved." msgstr "Innstillinger lagret" #: lib/RT/User.pm:1561 msgid "Preferences were not found" msgstr "" #. ($msg) #: share/html/Prefs/Other.html:88 msgid "Preferred Key: %1" msgstr "Foretrukket nøkkel: %1" #: share/html/Prefs/Other.html:72 msgid "Preferred key" msgstr "Foretrukket nøkkel" #: lib/RT/Action.pm:171 msgid "Prepare Stubbed" msgstr "Forberedelse klargjort" #. ('?') #: share/html/Search/Bulk.html:225 share/html/Search/Results.html:96 msgid "Press %1 to view keyboard shortcuts." msgstr "" #: share/html/Elements/Tabs:880 msgid "Prev" msgstr "Forrige" #. ($args{'PrincipalId'}) #: lib/RT/ACE.pm:135 lib/RT/ACE.pm:220 msgid "Principal %1 not found." msgstr "Fant ikke primærobjektet %1" #: sbin/rt-email-digest:87 msgid "Print the resulting digest messages to STDOUT; don't mail them. Do not mark them as sent" msgstr "Send meldingssammendragene til standard ut i stedet for via e-post. Disse blir ikke markert som sendt." #: sbin/rt-email-digest:90 msgid "Print this message" msgstr "Vis denne meldinga" #: lib/RT/Report/Tickets.pm:66 lib/RT/Tickets.pm:118 lib/RT/Tickets.pm:1782 share/html/Admin/Queues/DefaultValues.html:58 share/html/Elements/RT__Queue/ColumnMap:69 share/html/Elements/RT__Ticket/ColumnMap:154 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:200 share/html/Ticket/Create.html:270 share/html/Ticket/Elements/ShowBasics:109 share/html/m/_elements/ticket_list:99 share/html/m/ticket/create:342 share/html/m/ticket/show:241 msgid "Priority" msgstr "Prioritet" # Omgrepet seier om ei utforming er privat eller offentleg. Dette er derfor ei rett «omsetting». #: share/html/Dashboards/Modify.html:67 share/html/Search/Elements/EditSearches:53 msgid "Privacy" msgstr "Offentlig" #: share/html/Articles/Article/Elements/ShowSavedSearches:56 msgid "Privacy:" msgstr "Offentlig:" #: share/html/Admin/Users/Keys.html:66 msgid "Private Key" msgstr "Privatnøkkel" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:110 msgid "Private key(s) for %1" msgstr "" #: share/html/Admin/Queues/Modify.html:142 share/html/Admin/Queues/Modify.html:152 share/html/Elements/Tabs:383 msgid "Private keys" msgstr "" #: lib/RT/Handle.pm:743 share/html/Admin/Users/Modify.html:119 msgid "Privileged" msgstr "Med utvidede rettigheter" #. (loc_fuzzy($msg)) #: share/html/Admin/Users/Modify.html:288 share/html/Prefs/AboutMe.html:254 msgid "Privileged status: %1" msgstr "Utvidede rettigheter: %1" #: share/html/Admin/Users/index.html:127 msgid "Privileged users" msgstr "Brukere med utvidede rettigheter" #: lib/RT/Config.pm:189 msgid "Privileged: usernames; Unprivileged: names and email addresses" msgstr "" #: bin/rt-crontool:173 msgid "Processing without transaction, some conditions and actions may fail. Consider using --transaction argument" msgstr "Kjører uten transaksjon. Det kan oppstÃ¥ feil for noen betingelser og handlinger. Vurder Ã¥ bruke argumentet «--transaction»." #: lib/RT/Handle.pm:756 msgid "Pseudogroup for internal use" msgstr "Pseduogruppe for intern bruk" #. ($line->{'Key'}) #: share/html/Elements/CryptStatus:150 msgid "Public key '0x%1' is required to verify signature" msgstr "Offentlignøkkelen «0x%1» er nødvendig for bekreftelse av signaturen" #. ($EmailAddress) #: share/html/Admin/Elements/ShowKeyInfo:108 msgid "Public key(s) for %1" msgstr "" #: share/html/Dashboards/Subscription.html:69 msgid "Queries" msgstr "Spørringer" #: share/html/Elements/RT__SavedSearch/ColumnMap:61 share/html/Search/Edit.html:56 share/html/Search/Elements/Chart:90 msgid "Query" msgstr "Spørring" #: share/html/Search/Build.html:115 msgid "Query Builder" msgstr "Avansert søk" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Record.pm:995 lib/RT/Report/Tickets.pm:62 lib/RT/Tickets.pm:109 lib/RT/Tickets.pm:1589 share/html/Elements/CreateTicket:53 share/html/Elements/QueueSummaryByLifecycle:57 share/html/Elements/QueueSummaryByStatus:51 share/html/Elements/QuickCreate:60 share/html/Elements/RT__Scrip/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:63 share/html/Elements/RT__Template/ColumnMap:66 share/html/Elements/RT__Template/ColumnMap:73 share/html/Elements/RT__Ticket/ColumnMap:102 share/html/Reports/CreatedByDates.html:90 share/html/Reports/ResolvedByDates.html:90 share/html/Reports/ResolvedByOwner.html:69 share/html/Search/Elements/PickBasics:83 share/html/SelfService/Create.html:61 share/html/Ticket/Elements/ShowBasics:116 share/html/m/ticket/create:248 share/html/m/ticket/show:245 msgid "Queue" msgstr "Kø" #. ($Queue||'') #: share/html/Ticket/Create.html:441 msgid "Queue %1 could not be loaded." msgstr "" #. ($Queue) #. ($id) #: share/html/Admin/Queues/CustomField.html:60 share/html/Admin/Queues/Scrips.html:54 share/html/Admin/Queues/Templates.html:58 msgid "Queue %1 not found" msgstr "Fant ikke køen %1" #: share/html/Admin/Queues/Modify.html:58 msgid "Queue Name" msgstr "Kønavn" #: lib/RT/Queue.pm:284 msgid "Queue already exists" msgstr "Køen finnes fra før" #: lib/RT/Queue.pm:189 lib/RT/Queue.pm:195 msgid "Queue could not be created" msgstr "Klarte ikke opprette køen" #: lib/RT/Interface/Web.pm:3924 share/html/m/ticket/create:143 msgid "Queue could not be loaded." msgstr "Klarte ikke laste køen." #: lib/RT/Queue.pm:212 msgid "Queue created" msgstr "Kø opprettet" #: share/html/Elements/RT__Ticket/ColumnMap:97 msgid "Queue id" msgstr "Kø-ID" #: share/html/Elements/QueueList:50 share/html/Elements/Tabs:717 share/html/Prefs/QueueList.html:79 msgid "Queue list" msgstr "" #: lib/RT/CustomField.pm:303 share/html/SelfService/Display.html:112 msgid "Queue not found" msgstr "Fant ikke køen" #: lib/RT/Queue.pm:1227 msgid "Queue's default service level has been changed" msgstr "" #: share/html/Elements/Crypt/SelectKeyForSigning:50 share/html/Elements/Crypt/SelectKeyForSigning:54 msgid "Queue's key" msgstr "Kønøkkel" #: lib/RT/Tickets.pm:151 msgid "QueueAdminCc" msgstr "KøAdminKopimottaker" #: lib/RT/Tickets.pm:159 msgid "QueueCF" msgstr "" #: lib/RT/Tickets.pm:150 msgid "QueueCc" msgstr "KøKopimottaker" #: etc/RT_Config.pm:1296 etc/initialdata:913 msgid "QueueList" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "QueueName" msgstr "Kønavn" #: lib/RT/Tickets.pm:152 msgid "QueueWatcher" msgstr "KøOvervÃ¥ker" #: lib/RT/CustomField.pm:2052 lib/RT/CustomField.pm:217 share/html/Admin/Global/CustomFields/index.html:77 share/html/Elements/Tabs:174 share/html/Elements/Tabs:304 share/html/Elements/Tabs:83 msgid "Queues" msgstr "Køer" #: share/html/Elements/MyAdminQueues:48 msgid "Queues I administer" msgstr "Køer jeg administrerer" #: share/html/Elements/MySupportQueues:48 msgid "Queues I'm an AdminCc for" msgstr "Køer jeg er administrativ kopimottaker for" #: share/html/User/Elements/Portlets/CreateAsset:48 msgid "Quick asset creation" msgstr "" #: share/html/Articles/Elements/QuickSearch:48 share/html/Elements/ShortcutHelp:66 msgid "Quick search" msgstr "Kjappsøk" #: share/html/Elements/QuickCreate:49 share/html/User/Elements/Portlets/CreateTicket:48 msgid "Quick ticket creation" msgstr "Kjapp saksoppretting" #: etc/RT_Config.pm:1296 etc/initialdata:902 msgid "QuickCreate" msgstr "" #: lib/RT/Date.pm:120 msgid "RFC2616" msgstr "RFC 2616" #: lib/RT/Date.pm:119 msgid "RFC2822" msgstr "RFC 2822" #: share/html/Elements/Tabs:998 msgid "RSS" msgstr "" #: share/html/Admin/index.html:48 msgid "RT Administration" msgstr "RT-administrering" #: lib/RT/Installer.pm:159 msgid "RT Administrator Email" msgstr "E-post til RT-administrator" #: share/html/Admin/Tools/Configuration.html:58 msgid "RT Configuration" msgstr "RT-oppsett" #: share/html/Elements/Error:69 msgid "RT Error" msgstr "RT-feil" #: share/html/Admin/Elements/Portal:49 msgid "RT Portal" msgstr "" #: share/html/Admin/Tools/Configuration.html:139 msgid "RT Size" msgstr "RT-størrelse" #: lib/RT/Config.pm:384 share/html/Admin/Global/MyRT.html:48 share/html/Admin/Global/MyRT.html:54 share/html/Admin/Users/MyRT.html:62 share/html/Elements/Tabs:255 share/html/Elements/Tabs:377 share/html/Elements/Tabs:712 share/html/Prefs/MyRT.html:57 share/html/Prefs/MyRT.html:81 share/html/index.html:4 msgid "RT at a glance" msgstr "RT-oversikt" #. ($UserObj->Name) #: share/html/Admin/Users/MyRT.html:71 msgid "RT at a glance for the user %1" msgstr "RT-oversikt for brukeren %1" #: share/html/Install/Sendmail.html:53 msgid "RT can communicate with your users about new tickets or new correspondence on tickets. Tell us where to find sendmail (or a sendmail compatible binary such as the one provided by postifx). RT also needs to know who to notify when someone sends invalid email. This must not be an address that feeds back into RT." msgstr "RT kan kommunisere med brukerne om nye saker, og om svar pÃ¥ saker. Oppgi hvor sendmail (eller et sendmail-kompatibelt program, som det som følger med Postfix) er installert. RT mÃ¥ ogsÃ¥ vite hvem som skal kontaktes nÃ¥r noen sender en ugyldig e-post. Dette kan ikke være en adresse som fører til RT." #: share/html/Admin/CustomFields/Modify.html:155 msgid "RT can include content from another web service when showing this custom field." msgstr "RT kan vise innhold fra en annen nettjeneste i dette fleksifeltet." #: share/html/Admin/CustomFields/Modify.html:147 msgid "RT can make this custom field's values into hyperlinks to another service." msgstr "RT kan gjøre feltverdiene til fleksifeltet til lenker til en nettside." #: share/html/Admin/Tools/Configuration.html:110 msgid "RT core variables" msgstr "RT-kjernevariabler" #. (RT->Config->Get('rtname')) #: share/html/Elements/Logo:59 share/html/m/_elements/header:49 share/html/m/_elements/login:49 share/html/m/index.html:48 msgid "RT for %1" msgstr "" #. ($strong_start, $strong_end, $Reason, $action) #: share/html/Elements/CSRF:55 msgid "RT has detected a possible %1cross-site request forgery%2 for this request, because %3. A malicious attacker may be trying to %1%4%2 on your behalf. If you did not initiate this request, then you should alert your security team." msgstr "" #: share/html/Install/index.html:71 msgid "RT is an enterprise-grade issue tracking system designed to let you intelligently and efficiently manage tasks, issues, requests, defects or anything else that looks like an \"action item.\"" msgstr "RT er et profesjonelt sakshÃ¥ndteringssystem som lar deg smart og enkelt hÃ¥ndtere oppgaver, problemer, forespørsler, feilinnmeldinger og andre ting som krever handling." #: share/html/Install/index.html:74 msgid "RT is used by Fortune 100 companies, one-person businesses, government agencies, educational institutions, hospitals, nonprofits, NGOs, libraries, open source projects and all sorts of other organizations on all seven continents. (Yes, even Antarctica.)" msgstr "RT blir brukt av Fortune 100-bedrifter, enkeltmannsforetak, offentlige virksomheter, utdanningsinstitusjoner, sykehus, ideelle organisasjoner, bibliotek, fri programvare-prosjekter og mange andre typer virksomheter, pÃ¥ alle kontinentene (ja, ogsÃ¥ i Antarktika!)." #: share/html/Admin/Tools/Configuration.html:296 msgid "RT upgrade history" msgstr "" #: lib/RT/Installer.pm:123 msgid "RT will connect to the database using this user. It will be created for you." msgstr "RT vil koble til databasen som denne brukeren. Den blir automatisk opprettet." #: lib/RT/Installer.pm:152 msgid "RT will create a user called \"root\" and set this as their password" msgstr "RT vil lage brukeren «root», og registrere dette som passord." #. ('__id__', '__CustomField__') #: share/html/Admin/CustomFields/Modify.html:149 share/html/Admin/CustomFields/Modify.html:157 msgid "RT will replace %1 and %2 with the record's id and the custom field's value, respectively." msgstr "RT vil automatisk bytte ut %1 og %2 med henholdsvis saksnummeret og verdien til fleksifeltet." #: lib/RT/Installer.pm:138 msgid "RT will use this string to uniquely identify your installation and looks for it in the subject of emails to decide what ticket a message applies to. We recommend that you set this to your internet domain. (ex: example.com)" msgstr "RT vil bruke denne koden for Ã¥ identifisere installasjonen, og se etter den i emnefeltet i e-postmeldinger for Ã¥ finne ut hvilken sak meldinga gjelder. Du bør sette verdien lik nettdomenet ditt. Eksempel: eksempel.no" #: share/html/Install/DatabaseType.html:52 msgid "RT works with a number of different databases. MySQL, PostgreSQL, Oracle and SQLite are all supported." msgstr "RT kan bruke ulike databaser, og bÃ¥de MySQL, PostgreSQL, Oracle og SQLite er støttet." #: share/html/Admin/Elements/LoggingSummary:86 msgid "RT's logging configuration is summarized below:" msgstr "" #. ($address) #: share/html/Admin/Queues/Modify.html:236 msgid "RTAddressRegexp option in the config doesn't match %1" msgstr "«RTAddressRegexp»-valget i oppsettet er ikke i samsvar med «%1»" #: etc/RT_Config.pm:3349 etc/RT_Config.pm:3350 etc/RT_Config.pm:3438 etc/RT_Config.pm:3439 msgid "Re-open" msgstr "GjenÃ¥pne" #: share/html/Elements/EditCustomFieldBinary:64 share/html/Elements/EditCustomFieldImage:54 msgid "Reached maximum number, so new values will override old ones." msgstr "" #: share/html/Admin/Users/Modify.html:77 share/html/Elements/RT__User/ColumnMap:61 share/html/Prefs/AboutMe.html:69 msgid "Real Name" msgstr "Fullt navn" # Blir bare brukt som overskrift i en tabell, og kan derfor ha mellomrom. #: lib/RT/User.pm:95 msgid "RealName" msgstr "Fullt navn" #: share/html/Elements/Tabs:606 msgid "Recently Viewed" msgstr "" #: share/html/Dashboards/Subscription.html:195 share/html/Ticket/Update.html:132 msgid "Recipients" msgstr "Mottakere" #: share/html/Tools/MyDay.html:72 msgid "Record all updates" msgstr "Lagre alle oppdateringene" #: share/html/Elements/RT__Group/ColumnMap:64 msgid "Recursive member" msgstr "Rekursivt medlem" #: etc/RT_Config.pm:3393 msgid "Recycle" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:124 msgid "Refer to" msgstr "Henvis til" #. ($value) #: lib/RT/Transaction.pm:1135 msgid "Reference by %1 added" msgstr "Referanse fra %1 lagt til" #. ($value) #: lib/RT/Transaction.pm:1177 msgid "Reference by %1 deleted" msgstr "Referanse fra %1 slettet" #. ($value) #: lib/RT/Transaction.pm:1132 msgid "Reference to %1 added" msgstr "Referanse til %1 lagt til" #. ($value) #: lib/RT/Transaction.pm:1174 msgid "Reference to %1 deleted" msgstr "Referanse til %1 slettet" #: share/html/Articles/Article/Elements/EditLinks:85 share/html/Articles/Article/Elements/ShowLinks:73 share/html/Articles/Article/Elements/ShowSearchCriteria:128 share/html/Elements/AddLinks:95 share/html/Elements/BulkLinks:139 share/html/Elements/BulkLinks:99 share/html/Elements/EditLinks:95 share/html/Elements/ShowLinks:79 share/html/Elements/ShowLinks:94 share/html/Search/Elements/SelectLinks:64 share/html/m/ticket/create:398 share/html/m/ticket/show:456 msgid "Referred to by" msgstr "Referert til av" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:132 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "ReferredToBy" msgstr "ReferertTilAv" #: share/html/Articles/Article/Elements/EditLinks:59 share/html/Articles/Article/Elements/ShowLinks:50 share/html/Elements/AddLinks:91 share/html/Elements/BulkLinks:135 share/html/Elements/BulkLinks:90 share/html/Elements/EditLinks:87 share/html/Elements/ShowLinks:78 share/html/Elements/ShowLinks:93 share/html/Search/Elements/SelectLinks:63 share/html/m/ticket/create:397 share/html/m/ticket/show:445 msgid "Refers to" msgstr "Refererer til" #: lib/RT/Graph/Tickets.pm:180 lib/RT/Tickets.pm:128 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Graphs/Elements/EditGraphProperties:139 msgid "RefersTo" msgstr "ReferererTil" #: share/html/Elements/RefreshHomepage:48 msgid "Refresh" msgstr "Oppdatering" #. ($value/60) #: share/html/Elements/Refresh:60 msgid "Refresh this page every %quant(%1,minute,minutes)." msgstr "Oppdater siden hvert %1. minutt" #. ($value) #: share/html/Elements/Refresh:62 msgid "Refresh this page every %quant(%1,second,seconds)." msgstr "" #: etc/RT_Config.pm:1296 etc/initialdata:921 msgid "RefreshHomepage" msgstr "" #: lib/RT/Record.pm:1412 msgid "Refused to add link which would create a circular relationship" msgstr "" #: etc/RT_Config.pm:3343 etc/RT_Config.pm:3347 etc/RT_Config.pm:3432 etc/RT_Config.pm:3436 msgid "Reject" msgstr "Avvis" #: etc/RT_Config.pm:1860 msgid "Related tickets" msgstr "" #: lib/RT/Config.pm:177 msgid "Remember default queue" msgstr "Husk standardkø" #: etc/initialdata:437 etc/upgrade/4.1.16/content:6 share/html/Elements/ShowReminders:51 share/html/Ticket/Elements/Reminders:82 msgid "Reminder" msgstr "PÃ¥minnelse" #. ($subject) #: lib/RT/Transaction.pm:1296 msgid "Reminder '%1' added" msgstr "PÃ¥minnelsen «%1» lagt til" #. ($subject) #: lib/RT/Transaction.pm:1326 msgid "Reminder '%1' completed" msgstr "PÃ¥minnelsen «%1» fullført" #. ($subject) #: lib/RT/Transaction.pm:1311 msgid "Reminder '%1' reopened" msgstr "PÃ¥minnelsen «%1» gjenÃ¥pnet" #. ($args->{'NewReminder-Subject'}, loc("Created")) #. ($old_subject || $reminder->Subject, $_) #: lib/RT/Interface/Web.pm:3066 lib/RT/Interface/Web.pm:3084 msgid "Reminder '%1': %2" msgstr "" #: lib/RT/Transaction.pm:1298 msgid "Reminder added" msgstr "" #: lib/RT/Transaction.pm:1328 msgid "Reminder completed" msgstr "" #: lib/RT/Transaction.pm:1313 msgid "Reminder reopened" msgstr "" #: share/html/Elements/Tabs:804 share/html/Ticket/Elements/Reminders:79 share/html/Ticket/Elements/ShowSummary:75 share/html/Ticket/Reminders.html:56 share/html/m/ticket/show:339 msgid "Reminders" msgstr "PÃ¥minnelser" #. ($Ticket->Id) #: share/html/Ticket/Reminders.html:48 msgid "Reminders for ticket #%1" msgstr "PÃ¥minnelser for sak %1" #: share/html/Elements/JavascriptConfig:72 msgid "Remove" msgstr "" #. ($role->Name) #. (loc($rname)) #: share/html/Asset/Search/Bulk.html:127 share/html/Search/Bulk.html:117 msgid "Remove %1" msgstr "" #: share/html/Search/Bulk.html:95 msgid "Remove AdminCc" msgstr "Fjern admin-kopimottaker" #: share/html/Ticket/Elements/Bookmark:68 msgid "Remove Bookmark" msgstr "Fjern bokmerke" #: share/html/Search/Bulk.html:91 msgid "Remove Cc" msgstr "Fjern kopimottaker" #: share/html/Search/Bulk.html:87 msgid "Remove Requestor" msgstr "Fjern innmelder" #: lib/RT/Class.pm:391 msgid "Removed Subject Override" msgstr "" #. ($self->Name, $object->Name) #: lib/RT/CustomField.pm:1711 msgid "Removed custom field %1 from %2." msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1374 msgid "Removed from group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1361 msgid "Removed group '%1'" msgstr "" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:1358 msgid "Removed user '%1'" msgstr "" #: share/html/Admin/CustomFields/Modify.html:77 msgid "Render Type" msgstr "Gjengivelsestype" #: lib/RT/Config.pm:202 msgid "Replaces the owner dropdowns with textboxes" msgstr "Erstatt nedtrekkslistene for eier med tekstbokser" #: lib/RT/Config.pm:212 msgid "Replaces the queue dropdowns with textboxes" msgstr "" #: share/html/Elements/ShowTransaction:180 share/html/Elements/Tabs:808 share/html/m/_elements/ticket_menu:69 msgid "Reply" msgstr "Svar" #: share/html/Admin/Queues/Modify.html:91 msgid "Reply Address" msgstr "Svaradresse" #: share/html/Search/Bulk.html:157 share/html/Ticket/ModifyAll.html:104 share/html/Ticket/Update.html:80 share/html/m/ticket/reply:95 msgid "Reply to requestors" msgstr "Svar til innmeldere" #: share/html/Elements/ShortcutHelp:100 msgid "Reply to ticket" msgstr "" #: lib/RT/Queue.pm:125 msgid "Reply to tickets" msgstr "Svar pÃ¥ sak" #: etc/RT_Config.pm:3396 msgid "Report stolen" msgstr "" #: share/html/Elements/Tabs:632 share/html/Reports/index.html:48 msgid "Reports" msgstr "" #: share/html/Elements/Tabs:633 msgid "Reports summarizing ticket resolution and status" msgstr "" #: lib/RT/Report/Tickets.pm:72 lib/RT/Ticket.pm:102 lib/RT/Tickets.pm:145 msgid "Requestor" msgstr "Innmelder" #: lib/RT/Tickets.pm:164 msgid "RequestorGroup" msgstr "Innmeldergruppe" #: lib/RT/Graph/Tickets.pm:178 lib/RT/Tickets.pm:146 share/html/Elements/QuickCreate:71 share/html/Elements/RT__Ticket/ColumnMap:276 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:71 share/html/Ticket/Create.html:149 share/html/Ticket/Elements/EditPeople:95 share/html/Ticket/Elements/ShowPeople:75 share/html/m/_elements/ticket_list:94 share/html/m/ticket/create:268 share/html/m/ticket/show:294 msgid "Requestors" msgstr "Innmelder" #: etc/initialdata:241 etc/upgrade/4.3.8/content:10 msgid "Require Due set according to SLA" msgstr "" #: etc/initialdata:236 etc/upgrade/4.3.8/content:5 msgid "Require Starts set according to SLA" msgstr "" #. ('Object') #: lib/RT/Attribute.pm:154 msgid "Required parameter '%1' not specified" msgstr "Obligatorisk parameter «%1» ikke oppgitt" #: share/html/Admin/Tools/Theme.html:113 share/html/Elements/Submit:114 share/html/Prefs/Search.html:71 msgid "Reset" msgstr "Tilbakestill" #: share/html/Admin/Assets/Catalogs/DefaultValues.html:64 share/html/Admin/Queues/DefaultValues.html:134 msgid "Reset Custom Field Values to Default" msgstr "" #: share/html/Prefs/MyRT.html:71 msgid "Reset RT at a glance" msgstr "Tilbakestill RT-oversikt" #: share/html/Prefs/DashboardsInMenu.html:64 msgid "Reset dashboards in menu" msgstr "" #: share/html/Prefs/AboutMe.html:181 msgid "Reset secret authentication token" msgstr "Generer hemmelig brukerkode" #: share/html/Admin/Users/DashboardsInMenu.html:56 share/html/Admin/Users/MyRT.html:56 share/html/Prefs/DashboardsInMenu.html:67 share/html/Prefs/MyRT.html:74 share/html/Prefs/Search.html:75 msgid "Reset to default" msgstr "Tilbakestill til standard" #: share/html/Admin/Tools/Theme.html:70 msgid "Reset to default RT Logo" msgstr "" #: share/html/Admin/Tools/Theme.html:114 msgid "Reset to default RT Theme" msgstr "" #: share/html/Admin/Users/Modify.html:181 share/html/Prefs/AboutMe.html:89 msgid "Residence" msgstr "Hjemme" #: etc/RT_Config.pm:3342 etc/RT_Config.pm:3346 etc/RT_Config.pm:3431 etc/RT_Config.pm:3435 share/html/Search/Elements/EditFormat:104 msgid "Resolve" msgstr "Løs" #. ($t->id, $t->Subject) #: share/html/m/ticket/reply:172 msgid "Resolve ticket #%1 (%2)" msgstr "Løs sak %1 (%2)" #: etc/initialdata:474 lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:80 lib/RT/Tickets.pm:137 share/html/Elements/RT__Ticket/ColumnMap:224 share/html/Elements/RT__Ticket/ColumnMap:257 share/html/Elements/SelectDateType:51 share/html/Search/Elements/BuildFormatString:102 msgid "Resolved" msgstr "Løst" #: share/html/Elements/Tabs:637 msgid "Resolved by owner" msgstr "" #: etc/initialdata:483 etc/upgrade/4.1.9/content:102 msgid "Resolved in HTML" msgstr "" #: share/html/Elements/Tabs:642 msgid "Resolved in date range" msgstr "" #: share/html/Reports/ResolvedByDates.html:54 msgid "Resolved tickets in period, grouped by owner" msgstr "" #: share/html/Reports/ResolvedByOwner.html:52 msgid "Resolved tickets, grouped by owner" msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "ResolvedRelative" msgstr "LøstRelativ" #: share/html/Search/Elements/EditFormat:102 msgid "Respond" msgstr "Svar" #: share/html/Elements/ListActions:51 share/html/Search/Elements/NewListActions:48 msgid "Results" msgstr "Resultat" #: share/html/Helpers/TicketTimer:204 msgid "Resume Timer" msgstr "" #: share/html/Ticket/Crypt.html:55 msgid "Return back to the ticket" msgstr "GÃ¥ tilbake til saken" #: share/html/Elements/ShortcutHelp:70 msgid "Return home" msgstr "" #: share/html/Elements/EditPassword:66 msgid "Retype Password" msgstr "Skriv passordet pÃ¥ nytt" #: share/html/Search/Elements/EditSearches:62 msgid "Revert" msgstr "Tilbakestill" #. ($right, $self->PrincipalObj->DisplayName) #: lib/RT/ACE.pm:339 msgid "Revoked right '%1' from %2." msgstr "" #: lib/RT/Config.pm:420 msgid "Rich text (HTML) shows formatting such as colored text, bold, italics, and more" msgstr "" #: lib/RT/ACE.pm:156 msgid "Right Loaded" msgstr "Rettighet lastet" #: lib/RT/ACE.pm:343 msgid "Right could not be revoked" msgstr "Rettigheten kunne ikke trekkes tilbake" #: lib/RT/ACE.pm:311 msgid "Right not loaded." msgstr "Rettighet ikke lastet." #. ($object_type) #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 msgid "Rights could not be granted for %1" msgstr "Rettigheter kunne ikke tildeles for %1" #: share/html/Admin/Elements/EditRightsCategoryTabs:89 msgid "Rights for Administrators" msgstr "Rettigheter for administratorer" #: share/html/Admin/Elements/EditRightsCategoryTabs:88 msgid "Rights for Staff" msgstr "Rettigheter for ansatte" #: share/html/Admin/CustomRoles/Modify.html:58 msgid "Role Name" msgstr "" #: lib/RT/CustomRole.pm:291 lib/RT/CustomRole.pm:298 msgid "Role already exists" msgstr "" #. ($args{Type}) #. ($type) #: lib/RT/Record/Role/Roles.pm:479 lib/RT/Record/Role/Roles.pm:564 msgid "Role group '%1' not found" msgstr "" #: lib/RT/Group.pm:544 msgid "Role group exists already" msgstr "" #: lib/RT/Interface/Web.pm:4060 share/html/Admin/Assets/Catalogs/Roles.html:55 share/html/Elements/Tabs:1153 msgid "Roles" msgstr "Roller" #: share/html/Dashboards/Subscription.html:177 msgid "Rows" msgstr "Rader" #: share/html/Prefs/MyRT.html:66 msgid "Rows per box" msgstr "Rader per boks" #: share/html/Search/Elements/EditSort:91 msgid "Rows per page" msgstr "Rader per side" #: lib/RT/Report/Tickets.pm:87 lib/RT/Tickets.pm:108 share/html/Elements/RT__Ticket/ColumnMap:263 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/ShowBasics:59 msgid "SLA" msgstr "" #: share/html/Admin/Queues/Modify.html:104 msgid "SLA Enabled (Unchecking this box disables SLA for this queue)" msgstr "" #: share/html/Admin/Users/Keys.html:75 msgid "SMIME Certificate" msgstr "" #: lib/RT/User.pm:99 msgid "SMIMECertificate" msgstr "" #: share/html/Admin/Tools/Queries.html:53 share/html/Admin/Tools/Queries.html:62 share/html/Elements/Tabs:288 msgid "SQL Queries" msgstr "SQL-spørringer" #. ($m->interp->apply_escapes($level, 'h'), qq[], '') #: share/html/Admin/Elements/LoggingSummary:80 msgid "SQL queries are logged at the %1 level and also available in the %2query tool%3." msgstr "" #: share/html/Admin/Elements/LoggingSummary:82 msgid "SQL queries are not logged." msgstr "" #: lib/RT/Installer.pm:70 msgid "SQLite" msgstr "" #: share/html/Install/DatabaseType.html:58 msgid "SQLite is a database that doesn't need a server or any configuration whatsoever. RT's authors recommend it for testing, demoing and development, but it's not quite right for a high-volume production RT server." msgstr "SQLite er en database som ikke trenger databasetjener eller oppsett. Den er anbefalt for testing, demonstrasjoner og utvikling, men bør ikke brukes i produksjonsmiljø." #: lib/RT/Date.pm:112 msgid "Sat" msgstr "lø." #: share/html/Dashboards/Subscription.html:116 msgid "Saturday" msgstr "lørdag" #: share/html/Admin/Assets/Catalogs/Modify.html:59 share/html/Admin/Assets/Catalogs/Roles.html:64 share/html/Admin/Tools/Theme.html:115 share/html/Articles/Article/Elements/ShowSavedSearches:62 share/html/Asset/ModifyPeople.html:71 share/html/Prefs/MyRT.html:68 share/html/Prefs/QueueList.html:67 share/html/Prefs/Search.html:67 share/html/Search/Elements/EditSearches:73 share/html/Ticket/Elements/Reminders:125 share/html/Widgets/SelectionBox:210 share/html/m/ticket/show:345 msgid "Save" msgstr "Lagre" #: share/html/Admin/Actions/Modify.html:62 share/html/Admin/Articles/Classes/GroupRights.html:57 share/html/Admin/Articles/Classes/Modify.html:130 share/html/Admin/Articles/Classes/UserRights.html:56 share/html/Admin/Assets/Catalogs/DefaultValues.html:63 share/html/Admin/Assets/Catalogs/GroupRights.html:55 share/html/Admin/Assets/Catalogs/UserRights.html:55 share/html/Admin/Conditions/Modify.html:62 share/html/Admin/CustomFields/GroupRights.html:56 share/html/Admin/CustomFields/Modify.html:198 share/html/Admin/CustomFields/UserRights.html:55 share/html/Admin/CustomRoles/Modify.html:100 share/html/Admin/Global/GroupRights.html:54 share/html/Admin/Global/Template.html:103 share/html/Admin/Global/UserRights.html:54 share/html/Admin/Groups/GroupRights.html:55 share/html/Admin/Groups/Modify.html:99 share/html/Admin/Groups/UserRights.html:55 share/html/Admin/Queues/DefaultValues.html:133 share/html/Admin/Queues/GroupRights.html:59 share/html/Admin/Queues/Modify.html:164 share/html/Admin/Queues/People.html:134 share/html/Admin/Queues/Template.html:115 share/html/Admin/Queues/UserRights.html:60 share/html/Admin/Scrips/Modify.html:89 share/html/Admin/Scrips/Modify.html:93 share/html/Admin/Users/Keys.html:80 share/html/Admin/Users/Modify.html:231 share/html/Articles/Article/Edit.html:91 share/html/Dashboards/Modify.html:72 share/html/Dashboards/Subscription.html:208 share/html/Prefs/Other.html:76 share/html/Prefs/QueueList.html:66 share/html/Prefs/Search.html:67 share/html/Prefs/SearchOptions.html:62 share/html/SelfService/Prefs.html:81 share/html/Ticket/Modify.html:68 share/html/Ticket/ModifyAll.html:137 share/html/Ticket/ModifyDates.html:60 share/html/Ticket/ModifyLinks.html:67 share/html/Ticket/ModifyPeople.html:82 share/html/Ticket/Reminders.html:63 msgid "Save Changes" msgstr "Lagre endringer" #: share/html/Prefs/AboutMe.html:171 msgid "Save Preferences" msgstr "Lagre innstillingene" #: share/html/Search/Elements/EditSearches:66 msgid "Save as New" msgstr "Lagre som ny" #: share/html/Asset/Modify.html:66 share/html/Asset/ModifyCFs.html:62 share/html/Asset/ModifyDates.html:61 share/html/Asset/ModifyLinks.html:61 msgid "Save asset" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:59 msgid "Save new" msgstr "Lagre ny" #: share/html/Articles/Article/Elements/ShowSavedSearches:54 msgid "Save this search" msgstr "Lagre dette søket" #. ($self->loc( $self->ObjectName ), $name) #: lib/RT/SharedSetting.pm:215 msgid "Saved %1 %2" msgstr "Lagret %1 %2" #: share/html/Admin/Global/MyRT.html:73 share/html/Admin/Users/MyRT.html:101 share/html/Dashboards/Queries.html:126 share/html/Prefs/MyRT.html:142 msgid "Saved Search" msgstr "Lagret Søk" #: share/html/Elements/SavedSearches:48 share/html/Elements/Tabs:719 msgid "Saved Searches" msgstr "Lagrede søk" #: share/html/Search/Chart.html:225 msgid "Saved charts" msgstr "Lagret diagram" #. ($m->interp->apply_escapes($SavedSearch, 'h')) #: share/html/Elements/ShowSearch:74 msgid "Saved search %1 not found" msgstr "" #: share/html/Articles/Article/Elements/ShowSavedSearches:48 share/html/Articles/Article/Search.html:69 share/html/Search/Elements/EditSearches:136 share/html/Widgets/SavedSearch:190 msgid "Saved searches" msgstr "Lagrede søk" #: etc/RT_Config.pm:1296 msgid "SavedSearches" msgstr "" #. ($row->{filename}) #: share/html/Admin/Elements/UpgradeHistoryRow:60 msgid "Schema updates from %1" msgstr "" #. ($scrip->id) #: share/html/Helpers/PreviewScrips:100 msgid "Scrip #%1" msgstr "Utløser %1" #: lib/RT/Scrip.pm:209 msgid "Scrip Created" msgstr "Utløser opprettet" #: lib/RT/Scrip.pm:372 msgid "Scrip is not added" msgstr "" #: share/html/Admin/Elements/EditScrips:53 share/html/Elements/Tabs:112 share/html/Elements/Tabs:127 share/html/Elements/Tabs:346 share/html/Elements/Tabs:466 msgid "Scrips" msgstr "Utløsere" #: share/html/Ticket/Update.html:189 msgid "Scrips and Recipients" msgstr "Utløsere og mottakere" #: share/html/Admin/Elements/EditScrips:54 msgid "Scrips normally run after each individual change to a ticket." msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:86 share/html/Admin/Tools/Shredder/index.html:63 share/html/Articles/Article/Elements/ShowSearchCriteria:144 share/html/Asset/Search/index.html:81 share/html/Asset/Search/index.html:90 share/html/Elements/FindAsset:51 share/html/Elements/GotoUser:58 share/html/Elements/ShortcutHelp:84 share/html/Elements/SimpleSearch:56 share/html/Elements/Tabs:1038 share/html/Elements/Tabs:600 share/html/Elements/Tabs:657 share/html/Elements/Tabs:663 share/html/Search/Simple.html:58 share/html/m/_elements/menu:64 msgid "Search" msgstr "Søk" #. ($search->Name) #: share/html/Articles/Article/Search.html:227 msgid "Search %1 updated" msgstr "Søk %1 oppdatert" #: share/html/Articles/Elements/GotoArticle:50 share/html/SelfService/Article/Search.html:48 share/html/SelfService/Elements/SearchArticle:49 share/html/SelfService/Elements/SearchArticle:49 msgid "Search Articles" msgstr "Søk artikler" #: share/html/Asset/Elements/Search:49 share/html/Asset/Search/index.html:78 msgid "Search Assets" msgstr "" #: share/html/Prefs/SearchOptions.html:48 msgid "Search Preferences" msgstr "Søkeinnstillinger" #: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53 msgid "Search for Articles matching" msgstr "Søk for artikler som samsvarer" #: share/html/Approvals/Elements/PendingMyApproval:57 msgid "Search for approvals" msgstr "Søk etter godkjenninger" #: share/html/Articles/Article/Search.html:48 msgid "Search for articles" msgstr "Søk for artikler" #: share/html/Search/Simple.html:100 msgid "Search for tickets" msgstr "Søk etter saker" #. (@strong) #: share/html/Search/Simple.html:63 msgid "Search for tickets by entering %1id%2 numbers, subject words %1\"in quotes\"%2, %1queues%2 by name, Owners by %1username%2, Requestors by %1email address%2, and ticket %1statuses%2. Searching for %1@domainname.com%2 will return tickets with requestors from that domain." msgstr "" #: share/html/Elements/Tabs:711 msgid "Search options" msgstr "Søkevalg" #: share/html/Articles/Article/Search.html:85 msgid "Search results" msgstr "Søkeresultater" #: lib/RT/Config.pm:359 msgid "Search results refresh interval" msgstr "Oppdater søkeresultatene" #: share/html/Search/index.html:48 msgid "Searches" msgstr "" #. ($fulltext_keyword) #: share/html/Search/Simple.html:73 msgid "Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing %1word." msgstr "Ã… søke pÃ¥ den fulle teksten alle saker kan ta lang tid, men hvis du trenger Ã¥ gjøre det, kan du søke etter ethvert ord i full sakshistorie ved Ã¥ skrive %1ord." #: share/html/Prefs/AboutMe.html:173 msgid "Secret authentication token" msgstr "Hemmelig brukerkode" #: bin/rt-crontool:352 msgid "Security:" msgstr "Sikkerhet:" #: share/html/Elements/ShowCustomFields:132 share/html/m/ticket/show:194 msgid "See also:" msgstr "Se ogsÃ¥:" #: lib/RT/Class.pm:89 msgid "See articles in this class" msgstr "Se artikler i denne kategorien" #: lib/RT/Catalog.pm:82 msgid "See assets" msgstr "" #: lib/RT/Catalog.pm:79 msgid "See catalogs" msgstr "" #: lib/RT/Class.pm:90 msgid "See changes to articles in this class" msgstr "Se forandringer i artikler i denne kategorien" #: lib/RT/Class.pm:87 msgid "See that this class exists" msgstr "Se at denne kategorien eksisterer" #: share/html/Elements/Tabs:106 share/html/Elements/Tabs:1144 share/html/Elements/Tabs:116 share/html/Elements/Tabs:131 share/html/Elements/Tabs:139 share/html/Elements/Tabs:147 share/html/Elements/Tabs:155 share/html/Elements/Tabs:202 share/html/Elements/Tabs:218 share/html/Elements/Tabs:232 share/html/Elements/Tabs:241 share/html/Elements/Tabs:324 share/html/Elements/Tabs:343 share/html/Elements/Tabs:347 share/html/Elements/Tabs:467 share/html/Elements/Tabs:474 share/html/Elements/Tabs:481 share/html/Elements/Tabs:484 share/html/Elements/Tabs:487 share/html/Elements/Tabs:495 share/html/Elements/Tabs:501 share/html/Elements/Tabs:507 share/html/Elements/Tabs:513 share/html/Elements/Tabs:525 share/html/Elements/Tabs:536 share/html/Elements/Tabs:71 share/html/Elements/Tabs:79 share/html/Elements/Tabs:87 share/html/Elements/Tabs:96 msgid "Select" msgstr "Velg" #: share/html/Admin/Global/CustomFields/index.html:96 share/html/Elements/Tabs:190 msgid "Select Custom Fields for Articles in all Classes" msgstr "Velg fleksifelt for artikler i alle kategorier" #: share/html/Elements/Tabs:195 msgid "Select Custom Fields for Assets in all Catalogs" msgstr "" #: share/html/Install/DatabaseDetails.html:73 msgid "Select Database Type" msgstr "Velg databasetype" #: share/html/Admin/Articles/Classes/index.html:48 share/html/Admin/Articles/Classes/index.html:52 msgid "Select a Class" msgstr "Velg en kategori" #: share/html/Admin/CustomFields/index.html:94 msgid "Select a Custom Field" msgstr "Velg fleksifelt" #: share/html/Admin/CustomRoles/index.html:93 msgid "Select a Custom Role" msgstr "" #: share/html/Admin/Scrips/index.html:48 msgid "Select a Scrip" msgstr "" #: share/html/Admin/Assets/Catalogs/index.html:52 msgid "Select a catalog" msgstr "" #: share/html/Admin/Tools/Theme.html:84 msgid "Select a color for the section" msgstr "Velg en farge for seksjon" #: share/html/Admin/CustomRoles/index.html:73 msgid "Select a custom role" msgstr "" #: share/html/Admin/Groups/index.html:77 share/html/Admin/Groups/index.html:94 msgid "Select a group" msgstr "Velg gruppe" #: share/html/Admin/Queues/index.html:73 share/html/m/ticket/select_create_queue:55 msgid "Select a queue" msgstr "Velg kø" #: share/html/SelfService/CreateTicketInQueue.html:50 msgid "Select a queue for your new ticket" msgstr "Velg kø for den nye saken" #: share/html/Admin/Tools/Theme.html:79 msgid "Select a section" msgstr "Velg en seksjon" #: share/html/Admin/Users/index.html:48 share/html/Admin/Users/index.html:87 share/html/User/Search.html:60 msgid "Select a user" msgstr "Velg bruker" #. ($included_topic->Name) #: share/html/Articles/Elements/BeforeMessageBox:114 msgid "Select an Article from %1" msgstr "Velg en artikkel fra %1" #: share/html/Articles/Elements/BeforeMessageBox:66 msgid "Select an Article to include" msgstr "Velg en artikkel Ã¥ inkludere" #: share/html/Install/index.html:59 msgid "Select another language" msgstr "Velg et annet sprÃ¥k" #: lib/RT/CustomField.pm:84 lib/RT/CustomField.pm:87 msgid "Select box" msgstr "Avmerkingsboks" #: share/html/Admin/Global/CustomFields/index.html:78 share/html/Elements/Tabs:175 msgid "Select custom fields for all queues" msgstr "Velg fleksifelt for alle køene" #: share/html/Admin/Global/CustomFields/index.html:72 share/html/Elements/Tabs:170 msgid "Select custom fields for all user groups" msgstr "Velg fleksifelt for alle brukergruppene" #: share/html/Admin/Global/CustomFields/index.html:67 share/html/Elements/Tabs:165 msgid "Select custom fields for all users" msgstr "Velg fleksifelt for alle brukerne" #: share/html/Admin/Global/CustomFields/index.html:84 share/html/Elements/Tabs:180 msgid "Select custom fields for tickets in all queues" msgstr "Vel fleksifelt for saker i alle køene" #: share/html/Admin/Global/CustomFields/index.html:91 share/html/Elements/Tabs:185 msgid "Select custom fields for transactions on tickets in all queues" msgstr "Velg fleksifelt for transaksjoner pÃ¥ saker i alle køene" #: lib/RT/CustomField.pm:173 msgid "Select date" msgstr "Velg dato" #: lib/RT/CustomField.pm:183 msgid "Select datetime" msgstr "Velg datotid" #: share/html/Admin/Scrips/Objects.html:65 msgid "Select global scrip stage:" msgstr "" #: lib/RT/CustomField.pm:172 msgid "Select multiple dates" msgstr "Velg flere datoer" #: lib/RT/CustomField.pm:182 msgid "Select multiple datetimes" msgstr "Velg flere datotider" #: lib/RT/CustomField.pm:75 msgid "Select multiple values" msgstr "Velg flere verdier" #: lib/RT/CustomField.pm:76 msgid "Select one value" msgstr "Velg enkeltverdi" #: share/html/Prefs/QueueList.html:52 msgid "Select queues to be displayed on the \"RT at a glance\" page" msgstr "Velg køene som skal vises pÃ¥ «RT-oversikt»-siden" #: share/html/Admin/Elements/SelectStageForAdded:53 msgid "Select scrip stage for newly added queues:" msgstr "" #. () #: share/html/Articles/Article/ExtractIntoClass.html:63 share/html/Articles/Article/ExtractIntoTopic.html:52 msgid "Select topics for this article" msgstr "Velg emner for denne artikkelen" #: lib/RT/CustomField.pm:174 msgid "Select up to %quant(%1,date,dates)" msgstr "Velg opptil %1 datoer" #: lib/RT/CustomField.pm:184 msgid "Select up to %quant(%1,datetime,datetimes)" msgstr "Velg opptil %1 datotider" #: lib/RT/CustomField.pm:77 msgid "Select up to %quant(%1,value,values)" msgstr "Velg opptil %1 verdier" #: share/html/Admin/Elements/EditCustomFields:55 msgid "Selected Custom Fields" msgstr "Valgte fleksifelt" #: share/html/Admin/Articles/Classes/Objects.html:65 msgid "Selected Queues" msgstr "Valgte køer" #: lib/RT/Crypt.pm:692 msgid "Selected key either is not trusted or doesn't exist anymore." msgstr "Den valgte nøkkelen er ikke tiltrodd, eller finnes ikke lenger" #: share/html/Admin/CustomFields/Objects.html:67 share/html/Admin/CustomRoles/Objects.html:56 share/html/Admin/Scrips/Objects.html:75 msgid "Selected objects" msgstr "Valgte objekt" #: share/html/Widgets/SelectionBox:208 msgid "Selections modified. Please save your changes" msgstr "Utvalg endret. Du bør lagre endringene." #: etc/initialdata:117 msgid "Send Forward" msgstr "" #: etc/initialdata:118 msgid "Send forwarded message" msgstr "" #: etc/initialdata:90 msgid "Send mail to owner and all watchers" msgstr "Send e-post til eier og overvÃ¥kere" #: etc/initialdata:86 msgid "Send mail to owner and all watchers as a \"comment\"" msgstr "Send e-post til eier og overvÃ¥kere som kommentar" #: etc/initialdata:81 msgid "Send mail to requestors and Ccs" msgstr "Send e-post til innmeldere og kopimottakere" #: etc/initialdata:76 msgid "Send mail to requestors and Ccs as a comment" msgstr "Send e-post til innmeldere og kopimottakere som kommentar" #: lib/RT/Interface/Email.pm:1437 msgid "Sending the previous mail has failed. Please contact your admin, they can find more details in the logs." msgstr "" #: etc/initialdata:40 msgid "Sends a message to the requestors" msgstr "Send melding til innmelderne" #: etc/initialdata:94 etc/initialdata:98 msgid "Sends mail to explicitly listed Ccs and Bccs" msgstr "Send e-post til eksplisitt oppgitte kopi- og blindkopimottakere" #: etc/initialdata:56 etc/upgrade/3.1.17/content:10 msgid "Sends mail to the Ccs" msgstr "Send e-post til kopimottakerne" #: etc/initialdata:52 etc/upgrade/3.1.17/content:6 msgid "Sends mail to the Ccs as a comment" msgstr "Send e-post til kopimottakerne som kommentar" #: etc/initialdata:68 etc/upgrade/4.1.15/content:6 msgid "Sends mail to the Owner and administrative Ccs" msgstr "" #: etc/initialdata:72 etc/upgrade/4.2.6/content:6 msgid "Sends mail to the Owner if set, otherwise administrative Ccs" msgstr "" #: etc/initialdata:64 msgid "Sends mail to the administrative Ccs" msgstr "Send e-post til de administrative kopimottakerne" #: etc/initialdata:60 msgid "Sends mail to the administrative Ccs as a comment" msgstr "Send e-post til de administrative kopimottakerne som kommentar" #: etc/initialdata:44 etc/initialdata:48 msgid "Sends mail to the owner" msgstr "Send e-post til eieren" #: lib/RT/Date.pm:99 msgid "Sep" msgstr "sep." #: share/html/Articles/Article/Elements/LinkEntryInstructions:49 msgid "Separate multiple entries with spaces." msgstr "Separer flere oppføringer med mellomrom." #: etc/initialdata:124 etc/upgrade/4.3.8/content:22 msgid "Set due date according to SLA" msgstr "" #: lib/RT/User.pm:1957 msgid "Set private key" msgstr "Sett private nøkkel" #: etc/initialdata:120 etc/upgrade/4.3.8/content:18 msgid "Set starts date according to SLA" msgstr "" #: etc/initialdata:125 etc/upgrade/4.3.8/content:23 msgid "Set the due date according to an agreement" msgstr "" #: etc/initialdata:121 etc/upgrade/4.3.8/content:19 msgid "Set the starts date according to an agreement" msgstr "" #: share/html/Elements/Tabs:708 msgid "Settings" msgstr "Innstillinger" #: share/html/Articles/Elements/NeedsSetup:49 msgid "Setup needed" msgstr "" #: lib/RT/Config.pm:190 msgid "Short usernames" msgstr "Korte brukernavn" #: lib/RT/Config.pm:611 msgid "Should RT send you mail for ticket updates you make?" msgstr "Skal RT sende deg e-post med dine egne saksoppdateringer?" #: share/html/Elements/ShowTransaction:152 share/html/Elements/Tabs:748 msgid "Show" msgstr "Vis" #: lib/RT/System.pm:89 msgid "Show Admin menu" msgstr "" #: lib/RT/System.pm:90 msgid "Show Approvals tab" msgstr "Vis godkjenningsfane" #: lib/RT/System.pm:88 msgid "Show Articles menu" msgstr "" #: lib/RT/System.pm:91 msgid "Show Assets menu" msgstr "" #: share/html/Search/Elements/EditFormat:54 msgid "Show Columns" msgstr "Vis kolonner" #: share/html/Elements/Tabs:1118 share/html/Elements/Tabs:972 msgid "Show Results" msgstr "Vis søkeresultat" #. ($Level) #: share/html/Ticket/Graphs/Elements/EditGraphProperties:154 msgid "Show Tickets Properties on %1 level" msgstr "Vis saksegenskaper pÃ¥ nivÃ¥ %1" #: share/html/Ticket/Elements/ShowAttachments:116 msgid "Show all" msgstr "" #: share/html/Elements/ShowHistoryHeader:78 share/html/Elements/ShowHistoryHeader:79 msgid "Show all quoted text" msgstr "Vis all sitert tekst" #: share/html/Approvals/Elements/PendingMyApproval:65 msgid "Show approved requests" msgstr "Vis godkjente forespørsler" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:71 msgid "Show as well" msgstr "Vis ogsÃ¥" #: share/html/Elements/ShowHistoryHeader:89 msgid "Show brief headers" msgstr "Vis korte meldingshoder" #: share/html/Approvals/Elements/PendingMyApproval:68 msgid "Show denied requests" msgstr "Vis avviste forespørsler" #: share/html/Elements/ShowHistoryHeader:94 msgid "Show full headers" msgstr "Vis fullstendige meldingshoder" #: lib/RT/System.pm:92 msgid "Show global templates" msgstr "Vis globale maler" #: lib/RT/Config.pm:449 msgid "Show history" msgstr "" #: lib/RT/System.pm:84 msgid "Show history of public user properties" msgstr "" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:102 msgid "Show link descriptions" msgstr "Vis koblingsbeskrivelser" #: lib/RT/Config.pm:491 msgid "Show no tickets for the Requestor" msgstr "Vis ingen saker for innmelderen" #: lib/RT/Config.pm:440 msgid "Show oldest history first" msgstr "Vis eldste oppdatering først" #: share/html/Approvals/Elements/PendingMyApproval:62 msgid "Show pending requests" msgstr "Vis ventende forespørsler" #: share/html/Elements/FoldStanzaJS:50 share/html/Elements/FoldStanzaJS:50 msgid "Show quoted text" msgstr "Vis sitert tekst" #: share/html/Approvals/Elements/PendingMyApproval:71 msgid "Show requests awaiting other approvals" msgstr "Vis forespørsler som venter pÃ¥ andre godkjenninger" #: lib/RT/Config.pm:501 msgid "Show simplified recipient list on ticket update" msgstr "" #: lib/RT/Config.pm:488 msgid "Show the Requestor's 10 highest priority active tickets" msgstr "Vis innmelderens 10 høyest prioriterte aktive saker" #: lib/RT/Config.pm:489 msgid "Show the Requestor's 10 highest priority inactive tickets" msgstr "Vis innmelderens 10 høyest prioriterte inaktive saker" #: lib/RT/Config.pm:490 msgid "Show the Requestor's 10 highest priority tickets" msgstr "Vis innmelderens 10 høyest prioriterte saker" #: share/html/Ticket/Elements/ClickToShowHistory:50 msgid "Show ticket history" msgstr "Vis sakshistorie" #: share/html/Ticket/Display.html:62 msgid "Show unset fields" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:74 share/html/Elements/Tabs:1015 share/html/Elements/Tabs:294 msgid "Shredder" msgstr "Makulering" #. ($path_tag) #: share/html/Admin/Tools/Shredder/Elements/Error/NoStorage:55 msgid "Shredder needs a directory to write dumps to. Please ensure that the directory %1 exists and that it is writable by your web server." msgstr "Shredder trenger en katalog Ã¥ skrive til. Vennligst sikre at katalogen %1 eksisterer og at webserveren din kan skrive til den." #: share/html/Dashboards/Queries.html:181 msgid "Sidebar" msgstr "Sidestolpe" #: share/html/Elements/RT__Queue/ColumnMap:92 msgid "Sign" msgstr "Signer" #. ("","","","") #: share/html/Admin/Queues/Modify.html:125 msgid "Sign all auto-generated mail. %1Caution%2: Enabling this option alters the signature from providing %3authentication%4 to providing %3integrity%4." msgstr "" #: share/html/Admin/Queues/Modify.html:120 msgid "Sign by default" msgstr "Signer som standard" #: lib/RT/Queue.pm:122 msgid "Sign up as a ticket Requestor or ticket or queue Cc" msgstr "Registrer som innmelder eller kopimottaker for sak eller kø" #: lib/RT/Queue.pm:123 msgid "Sign up as a ticket or queue AdminCc" msgstr "Registrer som admin-kopimottaker for sak eller kø" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ),) #: share/html/Elements/Crypt/SignEncryptWidget:64 msgid "Sign%1%2" msgstr "" #. ($columnsplit, $m->scomp('/Widgets/Form/Boolean:InputOnly', Name => 'Sign', CurrentValue => $self->{'Sign'} ), $m->scomp('SelectKeyForSigning', User => $session{'CurrentUser'}->UserObj ),) #: share/html/Elements/Crypt/SignEncryptWidget:57 msgid "Sign%1%2 using %3" msgstr "Signer%1%2 ved Ã¥ bruke %3" #: share/html/Admin/Users/Modify.html:219 share/html/Prefs/AboutMe.html:109 msgid "Signature" msgstr "Signatur" #: lib/RT/Queue.pm:319 msgid "Signing" msgstr "" #: share/html/Admin/Elements/ModifyTemplate:65 msgid "Simple" msgstr "Enkel" #: share/html/Elements/Tabs:603 msgid "Simple Search" msgstr "Enkelt søk" #: share/html/Elements/RT__CustomRole/ColumnMap:74 msgid "Single" msgstr "Enkel" #: lib/RT/Installer.pm:137 msgid "Site name" msgstr "Nettstednavn" #: share/html/Admin/Tools/Configuration.html:143 share/html/Search/Elements/EditFormat:114 msgid "Size" msgstr "Størrelse" #: share/html/Elements/PersonalQuickbar:52 msgid "Skip Menu" msgstr "Hopp over menyen" #: sbin/rt-email-digest:282 msgid "Skipping disabled user" msgstr "Hopper over deaktivert bruker" #: share/html/Search/Elements/EditFormat:117 msgid "Small" msgstr "Liten" #: share/html/Admin/CustomFields/Modify.html:158 msgid "Some browsers may only load content from the same domain as your RT server." msgstr "Merk at noen nettlesere bare kan laste inn innhold fra samme domene som RT kjører pÃ¥." #: share/html/Admin/CustomFields/Objects.html:112 msgid "Something wrong. Contact system administrator" msgstr "Noko er galt. Ta kontakt med systemadministratoren." #: share/html/Admin/Elements/AddCustomFieldValue:53 share/html/Admin/Elements/EditCustomFieldValues:57 msgid "Sort" msgstr "Sorter" #: share/html/Admin/Queues/Modify.html:87 msgid "Sort Order" msgstr "" #: share/html/Search/Elements/DisplayOptions:48 msgid "Sorting" msgstr "Sortering" #: share/html/Admin/Tools/Configuration.html:266 share/html/Admin/Tools/Configuration.html:63 msgid "Source" msgstr "Kilde" #: sbin/rt-email-digest:85 msgid "Specify whether this is a daily or weekly run." msgstr "Velg om denne skal kjøres daglig eller ukentlig." #: share/html/Elements/Tabs:981 msgid "Spreadsheet" msgstr "Regneark" #. ($level) #: share/html/Admin/Elements/LoggingSummary:73 msgid "Stack traces are added to message levels %1 and higher." msgstr "" #: share/html/Admin/Elements/LoggingSummary:75 msgid "Stack traces are not logged." msgstr "" #: share/html/Admin/Scrips/Create.html:61 share/html/Elements/RT__Queue/ColumnMap:105 share/html/Elements/RT__Scrip/ColumnMap:169 msgid "Stage" msgstr "NivÃ¥" #: etc/RT_Config.pm:3345 etc/RT_Config.pm:3434 msgid "Stall" msgstr "Stopp" #. (map { "$_" } 'queue:"Example Queue"', 'owner:email@example.com') #: share/html/Search/Simple.html:85 msgid "Start the search term with the name of a supported field followed by a colon, as in %1 and %2, to explicitly specify the search type." msgstr "Start søketermen med navnet pÃ¥ et støttet felt fulgt av kolon, som i %1 og %2, for Ã¥ eksplisitt spesifisere søketypen." #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:79 lib/RT/Tickets.pm:135 share/html/Elements/RT__Ticket/ColumnMap:201 share/html/Elements/RT__Ticket/ColumnMap:234 share/html/Elements/SelectDateType:50 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/EditDates:63 share/html/Ticket/Elements/ShowDates:60 share/html/m/ticket/show:365 msgid "Started" msgstr "Startet" #. ($Now->AsString) #: share/html/Helpers/TicketTimer:221 msgid "Started at %1." msgstr "" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartedRelative" msgstr "StartetRelativ" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:78 lib/RT/Tickets.pm:134 share/html/Admin/Queues/DefaultValues.html:81 share/html/Elements/RT__Ticket/ColumnMap:196 share/html/Elements/RT__Ticket/ColumnMap:229 share/html/Elements/SelectDateType:54 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Create.html:304 share/html/Ticket/Elements/EditDates:50 share/html/Ticket/Elements/ShowDates:55 share/html/m/ticket/create:380 share/html/m/ticket/show:361 msgid "Starts" msgstr "Startdato" #: share/html/Search/Elements/BuildFormatString:102 msgid "StartsRelative" msgstr "StartdatoRelativ" #: share/html/Admin/Users/Modify.html:157 share/html/Elements/RT__User/ColumnMap:116 share/html/Prefs/AboutMe.html:150 msgid "State" msgstr "Delstat/region" #: share/html/Admin/Tools/Configuration.html:183 msgid "Static file search order" msgstr "" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Report/Tickets.pm:60 lib/RT/Tickets.pm:107 lib/RT/Tickets.pm:1621 share/html/Asset/Elements/AssetSearchBasics:55 share/html/Asset/Elements/EditBasics:64 share/html/Asset/Elements/ShowBasics:62 share/html/Asset/Search/Bulk.html:97 share/html/Elements/RT__Class/ColumnMap:66 share/html/Elements/RT__CustomField/ColumnMap:56 share/html/Elements/RT__CustomRole/ColumnMap:56 share/html/Elements/RT__Group/ColumnMap:82 share/html/Elements/RT__Queue/ColumnMap:56 share/html/Elements/RT__Scrip/ColumnMap:110 share/html/Elements/RT__Ticket/ColumnMap:111 share/html/Elements/RT__Ticket/ColumnMap:121 share/html/Elements/RT__User/ColumnMap:146 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:97 share/html/SelfService/Update.html:62 share/html/Ticket/Elements/ShowBasics:54 share/html/Ticket/Graphs/Elements/ShowLegends:51 share/html/Tools/MyDay.html:67 share/html/m/_elements/ticket_list:95 share/html/m/ticket/create:250 share/html/m/ticket/reply:63 share/html/m/ticket/show:219 msgid "Status" msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Asset.pm:244 msgid "Status '%1' isn't a valid status for assets." msgstr "" #. ($self->loc($new), $self->loc($lifecycle->Type)) #: lib/RT/Record/Role/Status.pm:163 msgid "Status '%1' isn't a valid status for this %2." msgstr "" #. ($self->loc($args{'Status'})) #: lib/RT/Ticket.pm:287 msgid "Status '%1' isn't a valid status for tickets in this queue." msgstr "Status '%1' er ikke en gyldig status for saker i denne køen." #: etc/initialdata:449 msgid "Status Change" msgstr "Statusendring" #: etc/initialdata:460 etc/upgrade/4.1.9/content:90 msgid "Status Change in HTML" msgstr "" #. ("'" . $self->loc( $canon->($self->OldValue) ) . "'", "'" . $self->loc( $canon->($self->NewValue) ) . "'") #: lib/RT/Transaction.pm:911 msgid "Status changed from %1 to %2" msgstr "Status endret fra %1 til %2" #: share/html/Admin/Elements/EditRightsCategoryTabs:90 msgid "Status changes" msgstr "Statusendringer" #: share/html/Elements/Tabs:855 msgid "Steal" msgstr "Stjel" #: lib/RT/Queue.pm:131 msgid "Steal tickets" msgstr "Stjel saker" #. (1, 7) #. (2, 7) #. (3, 7) #. (4, 7) #. (5, 7) #. (6, 7) #. (7, 7) #: share/html/Install/Basics.html:48 share/html/Install/DatabaseDetails.html:48 share/html/Install/DatabaseType.html:48 share/html/Install/Finish.html:48 share/html/Install/Global.html:48 share/html/Install/Initialize.html:48 share/html/Install/Sendmail.html:48 msgid "Step %1 of %2" msgstr "Steg %1 av %2" #. ($self->_FormatUser($Old)) #: lib/RT/Transaction.pm:1079 lib/RT/Transaction.pm:1243 msgid "Stolen from %1" msgstr "StjÃ¥let fra %1" #: share/html/Helpers/TicketTimer:195 msgid "Stopwatch" msgstr "" #: share/html/Search/Chart.html:182 share/html/Search/Elements/EditFormat:123 msgid "Style" msgstr "Stil" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:140 lib/RT/Tickets.pm:1731 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/QuickCreate:57 share/html/Elements/RT__Ticket/ColumnMap:116 share/html/Elements/SelectAttachmentField:49 share/html/Search/Bulk.html:161 share/html/Search/Elements/BuildFormatString:102 share/html/SelfService/Create.html:87 share/html/SelfService/Update.html:73 share/html/Ticket/Create.html:221 share/html/Ticket/Elements/Reminders:133 share/html/Ticket/Elements/Reminders:164 share/html/Ticket/Forward.html:65 share/html/Ticket/ModifyAll.html:111 share/html/Ticket/Update.html:156 share/html/m/ticket/create:229 share/html/m/ticket/reply:99 msgid "Subject" msgstr "Emne" #: share/html/Admin/Queues/Modify.html:83 msgid "Subject Tag" msgstr "Emnekode" #. ($self->Data) #: lib/RT/Transaction.pm:1107 msgid "Subject changed to %1" msgstr "Emnet endret til %1" #: share/html/Elements/RT__Queue/ColumnMap:87 msgid "SubjectTag" msgstr "Emnekode" #: share/html/Elements/Submit:99 msgid "Submit" msgstr "Send inn" #: share/html/Helpers/TicketTimer:205 share/html/Helpers/TicketTimer:205 msgid "Submit Timer" msgstr "" #: share/html/Helpers/TicketTimer:148 msgid "Submitting" msgstr "" #: share/html/Dashboards/Subscription.html:210 msgid "Subscribe" msgstr "Abonner" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:380 msgid "Subscribe to dashboard %1" msgstr "Abonner pÃ¥ utformingen %1" #: lib/RT/Dashboard.pm:78 msgid "Subscribe to dashboards" msgstr "Abonner pÃ¥ utforminger" #. ($Dashboard->Name) #: share/html/Dashboards/Subscription.html:358 msgid "Subscribed to dashboard %1" msgstr "Abonnerer pÃ¥ utforminga «%1»" #: share/html/Dashboards/Subscription.html:88 share/html/Elements/RT__Dashboard/ColumnMap:61 share/html/Elements/Tabs:746 msgid "Subscription" msgstr "Abonnement" #. ($msg) #: share/html/Dashboards/Subscription.html:361 msgid "Subscription could not be created: %1" msgstr "Klarte ikke starte abonnement: %1" #: share/html/Dashboards/Subscription.html:341 msgid "Subscription updated" msgstr "" #: lib/RT/Attachment.pm:903 msgid "Successfuly decrypted data" msgstr "Data dekryptert" #: lib/RT/Attachment.pm:854 msgid "Successfuly encrypted data" msgstr "Data kryptert" #: share/html/Articles/Article/Display.html:54 share/html/Articles/Article/Elements/EditBasics:54 share/html/Articles/Article/Elements/ShowSearchCriteria:67 share/html/Elements/RT__Article/ColumnMap:66 share/html/Elements/Tabs:1170 msgid "Summary" msgstr "Sammendrag" #: lib/RT/Report/Tickets.pm:232 msgid "Summary of Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:227 msgid "Summary of Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:222 msgid "Summary of Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:242 msgid "Summary of Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:247 msgid "Summary of Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:237 msgid "Summary of Starts-Started" msgstr "" #: lib/RT/Report/Tickets.pm:212 msgid "Summary of time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:217 msgid "Summary of time left" msgstr "" #: lib/RT/Report/Tickets.pm:207 msgid "Summary of time worked" msgstr "" #: lib/RT/Date.pm:106 msgid "Sun" msgstr "sø." #: share/html/Dashboards/Subscription.html:117 msgid "Sunday" msgstr "søndag" #: share/html/Dashboards/Subscription.html:187 msgid "Suppress if empty (Check this to avoid sending mail if all searches have no results)" msgstr "" #: lib/RT/Config.pm:600 msgid "Suspended" msgstr "Stoppet" #: lib/RT/Interface/Web.pm:4012 msgid "System" msgstr "" #: share/html/Admin/Elements/EditActions:52 msgid "System Actions" msgstr "" #: share/html/Admin/Elements/EditConditions:52 msgid "System Conditions" msgstr "" #: share/html/Admin/Tools/Configuration.html:50 share/html/Elements/Tabs:276 msgid "System Configuration" msgstr "Systemoppsett" #: lib/RT/Installer.pm:200 share/html/Elements/SelectTimezone:63 msgid "System Default" msgstr "Systemverdi" #: lib/RT/Interface/Web.pm:2658 lib/RT/Interface/Web.pm:2758 share/html/Admin/Elements/EditRightsCategoryTabs:60 msgid "System Error" msgstr "Systemfeil" #. ($msg) #: lib/RT/Transaction.pm:272 lib/RT/Transaction.pm:278 msgid "System Error: %1" msgstr "Systemfeil: %1" #: share/html/Admin/Tools/index.html:48 msgid "System Tools" msgstr "Systemverktøy" #: lib/RT/Transaction.pm:926 msgid "System error" msgstr "Systemfeil" #: lib/RT/ACE.pm:141 lib/RT/ACE.pm:209 lib/RT/ACE.pm:291 msgid "System error. Right not granted." msgstr "Systemfeil. Rettigheten ble ikke tildelt." #: lib/RT/CustomRole.pm:137 lib/RT/Handle.pm:807 msgid "SystemRolegroup for internal use" msgstr "Systemrollegruppe for intern bruk" #: etc/initialdata:862 share/html/Elements/Tabs:852 share/html/Search/Elements/EditFormat:101 msgid "Take" msgstr "Ta" #: lib/RT/Queue.pm:130 msgid "Take tickets" msgstr "Ta saker" #: lib/RT/Transaction.pm:1063 lib/RT/Transaction.pm:1235 msgid "Taken" msgstr "Tatt" #: share/html/Install/DatabaseDetails.html:53 msgid "Tell us a little about how to find the database RT will be using" msgstr "Oppgi hvor databasen som RT skal bruke er plassert" #: share/html/Admin/Scrips/Elements/EditBasics:64 share/html/Elements/RT__Scrip/ColumnMap:93 msgid "Template" msgstr "Mal" #. ($id) #: share/html/Admin/Elements/EditTemplates:113 msgid "Template #%1 deleted" msgstr "Mal %1 ble slettet" #: lib/RT/Scrip.pm:170 msgid "Template '%1' is not global" msgstr "" #: lib/RT/Scrip.pm:172 msgid "Template '%1' is not global nor queue specific" msgstr "" #. ($args{'Template'}) #. ($value) #: lib/RT/Scrip.pm:167 lib/RT/Scrip.pm:844 msgid "Template '%1' not found" msgstr "Fant ikke malen «%1»" #: lib/RT/Template.pm:845 msgid "Template compiles" msgstr "Mal kompileres" #: lib/RT/Template.pm:812 msgid "Template does not include Perl code" msgstr "Mal inkluderer ikke Perl-kode" #: lib/RT/Template.pm:487 msgid "Template is empty" msgstr "Malen er tom" #: lib/RT/Template.pm:322 msgid "Template is in use" msgstr "" #: lib/RT/Scrip.pm:156 lib/RT/Scrip.pm:839 msgid "Template is mandatory argument" msgstr "Mal er et obligatorisk argument" #: lib/RT/Template.pm:467 msgid "Template parsed" msgstr "Mal tolket" #: lib/RT/Template.pm:567 msgid "Template parsing error" msgstr "Feil ved maltolking" #. ($Text::Template::ERROR) #: lib/RT/Template.pm:553 lib/RT/Template.pm:587 lib/RT/Template.pm:823 msgid "Template parsing error: %1" msgstr "Analyseringsfeil pÃ¥ mal: %1" #. ($msg) #: share/html/Admin/Scrips/Objects.html:137 msgid "Template: %1" msgstr "" #: share/html/Elements/Tabs:151 share/html/Elements/Tabs:342 msgid "Templates" msgstr "Maler" #. ($QueueObj->Name) #: share/html/Admin/Queues/Templates.html:60 msgid "Templates for queue %1" msgstr "Maler for kø %1" #: share/html/Admin/Tools/Theme.html:95 msgid "Text" msgstr "Tekst" #: share/html/Elements/ShowTransactionAttachments:154 msgid "Text file is not shown because it is disabled in preferences." msgstr "Tekstfila blir ikke vist, da denne visingen er slÃ¥tt av i innstillingene." #: lib/RT/Record.pm:1004 msgid "That is already the current value" msgstr "Verdien ble ikke endret" #: lib/RT/CustomField.pm:1795 share/html/Elements/ValidateCustomFields:120 msgid "That is not a unique value" msgstr "" #: lib/RT/CustomField.pm:696 msgid "That is not a value for this custom field" msgstr "Dette er ikke en gyldig verdi for fleksifeltet" #: lib/RT/Record/Role/Roles.pm:468 lib/RT/Record/Role/Roles.pm:541 msgid "That role is invalid for this object" msgstr "" #: lib/RT/Ticket.pm:2434 msgid "That ticket has unresolved dependencies" msgstr "Saken har uløste avhengigheter" #: lib/RT/Action/CreateTickets.pm:434 lib/RT/Ticket.pm:2347 msgid "That user already owns that ticket" msgstr "Brukeren eier allerede saken" #: lib/RT/Ticket.pm:2337 msgid "That user does not exist" msgstr "Brukeren finnes ikke" #: lib/RT/User.pm:344 msgid "That user is already privileged" msgstr "Brukeren har alt utvidede rettigheter" #: lib/RT/User.pm:370 msgid "That user is already unprivileged" msgstr "Brukeren har alt bare enkle rettigheter" #: lib/RT/User.pm:363 msgid "That user is now privileged" msgstr "Brukeren har nÃ¥ utvidede rettigheter" #: lib/RT/User.pm:389 msgid "That user is now unprivileged" msgstr "Brukeren har nÃ¥ bare enkle rettigheter" #: lib/RT/Ticket.pm:2342 msgid "That user may not own tickets in that queue" msgstr "Brukeren kan ikke eie saker i denne køen" #: lib/RT/Link.pm:262 msgid "That's not a numerical id" msgstr "Dette er ikke en numerisk ID" # «Detaljer» er bedre oversettelse enn «Grunnleggende» o.l. i denne sammenhengen. #: share/html/Articles/Article/Display.html:51 share/html/SelfService/Display.html:58 share/html/Ticket/Create.html:266 share/html/Ticket/Elements/ShowSummary:52 share/html/m/ticket/create:337 share/html/m/ticket/show:209 msgid "The Basics" msgstr "Detaljer" #: lib/RT/Ticket.pm:103 msgid "The CC of a ticket" msgstr "Kopimottaker til en sak" #. ($Value) #: lib/RT/Article.pm:577 msgid "The Class of the Article identified by %1 is not applied to the current Queue" msgstr "Kategorien til artikkelen identifisert av %1 er ikke brukt pÃ¥ den gjeldende køen" #: lib/RT/Installer.pm:114 msgid "The DBA's database password" msgstr "Databasepassord til DBA" #: lib/RT/Ticket.pm:104 msgid "The administrative CC of a ticket" msgstr "Administrativ kopimottaker for en sak" #: share/html/Ticket/ModifyPeople.html:63 msgid "The checked users may receive email related to this ticket depending on the action taken. Uncheck users to stop sending email to them about this ticket." msgstr "" #: etc/initialdata:29 etc/upgrade/4.3.10/content:10 msgid "The default catalog" msgstr "" #: lib/RT/Installer.pm:81 msgid "The domain name of your database server (like 'db.example.com')." msgstr "Domenenavnet til databasetjeneren (eksempel: «db.eksempel.no»)" #: bin/rt-crontool:362 msgid "The following command will find all active tickets in the queue 'general' and set their priority to 99 if they are overdue:" msgstr "Følgende kommando vil finne alle aktive saker i køen 'general' og sette deres prioritet til 99 hvis de er forfalte:" #: share/html/Dashboards/Elements/Deleted:53 msgid "The following queries have been deleted and each will be removed from the dashboard once its pane is updated." msgstr "Disse spørringene er slettet, og blir fjernet fra utforminga nÃ¥r panelet blir oppdatert" #: share/html/Dashboards/Elements/HiddenSearches:74 msgid "The following queries may not be visible to all users who can see this dashboard." msgstr "Disse spørringene er kanskje ikke synlige for alle brukerne som kan se utforminga" #: lib/RT/Crypt/GnuPG.pm:1722 msgid "The key has been disabled" msgstr "Nøkkelen er deaktivert" #: lib/RT/Crypt/GnuPG.pm:1728 msgid "The key has been revoked" msgstr "Nøkkelen er tilbakekalt" #: lib/RT/Crypt/GnuPG.pm:1733 msgid "The key has expired" msgstr "Nøkkelen er utløpt" #: lib/RT/Crypt/GnuPG.pm:1766 msgid "The key is fully trusted" msgstr "Nøkkelen er fullstendig tiltrodd" #: lib/RT/Crypt/GnuPG.pm:1771 msgid "The key is ultimately trusted" msgstr "Nøkkelen er ultimat tiltrodd" #: lib/RT/Record.pm:1007 msgid "The new value has been set." msgstr "Den nye verdien er lagret" #: lib/RT/Ticket.pm:101 msgid "The owner of a ticket" msgstr "Eieren av en sak" #: share/html/dhandler:50 msgid "The page you requested could not be found" msgstr "Fant ikke siden du ba om" #: lib/RT/Ticket.pm:102 msgid "The requestor of a ticket" msgstr "Innmelder av en sak" #. (RT::Installer->ConfigFile) #: share/html/Install/Finish.html:64 msgid "The settings you've chosen are stored in %1." msgstr "Innstillingene du har valgt er lagret i %1." #: share/html/Elements/Crypt/KeyIssues:53 msgid "The system is unable to sign outgoing email messages. This usually indicates that the passphrase was mis-set, or that GPG Agent is down. Please alert your system administrator immediately. The problem addresses are:" msgstr "Systemet kan ikke signere utgÃ¥ende e-poster. Dette tyder vanligvis pÃ¥ at passfrasen er feil, eller at GPG Agent ikke kjører. Meld fra til systemadministratoren med en gang. Problemadressene er:" #: lib/RT/Config.pm:221 share/html/Admin/Tools/Theme.html:49 share/html/Elements/Tabs:281 msgid "Theme" msgstr "Tema" #: lib/RT/Crypt.pm:719 msgid "There are several keys suitable for encryption." msgstr "Det finnes flere nøkler egnet for kryptering." #: share/html/Ticket/Elements/ShowUpdateStatus:50 msgid "There are unread messages on this ticket." msgstr "Det finnes uleste meldinger i denne saken." #: lib/RT/Crypt/GnuPG.pm:1761 msgid "There is marginal trust in this key" msgstr "Nøkkelen er marginalt tiltrodd" #. ($Group->Name) #: share/html/Admin/Groups/Modify.html:147 msgid "There is more than one group with the name '%1'. This may cause inconsistency in parts of the admin interface, and therefore it's recommended you rename the conflicting groups." msgstr "Det er mer en en gruppe med navnet '%1'. Dette kan skape inkonsekvens i deler av admingrensesnittet, og derfor er det anbefalt at du gir nytt navn til gruppene i konflikt." #: lib/RT/Crypt.pm:711 msgid "There is no key suitable for encryption." msgstr "Det finnes ingen nøkler egnet for kryptering." #. ($old_lifecycle->Name, $new_lifecycle->Name) #: lib/RT/Record/Role/Status.pm:278 msgid "There is no mapping for statuses between lifecycle %1 and %2. Contact your system administrator." msgstr "" #: lib/RT/Crypt.pm:715 msgid "There is one suitable key, but trust level is not set." msgstr "Det finnes én egnet nøkkel, men tiltro-nivÃ¥et er ikke definert for denne nøkkelen." #. ("".$m->interp->apply_escapes($msg, "h")."") #: share/html/Search/Results.html:59 msgid "There was an error parsing your search query: %1. Your RT admin can find more information in the error logs." msgstr "" #: share/html/Install/Basics.html:53 msgid "These configuration options cover some of the basics needed to get RT up and running. We need to know the name of your RT installation and the domain name where RT will live. You will also need to set a password for your default administrative user." msgstr "Disse innstillingene dekker det nødvendige for Ã¥ sette RT i drift. Du mÃ¥ velge et navn pÃ¥ RT-installasjonen, og oppgi domenenavnet til maskinen. Du mÃ¥ ogsÃ¥ velge et passord for standard administrativ bruker." #: lib/RT/CustomField.pm:335 lib/RT/CustomField.pm:815 msgid "This Custom Field can not have list of values" msgstr "Dette fleksifeltet kan ikke ha liste av verdier" #: lib/RT/Class.pm:360 msgid "This class does not apply to that object" msgstr "Denne kategorien gjelder ikke pÃ¥ det objektet" #: lib/RT/CustomField.pm:344 lib/RT/CustomField.pm:860 msgid "This custom field can not have a canonicalizer" msgstr "" #: lib/RT/CustomField.pm:1703 msgid "This custom field cannot be added to that object" msgstr "" #: lib/RT/CustomField.pm:1272 lib/RT/CustomField.pm:322 msgid "This custom field has no Render Types" msgstr "Dette fleksifeltet har ingen gjengivelsestyper" #: share/html/Admin/Tools/Configuration.html:52 msgid "This feature is only available to system administrators" msgstr "Denne funksjonen er bare tilgjengelig for systemadministratorer" #: share/html/Admin/Tools/Queries.html:55 share/html/Admin/Tools/Theme.html:236 msgid "This feature is only available to system administrators." msgstr "Denne funksjonen er bare tilgjengelig for systemadministratorer." #: share/html/Admin/Tools/Queries.html:67 msgid "This server process has recorded no SQL queries." msgstr "Serverprosessen registrert ingen SQL-spørringer." #: share/html/Ticket/Elements/ShowDependencyStatus:57 msgid "This ticket cannot be resolved until it is approved." msgstr "" #. ($depends) #: share/html/Ticket/Elements/ShowDependencyStatus:60 msgid "This ticket cannot be resolved until its %numerate(%1,dependency is,dependencies are) resolved." msgstr "" #: bin/rt-crontool:353 msgid "This tool allows the user to run arbitrary perl modules from within RT." msgstr "Dette verktøyet lar brukeren kjøre Perl-moduler fra RT." #: lib/RT/Transaction.pm:394 msgid "This transaction appears to have no content" msgstr "Denne transaksjonen ser ikke ut til Ã¥ ha noe innhold" #. ($Rows, $Description) #: share/html/Ticket/Elements/ShowRequestorTickets:57 msgid "This user's %1 highest priority %2 tickets" msgstr "Denne brukerens %1 høyest prioriterte %2 saker" #: share/html/User/Search.html:53 msgid "This will search for users by looking in the following fields:" msgstr "" #: share/html/Asset/Elements/CreateInCatalog:52 msgid "This will take you to a partially prefilled asset creation form." msgstr "" #: share/html/Asset/Elements/CreateLinkedTicket:106 msgid "This will take you to a partially prefilled ticket creation form." msgstr "" #: lib/RT/Date.pm:110 msgid "Thu" msgstr "to." #: share/html/Dashboards/Subscription.html:114 msgid "Thursday" msgstr "torsdag" #: lib/RT/Record.pm:992 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Elements/ShowReminders:53 msgid "Ticket" msgstr "Sak" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/ModifyAll.html:48 msgid "Ticket #%1 Jumbo update: %2" msgstr "Sak %1 storoppdatering: %2" #. ($id) #: share/html/Ticket/Graphs/index.html:117 msgid "Ticket #%1 relationships graph" msgstr "Koblingsdiagram for sak %1" #. ($link->BaseObj->Id, $link->BaseObj->Subject) #: share/html/Approvals/Elements/ShowDependency:69 msgid "Ticket #%1: %2" msgstr "Sak %1: %2" #. ($T::Tickets{$template_id}->Id) #. ($T::Tickets{$template_id}->id) #. ($ticket->Id) #: lib/RT/Action/CreateTickets.pm:1097 lib/RT/Action/CreateTickets.pm:1106 lib/RT/Action/CreateTickets.pm:334 lib/RT/Action/CreateTickets.pm:453 lib/RT/Action/CreateTickets.pm:465 msgid "Ticket %1" msgstr "Sak %1" #. ($self->Id, $QueueObj->Name) #: lib/RT/Ticket.pm:568 lib/RT/Ticket.pm:586 msgid "Ticket %1 created in queue '%2'" msgstr "Sak %1 opprettet i køen «%2»" #. ($Ticket->Id, $_) #. ($id, $msg) #: share/html/Search/Bulk.html:338 share/html/Tools/MyDay.html:90 share/html/Tools/MyDay.html:93 share/html/Tools/MyDay.html:99 msgid "Ticket %1: %2" msgstr "Sak %1: %2" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Ticket/History.html:48 msgid "Ticket History # %1 %2" msgstr "Saksoppdatering %1 %2" #: etc/initialdata:475 msgid "Ticket Resolved" msgstr "Sak løst" #: share/html/Elements/CollectionList:202 msgid "Ticket Search" msgstr "Sak-søk" #: lib/RT/CustomField.pm:2049 lib/RT/CustomField.pm:215 share/html/Admin/Global/CustomFields/index.html:89 share/html/Elements/Tabs:184 msgid "Ticket Transactions" msgstr "Sakstransaksjoner" #: share/html/Ticket/Update.html:65 msgid "Ticket and Transaction" msgstr "Sak og transaksjon" #: lib/RT/Config.pm:289 lib/RT/Config.pm:325 lib/RT/Config.pm:335 msgid "Ticket composition" msgstr "Sakskomposisjon" #: lib/RT/Tickets.pm:1900 msgid "Ticket content" msgstr "Saksinnhold" #: lib/RT/Tickets.pm:1945 msgid "Ticket content type" msgstr "Innholdstype i sak" #: lib/RT/Ticket.pm:424 lib/RT/Ticket.pm:437 lib/RT/Ticket.pm:449 lib/RT/Ticket.pm:576 msgid "Ticket could not be created due to an internal error" msgstr "Klarte ikke opprette sak, grunnet en intern feil" #: share/html/Ticket/Create.html:369 share/html/m/ticket/create:76 msgid "Ticket could not be loaded" msgstr "Klarte ikke laste inn sak" #: lib/RT/Report/Tickets.pm:206 msgid "Ticket count" msgstr "" #: lib/RT/Config.pm:414 lib/RT/Config.pm:424 lib/RT/Config.pm:480 lib/RT/Config.pm:496 lib/RT/Config.pm:505 msgid "Ticket display" msgstr "Saksvising" #: share/html/Elements/ShowLinks:81 msgid "Ticket in" msgstr "" #: share/html/Ticket/Display.html:73 msgid "Ticket metadata" msgstr "Saksinformasjon" #: etc/initialdata:450 msgid "Ticket status changed" msgstr "Saksstatus endret" #: share/html/Articles/Article/ExtractFromTicket.html:63 msgid "Ticket update" msgstr "Saksoppdatering" #. (ref $self) #: lib/RT/Search/FromSQL.pm:80 msgid "TicketSQL search module" msgstr "TicketSQL-søkemodul" #: lib/RT/CustomField.pm:2048 lib/RT/CustomField.pm:214 share/html/Admin/Global/CustomFields/index.html:83 share/html/Elements/Tabs:1202 share/html/Elements/Tabs:179 share/html/Elements/Tabs:351 share/html/Elements/Tabs:602 msgid "Tickets" msgstr "Saker" #. ($self->loc( $args{'TYPE'} ), $args{'BASE'},) #: lib/RT/Tickets.pm:2102 msgid "Tickets %1 %2" msgstr "Saker %1 %2" #. ($self->loc( $args{'TYPE'} ), $args{'TARGET'}) #: lib/RT/Tickets.pm:2059 msgid "Tickets %1 by %2" msgstr "Sak %1 av %2" #: share/html/m/_elements/menu:76 msgid "Tickets I own" msgstr "Saker jeg eier" #: share/html/Reports/CreatedByDates.html:93 msgid "Tickets created after" msgstr "" #: share/html/Reports/CreatedByDates.html:96 msgid "Tickets created before" msgstr "" #: share/html/Reports/ResolvedByDates.html:93 msgid "Tickets resolved after" msgstr "" #: share/html/Reports/ResolvedByDates.html:96 msgid "Tickets resolved before" msgstr "" #: share/html/Approvals/Elements/ShowDependency:50 msgid "Tickets which depend on this approval:" msgstr "Saker som er avhengige av denne godkjenningen:" #: lib/RT/Report/Tickets.pm:133 msgid "Time" msgstr "" #: share/html/Elements/RT__Ticket/ColumnMap:192 share/html/Search/Elements/PickBasics:179 share/html/Ticket/Create.html:280 share/html/m/ticket/create:353 msgid "Time Estimated" msgstr "Estimert tidsbruk" #: lib/RT/Tickets.pm:1875 share/html/Elements/RT__Ticket/ColumnMap:187 share/html/Search/Elements/PickBasics:180 share/html/Ticket/Create.html:290 share/html/m/ticket/create:365 msgid "Time Left" msgstr "Tid igjen" #: share/html/Elements/RT__Transaction/ColumnMap:85 msgid "Time Taken" msgstr "" #: lib/RT/Tickets.pm:1852 share/html/Elements/RT__Ticket/ColumnMap:182 share/html/Search/Elements/PickBasics:178 share/html/Ticket/Create.html:285 share/html/m/ticket/create:359 msgid "Time Worked" msgstr "Tid arbeidet" #: share/html/Helpers/TicketTimer:224 msgid "Time estimated" msgstr "" #: share/html/Elements/Footer:54 msgid "Time to display" msgstr "Tid brukt til Ã¥ generere siden" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:121 share/html/Search/Elements/BuildFormatString:102 msgid "TimeEstimated" msgstr "TidEstimert" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:119 share/html/Search/Elements/BuildFormatString:102 msgid "TimeLeft" msgstr "TidIgjen" #: lib/RT/Graph/Tickets.pm:177 lib/RT/Tickets.pm:120 share/html/Search/Elements/BuildFormatString:102 msgid "TimeWorked" msgstr "TidArbeidet" #: share/html/Search/Elements/BuildFormatString:102 msgid "Timer" msgstr "" #. ($Ticket->Id, $Ticket->Subject) #: share/html/Helpers/TicketTimer:63 msgid "Timer for #%1: %2" msgstr "" #: lib/RT/Installer.pm:189 lib/RT/User.pm:102 share/html/Admin/Users/Modify.html:96 share/html/Prefs/AboutMe.html:80 share/html/SelfService/Prefs.html:63 msgid "Timezone" msgstr "Tidssone" #: share/html/Admin/Articles/Classes/Modify.html:101 share/html/Search/Elements/EditFormat:110 msgid "Title" msgstr "Tittel" #: share/html/Ticket/Forward.html:68 msgid "To" msgstr "Til" #. ('sales@bestpractical.com') #: share/html/Elements/Footer:59 msgid "To inquire about support, training, custom development or licensing, please contact %1." msgstr "Ta kontakt med %1 for forespørsler om
    opplæring, brukerstøtte, systemtilpassing eller lisensvilkår." #. ($count) #: share/html/Admin/Tools/Queries.html:86 msgid "Toggle %quant(%1,query,queries)" msgstr "" #: share/html/Elements/ShortcutHelp:109 msgid "Toggle highlighted ticket's checkbox" msgstr "" #. () #: share/html/Admin/Tools/Queries.html:130 msgid "Toggle stack trace" msgstr "" #: lib/RT/Graph/Tickets.pm:179 lib/RT/Report/Tickets.pm:82 lib/RT/Tickets.pm:133 share/html/Elements/RT__Ticket/ColumnMap:206 share/html/Elements/RT__Ticket/ColumnMap:239 share/html/Search/Elements/BuildFormatString:102 msgid "Told" msgstr "Varslet" #: share/html/Search/Elements/BuildFormatString:102 msgid "ToldRelative" msgstr "VarsletRelativ" #: share/html/Elements/Tabs:271 share/html/Elements/Tabs:666 share/html/Tools/index.html:48 msgid "Tools" msgstr "Verktøy" #: share/html/Admin/Articles/Elements/Topics:56 msgid "Topic Name" msgstr "Emnenavn" #: lib/RT/Article.pm:399 msgid "Topic membership added" msgstr "Emnemedlemskap lagt til" #: lib/RT/Article.pm:434 msgid "Topic membership removed" msgstr "Emnemedlemskap fjernet" #: share/html/Admin/Articles/Elements/Topics:135 share/html/Admin/Articles/Elements/Topics:147 share/html/Admin/Articles/Elements/Topics:169 msgid "Topic not found" msgstr "Emne ikke funnet" #: share/html/Articles/Article/Display.html:86 share/html/Articles/Article/Elements/EditTopics:50 share/html/Articles/Article/Elements/ShowSearchCriteria:132 share/html/Articles/Article/Elements/ShowTopics:50 share/html/Elements/RT__Article/ColumnMap:80 share/html/Elements/Tabs:265 share/html/Elements/Tabs:529 share/html/Elements/Tabs:655 msgid "Topics" msgstr "Emner" #: lib/RT/Report/Tickets.pm:997 msgid "Total" msgstr "Totalt" #: lib/RT/Report/Tickets.pm:233 msgid "Total Created-LastUpdated" msgstr "" #: lib/RT/Report/Tickets.pm:228 msgid "Total Created-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:223 msgid "Total Created-Started" msgstr "" #: lib/RT/Report/Tickets.pm:243 msgid "Total Due-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:248 msgid "Total Started-Resolved" msgstr "" #: lib/RT/Report/Tickets.pm:238 msgid "Total Starts-Started" msgstr "" #: share/html/Ticket/Elements/ShowBasics:80 msgid "Total Time Worked" msgstr "" #: lib/RT/Report/Tickets.pm:213 msgid "Total time estimated" msgstr "" #: lib/RT/Report/Tickets.pm:218 msgid "Total time left" msgstr "" #: lib/RT/Report/Tickets.pm:208 msgid "Total time worked" msgstr "" #: etc/initialdata:317 msgid "Transaction" msgstr "Transaksjon" #. ($self->Data) #: lib/RT/Transaction.pm:1284 msgid "Transaction %1 purged" msgstr "Transaksjon %1 slettet" #: lib/RT/Transaction.pm:175 msgid "Transaction Created" msgstr "Transaksjon opprettet" #: share/html/Admin/Queues/DefaultValues.html:126 msgid "Transaction Custom Fields" msgstr "Fleksifelt for transaksjon" #: etc/initialdata:336 etc/upgrade/4.1.9/content:34 msgid "Transaction in HTML" msgstr "" #: lib/RT/Transaction.pm:135 msgid "Transaction->Create couldn't, as you didn't specify an object type and id" msgstr "Klarte ikke utføre «Transaction->Create», siden du ikke oppgav objekttype og ID" #: lib/RT/Tickets.pm:158 msgid "TransactionCF" msgstr "" #: lib/RT/Tickets.pm:144 msgid "TransactionDate" msgstr "Transaksjonsdato" #: share/html/Elements/Tabs:354 msgid "Transactions" msgstr "" #: lib/RT/Transaction.pm:1410 msgid "Transactions are immutable" msgstr "Transaksjoner kan ikke forandres" #: share/html/Admin/Elements/ShowKeyInfo:64 msgid "Trust" msgstr "Tiltro" #: share/html/Admin/Tools/Theme.html:112 msgid "Try" msgstr "" #: share/html/Elements/JavascriptConfig:74 msgid "Try again" msgstr "" #: lib/RT/Date.pm:108 msgid "Tue" msgstr "ti." #: share/html/Dashboards/Subscription.html:112 msgid "Tuesday" msgstr "tirsdag" #: lib/RT/Tickets.pm:157 msgid "TxnCF" msgstr "" #: lib/RT/Tickets.pm:110 lib/RT/Tickets.pm:1707 share/html/Admin/CustomFields/Modify.html:69 share/html/Admin/Elements/EditCustomField:67 share/html/Admin/Elements/ModifyTemplate:58 share/html/Elements/RT__Ticket/ColumnMap:176 share/html/Elements/RT__Transaction/ColumnMap:65 share/html/Search/Elements/BuildFormatString:102 share/html/Ticket/Elements/AddWatchers:56 share/html/Ticket/Elements/AddWatchers:73 share/html/Ticket/Elements/AddWatchers:89 msgid "Type" msgstr "" #: share/html/Articles/Article/Elements/LinkEntryInstructions:48 msgid "Type a: before article numbers and t: before ticket numbers." msgstr "Skriv a: foran artikkelnumre og t: foran saksnumre." #. ($self->FriendlyTypeComposite( $old ), $self->FriendlyTypeComposite( $composite ),) #: lib/RT/CustomField.pm:1222 msgid "Type changed from '%1' to '%2'" msgstr "Type endret fra «%1» til «%2»" #: share/html/Admin/Elements/EditScrips:71 msgid "Un-apply selected scrips" msgstr "" #. ($self->loc($type), $msg) #: lib/RT/Record/Role/Links.pm:128 msgid "Unable to add %1 link: %2" msgstr "" #. ($cf->Name, $msg) #: lib/RT/Class.pm:388 lib/RT/Class.pm:392 msgid "Unable to add Subject Override: %1 %2" msgstr "" #: lib/RT/Article.pm:402 msgid "Unable to add topic membership" msgstr "Kunne ikke legge til emnemedlemskap" #. ($t->TopicObj->Name) #: lib/RT/Article.pm:430 msgid "Unable to delete topic membership in %1" msgstr "Kunne ikke slette emnemedlemskap i %1" #: share/html/Search/Elements/EditSearches:292 msgid "Unable to determine object type or id" msgstr "Klarte ikke fastsette type eller ID til objekt" #. ($id) #: lib/RT/Interface/Web.pm:4119 msgid "Unable to find asset #%1" msgstr "" #. ($id) #: lib/RT/Interface/Web.pm:4103 msgid "Unable to find catalog %1" msgstr "" #. ($Catalog) #: share/html/Asset/Create.html:115 msgid "Unable to find catalog '%1'" msgstr "" #: share/html/Articles/Article/Edit.html:193 msgid "Unable to load article" msgstr "Kunne ikke laste artikkel" #: share/html/Elements/JavascriptConfig:69 msgid "Unable to open shortcut help. Reason:" msgstr "" #. ($msg) #: share/html/Admin/Tools/Theme.html:362 msgid "Unable to set UserCSS: %1" msgstr "Kunne ikke sette BrukerCSS: %1" #. ($msg) #: share/html/Admin/Tools/Theme.html:321 msgid "Unable to set UserLogo: %1" msgstr "Kunne ikke sette BrukerLogo: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:280 msgid "Unable to set privacy id: %1" msgstr "Kunne ikke sette personvernid: %1" #. (loc('Permission Denied')) #: share/html/Search/Elements/EditSearches:289 msgid "Unable to set privacy object or id: %1" msgstr "Kunne ikke sette personvernobjekt eller -id: %1" #. ($msg) #: share/html/Search/Elements/EditSearches:272 msgid "Unable to set privacy object: %1" msgstr "Kunne ikke sette personvernobjekt: %1" #: share/html/Helpers/TicketTimer:156 msgid "Unable to submit time. Please add it to the ticket manually. Reason:" msgstr "" #. ($id) #: share/html/Dashboards/Subscription.html:346 msgid "Unable to subscribe to dashboard %1: Permission Denied" msgstr "" #: share/html/Errors/WebRemoteUser/NoInternalUser:48 share/html/Errors/WebRemoteUser/NoRemoteUser:48 msgid "Unauthorized" msgstr "" #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,) #: share/html/Helpers/PreviewScrips:85 share/html/Helpers/ShowSimplifiedRecipients:140 msgid "Uncheck boxes to disable notifications to the listed recipients for this transaction only; persistent squelching is managed on the People page." msgstr "Ta vekk hake i bokser for å deaktivere varslinger til de opplistede mottakerne for bare denne transaksjonen; vedvarende deaktivering håndteres på brukersiden." #: etc/RT_Config.pm:3351 etc/RT_Config.pm:3440 msgid "Undelete" msgstr "Gjenopprett" #: share/html/Errors/WebRemoteUser/UserAutocreateDefaultsOnLogin:49 msgid "Unfortunately, RT couldn't automatically setup an account for you. Your RT administator will find more information in the logs." msgstr "" #: share/html/Admin/Users/Modify.html:87 share/html/Elements/RT__User/ColumnMap:131 msgid "Unix login" msgstr "Unix-brukernavn" #: lib/RT/Crypt/GnuPG.pm:1745 lib/RT/Crypt/GnuPG.pm:1750 msgid "Unknown (no trust value assigned)" msgstr "Ukjent (ingen tiltroverdi tildelt)" #: lib/RT/Crypt/GnuPG.pm:1755 msgid "Unknown (this value is new to the system)" msgstr "Ukjent (verdien er ny for dette systemet)" #. ($ContentEncoding) #: lib/RT/Record.pm:870 msgid "Unknown ContentEncoding %1" msgstr "Ukjent tegnkoding: %1" #. ($key) #: lib/RT/Interface/Web/QueryBuilder/Tree.pm:272 msgid "Unknown field: %1" msgstr "Ukjent felt: %1" #. ($status_str) #: share/html/Search/Simple.html:81 msgid "Unless you specify a specific status, only tickets with active statuses (%1) are searched." msgstr "Med mindre du spesifiserer en spesifikk status, blir bare saker med aktive statuser (%1) søkt på." #: share/html/Ticket/Graphs/Elements/EditGraphProperties:65 msgid "Unlimit" msgstr "Ubegrenset" #: share/html/Elements/SelectResultsPerPage:60 msgid "Unlimited" msgstr "Ubegrenset" #: share/html/Elements/RT__Dashboard/ColumnMap:58 msgid "Unnamed dashboard" msgstr "Utforming uten navn" #: share/html/Articles/Article/Elements/SelectSavedSearches:60 share/html/Elements/RT__SavedSearch/ColumnMap:58 share/html/Search/Elements/SelectSearchesForObjects:63 msgid "Unnamed search" msgstr "Navnløst søk" #: etc/initialdata:894 msgid "Unowned Tickets" msgstr "Saker uten eier" #: share/html/m/_elements/menu:79 msgid "Unowned tickets" msgstr "Saker uten eier" #: lib/RT/Handle.pm:744 msgid "Unprivileged" msgstr "Uten utvidede rettigheter" #: share/html/Admin/Elements/EditCustomFields:71 msgid "Unselected Custom Fields" msgstr "Ikke-valgte fleksifelt" #: share/html/Admin/Articles/Classes/Objects.html:82 msgid "Unselected Queues" msgstr "Ikke-valgte køer" #: share/html/Admin/CustomFields/Objects.html:84 share/html/Admin/CustomRoles/Objects.html:74 share/html/Admin/Scrips/Objects.html:92 msgid "Unselected objects" msgstr "Ikke-valgte objekt" #: lib/RT/User.pm:1941 msgid "Unset private key" msgstr "Fjern privatnøkkel" #: lib/RT/Transaction.pm:1059 lib/RT/Transaction.pm:1247 msgid "Untaken" msgstr "Ikke tatt" #: share/html/Admin/Elements/EditScrips:72 share/html/Admin/Elements/EditScrips:96 share/html/Admin/Elements/MembershipsPage:83 share/html/Articles/Article/Elements/ShowSavedSearches:58 share/html/Articles/Elements/NewestArticles:62 share/html/Articles/Elements/UpdatedArticles:63 share/html/Asset/Search/Bulk.html:173 share/html/Asset/Search/Bulk.html:71 share/html/Elements/RT__Ticket/ColumnMap:313 share/html/Search/Bulk.html:217 share/html/Search/Bulk.html:74 share/html/Search/Elements/EditSearches:71 share/html/Widgets/SelectionBox:201 msgid "Update" msgstr "Oppdater" #: share/html/Search/Chart.html:220 msgid "Update Chart" msgstr "Oppdater diagram" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:122 msgid "Update Graph" msgstr "Oppdater diagram" #: share/html/Elements/Tabs:593 msgid "Update This Menu" msgstr "" #: share/html/SelfService/Update.html:96 share/html/Ticket/Update.html:184 share/html/m/ticket/reply:146 msgid "Update Ticket" msgstr "Oppdater sak" #: share/html/Search/Bulk.html:154 share/html/Ticket/ModifyAll.html:97 share/html/Ticket/Update.html:74 share/html/m/ticket/reply:89 msgid "Update Type" msgstr "Oppdateringstype" #: share/html/Search/Build.html:106 msgid "Update format and Search" msgstr "Oppdater format og søk" #: share/html/Search/Bulk.html:233 msgid "Update multiple tickets" msgstr "Oppdater flere saker" #: lib/RT/Action/CreateTickets.pm:474 lib/RT/Interface/Web.pm:2419 msgid "Update not recorded." msgstr "Oppdatering ikke loggført." #: share/html/Ticket/ModifyAll.html:94 msgid "Update ticket" msgstr "Oppdater sak" #. ($Ticket->id) #. ($t->id) #: share/html/SelfService/Update.html:107 share/html/SelfService/Update.html:49 share/html/m/ticket/reply:48 msgid "Update ticket #%1" msgstr "Oppdater sak %1" #. ($TicketObj->id, $TicketObj->Subject||'') #. ($t->id, $t->Subject) #: share/html/Ticket/Update.html:286 share/html/m/ticket/reply:174 msgid "Update ticket #%1 (%2)" msgstr "Oppdater sak %1 (%2)" #: lib/RT/Action/CreateTickets.pm:472 lib/RT/Interface/Web.pm:2419 msgid "Update type was neither correspondence nor comment." msgstr "Oppdateringstypen var verken svar eller kommentar." #: share/html/Search/Elements/BuildFormatString:102 msgid "UpdateStatus" msgstr "Oppdateringsstatus" #: lib/RT/CustomField.pm:2127 lib/RT/Tickets.pm:161 share/html/Articles/Article/Display.html:70 share/html/Articles/Article/Elements/EditBasics:78 share/html/Elements/SelectDateType:56 share/html/Ticket/Elements/ShowDates:93 share/html/m/ticket/show:386 msgid "Updated" msgstr "Oppdatert" #: share/html/Search/Elements/PickBasics:117 msgid "Updated by" msgstr "" #. ($desc) #: share/html/Search/Elements/EditSearches:294 msgid "Updated saved search \"%1\"" msgstr "Oppdatert lagret søk: %1" #: lib/RT/Tickets.pm:162 msgid "UpdatedBy" msgstr "" #. ($row->{'from'}, $row->{'to'}) #: share/html/Admin/Elements/UpgradeHistoryRow:56 msgid "Upgrade from %1 to %2" msgstr "" #: share/html/Admin/Tools/Theme.html:71 msgid "Upload" msgstr "Last opp" #: share/html/Admin/Tools/Theme.html:61 msgid "Upload a new logo" msgstr "Last opp en ny logo" #: lib/RT/CustomField.pm:140 msgid "Upload multiple files" msgstr "Last opp flere filer" #: lib/RT/CustomField.pm:130 msgid "Upload multiple images" msgstr "Last opp flere bilder" #: lib/RT/CustomField.pm:141 msgid "Upload one file" msgstr "Last opp enkeltfil" #: lib/RT/CustomField.pm:131 msgid "Upload one image" msgstr "Last opp enkeltbilde" #: lib/RT/CustomField.pm:142 msgid "Upload up to %quant(%1,file,files)" msgstr "Last opp opptil %1 filer" #: lib/RT/CustomField.pm:132 msgid "Upload up to %quant(%1,image,images)" msgstr "Last opp opptil %1 bilder" #: share/html/Ticket/Elements/AddAttachments:153 msgid "Uploading..." msgstr "" #: sbin/rt-email-digest:79 msgid "Usage:" msgstr "Bruk:" #: lib/RT/Config.pm:276 msgid "Use a two column layout for create and update forms?" msgstr "Bruk et tokolonneoppsett for å opprette og oppdatere skjema?" #. (loc($role), $addr) #: share/html/Asset/Elements/CreateLinkedTicket:101 msgid "Use asset %1 as ticket Requestor: %2" msgstr "" #: lib/RT/Config.pm:201 msgid "Use autocomplete to find owners?" msgstr "Bruk autofullfør for å finne eiere?" #: lib/RT/Config.pm:211 msgid "Use autocomplete to find queues?" msgstr "" #. ($DefaultValue? loc('Yes'): loc('No')) #: share/html/Widgets/Form/Boolean:68 msgid "Use default (%1)" msgstr "Systemverdi (%1)" #: share/html/Elements/Tabs:272 msgid "Use other RT administrative tools" msgstr "Bruk andre administrative verktøy for RT" #. (join ', ', map loc(ref($ValuesLabel{$_}) ? @{ $ValuesLabel{$_ }} : $ValuesLabel{$_} || $_), grep defined, @DefaultValue) #: share/html/Widgets/Form/Select:125 msgid "Use system default (%1)" msgstr "Systemverdi (%1)" #: share/html/Articles/Article/ExtractFromTicket.html:58 msgid "Use the dropdown menus to select which ticket updates you want to extract into a new article." msgstr "Bruk nedtrekksmenyene for å velge saksoppdateringer du vil trekke inn i en ny artikkel." #: share/html/Elements/RT__ScripAction/ColumnMap:72 share/html/Elements/RT__ScripCondition/ColumnMap:72 share/html/Elements/RT__Template/ColumnMap:81 msgid "Used by scrips" msgstr "" #: lib/RT/Record.pm:993 share/html/Admin/Elements/ShowKeyInfo:85 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Dashboards/Elements/SubscriptionRecipients:123 msgid "User" msgstr "Bruker" #. ($User->Name) #: share/html/User/Summary.html:77 msgid "User %1 is currently disabled." msgstr "" #. ($User->Name) #: share/html/User/Summary.html:74 msgid "User %1 is currently disabled. Edit the user and select \"Let this user access RT\" to enable." msgstr "" #: share/html/Admin/Elements/ShowKeyInfo:80 msgid "User (created - expire)" msgstr "Bruker (opprettet – utløper)" #: etc/initialdata:101 etc/initialdata:219 msgid "User Defined" msgstr "Tilpasset" #: share/html/Admin/Scrips/Elements/EditCustomCode:48 msgid "User Defined conditions and results" msgstr "" #: lib/RT/Interface/Web.pm:4030 msgid "User Groups" msgstr "" #: share/html/User/Elements/Portlets/ExtraInfo:48 msgid "User Information" msgstr "" #: share/html/Elements/Tabs:1158 share/html/Elements/Tabs:250 share/html/Elements/Tabs:358 share/html/Elements/Tabs:403 share/html/Elements/Tabs:419 share/html/Elements/Tabs:532 msgid "User Rights" msgstr "Brukerrettigheter" #: share/html/User/Search.html:48 msgid "User Search" msgstr "" #: share/html/Asset/Elements/ShowRoleMembers:62 share/html/Elements/Tabs:385 msgid "User Summary" msgstr "" #. ($cf->Name, ref $args{'Object'}, $args{'Object'}->id) #: lib/RT/Interface/Web.pm:3325 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3" msgstr "Brukeren ba om en ukjent oppdateringstype for fleksifeltet %1 for %2 objekt %3" #. ($msg) #: share/html/Admin/Users/Modify.html:268 msgid "User could not be created: %1" msgstr "Klarte ikke opprette brukeren: %1" #: lib/RT/User.pm:256 msgid "User created" msgstr "Bruker opprettet" #: lib/RT/User.pm:1264 msgid "User disabled" msgstr "Bruker deaktivert" #: lib/RT/User.pm:1266 msgid "User enabled" msgstr "Bruker aktivert" #: share/html/Admin/Users/Keys.html:56 msgid "User has empty email address" msgstr "Brukeren mangler e-postadresse" #: lib/RT/User.pm:536 lib/RT/User.pm:544 lib/RT/User.pm:556 msgid "User loaded" msgstr "Bruker lastet" #: share/html/Admin/Groups/index.html:121 msgid "User-defined groups" msgstr "Brukerdefinerte grupper" #. ($User->Format) #: share/html/User/Summary.html:48 msgid "User: %1" msgstr "" #: share/html/Admin/Users/Modify.html:67 share/html/Elements/Login:70 share/html/Ticket/Elements/AddWatchers:58 share/html/m/_elements/login:69 msgid "Username" msgstr "Brukernavn" #: lib/RT/Config.pm:186 msgid "Username format" msgstr "Format på brukernavn" #: lib/RT/CustomField.pm:2050 lib/RT/CustomField.pm:216 lib/RT/Interface/Web.pm:4088 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:91 share/html/Elements/Tabs:164 share/html/Elements/Tabs:305 share/html/Elements/Tabs:626 share/html/Elements/Tabs:67 share/html/Ticket/Elements/ShowBasics:86 msgid "Users" msgstr "Brukere" #: share/html/Admin/Users/index.html:108 msgid "Users matching search criteria" msgstr "Brukere i samsvar med søkekriterium" #. ($txn->id) #: bin/rt-crontool:165 msgid "Using transaction #%1..." msgstr "Bruker transaksjon %1 …" #: lib/RT/Tickets.pm:3241 msgid "Valid Query" msgstr "Gyldig spørring" #: share/html/Admin/CustomFields/Modify.html:128 msgid "Validation" msgstr "Formatkontroll" #: share/html/Admin/Articles/Classes/Modify.html:105 share/html/Admin/Tools/Configuration.html:114 share/html/Admin/Tools/Configuration.html:223 share/html/Admin/Tools/Configuration.html:311 share/html/Admin/Tools/Configuration.html:62 msgid "Value" msgstr "Verdi" #: share/html/Admin/CustomFields/Modify.html:191 share/html/Admin/Elements/EditCustomField:81 msgid "Values" msgstr "Verdier" #: share/html/Admin/Tools/Configuration.html:113 share/html/Admin/Tools/Configuration.html:310 msgid "Variable" msgstr "Variabel" #: share/html/Admin/Tools/Configuration.html:249 share/html/Admin/Tools/Configuration.html:265 msgid "Version" msgstr "Versjon" #: lib/RT/Queue.pm:113 msgid "View Scrip templates" msgstr "Vis utløsermaler" #: lib/RT/Queue.pm:116 msgid "View Scrips" msgstr "Vis utløsere" #: lib/RT/Catalog.pm:86 lib/RT/Class.pm:91 lib/RT/Queue.pm:108 msgid "View custom field values" msgstr "Vis fleksifeltverdier" #: lib/RT/CustomField.pm:226 msgid "View custom fields" msgstr "Vis fleksifelt" #: lib/RT/Queue.pm:120 msgid "View exact outgoing email messages and their recipients" msgstr "Vis eksakt utgående e-postmeldinger og mottakerne" #: lib/RT/Group.pm:94 msgid "View group" msgstr "Vis gruppe" #: lib/RT/Group.pm:95 msgid "View group dashboards" msgstr "Vis gruppeutforminger" #: share/html/Elements/ShortcutHelp:96 msgid "View highlighted ticket" msgstr "" #: lib/RT/Dashboard.pm:85 msgid "View personal dashboards" msgstr "Vis personlige utforminger" #: lib/RT/Queue.pm:103 msgid "View queue" msgstr "Vis kø" #: lib/RT/Group.pm:93 msgid "View saved searches" msgstr "Vis lagrede søk" #: lib/RT/Dashboard.pm:80 msgid "View system dashboards" msgstr "Vis systemutforminger" #: lib/RT/Queue.pm:119 msgid "View ticket private commentary" msgstr "Vis private sakskommentarer" #: lib/RT/Queue.pm:118 msgid "View ticket summaries" msgstr "Vis sakssammendrag" #: lib/RT/Date.pm:118 msgid "W3CDTF" msgstr "" #: share/html/Articles/Article/Search.html:196 msgid "WARNING: Saving search to user-level privacy" msgstr "ADVARSEL: Lagrer søk til brukernivå-personvern" #: lib/RT/Config.pm:303 msgid "WYSIWYG composer height" msgstr "Høyde på visuelt skrivefelt" #: lib/RT/Config.pm:285 msgid "WYSIWYG message composer" msgstr "Visuelt skrivefelt" #: lib/RT/Config.pm:294 msgid "WYSIWYG use browser right-click menu" msgstr "" #: share/html/Elements/CryptStatus:187 msgid "Warning! This is NOT signed!" msgstr "Advarsel: Meldinga er ikke signert." #: share/html/Dashboards/Subscription.html:364 msgid "Warning: This dashboard has no recipients" msgstr "" #: share/html/Ticket/Elements/EditMerge:49 msgid "Warning: merging is a non-reversible action! Enter a single ticket number to be merged into." msgstr "" #: lib/RT/Report/Tickets.pm:75 lib/RT/Tickets.pm:149 msgid "Watcher" msgstr "Overvåker" #: lib/RT/Tickets.pm:167 msgid "WatcherGroup" msgstr "Overvåkergruppe" #: share/html/Elements/Tabs:340 msgid "Watchers" msgstr "Overvåkere" #: share/html/Install/DatabaseDetails.html:64 msgid "We are able to find your database and connect as the DBA. You can click on 'Customize Basics' to continue customizing RT." msgstr "Fant databasen, og kan koble til som databaseadministrator. Trykk «Tilpass detaljer» for å forsette å sette opp RT." #: lib/RT/CustomField.pm:2155 msgid "We can't currently render as a List when basing categories on another custom field. Please use another render type." msgstr "Vi kan for øyeblikket ikke gjengi som en liste når kategorier baseres på et annet fleksifelt. Vennligst bruk en annen gjengivelsestype." #: share/html/Install/DatabaseDetails.html:55 msgid "We need to know the name of the database RT will use and where to find it. We also need to know the username and password of the user RT should use. RT can create the database and user for you, which is why we ask for the username and password of a user with DBA privileges. During step 6 of the installation process we will use this information to create and initialize RT's database." msgstr "Du må oppgi navnet og plasseringen til databasen, samt brukernavnet og passordet til brukeren RT skal bruke. Du må oppgi brukernavn og passord til en bruker med administratortilgang, slik at RT kan opprette databasen og brukeren for deg automatisk. I steg 6 av installasjonen vert denne informasjonen brukt til å opprette og klargjøre RT-databasen." #: lib/RT/Installer.pm:216 msgid "Web port" msgstr "Port" #: lib/RT/Date.pm:109 msgid "Wed" msgstr "on." #: share/html/Dashboards/Subscription.html:113 msgid "Wednesday" msgstr "onsdag" #: lib/RT/Report/Tickets.pm:133 msgid "WeekOfYear" msgstr "" #: lib/RT/Dashboard/Mailer.pm:419 msgid "Weekly" msgstr "Ukentlig" #: lib/RT/Config.pm:599 msgid "Weekly digest" msgstr "Ukentlig sammendrag" #: share/html/Install/index.html:48 msgid "Welcome to RT!" msgstr "Velkommen til RT!" #: share/html/Tools/MyDay.html:76 msgid "What I did today" msgstr "Gjort i dag" #: share/html/Install/index.html:67 msgid "What is RT?" msgstr "Hva er RT?" #: lib/RT/Config.pm:485 msgid "What tickets to display in the \"More about requestor\" box" msgstr "" #: lib/RT/Installer.pm:160 msgid "When RT can't handle an email message, where should it be forwarded?" msgstr "Hvor skal e-postmeldinger som RT ikke kan håndtere videresendes?" #: share/html/Install/Global.html:54 msgid "When RT sends an email it sets the From: and Reply-To: headers so users can add to the conversation by just hitting Reply in their mail client. It uses different addresses for Replies and Comments. These can be changed for each of your queues. These addresses will need to be configured to use the rt-mailgate program." msgstr "Feltene «From» og «Reply-To» i meldingshodet til e-postene blir automatisk fylt ut, slik at brukeren bare trenger å bruke svarfunksjonen i e-postprogrammet for å legge mer informasjon til saken. Systemet kan automatisk bruke forskjellige adresser for svar og for kommentarer, og forskjellige adresser for ulike køer. Adressene må settes opp til å bruke programmet rt-mailgate." #: etc/initialdata:248 etc/upgrade/4.3.9/content:7 msgid "When TimeWorked Change" msgstr "" #: etc/initialdata:132 msgid "When a ticket is created" msgstr "Når en sak blir opprettet" #: lib/RT/Approval/Rule/NewPending.pm:54 msgid "When an approval ticket is created, notify the Owner and AdminCc of the item awaiting their approval" msgstr "Varsle eieren og admin-kopimottakeren når det blir opprettet en ny godkjenningssak" #: etc/initialdata:137 msgid "When anything happens" msgstr "Når noe skjer" #: share/html/Admin/Articles/Classes/Modify.html:85 msgid "When inserting articles in this class into emails:" msgstr "" #: share/html/Install/DatabaseDetails.html:58 msgid "When you click on 'Check Database Connectivity' there may be a small delay while RT tries to connect to your database" msgstr "Det kan oppstå en liten pause når du trykker «Kontroller databasetilgang», siden RT prøver å koble til databasen." #: etc/initialdata:227 etc/upgrade/3.7.1/content:6 msgid "Whenever a ticket is closed" msgstr "Når en sak blir løst" #: etc/initialdata:157 etc/upgrade/4.0.3/content:15 msgid "Whenever a ticket is forwarded" msgstr "Når en sak blir videresendt" #: etc/initialdata:213 etc/upgrade/3.8.3/content:6 msgid "Whenever a ticket is rejected" msgstr "Når en sak blir avvist" #: etc/initialdata:232 etc/upgrade/3.7.1/content:11 msgid "Whenever a ticket is reopened" msgstr "Når en sak blir gjenåpnet" #: etc/initialdata:206 msgid "Whenever a ticket is resolved" msgstr "Når en sak blir løst" #: etc/initialdata:150 etc/upgrade/4.0.3/content:8 msgid "Whenever a ticket or transaction is forwarded" msgstr "Når en sak eller en transaksjon blir videresendt" #: etc/initialdata:192 msgid "Whenever a ticket's owner changes" msgstr "Når en sak får ny eier" #: etc/initialdata:185 etc/upgrade/3.1.17/content:19 msgid "Whenever a ticket's priority changes" msgstr "Når en sak får ny prioritet" #: etc/initialdata:200 msgid "Whenever a ticket's queue changes" msgstr "Når en sak flyttes til en ny kø" #: etc/initialdata:177 msgid "Whenever a ticket's status changes" msgstr "Når en sak får ny status" #: etc/initialdata:164 etc/upgrade/4.0.3/content:22 msgid "Whenever a transaction is forwarded" msgstr "Når en transaksjon blir videresendt" #: etc/initialdata:220 msgid "Whenever a user-defined condition occurs" msgstr "Når en brukerdefinert betingelse intreffer" #: etc/initialdata:171 msgid "Whenever comments come in" msgstr "Når en ny kommentar blir lagt til" #: etc/initialdata:143 msgid "Whenever correspondence comes in" msgstr "Når et svar blir lagt til" #: lib/RT/Installer.pm:182 msgid "Where to find your sendmail binary." msgstr "Adressen til «sendmail»-programfila." #: share/html/Search/Chart.html:184 msgid "Width" msgstr "" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:63 msgid "Wipeout" msgstr "Slett" #: share/html/Admin/Users/Modify.html:186 share/html/Prefs/AboutMe.html:93 msgid "Work" msgstr "Arbeid" #: share/html/Elements/RT__User/ColumnMap:86 msgid "Work Phone" msgstr "Jobbtelefon" #: share/html/Ticket/Elements/ShowBasics:73 share/html/Tools/MyDay.html:62 share/html/m/ticket/reply:81 share/html/m/ticket/show:230 msgid "Worked" msgstr "Arbeidet" #. (sprintf("%.2f", $duration / 60), $duration) #. (sprintf("%.2f", $minutes / 60), $minutes) #: lib/RT/Transaction.pm:1279 share/html/Helpers/AddTimeWorked:90 msgid "Worked %quant(%1,hour,hours) (%quant(%2,minute,minutes))" msgstr "" #. ($duration) #. ($minutes) #. (0) #: lib/RT/Transaction.pm:1277 share/html/Helpers/AddTimeWorked:64 share/html/Helpers/AddTimeWorked:87 msgid "Worked %quant(%1,minute,minutes)" msgstr "" #: lib/RT/Report/Tickets.pm:133 msgid "Year" msgstr "" #: share/html/Elements/RT__Template/ColumnMap:78 share/html/Widgets/Form/Boolean:78 msgid "Yes" msgstr "Ja" #. ($ARGS{User}) #: share/html/Errors/WebRemoteUser/NoInternalUser:49 msgid "You (%1) are not authorized to use RT." msgstr "" #. ($edit, $subscription) #: share/html/Dashboards/Render.html:96 msgid "You may edit this dashboard and your subscription to it in RT." msgstr "Du kan endre denne utformingen og ditt abonnement til den i RT." #: lib/RT/Ticket.pm:2317 lib/RT/Ticket.pm:2390 msgid "You already own this ticket" msgstr "Du eier allerede denne saken" #: share/html/Elements/Crypt/KeyIssues:64 msgid "You are going to encrypt outgoing email messages, but there are problems with recipients' public keys/certificates. You have to fix the problems with the keys/certificates, disable sending a message to the recipients with problems, or disable encryption." msgstr "" #: share/html/Elements/Crypt/KeyIssues:62 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key/certificate. You have to fix the problem with the key/certificate, disable sending a message to that recipient, or disable encryption." msgstr "" #: share/html/Errors/WebRemoteUser/NoRemoteUser:49 msgid "You are not authorized to use RT." msgstr "" #. (RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/$DisplayPath/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id) #: share/html/Ticket/Elements/ShowUpdateStatus:54 msgid "You can jump to the first unread message or jump to the first unread message and mark all messages as seen." msgstr "Du kan hoppe til den første uleste meldinga, eller hoppe til den første uleste meldinga og merke alle meldingene som leste." #: share/html/Admin/Tools/Theme.html:86 msgid "You can also click on the logo above to get colors!" msgstr "" #: share/html/Prefs/Search.html:54 msgid "You can also edit the predefined search itself" msgstr "Du kan også redigere søket" #: share/html/Admin/Scrips/Objects.html:110 msgid "You can change template if needed" msgstr "" #: share/html/Articles/Article/ExtractFromTicket.html:59 msgid "You can insert ticket content into any freeform, text or wiki field." msgstr "Du kan sette saksinnhold inn i ethvert friform-, tekst- eller wikifelt." #: lib/RT/User.pm:932 msgid "You can not set password." msgstr "Du kan ikke velge passord" #: lib/RT/Ticket.pm:2309 msgid "You can only reassign tickets that you own or that are unowned" msgstr "Du kan bare velge eier på saker som du eier, eller som mangler eier" #: lib/RT/Ticket.pm:2261 msgid "You can only steal a ticket owned by someone else" msgstr "" #: lib/RT/Ticket.pm:2305 msgid "You can only take tickets that are unowned" msgstr "Du kan bare ta saker som mangler eier" #. ($fulltext_keyword) #: share/html/Search/Simple.html:71 msgid "You can search for any word in full ticket history by typing %1word." msgstr "Du kan søke for ethvert ord i full sakshistorie ved å skrive %1ord." #. ($self->loc($old), $self->loc($new)) #: lib/RT/Record/Role/Status.pm:167 msgid "You can't change status from '%1' to '%2'." msgstr "Du kan ikke endre status fra '%1' til '%2'." #: share/html/Admin/Tools/Shredder/Elements/Error/NoRights:50 msgid "You don't have SuperUser right." msgstr "Du har ikke superbruker-rettigheter." #: share/html/Articles/Article/PreCreate.html:54 msgid "You don't have permission to create Articles in any Class" msgstr "" #. ($catalog->Name || $catalog->id) #: share/html/Asset/Create.html:119 msgid "You don't have permission to create assets in catalog %1." msgstr "" #: share/html/Articles/Article/Search.html:58 msgid "You don't have permission to view Articles in any Class" msgstr "" #: lib/RT/Interface/Web.pm:4122 msgid "You don't have permission to view this asset." msgstr "" #: lib/RT/Interface/Web.pm:4106 msgid "You don't have permission to view this catalog." msgstr "" #. ('SLA', '%ServiceAgreements', 'docs/customizing/sla.pod') #: share/html/Admin/Queues/Modify.html:240 msgid "You enabled %1 but %2 hasn't been configured in RT_SiteConfig.pm, please check '%3' for more help" msgstr "" #: share/html/NoAuth/Logout.html:55 msgid "You have been logged out of RT." msgstr "Du er nå logget ut av RT." #: share/html/Admin/Queues/Modify.html:153 msgid "You have enabled encryption support but have not set a comment address for this queue." msgstr "" #: share/html/Admin/Queues/Modify.html:143 msgid "You have enabled encryption support but have not set a correspondence address for this queue." msgstr "" #: share/html/SelfService/Display.html:114 msgid "You have no permission to create tickets in that queue." msgstr "Du har ikke tilgang til å opprette saker i køen." #: share/html/Elements/AddLinks:63 msgid "You may enter links to Articles as \"a:###\", where ### represents the number of the Article." msgstr "Du kan skrive inn linker til artikler som \"a:###\", hvor ### representerer nummeret til artikkelen." #: share/html/Install/Basics.html:85 msgid "You must enter an Administrative password" msgstr "Du må oppgi et administrativt passord" #: share/html/Admin/Elements/EditActions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with actions." msgstr "" #: share/html/Admin/Elements/EditConditions:80 msgid "You must have ShowScrips/ModifyScrips rights to work with conditions." msgstr "" #: share/html/Admin/Tools/Queries.html:65 msgid "You must set StatementLog to true to enable this query history page." msgstr "Du må sette StatementLog til true for å aktivere denne spørringshistoriesiden." #: share/html/Admin/Queues/Modify.html:154 msgid "You must set a comment address for this queue in order to configure a private key." msgstr "" #: share/html/Admin/Queues/Modify.html:144 msgid "You must set a correspondence address for this queue in order to configure a private key." msgstr "" #. ('root') #: share/html/Install/Finish.html:56 msgid "You should be taken directly to a login page. You'll be able to log in with username of %1 and the password you set earlier." msgstr "Du blir tatt til innloggingssiden. Du kan da logge inn med brukernavnet %1 og passordet du valgte tidligere." #: share/html/Install/DatabaseType.html:55 msgid "You should choose the database you or your local database administrator is most comfortable with." msgstr "Du bør velge databasesystemet som du eller systemadministratoren kjenner best." #: share/html/Errors/WebRemoteUser/Deauthorized:49 msgid "You were logged out of RT by your authentication system. This may be a temporary hiccup, in which case refreshing this page may help." msgstr "" #. (loc("Let's go!")) #: share/html/Install/index.html:79 msgid "You're seeing this screen because you started up an RT server without a working database. Most likely, this is the first time you're running RT. If you click \"%1\" below, RT will guide you through setting up your RT server and database." msgstr "Du ser denne teksten fordi du startet en RT-tjener uten en fungerende database. Mest sannsynlig er dette første gang du kjører RT. Trykk \"%1\" for å åpne en veiviser som hjelper deg å sette opp RT-tjeneren og tilhørende database." #: share/html/NoAuth/Logout.html:59 msgid "You're welcome to login again" msgstr "Velkommen tilbake" #: lib/RT/User.pm:1158 msgid "Your password is not set." msgstr "Passordet er ikke registrert" #. ($valid_image_types) #: share/html/Admin/Tools/Theme.html:65 msgid "Your system supports automatic color suggestions for: %1" msgstr "Ditt system støtter automatiske fargeforslag for: %1" #: lib/RT/Interface/Web.pm:828 msgid "Your username or password is incorrect" msgstr "Feil brukernavn eller passord" #: share/html/Admin/Users/Modify.html:163 share/html/Elements/RT__User/ColumnMap:121 share/html/Prefs/AboutMe.html:154 msgid "Zip" msgstr "Postnummer" #: share/html/Elements/RT__CustomField/ColumnMap:163 msgid "[Down]" msgstr "[Ned]" #: share/html/Elements/RT__CustomField/ColumnMap:160 msgid "[Up]" msgstr "[Opp]" #: lib/RT/Transaction.pm:1337 msgid "[a hidden catalog]" msgstr "" #: share/html/Search/Elements/EditSort:61 msgid "[none]" msgstr "[ingen]" #: share/html/Elements/JavascriptConfig:68 msgid "\b(re)?attach" msgstr "" #: lib/RT/Transaction.pm:1003 msgid "a custom field" msgstr "et fleksifelt" #: share/html/Ticket/Elements/ShowRequestorTicketsActive:48 msgid "active" msgstr "aktiv" #: share/html/Articles/Article/Elements/ShowSearchCriteria:100 share/html/Articles/Article/Elements/ShowSearchCriteria:108 share/html/Elements/SelectDateRelation:59 msgid "after" msgstr "etter" #: lib/RT/Config.pm:453 msgid "after clicking a link" msgstr "" #: lib/RT/Config.pm:452 msgid "after the rest of the page loads" msgstr "" #: etc/RT_Config.pm:3360 msgid "allocated" msgstr "" #: share/html/Articles/Article/Elements/ShowSearchCriteria:102 share/html/Articles/Article/Elements/ShowSearchCriteria:111 msgid "and before" msgstr "og før" #: share/html/Articles/Article/Elements/ShowSearchCriteria:59 share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:86 msgid "and not" msgstr "og ikke" #: share/html/Search/Chart.html:148 share/html/Search/Chart.html:156 share/html/Search/Chart.html:171 share/html/Search/Chart.html:174 msgid "and then" msgstr "" #: lib/RT/Config.pm:455 msgid "as you scroll" msgstr "" #: share/html/Search/Elements/SelectChartType:54 msgid "bar" msgstr "Stolpediagram" #: share/html/Elements/SelectDateRelation:57 msgid "before" msgstr "før" #: etc/initialdata:886 share/html/Admin/Global/MyRT.html:86 msgid "body" msgstr "hoved" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:54 msgid "bottom to top" msgstr "bunn til topp" #: share/html/Admin/Articles/Classes/Objects.html:63 msgid "check this box to apply this Class globally to all Queues." msgstr "hak av denne boksen for å bruke denne kategorien globalt på alle køer" #: share/html/Admin/CustomFields/Objects.html:64 msgid "check this box to apply this Custom Field to all objects." msgstr "Kryss av her for å bruke fleksifeltet på alle objektene." #: share/html/Admin/Scrips/Objects.html:72 msgid "check this box to apply this scrip to all objects." msgstr "" #: share/html/Admin/Articles/Classes/Objects.html:58 msgid "check this box to remove this Class globally and be able to choose specific Queues." msgstr "hak av denne boksen for å fjerne denne kategorien globalt og for å kunne velge spesifikke køer." #: share/html/Admin/CustomFields/Objects.html:59 msgid "check this box to remove this Custom Field from all objects and be able to choose specific objects." msgstr "Kryss av her for å fjerne fleksifeltet fra alle objektene, slik at du kan bruke det på enkeltobjekt." #: share/html/Admin/Scrips/Objects.html:60 msgid "check this box to remove this scrip from all objects and be able to choose specific objects." msgstr "" #: share/html/Ticket/Elements/UpdateCc:61 share/html/Ticket/Elements/UpdateCc:90 msgid "check to add" msgstr "kryss av for å legge til" #: share/html/Admin/Tools/Shredder/Elements/SelectObjects:57 msgid "click to check/uncheck all objects at once" msgstr "trykk for å merke eller fjerne merkingen for alle objektene" #: share/html/Admin/Tools/Configuration.html:83 msgid "core config" msgstr "Globalt oppsett" #: lib/RT/Interface/Web.pm:1677 lib/RT/Interface/Web.pm:1686 msgid "create a ticket" msgstr "opprett en sak" #. ($hour) #: share/html/Elements/RT__Dashboard/ColumnMap:96 msgid "daily at %1" msgstr "daglig klokka %1" #: share/html/Dashboards/Subscription.html:97 msgid "daily, on" msgstr "" #: lib/RT/Dashboard.pm:97 msgid "dashboard" msgstr "" #: share/html/Prefs/DashboardsInMenu.html:74 msgid "dashboards in menu" msgstr "" #: etc/RT_Config.pm:3315 etc/RT_Config.pm:3366 msgid "deleted" msgstr "slettet" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:58 share/html/Search/Elements/PickBasics:74 msgid "doesn't match" msgstr "inneholder ikke" #: share/html/Ticket/ShowEmailRecord.html:69 msgid "download" msgstr "last ned" #: share/html/Admin/Tools/Queries.html:91 msgid "duration" msgstr "varighet" #: lib/RT/User.pm:666 msgid "email delivery suspended" msgstr "" #: lib/RT/User.pm:658 msgid "email disabled for ticket" msgstr "" #: lib/RT/User.pm:270 msgid "empty name" msgstr "tomt navn" #: share/html/Elements/SelectEqualityOperator:61 msgid "equal to" msgstr "er lik" #: share/html/Search/Elements/EditQuery:93 msgid "error: can't move down" msgstr "Feil: kan ikke flytte ned" #: share/html/Search/Elements/EditQuery:110 share/html/Search/Elements/EditQuery:116 msgid "error: can't move left" msgstr "Feil: kan ikke flytte til venstre" #: share/html/Search/Elements/EditQuery:92 msgid "error: can't move up" msgstr "Feil: kan ikke flytte opp" #: share/html/Search/Elements/EditQuery:188 msgid "error: nothing to delete" msgstr "Feil: ingenting å slette" #: share/html/Search/Elements/EditQuery:102 share/html/Search/Elements/EditQuery:129 share/html/Search/Elements/EditQuery:150 msgid "error: nothing to move" msgstr "Feil: ingenting å flytte" #: share/html/Search/Elements/EditQuery:208 msgid "error: nothing to toggle" msgstr "Feil: ingenting å bytte mellom" #: share/html/Dashboards/Subscription.html:119 msgid "every" msgstr "hver" #: share/html/Admin/Tools/Shredder/index.html:169 msgid "executed plugin successfuly" msgstr "tillegget ble kjørt" #: share/html/Helpers/PreviewScrips:129 share/html/Helpers/ShowSimplifiedRecipients:130 msgid "explicit one-time Bcc" msgstr "" #: share/html/Helpers/PreviewScrips:126 share/html/Helpers/ShowSimplifiedRecipients:128 msgid "explicit one-time Cc" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1767 msgid "full" msgstr "fullstendig" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "greater than" msgstr "er større enn" #: share/html/Admin/Elements/EditRights:61 msgid "group" msgstr "gruppe" #. ($principal->Object->Name) #: lib/RT/Transaction.pm:856 msgid "group %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:116 msgid "group '%1'" msgstr "gruppe «%1»" #: share/html/Ticket/Elements/UpdateCc:146 msgid "hide suggestions" msgstr "" #: lib/RT/Date.pm:121 share/html/Elements/Tabs:1003 msgid "iCal" msgstr "" #: lib/RT/Tickets.pm:115 share/html/Admin/Tools/Shredder/Elements/Object/RT--Attachment:53 share/html/Admin/Tools/Shredder/Elements/Object/RT--Ticket:52 share/html/Admin/Tools/Shredder/Elements/Object/RT--User:52 share/html/Search/Elements/BuildFormatString:102 share/html/Search/Elements/PickBasics:56 msgid "id" msgstr "ID" #: lib/RT/Config.pm:454 msgid "immediately" msgstr "" #. ($Class->Name) #. ($class->Name) #: share/html/Articles/Article/PreCreate.html:59 share/html/Articles/Article/Search.html:62 msgid "in class %1" msgstr "i kategori %1" #: etc/RT_Config.pm:3361 msgid "in-use" msgstr "" #: share/html/Ticket/Elements/ShowRequestorTicketsInactive:48 msgid "inactive" msgstr "inaktiv" #. ($inc) #: share/html/Admin/Elements/EditRights:246 msgid "includes %1" msgstr "inkluderer %1" #: share/html/Admin/Tools/Queries.html:90 msgid "index" msgstr "indeks" #. ($due) #: lib/RT/Interface/Web.pm:3059 msgid "invalid due date: %1" msgstr "" #: share/html/Elements/SelectBoolean:55 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:59 share/html/Search/Elements/PickBasics:153 share/html/Search/Elements/PickCFs:82 msgid "is" msgstr "er lik" #: share/html/Elements/SelectBoolean:59 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectIPRelation:61 share/html/Elements/SelectMatch:60 share/html/Search/Elements/PickCFs:83 msgid "isn't" msgstr "er ulik" #: lib/RT/Crypt/GnuPG.pm:1723 msgid "key disabled" msgstr "nøkkel deaktivert" #: lib/RT/Crypt/GnuPG.pm:1734 msgid "key expired" msgstr "nøkkel utløpt" #: lib/RT/Crypt/GnuPG.pm:1729 msgid "key revoked" msgstr "nøkkel tilbakekalt" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:52 msgid "left to right" msgstr "venstre til høyre" #: share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectEqualityOperator:61 share/html/Elements/SelectIPRelation:61 msgid "less than" msgstr "er mindre enn" #: lib/RT/Crypt/GnuPG.pm:1762 msgid "marginal" msgstr "marginalt" #: share/html/Articles/Article/Elements/ShowSearchCriteria:64 share/html/Articles/Article/Elements/ShowSearchCriteria:68 share/html/Articles/Article/Elements/ShowSearchCriteria:74 share/html/Articles/Article/Elements/ShowSearchCriteria:79 share/html/Elements/SelectCustomFieldOperator:61 share/html/Elements/SelectMatch:57 share/html/Search/Elements/PickBasics:73 msgid "matches" msgstr "inneholder" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:64 msgid "maximum depth" msgstr "Maksdybde" #: share/html/Tools/MyDay.html:62 msgid "minutes" msgstr "minutt" #: lib/RT/Interface/Web.pm:1679 msgid "modify RT's configuration" msgstr "endre RT sin konfigurasjon" #: lib/RT/Interface/Web.pm:1682 msgid "modify a dashboard" msgstr "endre en utforming" #: lib/RT/Interface/Web.pm:1685 msgid "modify or access a search" msgstr "endre eller ha tilgang til et søk" #: lib/RT/Interface/Web.pm:1684 msgid "modify your preferences" msgstr "endre dine innstillinger" #: share/html/Dashboards/Subscription.html:131 msgid "monthly" msgstr "månedlig" #. ($Subscription->SubValue('Dom'), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:93 msgid "monthly (day %1) at %2" msgstr "månedlig (dag %1) klokka %2" #: share/html/Admin/Elements/ShowKeyInfo:72 share/html/Admin/Elements/ShowKeyInfo:75 share/html/Admin/Elements/ShowKeyInfo:82 share/html/Admin/Elements/ShowKeyInfo:83 share/html/Dashboards/Subscription.html:141 msgid "never" msgstr "aldri" #: etc/RT_Config.pm:3313 etc/RT_Config.pm:3357 msgid "new" msgstr "ny" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "no" msgstr "nei" #: lib/RT/User.pm:656 msgid "no email address set" msgstr "" #: lib/RT/Crypt/GnuPG.pm:1739 share/html/Admin/Elements/EditQueueWatchers:50 share/html/Dashboards/Subscription.html:73 share/html/Ticket/Elements/EditWatchers:51 msgid "none" msgstr "ingen" #: share/html/Asset/Elements/AssetSearchBasics:62 share/html/Asset/Elements/AssetSearchBasics:66 share/html/Asset/Elements/AssetSearchBasics:79 share/html/Asset/Elements/AssetSearchCFs:63 share/html/Asset/Elements/AssetSearchPeople:57 share/html/Asset/Elements/AssetSearchPeople:75 msgid "not" msgstr "" #: share/html/Elements/SelectEqualityOperator:61 msgid "not equal to" msgstr "er ulik" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:84 msgid "nothing" msgstr "ingenting" #: share/html/Admin/Tools/Shredder/index.html:157 msgid "objects were successfuly removed" msgstr "objektene ble fjernet" #: share/html/Dashboards/Subscription.html:109 share/html/Elements/SelectDateRelation:58 msgid "on" msgstr "på" #: share/html/Dashboards/Subscription.html:131 msgid "on day" msgstr "på dag" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "one" msgstr "én" #: etc/RT_Config.pm:3314 share/html/SelfService/Elements/MyRequests:75 msgid "open" msgstr "åpen" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:155 msgid "open/close" msgstr "åpne/lukk" #: share/html/Widgets/Form/Select:79 msgid "other..." msgstr "annen …" #: share/html/Elements/CSRF:75 share/html/Elements/LoginRedirectWarning:57 msgid "perform actions" msgstr "utføre handlinger" #: share/html/Search/Elements/SelectChartType:55 msgid "pie" msgstr "Kakediagram" #: share/html/Admin/Tools/Shredder/index.html:177 msgid "plugin returned empty list" msgstr "tillegget returnerte en tom liste" #: share/html/Search/Chart.html:184 share/html/Search/Chart.html:188 msgid "px" msgstr "" #. ($queue->Name, $self->Name) #: lib/RT/Group.pm:124 msgid "queue %1 %2" msgstr "kø %1 %2" #: lib/RT/User.pm:662 msgid "receives daily digests" msgstr "" #: lib/RT/User.pm:664 msgid "receives weekly digests" msgstr "" #: etc/RT_Config.pm:3364 msgid "recycled" msgstr "" #: etc/RT_Config.pm:3315 msgid "rejected" msgstr "avvist" #: share/html/Admin/Queues/DefaultValues.html:67 msgid "requires running rt-crontool" msgstr "krever kjørende rt-crontool" #: etc/RT_Config.pm:3315 msgid "resolved" msgstr "løst" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:55 msgid "right to left" msgstr "høyre til venstre" #: lib/RT/SavedSearch.pm:80 msgid "search" msgstr "" #: share/html/Admin/Tools/Shredder/index.html:179 msgid "see object list below" msgstr "se objektliste nedenfor" #: share/html/Ticket/Elements/UpdateCc:145 share/html/Ticket/Elements/UpdateCc:57 share/html/Ticket/Elements/UpdateCc:86 msgid "show suggestions" msgstr "" #: etc/initialdata:905 share/html/Admin/Global/MyRT.html:87 msgid "sidebar" msgstr "" #: share/html/Admin/Tools/Configuration.html:80 msgid "site config" msgstr "Lokalt oppsett" #: etc/RT_Config.pm:3314 msgid "stalled" msgstr "stoppet opp" #: share/html/Admin/Tools/Queries.html:92 msgid "statement" msgstr "" #: etc/RT_Config.pm:3365 msgid "stolen" msgstr "" #: share/html/Prefs/MyRT.html:86 msgid "summary rows" msgstr "sammendragsrader" #. ($self->Name) #: lib/RT/Group.pm:119 msgid "system %1" msgstr "" #. ($self->Name) #: lib/RT/Group.pm:135 msgid "system group '%1'" msgstr "systemgruppa «%1»" #: share/html/Search/Elements/SelectChartType:56 msgid "table" msgstr "" #: lib/RT/Interface/Web.pm:1589 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2)" msgstr "" #: lib/RT/Interface/Web.pm:1582 msgid "the Referrer header supplied by your browser (%1) is not allowed by RT's configured hostname (%2) or whitelisted hosts (%3)" msgstr "" #: share/html/Elements/Error:70 msgid "the calling component did not specify why" msgstr "den kallende komponenten oppga ikke hvorfor" #: lib/RT/Installer.pm:168 msgid "the default addresses that will be listed in From: and Reply-To: headers of comment mail." msgstr "standardadressene som skal vises i «From» og «Reply-To»-feltene i kommentarmeldinger." #: lib/RT/Installer.pm:176 msgid "the default addresses that will be listed in From: and Reply-To: headers of correspondence mail." msgstr "standardadressene som skal vises i «From» og «Reply-To»-feltene i svarmeldinger." #. ($self->Instance, $self->Name) #: lib/RT/Group.pm:127 msgid "ticket #%1 %2" msgstr "sak %1 %2" #: share/html/Ticket/Graphs/Elements/EditGraphProperties:51 msgid "top to bottom" msgstr "topp til bunn" #: lib/RT/Crypt/GnuPG.pm:1772 msgid "ultimate" msgstr "ultimat" #. ($self->Id) #: lib/RT/Group.pm:138 msgid "undescribed group %1" msgstr "ubeskrevet gruppe %1" #: share/html/Elements/RT__CustomField/ColumnMap:81 msgid "unlimited" msgstr "ubegrenset" #: lib/RT/Interface/Web.pm:1678 lib/RT/Interface/Web.pm:1683 lib/RT/Interface/Web.pm:1687 msgid "update a ticket" msgstr "oppdatere en sak" #: lib/RT/Interface/Web.pm:1680 msgid "update an approval" msgstr "oppdater en godkjenning" #: lib/RT/Interface/Web.pm:1681 msgid "update an article" msgstr "oppdater en artikkel" #: share/html/Admin/Elements/EditRights:64 msgid "user" msgstr "bruker" #. ($user->Object->Name) #: lib/RT/Group.pm:113 msgid "user %1" msgstr "bruker %1" #: share/html/Admin/Elements/EditRights:218 msgid "username" msgstr "brukernavn" #: share/html/Dashboards/Subscription.html:109 msgid "weekly" msgstr "ukentlig" #. (loc($day), $hour) #: share/html/Elements/RT__Dashboard/ColumnMap:90 msgid "weekly (on %1) at %2" msgstr "ukentlig (%1) klokken %2" #: share/html/Dashboards/Subscription.html:125 msgid "weeks" msgstr "uker" #. ("$consequence") #: share/html/Elements/LoginRedirectWarning:64 msgid "which may %1 on your behalf." msgstr "som kan %1 på dine vegne." #: lib/RT/Installer.pm:217 msgid "which port your web server will listen to, e.g. 8080" msgstr "hvilken port vevtjeneren skal lytte på (eksempel: 8080)" #: share/html/Elements/ShowTransactionAttachments:73 msgid "with headers" msgstr "med meldingshode" #: share/html/Elements/RT__Group/ColumnMap:60 share/html/Elements/RT__Group/ColumnMap:68 share/html/Elements/RT__Queue/ColumnMap:93 share/html/Elements/RT__Queue/ColumnMap:97 msgid "yes" msgstr "ja" #: lib/RT/Interface/Web.pm:1574 msgid "your browser did not supply a Referrer header" msgstr "" rt-4.4.2/config.layout0000664000175000017500000001462113131430353014542 0ustar vagrantvagrant## ## config.layout -- Pre-defined Installation Path Layouts ## ## Hints: ## - layouts can be loaded with configure's --enable-layout=ID option ## - when no --enable-layout option is given, the default layout is `RT' ## - a trailing plus character (`+') on paths is replaced with a ## `/' suffix where is currently hardcoded to 'rt3'. ## (This may become a configurable parameter at some point.) ## ## The following variables must _all_ be set: ## prefix exec_prefix bindir sbindir sysconfdir mandir libdir ## datadir htmldir localstatedir logfiledir masonstatedir fontdir ## sessionstatedir customdir customhtmldir customlexdir customstaticdir ## (This can be seen in m4/rt_layout.m4.) ## # Default RT3 path layout. prefix: /opt/rt4 exec_prefix: ${prefix} bindir: ${exec_prefix}/bin sbindir: ${exec_prefix}/sbin sysconfdir: ${prefix}/etc mandir: ${prefix}/man plugindir: ${prefix}/plugins libdir: ${prefix}/lib datadir: ${prefix}/share htmldir: ${datadir}/html fontdir: ${datadir}/fonts lexdir: ${datadir}/po staticdir: ${datadir}/static manualdir: ${prefix}/docs localstatedir: ${prefix}/var logfiledir: ${localstatedir}/log masonstatedir: ${localstatedir}/mason_data sessionstatedir: ${localstatedir}/session_data customdir: ${prefix}/local custometcdir: ${customdir}/etc customhtmldir: ${customdir}/html customlexdir: ${customdir}/po customstaticdir: ${customdir}/static customlibdir: ${customdir}/lib customplugindir: ${customdir}/plugins prefix: . exec_prefix: ${prefix} bindir: ${exec_prefix}/bin sbindir: ${exec_prefix}/sbin sysconfdir: ${prefix}/etc mandir: ${prefix}/man plugindir: ${prefix}/plugins libdir: ${prefix}/lib datadir: ${prefix}/share htmldir: ${datadir}/html lexdir: ${datadir}/po staticdir: ${datadir}/static fontdir: ${datadir}/fonts manualdir: ${prefix}/docs localstatedir: ${prefix}/var logfiledir: ${localstatedir}/log masonstatedir: ${localstatedir}/mason_data sessionstatedir: ${localstatedir}/session_data customdir: ${prefix}/local custometcdir: ${customdir}/etc customhtmldir: ${customdir}/html customlexdir: ${customdir}/po customstaticdir: ${customdir}/static customlibdir: ${customdir}/lib customplugindir: ${customdir}/plugins prefix: /usr/local exec_prefix: ${prefix} bindir: ${prefix}/bin sbindir: ${prefix}/sbin sysconfdir: /etc+ datadir: ${prefix}/share # FIXME: missing support for lib64 libdir: ${prefix}/lib mandir: ${datadir}/man # FIXME: no such directory in FHS; shouldn't go to somewhere in "${datadir}/rt/"? plugindir: ${datadir}/plugins htmldir: ${datadir}/html lexdir: ${datadir}/po staticdir: ${datadir}/static fontdir: ${datadir}/fonts manualdir: ${datadir}/doc localstatedir: /var logfiledir: ${localstatedir}/log # XXX: "/var/cache/mason/*"? masonstatedir: ${localstatedir}/cache/mason_data sessionstatedir: ${localstatedir}/cache/session_data customdir: ${prefix}/local custometcdir: ${customdir}/etc customhtmldir: ${customdir}/html customlexdir: ${customdir}/po customstaticdir: ${customdir}/static customlibdir: ${customdir}/lib customplugindir: ${customdir}/plugins prefix: /usr/local exec_prefix: ${prefix} bindir: ${exec_prefix}/bin sbindir: ${exec_prefix}/sbin sysconfdir: ${prefix}/etc+ mandir: ${prefix}/man plugindir: ${prefix}/plugins libdir: ${prefix}/lib+ datadir: ${prefix}/share+ htmldir: ${datadir}/html lexdir: ${datadir}/po staticdir: ${datadir}/static fontdir: ${datadir}/fonts manualdir: ${prefix}/share/doc+ logfiledir: /var/log localstatedir: /var/run+ masonstatedir: ${localstatedir}/mason_data sessionstatedir: ${localstatedir}/session_data customdir: ${prefix}/share+ custometcdir: ${customdir}/local/etc customhtmldir: ${customdir}/local/html customlexdir: ${customdir}/local/po customstaticdir: ${customdir}/static customlibdir: ${customdir}/local/lib customplugindir: ${customdir}/local/plugins # RH path layout. prefix: /usr exec_prefix: ${prefix} bindir: ${exec_prefix}/bin sbindir: ${exec_prefix}/sbin sysconfdir: /etc/rt3 mandir: ${prefix}/man libdir: ${prefix}/lib/rt3 datadir: /var/rt3 htmldir: ${datadir}/html fontdir: ${datadir}/fonts lexdir: ${datadir}/po staticdir: ${datadir}/static manualdir: ${datadir}/doc plugindir: ${datadir}/plugins localstatedir: /var logfiledir: ${localstatedir}/log/rt3 masonstatedir: ${localstatedir}/rt3/mason_data sessionstatedir: ${localstatedir}/rt3/session_data customdir: ${prefix}/local/rt3 custometcdir: ${customdir}/etc customhtmldir: ${customdir}/html customlexdir: ${customdir}/po customstaticdir: ${customdir}/static customlibdir: ${customdir}/lib customplugindir: ${customdir}/plugins prefix: /opt/rt4 exec_prefix: ${prefix} bindir: bin sbindir: sbin sysconfdir: etc mandir: man plugindir: plugins libdir: lib datadir: share htmldir: ${datadir}/html fontdir: ${datadir}/fonts lexdir: ${datadir}/po staticdir: ${datadir}/static manualdir: docs localstatedir: var logfiledir: ${localstatedir}/log masonstatedir: ${localstatedir}/mason_data sessionstatedir: ${localstatedir}/session_data customdir: local custometcdir: ${customdir}/etc customhtmldir: ${customdir}/html customlexdir: ${customdir}/po customstaticdir: ${customdir}/static customlibdir: ${customdir}/lib customplugindir: ${customdir}/plugins prefix: /opt/rt4 exec_prefix: ${prefix} bindir: bin sbindir: sbin sysconfdir: etc/rt/ mandir: man libdir: lib/rt datadir: share/rt plugindir: ${datadir}/plugins htmldir: ${datadir}/html fontdir: ${datadir}/fonts lexdir: ${datadir}/po staticdir: ${datadir}/static manualdir: docs/rt localstatedir: var/rt/ logfiledir: ${localstatedir}/log masonstatedir: ${localstatedir}/mason_data sessionstatedir: ${localstatedir}/session_data customdir: local/rt/ custometcdir: ${customdir}/etc customhtmldir: ${customdir}/html customlexdir: ${customdir}/po customstaticdir: ${customdir}/static customlibdir: ${customdir}/lib customplugindir: ${customdir}/plugins rt-4.4.2/configure0000775000175000017500000036603113136155511013757 0ustar vagrantvagrant#! /bin/sh # From configure.ac Revision. # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for RT rt-4.4.2. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and $0: rt-bugs@bestpractical.com about your system, including $0: any error possibly output before this message. Then $0: install a modern shell, or manually run the script $0: under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='RT' PACKAGE_TARNAME='rt' PACKAGE_VERSION='rt-4.4.2' PACKAGE_STRING='RT rt-4.4.2' PACKAGE_BUGREPORT='rt-bugs@bestpractical.com' PACKAGE_URL='' ac_unique_file="lib/RT.pm" ac_default_prefix=/opt/rt4 ac_subst_vars='LTLIBOBJS LIBOBJS RT_LOG_PATH_R LOCAL_PLUGIN_PATH_R LOCAL_LIB_PATH_R LOCAL_STATIC_PATH_R LOCAL_LEXICON_PATH_R MASON_LOCAL_HTML_PATH_R LOCAL_ETC_PATH_R MASON_HTML_PATH_R MASON_SESSION_PATH_R MASON_DATA_PATH_R RT_PLUGIN_PATH_R RT_STATIC_PATH_R RT_LEXICON_PATH_R RT_FONT_PATH_R RT_MAN_PATH_R RT_VAR_PATH_R RT_SBIN_PATH_R RT_BIN_PATH_R CONFIG_FILE_PATH_R RT_ETC_PATH_R RT_LIB_PATH_R RT_LOCAL_PATH_R RT_DOC_PATH_R RT_PATH_R RT_LOG_PATH LOCAL_PLUGIN_PATH LOCAL_LIB_PATH LOCAL_STATIC_PATH LOCAL_LEXICON_PATH MASON_LOCAL_HTML_PATH LOCAL_ETC_PATH MASON_HTML_PATH MASON_SESSION_PATH MASON_DATA_PATH RT_PLUGIN_PATH RT_FONT_PATH RT_MAN_PATH RT_VAR_PATH RT_SBIN_PATH RT_BIN_PATH CONFIG_FILE_PATH RT_ETC_PATH RT_STATIC_PATH RT_LEXICON_PATH RT_LIB_PATH RT_LOCAL_PATH RT_DOC_PATH RT_PATH RT_VERSION_PATCH RT_VERSION_MINOR RT_VERSION_MAJOR ATTACHMENT_STORE RT_EXTERNALAUTH RT_SMIME RT_SMIME_DEPS RT_GPG RT_GPG_DEPS RT_GD RT_GRAPHVIZ RT_DEVELOPER RTGROUP WEB_GROUP WEB_USER DB_RT_PASS DB_RT_USER DB_DATABASE DB_DBA DB_RT_HOST DB_PORT DB_HOST DATABASE_ENV_PREF DB_TYPE LIBS_GROUP LIBS_OWNER BIN_OWNER COMMENT_INPLACE_LAYOUT rt_layout_name exp_customlibdir customlibdir exp_customstaticdir customstaticdir exp_customlexdir customlexdir exp_customhtmldir customhtmldir exp_customplugindir customplugindir exp_custometcdir custometcdir exp_customdir customdir exp_sessionstatedir sessionstatedir exp_masonstatedir masonstatedir exp_logfiledir logfiledir exp_localstatedir exp_plugindir plugindir exp_manualdir manualdir exp_fontdir fontdir exp_htmldir exp_datadir exp_staticdir staticdir exp_lexdir lexdir exp_libdir exp_mandir exp_sysconfdir exp_sbindir exp_bindir exp_exec_prefix exp_prefix WEB_HANDLER FINDPERM PERL INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM rt_version_patch rt_version_minor rt_version_major CONFIGURE_INCANT target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking with_web_handler enable_layout with_bin_owner with_libs_owner with_libs_group with_db_type with_db_host with_db_port with_db_rt_host with_db_dba with_db_database with_db_rt_user with_db_rt_pass with_web_user with_web_group with_rt_group with_my_user_group with_developer enable_developer with_graphviz enable_graphviz with_gd enable_gd enable_gpg enable_smime with_externalauth enable_externalauth with_attachment_store ' ac_precious_vars='build_alias host_alias target_alias PERL' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures RT rt-4.4.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/rt] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of RT rt-4.4.2:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-layout=LAYOUT Use a specific directory layout (Default: relative) --enable-developer Add dependencies needed for testing and developing RT --enable-graphviz Turns on support for RT's GraphViz dependency charts --enable-gd Turns on support for RT's GD pie and bar charts --enable-gpg Turns on GNU Privacy Guard (GPG) support --enable-smime Turns on Secure MIME (SMIME) support --enable-externalauth Add dependencies needed for external auth Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-web-handler=LIST comma separated list of web-handlers RT will be able to use. Default is fastcgi. Valid values are modperl1, modperl2, fastcgi and standalone. To successfully run RT you need only one. --with-bin-owner=OWNER user that will own RT binaries (default root) --with-libs-owner=OWNER user that will own RT libraries (default root) --with-libs-group=GROUP group that will own RT binaries (default bin) --with-db-type=TYPE sort of database RT will use (default: mysql) (mysql, Pg, Oracle and SQLite are valid) --with-db-host=HOSTNAME FQDN of database server (default: localhost) --with-db-port=PORT port on which the database listens on --with-db-rt-host=HOSTNAME FQDN of RT server which talks to the database server (default: localhost) --with-db-dba=DBA name of database administrator (default: root or postgres) --with-db-database=DBNAME name of the database to use (default: rt4) --with-db-rt-user=DBUSER name of database user (default: rt_user) --with-db-rt-pass=PASSWORD password for database user (default: rt_pass) --with-web-user=USER user the web server runs as (default: www) --with-web-group=GROUP group the web server runs as (default: www) --with-rt-group=GROUP group to own all files (default: rt) --with-my-user-group set all users and groups to current user/group --with-attachment-store=TYPE which attachment storage RT will use for attachments (default: database) (database, disk, S3 and Dropbox are valid) Some influential environment variables: PERL Perl interpreter command Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF RT configure rt-4.4.2 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by RT $as_me rt-4.4.2, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CONFIGURE_INCANT="$0 $@" rt_version_major=4 rt_version_minor=4 rt_version_patch=2 test "x$rt_version_major" = 'x' && rt_version_major=0 test "x$rt_version_minor" = 'x' && rt_version_minor=0 test "x$rt_version_patch" = 'x' && rt_version_patch=0 ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' # Extract the first word of "perl", so it can be a program name with args. set dummy perl; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PERL+:} false; then : $as_echo_n "(cached) " >&6 else case $PERL in [\\/]* | ?:[\\/]*) ac_cv_path_PERL="$PERL" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_PERL" && ac_cv_path_PERL="not found" ;; esac fi PERL=$ac_cv_path_PERL if test -n "$PERL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PERL" >&5 $as_echo "$PERL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "$PERL" = 'not found'; then as_fn_error $? "cannot use $PACKAGE_NAME without perl" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking checking version of find" >&5 $as_echo_n "checking checking version of find... " >&6; } if find --version 2>&1 | grep 'GNU'; then : FINDPERM="/" { $as_echo "$as_me:${as_lineno-$LINENO}: result: configuring for GNU find" >&5 $as_echo "configuring for GNU find" >&6; } else FINDPERM="+" { $as_echo "$as_me:${as_lineno-$LINENO}: result: configuring for BSD find" >&5 $as_echo "configuring for BSD find" >&6; } fi # Check whether --with-web-handler was given. if test "${with_web_handler+set}" = set; then : withval=$with_web_handler; WEB_HANDLER=$withval else WEB_HANDLER=fastcgi fi my_web_handler_test=$($PERL -e 'print "ok" unless grep $_ !~ /^(modperl1|modperl2|fastcgi|standalone)$/i, grep defined && length, split /\s*,\s*/, $ARGV[0]' $WEB_HANDLER) if test "$my_web_handler_test" != "ok"; then as_fn_error $? "Only modperl1, modperl2, fastcgi and standalone are valid web-handlers" "$LINENO" 5 fi # Check whether --enable-layout was given. if test "${enable_layout+set}" = set; then : enableval=$enable_layout; LAYOUT=$enableval fi if test "x$LAYOUT" = "x"; then LAYOUT="relative" fi if test ! -f $srcdir/config.layout; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Layout file $srcdir/config.layout not found" >&5 $as_echo "$as_me: WARNING: Layout file $srcdir/config.layout not found" >&2;} rt_layout_name=no else pldconf=./config.pld $PERL -0777 -p -e "\$layout = '$LAYOUT';" -e ' s/.*//gims; s/\<\/Layout\>.*//s; s/^#.*$//m; s/^\s+//gim; s/\s+$/\n/gim; s/\+$/\/rt3/gim; # m4 will not let us just use $srcdir/config.layout, we need $1 s/^\s*((?:bin|sbin|libexec|data|sysconf|sharedstate|localstate|lib|include|oldinclude|info|man|html)dir)\s*:\s*(.*)$/$1=$2/gim; s/^\s*(.*?)\s*:\s*(.*)$/\(test "x\$$1" = "xNONE" || test "x\$$1" = "x") && $1=$2/gim; ' < $srcdir/config.layout > $pldconf if test -s $pldconf; then rt_layout_name=$LAYOUT . $pldconf for var in prefix exec_prefix bindir sbindir \ sysconfdir mandir libdir datadir htmldir fontdir\ lexdir staticdir localstatedir logfiledir masonstatedir \ sessionstatedir customdir custometcdir customhtmldir \ customlexdir customstaticdir customplugindir customlibdir manualdir; do eval "val=\"\$$var\"" val=`echo $val | sed -e 's:\(.\)/*$:\1:'` val=`echo $val | sed -e 's:[\$]\([a-z_]*\):$\1:g'` eval "$var='$val'" done else rt_layout_name=no fi #rm $pldconf fi ap_last='' ap_cur='$prefix' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_prefix="${ap_cur}" ap_last='' ap_cur='$exec_prefix' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_exec_prefix="${ap_cur}" ap_last='' ap_cur='$bindir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_bindir="${ap_cur}" ap_last='' ap_cur='$sbindir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_sbindir="${ap_cur}" ap_last='' ap_cur='$sysconfdir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_sysconfdir="${ap_cur}" ap_last='' ap_cur='$mandir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_mandir="${ap_cur}" ap_last='' ap_cur='$libdir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_libdir="${ap_cur}" ap_last='' ap_cur='$lexdir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_lexdir="${ap_cur}" ap_last='' ap_cur='$staticdir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_staticdir="${ap_cur}" ap_last='' ap_cur='$datadir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_datadir="${ap_cur}" ap_last='' ap_cur='$htmldir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_htmldir="${ap_cur}" ap_last='' ap_cur='$fontdir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_fontdir="${ap_cur}" ap_last='' ap_cur='$manualdir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_manualdir="${ap_cur}" ap_last='' ap_cur='$plugindir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_plugindir="${ap_cur}" ap_last='' ap_cur='$localstatedir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_localstatedir="${ap_cur}" ap_last='' ap_cur='$logfiledir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_logfiledir="${ap_cur}" ap_last='' ap_cur='$masonstatedir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_masonstatedir="${ap_cur}" ap_last='' ap_cur='$sessionstatedir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_sessionstatedir="${ap_cur}" ap_last='' ap_cur='$customdir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_customdir="${ap_cur}" ap_last='' ap_cur='$custometcdir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_custometcdir="${ap_cur}" ap_last='' ap_cur='$customplugindir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_customplugindir="${ap_cur}" ap_last='' ap_cur='$customhtmldir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_customhtmldir="${ap_cur}" ap_last='' ap_cur='$customlexdir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_customlexdir="${ap_cur}" ap_last='' ap_cur='$customstaticdir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_customstaticdir="${ap_cur}" ap_last='' ap_cur='$customlibdir' while test "x${ap_cur}" != "x${ap_last}"; do ap_last="${ap_cur}" ap_cur=`eval "echo ${ap_cur}"` done exp_customlibdir="${ap_cur}" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for chosen layout" >&5 $as_echo_n "checking for chosen layout... " >&6; } if test "x$rt_layout_name" = "xno"; then if test "x$LAYOUT" = "xno"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LAYOUT" >&5 $as_echo "$LAYOUT" >&6; } fi as_fn_error $? "a valid layout must be specified (or the default used)" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: result: $rt_layout_name" >&5 $as_echo "$rt_layout_name" >&6; } fi if test "x$rt_layout_name" != "xinplace" ; then COMMENT_INPLACE_LAYOUT="" else COMMENT_INPLACE_LAYOUT=# fi # ACRT_USER_EXISTS( users, variable, default ) # - users is a list of users [www apache www-docs] # from highest to lowest priority to high priority (i.e. first match) # - variable is what you set with the result # # Check whether --with-bin-owner was given. if test "${with_bin_owner+set}" = set; then : withval=$with_bin_owner; BIN_OWNER=$withval else BIN_OWNER=root fi # Check whether --with-libs-owner was given. if test "${with_libs_owner+set}" = set; then : withval=$with_libs_owner; LIBS_OWNER=$withval else LIBS_OWNER=root fi # Check whether --with-libs-group was given. if test "${with_libs_group+set}" = set; then : withval=$with_libs_group; LIBS_GROUP=$withval else LIBS_GROUP=bin fi # Check whether --with-db-type was given. if test "${with_db_type+set}" = set; then : withval=$with_db_type; DB_TYPE=$withval else DB_TYPE=mysql fi if test "$DB_TYPE" != 'mysql' -a "$DB_TYPE" != 'Pg' -a "$DB_TYPE" != 'SQLite' -a "$DB_TYPE" != 'Oracle' ; then as_fn_error $? "Only Oracle, Pg, mysql and SQLite are valid db types" "$LINENO" 5 fi if test "$DB_TYPE" = 'Oracle'; then test "x$ORACLE_HOME" = 'x' && as_fn_error $? "Please declare the ORACLE_HOME environment variable" "$LINENO" 5 DATABASE_ENV_PREF="\$ENV{'ORACLE_HOME'} = '$ORACLE_HOME';" fi # Check whether --with-db-host was given. if test "${with_db_host+set}" = set; then : withval=$with_db_host; DB_HOST=$withval else DB_HOST=localhost fi # Check whether --with-db-port was given. if test "${with_db_port+set}" = set; then : withval=$with_db_port; DB_PORT=$withval else DB_PORT= fi # Check whether --with-db-rt-host was given. if test "${with_db_rt_host+set}" = set; then : withval=$with_db_rt_host; DB_RT_HOST=$withval else DB_RT_HOST=localhost fi if test "$DB_TYPE" = "Pg" ; then DB_DBA="postgres" else DB_DBA="root" fi # Check whether --with-db-dba was given. if test "${with_db_dba+set}" = set; then : withval=$with_db_dba; DB_DBA=$withval else DB_DBA="$DB_DBA" fi # Check whether --with-db-database was given. if test "${with_db_database+set}" = set; then : withval=$with_db_database; DB_DATABASE=$withval else DB_DATABASE=rt4 fi # Check whether --with-db-rt-user was given. if test "${with_db_rt_user+set}" = set; then : withval=$with_db_rt_user; DB_RT_USER=$withval else DB_RT_USER=rt_user fi # Check whether --with-db-rt-pass was given. if test "${with_db_rt_pass+set}" = set; then : withval=$with_db_rt_pass; DB_RT_PASS=$withval else DB_RT_PASS=rt_pass fi # Check whether --with-web-user was given. if test "${with_web_user+set}" = set; then : withval=$with_web_user; WEB_USER=$withval else WEB_USER=www for x in www www-data apache httpd nobody; do { $as_echo "$as_me:${as_lineno-$LINENO}: checking if user $x exists" >&5 $as_echo_n "checking if user $x exists... " >&6; } if $PERL -e"exit( defined getpwnam('$x') ? 0 : 1)" ; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5 $as_echo "found" >&6; }; WEB_USER=$x ; break else { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } fi done fi # Check whether --with-web-group was given. if test "${with_web_group+set}" = set; then : withval=$with_web_group; WEB_GROUP=$withval else WEB_GROUP=www for x in www www-data apache httpd nogroup nobody; do { $as_echo "$as_me:${as_lineno-$LINENO}: checking if group $x exists" >&5 $as_echo_n "checking if group $x exists... " >&6; } if $PERL -e"exit( defined getgrnam('$x') ? 0 : 1)" ; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5 $as_echo "found" >&6; }; WEB_GROUP=$x ; break else { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } fi done fi # Check whether --with-rt-group was given. if test "${with_rt_group+set}" = set; then : withval=$with_rt_group; RTGROUP=$withval else RTGROUP=rt for x in rt3 rt $WEB_GROUP; do { $as_echo "$as_me:${as_lineno-$LINENO}: checking if group $x exists" >&5 $as_echo_n "checking if group $x exists... " >&6; } if $PERL -e"exit( defined getgrnam('$x') ? 0 : 1)" ; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5 $as_echo "found" >&6; }; RTGROUP=$x ; break else { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5 $as_echo "not found" >&6; } fi done fi my_group=$($PERL -MPOSIX=getgid -le 'print scalar getgrgid getgid') my_user=${USER:-$LOGNAME} # Check whether --with-my-user-group was given. if test "${with_my_user_group+set}" = set; then : withval=$with_my_user_group; RTGROUP=$my_group BIN_OWNER=$my_user LIBS_OWNER=$my_user LIBS_GROUP=$my_group WEB_USER=$my_user WEB_GROUP=$my_group fi # Test for valid database names { $as_echo "$as_me:${as_lineno-$LINENO}: checking if database name is set" >&5 $as_echo_n "checking if database name is set... " >&6; } if echo $DB_DATABASE | $PERL -e 'exit(1) unless <> =~ /\S/' ; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else as_fn_error $? "no. database name is not set" "$LINENO" 5 fi # Check whether --with-developer was given. if test "${with_developer+set}" = set; then : withval=$with_developer; RT_DEVELOPER=$withval else RT_DEVELOPER="0" fi # Check whether --enable-developer was given. if test "${enable_developer+set}" = set; then : enableval=$enable_developer; RT_DEVELOPER=$enableval else RT_DEVELOPER=$RT_DEVELOPER fi if test "$RT_DEVELOPER" = yes; then RT_DEVELOPER="1" else RT_DEVELOPER="0" fi # Extract the first word of "dot", so it can be a program name with args. set dummy dot; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RT_GRAPHVIZ+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RT_GRAPHVIZ"; then ac_cv_prog_RT_GRAPHVIZ="$RT_GRAPHVIZ" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RT_GRAPHVIZ=""yes"" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_prog_RT_GRAPHVIZ" && ac_cv_prog_RT_GRAPHVIZ=""no"" fi fi RT_GRAPHVIZ=$ac_cv_prog_RT_GRAPHVIZ if test -n "$RT_GRAPHVIZ"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RT_GRAPHVIZ" >&5 $as_echo "$RT_GRAPHVIZ" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Check whether --with-graphviz was given. if test "${with_graphviz+set}" = set; then : withval=$with_graphviz; RT_GRAPHVIZ=$withval fi # Check whether --enable-graphviz was given. if test "${enable_graphviz+set}" = set; then : enableval=$enable_graphviz; RT_GRAPHVIZ=$enableval fi if test "$RT_GRAPHVIZ" = yes; then RT_GRAPHVIZ="1" else RT_GRAPHVIZ="0" fi # Extract the first word of "gdlib-config", so it can be a program name with args. set dummy gdlib-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RT_GD+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RT_GD"; then ac_cv_prog_RT_GD="$RT_GD" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RT_GD=""yes"" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_prog_RT_GD" && ac_cv_prog_RT_GD=""no"" fi fi RT_GD=$ac_cv_prog_RT_GD if test -n "$RT_GD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RT_GD" >&5 $as_echo "$RT_GD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Check whether --with-gd was given. if test "${with_gd+set}" = set; then : withval=$with_gd; RT_GD=$withval fi # Check whether --enable-gd was given. if test "${enable_gd+set}" = set; then : enableval=$enable_gd; RT_GD=$enableval fi if test "$RT_GD" = yes; then RT_GD="1" else RT_GD="0" fi # Extract the first word of "gpg", so it can be a program name with args. set dummy gpg; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RT_GPG_DEPS+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RT_GPG_DEPS"; then ac_cv_prog_RT_GPG_DEPS="$RT_GPG_DEPS" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RT_GPG_DEPS=""yes"" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_prog_RT_GPG_DEPS" && ac_cv_prog_RT_GPG_DEPS=""no"" fi fi RT_GPG_DEPS=$ac_cv_prog_RT_GPG_DEPS if test -n "$RT_GPG_DEPS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RT_GPG_DEPS" >&5 $as_echo "$RT_GPG_DEPS" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "$RT_GPG_DEPS" = yes; then RT_GPG_DEPS="1" else RT_GPG_DEPS="0" fi # Check whether --enable-gpg was given. if test "${enable_gpg+set}" = set; then : enableval=$enable_gpg; RT_GPG=$enableval fi if test "$RT_GPG" = yes; then RT_GPG="1" RT_GPG_DEPS="1" else if test "$RT_GPG" = no; then RT_GPG="0" RT_GPG_DEPS="0" else RT_GPG="0" fi fi # Extract the first word of "openssl", so it can be a program name with args. set dummy openssl; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RT_SMIME_DEPS+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RT_SMIME_DEPS"; then ac_cv_prog_RT_SMIME_DEPS="$RT_SMIME_DEPS" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RT_SMIME_DEPS=""yes"" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_prog_RT_SMIME_DEPS" && ac_cv_prog_RT_SMIME_DEPS=""no"" fi fi RT_SMIME_DEPS=$ac_cv_prog_RT_SMIME_DEPS if test -n "$RT_SMIME_DEPS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RT_SMIME_DEPS" >&5 $as_echo "$RT_SMIME_DEPS" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "$RT_SMIME_DEPS" = yes; then RT_SMIME_DEPS="1" else RT_SMIME_DEPS="0" fi # Check whether --enable-smime was given. if test "${enable_smime+set}" = set; then : enableval=$enable_smime; RT_SMIME=$enableval fi if test "$RT_SMIME" = yes; then RT_SMIME="1" RT_SMIME_DEPS="1" else if test "$RT_SMIME" = no; then RT_SMIME="0" RT_SMIME_DEPS="0" else RT_SMIME="0" fi fi # Check whether --with-externalauth was given. if test "${with_externalauth+set}" = set; then : withval=$with_externalauth; RT_EXTERNALAUTH=$withval else RT_EXTERNALAUTH="0" fi # Check whether --enable-externalauth was given. if test "${enable_externalauth+set}" = set; then : enableval=$enable_externalauth; RT_EXTERNALAUTH=$enableval else RT_EXTERNALAUTH=$RT_EXTERNALAUTH fi if test "$RT_EXTERNALAUTH" = yes; then RT_EXTERNALAUTH="1" else RT_EXTERNALAUTH="0" fi # Check whether --with-attachment-store was given. if test "${with_attachment_store+set}" = set; then : withval=$with_attachment_store; ATTACHMENT_STORE=$withval else ATTACHMENT_STORE=database fi if test "$ATTACHMENT_STORE" != 'database' -a "$ATTACHMENT_STORE" != 'disk' -a "$ATTACHMENT_STORE" != 'S3' -a "$ATTACHMENT_STORE" != 'Dropbox' ; then as_fn_error $? "Only database, disk, S3 and Dropbox are valid db types" "$LINENO" 5 fi RT_VERSION_MAJOR=${rt_version_major} RT_VERSION_MINOR=${rt_version_minor} RT_VERSION_PATCH=${rt_version_patch} RT_PATH=${exp_prefix} RT_DOC_PATH=${exp_manualdir} RT_LOCAL_PATH=${exp_customdir} RT_LIB_PATH=${exp_libdir} RT_LEXICON_PATH=${exp_lexdir} RT_STATIC_PATH=${exp_staticdir} RT_ETC_PATH=${exp_sysconfdir} CONFIG_FILE_PATH=${exp_sysconfdir} RT_BIN_PATH=${exp_bindir} RT_SBIN_PATH=${exp_sbindir} RT_VAR_PATH=${exp_localstatedir} RT_MAN_PATH=${exp_mandir} RT_FONT_PATH=${exp_fontdir} RT_PLUGIN_PATH=${exp_plugindir} MASON_DATA_PATH=${exp_masonstatedir} MASON_SESSION_PATH=${exp_sessionstatedir} MASON_HTML_PATH=${exp_htmldir} LOCAL_ETC_PATH=${exp_custometcdir} MASON_LOCAL_HTML_PATH=${exp_customhtmldir} LOCAL_LEXICON_PATH=${exp_customlexdir} LOCAL_STATIC_PATH=${exp_customstaticdir} LOCAL_LIB_PATH=${exp_customlibdir} LOCAL_PLUGIN_PATH=${exp_customplugindir} RT_LOG_PATH=${exp_logfiledir} if test ${exp_sysconfdir} = "etc" -o ${exp_sysconfdir} = "etc/rt"; then RT_PATH_R=${exp_prefix} RT_DOC_PATH_R=${exp_prefix}/${exp_manualdir} RT_LOCAL_PATH_R=${exp_prefix}/${exp_customdir} RT_LIB_PATH_R=${exp_prefix}/${exp_libdir} RT_ETC_PATH_R=${exp_prefix}/${exp_sysconfdir} CONFIG_FILE_PATH_R=${exp_prefix}/${exp_sysconfdir} RT_BIN_PATH_R=${exp_prefix}/${exp_bindir} RT_SBIN_PATH_R=${exp_prefix}/${exp_sbindir} RT_VAR_PATH_R=${exp_prefix}/${exp_localstatedir} RT_MAN_PATH_R=${exp_prefix}/${exp_mandir} RT_FONT_PATH_R=${exp_prefix}/${exp_fontdir} RT_LEXICON_PATH_R=${exp_prefix}/${exp_lexdir} RT_STATIC_PATH_R=${exp_prefix}/${exp_staticdir} RT_PLUGIN_PATH_R=${exp_prefix}/${exp_plugindir} MASON_DATA_PATH_R=${exp_prefix}/${exp_masonstatedir} MASON_SESSION_PATH_R=${exp_prefix}/${exp_sessionstatedir} MASON_HTML_PATH_R=${exp_prefix}/${exp_htmldir} LOCAL_ETC_PATH_R=${exp_prefix}/${exp_custometcdir} MASON_LOCAL_HTML_PATH_R=${exp_prefix}/${exp_customhtmldir} LOCAL_LEXICON_PATH_R=${exp_prefix}/${exp_customlexdir} LOCAL_STATIC_PATH_R=${exp_prefix}/${exp_customstaticdir} LOCAL_LIB_PATH_R=${exp_prefix}/${exp_customlibdir} LOCAL_PLUGIN_PATH_R=${exp_prefix}/${exp_customplugindir} RT_LOG_PATH_R=${exp_prefix}/${exp_logfiledir} else RT_PATH_R=${exp_prefix} RT_DOC_PATH_R=${exp_manualdir} RT_LOCAL_PATH_R=${exp_customdir} RT_LIB_PATH_R=${exp_libdir} RT_LEXICON_PATH_R=${exp_lexdir} RT_STATIC_PATH_R=${exp_staticdir} RT_ETC_PATH_R=${exp_sysconfdir} RT_PLUGIN_PATH_R=${exp_plugindir} CONFIG_FILE_PATH_R=${exp_sysconfdir} RT_BIN_PATH_R=${exp_bindir} RT_SBIN_PATH_R=${exp_sbindir} RT_VAR_PATH_R=${exp_localstatedir} RT_MAN_PATH_R=${exp_mandir} RT_FONT_PATH_R=${exp_fontdir} MASON_DATA_PATH_R=${exp_masonstatedir} MASON_SESSION_PATH_R=${exp_sessionstatedir} MASON_HTML_PATH_R=${exp_htmldir} LOCAL_ETC_PATH_R=${exp_custometcdir} MASON_LOCAL_HTML_PATH_R=${exp_customhtmldir} LOCAL_LEXICON_PATH_R=${exp_customlexdir} LOCAL_STATIC_PATH_R=${exp_customstaticdir} LOCAL_PLUGIN_PATH_R=${exp_customplugindir} LOCAL_LIB_PATH_R=${exp_customlibdir} RT_LOG_PATH_R=${exp_logfiledir} fi ac_config_files="$ac_config_files etc/upgrade/3.8-ical-extension etc/upgrade/4.0-customfield-checkbox-extension etc/upgrade/generate-rtaddressregexp etc/upgrade/sanity-check-stylesheets etc/upgrade/shrink-cgm-table etc/upgrade/shrink-transactions-table etc/upgrade/switch-templates-to etc/upgrade/time-worked-history etc/upgrade/upgrade-articles etc/upgrade/upgrade-assets etc/upgrade/vulnerable-passwords etc/upgrade/upgrade-sla sbin/rt-ldapimport sbin/rt-attributes-viewer sbin/rt-preferences-viewer sbin/rt-session-viewer sbin/rt-dump-metadata sbin/rt-setup-database sbin/rt-test-dependencies sbin/rt-email-digest sbin/rt-email-dashboards sbin/rt-externalize-attachments sbin/rt-clean-sessions sbin/rt-shredder sbin/rt-validator sbin/rt-validate-aliases sbin/rt-email-group-admin sbin/rt-server sbin/rt-server.fcgi sbin/standalone_httpd sbin/rt-setup-fulltext-index sbin/rt-fulltext-indexer sbin/rt-serializer sbin/rt-importer bin/rt-crontool bin/rt-mailgate bin/rt" ac_config_files="$ac_config_files Makefile etc/RT_Config.pm lib/RT/Generated.pm t/data/configs/apache2.2+mod_perl.conf t/data/configs/apache2.2+fastcgi.conf t/data/configs/apache2.4+mod_perl.conf t/data/configs/apache2.4+fastcgi.conf" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' # Transform confdefs.h into DEFS. # Protect against shell expansion while executing Makefile rules. # Protect against Makefile macro expansion. # # If the first sed substitution is executed (which looks for macros that # take arguments), then branch to the quote section. Otherwise, # look for a macro that doesn't take arguments. ac_script=' :mline /\\$/{ N s,\\\n,, b mline } t clear :clear s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g t quote s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g t quote b any :quote s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g s/\[/\\&/g s/\]/\\&/g s/\$/$$/g H :any ${ g s/^\n// s/\n/ /g p } ' DEFS=`sed -n "$ac_script" confdefs.h` ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by RT $as_me rt-4.4.2, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE Configuration files: $config_files Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ RT config.status rt-4.4.2 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --he | --h | --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "etc/upgrade/3.8-ical-extension") CONFIG_FILES="$CONFIG_FILES etc/upgrade/3.8-ical-extension" ;; "etc/upgrade/4.0-customfield-checkbox-extension") CONFIG_FILES="$CONFIG_FILES etc/upgrade/4.0-customfield-checkbox-extension" ;; "etc/upgrade/generate-rtaddressregexp") CONFIG_FILES="$CONFIG_FILES etc/upgrade/generate-rtaddressregexp" ;; "etc/upgrade/sanity-check-stylesheets") CONFIG_FILES="$CONFIG_FILES etc/upgrade/sanity-check-stylesheets" ;; "etc/upgrade/shrink-cgm-table") CONFIG_FILES="$CONFIG_FILES etc/upgrade/shrink-cgm-table" ;; "etc/upgrade/shrink-transactions-table") CONFIG_FILES="$CONFIG_FILES etc/upgrade/shrink-transactions-table" ;; "etc/upgrade/switch-templates-to") CONFIG_FILES="$CONFIG_FILES etc/upgrade/switch-templates-to" ;; "etc/upgrade/time-worked-history") CONFIG_FILES="$CONFIG_FILES etc/upgrade/time-worked-history" ;; "etc/upgrade/upgrade-articles") CONFIG_FILES="$CONFIG_FILES etc/upgrade/upgrade-articles" ;; "etc/upgrade/upgrade-assets") CONFIG_FILES="$CONFIG_FILES etc/upgrade/upgrade-assets" ;; "etc/upgrade/vulnerable-passwords") CONFIG_FILES="$CONFIG_FILES etc/upgrade/vulnerable-passwords" ;; "etc/upgrade/upgrade-sla") CONFIG_FILES="$CONFIG_FILES etc/upgrade/upgrade-sla" ;; "sbin/rt-ldapimport") CONFIG_FILES="$CONFIG_FILES sbin/rt-ldapimport" ;; "sbin/rt-attributes-viewer") CONFIG_FILES="$CONFIG_FILES sbin/rt-attributes-viewer" ;; "sbin/rt-preferences-viewer") CONFIG_FILES="$CONFIG_FILES sbin/rt-preferences-viewer" ;; "sbin/rt-session-viewer") CONFIG_FILES="$CONFIG_FILES sbin/rt-session-viewer" ;; "sbin/rt-dump-metadata") CONFIG_FILES="$CONFIG_FILES sbin/rt-dump-metadata" ;; "sbin/rt-setup-database") CONFIG_FILES="$CONFIG_FILES sbin/rt-setup-database" ;; "sbin/rt-test-dependencies") CONFIG_FILES="$CONFIG_FILES sbin/rt-test-dependencies" ;; "sbin/rt-email-digest") CONFIG_FILES="$CONFIG_FILES sbin/rt-email-digest" ;; "sbin/rt-email-dashboards") CONFIG_FILES="$CONFIG_FILES sbin/rt-email-dashboards" ;; "sbin/rt-externalize-attachments") CONFIG_FILES="$CONFIG_FILES sbin/rt-externalize-attachments" ;; "sbin/rt-clean-sessions") CONFIG_FILES="$CONFIG_FILES sbin/rt-clean-sessions" ;; "sbin/rt-shredder") CONFIG_FILES="$CONFIG_FILES sbin/rt-shredder" ;; "sbin/rt-validator") CONFIG_FILES="$CONFIG_FILES sbin/rt-validator" ;; "sbin/rt-validate-aliases") CONFIG_FILES="$CONFIG_FILES sbin/rt-validate-aliases" ;; "sbin/rt-email-group-admin") CONFIG_FILES="$CONFIG_FILES sbin/rt-email-group-admin" ;; "sbin/rt-server") CONFIG_FILES="$CONFIG_FILES sbin/rt-server" ;; "sbin/rt-server.fcgi") CONFIG_FILES="$CONFIG_FILES sbin/rt-server.fcgi" ;; "sbin/standalone_httpd") CONFIG_FILES="$CONFIG_FILES sbin/standalone_httpd" ;; "sbin/rt-setup-fulltext-index") CONFIG_FILES="$CONFIG_FILES sbin/rt-setup-fulltext-index" ;; "sbin/rt-fulltext-indexer") CONFIG_FILES="$CONFIG_FILES sbin/rt-fulltext-indexer" ;; "sbin/rt-serializer") CONFIG_FILES="$CONFIG_FILES sbin/rt-serializer" ;; "sbin/rt-importer") CONFIG_FILES="$CONFIG_FILES sbin/rt-importer" ;; "bin/rt-crontool") CONFIG_FILES="$CONFIG_FILES bin/rt-crontool" ;; "bin/rt-mailgate") CONFIG_FILES="$CONFIG_FILES bin/rt-mailgate" ;; "bin/rt") CONFIG_FILES="$CONFIG_FILES bin/rt" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "etc/RT_Config.pm") CONFIG_FILES="$CONFIG_FILES etc/RT_Config.pm" ;; "lib/RT/Generated.pm") CONFIG_FILES="$CONFIG_FILES lib/RT/Generated.pm" ;; "t/data/configs/apache2.2+mod_perl.conf") CONFIG_FILES="$CONFIG_FILES t/data/configs/apache2.2+mod_perl.conf" ;; "t/data/configs/apache2.2+fastcgi.conf") CONFIG_FILES="$CONFIG_FILES t/data/configs/apache2.2+fastcgi.conf" ;; "t/data/configs/apache2.4+mod_perl.conf") CONFIG_FILES="$CONFIG_FILES t/data/configs/apache2.4+mod_perl.conf" ;; "t/data/configs/apache2.4+fastcgi.conf") CONFIG_FILES="$CONFIG_FILES t/data/configs/apache2.4+fastcgi.conf" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" eval set X " :F $CONFIG_FILES " shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac case $ac_file$ac_mode in "etc/upgrade/3.8-ical-extension":F) chmod ug+x $ac_file ;; "etc/upgrade/4.0-customfield-checkbox-extension":F) chmod ug+x $ac_file ;; "etc/upgrade/generate-rtaddressregexp":F) chmod ug+x $ac_file ;; "etc/upgrade/sanity-check-stylesheets":F) chmod ug+x $ac_file ;; "etc/upgrade/shrink-cgm-table":F) chmod ug+x $ac_file ;; "etc/upgrade/shrink-transactions-table":F) chmod ug+x $ac_file ;; "etc/upgrade/switch-templates-to":F) chmod ug+x $ac_file ;; "etc/upgrade/time-worked-history":F) chmod ug+x $ac_file ;; "etc/upgrade/upgrade-articles":F) chmod ug+x $ac_file ;; "etc/upgrade/upgrade-assets":F) chmod ug+x $ac_file ;; "etc/upgrade/vulnerable-passwords":F) chmod ug+x $ac_file ;; "etc/upgrade/upgrade-sla":F) chmod ug+x $ac_file ;; "sbin/rt-ldapimport":F) chmod ug+x $ac_file ;; "sbin/rt-attributes-viewer":F) chmod ug+x $ac_file ;; "sbin/rt-preferences-viewer":F) chmod ug+x $ac_file ;; "sbin/rt-session-viewer":F) chmod ug+x $ac_file ;; "sbin/rt-dump-metadata":F) chmod ug+x $ac_file ;; "sbin/rt-setup-database":F) chmod ug+x $ac_file ;; "sbin/rt-test-dependencies":F) chmod ug+x $ac_file ;; "sbin/rt-email-digest":F) chmod ug+x $ac_file ;; "sbin/rt-email-dashboards":F) chmod ug+x $ac_file ;; "sbin/rt-externalize-attachments":F) chmod ug+x $ac_file ;; "sbin/rt-clean-sessions":F) chmod ug+x $ac_file ;; "sbin/rt-shredder":F) chmod ug+x $ac_file ;; "sbin/rt-validator":F) chmod ug+x $ac_file ;; "sbin/rt-validate-aliases":F) chmod ug+x $ac_file ;; "sbin/rt-email-group-admin":F) chmod ug+x $ac_file ;; "sbin/rt-server":F) chmod ug+x $ac_file ;; "sbin/rt-server.fcgi":F) chmod ug+x $ac_file ;; "sbin/standalone_httpd":F) chmod ug+x $ac_file ;; "sbin/rt-setup-fulltext-index":F) chmod ug+x $ac_file ;; "sbin/rt-fulltext-indexer":F) chmod ug+x $ac_file ;; "sbin/rt-serializer":F) chmod ug+x $ac_file ;; "sbin/rt-importer":F) chmod ug+x $ac_file ;; "bin/rt-crontool":F) chmod ug+x $ac_file ;; "bin/rt-mailgate":F) chmod ug+x $ac_file ;; "bin/rt":F) chmod ug+x $ac_file ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi rt-4.4.2/lib/0000775000175000017500000000000013131430353012600 5ustar vagrantvagrantrt-4.4.2/lib/RT/0000775000175000017500000000000013136155512013133 5ustar vagrantvagrantrt-4.4.2/lib/RT/SavedSearches.pm0000664000175000017500000000700013131430353016200 0ustar vagrantvagrant# BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: # # This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) # # # LICENSE: # # This work is made available to you under the terms of Version 2 of # the GNU General Public License. A copy of that license should have # been provided with this software, but in any event can be snarfed # from www.gnu.org. # # This work is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 or visit their web page on the internet at # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. # # # CONTRIBUTION SUBMISSION POLICY: # # (The following paragraph is not intended to limit the rights granted # to you to modify and distribute this software under the terms of # the GNU General Public License and is only of importance to you if # you choose to contribute your changes and enhancements to the # community by submitting them to Best Practical Solutions, LLC.) # # By intentionally submitting any modifications, corrections or # derivatives to this work, or any other work intended for use with # Request Tracker, to Best Practical Solutions, LLC, you confirm that # you are the copyright holder for those contributions and you grant # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, # royalty-free, perpetual, license to use, copy, create derivative # works based on those contributions, and sublicense and distribute # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} =head1 NAME RT::SavedSearches - a pseudo-collection for SavedSearch objects. =head1 SYNOPSIS use RT::SavedSearches =head1 DESCRIPTION SavedSearches is an object consisting of a number of SavedSearch objects. It works more or less like a DBIx::SearchBuilder collection, although it is not. =head1 METHODS =cut package RT::SavedSearches; use strict; use warnings; use base 'RT::SharedSettings'; use RT::SavedSearch; sub RecordClass { return 'RT::SavedSearch'; } =head2 LimitToPrivacy Takes two argumets: a privacy string, of the format "-", as produced by RT::SavedSearch::Privacy(); and a type string, as produced by RT::SavedSearch::Type(). The SavedSearches object will load the searches belonging to that user or group that are of the type specified. If no type is specified, all the searches belonging to the user/group will be loaded. Repeated calls to the same object should DTRT. =cut sub LimitToPrivacy { my $self = shift; my $privacy = shift; my $type = shift; my $object = $self->_GetObject($privacy); if ($object) { $self->{'objects'} = []; my @search_atts = $object->Attributes->Named('SavedSearch'); foreach my $att (@search_atts) { my $search = RT::SavedSearch->new($self->CurrentUser); $search->Load($privacy, $att->Id); next if $type && $search->Type && $search->Type ne $type; push(@{$self->{'objects'}}, $search); } } else { $RT::Logger->error("Could not load object $privacy"); } } RT::Base->_ImportOverlays(); 1; rt-4.4.2/lib/RT/Handle.pm0000664000175000017500000020431313131430353014661 0ustar vagrantvagrant# BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: # # This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) # # # LICENSE: # # This work is made available to you under the terms of Version 2 of # the GNU General Public License. A copy of that license should have # been provided with this software, but in any event can be snarfed # from www.gnu.org. # # This work is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 or visit their web page on the internet at # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. # # # CONTRIBUTION SUBMISSION POLICY: # # (The following paragraph is not intended to limit the rights granted # to you to modify and distribute this software under the terms of # the GNU General Public License and is only of importance to you if # you choose to contribute your changes and enhancements to the # community by submitting them to Best Practical Solutions, LLC.) # # By intentionally submitting any modifications, corrections or # derivatives to this work, or any other work intended for use with # Request Tracker, to Best Practical Solutions, LLC, you confirm that # you are the copyright holder for those contributions and you grant # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, # royalty-free, perpetual, license to use, copy, create derivative # works based on those contributions, and sublicense and distribute # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} =head1 NAME RT::Handle - RT's database handle =head1 SYNOPSIS use RT; BEGIN { RT::LoadConfig() }; use RT::Handle; =head1 DESCRIPTION C is RT specific wrapper over one of L classes. As RT works with different types of DBs we subclass repsective handler from L. Type of the DB is defined by L. You B load this module only when the configs have been loaded. =cut package RT::Handle; use strict; use warnings; use File::Spec; =head1 METHODS =head2 FinalizeDatabaseType Sets RT::Handle's superclass to the correct subclass of L, using the C configuration. =cut sub FinalizeDatabaseType { my $db_type = RT->Config->Get('DatabaseType'); my $package = "DBIx::SearchBuilder::Handle::$db_type"; $package->require or die "Unable to load DBIx::SearchBuilder database handle for '$db_type'.\n". "Perhaps you've picked an invalid database type or spelled it incorrectly.\n". $@; @RT::Handle::ISA = ($package); # We use COLLATE NOCASE to enforce case insensitivity on the normally # case-sensitive SQLite, LOWER() approach works, but lucks performance # due to absence of functional indexes if ($db_type eq 'SQLite') { no strict 'refs'; no warnings 'redefine'; *DBIx::SearchBuilder::Handle::SQLite::CaseSensitive = sub {0}; } } =head2 Connect Connects to RT's database using credentials and options from the RT config. Takes nothing. =cut sub Connect { my $self = shift; my %args = (@_); my $db_type = RT->Config->Get('DatabaseType'); if ( $db_type eq 'Oracle' ) { $ENV{'NLS_LANG'} = "AMERICAN_AMERICA.AL32UTF8"; $ENV{'NLS_NCHAR'} = "AL32UTF8"; } $self->SUPER::Connect( User => RT->Config->Get('DatabaseUser'), Password => RT->Config->Get('DatabasePassword'), DisconnectHandleOnDestroy => 1, %args, ); if ( $db_type eq 'mysql' ) { my $version = $self->DatabaseVersion; ($version) = $version =~ /^(\d+\.\d+)/; $self->dbh->do("SET NAMES 'utf8'") if $version >= 4.1; } elsif ( $db_type eq 'Pg' ) { my $version = $self->DatabaseVersion; ($version) = $version =~ /^(\d+\.\d+)/; $self->dbh->do("SET bytea_output = 'escape'") if $version >= 9.0; } $self->dbh->{'LongReadLen'} = RT->Config->Get('MaxAttachmentSize'); } =head2 BuildDSN Build the DSN for the RT database. Doesn't take any parameters, draws all that from the config. =cut sub BuildDSN { my $self = shift; # Unless the database port is a positive integer, we really don't want to pass it. my $db_port = RT->Config->Get('DatabasePort'); $db_port = undef unless (defined $db_port && $db_port =~ /^(\d+)$/); my $db_host = RT->Config->Get('DatabaseHost'); $db_host = undef unless $db_host; my $db_name = RT->Config->Get('DatabaseName'); my $db_type = RT->Config->Get('DatabaseType'); $db_name = File::Spec->catfile($RT::VarPath, $db_name) if $db_type eq 'SQLite' && !File::Spec->file_name_is_absolute($db_name); my %args = ( Host => $db_host, Database => $db_name, Port => $db_port, Driver => $db_type, ); if ( $db_type eq 'Oracle' && $db_host ) { $args{'SID'} = delete $args{'Database'}; } $self->SUPER::BuildDSN( %args ); if (RT->Config->Get('DatabaseExtraDSN')) { my %extra = RT->Config->Get('DatabaseExtraDSN'); $self->{'dsn'} .= ";$_=$extra{$_}" for sort keys %extra; } return $self->{'dsn'}; } =head2 DSN Returns the DSN for this handle. In order to get correct value you must build DSN first, see L. This is method can be called as class method, in this case creates temporary handle object, L and returns it. =cut sub DSN { my $self = shift; return $self->SUPER::DSN if ref $self; my $handle = $self->new; $handle->BuildDSN; return $handle->DSN; } =head2 SystemDSN Returns a DSN suitable for database creates and drops and user creates and drops. Gets RT's DSN first (see L) and then change it according to requirements of a database system RT's using. =cut sub SystemDSN { my $self = shift; my $db_name = RT->Config->Get('DatabaseName'); my $db_type = RT->Config->Get('DatabaseType'); my $dsn = $self->DSN; if ( $db_type eq 'mysql' ) { # with mysql, you want to connect sans database to funge things $dsn =~ s/dbname=\Q$db_name//; } elsif ( $db_type eq 'Pg' ) { # with postgres, you want to connect to template1 database $dsn =~ s/dbname=\Q$db_name/dbname=template1/; } return $dsn; } =head2 Database compatibility and integrity checks =cut sub CheckIntegrity { my $self = shift; unless ($RT::Handle and $RT::Handle->dbh) { local $@; unless ( eval { RT::ConnectToDatabase(); 1 } ) { return (0, 'no connection', "$@"); } } require RT::CurrentUser; my $test_user = RT::CurrentUser->new; $test_user->Load('RT_System'); unless ( $test_user->id ) { return (0, 'no system user', "Couldn't find RT_System user in the DB '". $RT::Handle->DSN ."'"); } $test_user = RT::CurrentUser->new; $test_user->Load('Nobody'); unless ( $test_user->id ) { return (0, 'no nobody user', "Couldn't find Nobody user in the DB '". $RT::Handle->DSN ."'"); } return 1; } sub CheckCompatibility { my $self = shift; my $dbh = shift; my $state = shift || 'post'; my $db_type = RT->Config->Get('DatabaseType'); if ( $db_type eq "mysql" ) { # Check which version we're running my $version = ($dbh->selectrow_array("show variables like 'version'"))[1]; return (0, "couldn't get version of the mysql server") unless $version; ($version) = $version =~ /^(\d+\.\d+)/; return (0, "RT is unsupported on MySQL versions before 4.1. Your version is $version.") if $version < 4.1; # MySQL must have InnoDB support local $dbh->{FetchHashKeyName} = 'NAME_lc'; my $innodb = lc($dbh->selectall_hashref("SHOW ENGINES", "engine")->{InnoDB}{support} || "no"); if ( $innodb eq "no" ) { return (0, "RT requires that MySQL be compiled with InnoDB table support.\n". "See \n". "and check that there are no 'skip-innodb' lines in your my.cnf."); } elsif ( $innodb eq "disabled" ) { return (0, "RT requires that MySQL InnoDB table support be enabled.\n". "Remove the 'skip-innodb' or 'innodb = OFF' line from your my.cnf file, restart MySQL, and try again.\n"); } if ( $state eq 'post' ) { my $show_table = sub { $dbh->selectrow_arrayref("SHOW CREATE TABLE $_[0]")->[1] }; unless ( $show_table->("Tickets") =~ /(?:ENGINE|TYPE)\s*=\s*InnoDB/i ) { return (0, "RT requires that all its tables be of InnoDB type. Upgrade RT tables."); } unless ( $show_table->("Attachments") =~ /\bContent\b[^,]*BLOB/i ) { return (0, "RT since version 3.8 has new schema for MySQL versions after 4.1.0\n" ."Follow instructions in the UPGRADING.mysql file."); } } if ($state =~ /^(create|post)$/) { my $show_var = sub { $dbh->selectrow_arrayref("SHOW VARIABLES LIKE ?",{},$_[0])->[1] }; my $max_packet = $show_var->("max_allowed_packet"); if ($max_packet <= (5 * 1024 * 1024)) { $max_packet = sprintf("%.1fM", $max_packet/1024/1024); warn "max_allowed_packet is set to $max_packet, which limits the maximum attachment or email size that RT can process. Consider adjusting MySQL's max_allowed_packet setting.\n"; } my $full_version = $show_var->("version"); if ($full_version =~ /^5\.(\d+)\.(\d+)$/ and (($1 == 6 and $2 >= 20) or $1 > 6)) { my $redo_log_size = $show_var->("innodb_log_file_size"); $redo_log_size *= $show_var->("innodb_log_files_in_group") if $full_version =~ /^5\.(\d+)\.(\d+)$/ and (($1 == 6 and $2 >= 22) or $1 > 6); if ($redo_log_size / 10 < 5 * 1024 * 1024) { $redo_log_size = sprintf("%.1fM",$redo_log_size/1024/1024); warn "innodb_log_file_size is set to $redo_log_size; attachments can only be 10% of this value on MySQL 5.6. Consider adjusting MySQL's innodb_log_file_size setting.\n"; } } } } return (1) } sub CheckSphinxSE { my $self = shift; my $dbh = $RT::Handle->dbh; local $dbh->{'RaiseError'} = 0; local $dbh->{'PrintError'} = 0; my $has = ($dbh->selectrow_array("show variables like 'have_sphinx'"))[1]; $has ||= ($dbh->selectrow_array( "select 'yes' from INFORMATION_SCHEMA.PLUGINS where PLUGIN_NAME = 'sphinx' AND PLUGIN_STATUS='active'" ))[0]; return 0 unless lc($has||'') eq "yes"; return 1; } =head2 Database maintanance =head3 CreateDatabase $DBH Creates a new database. This method can be used as class method. Takes DBI handle. Many database systems require special handle to allow you to create a new database, so you have to use L method during connection. Fetches type and name of the DB from the config. =cut sub CreateDatabase { my $self = shift; my $dbh = shift or return (0, "No DBI handle provided"); my $db_type = RT->Config->Get('DatabaseType'); my $db_name = RT->Config->Get('DatabaseName'); my $status; if ( $db_type eq 'SQLite' ) { return (1, 'Skipped as SQLite doesn\'t need any action'); } elsif ( $db_type eq 'Oracle' ) { my $db_user = RT->Config->Get('DatabaseUser'); my $db_pass = RT->Config->Get('DatabasePassword'); $status = $dbh->do( "CREATE USER $db_user IDENTIFIED BY $db_pass" ." default tablespace USERS" ." temporary tablespace TEMP" ." quota unlimited on USERS" ); unless ( $status ) { return $status, "Couldn't create user $db_user identified by $db_pass." ."\nError: ". $dbh->errstr; } $status = $dbh->do( "GRANT connect, resource TO $db_user" ); unless ( $status ) { return $status, "Couldn't grant connect and resource to $db_user." ."\nError: ". $dbh->errstr; } return (1, "Created user $db_user. All RT's objects should be in his schema."); } elsif ( $db_type eq 'Pg' ) { $status = $dbh->do("CREATE DATABASE $db_name WITH ENCODING='UNICODE' TEMPLATE template0"); } elsif ( $db_type eq 'mysql' ) { $status = $dbh->do("CREATE DATABASE `$db_name` DEFAULT CHARACTER SET utf8"); } else { $status = $dbh->do("CREATE DATABASE $db_name"); } return ($status, $DBI::errstr); } =head3 DropDatabase $DBH Drops RT's database. This method can be used as class method. Takes DBI handle as first argument. Many database systems require a special handle to allow you to drop a database, so you may have to use L when acquiring the DBI handle. Fetches the type and name of the database from the config. =cut sub DropDatabase { my $self = shift; my $dbh = shift or return (0, "No DBI handle provided"); my $db_type = RT->Config->Get('DatabaseType'); my $db_name = RT->Config->Get('DatabaseName'); if ( $db_type eq 'Oracle' ) { my $db_user = RT->Config->Get('DatabaseUser'); my $status = $dbh->do( "DROP USER $db_user CASCADE" ); unless ( $status ) { return 0, "Couldn't drop user $db_user." ."\nError: ". $dbh->errstr; } return (1, "Successfully dropped user '$db_user' with his schema."); } elsif ( $db_type eq 'SQLite' ) { my $path = $db_name; $path = "$RT::VarPath/$path" unless substr($path, 0, 1) eq '/'; unlink $path or return (0, "Couldn't remove '$path': $!"); return (1); } elsif ( $db_type eq 'mysql' ) { $dbh->do("DROP DATABASE `$db_name`") or return (0, $DBI::errstr); } else { $dbh->do("DROP DATABASE ". $db_name) or return (0, $DBI::errstr); } return (1); } =head2 InsertACL =cut sub InsertACL { my $self = shift; my $dbh = shift; my $base_path = shift || $RT::EtcPath; my $db_type = RT->Config->Get('DatabaseType'); return (1) if $db_type eq 'SQLite'; $dbh = $self->dbh if !$dbh && ref $self; return (0, "No DBI handle provided") unless $dbh; return (0, "'$base_path' doesn't exist") unless -e $base_path; my $path; if ( -d $base_path ) { $path = File::Spec->catfile( $base_path, "acl.$db_type"); $path = $self->GetVersionFile($dbh, $path); $path = File::Spec->catfile( $base_path, "acl") unless $path && -e $path; return (0, "Couldn't find ACLs for $db_type") unless -e $path; } else { $path = $base_path; } local *acl; do $path || return (0, "Couldn't load ACLs: " . $@); my @acl = acl($dbh); foreach my $statement (@acl) { my $sth = $dbh->prepare($statement) or return (0, "Couldn't prepare SQL query:\n $statement\n\nERROR: ". $dbh->errstr); unless ( $sth->execute ) { return (0, "Couldn't run SQL query:\n $statement\n\nERROR: ". $sth->errstr); } } return (1); } =head2 InsertSchema =cut sub InsertSchema { my $self = shift; my $dbh = shift; my $base_path = (shift || $RT::EtcPath); $dbh = $self->dbh if !$dbh && ref $self; return (0, "No DBI handle provided") unless $dbh; my $db_type = RT->Config->Get('DatabaseType'); my $file; if ( -d $base_path ) { $file = $base_path . "/schema." . $db_type; } else { $file = $base_path; } $file = $self->GetVersionFile( $dbh, $file ); unless ( $file ) { return (0, "Couldn't find schema file(s) '$file*'"); } unless ( -f $file && -r $file ) { return (0, "File '$file' doesn't exist or couldn't be read"); } my (@schema); open( my $fh_schema, '<', $file ) or die $!; my $has_local = 0; open( my $fh_schema_local, "<" . $self->GetVersionFile( $dbh, $RT::LocalEtcPath . "/schema." . $db_type )) and $has_local = 1; my $statement = ""; foreach my $line ( <$fh_schema>, ($_ = ';;'), $has_local? <$fh_schema_local>: () ) { $line =~ s/\#.*//g; $line =~ s/--.*//g; $statement .= $line; if ( $line =~ /;(\s*)$/ ) { $statement =~ s/;(\s*)$//g; push @schema, $statement; $statement = ""; } } close $fh_schema; close $fh_schema_local; if ( $db_type eq 'Oracle' ) { my $db_user = RT->Config->Get('DatabaseUser'); my $status = $dbh->do( "ALTER SESSION SET CURRENT_SCHEMA=$db_user" ); unless ( $status ) { return $status, "Couldn't set current schema to $db_user." ."\nError: ". $dbh->errstr; } } local $SIG{__WARN__} = sub {}; my $is_local = 0; $dbh->begin_work or return (0, "Couldn't begin transaction: ". $dbh->errstr); foreach my $statement (@schema) { if ( $statement =~ /^\s*;$/ ) { $is_local = 1; next; } my $sth = $dbh->prepare($statement) or return (0, "Couldn't prepare SQL query:\n$statement\n\nERROR: ". $dbh->errstr); unless ( $sth->execute or $is_local ) { return (0, "Couldn't run SQL query:\n$statement\n\nERROR: ". $sth->errstr); } } $dbh->commit or return (0, "Couldn't commit transaction: ". $dbh->errstr); return (1); } sub InsertIndexes { my $self = shift; my $dbh = shift; my $base_path = shift || $RT::EtcPath; my $db_type = RT->Config->Get('DatabaseType'); $dbh = $self->dbh if !$dbh && ref $self; return (0, "No DBI handle provided") unless $dbh; return (0, "'$base_path' doesn't exist") unless -e $base_path; my $path; if ( -d $base_path ) { $path = File::Spec->catfile( $base_path, "indexes"); return (0, "Couldn't find indexes file") unless -e $path; } else { $path = $base_path; } if ( $db_type eq 'Oracle' ) { my $db_user = RT->Config->Get('DatabaseUser'); my $status = $dbh->do( "ALTER SESSION SET CURRENT_SCHEMA=$db_user" ); unless ( $status ) { return $status, "Couldn't set current schema to $db_user." ."\nError: ". $dbh->errstr; } } local $@; eval { require $path; 1 } or return (0, "Couldn't execute '$path': " . $@); return (1); } =head1 GetVersionFile Takes base name of the file as argument, scans for - named files and returns file name with closest version to the version of the RT DB. =cut sub GetVersionFile { my $self = shift; my $dbh = shift; my $base_name = shift; my $db_version = ref $self ? $self->DatabaseVersion : do { my $tmp = RT::Handle->new; $tmp->dbh($dbh); $tmp->DatabaseVersion; }; require File::Glob; my @files = File::Glob::bsd_glob("$base_name*"); return '' unless @files; my %version = map { $_ =~ /\.\w+-([-\w\.]+)$/; ($1||0) => $_ } @files; my $version; foreach ( reverse sort cmp_version keys %version ) { if ( cmp_version( $db_version, $_ ) >= 0 ) { $version = $_; last; } } return defined $version? $version{ $version } : undef; } { my %word = ( a => -4, alpha => -4, b => -3, beta => -3, pre => -2, rc => -1, head => 9999, ); sub cmp_version($$) { my ($a, $b) = (@_); my @a = grep defined, map { /^[0-9]+$/? $_ : /^[a-zA-Z]+$/? $word{$_}|| -10 : undef } split /([^0-9]+)/, $a; my @b = grep defined, map { /^[0-9]+$/? $_ : /^[a-zA-Z]+$/? $word{$_}|| -10 : undef } split /([^0-9]+)/, $b; @a > @b ? push @b, (0) x (@a-@b) : push @a, (0) x (@b-@a); for ( my $i = 0; $i < @a; $i++ ) { return $a[$i] <=> $b[$i] if $a[$i] <=> $b[$i]; } return 0; } sub version_words { return keys %word; } } =head2 InsertInitialData Inserts system objects into RT's DB, like system user or 'nobody', internal groups and other records required. However, this method doesn't insert any real users like 'root' and you have to use InsertData or another way to do that. Takes no arguments. Returns status and message tuple. It's safe to call this method even if those objects already exist. =cut sub InsertInitialData { my $self = shift; my @warns; # avoid trying to canonicalize system users through ExternalAuth no warnings 'redefine'; local *RT::User::CanonicalizeUserInfo = sub { 1 }; # create RT_System user and grant him rights { require RT::CurrentUser; my $test_user = RT::User->new( RT::CurrentUser->new() ); $test_user->Load('RT_System'); if ( $test_user->id ) { push @warns, "Found system user in the DB."; } else { my $user = RT::User->new( RT::CurrentUser->new() ); my ( $val, $msg ) = $user->_BootstrapCreate( Name => 'RT_System', RealName => 'The RT System itself', Comments => 'Do not delete or modify this user. ' . 'It is integral to RT\'s internal database structures', Creator => '1', LastUpdatedBy => '1', ); return ($val, $msg) unless $val; } DBIx::SearchBuilder::Record::Cachable->FlushCache; } # init RT::SystemUser and RT::System objects RT::InitSystemObjects(); unless ( RT->SystemUser->id ) { return (0, "Couldn't load system user"); } # grant SuperUser right to system user { my $test_ace = RT::ACE->new( RT->SystemUser ); $test_ace->LoadByCols( PrincipalId => ACLEquivGroupId( RT->SystemUser->Id ), PrincipalType => 'Group', RightName => 'SuperUser', ObjectType => 'RT::System', ObjectId => 1, ); if ( $test_ace->id ) { push @warns, "System user has global SuperUser right."; } else { my $ace = RT::ACE->new( RT->SystemUser ); my ( $val, $msg ) = $ace->_BootstrapCreate( PrincipalId => ACLEquivGroupId( RT->SystemUser->Id ), PrincipalType => 'Group', RightName => 'SuperUser', ObjectType => 'RT::System', ObjectId => 1, ); return ($val, $msg) unless $val; } DBIx::SearchBuilder::Record::Cachable->FlushCache; } # system groups # $self->loc('Everyone'); # For the string extractor to get a string to localize # $self->loc('Privileged'); # For the string extractor to get a string to localize # $self->loc('Unprivileged'); # For the string extractor to get a string to localize foreach my $name (qw(Everyone Privileged Unprivileged)) { my $group = RT::Group->new( RT->SystemUser ); $group->LoadSystemInternalGroup( $name ); if ( $group->id ) { push @warns, "System group '$name' already exists."; next; } $group = RT::Group->new( RT->SystemUser ); my ( $val, $msg ) = $group->_Create( Domain => 'SystemInternal', Description => 'Pseudogroup for internal use', # loc Name => $name, Instance => '', ); return ($val, $msg) unless $val; } # nobody { my $user = RT::User->new( RT->SystemUser ); $user->Load('Nobody'); if ( $user->id ) { push @warns, "Found 'Nobody' user in the DB."; } else { my ( $val, $msg ) = $user->Create( Name => 'Nobody', RealName => 'Nobody in particular', Comments => 'Do not delete or modify this user. It is integral ' .'to RT\'s internal data structures', Privileged => 0, ); return ($val, $msg) unless $val; } if ( $user->HasRight( Right => 'OwnTicket', Object => $RT::System ) ) { push @warns, "User 'Nobody' has global OwnTicket right."; } else { my ( $val, $msg ) = $user->PrincipalObj->GrantRight( Right => 'OwnTicket', Object => $RT::System, ); return ($val, $msg) unless $val; } } # rerun to get init Nobody as well RT::InitSystemObjects(); # system role groups foreach my $name (qw(Owner Requestor Cc AdminCc)) { my $group = RT->System->RoleGroup( $name ); if ( $group->id ) { push @warns, "System role '$name' already exists."; next; } $group = RT::Group->new( RT->SystemUser ); my ( $val, $msg ) = $group->CreateRoleGroup( Name => $name, Object => RT->System, Description => 'SystemRolegroup for internal use', # loc InsideTransaction => 0, ); return ($val, $msg) unless $val; } # assets role groups foreach my $name (RT::Asset->Roles) { next if $name eq "Owner"; my $group = RT->System->RoleGroup( $name ); if ( $group->id ) { push @warns, "Assets role '$name' already exists."; next; } $group = RT::Group->new( RT->SystemUser ); my ($val, $msg) = $group->CreateRoleGroup( Object => RT->System, Name => $name, InsideTransaction => 0, ); return ($val, $msg) unless $val; } push @warns, "You appear to have a functional RT database." if @warns; return (1, join "\n", @warns); } =head2 InsertData Load some sort of data into the database, takes path to a file. =cut sub InsertData { my $self = shift; my $datafile = shift; my $root_password = shift; my %args = ( disconnect_after => 1, @_ ); # Slurp in stuff to insert from the datafile. Possible things to go in here:- our (@Groups, @Users, @Members, @ACL, @Queues, @Classes, @ScripActions, @ScripConditions, @Templates, @CustomFields, @CustomRoles, @Scrips, @Attributes, @Initial, @Final, @Catalogs, @Assets); local (@Groups, @Users, @Members, @ACL, @Queues, @Classes, @ScripActions, @ScripConditions, @Templates, @CustomFields, @CustomRoles, @Scrips, @Attributes, @Initial, @Final, @Catalogs, @Assets); local $@; $RT::Logger->debug("Going to load '$datafile' data file"); my $datafile_content = do { local $/; open (my $f, '<:encoding(UTF-8)', $datafile) or die "Cannot open initialdata file '$datafile' for read: $@"; <$f>; }; my $format_handler; my $handlers = RT->Config->Get('InitialdataFormatHandlers'); foreach my $handler_candidate (@$handlers) { next if $handler_candidate eq 'perl'; $handler_candidate->require or die "Config option InitialdataFormatHandlers lists '$handler_candidate', but it failed to load:\n$@\n"; if ($handler_candidate->CanLoad($datafile_content)) { $RT::Logger->debug("Initialdata file '$datafile' can be loaded by $handler_candidate"); $format_handler = $handler_candidate; last; } else { $RT::Logger->debug("Initialdata file '$datafile' can not be loaded by $handler_candidate"); } } if ( $format_handler ) { $format_handler->Load( $datafile_content, { Groups => \@Groups, Users => \@Users, Members => \@Members, ACL => \@ACL, Queues => \@Queues, Classes => \@Classes, ScripActions => \@ScripActions, ScripConditions => \@ScripConditions, Templates => \@Templates, CustomFields => \@CustomFields, CustomRoles => \@CustomRoles, Scrips => \@Scrips, Attributes => \@Attributes, Initial => \@Initial, Final => \@Final, Catalogs => \@Catalogs, Assets => \@Assets, }, ) or return (0, "Couldn't load data from '$datafile' for import:\n\nERROR:" . $@); } if ( !$format_handler and grep(/^perl$/, @$handlers) ) { # Use perl-style initialdata # Note: eval of perl initialdata should only be done once eval { require $datafile } or return (0, "Couldn't load data from '$datafile':\nERROR:" . $@ . "\n\nDo you have the correct initialdata handler in RT_Config for this type of file?"); } if ( @Initial ) { $RT::Logger->debug("Running initial actions..."); foreach ( @Initial ) { local $@; eval { $_->(); 1 } or return (0, "One of initial functions failed: $@"); } $RT::Logger->debug("Done."); } if ( @Groups ) { $RT::Logger->debug("Creating groups..."); foreach my $item (@Groups) { my $attributes = delete $item->{ Attributes }; my $new_entry = RT::Group->new( RT->SystemUser ); $item->{'Domain'} ||= 'UserDefined'; my $member_of = delete $item->{'MemberOf'}; my $members = delete $item->{'Members'}; my ( $return, $msg ) = $new_entry->_Create(%$item); unless ( $return ) { $RT::Logger->error( $msg ); next; } else { $RT::Logger->debug($return ."."); $_->{Object} = $new_entry for @{$attributes || []}; push @Attributes, @{$attributes || []}; } if ( $member_of ) { $member_of = [ $member_of ] unless ref $member_of eq 'ARRAY'; foreach( @$member_of ) { my $parent = RT::Group->new(RT->SystemUser); if ( ref $_ eq 'HASH' ) { $parent->LoadByCols( %$_ ); } elsif ( !ref $_ ) { $parent->LoadUserDefinedGroup( $_ ); } else { $RT::Logger->error( "(Error: wrong format of MemberOf field." ." Should be name of user defined group or" ." hash reference with 'column => value' pairs." ." Use array reference to add to multiple groups)" ); next; } unless ( $parent->Id ) { $RT::Logger->error("(Error: couldn't load group to add member)"); next; } my ( $return, $msg ) = $parent->AddMember( $new_entry->Id ); unless ( $return ) { $RT::Logger->error( $msg ); } else { $RT::Logger->debug( $return ."." ); } } } push @Members, map { +{Group => $new_entry->id, Class => "RT::User", Name => $_} } @{ $members->{Users} || [] }; push @Members, map { +{Group => $new_entry->id, Class => "RT::Group", Name => $_} } @{ $members->{Groups} || [] }; } $RT::Logger->debug("done."); } if ( @Users ) { $RT::Logger->debug("Creating users..."); foreach my $item (@Users) { my $member_of = delete $item->{'MemberOf'}; if ( $item->{'Name'} eq 'root' && $root_password ) { $item->{'Password'} = $root_password; } my $attributes = delete $item->{ Attributes }; no warnings 'redefine'; local *RT::User::CanonicalizeUserInfo = sub { 1 } if delete $item->{ SkipCanonicalize }; my $new_entry = RT::User->new( RT->SystemUser ); my ( $return, $msg ) = $new_entry->Create(%$item); unless ( $return ) { $RT::Logger->error( $msg ); } else { $RT::Logger->debug( $return ."." ); $_->{Object} = $new_entry for @{$attributes || []}; push @Attributes, @{$attributes || []}; } if ( $member_of ) { $member_of = [ $member_of ] unless ref $member_of eq 'ARRAY'; foreach( @$member_of ) { my $parent = RT::Group->new($RT::SystemUser); if ( ref $_ eq 'HASH' ) { $parent->LoadByCols( %$_ ); } elsif ( !ref $_ ) { $parent->LoadUserDefinedGroup( $_ ); } else { $RT::Logger->error( "(Error: wrong format of MemberOf field." ." Should be name of user defined group or" ." hash reference with 'column => value' pairs." ." Use array reference to add to multiple groups)" ); next; } unless ( $parent->Id ) { $RT::Logger->error("(Error: couldn't load group to add member)"); next; } my ( $return, $msg ) = $parent->AddMember( $new_entry->Id ); unless ( $return ) { $RT::Logger->error( $msg ); } else { $RT::Logger->debug( $return ."." ); } } } } $RT::Logger->debug("done."); } if ( @Members ) { $RT::Logger->debug("Adding users and groups to groups..."); for my $item (@Members) { my $group = RT::Group->new(RT->SystemUser); $group->LoadUserDefinedGroup( delete $item->{Group} ); unless ($group->Id) { RT->Logger->error("Unable to find group '$group' to add members to"); next; } my $class = delete $item->{Class} || 'RT::User'; my $member = $class->new( RT->SystemUser ); $item->{Domain} = 'UserDefined' if $member->isa("RT::Group"); $member->LoadByCols( %$item ); unless ($member->Id) { RT->Logger->error("Unable to find $class '".($item->{id} || $item->{Name})."' to add to ".$group->Name); next; } my ( $return, $msg) = $group->AddMember( $member->PrincipalObj->Id ); unless ( $return ) { $RT::Logger->error( $msg ); } else { $RT::Logger->debug( $return ."." ); } } } if ( @Queues ) { $RT::Logger->debug("Creating queues..."); for my $item (@Queues) { my $attributes = delete $item->{ Attributes }; my $new_entry = RT::Queue->new(RT->SystemUser); my ( $return, $msg ) = $new_entry->Create(%$item); unless ( $return ) { $RT::Logger->error( $msg ); } else { $RT::Logger->debug( $return ."." ); $_->{Object} = $new_entry for @{$attributes || []}; push @Attributes, @{$attributes || []}; } } $RT::Logger->debug("done."); } if ( @Classes ) { $RT::Logger->debug("Creating classes..."); for my $item (@Classes) { my $attributes = delete $item->{ Attributes }; # Back-compat for the old "Queue" argument if ( exists $item->{'Queue'} ) { $item->{'ApplyTo'} = delete $item->{'Queue'}; } my $apply_to = delete $item->{'ApplyTo'}; my $new_entry = RT::Class->new(RT->SystemUser); my ( $return, $msg ) = $new_entry->Create(%$item); unless ( $return ) { $RT::Logger->error( $msg ); } else { $RT::Logger->debug( $return ."." ); if ( !$apply_to ) { ( $return, $msg) = $new_entry->AddToObject( RT::Queue->new(RT->SystemUser) ); $RT::Logger->error( $msg ) unless $return; } else { $apply_to = [ $apply_to ] unless ref $apply_to; for my $name ( @{ $apply_to } ) { my $queue = RT::Queue->new( RT->SystemUser ); $queue->Load( $name ); if ( $queue->id ) { ( $return, $msg) = $new_entry->AddToObject( $queue ); $RT::Logger->error( $msg ) unless $return; } else { $RT::Logger->error( "Could not find RT::Queue $name to apply " . $new_entry->Name . " to" ); } } } $_->{Object} = $new_entry for @{$attributes || []}; push @Attributes, @{$attributes || []}; } } $RT::Logger->debug("done."); } if ( @Catalogs ) { $RT::Logger->debug("Creating Catalogs..."); for my $item (@Catalogs) { my $new_entry = RT::Catalog->new(RT->SystemUser); my ( $return, $msg ) = $new_entry->Create(%$item); unless ( $return ) { $RT::Logger->error( $msg ); } else { $RT::Logger->debug( $return ."." ); } } $RT::Logger->debug("done."); } if ( @Assets ) { $RT::Logger->debug("Creating Assets..."); for my $item (@Catalogs) { my $new_entry = RT::Asset->new(RT->SystemUser); my ( $return, $msg ) = $new_entry->Create(%$item); unless ( $return ) { $RT::Logger->error( $msg ); } else { $RT::Logger->debug( $return ."." ); } } $RT::Logger->debug("done."); } if ( @CustomFields ) { $RT::Logger->debug("Creating custom fields..."); for my $item ( @CustomFields ) { my $attributes = delete $item->{ Attributes }; my $new_entry = RT::CustomField->new( RT->SystemUser ); my $values = delete $item->{'Values'}; # Back-compat for the old "Queue" argument if ( exists $item->{'Queue'} ) { $item->{'LookupType'} ||= 'RT::Queue-RT::Ticket'; $RT::Logger->warn("Queue provided for non-ticket custom field") unless $item->{'LookupType'} =~ /^RT::Queue-/; $item->{'ApplyTo'} = delete $item->{'Queue'}; } my $apply_to = delete $item->{'ApplyTo'}; if ( $item->{'BasedOn'} ) { if ( $item->{'BasedOn'} =~ /^\d+$/) { # Already have an ID -- should be fine } elsif ( $item->{'LookupType'} ) { my $basedon = RT::CustomField->new($RT::SystemUser); my ($ok, $msg ) = $basedon->LoadByCols( Name => $item->{'BasedOn'}, LookupType => $item->{'LookupType'}, Disabled => 0 ); if ($ok) { $item->{'BasedOn'} = $basedon->Id; } else { $RT::Logger->error("Unable to load $item->{BasedOn} as a $item->{LookupType} CF. Skipping BasedOn: $msg"); delete $item->{'BasedOn'}; } } else { $RT::Logger->error("Unable to load CF $item->{BasedOn} because no LookupType was specified. Skipping BasedOn"); delete $item->{'BasedOn'}; } } my ( $return, $msg ) = $new_entry->Create(%$item); unless( $return ) { $RT::Logger->error( $msg ); next; } foreach my $value ( @{$values} ) { ( $return, $msg ) = $new_entry->AddValue(%$value); $RT::Logger->error( $msg ) unless $return; } my $class = $new_entry->RecordClassFromLookupType; if ($class) { if ($new_entry->IsOnlyGlobal and $apply_to) { $RT::Logger->warn("ApplyTo provided for global custom field ".$new_entry->Name ); undef $apply_to; } if ( !$apply_to ) { # Apply to all by default my $ocf = RT::ObjectCustomField->new(RT->SystemUser); ( $return, $msg) = $ocf->Create( CustomField => $new_entry->Id ); $RT::Logger->error( $msg ) unless $return and $ocf->Id; } else { $apply_to = [ $apply_to ] unless ref $apply_to; for my $name ( @{ $apply_to } ) { my $obj = $class->new(RT->SystemUser); $obj->Load($name); if ( $obj->Id ) { my $ocf = RT::ObjectCustomField->new(RT->SystemUser); ( $return, $msg ) = $ocf->Create( CustomField => $new_entry->Id, ObjectId => $obj->Id, ); $RT::Logger->error( $msg ) unless $return and $ocf->Id; } else { $RT::Logger->error("Could not find $class $name to apply ".$new_entry->Name." to" ); } } } } $_->{Object} = $new_entry for @{$attributes || []}; push @Attributes, @{$attributes || []}; } $RT::Logger->debug("done."); } if ( @CustomRoles ) { $RT::Logger->debug("Creating custom roles..."); for my $item ( @CustomRoles ) { my $attributes = delete $item->{ Attributes }; my $apply_to = delete $item->{'ApplyTo'}; my $new_entry = RT::CustomRole->new( RT->SystemUser ); my ( $ok, $msg ) = $new_entry->Create(%$item); if (!$ok) { $RT::Logger->error($msg); next; } if ($apply_to) { $apply_to = [ $apply_to ] unless ref $apply_to; for my $name ( @{ $apply_to } ) { my ($ok, $msg) = $new_entry->AddToObject($name); $RT::Logger->error( $msg ) if !$ok; } } $_->{Object} = $new_entry for @{$attributes || []}; push @Attributes, @{$attributes || []}; } $RT::Logger->debug("done."); } if ( @ACL ) { $RT::Logger->debug("Creating ACL..."); for my $item (@ACL) { my ($princ, $object); # Global rights or Queue rights? if ( $item->{'CF'} ) { $object = RT::CustomField->new( RT->SystemUser ); my @columns = ( Name => $item->{'CF'} ); push @columns, LookupType => $item->{'LookupType'} if $item->{'LookupType'}; push @columns, ObjectId => $item->{'ObjectId'} if $item->{'ObjectId'}; push @columns, Queue => $item->{'Queue'} if $item->{'Queue'} and not ref $item->{'Queue'}; my ($ok, $msg) = $object->LoadByName( @columns ); unless ( $ok ) { RT->Logger->error("Unable to load CF ".$item->{CF}.": $msg"); next; } } elsif ( $item->{'Queue'} ) { $object = RT::Queue->new(RT->SystemUser); my ($ok, $msg) = $object->Load( $item->{'Queue'} ); unless ( $ok ) { RT->Logger->error("Unable to load queue ".$item->{Queue}.": $msg"); next; } } elsif ( $item->{ObjectType} and $item->{ObjectId}) { $object = $item->{ObjectType}->new(RT->SystemUser); my ($ok, $msg) = $object->Load( $item->{ObjectId} ); unless ( $ok ) { RT->Logger->error("Unable to load ".$item->{ObjectType}." ".$item->{ObjectId}.": $msg"); next; } } else { $object = $RT::System; } # Group rights or user rights? if ( $item->{'GroupDomain'} ) { if (my $role_name = delete $item->{CustomRole}) { my $role = RT::CustomRole->new(RT->SystemUser); $role->Load($role_name); $item->{'GroupType'} = $role->GroupType; } $princ = RT::Group->new(RT->SystemUser); if ( $item->{'GroupDomain'} eq 'UserDefined' ) { $princ->LoadUserDefinedGroup( $item->{'GroupId'} ); } elsif ( $item->{'GroupDomain'} eq 'SystemInternal' ) { $princ->LoadSystemInternalGroup( $item->{'GroupType'} ); } elsif ( $item->{'GroupDomain'} eq 'RT::System-Role' ) { $princ->LoadRoleGroup( Object => RT->System, Name => $item->{'GroupType'} ); } elsif ( $item->{'GroupDomain'} eq 'RT::Queue-Role' && $item->{'Queue'} ) { $princ->LoadRoleGroup( Object => $object, Name => $item->{'GroupType'} ); } else { $princ->Load( $item->{'GroupId'} ); } unless ( $princ->Id ) { RT->Logger->error("Unable to load Group: GroupDomain => $item->{GroupDomain}, GroupId => $item->{GroupId}, Queue => $item->{Queue}"); next; } } else { $princ = RT::User->new(RT->SystemUser); my ($ok, $msg) = $princ->Load( $item->{'UserId'} ); unless ( $ok ) { RT->Logger->error("Unable to load user: $item->{UserId} : $msg"); next; } } # Grant it my @rights = ref($item->{'Right'}) eq 'ARRAY' ? @{$item->{'Right'}} : $item->{'Right'}; foreach my $right ( @rights ) { my ( $return, $msg ) = $princ->PrincipalObj->GrantRight( Right => $right, Object => $object ); unless ( $return ) { $RT::Logger->error( $msg ); } else { $RT::Logger->debug( $return ."." ); } } } $RT::Logger->debug("done."); } if ( @ScripActions ) { $RT::Logger->debug("Creating ScripActions..."); for my $item (@ScripActions) { my $new_entry = RT::ScripAction->new(RT->SystemUser); my ( $return, $msg ) = $new_entry->Create(%$item); unless ( $return ) { $RT::Logger->error( $msg ); } else { $RT::Logger->debug( $return ."." ); } } $RT::Logger->debug("done."); } if ( @ScripConditions ) { $RT::Logger->debug("Creating ScripConditions..."); for my $item (@ScripConditions) { my $new_entry = RT::ScripCondition->new(RT->SystemUser); my ( $return, $msg ) = $new_entry->Create(%$item); unless ( $return ) { $RT::Logger->error( $msg ); } else { $RT::Logger->debug( $return ."." ); } } $RT::Logger->debug("done."); } if ( @Templates ) { $RT::Logger->debug("Creating templates..."); for my $item (@Templates) { my $new_entry = RT::Template->new(RT->SystemUser); my ( $return, $msg ) = $new_entry->Create(%$item); unless ( $return ) { $RT::Logger->error( $msg ); } else { $RT::Logger->debug( $return ."." ); } } $RT::Logger->debug("done."); } if ( @Scrips ) { $RT::Logger->debug("Creating scrips..."); for my $item (@Scrips) { my $new_entry = RT::Scrip->new(RT->SystemUser); my @queues = ref $item->{'Queue'} eq 'ARRAY'? @{ $item->{'Queue'} }: $item->{'Queue'} || 0; push @queues, 0 unless @queues; # add global queue at least my ( $return, $msg ) = $new_entry->Create( %$item, Queue => shift @queues ); unless ( $return ) { $RT::Logger->error( $msg ); next; } else { $RT::Logger->debug( $return ."." ); } foreach my $q ( @queues ) { my ($return, $msg) = $new_entry->AddToObject( ObjectId => $q, Stage => $item->{'Stage'}, ); $RT::Logger->error( "Couldn't apply scrip to $q: $msg" ) unless $return; } } $RT::Logger->debug("done."); } if ( @Attributes ) { $RT::Logger->debug("Creating attributes..."); my $sys = RT::System->new(RT->SystemUser); for my $item (@Attributes) { my $obj = delete $item->{Object}; if ( ref $obj eq 'CODE' ) { $obj = $obj->(); } $obj ||= $sys; my ( $return, $msg ) = $obj->AddAttribute (%$item); unless ( $return ) { $RT::Logger->error( $msg ); } else { $RT::Logger->debug( $return ."." ); } } $RT::Logger->debug("done."); } if ( @Final ) { $RT::Logger->debug("Running final actions..."); for ( @Final ) { local $@; eval { $_->(); }; $RT::Logger->error( "Failed to run one of final actions: $@" ) if $@; } $RT::Logger->debug("done."); } # XXX: This disconnect doesn't really belong here; it's a relict from when # this method was extracted from rt-setup-database. However, too much # depends on it to change without significant testing. At the very least, # we can provide a way to skip the side-effect. if ( $args{disconnect_after} ) { my $db_type = RT->Config->Get('DatabaseType'); $RT::Handle->Disconnect() unless $db_type eq 'SQLite'; } $RT::Logger->debug("Done setting up database content."); # TODO is it ok to return 1 here? If so, the previous codes in this sub # should return (0, $msg) if error happens instead of just warning. # anyway, we need to return something here to tell if everything is ok return( 1, 'Done inserting data' ); } =head2 ACLEquivGroupId Given a userid, return that user's acl equivalence group =cut sub ACLEquivGroupId { my $id = shift; my $cu = RT->SystemUser; unless ( $cu ) { require RT::CurrentUser; $cu = RT::CurrentUser->new; $cu->LoadByName('RT_System'); warn "Couldn't load RT_System user" unless $cu->id; } my $equiv_group = RT::Group->new( $cu ); $equiv_group->LoadACLEquivalenceGroup( $id ); return $equiv_group->Id; } =head2 QueryHistory Returns the SQL query history associated with this handle. The top level array represents a lists of request. Each request is a hash with metadata about the request (such as the URL) and a list of queries. You'll probably not be using this. =cut sub QueryHistory { my $self = shift; return $self->{QueryHistory}; } =head2 AddRequestToHistory Adds a web request to the query history. It must be a hash with keys Path (a string) and Queries (an array reference of arrays, where elements are time, sql, bind parameters, and duration). =cut sub AddRequestToHistory { my $self = shift; my $request = shift; push @{ $self->{QueryHistory} }, $request; } =head2 Quote Returns the parameter quoted by DBI. B Use bind parameters (C) instead. This is used only outside the scope of interacting with the database. =cut sub Quote { my $self = shift; my $value = shift; return $self->dbh->quote($value); } =head2 FillIn Takes a SQL query and an array reference of bind parameters and fills in the query's C parameters. =cut sub FillIn { my $self = shift; my $sql = shift; my $bind = shift; my $b = 0; # is this regex sufficient? $sql =~ s{\?}{$self->Quote($bind->[$b++])}eg; return $sql; } sub Indexes { my $self = shift; my %res; my $db_type = RT->Config->Get('DatabaseType'); my $dbh = $self->dbh; my $list; if ( $db_type eq 'mysql' ) { $list = $dbh->selectall_arrayref( 'select distinct table_name, index_name from information_schema.statistics where table_schema = ?', undef, scalar RT->Config->Get('DatabaseName') ); } elsif ( $db_type eq 'Pg' ) { $list = $dbh->selectall_arrayref( 'select tablename, indexname from pg_indexes', undef, ); } elsif ( $db_type eq 'SQLite' ) { $list = $dbh->selectall_arrayref( 'select tbl_name, name from sqlite_master where type = ?', undef, 'index' ); } elsif ( $db_type eq 'Oracle' ) { $list = $dbh->selectall_arrayref( 'select table_name, index_name from all_indexes where index_name NOT LIKE ? AND lower(Owner) = ?', undef, 'SYS_%$$', lc RT->Config->Get('DatabaseUser'), ); } else { die "Not implemented"; } push @{ $res{ lc $_->[0] } ||= [] }, lc $_->[1] foreach @$list; return %res; } sub IndexesThatBeginWith { my $self = shift; my %args = (Table => undef, Columns => [], @_); my %indexes = $self->Indexes; my @check = @{ $args{'Columns'} }; my @list; foreach my $index ( @{ $indexes{ lc $args{'Table'} } || [] } ) { my %info = $self->IndexInfo( Table => $args{'Table'}, Name => $index ); next if @{ $info{'Columns'} } < @check; my $check = join ',', @check; next if join( ',', @{ $info{'Columns'} } ) !~ /^\Q$check\E(?:,|$)/i; push @list, \%info; } return sort { @{ $a->{'Columns'} } <=> @{ $b->{'Columns'} } } @list; } sub IndexInfo { my $self = shift; my %args = (Table => undef, Name => undef, @_); my $db_type = RT->Config->Get('DatabaseType'); my $dbh = $self->dbh; my %res = ( Table => lc $args{'Table'}, Name => lc $args{'Name'}, ); if ( $db_type eq 'mysql' ) { my $list = $dbh->selectall_arrayref( 'select NON_UNIQUE, COLUMN_NAME, SUB_PART from information_schema.statistics where table_schema = ? AND LOWER(table_name) = ? AND index_name = ? ORDER BY SEQ_IN_INDEX', undef, scalar RT->Config->Get('DatabaseName'), lc $args{'Table'}, $args{'Name'}, ); return () unless $list && @$list; $res{'Unique'} = $list->[0][0]? 0 : 1; $res{'Functional'} = 0; $res{'Columns'} = [ map $_->[1], @$list ]; } elsif ( $db_type eq 'Pg' ) { my $index = $dbh->selectrow_hashref( 'select ix.*, pg_get_expr(ix.indexprs, ix.indrelid) as functions from pg_class t, pg_class i, pg_index ix where t.relname ilike ? and t.relkind = ? and i.relname ilike ? and ix.indrelid = t.oid and ix.indexrelid = i.oid ', undef, $args{'Table'}, 'r', $args{'Name'}, ); return () unless $index && keys %$index; $res{'Unique'} = $index->{'indisunique'}; $res{'Functional'} = (grep $_ == 0, split ' ', $index->{'indkey'})? 1 : 0; $res{'Columns'} = [ map int($_), split ' ', $index->{'indkey'} ]; my $columns = $dbh->selectall_hashref( 'select a.attnum, a.attname from pg_attribute a where a.attrelid = ?', 'attnum', undef, $index->{'indrelid'} ); if ($index->{'functions'}) { # XXX: this is good enough for us $index->{'functions'} = [ split /,\s+/, $index->{'functions'} ]; } foreach my $e ( @{ $res{'Columns'} } ) { if (exists $columns->{$e} ) { $e = $columns->{$e}{'attname'}; } elsif ( !$e ) { $e = shift @{ $index->{'functions'} }; } } foreach my $column ( @{$res{'Columns'}} ) { next unless $column =~ s/^lower\( \s* \(? (\w+) \)? (?:::text)? \s* \)$/$1/ix; $res{'CaseInsensitive'}{ lc $1 } = 1; } } elsif ( $db_type eq 'SQLite' ) { my $list = $dbh->selectall_arrayref("pragma index_info('$args{'Name'}')"); return () unless $list && @$list; $res{'Functional'} = 0; $res{'Columns'} = [ map $_->[2], @$list ]; $list = $dbh->selectall_arrayref("pragma index_list('$args{'Table'}')"); $res{'Unique'} = (grep lc $_->[1] eq lc $args{'Name'}, @$list)[0][2]? 1 : 0; } elsif ( $db_type eq 'Oracle' ) { my $index = $dbh->selectrow_arrayref( 'select uniqueness, funcidx_status from all_indexes where lower(table_name) = ? AND lower(index_name) = ? AND LOWER(Owner) = ?', undef, lc $args{'Table'}, lc $args{'Name'}, lc RT->Config->Get('DatabaseUser'), ); return () unless $index && @$index; $res{'Unique'} = $index->[0] eq 'UNIQUE'? 1 : 0; $res{'Functional'} = $index->[1] ? 1 : 0; my %columns = map @$_, @{ $dbh->selectall_arrayref( 'select column_position, column_name from all_ind_columns where lower(table_name) = ? AND lower(index_name) = ? AND LOWER(index_owner) = ?', undef, lc $args{'Table'}, lc $args{'Name'}, lc RT->Config->Get('DatabaseUser'), ) }; $columns{ $_->[0] } = $_->[1] foreach @{ $dbh->selectall_arrayref( 'select column_position, column_expression from all_ind_expressions where lower(table_name) = ? AND lower(index_name) = ? AND LOWER(index_owner) = ?', undef, lc $args{'Table'}, lc $args{'Name'}, lc RT->Config->Get('DatabaseUser'), ) }; $res{'Columns'} = [ map $columns{$_}, sort { $a <=> $b } keys %columns ]; foreach my $column ( @{$res{'Columns'}} ) { next unless $column =~ s/^lower\( \s* " (\w+) " \s* \)$/$1/ix; $res{'CaseInsensitive'}{ lc $1 } = 1; } } else { die "Not implemented"; } $_ = lc $_ foreach @{ $res{'Columns'} }; return %res; } sub DropIndex { my $self = shift; my %args = (Table => undef, Name => undef, @_); my $db_type = RT->Config->Get('DatabaseType'); my $dbh = $self->dbh; local $dbh->{'PrintError'} = 0; local $dbh->{'RaiseError'} = 0; my $res; if ( $db_type eq 'mysql' ) { $args{'Table'} = $self->_CanonicTableNameMysql( $args{'Table'} ); $res = $dbh->do( 'drop index '. $dbh->quote_identifier($args{'Name'}) ." on $args{'Table'}", ); } elsif ( $db_type eq 'Pg' ) { $res = $dbh->do("drop index $args{'Name'} CASCADE"); } elsif ( $db_type eq 'SQLite' ) { $res = $dbh->do("drop index $args{'Name'}"); } elsif ( $db_type eq 'Oracle' ) { my $user = RT->Config->Get('DatabaseUser'); # Check if it has constraints associated with it my ($constraint) = $dbh->selectrow_arrayref( 'SELECT constraint_name, table_name FROM all_constraints WHERE LOWER(owner) = ? AND LOWER(index_name) = ?', undef, lc $user, lc $args{'Name'} ); if ($constraint) { my ($constraint_name, $table) = @{$constraint}; $res = $dbh->do("ALTER TABLE $user.$table DROP CONSTRAINT $constraint_name"); } else { $res = $dbh->do("DROP INDEX $user.$args{'Name'}"); } } else { die "Not implemented"; } my $desc = $self->IndexDescription( %args ); return ($res, $res? "Dropped $desc" : "Couldn't drop $desc: ". $dbh->errstr); } sub _CanonicTableNameMysql { my $self = shift; my $table = shift; return $table unless $table; # table name can be case sensitivity in DDL # use LOWER to workaround mysql "bug" return ($self->dbh->selectrow_array( 'SELECT table_name FROM information_schema.tables WHERE table_schema = ? AND LOWER(table_name) = ?', undef, scalar RT->Config->Get('DatabaseName'), lc $table ))[0] || $table; } sub DropIndexIfExists { my $self = shift; my %args = (Table => undef, Name => undef, @_); my %indexes = $self->Indexes; return (1, ucfirst($self->IndexDescription( %args )) ." doesn't exists") unless grep $_ eq lc $args{'Name'}, @{ $indexes{ lc $args{'Table'} } || []}; return $self->DropIndex(%args); } sub CreateIndex { my $self = shift; my %args = ( Table => undef, Name => undef, Columns => [], CaseInsensitive => {}, @_ ); $args{'Table'} = $self->_CanonicTableNameMysql( $args{'Table'} ) if RT->Config->Get('DatabaseType') eq 'mysql'; my $name = $args{'Name'}; unless ( $name ) { my %indexes = $self->Indexes; %indexes = map { $_ => 1 } @{ $indexes{ lc $args{'Table'} } || [] }; my $i = 1; $i++ while $indexes{ lc($args{'Table'}).$i }; $name = lc($args{'Table'}).$i; } my @columns = @{ $args{'Columns'} }; if ( $self->CaseSensitive ) { foreach my $column ( @columns ) { next unless $args{'CaseInsensitive'}{ lc $column }; $column = "LOWER($column)"; } } my $sql = "CREATE" . ($args{'Unique'}? ' UNIQUE' : '') ." INDEX $name ON $args{'Table'}" ."(". join( ', ', @columns ) .")" ; my $res = $self->dbh->do( $sql ); unless ( $res ) { return ( undef, "Failed to create ". $self->IndexDescription( %args ) ." (sql: $sql): ". $self->dbh->errstr ); } return ($name, "Created ". $self->IndexDescription( %args ) ); } sub IndexDescription { my $self = shift; my %args = (@_); my $desc = ($args{'Unique'}? 'unique ' : '') .'index' . ($args{'Name'}? " $args{'Name'}" : '') . ( @{$args{'Columns'}||[]}? " (" . join(', ', @{$args{'Columns'}}) . (@{$args{'Optional'}||[]}? '['. join(', ', '', @{$args{'Optional'}}).']' : '' ) .")" : '' ) . ($args{'Table'}? " on $args{'Table'}" : '') ; return $desc; } sub MakeSureIndexExists { my $self = shift; my %args = ( Table => undef, Columns => [], Optional => [], @_ ); my @list = $self->IndexesThatBeginWith( Table => $args{'Table'}, Columns => [@{$args{'Columns'}}, @{$args{'Optional'}}], ); if (@list) { RT->Logger->debug( ucfirst $self->IndexDescription( Table => $args{'Table'}, Columns => [@{$args{'Columns'}}, @{$args{'Optional'}}], ). ' exists.' ); return; } @list = $self->IndexesThatBeginWith( Table => $args{'Table'}, Columns => $args{'Columns'}, ); if ( !@list ) { my ($status, $msg) = $self->CreateIndex( Table => $args{'Table'}, Columns => [@{$args{'Columns'}}, @{$args{'Optional'}}], ); my $method = $status ? 'debug' : 'warning'; RT->Logger->$method($msg); } else { RT->Logger->info( ucfirst $self->IndexDescription( %{$list[0]} ) .' exists, you may consider replacing it with ' . $self->IndexDescription( Table => $args{'Table'}, Columns => [@{$args{'Columns'}}, @{$args{'Optional'}}], ) ); } } sub DropIndexesThatArePrefix { my $self = shift; my %args = ( Table => undef, Columns => [], @_ ); my @list = $self->IndexesThatBeginWith( Table => $args{'Table'}, Columns => [$args{'Columns'}[0]], ); my $checking = join ',', map lc $_, @{ $args{'Columns'} }, ''; foreach my $i ( splice @list ) { my $columns = join ',', @{ $i->{'Columns'} }, ''; next unless $checking =~ /^\Q$columns/i; push @list, $i; } pop @list; foreach my $i ( @list ) { my ($status, $msg) = $self->DropIndex( Table => $i->{'Table'}, Name => $i->{'Name'}, ); my $method = $status ? 'debug' : 'warning'; RT->Logger->$method($msg); } } # log a mason stack trace instead of a Carp::longmess because it's less painful # and uses mason component paths properly sub _LogSQLStatement { my $self = shift; my $statement = shift; my $duration = shift; my @bind = @_; require HTML::Mason::Exceptions; push @{$self->{'StatementLog'}} , ([Time::HiRes::time(), $statement, [@bind], $duration, HTML::Mason::Exception->new->as_string]); } # helper in a few cases where we do SQL by hand sub __MakeClauseCaseInsensitive { my $self = shift; return join ' ', @_ unless $self->CaseSensitive; my ($field, $op, $value) = $self->_MakeClauseCaseInsensitive(@_); return "$field $op $value"; } sub _TableNames { my $self = shift; my $dbh = shift || $self->dbh; { local $@; if ( $dbh->{Driver}->{Name} eq 'Pg' && $dbh->{'pg_server_version'} >= 90200 && !eval { DBD::Pg->VERSION('2.19.3'); 1 } ) { die "You're using PostgreSQL 9.2 or newer. You have to upgrade DBD::Pg module to 2.19.3 or newer: $@"; } } my @res; my $sth = $dbh->table_info( '', undef, undef, "'TABLE'"); while ( my $table = $sth->fetchrow_hashref ) { push @res, $table->{TABLE_NAME} || $table->{table_name}; } return @res; } __PACKAGE__->FinalizeDatabaseType; RT::Base->_ImportOverlays(); 1; rt-4.4.2/lib/RT/Record/0000775000175000017500000000000013131430353014343 5ustar vagrantvagrantrt-4.4.2/lib/RT/Record/Role.pm0000664000175000017500000000474413131430353015613 0ustar vagrantvagrant# BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: # # This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) # # # LICENSE: # # This work is made available to you under the terms of Version 2 of # the GNU General Public License. A copy of that license should have # been provided with this software, but in any event can be snarfed # from www.gnu.org. # # This work is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 or visit their web page on the internet at # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. # # # CONTRIBUTION SUBMISSION POLICY: # # (The following paragraph is not intended to limit the rights granted # to you to modify and distribute this software under the terms of # the GNU General Public License and is only of importance to you if # you choose to contribute your changes and enhancements to the # community by submitting them to Best Practical Solutions, LLC.) # # By intentionally submitting any modifications, corrections or # derivatives to this work, or any other work intended for use with # Request Tracker, to Best Practical Solutions, LLC, you confirm that # you are the copyright holder for those contributions and you grant # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, # royalty-free, perpetual, license to use, copy, create derivative # works based on those contributions, and sublicense and distribute # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} use strict; use warnings; package RT::Record::Role; use Role::Basic; =head1 NAME RT::Record::Role - Common requirements for roles which are consumed by records =head1 DESCRIPTION Various L (and by inheritance L) methods are required by this role. It provides no methods on its own but is simply a contract for other roles to require (usually under the I namespace). =cut requires $_ for qw( id loc CurrentUser _Set _Accessible _NewTransaction ); 1; rt-4.4.2/lib/RT/Record/AddAndSort.pm0000664000175000017500000004027513131430353016674 0ustar vagrantvagrant# BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: # # This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) # # # LICENSE: # # This work is made available to you under the terms of Version 2 of # the GNU General Public License. A copy of that license should have # been provided with this software, but in any event can be snarfed # from www.gnu.org. # # This work is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 or visit their web page on the internet at # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. # # # CONTRIBUTION SUBMISSION POLICY: # # (The following paragraph is not intended to limit the rights granted # to you to modify and distribute this software under the terms of # the GNU General Public License and is only of importance to you if # you choose to contribute your changes and enhancements to the # community by submitting them to Best Practical Solutions, LLC.) # # By intentionally submitting any modifications, corrections or # derivatives to this work, or any other work intended for use with # Request Tracker, to Best Practical Solutions, LLC, you confirm that # you are the copyright holder for those contributions and you grant # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, # royalty-free, perpetual, license to use, copy, create derivative # works based on those contributions, and sublicense and distribute # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} use strict; use warnings; package RT::Record::AddAndSort; use base 'RT::Record'; =head1 NAME RT::Record::AddAndSort - base class for records that can be added and sorted =head1 DESCRIPTION Base class for L and L that unifies application of Ls and Ls to various objects. Also, deals with order of the records. =head1 METHODS =head2 Meta information =head3 CollectionClass Returns class representing collection for this record class. Basicly adds 's' at the end. Should be overriden if default doesn't work. For example returns L when called on L. =cut sub CollectionClass { return (ref($_[0]) || $_[0]).'s'; } =head3 TargetField Returns name of the field in the table where id of object we add is stored. By default deletes everything up to '::Object' from class name. This method allows to use friendlier argument names and methods. For example returns 'Scrip' for L. =cut sub TargetField { my $class = ref($_[0]) || $_[0]; $class =~ s/.*::Object// or return undef; return $class; } =head3 ObjectCollectionClass Takes an object under L name and should return class name representing collection the object can be added to. Must be overriden by sub classes. See L and L. =cut sub ObjectCollectionClass { die "should be subclassed" } =head2 Manipulation =head3 Create Takes 'ObjectId' with id of an object we can be added to, object we can add to under L name, Disabled and SortOrder. This method doesn't create duplicates. If record already exists then it's not created, but loaded instead. Note that nothing is updated if record exist. If SortOrder is not defined then it's calculated to place new record last. If it's provided then it's caller's duty to make sure it is correct value. Example: my $ocf = RT::ObjectCustomField->new( RT->SystemUser ); my ($id, $msg) = $ocf->Create( CustomField => 1, ObjectId => 0 ); See L which has more error checks. Also, L and L have more appropriate methods that B prefered over calling this directly. =cut sub Create { my $self = shift; my %args = ( ObjectId => 0, SortOrder => undef, @_ ); my $tfield = $self->TargetField; my $target = $self->TargetObj( $args{ $tfield } ); unless ( $target->id ) { $RT::Logger->error("Couldn't load ". ref($target) ." '$args{$tfield}'"); return 0; } my $exist = $self->new($self->CurrentUser); $exist->LoadByCols( ObjectId => $args{'ObjectId'}, $tfield => $target->id ); if ( $exist->id ) { $self->Load( $exist->id ); return $self->id; } unless ( defined $args{'SortOrder'} ) { $args{'SortOrder'} = $self->NextSortOrder( %args, $tfield => $target, ); } return $self->SUPER::Create( %args, $tfield => $target->id, ); } =head3 Add Helper method that wraps L and does more checks to make sure result is consistent. Doesn't allow adding a record to an object if the record is already global. Removes record from particular objects when asked to add the record globally. =cut sub Add { my $self = shift; my %args = (@_); my $field = $self->TargetField; my $tid = $args{ $field }; $tid = $tid->id if ref $tid; $tid ||= $self->TargetObj->id; my $oid = $args{'ObjectId'}; $oid = $oid->id if ref $oid; $oid ||= 0; if ( $self->IsAdded( $tid => $oid ) ) { return ( 0, $self->loc("Is already added to the object") ); } if ( $oid ) { # adding locally return (0, $self->loc("Couldn't add as it's global already") ) if $self->IsAdded( $tid => 0 ); } else { $self->DeleteAll( $field => $tid ); } return $self->Create( %args, $field => $tid, ObjectId => $oid, ); } sub IsAdded { my $self = shift; my ($tid, $oid) = @_; my $record = $self->new( $self->CurrentUser ); $record->LoadByCols( $self->TargetField => $tid, ObjectId => $oid ); return $record->id; } =head3 AddedTo Returns collection with objects target of this record is added to. Class of the collection depends on L. See all L. For example returns L collection if the target is L. Returns empty collection if target is added globally. =cut sub AddedTo { my $self = shift; my ($res, $alias) = $self->_AddedTo( @_ ); return $res unless $res; $res->Limit( ALIAS => $alias, FIELD => 'id', OPERATOR => 'IS NOT', VALUE => 'NULL', ); return $res; } =head3 NotAddedTo Returns collection with objects target of this record is not added to. Class of the collection depends on L. See all L. Returns empty collection if target is added globally. =cut sub NotAddedTo { my $self = shift; my ($res, $alias) = $self->_AddedTo( @_ ); return $res unless $res; $res->Limit( ALIAS => $alias, FIELD => 'id', OPERATOR => 'IS', VALUE => 'NULL', ); return $res; } sub _AddedTo { my $self = shift; my %args = (@_); my $field = $self->TargetField; my $target = $args{ $field } || $self->TargetObj; my ($class) = $self->ObjectCollectionClass( $field => $target ); return undef unless $class; my $res = $class->new( $self->CurrentUser ); # If target added to a Group, only display user-defined groups $res->LimitToUserDefinedGroups if $class eq 'RT::Groups'; $res->OrderBy( FIELD => 'Name' ); my $alias = $res->Join( TYPE => 'LEFT', ALIAS1 => 'main', FIELD1 => 'id', TABLE2 => $self->Table, FIELD2 => 'ObjectId', ); $res->Limit( LEFTJOIN => $alias, ALIAS => $alias, FIELD => $field, VALUE => $target->id, ); return ($res, $alias); } =head3 Delete Deletes this record. =cut sub Delete { my $self = shift; return $self->SUPER::Delete if $self->IsSortOrderShared; # Move everything below us up my $siblings = $self->Neighbors; $siblings->Limit( FIELD => 'SortOrder', OPERATOR => '>=', VALUE => $self->SortOrder ); $siblings->OrderBy( FIELD => 'SortOrder', ORDER => 'ASC' ); foreach my $record ( @{ $siblings->ItemsArrayRef } ) { $record->SetSortOrder($record->SortOrder - 1); } return $self->SUPER::Delete; } =head3 DeleteAll Helper method to delete all applications for one target (Scrip, CustomField, ...). Target can be provided in arguments. If it's not then L is used. $object_scrip->DeleteAll; $object_scrip->DeleteAll( Scrip => $scrip ); =cut sub DeleteAll { my $self = shift; my %args = (@_); my $field = $self->TargetField; my $id = $args{ $field }; $id = $id->id if ref $id; $id ||= $self->TargetObj->id; my $list = $self->CollectionClass->new( $self->CurrentUser ); $list->Limit( FIELD => $field, VALUE => $id ); $_->Delete foreach @{ $list->ItemsArrayRef }; } =head3 MoveUp Moves record up. =cut sub MoveUp { return shift->Move( Up => @_ ) } =head3 MoveDown Moves record down. =cut sub MoveDown { return shift->Move( Down => @_ ) } =head3 Move Takes 'up' or 'down'. One method that implements L and L. =cut sub Move { my $self = shift; my $dir = lc(shift || 'up'); my %meta; if ( $dir eq 'down' ) { %meta = qw( next_op > next_order ASC prev_op <= diff +1 ); } else { %meta = qw( next_op < next_order DESC prev_op >= diff -1 ); } my $siblings = $self->Siblings; $siblings->Limit( FIELD => 'SortOrder', OPERATOR => $meta{'next_op'}, VALUE => $self->SortOrder ); $siblings->OrderBy( FIELD => 'SortOrder', ORDER => $meta{'next_order'} ); my @next = ($siblings->Next, $siblings->Next); unless ($next[0]) { return $dir eq 'down' ? (0, "Can not move down. It's already at the bottom") : (0, "Can not move up. It's already at the top") ; } my ($new_sort_order, $move); unless ( $self->ObjectId ) { # moving global, it can not share sort order, so just move it # on place of next global and move everything in between one number $new_sort_order = $next[0]->SortOrder; $move = $self->Neighbors; $move->Limit( FIELD => 'SortOrder', OPERATOR => $meta{'next_op'}, VALUE => $self->SortOrder, ); $move->Limit( FIELD => 'SortOrder', OPERATOR => $meta{'prev_op'}, VALUE => $next[0]->SortOrder, ENTRYAGGREGATOR => 'AND', ); } elsif ( $next[0]->ObjectId == $self->ObjectId ) { # moving two locals, just swap them, they should follow 'so = so+/-1' rule $new_sort_order = $next[0]->SortOrder; $move = $next[0]; } else { # moving local behind global unless ( $self->IsSortOrderShared ) { # not shared SO allows us to swap $new_sort_order = $next[0]->SortOrder; $move = $next[0]; } elsif ( $next[1] ) { # more records there and shared SO, we have to move everything $new_sort_order = $next[0]->SortOrder; $move = $self->Neighbors; $move->Limit( FIELD => 'SortOrder', OPERATOR => $meta{prev_op}, VALUE => $next[0]->SortOrder, ); } else { # shared SO and place after is free, so just jump $new_sort_order = $next[0]->SortOrder + $meta{'diff'}; } } if ( $move ) { foreach my $record ( $move->isa('RT::Record')? ($move) : @{ $move->ItemsArrayRef } ) { my ($status, $msg) = $record->SetSortOrder( $record->SortOrder - $meta{'diff'} ); return (0, "Couldn't move: $msg") unless $status; } } my ($status, $msg) = $self->SetSortOrder( $new_sort_order ); unless ( $status ) { return (0, "Couldn't move: $msg"); } return (1,"Moved"); } =head2 Accessors, instrospection and traversing. =head3 TargetObj Returns target object of this record. Returns L object for L. =cut sub TargetObj { my $self = shift; my $id = shift; my $method = $self->TargetField .'Obj'; return $self->$method( $id ); } =head3 NextSortOrder Returns next available SortOrder value in the L. Pass arguments to L and can take optional ObjectId argument, calls ObjectId if it's not provided. =cut sub NextSortOrder { my $self = shift; my %args = (@_); my $oid = $args{'ObjectId'}; $oid = $self->ObjectId unless defined $oid; $oid ||= 0; my $neighbors = $self->Neighbors( %args ); if ( $oid ) { $neighbors->LimitToObjectId( $oid ); $neighbors->LimitToObjectId( 0 ); } elsif ( !$neighbors->_isLimited ) { $neighbors->UnLimit; } $neighbors->OrderBy( FIELD => 'SortOrder', ORDER => 'DESC' ); return 0 unless my $first = $neighbors->First; return $first->SortOrder + 1; } =head3 IsSortOrderShared Returns true if this record shares SortOrder value with a L. =cut sub IsSortOrderShared { my $self = shift; return 0 unless $self->ObjectId; my $neighbors = $self->Neighbors; $neighbors->Limit( FIELD => 'id', OPERATOR => '!=', VALUE => $self->id ); $neighbors->Limit( FIELD => 'SortOrder', VALUE => $self->SortOrder ); return $neighbors->Count; } =head2 Neighbors and Siblings These two methods should only be understood by developers who wants to implement new classes of records that can be added to other records and sorted. Main purpose is to maintain SortOrder values. Let's take a look at custom fields. A custom field can be created for tickets, queues, transactions, users... Custom fields created for tickets can be added globally or to particular set of queues. Custom fields for tickets are neighbors. Neighbor custom fields added to the same objects are siblings. Custom fields added globally are sibling to all neighbors. For scrips Stage defines neighborhood. Let's look at the three scrips in create stage S1, S2 and S3, queues Q1 and Q2 and G for global. S1@Q1, S3@Q2 0 S2@G 1 S1@Q2 2 Above table says that S2 is added globally, S1 is added to Q1 and executed before S2 in this queue, also S1 is added to Q1, but exectued after S2 in this queue, S3 is only added to Q2 and executed before S2 and S1. Siblings are scrips added to an object including globally added or only globally added. In our example there are three different collection of siblings: (S2) - global, (S1, S2) for Q1, (S3, S2, S1) for Q2. Sort order can be shared between neighbors, but can not be shared between siblings. Here is what happens with sort order if we move S1@Q2 one position up: S3@Q2 0 S1@Q1, S1@Q2 1 S2@G 2 One position more: S1@Q2 0 S1@Q1, S3@Q2 1 S2@G 2 Hopefuly it's enough to understand how it works. Targets from different neighborhood can not be sorted against each other. =head3 Neighbors Returns collection of records of this class with all neighbors. By default all possible targets are neighbors. Takes the same arguments as L method. If arguments are not passed then uses the current record. See L for detailed description. See L for example. =cut sub Neighbors { my $self = shift; return $self->CollectionClass->new( $self->CurrentUser ); } =head3 Siblings Returns collection of records of this class with siblings. Takes the same arguments as L. Siblings is subset of L. =cut sub Siblings { my $self = shift; my %args = @_; my $oid = $args{'ObjectId'}; $oid = $self->ObjectId unless defined $oid; $oid ||= 0; my $res = $self->Neighbors( %args ); $res->LimitToObjectId( $oid ); $res->LimitToObjectId( 0 ) if $oid; return $res; } RT::Base->_ImportOverlays(); 1; rt-4.4.2/lib/RT/Record/Role/0000775000175000017500000000000013131430353015244 5ustar vagrantvagrantrt-4.4.2/lib/RT/Record/Role/Rights.pm0000664000175000017500000000717013131430353017047 0ustar vagrantvagrant# BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: # # This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) # # # LICENSE: # # This work is made available to you under the terms of Version 2 of # the GNU General Public License. A copy of that license should have # been provided with this software, but in any event can be snarfed # from www.gnu.org. # # This work is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 or visit their web page on the internet at # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. # # # CONTRIBUTION SUBMISSION POLICY: # # (The following paragraph is not intended to limit the rights granted # to you to modify and distribute this software under the terms of # the GNU General Public License and is only of importance to you if # you choose to contribute your changes and enhancements to the # community by submitting them to Best Practical Solutions, LLC.) # # By intentionally submitting any modifications, corrections or # derivatives to this work, or any other work intended for use with # Request Tracker, to Best Practical Solutions, LLC, you confirm that # you are the copyright holder for those contributions and you grant # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, # royalty-free, perpetual, license to use, copy, create derivative # works based on those contributions, and sublicense and distribute # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} use strict; use warnings; package RT::Record::Role::Rights; use Role::Basic; use Scalar::Util qw(blessed); =head1 NAME RT::Record::Role::Rights - Common methods for records which can provide rights =head1 DESCRIPTION =head1 REQUIRES =head2 L =cut with 'RT::Record::Role'; =head1 PROVIDES =cut =head2 AddRight C, C, C Adds the given rights to the list of possible rights. This method should be called during server startup, not at runtime. =cut sub AddRight { my $class = shift; $class = ref($class) || $class; my ($category, $name, $description) = @_; require RT::ACE; if (exists $RT::ACE::RIGHTS{$class}{lc $name}) { warn "Duplicate right '$name' found"; return; } $RT::ACE::RIGHTS{$class}{lc $name} = { Name => $name, Category => $category, Description => $description, }; } =head2 AvailableRights Returns a hashref of available rights for this object. The keys are the right names and the values are a description of what the rights do. =cut sub AvailableRights { my $self = shift; my $class = ref($self) || $self; my %rights; $rights{$_->{Name}} = $_->{Description} for values %{$RT::ACE::RIGHTS{$class} || {} }; return \%rights; } =head2 RightCategories Returns a hashref where the keys are rights for this type of object and the values are the category (General, Staff, Admin) the right falls into. =cut sub RightCategories { my $self = shift; my $class = ref($self) || $self; my %rights; $rights{$_->{Name}} = $_->{Category} for values %{ $RT::ACE::RIGHTS{$class} || {} }; return \%rights; } 1; rt-4.4.2/lib/RT/Record/Role/Links.pm0000664000175000017500000001162613131430353016670 0ustar vagrantvagrant# BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: # # This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) # # # LICENSE: # # This work is made available to you under the terms of Version 2 of # the GNU General Public License. A copy of that license should have # been provided with this software, but in any event can be snarfed # from www.gnu.org. # # This work is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 or visit their web page on the internet at # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. # # # CONTRIBUTION SUBMISSION POLICY: # # (The following paragraph is not intended to limit the rights granted # to you to modify and distribute this software under the terms of # the GNU General Public License and is only of importance to you if # you choose to contribute your changes and enhancements to the # community by submitting them to Best Practical Solutions, LLC.) # # By intentionally submitting any modifications, corrections or # derivatives to this work, or any other work intended for use with # Request Tracker, to Best Practical Solutions, LLC, you confirm that # you are the copyright holder for those contributions and you grant # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, # royalty-free, perpetual, license to use, copy, create derivative # works based on those contributions, and sublicense and distribute # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} use strict; use warnings; package RT::Record::Role::Links; use Role::Basic; =head1 NAME RT::Record::Role::Links - Common methods for records which handle links =head1 REQUIRES =head2 L =head2 _AddLink Usually provided by L. =head2 _DeleteLink Usually provided by L. =head2 ModifyLinkRight The right name to check in L and L. =head2 CurrentUserHasRight =cut with 'RT::Record::Role'; requires '_AddLink'; requires '_DeleteLink'; requires 'ModifyLinkRight'; requires 'CurrentUserHasRight'; =head1 PROVIDES =head2 _AddLinksOnCreate Calls _AddLink (usually L) for all valid link types and aliases found in the hash. Refer to L for details of link types. Key values may be a single URI or an arrayref of URIs. Takes two hashrefs. The first is the argument hash provided to the consuming class's Create method. The second is optional and contains extra arguments to pass to _AddLink. By default records a transaction on the link's destination object (if any), but not on the origin object. Returns an array of localized error messages, if any. =cut sub _AddLinksOnCreate { my $self = shift; my %args = %{shift || {}}; my %AddLink = %{shift || {}}; my @results; foreach my $type ( keys %RT::Link::TYPEMAP ) { next unless defined $args{$type}; my $links = $args{$type}; $links = [$links] unless ref $links; for my $link (@$links) { my $typemap = $RT::Link::TYPEMAP{$type}; my $opposite_mode = $typemap->{Mode} eq "Base" ? "Target" : "Base"; my ($ok, $msg) = $self->_AddLink( Type => $typemap->{Type}, $typemap->{Mode} => $link, "Silent$opposite_mode" => 1, %AddLink, ); push @results, $self->loc("Unable to add [_1] link: [_2]", $self->loc($type), $msg) unless $ok; } } return @results; } =head2 AddLink Takes a paramhash of Type and one of Base or Target. Adds that link to this record. Refer to L for full documentation. This method implements permissions and ticket validity checks before calling into L (usually). =cut sub AddLink { my $self = shift; return (0, $self->loc("Permission Denied")) unless $self->CurrentUserHasRight($self->ModifyLinkRight); return $self->_AddLink(@_); } =head2 DeleteLink Takes a paramhash of Type and one of Base or Target. Removes that link from the record. Refer to L for full documentation. This method implements permission checks before calling into L (usually). =cut sub DeleteLink { my $self = shift; return (0, $self->loc("Permission Denied")) unless $self->CurrentUserHasRight($self->ModifyLinkRight); return $self->_DeleteLink(@_); } 1; rt-4.4.2/lib/RT/Record/Role/Lifecycle.pm0000664000175000017500000001311313131430353017500 0ustar vagrantvagrant# BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: # # This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) # # # LICENSE: # # This work is made available to you under the terms of Version 2 of # the GNU General Public License. A copy of that license should have # been provided with this software, but in any event can be snarfed # from www.gnu.org. # # This work is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 or visit their web page on the internet at # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. # # # CONTRIBUTION SUBMISSION POLICY: # # (The following paragraph is not intended to limit the rights granted # to you to modify and distribute this software under the terms of # the GNU General Public License and is only of importance to you if # you choose to contribute your changes and enhancements to the # community by submitting them to Best Practical Solutions, LLC.) # # By intentionally submitting any modifications, corrections or # derivatives to this work, or any other work intended for use with # Request Tracker, to Best Practical Solutions, LLC, you confirm that # you are the copyright holder for those contributions and you grant # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, # royalty-free, perpetual, license to use, copy, create derivative # works based on those contributions, and sublicense and distribute # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} use strict; use warnings; package RT::Record::Role::Lifecycle; use Role::Basic; use Scalar::Util qw(blessed); =head1 NAME RT::Record::Role::Lifecycle - Common methods for records which have a Lifecycle column =head1 REQUIRES =head2 L =head2 LifecycleType Used as a role parameter. Must return a string of the type of lifecycles the record consumes, i.e. I for L. =head2 Lifecycle A Lifecycle method which returns a lifecycle name is required. Currently unenforced at compile-time due to poor interactions with L. You'll hit run-time errors if this method isn't available in consuming classes, however. =cut with 'RT::Record::Role'; requires 'LifecycleType'; # XXX: can't require column methods due to DBIx::SB::Record's AUTOLOAD #requires 'Lifecycle'; =head1 PROVIDES =head2 LifecycleObj Returns an L object for this record's C. If called as a class method, returns an L object which is an aggregation of all lifecycles of the appropriate type. =cut sub LifecycleObj { my $self = shift; my $type = $self->LifecycleType; my $fallback = $self->_Accessible( Lifecycle => "default" ); unless (blessed($self) and $self->id) { return RT::Lifecycle->Load( Type => $type ); } my $name = $self->Lifecycle || $fallback; my $res = RT::Lifecycle->Load( Name => $name, Type => $type ); unless ( $res ) { RT->Logger->error( sprintf "Lifecycle '%s' of type %s for %s #%d doesn't exist", $name, $type, ref($self), $self->id); return RT::Lifecycle->Load( Name => $fallback, Type => $type ); } return $res; } =head2 SetLifecycle Validates that the specified lifecycle exists before updating the record. Takes a lifecycle name. =cut sub SetLifecycle { my $self = shift; my $value = shift || $self->_Accessible( Lifecycle => "default" ); return (0, $self->loc('[_1] is not a valid lifecycle', $value)) unless $self->ValidateLifecycle($value); return $self->_Set( Field => 'Lifecycle', Value => $value, @_ ); } =head2 ValidateLifecycle Takes a lifecycle name. Returns true if it's an OK name and such lifecycle is configured. Returns false otherwise. =cut sub ValidateLifecycle { my $self = shift; my $value = shift; return unless $value; return unless RT::Lifecycle->Load( Name => $value, Type => $self->LifecycleType ); return 1; } =head2 ActiveStatusArray Returns an array of all ActiveStatuses for the lifecycle =cut sub ActiveStatusArray { my $self = shift; return $self->LifecycleObj->Valid('initial', 'active'); } =head2 InactiveStatusArray Returns an array of all InactiveStatuses for the lifecycle =cut sub InactiveStatusArray { my $self = shift; return $self->LifecycleObj->Inactive; } =head2 StatusArray Returns an array of all statuses for the lifecycle =cut sub StatusArray { my $self = shift; return $self->LifecycleObj->Valid( @_ ); } =head2 IsValidStatus Takes a status. Returns true if STATUS is a valid status. Otherwise, returns 0. =cut sub IsValidStatus { my $self = shift; return $self->LifecycleObj->IsValid( shift ); } =head2 IsActiveStatus Takes a status. Returns true if STATUS is a Active status. Otherwise, returns 0 =cut sub IsActiveStatus { my $self = shift; return $self->LifecycleObj->IsValid( shift, 'initial', 'active'); } =head2 IsInactiveStatus Takes a status. Returns true if STATUS is a Inactive status. Otherwise, returns 0 =cut sub IsInactiveStatus { my $self = shift; return $self->LifecycleObj->IsInactive( shift ); } 1; rt-4.4.2/lib/RT/Record/Role/Roles.pm0000664000175000017500000005362713131430353016703 0ustar vagrantvagrant# BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: # # This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) # # # LICENSE: # # This work is made available to you under the terms of Version 2 of # the GNU General Public License. A copy of that license should have # been provided with this software, but in any event can be snarfed # from www.gnu.org. # # This work is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 or visit their web page on the internet at # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. # # # CONTRIBUTION SUBMISSION POLICY: # # (The following paragraph is not intended to limit the rights granted # to you to modify and distribute this software under the terms of # the GNU General Public License and is only of importance to you if # you choose to contribute your changes and enhancements to the # community by submitting them to Best Practical Solutions, LLC.) # # By intentionally submitting any modifications, corrections or # derivatives to this work, or any other work intended for use with # Request Tracker, to Best Practical Solutions, LLC, you confirm that # you are the copyright holder for those contributions and you grant # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, # royalty-free, perpetual, license to use, copy, create derivative # works based on those contributions, and sublicense and distribute # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} use strict; use warnings; package RT::Record::Role::Roles; use Role::Basic; use Scalar::Util qw(blessed); =head1 NAME RT::Record::Role::Roles - Common methods for records which "watchers" or "roles" =head1 REQUIRES =head2 L =cut with 'RT::Record::Role'; require RT::System; require RT::Principal; require RT::Group; require RT::User; require RT::EmailParser; =head1 PROVIDES =head2 RegisterRole Registers an RT role which applies to this class for role-based access control. Arguments: =over 4 =item Name Required. The role name (i.e. Requestor, Owner, AdminCc, etc). =item EquivClasses Optional. Array ref of classes through which this role percolates up to L. You can think of this list as: map { ref } $record_object->ACLEquivalenceObjects; You should not include L itself in this list. Simply calls RegisterRole on each equivalent class. =item Single Optional. A true value indicates that this role may only contain a single user as a member at any given time. When adding a new member to a Single role, any existing member will be removed. If all members are removed, L is added automatically. =item Column Optional, implies Single. Specifies a column on the announcing class into which the single role member's user ID is denormalized. The column will be kept updated automatically as the role member changes. This is used, for example, for ticket owners and makes searching simpler (among other benefits). =item ACLOnly Optional. A true value indicates this role is only used for ACLs and should not be populated with members. This flag is advisory only, and the Perl API still allows members to be added to ACLOnly roles. =item ACLOnlyInEquiv Optional. Automatically sets the ACLOnly flag for all EquivClasses, but not the announcing class. =item SortOrder Optional. A numeric value indicating the position of this role when sorted ascending with other roles in a list. Roles with the same sort order are ordered alphabetically by name within themselves. =item UserDefined Optional. A true value indicates that this role was created by the user and as such is not managed by the core codebase or an extension. =item CreateGroupPredicate Optional. A subroutine whose return value indicates whether the group for this role should be created as part of L. When this subroutine is not provided, the group will be created. The same parameters that will be passed to L are passed to your predicate (including C) =item AppliesToObjectPredicate Optional. A subroutine which decides whether a specific object in the class has the role or not. =item LabelGenerator Optional. A subroutine which returns the name of the role as suitable for displaying to the end user. Will receive as an argument a specific object. =back =cut sub RegisterRole { my $self = shift; my $class = ref($self) || $self; my %role = ( Name => undef, EquivClasses => [], SortOrder => 0, UserDefined => 0, CreateGroupPredicate => undef, AppliesToObjectPredicate => undef, LabelGenerator => undef, @_ ); return unless $role{Name}; # Keep track of the class this role came from originally $role{ Class } ||= $class; # Some groups are limited to a single user $role{ Single } = 1 if $role{Column}; # Stash the role on ourself $class->_ROLES->{ $role{Name} } = { %role }; # Register it with any equivalent classes... my $equiv = delete $role{EquivClasses} || []; # ... and globally unless we ARE global unless ($class eq "RT::System") { push @$equiv, "RT::System"; } # ... marked as "for ACLs only" if flagged as such by the announcing class $role{ACLOnly} = 1 if delete $role{ACLOnlyInEquiv}; $_->RegisterRole(%role) for @$equiv; # XXX TODO: Register which classes have roles on them somewhere? return 1; } =head2 UnregisterRole Removes an RT role which applies to this class for role-based access control. Any roles on equivalent classes (via EquivClasses passed to L) are also unregistered. Takes a role name as the sole argument. B Objects created after a role is unregistered will not have an associated L for the removed role. If you later decide to stop unregistering the role, operations on those objects created in the meantime will fail when trying to interact with the missing role groups. B =cut sub UnregisterRole { my $self = shift; my $class = ref($self) || $self; my $name = shift or return; my $role = delete $self->_ROLES->{$name} or return; $_->UnregisterRole($name) for "RT::System", reverse @{$role->{EquivClasses}}; } =head2 Role Takes a role name; returns a hashref describing the role. This hashref contains the same attributes used to register the role (see L), as well as some extras, including: =over =item Class The original class which announced the role. This is set automatically by L and is the same across all EquivClasses. =back Returns an empty hashref if the role doesn't exist. =cut sub Role { return \%{ $_[0]->_ROLES->{$_[1]} || {} }; } =head2 Roles Returns a list of role names registered for this object, sorted ascending by SortOrder and then alphabetically by name. Optionally takes a hash specifying attributes the returned roles must possess or lack. Testing is done on a simple truthy basis and the actual values of the role attributes and arguments you pass are not compared string-wise or numerically; they must simply evaluate to the same truthiness. For example: # Return role names which are not only for ACL purposes $object->Roles( ACLOnly => 0 ); # Return role names which are denormalized into a column; note that the # role's Column attribute contains a string. $object->Roles( Column => 1 ); =cut sub Roles { my $self = shift; my %attr = @_; return map { $_->[0] } sort { $a->[1]{SortOrder} <=> $b->[1]{SortOrder} or $a->[0] cmp $b->[0] } grep { my $ok = 1; for my $k (keys %attr) { $ok = 0, last if $attr{$k} xor $_->[1]{$k}; } $ok } grep { !$_->[1]{AppliesToObjectPredicate} or $_->[1]{AppliesToObjectPredicate}->($self) } map { [ $_, $self->Role($_) ] } keys %{ $self->_ROLES }; } { my %ROLES; sub _ROLES { my $class = ref($_[0]) || $_[0]; return $ROLES{$class} ||= {}; } } =head2 HasRole Returns true if the name provided is a registered role for this class. Otherwise returns false. =cut sub HasRole { my $self = shift; my $type = shift; return scalar grep { $type eq $_ } $self->Roles; } =head2 RoleGroup Expects a role name as the first parameter which is used to load the L for the specified role on this record. Returns an unloaded L object on failure. =cut sub RoleGroup { my $self = shift; my $name = shift; my %args = @_; my $group = RT::Group->new( $self->CurrentUser ); if ($args{CheckRight}) { return $group if !$self->CurrentUserHasRight($args{CheckRight}); } if ($self->HasRole($name)) { $group->LoadRoleGroup( Object => $self, Name => $name, ); } return $group; } =head2 CanonicalizePrincipal Takes some description of a principal (see below) and returns the corresponding L. C, as in role name, is a required parameter for producing error messages. =over 4 =item Principal The L if you've already got it. =item PrincipalId The ID of the L object. =item User The Name or EmailAddress of an L. If an email address is given, but a user matching it cannot be found, a new user will be created. =item Group The Name of an L. =back =cut sub CanonicalizePrincipal { my $self = shift; my %args = (@_); return (0, $self->loc("One, and only one, of Principal/PrincipalId/User/Group is required")) if 1 != grep { $_ } @args{qw/Principal PrincipalId User Group/}; if ($args{Principal}) { return $args{Principal}; } elsif ($args{PrincipalId}) { # Check the PrincipalId for loops my $principal = RT::Principal->new( $self->CurrentUser ); $principal->Load($args{'PrincipalId'}); if ( $principal->id and $principal->IsUser and my $email = $principal->Object->EmailAddress ) { return (0, $self->loc("[_1] is an address RT receives mail at. Adding it as a '[_2]' would create a mail loop", $email, $self->loc($args{Type}))) if RT::EmailParser->IsRTAddress( $email ); } } else { if ($args{User}) { my $name = delete $args{User}; # Sanity check the address return (0, $self->loc("[_1] is an address RT receives mail at. Adding it as a '[_2]' would create a mail loop", $name, $self->loc($args{Type}) )) if RT::EmailParser->IsRTAddress( $name ); # Create as the SystemUser, not the current user my $user = RT::User->new(RT->SystemUser); my ($ok, $msg); if ($name =~ /@/) { ($ok, $msg) = $user->LoadOrCreateByEmail( $name ); } else { ($ok, $msg) = $user->Load( $name ); } unless ($user->Id) { # If we can't find this watcher, we need to bail. $RT::Logger->error("Could not load or create a user '$name' to add as a watcher: $msg"); return (0, $self->loc("Could not find or create user '[_1]'", $name)); } $args{PrincipalId} = $user->PrincipalId; } elsif ($args{Group}) { my $name = delete $args{Group}; my $group = RT::Group->new( $self->CurrentUser ); $group->LoadUserDefinedGroup($name); unless ($group->id) { $RT::Logger->error("Could not load group '$name' to add as a watcher"); return (0, $self->loc("Could not find group '[_1]'", $name)); } $args{PrincipalId} = $group->PrincipalObj->id; } } my $principal = RT::Principal->new( $self->CurrentUser ); $principal->Load( $args{PrincipalId} ); return $principal; } =head2 AddRoleMember Adds the described L to the specified role group for this record. Takes a set of key-value pairs: =over 4 =item Principal, PrincipalId, User, or Group Required. Canonicalized through L. =item Type Required. One of the valid roles for this record, as returned by L. =item ACL Optional. A subroutine reference which will be passed the role type and principal being added. If it returns false, the method will fail with a status of "Permission denied". =back Returns a tuple of (principal object which was added, message). =cut sub AddRoleMember { my $self = shift; my %args = (@_); my ($principal, $msg) = $self->CanonicalizePrincipal(%args); return (0, $msg) if !$principal; my $type = delete $args{Type}; return (0, $self->loc("That role is invalid for this object")) unless $type and $self->HasRole($type); my $acl = delete $args{ACL}; return (0, $self->loc("Permission denied")) if $acl and not $acl->($type => $principal); my $group = $self->RoleGroup( $type ); if (!$group->id) { $group = $self->_CreateRoleGroup($type); if (!$group || !$group->id) { return (0, $self->loc("Role group '[_1]' not found", $type)); } } return (0, $self->loc('[_1] is already [_2]', $principal->Object->Name, $group->Label) ) if $group->HasMember( $principal ); return (0, $self->loc('[_1] cannot be a group', $group->Label) ) if $group->SingleMemberRoleGroup and $principal->IsGroup; ( (my $ok), $msg ) = $group->_AddMember( %args, PrincipalId => $principal->Id, RecordTransaction => !$args{Silent} ); unless ($ok) { $RT::Logger->error("Failed to add principal ".$principal->Id." as a member of group ".$group->Id.": ".$msg); return ( 0, $self->loc('Could not make [_1] a [_2]', $principal->Object->Name, $group->Label) ); } return ($principal, $msg); } =head2 DeleteRoleMember Removes the specified L from the specified role group for this record. Takes a set of key-value pairs: =over 4 =item PrincipalId Optional. The ID of the L object to remove. =item User Optional. The Name or EmailAddress of an L to use as the principal =item Type Required. One of the valid roles for this record, as returned by L. =item ACL Optional. A subroutine reference which will be passed the role type and principal being removed. If it returns false, the method will fail with a status of "Permission denied". =back One, and only one, of I or I is required. Returns a tuple of (principal object that was removed, message). =cut sub DeleteRoleMember { my $self = shift; my %args = (@_); return (0, $self->loc("That role is invalid for this object")) unless $args{Type} and $self->HasRole($args{Type}); if ($args{User}) { my $user = RT::User->new( $self->CurrentUser ); $user->LoadByEmail( $args{User} ); $user->Load( $args{User} ) unless $user->id; return (0, $self->loc("Could not load user '[_1]'", $args{User}) ) unless $user->id; $args{PrincipalId} = $user->PrincipalId; } return (0, $self->loc("No valid PrincipalId")) unless $args{PrincipalId}; my $principal = RT::Principal->new( $self->CurrentUser ); $principal->Load( $args{PrincipalId} ); my $acl = delete $args{ACL}; return (0, $self->loc("Permission denied")) if $acl and not $acl->($args{Type} => $principal); my $group = $self->RoleGroup( $args{Type} ); return (0, $self->loc("Role group '[_1]' not found", $args{Type})) unless $group->id; return ( 0, $self->loc( '[_1] is not a [_2]', $principal->Object->Name, $self->loc($args{Type}) ) ) unless $group->HasMember($principal); my ($ok, $msg) = $group->_DeleteMember($args{PrincipalId}, RecordTransaction => !$args{Silent}); unless ($ok) { $RT::Logger->error("Failed to remove $args{PrincipalId} as a member of group ".$group->Id.": ".$msg); return ( 0, $self->loc('Could not remove [_1] as a [_2]', $principal->Object->Name, $self->loc($args{Type})) ); } return ($principal, $msg); } sub _ResolveRoles { my $self = shift; my ($roles, %args) = (@_); my @errors; for my $role ($self->Roles) { if ($self->_ROLES->{$role}{Single}) { # Default to nobody if unspecified my $value = $args{$role} || RT->Nobody; $value = $value->[0] if ref $value eq 'ARRAY'; if (Scalar::Util::blessed($value) and $value->isa("RT::User")) { # Accept a user; it may not be loaded, which we catch below $roles->{$role} = $value->PrincipalObj; } else { # Try loading by id, name, then email. If all fail, catch that below my $user = RT::User->new( $self->CurrentUser ); $user->Load( $value ); # XXX: LoadOrCreateByEmail ? $user->LoadByEmail( $value ) unless $user->id; $roles->{$role} = $user->PrincipalObj; } unless (Scalar::Util::blessed($roles->{$role}) and $roles->{$role}->id) { push @errors, $self->loc("Invalid value for [_1]",$self->loc($role)); $roles->{$role} = RT->Nobody->PrincipalObj; } # For consistency, we always return an arrayref $roles->{$role} = [ $roles->{$role} ]; } else { $roles->{$role} = []; my @values = ref $args{ $role } ? @{ $args{$role} } : ($args{$role}); for my $value (grep {defined} @values) { if ( $value =~ /^\d+$/ ) { # This implicitly allows groups, if passed by id. my $principal = RT::Principal->new( $self->CurrentUser ); my ($ok, $msg) = $principal->Load( $value ); if ($ok) { push @{ $roles->{$role} }, $principal; } else { push @errors, $self->loc("Couldn't load principal: [_1]", $msg); } } else { my @addresses = RT::EmailParser->ParseEmailAddress( $value ); for my $address ( @addresses ) { my $user = RT::User->new( RT->SystemUser ); my ($id, $msg) = $user->LoadOrCreateByEmail( $address ); if ( $id ) { # Load it back as us, not as the system # user, to be completely safe. $user = RT::User->new( $self->CurrentUser ); $user->Load( $id ); push @{ $roles->{$role} }, $user->PrincipalObj; } else { push @errors, $self->loc("Couldn't load or create user: [_1]", $msg); } } } } } } return (@errors); } sub _CreateRoleGroup { my $self = shift; my $name = shift; my %args = ( @_, ); my $role = $self->Role($name); my %create = ( Name => $name, Object => $self, %args, ); return (0) if $role->{CreateGroupPredicate} && !$role->{CreateGroupPredicate}->(%create); my $type_obj = RT::Group->new($self->CurrentUser); my ($id, $msg) = $type_obj->CreateRoleGroup(%create); unless ($id) { $RT::Logger->error("Couldn't create a role group of type '$name' for ".ref($self)." ". $self->id.": ".$msg); return(undef); } return $type_obj; } sub _CreateRoleGroups { my $self = shift; my %args = (@_); for my $name ($self->Roles) { my ($ok) = $self->_CreateRoleGroup($name, %args); return(undef) if !$ok; } return(1); } sub _AddRolesOnCreate { my $self = shift; my ($roles, %acls) = @_; my @errors; { my $changed = 0; for my $role (keys %{$roles}) { my $group = $self->RoleGroup($role); my @left; for my $principal (@{$roles->{$role}}) { if ($acls{$role}->($principal)) { next if $group->HasMember($principal); my ($ok, $msg) = $group->_AddMember( PrincipalId => $principal->id, InsideTransaction => 1, RecordTransaction => 0, Object => $self, ); push @errors, $self->loc("Couldn't set [_1] watcher: [_2]", $role, $msg) unless $ok; $changed++; } else { push @left, $principal; } } $roles->{$role} = [ @left ]; } redo if $changed; } return @errors; } =head2 LabelForRole Returns a label suitable for displaying the passed-in role to an end user. =cut sub LabelForRole { my $self = shift; my $name = shift; my $role = $self->Role($name); if ($role->{LabelGenerator}) { return $role->{LabelGenerator}->($self); } return $role->{Name}; } 1; rt-4.4.2/lib/RT/Record/Role/Status.pm0000664000175000017500000002353113131430353017071 0ustar vagrantvagrant# BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: # # This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) # # # LICENSE: # # This work is made available to you under the terms of Version 2 of # the GNU General Public License. A copy of that license should have # been provided with this software, but in any event can be snarfed # from www.gnu.org. # # This work is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 or visit their web page on the internet at # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. # # # CONTRIBUTION SUBMISSION POLICY: # # (The following paragraph is not intended to limit the rights granted # to you to modify and distribute this software under the terms of # the GNU General Public License and is only of importance to you if # you choose to contribute your changes and enhancements to the # community by submitting them to Best Practical Solutions, LLC.) # # By intentionally submitting any modifications, corrections or # derivatives to this work, or any other work intended for use with # Request Tracker, to Best Practical Solutions, LLC, you confirm that # you are the copyright holder for those contributions and you grant # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, # royalty-free, perpetual, license to use, copy, create derivative # works based on those contributions, and sublicense and distribute # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} use strict; use warnings; package RT::Record::Role::Status; use Role::Basic; use Scalar::Util qw(blessed); =head1 NAME RT::Record::Role::Status - Common methods for records which have a Status column =head1 DESCRIPTION Lifecycles are generally set on container records, and Statuses on records which belong to one of those containers. L handles the containers with the I column. This role is for the records with a I column within those containers. It includes convenience methods for grabbing an L object as well setters for validating I and the column which points to the container object. =head1 REQUIRES =head2 L =head2 LifecycleColumn Used as a role parameter. Must return a string of the column name which points to the container object that consumes L (or conforms to it). The resulting string is used to construct two method names: as-is to fetch the column value and suffixed with "Obj" to fetch the object. =head2 Status A Status method which returns a lifecycle name is required. Currently unenforced at compile-time due to poor interactions with L. You'll hit run-time errors if this method isn't available in consuming classes, however. =cut with 'RT::Record::Role'; requires 'LifecycleColumn'; =head1 PROVIDES =head2 Status Returns the Status for this record, in the canonical casing. =cut sub Status { my $self = shift; my $value = $self->_Value( 'Status' ); my $lifecycle = $self->LifecycleObj; return $value unless $lifecycle; return $lifecycle->CanonicalCase( $value ); } =head2 LifecycleObj Returns an L object for this record's C. If called as a class method, returns an L object which is an aggregation of all lifecycles of the appropriate type. =cut sub LifecycleObj { my $self = shift; my $obj = $self->LifecycleColumn . "Obj"; return $self->$obj->LifecycleObj; } =head2 Lifecycle Returns the L of this record's L. =cut sub Lifecycle { my $self = shift; return $self->LifecycleObj->Name; } =head2 ValidateStatus Takes a status. Returns true if that status is a valid status for this record, otherwise returns false. =cut sub ValidateStatus { my $self = shift; return $self->LifecycleObj->IsValid(@_); } =head2 ValidateStatusChange Validates the new status with the current lifecycle. Returns a tuple of (OK, message). Expected to be called from this role's L or the consuming class' equivalent. =cut sub ValidateStatusChange { my $self = shift; my $new = shift; my $old = $self->Status; my $lifecycle = $self->LifecycleObj; unless ( $lifecycle->IsValid( $new ) ) { return (0, $self->loc("Status '[_1]' isn't a valid status for this [_2].", $self->loc($new), $self->loc($lifecycle->Type))); } unless ( $lifecycle->IsTransition( $old => $new ) ) { return (0, $self->loc("You can't change status from '[_1]' to '[_2]'.", $self->loc($old), $self->loc($new))); } my $check_right = $lifecycle->CheckRight( $old => $new ); unless ( $self->CurrentUser->HasRight( Right => $check_right, Object => $self ) ) { return ( 0, $self->loc('Permission Denied') ); } return 1; } =head2 SetStatus Validates the status transition before updating the Status column. This method may want to be overridden by a more specific method in the consuming class. =cut sub SetStatus { my $self = shift; my $new = shift; my ($valid, $error) = $self->ValidateStatusChange($new); return ($valid, $error) unless $valid; return $self->_SetStatus( Status => $new ); } =head2 _SetStatus Sets the Status column without validating the change. Intended to be used as-is by methods provided by the role, or overridden in the consuming class to take additional action. For example, L sets the Started and Resolved dates on the ticket as necessary. Takes a paramhash where the only required key is Status. Other keys may include Lifecycle and NewLifecycle when called from L, which may assist consuming classes. NewLifecycle defaults to Lifecycle if not provided; this indicates the lifecycle isn't changing. =cut sub _SetStatus { my $self = shift; my %args = ( Status => undef, Lifecycle => $self->LifecycleObj, @_, ); $args{Status} = lc $args{Status} if defined $args{Status}; $args{NewLifecycle} ||= $args{Lifecycle}; return $self->_Set( Field => 'Status', Value => $args{Status}, ); } =head2 _SetLifecycleColumn Validates and updates the column named by L. The Status column is also updated if necessary (via lifecycle transition maps). On success, returns a tuple of (1, I, I) where I is the status that was transitioned to, if any. On failure, returns (0, I). Takes a paramhash with keys I and (optionally) I. I is a right name which the current user must have on the new L object in order for the method to succeed. This method is expected to be used from within another method such as L. =cut sub _SetLifecycleColumn { my $self = shift; my %args = @_; my $column = $self->LifecycleColumn; my $column_obj = "${column}Obj"; my $current = $self->$column_obj; my $class = blessed($current); my $new = $class->new( $self->CurrentUser ); $new->Load($args{Value}); return (0, $self->loc("[_1] [_2] does not exist", $self->loc($column), $args{Value})) unless $new->id; my $name = eval { $current->Name } || $current->id; return (0, $self->loc("[_1] [_2] is disabled", $self->loc($column), $name)) if $new->Disabled; return (0, $self->loc("[_1] is already set to [_2]", $self->loc($column), $name)) if $new->id == $current->id; return (0, $self->loc("Permission Denied")) if $args{RequireRight} and not $self->CurrentUser->HasRight( Right => $args{RequireRight}, Object => $new, ); my $new_status; my $old_lifecycle = $current->LifecycleObj; my $new_lifecycle = $new->LifecycleObj; if ( $old_lifecycle->Name ne $new_lifecycle->Name ) { unless ( $old_lifecycle->HasMoveMap( $new_lifecycle ) ) { return ( 0, $self->loc("There is no mapping for statuses between lifecycle [_1] and [_2]. Contact your system administrator.", $old_lifecycle->Name, $new_lifecycle->Name) ); } $new_status = $old_lifecycle->MoveMap( $new_lifecycle )->{ lc $self->Status }; return ( 0, $self->loc("Mapping between lifecycle [_1] and [_2] is incomplete. Contact your system administrator.", $old_lifecycle->Name, $new_lifecycle->Name) ) unless $new_status; } my ($ok, $msg) = $self->_Set( Field => $column, Value => $new->id ); if ($ok) { if ( $new_status and $new_status ne $self->Status ) { my $as_system = blessed($self)->new( RT->SystemUser ); $as_system->Load( $self->Id ); unless ( $as_system->Id ) { return ( 0, $self->loc("Couldn't load copy of [_1] #[_2]", blessed($self), $self->Id) ); } my ($val, $msg) = $as_system->_SetStatus( Lifecycle => $old_lifecycle, NewLifecycle => $new_lifecycle, Status => $new_status, ); if ($val) { # Pick up the change made by the clone above $self->Load( $self->id ); } else { RT->Logger->error("Status change to $new_status failed on $column change: $msg"); undef $new_status; } } return (1, $msg, $new_status); } else { return (0, $msg); } } 1; rt-4.4.2/lib/RT/ObjectCustomFieldValue.pm0000664000175000017500000004763313131430353020042 0ustar vagrantvagrant# BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: # # This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) # # # LICENSE: # # This work is made available to you under the terms of Version 2 of # the GNU General Public License. A copy of that license should have # been provided with this software, but in any event can be snarfed # from www.gnu.org. # # This work is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 or visit their web page on the internet at # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. # # # CONTRIBUTION SUBMISSION POLICY: # # (The following paragraph is not intended to limit the rights granted # to you to modify and distribute this software under the terms of # the GNU General Public License and is only of importance to you if # you choose to contribute your changes and enhancements to the # community by submitting them to Best Practical Solutions, LLC.) # # By intentionally submitting any modifications, corrections or # derivatives to this work, or any other work intended for use with # Request Tracker, to Best Practical Solutions, LLC, you confirm that # you are the copyright holder for those contributions and you grant # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, # royalty-free, perpetual, license to use, copy, create derivative # works based on those contributions, and sublicense and distribute # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} package RT::ObjectCustomFieldValue; use strict; use warnings; use base 'RT::Record'; use RT::Interface::Web; use Regexp::Common qw(RE_net_IPv4); use Regexp::IPv6 qw($IPv6_re); use Regexp::Common::net::CIDR; require Net::CIDR; # Allow the empty IPv6 address $IPv6_re = qr/(?:$IPv6_re|::)/; use RT::CustomField; sub Table {'ObjectCustomFieldValues'} sub Create { my $self = shift; my %args = ( CustomField => 0, ObjectType => '', ObjectId => 0, Disabled => 0, Content => '', LargeContent => undef, ContentType => '', ContentEncoding => '', @_, ); my $cf = RT::CustomField->new( $self->CurrentUser ); $cf->Load( $args{CustomField} ); my ($val, $msg) = $cf->_CanonicalizeValue(\%args); return ($val, $msg) unless $val; my $encoded = Encode::encode("UTF-8", $args{'Content'}); if ( defined $args{'Content'} && length( $encoded ) > 255 ) { if ( defined $args{'LargeContent'} && length $args{'LargeContent'} ) { $RT::Logger->error("Content is longer than 255 bytes and LargeContent specified"); } else { # _EncodeLOB, and thus LargeContent, takes bytes; Content is # in characters. Encode it; this may replace illegal # codepoints (e.g. \x{FDD0}) with \x{FFFD}. $args{'LargeContent'} = Encode::encode("UTF-8",$args{'Content'}); $args{'Content'} = undef; $args{'ContentType'} ||= 'text/plain'; } } ( $args{'ContentEncoding'}, $args{'LargeContent'} ) = $self->_EncodeLOB( $args{'LargeContent'}, $args{'ContentType'} ) if defined $args{'LargeContent'}; return $self->SUPER::Create( CustomField => $args{'CustomField'}, ObjectType => $args{'ObjectType'}, ObjectId => $args{'ObjectId'}, Disabled => $args{'Disabled'}, Content => $args{'Content'}, LargeContent => $args{'LargeContent'}, ContentType => $args{'ContentType'}, ContentEncoding => $args{'ContentEncoding'}, ); } sub LargeContent { my $self = shift; return $self->_DecodeLOB( $self->ContentType, $self->ContentEncoding, $self->_Value( 'LargeContent', decode_utf8 => 0 ) ); } =head2 LoadByCols =cut sub LoadByCols { my $self = shift; my %args = (@_); my $cf; if ( $args{CustomField} ) { $cf = RT::CustomField->new( $self->CurrentUser ); $cf->Load( $args{CustomField} ); my ($ok, $msg) = $cf->_CanonicalizeValue(\%args); return ($ok, $msg) unless $ok; } return $self->SUPER::LoadByCols(%args); } =head2 LoadByTicketContentAndCustomField { Ticket => TICKET, CustomField => CUSTOMFIELD, Content => CONTENT } Loads a custom field value by Ticket, Content and which CustomField it's tied to =cut sub LoadByTicketContentAndCustomField { my $self = shift; my %args = ( Ticket => undef, CustomField => undef, Content => undef, @_ ); return $self->LoadByCols( Content => $args{'Content'}, CustomField => $args{'CustomField'}, ObjectType => 'RT::Ticket', ObjectId => $args{'Ticket'}, Disabled => 0 ); } sub LoadByObjectContentAndCustomField { my $self = shift; my %args = ( Object => undef, CustomField => undef, Content => undef, @_ ); my $obj = $args{'Object'} or return; return $self->LoadByCols( Content => $args{'Content'}, CustomField => $args{'CustomField'}, ObjectType => ref($obj), ObjectId => $obj->Id, Disabled => 0 ); } =head2 CustomFieldObj Returns the CustomField Object which has the id returned by CustomField =cut sub CustomFieldObj { my $self = shift; my $CustomField = RT::CustomField->new( $self->CurrentUser ); $CustomField->SetContextObject( $self->Object ); $CustomField->Load( $self->__Value('CustomField') ); return $CustomField; } =head2 Content Return this custom field's content. If there's no "regular" content, try "LargeContent" =cut my $re_ip_sunit = qr/[0-1][0-9][0-9]|2[0-4][0-9]|25[0-5]/; my $re_ip_serialized = qr/$re_ip_sunit(?:\.$re_ip_sunit){3}/; sub Content { my $self = shift; my $cf = $self->CustomFieldObj; $cf->{include_set_initial} = $self->{include_set_initial}; return undef unless $cf->CurrentUserCanSee; my $content = $self->_Value('Content'); if ( $cf->Type eq 'IPAddress' || $cf->Type eq 'IPAddressRange' ) { require Net::IP; if ( $content =~ /^\s*($re_ip_serialized)\s*$/o ) { $content = sprintf "%d.%d.%d.%d", split /\./, $1; } if ( $content =~ /^\s*($IPv6_re)\s*$/o ) { $content = Net::IP::ip_compress_address($1, 6); } return $content if $cf->Type eq 'IPAddress'; my $large_content = $self->__Value('LargeContent'); if ( $large_content =~ /^\s*($re_ip_serialized)\s*$/o ) { my $eIP = sprintf "%d.%d.%d.%d", split /\./, $1; if ( $content eq $eIP ) { return $content; } else { return $content . "-" . $eIP; } } elsif ( $large_content =~ /^\s*($IPv6_re)\s*$/o ) { my $eIP = Net::IP::ip_compress_address($1, 6); if ( $content eq $eIP ) { return $content; } else { return $content . "-" . $eIP; } } else { return $content; } } if ( !(defined $content && length $content) && $self->ContentType && $self->ContentType eq 'text/plain' ) { return $self->LargeContent; } else { return $content; } } =head2 Object Returns the object this value applies to =cut sub Object { my $self = shift; my $Object = $self->__Value('ObjectType')->new( $self->CurrentUser ); $Object->LoadById( $self->__Value('ObjectId') ); return $Object; } =head2 Delete Disable this value. Used to remove "current" values from records while leaving them in the history. =cut sub Delete { my $self = shift; return $self->SetDisabled(1); } =head2 _FillInTemplateURL URL Takes a URL containing placeholders and returns the URL as filled in for this ObjectCustomFieldValue. The values for the placeholders will be URI-escaped. Available placeholders: =over =item __id__ The id of the object in question. =item __CustomField__ The value of this custom field for the object in question. =item __WebDomain__, __WebPort__, __WebPath__, __WebBaseURL__ and __WebURL__ The value of the config option. =back =cut { my %placeholders = ( id => { value => sub { $_[0]->ObjectId }, escape => 1 }, CustomField => { value => sub { $_[0]->Content }, escape => 1 }, WebDomain => { value => sub { RT->Config->Get('WebDomain') } }, WebPort => { value => sub { RT->Config->Get('WebPort') } }, WebPath => { value => sub { RT->Config->Get('WebPath') } }, WebBaseURL => { value => sub { RT->Config->Get('WebBaseURL') } }, WebURL => { value => sub { RT->Config->Get('WebURL') } }, ); sub _FillInTemplateURL { my $self = shift; my $url = shift; return undef unless defined $url && length $url; # special case, whole value should be an URL if ( $url =~ /^__CustomField__/ ) { my $value = $self->Content; # protect from potentially malicious URLs if ( $value =~ /^\s*(?:javascript|data):/i ) { my $object = $self->Object; $RT::Logger->error( "Potentially dangerous URL type in custom field '". $self->CustomFieldObj->Name ."'" ." on ". ref($object) ." #". $object->id ); return undef; } $url =~ s/^__CustomField__/$value/; } # default value, uri-escape for my $key (keys %placeholders) { $url =~ s{__${key}__}{ my $value = $placeholders{$key}{'value'}->( $self ); $value = '' if !defined($value); RT::Interface::Web::EscapeURI(\$value) if $placeholders{$key}{'escape'}; $value }gxe; } return $url; } } =head2 ValueLinkURL Returns a filled in URL template for this ObjectCustomFieldValue, suitable for constructing a hyperlink in RT's webui. Returns undef if this custom field doesn't have a LinkValueTo =cut sub LinkValueTo { my $self = shift; return $self->_FillInTemplateURL($self->CustomFieldObj->LinkValueTo); } =head2 ValueIncludeURL Returns a filled in URL template for this ObjectCustomFieldValue, suitable for constructing a hyperlink in RT's webui. Returns undef if this custom field doesn't have a IncludeContentForValue =cut sub IncludeContentForValue { my $self = shift; return $self->_FillInTemplateURL($self->CustomFieldObj->IncludeContentForValue); } sub ParseIPRange { my $self = shift; my $value = shift or return; $value = lc $value; $value =~ s!^\s+!!; $value =~ s!\s+$!!; if ( $value =~ /^$RE{net}{CIDR}{IPv4}{-keep}$/go ) { my $cidr = join( '.', map $_||0, (split /\./, $1)[0..3] ) ."/$2"; $value = (Net::CIDR::cidr2range( $cidr ))[0] || $value; } elsif ( $value =~ /^$IPv6_re(?:\/\d+)?$/o ) { $value = (Net::CIDR::cidr2range( $value ))[0] || $value; } my ($sIP, $eIP); if ( $value =~ /^($RE{net}{IPv4})$/o ) { $sIP = $eIP = sprintf "%03d.%03d.%03d.%03d", split /\./, $1; } elsif ( $value =~ /^($RE{net}{IPv4})-($RE{net}{IPv4})$/o ) { $sIP = sprintf "%03d.%03d.%03d.%03d", split /\./, $1; $eIP = sprintf "%03d.%03d.%03d.%03d", split /\./, $2; } elsif ( $value =~ /^($IPv6_re)$/o ) { $sIP = $self->ParseIP( $1 ); $eIP = $sIP; } elsif ( $value =~ /^($IPv6_re)-($IPv6_re)$/o ) { ($sIP, $eIP) = ( $1, $2 ); $sIP = $self->ParseIP( $sIP ); $eIP = $self->ParseIP( $eIP ); } else { return; } ($sIP, $eIP) = ($eIP, $sIP) if $sIP gt $eIP; return $sIP, $eIP; } sub ParseIP { my $self = shift; my $value = shift or return; $value = lc $value; $value =~ s!^\s+!!; $value =~ s!\s+$!!; if ( $value =~ /^($RE{net}{IPv4})$/o ) { return sprintf "%03d.%03d.%03d.%03d", split /\./, $1; } elsif ( $value =~ /^$IPv6_re$/o ) { # up_fields are before '::' # low_fields are after '::' but without v4 # v4_fields are the v4 my ( @up_fields, @low_fields, @v4_fields ); my $v6; if ( $value =~ /(.*:)(\d+\..*)/ ) { ( $v6, my $v4 ) = ( $1, $2 ); chop $v6 unless $v6 =~ /::$/; while ( $v4 =~ /(\d+)\.(\d+)/g ) { push @v4_fields, sprintf '%.2x%.2x', $1, $2; } } else { $v6 = $value; } my ( $up, $low ); if ( $v6 =~ /::/ ) { ( $up, $low ) = split /::/, $v6; } else { $up = $v6; } @up_fields = split /:/, $up; @low_fields = split /:/, $low if $low; my @zero_fields = ('0000') x ( 8 - @v4_fields - @up_fields - @low_fields ); my @fields = ( @up_fields, @zero_fields, @low_fields, @v4_fields ); return join ':', map { sprintf "%.4x", hex "0x$_" } @fields; } return; } =head2 id Returns the current value of id. (In the database, id is stored as int(11).) =cut =head2 CustomField Returns the current value of CustomField. (In the database, CustomField is stored as int(11).) =head2 SetCustomField VALUE Set CustomField to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, CustomField will be stored as a int(11).) =cut =head2 ObjectType Returns the current value of ObjectType. (In the database, ObjectType is stored as varchar(255).) =head2 SetObjectType VALUE Set ObjectType to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, ObjectType will be stored as a varchar(255).) =cut =head2 ObjectId Returns the current value of ObjectId. (In the database, ObjectId is stored as int(11).) =head2 SetObjectId VALUE Set ObjectId to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, ObjectId will be stored as a int(11).) =cut =head2 SortOrder Returns the current value of SortOrder. (In the database, SortOrder is stored as int(11).) =head2 SetSortOrder VALUE Set SortOrder to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, SortOrder will be stored as a int(11).) =cut =head2 Content Returns the current value of Content. (In the database, Content is stored as varchar(255).) =head2 SetContent VALUE Set Content to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, Content will be stored as a varchar(255).) =cut =head2 LargeContent Returns the current value of LargeContent. (In the database, LargeContent is stored as longblob.) =head2 SetLargeContent VALUE Set LargeContent to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, LargeContent will be stored as a longblob.) =cut =head2 ContentType Returns the current value of ContentType. (In the database, ContentType is stored as varchar(80).) =head2 SetContentType VALUE Set ContentType to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, ContentType will be stored as a varchar(80).) =cut =head2 ContentEncoding Returns the current value of ContentEncoding. (In the database, ContentEncoding is stored as varchar(80).) =head2 SetContentEncoding VALUE Set ContentEncoding to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, ContentEncoding will be stored as a varchar(80).) =cut =head2 Creator Returns the current value of Creator. (In the database, Creator is stored as int(11).) =cut =head2 Created Returns the current value of Created. (In the database, Created is stored as datetime.) =cut =head2 LastUpdatedBy Returns the current value of LastUpdatedBy. (In the database, LastUpdatedBy is stored as int(11).) =cut =head2 LastUpdated Returns the current value of LastUpdated. (In the database, LastUpdated is stored as datetime.) =cut =head2 Disabled Returns the current value of Disabled. (In the database, Disabled is stored as smallint(6).) =head2 SetDisabled VALUE Set Disabled to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, Disabled will be stored as a smallint(6).) =cut sub _CoreAccessible { { id => {read => 1, sql_type => 4, length => 11, is_blob => 0, is_numeric => 1, type => 'int(11)', default => ''}, CustomField => {read => 1, write => 1, sql_type => 4, length => 11, is_blob => 0, is_numeric => 1, type => 'int(11)', default => ''}, ObjectType => {read => 1, write => 1, sql_type => 12, length => 255, is_blob => 0, is_numeric => 0, type => 'varchar(255)', default => ''}, ObjectId => {read => 1, write => 1, sql_type => 4, length => 11, is_blob => 0, is_numeric => 1, type => 'int(11)', default => ''}, SortOrder => {read => 1, write => 1, sql_type => 4, length => 11, is_blob => 0, is_numeric => 1, type => 'int(11)', default => '0'}, Content => {read => 1, write => 1, sql_type => 12, length => 255, is_blob => 0, is_numeric => 0, type => 'varchar(255)', default => ''}, LargeContent => {read => 1, write => 1, sql_type => -4, length => 0, is_blob => 1, is_numeric => 0, type => 'longblob', default => ''}, ContentType => {read => 1, write => 1, sql_type => 12, length => 80, is_blob => 0, is_numeric => 0, type => 'varchar(80)', default => ''}, ContentEncoding => {read => 1, write => 1, sql_type => 12, length => 80, is_blob => 0, is_numeric => 0, type => 'varchar(80)', default => ''}, Creator => {read => 1, auto => 1, sql_type => 4, length => 11, is_blob => 0, is_numeric => 1, type => 'int(11)', default => '0'}, Created => {read => 1, auto => 1, sql_type => 11, length => 0, is_blob => 0, is_numeric => 0, type => 'datetime', default => ''}, LastUpdatedBy => {read => 1, auto => 1, sql_type => 4, length => 11, is_blob => 0, is_numeric => 1, type => 'int(11)', default => '0'}, LastUpdated => {read => 1, auto => 1, sql_type => 11, length => 0, is_blob => 0, is_numeric => 0, type => 'datetime', default => ''}, Disabled => {read => 1, write => 1, sql_type => 5, length => 6, is_blob => 0, is_numeric => 1, type => 'smallint(6)', default => '0'}, } }; sub FindDependencies { my $self = shift; my ($walker, $deps) = @_; $self->SUPER::FindDependencies($walker, $deps); $deps->Add( out => $self->CustomFieldObj ); $deps->Add( out => $self->Object ); } sub ShouldStoreExternally { my $self = shift; my $type = $self->CustomFieldObj->Type; my $length = length($self->LargeContent || ''); return (0, "zero length") if $length == 0; return 1 if $type eq "Binary"; if ($type eq "Image") { # We only store externally if it's _large_ return 1 if $length > RT->Config->Get('ExternalStorageCutoffSize'); return (0, "image size ($length) does not exceed ExternalStorageCutoffSize (" . RT->Config->Get('ExternalStorageCutoffSize') . ")"); } return (0, "Only custom fields of type Binary or Image go into external storage (not $type)"); } sub ExternalStoreDigest { my $self = shift; return undef if $self->ContentEncoding ne 'external'; return $self->_Value( 'LargeContent' ); } RT::Base->_ImportOverlays(); 1; rt-4.4.2/lib/RT/EmailParser.pm0000664000175000017500000004512113131430353015672 0ustar vagrantvagrant# BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: # # This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) # # # LICENSE: # # This work is made available to you under the terms of Version 2 of # the GNU General Public License. A copy of that license should have # been provided with this software, but in any event can be snarfed # from www.gnu.org. # # This work is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 or visit their web page on the internet at # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. # # # CONTRIBUTION SUBMISSION POLICY: # # (The following paragraph is not intended to limit the rights granted # to you to modify and distribute this software under the terms of # the GNU General Public License and is only of importance to you if # you choose to contribute your changes and enhancements to the # community by submitting them to Best Practical Solutions, LLC.) # # By intentionally submitting any modifications, corrections or # derivatives to this work, or any other work intended for use with # Request Tracker, to Best Practical Solutions, LLC, you confirm that # you are the copyright holder for those contributions and you grant # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, # royalty-free, perpetual, license to use, copy, create derivative # works based on those contributions, and sublicense and distribute # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} package RT::EmailParser; use base qw/RT::Base/; use strict; use warnings; use Email::Address; use MIME::Entity; use MIME::Head; use MIME::Parser; use File::Temp qw/tempdir/; =head1 NAME RT::EmailParser - helper functions for parsing parts from incoming email messages =head1 SYNOPSIS =head1 DESCRIPTION =head1 METHODS =head2 new Returns a new RT::EmailParser object =cut sub new { my $proto = shift; my $class = ref($proto) || $proto; my $self = {}; bless ($self, $class); return $self; } =head2 SmartParseMIMEEntityFromScalar Message => SCALAR_REF [, Decode => BOOL, Exact => BOOL ] } Parse a message stored in a scalar from scalar_ref. =cut sub SmartParseMIMEEntityFromScalar { my $self = shift; my %args = ( Message => undef, Decode => 1, Exact => 0, @_ ); eval { my ( $fh, $temp_file ); for ( 1 .. 10 ) { # on NFS and NTFS, it is possible that tempfile() conflicts # with other processes, causing a race condition. we try to # accommodate this by pausing and retrying. last if ( $fh, $temp_file ) = eval { File::Temp::tempfile( UNLINK => 0 ) }; sleep 1; } if ($fh) { #thank you, windows binmode $fh; $fh->autoflush(1); print $fh $args{'Message'}; close($fh); if ( -f $temp_file ) { my $entity = $self->ParseMIMEEntityFromFile( $temp_file, $args{'Decode'}, $args{'Exact'} ); unlink($temp_file) or RT->Logger->error("Unable to delete temp file $temp_file, error: $!"); return $entity; } } }; #If for some reason we weren't able to parse the message using a temp file # try it with a scalar if ( $@ || !$self->Entity ) { return $self->ParseMIMEEntityFromScalar( $args{'Message'}, $args{'Decode'}, $args{'Exact'} ); } } =head2 ParseMIMEEntityFromSTDIN Parse a message from standard input =cut sub ParseMIMEEntityFromSTDIN { my $self = shift; return $self->ParseMIMEEntityFromFileHandle(\*STDIN, @_); } =head2 ParseMIMEEntityFromScalar $message Takes either a scalar or a reference to a scalar which contains a stringified MIME message. Parses it. Returns true if it wins. Returns false if it loses. =cut sub ParseMIMEEntityFromScalar { my $self = shift; return $self->_ParseMIMEEntity( shift, 'parse_data', @_ ); } =head2 ParseMIMEEntityFromFilehandle *FH Parses a mime entity from a filehandle passed in as an argument =cut sub ParseMIMEEntityFromFileHandle { my $self = shift; return $self->_ParseMIMEEntity( shift, 'parse', @_ ); } =head2 ParseMIMEEntityFromFile Parses a mime entity from a filename passed in as an argument =cut sub ParseMIMEEntityFromFile { my $self = shift; return $self->_ParseMIMEEntity( shift, 'parse_open', @_ ); } sub _ParseMIMEEntity { my $self = shift; my $message = shift; my $method = shift; my $postprocess = (@_ ? shift : 1); my $exact = shift; # Create a new parser object: my $parser = MIME::Parser->new(); $self->_SetupMIMEParser($parser); $parser->decode_bodies(0) if $exact; # TODO: XXX 3.0 we really need to wrap this in an eval { } unless ( $self->{'entity'} = $parser->$method($message) ) { $RT::Logger->crit("Couldn't parse MIME stream and extract the submessages"); # Try again, this time without extracting nested messages $parser->extract_nested_messages(0); unless ( $self->{'entity'} = $parser->$method($message) ) { $RT::Logger->crit("couldn't parse MIME stream"); return ( undef); } } $self->_PostProcessNewEntity if $postprocess; return $self->{'entity'}; } sub _DecodeBodies { my $self = shift; return unless $self->{'entity'}; my @parts = $self->{'entity'}->parts_DFS; $self->_DecodeBody($_) foreach @parts; } sub _DecodeBody { my $self = shift; my $entity = shift; my $old = $entity->bodyhandle or return; return unless $old->is_encoded; require MIME::Decoder; my $encoding = $entity->head->mime_encoding; my $decoder = MIME::Decoder->new($encoding); unless ( $decoder ) { $RT::Logger->error("Couldn't find decoder for '$encoding', switching to binary"); $old->is_encoded(0); return; } require MIME::Body; # XXX: use InCore for now, but later must switch to files my $new = MIME::Body::InCore->new(); $new->binmode(1); $new->is_encoded(0); my $source = $old->open('r') or die "couldn't open body: $!"; my $destination = $new->open('w') or die "couldn't open body: $!"; { local $@; eval { $decoder->decode($source, $destination) }; $RT::Logger->error($@) if $@; } $source->close or die "can't close: $!"; $destination->close or die "can't close: $!"; $entity->bodyhandle( $new ); } =head2 _PostProcessNewEntity cleans up and postprocesses a newly parsed MIME Entity =cut sub _PostProcessNewEntity { my $self = shift; #Now we've got a parsed mime object. # Unfold headers that are have embedded newlines # Better do this before conversion or it will break # with multiline encoded Subject (RFC2047) (fsck.com #5594) $self->Head->unfold; # try to convert text parts into utf-8 charset RT::I18N::SetMIMEEntityToEncoding($self->{'entity'}, 'utf-8'); } =head2 IsRTaddress ADDRESS Takes a single parameter, an email address. Returns true if that address matches the C config option. Returns false, otherwise. =cut sub IsRTAddress { my $self = shift; my $address = shift; return undef unless defined($address) and $address =~ /\S/; if ( my $address_re = RT->Config->Get('RTAddressRegexp') ) { return $address =~ /$address_re/i ? 1 : undef; } # we don't warn here, but do in config check if ( my $correspond_address = RT->Config->Get('CorrespondAddress') ) { return 1 if lc $correspond_address eq lc $address; } if ( my $comment_address = RT->Config->Get('CommentAddress') ) { return 1 if lc $comment_address eq lc $address; } my $queue = RT::Queue->new( RT->SystemUser ); $queue->LoadByCols( CorrespondAddress => $address ); return 1 if $queue->id; $queue->LoadByCols( CommentAddress => $address ); return 1 if $queue->id; return undef; } =head2 CullRTAddresses ARRAY Takes a single argument, an array of email addresses. Returns the same array with any IsRTAddress()es weeded out. =cut sub CullRTAddresses { my $self = shift; my @addresses = (@_); return grep { !$self->IsRTAddress($_) } @addresses; } # LookupExternalUserInfo is a site-definable method for synchronizing # incoming users with an external data source. # # This routine takes a tuple of EmailAddress and FriendlyName # EmailAddress is the user's email address, ususally taken from # an email message's From: header. # FriendlyName is a freeform string, ususally taken from the "comment" # portion of an email message's From: header. # # If you define an AutoRejectRequest template, RT will use this # template for the rejection message. =head2 LookupExternalUserInfo LookupExternalUserInfo is a site-definable method for synchronizing incoming users with an external data source. This routine takes a tuple of EmailAddress and FriendlyName EmailAddress is the user's email address, ususally taken from an email message's From: header. FriendlyName is a freeform string, ususally taken from the "comment" portion of an email message's From: header. It returns (FoundInExternalDatabase, ParamHash); FoundInExternalDatabase must be set to 1 before return if the user was found in the external database. ParamHash is a Perl parameter hash which can contain at least the following fields. These fields are used to populate RT's users database when the user is created. EmailAddress is the email address that RT should use for this user. Name is the 'Name' attribute RT should use for this user. 'Name' is used for things like access control and user lookups. RealName is what RT should display as the user's name when displaying 'friendly' names =cut sub LookupExternalUserInfo { my $self = shift; my $EmailAddress = shift; my $RealName = shift; my $FoundInExternalDatabase = 1; my %params; #Name is the RT username you want to use for this user. $params{'Name'} = $EmailAddress; $params{'EmailAddress'} = $EmailAddress; $params{'RealName'} = $RealName; return ($FoundInExternalDatabase, %params); } =head2 Head Return the parsed head from this message =cut sub Head { my $self = shift; return $self->Entity->head; } =head2 Entity Return the parsed Entity from this message =cut sub Entity { my $self = shift; return $self->{'entity'}; } =head2 _SetupMIMEParser $parser A private instance method which sets up a mime parser to do its job =cut ## TODO: Does it make sense storing to disk at all? After all, we ## need to put each msg as an in-core scalar before saving it to ## the database, don't we? ## At the same time, we should make sure that we nuke attachments ## Over max size and return them sub _SetupMIMEParser { my $self = shift; my $parser = shift; # Set up output directory for files; we use $RT::VarPath instead # of File::Spec->tmpdir (e.g., /tmp) beacuse it isn't always # writable. my $tmpdir; if (-w File::Spec->tmpdir) { $tmpdir = File::Temp::tempdir( TMPDIR => 1, CLEANUP => 1 ); } elsif ( -w $RT::VarPath ) { $tmpdir = File::Temp::tempdir( DIR => $RT::VarPath, CLEANUP => 1 ); } else { $RT::Logger->crit("Neither the RT var directory ($RT::VarPath) nor the system tmpdir (@{[File::Spec->tmpdir]}) are writable; falling back to in-memory parsing!"); } #If someone includes a message, extract it $parser->extract_nested_messages(1); $parser->extract_uuencode(1); ### default is false if ($tmpdir) { # If we got a writable tmpdir, write to disk push ( @{ $self->{'AttachmentDirs'} ||= [] }, $tmpdir ); $parser->output_dir($tmpdir); $parser->filer->ignore_filename(1); # Set up the prefix for files with auto-generated names: $parser->output_prefix("part"); # From the MIME::Parser docs: # "Normally, tmpfiles are created when needed during parsing, and destroyed automatically when they go out of scope" # Turns out that the default is to recycle tempfiles # Temp files should never be recycled, especially when running under perl taint checking $parser->tmp_recycling(0) if $parser->can('tmp_recycling'); } else { # Otherwise, fall back to storing it in memory $parser->output_to_core(1); $parser->tmp_to_core(1); $parser->use_inner_files(1); } } =head2 ParseEmailAddress string Returns a list of Email::Address objects Works around the bug that Email::Address 1.889 and earlier doesn't handle local-only email addresses (when users pass in just usernames on the RT system in fields that expect Email Addresses) We don't handle the case of bob, fred@bestpractical.com because we don't want to fail parsing bob, "Falcone, Fred" The next release of Email::Address will have a new method we can use that removes the bandaid =cut use Email::Address::List; sub ParseEmailAddress { my $self = shift; my $address_string = shift; # Some broken mailers send: ""Vincent, Jesse"" . Hate $address_string =~ s/\"\"(.*?)\"\"/\"$1\"/g; my @list = Email::Address::List->parse( $address_string, skip_comments => 1, skip_groups => 1, ); my $logger = sub { RT->Logger->error( "Unable to parse an email address from $address_string: ". shift ) }; my @addresses; foreach my $e ( @list ) { if ($e->{'type'} eq 'mailbox') { if ($e->{'not_ascii'}) { $logger->($e->{'value'} ." contains not ASCII values"); next; } push @addresses, $e->{'value'} } elsif ( $e->{'value'} =~ /^\s*(\w+)\s*$/ ) { my $user = RT::User->new( RT->SystemUser ); $user->Load( $1 ); if ($user->id) { push @addresses, Email::Address->new($user->Name, $user->EmailAddress); } else { $logger->($e->{'value'} ." is not a valid email address and is not user name"); } } else { $logger->($e->{'value'} ." is not a valid email address"); } } $self->CleanupAddresses(@addresses); return @addresses; } =head2 CleanupAddresses ARRAY Massages an array of L objects to make their email addresses more palatable. Currently this strips off surrounding single quotes around C<< ->address >> and B<< modifies the L objects in-place >>. Returns the list of objects for convienence in C/C chains. =cut sub CleanupAddresses { my $self = shift; for my $addr (@_) { next unless defined $addr; # Outlook sometimes sends addresses surrounded by single quotes; # clean them all up if ((my $email = $addr->address) =~ s/^'(.+)'$/$1/) { $addr->address($email); } } return @_; } =head2 RescueOutlook Outlook 2007/2010 have a bug when you write an email with the html format. it will send a 'multipart/alternative' with both 'text/plain' and 'text/html' in it. it's cool to have a 'text/plain' part, but the problem is the part is not so right: all the "\n" in your main message will become "\n\n" :/ this method will fix this bug, i.e. replaces "\n\n" to "\n". return 1 if it does find the problem in the entity and get it fixed. =cut sub RescueOutlook { my $self = shift; my $mime = $self->Entity(); return unless $mime && $self->LooksLikeMSEmail($mime); my $text_part; if ( $mime->head->get('Content-Type') =~ m{multipart/mixed} ) { my $first = $mime->parts(0); if ( $first->head->get('Content-Type') =~ m{multipart/alternative} ) { my $inner_first = $first->parts(0); if ( $inner_first->head->get('Content-Type') =~ m{text/plain} ) { $text_part = $inner_first; } } } elsif ( $mime->head->get('Content-Type') =~ m{multipart/alternative} ) { my $first = $mime->parts(0); if ( $first->head->get('Content-Type') =~ m{text/plain} ) { $text_part = $first; } } # Add base64 since we've seen examples of double newlines with # this type too. Need an example of a multi-part base64 to # handle that permutation if it exists. elsif ( ($mime->head->get('Content-Transfer-Encoding')||'') =~ m{base64} ) { $text_part = $mime; # Assuming single part, already decoded. } if ($text_part) { # use the unencoded string my $content = $text_part->bodyhandle->as_string; if ( $content =~ s/\n\n/\n/g ) { # Outlook puts a space on extra newlines, remove it $content =~ s/\ +$//mg; # only write only if we did change the content if ( my $io = $text_part->open("w") ) { $io->print($content); $io->close; $RT::Logger->debug( "Removed extra newlines from MS Outlook message."); return 1; } else { $RT::Logger->error("Can't write to body to fix newlines"); } } } return; } =head1 LooksLikeMSEmail Try to determine if the current email may have come from MS Outlook or gone through Exchange, and therefore may have extra newlines added. =cut sub LooksLikeMSEmail { my $self = shift; my $mime = shift; my $mailer = $mime->head->get('X-Mailer'); # 12.0 is outlook 2007, 14.0 is 2010 return 1 if ( $mailer && $mailer =~ /Microsoft(?:.*?)Outlook 1[2-4]\./ ); if ( RT->Config->Get('CheckMoreMSMailHeaders') ) { # Check for additional headers that might # indicate this came from Outlook or through Exchange. # A sample we received had the headers X-MS-Has-Attach: and # X-MS-Tnef-Correlator: and both had no value. my @tags = $mime->head->tags(); return 1 if grep { /^X-MS-/ } @tags; } return 0; # Doesn't look like MS email. } sub DESTROY { my $self = shift; File::Path::rmtree([@{$self->{'AttachmentDirs'}}],0,1) if $self->{'AttachmentDirs'}; } RT::Base->_ImportOverlays(); 1; rt-4.4.2/lib/RT/Class.pm0000664000175000017500000003617213131430353014541 0ustar vagrantvagrant# BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: # # This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) # # # LICENSE: # # This work is made available to you under the terms of Version 2 of # the GNU General Public License. A copy of that license should have # been provided with this software, but in any event can be snarfed # from www.gnu.org. # # This work is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 or visit their web page on the internet at # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. # # # CONTRIBUTION SUBMISSION POLICY: # # (The following paragraph is not intended to limit the rights granted # to you to modify and distribute this software under the terms of # the GNU General Public License and is only of importance to you if # you choose to contribute your changes and enhancements to the # community by submitting them to Best Practical Solutions, LLC.) # # By intentionally submitting any modifications, corrections or # derivatives to this work, or any other work intended for use with # Request Tracker, to Best Practical Solutions, LLC, you confirm that # you are the copyright holder for those contributions and you grant # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, # royalty-free, perpetual, license to use, copy, create derivative # works based on those contributions, and sublicense and distribute # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} package RT::Class; use strict; use warnings; use base 'RT::Record'; use RT::System; use RT::CustomFields; use RT::ACL; use RT::Articles; use RT::ObjectClass; use RT::ObjectClasses; use Role::Basic 'with'; with "RT::Record::Role::Rights"; sub Table {'Classes'} =head2 Load IDENTIFIER Loads a class, either by name or by id =cut sub Load { my $self = shift; my $id = shift ; return unless $id; if ( $id =~ /^\d+$/ ) { $self->SUPER::Load($id); } else { $self->LoadByCols( Name => $id ); } } __PACKAGE__->AddRight( Staff => SeeClass => 'See that this class exists'); # loc __PACKAGE__->AddRight( Staff => CreateArticle => 'Create articles in this class'); # loc __PACKAGE__->AddRight( General => ShowArticle => 'See articles in this class'); # loc __PACKAGE__->AddRight( Staff => ShowArticleHistory => 'See changes to articles in this class'); # loc __PACKAGE__->AddRight( General => SeeCustomField => 'View custom field values' ); # loc __PACKAGE__->AddRight( Staff => ModifyArticle => 'Modify articles in this class'); # loc __PACKAGE__->AddRight( Staff => ModifyArticleTopics => 'Modify topics for articles in this class'); # loc __PACKAGE__->AddRight( Staff => ModifyCustomField => 'Modify custom field values' ); # loc __PACKAGE__->AddRight( Staff => SetInitialCustomField => 'Add custom field values only at object creation time'); # loc __PACKAGE__->AddRight( Admin => AdminClass => 'Modify metadata and custom fields for this class'); # loc __PACKAGE__->AddRight( Admin => AdminTopics => 'Modify topic hierarchy associated with this class'); # loc __PACKAGE__->AddRight( Admin => ShowACL => 'Display Access Control List'); # loc __PACKAGE__->AddRight( Admin => ModifyACL => 'Create, modify and delete Access Control List entries'); # loc __PACKAGE__->AddRight( Staff => DisableArticle => 'Disable articles in this class'); # loc # {{{ Create =head2 Create PARAMHASH Create takes a hash of values and creates a row in the database: varchar(255) 'Name'. varchar(255) 'Description'. int(11) 'SortOrder'. =cut sub Create { my $self = shift; my %args = ( Name => '', Description => '', SortOrder => '0', HotList => 0, @_ ); unless ( $self->CurrentUser->HasRight( Right => 'AdminClass', Object => $RT::System ) ) { return ( 0, $self->loc('Permission Denied') ); } $self->SUPER::Create( Name => $args{'Name'}, Description => $args{'Description'}, SortOrder => $args{'SortOrder'}, HotList => $args{'HotList'}, ); } sub ValidateName { my $self = shift; my $newval = shift; return undef unless ($newval); my $obj = RT::Class->new($RT::SystemUser); $obj->Load($newval); return undef if $obj->id && ( !$self->id || $self->id != $obj->id ); return $self->SUPER::ValidateName($newval); } # }}} # }}} # {{{ ACCESS CONTROL # {{{ sub _Set sub _Set { my $self = shift; unless ( $self->CurrentUserHasRight('AdminClass') ) { return ( 0, $self->loc('Permission Denied') ); } return ( $self->SUPER::_Set(@_) ); } # }}} # {{{ sub _Value sub _Value { my $self = shift; unless ( $self->CurrentUserHasRight('SeeClass') ) { return (undef); } return ( $self->__Value(@_) ); } # }}} sub ArticleCustomFields { my $self = shift; my $cfs = RT::CustomFields->new( $self->CurrentUser ); if ( $self->CurrentUserHasRight('SeeClass') ) { $cfs->SetContextObject( $self ); $cfs->LimitToGlobalOrObjectId( $self->Id ); $cfs->LimitToLookupType( RT::Article->CustomFieldLookupType ); $cfs->ApplySortOrder; } return ($cfs); } =head1 AppliedTo Returns collection of Queues this Class is applied to. Doesn't takes into account if object is applied globally. =cut sub AppliedTo { my $self = shift; my ($res, $ocfs_alias) = $self->_AppliedTo; return $res unless $res; $res->Limit( ALIAS => $ocfs_alias, FIELD => 'id', OPERATOR => 'IS NOT', VALUE => 'NULL', ); return $res; } =head1 NotAppliedTo Returns collection of Queues this Class is not applied to. Doesn't takes into account if object is applied globally. =cut sub NotAppliedTo { my $self = shift; my ($res, $ocfs_alias) = $self->_AppliedTo; return $res unless $res; $res->Limit( ALIAS => $ocfs_alias, FIELD => 'id', OPERATOR => 'IS', VALUE => 'NULL', ); return $res; } sub _AppliedTo { my $self = shift; my $res = RT::Queues->new( $self->CurrentUser ); $res->OrderBy( FIELD => 'Name' ); my $ocfs_alias = $res->Join( TYPE => 'LEFT', ALIAS1 => 'main', FIELD1 => 'id', TABLE2 => 'ObjectClasses', FIELD2 => 'ObjectId', ); $res->Limit( LEFTJOIN => $ocfs_alias, ALIAS => $ocfs_alias, FIELD => 'Class', VALUE => $self->id, ); return ($res, $ocfs_alias); } =head2 IsApplied Takes object id and returns corresponding L record if this Class is applied to the object. Use 0 to check if Class is applied globally. =cut sub IsApplied { my $self = shift; my $id = shift; return unless defined $id; my $oc = RT::ObjectClass->new( $self->CurrentUser ); $oc->LoadByCols( Class=> $self->id, ObjectId => $id, ObjectType => ( $id ? 'RT::Queue' : 'RT::System' )); return undef unless $oc->id; return $oc; } =head2 AddToObject OBJECT Apply this Class to a single object, to start with we support Queues Takes an object =cut sub AddToObject { my $self = shift; my $object = shift; my $id = $object->Id || 0; unless ( $object->CurrentUserHasRight('AdminClass') ) { return ( 0, $self->loc('Permission Denied') ); } my $queue = RT::Queue->new( $self->CurrentUser ); if ( $id ) { my ($ok, $msg) = $queue->Load( $id ); unless ($ok) { return ( 0, $self->loc('Invalid Queue, unable to apply Class: [_1]',$msg ) ); } } if ( $self->IsApplied( $id ) ) { return ( 0, $self->loc("Class is already applied to [_1]",$queue->Name) ); } if ( $id ) { # applying locally return (0, $self->loc("Class is already applied Globally") ) if $self->IsApplied( 0 ); } else { my $applied = RT::ObjectClasses->new( $self->CurrentUser ); $applied->LimitToClass( $self->id ); while ( my $record = $applied->Next ) { $record->Delete; } } my $oc = RT::ObjectClass->new( $self->CurrentUser ); my ( $oid, $msg ) = $oc->Create( ObjectId => $id, Class => $self->id, ObjectType => ( $id ? 'RT::Queue' : 'RT::System' ), ); return ( $oid, $msg ); } =head2 RemoveFromObject OBJECT Remove this class from a single queue object =cut sub RemoveFromObject { my $self = shift; my $object = shift; my $id = $object->Id || 0; unless ( $object->CurrentUserHasRight('AdminClass') ) { return ( 0, $self->loc('Permission Denied') ); } my $ocf = $self->IsApplied( $id ); unless ( $ocf ) { return ( 0, $self->loc("This class does not apply to that object") ); } # XXX: Delete doesn't return anything my ( $oid, $msg ) = $ocf->Delete; return ( $oid, $msg ); } sub SubjectOverride { my $self = shift; my $override = $self->FirstAttribute('SubjectOverride'); return $override ? $override->Content : 0; } sub SetSubjectOverride { my $self = shift; my $override = shift; if ( $override == $self->SubjectOverride ) { return (0, "SubjectOverride is already set to that"); } my $cf = RT::CustomField->new($self->CurrentUser); $cf->Load($override); if ( $override ) { my ($ok, $msg) = $self->SetAttribute( Name => 'SubjectOverride', Content => $override ); return ($ok, $ok ? $self->loc('Added Subject Override: [_1]', $cf->Name) : $self->loc('Unable to add Subject Override: [_1] [_2]', $cf->Name, $msg)); } else { my ($ok, $msg) = $self->DeleteAttribute('SubjectOverride'); return ($ok, $ok ? $self->loc('Removed Subject Override') : $self->loc('Unable to add Subject Override: [_1] [_2]', $cf->Name, $msg)); } } =head2 id Returns the current value of id. (In the database, id is stored as int(11).) =cut =head2 Name Returns the current value of Name. (In the database, Name is stored as varchar(255).) =head2 SetName VALUE Set Name to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, Name will be stored as a varchar(255).) =cut =head2 Description Returns the current value of Description. (In the database, Description is stored as varchar(255).) =head2 SetDescription VALUE Set Description to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, Description will be stored as a varchar(255).) =cut =head2 SortOrder Returns the current value of SortOrder. (In the database, SortOrder is stored as int(11).) =head2 SetSortOrder VALUE Set SortOrder to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, SortOrder will be stored as a int(11).) =cut =head2 Disabled Returns the current value of Disabled. (In the database, Disabled is stored as int(2).) =head2 SetDisabled VALUE Set Disabled to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, Disabled will be stored as a int(2).) =cut =head2 HotList Returns the current value of HotList. (In the database, HotList is stored as int(2).) =head2 SetHotList VALUE Set HotList to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, HotList will be stored as a int(2).) =cut =head2 Creator Returns the current value of Creator. (In the database, Creator is stored as int(11).) =cut =head2 Created Returns the current value of Created. (In the database, Created is stored as datetime.) =cut =head2 LastUpdatedBy Returns the current value of LastUpdatedBy. (In the database, LastUpdatedBy is stored as int(11).) =cut =head2 LastUpdated Returns the current value of LastUpdated. (In the database, LastUpdated is stored as datetime.) =cut sub _CoreAccessible { { id => {read => 1, type => 'int(11)', default => ''}, Name => {read => 1, write => 1, type => 'varchar(255)', default => ''}, Description => {read => 1, write => 1, type => 'varchar(255)', default => ''}, SortOrder => {read => 1, write => 1, type => 'int(11)', default => '0'}, Disabled => {read => 1, write => 1, type => 'int(2)', default => '0'}, HotList => {read => 1, write => 1, type => 'int(2)', default => '0'}, Creator => {read => 1, auto => 1, type => 'int(11)', default => '0'}, Created => {read => 1, auto => 1, type => 'datetime', default => ''}, LastUpdatedBy => {read => 1, auto => 1, type => 'int(11)', default => '0'}, LastUpdated => {read => 1, auto => 1, type => 'datetime', default => ''}, } }; sub FindDependencies { my $self = shift; my ($walker, $deps) = @_; $self->SUPER::FindDependencies($walker, $deps); my $articles = RT::Articles->new( $self->CurrentUser ); $articles->Limit( FIELD => "Class", VALUE => $self->Id ); $deps->Add( in => $articles ); my $topics = RT::Topics->new( $self->CurrentUser ); $topics->LimitToObject( $self ); $deps->Add( in => $topics ); my $objectclasses = RT::ObjectClasses->new( $self->CurrentUser ); $objectclasses->LimitToClass( $self->Id ); $deps->Add( in => $objectclasses ); # Custom Fields on things _in_ this class (CFs on the class itself # have already been dealt with) my $ocfs = RT::ObjectCustomFields->new( $self->CurrentUser ); $ocfs->Limit( FIELD => 'ObjectId', OPERATOR => '=', VALUE => $self->id, ENTRYAGGREGATOR => 'OR' ); $ocfs->Limit( FIELD => 'ObjectId', OPERATOR => '=', VALUE => 0, ENTRYAGGREGATOR => 'OR' ); my $cfs = $ocfs->Join( ALIAS1 => 'main', FIELD1 => 'CustomField', TABLE2 => 'CustomFields', FIELD2 => 'id', ); $ocfs->Limit( ALIAS => $cfs, FIELD => 'LookupType', OPERATOR => 'STARTSWITH', VALUE => 'RT::Class-' ); $deps->Add( in => $ocfs ); } sub PreInflate { my $class = shift; my ($importer, $uid, $data) = @_; $class->SUPER::PreInflate( $importer, $uid, $data ); return if $importer->MergeBy( "Name", $class, $uid, $data ); return 1; } RT::Base->_ImportOverlays(); 1; rt-4.4.2/lib/RT/Dashboard/0000775000175000017500000000000013131430353015014 5ustar vagrantvagrantrt-4.4.2/lib/RT/Dashboard/Mailer.pm0000664000175000017500000005517713131430353016602 0ustar vagrantvagrant# BEGIN BPS TAGGED BLOCK {{{ # # COPYRIGHT: # # This software is Copyright (c) 1996-2017 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) # # # LICENSE: # # This work is made available to you under the terms of Version 2 of # the GNU General Public License. A copy of that license should have # been provided with this software, but in any event can be snarfed # from www.gnu.org. # # This work is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301 or visit their web page on the internet at # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. # # # CONTRIBUTION SUBMISSION POLICY: # # (The following paragraph is not intended to limit the rights granted # to you to modify and distribute this software under the terms of # the GNU General Public License and is only of importance to you if # you choose to contribute your changes and enhancements to the # community by submitting them to Best Practical Solutions, LLC.) # # By intentionally submitting any modifications, corrections or # derivatives to this work, or any other work intended for use with # Request Tracker, to Best Practical Solutions, LLC, you confirm that # you are the copyright holder for those contributions and you grant # Best Practical Solutions, LLC a nonexclusive, worldwide, irrevocable, # royalty-free, perpetual, license to use, copy, create derivative # works based on those contributions, and sublicense and distribute # those contributions and any derivatives thereof. # # END BPS TAGGED BLOCK }}} package RT::Dashboard::Mailer; use strict; use warnings; use HTML::Mason; use HTML::RewriteAttributes::Links; use HTML::RewriteAttributes::Resources; use MIME::Types; use POSIX 'tzset'; use RT::Dashboard; use RT::Interface::Web::Handler; use RT::Interface::Web; use File::Temp 'tempdir'; use HTML::Scrubber; use URI::QueryParam; use List::MoreUtils 'uniq'; sub MailDashboards { my $self = shift; my %args = ( All => 0, DryRun => 0, Time => time, @_, ); $RT::Logger->debug("Using time $args{Time} for dashboard generation"); my $from = $self->GetFrom(); $RT::Logger->debug("Sending email from $from"); # look through each user for her subscriptions my $Users = RT::Users->new(RT->SystemUser); $Users->LimitToPrivileged; while (defined(my $user = $Users->Next)) { if ($user->PrincipalObj->Disabled) { $RT::Logger->debug("Skipping over " . $user->Name . " due to having a disabled account."); next; } my ($hour, $dow, $dom) = HourDowDomIn($args{Time}, $user->Timezone || RT->Config->Get('Timezone')); $hour .= ':00'; $RT::Logger->debug("Checking ".$user->Name."'s subscriptions: hour $hour, dow $dow, dom $dom"); my $currentuser = RT::CurrentUser->new; $currentuser->LoadByName($user->Name); my $subscriber_lang = $user->Lang; # look through this user's subscriptions, are any supposed to be generated # right now? for my $subscription ($user->Attributes->Named('Subscription')) { next unless $self->IsSubscriptionReady( %args, Subscription => $subscription, User => $user, LocalTime => [$hour, $dow, $dom], ); my $recipients = $subscription->SubValue('Recipients'); my $recipients_users = $recipients->{Users}; my $recipients_groups = $recipients->{Groups}; my @emails; my %recipient_language; # add users' emails to email list for my $user_id (@{ $recipients_users || [] }) { my $user = RT::User->new(RT->SystemUser); $user->Load($user_id); next unless $user->id; push @emails, $user->EmailAddress; $recipient_language{$user->EmailAddress} = $user->Lang; } # add emails for every group's members for my $group_id (@{ $recipients_groups || [] }) { my $group = RT::Group->new(RT->SystemUser); $group->Load($group_id); next unless $group->id; my $users = $group->UserMembersObj; while (my $user = $users->Next) { push @emails, $user->EmailAddress; $recipient_language{$user->EmailAddress} = $user->Lang; } } my $email_success = 0; for my $email (uniq @emails) { eval { my $lang; for my $langkey (RT->Config->Get('EmailDashboardLanguageOrder')) { if ($langkey eq '_subscription') { if ($lang = $subscription->SubValue('Language')) { $RT::Logger->debug("Using subscription's specified language '$lang'"); last; } } elsif ($langkey eq '_recipient') { if ($lang = $recipient_language{$email}) { $RT::Logger->debug("Using recipient's preferred language '$lang'"); last; } } elsif ($langkey eq '_subscriber') { if ($lang = $subscriber_lang) { $RT::Logger->debug("Using subscriber's preferred language '$lang'"); last; } } else { # specific language name $lang = $langkey; $RT::Logger->debug("Using EmailDashboardLanguageOrder fallback language '$lang'"); last; } } # use English as the absolute fallback. Though the config # lets you specify a site-specific fallback, it also lets # you not specify a fallback, and we don't want to # accidentally reuse whatever language the previous # recipient happened to have if (!$lang) { $RT::Logger->debug("Using RT's fallback language 'en'. You may specify a different fallback language in your config with EmailDashboardLanguageOrder."); $lang = 'en'; } $currentuser->{'LangHandle'} = RT::I18N->get_handle($lang); $self->SendDashboard( %args, CurrentUser => $currentuser, Email => $email, Subscription => $subscription, From => $from, ) }; if ( $@ ) { $RT::Logger->error("Caught exception: $@"); } else { $email_success = 1; } } if ($email_success) { my $counter = $subscription->SubValue('Counter') || 0; $subscription->SetSubValues(Counter => $counter + 1) unless $args{DryRun}; } } } } sub IsSubscriptionReady { my $self = shift; my %args = ( All => 0, Subscription => undef, User => undef, LocalTime => [0, 0, 0], @_, ); return 1 if $args{All}; my $subscription = $args{Subscription}; my $counter = $subscription->SubValue('Counter') || 0; my $sub_frequency = $subscription->SubValue('Frequency'); my $sub_hour = $subscription->SubValue('Hour'); my $sub_dow = $subscription->SubValue('Dow'); my $sub_dom = $subscription->SubValue('Dom'); my $sub_fow = $subscription->SubValue('Fow') || 1; my $log_frequency = $sub_frequency; if ($log_frequency eq 'daily') { my $days = join ' ', grep { $subscription->SubValue($_) } qw/Monday Tuesday Wednesday Thursday Friday Saturday Sunday/; $log_frequency = "$log_frequency ($days)"; } my ($hour, $dow, $dom) = @{ $args{LocalTime} }; $RT::Logger->debug("Checking against subscription " . $subscription->Id . " for " . $args{User}->Name . " with frequency $log_frequency, hour $sub_hour, dow $sub_dow, dom $sub_dom, fow $sub_fow, counter $counter"); return 0 if $sub_frequency eq 'never'; # correct hour? return 0 if $sub_hour ne $hour; if ($sub_frequency eq 'daily') { return $subscription->SubValue($dow) ? 1 : 0; } if ($sub_frequency eq 'weekly') { # correct day of week? return 0 if $sub_dow ne $dow; # does it match the "every N weeks" clause? return 1 if $counter % $sub_fow == 0; $subscription->SetSubValues(Counter => $counter + 1) unless $args{DryRun}; return 0; } # if monthly, correct day of month? if ($sub_frequency eq 'monthly') { return $sub_dom == $dom; } $RT::Logger->debug("Invalid subscription frequency $sub_frequency for " . $args{User}->Name); # unknown frequency type, bail out return 0; } sub GetFrom { RT->Config->Get('DashboardAddress') || RT->Config->Get('OwnerEmail') } sub SendDashboard { my $self = shift; my %args = ( CurrentUser => undef, Email => undef, Subscription => undef, DryRun => 0, @_, ); my $currentuser = $args{CurrentUser}; my $subscription = $args{Subscription}; my $rows = $subscription->SubValue('Rows'); my $DashboardId = $subscription->SubValue('DashboardId'); my $dashboard = RT::Dashboard->new($currentuser); my ($ok, $msg) = $dashboard->LoadById($DashboardId); # failed to load dashboard. perhaps it was deleted or it changed privacy if (!$ok) { $RT::Logger->warning("Unable to load dashboard $DashboardId of subscription ".$subscription->Id." for user ".$currentuser->Name.": $msg"); return $self->ObsoleteSubscription( %args, Subscription => $subscription, ); } $RT::Logger->debug('Generating dashboard "'.$dashboard->Name.'" for user "'.$currentuser->Name.'":'); if ($args{DryRun}) { print << "SUMMARY"; Dashboard: @{[ $dashboard->Name ]} User: @{[ $currentuser->Name ]} <$args{Email}> SUMMARY return; } local $HTML::Mason::Commands::session{CurrentUser} = $currentuser; local $HTML::Mason::Commands::r = RT::Dashboard::FakeRequest->new; my $HasResults = undef; my $content = RunComponent( '/Dashboards/Render.html', id => $dashboard->Id, Preview => 0, HasResults => \$HasResults, ); if ($subscription->SubValue('SuppressIfEmpty')) { # undef means there were no searches, so we should still send it (it's just portlets) # 0 means there was at least one search and none had any result, so we should suppress it if (defined($HasResults) && !$HasResults) { $RT::Logger->debug("Not sending because there are no results and the subscription has SuppressIfEmpty"); return; } } if ( RT->Config->Get('EmailDashboardRemove') ) { for ( RT->Config->Get('EmailDashboardRemove') ) { $content =~ s/$_//g; } } $content = ScrubContent($content); $RT::Logger->debug("Got ".length($content)." characters of output."); $content = HTML::RewriteAttributes::Links->rewrite( $content, RT->Config->Get('WebURL') . 'Dashboards/Render.html', ); $self->EmailDashboard( %args, Dashboard => $dashboard, Content => $content, ); } sub ObsoleteSubscription { my $self = shift; my %args = ( From => undef, To => undef, Subscription => undef, CurrentUser => undef, @_, ); my $subscription = $args{Subscription}; my $ok = RT::Interface::Email::SendEmailUsingTemplate( From => $args{From}, To => $args{Email}, Template => 'Error: Missing dashboard', Arguments => { SubscriptionObj => $subscription, }, ExtraHeaders => { 'X-RT-Dashboard-Subscription-Id' => $subscription->Id, 'X-RT-Dashboard-Id' => $subscription->SubValue('DashboardId'), }, ); # only delete the subscription if the email looks like it went through if ($ok) { my ($deleted, $msg) = $subscription->Delete(); if ($deleted) { $RT::Logger->debug("Deleted an obsolete subscription: $msg"); } else { $RT::Logger->warning("Unable to delete an obsolete subscription: $msg"); } } else { $RT::Logger->warning("Unable to notify ".$args{CurrentUser}->Name." of an obsolete subscription"); } } sub EmailDashboard { my $self = shift; my %args = ( CurrentUser => undef, Email => undef, Dashboard => undef, Subscription => undef, Content => undef, @_, ); my $subscription = $args{Subscription}; my $dashboard = $args{Dashboard}; my $currentuser = $args{CurrentUser}; my $email = $args{Email}; my $frequency = $subscription->SubValue('Frequency'); my %frequency_lookup = ( 'daily' => 'Daily', # loc 'weekly' => 'Weekly', # loc 'monthly' => 'Monthly', # loc 'never' => 'Never', # loc ); my $frequency_display = $frequency_lookup{$frequency} || $frequency; my $subject = sprintf '[%s] ' . RT->Config->Get('DashboardSubject'), RT->Config->Get('rtname'), $currentuser->loc($frequency_display), $dashboard->Name; my $entity = $self->BuildEmail( %args, To => $email, Subject => $subject, ); $entity->head->replace('X-RT-Dashboard-Id', $dashboard->Id); $entity->head->replace('X-RT-Dashboard-Subscription-Id', $subscription->Id); $RT::Logger->debug('Mailing dashboard "'.$dashboard->Name.'" to user '.$currentuser->Name." <$email>"); my $ok = RT::Interface::Email::SendEmail( %{ RT->Config->Get('Crypt')->{'Dashboards'} || {} }, Entity => $entity, ); if (!$ok) { $RT::Logger->error("Failed to email dashboard to user ".$currentuser->Name." <$email>"); return; } $RT::Logger->debug("Done sending dashboard to ".$currentuser->Name." <$email>"); } sub BuildEmail { my $self = shift; my %args = ( Content => undef, From => undef, To => undef, Subject => undef, @_, ); my @parts; my %cid_of; my $content = HTML::RewriteAttributes::Resources->rewrite($args{Content}, sub { my $uri = shift; # already attached this object return "cid:$cid_of{$uri}" if $cid_of{$uri}; my ($data, $filename, $mimetype, $encoding) = GetResource($uri); return $uri unless defined $data; $cid_of{$uri} = time() . $$ . int(rand(1e6)); # Encode textual data in UTF-8, and downgrade (treat # codepoints as codepoints, and ensure the UTF-8 flag is # off) everything else. my @extra; if ( $mimetype =~ m{text/} ) { $data = Encode::encode( "UTF-8", $data ); @extra = ( Charset => "UTF-8" ); } else { utf8::downgrade( $data, 1 ) or $RT::Logger->warning("downgrade $data failed"); } push @parts, MIME::Entity->build( Top => 0, Data => $data, Type => $mimetype, Encoding => $encoding, Disposition => 'inline', Name => RT::Interface::Email::EncodeToMIME( String => $filename ), 'Content-Id' => $cid_of{$uri}, @extra, ); return "cid:$cid_of{$uri}"; }, inline_css => sub { my $uri = shift; my ($content) = GetResource($uri); return defined $content ? $content : ""; }, inline_imports => 1, ); my $entity = MIME::Entity->build( From => Encode::encode("UTF-8", $args{From}), To => Encode::encode("UTF-8", $args{To}), Subject => RT::Interface::Email::EncodeToMIME( String => $args{Subject} ), Type => "multipart/mixed", ); $entity->attach( Type => 'text/html', Charset => 'UTF-8', Data => Encode::encode("UTF-8", $content), Disposition => 'inline', Encoding => "base64", ); for my $part (@parts) { $entity->add_part($part); } $entity->make_singlepart; return $entity; } { my $mason; my $outbuf = ''; my $data_dir = ''; sub _mason { unless ($mason) { $RT::Logger->debug("Creating Mason object."); # user may not have permissions on the data directory, so create a # new one $data_dir = tempdir(CLEANUP => 1); $mason = HTML::Mason::Interp->new( RT::Interface::Web::Handler->DefaultHandlerArgs, out_method => \$outbuf, autohandler_name => '', # disable forced login and more data_dir => $data_dir, ); $mason->set_escape( h => \&RT::Interface::Web::EscapeHTML ); $mason->set_escape( u => \&RT::Interface::Web::EscapeURI ); $mason->set_escape( j => \&RT::Interface::Web::EscapeJS ); } return $mason; } sub RunComponent { _mason->exec(@_); my $ret = $outbuf; $outbuf = ''; return $ret; } } { my $scrubber; sub _scrubber { unless ($scrubber) { $scrubber = HTML::Scrubber->new; # Allow everything by default, except JS attributes ... $scrubber->default( 1 => { '*' => 1, map { ("on$_" => 0) } qw(blur change click dblclick error focus keydown keypress keyup load mousedown mousemove mouseout mouseover mouseup reset select submit unload) } ); # ... and